2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# Copyright (C) 2012-2018 SatoshiLabs and contributors
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
2018-05-11 12:53:51 +00:00
|
|
|
import pytest
|
2018-08-13 16:21:24 +00:00
|
|
|
from mnemonic import Mnemonic
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import device, messages as proto
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from .common import TrezorTest, generate_entropy
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2018-02-27 15:29:34 +00:00
|
|
|
@pytest.mark.skip_t2
|
2017-12-23 20:20:49 +00:00
|
|
|
class TestMsgResetDevice(TrezorTest):
|
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
|
2018-08-13 16:21:24 +00:00
|
|
|
external_entropy = b"zlutoucky kun upel divoke ody" * 2
|
2014-02-21 01:33:23 +00:00
|
|
|
strength = 128
|
|
|
|
|
2018-08-13 16:21:24 +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
|
|
|
|
2018-10-22 12:44:36 +00:00
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
2014-03-03 18:30:43 +00:00
|
|
|
# Provide entropy
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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-12-23 20:20:49 +00:00
|
|
|
entropy = generate_entropy(strength, internal_entropy, external_entropy)
|
2018-08-13 16:21:24 +00:00
|
|
|
expected_mnemonic = Mnemonic("english").to_mnemonic(entropy)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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())
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
mnemonic = " ".join(mnemonic)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Compare that device generated proper mnemonic for given entropies
|
2017-12-23 20:20:49 +00:00
|
|
|
assert mnemonic == expected_mnemonic
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(resp, proto.Success)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
mnemonic = " ".join(mnemonic)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Compare that second pass printed out the same mnemonic once again
|
2017-12-23 20:20:49 +00:00
|
|
|
assert 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-12-23 20:20:49 +00:00
|
|
|
assert resp.initialized is True
|
|
|
|
assert resp.needs_backup is False
|
|
|
|
assert resp.pin_protection is False
|
|
|
|
assert resp.passphrase_protection is False
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Do passphrase-protected action, PassphraseRequest should NOT be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(passphrase_protection=True))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(resp, proto.Success)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Do PIN-protected action, PinRequest should NOT be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(pin_protection=True))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(resp, proto.Success)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
def test_reset_device_pin(self):
|
2018-08-13 16:21:24 +00:00
|
|
|
external_entropy = b"zlutoucky kun upel divoke ody" * 2
|
2014-02-21 01:33:23 +00:00
|
|
|
strength = 128
|
|
|
|
|
2018-08-13 16:21:24 +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
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2014-02-21 01:33:23 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
2018-10-22 12:44:36 +00:00
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.PinMatrixRequest)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Enter PIN for first time
|
2018-08-13 16:21:24 +00:00
|
|
|
pin_encoded = self.client.debug.encode_pin("654")
|
2014-02-21 01:33:23 +00:00
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.PinMatrixRequest)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Enter PIN for second time
|
2018-08-13 16:21:24 +00:00
|
|
|
pin_encoded = self.client.debug.encode_pin("654")
|
2014-02-21 01:33:23 +00:00
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
|
2014-03-03 18:30:43 +00:00
|
|
|
# Provide entropy
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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-12-23 20:20:49 +00:00
|
|
|
entropy = generate_entropy(strength, internal_entropy, external_entropy)
|
2018-08-13 16:21:24 +00:00
|
|
|
expected_mnemonic = Mnemonic("english").to_mnemonic(entropy)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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())
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
mnemonic = " ".join(mnemonic)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Compare that device generated proper mnemonic for given entropies
|
2017-12-23 20:20:49 +00:00
|
|
|
assert mnemonic == expected_mnemonic
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
mnemonic = []
|
2017-06-23 19:31:42 +00:00
|
|
|
for _ in range(strength // 32 * 3):
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(resp, proto.Success)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
mnemonic = " ".join(mnemonic)
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Compare that second pass printed out the same mnemonic once again
|
2017-12-23 20:20:49 +00:00
|
|
|
assert mnemonic == expected_mnemonic
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Check if device is properly initialized
|
|
|
|
resp = self.client.call_raw(proto.Initialize())
|
2017-12-23 20:20:49 +00:00
|
|
|
assert resp.initialized is True
|
|
|
|
assert resp.needs_backup is False
|
|
|
|
assert resp.pin_protection is True
|
|
|
|
assert resp.passphrase_protection is True
|
2014-02-21 01:33:23 +00:00
|
|
|
|
|
|
|
# Do passphrase-protected action, PassphraseRequest should be raised
|
|
|
|
resp = self.client.call_raw(proto.Ping(passphrase_protection=True))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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
|
|
|
|
|
2018-08-13 16:21:24 +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
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
2014-02-22 01:15:21 +00:00
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
2018-10-22 12:44:36 +00:00
|
|
|
assert isinstance(ret, proto.ButtonRequest)
|
|
|
|
self.client.debug.press_yes()
|
|
|
|
ret = self.client.call_raw(proto.ButtonAck())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.PinMatrixRequest)
|
2014-02-22 01:15:21 +00:00
|
|
|
|
|
|
|
# Enter PIN for first time
|
|
|
|
pin_encoded = self.client.debug.encode_pin(self.pin4)
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(ret, proto.PinMatrixRequest)
|
2014-02-22 01:15:21 +00:00
|
|
|
|
|
|
|
# Enter PIN for second time
|
|
|
|
pin_encoded = self.client.debug.encode_pin(self.pin6)
|
|
|
|
ret = self.client.call_raw(proto.PinMatrixAck(pin=pin_encoded))
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert isinstance(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()
|
2017-12-23 20:20:49 +00:00
|
|
|
with pytest.raises(Exception):
|
2018-08-13 16:21:24 +00:00
|
|
|
device.reset(self.client, False, 128, True, True, "label", "english")
|