2017-01-03 18:40:05 +00:00
|
|
|
# This file is part of the TREZOR project.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012-2016 Marek Palatinus <slush@satoshilabs.com>
|
|
|
|
# Copyright (C) 2012-2016 Pavol Rusnak <stick@satoshilabs.com>
|
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-05-20 20:27:20 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
from binascii import hexlify, unhexlify
|
|
|
|
import pytest
|
2017-12-19 09:11:35 +00:00
|
|
|
import os
|
2017-06-28 15:56:58 +00:00
|
|
|
|
2017-07-01 15:59:11 +00:00
|
|
|
from trezorlib.client import TrezorClient, TrezorClientDebugLink
|
2016-11-28 15:01:45 +00:00
|
|
|
from trezorlib import tx_api
|
2013-01-14 13:44:31 +00:00
|
|
|
|
2017-12-19 09:11:35 +00:00
|
|
|
tests_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
tx_api.cache_dir = os.path.join(tests_dir, '../txcache')
|
2016-11-28 15:01:45 +00:00
|
|
|
|
|
|
|
|
2017-07-28 16:07:20 +00:00
|
|
|
try:
|
|
|
|
from trezorlib.transport_hid import HidTransport
|
|
|
|
HID_ENABLED = True
|
2017-11-06 10:09:54 +00:00
|
|
|
except ImportError as e:
|
|
|
|
print('HID transport disabled:', e)
|
2017-07-28 16:07:20 +00:00
|
|
|
HID_ENABLED = False
|
|
|
|
|
|
|
|
try:
|
|
|
|
from trezorlib.transport_pipe import PipeTransport
|
|
|
|
PIPE_ENABLED = True
|
2017-11-06 10:09:54 +00:00
|
|
|
except ImportError as e:
|
|
|
|
print('PIPE transport disabled:', e)
|
2017-07-28 16:07:20 +00:00
|
|
|
PIPE_ENABLED = False
|
|
|
|
|
|
|
|
try:
|
|
|
|
from trezorlib.transport_udp import UdpTransport
|
|
|
|
UDP_ENABLED = True
|
2017-11-06 10:09:54 +00:00
|
|
|
except ImportError as e:
|
|
|
|
print('UDP transport disabled:', e)
|
2017-07-28 16:07:20 +00:00
|
|
|
UDP_ENABLED = False
|
|
|
|
|
|
|
|
|
|
|
|
def pipe_exists(path):
|
|
|
|
import os
|
|
|
|
import stat
|
|
|
|
try:
|
|
|
|
return stat.S_ISFIFO(os.stat(path).st_mode)
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2017-09-04 11:36:08 +00:00
|
|
|
def get_transport():
|
|
|
|
if HID_ENABLED and HidTransport.enumerate():
|
|
|
|
devices = HidTransport.enumerate()
|
|
|
|
wirelink = devices[0]
|
|
|
|
debuglink = devices[0].find_debug()
|
2017-07-28 16:07:20 +00:00
|
|
|
|
2017-09-04 11:36:08 +00:00
|
|
|
elif PIPE_ENABLED and pipe_exists('/tmp/pipe.trezor.to'):
|
|
|
|
wirelink = PipeTransport('/tmp/pipe.trezor', False)
|
|
|
|
debuglink = PipeTransport('/tmp/pipe.trezor_debug', False)
|
2017-07-28 16:07:20 +00:00
|
|
|
|
2017-09-04 11:36:08 +00:00
|
|
|
elif UDP_ENABLED:
|
|
|
|
wirelink = UdpTransport()
|
|
|
|
debuglink = UdpTransport()
|
2017-07-28 16:07:20 +00:00
|
|
|
|
2017-09-04 11:36:08 +00:00
|
|
|
return wirelink, debuglink
|
2017-07-28 16:07:20 +00:00
|
|
|
|
|
|
|
|
2017-09-04 11:36:08 +00:00
|
|
|
if HID_ENABLED and HidTransport.enumerate():
|
|
|
|
print('Using TREZOR')
|
|
|
|
elif PIPE_ENABLED and pipe_exists('/tmp/pipe.trezor.to'):
|
|
|
|
print('Using Emulator (v1=pipe)')
|
|
|
|
elif UDP_ENABLED:
|
2017-07-28 16:07:20 +00:00
|
|
|
print('Using Emulator (v2=udp)')
|
2017-09-04 09:22:41 +00:00
|
|
|
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
class TrezorTest(object):
|
2017-06-28 15:56:58 +00:00
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
def setup_method(self, method):
|
2017-09-04 11:36:08 +00:00
|
|
|
wirelink, debuglink = get_transport()
|
|
|
|
self.client = TrezorClientDebugLink(wirelink)
|
|
|
|
self.client.set_debuglink(debuglink)
|
2016-11-28 15:01:45 +00:00
|
|
|
self.client.set_tx_api(tx_api.TxApiBitcoin)
|
2014-12-10 14:26:18 +00:00
|
|
|
# self.client.set_buttonwait(3)
|
2013-09-13 03:28:56 +00:00
|
|
|
|
2014-03-07 20:44:27 +00:00
|
|
|
# 1 2 3 4 5 6 7 8 9 10 11 12
|
2014-02-17 00:54:54 +00:00
|
|
|
self.mnemonic12 = 'alcohol woman abuse must during monitor noble actual mixed trade anger aisle'
|
|
|
|
self.mnemonic18 = 'owner little vague addict embark decide pink prosper true fork panda embody mixture exchange choose canoe electric jewel'
|
|
|
|
self.mnemonic24 = 'dignity pass list indicate nasty swamp pool script soccer toe leaf photo multiply desk host tomato cradle drill spread actor shine dismiss champion exotic'
|
2016-10-21 13:24:30 +00:00
|
|
|
self.mnemonic_all = ' '.join(['all'] * 12)
|
2013-09-13 03:28:56 +00:00
|
|
|
|
2014-02-17 00:54:54 +00:00
|
|
|
self.pin4 = '1234'
|
|
|
|
self.pin6 = '789456'
|
|
|
|
self.pin8 = '45678978'
|
2013-09-13 03:28:56 +00:00
|
|
|
|
2014-02-17 00:54:54 +00:00
|
|
|
self.client.wipe_device()
|
2017-10-31 16:04:27 +00:00
|
|
|
self.client.transport.session_begin()
|
2013-09-13 03:28:56 +00:00
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
def teardown_method(self, method):
|
|
|
|
self.client.transport.session_end()
|
|
|
|
self.client.close()
|
2014-02-17 00:54:54 +00:00
|
|
|
|
2016-10-21 13:24:30 +00:00
|
|
|
def setup_mnemonic_allallall(self):
|
|
|
|
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic_all, pin='', passphrase_protection=False, label='test', language='english')
|
|
|
|
|
2014-02-17 00:54:54 +00:00
|
|
|
def setup_mnemonic_nopin_nopassphrase(self):
|
|
|
|
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin='', passphrase_protection=False, label='test', language='english')
|
|
|
|
|
2014-12-13 18:07:30 +00:00
|
|
|
def setup_mnemonic_pin_nopassphrase(self):
|
|
|
|
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin=self.pin4, passphrase_protection=False, label='test', language='english')
|
|
|
|
|
2014-02-17 00:54:54 +00:00
|
|
|
def setup_mnemonic_pin_passphrase(self):
|
|
|
|
self.client.load_device_by_mnemonic(mnemonic=self.mnemonic12, pin=self.pin4, passphrase_protection=True, label='test', language='english')
|
|
|
|
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
def generate_entropy(strength, internal_entropy, external_entropy):
|
|
|
|
'''
|
|
|
|
strength - length of produced seed. One of 128, 192, 256
|
|
|
|
random - binary stream of random data from external HRNG
|
|
|
|
'''
|
2017-12-23 20:20:49 +00:00
|
|
|
import hashlib
|
|
|
|
|
2017-06-28 15:56:58 +00:00
|
|
|
if strength not in (128, 192, 256):
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("Invalid strength")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
if not internal_entropy:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("Internal entropy is not provided")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
if len(internal_entropy) < 32:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("Internal entropy too short")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
if not external_entropy:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("External entropy is not provided")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
if len(external_entropy) < 32:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("External entropy too short")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
entropy = hashlib.sha256(internal_entropy + external_entropy).digest()
|
|
|
|
entropy_stripped = entropy[:strength // 8]
|
|
|
|
|
|
|
|
if len(entropy_stripped) * 8 != strength:
|
2017-11-06 10:09:54 +00:00
|
|
|
raise ValueError("Entropy length mismatch")
|
2017-06-28 15:56:58 +00:00
|
|
|
|
|
|
|
return entropy_stripped
|