1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 19:39:05 +00:00
trezor-firmware/trezorlib/transport/hid.py

185 lines
5.4 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
2016-11-25 21:53:55 +00:00
#
# Copyright (C) 2012-2018 SatoshiLabs and contributors
2016-11-25 21:53:55 +00:00
#
# 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.
2016-11-25 21:53:55 +00:00
#
# 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 <https://www.gnu.org/licenses/lgpl-3.0.html>.
2016-11-25 21:53:55 +00:00
2018-08-13 16:21:24 +00:00
import sys
2013-09-24 23:14:54 +00:00
import time
2018-08-13 16:21:24 +00:00
2017-06-23 19:31:42 +00:00
import hid
2013-09-09 13:37:39 +00:00
2018-08-13 16:21:24 +00:00
from . import Transport, TransportException
from ..protocol_v1 import ProtocolV1
from ..protocol_v2 import ProtocolV2
DEV_TREZOR1 = (0x534C, 0x0001)
DEV_TREZOR2 = (0x1209, 0x53C1)
DEV_TREZOR2_BL = (0x1209, 0x53C0)
class HidHandle:
2017-09-05 15:10:58 +00:00
def __init__(self, path):
self.path = path
self.count = 0
self.handle = None
def open(self):
if self.count == 0:
self.handle = hid.device()
try:
self.handle.open_path(self.path)
except (IOError, OSError) as e:
2018-08-13 16:21:24 +00:00
if sys.platform.startswith("linux"):
e.args = e.args + (
"Do you have udev rules installed? https://github.com/trezor/trezor-common/blob/master/udev/51-trezor.rules",
)
raise e
2017-09-05 15:10:58 +00:00
self.handle.set_nonblocking(True)
self.count += 1
def close(self):
if self.count == 1:
self.handle.close()
if self.count > 0:
self.count -= 1
class HidTransport(Transport):
2018-08-13 16:21:24 +00:00
"""
HidTransport implements transport over USB HID interface.
2018-08-13 16:21:24 +00:00
"""
2018-08-13 16:21:24 +00:00
PATH_PREFIX = "hid"
2017-09-05 15:10:58 +00:00
def __init__(self, device, protocol=None, hid_handle=None):
super(HidTransport, self).__init__()
2017-09-05 15:10:58 +00:00
if hid_handle is None:
2018-08-13 16:21:24 +00:00
hid_handle = HidHandle(device["path"])
2017-09-05 15:10:58 +00:00
if protocol is None:
# force_v1 = os.environ.get('TREZOR_TRANSPORT_V1', '0')
force_v1 = True
if is_trezor2(device) and not int(force_v1):
protocol = ProtocolV2()
else:
protocol = ProtocolV1()
2017-09-05 15:10:58 +00:00
self.device = device
self.protocol = protocol
2017-09-05 15:10:58 +00:00
self.hid = hid_handle
self.hid_version = None
2016-02-10 15:46:58 +00:00
2018-02-06 20:10:30 +00:00
def get_path(self):
2018-08-13 16:21:24 +00:00
return "%s:%s" % (self.PATH_PREFIX, self.device["path"].decode())
@staticmethod
def enumerate(debug=False):
devices = []
for dev in hid.enumerate(0, 0):
if not (is_trezor1(dev) or is_trezor2(dev) or is_trezor2_bl(dev)):
continue
if debug:
if not is_debuglink(dev):
continue
else:
if not is_wirelink(dev):
continue
devices.append(HidTransport(dev))
return devices
def find_debug(self):
if isinstance(self.protocol, ProtocolV2):
# For v2 protocol, lets use the same HID interface, but with a different session
2017-09-05 15:10:58 +00:00
protocol = ProtocolV2()
debug = HidTransport(self.device, protocol, self.hid)
return debug
if isinstance(self.protocol, ProtocolV1):
# For v1 protocol, find debug USB interface for the same serial number
for debug in HidTransport.enumerate(debug=True):
2018-08-13 16:21:24 +00:00
if debug.device["serial_number"] == self.device["serial_number"]:
return debug
2018-08-13 16:21:24 +00:00
raise TransportException("Debug HID device not found")
def open(self):
2017-09-05 15:10:58 +00:00
self.hid.open()
if is_trezor1(self.device):
self.hid_version = self.probe_hid_version()
2016-09-26 18:52:33 +00:00
else:
self.hid_version = 2
self.protocol.session_begin(self)
def close(self):
self.protocol.session_end(self)
self.hid.close()
self.hid_version = None
2016-02-10 15:46:58 +00:00
def read(self):
return self.protocol.read(self)
def write(self, msg):
return self.protocol.write(self, msg)
2016-02-10 15:46:58 +00:00
def write_chunk(self, chunk):
if len(chunk) != 64:
2018-08-13 16:21:24 +00:00
raise TransportException("Unexpected chunk size: %d" % len(chunk))
2016-06-26 19:29:29 +00:00
if self.hid_version == 2:
2018-08-13 16:21:24 +00:00
self.hid.handle.write(b"\0" + bytearray(chunk))
2016-06-26 19:29:29 +00:00
else:
2017-09-05 15:10:58 +00:00
self.hid.handle.write(chunk)
2016-02-10 15:46:58 +00:00
def read_chunk(self):
2016-06-26 19:29:29 +00:00
while True:
2017-09-05 15:10:58 +00:00
chunk = self.hid.handle.read(64)
if chunk:
break
else:
2015-02-25 16:54:27 +00:00
time.sleep(0.001)
if len(chunk) != 64:
2018-08-13 16:21:24 +00:00
raise TransportException("Unexpected chunk size: %d" % len(chunk))
return bytearray(chunk)
2016-06-26 19:29:29 +00:00
def probe_hid_version(self):
2017-09-05 15:10:58 +00:00
n = self.hid.handle.write([0, 63] + [0xFF] * 63)
if n == 65:
return 2
2017-09-05 15:10:58 +00:00
n = self.hid.handle.write([63] + [0xFF] * 63)
if n == 64:
return 1
2018-08-13 16:21:24 +00:00
raise TransportException("Unknown HID version")
2017-06-23 19:31:42 +00:00
2016-06-26 19:29:29 +00:00
def is_trezor1(dev):
2018-08-13 16:21:24 +00:00
return (dev["vendor_id"], dev["product_id"]) == DEV_TREZOR1
2017-06-23 19:31:42 +00:00
2016-02-10 15:46:58 +00:00
def is_trezor2(dev):
2018-08-13 16:21:24 +00:00
return (dev["vendor_id"], dev["product_id"]) == DEV_TREZOR2
2016-06-27 13:54:24 +00:00
2017-06-23 19:31:42 +00:00
def is_trezor2_bl(dev):
2018-08-13 16:21:24 +00:00
return (dev["vendor_id"], dev["product_id"]) == DEV_TREZOR2_BL
2013-03-10 15:55:59 +00:00
2017-06-23 19:31:42 +00:00
def is_wirelink(dev):
2018-08-13 16:21:24 +00:00
return dev["usage_page"] == 0xFF00 or dev["interface_number"] == 0
def is_debuglink(dev):
2018-08-13 16:21:24 +00:00
return dev["usage_page"] == 0xFF01 or dev["interface_number"] == 1
TRANSPORT = HidTransport