from trezor import config, ui, wire from trezor.messages import ButtonRequestType from trezor.messages.Success import Success from trezor.pin import pin_to_int from trezor.ui.text import Text from apps.common import storage from apps.common.confirm import require_confirm from apps.common.request_pin import ( request_pin_and_sd_salt, request_pin_confirm, show_pin_invalid, ) from apps.common.storage import device as storage_device, recovery as storage_recovery from apps.management.recovery_device.homescreen import recovery_process if False: from trezor.messages.RecoveryDevice import RecoveryDevice async def recovery_device(ctx: wire.Context, msg: RecoveryDevice) -> Success: """ Recover BIP39/SLIP39 seed into empty device. Recovery is also possible with replugged Trezor. We call this process Persistance. User starts the process here using the RecoveryDevice msg and then they can unplug the device anytime and continue without a computer. """ _check_state(msg) await _continue_dialog(ctx, msg) # for dry run pin needs to be entered if msg.dry_run: curpin, salt = await request_pin_and_sd_salt(ctx, "Enter PIN") if not config.check_pin(pin_to_int(curpin), salt): await show_pin_invalid(ctx) raise wire.PinInvalid("PIN invalid") # set up pin if requested if msg.pin_protection: if msg.dry_run: raise wire.ProcessError("Can't setup PIN during dry_run recovery.") newpin = await request_pin_confirm(ctx, allow_cancel=False) config.change_pin(pin_to_int(""), pin_to_int(newpin), None, None) if msg.u2f_counter: storage_device.set_u2f_counter(msg.u2f_counter) storage_device.load_settings( label=msg.label, use_passphrase=msg.passphrase_protection ) storage_recovery.set_in_progress(True) if msg.dry_run: storage_recovery.set_dry_run(msg.dry_run) result = await recovery_process(ctx) return result def _check_state(msg: RecoveryDevice) -> None: if not msg.dry_run and storage.is_initialized(): raise wire.UnexpectedMessage("Already initialized") if msg.dry_run and not storage.is_initialized(): raise wire.NotInitialized("Device is not initialized") if storage_recovery.is_in_progress(): raise RuntimeError( "Function recovery_device should not be invoked when recovery is already in progress" ) if msg.enforce_wordlist is False: raise wire.ProcessError( "Value enforce_wordlist must be True, Trezor Core enforces words automatically." ) async def _continue_dialog(ctx: wire.Context, msg: RecoveryDevice) -> None: if not msg.dry_run: text = Text("Recovery mode", ui.ICON_RECOVERY, new_lines=False) text.bold("Do you really want to") text.br() text.bold("recover a wallet?") text.br() text.br_half() text.normal("By continuing you agree") text.br() text.normal("to") text.bold("https://trezor.io/tos") else: text = Text("Seed check", ui.ICON_RECOVERY, new_lines=False) text.normal("Do you really want to", "check the recovery", "seed?") await require_confirm(ctx, text, code=ButtonRequestType.ProtectCall)