python-trezor/trezorlib/transport_pipe.py

111 lines
3.5 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>
#
# 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/>.
from __future__ import absolute_import
2013-09-12 20:32:27 -07:00
import os
2017-06-23 12:31:42 -07:00
import time
from .protocol_v1 import ProtocolV1
from .transport import Transport, TransportException
2013-09-12 20:32:27 -07:00
2016-05-26 08:20:44 -07:00
class PipeTransport(Transport):
'''
PipeTransport implements fake wire transport over local named pipe.
Use this transport for talking with trezor-emu.
'''
2017-06-23 12:31:42 -07:00
def __init__(self, device=None, is_device=False):
super(PipeTransport, self).__init__()
2017-07-01 08:59:11 -07:00
if not device:
device = '/tmp/pipe.trezor'
self.device = device
self.is_device = is_device
self.filename_read = None
self.filename_write = None
self.read_f = None
self.write_f = None
self.protocol = ProtocolV1()
def __str__(self):
return self.device
@staticmethod
def enumerate():
raise NotImplementedError('This transport cannot enumerate devices')
@staticmethod
def find_by_path(path=None):
return PipeTransport(path)
def open(self):
2013-09-12 20:32:27 -07:00
if self.is_device:
2017-06-23 12:31:42 -07:00
self.filename_read = self.device + '.to'
self.filename_write = self.device + '.from'
2016-05-04 18:16:17 -07:00
os.mkfifo(self.filename_read, 0o600)
os.mkfifo(self.filename_write, 0o600)
2013-09-12 20:32:27 -07:00
else:
2017-06-23 12:31:42 -07:00
self.filename_read = self.device + '.from'
self.filename_write = self.device + '.to'
2013-09-12 20:32:27 -07:00
if not os.path.exists(self.filename_write):
raise TransportException('Not connected')
2016-02-10 07:46:58 -08:00
self.read_f = os.open(self.filename_read, 'rb', 0)
self.write_f = os.open(self.filename_write, 'w+b', 0)
2016-02-10 07:46:58 -08:00
self.protocol.session_begin(self)
2016-02-10 07:46:58 -08:00
def close(self):
self.protocol.session_end(self)
if self.read_f:
self.read_f.close()
self.read_f = None
if self.write_f:
self.write_f.close()
self.write_f = None
2013-09-12 20:32:27 -07:00
if self.is_device:
os.unlink(self.filename_read)
os.unlink(self.filename_write)
self.filename_read = None
self.filename_write = None
2013-09-12 20:32:27 -07:00
def read(self):
return self.protocol.read(self)
2016-02-10 07:46:58 -08:00
def write(self, msg):
return self.protocol.write(self, msg)
def write_chunk(self, chunk):
if len(chunk) != 64:
raise TransportException('Unexpected chunk size: %d' % len(chunk))
self.write_f.write(chunk)
self.write_f.flush()
2016-02-10 07:46:58 -08:00
def read_chunk(self):
while True:
chunk = self.read_f.read(64)
if chunk:
break
else:
time.sleep(0.001)
if len(chunk) != 64:
raise TransportException('Unexpected chunk size: %d' % len(chunk))
return bytearray(chunk)