2018-02-02 17:29:52 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-11-23 15:01:18 +00:00
|
|
|
"""
|
2019-06-17 18:27:55 +00:00
|
|
|
Use Trezor as a hardware key for opening EncFS filesystem!
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2016-06-01 12:05:53 +00:00
|
|
|
Usage:
|
2014-06-12 14:39:29 +00:00
|
|
|
|
|
|
|
encfs --standard --extpass=./encfs_aes_getpass.py ~/.crypt ~/crypt
|
2018-11-23 15:01:18 +00:00
|
|
|
"""
|
2014-06-12 14:39:29 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2014-06-12 15:39:50 +00:00
|
|
|
import json
|
|
|
|
import hashlib
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2018-11-26 15:07:22 +00:00
|
|
|
import trezorlib
|
|
|
|
|
|
|
|
version_tuple = tuple(map(int, trezorlib.__version__.split(".")))
|
|
|
|
if not (0, 11) <= version_tuple < (0, 12):
|
|
|
|
raise RuntimeError("trezorlib version mismatch (0.11.x is required)")
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
from trezorlib.client import TrezorClient
|
2018-03-05 16:30:44 +00:00
|
|
|
from trezorlib.transport import enumerate_devices
|
2018-11-02 16:06:26 +00:00
|
|
|
from trezorlib.ui import ClickUI
|
2016-05-20 11:36:17 +00:00
|
|
|
|
2018-11-26 15:07:22 +00:00
|
|
|
import trezorlib.misc
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2014-06-12 14:39:29 +00:00
|
|
|
def wait_for_devices():
|
2018-03-05 16:30:44 +00:00
|
|
|
devices = enumerate_devices()
|
2014-06-12 14:39:29 +00:00
|
|
|
while not len(devices):
|
2019-06-17 18:27:55 +00:00
|
|
|
sys.stderr.write("Please connect Trezor to computer and press Enter...")
|
2016-05-20 11:36:17 +00:00
|
|
|
input()
|
2018-03-05 16:30:44 +00:00
|
|
|
devices = enumerate_devices()
|
2014-06-12 14:39:29 +00:00
|
|
|
|
|
|
|
return devices
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2014-06-12 17:16:30 +00:00
|
|
|
def choose_device(devices):
|
2014-06-12 19:45:33 +00:00
|
|
|
if not len(devices):
|
2019-06-17 18:27:55 +00:00
|
|
|
raise RuntimeError("No Trezor connected!")
|
2014-06-12 19:45:33 +00:00
|
|
|
|
|
|
|
if len(devices) == 1:
|
|
|
|
try:
|
2017-09-04 11:36:31 +00:00
|
|
|
return devices[0]
|
2014-06-12 19:45:33 +00:00
|
|
|
except IOError:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise RuntimeError("Device is currently in use")
|
2014-06-12 19:45:33 +00:00
|
|
|
|
2014-06-12 14:39:29 +00:00
|
|
|
i = 0
|
|
|
|
sys.stderr.write("----------------------------\n")
|
|
|
|
sys.stderr.write("Available devices:\n")
|
|
|
|
for d in devices:
|
|
|
|
try:
|
2018-11-23 15:01:18 +00:00
|
|
|
client = TrezorClient(d, ui=ClickUI())
|
2014-06-12 14:39:29 +00:00
|
|
|
except IOError:
|
|
|
|
sys.stderr.write("[-] <device is currently in use>\n")
|
|
|
|
continue
|
|
|
|
|
|
|
|
if client.features.label:
|
|
|
|
sys.stderr.write("[%d] %s\n" % (i, client.features.label))
|
|
|
|
else:
|
|
|
|
sys.stderr.write("[%d] <no label>\n" % i)
|
2017-09-04 11:36:31 +00:00
|
|
|
client.close()
|
2014-06-12 14:39:29 +00:00
|
|
|
i += 1
|
|
|
|
|
|
|
|
sys.stderr.write("----------------------------\n")
|
2016-06-22 12:51:46 +00:00
|
|
|
sys.stderr.write("Please choose device to use:")
|
2014-06-12 14:39:29 +00:00
|
|
|
|
|
|
|
try:
|
2016-05-20 11:36:17 +00:00
|
|
|
device_id = int(input())
|
2017-09-04 11:36:31 +00:00
|
|
|
return devices[device_id]
|
2018-08-10 14:05:14 +00:00
|
|
|
except Exception:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("Invalid choice, exiting...")
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2014-06-12 14:39:29 +00:00
|
|
|
def main():
|
2016-06-01 12:05:53 +00:00
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
if "encfs_root" not in os.environ:
|
|
|
|
sys.stderr.write(
|
|
|
|
"\nThis is not a standalone script and is not meant to be run independently.\n"
|
|
|
|
)
|
|
|
|
sys.stderr.write(
|
|
|
|
"\nUsage: encfs --standard --extpass=./encfs_aes_getpass.py ~/.crypt ~/crypt\n"
|
|
|
|
)
|
2016-06-01 12:05:53 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2014-06-12 14:39:29 +00:00
|
|
|
devices = wait_for_devices()
|
2014-06-12 19:45:33 +00:00
|
|
|
transport = choose_device(devices)
|
2018-11-26 15:07:22 +00:00
|
|
|
client = TrezorClient(transport, ui=ClickUI())
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
rootdir = os.environ["encfs_root"] # Read "man encfs" for more
|
|
|
|
passw_file = os.path.join(rootdir, "password.dat")
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2014-06-12 17:19:56 +00:00
|
|
|
if not os.path.exists(passw_file):
|
2014-06-12 14:39:29 +00:00
|
|
|
# New encfs drive, let's generate password
|
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
sys.stderr.write("Please provide label for new drive: ")
|
2016-05-20 11:36:17 +00:00
|
|
|
label = input()
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2019-06-17 18:27:55 +00:00
|
|
|
sys.stderr.write("Computer asked Trezor for new strong password.\n")
|
2014-06-12 15:39:50 +00:00
|
|
|
|
|
|
|
# 32 bytes, good for AES
|
2018-11-26 15:07:22 +00:00
|
|
|
trezor_entropy = trezorlib.misc.get_entropy(client, 32)
|
2014-06-12 15:39:50 +00:00
|
|
|
urandom_entropy = os.urandom(32)
|
|
|
|
passw = hashlib.sha256(trezor_entropy + urandom_entropy).digest()
|
2014-06-12 14:39:29 +00:00
|
|
|
|
|
|
|
if len(passw) != 32:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("32 bytes password expected")
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2014-06-12 15:39:50 +00:00
|
|
|
bip32_path = [10, 0]
|
2018-11-26 15:07:22 +00:00
|
|
|
passw_encrypted = trezorlib.misc.encrypt_keyvalue(
|
|
|
|
client, bip32_path, label, passw, False, True
|
|
|
|
)
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
data = {
|
|
|
|
"label": label,
|
|
|
|
"bip32_path": bip32_path,
|
|
|
|
"password_encrypted_hex": passw_encrypted.hex(),
|
|
|
|
}
|
2016-01-12 23:17:38 +00:00
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
json.dump(data, open(passw_file, "w"))
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2014-06-12 17:19:56 +00:00
|
|
|
# Let's load password
|
2018-11-23 15:01:18 +00:00
|
|
|
data = json.load(open(passw_file, "r"))
|
2014-06-12 17:19:56 +00:00
|
|
|
|
2018-11-26 15:07:22 +00:00
|
|
|
passw = trezorlib.misc.decrypt_keyvalue(
|
|
|
|
client,
|
2018-11-23 15:01:18 +00:00
|
|
|
data["bip32_path"],
|
|
|
|
data["label"],
|
|
|
|
bytes.fromhex(data["password_encrypted_hex"]),
|
|
|
|
False,
|
|
|
|
True,
|
|
|
|
)
|
2014-06-12 17:19:56 +00:00
|
|
|
|
2016-05-20 11:36:17 +00:00
|
|
|
print(passw)
|
2014-06-12 14:39:29 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2018-11-23 15:01:18 +00:00
|
|
|
if __name__ == "__main__":
|
2014-06-12 14:39:29 +00:00
|
|
|
main()
|