forked from bboerst/stratum-work
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
456 lines (431 loc) · 19 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import argparse
import json
import logging
import socket
import sys
import time
import uuid
from datetime import datetime
from urllib.parse import urlparse
import select
import pika
from pymongo import MongoClient
from pycoin.symbols.btc import network
import socks
LOG = logging.getLogger()
class Watcher:
def __init__(self, url, userpass, pool_name, rabbitmq_host, rabbitmq_port, rabbitmq_username, rabbitmq_password, rabbitmq_exchange, db_url, db_name, db_username, db_password, use_proxy=False, proxy_host=None, proxy_port=None, enable_stratum_client=False, stratum_client_port=None):
self.buf = b""
self.id = 1
self.userpass = userpass
self.pool_name = pool_name
self.rabbitmq_exchange = rabbitmq_exchange
self.rabbitmq_host = rabbitmq_host
self.rabbitmq_port = rabbitmq_port
self.rabbitmq_username = rabbitmq_username
self.rabbitmq_password = rabbitmq_password
self.rabbitmq_exchange = rabbitmq_exchange
self.db_url = db_url
self.db_name = db_name
self.db_username = db_username
self.db_password = db_password
self.purl = self.parse_url(url)
self.extranonce1 = None
self.extranonce2_length = -1
self.use_proxy = use_proxy
self.proxy_host = proxy_host
self.proxy_port = proxy_port
self.sock = None
self.connection = None
self.channel = None
self.max_retries = 5
self.retry_delay = 5
self.enable_stratum_client = enable_stratum_client
self.stratum_client_port = stratum_client_port
def parse_url(self, url):
purl = urlparse(url)
if purl.scheme != "stratum+tcp":
raise ValueError(
f"Unrecognized scheme {purl.scheme}, only 'stratum+tcp' is allowed"
)
if purl.hostname is None:
raise ValueError(f"No hostname provided")
if purl.port is None:
raise ValueError(f"No port provided")
if purl.path != "":
raise ValueError(f"URL has a path {purl.path}, this is not valid")
return purl
def init_socket(self):
LOG.info("Initializing socket")
if self.use_proxy:
LOG.info(f"Using proxy: {self.proxy_host}:{self.proxy_port}")
self.sock = socks.socksocket()
self.sock.set_proxy(socks.SOCKS5, self.proxy_host, self.proxy_port)
else:
LOG.info("Using direct connection")
self.sock = socket.socket()
self.sock.settimeout(600)
LOG.info("Socket initialized with 600 seconds timeout")
def close(self):
if self.sock:
LOG.info(f"Closing connection to {self.purl.geturl()}")
try:
self.sock.shutdown(socket.SHUT_RDWR)
LOG.info("Socket shutdown successful")
except OSError as e:
LOG.warning(f"Error during socket shutdown: {e}")
self.sock.close()
LOG.info(f"Socket closed. Disconnected from {self.purl.geturl()}")
self.sock = None
def get_msg(self):
while True:
split_buf = self.buf.split(b"\n", maxsplit=1)
r = split_buf[0]
if r == b'':
# If r is an empty byte string, continue reading data from the socket
try:
new_buf = self.sock.recv(4096)
except Exception as e:
LOG.debug(f"Error receiving data: {e}")
raise EOFError
if len(new_buf) == 0:
raise EOFError
self.buf += new_buf
continue
try:
resp = json.loads(r)
if len(split_buf) == 2:
self.buf = split_buf[1]
else:
self.buf = b""
return resp
except (json.decoder.JSONDecodeError, ConnectionResetError) as e:
LOG.debug(f"Error decoding JSON: {e}")
new_buf = b""
try:
new_buf = self.sock.recv(4096)
except Exception as e:
LOG.debug(f"Error receiving data: {e}")
raise EOFError
if len(new_buf) == 0:
raise EOFError
self.buf += new_buf
def send_jsonrpc(self, method, params):
data = {
"id": self.id,
"method": method,
"params": params,
}
self.id += 1
LOG.debug(f"Sending: {data}")
json_data = json.dumps(data) + "\n"
self.sock.send(json_data.encode())
resp = self.get_msg()
LOG.debug(f"Received: {resp}")
# If we just called mining.subscribe, we expect the last two items in 'result'
# to be extranonce1 and extranonce2_size, respectively.
if method == "mining.subscribe" and resp.get("result") is not None:
self.extranonce1, self.extranonce2_length = resp["result"][-2:]
LOG.debug(f"Extracted extranonce1={self.extranonce1} extranonce2_length={self.extranonce2_length}")
def connect_to_rabbitmq(self):
for attempt in range(self.max_retries):
try:
credentials = pika.PlainCredentials(self.rabbitmq_username, self.rabbitmq_password)
self.connection = pika.BlockingConnection(pika.ConnectionParameters(self.rabbitmq_host, self.rabbitmq_port, '/', credentials))
self.channel = self.connection.channel()
self.channel.exchange_declare(exchange=self.rabbitmq_exchange, exchange_type='fanout', durable=True)
LOG.info("Successfully connected to RabbitMQ")
return
except Exception as e:
LOG.error(f"Failed to connect to RabbitMQ (attempt {attempt + 1}/{self.max_retries}): {e}")
if attempt < self.max_retries - 1:
time.sleep(self.retry_delay)
else:
raise
def publish_to_rabbitmq(self, message):
for attempt in range(self.max_retries):
try:
LOG.info(f"Publishing message to RabbitMQ: {json.dumps(message)}")
self.channel.basic_publish(exchange=self.rabbitmq_exchange, routing_key='', body=json.dumps(message))
return
except Exception as e:
LOG.error(f"Failed to publish to RabbitMQ (attempt {attempt + 1}/{self.max_retries}): {e}")
if attempt < self.max_retries - 1:
time.sleep(self.retry_delay)
self.connect_to_rabbitmq() # Try to reconnect
else:
raise
def connect_to_stratum(self):
for attempt in range(self.max_retries):
try:
self.init_socket()
LOG.info(f"Attempting to connect to {self.purl.hostname}:{self.purl.port}")
self.sock.connect((self.purl.hostname, self.purl.port))
LOG.info(f"Successfully connected to server {self.purl.geturl()}")
if not self.enable_stratum_client:
LOG.info("Sending mining.subscribe request")
self.send_jsonrpc("mining.subscribe", [])
LOG.info("Successfully subscribed to pool notifications")
LOG.info("Sending mining.authorize request")
self.send_jsonrpc("mining.authorize", self.userpass.split(":"))
LOG.info("Successfully authorized with the pool")
return
except Exception as e:
LOG.error(f"Failed to connect to stratum server (attempt {attempt + 1}/{self.max_retries}): {e}")
self.close()
if attempt < self.max_retries - 1:
time.sleep(self.retry_delay)
else:
raise
def get_stratum_work(self, keep_alive=False):
LOG.info("Starting get_stratum_work")
last_subscribe_time = time.time()
while True:
try:
if not self.sock:
self.connect_to_stratum()
n = self.get_msg()
event_time = hex(time.time_ns())[2:]
LOG.debug(f"Received notification: {n}")
if "method" in n and n["method"] == "mining.notify":
LOG.info("Received mining.notify message")
document = create_notification_document(n, self.pool_name, self.extranonce1, self.extranonce2_length, event_time)
insert_notification(document, self.db_url, self.db_name, self.db_username, self.db_password)
self.publish_to_rabbitmq(document)
if keep_alive and time.time() - last_subscribe_time > 480:
LOG.info("Keep-alive interval reached")
self.send_jsonrpc("mining.subscribe", [])
last_subscribe_time = time.time()
LOG.info("Keep-alive cycle completed")
except (EOFError, ConnectionResetError, socket.timeout) as e:
LOG.error(f"Connection error: {e}")
self.close()
time.sleep(self.retry_delay)
self.connect_to_stratum()
except Exception as e:
LOG.error(f"Unexpected error: {e}")
self.close()
time.sleep(self.retry_delay)
self.connect_to_stratum()
def run_proxy(self, client_socket):
"""
Runs the proxy mode: relays messages between the attached mining device (client_socket)
and the pool connection (self.sock). Also processes mining.notify messages as usual.
"""
pool_buf = b""
client_buf = b""
LOG.info("Starting proxy between mining device and pool")
while True:
try:
rlist, _, _ = select.select([self.sock, client_socket], [], [])
except Exception as e:
LOG.error(f"Select error: {e}")
break
if self.sock in rlist:
try:
data = self.sock.recv(4096)
except Exception as e:
LOG.error(f"Error receiving from pool: {e}")
break
if not data:
LOG.error("Pool closed connection")
break
pool_buf += data
while b"\n" in pool_buf:
line, pool_buf = pool_buf.split(b"\n", 1)
if not line:
continue
try:
msg = json.loads(line)
except Exception as e:
msg = None
if msg and msg.get("method") == "mining.notify":
LOG.info("Received mining.notify message from pool (via proxy)")
event_time = hex(time.time_ns())[2:]
document = create_notification_document(msg, self.pool_name, self.extranonce1, self.extranonce2_length, event_time)
insert_notification(document, self.db_url, self.db_name, self.db_username, self.db_password)
self.publish_to_rabbitmq(document)
if msg and "result" in msg and isinstance(msg["result"], list) and len(msg["result"]) >= 2:
self.extranonce1 = msg["result"][-2]
self.extranonce2_length = msg["result"][-1]
try:
client_socket.sendall(line + b"\n")
except Exception as e:
LOG.error(f"Error sending to client: {e}")
break
if client_socket in rlist:
try:
data = client_socket.recv(4096)
except Exception as e:
LOG.error(f"Error receiving from client: {e}")
break
if not data:
LOG.info("Client closed connection")
break
client_buf += data
while b"\n" in client_buf:
line, client_buf = client_buf.split(b"\n", 1)
if not line:
continue
try:
self.sock.sendall(line + b"\n")
except Exception as e:
LOG.error(f"Error sending to pool: {e}")
break
def create_notification_document(data, pool_name, extranonce1, extranonce2_length, timestamp):
notification_id = str(uuid.uuid4())
coinbase1 = data["params"][2]
coinbase2 = data["params"][3]
coinbase = None
height = 0
try:
coinbase = network.Tx.from_hex(coinbase1 + extranonce1 + "00"*extranonce2_length + coinbase2)
height = int.from_bytes(coinbase.txs_in[0].script[1:4], byteorder='little')
except Exception as e:
print(e)
document = {
"_id": notification_id,
"timestamp": timestamp,
"pool_name": pool_name,
"height": height,
"job_id": data["params"][0],
"prev_hash": data["params"][1],
"coinbase1": coinbase1,
"coinbase2": coinbase2,
"merkle_branches": data["params"][4],
"version": data["params"][5],
"nbits": data["params"][6],
"ntime": data["params"][7],
"clean_jobs": data["params"][8],
"extranonce1": extranonce1,
"extranonce2_length": extranonce2_length
}
return document
def insert_notification(document, db_url, db_name, db_username, db_password):
client = MongoClient(db_url, username=db_username, password=db_password)
db = client[db_name]
collection = db.mining_notify
collection.insert_one(document)
client.close()
def main():
parser = argparse.ArgumentParser(
description="Subscribe to a Stratum endpoint and listen for new work"
)
parser.add_argument("-u", "--url", required=True, help="The URL of the stratum server, including port. Ex: stratum+tcp://beststratumpool.com:3333")
parser.add_argument(
"-up", "--userpass", required=True, help="Username and password combination separated by a colon (:)"
)
parser.add_argument(
"-p", "--pool-name", required=True, help="The name of the pool"
)
parser.add_argument(
"-r", "--rabbitmq-host", default="localhost", help="The hostname or IP address of the RabbitMQ server (default: localhost)"
)
parser.add_argument(
"-rpc", "--rabbitmq-port", default=5672, help="The port of the RabbitMQ server (default: 5672)"
)
parser.add_argument(
"-ru", "--rabbitmq-username", required=True, help="The username for RabbitMQ authentication"
)
parser.add_argument(
"-rp", "--rabbitmq-password", required=True, help="The password for RabbitMQ authentication"
)
parser.add_argument(
"-re", "--rabbitmq-exchange", default="mining_notify_exchange", help="The name of the RabbitMQ exchange (default: mining_notify_exchange)"
)
parser.add_argument(
"-d", "--db-url", default="mongodb://localhost:27017", help="The URL of the MongoDB database (default: mongodb://localhost:27017)"
)
parser.add_argument(
"-dn", "--db-name", required=True, help="The name of the MongoDB database"
)
parser.add_argument(
"-du", "--db-username", required=True, help="The username for MongoDB authentication"
)
parser.add_argument(
"-dp", "--db-password", required=True, help="The password for MongoDB authentication"
)
parser.add_argument(
"-k", "--keep-alive", action="store_true", help="Enable sending periodic subscribe requests to keep the connection alive"
)
parser.add_argument(
"-l", "--log-level", default="INFO", choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
help="Set the logging level (default: INFO)"
)
parser.add_argument(
"--use-proxy", action="store_true", help="Use a proxy for the connection"
)
parser.add_argument(
"--proxy-host", default="localhost", help="Proxy hostname (default: localhost)"
)
parser.add_argument(
"--proxy-port", type=int, default=9050, help="Proxy port (default: 9050)"
)
parser.add_argument(
"--enable-stratum-client", action="store_true", help="Enable acting as a Stratum client proxy for a mining device"
)
parser.add_argument(
"--stratum-client-port", type=int, default=3333, help="Port to listen for Stratum client connections (default: 3333)"
)
args = parser.parse_args()
logging.basicConfig(
stream=sys.stdout,
format="%(asctime)s %(levelname)s: %(message)s",
level=getattr(logging, args.log_level),
)
if args.enable_stratum_client:
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
server_socket.bind(('', args.stratum_client_port))
server_socket.listen(1)
LOG.info(f"Listening for Stratum client connections on port {args.stratum_client_port}")
while True:
try:
client_conn, client_addr = server_socket.accept()
LOG.info(f"Accepted connection from {client_addr}")
w = Watcher(
args.url, args.userpass, args.pool_name,
args.rabbitmq_host, args.rabbitmq_port, args.rabbitmq_username, args.rabbitmq_password, args.rabbitmq_exchange,
args.db_url, args.db_name, args.db_username, args.db_password,
args.use_proxy, args.proxy_host, args.proxy_port,
enable_stratum_client=True, stratum_client_port=args.stratum_client_port
)
w.connect_to_rabbitmq()
w.connect_to_stratum()
w.run_proxy(client_conn)
except KeyboardInterrupt:
break
except Exception as e:
LOG.error(f"Error in proxy mode: {e}")
finally:
try:
w.close()
if w.connection:
w.connection.close()
except Exception:
pass
try:
client_conn.close()
except Exception:
pass
server_socket.close()
else:
while True:
w = Watcher(
args.url, args.userpass, args.pool_name,
args.rabbitmq_host, args.rabbitmq_port, args.rabbitmq_username, args.rabbitmq_password, args.rabbitmq_exchange,
args.db_url, args.db_name, args.db_username, args.db_password,
args.use_proxy, args.proxy_host, args.proxy_port,
enable_stratum_client=False
)
try:
w.connect_to_rabbitmq()
w.get_stratum_work(keep_alive=args.keep_alive)
except KeyboardInterrupt:
break
finally:
w.close()
if w.connection:
w.connection.close()
if __name__ == "__main__":
main()