|
|
@ -4772,7 +4772,53 @@ static user_instance_t *generate_user(ckpool_t *ckp, stratum_instance_t *client, |
|
|
|
return user; |
|
|
|
return user; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void set_worker_mindiff(ckpool_t *ckp, const char *workername, int mindiff); |
|
|
|
static void set_worker_mindiff(ckpool_t *ckp, const char *workername, int mindiff) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
stratum_instance_t *client; |
|
|
|
|
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
|
|
|
|
worker_instance_t *worker; |
|
|
|
|
|
|
|
user_instance_t *user; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Find the user first */ |
|
|
|
|
|
|
|
user = user_by_workername(sdata, workername); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Then find the matching worker user */ |
|
|
|
|
|
|
|
worker = get_worker(sdata, user, workername); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (mindiff < 1) { |
|
|
|
|
|
|
|
if (likely(!mindiff)) { |
|
|
|
|
|
|
|
worker->mindiff = 0; |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
LOGINFO("Worker %s requested invalid diff %d", worker->workername, mindiff); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (mindiff < ckp->mindiff) |
|
|
|
|
|
|
|
mindiff = ckp->mindiff; |
|
|
|
|
|
|
|
if (mindiff == worker->mindiff) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
worker->mindiff = mindiff; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Iterate over all the workers from this user to find any with the
|
|
|
|
|
|
|
|
* matching worker that are currently live and send them a new diff |
|
|
|
|
|
|
|
* if we can. Otherwise it will only act as a clamp on next share |
|
|
|
|
|
|
|
* submission. */ |
|
|
|
|
|
|
|
ck_rlock(&sdata->instance_lock); |
|
|
|
|
|
|
|
DL_FOREACH(user->clients, client) { |
|
|
|
|
|
|
|
if (client->worker_instance != worker) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
/* Per connection suggest diff overrides worker mindiff ugh */ |
|
|
|
|
|
|
|
if (mindiff < client->suggest_diff) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
if (mindiff == client->diff) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
client->diff_change_job_id = sdata->workbase_id + 1; |
|
|
|
|
|
|
|
client->old_diff = client->diff; |
|
|
|
|
|
|
|
client->diff = mindiff; |
|
|
|
|
|
|
|
stratum_send_diff(sdata, client); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
ck_runlock(&sdata->instance_lock); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void parse_worker_diffs(ckpool_t *ckp, json_t *worker_array) |
|
|
|
static void parse_worker_diffs(ckpool_t *ckp, json_t *worker_array) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -4845,7 +4891,6 @@ static int send_recv_auth(stratum_instance_t *client) |
|
|
|
responselen = strlen(buf); |
|
|
|
responselen = strlen(buf); |
|
|
|
if (likely(responselen > 0)) { |
|
|
|
if (likely(responselen > 0)) { |
|
|
|
char *cmd = NULL, *secondaryuserid = NULL, *response; |
|
|
|
char *cmd = NULL, *secondaryuserid = NULL, *response; |
|
|
|
worker_instance_t *worker = client->worker_instance; |
|
|
|
|
|
|
|
json_error_t err_val; |
|
|
|
json_error_t err_val; |
|
|
|
json_t *val = NULL; |
|
|
|
json_t *val = NULL; |
|
|
|
int offset = 0; |
|
|
|
int offset = 0; |
|
|
@ -4877,7 +4922,6 @@ static int send_recv_auth(stratum_instance_t *client) |
|
|
|
|
|
|
|
|
|
|
|
json_get_string(&secondaryuserid, val, "secondaryuserid"); |
|
|
|
json_get_string(&secondaryuserid, val, "secondaryuserid"); |
|
|
|
parse_worker_diffs(ckp, worker_array); |
|
|
|
parse_worker_diffs(ckp, worker_array); |
|
|
|
client->suggest_diff = worker->mindiff; |
|
|
|
|
|
|
|
user->auth_time = time(NULL); |
|
|
|
user->auth_time = time(NULL); |
|
|
|
} |
|
|
|
} |
|
|
|
if (secondaryuserid && (!safecmp(response, "ok.authorise") || |
|
|
|
if (secondaryuserid && (!safecmp(response, "ok.authorise") || |
|
|
@ -4918,9 +4962,6 @@ static void queue_delayed_auth(stratum_instance_t *client) |
|
|
|
json_t *val; |
|
|
|
json_t *val; |
|
|
|
ts_t now; |
|
|
|
ts_t now; |
|
|
|
|
|
|
|
|
|
|
|
/* Read off any cached mindiff from previous auths */ |
|
|
|
|
|
|
|
client->suggest_diff = client->worker_instance->mindiff; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ts_realtime(&now); |
|
|
|
ts_realtime(&now); |
|
|
|
sprintf(cdfield, "%lu,%lu", now.tv_sec, now.tv_nsec); |
|
|
|
sprintf(cdfield, "%lu,%lu", now.tv_sec, now.tv_nsec); |
|
|
|
|
|
|
|
|
|
|
@ -5026,9 +5067,7 @@ static json_t *parse_authorise(stratum_instance_t *client, const json_t *params_ |
|
|
|
/* Preauth workers for the first 10 minutes after the user is
|
|
|
|
/* Preauth workers for the first 10 minutes after the user is
|
|
|
|
* first authorised by ckdb to avoid floods of worker auths. |
|
|
|
* first authorised by ckdb to avoid floods of worker auths. |
|
|
|
* *errnum is implied zero already so ret will be set true */ |
|
|
|
* *errnum is implied zero already so ret will be set true */ |
|
|
|
if (user->auth_time && time(NULL) - user->auth_time < 600) |
|
|
|
if (!user->auth_time || time(NULL) - user->auth_time > 600) |
|
|
|
client->suggest_diff = client->worker_instance->mindiff; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
*errnum = send_recv_auth(client); |
|
|
|
*errnum = send_recv_auth(client); |
|
|
|
if (!*errnum) |
|
|
|
if (!*errnum) |
|
|
|
ret = true; |
|
|
|
ret = true; |
|
|
@ -5121,7 +5160,7 @@ static void add_submit(ckpool_t *ckp, stratum_instance_t *client, const double d |
|
|
|
worker_instance_t *worker = client->worker_instance; |
|
|
|
worker_instance_t *worker = client->worker_instance; |
|
|
|
double tdiff, bdiff, dsps, drr, network_diff, bias; |
|
|
|
double tdiff, bdiff, dsps, drr, network_diff, bias; |
|
|
|
user_instance_t *user = client->user_instance; |
|
|
|
user_instance_t *user = client->user_instance; |
|
|
|
int64_t next_blockid, optimal; |
|
|
|
int64_t next_blockid, optimal, mindiff; |
|
|
|
tv_t now_t; |
|
|
|
tv_t now_t; |
|
|
|
|
|
|
|
|
|
|
|
mutex_lock(&ckp_sdata->stats_lock); |
|
|
|
mutex_lock(&ckp_sdata->stats_lock); |
|
|
@ -5196,8 +5235,13 @@ static void add_submit(ckpool_t *ckp, stratum_instance_t *client, const double d |
|
|
|
if (drr > 0.15 && drr < 0.4) |
|
|
|
if (drr > 0.15 && drr < 0.4) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Client suggest diff overrides worker mindiff */ |
|
|
|
|
|
|
|
if (client->suggest_diff) |
|
|
|
|
|
|
|
mindiff = client->suggest_diff; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
mindiff = worker->mindiff; |
|
|
|
/* Allow slightly lower diffs when users choose their own mindiff */ |
|
|
|
/* Allow slightly lower diffs when users choose their own mindiff */ |
|
|
|
if (worker->mindiff || client->suggest_diff) { |
|
|
|
if (mindiff) { |
|
|
|
if (drr < 0.5) |
|
|
|
if (drr < 0.5) |
|
|
|
return; |
|
|
|
return; |
|
|
|
optimal = lround(dsps * 2.4); |
|
|
|
optimal = lround(dsps * 2.4); |
|
|
@ -5205,18 +5249,20 @@ static void add_submit(ckpool_t *ckp, stratum_instance_t *client, const double d |
|
|
|
optimal = lround(dsps * 3.33); |
|
|
|
optimal = lround(dsps * 3.33); |
|
|
|
|
|
|
|
|
|
|
|
/* Clamp to mindiff ~ network_diff */ |
|
|
|
/* Clamp to mindiff ~ network_diff */ |
|
|
|
if (optimal < ckp->mindiff) |
|
|
|
|
|
|
|
optimal = ckp->mindiff; |
|
|
|
/* Set to higher of pool mindiff and optimal */ |
|
|
|
/* Client suggest diff overrides worker mindiff */ |
|
|
|
optimal = MAX(optimal, ckp->mindiff); |
|
|
|
if (client->suggest_diff) { |
|
|
|
|
|
|
|
if (optimal < client->suggest_diff) |
|
|
|
/* Set to higher of optimal and user chosen diff */ |
|
|
|
optimal = client->suggest_diff; |
|
|
|
optimal = MAX(optimal, mindiff); |
|
|
|
} else if (optimal < worker->mindiff) |
|
|
|
|
|
|
|
optimal = worker->mindiff; |
|
|
|
/* Set to lower of optimal and pool maxdiff */ |
|
|
|
if (ckp->maxdiff && optimal > ckp->maxdiff) |
|
|
|
if (ckp->maxdiff) |
|
|
|
optimal = ckp->maxdiff; |
|
|
|
optimal = MIN(optimal, ckp->maxdiff); |
|
|
|
if (optimal > network_diff) |
|
|
|
|
|
|
|
optimal = network_diff; |
|
|
|
/* Set to lower of optimal and network_diff */ |
|
|
|
|
|
|
|
optimal = MIN(optimal, network_diff); |
|
|
|
|
|
|
|
|
|
|
|
if (client->diff == optimal) |
|
|
|
if (client->diff == optimal) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
@ -5539,8 +5585,8 @@ out_submit: |
|
|
|
out_unlock: |
|
|
|
out_unlock: |
|
|
|
ck_runlock(&sdata->workbase_lock); |
|
|
|
ck_runlock(&sdata->workbase_lock); |
|
|
|
|
|
|
|
|
|
|
|
/* Accept the lower of new and old diffs until the next update */ |
|
|
|
/* Accept shares of the old diff until the next update */ |
|
|
|
if (id < client->diff_change_job_id && client->old_diff < client->diff) |
|
|
|
if (id < client->diff_change_job_id) |
|
|
|
diff = client->old_diff; |
|
|
|
diff = client->old_diff; |
|
|
|
if (!invalid) { |
|
|
|
if (!invalid) { |
|
|
|
char wdiffsuffix[16]; |
|
|
|
char wdiffsuffix[16]; |
|
|
@ -5748,55 +5794,13 @@ static json_params_t |
|
|
|
return jp; |
|
|
|
return jp; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void set_worker_mindiff(ckpool_t *ckp, const char *workername, int mindiff) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
stratum_instance_t *client; |
|
|
|
|
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
|
|
|
|
worker_instance_t *worker; |
|
|
|
|
|
|
|
user_instance_t *user; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Find the user first */ |
|
|
|
|
|
|
|
user = user_by_workername(sdata, workername); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Then find the matching worker user */ |
|
|
|
|
|
|
|
worker = get_worker(sdata, user, workername); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (mindiff < 0) { |
|
|
|
|
|
|
|
LOGINFO("Worker %s requested invalid diff %d", worker->workername, mindiff); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (mindiff < ckp->mindiff) |
|
|
|
|
|
|
|
mindiff = ckp->mindiff; |
|
|
|
|
|
|
|
if (mindiff == worker->mindiff) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
worker->mindiff = mindiff; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Iterate over all the workers from this user to find any with the
|
|
|
|
|
|
|
|
* matching worker that are currently live and send them a new diff |
|
|
|
|
|
|
|
* if we can. Otherwise it will only act as a clamp on next share |
|
|
|
|
|
|
|
* submission. */ |
|
|
|
|
|
|
|
ck_rlock(&sdata->instance_lock); |
|
|
|
|
|
|
|
DL_FOREACH(user->clients, client) { |
|
|
|
|
|
|
|
if (client->worker_instance != worker) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
/* Per connection suggest diff overrides worker mindiff ugh */ |
|
|
|
|
|
|
|
if (mindiff < client->suggest_diff) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
if (mindiff == client->diff) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
client->diff = mindiff; |
|
|
|
|
|
|
|
stratum_send_diff(sdata, client); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
ck_runlock(&sdata->instance_lock); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Implement support for the diff in the params as well as the originally
|
|
|
|
/* Implement support for the diff in the params as well as the originally
|
|
|
|
* documented form of placing diff within the method. Needs to be entered with |
|
|
|
* documented form of placing diff within the method. Needs to be entered with |
|
|
|
* client holding a ref count. */ |
|
|
|
* client holding a ref count. */ |
|
|
|
static void suggest_diff(stratum_instance_t *client, const char *method, const json_t *params_val) |
|
|
|
static void suggest_diff(ckpool_t *ckp, stratum_instance_t *client, const char *method, |
|
|
|
|
|
|
|
const json_t *params_val) |
|
|
|
{ |
|
|
|
{ |
|
|
|
json_t *arr_val = json_array_get(params_val, 0); |
|
|
|
json_t *arr_val = json_array_get(params_val, 0); |
|
|
|
sdata_t *sdata = client->ckp->sdata; |
|
|
|
|
|
|
|
int64_t sdiff; |
|
|
|
int64_t sdiff; |
|
|
|
|
|
|
|
|
|
|
|
if (unlikely(!client_active(client))) { |
|
|
|
if (unlikely(!client_active(client))) { |
|
|
@ -5809,16 +5813,18 @@ static void suggest_diff(stratum_instance_t *client, const char *method, const j |
|
|
|
LOGINFO("Failed to parse suggest_difficulty for client %"PRId64, client->id); |
|
|
|
LOGINFO("Failed to parse suggest_difficulty for client %"PRId64, client->id); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/* Clamp suggest diff to global pool mindiff */ |
|
|
|
|
|
|
|
if (sdiff < ckp->mindiff) |
|
|
|
|
|
|
|
sdiff = ckp->mindiff; |
|
|
|
if (sdiff == client->suggest_diff) |
|
|
|
if (sdiff == client->suggest_diff) |
|
|
|
return; |
|
|
|
return; |
|
|
|
client->suggest_diff = sdiff; |
|
|
|
client->suggest_diff = sdiff; |
|
|
|
if (client->diff == sdiff) |
|
|
|
if (client->diff == sdiff) |
|
|
|
return; |
|
|
|
return; |
|
|
|
if (sdiff < client->ckp->mindiff) |
|
|
|
client->diff_change_job_id = client->sdata->workbase_id + 1; |
|
|
|
client->diff = client->ckp->mindiff; |
|
|
|
client->old_diff = client->diff; |
|
|
|
else |
|
|
|
|
|
|
|
client->diff = sdiff; |
|
|
|
client->diff = sdiff; |
|
|
|
stratum_send_diff(sdata, client); |
|
|
|
stratum_send_diff(ckp->sdata, client); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Send diff first when sending the first stratum template after subscribing */ |
|
|
|
/* Send diff first when sending the first stratum template after subscribing */ |
|
|
@ -6032,7 +6038,7 @@ static void parse_method(ckpool_t *ckp, sdata_t *sdata, stratum_instance_t *clie |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (cmdmatch(method, "mining.suggest")) { |
|
|
|
if (cmdmatch(method, "mining.suggest")) { |
|
|
|
suggest_diff(client, method, params_val); |
|
|
|
suggest_diff(ckp, client, method, params_val); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -6675,10 +6681,10 @@ static stratum_instance_t *preauth_ref_instance_by_id(sdata_t *sdata, const int6 |
|
|
|
static void sauth_process(ckpool_t *ckp, json_params_t *jp) |
|
|
|
static void sauth_process(ckpool_t *ckp, json_params_t *jp) |
|
|
|
{ |
|
|
|
{ |
|
|
|
json_t *result_val, *json_msg, *err_val = NULL; |
|
|
|
json_t *result_val, *json_msg, *err_val = NULL; |
|
|
|
stratum_instance_t *client; |
|
|
|
|
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
int mindiff, errnum = 0; |
|
|
|
stratum_instance_t *client; |
|
|
|
int64_t client_id; |
|
|
|
int64_t mindiff, client_id; |
|
|
|
|
|
|
|
int errnum = 0; |
|
|
|
|
|
|
|
|
|
|
|
client_id = jp->client_id; |
|
|
|
client_id = jp->client_id; |
|
|
|
|
|
|
|
|
|
|
@ -6708,12 +6714,18 @@ static void sauth_process(ckpool_t *ckp, json_params_t *jp) |
|
|
|
steal_json_id(json_msg, jp); |
|
|
|
steal_json_id(json_msg, jp); |
|
|
|
stratum_add_send(sdata, json_msg, client_id, SM_AUTHRESULT); |
|
|
|
stratum_add_send(sdata, json_msg, client_id, SM_AUTHRESULT); |
|
|
|
|
|
|
|
|
|
|
|
if (!json_is_true(result_val) || !client->suggest_diff) |
|
|
|
if (!json_is_true(result_val)) |
|
|
|
goto out; |
|
|
|
goto out; |
|
|
|
|
|
|
|
|
|
|
|
/* Update the client now if they have set a valid mindiff different
|
|
|
|
/* Update the client now if they have set a valid mindiff different
|
|
|
|
* from the startdiff */ |
|
|
|
* from the startdiff. suggest_diff overrides worker mindiff */ |
|
|
|
mindiff = MAX(ckp->mindiff, client->suggest_diff); |
|
|
|
if (client->suggest_diff) |
|
|
|
|
|
|
|
mindiff = client->suggest_diff; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
mindiff = client->worker_instance->mindiff; |
|
|
|
|
|
|
|
if (!mindiff) |
|
|
|
|
|
|
|
goto out; |
|
|
|
|
|
|
|
mindiff = MAX(ckp->mindiff, mindiff); |
|
|
|
if (mindiff != client->diff) { |
|
|
|
if (mindiff != client->diff) { |
|
|
|
client->diff = mindiff; |
|
|
|
client->diff = mindiff; |
|
|
|
stratum_send_diff(sdata, client); |
|
|
|
stratum_send_diff(sdata, client); |
|
|
@ -6779,7 +6791,7 @@ static bool test_and_clear(bool *val, mutex_t *lock) |
|
|
|
static void ckdbq_process(ckpool_t *ckp, char *msg) |
|
|
|
static void ckdbq_process(ckpool_t *ckp, char *msg) |
|
|
|
{ |
|
|
|
{ |
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
sdata_t *sdata = ckp->sdata; |
|
|
|
size_t responselen = 0; |
|
|
|
size_t responselen; |
|
|
|
char *buf = NULL; |
|
|
|
char *buf = NULL; |
|
|
|
|
|
|
|
|
|
|
|
while (!buf) { |
|
|
|
while (!buf) { |
|
|
@ -6799,16 +6811,15 @@ static void ckdbq_process(ckpool_t *ckp, char *msg) |
|
|
|
|
|
|
|
|
|
|
|
/* Process any requests from ckdb that are heartbeat responses with
|
|
|
|
/* Process any requests from ckdb that are heartbeat responses with
|
|
|
|
* specific requests. */ |
|
|
|
* specific requests. */ |
|
|
|
if (likely(buf)) |
|
|
|
|
|
|
|
responselen = strlen(buf); |
|
|
|
responselen = strlen(buf); |
|
|
|
if (likely(responselen > 0)) { |
|
|
|
if (likely(responselen > 1)) { |
|
|
|
char *response = alloca(responselen); |
|
|
|
char *response = alloca(responselen); |
|
|
|
int offset = 0; |
|
|
|
int offset = 0; |
|
|
|
|
|
|
|
|
|
|
|
memset(response, 0, responselen); |
|
|
|
memset(response, 0, responselen); |
|
|
|
if (sscanf(buf, "%*d.%*d.%c%n", response, &offset) > 0) { |
|
|
|
if (likely(sscanf(buf, "%*d.%*d.%c%n", response, &offset) > 0)) { |
|
|
|
strcpy(response + 1, buf + offset); |
|
|
|
strcpy(response + 1, buf + offset); |
|
|
|
if (safecmp(response, "ok")) { |
|
|
|
if (likely(safecmp(response, "ok"))) { |
|
|
|
char *cmd; |
|
|
|
char *cmd; |
|
|
|
|
|
|
|
|
|
|
|
cmd = response; |
|
|
|
cmd = response; |
|
|
@ -6822,8 +6833,8 @@ static void ckdbq_process(ckpool_t *ckp, char *msg) |
|
|
|
LOGWARNING("Got ckdb failure response: %s", buf); |
|
|
|
LOGWARNING("Got ckdb failure response: %s", buf); |
|
|
|
} else |
|
|
|
} else |
|
|
|
LOGWARNING("Got bad ckdb response: %s", buf); |
|
|
|
LOGWARNING("Got bad ckdb response: %s", buf); |
|
|
|
free(buf); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
free(buf); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static int transactions_by_jobid(sdata_t *sdata, const int64_t id) |
|
|
|
static int transactions_by_jobid(sdata_t *sdata, const int64_t id) |
|
|
@ -7587,11 +7598,11 @@ void *stratifier(void *arg) |
|
|
|
* are CPUs */ |
|
|
|
* are CPUs */ |
|
|
|
threads = sysconf(_SC_NPROCESSORS_ONLN) / 2 ? : 1; |
|
|
|
threads = sysconf(_SC_NPROCESSORS_ONLN) / 2 ? : 1; |
|
|
|
sdata->sshareq = create_ckmsgqs(ckp, "sprocessor", &sshare_process, threads); |
|
|
|
sdata->sshareq = create_ckmsgqs(ckp, "sprocessor", &sshare_process, threads); |
|
|
|
sdata->ssends = create_ckmsgq(ckp, "ssender", &ssend_process); |
|
|
|
sdata->ssends = create_ckmsgqs(ckp, "ssender", &ssend_process, threads); |
|
|
|
sdata->sauthq = create_ckmsgq(ckp, "authoriser", &sauth_process); |
|
|
|
sdata->sauthq = create_ckmsgq(ckp, "authoriser", &sauth_process); |
|
|
|
sdata->stxnq = create_ckmsgq(ckp, "stxnq", &send_transactions); |
|
|
|
sdata->stxnq = create_ckmsgq(ckp, "stxnq", &send_transactions); |
|
|
|
sdata->srecvs = create_ckmsgqs(ckp, "sreceiver", &srecv_process, threads); |
|
|
|
sdata->srecvs = create_ckmsgqs(ckp, "sreceiver", &srecv_process, threads); |
|
|
|
sdata->ckdbq = create_ckmsgq(ckp, "ckdbqueue", &ckdbq_process); |
|
|
|
sdata->ckdbq = create_ckmsgqs(ckp, "ckdbqueue", &ckdbq_process, threads); |
|
|
|
create_pthread(&pth_heartbeat, ckdb_heartbeat, ckp); |
|
|
|
create_pthread(&pth_heartbeat, ckdb_heartbeat, ckp); |
|
|
|
read_poolstats(ckp); |
|
|
|
read_poolstats(ckp); |
|
|
|
|
|
|
|
|
|
|
@ -7609,22 +7620,12 @@ void *stratifier(void *arg) |
|
|
|
mutex_init(&sdata->share_lock); |
|
|
|
mutex_init(&sdata->share_lock); |
|
|
|
mutex_init(&sdata->block_lock); |
|
|
|
mutex_init(&sdata->block_lock); |
|
|
|
|
|
|
|
|
|
|
|
create_unix_receiver(pi); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LOGWARNING("%s stratifier ready", ckp->name); |
|
|
|
LOGWARNING("%s stratifier ready", ckp->name); |
|
|
|
|
|
|
|
|
|
|
|
stratum_loop(ckp, pi); |
|
|
|
stratum_loop(ckp, pi); |
|
|
|
out: |
|
|
|
out: |
|
|
|
if (ckp->proxy) { |
|
|
|
/* We should never get here unless there's a fatal error */ |
|
|
|
proxy_t *proxy, *tmpproxy; |
|
|
|
LOGEMERG("Stratifier failure, shutting down"); |
|
|
|
|
|
|
|
exit(1); |
|
|
|
mutex_lock(&sdata->proxy_lock); |
|
|
|
|
|
|
|
HASH_ITER(hh, sdata->proxies, proxy, tmpproxy) { |
|
|
|
|
|
|
|
HASH_DEL(sdata->proxies, proxy); |
|
|
|
|
|
|
|
dealloc(proxy); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
mutex_unlock(&sdata->proxy_lock); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
dealloc(ckp->sdata); |
|
|
|
|
|
|
|
return NULL; |
|
|
|
return NULL; |
|
|
|
} |
|
|
|
} |
|
|
|