p2pool/tests/src/stratum_dummy.py

115 lines
2.8 KiB
Python
Raw Normal View History

2023-09-16 20:29:32 +00:00
# This file is part of the Monero P2Pool <https://github.com/SChernykh/p2pool>
2024-01-02 13:06:19 +00:00
# Copyright (c) 2021-2024 SChernykh <https://github.com/SChernykh>
2023-09-16 20:29:32 +00:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2023-05-17 13:12:48 +00:00
import socket
import time
import sys
import json
2023-05-17 13:12:48 +00:00
f = open('stratum_dummy' + sys.argv[1] + '.log', 'wb')
2023-05-17 13:12:48 +00:00
f.write(b'Connecting')
f.flush()
2023-05-17 13:12:48 +00:00
while True:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(1)
sock.setblocking(True)
if sock.connect_ex(('127.0.0.1', 3333)) == 0:
break;
sock.close()
f.write(b'.')
f.flush()
2023-05-17 13:12:48 +00:00
print('.')
time.sleep(1)
f.write(b'\n')
f.flush()
diff = ''
if (sys.argv[1] == '2'):
diff = '+1000'
if (sys.argv[1] == '3'):
diff = '+10000000'
msg_id = 1
request = '{"id":' + str(msg_id) + ',"method":"login","params":{"login":"x' + diff + '"}}\n'
msg_id += 1
s = '-> ' + request
print(s, end='')
sock.sendall(request.encode('utf-8'))
2023-05-17 13:12:48 +00:00
f.write(s.encode('utf-8'))
f.flush()
rpc_id = ''
2023-05-17 13:12:48 +00:00
while True:
data = sock.recv(1024)
if len(data) == 0:
break
s = '<- ' + data.decode('utf-8')
print(s, end='')
f.write(s.encode('utf-8'))
2023-05-17 13:12:48 +00:00
f.flush()
obj = json.loads(data)
job_id = ''
if ('method' in obj) and ('params' in obj) and (obj['method'] == 'job'):
job_id = obj['params']['job_id']
target = obj['params']['target']
2023-08-14 19:57:38 +00:00
elif ('result' in obj) and ('job' in obj['result']):
if ('id' in obj['result']):
rpc_id = obj['result']['id']
job_id = obj['result']['job']['job_id']
target = obj['result']['job']['target']
if (job_id != ''):
if (msg_id < 4):
result = ('f' if (msg_id == 2) else '0') * 64
request = '{"id":' + str(msg_id) + ',"method":"submit","params":{"id":"' + rpc_id + '","job_id":"' + job_id + '","nonce":"ffffffff","result":"' + result + '"}}\n'
2023-08-14 19:57:38 +00:00
elif (msg_id == 4):
request = '{"id":' + str(msg_id) + ',"method":"keepalived"}\n'
2023-08-14 19:57:38 +00:00
else:
t = bytearray.fromhex(target)
for i in range(len(t)):
if (t[i] > 0):
t[i] -= 1
break
else:
t[i] = 255
2023-08-15 06:00:11 +00:00
result = ('f' * (64 - len(target))) + t.hex()
2023-08-14 19:57:38 +00:00
request = '{"id":' + str(msg_id) + ',"method":"submit","params":{"id":"' + rpc_id + '","job_id":"' + job_id + '","nonce":"ffffffff","result":"' + result + '"}}\n'
msg_id += 1
s = '-> ' + request
print(s, end='')
sock.sendall(request.encode('utf-8'))
f.write(s.encode('utf-8'))
f.flush()
2023-05-17 13:12:48 +00:00
sock.close()
f.close()