2248afd398510fe32dcd6ff6a2a5a99f45cbd027
[p2pool.git] / p2pool / data.py
1 from __future__ import division
2
3 import hashlib
4 import os
5 import random
6 import sys
7 import time
8 import math
9
10 from twisted.python import log
11
12 import p2pool
13 from p2pool.bitcoin import data as bitcoin_data, script, sha256
14 from p2pool.util import math, forest, pack
15
16 minout = pow(10, 6) / 100;
17
18 # hashlink
19
20 hash_link_type = pack.ComposedType([
21     ('state', pack.FixedStrType(32)),
22     ('extra_data', pack.FixedStrType(0)), # bit of a hack, but since the donation script is at the end, const_ending is long enough to always make this empty
23     ('length', pack.VarIntType()),
24 ])
25
26 def prefix_to_hash_link(prefix, const_ending=''):
27     assert prefix.endswith(const_ending), (prefix, const_ending)
28     x = sha256.sha256(prefix)
29     return dict(state=x.state, extra_data=x.buf[:max(0, len(x.buf)-len(const_ending))], length=x.length//8)
30
31 def check_hash_link(hash_link, data, const_ending=''):
32     extra_length = hash_link['length'] % (512//8)
33     assert len(hash_link['extra_data']) == max(0, extra_length - len(const_ending))
34     extra = (hash_link['extra_data'] + const_ending)[len(hash_link['extra_data']) + len(const_ending) - extra_length:]
35     assert len(extra) == extra_length
36     return pack.IntType(256).unpack(hashlib.sha256(sha256.sha256(data, (hash_link['state'], extra, 8*hash_link['length'])).digest()).digest())
37
38 # shares
39
40 share_type = pack.ComposedType([
41     ('type', pack.VarIntType()),
42     ('contents', pack.VarStrType()),
43 ])
44
45 def load_share(share, net, peer_addr):
46     assert peer_addr is None or isinstance(peer_addr, tuple)
47     if share['type'] in [0, 1, 2, 3, 4, 5, 6, 7, 8]:
48         from p2pool import p2p
49         raise p2p.PeerMisbehavingError('sent an obsolete share')
50     elif share['type'] == Share.VERSION:
51         return Share(net, peer_addr, Share.share_type.unpack(share['contents']))
52     else:
53         raise ValueError('unknown share type: %r' % (share['type'],))
54
55 DONATION_SCRIPT = '4104ffd03de44a6e11b9917f3a29f9443283d9871c9d743ef30d5eddcd37094b64d1b3d8090496b53256786bf5c82932ec23c3b74d9f05a6f95a8b5529352656664bac'.decode('hex')
56
57 class Share(object):
58     VERSION = 9
59     SUCCESSOR = None
60     
61     other_txs = None
62
63     small_block_header_type = pack.ComposedType([
64         ('version', pack.VarIntType()),
65         ('previous_block', pack.PossiblyNoneType(0, pack.IntType(256))),
66         ('timestamp', pack.IntType(32)),
67         ('bits', bitcoin_data.FloatingIntegerType()),
68         ('nonce', pack.IntType(32)),
69     ])
70     
71     share_info_type = pack.ComposedType([
72         ('share_data', pack.ComposedType([
73             ('previous_share_hash', pack.PossiblyNoneType(0, pack.IntType(256))),
74             ('coinbase', pack.VarStrType()),
75             ('nonce', pack.IntType(32)),
76             ('pubkey', pack.FixedStrType(33)),
77             ('subsidy', pack.IntType(64)),
78             ('donation', pack.IntType(16)),
79             ('stale_info', pack.EnumType(pack.IntType(8), dict((k, {0: None, 253: 'orphan', 254: 'doa'}.get(k, 'unk%i' % (k,))) for k in xrange(256)))),
80             ('desired_version', pack.VarIntType()),
81         ])),
82         ('new_transaction_hashes', pack.ListType(pack.IntType(256))),
83         ('transaction_hash_refs', pack.ListType(pack.VarIntType(), 2)), # pairs of share_count, tx_count
84         ('far_share_hash', pack.PossiblyNoneType(0, pack.IntType(256))),
85         ('max_bits', bitcoin_data.FloatingIntegerType()),
86         ('bits', bitcoin_data.FloatingIntegerType()),
87         ('timestamp', pack.IntType(32)),
88     ])
89     
90     share_type = pack.ComposedType([
91         ('min_header', small_block_header_type),
92         ('share_info', share_info_type),
93         ('ref_merkle_link', pack.ComposedType([
94             ('branch', pack.ListType(pack.IntType(256))),
95             ('index', pack.IntType(0)),
96         ])),
97         ('last_txout_nonce', pack.IntType(32)),
98         ('hash_link', hash_link_type),
99         ('merkle_link', pack.ComposedType([
100             ('branch', pack.ListType(pack.IntType(256))),
101             ('index', pack.IntType(0)), # it will always be 0
102         ])),
103     ])
104     
105     ref_type = pack.ComposedType([
106         ('identifier', pack.FixedStrType(64//8)),
107         ('share_info', share_info_type),
108     ])
109
110
111     gentx_before_refhash = pack.VarStrType().pack(DONATION_SCRIPT) + pack.IntType(64).pack(minout) + pack.VarStrType().pack('\x24' + pack.IntType(256).pack(0) + pack.IntType(32).pack(0))[:2]
112
113     @classmethod
114     def generate_transaction(cls, tracker, share_data, block_target, desired_timestamp, desired_target, ref_merkle_link, desired_other_transaction_hashes_and_fees, net, known_txs=None, last_txout_nonce=0, base_subsidy=None):
115         previous_share = tracker.items[share_data['previous_share_hash']] if share_data['previous_share_hash'] is not None else None
116
117         def get_coinbase_fee(outpointsnum):
118             # calculate neccessary coinbase fee
119             coinbase_size = 59 + outpointsnum * 44 + 50
120
121             # if coinbase size is greater than 1000 bytes, it should pay fee (0.01 per 1000 bytes)
122             if coinbase_size > 1000:
123                 return floor(coinbase_size / 1000.0) * minout
124
125             return 0
126
127         if base_subsidy is None:
128             base_subsidy = net.PARENT.SUBSIDY_FUNC(block_target)
129
130         # current user payout script
131         this_script = bitcoin_data.pubkey_to_script2(share_data['pubkey'])
132
133         height, last = tracker.get_height_and_last(share_data['previous_share_hash'])
134         assert height >= net.REAL_CHAIN_LENGTH or last is None
135         if height < net.TARGET_LOOKBEHIND:
136             pre_target3 = net.MAX_TARGET
137         else:
138             attempts_per_second = get_pool_attempts_per_second(tracker, share_data['previous_share_hash'], net.TARGET_LOOKBEHIND, min_work=True, integer=True)
139             pre_target = 2**256//(net.SHARE_PERIOD*attempts_per_second) - 1 if attempts_per_second else 2**256-1
140             pre_target2 = math.clip(pre_target, (previous_share.max_target*9//10, previous_share.max_target*11//10))
141             pre_target3 = math.clip(pre_target2, (net.MIN_TARGET, net.MAX_TARGET))
142         max_bits = bitcoin_data.FloatingInteger.from_target_upper_bound(pre_target3)
143         bits = bitcoin_data.FloatingInteger.from_target_upper_bound(math.clip(desired_target, (pre_target3//10, pre_target3)))
144
145         new_transaction_hashes = []
146         new_transaction_size = 0
147         transaction_hash_refs = []
148         other_transaction_hashes = []
149
150         past_shares = list(tracker.get_chain(share_data['previous_share_hash'], min(height, 100)))
151         tx_hash_to_this = {}
152         for i, share in enumerate(past_shares):
153             for j, tx_hash in enumerate(share.new_transaction_hashes):
154                 if tx_hash not in tx_hash_to_this:
155                     tx_hash_to_this[tx_hash] = [1+i, j] # share_count, tx_count
156         for tx_hash, fee in desired_other_transaction_hashes_and_fees:
157             if tx_hash in tx_hash_to_this:
158                 this = tx_hash_to_this[tx_hash]
159             else:
160                 if known_txs is not None:
161                     this_size = bitcoin_data.tx_type.packed_size(known_txs[tx_hash])
162                     if new_transaction_size + this_size > 50000: # only allow 50 kB of new txns/share
163                         break
164                     new_transaction_size += this_size
165                 new_transaction_hashes.append(tx_hash)
166                 this = [0, len(new_transaction_hashes)-1]
167             transaction_hash_refs.extend(this)
168             other_transaction_hashes.append(tx_hash)
169
170         included_transactions = set(other_transaction_hashes)
171
172         share_data = dict(share_data, subsidy=base_subsidy)
173
174         weights, total_weight, donation_weight = tracker.get_cumulative_weights(share_data['previous_share_hash'],
175             min(height, net.REAL_CHAIN_LENGTH),
176             65535*net.SPREAD*bitcoin_data.target_to_average_attempts(block_target),
177         )
178
179         # calculate "raw" subsidy
180         raw_subsidy = share_data['subsidy'] - 3 * minout - get_coinbase_fee(len(weights) + 1)
181
182         # calculate "raw" amounts
183         raw_amounts = dict((script, raw_subsidy*weight//total_weight) for script, weight in weights.iteritems()) 
184
185         total_remowed_weight = 0
186
187         # iterate list and collect all weights, which produces less than 0.01 payout
188         # it's neccessary due to NVC/PPC protocol-level limitations for coinbase outpoint size
189         for x in raw_amounts.keys():
190             if raw_amounts[x] < minout and x not in [this_script, DONATION_SCRIPT]:
191                 total_remowed_weight = total_remowed_weight + weights[x]
192                 weights.pop(x)
193
194         total_weight = total_weight - total_remowed_weight
195         assert total_weight == sum(weights.itervalues()) + donation_weight, (total_weight, sum(weights.itervalues()) + donation_weight)
196
197
198         # base subsidy value calculated as:
199         # [subsidy - (0.01 for donation + 0.01 for current user + 0.01 for p2pool outpoint) - netfee]
200         my_subsidy = share_data['subsidy'] - 3 * minout - get_coinbase_fee(len(weights) + 1)
201
202         # subsidy goes according to weights prior to this share
203         amounts = dict((script, my_subsidy*weight//total_weight) for script, weight in weights.iteritems()) 
204
205         # all that's left over is the donation weight and some extra satoshis due to rounding
206         amounts[DONATION_SCRIPT] = amounts.get(DONATION_SCRIPT, 0) + my_subsidy - sum(amounts.itervalues()) 
207
208         if sum(amounts.itervalues()) != my_subsidy or any(x < 0 for x in amounts.itervalues()):
209             raise ValueError()
210
211         # add 0.01 coin to donation, to satisfy the protocol
212         amounts[DONATION_SCRIPT] = amounts[DONATION_SCRIPT] + minout
213
214         # add 0.01 to current user output, to satisfy the protocol
215         amounts[this_script] = amounts.get(this_script, 0) + minout
216
217 #        print amounts
218
219         dests = sorted(amounts.iterkeys(), key=lambda script: (script == DONATION_SCRIPT, amounts[script], script))[-4000:] # block length limit, unlikely to ever be hit
220
221 #        print dests
222
223         share_info = dict(
224             share_data=share_data,
225             far_share_hash=None if last is None and height < 99 else tracker.get_nth_parent_hash(share_data['previous_share_hash'], 99),
226             max_bits=max_bits,
227             bits=bits,
228             timestamp=math.clip(desired_timestamp, (
229                 (previous_share.timestamp + net.SHARE_PERIOD) - (net.SHARE_PERIOD - 1), # = previous_share.timestamp + 1
230                 (previous_share.timestamp + net.SHARE_PERIOD) + (net.SHARE_PERIOD - 1),
231             )) if previous_share is not None else desired_timestamp,
232             new_transaction_hashes=new_transaction_hashes,
233             transaction_hash_refs=transaction_hash_refs,
234         )
235
236         gentx = dict(
237             version=1,
238             # coinbase timestamp must be older than share/block timestamp
239             # maybe there are more elegant solution, but this hack works quite well for now
240             timestamp=share_info['timestamp'],
241             tx_ins=[dict(
242                 previous_output=None,
243                 sequence=None,
244                 script=share_data['coinbase'],
245             )],
246             tx_outs=[dict(value=amounts[script], script=script) for script in dests if amounts[script] or script == DONATION_SCRIPT] + [dict(
247                 # add 0.01 coin to service output, to satisfy the protocol
248                 value=minout,
249                 script='\x24' + cls.get_ref_hash(net, share_info, ref_merkle_link) + pack.IntType(32).pack(last_txout_nonce),
250             )],
251             lock_time=0,
252         )
253
254         #print gentx
255
256         def get_share(header, last_txout_nonce=last_txout_nonce):
257             min_header = dict(header); del min_header['merkle_root']
258             share = cls(net, None, dict(
259                 min_header=min_header,
260                 share_info=share_info,
261                 ref_merkle_link=dict(branch=[], index=0),
262                 last_txout_nonce=last_txout_nonce,
263                 hash_link=prefix_to_hash_link(bitcoin_data.tx_type.pack(gentx)[:-32-4-4], cls.gentx_before_refhash),
264                 merkle_link=bitcoin_data.calculate_merkle_link([None] + other_transaction_hashes, 0),
265             ))
266             assert share.header == header # checks merkle_root
267             return share
268         
269         return share_info, gentx, other_transaction_hashes, get_share
270     
271     @classmethod
272     def get_ref_hash(cls, net, share_info, ref_merkle_link):
273         return pack.IntType(256).pack(bitcoin_data.check_merkle_link(bitcoin_data.hash256(cls.ref_type.pack(dict(
274             identifier=net.IDENTIFIER,
275             share_info=share_info,
276         ))), ref_merkle_link))
277     
278     __slots__ = 'net peer_addr contents min_header share_info hash_link merkle_link hash share_data max_target target timestamp previous_hash new_script desired_version gentx_hash header pow_hash header_hash new_transaction_hashes time_seen'.split(' ')
279     
280     def __init__(self, net, peer_addr, contents):
281         self.net = net
282         self.peer_addr = peer_addr
283         self.contents = contents
284         
285         self.min_header = contents['min_header']
286         self.share_info = contents['share_info']
287         self.hash_link = contents['hash_link']
288         self.merkle_link = contents['merkle_link']
289         
290         if not (2 <= len(self.share_info['share_data']['coinbase']) <= 100):
291             raise ValueError('''bad coinbase size! %i bytes''' % (len(self.share_info['share_data']['coinbase']),))
292         
293         if len(self.merkle_link['branch']) > 16:
294             raise ValueError('merkle branch too long!')
295         
296         assert not self.hash_link['extra_data'], repr(self.hash_link['extra_data'])
297         
298         self.share_data = self.share_info['share_data']
299         self.max_target = self.share_info['max_bits'].target
300         self.target = self.share_info['bits'].target
301         self.timestamp = self.share_info['timestamp']
302         self.previous_hash = self.share_data['previous_share_hash']
303         self.new_script = bitcoin_data.pubkey_to_script2(self.share_data['pubkey'])
304         self.desired_version = self.share_data['desired_version']
305         
306         n = set()
307         for share_count, tx_count in self.iter_transaction_hash_refs():
308             assert share_count < 110
309             if share_count == 0:
310                 n.add(tx_count)
311         assert n == set(range(len(self.share_info['new_transaction_hashes'])))
312         
313         self.gentx_hash = check_hash_link(
314             self.hash_link,
315             self.get_ref_hash(net, self.share_info, contents['ref_merkle_link']) + pack.IntType(32).pack(self.contents['last_txout_nonce']) + pack.IntType(32).pack(0),
316             self.gentx_before_refhash,
317         )
318         merkle_root = bitcoin_data.check_merkle_link(self.gentx_hash, self.merkle_link)
319         self.header = dict(self.min_header, merkle_root=merkle_root)
320         self.pow_hash = net.PARENT.POW_FUNC(bitcoin_data.block_header_type.pack(self.header))
321         self.hash = self.header_hash = net.PARENT.BLOCKHASH_FUNC(bitcoin_data.block_header_type.pack(self.header))
322         
323         if self.target > net.MAX_TARGET:
324             from p2pool import p2p
325             raise p2p.PeerMisbehavingError('share target invalid')
326         
327         if self.pow_hash > self.target:
328             from p2pool import p2p
329             raise p2p.PeerMisbehavingError('share PoW invalid')
330
331         self.new_transaction_hashes = self.share_info['new_transaction_hashes']
332         
333         # XXX eww
334         self.time_seen = time.time()
335     
336     def __repr__(self):
337         return 'Share' + repr((self.net, self.peer_addr, self.contents))
338     
339     def as_share(self):
340         return dict(type=self.VERSION, contents=self.share_type.pack(self.contents))
341     
342     def iter_transaction_hash_refs(self):
343         return zip(self.share_info['transaction_hash_refs'][::2], self.share_info['transaction_hash_refs'][1::2])
344     
345     def check(self, tracker):
346         from p2pool import p2p
347         if self.share_data['previous_share_hash'] is not None:
348             previous_share = tracker.items[self.share_data['previous_share_hash']]
349             if type(self) is type(previous_share):
350                 pass
351             elif type(self) is type(previous_share).SUCCESSOR:
352                 if tracker.get_height(previous_share.hash) < self.net.CHAIN_LENGTH:
353                     from p2pool import p2p
354                     raise p2p.PeerMisbehavingError('switch without enough history')
355                 
356                 # switch only valid if 85% of hashes in [self.net.CHAIN_LENGTH*9//10, self.net.CHAIN_LENGTH] for new version
357                 counts = get_desired_version_counts(tracker,
358                     tracker.get_nth_parent_hash(previous_share.hash, self.net.CHAIN_LENGTH*9//10), self.net.CHAIN_LENGTH//10)
359                 if counts.get(self.VERSION, 0) < sum(counts.itervalues())*85//100:
360                     raise p2p.PeerMisbehavingError('switch without enough hash power upgraded')
361             else:
362                 raise p2p.PeerMisbehavingError('''%s can't follow %s''' % (type(self).__name__, type(previous_share).__name__))
363         
364         other_tx_hashes = [tracker.items[tracker.get_nth_parent_hash(self.hash, share_count)].share_info['new_transaction_hashes'][tx_count] for share_count, tx_count in self.iter_transaction_hash_refs()]
365 #        print self
366
367         share_info, gentx, other_tx_hashes2, get_share = self.generate_transaction(
368             tracker, 
369             self.share_info['share_data'], 
370             self.header['bits'].target, 
371             self.share_info['timestamp'], 
372             self.share_info['bits'].target, 
373             self.contents['ref_merkle_link'], 
374             [(h, None) for h in other_tx_hashes], 
375             self.net, 
376             last_txout_nonce=self.contents['last_txout_nonce'],
377             base_subsidy=None
378         )
379
380         assert other_tx_hashes2 == other_tx_hashes
381         if share_info != self.share_info:
382             print share_info, self.share_info
383             raise ValueError('share_info invalid')
384         if bitcoin_data.hash256(bitcoin_data.tx_type.pack(gentx)) != self.gentx_hash:
385             raise ValueError('''gentx doesn't match hash_link''')
386         
387         if bitcoin_data.calculate_merkle_link([None] + other_tx_hashes, 0) != self.merkle_link:
388             raise ValueError('merkle_link and other_tx_hashes do not match')
389         
390         return gentx # only used by as_block
391     
392     def get_other_tx_hashes(self, tracker):
393         parents_needed = max(share_count for share_count, tx_count in self.iter_transaction_hash_refs()) if self.share_info['transaction_hash_refs'] else 0
394         parents = tracker.get_height(self.hash) - 1
395         if parents < parents_needed:
396             return None
397         last_shares = list(tracker.get_chain(self.hash, parents_needed + 1))
398         return [last_shares[share_count].share_info['new_transaction_hashes'][tx_count] for share_count, tx_count in self.iter_transaction_hash_refs()]
399     
400     def _get_other_txs(self, tracker, known_txs):
401         other_tx_hashes = self.get_other_tx_hashes(tracker)
402         if other_tx_hashes is None:
403             return None # not all parents present
404         
405         if not all(tx_hash in known_txs for tx_hash in other_tx_hashes):
406             return None # not all txs present
407         
408         return [known_txs[tx_hash] for tx_hash in other_tx_hashes]
409     
410     def should_punish_reason(self, previous_block, bits, tracker, known_txs):
411         if (self.header['previous_block'], self.header['bits']) != (previous_block, bits) and self.header_hash != previous_block and self.peer_addr is not None:
412             return True, 'Block-stale detected! %x < %x' % (self.header['previous_block'], previous_block)
413         
414         if self.pow_hash <= self.header['bits'].target:
415             return -1, 'block solution'
416         
417         other_txs = self._get_other_txs(tracker, known_txs)
418         if other_txs is None:
419             if self.time_seen != 0: # ignore if loaded from ShareStore
420                 return True, 'not all txs present'
421         else:
422             all_txs_size = sum(bitcoin_data.tx_type.packed_size(tx) for tx in other_txs)
423             if all_txs_size > 1000000:
424                 return True, 'txs over block size limit'
425             
426             new_txs_size = sum(bitcoin_data.tx_type.packed_size(known_txs[tx_hash]) for tx_hash in self.share_info['new_transaction_hashes'])
427             if new_txs_size > 50000:
428                 return True, 'new txs over limit'
429         
430         return False, None
431     
432     def as_block(self, tracker, known_txs):
433         other_txs = self._get_other_txs(tracker, known_txs)
434         if other_txs is None:
435             return None # not all txs present
436         return dict(header=self.header, txs=[self.check(tracker)] + other_txs, signature='')
437
438
439 class WeightsSkipList(forest.TrackerSkipList):
440     # share_count, weights, total_weight
441     
442     def get_delta(self, element):
443         from p2pool.bitcoin import data as bitcoin_data
444         share = self.tracker.items[element]
445         att = bitcoin_data.target_to_average_attempts(share.target)
446         return 1, {share.new_script: att*(65535-share.share_data['donation'])}, att*65535, att*share.share_data['donation']
447     
448     def combine_deltas(self, (share_count1, weights1, total_weight1, total_donation_weight1), (share_count2, weights2, total_weight2, total_donation_weight2)):
449         return share_count1 + share_count2, math.add_dicts(weights1, weights2), total_weight1 + total_weight2, total_donation_weight1 + total_donation_weight2
450     
451     def initial_solution(self, start, (max_shares, desired_weight)):
452         assert desired_weight % 65535 == 0, divmod(desired_weight, 65535)
453         return 0, None, 0, 0
454     
455     def apply_delta(self, (share_count1, weights_list, total_weight1, total_donation_weight1), (share_count2, weights2, total_weight2, total_donation_weight2), (max_shares, desired_weight)):
456         if total_weight1 + total_weight2 > desired_weight and share_count2 == 1:
457             assert (desired_weight - total_weight1) % 65535 == 0
458             script, = weights2.iterkeys()
459             new_weights = {script: (desired_weight - total_weight1)//65535*weights2[script]//(total_weight2//65535)}
460             return share_count1 + share_count2, (weights_list, new_weights), desired_weight, total_donation_weight1 + (desired_weight - total_weight1)//65535*total_donation_weight2//(total_weight2//65535)
461         return share_count1 + share_count2, (weights_list, weights2), total_weight1 + total_weight2, total_donation_weight1 + total_donation_weight2
462     
463     def judge(self, (share_count, weights_list, total_weight, total_donation_weight), (max_shares, desired_weight)):
464         if share_count > max_shares or total_weight > desired_weight:
465             return 1
466         elif share_count == max_shares or total_weight == desired_weight:
467             return 0
468         else:
469             return -1
470     
471     def finalize(self, (share_count, weights_list, total_weight, total_donation_weight), (max_shares, desired_weight)):
472         assert share_count <= max_shares and total_weight <= desired_weight
473         assert share_count == max_shares or total_weight == desired_weight
474         return math.add_dicts(*math.flatten_linked_list(weights_list)), total_weight, total_donation_weight
475
476 class OkayTracker(forest.Tracker):
477     def __init__(self, net):
478         forest.Tracker.__init__(self, delta_type=forest.get_attributedelta_type(dict(forest.AttributeDelta.attrs,
479             work=lambda share: bitcoin_data.target_to_average_attempts(share.target),
480             min_work=lambda share: bitcoin_data.target_to_average_attempts(share.max_target),
481         )))
482         self.net = net
483         self.verified = forest.SubsetTracker(delta_type=forest.get_attributedelta_type(dict(forest.AttributeDelta.attrs,
484             work=lambda share: bitcoin_data.target_to_average_attempts(share.target),
485         )), subset_of=self)
486         self.get_cumulative_weights = WeightsSkipList(self)
487     
488     def attempt_verify(self, share):
489         if share.hash in self.verified.items:
490             return True
491         height, last = self.get_height_and_last(share.hash)
492         if height < self.net.CHAIN_LENGTH + 1 and last is not None:
493             raise AssertionError()
494         try:
495             share.check(self)
496         except:
497             log.err(None, 'Share check failed:')
498             return False
499         else:
500             self.verified.add(share)
501             return True
502     
503     def think(self, block_rel_height_func, previous_block, bits, known_txs):
504         desired = set()
505         
506         # O(len(self.heads))
507         #   make 'unverified heads' set?
508         # for each overall head, attempt verification
509         # if it fails, attempt on parent, and repeat
510         # if no successful verification because of lack of parents, request parent
511         bads = set()
512         for head in set(self.heads) - set(self.verified.heads):
513             head_height, last = self.get_height_and_last(head)
514             
515             for share in self.get_chain(head, head_height if last is None else min(5, max(0, head_height - self.net.CHAIN_LENGTH))):
516                 if self.attempt_verify(share):
517                     break
518                 if share.hash in self.heads:
519                     bads.add(share.hash)
520             else:
521                 if last is not None:
522                     desired.add((
523                         self.items[random.choice(list(self.reverse[last]))].peer_addr,
524                         last,
525                         max(x.timestamp for x in self.get_chain(head, min(head_height, 5))),
526                         min(x.target for x in self.get_chain(head, min(head_height, 5))),
527                     ))
528         for bad in bads:
529             assert bad not in self.verified.items
530             assert bad in self.heads
531             if p2pool.DEBUG:
532                 print "BAD", bad
533             self.remove(bad)
534         
535         # try to get at least CHAIN_LENGTH height for each verified head, requesting parents if needed
536         for head in list(self.verified.heads):
537             head_height, last_hash = self.verified.get_height_and_last(head)
538             last_height, last_last_hash = self.get_height_and_last(last_hash)
539             # XXX review boundary conditions
540             want = max(self.net.CHAIN_LENGTH - head_height, 0)
541             can = max(last_height - 1 - self.net.CHAIN_LENGTH, 0) if last_last_hash is not None else last_height
542             get = min(want, can)
543             #print 'Z', head_height, last_hash is None, last_height, last_last_hash is None, want, can, get
544             for share in self.get_chain(last_hash, get):
545                 if not self.attempt_verify(share):
546                     break
547             if head_height < self.net.CHAIN_LENGTH and last_last_hash is not None:
548                 desired.add((
549                     self.items[random.choice(list(self.verified.reverse[last_hash]))].peer_addr,
550                     last_last_hash,
551                     max(x.timestamp for x in self.get_chain(head, min(head_height, 5))),
552                     min(x.target for x in self.get_chain(head, min(head_height, 5))),
553                 ))
554         
555         # decide best tree
556         decorated_tails = sorted((self.score(max(self.verified.tails[tail_hash], key=self.verified.get_work), block_rel_height_func), tail_hash) for tail_hash in self.verified.tails)
557         if p2pool.DEBUG:
558             print len(decorated_tails), 'tails:'
559             for score, tail_hash in decorated_tails:
560                 print format_hash(tail_hash), score
561         best_tail_score, best_tail = decorated_tails[-1] if decorated_tails else (None, None)
562         
563         # decide best verified head
564         decorated_heads = sorted(((
565             self.verified.get_work(self.verified.get_nth_parent_hash(h, min(5, self.verified.get_height(h)))),
566             #self.items[h].peer_addr is None,
567             -self.items[h].should_punish_reason(previous_block, bits, self, known_txs)[0],
568             -self.items[h].time_seen,
569         ), h) for h in self.verified.tails.get(best_tail, []))
570         if p2pool.DEBUG:
571             print len(decorated_heads), 'heads. Top 10:'
572             for score, head_hash in decorated_heads[-10:]:
573                 print '   ', format_hash(head_hash), format_hash(self.items[head_hash].previous_hash), score
574         best_head_score, best = decorated_heads[-1] if decorated_heads else (None, None)
575         
576         if best is not None:
577             best_share = self.items[best]
578             punish, punish_reason = best_share.should_punish_reason(previous_block, bits, self, known_txs)
579             if punish > 0:
580                 print 'Punishing share for %r! Jumping from %s to %s!' % (punish_reason, format_hash(best), format_hash(best_share.previous_hash))
581                 best = best_share.previous_hash
582             
583             timestamp_cutoff = min(int(time.time()), best_share.timestamp) - 3600
584             target_cutoff = 2**256//(self.net.SHARE_PERIOD*best_tail_score[1] + 1) * 2 if best_tail_score[1] is not None else 2**256-1
585         else:
586             timestamp_cutoff = int(time.time()) - 24*60*60
587             target_cutoff = 2**256-1
588         
589         if p2pool.DEBUG:
590             print 'Desire %i shares. Cutoff: %s old diff>%.2f' % (len(desired), math.format_dt(time.time() - timestamp_cutoff), bitcoin_data.target_to_difficulty(target_cutoff))
591             for peer_addr, hash, ts, targ in desired:
592                 print '   ', '%s:%i' % peer_addr, format_hash(hash), math.format_dt(time.time() - ts), bitcoin_data.target_to_difficulty(targ), ts >= timestamp_cutoff, targ <= target_cutoff
593         
594         return best, [(peer_addr, hash) for peer_addr, hash, ts, targ in desired if ts >= timestamp_cutoff], decorated_heads
595     
596     def score(self, share_hash, block_rel_height_func):
597         # returns approximate lower bound on chain's hashrate in the last self.net.CHAIN_LENGTH*15//16*self.net.SHARE_PERIOD time
598         
599         head_height = self.verified.get_height(share_hash)
600         if head_height < self.net.CHAIN_LENGTH:
601             return head_height, None
602         
603         end_point = self.verified.get_nth_parent_hash(share_hash, self.net.CHAIN_LENGTH*15//16)
604         
605         block_height = max(block_rel_height_func(share.header['previous_block']) for share in
606             self.verified.get_chain(end_point, self.net.CHAIN_LENGTH//16))
607         
608         return self.net.CHAIN_LENGTH, self.verified.get_delta(share_hash, end_point).work/((0 - block_height + 1)*self.net.PARENT.BLOCK_PERIOD)
609
610 def get_pool_attempts_per_second(tracker, previous_share_hash, dist, min_work=False, integer=False):
611     assert dist >= 2
612     near = tracker.items[previous_share_hash]
613     far = tracker.items[tracker.get_nth_parent_hash(previous_share_hash, dist - 1)]
614     attempts = tracker.get_delta(near.hash, far.hash).work if not min_work else tracker.get_delta(near.hash, far.hash).min_work
615     time = near.timestamp - far.timestamp
616     if time <= 0:
617         time = 1
618     if integer:
619         return attempts//time
620     return attempts/time
621
622 def get_average_stale_prop(tracker, share_hash, lookbehind):
623     stales = sum(1 for share in tracker.get_chain(share_hash, lookbehind) if share.share_data['stale_info'] is not None)
624     return stales/(lookbehind + stales)
625
626 def get_stale_counts(tracker, share_hash, lookbehind, rates=False):
627     res = {}
628     for share in tracker.get_chain(share_hash, lookbehind - 1):
629         res['good'] = res.get('good', 0) + bitcoin_data.target_to_average_attempts(share.target)
630         s = share.share_data['stale_info']
631         if s is not None:
632             res[s] = res.get(s, 0) + bitcoin_data.target_to_average_attempts(share.target)
633     if rates:
634         dt = tracker.items[share_hash].timestamp - tracker.items[tracker.get_nth_parent_hash(share_hash, lookbehind - 1)].timestamp
635         res = dict((k, v/dt) for k, v in res.iteritems())
636     return res
637
638 def get_user_stale_props(tracker, share_hash, lookbehind):
639     res = {}
640     for share in tracker.get_chain(share_hash, lookbehind - 1):
641         stale, total = res.get(share.share_data['pubkey'], (0, 0))
642         total += 1
643         if share.share_data['stale_info'] is not None:
644             stale += 1
645             total += 1
646         res[share.share_data['pubkey']] = stale, total
647     return dict((pubkey, stale/total) for pubkey, (stale, total) in res.iteritems())
648
649 def calculate_payout(weight, total_weight, subsidy):
650     global minout
651
652     payout = (subsidy - 3*minout) * weight//total_weight
653
654     if payout < minout:
655         payout = 0
656
657     return payout
658
659 def get_expected_payouts(tracker, best_share_hash, block_target, subsidy, net):
660
661     weights, total_weight, donation_weight = tracker.get_cumulative_weights(best_share_hash, min(tracker.get_height(best_share_hash), net.REAL_CHAIN_LENGTH), 65535*net.SPREAD*bitcoin_data.target_to_average_attempts(block_target))
662
663     #res = dict((script, subsidy*weight//total_weight) for script, weight in weights.iteritems())
664
665     res = dict((script, calculate_payout(weight, total_weight, subsidy)) for script, weight in weights.iteritems())
666     res[DONATION_SCRIPT] = res.get(DONATION_SCRIPT, 0) + subsidy - sum(res.itervalues())
667
668     return res
669
670 def get_desired_version_counts(tracker, best_share_hash, dist):
671     res = {}
672     for share in tracker.get_chain(best_share_hash, dist):
673         res[share.desired_version] = res.get(share.desired_version, 0) + bitcoin_data.target_to_average_attempts(share.target)
674     return res
675
676 def get_warnings(tracker, best_share, net, bitcoind_warning, bitcoind_work_value):
677     res = []
678     
679     desired_version_counts = get_desired_version_counts(tracker, best_share,
680         min(net.CHAIN_LENGTH, 60*60//net.SHARE_PERIOD, tracker.get_height(best_share)))
681     majority_desired_version = max(desired_version_counts, key=lambda k: desired_version_counts[k])
682     if majority_desired_version > 11 and desired_version_counts[majority_desired_version] > sum(desired_version_counts.itervalues())/2:
683         res.append('A MAJORITY OF SHARES CONTAIN A VOTE FOR AN UNSUPPORTED SHARE IMPLEMENTATION! (v%i with %i%% support)\n'
684             'An upgrade is likely necessary. Check http://p2pool.forre.st/ for more information.' % (
685                 majority_desired_version, 100*desired_version_counts[majority_desired_version]/sum(desired_version_counts.itervalues())))
686     
687     if bitcoind_warning is not None:
688         if 'This is a pre-release test build' not in bitcoind_warning:
689             res.append('(from bitcoind) %s' % (bitcoind_warning,))
690     
691     if time.time() > bitcoind_work_value['last_update'] + 60:
692         res.append('''LOST CONTACT WITH BITCOIND for %s! Check that it isn't frozen or dead!''' % (math.format_dt(time.time() - bitcoind_work_value['last_update']),))
693     
694     return res
695
696 def format_hash(x):
697     if x is None:
698         return 'xxxxxxxx'
699     return '%08x' % (x % 2**32)
700
701 class ShareStore(object):
702     def __init__(self, prefix, net):
703         self.filename = prefix
704         self.dirname = os.path.dirname(os.path.abspath(prefix))
705         self.filename = os.path.basename(os.path.abspath(prefix))
706         self.net = net
707         self.known = None # will be filename -> set of share hashes, set of verified hashes
708         self.known_desired = None
709     
710     def get_shares(self):
711         if self.known is not None:
712             raise AssertionError()
713         known = {}
714         filenames, next = self.get_filenames_and_next()
715         for filename in filenames:
716             share_hashes, verified_hashes = known.setdefault(filename, (set(), set()))
717             with open(filename, 'rb') as f:
718                 for line in f:
719                     try:
720                         type_id_str, data_hex = line.strip().split(' ')
721                         type_id = int(type_id_str)
722                         if type_id == 0:
723                             pass
724                         elif type_id == 1:
725                             pass
726                         elif type_id == 2:
727                             verified_hash = int(data_hex, 16)
728                             yield 'verified_hash', verified_hash
729                             verified_hashes.add(verified_hash)
730                         elif type_id == 5:
731                             raw_share = share_type.unpack(data_hex.decode('hex'))
732                             if raw_share['type'] in [0, 1, 2, 3, 4, 5, 6, 7, 8]:
733                                 continue
734                             share = load_share(raw_share, self.net, None)
735                             yield 'share', share
736                             share_hashes.add(share.hash)
737                         else:
738                             raise NotImplementedError("share type %i" % (type_id,))
739                     except Exception:
740                         log.err(None, "HARMLESS error while reading saved shares, continuing where left off:")
741         self.known = known
742         self.known_desired = dict((k, (set(a), set(b))) for k, (a, b) in known.iteritems())
743     
744     def _add_line(self, line):
745         filenames, next = self.get_filenames_and_next()
746         if filenames and os.path.getsize(filenames[-1]) < 10e6:
747             filename = filenames[-1]
748         else:
749             filename = next
750         
751         with open(filename, 'ab') as f:
752             f.write(line + '\n')
753         
754         return filename
755     
756     def add_share(self, share):
757         for filename, (share_hashes, verified_hashes) in self.known.iteritems():
758             if share.hash in share_hashes:
759                 break
760         else:
761             filename = self._add_line("%i %s" % (5, share_type.pack(share.as_share()).encode('hex')))
762             share_hashes, verified_hashes = self.known.setdefault(filename, (set(), set()))
763             share_hashes.add(share.hash)
764         share_hashes, verified_hashes = self.known_desired.setdefault(filename, (set(), set()))
765         share_hashes.add(share.hash)
766     
767     def add_verified_hash(self, share_hash):
768         for filename, (share_hashes, verified_hashes) in self.known.iteritems():
769             if share_hash in verified_hashes:
770                 break
771         else:
772             filename = self._add_line("%i %x" % (2, share_hash))
773             share_hashes, verified_hashes = self.known.setdefault(filename, (set(), set()))
774             verified_hashes.add(share_hash)
775         share_hashes, verified_hashes = self.known_desired.setdefault(filename, (set(), set()))
776         verified_hashes.add(share_hash)
777     
778     def get_filenames_and_next(self):
779         suffixes = sorted(int(x[len(self.filename):]) for x in os.listdir(self.dirname) if x.startswith(self.filename) and x[len(self.filename):].isdigit())
780         return [os.path.join(self.dirname, self.filename + str(suffix)) for suffix in suffixes], os.path.join(self.dirname, self.filename + (str(suffixes[-1] + 1) if suffixes else str(0)))
781     
782     def forget_share(self, share_hash):
783         for filename, (share_hashes, verified_hashes) in self.known_desired.iteritems():
784             if share_hash in share_hashes:
785                 share_hashes.remove(share_hash)
786         self.check_remove()
787     
788     def forget_verified_share(self, share_hash):
789         for filename, (share_hashes, verified_hashes) in self.known_desired.iteritems():
790             if share_hash in verified_hashes:
791                 verified_hashes.remove(share_hash)
792         self.check_remove()
793     
794     def check_remove(self):
795         to_remove = set()
796         for filename, (share_hashes, verified_hashes) in self.known_desired.iteritems():
797             #print filename, len(share_hashes) + len(verified_hashes)
798             if not share_hashes and not verified_hashes:
799                 to_remove.add(filename)
800         for filename in to_remove:
801             self.known.pop(filename)
802             self.known_desired.pop(filename)
803             os.remove(filename)
804             print "REMOVED", filename