2019-10-25 15:43:55 +00:00
|
|
|
import storage
|
|
|
|
import storage.device
|
|
|
|
import storage.recovery
|
|
|
|
import storage.sd_salt
|
|
|
|
from storage import cache
|
2020-02-17 14:51:39 +00:00
|
|
|
from trezor import config, sdcard, utils, wire
|
2019-08-28 10:42:33 +00:00
|
|
|
from trezor.messages import Capability, MessageType
|
2018-02-27 15:35:21 +00:00
|
|
|
from trezor.messages.Features import Features
|
|
|
|
from trezor.messages.Success import Success
|
2019-08-20 14:20:02 +00:00
|
|
|
from trezor.wire import register
|
2018-02-27 15:35:21 +00:00
|
|
|
|
2019-10-25 15:43:55 +00:00
|
|
|
from apps.common import mnemonic
|
2016-05-25 12:27:22 +00:00
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
if False:
|
|
|
|
from typing import NoReturn
|
|
|
|
from trezor.messages.Initialize import Initialize
|
|
|
|
from trezor.messages.GetFeatures import GetFeatures
|
|
|
|
from trezor.messages.Cancel import Cancel
|
|
|
|
from trezor.messages.ClearSession import ClearSession
|
|
|
|
from trezor.messages.Ping import Ping
|
2016-05-25 12:27:22 +00:00
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
|
|
|
|
def get_features() -> Features:
|
2016-10-20 13:12:25 +00:00
|
|
|
f = Features()
|
2018-07-03 14:20:58 +00:00
|
|
|
f.vendor = "trezor.io"
|
2019-12-07 11:11:51 +00:00
|
|
|
f.language = "en-US"
|
2018-08-31 14:52:56 +00:00
|
|
|
f.major_version = utils.VERSION_MAJOR
|
|
|
|
f.minor_version = utils.VERSION_MINOR
|
|
|
|
f.patch_version = utils.VERSION_PATCH
|
2019-10-02 12:40:25 +00:00
|
|
|
f.revision = utils.GITREV.encode()
|
2018-08-31 14:52:56 +00:00
|
|
|
f.model = utils.MODEL
|
2019-10-25 15:43:55 +00:00
|
|
|
f.device_id = storage.device.get_device_id()
|
|
|
|
f.label = storage.device.get_label()
|
2016-10-20 13:12:25 +00:00
|
|
|
f.initialized = storage.is_initialized()
|
2018-05-28 13:20:31 +00:00
|
|
|
f.pin_protection = config.has_pin()
|
2018-02-27 19:48:01 +00:00
|
|
|
f.pin_cached = config.has_pin()
|
2019-11-08 08:43:32 +00:00
|
|
|
f.passphrase_protection = storage.device.is_passphrase_enabled()
|
2019-10-25 15:43:55 +00:00
|
|
|
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()
|
2019-09-19 07:37:23 +00:00
|
|
|
f.backup_type = mnemonic.get_type()
|
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()
|
2019-10-25 15:43:55 +00:00
|
|
|
f.sd_protection = storage.sd_salt.is_enabled()
|
2019-10-29 15:38:12 +00:00
|
|
|
f.wipe_code_protection = config.has_wipe_code()
|
2019-11-21 09:53:42 +00:00
|
|
|
f.passphrase_always_on_device = storage.device.get_passphrase_always_on_device()
|
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)
|
|
|
|
features.session_id = cache.start_session(msg.session_id)
|
|
|
|
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
|
|
|
|
|
|
|
|
2019-07-03 13:07:04 +00:00
|
|
|
async def handle_ClearSession(ctx: wire.Context, msg: ClearSession) -> Success:
|
2020-02-03 15:28:08 +00:00
|
|
|
"""
|
|
|
|
This is currently a no-op on T. This should be called LockSession/LockDevice
|
|
|
|
and lock the device. In other words the cache should stay but the PIN should
|
|
|
|
be forgotten and required again.
|
|
|
|
"""
|
|
|
|
return Success()
|
2018-02-27 15:35:21 +00:00
|
|
|
|
|
|
|
|
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:
|
|
|
|
from apps.common.confirm import require_confirm
|
|
|
|
from trezor.messages.ButtonRequestType import ProtectCall
|
|
|
|
from trezor.ui.text import Text
|
2018-07-03 14:20:58 +00:00
|
|
|
|
|
|
|
await require_confirm(ctx, Text("Confirm"), ProtectCall)
|
2018-02-28 16:04:09 +00:00
|
|
|
return Success(message=msg.message)
|
2018-02-09 17:07:47 +00:00
|
|
|
|
|
|
|
|
2019-10-31 09:27:59 +00:00
|
|
|
def boot() -> None:
|
2019-08-20 14:20:02 +00:00
|
|
|
register(MessageType.Initialize, handle_Initialize)
|
|
|
|
register(MessageType.GetFeatures, handle_GetFeatures)
|
2019-10-31 09:27:59 +00:00
|
|
|
register(MessageType.Cancel, handle_Cancel)
|
|
|
|
register(MessageType.ClearSession, handle_ClearSession)
|
|
|
|
register(MessageType.Ping, handle_Ping)
|