2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 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
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2020-05-28 09:57:04 +00:00
|
|
|
from trezorlib import debuglink, device, messages, misc
|
2022-01-31 12:25:30 +00:00
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
2022-02-03 12:16:26 +00:00
|
|
|
from trezorlib.tools import parse_path
|
2020-11-25 14:01:57 +00:00
|
|
|
from trezorlib.transport import udp
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2019-09-11 12:43:32 +00:00
|
|
|
from ..common import MNEMONIC12
|
2018-08-13 16:21:24 +00:00
|
|
|
|
2014-02-06 22:34:13 +00:00
|
|
|
|
2024-03-11 15:20:08 +00:00
|
|
|
@pytest.mark.skip_t2t1
|
|
|
|
@pytest.mark.skip_t2b1
|
2024-03-09 21:05:05 +00:00
|
|
|
@pytest.mark.skip_t3t1
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_layout(client: Client):
|
2021-11-10 21:19:53 +00:00
|
|
|
layout = client.debug.state().layout
|
|
|
|
assert len(layout) == 1024
|
|
|
|
|
|
|
|
|
2024-03-11 15:20:08 +00:00
|
|
|
@pytest.mark.skip_t2t1
|
|
|
|
@pytest.mark.skip_t2b1
|
2024-03-09 21:05:05 +00:00
|
|
|
@pytest.mark.skip_t3t1
|
2021-11-10 21:19:53 +00:00
|
|
|
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_mnemonic(client: Client):
|
2021-11-10 21:19:53 +00:00
|
|
|
client.ensure_unlocked()
|
|
|
|
mnemonic = client.debug.state().mnemonic_secret
|
|
|
|
assert mnemonic == MNEMONIC12.encode()
|
|
|
|
|
|
|
|
|
2024-03-11 15:20:08 +00:00
|
|
|
@pytest.mark.skip_t2t1
|
|
|
|
@pytest.mark.skip_t2b1
|
2024-03-09 21:05:05 +00:00
|
|
|
@pytest.mark.skip_t3t1
|
2021-11-10 21:19:53 +00:00
|
|
|
@pytest.mark.setup_client(mnemonic=MNEMONIC12, pin="1234", passphrase="")
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_pin(client: Client):
|
2022-02-03 12:16:26 +00:00
|
|
|
resp = client.call_raw(messages.GetAddress(address_n=parse_path("m/44'/0'/0'/0/0")))
|
2021-11-10 21:19:53 +00:00
|
|
|
assert isinstance(resp, messages.PinMatrixRequest)
|
|
|
|
|
|
|
|
state = client.debug.state()
|
|
|
|
assert state.pin == "1234"
|
|
|
|
assert state.matrix != ""
|
|
|
|
|
|
|
|
pin_encoded = client.debug.encode_pin("1234")
|
|
|
|
resp = client.call_raw(messages.PinMatrixAck(pin=pin_encoded))
|
|
|
|
assert isinstance(resp, messages.PassphraseRequest)
|
|
|
|
|
|
|
|
resp = client.call_raw(messages.PassphraseAck(passphrase=""))
|
|
|
|
assert isinstance(resp, messages.Address)
|
2020-05-28 09:57:04 +00:00
|
|
|
|
|
|
|
|
2024-03-11 15:20:08 +00:00
|
|
|
@pytest.mark.skip_t1b1
|
2022-01-31 12:25:30 +00:00
|
|
|
def test_softlock_instability(client: Client):
|
2020-05-28 09:57:04 +00:00
|
|
|
def load_device():
|
|
|
|
debuglink.load_device(
|
|
|
|
client,
|
|
|
|
mnemonic=MNEMONIC12,
|
|
|
|
pin="1234",
|
|
|
|
passphrase_protection=False,
|
|
|
|
label="test",
|
|
|
|
)
|
|
|
|
|
|
|
|
# start from a clean slate:
|
2020-11-25 14:01:57 +00:00
|
|
|
resp = client.debug.reseed(0)
|
|
|
|
if isinstance(resp, messages.Failure) and not isinstance(
|
|
|
|
client.transport, udp.UdpTransport
|
|
|
|
):
|
|
|
|
pytest.xfail("reseed only supported on emulator")
|
2020-05-28 09:57:04 +00:00
|
|
|
device.wipe(client)
|
|
|
|
entropy_after_wipe = misc.get_entropy(client, 16)
|
|
|
|
|
|
|
|
# configure and wipe the device
|
|
|
|
load_device()
|
|
|
|
client.debug.reseed(0)
|
|
|
|
device.wipe(client)
|
|
|
|
assert misc.get_entropy(client, 16) == entropy_after_wipe
|
|
|
|
|
|
|
|
load_device()
|
|
|
|
# the device has PIN -> lock it
|
|
|
|
client.call(messages.LockDevice())
|
|
|
|
client.debug.reseed(0)
|
|
|
|
# wipe_device should succeed with no need to unlock
|
|
|
|
device.wipe(client)
|
|
|
|
# the device is now trying to run the lockscreen, which attempts to unlock.
|
|
|
|
# If the device actually called config.unlock(), it would use additional randomness.
|
|
|
|
# That is undesirable. Assert that the returned entropy is still the same.
|
|
|
|
assert misc.get_entropy(client, 16) == entropy_after_wipe
|