diff options
| author | drebs <drebs@leap.se> | 2013-11-18 11:06:37 -0200 | 
|---|---|---|
| committer | drebs <drebs@leap.se> | 2013-11-19 11:24:47 -0200 | 
| commit | d5d47dc216fd285ec60df1ccaab1e0740e29e3c5 (patch) | |
| tree | 02157322e1d01119aee19f6081a99cd23991dd4d | |
| parent | 930b7cd7e56440b638bd646b288f33063e15f3d0 (diff) | |
Add MAC verification to recovery document. Closes #4348.
| -rw-r--r-- | client/changes/feature_4348_add-mac-verification-to-recovery-doc | 2 | ||||
| -rw-r--r-- | client/src/leap/soledad/client/__init__.py | 161 | ||||
| -rw-r--r-- | client/src/leap/soledad/client/target.py | 24 | ||||
| -rw-r--r-- | common/src/leap/soledad/common/crypto.py | 21 | ||||
| -rw-r--r-- | common/src/leap/soledad/common/tests/test_crypto.py | 9 | ||||
| -rw-r--r-- | common/src/leap/soledad/common/tests/test_soledad.py | 5 | 
6 files changed, 130 insertions, 92 deletions
| diff --git a/client/changes/feature_4348_add-mac-verification-to-recovery-doc b/client/changes/feature_4348_add-mac-verification-to-recovery-doc new file mode 100644 index 00000000..692403f9 --- /dev/null +++ b/client/changes/feature_4348_add-mac-verification-to-recovery-doc @@ -0,0 +1,2 @@ +  o Add MAC verirication to the recovery document and soledad.json. Closes +    #4348. diff --git a/client/src/leap/soledad/client/__init__.py b/client/src/leap/soledad/client/__init__.py index a159d773..d50dde42 100644 --- a/client/src/leap/soledad/client/__init__.py +++ b/client/src/leap/soledad/client/__init__.py @@ -31,6 +31,7 @@ import os  import socket  import ssl  import urlparse +import hmac  from hashlib import sha256 @@ -52,6 +53,13 @@ from leap.soledad.common.errors import (      NotLockedError,      AlreadyLockedError,  ) +from leap.soledad.common.crypto import ( +    MacMethods, +    UnknownMacMethod, +    WrongMac, +    MAC_KEY, +    MAC_METHOD_KEY, +)  #  # Signaling function @@ -357,7 +365,12 @@ class Soledad(object):                  logger.info(                      'Found cryptographic secrets in shared recovery '                      'database.') -                self.import_recovery_document(doc.content) +                _, mac = self.import_recovery_document(doc.content) +                if mac is False: +                    self.put_secrets_in_shared_db() +                self._store_secrets()  # save new secrets in local file +                if self._secret_id is None: +                    self._set_secret_id(self._secrets.items()[0][0])              else:                  # STAGE 3 - there are no secrets in server also, so                  # generate a secret and store it in remote db. @@ -516,21 +529,6 @@ class Soledad(object):      def _load_secrets(self):          """          Load storage secrets from local file. - -        The content of the file has the following format: - -            { -                "storage_secrets": { -                    "<secret_id>": { -                        'kdf': 'scrypt', -                        'kdf_salt': '<b64 repr of salt>' -                        'kdf_length': <key length> -                        "cipher": "aes256", -                        "length": <secret length>, -                        "secret": "<encrypted storage_secret 1>", -                    } -                } -            }          """          # does the file exist in disk?          if not os.path.isfile(self._secrets_path): @@ -539,7 +537,10 @@ class Soledad(object):          content = None          with open(self._secrets_path, 'r') as f:              content = json.loads(f.read()) -        self._secrets = content[self.STORAGE_SECRETS_KEY] +        _, mac = self.import_recovery_document(content) +        if mac is False: +            self._store_secrets() +            self._put_secrets_in_shared_db()          # choose first secret if no secret_id was given          if self._secret_id is None:              self._set_secret_id(self._secrets.items()[0][0]) @@ -614,28 +615,12 @@ class Soledad(object):      def _store_secrets(self):          """ -        Store a secret in C{Soledad.STORAGE_SECRETS_FILE_PATH}. - -        The contents of the stored file have the following format: - -            { -                'storage_secrets': { -                    '<secret_id>': { -                        'kdf': 'scrypt', -                        'kdf_salt': '<salt>' -                        'kdf_length': <len> -                        'cipher': 'aes256', -                        'length': 1024, -                        'secret': '<encrypted storage_secret 1>', -                    } -                } -            } +        Store secrets in C{Soledad.STORAGE_SECRETS_FILE_PATH}.          """ -        data = { -            self.STORAGE_SECRETS_KEY: self._secrets, -        }          with open(self._secrets_path, 'w') as f: -            f.write(json.dumps(data)) +            f.write( +                json.dumps( +                    self.export_recovery_document()))      def change_passphrase(self, new_passphrase):          """ @@ -662,6 +647,7 @@ class Soledad(object):          # get a 256-bit key          key = scrypt.hash(new_passphrase.encode('utf-8'), new_salt, buflen=32)          iv, ciphertext = self._crypto.encrypt_sym(secret, key) +        # XXX update all secrets in the dict          self._secrets[self._secret_id] = {              # leap.soledad.crypto submodule uses AES256 for symmetric              # encryption. @@ -673,9 +659,9 @@ class Soledad(object):              self.SECRET_KEY: '%s%s%s' % (                  str(iv), self.IV_SEPARATOR, binascii.b2a_base64(ciphertext)),          } - -        self._store_secrets()          self._passphrase = new_passphrase +        self._store_secrets() +        self._put_secrets_in_shared_db()      #      # General crypto utility methods. @@ -743,7 +729,7 @@ class Soledad(object):              doc = SoledadDocument(                  doc_id=self._shared_db_doc_id())          # fill doc with encrypted secrets -        doc.content = self.export_recovery_document(include_uuid=False) +        doc.content = self.export_recovery_document()          # upload secrets to server          signal(SOLEDAD_UPLOADING_KEYS, self._uuid)          db = self._shared_db @@ -1100,26 +1086,51 @@ class Soledad(object):      # Recovery document export and import methods      # -    def export_recovery_document(self, include_uuid=True): +    def export_recovery_document(self):          """ -        Export the storage secrets and (optionally) the uuid. +        Export the storage secrets.          A recovery document has the following structure:              { -                self.STORAGE_SECRET_KEY: <secrets dict>, -                self.UUID_KEY: '<uuid>',  # (optional) +                'storage_secrets': { +                    '<storage_secret id>': { +                        'kdf': 'scrypt', +                        'kdf_salt': '<b64 repr of salt>' +                        'kdf_length': <key length> +                        'cipher': 'aes256', +                        'length': <secret length>, +                        'secret': '<encrypted storage_secret>', +                    }, +                }, +                'kdf': 'scrypt', +                'kdf_salt': '<b64 repr of salt>', +                'kdf_length: <key length>, +                '_mac_method': 'hmac', +                '_mac': '<mac>'              } -        :param include_uuid: Should the uuid be included? -        :type include_uuid: bool +        Note that multiple storage secrets might be stored in one recovery +        document. This method will also calculate a MAC of a string +        representation of the secrets dictionary.          :return: The recovery document.          :rtype: dict          """ -        data = {self.STORAGE_SECRETS_KEY: self._secrets} -        if include_uuid: -            data[self.UUID_KEY] = self._uuid +        # create salt and key for calculating MAC +        salt = os.urandom(self.SALT_LENGTH) +        key = scrypt.hash(self._passphrase_as_string(), salt, buflen=32) +        data = { +            self.STORAGE_SECRETS_KEY: self._secrets, +            self.KDF_KEY: self.KDF_SCRYPT, +            self.KDF_SALT_KEY: binascii.b2a_base64(salt), +            self.KDF_LENGTH_KEY: len(key), +            MAC_METHOD_KEY: MacMethods.HMAC, +            MAC_KEY: hmac.new( +                key, +                json.dumps(self._secrets), +                sha256).hexdigest(), +        }          return data      def import_recovery_document(self, data): @@ -1127,27 +1138,49 @@ class Soledad(object):          Import storage secrets for symmetric encryption and uuid (if present)          from a recovery document. -        A recovery document has the following structure: - -            { -                self.STORAGE_SECRET_KEY: <secrets dict>, -                self.UUID_KEY: '<uuid>',  # (optional) -            } +        Note that this method does not store the imported data on disk. For +        that, use C{self._store_secrets()}.          :param data: The recovery document.          :type data: dict -        """ -        # include new secrets in our secret pool. + +        :return: A tuple containing the number of imported secrets and whether +                 there was MAC informationa available for authenticating. +        :rtype: (int, bool) +        """ +        soledad_assert(self.STORAGE_SECRETS_KEY in data) +        # check mac of the recovery document +        mac_auth = False +        mac = None +        if MAC_KEY in data: +            soledad_assert(data[MAC_KEY] is not None) +            soledad_assert(MAC_METHOD_KEY in data) +            soledad_assert(self.KDF_KEY in data) +            soledad_assert(self.KDF_SALT_KEY in data) +            soledad_assert(self.KDF_LENGTH_KEY in data) +            if data[MAC_METHOD_KEY] == MacMethods.HMAC: +                key = scrypt.hash( +                    self._passphrase_as_string(), +                    binascii.a2b_base64(data[self.KDF_SALT_KEY]), +                    buflen=32) +                mac = hmac.new( +                    key, +                    json.dumps(data[self.STORAGE_SECRETS_KEY]), +                    sha256).hexdigest() +            else: +                raise UnknownMacMethod('Unknown MAC method: %s.' % +                                       data[MAC_METHOD_KEY]) +            if mac != data[MAC_KEY]: +                raise WrongMac('Could not authenticate recovery document\'s ' +                               'contents.') +            mac_auth = True +        # include secrets in the secret pool. +        secrets = 0          for secret_id, secret_data in data[self.STORAGE_SECRETS_KEY].items():              if secret_id not in self._secrets: +                secrets += 1                  self._secrets[secret_id] = secret_data -        self._store_secrets()  # save new secrets in local file -        # set uuid if present -        if self.UUID_KEY in data: -            self._uuid = data[self.UUID_KEY] -        # choose first secret to use is none is assigned -        if self._secret_id is None: -            self._set_secret_id(data[self.STORAGE_SECRETS_KEY].items()[0][0]) +        return secrets, mac      #      # Setters/getters diff --git a/client/src/leap/soledad/client/target.py b/client/src/leap/soledad/client/target.py index 65639887..d8899a97 100644 --- a/client/src/leap/soledad/client/target.py +++ b/client/src/leap/soledad/client/target.py @@ -35,7 +35,10 @@ from u1db.remote.http_target import HTTPSyncTarget  from leap.soledad.common import soledad_assert  from leap.soledad.common.crypto import (      EncryptionSchemes, +    UnknownEncryptionScheme,      MacMethods, +    UnknownMacMethod, +    WrongMac,      ENC_JSON_KEY,      ENC_SCHEME_KEY,      ENC_METHOD_KEY, @@ -62,27 +65,6 @@ class DocumentNotEncrypted(Exception):      pass -class UnknownEncryptionScheme(Exception): -    """ -    Raised when trying to decrypt from unknown encryption schemes. -    """ -    pass - - -class UnknownMacMethod(Exception): -    """ -    Raised when trying to authenticate document's content with unknown MAC -    mehtod. -    """ -    pass - - -class WrongMac(Exception): -    """ -    Raised when failing to authenticate document's contents based on MAC. -    """ - -  #  # Crypto utilities for a SoledadDocument.  # diff --git a/common/src/leap/soledad/common/crypto.py b/common/src/leap/soledad/common/crypto.py index 2c6bd7a3..56bb608a 100644 --- a/common/src/leap/soledad/common/crypto.py +++ b/common/src/leap/soledad/common/crypto.py @@ -35,6 +35,13 @@ class EncryptionSchemes(object):      PUBKEY = 'pubkey' +class UnknownEncryptionScheme(Exception): +    """ +    Raised when trying to decrypt from unknown encryption schemes. +    """ +    pass + +  class MacMethods(object):      """      Representation of MAC methods used to authenticate document's contents. @@ -43,6 +50,20 @@ class MacMethods(object):      HMAC = 'hmac' +class UnknownMacMethod(Exception): +    """ +    Raised when trying to authenticate document's content with unknown MAC +    mehtod. +    """ +    pass + + +class WrongMac(Exception): +    """ +    Raised when failing to authenticate document's contents based on MAC. +    """ + +  #  # Crypto utilities for a SoledadDocument.  # diff --git a/common/src/leap/soledad/common/tests/test_crypto.py b/common/src/leap/soledad/common/tests/test_crypto.py index db217bb3..af11bc76 100644 --- a/common/src/leap/soledad/common/tests/test_crypto.py +++ b/common/src/leap/soledad/common/tests/test_crypto.py @@ -40,6 +40,7 @@ from leap.soledad.common.tests import (      KEY_FINGERPRINT,      PRIVATE_KEY,  ) +from leap.soledad.common.crypto import WrongMac, UnknownMacMethod  from leap.soledad.common.tests.u1db_tests import (      simple_doc,      nested_doc, @@ -88,11 +89,9 @@ class RecoveryDocumentTestCase(BaseSoledadTest):      def test_import_recovery_document(self):          rd = self._soledad.export_recovery_document() -        s = self._soledad_instance(user='anotheruser@leap.se') +        s = self._soledad_instance()          s.import_recovery_document(rd)          s._set_secret_id(self._soledad._secret_id) -        self.assertEqual(self._soledad._uuid, -                         s._uuid, 'Failed setting user uuid.')          self.assertEqual(self._soledad._get_storage_secret(),                           s._get_storage_secret(),                           'Failed settinng secret for symmetric encryption.') @@ -164,7 +163,7 @@ class MacAuthTestCase(BaseSoledadTest):          doc.content[target.MAC_KEY] = '1234567890ABCDEF'          # try to decrypt doc          self.assertRaises( -            target.WrongMac, +            WrongMac,              target.decrypt_doc, self._soledad._crypto, doc)      def test_decrypt_with_unknown_mac_method_raises(self): @@ -182,7 +181,7 @@ class MacAuthTestCase(BaseSoledadTest):          doc.content[target.MAC_METHOD_KEY] = 'mymac'          # try to decrypt doc          self.assertRaises( -            target.UnknownMacMethod, +            UnknownMacMethod,              target.decrypt_doc, self._soledad._crypto, doc) diff --git a/common/src/leap/soledad/common/tests/test_soledad.py b/common/src/leap/soledad/common/tests/test_soledad.py index 8970a437..035c5ac5 100644 --- a/common/src/leap/soledad/common/tests/test_soledad.py +++ b/common/src/leap/soledad/common/tests/test_soledad.py @@ -33,6 +33,7 @@ from leap.soledad.common.tests import (  )  from leap import soledad  from leap.soledad.common.document import SoledadDocument +from leap.soledad.common.crypto import WrongMac  from leap.soledad.client import Soledad, PassphraseTooShort  from leap.soledad.client.crypto import SoledadCrypto  from leap.soledad.client.shared_db import SoledadSharedDatabase @@ -119,7 +120,7 @@ class AuxMethodsTestCase(BaseSoledadTest):          sol.change_passphrase(u'654321')          self.assertRaises( -            DatabaseError, +            WrongMac,              self._soledad_instance, 'leap@leap.se',              passphrase=u'123',              prefix=self.rand_prefix) @@ -292,7 +293,7 @@ class SoledadSignalingTestCase(BaseSoledadTest):          sol = self._soledad_instance()          # create a document with secrets          doc = SoledadDocument(doc_id=sol._shared_db_doc_id()) -        doc.content = sol.export_recovery_document(include_uuid=False) +        doc.content = sol.export_recovery_document()          class Stage2MockSharedDB(object): | 
