From 0c605e3dee289164640a23b7622e20ed2c5093cc Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 29 Dec 2015 10:50:58 +1100 Subject: [PATCH] Add basic node subscription functionality --- src/generator.c | 64 +++++++++++++++++++++++++++++++++++++++++++++--- src/stratifier.c | 12 +++++++++ 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/src/generator.c b/src/generator.c index a270229c..ac5656c6 100644 --- a/src/generator.c +++ b/src/generator.c @@ -87,6 +87,7 @@ struct proxy_instance { ckpool_t *ckp; connsock_t cs; bool passthrough; + bool node; int id; /* Proxy server id*/ int subid; /* Subproxy id */ int userid; /* User id if this proxy is bound to a user */ @@ -807,6 +808,49 @@ out: return ret; } +/* cs semaphore must be held */ +static bool node_stratum(connsock_t *cs, proxy_instance_t *proxi) +{ + json_t *req, *val = NULL, *res_val, *err_val; + bool res, ret = false; + float timeout = 10; + + JSON_CPACK(req, "{s:s,s:[s]}", + "method", "mining.node", + "params", PACKAGE"/"VERSION); + + res = send_json_msg(cs, req); + json_decref(req); + if (!res) { + LOGWARNING("Failed to send message in node_stratum"); + goto out; + } + if (read_socket_line(cs, &timeout) < 1) { + LOGWARNING("Failed to receive line in node_stratum"); + goto out; + } + /* Ignore err_val here since we should always get a result from an + * upstream server */ + val = json_msg_result(cs->buf, &res_val, &err_val); + if (!val || !res_val) { + LOGWARNING("Failed to get a json result in node_stratum, got: %s", + cs->buf); + goto out; + } + ret = json_is_true(res_val); + if (!ret) { + LOGWARNING("Denied node setup for stratum"); + goto out; + } + proxi->node = true; +out: + if (val) + json_decref(val); + if (!ret) + Close(cs->fd); + return ret; +} + static void send_notify(ckpool_t *ckp, proxy_instance_t *proxi, notify_instance_t *ni); static void reconnect_generator(const ckpool_t *ckp) @@ -1801,6 +1845,15 @@ static bool proxy_alive(ckpool_t *ckp, proxy_instance_t *proxi, connsock_t *cs, } goto out; } + if (ckp->node) { + if (!node_stratum(cs, proxi)) { + LOGWARNING("Failed initial node setup to %s:%s !", + cs->url, cs->port); + goto out; + } + ret = true; + goto out; + } if (ckp->passthrough) { if (!passthrough_stratum(cs, proxi)) { LOGWARNING("Failed initial passthrough to %s:%s !", @@ -2701,10 +2754,15 @@ reconnect: cproxy = wait_best_proxy(ckp, gdata); if (!cproxy) goto out; - if (proxi != cproxy || ckp->passthrough) { + if (proxi != cproxy) { proxi = cproxy; - LOGWARNING("Successfully connected to proxy %d %s as proxy%s", - proxi->id, proxi->url, ckp->passthrough ? " in passthrough mode" : ""); + if (ckp->node) { + LOGWARNING("Successfully connected to pool %d %s as proxy node", + proxi->id, proxi->url); + } else { + LOGWARNING("Successfully connected to pool %d %s as proxy%s", + proxi->id, proxi->url, ckp->passthrough ? " in passthrough mode" : ""); + } } retry: clear_unix_msg(&umsg); diff --git a/src/stratifier.c b/src/stratifier.c index 6fdf72c2..172f5d57 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -5052,6 +5052,18 @@ static void parse_method(ckpool_t *ckp, sdata_t *sdata, stratum_instance_t *clie return; } + if (unlikely(cmdmatch(method, "mining.node"))) { + char buf[256]; + + /* Add this client as a passthrough in the connector and + * add it to the list of mining nodes in the stratifier */ + LOGNOTICE("Adding mining client %"PRId64" %s", client_id, client->address); + snprintf(buf, 255, "passthrough=%"PRId64, client_id); + send_proc(ckp->connector, buf); + drop_client(ckp, sdata, client_id); + return; + } + if (unlikely(cmdmatch(method, "mining.passthrough"))) { char buf[256];