util.c 48 KB

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