# This file is part of the Trezor project. # # Copyright (C) 2012-2022 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # as published by the Free Software Foundation. # # 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 License along with this library. # If not, see . import logging import struct from typing import Tuple from typing_extensions import Protocol as StructuralType from . import MessagePayload, Transport REPLEN = 64 V2_FIRST_CHUNK = 0x01 V2_NEXT_CHUNK = 0x02 V2_BEGIN_SESSION = 0x03 V2_END_SESSION = 0x04 LOG = logging.getLogger(__name__) class Handle(StructuralType): """PEP 544 structural type for Handle functionality. (called a "Protocol" in the proposed PEP, name which is impractical here) Handle is a "physical" layer for a protocol. It can open/close a connection and read/write bare data in 64-byte chunks. Functionally we gain nothing from making this an (abstract) base class for handle implementations, so this definition is for type hinting purposes only. You can, but don't have to, inherit from it. """ def open(self) -> None: ... def close(self) -> None: ... def read_chunk(self) -> bytes: ... def write_chunk(self, chunk: bytes) -> None: ... class Protocol: """Wire protocol that can communicate with a Trezor device, given a Handle. A Protocol implements the part of the Transport API that relates to communicating logical messages over a physical layer. It is a thing that can: - open and close sessions, - send and receive protobuf messages, given the ability to: - open and close physical connections, - and send and receive binary chunks. For now, the class also handles session counting and opening the underlying Handle. This will probably be removed in the future. We will need a new Protocol class if we change the way a Trezor device encapsulates its messages. """ def __init__(self, handle: Handle) -> None: self.handle = handle self.session_counter = 0 # XXX we might be able to remove this now that TrezorClient does session handling def begin_session(self) -> None: if self.session_counter == 0: self.handle.open() self.session_counter += 1 def end_session(self) -> None: self.session_counter = max(self.session_counter - 1, 0) if self.session_counter == 0: self.handle.close() def read(self) -> MessagePayload: raise NotImplementedError def write(self, message_type: int, message_data: bytes) -> None: raise NotImplementedError class ProtocolBasedTransport(Transport): """Transport that implements its communications through a Protocol. Intended as a base class for implementations that proxy their communication operations to a Protocol. """ def __init__(self, protocol: Protocol) -> None: self.protocol = protocol def write(self, message_type: int, message_data: bytes) -> None: self.protocol.write(message_type, message_data) def read(self) -> MessagePayload: return self.protocol.read() def begin_session(self) -> None: self.protocol.begin_session() def end_session(self) -> None: self.protocol.end_session() class ProtocolV1(Protocol): """Protocol version 1. Currently (11/2018) in use on all Trezors. Does not understand sessions. """ HEADER_LEN = struct.calcsize(">HL") def write(self, message_type: int, message_data: bytes) -> None: header = struct.pack(">HL", message_type, len(message_data)) buffer = bytearray(b"##" + header + message_data) while buffer: # Report ID, data padded to 63 bytes chunk = b"?" + buffer[: REPLEN - 1] chunk = chunk.ljust(REPLEN, b"\x00") self.handle.write_chunk(chunk) buffer = buffer[63:] def read(self) -> MessagePayload: buffer = bytearray() # Read header with first part of message data msg_type, datalen, first_chunk = self.read_first() buffer.extend(first_chunk) # Read the rest of the message while len(buffer) < datalen: buffer.extend(self.read_next()) return msg_type, buffer[:datalen] def read_first(self) -> Tuple[int, int, bytes]: chunk = self.handle.read_chunk() if chunk[:3] != b"?##": raise RuntimeError("Unexpected magic characters") try: msg_type, datalen = struct.unpack(">HL", chunk[3 : 3 + self.HEADER_LEN]) except Exception: raise RuntimeError("Cannot parse header") data = chunk[3 + self.HEADER_LEN :] return msg_type, datalen, data def read_next(self) -> bytes: chunk = self.handle.read_chunk() if chunk[:1] != b"?": raise RuntimeError("Unexpected magic characters") return chunk[1:]