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/>.
|
|
|
|
|
2014-02-21 01:33:23 +00:00
|
|
|
import unittest
|
2017-12-19 09:19:38 +00:00
|
|
|
from . import common
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2017-12-12 15:40:11 +00:00
|
|
|
from trezorlib import messages as proto
|
2014-02-21 01:33:23 +00:00
|
|
|
from mnemonic import Mnemonic
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2017-12-19 14:49:12 +00:00
|
|
|
class TestMsgResetDevice(common.TrezorTest):
|
2017-06-28 11:37:35 +00:00
|
|
|
|
2014-02-21 01:33:23 +00:00
|
|
|
def test_reset_device(self):
|
2017-06-28 15:56:58 +00:00
|
|
|
|
2014-02-21 01:33:23 +00:00
|
|
|
# No PIN, no passphrase
|
2016-06-27 21:17:20 +00:00
|
|
|
external_entropy = b'zlutoucky kun upel divoke ody' * 2
|
2014-02-21 01:33:23 +00:00
|
|
|
strength = 128
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
ret = self.client.call_raw(proto.ResetDevice(
|
|
|
|
display_random=False,
|
|
|
|
strength=strength,
|
|
|
|
passphrase_protection=False,
|
|
|
|
pin_protection=False,
|
|
|
|
language='english',
|
|
|
|
label='test'
|
|
|
|
))
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2014-03-03 18:30:43 +00:00
|
|
|
# Provide entropy
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertIsInstance(ret, proto.EntropyRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
internal_entropy = self.client.debug.read_reset_entropy()
|
2014-02-21 01:33:23 +00:00
|
|
|
ret = self.client.call_raw(proto.EntropyAck(entropy=external_entropy))
|
|
|
|
|
2014-03-03 18:30:43 +00:00
|
|
|
# Generate mnemonic locally
|
2017-06-28 15:56:58 +00:00
|
|
|
entropy = common.generate_entropy(strength, internal_entropy, external_entropy)
|
2014-02-21 01:33:23 +00:00
|
|
|
expected_mnemonic = Mnemonic('english').to_mnemonic(entropy)
|
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
mnemonic.append(self.client.debug.read_reset_word())
|
2014-02-21 01:33:23 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
mnemonic = ' '.join(mnemonic)
|
|
|
|
|
|
|
|
# Compare that device generated proper mnemonic for given entropies
|
|
|
|
self.assertEqual(mnemonic, expected_mnemonic)
|
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
mnemonic.append(self.client.debug.read_reset_word())
|
2014-02-21 01:33:23 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
resp = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
self.assertIsInstance(resp, proto.Success)
|
|
|
|
|
|
|
|
mnemonic = ' '.join(mnemonic)
|
|
|
|
|
|
|
|
# Compare that second pass printed out the same mnemonic once again
|
|
|
|
self.assertEqual(mnemonic, expected_mnemonic)
|
2014-03-03 18:30:43 +00:00
|
|
|
|
2014-02-21 01:33:23 +00:00
|
|
|
# Check if device is properly initialized
|
|
|
|
resp = self.client.call_raw(proto.Initialize())
|
2017-06-28 15:56:58 +00:00
|
|
|
self.assertTrue(resp.initialized)
|
|
|
|
self.assertFalse(resp.needs_backup)
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertFalse(resp.pin_protection)
|
|
|
|
self.assertFalse(resp.passphrase_protection)
|
|
|
|
|
|
|
|
# Do passphrase-protected action, PassphraseRequest should NOT be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(passphrase_protection=True))
|
|
|
|
self.assertIsInstance(resp, proto.Success)
|
|
|
|
|
|
|
|
# Do PIN-protected action, PinRequest should NOT be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(pin_protection=True))
|
|
|
|
self.assertIsInstance(resp, proto.Success)
|
|
|
|
|
|
|
|
def test_reset_device_pin(self):
|
2016-06-27 21:17:20 +00:00
|
|
|
external_entropy = b'zlutoucky kun upel divoke ody' * 2
|
2014-02-21 01:33:23 +00:00
|
|
|
strength = 128
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
ret = self.client.call_raw(proto.ResetDevice(
|
|
|
|
display_random=True,
|
|
|
|
strength=strength,
|
|
|
|
passphrase_protection=True,
|
|
|
|
pin_protection=True,
|
|
|
|
language='english',
|
|
|
|
label='test'
|
|
|
|
))
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
self.assertIsInstance(ret, proto.PinMatrixRequest)
|
|
|
|
|
|
|
|
# Enter PIN for first time
|
|
|
|
pin_encoded = self.client.debug.encode_pin('654')
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
self.assertIsInstance(ret, proto.PinMatrixRequest)
|
|
|
|
|
|
|
|
# Enter PIN for second time
|
|
|
|
pin_encoded = self.client.debug.encode_pin('654')
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
|
2014-03-03 18:30:43 +00:00
|
|
|
# Provide entropy
|
|
|
|
self.assertIsInstance(ret, proto.EntropyRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
internal_entropy = self.client.debug.read_reset_entropy()
|
2014-03-03 18:30:43 +00:00
|
|
|
ret = self.client.call_raw(proto.EntropyAck(entropy=external_entropy))
|
|
|
|
|
|
|
|
# Generate mnemonic locally
|
2017-06-28 15:56:58 +00:00
|
|
|
entropy = common.generate_entropy(strength, internal_entropy, external_entropy)
|
2014-02-21 01:33:23 +00:00
|
|
|
expected_mnemonic = Mnemonic('english').to_mnemonic(entropy)
|
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
mnemonic.append(self.client.debug.read_reset_word())
|
2014-02-21 01:33:23 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
mnemonic = ' '.join(mnemonic)
|
|
|
|
|
|
|
|
# Compare that device generated proper mnemonic for given entropies
|
|
|
|
self.assertEqual(mnemonic, expected_mnemonic)
|
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
2014-03-07 16:25:55 +00:00
|
|
|
mnemonic.append(self.client.debug.read_reset_word())
|
2014-02-21 01:33:23 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
resp = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
self.assertIsInstance(resp, proto.Success)
|
|
|
|
|
|
|
|
mnemonic = ' '.join(mnemonic)
|
|
|
|
|
|
|
|
# Compare that second pass printed out the same mnemonic once again
|
|
|
|
self.assertEqual(mnemonic, expected_mnemonic)
|
|
|
|
|
|
|
|
# Check if device is properly initialized
|
|
|
|
resp = self.client.call_raw(proto.Initialize())
|
2017-06-28 15:56:58 +00:00
|
|
|
self.assertTrue(resp.initialized)
|
|
|
|
self.assertFalse(resp.needs_backup)
|
2014-02-21 01:33:23 +00:00
|
|
|
self.assertTrue(resp.pin_protection)
|
|
|
|
self.assertTrue(resp.passphrase_protection)
|
|
|
|
|
|
|
|
# Do passphrase-protected action, PassphraseRequest should be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(passphrase_protection=True))
|
|
|
|
self.assertIsInstance(resp, proto.PassphraseRequest)
|
2014-03-03 18:30:43 +00:00
|
|
|
self.client.call_raw(proto.Cancel())
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Do PIN-protected action, PinRequest should be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(pin_protection=True))
|
|
|
|
self.assertIsInstance(resp, proto.PinMatrixRequest)
|
2014-03-03 18:30:43 +00:00
|
|
|
self.client.call_raw(proto.Cancel())
|
2014-02-22 01:15:21 +00:00
|
|
|
|
|
|
|
def test_failed_pin(self):
|
2017-06-23 19:31:42 +00:00
|
|
|
# external_entropy = b'zlutoucky kun upel divoke ody' * 2
|
2014-02-22 01:15:21 +00:00
|
|
|
strength = 128
|
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
ret = self.client.call_raw(proto.ResetDevice(
|
|
|
|
display_random=True,
|
|
|
|
strength=strength,
|
|
|
|
passphrase_protection=True,
|
|
|
|
pin_protection=True,
|
|
|
|
language='english',
|
|
|
|
label='test'
|
|
|
|
))
|
2014-02-22 01:15:21 +00:00
|
|
|
|
|
|
|
self.assertIsInstance(ret, proto.ButtonRequest)
|
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
|
|
|
self.assertIsInstance(ret, proto.PinMatrixRequest)
|
|
|
|
|
|
|
|
# Enter PIN for first time
|
|
|
|
pin_encoded = self.client.debug.encode_pin(self.pin4)
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
self.assertIsInstance(ret, proto.PinMatrixRequest)
|
|
|
|
|
|
|
|
# Enter PIN for second time
|
|
|
|
pin_encoded = self.client.debug.encode_pin(self.pin6)
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
|
|
|
|
self.assertIsInstance(ret, proto.Failure)
|
2014-03-03 18:30:43 +00:00
|
|
|
|
2014-02-22 01:15:21 +00:00
|
|
|
def test_already_initialized(self):
|
|
|
|
self.setup_mnemonic_nopin_nopassphrase()
|
|
|
|
self.assertRaises(Exception, self.client.reset_device, False, 128, True, True, 'label', 'english')
|