util.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675
  1. /*
  2. * Copyright 2011-2012 Con Kolivas
  3. * Copyright 2010 Jeff Garzik
  4. * Copyright 2012 Giel van Schijndel
  5. * Copyright 2012 Gavin Andresen
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef WIN32
  14. #define FD_SETSIZE 4096
  15. #endif
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <ctype.h>
  19. #include <stdarg.h>
  20. #include <string.h>
  21. #include <pthread.h>
  22. #include <jansson.h>
  23. #include <curl/curl.h>
  24. #include <time.h>
  25. #include <errno.h>
  26. #include <unistd.h>
  27. #include <sys/types.h>
  28. #ifdef HAVE_SYS_PRCTL_H
  29. # include <sys/prctl.h>
  30. #endif
  31. #if defined(__FreeBSD__) || defined(__OpenBSD__)
  32. # include <pthread_np.h>
  33. #endif
  34. #ifndef WIN32
  35. # ifdef __linux
  36. # include <sys/prctl.h>
  37. # endif
  38. # include <sys/socket.h>
  39. # include <netinet/in.h>
  40. # include <netinet/tcp.h>
  41. # include <netdb.h>
  42. #else
  43. # include <winsock2.h>
  44. # include <mstcpip.h>
  45. # include <ws2tcpip.h>
  46. #endif
  47. #include "miner.h"
  48. #include "elist.h"
  49. #include "compat.h"
  50. #include "util.h"
  51. bool successful_connect = false;
  52. struct timeval nettime;
  53. struct upload_buffer {
  54. const void *buf;
  55. size_t len;
  56. };
  57. struct header_info {
  58. char *lp_path;
  59. int rolltime;
  60. char *reason;
  61. char *stratum_url;
  62. bool hadrolltime;
  63. bool canroll;
  64. bool hadexpire;
  65. };
  66. struct tq_ent {
  67. void *data;
  68. struct list_head q_node;
  69. };
  70. static void databuf_free(struct data_buffer *db)
  71. {
  72. if (!db)
  73. return;
  74. free(db->buf);
  75. memset(db, 0, sizeof(*db));
  76. }
  77. static size_t all_data_cb(const void *ptr, size_t size, size_t nmemb,
  78. void *user_data)
  79. {
  80. struct data_buffer *db = user_data;
  81. size_t len = size * nmemb;
  82. size_t oldlen, newlen;
  83. void *newmem;
  84. static const unsigned char zero = 0;
  85. if (db->idlemarker) {
  86. const unsigned char *cptr = ptr;
  87. for (size_t i = 0; i < len; ++i)
  88. if (!(isspace(cptr[i]) || cptr[i] == '{')) {
  89. *db->idlemarker = CURL_SOCKET_BAD;
  90. db->idlemarker = NULL;
  91. break;
  92. }
  93. }
  94. oldlen = db->len;
  95. newlen = oldlen + len;
  96. newmem = realloc(db->buf, newlen + 1);
  97. if (!newmem)
  98. return 0;
  99. db->buf = newmem;
  100. db->len = newlen;
  101. memcpy(db->buf + oldlen, ptr, len);
  102. memcpy(db->buf + newlen, &zero, 1); /* null terminate */
  103. return len;
  104. }
  105. static size_t upload_data_cb(void *ptr, size_t size, size_t nmemb,
  106. void *user_data)
  107. {
  108. struct upload_buffer *ub = user_data;
  109. unsigned int len = size * nmemb;
  110. if (len > ub->len)
  111. len = ub->len;
  112. if (len) {
  113. memcpy(ptr, ub->buf, len);
  114. ub->buf += len;
  115. ub->len -= len;
  116. }
  117. return len;
  118. }
  119. static size_t resp_hdr_cb(void *ptr, size_t size, size_t nmemb, void *user_data)
  120. {
  121. struct header_info *hi = user_data;
  122. size_t remlen, slen, ptrlen = size * nmemb;
  123. char *rem, *val = NULL, *key = NULL;
  124. void *tmp;
  125. val = calloc(1, ptrlen);
  126. key = calloc(1, ptrlen);
  127. if (!key || !val)
  128. goto out;
  129. tmp = memchr(ptr, ':', ptrlen);
  130. if (!tmp || (tmp == ptr)) /* skip empty keys / blanks */
  131. goto out;
  132. slen = tmp - ptr;
  133. if ((slen + 1) == ptrlen) /* skip key w/ no value */
  134. goto out;
  135. memcpy(key, ptr, slen); /* store & nul term key */
  136. key[slen] = 0;
  137. rem = ptr + slen + 1; /* trim value's leading whitespace */
  138. remlen = ptrlen - slen - 1;
  139. while ((remlen > 0) && (isspace(*rem))) {
  140. remlen--;
  141. rem++;
  142. }
  143. memcpy(val, rem, remlen); /* store value, trim trailing ws */
  144. val[remlen] = 0;
  145. while ((*val) && (isspace(val[strlen(val) - 1])))
  146. val[strlen(val) - 1] = 0;
  147. if (!*val) /* skip blank value */
  148. goto out;
  149. if (opt_protocol)
  150. applog(LOG_DEBUG, "HTTP hdr(%s): %s", key, val);
  151. if (!strcasecmp("X-Roll-Ntime", key)) {
  152. hi->hadrolltime = true;
  153. if (!strncasecmp("N", val, 1))
  154. applog(LOG_DEBUG, "X-Roll-Ntime: N found");
  155. else {
  156. hi->canroll = true;
  157. /* Check to see if expire= is supported and if not, set
  158. * the rolltime to the default scantime */
  159. if (strlen(val) > 7 && !strncasecmp("expire=", val, 7)) {
  160. sscanf(val + 7, "%d", &hi->rolltime);
  161. hi->hadexpire = true;
  162. } else
  163. hi->rolltime = opt_scantime;
  164. applog(LOG_DEBUG, "X-Roll-Ntime expiry set to %d", hi->rolltime);
  165. }
  166. }
  167. if (!strcasecmp("X-Long-Polling", key)) {
  168. hi->lp_path = val; /* steal memory reference */
  169. val = NULL;
  170. }
  171. if (!strcasecmp("X-Reject-Reason", key)) {
  172. hi->reason = val; /* steal memory reference */
  173. val = NULL;
  174. }
  175. if (!strcasecmp("X-Stratum", key)) {
  176. hi->stratum_url = val;
  177. val = NULL;
  178. }
  179. out:
  180. free(key);
  181. free(val);
  182. return ptrlen;
  183. }
  184. static int keep_sockalive(SOCKETTYPE fd)
  185. {
  186. const int tcp_keepidle = 60;
  187. const int tcp_keepintvl = 60;
  188. const int keepalive = 1;
  189. int ret = 0;
  190. #ifndef WIN32
  191. const int tcp_keepcnt = 5;
  192. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof(keepalive))))
  193. ret = 1;
  194. # ifdef __linux
  195. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPCNT, &tcp_keepcnt, sizeof(tcp_keepcnt))))
  196. ret = 1;
  197. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPIDLE, &tcp_keepidle, sizeof(tcp_keepidle))))
  198. ret = 1;
  199. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPINTVL, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  200. ret = 1;
  201. # endif /* __linux */
  202. # ifdef __APPLE_CC__
  203. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  204. ret = 1;
  205. # endif /* __APPLE_CC__ */
  206. #else /* WIN32 */
  207. const int zero = 0;
  208. struct tcp_keepalive vals;
  209. vals.onoff = 1;
  210. vals.keepalivetime = tcp_keepidle * 1000;
  211. vals.keepaliveinterval = tcp_keepintvl * 1000;
  212. DWORD outputBytes;
  213. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (const char *)&keepalive, sizeof(keepalive))))
  214. ret = 1;
  215. if (unlikely(WSAIoctl(fd, SIO_KEEPALIVE_VALS, &vals, sizeof(vals), NULL, 0, &outputBytes, NULL, NULL)))
  216. ret = 1;
  217. /* Windows happily submits indefinitely to the send buffer blissfully
  218. * unaware nothing is getting there without gracefully failing unless
  219. * we disable the send buffer */
  220. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const char *)&zero, sizeof(zero))))
  221. ret = 1;
  222. #endif /* WIN32 */
  223. return ret;
  224. }
  225. int json_rpc_call_sockopt_cb(void __maybe_unused *userdata, curl_socket_t fd,
  226. curlsocktype __maybe_unused purpose)
  227. {
  228. return keep_sockalive(fd);
  229. }
  230. static void last_nettime(struct timeval *last)
  231. {
  232. rd_lock(&netacc_lock);
  233. last->tv_sec = nettime.tv_sec;
  234. last->tv_usec = nettime.tv_usec;
  235. rd_unlock(&netacc_lock);
  236. }
  237. static void set_nettime(void)
  238. {
  239. wr_lock(&netacc_lock);
  240. gettimeofday(&nettime, NULL);
  241. wr_unlock(&netacc_lock);
  242. }
  243. struct json_rpc_call_state {
  244. struct data_buffer all_data;
  245. struct header_info hi;
  246. void *priv;
  247. char curl_err_str[CURL_ERROR_SIZE];
  248. struct curl_slist *headers;
  249. struct upload_buffer upload_data;
  250. struct pool *pool;
  251. };
  252. void json_rpc_call_async(CURL *curl, const char *url,
  253. const char *userpass, const char *rpc_req,
  254. bool longpoll,
  255. struct pool *pool, bool share,
  256. void *priv)
  257. {
  258. struct json_rpc_call_state *state = malloc(sizeof(struct json_rpc_call_state));
  259. *state = (struct json_rpc_call_state){
  260. .priv = priv,
  261. .pool = pool,
  262. };
  263. long timeout = longpoll ? (60 * 60) : 60;
  264. char len_hdr[64], user_agent_hdr[128];
  265. struct curl_slist *headers = NULL;
  266. if (longpoll)
  267. state->all_data.idlemarker = &pool->lp_socket;
  268. /* it is assumed that 'curl' is freshly [re]initialized at this pt */
  269. curl_easy_setopt(curl, CURLOPT_PRIVATE, state);
  270. curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  271. #if 0 /* Disable curl debugging since it spews to stderr */
  272. if (opt_protocol)
  273. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  274. #endif
  275. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  276. curl_easy_setopt(curl, CURLOPT_URL, url);
  277. curl_easy_setopt(curl, CURLOPT_ENCODING, "");
  278. curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  279. /* Shares are staggered already and delays in submission can be costly
  280. * so do not delay them */
  281. if (!opt_delaynet || share)
  282. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  283. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, all_data_cb);
  284. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &state->all_data);
  285. curl_easy_setopt(curl, CURLOPT_READFUNCTION, upload_data_cb);
  286. curl_easy_setopt(curl, CURLOPT_READDATA, &state->upload_data);
  287. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, &state->curl_err_str[0]);
  288. curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
  289. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, resp_hdr_cb);
  290. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &state->hi);
  291. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  292. if (pool->rpc_proxy) {
  293. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  294. } else if (opt_socks_proxy) {
  295. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  296. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
  297. }
  298. if (userpass) {
  299. curl_easy_setopt(curl, CURLOPT_USERPWD, userpass);
  300. curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  301. }
  302. if (longpoll)
  303. curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, json_rpc_call_sockopt_cb);
  304. curl_easy_setopt(curl, CURLOPT_POST, 1);
  305. if (opt_protocol)
  306. applog(LOG_DEBUG, "JSON protocol request:\n%s", rpc_req);
  307. state->upload_data.buf = rpc_req;
  308. state->upload_data.len = strlen(rpc_req);
  309. sprintf(len_hdr, "Content-Length: %lu",
  310. (unsigned long) state->upload_data.len);
  311. sprintf(user_agent_hdr, "User-Agent: %s", PACKAGE_STRING);
  312. headers = curl_slist_append(headers,
  313. "Content-type: application/json");
  314. headers = curl_slist_append(headers,
  315. "X-Mining-Extensions: longpoll midstate rollntime submitold");
  316. if (longpoll)
  317. headers = curl_slist_append(headers,
  318. "X-Minimum-Wait: 0");
  319. if (likely(global_hashrate)) {
  320. char ghashrate[255];
  321. sprintf(ghashrate, "X-Mining-Hashrate: %llu", global_hashrate);
  322. headers = curl_slist_append(headers, ghashrate);
  323. }
  324. headers = curl_slist_append(headers, len_hdr);
  325. headers = curl_slist_append(headers, user_agent_hdr);
  326. headers = curl_slist_append(headers, "Expect:"); /* disable Expect hdr*/
  327. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  328. state->headers = headers;
  329. if (opt_delaynet) {
  330. /* Don't delay share submission, but still track the nettime */
  331. if (!share) {
  332. long long now_msecs, last_msecs;
  333. struct timeval now, last;
  334. gettimeofday(&now, NULL);
  335. last_nettime(&last);
  336. now_msecs = (long long)now.tv_sec * 1000;
  337. now_msecs += now.tv_usec / 1000;
  338. last_msecs = (long long)last.tv_sec * 1000;
  339. last_msecs += last.tv_usec / 1000;
  340. if (now_msecs > last_msecs && now_msecs - last_msecs < 250) {
  341. struct timespec rgtp;
  342. rgtp.tv_sec = 0;
  343. rgtp.tv_nsec = (250 - (now_msecs - last_msecs)) * 1000000;
  344. nanosleep(&rgtp, NULL);
  345. }
  346. }
  347. set_nettime();
  348. }
  349. }
  350. json_t *json_rpc_call_completed(CURL *curl, int rc, bool probe, int *rolltime, void *out_priv)
  351. {
  352. struct json_rpc_call_state *state;
  353. if (curl_easy_getinfo(curl, CURLINFO_PRIVATE, &state) != CURLE_OK) {
  354. applog(LOG_ERR, "Failed to get private curl data");
  355. if (out_priv)
  356. *(void**)out_priv = NULL;
  357. goto err_out;
  358. }
  359. if (out_priv)
  360. *(void**)out_priv = state->priv;
  361. json_t *val, *err_val, *res_val;
  362. double byte_count;
  363. json_error_t err;
  364. struct pool *pool = state->pool;
  365. bool probing = probe && !pool->probed;
  366. if (rc) {
  367. applog(LOG_INFO, "HTTP request failed: %s", state->curl_err_str);
  368. goto err_out;
  369. }
  370. if (!state->all_data.buf) {
  371. applog(LOG_DEBUG, "Empty data received in json_rpc_call.");
  372. goto err_out;
  373. }
  374. pool->cgminer_pool_stats.times_sent++;
  375. if (curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD, &byte_count) == CURLE_OK)
  376. pool->cgminer_pool_stats.bytes_sent += byte_count;
  377. pool->cgminer_pool_stats.times_received++;
  378. if (curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, &byte_count) == CURLE_OK)
  379. pool->cgminer_pool_stats.bytes_received += byte_count;
  380. if (probing) {
  381. pool->probed = true;
  382. /* If X-Long-Polling was found, activate long polling */
  383. if (state->hi.lp_path) {
  384. if (pool->hdr_path != NULL)
  385. free(pool->hdr_path);
  386. pool->hdr_path = state->hi.lp_path;
  387. } else
  388. pool->hdr_path = NULL;
  389. if (state->hi.stratum_url) {
  390. pool->stratum_url = state->hi.stratum_url;
  391. state->hi.stratum_url = NULL;
  392. }
  393. } else {
  394. if (state->hi.lp_path) {
  395. free(state->hi.lp_path);
  396. state->hi.lp_path = NULL;
  397. }
  398. if (state->hi.stratum_url) {
  399. free(state->hi.stratum_url);
  400. state->hi.stratum_url = NULL;
  401. }
  402. }
  403. if (rolltime)
  404. *rolltime = state->hi.rolltime;
  405. pool->cgminer_pool_stats.rolltime = state->hi.rolltime;
  406. pool->cgminer_pool_stats.hadrolltime = state->hi.hadrolltime;
  407. pool->cgminer_pool_stats.canroll = state->hi.canroll;
  408. pool->cgminer_pool_stats.hadexpire = state->hi.hadexpire;
  409. val = JSON_LOADS(state->all_data.buf, &err);
  410. if (!val) {
  411. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  412. if (opt_protocol)
  413. applog(LOG_DEBUG, "JSON protocol response:\n%s", state->all_data.buf);
  414. goto err_out;
  415. }
  416. if (opt_protocol) {
  417. char *s = json_dumps(val, JSON_INDENT(3));
  418. applog(LOG_DEBUG, "JSON protocol response:\n%s", s);
  419. free(s);
  420. }
  421. /* JSON-RPC valid response returns a non-null 'result',
  422. * and a null 'error'.
  423. */
  424. res_val = json_object_get(val, "result");
  425. err_val = json_object_get(val, "error");
  426. if (!res_val ||(err_val && !json_is_null(err_val))) {
  427. char *s;
  428. if (err_val)
  429. s = json_dumps(err_val, JSON_INDENT(3));
  430. else
  431. s = strdup("(unknown reason)");
  432. applog(LOG_INFO, "JSON-RPC call failed: %s", s);
  433. free(s);
  434. json_decref(val);
  435. goto err_out;
  436. }
  437. if (state->hi.reason) {
  438. json_object_set_new(val, "reject-reason", json_string(state->hi.reason));
  439. free(state->hi.reason);
  440. state->hi.reason = NULL;
  441. }
  442. successful_connect = true;
  443. databuf_free(&state->all_data);
  444. curl_slist_free_all(state->headers);
  445. curl_easy_reset(curl);
  446. free(state);
  447. return val;
  448. err_out:
  449. databuf_free(&state->all_data);
  450. curl_slist_free_all(state->headers);
  451. curl_easy_reset(curl);
  452. if (!successful_connect)
  453. applog(LOG_DEBUG, "Failed to connect in json_rpc_call");
  454. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  455. free(state);
  456. return NULL;
  457. }
  458. json_t *json_rpc_call(CURL *curl, const char *url,
  459. const char *userpass, const char *rpc_req,
  460. bool probe, bool longpoll, int *rolltime,
  461. struct pool *pool, bool share)
  462. {
  463. json_rpc_call_async(curl, url, userpass, rpc_req, longpoll, pool, share, NULL);
  464. int rc = curl_easy_perform(curl);
  465. return json_rpc_call_completed(curl, rc, probe, rolltime, NULL);
  466. }
  467. bool our_curl_supports_proxy_uris()
  468. {
  469. curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
  470. return data->age && data->version_num >= (( 7 <<16)|( 21 <<8)| 7); // 7.21.7
  471. }
  472. /* Returns a malloced array string of a binary value of arbitrary length. The
  473. * array is rounded up to a 4 byte size to appease architectures that need
  474. * aligned array sizes */
  475. char *bin2hex(const unsigned char *p, size_t len)
  476. {
  477. unsigned int i;
  478. ssize_t slen;
  479. char *s;
  480. slen = len * 2 + 1;
  481. if (slen % 4)
  482. slen += 4 - (slen % 4);
  483. s = calloc(slen, 1);
  484. if (unlikely(!s))
  485. quit(1, "Failed to calloc in bin2hex");
  486. for (i = 0; i < len; i++)
  487. sprintf(s + (i * 2), "%02x", (unsigned int) p[i]);
  488. return s;
  489. }
  490. /* Does the reverse of bin2hex but does not allocate any ram */
  491. bool hex2bin(unsigned char *p, const char *hexstr, size_t len)
  492. {
  493. bool ret = false;
  494. while (*hexstr && len) {
  495. char hex_byte[4];
  496. unsigned int v;
  497. if (unlikely(!hexstr[1])) {
  498. applog(LOG_ERR, "hex2bin str truncated");
  499. return ret;
  500. }
  501. memset(hex_byte, 0, 4);
  502. hex_byte[0] = hexstr[0];
  503. hex_byte[1] = hexstr[1];
  504. if (unlikely(sscanf(hex_byte, "%x", &v) != 1)) {
  505. applog(LOG_ERR, "hex2bin sscanf '%s' failed", hex_byte);
  506. return ret;
  507. }
  508. *p = (unsigned char) v;
  509. p++;
  510. hexstr += 2;
  511. len--;
  512. }
  513. if (likely(len == 0 && *hexstr == 0))
  514. ret = true;
  515. return ret;
  516. }
  517. void hash_data(unsigned char *out_hash, const unsigned char *data)
  518. {
  519. unsigned char blkheader[80];
  520. // 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
  521. swap32yes(blkheader, data, 80 / 4);
  522. // double-SHA256 to get the block hash
  523. gen_hash(blkheader, out_hash, 80);
  524. }
  525. void real_block_target(unsigned char *target, const unsigned char *data)
  526. {
  527. uint8_t targetshift;
  528. targetshift = data[72] - 3;
  529. memset(target, 0, targetshift);
  530. target[targetshift++] = data[75];
  531. target[targetshift++] = data[74];
  532. target[targetshift++] = data[73];
  533. memset(&target[targetshift], 0, 0x20 - targetshift);
  534. }
  535. bool hash_target_check(const unsigned char *hash, const unsigned char *target)
  536. {
  537. const uint32_t *h32 = (uint32_t*)&hash[0];
  538. const uint32_t *t32 = (uint32_t*)&target[0];
  539. for (int i = 7; i >= 0; --i) {
  540. uint32_t h32i = le32toh(h32[i]);
  541. uint32_t t32i = le32toh(t32[i]);
  542. if (h32i > t32i)
  543. return false;
  544. if (h32i < t32i)
  545. return true;
  546. }
  547. return true;
  548. }
  549. bool hash_target_check_v(const unsigned char *hash, const unsigned char *target)
  550. {
  551. bool rc;
  552. rc = hash_target_check(hash, target);
  553. if (opt_debug) {
  554. unsigned char hash_swap[32], target_swap[32];
  555. char *hash_str, *target_str;
  556. for (int i = 0; i < 32; ++i) {
  557. hash_swap[i] = hash[31-i];
  558. target_swap[i] = target[31-i];
  559. }
  560. hash_str = bin2hex(hash_swap, 32);
  561. target_str = bin2hex(target_swap, 32);
  562. applog(LOG_DEBUG, " Proof: %s\nTarget: %s\nTrgVal? %s",
  563. hash_str,
  564. target_str,
  565. rc ? "YES (hash < target)" :
  566. "no (false positive; hash > target)");
  567. free(hash_str);
  568. free(target_str);
  569. }
  570. return rc;
  571. }
  572. // DEPRECATED: This uses an input hash that has every 4 bytes flipped
  573. bool fulltest(const unsigned char *hash, const unsigned char *target)
  574. {
  575. unsigned char hash2[32];
  576. swap32yes(hash2, hash, 32 / 4);
  577. return hash_target_check_v(hash2, target);
  578. }
  579. struct thread_q *tq_new(void)
  580. {
  581. struct thread_q *tq;
  582. tq = calloc(1, sizeof(*tq));
  583. if (!tq)
  584. return NULL;
  585. INIT_LIST_HEAD(&tq->q);
  586. pthread_mutex_init(&tq->mutex, NULL);
  587. pthread_cond_init(&tq->cond, NULL);
  588. return tq;
  589. }
  590. void tq_free(struct thread_q *tq)
  591. {
  592. struct tq_ent *ent, *iter;
  593. if (!tq)
  594. return;
  595. list_for_each_entry_safe(ent, iter, &tq->q, q_node) {
  596. list_del(&ent->q_node);
  597. free(ent);
  598. }
  599. pthread_cond_destroy(&tq->cond);
  600. pthread_mutex_destroy(&tq->mutex);
  601. memset(tq, 0, sizeof(*tq)); /* poison */
  602. free(tq);
  603. }
  604. static void tq_freezethaw(struct thread_q *tq, bool frozen)
  605. {
  606. mutex_lock(&tq->mutex);
  607. tq->frozen = frozen;
  608. pthread_cond_signal(&tq->cond);
  609. mutex_unlock(&tq->mutex);
  610. }
  611. void tq_freeze(struct thread_q *tq)
  612. {
  613. tq_freezethaw(tq, true);
  614. }
  615. void tq_thaw(struct thread_q *tq)
  616. {
  617. tq_freezethaw(tq, false);
  618. }
  619. bool tq_push(struct thread_q *tq, void *data)
  620. {
  621. struct tq_ent *ent;
  622. bool rc = true;
  623. ent = calloc(1, sizeof(*ent));
  624. if (!ent)
  625. return false;
  626. ent->data = data;
  627. INIT_LIST_HEAD(&ent->q_node);
  628. mutex_lock(&tq->mutex);
  629. if (!tq->frozen) {
  630. list_add_tail(&ent->q_node, &tq->q);
  631. } else {
  632. free(ent);
  633. rc = false;
  634. }
  635. pthread_cond_signal(&tq->cond);
  636. mutex_unlock(&tq->mutex);
  637. return rc;
  638. }
  639. void *tq_pop(struct thread_q *tq, const struct timespec *abstime)
  640. {
  641. struct tq_ent *ent;
  642. void *rval = NULL;
  643. int rc;
  644. mutex_lock(&tq->mutex);
  645. if (!list_empty(&tq->q))
  646. goto pop;
  647. if (abstime)
  648. rc = pthread_cond_timedwait(&tq->cond, &tq->mutex, abstime);
  649. else
  650. rc = pthread_cond_wait(&tq->cond, &tq->mutex);
  651. if (rc)
  652. goto out;
  653. if (list_empty(&tq->q))
  654. goto out;
  655. pop:
  656. ent = list_entry(tq->q.next, struct tq_ent, q_node);
  657. rval = ent->data;
  658. list_del(&ent->q_node);
  659. free(ent);
  660. out:
  661. mutex_unlock(&tq->mutex);
  662. return rval;
  663. }
  664. int thr_info_create(struct thr_info *thr, pthread_attr_t *attr, void *(*start) (void *), void *arg)
  665. {
  666. return pthread_create(&thr->pth, attr, start, arg);
  667. }
  668. void thr_info_freeze(struct thr_info *thr)
  669. {
  670. struct tq_ent *ent, *iter;
  671. struct thread_q *tq;
  672. if (!thr)
  673. return;
  674. tq = thr->q;
  675. if (!tq)
  676. return;
  677. mutex_lock(&tq->mutex);
  678. tq->frozen = true;
  679. list_for_each_entry_safe(ent, iter, &tq->q, q_node) {
  680. list_del(&ent->q_node);
  681. free(ent);
  682. }
  683. mutex_unlock(&tq->mutex);
  684. }
  685. void thr_info_cancel(struct thr_info *thr)
  686. {
  687. if (!thr)
  688. return;
  689. if (PTH(thr) != 0L) {
  690. pthread_cancel(thr->pth);
  691. PTH(thr) = 0L;
  692. }
  693. }
  694. /* Provide a ms based sleep that uses nanosleep to avoid poor usleep accuracy
  695. * on SMP machines */
  696. void nmsleep(unsigned int msecs)
  697. {
  698. struct timespec twait, tleft;
  699. int ret;
  700. ldiv_t d;
  701. d = ldiv(msecs, 1000);
  702. tleft.tv_sec = d.quot;
  703. tleft.tv_nsec = d.rem * 1000000;
  704. do {
  705. twait.tv_sec = tleft.tv_sec;
  706. twait.tv_nsec = tleft.tv_nsec;
  707. ret = nanosleep(&twait, &tleft);
  708. } while (ret == -1 && errno == EINTR);
  709. }
  710. /* Returns the microseconds difference between end and start times as a double */
  711. double us_tdiff(struct timeval *end, struct timeval *start)
  712. {
  713. return end->tv_sec * 1000000 + end->tv_usec - start->tv_sec * 1000000 - start->tv_usec;
  714. }
  715. /* Returns the seconds difference between end and start times as a double */
  716. double tdiff(struct timeval *end, struct timeval *start)
  717. {
  718. return end->tv_sec - start->tv_sec + (end->tv_usec - start->tv_usec) / 1000000.0;
  719. }
  720. bool extract_sockaddr(struct pool *pool, char *url)
  721. {
  722. char *url_begin, *url_end, *ipv6_begin, *ipv6_end, *port_start = NULL;
  723. char url_address[256], port[6];
  724. int url_len, port_len = 0;
  725. url_begin = strstr(url, "//");
  726. if (!url_begin)
  727. url_begin = url;
  728. else
  729. url_begin += 2;
  730. /* Look for numeric ipv6 entries */
  731. ipv6_begin = strstr(url_begin, "[");
  732. ipv6_end = strstr(url_begin, "]");
  733. if (ipv6_begin && ipv6_end && ipv6_end > ipv6_begin)
  734. url_end = strstr(ipv6_end, ":");
  735. else
  736. url_end = strstr(url_begin, ":");
  737. if (url_end) {
  738. url_len = url_end - url_begin;
  739. port_len = strlen(url_begin) - url_len - 1;
  740. if (port_len < 1)
  741. return false;
  742. port_start = url_end + 1;
  743. } else
  744. url_len = strlen(url_begin);
  745. if (url_len < 1)
  746. return false;
  747. sprintf(url_address, "%.*s", url_len, url_begin);
  748. if (port_len)
  749. snprintf(port, 6, "%.*s", port_len, port_start);
  750. else
  751. strcpy(port, "80");
  752. free(pool->stratum_port);
  753. pool->stratum_port = strdup(port);
  754. free(pool->sockaddr_url);
  755. pool->sockaddr_url = strdup(url_address);
  756. return true;
  757. }
  758. /* Send a single command across a socket, appending \n to it. This should all
  759. * be done under stratum lock except when first establishing the socket */
  760. static bool __stratum_send(struct pool *pool, char *s, ssize_t len)
  761. {
  762. SOCKETTYPE sock = pool->sock;
  763. ssize_t ssent = 0;
  764. if (opt_protocol)
  765. applog(LOG_DEBUG, "SEND: %s", s);
  766. strcat(s, "\n");
  767. len++;
  768. while (len > 0 ) {
  769. struct timeval timeout = {0, 0};
  770. size_t sent = 0;
  771. CURLcode rc;
  772. fd_set wd;
  773. FD_ZERO(&wd);
  774. FD_SET(sock, &wd);
  775. if (select(sock + 1, NULL, &wd, NULL, &timeout) < 1) {
  776. applog(LOG_DEBUG, "Write select failed on pool %d sock", pool->pool_no);
  777. return false;
  778. }
  779. rc = curl_easy_send(pool->stratum_curl, s + ssent, len, &sent);
  780. if (rc != CURLE_OK) {
  781. applog(LOG_DEBUG, "Failed to curl_easy_send in stratum_send");
  782. return false;
  783. }
  784. ssent += sent;
  785. len -= ssent;
  786. }
  787. pool->cgminer_pool_stats.times_sent++;
  788. pool->cgminer_pool_stats.bytes_sent += ssent;
  789. return true;
  790. }
  791. bool stratum_send(struct pool *pool, char *s, ssize_t len)
  792. {
  793. bool ret = false;
  794. mutex_lock(&pool->stratum_lock);
  795. if (pool->stratum_active)
  796. ret = __stratum_send(pool, s, len);
  797. else
  798. applog(LOG_DEBUG, "Stratum send failed due to no pool stratum_active");
  799. mutex_unlock(&pool->stratum_lock);
  800. return ret;
  801. }
  802. /* Check to see if Santa's been good to you */
  803. static bool sock_full(struct pool *pool, bool wait)
  804. {
  805. SOCKETTYPE sock = pool->sock;
  806. struct timeval timeout;
  807. fd_set rd;
  808. if (pool->readbuf.buf && memchr(pool->readbuf.buf, '\n', pool->readbuf.len))
  809. return true;
  810. FD_ZERO(&rd);
  811. FD_SET(sock, &rd);
  812. timeout.tv_usec = 0;
  813. if (wait)
  814. timeout.tv_sec = 60;
  815. else
  816. timeout.tv_sec = 0;
  817. if (select(sock + 1, &rd, NULL, NULL, &timeout) > 0)
  818. return true;
  819. return false;
  820. }
  821. static void clear_sock(struct pool *pool)
  822. {
  823. ssize_t n;
  824. char buf[RECVSIZE];
  825. mutex_lock(&pool->stratum_lock);
  826. do
  827. n = recv(pool->sock, buf, RECVSIZE, 0);
  828. while (n > 0);
  829. mutex_unlock(&pool->stratum_lock);
  830. pool->readbuf.len = 0;
  831. }
  832. /* Peeks at a socket to find the first end of line and then reads just that
  833. * from the socket and returns that as a malloced char */
  834. char *recv_line(struct pool *pool)
  835. {
  836. ssize_t len;
  837. char *tok, *sret = NULL;
  838. ssize_t n;
  839. while (!(pool->readbuf.buf && memchr(pool->readbuf.buf, '\n', pool->readbuf.len))) {
  840. char s[RBUFSIZE];
  841. if (!sock_full(pool, true)) {
  842. applog(LOG_DEBUG, "Timed out waiting for data on sock_full");
  843. goto out;
  844. }
  845. memset(s, 0, RBUFSIZE);
  846. mutex_lock(&pool->stratum_lock);
  847. n = recv(pool->sock, s, RECVSIZE, 0);
  848. mutex_unlock(&pool->stratum_lock);
  849. if (n < 1 && errno != EAGAIN) {
  850. applog(LOG_DEBUG, "Failed to recv sock in recv_line: %d", errno);
  851. goto out;
  852. }
  853. len = all_data_cb(s, n, 1, &pool->readbuf);
  854. if (n != (size_t)len) {
  855. applog(LOG_DEBUG, "Error appending readbuf in recv_line");
  856. goto out;
  857. }
  858. }
  859. // Assuming the bulk of the data will be in the line, steal the buffer and return it
  860. tok = memchr(pool->readbuf.buf, '\n', pool->readbuf.len);
  861. *tok = '\0';
  862. len = tok - (char*)pool->readbuf.buf;
  863. pool->readbuf.len -= len + 1;
  864. tok = memcpy(malloc(pool->readbuf.len), tok + 1, pool->readbuf.len);
  865. sret = realloc(pool->readbuf.buf, len + 1);
  866. pool->readbuf.buf = tok;
  867. pool->cgminer_pool_stats.times_received++;
  868. pool->cgminer_pool_stats.bytes_received += len;
  869. out:
  870. if (!sret)
  871. clear_sock(pool);
  872. else if (opt_protocol)
  873. applog(LOG_DEBUG, "RECVD: %s", sret);
  874. return sret;
  875. }
  876. /* Extracts a string value from a json array with error checking. To be used
  877. * when the value of the string returned is only examined and not to be stored.
  878. * See json_array_string below */
  879. static char *__json_array_string(json_t *val, unsigned int entry)
  880. {
  881. json_t *arr_entry;
  882. if (json_is_null(val))
  883. return NULL;
  884. if (!json_is_array(val))
  885. return NULL;
  886. if (entry > json_array_size(val))
  887. return NULL;
  888. arr_entry = json_array_get(val, entry);
  889. if (!json_is_string(arr_entry))
  890. return NULL;
  891. return (char *)json_string_value(arr_entry);
  892. }
  893. /* Creates a freshly malloced dup of __json_array_string */
  894. static char *json_array_string(json_t *val, unsigned int entry)
  895. {
  896. char *buf = __json_array_string(val, entry);
  897. if (buf)
  898. return strdup(buf);
  899. return NULL;
  900. }
  901. static bool parse_notify(struct pool *pool, json_t *val)
  902. {
  903. char *job_id, *prev_hash, *coinbase1, *coinbase2, *bbversion, *nbit, *ntime;
  904. int merkles, i;
  905. json_t *arr;
  906. bool clean;
  907. arr = json_array_get(val, 4);
  908. if (!arr || !json_is_array(arr))
  909. return false;
  910. merkles = json_array_size(arr);
  911. job_id = json_array_string(val, 0);
  912. prev_hash = json_array_string(val, 1);
  913. coinbase1 = json_array_string(val, 2);
  914. coinbase2 = json_array_string(val, 3);
  915. bbversion = json_array_string(val, 5);
  916. nbit = json_array_string(val, 6);
  917. ntime = json_array_string(val, 7);
  918. clean = json_is_true(json_array_get(val, 8));
  919. if (!job_id || !prev_hash || !coinbase1 || !coinbase2 || !bbversion || !nbit || !ntime) {
  920. /* Annoying but we must not leak memory */
  921. if (job_id)
  922. free(job_id);
  923. if (prev_hash)
  924. free(prev_hash);
  925. if (coinbase1)
  926. free(coinbase1);
  927. if (coinbase2)
  928. free(coinbase2);
  929. if (bbversion)
  930. free(bbversion);
  931. if (nbit)
  932. free(nbit);
  933. if (ntime)
  934. free(ntime);
  935. return false;
  936. }
  937. mutex_lock(&pool->pool_lock);
  938. free(pool->swork.job_id);
  939. free(pool->swork.prev_hash);
  940. free(pool->swork.coinbase1);
  941. free(pool->swork.coinbase2);
  942. free(pool->swork.bbversion);
  943. free(pool->swork.nbit);
  944. free(pool->swork.ntime);
  945. pool->swork.job_id = job_id;
  946. pool->swork.prev_hash = prev_hash;
  947. pool->swork.coinbase1 = coinbase1;
  948. pool->swork.coinbase2 = coinbase2;
  949. pool->swork.bbversion = bbversion;
  950. pool->swork.nbit = nbit;
  951. pool->swork.ntime = ntime;
  952. pool->submit_old = !clean;
  953. pool->swork.clean = true;
  954. for (i = 0; i < pool->swork.merkles; i++)
  955. free(pool->swork.merkle[i]);
  956. if (merkles) {
  957. pool->swork.merkle = realloc(pool->swork.merkle, sizeof(char *) * merkles + 1);
  958. for (i = 0; i < merkles; i++)
  959. pool->swork.merkle[i] = json_array_string(arr, i);
  960. }
  961. pool->swork.merkles = merkles;
  962. if (clean)
  963. pool->nonce2 = 0;
  964. mutex_unlock(&pool->pool_lock);
  965. applog(LOG_DEBUG, "Received stratum notify from pool %u with job_id=%s",
  966. pool->pool_no, job_id);
  967. if (opt_protocol) {
  968. applog(LOG_DEBUG, "job_id: %s", job_id);
  969. applog(LOG_DEBUG, "prev_hash: %s", prev_hash);
  970. applog(LOG_DEBUG, "coinbase1: %s", coinbase1);
  971. applog(LOG_DEBUG, "coinbase2: %s", coinbase2);
  972. for (i = 0; i < merkles; i++)
  973. applog(LOG_DEBUG, "merkle%d: %s", i, pool->swork.merkle[i]);
  974. applog(LOG_DEBUG, "bbversion: %s", bbversion);
  975. applog(LOG_DEBUG, "nbit: %s", nbit);
  976. applog(LOG_DEBUG, "ntime: %s", ntime);
  977. applog(LOG_DEBUG, "clean: %s", clean ? "yes" : "no");
  978. }
  979. /* A notify message is the closest stratum gets to a getwork */
  980. pool->getwork_requested++;
  981. total_getworks++;
  982. if ((merkles && (!pool->swork.transparency_probed || rand() <= RAND_MAX / (opt_skip_checks + 1))) || pool->swork.transparency_time != (time_t)-1)
  983. {
  984. // Request transaction data to discourage pools from doing anything shady
  985. char s[1024];
  986. int sLen;
  987. sLen = sprintf(s, "{\"params\": [\"%s\"], \"id\": \"txlist%s\", \"method\": \"mining.get_transactions\"}",
  988. pool->swork.job_id,
  989. pool->swork.job_id);
  990. stratum_send(pool, s, sLen);
  991. if ((!pool->swork.opaque) && pool->swork.transparency_time == (time_t)-1)
  992. pool->swork.transparency_time = time(NULL);
  993. pool->swork.transparency_probed = true;
  994. }
  995. return true;
  996. }
  997. static bool parse_diff(struct pool *pool, json_t *val)
  998. {
  999. double diff;
  1000. diff = json_number_value(json_array_get(val, 0));
  1001. if (diff == 0)
  1002. return false;
  1003. mutex_lock(&pool->pool_lock);
  1004. pool->swork.diff = diff;
  1005. mutex_unlock(&pool->pool_lock);
  1006. applog(LOG_DEBUG, "Pool %d difficulty set to %f", pool->pool_no, diff);
  1007. return true;
  1008. }
  1009. static bool parse_reconnect(struct pool *pool, json_t *val)
  1010. {
  1011. char *url, *port, address[256];
  1012. memset(address, 0, 255);
  1013. url = (char *)json_string_value(json_array_get(val, 0));
  1014. if (!url)
  1015. url = pool->sockaddr_url;
  1016. port = (char *)json_string_value(json_array_get(val, 1));
  1017. if (!port)
  1018. port = pool->stratum_port;
  1019. sprintf(address, "%s:%s", url, port);
  1020. if (!extract_sockaddr(pool, address))
  1021. return false;
  1022. pool->stratum_url = pool->sockaddr_url;
  1023. applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, address);
  1024. if (!initiate_stratum(pool) || !auth_stratum(pool))
  1025. return false;
  1026. return true;
  1027. }
  1028. static bool send_version(struct pool *pool, json_t *val)
  1029. {
  1030. char s[RBUFSIZE];
  1031. int id = json_integer_value(json_object_get(val, "id"));
  1032. if (!id)
  1033. return false;
  1034. sprintf(s, "{\"id\": %d, \"result\": \""PACKAGE"/"VERSION"\", \"error\": null}", id);
  1035. if (!stratum_send(pool, s, strlen(s)))
  1036. return false;
  1037. return true;
  1038. }
  1039. bool parse_method(struct pool *pool, char *s)
  1040. {
  1041. json_t *val = NULL, *method, *err_val, *params;
  1042. json_error_t err;
  1043. bool ret = false;
  1044. char *buf;
  1045. if (!s)
  1046. goto out;
  1047. val = JSON_LOADS(s, &err);
  1048. if (!val) {
  1049. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1050. goto out;
  1051. }
  1052. method = json_object_get(val, "method");
  1053. if (!method)
  1054. goto out;
  1055. err_val = json_object_get(val, "error");
  1056. params = json_object_get(val, "params");
  1057. if (err_val && !json_is_null(err_val)) {
  1058. char *ss;
  1059. if (err_val)
  1060. ss = json_dumps(err_val, JSON_INDENT(3));
  1061. else
  1062. ss = strdup("(unknown reason)");
  1063. applog(LOG_INFO, "JSON-RPC method decode failed: %s", ss);
  1064. free(ss);
  1065. goto out;
  1066. }
  1067. buf = (char *)json_string_value(method);
  1068. if (!buf)
  1069. goto out;
  1070. if (!strncasecmp(buf, "mining.notify", 13) && parse_notify(pool, params)) {
  1071. ret = true;
  1072. goto out;
  1073. }
  1074. if (!strncasecmp(buf, "mining.set_difficulty", 21) && parse_diff(pool, params)) {
  1075. ret = true;
  1076. goto out;
  1077. }
  1078. if (!strncasecmp(buf, "client.reconnect", 16) && parse_reconnect(pool, params)) {
  1079. ret = true;
  1080. goto out;
  1081. }
  1082. if (!strncasecmp(buf, "client.get_version", 18) && send_version(pool, val)) {
  1083. ret = true;
  1084. goto out;
  1085. }
  1086. out:
  1087. if (val)
  1088. json_decref(val);
  1089. return ret;
  1090. }
  1091. extern bool parse_stratum_response(struct pool *, char *s);
  1092. bool auth_stratum(struct pool *pool)
  1093. {
  1094. json_t *val = NULL, *res_val, *err_val;
  1095. char s[RBUFSIZE], *sret = NULL;
  1096. json_error_t err;
  1097. bool ret = false;
  1098. sprintf(s, "{\"id\": \"auth\", \"method\": \"mining.authorize\", \"params\": [\"%s\", \"%s\"]}",
  1099. pool->rpc_user, pool->rpc_pass);
  1100. if (!stratum_send(pool, s, strlen(s)))
  1101. goto out;
  1102. /* Parse all data in the queue and anything left should be auth */
  1103. while (42) {
  1104. sret = recv_line(pool);
  1105. if (!sret)
  1106. goto out;
  1107. if (parse_method(pool, sret))
  1108. free(sret);
  1109. else
  1110. break;
  1111. }
  1112. val = JSON_LOADS(sret, &err);
  1113. free(sret);
  1114. res_val = json_object_get(val, "result");
  1115. err_val = json_object_get(val, "error");
  1116. if (!res_val || json_is_false(res_val) || (err_val && !json_is_null(err_val))) {
  1117. char *ss;
  1118. if (err_val)
  1119. ss = json_dumps(err_val, JSON_INDENT(3));
  1120. else
  1121. ss = strdup("(unknown reason)");
  1122. applog(LOG_WARNING, "JSON stratum auth failed: %s", ss);
  1123. free(ss);
  1124. goto out;
  1125. }
  1126. ret = true;
  1127. applog(LOG_INFO, "Stratum authorisation success for pool %d", pool->pool_no);
  1128. pool->probed = true;
  1129. successful_connect = true;
  1130. out:
  1131. if (val)
  1132. json_decref(val);
  1133. return ret;
  1134. }
  1135. bool initiate_stratum(struct pool *pool)
  1136. {
  1137. json_t *val = NULL, *res_val, *err_val;
  1138. char curl_err_str[CURL_ERROR_SIZE];
  1139. char s[RBUFSIZE], *sret = NULL;
  1140. CURL *curl = NULL;
  1141. double byte_count;
  1142. json_error_t err;
  1143. bool ret = false;
  1144. mutex_lock(&pool->stratum_lock);
  1145. pool->stratum_active = false;
  1146. pool->swork.transparency_probed = false;
  1147. if (!pool->stratum_curl) {
  1148. pool->stratum_curl = curl_easy_init();
  1149. if (unlikely(!pool->stratum_curl))
  1150. quit(1, "Failed to curl_easy_init in initiate_stratum");
  1151. }
  1152. mutex_unlock(&pool->stratum_lock);
  1153. curl = pool->stratum_curl;
  1154. /* Create a http url for use with curl */
  1155. memset(s, 0, RBUFSIZE);
  1156. sprintf(s, "http://%s:%s", pool->sockaddr_url, pool->stratum_port);
  1157. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  1158. curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 30);
  1159. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_err_str);
  1160. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  1161. curl_easy_setopt(curl, CURLOPT_URL, s);
  1162. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  1163. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  1164. if (pool->rpc_proxy) {
  1165. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  1166. } else if (opt_socks_proxy) {
  1167. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  1168. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
  1169. }
  1170. curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1);
  1171. if (curl_easy_perform(curl)) {
  1172. applog(LOG_INFO, "Stratum connect failed to pool %d: %s", pool->pool_no, curl_err_str);
  1173. goto out;
  1174. }
  1175. curl_easy_getinfo(curl, CURLINFO_LASTSOCKET, (long *)&pool->sock);
  1176. keep_sockalive(pool->sock);
  1177. pool->cgminer_pool_stats.times_sent++;
  1178. if (curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD, &byte_count) == CURLE_OK)
  1179. pool->cgminer_pool_stats.bytes_sent += byte_count;
  1180. pool->cgminer_pool_stats.times_received++;
  1181. if (curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, &byte_count) == CURLE_OK)
  1182. pool->cgminer_pool_stats.bytes_received += byte_count;
  1183. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": []}", swork_id++);
  1184. if (!__stratum_send(pool, s, strlen(s))) {
  1185. applog(LOG_DEBUG, "Failed to send s in initiate_stratum");
  1186. goto out;
  1187. }
  1188. if (!sock_full(pool, true)) {
  1189. applog(LOG_DEBUG, "Timed out waiting for response in initiate_stratum");
  1190. goto out;
  1191. }
  1192. sret = recv_line(pool);
  1193. if (!sret)
  1194. goto out;
  1195. val = JSON_LOADS(sret, &err);
  1196. free(sret);
  1197. if (!val) {
  1198. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1199. goto out;
  1200. }
  1201. res_val = json_object_get(val, "result");
  1202. err_val = json_object_get(val, "error");
  1203. if (!res_val || json_is_null(res_val) ||
  1204. (err_val && !json_is_null(err_val))) {
  1205. char *ss;
  1206. if (err_val)
  1207. ss = json_dumps(err_val, JSON_INDENT(3));
  1208. else
  1209. ss = strdup("(unknown reason)");
  1210. applog(LOG_INFO, "JSON-RPC decode failed: %s", ss);
  1211. free(ss);
  1212. goto out;
  1213. }
  1214. free(pool->nonce1);
  1215. pool->nonce1 = json_array_string(res_val, 1);
  1216. if (!pool->nonce1) {
  1217. applog(LOG_INFO, "Failed to get nonce1 in initiate_stratum");
  1218. goto out;
  1219. }
  1220. pool->n2size = json_integer_value(json_array_get(res_val, 2));
  1221. if (!pool->n2size) {
  1222. applog(LOG_INFO, "Failed to get n2size in initiate_stratum");
  1223. goto out;
  1224. }
  1225. ret = true;
  1226. out:
  1227. if (val)
  1228. json_decref(val);
  1229. if (ret) {
  1230. if (!pool->stratum_url)
  1231. pool->stratum_url = pool->sockaddr_url;
  1232. pool->stratum_active = true;
  1233. pool->swork.diff = 1;
  1234. if (opt_protocol) {
  1235. applog(LOG_DEBUG, "Pool %d confirmed mining.subscribe with extranonce1 %s extran2size %d",
  1236. pool->pool_no, pool->nonce1, pool->n2size);
  1237. }
  1238. } else
  1239. applog(LOG_DEBUG, "Initiate stratum failed");
  1240. return ret;
  1241. }
  1242. void suspend_stratum(struct pool *pool)
  1243. {
  1244. applog(LOG_INFO, "Closing socket for stratum pool %d", pool->pool_no);
  1245. mutex_lock(&pool->stratum_lock);
  1246. pool->stratum_active = false;
  1247. mutex_unlock(&pool->stratum_lock);
  1248. CLOSESOCKET(pool->sock);
  1249. }
  1250. void dev_error(struct cgpu_info *dev, enum dev_reason reason)
  1251. {
  1252. dev->device_last_not_well = time(NULL);
  1253. dev->device_not_well_reason = reason;
  1254. switch (reason) {
  1255. case REASON_THREAD_FAIL_INIT:
  1256. dev->thread_fail_init_count++;
  1257. break;
  1258. case REASON_THREAD_ZERO_HASH:
  1259. dev->thread_zero_hash_count++;
  1260. break;
  1261. case REASON_THREAD_FAIL_QUEUE:
  1262. dev->thread_fail_queue_count++;
  1263. break;
  1264. case REASON_DEV_SICK_IDLE_60:
  1265. dev->dev_sick_idle_60_count++;
  1266. break;
  1267. case REASON_DEV_DEAD_IDLE_600:
  1268. dev->dev_dead_idle_600_count++;
  1269. break;
  1270. case REASON_DEV_NOSTART:
  1271. dev->dev_nostart_count++;
  1272. break;
  1273. case REASON_DEV_OVER_HEAT:
  1274. dev->dev_over_heat_count++;
  1275. break;
  1276. case REASON_DEV_THERMAL_CUTOFF:
  1277. dev->dev_thermal_cutoff_count++;
  1278. break;
  1279. case REASON_DEV_COMMS_ERROR:
  1280. dev->dev_comms_error_count++;
  1281. break;
  1282. case REASON_DEV_THROTTLE:
  1283. dev->dev_throttle_count++;
  1284. break;
  1285. }
  1286. }
  1287. /* Realloc an existing string to fit an extra string s, appending s to it. */
  1288. void *realloc_strcat(char *ptr, char *s)
  1289. {
  1290. size_t old = strlen(ptr), len = strlen(s);
  1291. char *ret;
  1292. if (!len)
  1293. return ptr;
  1294. len += old + 1;
  1295. if (len % 4)
  1296. len += 4 - (len % 4);
  1297. ret = malloc(len);
  1298. if (unlikely(!ret))
  1299. quit(1, "Failed to malloc in realloc_strcat");
  1300. sprintf(ret, "%s%s", ptr, s);
  1301. free(ptr);
  1302. return ret;
  1303. }
  1304. void RenameThread(const char* name)
  1305. {
  1306. #if defined(PR_SET_NAME)
  1307. // Only the first 15 characters are used (16 - NUL terminator)
  1308. prctl(PR_SET_NAME, name, 0, 0, 0);
  1309. #elif defined(__APPLE__)
  1310. pthread_setname_np(name);
  1311. #elif (defined(__FreeBSD__) || defined(__OpenBSD__))
  1312. pthread_set_name_np(pthread_self(), name);
  1313. #else
  1314. // Prevent warnings for unused parameters...
  1315. (void)name;
  1316. #endif
  1317. }
  1318. #ifdef WIN32
  1319. static const char *WindowsErrorStr(DWORD dwMessageId)
  1320. {
  1321. static LPSTR msg = NULL;
  1322. if (msg)
  1323. LocalFree(msg);
  1324. if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, 0, dwMessageId, 0, (LPSTR)&msg, 0, 0))
  1325. return msg;
  1326. static const char fmt[] = "Error #%ld";
  1327. signed long ldMsgId = dwMessageId;
  1328. int sz = snprintf((char*)&sz, 0, fmt, ldMsgId) + 1;
  1329. msg = (LPTSTR)LocalAlloc(LMEM_FIXED, sz);
  1330. sprintf((char*)msg, fmt, ldMsgId);
  1331. return msg;
  1332. }
  1333. #endif
  1334. void notifier_init(int pipefd[2])
  1335. {
  1336. #ifdef WIN32
  1337. SOCKET listener, connecter, acceptor;
  1338. listener = socket(AF_INET, SOCK_STREAM, 0);
  1339. if (listener == INVALID_SOCKET)
  1340. quit(1, "Failed to create listener socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1341. connecter = socket(AF_INET, SOCK_STREAM, 0);
  1342. if (connecter == INVALID_SOCKET)
  1343. quit(1, "Failed to create connect socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1344. struct sockaddr_in inaddr = {
  1345. .sin_family = AF_INET,
  1346. .sin_addr = {
  1347. .s_addr = htonl(INADDR_LOOPBACK),
  1348. },
  1349. .sin_port = 0,
  1350. };
  1351. {
  1352. char reuse = 1;
  1353. setsockopt(listener, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
  1354. }
  1355. if (bind(listener, (struct sockaddr*)&inaddr, sizeof(inaddr)) == SOCKET_ERROR)
  1356. quit(1, "Failed to bind listener socket in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1357. socklen_t inaddr_sz = sizeof(inaddr);
  1358. if (getsockname(listener, (struct sockaddr*)&inaddr, &inaddr_sz) == SOCKET_ERROR)
  1359. quit(1, "Failed to getsockname in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1360. if (listen(listener, 1) == SOCKET_ERROR)
  1361. quit(1, "Failed to listen in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1362. inaddr.sin_family = AF_INET;
  1363. inaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
  1364. if (connect(connecter, (struct sockaddr*)&inaddr, inaddr_sz) == SOCKET_ERROR)
  1365. quit(1, "Failed to connect in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1366. acceptor = accept(listener, NULL, NULL);
  1367. if (acceptor == INVALID_SOCKET)
  1368. quit(1, "Failed to accept in create_notifier: %s", WindowsErrorStr(WSAGetLastError()));
  1369. closesocket(listener);
  1370. pipefd[0] = connecter;
  1371. pipefd[1] = acceptor;
  1372. #else
  1373. if (pipe(pipefd))
  1374. quit(1, "Failed to create pipe in create_notifier");
  1375. #endif
  1376. }
  1377. void notifier_wake(int fd[2])
  1378. {
  1379. #ifdef WIN32
  1380. (void)send(fd[1], "\0", 1, 0);
  1381. #else
  1382. (void)write(fd[1], "\0", 1);
  1383. #endif
  1384. }
  1385. void notifier_read(int fd[2])
  1386. {
  1387. char buf[0x10];
  1388. #ifdef WIN32
  1389. (void)recv(fd[0], buf, sizeof(buf), 0);
  1390. #else
  1391. (void)read(fd[0], buf, sizeof(buf));
  1392. #endif
  1393. }