1 # Eloipool - Python Bitcoin pool server
2 # Copyright (C) 2011-2012 Luke Dashjr <luke-jr+eloipool@utopios.org>
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as
6 # published by the Free Software Foundation, either version 3 of the
7 # License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 from binascii import b2a_hex
18 from jsonrpcserver import JSONRPCHandler
22 assert midstate.SHA256(b'This is just a test, ignore it. I am making it over 64-bytes long.')[:8] == (0x755f1a94, 0x999b270c, 0xf358c014, 0xfd39caeb, 0x0dcc9ebc, 0x4694cd1a, 0x8e95678e, 0x75fac450)
24 logging.getLogger('jsonrpc_getwork').warning('Error importing \'midstate\' module; work will not provide midstates')
26 from struct import pack
27 from util import RejectedShare, swap32
29 _CheckForDupesHACK = {}
32 def final_init(server):
33 ShareTargetHex = '%064x' % (server.ShareTarget,)
34 ShareTargetHexLE = b2a_hex(bytes.fromhex(ShareTargetHex)[::-1]).decode('ascii')
35 JSONRPCHandler.getwork_rv_template['target'] = ShareTargetHexLE
37 getwork_rv_template = {
38 'data': '000000800000000000000000000000000000000000000000000000000000000000000000000000000000000080020000',
39 'target': 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000',
40 'hash1': '00000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000010000',
42 def doJSON_getwork(self, data=None):
44 return self.doJSON_submitwork(data)
45 rv = dict(self.getwork_rv_template)
46 (hdr, x, target) = self.server.getBlockHeader(self.Username)
48 # FIXME: this assumption breaks with internal rollntime
49 # NOTE: noncerange needs to set nonce to start value at least
50 global _CheckForDupesHACK
51 uhdr = hdr[:68] + hdr[72:]
52 if uhdr in _CheckForDupesHACK:
53 _RealDupes[uhdr] = (_CheckForDupesHACK[uhdr], (hdr, x))
54 raise self.server.RaiseRedFlags(RuntimeError('issuing duplicate work'))
55 _CheckForDupesHACK[uhdr] = (hdr, x)
57 data = b2a_hex(swap32(hdr)).decode('utf8') + rv['data']
58 # TODO: endian shuffle etc
60 if midstate and 'midstate' not in self.extensions and 'midstate' not in self.quirks:
61 h = midstate.SHA256(hdr)[:8]
62 rv['midstate'] = b2a_hex(pack('<LLLLLLLL', *h)).decode('ascii')
64 ShareTargetHex = '%064x' % (target,)
65 ShareTargetHexLE = b2a_hex(bytes.fromhex(ShareTargetHex)[::-1]).decode('ascii')
66 rv['target'] = ShareTargetHexLE
68 self._JSONHeaders['X-Roll-NTime'] = 'expire=120'
72 def doJSON_submitwork(self, datax):
73 data = swap32(bytes.fromhex(datax))[:80]
77 'username': self.Username,
78 'remoteHost': self.remoteHost,
81 self.server.receiveShare(share)
82 except RejectedShare as rej:
83 self._JSONHeaders['X-Reject-Reason'] = str(rej)
87 JSONRPCHandler._register(_getwork)