This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
job_send.cpp
208 lines (163 loc) · 5.9 KB
/
job_send.cpp
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
#include "stratum.h"
static int g_job_next_id = 0;
int job_get_jobid()
{
CommonLock(&g_job_create_mutex);
int jobid = ++g_job_next_id;
CommonUnlock(&g_job_create_mutex);
return jobid;
}
static void job_mining_notify_buffer(YAAMP_JOB *job, char *buffer)
{
YAAMP_JOB_TEMPLATE *templ = job->templ;
if (!strcmp(g_stratum_algo, "lbry")) {
sprintf(buffer, "{\"id\":null,\"method\":\"mining.notify\",\"params\":["
"\"%x\",\"%s\",\"%s\",\"%s\",\"%s\",[%s],\"%s\",\"%s\",\"%s\",true]}\n",
job->id, templ->prevhash_be, templ->claim_be, templ->coinb1, templ->coinb2,
templ->txmerkles, templ->version, templ->nbits, templ->ntime);
return;
} else if (strlen(templ->extradata_hex) == 128) {
// LUX smart contract state hashes (like lbry extra field, here the 2 root hashes in one)
sprintf(buffer, "{\"id\":null,\"method\":\"mining.notify\",\"params\":["
"\"%x\",\"%s\",\"%s\",\"%s\",\"%s\",[%s],\"%s\",\"%s\",\"%s\",true]}\n",
job->id, templ->prevhash_be, templ->extradata_be, templ->coinb1, templ->coinb2,
templ->txmerkles, templ->version, templ->nbits, templ->ntime);
return;
}
// standard stratum
sprintf(buffer, "{\"id\":null,\"method\":\"mining.notify\",\"params\":[\"%x\",\"%s\",\"%s\",\"%s\",[%s],\"%s\",\"%s\",\"%s\",true]}\n",
job->id, templ->prevhash_be, templ->coinb1, templ->coinb2, templ->txmerkles, templ->version, templ->nbits, templ->ntime);
}
static YAAMP_JOB *job_get_last(int coinid)
{
g_list_job.Enter();
for(CLI li = g_list_job.first; li; li = li->prev)
{
YAAMP_JOB *job = (YAAMP_JOB *)li->data;
if(!job_can_mine(job)) continue;
if(!job->coind) continue;
if(coinid > 0 && job->coind->id != coinid) continue;
g_list_job.Leave();
return job;
}
g_list_job.Leave();
return NULL;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
void job_send_last(YAAMP_CLIENT *client)
{
#ifdef NO_EXCHANGE
// prefer user coin first (if available)
YAAMP_JOB *job = job_get_last(client->coinid);
if(!job) job = job_get_last(0);
#else
YAAMP_JOB *job = job_get_last(0);
#endif
if(!job) return;
YAAMP_JOB_TEMPLATE *templ = job->templ;
client->jobid_sent = job->id;
char buffer[YAAMP_SMALLBUFSIZE];
kawpow_job_mining_notify_buffer(job, client, buffer);
socket_send_raw(client->sock, buffer, strlen(buffer));
}
void job_send_jobid(YAAMP_CLIENT *client, int jobid)
{
YAAMP_JOB *job = (YAAMP_JOB *)object_find(&g_list_job, jobid, true);
if(!job)
{
job_send_last(client);
return;
}
char buffer[YAAMP_SMALLBUFSIZE];
kawpow_job_mining_notify_buffer(job, client, buffer);
YAAMP_JOB_TEMPLATE *templ = job->templ;
client->jobid_sent = job->id;
socket_send_raw(client->sock, buffer, strlen(buffer));
object_unlock(job);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
void job_broadcast(YAAMP_JOB *job)
{
int s1 = current_timestamp_dms();
int count = 0;
struct timeval timeout;
timeout.tv_sec = 0;
timeout.tv_usec = 100000; // max time to push to a socket (very fast)
YAAMP_JOB_TEMPLATE *templ = job->templ;
char buffer[YAAMP_SMALLBUFSIZE];
g_list_client.Enter();
for(CLI li = g_list_client.first; li; li = li->next)
{
YAAMP_CLIENT *client = (YAAMP_CLIENT *)li->data;
if(client->deleted) continue;
if(!client->sock) continue;
// if(client->reconnecting && client->locked) continue;
if(client->jobid_next != job->id) continue;
if(client->jobid_sent == job->id) continue;
memset(buffer, 0, sizeof(buffer));
kawpow_job_mining_notify_buffer(job, client, buffer);
client->jobid_sent = job->id;
client_add_job_history(client, job->id);
client_adjust_difficulty(client);
setsockopt(client->sock->sock, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout));
if (socket_send_raw(client->sock, buffer, strlen(buffer)) == -1) {
int err = errno;
client->broadcast_timeouts++;
// too much timeouts, disconnect him
if (client->broadcast_timeouts >= 3) {
shutdown(client->sock->sock, SHUT_RDWR);
clientlog(client, "unable to send job, sock err %d (%d times)", err, client->broadcast_timeouts);
if(client->workerid && !client->reconnecting) {
// CommonLock(&g_db_mutex);
db_clear_worker(g_db, client);
// CommonUnlock(&g_db_mutex);
}
object_delete(client);
}
}
count++;
}
g_list_client.Leave();
g_last_broadcasted = time(NULL);
int s2 = current_timestamp_dms();
if(!count) return;
///////////////////////
uint64_t coin_target = decode_compact(templ->nbits);
if (templ->nbits && !coin_target) coin_target = 0xFFFF000000000000ULL; // under decode_compact min diff
double coin_diff = target_to_diff(coin_target);
debuglog("%s %d - diff %.9f job %x to %d/%d/%d clients, hash %.3f/%.3f in %.1f ms\n", job->name,
templ->height, coin_diff, job->id, count, job->count, g_list_client.count, job->speed, job->maxspeed, 0.1*(s2-s1));
// for(int i=0; i<templ->auxs_size; i++)
// {
// if(!templ->auxs[i]) continue;
// YAAMP_COIND *coind_aux = templ->auxs[i]->coind;
//
// unsigned char target_aux[1024];
// binlify(target_aux, coind_aux->aux.target);
//
// uint64_t coin_target = get_hash_difficulty(target_aux);
// double coin_diff = target_to_diff(coin_target);
//
// debuglog("%s %d - diff %.9f chainid %d [%d]\n", coind_aux->symbol, coind_aux->height, coin_diff,
// coind_aux->aux.chainid, coind_aux->aux.index);
// }
}
// double maxhash = 0;
// if(job->remote)
// {
// sprintf(name, "JOB%d%s (%.3f)", job->remote->id, job->remote->nonce2size == 2? "*": "", job->remote->speed_avg);
// maxhash = job->remote->speed;
// }
// else
// {
// strcpy(name, job->coind->symbol);
// for(int i=0; i<templ->auxs_size; i++)
// {
// if(!templ->auxs[i]) continue;
// YAAMP_COIND *coind_aux = templ->auxs[i]->coind;
//
// sprintf(name_auxs+strlen(name_auxs), ", %s %d", coind_aux->symbol, templ->auxs[i]->height);
// }
//
// maxhash = coind_nethash(job->coind)*coind_profitability(job->coind)/(g_current_algo->profit? g_current_algo->profit: 1);
// }