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