electrum-bitcoinprivate/lib/verifier.py

176 lines
6.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2012 thomasv@ecdsa.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-11-05 04:03:05 -08:00
import threading, time, Queue, os, sys, shutil
from util import user_dir, appdata_dir, print_error
from bitcoin import *
class TxVerifier(threading.Thread):
""" Simple Payment Verification """
2013-09-10 07:13:30 -07:00
def __init__(self, network, storage):
threading.Thread.__init__(self)
self.daemon = True
self.storage = storage
2013-09-10 07:13:30 -07:00
self.network = network
2012-11-15 01:34:56 -08:00
self.transactions = {} # requested verifications (with height sent by the requestor)
self.verified_tx = storage.get('verified_tx3',{}) # height, timestamp of verified transactions
self.merkle_roots = storage.get('merkle_roots',{}) # hashed by me
self.lock = threading.Lock()
2012-11-05 14:10:38 -08:00
self.running = False
2013-09-11 23:41:27 -07:00
self.queue = Queue.Queue()
2012-10-25 06:40:30 -07:00
def get_confirmations(self, tx):
2012-10-26 01:20:47 -07:00
""" return the number of confirmations of a monitored transaction. """
with self.lock:
if tx in self.verified_tx:
2013-03-23 10:10:09 -07:00
height, timestamp, pos = self.verified_tx[tx]
2014-03-10 12:53:05 -07:00
conf = (self.network.get_local_height() - height + 1)
if conf <= 0: timestamp = None
elif tx in self.transactions:
conf = -1
timestamp = None
else:
2012-12-05 06:16:52 -08:00
conf = 0
timestamp = None
return conf, timestamp
def get_txpos(self, tx_hash):
"return position, even if the tx is unverified"
with self.lock:
x = self.verified_tx.get(tx_hash)
y = self.transactions.get(tx_hash)
if x:
height, timestamp, pos = x
return height, pos
elif y:
return y, 0
else:
return 1e12, 0
def get_height(self, tx_hash):
with self.lock:
v = self.verified_tx.get(tx_hash)
height = v[0] if v else None
return height
2012-11-14 06:33:44 -08:00
def add(self, tx_hash, tx_height):
2012-10-26 01:20:47 -07:00
""" add a transaction to the list of monitored transactions. """
2012-11-15 01:34:56 -08:00
assert tx_height > 0
with self.lock:
2012-11-14 06:33:44 -08:00
if tx_hash not in self.transactions.keys():
self.transactions[tx_hash] = tx_height
2012-11-05 14:10:38 -08:00
def stop(self):
with self.lock: self.running = False
def is_running(self):
with self.lock: return self.running
def run(self):
2013-09-01 23:50:39 -07:00
with self.lock:
self.running = True
requested_merkle = []
2012-11-05 14:10:38 -08:00
while self.is_running():
# request missing tx
2013-09-01 23:50:39 -07:00
for tx_hash, tx_height in self.transactions.items():
if tx_hash not in self.verified_tx:
2014-07-04 18:57:05 -07:00
# do not request merkle branch before headers are available
2014-07-27 22:53:02 -07:00
if tx_height > self.network.get_local_height():
2014-07-04 18:57:05 -07:00
continue
2013-09-01 23:50:39 -07:00
if self.merkle_roots.get(tx_hash) is None and tx_hash not in requested_merkle:
2014-07-27 22:53:02 -07:00
if self.network.send([ ('blockchain.transaction.get_merkle',[tx_hash, tx_height]) ], self.queue.put):
2013-11-11 07:23:17 -08:00
print_error('requesting merkle', tx_hash)
2013-11-11 07:18:40 -08:00
requested_merkle.append(tx_hash)
try:
2014-07-29 03:26:16 -07:00
r = self.queue.get(timeout=0.1)
except Queue.Empty:
continue
2013-09-11 23:41:27 -07:00
2012-11-24 11:31:07 -08:00
if not r: continue
if r.get('error'):
print_error('Verifier received an error:', r)
continue
# 3. handle response
method = r['method']
params = r['params']
result = r['result']
if method == 'blockchain.transaction.get_merkle':
tx_hash = params[0]
self.verify_merkle(tx_hash, result)
requested_merkle.remove(tx_hash)
def verify_merkle(self, tx_hash, result):
tx_height = result.get('block_height')
2013-03-23 10:10:09 -07:00
pos = result.get('pos')
self.merkle_roots[tx_hash] = self.hash_merkle_root(result['merkle'], tx_hash, pos)
2014-03-10 12:53:05 -07:00
header = self.network.get_header(tx_height)
if not header: return
if header.get('merkle_root') != self.merkle_roots[tx_hash]:
print_error("merkle verification failed for", tx_hash)
print_error(header)
print_error(result)
return
# we passed all the tests
2012-12-05 06:16:52 -08:00
timestamp = header.get('timestamp')
with self.lock:
2013-03-23 10:10:09 -07:00
self.verified_tx[tx_hash] = (tx_height, timestamp, pos)
print_error("verified %s"%tx_hash)
2013-09-01 23:50:39 -07:00
self.storage.put('verified_tx3', self.verified_tx, True)
2013-09-10 07:13:30 -07:00
self.network.trigger_callback('updated')
2012-11-06 23:45:53 -08:00
def hash_merkle_root(self, merkle_s, target_hash, pos):
h = hash_decode(target_hash)
for i in range(len(merkle_s)):
item = merkle_s[i]
h = Hash( hash_decode(item) + h ) if ((pos >> i) & 1) else Hash( h + hash_decode(item) )
return hash_encode(h)
def undo_verifications(self, height):
with self.lock:
items = self.verified_tx.items()[:]
for tx_hash, item in items:
tx_height, timestamp, pos = item
if tx_height >= height:
print_error("redoing", tx_hash)
with self.lock:
self.verified_tx.pop(tx_hash)
if tx_hash in self.merkle_roots:
self.merkle_roots.pop(tx_hash)