util.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2010 Jeff Garzik
  5. * Copyright 2012 Giel van Schijndel
  6. * Copyright 2012 Gavin Andresen
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 3 of the License, or (at your option)
  11. * any later version. See COPYING for more details.
  12. */
  13. #include "config.h"
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <ctype.h>
  17. #include <stdarg.h>
  18. #include <string.h>
  19. #include <pthread.h>
  20. #include <jansson.h>
  21. #include <curl/curl.h>
  22. #include <time.h>
  23. #include <errno.h>
  24. #include <unistd.h>
  25. #include <sys/types.h>
  26. #ifdef HAVE_SYS_PRCTL_H
  27. # include <sys/prctl.h>
  28. #endif
  29. #if defined(__FreeBSD__) || defined(__OpenBSD__)
  30. # include <pthread_np.h>
  31. #endif
  32. #ifndef WIN32
  33. # ifdef __linux
  34. # include <sys/prctl.h>
  35. # endif
  36. # include <sys/socket.h>
  37. # include <netinet/in.h>
  38. # include <netinet/tcp.h>
  39. # include <netdb.h>
  40. #else
  41. # include <winsock2.h>
  42. # include <mstcpip.h>
  43. # include <ws2tcpip.h>
  44. #endif
  45. #include "miner.h"
  46. #include "elist.h"
  47. #include "compat.h"
  48. #include "util.h"
  49. bool successful_connect = false;
  50. struct timeval nettime;
  51. struct data_buffer {
  52. void *buf;
  53. size_t len;
  54. curl_socket_t *idlemarker;
  55. };
  56. struct upload_buffer {
  57. const void *buf;
  58. size_t len;
  59. };
  60. struct header_info {
  61. char *lp_path;
  62. int rolltime;
  63. char *reason;
  64. char *stratum_url;
  65. bool hadrolltime;
  66. bool canroll;
  67. bool hadexpire;
  68. };
  69. struct tq_ent {
  70. void *data;
  71. struct list_head q_node;
  72. };
  73. static void databuf_free(struct data_buffer *db)
  74. {
  75. if (!db)
  76. return;
  77. free(db->buf);
  78. #ifdef DEBUG_DATABUF
  79. applog(LOG_DEBUG, "databuf_free(%p)", db->buf);
  80. #endif
  81. memset(db, 0, sizeof(*db));
  82. }
  83. // aka data_buffer_write
  84. static size_t all_data_cb(const void *ptr, size_t size, size_t nmemb,
  85. void *user_data)
  86. {
  87. struct data_buffer *db = user_data;
  88. size_t oldlen, newlen;
  89. oldlen = db->len;
  90. if (unlikely(nmemb == 0 || size == 0 || oldlen >= SIZE_MAX - size))
  91. return 0;
  92. if (unlikely(nmemb > (SIZE_MAX - oldlen) / size))
  93. nmemb = (SIZE_MAX - oldlen) / size;
  94. size_t len = size * nmemb;
  95. void *newmem;
  96. static const unsigned char zero = 0;
  97. if (db->idlemarker) {
  98. const unsigned char *cptr = ptr;
  99. for (size_t i = 0; i < len; ++i)
  100. if (!(isspace(cptr[i]) || cptr[i] == '{')) {
  101. *db->idlemarker = CURL_SOCKET_BAD;
  102. db->idlemarker = NULL;
  103. break;
  104. }
  105. }
  106. newlen = oldlen + len;
  107. newmem = realloc(db->buf, newlen + 1);
  108. #ifdef DEBUG_DATABUF
  109. applog(LOG_DEBUG, "data_buffer_write realloc(%p, %lu) => %p", db->buf, (long unsigned)(newlen + 1), newmem);
  110. #endif
  111. if (!newmem)
  112. return 0;
  113. db->buf = newmem;
  114. db->len = newlen;
  115. memcpy(db->buf + oldlen, ptr, len);
  116. memcpy(db->buf + newlen, &zero, 1); /* null terminate */
  117. return nmemb;
  118. }
  119. static size_t upload_data_cb(void *ptr, size_t size, size_t nmemb,
  120. void *user_data)
  121. {
  122. struct upload_buffer *ub = user_data;
  123. unsigned int len = size * nmemb;
  124. if (len > ub->len)
  125. len = ub->len;
  126. if (len) {
  127. memcpy(ptr, ub->buf, len);
  128. ub->buf += len;
  129. ub->len -= len;
  130. }
  131. return len;
  132. }
  133. static size_t resp_hdr_cb(void *ptr, size_t size, size_t nmemb, void *user_data)
  134. {
  135. struct header_info *hi = user_data;
  136. size_t remlen, slen, ptrlen = size * nmemb;
  137. char *rem, *val = NULL, *key = NULL;
  138. void *tmp;
  139. val = calloc(1, ptrlen);
  140. key = calloc(1, ptrlen);
  141. if (!key || !val)
  142. goto out;
  143. tmp = memchr(ptr, ':', ptrlen);
  144. if (!tmp || (tmp == ptr)) /* skip empty keys / blanks */
  145. goto out;
  146. slen = tmp - ptr;
  147. if ((slen + 1) == ptrlen) /* skip key w/ no value */
  148. goto out;
  149. memcpy(key, ptr, slen); /* store & nul term key */
  150. key[slen] = 0;
  151. rem = ptr + slen + 1; /* trim value's leading whitespace */
  152. remlen = ptrlen - slen - 1;
  153. while ((remlen > 0) && (isspace(*rem))) {
  154. remlen--;
  155. rem++;
  156. }
  157. memcpy(val, rem, remlen); /* store value, trim trailing ws */
  158. val[remlen] = 0;
  159. while ((*val) && (isspace(val[strlen(val) - 1])))
  160. val[strlen(val) - 1] = 0;
  161. if (!*val) /* skip blank value */
  162. goto out;
  163. if (opt_protocol)
  164. applog(LOG_DEBUG, "HTTP hdr(%s): %s", key, val);
  165. if (!strcasecmp("X-Roll-Ntime", key)) {
  166. hi->hadrolltime = true;
  167. if (!strncasecmp("N", val, 1))
  168. applog(LOG_DEBUG, "X-Roll-Ntime: N found");
  169. else {
  170. hi->canroll = true;
  171. /* Check to see if expire= is supported and if not, set
  172. * the rolltime to the default scantime */
  173. if (strlen(val) > 7 && !strncasecmp("expire=", val, 7)) {
  174. sscanf(val + 7, "%d", &hi->rolltime);
  175. hi->hadexpire = true;
  176. } else
  177. hi->rolltime = opt_scantime;
  178. applog(LOG_DEBUG, "X-Roll-Ntime expiry set to %d", hi->rolltime);
  179. }
  180. }
  181. if (!strcasecmp("X-Long-Polling", key)) {
  182. hi->lp_path = val; /* steal memory reference */
  183. val = NULL;
  184. }
  185. if (!strcasecmp("X-Reject-Reason", key)) {
  186. hi->reason = val; /* steal memory reference */
  187. val = NULL;
  188. }
  189. if (!strcasecmp("X-Stratum", key)) {
  190. hi->stratum_url = val;
  191. val = NULL;
  192. }
  193. out:
  194. free(key);
  195. free(val);
  196. return ptrlen;
  197. }
  198. static int keep_sockalive(SOCKETTYPE fd)
  199. {
  200. const int tcp_keepidle = 60;
  201. const int tcp_keepintvl = 60;
  202. const int keepalive = 1;
  203. int ret = 0;
  204. #ifndef WIN32
  205. const int tcp_keepcnt = 5;
  206. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof(keepalive))))
  207. ret = 1;
  208. # ifdef __linux
  209. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPCNT, &tcp_keepcnt, sizeof(tcp_keepcnt))))
  210. ret = 1;
  211. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPIDLE, &tcp_keepidle, sizeof(tcp_keepidle))))
  212. ret = 1;
  213. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPINTVL, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  214. ret = 1;
  215. # endif /* __linux */
  216. # ifdef __APPLE_CC__
  217. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  218. ret = 1;
  219. # endif /* __APPLE_CC__ */
  220. #else /* WIN32 */
  221. const int zero = 0;
  222. struct tcp_keepalive vals;
  223. vals.onoff = 1;
  224. vals.keepalivetime = tcp_keepidle * 1000;
  225. vals.keepaliveinterval = tcp_keepintvl * 1000;
  226. DWORD outputBytes;
  227. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (const char *)&keepalive, sizeof(keepalive))))
  228. ret = 1;
  229. if (unlikely(WSAIoctl(fd, SIO_KEEPALIVE_VALS, &vals, sizeof(vals), NULL, 0, &outputBytes, NULL, NULL)))
  230. ret = 1;
  231. /* Windows happily submits indefinitely to the send buffer blissfully
  232. * unaware nothing is getting there without gracefully failing unless
  233. * we disable the send buffer */
  234. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const char *)&zero, sizeof(zero))))
  235. ret = 1;
  236. #endif /* WIN32 */
  237. return ret;
  238. }
  239. int json_rpc_call_sockopt_cb(void __maybe_unused *userdata, curl_socket_t fd,
  240. curlsocktype __maybe_unused purpose)
  241. {
  242. return keep_sockalive(fd);
  243. }
  244. static void last_nettime(struct timeval *last)
  245. {
  246. rd_lock(&netacc_lock);
  247. last->tv_sec = nettime.tv_sec;
  248. last->tv_usec = nettime.tv_usec;
  249. rd_unlock(&netacc_lock);
  250. }
  251. static void set_nettime(void)
  252. {
  253. wr_lock(&netacc_lock);
  254. gettimeofday(&nettime, NULL);
  255. wr_unlock(&netacc_lock);
  256. }
  257. static int curl_debug_cb(__maybe_unused CURL *handle, curl_infotype type,
  258. char *data, size_t size,
  259. void *userdata)
  260. {
  261. struct pool *pool = (struct pool *)userdata;
  262. switch(type) {
  263. case CURLINFO_HEADER_IN:
  264. case CURLINFO_DATA_IN:
  265. case CURLINFO_SSL_DATA_IN:
  266. pool->cgminer_pool_stats.bytes_received += size;
  267. total_bytes_xfer += size;
  268. pool->cgminer_pool_stats.net_bytes_received += size;
  269. break;
  270. case CURLINFO_HEADER_OUT:
  271. case CURLINFO_DATA_OUT:
  272. case CURLINFO_SSL_DATA_OUT:
  273. pool->cgminer_pool_stats.bytes_sent += size;
  274. total_bytes_xfer += size;
  275. pool->cgminer_pool_stats.net_bytes_sent += size;
  276. break;
  277. case CURLINFO_TEXT:
  278. {
  279. if (!opt_protocol)
  280. break;
  281. // data is not null-terminated, so we need to copy and terminate it for applog
  282. char datacp[size + 1];
  283. memcpy(datacp, data, size);
  284. while (isspace(datacp[size-1]))
  285. --size;
  286. datacp[size] = '\0';
  287. applog(LOG_DEBUG, "Pool %u: %s", pool->pool_no, datacp);
  288. break;
  289. }
  290. default:
  291. break;
  292. }
  293. return 0;
  294. }
  295. struct json_rpc_call_state {
  296. struct data_buffer all_data;
  297. struct header_info hi;
  298. void *priv;
  299. char curl_err_str[CURL_ERROR_SIZE];
  300. struct curl_slist *headers;
  301. struct upload_buffer upload_data;
  302. struct pool *pool;
  303. };
  304. void json_rpc_call_async(CURL *curl, const char *url,
  305. const char *userpass, const char *rpc_req,
  306. bool longpoll,
  307. struct pool *pool, bool share,
  308. void *priv)
  309. {
  310. struct json_rpc_call_state *state = malloc(sizeof(struct json_rpc_call_state));
  311. *state = (struct json_rpc_call_state){
  312. .priv = priv,
  313. .pool = pool,
  314. };
  315. long timeout = longpoll ? (60 * 60) : 60;
  316. char len_hdr[64], user_agent_hdr[128];
  317. struct curl_slist *headers = NULL;
  318. if (longpoll)
  319. state->all_data.idlemarker = &pool->lp_socket;
  320. /* it is assumed that 'curl' is freshly [re]initialized at this pt */
  321. curl_easy_setopt(curl, CURLOPT_PRIVATE, state);
  322. curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  323. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  324. * to enable it */
  325. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  326. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  327. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  328. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  329. curl_easy_setopt(curl, CURLOPT_URL, url);
  330. curl_easy_setopt(curl, CURLOPT_ENCODING, "");
  331. curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  332. /* Shares are staggered already and delays in submission can be costly
  333. * so do not delay them */
  334. if (!opt_delaynet || share)
  335. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  336. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, all_data_cb);
  337. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &state->all_data);
  338. curl_easy_setopt(curl, CURLOPT_READFUNCTION, upload_data_cb);
  339. curl_easy_setopt(curl, CURLOPT_READDATA, &state->upload_data);
  340. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, &state->curl_err_str[0]);
  341. curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
  342. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, resp_hdr_cb);
  343. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &state->hi);
  344. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  345. if (pool->rpc_proxy) {
  346. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  347. } else if (opt_socks_proxy) {
  348. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  349. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
  350. }
  351. if (userpass) {
  352. curl_easy_setopt(curl, CURLOPT_USERPWD, userpass);
  353. curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  354. }
  355. if (longpoll)
  356. curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, json_rpc_call_sockopt_cb);
  357. curl_easy_setopt(curl, CURLOPT_POST, 1);
  358. if (opt_protocol)
  359. applog(LOG_DEBUG, "JSON protocol request:\n%s", rpc_req);
  360. state->upload_data.buf = rpc_req;
  361. state->upload_data.len = strlen(rpc_req);
  362. sprintf(len_hdr, "Content-Length: %lu",
  363. (unsigned long) state->upload_data.len);
  364. sprintf(user_agent_hdr, "User-Agent: %s", PACKAGE_STRING);
  365. headers = curl_slist_append(headers,
  366. "Content-type: application/json");
  367. headers = curl_slist_append(headers,
  368. "X-Mining-Extensions: longpoll midstate rollntime submitold");
  369. if (longpoll)
  370. headers = curl_slist_append(headers,
  371. "X-Minimum-Wait: 0");
  372. if (likely(global_hashrate)) {
  373. char ghashrate[255];
  374. sprintf(ghashrate, "X-Mining-Hashrate: %"PRIu64, (uint64_t)global_hashrate);
  375. headers = curl_slist_append(headers, ghashrate);
  376. }
  377. headers = curl_slist_append(headers, len_hdr);
  378. headers = curl_slist_append(headers, user_agent_hdr);
  379. headers = curl_slist_append(headers, "Expect:"); /* disable Expect hdr*/
  380. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  381. state->headers = headers;
  382. if (opt_delaynet) {
  383. /* Don't delay share submission, but still track the nettime */
  384. if (!share) {
  385. long long now_msecs, last_msecs;
  386. struct timeval now, last;
  387. gettimeofday(&now, NULL);
  388. last_nettime(&last);
  389. now_msecs = (long long)now.tv_sec * 1000;
  390. now_msecs += now.tv_usec / 1000;
  391. last_msecs = (long long)last.tv_sec * 1000;
  392. last_msecs += last.tv_usec / 1000;
  393. if (now_msecs > last_msecs && now_msecs - last_msecs < 250) {
  394. struct timespec rgtp;
  395. rgtp.tv_sec = 0;
  396. rgtp.tv_nsec = (250 - (now_msecs - last_msecs)) * 1000000;
  397. nanosleep(&rgtp, NULL);
  398. }
  399. }
  400. set_nettime();
  401. }
  402. }
  403. json_t *json_rpc_call_completed(CURL *curl, int rc, bool probe, int *rolltime, void *out_priv)
  404. {
  405. struct json_rpc_call_state *state;
  406. if (curl_easy_getinfo(curl, CURLINFO_PRIVATE, &state) != CURLE_OK) {
  407. applog(LOG_ERR, "Failed to get private curl data");
  408. if (out_priv)
  409. *(void**)out_priv = NULL;
  410. goto err_out;
  411. }
  412. if (out_priv)
  413. *(void**)out_priv = state->priv;
  414. json_t *val, *err_val, *res_val;
  415. json_error_t err;
  416. struct pool *pool = state->pool;
  417. bool probing = probe && !pool->probed;
  418. if (rc) {
  419. applog(LOG_INFO, "HTTP request failed: %s", state->curl_err_str);
  420. goto err_out;
  421. }
  422. if (!state->all_data.buf) {
  423. applog(LOG_DEBUG, "Empty data received in json_rpc_call.");
  424. goto err_out;
  425. }
  426. pool->cgminer_pool_stats.times_sent++;
  427. pool->cgminer_pool_stats.times_received++;
  428. if (probing) {
  429. pool->probed = true;
  430. /* If X-Long-Polling was found, activate long polling */
  431. if (state->hi.lp_path) {
  432. if (pool->hdr_path != NULL)
  433. free(pool->hdr_path);
  434. pool->hdr_path = state->hi.lp_path;
  435. } else
  436. pool->hdr_path = NULL;
  437. if (state->hi.stratum_url) {
  438. pool->stratum_url = state->hi.stratum_url;
  439. state->hi.stratum_url = NULL;
  440. }
  441. } else {
  442. if (state->hi.lp_path) {
  443. free(state->hi.lp_path);
  444. state->hi.lp_path = NULL;
  445. }
  446. if (state->hi.stratum_url) {
  447. free(state->hi.stratum_url);
  448. state->hi.stratum_url = NULL;
  449. }
  450. }
  451. if (pool->force_rollntime)
  452. {
  453. state->hi.canroll = true;
  454. state->hi.hadexpire = true;
  455. state->hi.rolltime = pool->force_rollntime;
  456. }
  457. if (rolltime)
  458. *rolltime = state->hi.rolltime;
  459. pool->cgminer_pool_stats.rolltime = state->hi.rolltime;
  460. pool->cgminer_pool_stats.hadrolltime = state->hi.hadrolltime;
  461. pool->cgminer_pool_stats.canroll = state->hi.canroll;
  462. pool->cgminer_pool_stats.hadexpire = state->hi.hadexpire;
  463. val = JSON_LOADS(state->all_data.buf, &err);
  464. if (!val) {
  465. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  466. if (opt_protocol)
  467. applog(LOG_DEBUG, "JSON protocol response:\n%s", (char*)state->all_data.buf);
  468. goto err_out;
  469. }
  470. if (opt_protocol) {
  471. char *s = json_dumps(val, JSON_INDENT(3));
  472. applog(LOG_DEBUG, "JSON protocol response:\n%s", s);
  473. free(s);
  474. }
  475. /* JSON-RPC valid response returns a non-null 'result',
  476. * and a null 'error'.
  477. */
  478. res_val = json_object_get(val, "result");
  479. err_val = json_object_get(val, "error");
  480. if (!res_val ||(err_val && !json_is_null(err_val))) {
  481. char *s;
  482. if (err_val)
  483. s = json_dumps(err_val, JSON_INDENT(3));
  484. else
  485. s = strdup("(unknown reason)");
  486. applog(LOG_INFO, "JSON-RPC call failed: %s", s);
  487. free(s);
  488. json_decref(val);
  489. goto err_out;
  490. }
  491. if (state->hi.reason) {
  492. json_object_set_new(val, "reject-reason", json_string(state->hi.reason));
  493. free(state->hi.reason);
  494. state->hi.reason = NULL;
  495. }
  496. successful_connect = true;
  497. databuf_free(&state->all_data);
  498. curl_slist_free_all(state->headers);
  499. curl_easy_reset(curl);
  500. free(state);
  501. return val;
  502. err_out:
  503. databuf_free(&state->all_data);
  504. curl_slist_free_all(state->headers);
  505. curl_easy_reset(curl);
  506. if (!successful_connect)
  507. applog(LOG_DEBUG, "Failed to connect in json_rpc_call");
  508. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  509. free(state);
  510. return NULL;
  511. }
  512. json_t *json_rpc_call(CURL *curl, const char *url,
  513. const char *userpass, const char *rpc_req,
  514. bool probe, bool longpoll, int *rolltime,
  515. struct pool *pool, bool share)
  516. {
  517. json_rpc_call_async(curl, url, userpass, rpc_req, longpoll, pool, share, NULL);
  518. int rc = curl_easy_perform(curl);
  519. return json_rpc_call_completed(curl, rc, probe, rolltime, NULL);
  520. }
  521. bool our_curl_supports_proxy_uris()
  522. {
  523. curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
  524. return data->age && data->version_num >= (( 7 <<16)|( 21 <<8)| 7); // 7.21.7
  525. }
  526. // NOTE: This assumes reference URI is a root
  527. char *absolute_uri(char *uri, const char *ref)
  528. {
  529. if (strstr(uri, "://"))
  530. return strdup(uri);
  531. char *copy_start, *abs;
  532. bool need_slash = false;
  533. copy_start = (uri[0] == '/') ? &uri[1] : uri;
  534. if (ref[strlen(ref) - 1] != '/')
  535. need_slash = true;
  536. abs = malloc(strlen(ref) + strlen(copy_start) + 2);
  537. if (!abs) {
  538. applog(LOG_ERR, "Malloc failure in absolute_uri");
  539. return NULL;
  540. }
  541. sprintf(abs, "%s%s%s", ref, need_slash ? "/" : "", copy_start);
  542. return abs;
  543. }
  544. /* Returns a malloced array string of a binary value of arbitrary length. The
  545. * array is rounded up to a 4 byte size to appease architectures that need
  546. * aligned array sizes */
  547. char *bin2hex(const unsigned char *p, size_t len)
  548. {
  549. unsigned int i;
  550. ssize_t slen;
  551. char *s;
  552. slen = len * 2 + 1;
  553. if (slen % 4)
  554. slen += 4 - (slen % 4);
  555. s = calloc(slen, 1);
  556. if (unlikely(!s))
  557. quit(1, "Failed to calloc in bin2hex");
  558. for (i = 0; i < len; i++)
  559. sprintf(s + (i * 2), "%02x", (unsigned int) p[i]);
  560. return s;
  561. }
  562. /* Does the reverse of bin2hex but does not allocate any ram */
  563. bool hex2bin(unsigned char *p, const char *hexstr, size_t len)
  564. {
  565. bool ret = false;
  566. while (*hexstr && len) {
  567. char hex_byte[4];
  568. unsigned int v;
  569. if (unlikely(!hexstr[1])) {
  570. applog(LOG_ERR, "hex2bin str truncated");
  571. return ret;
  572. }
  573. memset(hex_byte, 0, 4);
  574. hex_byte[0] = hexstr[0];
  575. hex_byte[1] = hexstr[1];
  576. if (unlikely(sscanf(hex_byte, "%x", &v) != 1)) {
  577. applog(LOG_ERR, "hex2bin sscanf '%s' failed", hex_byte);
  578. return ret;
  579. }
  580. *p = (unsigned char) v;
  581. p++;
  582. hexstr += 2;
  583. len--;
  584. }
  585. if (likely(len == 0 && *hexstr == 0))
  586. ret = true;
  587. return ret;
  588. }
  589. void hash_data(unsigned char *out_hash, const unsigned char *data)
  590. {
  591. unsigned char blkheader[80];
  592. // data is past the first SHA256 step (padding and interpreting as big endian on a little endian platform), so we need to flip each 32-bit chunk around to get the original input block header
  593. swap32yes(blkheader, data, 80 / 4);
  594. // double-SHA256 to get the block hash
  595. gen_hash(blkheader, out_hash, 80);
  596. }
  597. // Example output: 0000000000000000000000000000000000000000000000000000ffff00000000 (bdiff 1)
  598. void real_block_target(unsigned char *target, const unsigned char *data)
  599. {
  600. uint8_t targetshift;
  601. if (unlikely(data[72] < 3 || data[72] > 0x20))
  602. {
  603. // Invalid (out of bounds) target
  604. memset(target, 0xff, 32);
  605. return;
  606. }
  607. targetshift = data[72] - 3;
  608. memset(target, 0, targetshift);
  609. target[targetshift++] = data[75];
  610. target[targetshift++] = data[74];
  611. target[targetshift++] = data[73];
  612. memset(&target[targetshift], 0, 0x20 - targetshift);
  613. }
  614. bool hash_target_check(const unsigned char *hash, const unsigned char *target)
  615. {
  616. const uint32_t *h32 = (uint32_t*)&hash[0];
  617. const uint32_t *t32 = (uint32_t*)&target[0];
  618. for (int i = 7; i >= 0; --i) {
  619. uint32_t h32i = le32toh(h32[i]);
  620. uint32_t t32i = le32toh(t32[i]);
  621. if (h32i > t32i)
  622. return false;
  623. if (h32i < t32i)
  624. return true;
  625. }
  626. return true;
  627. }
  628. bool hash_target_check_v(const unsigned char *hash, const unsigned char *target)
  629. {
  630. bool rc;
  631. rc = hash_target_check(hash, target);
  632. if (opt_debug) {
  633. unsigned char hash_swap[32], target_swap[32];
  634. char *hash_str, *target_str;
  635. for (int i = 0; i < 32; ++i) {
  636. hash_swap[i] = hash[31-i];
  637. target_swap[i] = target[31-i];
  638. }
  639. hash_str = bin2hex(hash_swap, 32);
  640. target_str = bin2hex(target_swap, 32);
  641. applog(LOG_DEBUG, " Proof: %s\nTarget: %s\nTrgVal? %s",
  642. hash_str,
  643. target_str,
  644. rc ? "YES (hash < target)" :
  645. "no (false positive; hash > target)");
  646. free(hash_str);
  647. free(target_str);
  648. }
  649. return rc;
  650. }
  651. // This operates on a native-endian SHA256 state
  652. // In other words, on little endian platforms, every 4 bytes are in reverse order
  653. bool fulltest(const unsigned char *hash, const unsigned char *target)
  654. {
  655. unsigned char hash2[32];
  656. swap32tobe(hash2, hash, 32 / 4);
  657. return hash_target_check_v(hash2, target);
  658. }
  659. struct thread_q *tq_new(void)
  660. {
  661. struct thread_q *tq;
  662. tq = calloc(1, sizeof(*tq));
  663. if (!tq)
  664. return NULL;
  665. INIT_LIST_HEAD(&tq->q);
  666. pthread_mutex_init(&tq->mutex, NULL);
  667. pthread_cond_init(&tq->cond, NULL);
  668. return tq;
  669. }
  670. void tq_free(struct thread_q *tq)
  671. {
  672. struct tq_ent *ent, *iter;
  673. if (!tq)
  674. return;
  675. list_for_each_entry_safe(ent, iter, &tq->q, q_node) {
  676. list_del(&ent->q_node);
  677. free(ent);
  678. }
  679. pthread_cond_destroy(&tq->cond);
  680. pthread_mutex_destroy(&tq->mutex);
  681. memset(tq, 0, sizeof(*tq)); /* poison */
  682. free(tq);
  683. }
  684. static void tq_freezethaw(struct thread_q *tq, bool frozen)
  685. {
  686. mutex_lock(&tq->mutex);
  687. tq->frozen = frozen;
  688. pthread_cond_signal(&tq->cond);
  689. mutex_unlock(&tq->mutex);
  690. }
  691. void tq_freeze(struct thread_q *tq)
  692. {
  693. tq_freezethaw(tq, true);
  694. }
  695. void tq_thaw(struct thread_q *tq)
  696. {
  697. tq_freezethaw(tq, false);
  698. }
  699. bool tq_push(struct thread_q *tq, void *data)
  700. {
  701. struct tq_ent *ent;
  702. bool rc = true;
  703. ent = calloc(1, sizeof(*ent));
  704. if (!ent)
  705. return false;
  706. ent->data = data;
  707. INIT_LIST_HEAD(&ent->q_node);
  708. mutex_lock(&tq->mutex);
  709. if (!tq->frozen) {
  710. list_add_tail(&ent->q_node, &tq->q);
  711. } else {
  712. free(ent);
  713. rc = false;
  714. }
  715. pthread_cond_signal(&tq->cond);
  716. mutex_unlock(&tq->mutex);
  717. return rc;
  718. }
  719. void *tq_pop(struct thread_q *tq, const struct timespec *abstime)
  720. {
  721. struct tq_ent *ent;
  722. void *rval = NULL;
  723. int rc;
  724. mutex_lock(&tq->mutex);
  725. if (!list_empty(&tq->q))
  726. goto pop;
  727. if (abstime)
  728. rc = pthread_cond_timedwait(&tq->cond, &tq->mutex, abstime);
  729. else
  730. rc = pthread_cond_wait(&tq->cond, &tq->mutex);
  731. if (rc)
  732. goto out;
  733. if (list_empty(&tq->q))
  734. goto out;
  735. pop:
  736. ent = list_entry(tq->q.next, struct tq_ent, q_node);
  737. rval = ent->data;
  738. list_del(&ent->q_node);
  739. free(ent);
  740. out:
  741. mutex_unlock(&tq->mutex);
  742. return rval;
  743. }
  744. int thr_info_create(struct thr_info *thr, pthread_attr_t *attr, void *(*start) (void *), void *arg)
  745. {
  746. return pthread_create(&thr->pth, attr, start, arg);
  747. }
  748. void thr_info_freeze(struct thr_info *thr)
  749. {
  750. struct tq_ent *ent, *iter;
  751. struct thread_q *tq;
  752. if (!thr)
  753. return;
  754. tq = thr->q;
  755. if (!tq)
  756. return;
  757. mutex_lock(&tq->mutex);
  758. tq->frozen = true;
  759. list_for_each_entry_safe(ent, iter, &tq->q, q_node) {
  760. list_del(&ent->q_node);
  761. free(ent);
  762. }
  763. mutex_unlock(&tq->mutex);
  764. }
  765. void thr_info_cancel(struct thr_info *thr)
  766. {
  767. if (!thr)
  768. return;
  769. if (PTH(thr) != 0L) {
  770. pthread_cancel(thr->pth);
  771. PTH(thr) = 0L;
  772. }
  773. }
  774. #ifndef HAVE_PTHREAD_CANCEL
  775. // Bionic (Android) is intentionally missing pthread_cancel, so it is implemented using pthread_kill
  776. enum pthread_cancel_workaround_mode {
  777. PCWM_DEFAULT = 0,
  778. PCWM_TERMINATE = 1,
  779. PCWM_ASYNC = 2,
  780. PCWM_DISABLED = 4,
  781. PCWM_CANCELLED = 8,
  782. };
  783. static pthread_key_t key_pcwm;
  784. struct sigaction pcwm_orig_term_handler;
  785. static
  786. void do_pthread_cancel_exit(int flags)
  787. {
  788. if (!(flags & PCWM_ASYNC))
  789. // NOTE: Logging disables cancel while mutex held, so this is safe
  790. applog(LOG_WARNING, "pthread_cancel workaround: Cannot defer cancellation, terminating thread NOW");
  791. pthread_exit(PTHREAD_CANCELED);
  792. }
  793. static
  794. void sighandler_pthread_cancel(int sig)
  795. {
  796. int flags = (int)pthread_getspecific(key_pcwm);
  797. if (flags & PCWM_TERMINATE) // Main thread
  798. {
  799. // Restore original handler and call it
  800. if (sigaction(sig, &pcwm_orig_term_handler, NULL))
  801. quit(1, "pthread_cancel workaround: Failed to restore original handler");
  802. raise(SIGTERM);
  803. quit(1, "pthread_cancel workaround: Original handler returned");
  804. }
  805. if (flags & PCWM_CANCELLED) // Already pending cancel
  806. return;
  807. if (flags & PCWM_DISABLED)
  808. {
  809. flags |= PCWM_CANCELLED;
  810. if (pthread_setspecific(key_pcwm, (void*)flags))
  811. quit(1, "pthread_cancel workaround: pthread_setspecific failed (setting PCWM_CANCELLED)");
  812. return;
  813. }
  814. do_pthread_cancel_exit(flags);
  815. }
  816. int pthread_setcancelstate(int state, int *oldstate)
  817. {
  818. int flags = (int)pthread_getspecific(key_pcwm);
  819. if (oldstate)
  820. *oldstate = (flags & PCWM_DISABLED) ? PTHREAD_CANCEL_DISABLE : PTHREAD_CANCEL_ENABLE;
  821. if (state == PTHREAD_CANCEL_DISABLE)
  822. flags |= PCWM_DISABLED;
  823. else
  824. {
  825. if (flags & PCWM_CANCELLED)
  826. do_pthread_cancel_exit(flags);
  827. flags &= ~PCWM_DISABLED;
  828. }
  829. if (pthread_setspecific(key_pcwm, (void*)flags))
  830. return -1;
  831. return 0;
  832. }
  833. int pthread_setcanceltype(int type, int *oldtype)
  834. {
  835. int flags = (int)pthread_getspecific(key_pcwm);
  836. if (oldtype)
  837. *oldtype = (flags & PCWM_ASYNC) ? PTHREAD_CANCEL_ASYNCHRONOUS : PTHREAD_CANCEL_DEFERRED;
  838. if (type == PTHREAD_CANCEL_ASYNCHRONOUS)
  839. flags |= PCWM_ASYNC;
  840. else
  841. flags &= ~PCWM_ASYNC;
  842. if (pthread_setspecific(key_pcwm, (void*)flags))
  843. return -1;
  844. return 0;
  845. }
  846. void setup_pthread_cancel_workaround()
  847. {
  848. if (pthread_key_create(&key_pcwm, NULL))
  849. quit(1, "pthread_cancel workaround: pthread_key_create failed");
  850. if (pthread_setspecific(key_pcwm, (void*)PCWM_TERMINATE))
  851. quit(1, "pthread_cancel workaround: pthread_setspecific failed");
  852. struct sigaction new_sigact = {
  853. .sa_handler = sighandler_pthread_cancel,
  854. };
  855. if (sigaction(SIGTERM, &new_sigact, &pcwm_orig_term_handler))
  856. quit(1, "pthread_cancel workaround: Failed to install SIGTERM handler");
  857. }
  858. #endif
  859. /* Provide a ms based sleep that uses nanosleep to avoid poor usleep accuracy
  860. * on SMP machines */
  861. void nmsleep(unsigned int msecs)
  862. {
  863. struct timespec twait, tleft;
  864. int ret;
  865. ldiv_t d;
  866. d = ldiv(msecs, 1000);
  867. tleft.tv_sec = d.quot;
  868. tleft.tv_nsec = d.rem * 1000000;
  869. do {
  870. twait.tv_sec = tleft.tv_sec;
  871. twait.tv_nsec = tleft.tv_nsec;
  872. ret = nanosleep(&twait, &tleft);
  873. } while (ret == -1 && errno == EINTR);
  874. }
  875. /* Returns the microseconds difference between end and start times as a double */
  876. double us_tdiff(struct timeval *end, struct timeval *start)
  877. {
  878. return end->tv_sec * 1000000 + end->tv_usec - start->tv_sec * 1000000 - start->tv_usec;
  879. }
  880. /* Returns the seconds difference between end and start times as a double */
  881. double tdiff(struct timeval *end, struct timeval *start)
  882. {
  883. return end->tv_sec - start->tv_sec + (end->tv_usec - start->tv_usec) / 1000000.0;
  884. }
  885. bool extract_sockaddr(struct pool *pool, char *url)
  886. {
  887. char *url_begin, *url_end, *ipv6_begin, *ipv6_end, *port_start = NULL;
  888. char url_address[256], port[6];
  889. int url_len, port_len = 0;
  890. url_begin = strstr(url, "//");
  891. if (!url_begin)
  892. url_begin = url;
  893. else
  894. url_begin += 2;
  895. /* Look for numeric ipv6 entries */
  896. ipv6_begin = strstr(url_begin, "[");
  897. ipv6_end = strstr(url_begin, "]");
  898. if (ipv6_begin && ipv6_end && ipv6_end > ipv6_begin)
  899. url_end = strstr(ipv6_end, ":");
  900. else
  901. url_end = strstr(url_begin, ":");
  902. if (url_end) {
  903. url_len = url_end - url_begin;
  904. port_len = strlen(url_begin) - url_len - 1;
  905. if (port_len < 1)
  906. return false;
  907. port_start = url_end + 1;
  908. } else
  909. url_len = strlen(url_begin);
  910. if (url_len < 1)
  911. return false;
  912. sprintf(url_address, "%.*s", url_len, url_begin);
  913. if (port_len)
  914. snprintf(port, 6, "%.*s", port_len, port_start);
  915. else
  916. strcpy(port, "80");
  917. free(pool->stratum_port);
  918. pool->stratum_port = strdup(port);
  919. free(pool->sockaddr_url);
  920. pool->sockaddr_url = strdup(url_address);
  921. return true;
  922. }
  923. /* Send a single command across a socket, appending \n to it. This should all
  924. * be done under stratum lock except when first establishing the socket */
  925. static bool __stratum_send(struct pool *pool, char *s, ssize_t len)
  926. {
  927. SOCKETTYPE sock = pool->sock;
  928. ssize_t ssent = 0;
  929. if (opt_protocol)
  930. applog(LOG_DEBUG, "Pool %u: SEND: %s", pool->pool_no, s);
  931. strcat(s, "\n");
  932. len++;
  933. while (len > 0 ) {
  934. struct timeval timeout = {0, 0};
  935. ssize_t sent;
  936. fd_set wd;
  937. FD_ZERO(&wd);
  938. FD_SET(sock, &wd);
  939. if (select(sock + 1, NULL, &wd, NULL, &timeout) < 1) {
  940. applog(LOG_DEBUG, "Write select failed on pool %d sock", pool->pool_no);
  941. return false;
  942. }
  943. sent = send(pool->sock, s + ssent, len, 0);
  944. if (sent < 0) {
  945. if (errno != EAGAIN && errno != EWOULDBLOCK) {
  946. applog(LOG_DEBUG, "Failed to curl_easy_send in stratum_send");
  947. return false;
  948. }
  949. sent = 0;
  950. }
  951. ssent += sent;
  952. len -= sent;
  953. }
  954. pool->cgminer_pool_stats.times_sent++;
  955. pool->cgminer_pool_stats.bytes_sent += ssent;
  956. total_bytes_xfer += ssent;
  957. pool->cgminer_pool_stats.net_bytes_sent += ssent;
  958. return true;
  959. }
  960. bool stratum_send(struct pool *pool, char *s, ssize_t len)
  961. {
  962. bool ret = false;
  963. mutex_lock(&pool->stratum_lock);
  964. if (pool->stratum_active)
  965. ret = __stratum_send(pool, s, len);
  966. else
  967. applog(LOG_DEBUG, "Stratum send failed due to no pool stratum_active");
  968. mutex_unlock(&pool->stratum_lock);
  969. return ret;
  970. }
  971. static bool socket_full(struct pool *pool, bool wait)
  972. {
  973. SOCKETTYPE sock = pool->sock;
  974. struct timeval timeout;
  975. fd_set rd;
  976. FD_ZERO(&rd);
  977. FD_SET(sock, &rd);
  978. timeout.tv_usec = 0;
  979. if (wait)
  980. timeout.tv_sec = 60;
  981. else
  982. timeout.tv_sec = 0;
  983. if (select(sock + 1, &rd, NULL, NULL, &timeout) > 0)
  984. return true;
  985. return false;
  986. }
  987. /* Check to see if Santa's been good to you */
  988. bool sock_full(struct pool *pool)
  989. {
  990. if (strlen(pool->sockbuf))
  991. return true;
  992. return (socket_full(pool, false));
  993. }
  994. static void clear_sockbuf(struct pool *pool)
  995. {
  996. strcpy(pool->sockbuf, "");
  997. }
  998. static void clear_sock(struct pool *pool)
  999. {
  1000. ssize_t n;
  1001. mutex_lock(&pool->stratum_lock);
  1002. do {
  1003. n = recv(pool->sock, pool->sockbuf, RECVSIZE, 0);
  1004. } while (n > 0);
  1005. mutex_unlock(&pool->stratum_lock);
  1006. clear_sockbuf(pool);
  1007. }
  1008. /* Make sure the pool sockbuf is large enough to cope with any coinbase size
  1009. * by reallocing it to a large enough size rounded up to a multiple of RBUFSIZE
  1010. * and zeroing the new memory */
  1011. static void recalloc_sock(struct pool *pool, size_t len)
  1012. {
  1013. size_t old, new;
  1014. old = strlen(pool->sockbuf);
  1015. new = old + len + 1;
  1016. if (new < pool->sockbuf_size)
  1017. return;
  1018. new = new + (RBUFSIZE - (new % RBUFSIZE));
  1019. applog(LOG_DEBUG, "Recallocing pool sockbuf to %lu", (unsigned long)new);
  1020. pool->sockbuf = realloc(pool->sockbuf, new);
  1021. if (!pool->sockbuf)
  1022. quit(1, "Failed to realloc pool sockbuf in recalloc_sock");
  1023. memset(pool->sockbuf + old, 0, new - old);
  1024. pool->sockbuf_size = new;
  1025. }
  1026. /* Peeks at a socket to find the first end of line and then reads just that
  1027. * from the socket and returns that as a malloced char */
  1028. char *recv_line(struct pool *pool)
  1029. {
  1030. ssize_t len, buflen;
  1031. char *tok, *sret = NULL;
  1032. if (!strstr(pool->sockbuf, "\n")) {
  1033. struct timeval rstart, now;
  1034. gettimeofday(&rstart, NULL);
  1035. if (!socket_full(pool, true)) {
  1036. applog(LOG_DEBUG, "Timed out waiting for data on socket_full");
  1037. goto out;
  1038. }
  1039. mutex_lock(&pool->stratum_lock);
  1040. do {
  1041. char s[RBUFSIZE];
  1042. size_t slen, n;
  1043. memset(s, 0, RBUFSIZE);
  1044. n = recv(pool->sock, s, RECVSIZE, 0);
  1045. if (n < 1 && errno != EAGAIN && errno != EWOULDBLOCK) {
  1046. applog(LOG_DEBUG, "Failed to recv sock in recv_line");
  1047. break;
  1048. }
  1049. slen = strlen(s);
  1050. recalloc_sock(pool, slen);
  1051. strcat(pool->sockbuf, s);
  1052. gettimeofday(&now, NULL);
  1053. } while (tdiff(&now, &rstart) < 60 && !strstr(pool->sockbuf, "\n"));
  1054. mutex_unlock(&pool->stratum_lock);
  1055. }
  1056. buflen = strlen(pool->sockbuf);
  1057. tok = strtok(pool->sockbuf, "\n");
  1058. if (!tok) {
  1059. applog(LOG_DEBUG, "Failed to parse a \\n terminated string in recv_line");
  1060. goto out;
  1061. }
  1062. sret = strdup(tok);
  1063. len = strlen(sret);
  1064. /* Copy what's left in the buffer after the \n, including the
  1065. * terminating \0 */
  1066. if (buflen > len + 1)
  1067. memmove(pool->sockbuf, pool->sockbuf + len + 1, buflen - len + 1);
  1068. else
  1069. strcpy(pool->sockbuf, "");
  1070. pool->cgminer_pool_stats.times_received++;
  1071. pool->cgminer_pool_stats.bytes_received += len;
  1072. total_bytes_xfer += len;
  1073. pool->cgminer_pool_stats.net_bytes_received += len;
  1074. out:
  1075. if (!sret)
  1076. clear_sock(pool);
  1077. else if (opt_protocol)
  1078. applog(LOG_DEBUG, "Pool %u: RECV: %s", pool->pool_no, sret);
  1079. return sret;
  1080. }
  1081. /* Dumps any JSON value as a string. Just like jansson 2.1's JSON_ENCODE_ANY
  1082. * flag, but this is compatible with 2.0. */
  1083. char *json_dumps_ANY(json_t *json, size_t flags)
  1084. {
  1085. switch (json_typeof(json))
  1086. {
  1087. case JSON_ARRAY:
  1088. case JSON_OBJECT:
  1089. return json_dumps(json, flags);
  1090. default:
  1091. break;
  1092. }
  1093. char *rv;
  1094. #ifdef JSON_ENCODE_ANY
  1095. rv = json_dumps(json, JSON_ENCODE_ANY | flags);
  1096. if (rv)
  1097. return rv;
  1098. #endif
  1099. json_t *tmp = json_array();
  1100. char *s;
  1101. int i;
  1102. size_t len;
  1103. if (!tmp)
  1104. quit(1, "json_dumps_ANY failed to allocate json array");
  1105. if (json_array_append(tmp, json))
  1106. quit(1, "json_dumps_ANY failed to append temporary array");
  1107. s = json_dumps(tmp, flags);
  1108. if (!s)
  1109. return NULL;
  1110. for (i = 0; s[i] != '['; ++i)
  1111. if (unlikely(!(s[i] && isspace(s[i]))))
  1112. quit(1, "json_dumps_ANY failed to find opening bracket in array dump");
  1113. len = strlen(&s[++i]) - 1;
  1114. if (unlikely(s[i+len] != ']'))
  1115. quit(1, "json_dumps_ANY failed to find closing bracket in array dump");
  1116. rv = malloc(len + 1);
  1117. memcpy(rv, &s[i], len);
  1118. rv[len] = '\0';
  1119. free(s);
  1120. json_decref(tmp);
  1121. return rv;
  1122. }
  1123. /* Extracts a string value from a json array with error checking. To be used
  1124. * when the value of the string returned is only examined and not to be stored.
  1125. * See json_array_string below */
  1126. static char *__json_array_string(json_t *val, unsigned int entry)
  1127. {
  1128. json_t *arr_entry;
  1129. if (json_is_null(val))
  1130. return NULL;
  1131. if (!json_is_array(val))
  1132. return NULL;
  1133. if (entry > json_array_size(val))
  1134. return NULL;
  1135. arr_entry = json_array_get(val, entry);
  1136. if (!json_is_string(arr_entry))
  1137. return NULL;
  1138. return (char *)json_string_value(arr_entry);
  1139. }
  1140. /* Creates a freshly malloced dup of __json_array_string */
  1141. static char *json_array_string(json_t *val, unsigned int entry)
  1142. {
  1143. char *buf = __json_array_string(val, entry);
  1144. if (buf)
  1145. return strdup(buf);
  1146. return NULL;
  1147. }
  1148. void stratum_probe_transparency(struct pool *pool)
  1149. {
  1150. // Request transaction data to discourage pools from doing anything shady
  1151. char s[1024];
  1152. int sLen;
  1153. sLen = sprintf(s, "{\"params\": [\"%s\"], \"id\": \"txlist%s\", \"method\": \"mining.get_transactions\"}",
  1154. pool->swork.job_id,
  1155. pool->swork.job_id);
  1156. stratum_send(pool, s, sLen);
  1157. if ((!pool->swork.opaque) && pool->swork.transparency_time == (time_t)-1)
  1158. pool->swork.transparency_time = time(NULL);
  1159. pool->swork.transparency_probed = true;
  1160. }
  1161. static bool parse_notify(struct pool *pool, json_t *val)
  1162. {
  1163. char *job_id, *prev_hash, *coinbase1, *coinbase2, *bbversion, *nbit, *ntime;
  1164. bool clean, ret = false;
  1165. int merkles, i;
  1166. json_t *arr;
  1167. arr = json_array_get(val, 4);
  1168. if (!arr || !json_is_array(arr))
  1169. goto out;
  1170. merkles = json_array_size(arr);
  1171. job_id = json_array_string(val, 0);
  1172. prev_hash = json_array_string(val, 1);
  1173. coinbase1 = json_array_string(val, 2);
  1174. coinbase2 = json_array_string(val, 3);
  1175. bbversion = json_array_string(val, 5);
  1176. nbit = json_array_string(val, 6);
  1177. ntime = json_array_string(val, 7);
  1178. clean = json_is_true(json_array_get(val, 8));
  1179. if (!job_id || !prev_hash || !coinbase1 || !coinbase2 || !bbversion || !nbit || !ntime) {
  1180. /* Annoying but we must not leak memory */
  1181. if (job_id)
  1182. free(job_id);
  1183. if (prev_hash)
  1184. free(prev_hash);
  1185. if (coinbase1)
  1186. free(coinbase1);
  1187. if (coinbase2)
  1188. free(coinbase2);
  1189. if (bbversion)
  1190. free(bbversion);
  1191. if (nbit)
  1192. free(nbit);
  1193. if (ntime)
  1194. free(ntime);
  1195. goto out;
  1196. }
  1197. mutex_lock(&pool->pool_lock);
  1198. free(pool->swork.job_id);
  1199. free(pool->swork.prev_hash);
  1200. free(pool->swork.coinbase1);
  1201. free(pool->swork.coinbase2);
  1202. free(pool->swork.bbversion);
  1203. free(pool->swork.nbit);
  1204. free(pool->swork.ntime);
  1205. pool->swork.job_id = job_id;
  1206. pool->swork.prev_hash = prev_hash;
  1207. pool->swork.coinbase1 = coinbase1;
  1208. pool->swork.cb1_len = strlen(coinbase1) / 2;
  1209. pool->swork.coinbase2 = coinbase2;
  1210. pool->swork.cb2_len = strlen(coinbase2) / 2;
  1211. pool->swork.bbversion = bbversion;
  1212. pool->swork.nbit = nbit;
  1213. pool->swork.ntime = ntime;
  1214. pool->submit_old = !clean;
  1215. pool->swork.clean = true;
  1216. pool->swork.cb_len = pool->swork.cb1_len + pool->n1_len + pool->n2size + pool->swork.cb2_len;
  1217. for (i = 0; i < pool->swork.merkles; i++)
  1218. free(pool->swork.merkle[i]);
  1219. if (merkles) {
  1220. pool->swork.merkle = realloc(pool->swork.merkle, sizeof(char *) * merkles + 1);
  1221. for (i = 0; i < merkles; i++)
  1222. pool->swork.merkle[i] = json_array_string(arr, i);
  1223. }
  1224. pool->swork.merkles = merkles;
  1225. if (clean)
  1226. pool->nonce2 = 0;
  1227. pool->swork.header_len = strlen(pool->swork.bbversion) +
  1228. strlen(pool->swork.prev_hash) +
  1229. strlen(pool->swork.ntime) +
  1230. strlen(pool->swork.nbit) +
  1231. /* merkle_hash */ 32 +
  1232. /* nonce */ 8 +
  1233. /* workpadding */ 96;
  1234. pool->swork.header_len = pool->swork.header_len * 2 + 1;
  1235. align_len(&pool->swork.header_len);
  1236. mutex_unlock(&pool->pool_lock);
  1237. applog(LOG_DEBUG, "Received stratum notify from pool %u with job_id=%s",
  1238. pool->pool_no, job_id);
  1239. if (opt_protocol) {
  1240. applog(LOG_DEBUG, "job_id: %s", job_id);
  1241. applog(LOG_DEBUG, "prev_hash: %s", prev_hash);
  1242. applog(LOG_DEBUG, "coinbase1: %s", coinbase1);
  1243. applog(LOG_DEBUG, "coinbase2: %s", coinbase2);
  1244. for (i = 0; i < merkles; i++)
  1245. applog(LOG_DEBUG, "merkle%d: %s", i, pool->swork.merkle[i]);
  1246. applog(LOG_DEBUG, "bbversion: %s", bbversion);
  1247. applog(LOG_DEBUG, "nbit: %s", nbit);
  1248. applog(LOG_DEBUG, "ntime: %s", ntime);
  1249. applog(LOG_DEBUG, "clean: %s", clean ? "yes" : "no");
  1250. }
  1251. /* A notify message is the closest stratum gets to a getwork */
  1252. pool->getwork_requested++;
  1253. total_getworks++;
  1254. if ((merkles && (!pool->swork.transparency_probed || rand() <= RAND_MAX / (opt_skip_checks + 1))) || pool->swork.transparency_time != (time_t)-1)
  1255. if (pool->stratum_auth)
  1256. stratum_probe_transparency(pool);
  1257. ret = true;
  1258. out:
  1259. return ret;
  1260. }
  1261. static bool parse_diff(struct pool *pool, json_t *val)
  1262. {
  1263. double diff;
  1264. diff = json_number_value(json_array_get(val, 0));
  1265. if (diff == 0)
  1266. return false;
  1267. mutex_lock(&pool->pool_lock);
  1268. pool->swork.diff = diff;
  1269. mutex_unlock(&pool->pool_lock);
  1270. applog(LOG_DEBUG, "Pool %d stratum bdifficulty set to %f", pool->pool_no, diff);
  1271. return true;
  1272. }
  1273. static bool parse_reconnect(struct pool *pool, json_t *val)
  1274. {
  1275. char *url, *port, address[256];
  1276. memset(address, 0, 255);
  1277. url = (char *)json_string_value(json_array_get(val, 0));
  1278. if (!url)
  1279. url = pool->sockaddr_url;
  1280. port = (char *)json_string_value(json_array_get(val, 1));
  1281. if (!port)
  1282. port = pool->stratum_port;
  1283. sprintf(address, "%s:%s", url, port);
  1284. if (!extract_sockaddr(pool, address))
  1285. return false;
  1286. pool->stratum_url = pool->sockaddr_url;
  1287. applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, address);
  1288. if (!restart_stratum(pool))
  1289. return false;
  1290. return true;
  1291. }
  1292. static bool send_version(struct pool *pool, json_t *val)
  1293. {
  1294. char s[RBUFSIZE], *idstr;
  1295. json_t *id = json_object_get(val, "id");
  1296. if (!(id && !json_is_null(id)))
  1297. return false;
  1298. idstr = json_dumps_ANY(id, 0);
  1299. sprintf(s, "{\"id\": %s, \"result\": \""PACKAGE"/"VERSION"\", \"error\": null}", idstr);
  1300. free(idstr);
  1301. if (!stratum_send(pool, s, strlen(s)))
  1302. return false;
  1303. return true;
  1304. }
  1305. static bool stratum_show_message(struct pool *pool, json_t *val, json_t *params)
  1306. {
  1307. char s[RBUFSIZE], *idstr;
  1308. json_t *id = json_object_get(val, "id");
  1309. char *msg = json_array_string(params, 0);
  1310. if (likely(msg))
  1311. {
  1312. free(pool->admin_msg);
  1313. pool->admin_msg = msg;
  1314. applog(LOG_NOTICE, "Message from pool %u: %s", pool->pool_no, msg);
  1315. }
  1316. if (!(id && !json_is_null(id)))
  1317. return true;
  1318. idstr = json_dumps_ANY(id, 0);
  1319. if (likely(msg))
  1320. sprintf(s, "{\"id\": %s, \"result\": true, \"error\": null}", idstr);
  1321. else
  1322. sprintf(s, "{\"id\": %s, \"result\": null, \"error\": [-1, \"Failed to parse message\", null]}", idstr);
  1323. free(idstr);
  1324. if (!stratum_send(pool, s, strlen(s)))
  1325. return false;
  1326. return true;
  1327. }
  1328. bool parse_method(struct pool *pool, char *s)
  1329. {
  1330. json_t *val = NULL, *method, *err_val, *params;
  1331. json_error_t err;
  1332. bool ret = false;
  1333. char *buf;
  1334. if (!s)
  1335. goto out;
  1336. val = JSON_LOADS(s, &err);
  1337. if (!val) {
  1338. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1339. goto out;
  1340. }
  1341. method = json_object_get(val, "method");
  1342. if (!method)
  1343. goto out;
  1344. err_val = json_object_get(val, "error");
  1345. params = json_object_get(val, "params");
  1346. if (err_val && !json_is_null(err_val)) {
  1347. char *ss;
  1348. if (err_val)
  1349. ss = json_dumps(err_val, JSON_INDENT(3));
  1350. else
  1351. ss = strdup("(unknown reason)");
  1352. applog(LOG_INFO, "JSON-RPC method decode failed: %s", ss);
  1353. free(ss);
  1354. goto out;
  1355. }
  1356. buf = (char *)json_string_value(method);
  1357. if (!buf)
  1358. goto out;
  1359. if (!strncasecmp(buf, "mining.notify", 13)) {
  1360. if (parse_notify(pool, params))
  1361. pool->stratum_notify = ret = true;
  1362. else
  1363. pool->stratum_notify = ret = false;
  1364. goto out;
  1365. }
  1366. if (!strncasecmp(buf, "mining.set_difficulty", 21) && parse_diff(pool, params)) {
  1367. ret = true;
  1368. goto out;
  1369. }
  1370. if (!strncasecmp(buf, "client.reconnect", 16) && parse_reconnect(pool, params)) {
  1371. ret = true;
  1372. goto out;
  1373. }
  1374. if (!strncasecmp(buf, "client.get_version", 18) && send_version(pool, val)) {
  1375. ret = true;
  1376. goto out;
  1377. }
  1378. if (!strncasecmp(buf, "client.show_message", 19) && stratum_show_message(pool, val, params)) {
  1379. ret = true;
  1380. goto out;
  1381. }
  1382. out:
  1383. if (val)
  1384. json_decref(val);
  1385. return ret;
  1386. }
  1387. extern bool parse_stratum_response(struct pool *, char *s);
  1388. bool auth_stratum(struct pool *pool)
  1389. {
  1390. json_t *val = NULL, *res_val, *err_val;
  1391. char s[RBUFSIZE], *sret = NULL;
  1392. json_error_t err;
  1393. bool ret = false;
  1394. sprintf(s, "{\"id\": \"auth\", \"method\": \"mining.authorize\", \"params\": [\"%s\", \"%s\"]}",
  1395. pool->rpc_user, pool->rpc_pass);
  1396. if (!stratum_send(pool, s, strlen(s)))
  1397. goto out;
  1398. /* Parse all data in the queue and anything left should be auth */
  1399. while (42) {
  1400. sret = recv_line(pool);
  1401. if (!sret)
  1402. goto out;
  1403. if (parse_method(pool, sret))
  1404. free(sret);
  1405. else
  1406. break;
  1407. }
  1408. val = JSON_LOADS(sret, &err);
  1409. free(sret);
  1410. res_val = json_object_get(val, "result");
  1411. err_val = json_object_get(val, "error");
  1412. if (!res_val || json_is_false(res_val) || (err_val && !json_is_null(err_val))) {
  1413. char *ss;
  1414. if (err_val)
  1415. ss = json_dumps(err_val, JSON_INDENT(3));
  1416. else
  1417. ss = strdup("(unknown reason)");
  1418. applog(LOG_WARNING, "JSON stratum auth failed: %s", ss);
  1419. free(ss);
  1420. goto out;
  1421. }
  1422. ret = true;
  1423. applog(LOG_INFO, "Stratum authorisation success for pool %d", pool->pool_no);
  1424. pool->probed = true;
  1425. pool->stratum_auth = true;
  1426. successful_connect = true;
  1427. out:
  1428. if (val)
  1429. json_decref(val);
  1430. if (pool->stratum_notify)
  1431. stratum_probe_transparency(pool);
  1432. return ret;
  1433. }
  1434. curl_socket_t grab_socket_opensocket_cb(void *clientp, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr)
  1435. {
  1436. struct pool *pool = clientp;
  1437. curl_socket_t sck = socket(addr->family, addr->socktype, addr->protocol);
  1438. pool->sock = sck;
  1439. return sck;
  1440. }
  1441. static bool setup_stratum_curl(struct pool *pool)
  1442. {
  1443. char curl_err_str[CURL_ERROR_SIZE];
  1444. CURL *curl = NULL;
  1445. char s[RBUFSIZE];
  1446. applog(LOG_DEBUG, "initiate_stratum with sockbuf=%p", pool->sockbuf);
  1447. mutex_lock(&pool->stratum_lock);
  1448. pool->swork.transparency_time = (time_t)-1;
  1449. pool->stratum_active = false;
  1450. pool->stratum_auth = false;
  1451. pool->stratum_notify = false;
  1452. pool->swork.transparency_probed = false;
  1453. if (!pool->stratum_curl) {
  1454. pool->stratum_curl = curl_easy_init();
  1455. if (unlikely(!pool->stratum_curl))
  1456. quit(1, "Failed to curl_easy_init in initiate_stratum");
  1457. }
  1458. if (pool->sockbuf)
  1459. pool->sockbuf[0] = '\0';
  1460. mutex_unlock(&pool->stratum_lock);
  1461. curl = pool->stratum_curl;
  1462. if (!pool->sockbuf) {
  1463. pool->sockbuf = calloc(RBUFSIZE, 1);
  1464. if (!pool->sockbuf)
  1465. quit(1, "Failed to calloc pool sockbuf in initiate_stratum");
  1466. pool->sockbuf_size = RBUFSIZE;
  1467. }
  1468. /* Create a http url for use with curl */
  1469. sprintf(s, "http://%s:%s", pool->sockaddr_url, pool->stratum_port);
  1470. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  1471. curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 30);
  1472. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_err_str);
  1473. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  1474. curl_easy_setopt(curl, CURLOPT_URL, s);
  1475. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  1476. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  1477. * to enable it */
  1478. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  1479. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  1480. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1481. // CURLINFO_LASTSOCKET is broken on Win64 (which has a wider SOCKET type than curl_easy_getinfo returns), so we use this hack for now
  1482. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, grab_socket_opensocket_cb);
  1483. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  1484. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  1485. if (pool->rpc_proxy) {
  1486. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  1487. } else if (opt_socks_proxy) {
  1488. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  1489. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
  1490. }
  1491. curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1);
  1492. pool->sock = INVSOCK;
  1493. if (curl_easy_perform(curl)) {
  1494. applog(LOG_INFO, "Stratum connect failed to pool %d: %s", pool->pool_no, curl_err_str);
  1495. return false;
  1496. }
  1497. if (pool->sock == INVSOCK)
  1498. {
  1499. pool->stratum_curl = NULL;
  1500. curl_easy_cleanup(curl);
  1501. applog(LOG_ERR, "Stratum connect succeeded, but technical problem extracting socket (pool %u)", pool->pool_no);
  1502. return false;
  1503. }
  1504. keep_sockalive(pool->sock);
  1505. pool->cgminer_pool_stats.times_sent++;
  1506. pool->cgminer_pool_stats.times_received++;
  1507. return true;
  1508. }
  1509. static char *get_sessionid(json_t *val)
  1510. {
  1511. char *ret = NULL;
  1512. json_t *arr_val;
  1513. int arrsize, i;
  1514. arr_val = json_array_get(val, 0);
  1515. if (!arr_val || !json_is_array(arr_val))
  1516. goto out;
  1517. arrsize = json_array_size(arr_val);
  1518. for (i = 0; i < arrsize; i++) {
  1519. json_t *arr = json_array_get(arr_val, i);
  1520. char *notify;
  1521. if (!arr | !json_is_array(arr))
  1522. break;
  1523. notify = __json_array_string(arr, 0);
  1524. if (!notify)
  1525. continue;
  1526. if (!strncasecmp(notify, "mining.notify", 13)) {
  1527. ret = json_array_string(arr, 1);
  1528. break;
  1529. }
  1530. }
  1531. out:
  1532. return ret;
  1533. }
  1534. bool initiate_stratum(struct pool *pool)
  1535. {
  1536. char s[RBUFSIZE], *sret = NULL, *nonce1, *sessionid;
  1537. bool ret = false, recvd = false, noresume = false;
  1538. json_t *val = NULL, *res_val, *err_val;
  1539. json_error_t err;
  1540. int n2size;
  1541. if (!setup_stratum_curl(pool))
  1542. goto out;
  1543. resend:
  1544. if (!noresume) {
  1545. if (pool->sessionid)
  1546. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\", \"%s\"]}", swork_id++, pool->sessionid);
  1547. else
  1548. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\"]}", swork_id++);
  1549. } else
  1550. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": []}", swork_id++);
  1551. if (!__stratum_send(pool, s, strlen(s))) {
  1552. applog(LOG_DEBUG, "Failed to send s in initiate_stratum");
  1553. goto out;
  1554. }
  1555. if (!socket_full(pool, true)) {
  1556. applog(LOG_DEBUG, "Timed out waiting for response in initiate_stratum");
  1557. goto out;
  1558. }
  1559. sret = recv_line(pool);
  1560. if (!sret)
  1561. goto out;
  1562. recvd = true;
  1563. val = JSON_LOADS(sret, &err);
  1564. free(sret);
  1565. if (!val) {
  1566. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1567. goto out;
  1568. }
  1569. res_val = json_object_get(val, "result");
  1570. err_val = json_object_get(val, "error");
  1571. if (!res_val || json_is_null(res_val) ||
  1572. (err_val && !json_is_null(err_val))) {
  1573. char *ss;
  1574. if (err_val)
  1575. ss = json_dumps(err_val, JSON_INDENT(3));
  1576. else
  1577. ss = strdup("(unknown reason)");
  1578. applog(LOG_INFO, "JSON-RPC decode failed: %s", ss);
  1579. free(ss);
  1580. goto out;
  1581. }
  1582. sessionid = get_sessionid(res_val);
  1583. if (!sessionid)
  1584. applog(LOG_DEBUG, "Failed to get sessionid in initiate_stratum");
  1585. nonce1 = json_array_string(res_val, 1);
  1586. if (!nonce1) {
  1587. applog(LOG_INFO, "Failed to get nonce1 in initiate_stratum");
  1588. free(sessionid);
  1589. goto out;
  1590. }
  1591. n2size = json_integer_value(json_array_get(res_val, 2));
  1592. if (!n2size) {
  1593. applog(LOG_INFO, "Failed to get n2size in initiate_stratum");
  1594. free(sessionid);
  1595. free(nonce1);
  1596. goto out;
  1597. }
  1598. mutex_lock(&pool->pool_lock);
  1599. free(pool->sessionid);
  1600. pool->sessionid = sessionid;
  1601. free(pool->nonce1);
  1602. pool->nonce1 = nonce1;
  1603. pool->n1_len = strlen(nonce1) / 2;
  1604. pool->n2size = n2size;
  1605. mutex_unlock(&pool->pool_lock);
  1606. if (sessionid)
  1607. applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid);
  1608. ret = true;
  1609. out:
  1610. if (val)
  1611. json_decref(val);
  1612. if (ret) {
  1613. if (!pool->stratum_url)
  1614. pool->stratum_url = pool->sockaddr_url;
  1615. pool->stratum_active = true;
  1616. pool->swork.diff = 1;
  1617. if (opt_protocol) {
  1618. applog(LOG_DEBUG, "Pool %d confirmed mining.subscribe with extranonce1 %s extran2size %d",
  1619. pool->pool_no, pool->nonce1, pool->n2size);
  1620. }
  1621. } else {
  1622. if (recvd && !noresume) {
  1623. applog(LOG_DEBUG, "Failed to resume stratum, trying afresh");
  1624. noresume = true;
  1625. goto resend;
  1626. }
  1627. applog(LOG_DEBUG, "Initiate stratum failed");
  1628. if (pool->sock != INVSOCK) {
  1629. shutdown(pool->sock, SHUT_RDWR);
  1630. pool->sock = INVSOCK;
  1631. }
  1632. }
  1633. return ret;
  1634. }
  1635. void suspend_stratum(struct pool *pool)
  1636. {
  1637. clear_sockbuf(pool);
  1638. applog(LOG_INFO, "Closing socket for stratum pool %d", pool->pool_no);
  1639. mutex_lock(&pool->stratum_lock);
  1640. pool->stratum_active = false;
  1641. pool->stratum_auth = false;
  1642. curl_easy_cleanup(pool->stratum_curl);
  1643. pool->stratum_curl = NULL;
  1644. pool->sock = INVSOCK;
  1645. mutex_unlock(&pool->stratum_lock);
  1646. }
  1647. bool restart_stratum(struct pool *pool)
  1648. {
  1649. if (pool->stratum_active)
  1650. suspend_stratum(pool);
  1651. if (!initiate_stratum(pool))
  1652. return false;
  1653. if (!auth_stratum(pool))
  1654. return false;
  1655. return true;
  1656. }
  1657. void dev_error(struct cgpu_info *dev, enum dev_reason reason)
  1658. {
  1659. dev->device_last_not_well = time(NULL);
  1660. dev->device_not_well_reason = reason;
  1661. switch (reason) {
  1662. case REASON_THREAD_FAIL_INIT:
  1663. dev->thread_fail_init_count++;
  1664. break;
  1665. case REASON_THREAD_ZERO_HASH:
  1666. dev->thread_zero_hash_count++;
  1667. break;
  1668. case REASON_THREAD_FAIL_QUEUE:
  1669. dev->thread_fail_queue_count++;
  1670. break;
  1671. case REASON_DEV_SICK_IDLE_60:
  1672. dev->dev_sick_idle_60_count++;
  1673. break;
  1674. case REASON_DEV_DEAD_IDLE_600:
  1675. dev->dev_dead_idle_600_count++;
  1676. break;
  1677. case REASON_DEV_NOSTART:
  1678. dev->dev_nostart_count++;
  1679. break;
  1680. case REASON_DEV_OVER_HEAT:
  1681. dev->dev_over_heat_count++;
  1682. break;
  1683. case REASON_DEV_THERMAL_CUTOFF:
  1684. dev->dev_thermal_cutoff_count++;
  1685. break;
  1686. case REASON_DEV_COMMS_ERROR:
  1687. dev->dev_comms_error_count++;
  1688. break;
  1689. case REASON_DEV_THROTTLE:
  1690. dev->dev_throttle_count++;
  1691. break;
  1692. }
  1693. }
  1694. /* Realloc an existing string to fit an extra string s, appending s to it. */
  1695. void *realloc_strcat(char *ptr, char *s)
  1696. {
  1697. size_t old = strlen(ptr), len = strlen(s);
  1698. char *ret;
  1699. if (!len)
  1700. return ptr;
  1701. len += old + 1;
  1702. align_len(&len);
  1703. ret = malloc(len);
  1704. if (unlikely(!ret))
  1705. quit(1, "Failed to malloc in realloc_strcat");
  1706. sprintf(ret, "%s%s", ptr, s);
  1707. free(ptr);
  1708. return ret;
  1709. }
  1710. static
  1711. bool sanechars[] = {
  1712. false, false, false, false, false, false, false, false,
  1713. false, false, false, false, false, false, false, false,
  1714. false, false, false, false, false, false, false, false,
  1715. false, false, false, false, false, false, false, false,
  1716. false, false, false, false, false, false, false, false,
  1717. false, false, false, false, false, false, false, false,
  1718. true , true , true , true , true , true , true , true ,
  1719. true , true , false, false, false, false, false, false,
  1720. false, true , true , true , true , true , true , true ,
  1721. true , true , true , true , true , true , true , true ,
  1722. true , true , true , true , true , true , true , true ,
  1723. true , true , true , false, false, false, false, false,
  1724. false, true , true , true , true , true , true , true ,
  1725. true , true , true , true , true , true , true , true ,
  1726. true , true , true , true , true , true , true , true ,
  1727. true , true , true , false, false, false, false, false,
  1728. };
  1729. char *sanestr(char *o, char *s)
  1730. {
  1731. char *rv = o;
  1732. bool br = false;
  1733. for ( ; s[0]; ++s)
  1734. {
  1735. if (sanechars[s[0] & 0x7f])
  1736. {
  1737. if (br)
  1738. {
  1739. br = false;
  1740. if (s[0] >= '0' && s[0] <= '9')
  1741. (o++)[0] = '_';
  1742. }
  1743. (o++)[0] = s[0];
  1744. }
  1745. else
  1746. if (o != s && o[-1] >= '0' && o[-1] <= '9')
  1747. br = true;
  1748. }
  1749. o[0] = '\0';
  1750. return rv;
  1751. }
  1752. void RenameThread(const char* name)
  1753. {
  1754. #if defined(PR_SET_NAME)
  1755. // Only the first 15 characters are used (16 - NUL terminator)
  1756. prctl(PR_SET_NAME, name, 0, 0, 0);
  1757. #elif defined(__APPLE__)
  1758. pthread_setname_np(name);
  1759. #elif (defined(__FreeBSD__) || defined(__OpenBSD__))
  1760. pthread_set_name_np(pthread_self(), name);
  1761. #else
  1762. // Prevent warnings for unused parameters...
  1763. (void)name;
  1764. #endif
  1765. }
  1766. #ifdef WIN32
  1767. static const char *WindowsErrorStr(DWORD dwMessageId)
  1768. {
  1769. static LPSTR msg = NULL;
  1770. if (msg)
  1771. LocalFree(msg);
  1772. if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, 0, dwMessageId, 0, (LPSTR)&msg, 0, 0))
  1773. return msg;
  1774. static const char fmt[] = "Error #%ld";
  1775. signed long ldMsgId = dwMessageId;
  1776. int sz = snprintf((char*)&sz, 0, fmt, ldMsgId) + 1;
  1777. msg = (LPTSTR)LocalAlloc(LMEM_FIXED, sz);
  1778. sprintf((char*)msg, fmt, ldMsgId);
  1779. return msg;
  1780. }
  1781. #endif
  1782. void notifier_init(notifier_t pipefd)
  1783. {
  1784. #ifdef WIN32
  1785. SOCKET listener, connecter, acceptor;
  1786. listener = socket(AF_INET, SOCK_STREAM, 0);
  1787. if (listener == INVALID_SOCKET)
  1788. quit(1, "Failed to create listener socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1789. connecter = socket(AF_INET, SOCK_STREAM, 0);
  1790. if (connecter == INVALID_SOCKET)
  1791. quit(1, "Failed to create connect socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1792. struct sockaddr_in inaddr = {
  1793. .sin_family = AF_INET,
  1794. .sin_addr = {
  1795. .s_addr = htonl(INADDR_LOOPBACK),
  1796. },
  1797. .sin_port = 0,
  1798. };
  1799. {
  1800. char reuse = 1;
  1801. setsockopt(listener, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
  1802. }
  1803. if (bind(listener, (struct sockaddr*)&inaddr, sizeof(inaddr)) == SOCKET_ERROR)
  1804. quit(1, "Failed to bind listener socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1805. socklen_t inaddr_sz = sizeof(inaddr);
  1806. if (getsockname(listener, (struct sockaddr*)&inaddr, &inaddr_sz) == SOCKET_ERROR)
  1807. quit(1, "Failed to getsockname in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1808. if (listen(listener, 1) == SOCKET_ERROR)
  1809. quit(1, "Failed to listen in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1810. inaddr.sin_family = AF_INET;
  1811. inaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
  1812. if (connect(connecter, (struct sockaddr*)&inaddr, inaddr_sz) == SOCKET_ERROR)
  1813. quit(1, "Failed to connect in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1814. acceptor = accept(listener, NULL, NULL);
  1815. if (acceptor == INVALID_SOCKET)
  1816. quit(1, "Failed to accept in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1817. closesocket(listener);
  1818. pipefd[0] = connecter;
  1819. pipefd[1] = acceptor;
  1820. #else
  1821. if (pipe(pipefd))
  1822. quit(1, "Failed to create pipe in create_notifier");
  1823. #endif
  1824. }
  1825. void notifier_wake(notifier_t fd)
  1826. {
  1827. if (fd[1] == INVSOCK)
  1828. return;
  1829. #ifdef WIN32
  1830. (void)send(fd[1], "\0", 1, 0);
  1831. #else
  1832. (void)write(fd[1], "\0", 1);
  1833. #endif
  1834. }
  1835. void notifier_read(notifier_t fd)
  1836. {
  1837. char buf[0x10];
  1838. #ifdef WIN32
  1839. (void)recv(fd[0], buf, sizeof(buf), 0);
  1840. #else
  1841. (void)read(fd[0], buf, sizeof(buf));
  1842. #endif
  1843. }
  1844. void notifier_destroy(notifier_t fd)
  1845. {
  1846. #ifdef WIN32
  1847. closesocket(fd[0]);
  1848. closesocket(fd[1]);
  1849. #else
  1850. close(fd[0]);
  1851. close(fd[1]);
  1852. #endif
  1853. fd[0] = fd[1] = INVSOCK;
  1854. }