2018-07-03 12:28:17 +00:00
|
|
|
# isort:skip_file
|
|
|
|
|
2018-04-16 15:17:45 +00:00
|
|
|
# unlock the device
|
2018-02-27 02:05:15 +00:00
|
|
|
import boot # noqa: F401
|
2017-10-24 11:59:09 +00:00
|
|
|
|
2018-04-16 15:17:45 +00:00
|
|
|
# prepare the USB interfaces, but do not connect to the host yet
|
|
|
|
import usb
|
2017-08-16 13:02:03 +00:00
|
|
|
|
2019-07-24 12:39:14 +00:00
|
|
|
from trezor import utils
|
2017-08-15 13:09:09 +00:00
|
|
|
|
2019-07-24 12:39:14 +00:00
|
|
|
# start the USB
|
2018-04-16 15:17:45 +00:00
|
|
|
usb.bus.open()
|
2016-09-21 12:21:18 +00:00
|
|
|
|
2018-04-16 15:17:45 +00:00
|
|
|
# switch into unprivileged mode, as we don't need the extra permissions anymore
|
2018-02-23 19:35:05 +00:00
|
|
|
utils.set_mode_unprivileged()
|
2018-02-23 18:08:34 +00:00
|
|
|
|
2018-07-03 14:20:58 +00:00
|
|
|
|
2019-08-06 13:42:23 +00:00
|
|
|
def _boot_recovery() -> None:
|
2019-07-11 14:52:25 +00:00
|
|
|
# load applications
|
2019-07-24 12:39:14 +00:00
|
|
|
import apps.homescreen
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
# boot applications
|
2019-07-24 12:39:14 +00:00
|
|
|
apps.homescreen.boot(features_only=True)
|
2019-09-27 13:34:31 +00:00
|
|
|
if __debug__:
|
|
|
|
apps.debug.boot()
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
from apps.management.recovery_device.homescreen import recovery_homescreen
|
|
|
|
|
|
|
|
loop.schedule(recovery_homescreen())
|
|
|
|
|
|
|
|
|
2019-08-06 13:42:23 +00:00
|
|
|
def _boot_default() -> None:
|
2019-07-11 14:52:25 +00:00
|
|
|
# load applications
|
|
|
|
import apps.homescreen
|
|
|
|
import apps.management
|
|
|
|
import apps.wallet
|
2019-08-22 18:15:16 +00:00
|
|
|
|
|
|
|
if not utils.BITCOIN_ONLY:
|
|
|
|
import apps.ethereum
|
|
|
|
import apps.lisk
|
|
|
|
import apps.monero
|
|
|
|
import apps.nem
|
|
|
|
import apps.stellar
|
|
|
|
import apps.ripple
|
|
|
|
import apps.cardano
|
|
|
|
import apps.tezos
|
|
|
|
import apps.eos
|
|
|
|
import apps.binance
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
if __debug__:
|
|
|
|
import apps.debug
|
2019-09-09 15:59:49 +00:00
|
|
|
if not utils.BITCOIN_ONLY:
|
2019-10-30 13:37:57 +00:00
|
|
|
import apps.webauthn
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
# boot applications
|
|
|
|
apps.homescreen.boot()
|
|
|
|
apps.management.boot()
|
|
|
|
apps.wallet.boot()
|
2019-08-22 18:15:16 +00:00
|
|
|
if not utils.BITCOIN_ONLY:
|
|
|
|
apps.ethereum.boot()
|
|
|
|
apps.lisk.boot()
|
|
|
|
apps.monero.boot()
|
|
|
|
apps.nem.boot()
|
|
|
|
apps.stellar.boot()
|
|
|
|
apps.ripple.boot()
|
|
|
|
apps.cardano.boot()
|
|
|
|
apps.tezos.boot()
|
|
|
|
apps.eos.boot()
|
|
|
|
apps.binance.boot()
|
2019-07-11 14:52:25 +00:00
|
|
|
if __debug__:
|
|
|
|
apps.debug.boot()
|
2019-09-09 15:59:49 +00:00
|
|
|
if not utils.BITCOIN_ONLY:
|
2019-10-30 13:37:57 +00:00
|
|
|
apps.webauthn.boot()
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
# run main event loop and specify which screen is the default
|
|
|
|
from apps.homescreen.homescreen import homescreen
|
|
|
|
|
2019-08-20 14:20:02 +00:00
|
|
|
workflow.start_default(homescreen)
|
2019-07-11 14:52:25 +00:00
|
|
|
|
|
|
|
|
2019-07-24 12:39:14 +00:00
|
|
|
from trezor import loop, wire, workflow
|
2019-07-11 14:52:25 +00:00
|
|
|
from apps.common.storage import recovery
|
|
|
|
|
2019-07-24 12:39:14 +00:00
|
|
|
while True:
|
|
|
|
# initialize the wire codec
|
|
|
|
wire.setup(usb.iface_wire)
|
|
|
|
if __debug__:
|
|
|
|
wire.setup(usb.iface_debug)
|
|
|
|
|
|
|
|
# boot either in recovery or default mode
|
|
|
|
if recovery.is_in_progress():
|
|
|
|
_boot_recovery()
|
|
|
|
else:
|
|
|
|
_boot_default()
|
|
|
|
loop.run()
|
|
|
|
|
|
|
|
# loop is empty, reboot
|