1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
#!/usr/bin/env python3
# ### INSTRUCTIONS FOR USE ####
#
# 1. install Python 3.7 and up
# 2. make sure you have `pip3` command available
# 3. from command line, run the following:
# pip3 install trezor[hidapi] gevent bottle
# 4. (ONLY for TT or T1 >= 1.8.0) Make sure you have libusb available.
# 4a. on Windows, download:
# https://github.com/libusb/libusb/releases/download/v1.0.26/libusb-1.0.26-binaries.7z
# Extract file VS2015-x64/dll/libusb-1.0.dll and place it in your working directory.
# 4b. on MacOS, assuming you have Homebrew, run `brew install libusb`
# Otherwise download the above, extract the file macos_<best version>/lib/libusb.1.0.0.dylib
# and place it in your working directory.
# 4c. on Linux, use your package manager to install `libusb` or `libusb-1.0` package.
# (but on Linux you most likely already have it)
# 4. Shut down Trezor Suite (and bridge if you are running it separately
# 5. Disconnect and then reconnect your Trezor.
# 6. Run the following command from the command line:
# python3 pybridge.py
# 7. Start Suite again, or use any other Trezor-compatible software.
# 8. Output of pybridge goes to console and also to file `pybridge.log`
from __future__ import annotations
from gevent import monkey
monkey.patch_all()
import json
import logging
import struct
import time
import typing as t
import click
from bottle import post, request, response, run
import trezorlib.mapping
import trezorlib.models
import trezorlib.transport
from trezorlib.client import TrezorClient
from trezorlib.protobuf import format_message
from trezorlib.transport.bridge import BridgeTransport
from trezorlib.ui import TrezorClientUI
# ignore bridge. we are the bridge
BridgeTransport.ENABLED = False
logging.basicConfig(
level=logging.DEBUG,
format="%(asctime)s %(levelname)s %(message)s",
handlers=[
logging.FileHandler("pybridge.log"),
logging.StreamHandler(),
],
)
LOG = logging.getLogger()
class SilentUI(TrezorClientUI):
def get_pin(self, _code: t.Any) -> str:
return ""
def get_passphrase(self) -> str:
return ""
def button_request(self, _br: t.Any) -> None:
pass
class Session:
SESSION_COUNTER = 0
SESSIONS: dict[str, Session] = {}
def __init__(self, transport: Transport) -> None:
self.id = self._new_id()
self.transport = transport
self.SESSIONS[self.id] = self
def release(self) -> None:
self.SESSIONS.pop(self.id, None)
self.transport.release()
@classmethod
def find(cls, sid: str) -> Session | None:
return cls.SESSIONS.get(sid)
@classmethod
def _new_id(cls) -> str:
id = str(cls.SESSION_COUNTER)
cls.SESSION_COUNTER += 1
return id
class Transport:
TRANSPORT_COUNTER = 0
TRANSPORTS: dict[str, Transport] = {}
def __init__(self, transport: trezorlib.transport.Transport) -> None:
self.path = transport.get_path()
self.session: Session | None = None
self.transport = transport
client = TrezorClient(transport, ui=SilentUI())
self.model = client.model
client.end_session()
def acquire(self, sid: str) -> str:
if self.session_id() != sid:
raise Exception("Session mismatch")
if self.session is not None:
self.session.release()
self.session = Session(self)
self.transport.begin_session()
return self.session.id
def release(self) -> None:
self.transport.end_session()
self.session = None
def session_id(self) -> str | None:
if self.session is not None:
return self.session.id
else:
return None
def to_json(self) -> dict:
vid, pid = next(iter(self.model.usb_ids), (0, 0))
return {
"debug": False,
"debugSession": None,
"path": self.path,
"product": pid,
"vendor": vid,
"session": self.session_id(),
}
def write(self, msg_id: int, data: bytes) -> None:
self.transport.write(msg_id, data)
def read(self) -> tuple[int, bytes]:
return self.transport.read()
@classmethod
def find(cls, path: str) -> Transport | None:
return cls.TRANSPORTS.get(path)
@classmethod
def enumerate(cls) -> t.Iterable[Transport]:
transports = {t.get_path(): t for t in trezorlib.transport.enumerate_devices()}
for path in transports:
if path not in cls.TRANSPORTS:
cls.TRANSPORTS[path] = Transport(transports[path])
for path in list(cls.TRANSPORTS):
if path not in transports:
cls.TRANSPORTS.pop(path, None)
return cls.TRANSPORTS.values()
FILTERS: dict[int, t.Callable[[int, bytes], tuple[int, bytes]]] = {}
def log_message(prefix: str, msg_id: int, data: bytes) -> None:
try:
msg = trezorlib.mapping.DEFAULT_MAPPING.decode(msg_id, data)
LOG.info("=== %s: [%s] %s", prefix, msg_id, format_message(msg))
except Exception:
LOG.info("=== %s: [%s] undecoded bytes %s", prefix, msg_id, data.hex())
def decode_data(hex_data: str) -> tuple[int, bytes]:
data = bytes.fromhex(hex_data)
headerlen = struct.calcsize(">HL")
msg_type, datalen = struct.unpack(">HL", data[:headerlen])
return msg_type, data[headerlen : headerlen + datalen]
def encode_data(msg_type: int, msg_data: bytes) -> str:
data = struct.pack(">HL", msg_type, len(msg_data)) + msg_data
return data.hex()
def check_origin() -> None:
response.set_header("Access-Control-Allow-Origin", "*")
@post("/") # type: ignore [Untyped function decorator]
def index():
check_origin()
return {"version": "2.0.27"}
@post("/configure") # type: ignore [Untyped function decorator]
def do_configure():
return index()
@post("/enumerate") # type: ignore [Untyped function decorator]
def do_enumerate():
check_origin()
trezor_json = [transport.to_json() for transport in Transport.enumerate()]
return json.dumps(trezor_json)
@post("/acquire/<path>/<sid>") # type: ignore [Untyped function decorator]
def do_acquire(path: str, sid: str):
check_origin()
if sid == "null":
sid = None # type: ignore [is incompatible with declared type]
trezor = Transport.find(path)
if trezor is None:
response.status = 404
return {"error": "invalid path"}
try:
return {"session": trezor.acquire(sid)}
except Exception:
response.status = 400
return {"error": "wrong previous session"}
@post("/release/<sid>") # type: ignore [Untyped function decorator]
def do_release(sid: str):
check_origin()
session = Session.find(sid)
if session is None:
response.status = 404
return {"error": "invalid session"}
session.release()
return {"session": sid}
@post("/call/<sid>") # type: ignore [Untyped function decorator]
def do_call(sid: str):
check_origin()
session = Session.find(sid)
if session is None:
response.status = 404
return {"error": "invalid session"}
msg_type, msg_data = decode_data(request.body.read().decode())
if msg_type in FILTERS:
msg_type, msg_data = FILTERS[msg_type](msg_type, msg_data)
log_message("CALLING", msg_type, msg_data)
session.transport.write(msg_type, msg_data)
resp_type, resp_data = session.transport.read()
if resp_type in FILTERS:
resp_type, resp_data = FILTERS[resp_type](resp_type, resp_data)
log_message("RESPONSE", resp_type, resp_data)
return encode_data(resp_type, resp_data)
@post("/post/<sid>") # type: ignore [Untyped function decorator]
def do_post(sid: str):
check_origin()
session = Session.find(sid)
if session is None:
response.status = 404
return {"error": "invalid session"}
msg_type, msg_data = decode_data(request.body.read().decode())
session.transport.write(msg_type, msg_data)
return {"session": sid}
@post("/read/<sid>") # type: ignore [Untyped function decorator]
def do_read(sid: str):
check_origin()
session = Session.find(sid)
if session is None:
response.status = 404
return {"error": "invalid session"}
resp_type, resp_data = session.transport.read()
print("=== RESPONSE:")
msg = trezorlib.mapping.DEFAULT_MAPPING.decode(resp_type, resp_data)
print(format_message(msg))
return encode_data(resp_type, resp_data)
@post("/listen") # type: ignore [Untyped function decorator]
def do_listen():
check_origin()
try:
data = json.load(request.body)
except Exception:
response.status = 400
return {"error": "invalid json"}
for _ in range(10):
trezor_json = [transport.to_json() for transport in Transport.enumerate()]
if trezor_json != data:
# `yield` turns the function into a generator which allows gevent to
# run it in a greenlet, so that the time.sleep() call doesn't block
yield json.dumps(trezor_json)
return
time.sleep(1)
# def example_filter(msg_id: int, data: bytes) -> tuple[int, bytes]:
# msg = trezorlib.mapping.DEFAULT_MAPPING.decode(msg_id, data)
# assert isinstance(msg, messages.Features)
# msg.model = "Example"
# return trezorlib.mapping.DEFAULT_MAPPING.encode(msg)
# FILTERS[messages.Features.MESSAGE_WIRE_TYPE] = example_filter
@click.command()
@click.argument("port", type=int, default=21325)
def main(port: int) -> None:
run(host="127.0.0.1", port=port, server="gevent")
if __name__ == "__main__":
main()
|