-
Notifications
You must be signed in to change notification settings - Fork 9
/
stratum.h
217 lines (179 loc) · 5.15 KB
/
stratum.h
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
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <pthread.h>
#include <mysql.h>
#include <errmsg.h>
#include <ifaddrs.h>
#include <dirent.h>
#include <iostream>
#include <vector>
using namespace std;
#include "iniparser/src/iniparser.h"
#include "json.h"
#include "util.h"
#define YAAMP_RESTARTDELAY (24*60*60)
#define YAAMP_MAXJOBDELAY (2*60)
#define CURL_RPC_TIMEOUT (30)
#define YAAMP_MS 1000
#define YAAMP_SEC 1000000
#define YAAMP_MAXALGOS 32
typedef void (*YAAMP_HASH_FUNCTION)(const char *, char *, uint32_t);
#define YAAMP_SHAREPERSEC 10
#define YAAMP_MINDIFF 0x0000000080000000
#define YAAMP_MAXDIFF 0x4000000000000000
#define YAAMP_SMALLBUFSIZE (32*1024)
#define YAAMP_NONCE_SIZE 4
#define YAAMP_EXTRANONCE2_SIZE 4
#define YAAMP_HASHLEN_STR 65
#define YAAMP_HASHLEN_BIN 32
extern CommonList g_list_coind;
extern CommonList g_list_client;
extern CommonList g_list_job;
extern CommonList g_list_remote;
extern CommonList g_list_renter;
extern CommonList g_list_share;
extern CommonList g_list_worker;
extern CommonList g_list_block;
extern CommonList g_list_submit;
extern CommonList g_list_source;
extern int g_tcp_port;
extern char g_tcp_server[1024];
extern char g_tcp_password[1024];
extern char g_sql_host[1024];
extern char g_sql_database[1024];
extern char g_sql_username[1024];
extern char g_sql_password[1024];
extern int g_sql_port;
extern char g_stratum_coin_include[256];
extern char g_stratum_coin_exclude[256];
extern char g_stratum_algo[256];
extern double g_stratum_difficulty;
extern double g_stratum_min_diff;
extern double g_stratum_max_diff;
extern int g_stratum_max_cons;
extern int g_stratum_max_ttf;
extern bool g_stratum_reconnect;
extern bool g_stratum_renting;
extern bool g_stratum_segwit;
extern int g_limit_txs_per_block;
extern bool g_handle_haproxy_ips;
extern int g_socket_recv_timeout;
extern bool g_debuglog_client;
extern bool g_debuglog_hash;
extern bool g_debuglog_socket;
extern bool g_debuglog_rpc;
extern bool g_debuglog_list;
extern bool g_debuglog_remote;
extern uint64_t g_max_shares;
extern uint64_t g_shares_counter;
extern bool g_allow_rolltime;
extern time_t g_last_broadcasted;
extern struct ifaddrs *g_ifaddr;
extern pthread_mutex_t g_db_mutex;
extern pthread_mutex_t g_nonce1_mutex;
extern pthread_mutex_t g_job_create_mutex;
extern volatile bool g_exiting;
#include "db.h"
#include "object.h"
#include "socket.h"
#include "client.h"
#include "rpc.h"
#include "job.h"
#include "coind.h"
#include "remote.h"
#include "share.h"
extern YAAMP_DB *g_db;
extern YAAMP_ALGO g_algos[];
extern YAAMP_ALGO *g_current_algo;
extern bool g_autoexchange;
/////////////////////////////////////////////////////////////////////////////////////////
YAAMP_ALGO *stratum_find_algo(const char *name);
extern "C"
{
void sha256_hash(const char *input, char *output, unsigned int len);
void sha256_double_hash(const char *input, char *output, unsigned int len);
void scrypt_1024_1_1_256(const unsigned char *input, unsigned char *output);
void scrypt_N_R_1_256(const char* input, char* output, uint32_t N, uint32_t R, uint32_t len);
}
void sha256_hash_hex(const char *input, char *output, unsigned int len);
void sha256_double_hash_hex(const char *input, char *output, unsigned int len);
#include "algos/a5a.h"
#include "algos/c11.h"
#include "algos/x11.h"
#include "algos/x11evo.h"
#include "algos/x12.h"
#include "algos/x13.h"
#include "algos/x14.h"
#include "algos/x15.h"
#include "algos/x16r.h"
#include "algos/x16rt.h"
#include "algos/x16s.h"
#include "algos/x17.h"
#include "algos/x22i.h"
#include "algos/xevan.h"
#include "algos/hmq17.h"
#include "algos/nist5.h"
#include "algos/fresh.h"
#include "algos/hsr14.h"
#include "algos/quark.h"
#include "algos/neoscrypt.h"
#include "algos/allium.h"
#include "algos/lyra2re.h"
#include "algos/lyra2v2.h"
#include "algos/lyra2z.h"
#include "algos/blake.h"
#include "algos/blakecoin.h"
#include "algos/blake2b.h"
#include "algos/blake2s.h"
#include "algos/qubit.h"
#include "algos/groestl.h"
#include "algos/jha.h"
#include "algos/skein.h"
#include "algos/keccak.h"
#include "algos/sha256t.h"
#include "algos/sha256q.h"
#include "algos/skunk.h"
#include "algos/timetravel.h"
#include "algos/bitcore.h"
#include "algos/bastion.h"
#include "algos/bmw.h"
#include "algos/deep.h"
#include "algos/lbk3.h"
#include "algos/lbry.h"
#include "algos/luffa.h"
#include "algos/pentablake.h"
#include "algos/rainforest.h"
#include "algos/whirlpool.h"
#include "algos/whirlpoolx.h"
#include "algos/skein2.h"
#include "algos/yescrypt.h"
#include "algos/zr5.h"
#include "algos/hive.h"
#include "algos/sib.h"
#include "algos/m7m.h"
#include "algos/phi.h"
#include "algos/phi2.h"
#include "algos/polytimos.h"
#include "algos/sonoa.h"
#include "algos/tribus.h"
#include "algos/veltor.h"
#include "algos/velvet.h"
#include "algos/argon2a.h"
#include "algos/vitalium.h"
#include "algos/aergo.h"
#include "algos/hex.h"
#include "algos/argon2d-dyn.h"
#include "algos/exosis.h"