2016-11-25 21:53:55 +00: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/>.
|
|
|
|
|
2013-09-24 23:14:54 +00:00
|
|
|
import time
|
2017-06-23 19:31:42 +00:00
|
|
|
import hid
|
2017-10-31 12:51:13 +00:00
|
|
|
import os
|
2018-03-30 12:16:38 +00:00
|
|
|
import sys
|
2013-09-09 13:37:39 +00:00
|
|
|
|
2018-03-02 14:44:24 +00:00
|
|
|
from ..protocol_v1 import ProtocolV1
|
|
|
|
from ..protocol_v2 import ProtocolV2
|
|
|
|
from . import Transport, TransportException
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
DEV_TREZOR1 = (0x534c, 0x0001)
|
2017-09-04 12:31:15 +00:00
|
|
|
DEV_TREZOR2 = (0x1209, 0x53c1)
|
|
|
|
DEV_TREZOR2_BL = (0x1209, 0x53c0)
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
|
2018-03-02 14:44:24 +00:00
|
|
|
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()
|
2018-03-30 12:16:38 +00:00
|
|
|
try:
|
|
|
|
self.handle.open_path(self.path)
|
|
|
|
except (IOError, OSError) as e:
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
class HidTransport(Transport):
|
|
|
|
'''
|
|
|
|
HidTransport implements transport over USB HID interface.
|
|
|
|
'''
|
|
|
|
|
2018-02-02 18:20:03 +00:00
|
|
|
PATH_PREFIX = 'hid'
|
2018-02-02 17:29:20 +00:00
|
|
|
|
2017-09-05 15:10:58 +00:00
|
|
|
def __init__(self, device, protocol=None, hid_handle=None):
|
2017-08-24 12:29:27 +00:00
|
|
|
super(HidTransport, self).__init__()
|
2014-07-09 22:44:46 +00:00
|
|
|
|
2017-09-05 15:10:58 +00:00
|
|
|
if hid_handle is None:
|
|
|
|
hid_handle = HidHandle(device['path'])
|
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
if protocol is None:
|
2018-02-27 17:30:09 +00:00
|
|
|
# force_v1 = os.environ.get('TREZOR_TRANSPORT_V1', '0')
|
|
|
|
force_v1 = True
|
2017-10-31 12:51:13 +00:00
|
|
|
|
|
|
|
if is_trezor2(device) and not int(force_v1):
|
2017-08-24 12:29:27 +00:00
|
|
|
protocol = ProtocolV2()
|
|
|
|
else:
|
|
|
|
protocol = ProtocolV1()
|
2017-09-05 15:10:58 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
self.device = device
|
|
|
|
self.protocol = protocol
|
2017-09-05 15:10:58 +00:00
|
|
|
self.hid = hid_handle
|
2017-08-24 12:29:27 +00:00
|
|
|
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-02-02 17:29:20 +00:00
|
|
|
return "%s:%s" % (self.PATH_PREFIX, self.device['path'].decode())
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def enumerate(debug=False):
|
2017-09-04 15:30:07 +00:00
|
|
|
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
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
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)
|
2017-08-24 12:29:27 +00:00
|
|
|
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):
|
|
|
|
if debug.device['serial_number'] == self.device['serial_number']:
|
|
|
|
return debug
|
2017-09-05 15:15:00 +00:00
|
|
|
raise TransportException('Debug HID device not found')
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
def open(self):
|
2017-09-05 15:10:58 +00:00
|
|
|
self.hid.open()
|
2017-08-24 12:29:27 +00:00
|
|
|
if is_trezor1(self.device):
|
|
|
|
self.hid_version = self.probe_hid_version()
|
2016-09-26 18:52:33 +00:00
|
|
|
else:
|
2017-08-24 12:29:27 +00:00
|
|
|
self.hid_version = 2
|
|
|
|
self.protocol.session_begin(self)
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.protocol.session_end(self)
|
2017-09-05 15:15:00 +00:00
|
|
|
self.hid.close()
|
2017-08-24 12:29:27 +00:00
|
|
|
self.hid_version = None
|
2016-02-10 15:46:58 +00:00
|
|
|
|
2017-08-24 12:29:27 +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
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def write_chunk(self, chunk):
|
|
|
|
if len(chunk) != 64:
|
2017-09-05 15:15:00 +00:00
|
|
|
raise TransportException('Unexpected chunk size: %d' % len(chunk))
|
2016-06-26 19:29:29 +00:00
|
|
|
if self.hid_version == 2:
|
2017-10-23 15:28:01 +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
|
|
|
|
2017-08-24 12:29:27 +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)
|
2017-08-24 12:29:27 +00:00
|
|
|
if chunk:
|
|
|
|
break
|
|
|
|
else:
|
2015-02-25 16:54:27 +00:00
|
|
|
time.sleep(0.001)
|
2017-08-24 12:29:27 +00:00
|
|
|
if len(chunk) != 64:
|
2017-09-05 15:15:00 +00:00
|
|
|
raise TransportException('Unexpected chunk size: %d' % len(chunk))
|
2017-08-24 12:29:27 +00:00
|
|
|
return bytearray(chunk)
|
2016-06-26 19:29:29 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def probe_hid_version(self):
|
2017-09-05 15:10:58 +00:00
|
|
|
n = self.hid.handle.write([0, 63] + [0xFF] * 63)
|
2017-08-24 12:29:27 +00:00
|
|
|
if n == 65:
|
|
|
|
return 2
|
2017-09-05 15:10:58 +00:00
|
|
|
n = self.hid.handle.write([63] + [0xFF] * 63)
|
2017-08-24 12:29:27 +00:00
|
|
|
if n == 64:
|
|
|
|
return 1
|
2017-09-05 15:15:00 +00:00
|
|
|
raise TransportException('Unknown HID version')
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2016-06-26 19:29:29 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def is_trezor1(dev):
|
|
|
|
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
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def is_trezor2(dev):
|
|
|
|
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
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def is_trezor2_bl(dev):
|
|
|
|
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
|
|
|
|
2017-09-04 15:30:07 +00:00
|
|
|
def is_wirelink(dev):
|
|
|
|
return (dev['usage_page'] == 0xFF00 or dev['interface_number'] == 0)
|
|
|
|
|
|
|
|
|
|
|
|
def is_debuglink(dev):
|
2017-09-04 15:40:15 +00:00
|
|
|
return (dev['usage_page'] == 0xFF01 or dev['interface_number'] == 1)
|