2021-01-16 00:19:54 +00:00
|
|
|
from micropython import const
|
|
|
|
|
2019-09-09 15:59:49 +00:00
|
|
|
from trezor import io, utils
|
2018-04-16 15:17:45 +00:00
|
|
|
|
2021-12-08 09:10:58 +00:00
|
|
|
bus = io.USB(
|
|
|
|
vendor_id=0x1209,
|
|
|
|
product_id=0x53C1,
|
|
|
|
release_num=0x0200,
|
|
|
|
manufacturer="SatoshiLabs",
|
|
|
|
product="TREZOR",
|
|
|
|
interface="TREZOR Interface",
|
|
|
|
usb21_landing=False,
|
|
|
|
)
|
|
|
|
|
2021-01-16 00:19:54 +00:00
|
|
|
UDP_PORT = 0
|
|
|
|
WIRE_PORT_OFFSET = const(0)
|
|
|
|
DEBUGLINK_PORT_OFFSET = const(1)
|
|
|
|
WEBAUTHN_PORT_OFFSET = const(2)
|
|
|
|
VCP_PORT_OFFSET = const(3)
|
|
|
|
|
|
|
|
if utils.EMULATOR:
|
|
|
|
import uos
|
|
|
|
|
|
|
|
UDP_PORT = int(uos.getenv("TREZOR_UDP_PORT") or "21324")
|
|
|
|
|
2020-12-22 14:10:43 +00:00
|
|
|
_iface_iter = iter(range(5))
|
|
|
|
|
|
|
|
ENABLE_IFACE_DEBUG = __debug__
|
|
|
|
ENABLE_IFACE_WEBAUTHN = not utils.BITCOIN_ONLY
|
2021-03-06 23:37:54 +00:00
|
|
|
ENABLE_IFACE_VCP = __debug__
|
2020-12-22 14:10:43 +00:00
|
|
|
|
2018-04-16 15:17:45 +00:00
|
|
|
# interface used for trezor wire protocol
|
2020-12-22 14:10:43 +00:00
|
|
|
id_wire = next(_iface_iter)
|
|
|
|
iface_wire = io.WebUSB(
|
|
|
|
iface_num=id_wire,
|
|
|
|
ep_in=0x81 + id_wire,
|
|
|
|
ep_out=0x01 + id_wire,
|
2021-01-16 00:19:54 +00:00
|
|
|
emu_port=UDP_PORT + WIRE_PORT_OFFSET,
|
2020-12-22 14:10:43 +00:00
|
|
|
)
|
2021-12-08 09:10:58 +00:00
|
|
|
bus.add(iface_wire)
|
2020-12-22 14:10:43 +00:00
|
|
|
|
|
|
|
# XXXXXXXXXXXXXXXXXXX
|
|
|
|
#
|
|
|
|
# We want the following branches present only in their respective firmwares. To achieve
|
|
|
|
# that, we are taking advantage of the upy compiler static optimization: when an
|
|
|
|
# if-expression statically evaluates to False, the branch is excluded from the bytecode.
|
|
|
|
# This works magically for the __debug__ builtin, and `utils.BITCOIN_ONLY` is replaced
|
|
|
|
# by a literal True/False by us in the build step.
|
|
|
|
#
|
|
|
|
# Therefore, each of the following needs to include the respective static expression
|
|
|
|
# so that it can be correctly excluded from the resulting build.
|
2018-04-16 15:17:45 +00:00
|
|
|
|
2020-12-22 14:10:43 +00:00
|
|
|
if __debug__ and ENABLE_IFACE_DEBUG:
|
2018-04-16 15:17:45 +00:00
|
|
|
# interface used for debug messages with trezor wire protocol
|
2020-12-22 14:10:43 +00:00
|
|
|
id_debug = next(_iface_iter)
|
|
|
|
iface_debug = io.WebUSB(
|
|
|
|
iface_num=id_debug,
|
|
|
|
ep_in=0x81 + id_debug,
|
|
|
|
ep_out=0x01 + id_debug,
|
2021-01-16 00:19:54 +00:00
|
|
|
emu_port=UDP_PORT + DEBUGLINK_PORT_OFFSET,
|
2020-12-22 14:10:43 +00:00
|
|
|
)
|
2021-12-08 09:10:58 +00:00
|
|
|
bus.add(iface_debug)
|
2019-11-09 23:33:15 +00:00
|
|
|
|
2020-12-22 14:10:43 +00:00
|
|
|
if not utils.BITCOIN_ONLY and ENABLE_IFACE_WEBAUTHN:
|
2019-11-09 23:33:15 +00:00
|
|
|
# interface used for FIDO/U2F and FIDO2/WebAuthn HID transport
|
2020-12-22 14:10:43 +00:00
|
|
|
id_webauthn = next(_iface_iter)
|
2019-11-09 23:33:15 +00:00
|
|
|
iface_webauthn = io.HID(
|
2020-12-22 14:10:43 +00:00
|
|
|
iface_num=id_webauthn,
|
|
|
|
ep_in=0x81 + id_webauthn,
|
|
|
|
ep_out=0x01 + id_webauthn,
|
2021-01-16 00:19:54 +00:00
|
|
|
emu_port=UDP_PORT + WEBAUTHN_PORT_OFFSET,
|
2019-11-09 23:33:15 +00:00
|
|
|
# fmt: off
|
|
|
|
report_desc=bytes([
|
|
|
|
0x06, 0xd0, 0xf1, # USAGE_PAGE (FIDO Alliance)
|
|
|
|
0x09, 0x01, # USAGE (U2F HID Authenticator Device)
|
|
|
|
0xa1, 0x01, # COLLECTION (Application)
|
|
|
|
0x09, 0x20, # USAGE (Input Report Data)
|
|
|
|
0x15, 0x00, # LOGICAL_MINIMUM (0)
|
|
|
|
0x26, 0xff, 0x00, # LOGICAL_MAXIMUM (255)
|
|
|
|
0x75, 0x08, # REPORT_SIZE (8)
|
|
|
|
0x95, 0x40, # REPORT_COUNT (64)
|
|
|
|
0x81, 0x02, # INPUT (Data,Var,Abs)
|
|
|
|
0x09, 0x21, # USAGE (Output Report Data)
|
|
|
|
0x15, 0x00, # LOGICAL_MINIMUM (0)
|
|
|
|
0x26, 0xff, 0x00, # LOGICAL_MAXIMUM (255)
|
|
|
|
0x75, 0x08, # REPORT_SIZE (8)
|
|
|
|
0x95, 0x40, # REPORT_COUNT (64)
|
|
|
|
0x91, 0x02, # OUTPUT (Data,Var,Abs)
|
|
|
|
0xc0, # END_COLLECTION
|
|
|
|
]),
|
|
|
|
# fmt: on
|
|
|
|
)
|
2021-12-08 09:10:58 +00:00
|
|
|
bus.add(iface_webauthn)
|
2019-11-09 23:33:15 +00:00
|
|
|
|
2020-12-22 14:10:43 +00:00
|
|
|
if __debug__ and ENABLE_IFACE_VCP:
|
|
|
|
# interface used for cdc/vcp console emulation (debug messages)
|
|
|
|
id_vcp = next(_iface_iter)
|
|
|
|
id_vcp_data = next(_iface_iter)
|
|
|
|
iface_vcp = io.VCP(
|
|
|
|
iface_num=id_vcp,
|
|
|
|
data_iface_num=id_vcp_data,
|
|
|
|
ep_in=0x81 + id_vcp,
|
|
|
|
ep_out=0x01 + id_vcp,
|
|
|
|
ep_cmd=0x81 + id_vcp_data,
|
2021-01-16 00:19:54 +00:00
|
|
|
emu_port=UDP_PORT + VCP_PORT_OFFSET,
|
2020-12-22 14:10:43 +00:00
|
|
|
)
|
|
|
|
bus.add(iface_vcp)
|