python-trezor/trezorlib/transport_bridge.py

127 lines
4.3 KiB
Python
Raw Normal View History

2016-11-25 13:53:55 -08: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>
# Copyright (C) 2016 Jochen Hoenicke <hoenicke@gmail.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/>.
2014-07-26 07:27:28 -07:00
'''BridgeTransport implements transport TREZOR Bridge (aka trezord).'''
2017-07-01 08:59:11 -07:00
import binascii
2014-07-26 07:27:28 -07:00
import json
2016-05-26 08:20:44 -07:00
import requests
from google.protobuf import json_format
2016-05-04 18:16:17 -07:00
from . import messages_pb2 as proto
2016-06-27 09:21:40 -07:00
from .transport import TransportV1
2014-07-26 07:27:28 -07:00
TREZORD_HOST = 'https://localback.net:21324'
CONFIG_URL = 'https://wallet.trezor.io/data/config_signed.bin'
2014-07-26 07:27:28 -07:00
2017-06-23 12:31:42 -07:00
def get_error(resp):
return ' (error=%d str=%s)' % (resp.status_code, resp.json()['error'])
2017-06-23 12:31:42 -07:00
2016-06-27 09:21:40 -07:00
class BridgeTransport(TransportV1):
2017-07-01 08:59:11 -07:00
CONFIGURED = False
2014-07-26 07:27:28 -07:00
def __init__(self, device, *args, **kwargs):
self.configure()
2014-07-26 07:27:28 -07:00
2016-06-30 07:47:17 -07:00
self.path = device['path']
self.session = None
self.response = None
2016-05-26 08:20:44 -07:00
self.conn = requests.Session()
super(BridgeTransport, self).__init__(device, *args, **kwargs)
@staticmethod
def configure():
2017-06-23 12:31:42 -07:00
if BridgeTransport.CONFIGURED:
return
r = requests.get(CONFIG_URL, verify=False)
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('Could not fetch config from %s' % CONFIG_URL)
2014-07-27 07:22:24 -07:00
config = r.text
2014-07-26 07:27:28 -07:00
r = requests.post(TREZORD_HOST + '/configure', data=config)
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('trezord: Could not configure' + get_error(r))
BridgeTransport.CONFIGURED = True
2014-07-26 07:27:28 -07:00
@classmethod
def enumerate(cls):
"""
Return a list of available TREZOR devices.
"""
cls.configure()
r = requests.get(TREZORD_HOST + '/enumerate')
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('trezord: Could not enumerate devices' + get_error(r))
2014-07-26 07:27:28 -07:00
enum = r.json()
2016-02-10 07:46:58 -08:00
return enum
2014-07-26 07:27:28 -07:00
2017-07-01 08:59:11 -07:00
@classmethod
def find_by_path(cls, path=None):
"""
Finds a device by transport-specific path.
If path is not set, return first device.
"""
devices = cls.enumerate()
for dev in devices:
if not path or dev['path'] == binascii.hexlify(path):
return cls(dev)
raise Exception('Device not found')
2014-07-26 07:27:28 -07:00
def _open(self):
2015-03-05 02:15:53 -08:00
r = self.conn.post(TREZORD_HOST + '/acquire/%s' % self.path)
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('trezord: Could not acquire session' + get_error(r))
2014-07-26 07:27:28 -07:00
resp = r.json()
self.session = resp['session']
def _close(self):
2015-03-05 02:15:53 -08:00
r = self.conn.post(TREZORD_HOST + '/release/%s' % self.session)
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('trezord: Could not release session' + get_error(r))
2014-07-26 07:27:28 -07:00
else:
self.session = None
2016-06-27 09:21:40 -07:00
def _ready_to_read(self):
2017-06-23 12:31:42 -07:00
return self.response is not None
2014-07-26 07:27:28 -07:00
2016-06-27 09:21:40 -07:00
def write(self, protobuf_msg):
# Override main 'write' method, HTTP transport cannot be
# splitted to chunks
2014-07-26 07:27:28 -07:00
cls = protobuf_msg.__class__.__name__
msg = json_format.MessageToJson(protobuf_msg, preserving_proto_field_name=True)
payload = '{"type": "%s", "message": %s}' % (cls, msg)
2015-03-05 02:15:53 -08:00
r = self.conn.post(TREZORD_HOST + '/call/%s' % self.session, data=payload)
2014-07-26 07:27:28 -07:00
if r.status_code != 200:
raise Exception('trezord: Could not write message' + get_error(r))
2014-07-26 07:27:28 -07:00
else:
self.response = r.json()
def _read(self):
2016-05-26 08:20:44 -07:00
if self.response is None:
2014-07-26 07:27:28 -07:00
raise Exception('No response stored')
cls = getattr(proto, self.response['type'])
inst = cls()
pb = json_format.ParseDict(self.response['message'], inst)
2016-06-27 09:21:40 -07:00
return (0, 'protobuf', pb)