python-trezor/trezorlib/debuglink.py

130 lines
4.1 KiB
Python
Raw Normal View History

2016-11-25 13:53:55 -08:00
# This file is part of the TREZOR project.
#
# Copyright (C) 2012-2016 Marek Palatinus <slush@satoshilabs.com>
# Copyright (C) 2012-2016 Pavol Rusnak <stick@satoshilabs.com>
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <http://www.gnu.org/licenses/>.
2016-05-20 13:27:20 -07:00
from __future__ import print_function
2016-05-04 18:16:17 -07:00
from . import messages_pb2 as proto
from .transport import NotImplementedException
2012-12-13 11:05:04 -08:00
def pin_info(pin):
2016-05-04 18:16:17 -07:00
print("Device asks for PIN %s" % pin)
def button_press(yes_no):
2016-05-04 18:16:17 -07:00
print("User pressed", '"y"' if yes_no else '"n"')
2014-02-06 14:34:13 -08:00
def pprint(msg):
2016-05-20 04:55:43 -07:00
return "<%s> (%d bytes):\n%s" % (msg.__class__.__name__, msg.ByteSize(), msg)
class DebugLink(object):
def __init__(self, transport, pin_func=pin_info, button_func=button_press):
self.transport = transport
2016-11-15 04:46:00 -08:00
self.transport.session_begin()
2012-12-13 11:05:04 -08:00
self.pin_func = pin_func
self.button_func = button_func
2014-02-06 14:34:13 -08:00
2014-02-13 07:46:21 -08:00
def close(self):
2016-11-15 04:46:00 -08:00
self.transport.session_end()
2014-02-13 07:46:21 -08:00
self.transport.close()
2016-01-12 15:17:38 -08:00
def _call(self, msg, nowait=False):
2016-05-04 18:16:17 -07:00
print("DEBUGLINK SEND", pprint(msg))
self.transport.write(msg)
if nowait:
return
ret = self.transport.read_blocking()
2016-05-04 18:16:17 -07:00
print("DEBUGLINK RECV", pprint(ret))
return ret
def read_pin(self):
obj = self._call(proto.DebugLinkGetState())
2016-05-04 18:16:17 -07:00
print("Read PIN:", obj.pin)
print("Read matrix:", obj.matrix)
2014-02-06 14:34:13 -08:00
2013-08-31 18:34:36 -07:00
return (obj.pin, obj.matrix)
2014-02-06 14:34:13 -08:00
2013-08-31 18:34:36 -07:00
def read_pin_encoded(self):
2014-02-20 10:15:43 -08:00
pin, _ = self.read_pin()
pin_encoded = self.encode_pin(pin)
self.pin_func(pin_encoded)
return pin_encoded
def encode_pin(self, pin):
_, matrix = self.read_pin()
2014-02-06 14:34:13 -08:00
# Now we have real PIN and PIN matrix.
# We have to encode that into encoded pin,
# because application must send back positions
# on keypad, not a real PIN.
2016-05-26 08:20:44 -07:00
pin_encoded = ''.join([str(matrix.index(p) + 1) for p in pin])
2014-02-06 14:34:13 -08:00
2016-05-04 18:16:17 -07:00
print("Encoded PIN:", pin_encoded)
return pin_encoded
2016-01-12 15:17:38 -08:00
2014-02-06 14:34:13 -08:00
def read_layout(self):
obj = self._call(proto.DebugLinkGetState())
2014-02-06 14:34:13 -08:00
return obj.layout
def read_mnemonic(self):
obj = self._call(proto.DebugLinkGetState())
2014-02-06 14:34:13 -08:00
return obj.mnemonic
def read_node(self):
obj = self._call(proto.DebugLinkGetState())
2014-02-06 14:34:13 -08:00
return obj.node
def read_recovery_word(self):
obj = self._call(proto.DebugLinkGetState())
return (obj.recovery_fake_word, obj.recovery_word_pos)
2014-02-20 10:15:43 -08:00
def read_reset_word(self):
obj = self._call(proto.DebugLinkGetState())
return obj.reset_word
def read_reset_entropy(self):
obj = self._call(proto.DebugLinkGetState())
return obj.reset_entropy
2014-02-20 10:15:43 -08:00
def read_passphrase_protection(self):
obj = self._call(proto.DebugLinkGetState())
return obj.passphrase_protection
def press_button(self, yes_no):
2016-05-04 18:16:17 -07:00
print("Pressing", yes_no)
self.button_func(yes_no)
self._call(proto.DebugLinkDecision(yes_no=yes_no), nowait=True)
2012-12-13 11:05:04 -08:00
def press_yes(self):
self.press_button(True)
2014-02-06 14:34:13 -08:00
def press_no(self):
self.press_button(False)
def stop(self):
self._call(proto.DebugLinkStop(), nowait=True)
2016-05-26 11:46:40 -07:00
def memory_read(self, address, length):
obj = self._call(proto.DebugLinkMemoryRead(address=address, length=length))
return obj.memory
def memory_write(self, address, memory, flash=False):
self._call(proto.DebugLinkMemoryWrite(address=address, memory=memory, flash=flash), nowait=True)
def flash_erase(self, sector):
obj = self._call(proto.DebugLinkFlashErase(sector=sector), nowait=True)