2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2016-11-25 21:53:55 +00:00
|
|
|
#
|
2018-06-21 14:28:34 +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
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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 logging
|
2018-01-29 16:46:24 +00:00
|
|
|
import struct
|
2018-08-13 16:21:24 +00:00
|
|
|
from io import BytesIO
|
|
|
|
|
|
|
|
import requests
|
2017-08-24 12:29:27 +00:00
|
|
|
|
2018-03-02 14:44:24 +00:00
|
|
|
from . import Transport, TransportException
|
2018-08-13 16:21:24 +00:00
|
|
|
from .. import mapping, protobuf
|
2014-07-26 14:27:28 +00:00
|
|
|
|
2018-05-24 15:55:41 +00:00
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
TREZORD_HOST = "http://127.0.0.1:21325"
|
2014-07-26 14:27:28 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2014-07-26 15:15:12 +00:00
|
|
|
def get_error(resp):
|
2018-08-13 16:21:24 +00:00
|
|
|
return " (error=%d str=%s)" % (resp.status_code, resp.json()["error"])
|
2014-07-26 15:15:12 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
class BridgeTransport(Transport):
|
2018-08-13 16:21:24 +00:00
|
|
|
"""
|
2017-08-24 12:29:27 +00:00
|
|
|
BridgeTransport implements transport through TREZOR Bridge (aka trezord).
|
2018-08-13 16:21:24 +00:00
|
|
|
"""
|
2017-04-20 11:16:15 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
PATH_PREFIX = "bridge"
|
|
|
|
HEADERS = {"Origin": "https://python.trezor.io"}
|
2018-02-02 18:17:48 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def __init__(self, device):
|
2018-03-02 14:44:24 +00:00
|
|
|
super().__init__()
|
2015-12-21 17:18:06 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
self.device = device
|
|
|
|
self.conn = requests.Session()
|
2015-12-21 17:18:06 +00:00
|
|
|
self.session = None
|
|
|
|
self.response = None
|
|
|
|
|
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"])
|
2015-12-21 17:18:06 +00:00
|
|
|
|
2018-03-01 09:33:47 +00:00
|
|
|
@classmethod
|
|
|
|
def enumerate(cls):
|
2018-02-02 18:17:48 +00:00
|
|
|
try:
|
2018-08-13 16:21:24 +00:00
|
|
|
r = requests.post(TREZORD_HOST + "/enumerate", headers=cls.HEADERS)
|
2018-02-02 18:17:48 +00:00
|
|
|
if r.status_code != 200:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise TransportException(
|
|
|
|
"trezord: Could not enumerate devices" + get_error(r)
|
|
|
|
)
|
2018-02-02 18:17:48 +00:00
|
|
|
return [BridgeTransport(dev) for dev in r.json()]
|
2018-08-10 14:05:14 +00:00
|
|
|
except Exception:
|
2018-02-02 18:17:48 +00:00
|
|
|
return []
|
2017-08-24 12:29:27 +00:00
|
|
|
|
|
|
|
def open(self):
|
2018-08-13 16:21:24 +00:00
|
|
|
r = self.conn.post(
|
|
|
|
TREZORD_HOST + "/acquire/%s/null" % self.device["path"],
|
|
|
|
headers=self.HEADERS,
|
|
|
|
)
|
2014-07-26 14:27:28 +00:00
|
|
|
if r.status_code != 200:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise TransportException(
|
|
|
|
"trezord: Could not acquire session" + get_error(r)
|
|
|
|
)
|
|
|
|
self.session = r.json()["session"]
|
2014-07-26 14:27:28 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def close(self):
|
|
|
|
if not self.session:
|
|
|
|
return
|
2018-08-13 16:21:24 +00:00
|
|
|
r = self.conn.post(
|
|
|
|
TREZORD_HOST + "/release/%s" % self.session, headers=self.HEADERS
|
|
|
|
)
|
2014-07-26 14:27:28 +00:00
|
|
|
if r.status_code != 200:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise TransportException(
|
|
|
|
"trezord: Could not release session" + get_error(r)
|
|
|
|
)
|
2017-08-24 12:29:27 +00:00
|
|
|
self.session = None
|
|
|
|
|
|
|
|
def write(self, msg):
|
2018-08-13 16:21:24 +00:00
|
|
|
LOG.debug(
|
|
|
|
"sending message: {}".format(msg.__class__.__name__),
|
|
|
|
extra={"protobuf": msg},
|
|
|
|
)
|
2018-01-29 16:46:24 +00:00
|
|
|
data = BytesIO()
|
|
|
|
protobuf.dump_message(data, msg)
|
|
|
|
ser = data.getvalue()
|
|
|
|
header = struct.pack(">HL", mapping.get_type(msg), len(ser))
|
2018-09-12 22:44:08 +00:00
|
|
|
data = (header + ser).hex()
|
2017-08-24 12:29:27 +00:00
|
|
|
r = self.conn.post(
|
2018-08-13 16:21:24 +00:00
|
|
|
TREZORD_HOST + "/call/%s" % self.session, data=data, headers=self.HEADERS
|
|
|
|
)
|
2014-07-26 14:27:28 +00:00
|
|
|
if r.status_code != 200:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise TransportException("trezord: Could not write message" + get_error(r))
|
2018-01-29 16:46:24 +00:00
|
|
|
self.response = r.text
|
2014-07-26 14:27:28 +00:00
|
|
|
|
2017-08-24 12:29:27 +00:00
|
|
|
def read(self):
|
2016-05-26 15:20:44 +00:00
|
|
|
if self.response is None:
|
2018-08-13 16:21:24 +00:00
|
|
|
raise TransportException("No response stored")
|
2018-09-12 22:44:08 +00:00
|
|
|
data = bytes.fromhex(self.response)
|
2018-08-13 16:21:24 +00:00
|
|
|
headerlen = struct.calcsize(">HL")
|
|
|
|
(msg_type, datalen) = struct.unpack(">HL", data[:headerlen])
|
|
|
|
data = BytesIO(data[headerlen : headerlen + datalen])
|
2018-01-29 16:46:24 +00:00
|
|
|
msg = protobuf.load_message(data, mapping.get_class(msg_type))
|
2018-08-13 16:21:24 +00:00
|
|
|
LOG.debug(
|
|
|
|
"received message: {}".format(msg.__class__.__name__),
|
|
|
|
extra={"protobuf": msg},
|
|
|
|
)
|
2017-08-24 12:29:27 +00:00
|
|
|
self.response = None
|
|
|
|
return msg
|
2018-05-24 17:14:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
TRANSPORT = BridgeTransport
|