2021-03-22 15:14:24 +00:00
|
|
|
import storage.cache
|
2019-10-25 15:43:55 +00:00
|
|
|
import storage.device
|
2021-03-22 15:14:24 +00:00
|
|
|
from trezor import config, utils, wire, workflow
|
|
|
|
from trezor.messages import MessageType
|
2018-02-27 15:35:21 +00:00
|
|
|
from trezor.messages.Success import Success
|
|
|
|
|
2021-03-19 15:41:05 +00:00
|
|
|
from . import workflow_handlers
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
if False:
|
2020-04-21 13:49:37 +00:00
|
|
|
import protobuf
|
2021-03-30 08:57:07 +00:00
|
|
|
from typing import NoReturn
|
2021-03-22 15:14:24 +00:00
|
|
|
from trezor.messages.Features import Features
|
2019-07-03 13:07:04 +00:00
|
|
|
from trezor.messages.Initialize import Initialize
|
2020-08-25 12:51:06 +00:00
|
|
|
from trezor.messages.EndSession import EndSession
|
2019-07-03 13:07:04 +00:00
|
|
|
from trezor.messages.GetFeatures import GetFeatures
|
|
|
|
from trezor.messages.Cancel import Cancel
|
2020-04-21 13:49:37 +00:00
|
|
|
from trezor.messages.LockDevice import LockDevice
|
2019-07-03 13:07:04 +00:00
|
|
|
from trezor.messages.Ping import Ping
|
2020-07-16 17:10:32 +00:00
|
|
|
from trezor.messages.DoPreauthorized import DoPreauthorized
|
2020-08-03 16:16:12 +00:00
|
|
|
from trezor.messages.CancelAuthorization import CancelAuthorization
|
2020-07-16 17:10:32 +00:00
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
|
|
|
|
def get_features() -> Features:
|
2021-03-22 15:14:24 +00:00
|
|
|
import storage.recovery
|
|
|
|
import storage.sd_salt
|
|
|
|
|
|
|
|
from trezor import sdcard
|
|
|
|
from trezor.messages import Capability
|
|
|
|
from trezor.messages.Features import Features
|
|
|
|
|
|
|
|
from apps.common import mnemonic, safety_checks
|
|
|
|
|
2021-01-14 13:18:12 +00:00
|
|
|
f = Features(
|
|
|
|
vendor="trezor.io",
|
|
|
|
language="en-US",
|
|
|
|
major_version=utils.VERSION_MAJOR,
|
|
|
|
minor_version=utils.VERSION_MINOR,
|
|
|
|
patch_version=utils.VERSION_PATCH,
|
2021-05-21 09:35:43 +00:00
|
|
|
revision=utils.SCM_REVISION,
|
2021-01-14 13:18:12 +00:00
|
|
|
model=utils.MODEL,
|
|
|
|
device_id=storage.device.get_device_id(),
|
|
|
|
label=storage.device.get_label(),
|
|
|
|
pin_protection=config.has_pin(),
|
|
|
|
unlocked=config.is_unlocked(),
|
|
|
|
passphrase_protection=storage.device.is_passphrase_enabled(),
|
|
|
|
)
|
2020-04-27 11:15:56 +00:00
|
|
|
|
2019-08-22 18:16:18 +00:00
|
|
|
if utils.BITCOIN_ONLY:
|
2019-08-28 10:42:33 +00:00
|
|
|
f.capabilities = [
|
|
|
|
Capability.Bitcoin,
|
|
|
|
Capability.Crypto,
|
|
|
|
Capability.Shamir,
|
|
|
|
Capability.ShamirGroups,
|
2019-11-21 09:43:57 +00:00
|
|
|
Capability.PassphraseEntry,
|
2019-08-28 07:25:11 +00:00
|
|
|
]
|
2019-08-22 18:16:18 +00:00
|
|
|
else:
|
2019-08-28 10:42:33 +00:00
|
|
|
f.capabilities = [
|
|
|
|
Capability.Bitcoin,
|
|
|
|
Capability.Bitcoin_like,
|
|
|
|
Capability.Binance,
|
|
|
|
Capability.Cardano,
|
|
|
|
Capability.Crypto,
|
|
|
|
Capability.EOS,
|
|
|
|
Capability.Ethereum,
|
|
|
|
Capability.Lisk,
|
|
|
|
Capability.Monero,
|
|
|
|
Capability.NEM,
|
|
|
|
Capability.Ripple,
|
|
|
|
Capability.Stellar,
|
|
|
|
Capability.Tezos,
|
|
|
|
Capability.U2F,
|
|
|
|
Capability.Shamir,
|
|
|
|
Capability.ShamirGroups,
|
2019-11-21 09:43:57 +00:00
|
|
|
Capability.PassphraseEntry,
|
2019-08-22 18:16:18 +00:00
|
|
|
]
|
2020-02-17 14:51:39 +00:00
|
|
|
f.sd_card_present = sdcard.is_present()
|
2020-06-16 07:20:06 +00:00
|
|
|
f.initialized = storage.device.is_initialized()
|
2020-04-27 11:15:56 +00:00
|
|
|
|
|
|
|
# private fields:
|
|
|
|
if config.is_unlocked():
|
|
|
|
|
|
|
|
f.needs_backup = storage.device.needs_backup()
|
|
|
|
f.unfinished_backup = storage.device.unfinished_backup()
|
|
|
|
f.no_backup = storage.device.no_backup()
|
|
|
|
f.flags = storage.device.get_flags()
|
|
|
|
f.recovery_mode = storage.recovery.is_in_progress()
|
|
|
|
f.backup_type = mnemonic.get_type()
|
|
|
|
f.sd_protection = storage.sd_salt.is_enabled()
|
|
|
|
f.wipe_code_protection = config.has_wipe_code()
|
|
|
|
f.passphrase_always_on_device = storage.device.get_passphrase_always_on_device()
|
2020-09-17 12:27:04 +00:00
|
|
|
f.safety_checks = safety_checks.read_setting()
|
2020-10-01 21:23:10 +00:00
|
|
|
f.auto_lock_delay_ms = storage.device.get_autolock_delay_ms()
|
|
|
|
f.display_rotation = storage.device.get_rotation()
|
2020-10-04 21:46:54 +00:00
|
|
|
f.experimental_features = storage.device.get_experimental_features()
|
2020-04-27 11:15:56 +00:00
|
|
|
|
2016-11-15 10:51:28 +00:00
|
|
|
return f
|
2016-04-28 21:43:34 +00:00
|
|
|
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
async def handle_Initialize(ctx: wire.Context, msg: Initialize) -> Features:
|
2020-02-13 09:19:07 +00:00
|
|
|
features = get_features()
|
|
|
|
if msg.session_id:
|
|
|
|
msg.session_id = bytes(msg.session_id)
|
2021-03-22 15:14:24 +00:00
|
|
|
features.session_id = storage.cache.start_session(msg.session_id)
|
2020-02-13 09:19:07 +00:00
|
|
|
return features
|
2018-05-28 13:20:31 +00:00
|
|
|
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
async def handle_GetFeatures(ctx: wire.Context, msg: GetFeatures) -> Features:
|
2018-05-28 13:20:31 +00:00
|
|
|
return get_features()
|
|
|
|
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
async def handle_Cancel(ctx: wire.Context, msg: Cancel) -> NoReturn:
|
2020-04-21 12:18:53 +00:00
|
|
|
raise wire.ActionCancelled
|
2018-06-06 15:23:27 +00:00
|
|
|
|
|
|
|
|
2020-04-21 13:49:37 +00:00
|
|
|
async def handle_LockDevice(ctx: wire.Context, msg: LockDevice) -> Success:
|
|
|
|
lock_device()
|
2020-02-03 15:28:08 +00:00
|
|
|
return Success()
|
2018-02-27 15:35:21 +00:00
|
|
|
|
|
|
|
|
2020-08-25 12:51:06 +00:00
|
|
|
async def handle_EndSession(ctx: wire.Context, msg: EndSession) -> Success:
|
2021-03-22 15:14:24 +00:00
|
|
|
storage.cache.end_current_session()
|
2020-08-25 12:51:06 +00:00
|
|
|
return Success()
|
|
|
|
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
async def handle_Ping(ctx: wire.Context, msg: Ping) -> Success:
|
2017-09-06 20:53:36 +00:00
|
|
|
if msg.button_protection:
|
2021-03-10 11:56:44 +00:00
|
|
|
from trezor.ui.layouts import confirm_action
|
2017-09-06 20:53:36 +00:00
|
|
|
from trezor.messages.ButtonRequestType import ProtectCall
|
2018-07-03 14:20:58 +00:00
|
|
|
|
2021-03-10 11:56:44 +00:00
|
|
|
await confirm_action(ctx, "ping", "Confirm", "ping", br_code=ProtectCall)
|
2018-02-28 16:04:09 +00:00
|
|
|
return Success(message=msg.message)
|
2018-02-09 17:07:47 +00:00
|
|
|
|
|
|
|
|
2020-07-16 17:10:32 +00:00
|
|
|
async def handle_DoPreauthorized(
|
|
|
|
ctx: wire.Context, msg: DoPreauthorized
|
|
|
|
) -> protobuf.MessageType:
|
2021-03-22 15:14:24 +00:00
|
|
|
from trezor.messages.PreauthorizedRequest import PreauthorizedRequest
|
2021-03-30 08:57:07 +00:00
|
|
|
from apps.common import authorization
|
2021-03-22 15:14:24 +00:00
|
|
|
|
2021-03-30 08:57:07 +00:00
|
|
|
if not authorization.is_set():
|
2020-07-16 17:10:32 +00:00
|
|
|
raise wire.ProcessError("No preauthorized operation")
|
|
|
|
|
2021-03-30 08:57:07 +00:00
|
|
|
wire_types = authorization.get_wire_types()
|
|
|
|
utils.ensure(bool(wire_types), "Unsupported preauthorization found")
|
|
|
|
|
|
|
|
req = await ctx.call_any(PreauthorizedRequest(), *wire_types)
|
2020-07-16 17:10:32 +00:00
|
|
|
|
2021-03-23 12:36:03 +00:00
|
|
|
assert req.MESSAGE_WIRE_TYPE is not None
|
2021-03-19 15:41:05 +00:00
|
|
|
handler = workflow_handlers.find_registered_handler(
|
|
|
|
ctx.iface, req.MESSAGE_WIRE_TYPE
|
|
|
|
)
|
2020-07-16 17:10:32 +00:00
|
|
|
if handler is None:
|
|
|
|
return wire.unexpected_message()
|
|
|
|
|
2021-03-30 08:57:07 +00:00
|
|
|
return await handler(ctx, req, authorization.get()) # type: ignore
|
2020-07-16 17:10:32 +00:00
|
|
|
|
|
|
|
|
2020-08-03 16:16:12 +00:00
|
|
|
async def handle_CancelAuthorization(
|
|
|
|
ctx: wire.Context, msg: CancelAuthorization
|
|
|
|
) -> protobuf.MessageType:
|
2021-03-30 08:57:07 +00:00
|
|
|
from apps.common import authorization
|
2020-08-03 16:16:12 +00:00
|
|
|
|
2021-03-30 08:57:07 +00:00
|
|
|
authorization.clear()
|
2020-08-03 16:16:12 +00:00
|
|
|
return Success(message="Authorization cancelled")
|
|
|
|
|
|
|
|
|
2020-04-27 11:15:56 +00:00
|
|
|
ALLOW_WHILE_LOCKED = (
|
|
|
|
MessageType.Initialize,
|
2020-08-25 12:51:06 +00:00
|
|
|
MessageType.EndSession,
|
2020-04-27 11:15:56 +00:00
|
|
|
MessageType.GetFeatures,
|
2020-05-25 13:20:43 +00:00
|
|
|
MessageType.Cancel,
|
2020-04-29 10:05:08 +00:00
|
|
|
MessageType.LockDevice,
|
2020-07-16 17:10:32 +00:00
|
|
|
MessageType.DoPreauthorized,
|
2020-04-27 11:15:56 +00:00
|
|
|
MessageType.WipeDevice,
|
|
|
|
)
|
2020-04-21 13:49:37 +00:00
|
|
|
|
|
|
|
|
2020-04-22 08:58:24 +00:00
|
|
|
def set_homescreen() -> None:
|
2021-03-22 15:14:24 +00:00
|
|
|
import storage.recovery
|
|
|
|
|
2020-04-22 08:58:24 +00:00
|
|
|
if not config.is_unlocked():
|
|
|
|
from apps.homescreen.lockscreen import lockscreen
|
|
|
|
|
|
|
|
workflow.set_default(lockscreen)
|
|
|
|
|
|
|
|
elif storage.recovery.is_in_progress():
|
|
|
|
from apps.management.recovery_device.homescreen import recovery_homescreen
|
|
|
|
|
|
|
|
workflow.set_default(recovery_homescreen)
|
|
|
|
|
|
|
|
else:
|
|
|
|
from apps.homescreen.homescreen import homescreen
|
|
|
|
|
|
|
|
workflow.set_default(homescreen)
|
|
|
|
|
|
|
|
|
2020-04-21 13:49:37 +00:00
|
|
|
def lock_device() -> None:
|
2020-04-24 10:16:32 +00:00
|
|
|
if config.has_pin():
|
|
|
|
config.lock()
|
|
|
|
wire.find_handler = get_pinlocked_handler
|
2020-05-19 12:56:22 +00:00
|
|
|
set_homescreen()
|
|
|
|
workflow.close_others()
|
2020-04-21 13:49:37 +00:00
|
|
|
|
|
|
|
|
2021-01-26 16:57:53 +00:00
|
|
|
def lock_device_if_unlocked() -> None:
|
|
|
|
if config.is_unlocked():
|
|
|
|
lock_device()
|
|
|
|
|
|
|
|
|
2020-04-21 13:49:37 +00:00
|
|
|
async def unlock_device(ctx: wire.GenericContext = wire.DUMMY_CONTEXT) -> None:
|
2020-05-28 09:57:04 +00:00
|
|
|
"""Ensure the device is in unlocked state.
|
|
|
|
|
|
|
|
If the storage is locked, attempt to unlock it. Reset the homescreen and the wire
|
|
|
|
handler.
|
|
|
|
"""
|
2021-03-22 15:14:24 +00:00
|
|
|
from apps.common.request_pin import verify_user_pin
|
|
|
|
|
2020-05-28 09:57:04 +00:00
|
|
|
if not config.is_unlocked():
|
|
|
|
# verify_user_pin will raise if the PIN was invalid
|
|
|
|
await verify_user_pin(ctx)
|
|
|
|
|
2020-04-22 08:58:24 +00:00
|
|
|
set_homescreen()
|
2021-03-19 15:41:05 +00:00
|
|
|
wire.find_handler = workflow_handlers.find_registered_handler
|
2020-04-21 13:49:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_pinlocked_handler(
|
|
|
|
iface: wire.WireInterface, msg_type: int
|
2021-03-18 09:48:50 +00:00
|
|
|
) -> wire.Handler[wire.Msg] | None:
|
2021-03-19 15:41:05 +00:00
|
|
|
orig_handler = workflow_handlers.find_registered_handler(iface, msg_type)
|
2020-04-21 13:49:37 +00:00
|
|
|
if orig_handler is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if __debug__:
|
|
|
|
import usb
|
|
|
|
|
|
|
|
if iface is usb.iface_debug:
|
|
|
|
return orig_handler
|
|
|
|
|
|
|
|
if msg_type in ALLOW_WHILE_LOCKED:
|
|
|
|
return orig_handler
|
|
|
|
|
|
|
|
async def wrapper(ctx: wire.Context, msg: wire.Msg) -> protobuf.MessageType:
|
|
|
|
# mypy limitation: orig_handler is not recognized as non-None
|
|
|
|
assert orig_handler is not None
|
|
|
|
await unlock_device(ctx)
|
|
|
|
return await orig_handler(ctx, msg)
|
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
2021-01-28 11:21:43 +00:00
|
|
|
# this function is also called when handling ApplySettings
|
|
|
|
def reload_settings_from_storage() -> None:
|
2021-03-22 15:14:24 +00:00
|
|
|
from trezor import ui
|
|
|
|
|
2021-01-28 11:21:43 +00:00
|
|
|
workflow.idle_timer.set(
|
|
|
|
storage.device.get_autolock_delay_ms(), lock_device_if_unlocked
|
|
|
|
)
|
|
|
|
wire.experimental_enabled = storage.device.get_experimental_features()
|
|
|
|
ui.display.orientation(storage.device.get_rotation())
|
|
|
|
|
|
|
|
|
2019-10-31 09:27:59 +00:00
|
|
|
def boot() -> None:
|
2021-03-19 15:41:05 +00:00
|
|
|
workflow_handlers.register(MessageType.Initialize, handle_Initialize)
|
|
|
|
workflow_handlers.register(MessageType.GetFeatures, handle_GetFeatures)
|
|
|
|
workflow_handlers.register(MessageType.Cancel, handle_Cancel)
|
|
|
|
workflow_handlers.register(MessageType.LockDevice, handle_LockDevice)
|
|
|
|
workflow_handlers.register(MessageType.EndSession, handle_EndSession)
|
|
|
|
workflow_handlers.register(MessageType.Ping, handle_Ping)
|
|
|
|
workflow_handlers.register(MessageType.DoPreauthorized, handle_DoPreauthorized)
|
|
|
|
workflow_handlers.register(
|
|
|
|
MessageType.CancelAuthorization, handle_CancelAuthorization
|
|
|
|
)
|
2020-05-18 12:59:58 +00:00
|
|
|
|
2021-01-28 11:21:43 +00:00
|
|
|
reload_settings_from_storage()
|
2021-03-19 15:41:05 +00:00
|
|
|
if config.is_unlocked():
|
|
|
|
wire.find_handler = workflow_handlers.find_registered_handler
|
|
|
|
else:
|
|
|
|
wire.find_handler = get_pinlocked_handler
|