123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- from binascii import hexlify, a2b_base64, b2a_base64
- from getpass import getpass
- import os
- import msgpack
- import shutil
- import tempfile
- import unittest
- import hmac
- from hashlib import sha256
- import zlib
- from .crypto import pbkdf2_sha256, get_random_bytes, AES, bytes_to_long, long_to_bytes, bytes_to_int
- from .helpers import IntegrityError, get_keys_dir, Location
- PREFIX = b'\0' * 8
- KEYFILE = b'\0'
- PASSPHRASE = b'\1'
- PLAINTEXT = b'\2'
- class HMAC(hmac.HMAC):
- def update(self, msg):
- self.inner.update(msg)
- def key_creator(store, args):
- if args.keyfile:
- return KeyfileKey.create(store, args)
- elif args.passphrase:
- return PassphraseKey.create(store, args)
- else:
- return PlaintextKey.create(store, args)
- def key_factory(store, manifest_data):
- if manifest_data[:1] == KEYFILE:
- return KeyfileKey.detect(store, manifest_data)
- elif manifest_data[:1] == PASSPHRASE:
- return PassphraseKey.detect(store, manifest_data)
- elif manifest_data[:1] == PLAINTEXT:
- return PlaintextKey.detect(store, manifest_data)
- else:
- raise Exception('Unkown Key type %d' % ord(manifest_data[0]))
- class KeyBase(object):
- def id_hash(self, data):
- """Return HMAC hash using the "id" HMAC key
- """
- def encrypt(self, data):
- pass
- def decrypt(self, id, data):
- pass
- class PlaintextKey(KeyBase):
- TYPE = PLAINTEXT
- chunk_seed = 0
- @classmethod
- def create(cls, store, args):
- print('Encryption NOT enabled.\nUse the --key-file or --passphrase options to enable encryption.')
- return cls()
- @classmethod
- def detect(cls, store, manifest_data):
- return cls()
- def id_hash(self, data):
- return sha256(data).digest()
- def encrypt(self, data):
- return b''.join([self.TYPE, zlib.compress(data)])
- def decrypt(self, id, data):
- if data[:1] != self.TYPE:
- raise IntegrityError('Invalid encryption envelope')
- data = zlib.decompress(memoryview(data)[1:])
- if id and sha256(data).digest() != id:
- raise IntegrityError('Chunk id verification failed')
- return data
- class AESKeyBase(KeyBase):
- def id_hash(self, data):
- """Return HMAC hash using the "id" HMAC key
- """
- return HMAC(self.id_key, data, sha256).digest()
- def encrypt(self, data):
- data = zlib.compress(data)
- self.enc_cipher.reset()
- data = b''.join((self.enc_cipher.iv[8:], self.enc_cipher.encrypt(data)))
- hash = HMAC(self.enc_hmac_key, data, sha256).digest()
- return b''.join((self.TYPE, hash, data))
- def decrypt(self, id, data):
- if data[:1] != self.TYPE:
- raise IntegrityError('Invalid encryption envelope')
- hash = memoryview(data)[1:33]
- if memoryview(HMAC(self.enc_hmac_key, memoryview(data)[33:], sha256).digest()) != hash:
- raise IntegrityError('Encryption envelope checksum mismatch')
- self.dec_cipher.reset(iv=PREFIX + data[33:41])
- data = zlib.decompress(self.dec_cipher.decrypt(data[41:])) # should use memoryview
- if id and HMAC(self.id_key, data, sha256).digest() != id:
- raise IntegrityError('Chunk id verification failed')
- return data
- def extract_iv(self, payload):
- if payload[:1] != self.TYPE:
- raise IntegrityError('Invalid encryption envelope')
- nonce = bytes_to_long(payload[33:41])
- return nonce
- def init_from_random_data(self, data):
- self.enc_key = data[0:32]
- self.enc_hmac_key = data[32:64]
- self.id_key = data[64:96]
- self.chunk_seed = bytes_to_int(data[96:100])
- # Convert to signed int32
- if self.chunk_seed & 0x80000000:
- self.chunk_seed = self.chunk_seed - 0xffffffff - 1
- def init_ciphers(self, enc_iv=b''):
- self.enc_cipher = AES(self.enc_key, enc_iv)
- self.dec_cipher = AES(self.enc_key)
- class PassphraseKey(AESKeyBase):
- TYPE = PASSPHRASE
- iterations = 10000
- @classmethod
- def create(cls, store, args):
- key = cls()
- passphrase = os.environ.get('DARC_PASSPHRASE')
- if passphrase is not None:
- passphrase2 = passphrase
- else:
- passphrase, passphrase2 = 1, 2
- while passphrase != passphrase2:
- passphrase = getpass('Enter passphrase: ')
- if not passphrase:
- print('Passphrase must not be blank')
- continue
- passphrase2 = getpass('Enter same passphrase again: ')
- if passphrase != passphrase2:
- print('Passphrases do not match')
- key.init(store, passphrase)
- if passphrase:
- print('Remember your passphrase. Your data will be inaccessible without it.')
- return key
- @classmethod
- def detect(cls, store, manifest_data):
- prompt = 'Enter passphrase for %s: ' % store._location.orig
- key = cls()
- passphrase = os.environ.get('DARC_PASSPHRASE')
- if passphrase is None:
- passphrase = getpass(prompt)
- while True:
- key.init(store, passphrase)
- try:
- key.decrypt(None, manifest_data)
- key.init_ciphers(PREFIX + long_to_bytes(key.extract_iv(manifest_data) + 1000))
- return key
- except IntegrityError:
- passphrase = getpass(prompt)
- def init(self, store, passphrase):
- self.init_from_random_data(pbkdf2_sha256(passphrase.encode('utf-8'), store.id, self.iterations, 100))
- self.init_ciphers()
- class KeyfileKey(AESKeyBase):
- FILE_ID = 'DARC KEY'
- TYPE = KEYFILE
- IV = PREFIX + long_to_bytes(1)
- @classmethod
- def detect(cls, store, manifest_data):
- key = cls()
- path = cls.find_key_file(store)
- prompt = 'Enter passphrase for key file %s: ' % path
- passphrase = os.environ.get('DARC_PASSPHRASE', '')
- while not key.load(path, passphrase):
- passphrase = getpass(prompt)
- key.init_ciphers(PREFIX + long_to_bytes(key.extract_iv(manifest_data) + 1000))
- return key
- @classmethod
- def find_key_file(cls, store):
- id = hexlify(store.id).decode('ascii')
- keys_dir = get_keys_dir()
- for name in os.listdir(keys_dir):
- filename = os.path.join(keys_dir, name)
- with open(filename, 'r') as fd:
- line = fd.readline().strip()
- if line and line.startswith(cls.FILE_ID) and line[9:] == id:
- return filename
- raise Exception('Key file for store with ID %s not found' % id)
- def load(self, filename, passphrase):
- with open(filename, 'r') as fd:
- cdata = a2b_base64(''.join(fd.readlines()[1:]).encode('ascii')) # .encode needed for Python 3.[0-2]
- data = self.decrypt_key_file(cdata, passphrase)
- if data:
- key = msgpack.unpackb(data)
- if key[b'version'] != 1:
- raise IntegrityError('Invalid key file header')
- self.store_id = key[b'store_id']
- self.enc_key = key[b'enc_key']
- self.enc_hmac_key = key[b'enc_hmac_key']
- self.id_key = key[b'id_key']
- self.chunk_seed = key[b'chunk_seed']
- self.path = filename
- return True
- def decrypt_key_file(self, data, passphrase):
- d = msgpack.unpackb(data)
- assert d[b'version'] == 1
- assert d[b'algorithm'] == b'SHA256'
- key = pbkdf2_sha256(passphrase.encode('utf-8'), d[b'salt'], d[b'iterations'], 32)
- data = AES(key, self.IV).decrypt(d[b'data'])
- if HMAC(key, data, sha256).digest() != d[b'hash']:
- return None
- return data
- def encrypt_key_file(self, data, passphrase):
- salt = get_random_bytes(32)
- iterations = 10000
- key = pbkdf2_sha256(passphrase.encode('utf-8'), salt, iterations, 32)
- hash = HMAC(key, data, sha256).digest()
- cdata = AES(key, self.IV).encrypt(data)
- # cdata = AES.new(key, AES.MODE_CTR, counter=Counter.new(128)).encrypt(data)
- d = {
- 'version': 1,
- 'salt': salt,
- 'iterations': iterations,
- 'algorithm': 'SHA256',
- 'hash': hash,
- 'data': cdata,
- }
- return msgpack.packb(d)
- def save(self, path, passphrase):
- key = {
- 'version': 1,
- 'store_id': self.store_id,
- 'enc_key': self.enc_key,
- 'enc_hmac_key': self.enc_hmac_key,
- 'id_key': self.id_key,
- 'chunk_seed': self.chunk_seed,
- }
- data = self.encrypt_key_file(msgpack.packb(key), passphrase)
- with open(path, 'w') as fd:
- fd.write('%s %s\n' % (self.FILE_ID, hexlify(self.store_id).decode('ascii')))
- fd.write(b2a_base64(data).decode('ascii'))
- self.path = path
- def change_passphrase(self):
- passphrase, passphrase2 = 1, 2
- while passphrase != passphrase2:
- passphrase = getpass('New passphrase: ')
- passphrase2 = getpass('Enter same passphrase again: ')
- if passphrase != passphrase2:
- print('Passphrases do not match')
- self.save(self.path, passphrase)
- print('Key file "%s" updated' % self.path)
- @classmethod
- def create(cls, store, args):
- filename = args.store.to_key_filename()
- path = filename
- i = 1
- while os.path.exists(path):
- i += 1
- path = filename + '.%d' % i
- passphrase = os.environ.get('DARC_PASSPHRASE')
- if passphrase is not None:
- passphrase2 = passphrase
- else:
- passphrase, passphrase2 = 1, 2
- while passphrase != passphrase2:
- passphrase = getpass('Enter passphrase (empty for no passphrase):')
- passphrase2 = getpass('Enter same passphrase again: ')
- if passphrase != passphrase2:
- print('Passphrases do not match')
- key = cls()
- key.store_id = store.id
- key.init_from_random_data(get_random_bytes(100))
- key.init_ciphers()
- key.save(path, passphrase)
- print('Key file "%s" created.' % key.path)
- print('Keep this file safe. Your data will be inaccessible without it.')
- return key
- class KeyTestCase(unittest.TestCase):
- def setUp(self):
- self.tmppath = tempfile.mkdtemp()
- os.environ['DARC_KEYS_DIR'] = self.tmppath
- def tearDown(self):
- shutil.rmtree(self.tmppath)
- class MockStore(object):
- class _Location(object):
- orig = '/some/place'
- _location = _Location()
- id = b'\0' * 32
- def setUp(self):
- self.tmpdir = tempfile.mkdtemp()
- os.environ['DARC_KEYS_DIR'] = self.tmpdir
- def tearDown(self):
- shutil.rmtree(self.tmpdir)
- def test_plaintext(self):
- key = PlaintextKey.create(None, None)
- data = b'foo'
- self.assertEqual(hexlify(key.id_hash(data)), b'2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae')
- self.assertEqual(data, key.decrypt(key.id_hash(data), key.encrypt(data)))
- def test_keyfile(self):
- class MockArgs(object):
- store = Location(tempfile.mkstemp()[1])
- os.environ['DARC_PASSPHRASE'] = 'test'
- key = KeyfileKey.create(self.MockStore(), MockArgs())
- self.assertEqual(bytes_to_long(key.enc_cipher.iv, 8), 0)
- manifest = key.encrypt(b'')
- iv = key.extract_iv(manifest)
- key2 = KeyfileKey.detect(self.MockStore(), manifest)
- self.assertEqual(bytes_to_long(key2.enc_cipher.iv, 8), iv + 1000)
- # Key data sanity check
- self.assertEqual(len(set([key2.id_key, key2.enc_key, key2.enc_hmac_key])), 3)
- self.assertEqual(key2.chunk_seed == 0, False)
- data = b'foo'
- self.assertEqual(data, key2.decrypt(key.id_hash(data), key.encrypt(data)))
- def test_passphrase(self):
- os.environ['DARC_PASSPHRASE'] = 'test'
- key = PassphraseKey.create(self.MockStore(), None)
- self.assertEqual(bytes_to_long(key.enc_cipher.iv, 8), 0)
- self.assertEqual(hexlify(key.id_key), b'f28e915da78a972786da47fee6c4bd2960a421b9bdbdb35a7942eb82552e9a72')
- self.assertEqual(hexlify(key.enc_hmac_key), b'169c6082f209e524ea97e2c75318936f6e93c101b9345942a95491e9ae1738ca')
- self.assertEqual(hexlify(key.enc_key), b'c05dd423843d4dd32a52e4dc07bb11acabe215917fc5cf3a3df6c92b47af79ba')
- self.assertEqual(key.chunk_seed, -324662077)
- manifest = key.encrypt(b'')
- iv = key.extract_iv(manifest)
- key2 = PassphraseKey.detect(self.MockStore(), manifest)
- self.assertEqual(bytes_to_long(key2.enc_cipher.iv, 8), iv + 1000)
- self.assertEqual(key.id_key, key2.id_key)
- self.assertEqual(key.enc_hmac_key, key2.enc_hmac_key)
- self.assertEqual(key.enc_key, key2.enc_key)
- self.assertEqual(key.chunk_seed, key2.chunk_seed)
- data = b'foo'
- self.assertEqual(hexlify(key.id_hash(data)), b'016c27cd40dc8e84f196f3b43a9424e8472897e09f6935d0d3a82fb41664bad7')
- self.assertEqual(data, key2.decrypt(key2.id_hash(data), key.encrypt(data)))
- def suite():
- return unittest.TestLoader().loadTestsFromTestCase(KeyTestCase)
- if __name__ == '__main__':
- unittest.main()
|