package org.jivesoftware.smackx.ikey; import org.bouncycastle.openpgp.PGPException; import org.bouncycastle.openpgp.PGPPublicKeyRing; import org.bouncycastle.openpgp.PGPSecretKeyRing; import org.jivesoftware.smack.Manager; import org.jivesoftware.smack.SmackException; import org.jivesoftware.smack.XMPPConnection; import org.jivesoftware.smack.XMPPException; import org.jivesoftware.smack.packet.Message; import org.jivesoftware.smack.provider.ProviderManager; import org.jivesoftware.smackx.ikey.element.IkeyElement; import org.jivesoftware.smackx.ikey.element.ProofElement; import org.jivesoftware.smackx.ikey.element.SignedElement; import org.jivesoftware.smackx.ikey.element.SubordinateElement; import org.jivesoftware.smackx.ikey.element.SubordinateListElement; import org.jivesoftware.smackx.ikey.element.SuperordinateElement; import org.jivesoftware.smackx.ikey.mechanism.IkeySignatureCreationMechanism; import org.jivesoftware.smackx.ikey.mechanism.IkeySignatureVerificationMechanism; import org.jivesoftware.smackx.ikey.provider.IkeyElementProvider; import org.jivesoftware.smackx.ikey.provider.SubordinateListElementProvider; import org.jivesoftware.smackx.ikey.record.IkeyStore; import org.jivesoftware.smackx.ikey.util.IkeyConstants; import org.jivesoftware.smackx.ikey.util.UnsupportedSignatureAlgorithmException; import org.jivesoftware.smackx.ikey_ox.OxIkeySignatureCreationMechanism; import org.jivesoftware.smackx.ikey_ox.OxIkeySignatureVerificationMechanism; import org.jivesoftware.smackx.ox.OpenPgpManager; import org.jivesoftware.smackx.ox.OpenPgpSecretKeyBackupPassphrase; import org.jivesoftware.smackx.ox.element.SecretkeyElement; import org.jivesoftware.smackx.ox.exception.InvalidBackupCodeException; import org.jivesoftware.smackx.ox.util.OpenPgpPubSubUtil; import org.jivesoftware.smackx.ox.util.SecretKeyBackupHelper; import org.jivesoftware.smackx.pep.PepEventListener; import org.jivesoftware.smackx.pep.PepManager; import org.jivesoftware.smackx.pubsub.LeafNode; import org.jivesoftware.smackx.pubsub.PayloadItem; import org.jivesoftware.smackx.pubsub.PubSubException; import org.jivesoftware.smackx.pubsub.PubSubManager; import org.jxmpp.jid.EntityBareJid; import org.mercury_im.messenger.core.crypto.OpenPgpSecretKeyBackupPassphraseGenerator; import org.mercury_im.messenger.core.crypto.SecureRandomSecretKeyBackupPassphraseGenerator; import org.pgpainless.PGPainless; import org.pgpainless.key.OpenPgpV4Fingerprint; import org.pgpainless.key.collection.PGPKeyRing; import org.pgpainless.key.protection.SecretKeyRingProtector; import org.pgpainless.util.BCUtil; import java.io.IOException; import java.security.InvalidAlgorithmParameterException; import java.security.NoSuchAlgorithmException; import java.security.NoSuchProviderException; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Map; import java.util.WeakHashMap; import java.util.logging.Level; import java.util.logging.Logger; import static org.jivesoftware.smackx.ikey.util.IkeyConstants.SUPERORDINATE_NODE; public final class IkeyManager extends Manager { private static final Logger LOGGER = Logger.getLogger(IkeyManager.class.getName()); private static final Map INSTANCES = new WeakHashMap<>(); private final OpenPgpSecretKeyBackupPassphraseGenerator backupPassphraseGenerator; static { // TODO: Replace with .providers file once merged into Smack ProviderManager.addExtensionProvider(IkeyElement.ELEMENT, IkeyElement.NAMESPACE, new IkeyElementProvider()); ProviderManager.addExtensionProvider(SubordinateListElement.ELEMENT, SubordinateListElement.NAMESPACE, new SubordinateListElementProvider()); } private IkeyStore store; private IkeyManager(XMPPConnection connection) { super(connection); this.backupPassphraseGenerator = new SecureRandomSecretKeyBackupPassphraseGenerator(); } public static synchronized IkeyManager getInstanceFor(XMPPConnection connection) { IkeyManager manager = INSTANCES.get(connection); if (manager == null) { manager = new IkeyManager(connection); INSTANCES.put(connection, manager); } return manager; } public SecretkeyElement fetchSecretIdentityKey() throws InterruptedException, PubSubException.NotALeafNodeException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, SmackException.NoResponseException { return OpenPgpPubSubUtil.fetchSecretKey(PepManager.getInstanceFor(connection()), SUPERORDINATE_NODE); } public OpenPgpSecretKeyBackupPassphrase depositIdentityKeyBackup() throws PGPException, InterruptedException, SmackException.NoResponseException, SmackException.NotConnectedException, SmackException.FeatureNotSupportedException, XMPPException.XMPPErrorException, PubSubException.NotALeafNodeException, IOException { PGPSecretKeyRing secretKeys = store.loadSecretKey(); OpenPgpSecretKeyBackupPassphrase passphrase = store.loadBackupPassphrase(); return depositIdentityKeyBackup(secretKeys, passphrase); } public OpenPgpSecretKeyBackupPassphrase depositIdentityKeyBackup(PGPSecretKeyRing secretKey, OpenPgpSecretKeyBackupPassphrase passphrase) throws InterruptedException, SmackException.NoResponseException, SmackException.NotConnectedException, SmackException.FeatureNotSupportedException, XMPPException.XMPPErrorException, PubSubException.NotALeafNodeException, IOException, PGPException { SecretkeyElement secretkeyElement = SecretKeyBackupHelper.createSecretkeyElement(secretKey.getEncoded(), passphrase); OpenPgpPubSubUtil.depositSecretKey(connection(), secretkeyElement, SUPERORDINATE_NODE); return passphrase; } public IkeyElement createOxIkeyElement(PGPSecretKeyRing secretKeys, SecretKeyRingProtector keyRingProtector, SubordinateElement... subordinateElements) throws IOException { IkeySignatureCreationMechanism mechanism = new OxIkeySignatureCreationMechanism(secretKeys, keyRingProtector); SuperordinateElement superordinateElement = new SuperordinateElement(secretKeys.getPublicKey().getEncoded()); SubordinateListElement subordinateListElement = new SubordinateListElement(connection().getUser().asEntityBareJid(), new Date(), Arrays.asList(subordinateElements)); return createIkeyElement(mechanism, superordinateElement, subordinateListElement); } public boolean deleteSecretIdentityKeyNode() throws XMPPException.XMPPErrorException, SmackException.NotConnectedException, InterruptedException, SmackException.NoResponseException { return OpenPgpPubSubUtil.deleteSecretKeyNode(PepManager.getInstanceFor(connection()), SUPERORDINATE_NODE); } public void startListeners() { PepManager.getInstanceFor(connection()) .addPepEventListener(IkeyConstants.SUBORDINATES_NODE, IkeyElement.class, ikeyPepEventListener); } public void stopListeners() { PepManager.getInstanceFor(connection()) .removePepEventListener(ikeyPepEventListener); } public void setStore(IkeyStore store) { this.store = store; } public IkeyElement createIkeyElement(IkeySignatureCreationMechanism mechanism, SuperordinateElement superordinateElement, SubordinateListElement subordinateListElement) throws IOException { SignedElement signedElement = new SignedElement(subordinateListElement); ProofElement proofElement = new ProofElement(mechanism.createSignature(signedElement.getUtf8Bytes())); return new IkeyElement(mechanism.getType(), superordinateElement, signedElement, proofElement); } public void publishIkeyElement(IkeyElement ikeyElement) throws InterruptedException, PubSubException.NotALeafNodeException, XMPPException.XMPPErrorException, SmackException.NotConnectedException, SmackException.NoResponseException { PepManager.getInstanceFor(connection()) .publish(IkeyConstants.SUBORDINATES_NODE, new PayloadItem<>(ikeyElement)); } public IkeyElement fetchIkeyElementOf(EntityBareJid jid) throws InterruptedException, PubSubException.NotALeafNodeException, SmackException.NoResponseException, SmackException.NotConnectedException, XMPPException.XMPPErrorException, PubSubException.NotAPubSubNodeException { PubSubManager pubSubManager = PubSubManager.getInstanceFor(connection(), jid); return fetchIkeyElementFrom(pubSubManager); } public IkeyElement fetchOwnIkeyElement() throws InterruptedException, PubSubException.NotALeafNodeException, SmackException.NoResponseException, SmackException.NotConnectedException, XMPPException.XMPPErrorException, PubSubException.NotAPubSubNodeException { PubSubManager pubSubManager = PubSubManager.getInstanceFor(connection()); return fetchIkeyElementFrom(pubSubManager); } private static IkeyElement fetchIkeyElementFrom(PubSubManager pubSubManager) throws PubSubException.NotALeafNodeException, SmackException.NoResponseException, SmackException.NotConnectedException, InterruptedException, XMPPException.XMPPErrorException, PubSubException.NotAPubSubNodeException { LeafNode node = pubSubManager.getLeafNode(IkeyConstants.SUBORDINATES_NODE); List> items = node.getItems(1); if (items.isEmpty()) { return null; } else { return items.get(0).getPayload(); } } private void processIkeyElement(EntityBareJid from, IkeyElement element) throws IOException, UnsupportedSignatureAlgorithmException { if (isFromTheFuture(element)) { LOGGER.log(Level.WARNING, "Received ikey element appears to be from the future: " + element.getSignedElement().getChildElement().getTimestamp()); return; } if (existsSameOrNewerRecord(element)) { LOGGER.log(Level.WARNING, "There exists this exact, or a newer ikey record in the database for " + from); return; } if (!verifyIkeyElement(from, element)) { LOGGER.log(Level.WARNING, "Invalid signature on ikey element of " + from); return; } store.storeIkeyRecord(from, element); } public IkeyElement getIkeyElementOf(EntityBareJid from) throws IOException, InterruptedException, PubSubException.NotALeafNodeException, SmackException.NoResponseException, SmackException.NotConnectedException, XMPPException.XMPPErrorException, PubSubException.NotAPubSubNodeException { IkeyElement stored = store.loadIkeyRecord(from); if (stored == null) { stored = fetchIkeyElementOf(from); store.storeIkeyRecord(from, stored); } return stored; } private boolean verifyIkeyElement(EntityBareJid from, IkeyElement element) throws IOException, UnsupportedSignatureAlgorithmException { IkeySignatureVerificationMechanism verificationMechanism = getSignatureVerificationMechanismFor(element); IkeySignatureVerifier verifier = new IkeySignatureVerifier(verificationMechanism); return verifier.verify(element, from); } private static IkeySignatureVerificationMechanism getSignatureVerificationMechanismFor(IkeyElement ikeyElement) throws IOException, UnsupportedSignatureAlgorithmException { switch (ikeyElement.getType()) { case OX: PGPPublicKeyRing ikey = PGPainless.readKeyRing().publicKeyRing(ikeyElement.getSuperordinate().getPubKeyBytes()); return new OxIkeySignatureVerificationMechanism(ikey); default: throw new UnsupportedSignatureAlgorithmException(ikeyElement.getType().name()); } } private static boolean isFromTheFuture(IkeyElement element) { Date elementTimestamp = element.getSignedElement().getChildElement().getTimestamp(); Date now = new Date(); return elementTimestamp.after(now); } private boolean existsSameOrNewerRecord(IkeyElement ikeyElement) throws IOException { IkeyElement existingRecord = store.loadIkeyRecord(ikeyElement.getSignedElement().getChildElement().getJid()); if (existingRecord == null) { return false; } Date latestTimestamp = existingRecord.getSignedElement().getChildElement().getTimestamp(); Date eventTimestamp = ikeyElement.getSignedElement().getChildElement().getTimestamp(); return latestTimestamp.equals(eventTimestamp) // same || latestTimestamp.after(eventTimestamp); // newer } @SuppressWarnings("UnnecessaryAnonymousClass") private final PepEventListener ikeyPepEventListener = new PepEventListener() { @Override public void onPepEvent(EntityBareJid from, IkeyElement event, String id, Message carrierMessage) { try { processIkeyElement(from, event); } catch (IOException | UnsupportedSignatureAlgorithmException e) { LOGGER.log(Level.WARNING, "Error:", e); } } }; public boolean hasStore() { return store != null; } public boolean hasLocalKey() { return store.loadSecretKey() != null; } public void generateIdentityKey() throws PGPException, NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException { PGPKeyRing key = OpenPgpManager.getInstanceFor(connection()) .generateKeyRing(connection().getUser().asBareJid()); store.storeSecretKey(key.getSecretKeys()); store.storeBackupPassphrase(generateBackupPassphrase()); } private OpenPgpSecretKeyBackupPassphrase generateBackupPassphrase() { return backupPassphraseGenerator.generateBackupPassphrase(); } public void restoreSecretKeyBackup(SecretkeyElement secretkeyElement, OpenPgpSecretKeyBackupPassphrase passphrase) throws PGPException, IOException, InvalidBackupCodeException { PGPSecretKeyRing secretKeys = SecretKeyBackupHelper.restoreSecretKeyBackup(secretkeyElement, passphrase); store.storeSecretKey(secretKeys); store.storeBackupPassphrase(passphrase); } }