From 984f088519c1d26c93e9a8b8bfb66ca82a224b14 Mon Sep 17 00:00:00 2001 From: Jan Pochyla Date: Tue, 17 Jan 2017 17:43:08 +0100 Subject: [PATCH] apps.common: fix request_pin --- src/apps/common/request_pin.py | 20 +++++++++++++++++--- src/apps/common/storage.py | 4 ++-- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/apps/common/request_pin.py b/src/apps/common/request_pin.py index f8981e58..00a28770 100644 --- a/src/apps/common/request_pin.py +++ b/src/apps/common/request_pin.py @@ -52,7 +52,7 @@ async def request_pin_on_client(session_id: int, code: int=None) -> str: matrix.render() ack = await wire.call(session_id, - PinMatrixRequest(code=code), + PinMatrixRequest(type=code), PinMatrixAck, Cancel) digits = matrix.digits matrix = None @@ -78,7 +78,7 @@ async def request_pin_twice(session_id: int) -> str: return pin_first -async def protect_by_pin(session_id: int, at_least_once: bool=False): +async def protect_by_pin_repeatedly(session_id: int, at_least_once: bool=False): from . import storage locked = storage.is_locked() or at_least_once @@ -87,9 +87,23 @@ async def protect_by_pin(session_id: int, at_least_once: bool=False): locked = not storage.unlock(pin, _render_pin_failure) +async def protect_by_pin_or_fail(session_id: int, at_least_once: bool=False): + from trezor.messages.FailureType import PinInvalid + from . import storage + + locked = storage.is_locked() or at_least_once + if locked: + pin = await request_pin(session_id) + if not storage.unlock(pin, _render_pin_failure): + raise wire.FailureError(PinInvalid, 'PIN invalid') + + +protect_by_pin = protect_by_pin_or_fail + + def _render_pin_failure(sleep_ms: int): ui.display.clear() - ui.display.text_center(240, 240, 'Sleeping for %d seconds' % sleep_ms / 1000, + ui.display.text_center(240, 240, 'Sleeping for %d seconds' % (sleep_ms / 1000), ui.BOLD, ui.RED, ui.BLACK) diff --git a/src/apps/common/storage.py b/src/apps/common/storage.py index be81ee35..033eb5bc 100644 --- a/src/apps/common/storage.py +++ b/src/apps/common/storage.py @@ -61,7 +61,7 @@ def lock(): def const_equal(a: bytes, b: bytes) -> bool: - return a == b + return a == b # TODO: proper const equal # settings @@ -176,4 +176,4 @@ def int_to_bytes(i: int) -> bytes: def bytes_to_int(b: bytes) -> int: - return ustruct.unpack('>L', b) if b else 0 + return ustruct.unpack('>L', b)[0] if b else 0