Files
pallectrum/electrum/interface.py

501 lines
21 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2011 thomasv@gitorious
#
2016-02-23 11:36:42 +01:00
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
2016-02-23 11:36:42 +01:00
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
2016-02-23 11:36:42 +01:00
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
2015-06-03 00:03:33 +09:00
import os
import re
import socket
import ssl
2015-06-03 00:03:33 +09:00
import sys
import threading
import traceback
2018-08-16 18:16:25 +02:00
import aiorpcx
import asyncio
import concurrent.futures
from aiorpcx import ClientSession, Notification, TaskGroup
2012-02-03 15:45:41 +01:00
import requests
2017-01-30 12:36:56 +03:00
from .util import PrintError, aiosafe, bfh, AIOSafeSilentException
2017-01-30 12:36:56 +03:00
ca_path = requests.certs.where()
2017-01-22 21:25:24 +03:00
from . import util
from . import x509
from . import pem
2018-08-16 18:16:25 +02:00
from .version import ELECTRUM_VERSION, PROTOCOL_VERSION
from . import blockchain
2018-09-06 15:53:41 +02:00
from .blockchain import deserialize_header
class NotificationSession(ClientSession):
def __init__(self, scripthash, header, *args, **kwargs):
super(NotificationSession, self).__init__(*args, **kwargs)
self.scripthash = scripthash
self.header = header
@aiosafe
async def handle_request(self, request):
if isinstance(request, Notification):
if request.method == 'blockchain.scripthash.subscribe' and self.scripthash is not None:
args = request.args
await self.scripthash.put((args[0], args[1]))
elif request.method == 'blockchain.headers.subscribe' and self.header is not None:
deser = deserialize_header(bfh(request.args[0]['hex']), request.args[0]['height'])
await self.header.put(deser)
else:
assert False, request.method
# FIXME this is often raised inside a TaskGroup, but then it's not silent :(
class GracefulDisconnect(AIOSafeSilentException): pass
class CustomTaskGroup(TaskGroup):
def spawn(self, *args, **kwargs):
if self._closed:
raise asyncio.CancelledError()
return super().spawn(*args, **kwargs)
2018-08-16 18:16:25 +02:00
class Interface(PrintError):
def __init__(self, network, server, config_path, proxy):
2018-08-27 20:39:36 +02:00
self.exception = None
self.ready = asyncio.Future()
2013-10-06 12:28:45 +02:00
self.server = server
2018-08-16 18:16:25 +02:00
self.host, self.port, self.protocol = self.server.split(':')
2018-08-27 20:39:36 +02:00
self.port = int(self.port)
2018-08-16 18:16:25 +02:00
self.config_path = config_path
self.cert_path = os.path.join(self.config_path, 'certs', self.host)
self.tip_header = None
self.tip = 0
self.blockchain = None
self.network = network
# TODO combine?
self.fut = asyncio.get_event_loop().create_task(self.run())
self.group = CustomTaskGroup()
2018-08-27 20:39:36 +02:00
if proxy:
username, pw = proxy.get('user'), proxy.get('password')
if not username or not pw:
2018-08-27 20:39:36 +02:00
auth = None
else:
auth = aiorpcx.socks.SOCKSUserAuth(username, pw)
2018-08-27 20:39:36 +02:00
if proxy['mode'] == "socks4":
self.proxy = aiorpcx.socks.SOCKSProxy((proxy['host'], int(proxy['port'])), aiorpcx.socks.SOCKS4a, auth)
elif proxy['mode'] == "socks5":
self.proxy = aiorpcx.socks.SOCKSProxy((proxy['host'], int(proxy['port'])), aiorpcx.socks.SOCKS5, auth)
else:
raise NotImplementedError # http proxy not available with aiorpcx
2018-08-27 20:39:36 +02:00
else:
self.proxy = None
def diagnostic_name(self):
return self.host
2015-06-03 00:03:33 +09:00
2018-08-16 18:16:25 +02:00
async def is_server_ca_signed(self, sslc):
try:
2018-08-31 18:06:11 +02:00
await self.open_session(sslc, exit_early=True)
2018-08-16 18:16:25 +02:00
except ssl.SSLError as e:
assert e.reason == 'CERTIFICATE_VERIFY_FAILED'
return False
return True
2013-09-30 14:01:49 +02:00
2018-08-14 17:50:20 +02:00
@aiosafe
2018-08-16 18:16:25 +02:00
async def run(self):
if self.protocol != 's':
2018-08-31 18:06:11 +02:00
await self.open_session(None, exit_early=False)
2018-08-27 20:39:36 +02:00
assert False
2013-09-30 14:01:49 +02:00
2018-08-16 18:16:25 +02:00
ca_sslc = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
exists = os.path.exists(self.cert_path)
if exists:
with open(self.cert_path, 'r') as f:
contents = f.read()
if contents != '': # if not CA signed
try:
b = pem.dePem(contents, 'CERTIFICATE')
except SyntaxError:
exists = False
else:
x = x509.X509(b)
try:
x.check_date()
except x509.CertificateError as e:
self.print_error("certificate problem", e)
os.unlink(self.cert_path)
2018-08-16 18:16:25 +02:00
exists = False
if not exists:
try:
ca_signed = await self.is_server_ca_signed(ca_sslc)
2018-09-08 02:15:51 +02:00
except (ConnectionRefusedError, socket.gaierror, aiorpcx.socks.SOCKSFailure) as e:
self.print_error('disconnecting due to: {}'.format(e))
self.exception = e
return
2018-08-16 18:16:25 +02:00
if ca_signed:
with open(self.cert_path, 'w') as f:
# empty file means this is CA signed, not self-signed
f.write('')
else:
await self.save_certificate()
siz = os.stat(self.cert_path).st_size
if siz == 0: # if CA signed
sslc = ca_sslc
else:
sslc = ssl.create_default_context(ssl.Purpose.SERVER_AUTH, cafile=self.cert_path)
sslc.check_hostname = 0
try:
await self.open_session(sslc, exit_early=False)
except (asyncio.CancelledError, ConnectionRefusedError, socket.gaierror, ssl.SSLError, TimeoutError) as e:
self.print_error('disconnecting due to: {}'.format(e))
self.exception = e
return
# should never get here (can only exit via exception)
2018-08-27 20:39:36 +02:00
assert False
def mark_ready(self):
assert self.tip_header
chain = blockchain.check_header(self.tip_header)
if not chain:
self.blockchain = blockchain.blockchains[0]
else:
self.blockchain = chain
self.print_error("set blockchain with height", self.blockchain.height())
if not self.ready.done():
self.ready.set_result(1)
2018-08-16 18:16:25 +02:00
async def save_certificate(self):
if not os.path.exists(self.cert_path):
# we may need to retry this a few times, in case the handshake hasn't completed
for _ in range(10):
dercert = await self.get_certificate()
if dercert:
self.print_error("succeeded in getting cert")
with open(self.cert_path, 'w') as f:
cert = ssl.DER_cert_to_PEM_cert(dercert)
# workaround android bug
cert = re.sub("([^\n])-----END CERTIFICATE-----","\\1\n-----END CERTIFICATE-----",cert)
f.write(cert)
# even though close flushes we can't fsync when closed.
# and we must flush before fsyncing, cause flush flushes to OS buffer
# fsync writes to OS buffer to disk
f.flush()
os.fsync(f.fileno())
break
await asyncio.sleep(1)
2018-08-17 14:51:02 +02:00
else:
assert False, "could not get certificate"
2017-01-09 16:36:05 +01:00
2018-08-16 18:16:25 +02:00
async def get_certificate(self):
sslc = ssl.SSLContext()
2015-06-03 00:03:33 +09:00
try:
2018-08-27 20:39:36 +02:00
async with aiorpcx.ClientSession(self.host, self.port, ssl=sslc, proxy=self.proxy) as session:
2018-08-16 18:16:25 +02:00
return session.transport._ssl_protocol._sslpipe._sslobj.getpeercert(True)
except ValueError:
return None
async def get_block_header(self, height, assert_mode):
res = await asyncio.wait_for(self.session.send_request('blockchain.block.header', [height]), 5)
return blockchain.deserialize_header(bytes.fromhex(res), height)
async def request_chunk(self, idx, tip):
return await self.network.request_chunk(idx, tip, self.session)
2018-08-31 18:06:11 +02:00
async def open_session(self, sslc, exit_early):
header_queue = asyncio.Queue()
self.session = NotificationSession(None, header_queue, self.host, self.port, ssl=sslc, proxy=self.proxy)
async with self.session as session:
try:
ver = await session.send_request('server.version', [ELECTRUM_VERSION, PROTOCOL_VERSION])
except aiorpcx.jsonrpc.RPCError as e:
raise GracefulDisconnect(e) # probably 'unsupported protocol version'
2018-08-31 18:06:11 +02:00
if exit_early:
return
self.print_error(ver, self.host)
subscription_res = await session.send_request('blockchain.headers.subscribe')
self.tip_header = blockchain.deserialize_header(bfh(subscription_res['hex']), subscription_res['height'])
self.tip = subscription_res['height']
self.mark_ready()
2018-08-14 17:50:20 +02:00
copy_header_queue = asyncio.Queue()
async with self.group as group:
await group.spawn(self.run_fetch_blocks(subscription_res, copy_header_queue))
await group.spawn(self.subscribe_to_headers(header_queue, copy_header_queue))
await group.spawn(self.monitor_connection())
# NOTE: group.__aexit__ will be called here; this is needed to notice exceptions in the group!
async def monitor_connection(self):
while True:
await asyncio.sleep(1)
if not self.session or self.session.is_closing():
raise GracefulDisconnect('server closed session')
async def subscribe_to_headers(self, header_queue, copy_header_queue):
while True:
try:
new_header = await asyncio.wait_for(header_queue.get(), 300)
self.tip_header = new_header
self.tip = new_header['block_height']
await copy_header_queue.put(new_header)
except concurrent.futures.TimeoutError:
await asyncio.wait_for(self.session.send_request('server.ping'), 10)
2018-08-16 18:16:25 +02:00
def close(self):
self.fut.cancel()
asyncio.get_event_loop().create_task(self.group.cancel_remaining())
2014-07-28 00:13:40 +02:00
async def run_fetch_blocks(self, sub_reply, replies):
if self.tip < self.network.max_checkpoint():
raise GracefulDisconnect('server tip below max checkpoint')
2018-08-14 17:50:20 +02:00
async with self.network.bhi_lock:
height = self.blockchain.height()+1
2018-08-14 17:50:20 +02:00
await replies.put(blockchain.deserialize_header(bfh(sub_reply['hex']), sub_reply['height']))
while True:
self.network.notify('updated')
item = await replies.get()
async with self.network.bhi_lock:
if self.blockchain.height() < item['block_height']-1:
_, height = await self.sync_until(height, None)
if self.blockchain.height() >= height and self.blockchain.check_header(item):
2018-08-14 17:50:20 +02:00
# another interface amended the blockchain
self.print_error("SKIPPING HEADER", height)
2018-08-14 17:50:20 +02:00
continue
if self.tip < height:
height = self.tip
_, height = await self.step(height, item)
self.tip = max(height, self.tip)
2018-08-14 17:50:20 +02:00
async def sync_until(self, height, next_height=None):
2018-08-14 17:50:20 +02:00
if next_height is None:
next_height = self.tip
2018-08-14 17:50:20 +02:00
last = None
while last is None or height < next_height:
if next_height > height + 10:
could_connect, num_headers = await self.request_chunk(height, next_height)
self.tip = max(height + num_headers, self.tip)
2018-08-14 17:50:20 +02:00
if not could_connect:
if height <= self.network.max_checkpoint():
2018-08-31 16:46:03 +02:00
raise Exception('server chain conflicts with checkpoints or genesis')
last, height = await self.step(height)
self.tip = max(height, self.tip)
2018-08-14 17:50:20 +02:00
continue
height = (height // 2016 * 2016) + num_headers
if height > next_height:
assert False, (height, self.tip)
2018-08-14 17:50:20 +02:00
last = 'catchup'
else:
last, height = await self.step(height)
self.tip = max(height, self.tip)
return last, height
2018-08-14 17:50:20 +02:00
async def step(self, height, header=None):
assert height != 0
2018-08-14 17:50:20 +02:00
if header is None:
header = await self.get_block_header(height, 'catchup')
chain = self.blockchain.check_header(header) if 'mock' not in header else header['mock']['check'](header)
if chain: return 'catchup', height
can_connect = blockchain.can_connect(header) if 'mock' not in header else header['mock']['connect'](height)
2018-08-14 17:50:20 +02:00
bad_header = None
if not can_connect:
self.print_error("can't connect", height)
2018-08-14 17:50:20 +02:00
#backward
bad = height
2018-08-14 17:50:20 +02:00
bad_header = header
height -= 1
2018-08-14 17:50:20 +02:00
checkp = False
if height <= self.network.max_checkpoint():
height = self.network.max_checkpoint() + 1
2018-08-14 17:50:20 +02:00
checkp = True
header = await self.get_block_header(height, 'backward')
2018-08-14 17:50:20 +02:00
chain = blockchain.check_header(header) if 'mock' not in header else header['mock']['check'](header)
can_connect = blockchain.can_connect(header) if 'mock' not in header else header['mock']['connect'](height)
2018-08-14 17:50:20 +02:00
if checkp:
assert can_connect or chain, (can_connect, chain)
while not chain and not can_connect:
bad = height
2018-08-14 17:50:20 +02:00
bad_header = header
delta = self.tip - height
next_height = self.tip - 2 * delta
2018-08-14 17:50:20 +02:00
checkp = False
if next_height <= self.network.max_checkpoint():
next_height = self.network.max_checkpoint() + 1
2018-08-14 17:50:20 +02:00
checkp = True
height = next_height
2018-08-14 17:50:20 +02:00
header = await self.get_block_header(height, 'backward')
2018-08-14 17:50:20 +02:00
chain = blockchain.check_header(header) if 'mock' not in header else header['mock']['check'](header)
can_connect = blockchain.can_connect(header) if 'mock' not in header else header['mock']['connect'](height)
2018-08-14 17:50:20 +02:00
if checkp:
assert can_connect or chain, (can_connect, chain)
self.print_error("exiting backward mode at", height)
2018-08-14 17:50:20 +02:00
if can_connect:
self.print_error("could connect", height)
2018-08-14 17:50:20 +02:00
chain = blockchain.check_header(header) if 'mock' not in header else header['mock']['check'](header)
if type(can_connect) is bool:
# mock
height += 1
if height > self.tip:
2018-08-14 17:50:20 +02:00
assert False
return 'catchup', height
self.blockchain = can_connect
height += 1
self.blockchain.save_header(header)
return 'catchup', height
2018-08-14 17:50:20 +02:00
if not chain:
raise Exception("not chain") # line 931 in 8e69174374aee87d73cd2f8005fbbe87c93eee9c's network.py
# binary
if type(chain) in [int, bool]:
pass # mock
else:
self.blockchain = chain
good = height
height = (bad + good) // 2
header = await self.get_block_header(height, 'binary')
2018-08-14 17:50:20 +02:00
while True:
self.print_error("binary step")
chain = blockchain.check_header(header) if 'mock' not in header else header['mock']['check'](header)
if chain:
assert bad != height, (bad, height)
good = height
self.blockchain = self.blockchain if type(chain) in [bool, int] else chain
2018-08-14 17:50:20 +02:00
else:
bad = height
assert good != height
2018-08-14 17:50:20 +02:00
bad_header = header
if bad != good + 1:
height = (bad + good) // 2
header = await self.get_block_header(height, 'binary')
2018-08-14 17:50:20 +02:00
continue
mock = bad_header and 'mock' in bad_header and bad_header['mock']['connect'](height)
real = not mock and self.blockchain.can_connect(bad_header, check_height=False)
2018-08-14 17:50:20 +02:00
if not real and not mock:
raise Exception('unexpected bad header during binary' + str(bad_header)) # line 948 in 8e69174374aee87d73cd2f8005fbbe87c93eee9c's network.py
branch = blockchain.blockchains.get(bad)
if branch is not None:
ismocking = False
if type(branch) is dict:
ismocking = True
# FIXME: it does not seem sufficient to check that the branch
# contains the bad_header. what if self.blockchain doesn't?
# the chains shouldn't be joined then. observe the incorrect
# joining on regtest with a server that has a fork of height
# one. the problem is observed only if forking is not during
# electrum runtime
if ismocking and branch['check'](bad_header) or not ismocking and branch.check_header(bad_header):
self.print_error('joining chain', bad)
height += 1
return 'join', height
2018-08-14 17:50:20 +02:00
else:
if ismocking and branch['parent']['check'](header) or not ismocking and branch.parent().check_header(header):
self.print_error('reorg', bad, self.tip)
self.blockchain = branch.parent() if not ismocking else branch['parent']
height = bad
header = await self.get_block_header(height, 'binary')
2018-08-14 17:50:20 +02:00
else:
if ismocking:
height = bad + 1
2018-08-14 17:50:20 +02:00
self.print_error("TODO replace blockchain")
return 'conflict', height
2018-08-14 17:50:20 +02:00
self.print_error('forkpoint conflicts with existing fork', branch.path())
branch.write(b'', 0)
branch.save_header(bad_header)
self.blockchain = branch
height = bad + 1
return 'conflict', height
2018-08-14 17:50:20 +02:00
else:
bh = self.blockchain.height()
2018-08-14 17:50:20 +02:00
if bh > good:
forkfun = self.blockchain.fork
2018-08-14 17:50:20 +02:00
if 'mock' in bad_header:
chain = bad_header['mock']['check'](bad_header)
forkfun = bad_header['mock']['fork'] if 'fork' in bad_header['mock'] else forkfun
else:
chain = self.blockchain.check_header(bad_header)
2018-08-14 17:50:20 +02:00
if not chain:
b = forkfun(bad_header)
assert bad not in blockchain.blockchains, (bad, list(blockchain.blockchains.keys()))
blockchain.blockchains[bad] = b
self.blockchain = b
height = b.forkpoint + 1
2018-08-14 17:50:20 +02:00
assert b.forkpoint == bad
return 'fork', height
2018-08-14 17:50:20 +02:00
else:
assert bh == good
if bh < self.tip:
2018-08-14 17:50:20 +02:00
self.print_error("catching up from %d"% (bh + 1))
height = bh + 1
return 'no_fork', height
2018-08-14 17:50:20 +02:00
def check_cert(host, cert):
try:
2015-08-07 11:58:59 +02:00
b = pem.dePem(cert, 'CERTIFICATE')
x = x509.X509(b)
except:
traceback.print_exc(file=sys.stdout)
return
try:
x.check_date()
expired = False
except:
expired = True
m = "host: %s\n"%host
m += "has_expired: %s\n"% expired
util.print_msg(m)
2015-06-03 00:03:33 +09:00
# Used by tests
def _match_hostname(name, val):
if val == name:
return True
return val.startswith('*.') and name.endswith(val[1:])
2017-01-30 12:36:56 +03:00
def test_certificates():
2017-01-22 21:25:24 +03:00
from .simple_config import SimpleConfig
config = SimpleConfig()
mydir = os.path.join(config.path, "certs")
certs = os.listdir(mydir)
for c in certs:
p = os.path.join(mydir,c)
with open(p, encoding='utf-8') as f:
cert = f.read()
check_cert(c, cert)
if __name__ == "__main__":
test_certificates()