util.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2010 Jeff Garzik
  5. * Copyright 2012 Giel van Schijndel
  6. * Copyright 2012 Gavin Andresen
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 3 of the License, or (at your option)
  11. * any later version. See COPYING for more details.
  12. */
  13. #include "config.h"
  14. #include <stdbool.h>
  15. #include <stdint.h>
  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. #include <fcntl.h>
  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 <windows.h>
  45. # include <winsock2.h>
  46. # include <mstcpip.h>
  47. # include <ws2tcpip.h>
  48. # include <mmsystem.h>
  49. #endif
  50. #include <utlist.h>
  51. #include "miner.h"
  52. #include "compat.h"
  53. #include "util.h"
  54. #define DEFAULT_SOCKWAIT 60
  55. bool successful_connect = false;
  56. struct timeval nettime;
  57. struct data_buffer {
  58. void *buf;
  59. size_t len;
  60. curl_socket_t *idlemarker;
  61. };
  62. struct upload_buffer {
  63. const void *buf;
  64. size_t len;
  65. };
  66. struct header_info {
  67. char *lp_path;
  68. int rolltime;
  69. char *reason;
  70. char *stratum_url;
  71. bool hadrolltime;
  72. bool canroll;
  73. bool hadexpire;
  74. };
  75. struct tq_ent {
  76. void *data;
  77. struct tq_ent *prev;
  78. struct tq_ent *next;
  79. };
  80. static void databuf_free(struct data_buffer *db)
  81. {
  82. if (!db)
  83. return;
  84. free(db->buf);
  85. #ifdef DEBUG_DATABUF
  86. applog(LOG_DEBUG, "databuf_free(%p)", db->buf);
  87. #endif
  88. memset(db, 0, sizeof(*db));
  89. }
  90. // aka data_buffer_write
  91. static size_t all_data_cb(const void *ptr, size_t size, size_t nmemb,
  92. void *user_data)
  93. {
  94. struct data_buffer *db = user_data;
  95. size_t oldlen, newlen;
  96. oldlen = db->len;
  97. if (unlikely(nmemb == 0 || size == 0 || oldlen >= SIZE_MAX - size))
  98. return 0;
  99. if (unlikely(nmemb > (SIZE_MAX - oldlen) / size))
  100. nmemb = (SIZE_MAX - oldlen) / size;
  101. size_t len = size * nmemb;
  102. void *newmem;
  103. static const unsigned char zero = 0;
  104. if (db->idlemarker) {
  105. const unsigned char *cptr = ptr;
  106. for (size_t i = 0; i < len; ++i)
  107. if (!(isCspace(cptr[i]) || cptr[i] == '{')) {
  108. *db->idlemarker = CURL_SOCKET_BAD;
  109. db->idlemarker = NULL;
  110. break;
  111. }
  112. }
  113. newlen = oldlen + len;
  114. newmem = realloc(db->buf, newlen + 1);
  115. #ifdef DEBUG_DATABUF
  116. applog(LOG_DEBUG, "data_buffer_write realloc(%p, %lu) => %p", db->buf, (long unsigned)(newlen + 1), newmem);
  117. #endif
  118. if (!newmem)
  119. return 0;
  120. db->buf = newmem;
  121. db->len = newlen;
  122. memcpy(db->buf + oldlen, ptr, len);
  123. memcpy(db->buf + newlen, &zero, 1); /* null terminate */
  124. return nmemb;
  125. }
  126. static size_t upload_data_cb(void *ptr, size_t size, size_t nmemb,
  127. void *user_data)
  128. {
  129. struct upload_buffer *ub = user_data;
  130. unsigned int len = size * nmemb;
  131. if (len > ub->len)
  132. len = ub->len;
  133. if (len) {
  134. memcpy(ptr, ub->buf, len);
  135. ub->buf += len;
  136. ub->len -= len;
  137. }
  138. return len;
  139. }
  140. static size_t resp_hdr_cb(void *ptr, size_t size, size_t nmemb, void *user_data)
  141. {
  142. struct header_info *hi = user_data;
  143. size_t remlen, slen, ptrlen = size * nmemb;
  144. char *rem, *val = NULL, *key = NULL;
  145. void *tmp;
  146. val = calloc(1, ptrlen);
  147. key = calloc(1, ptrlen);
  148. if (!key || !val)
  149. goto out;
  150. tmp = memchr(ptr, ':', ptrlen);
  151. if (!tmp || (tmp == ptr)) /* skip empty keys / blanks */
  152. goto out;
  153. slen = tmp - ptr;
  154. if ((slen + 1) == ptrlen) /* skip key w/ no value */
  155. goto out;
  156. memcpy(key, ptr, slen); /* store & nul term key */
  157. key[slen] = 0;
  158. rem = ptr + slen + 1; /* trim value's leading whitespace */
  159. remlen = ptrlen - slen - 1;
  160. while ((remlen > 0) && (isCspace(*rem))) {
  161. remlen--;
  162. rem++;
  163. }
  164. memcpy(val, rem, remlen); /* store value, trim trailing ws */
  165. val[remlen] = 0;
  166. while ((*val) && (isCspace(val[strlen(val) - 1])))
  167. val[strlen(val) - 1] = 0;
  168. if (!*val) /* skip blank value */
  169. goto out;
  170. if (opt_protocol)
  171. applog(LOG_DEBUG, "HTTP hdr(%s): %s", key, val);
  172. if (!strcasecmp("X-Roll-Ntime", key)) {
  173. hi->hadrolltime = true;
  174. if (!strncasecmp("N", val, 1))
  175. applog(LOG_DEBUG, "X-Roll-Ntime: N found");
  176. else {
  177. hi->canroll = true;
  178. /* Check to see if expire= is supported and if not, set
  179. * the rolltime to the default scantime */
  180. if (strlen(val) > 7 && !strncasecmp("expire=", val, 7)) {
  181. sscanf(val + 7, "%d", &hi->rolltime);
  182. hi->hadexpire = true;
  183. } else
  184. hi->rolltime = opt_scantime;
  185. applog(LOG_DEBUG, "X-Roll-Ntime expiry set to %d", hi->rolltime);
  186. }
  187. }
  188. if (!strcasecmp("X-Long-Polling", key)) {
  189. hi->lp_path = val; /* steal memory reference */
  190. val = NULL;
  191. }
  192. if (!strcasecmp("X-Reject-Reason", key)) {
  193. hi->reason = val; /* steal memory reference */
  194. val = NULL;
  195. }
  196. if (!strcasecmp("X-Stratum", key)) {
  197. hi->stratum_url = val;
  198. val = NULL;
  199. }
  200. out:
  201. free(key);
  202. free(val);
  203. return ptrlen;
  204. }
  205. static int keep_sockalive(SOCKETTYPE fd)
  206. {
  207. const int tcp_one = 1;
  208. const int tcp_keepidle = 45;
  209. const int tcp_keepintvl = 30;
  210. int ret = 0;
  211. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (const char *)&tcp_one, sizeof(tcp_one))))
  212. ret = 1;
  213. #ifndef WIN32
  214. int flags = fcntl(fd, F_GETFL, 0);
  215. fcntl(fd, F_SETFL, O_NONBLOCK | flags);
  216. #else
  217. u_long flags = 1;
  218. ioctlsocket(fd, FIONBIO, &flags);
  219. #endif
  220. if (!opt_delaynet)
  221. #ifndef __linux
  222. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (const void *)&tcp_one, sizeof(tcp_one))))
  223. #else /* __linux */
  224. if (unlikely(setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&tcp_one, sizeof(tcp_one))))
  225. #endif /* __linux */
  226. ret = 1;
  227. #ifdef __linux
  228. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPCNT, &tcp_one, sizeof(tcp_one))))
  229. ret = 1;
  230. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPIDLE, &tcp_keepidle, sizeof(tcp_keepidle))))
  231. ret = 1;
  232. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPINTVL, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  233. ret = 1;
  234. #endif /* __linux */
  235. #ifdef __APPLE_CC__
  236. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  237. ret = 1;
  238. #endif /* __APPLE_CC__ */
  239. #ifdef WIN32
  240. const int zero = 0;
  241. struct tcp_keepalive vals;
  242. vals.onoff = 1;
  243. vals.keepalivetime = tcp_keepidle * 1000;
  244. vals.keepaliveinterval = tcp_keepintvl * 1000;
  245. DWORD outputBytes;
  246. if (unlikely(WSAIoctl(fd, SIO_KEEPALIVE_VALS, &vals, sizeof(vals), NULL, 0, &outputBytes, NULL, NULL)))
  247. ret = 1;
  248. /* Windows happily submits indefinitely to the send buffer blissfully
  249. * unaware nothing is getting there without gracefully failing unless
  250. * we disable the send buffer */
  251. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const char *)&zero, sizeof(zero))))
  252. ret = 1;
  253. #endif /* WIN32 */
  254. return ret;
  255. }
  256. int json_rpc_call_sockopt_cb(void __maybe_unused *userdata, curl_socket_t fd,
  257. curlsocktype __maybe_unused purpose)
  258. {
  259. return keep_sockalive(fd);
  260. }
  261. static void last_nettime(struct timeval *last)
  262. {
  263. rd_lock(&netacc_lock);
  264. last->tv_sec = nettime.tv_sec;
  265. last->tv_usec = nettime.tv_usec;
  266. rd_unlock(&netacc_lock);
  267. }
  268. static void set_nettime(void)
  269. {
  270. wr_lock(&netacc_lock);
  271. cgtime(&nettime);
  272. wr_unlock(&netacc_lock);
  273. }
  274. static int curl_debug_cb(__maybe_unused CURL *handle, curl_infotype type,
  275. char *data, size_t size,
  276. void *userdata)
  277. {
  278. struct pool *pool = (struct pool *)userdata;
  279. switch(type) {
  280. case CURLINFO_HEADER_IN:
  281. case CURLINFO_DATA_IN:
  282. case CURLINFO_SSL_DATA_IN:
  283. pool->cgminer_pool_stats.bytes_received += size;
  284. total_bytes_rcvd += size;
  285. pool->cgminer_pool_stats.net_bytes_received += size;
  286. break;
  287. case CURLINFO_HEADER_OUT:
  288. case CURLINFO_DATA_OUT:
  289. case CURLINFO_SSL_DATA_OUT:
  290. pool->cgminer_pool_stats.bytes_sent += size;
  291. total_bytes_sent += size;
  292. pool->cgminer_pool_stats.net_bytes_sent += size;
  293. break;
  294. case CURLINFO_TEXT:
  295. {
  296. if (!opt_protocol)
  297. break;
  298. // data is not null-terminated, so we need to copy and terminate it for applog
  299. char datacp[size + 1];
  300. memcpy(datacp, data, size);
  301. while (likely(size) && unlikely(isCspace(datacp[size-1])))
  302. --size;
  303. if (unlikely(!size))
  304. break;
  305. datacp[size] = '\0';
  306. applog(LOG_DEBUG, "Pool %u: %s", pool->pool_no, datacp);
  307. break;
  308. }
  309. default:
  310. break;
  311. }
  312. return 0;
  313. }
  314. struct json_rpc_call_state {
  315. struct data_buffer all_data;
  316. struct header_info hi;
  317. void *priv;
  318. char curl_err_str[CURL_ERROR_SIZE];
  319. struct curl_slist *headers;
  320. struct upload_buffer upload_data;
  321. struct pool *pool;
  322. };
  323. void json_rpc_call_async(CURL *curl, const char *url,
  324. const char *userpass, const char *rpc_req,
  325. bool longpoll,
  326. struct pool *pool, bool share,
  327. void *priv)
  328. {
  329. struct json_rpc_call_state *state = malloc(sizeof(struct json_rpc_call_state));
  330. *state = (struct json_rpc_call_state){
  331. .priv = priv,
  332. .pool = pool,
  333. };
  334. long timeout = longpoll ? (60 * 60) : 60;
  335. char len_hdr[64], user_agent_hdr[128];
  336. struct curl_slist *headers = NULL;
  337. if (longpoll)
  338. state->all_data.idlemarker = &pool->lp_socket;
  339. /* it is assumed that 'curl' is freshly [re]initialized at this pt */
  340. curl_easy_setopt(curl, CURLOPT_PRIVATE, state);
  341. curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  342. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  343. * to enable it */
  344. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  345. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  346. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  347. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  348. curl_easy_setopt(curl, CURLOPT_URL, url);
  349. curl_easy_setopt(curl, CURLOPT_ENCODING, "");
  350. curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  351. /* Shares are staggered already and delays in submission can be costly
  352. * so do not delay them */
  353. if (!opt_delaynet || share)
  354. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  355. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, all_data_cb);
  356. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &state->all_data);
  357. curl_easy_setopt(curl, CURLOPT_READFUNCTION, upload_data_cb);
  358. curl_easy_setopt(curl, CURLOPT_READDATA, &state->upload_data);
  359. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, &state->curl_err_str[0]);
  360. curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
  361. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, resp_hdr_cb);
  362. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &state->hi);
  363. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  364. if (pool->rpc_proxy) {
  365. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  366. } else if (opt_socks_proxy) {
  367. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  368. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  369. }
  370. if (userpass) {
  371. curl_easy_setopt(curl, CURLOPT_USERPWD, userpass);
  372. curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  373. }
  374. if (longpoll)
  375. curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, json_rpc_call_sockopt_cb);
  376. curl_easy_setopt(curl, CURLOPT_POST, 1);
  377. if (opt_protocol)
  378. applog(LOG_DEBUG, "JSON protocol request:\n%s", rpc_req);
  379. state->upload_data.buf = rpc_req;
  380. state->upload_data.len = strlen(rpc_req);
  381. sprintf(len_hdr, "Content-Length: %lu",
  382. (unsigned long) state->upload_data.len);
  383. sprintf(user_agent_hdr, "User-Agent: %s", PACKAGE"/"VERSION);
  384. headers = curl_slist_append(headers,
  385. "Content-type: application/json");
  386. headers = curl_slist_append(headers,
  387. "X-Mining-Extensions: longpoll midstate rollntime submitold");
  388. if (longpoll)
  389. headers = curl_slist_append(headers,
  390. "X-Minimum-Wait: 0");
  391. if (likely(global_hashrate)) {
  392. char ghashrate[255];
  393. sprintf(ghashrate, "X-Mining-Hashrate: %"PRIu64, (uint64_t)global_hashrate);
  394. headers = curl_slist_append(headers, ghashrate);
  395. }
  396. headers = curl_slist_append(headers, len_hdr);
  397. headers = curl_slist_append(headers, user_agent_hdr);
  398. headers = curl_slist_append(headers, "Expect:"); /* disable Expect hdr*/
  399. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  400. state->headers = headers;
  401. if (opt_delaynet) {
  402. /* Don't delay share submission, but still track the nettime */
  403. if (!share) {
  404. long long now_msecs, last_msecs;
  405. struct timeval now, last;
  406. cgtime(&now);
  407. last_nettime(&last);
  408. now_msecs = (long long)now.tv_sec * 1000;
  409. now_msecs += now.tv_usec / 1000;
  410. last_msecs = (long long)last.tv_sec * 1000;
  411. last_msecs += last.tv_usec / 1000;
  412. if (now_msecs > last_msecs && now_msecs - last_msecs < 250) {
  413. struct timespec rgtp;
  414. rgtp.tv_sec = 0;
  415. rgtp.tv_nsec = (250 - (now_msecs - last_msecs)) * 1000000;
  416. nanosleep(&rgtp, NULL);
  417. }
  418. }
  419. set_nettime();
  420. }
  421. }
  422. json_t *json_rpc_call_completed(CURL *curl, int rc, bool probe, int *rolltime, void *out_priv)
  423. {
  424. struct json_rpc_call_state *state;
  425. if (curl_easy_getinfo(curl, CURLINFO_PRIVATE, (void*)&state) != CURLE_OK) {
  426. applog(LOG_ERR, "Failed to get private curl data");
  427. if (out_priv)
  428. *(void**)out_priv = NULL;
  429. goto err_out;
  430. }
  431. if (out_priv)
  432. *(void**)out_priv = state->priv;
  433. json_t *val, *err_val, *res_val;
  434. json_error_t err;
  435. struct pool *pool = state->pool;
  436. bool probing = probe && !pool->probed;
  437. if (rc) {
  438. applog(LOG_INFO, "HTTP request failed: %s", state->curl_err_str);
  439. goto err_out;
  440. }
  441. if (!state->all_data.buf) {
  442. applog(LOG_DEBUG, "Empty data received in json_rpc_call.");
  443. goto err_out;
  444. }
  445. pool->cgminer_pool_stats.times_sent++;
  446. pool->cgminer_pool_stats.times_received++;
  447. if (probing) {
  448. pool->probed = true;
  449. /* If X-Long-Polling was found, activate long polling */
  450. if (state->hi.lp_path) {
  451. if (pool->hdr_path != NULL)
  452. free(pool->hdr_path);
  453. pool->hdr_path = state->hi.lp_path;
  454. } else
  455. pool->hdr_path = NULL;
  456. if (state->hi.stratum_url) {
  457. pool->stratum_url = state->hi.stratum_url;
  458. state->hi.stratum_url = NULL;
  459. }
  460. } else {
  461. if (state->hi.lp_path) {
  462. free(state->hi.lp_path);
  463. state->hi.lp_path = NULL;
  464. }
  465. if (state->hi.stratum_url) {
  466. free(state->hi.stratum_url);
  467. state->hi.stratum_url = NULL;
  468. }
  469. }
  470. if (pool->force_rollntime)
  471. {
  472. state->hi.canroll = true;
  473. state->hi.hadexpire = true;
  474. state->hi.rolltime = pool->force_rollntime;
  475. }
  476. if (rolltime)
  477. *rolltime = state->hi.rolltime;
  478. pool->cgminer_pool_stats.rolltime = state->hi.rolltime;
  479. pool->cgminer_pool_stats.hadrolltime = state->hi.hadrolltime;
  480. pool->cgminer_pool_stats.canroll = state->hi.canroll;
  481. pool->cgminer_pool_stats.hadexpire = state->hi.hadexpire;
  482. val = JSON_LOADS(state->all_data.buf, &err);
  483. if (!val) {
  484. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  485. if (opt_protocol)
  486. applog(LOG_DEBUG, "JSON protocol response:\n%s", (char*)state->all_data.buf);
  487. goto err_out;
  488. }
  489. if (opt_protocol) {
  490. char *s = json_dumps(val, JSON_INDENT(3));
  491. applog(LOG_DEBUG, "JSON protocol response:\n%s", s);
  492. free(s);
  493. }
  494. /* JSON-RPC valid response returns a non-null 'result',
  495. * and a null 'error'.
  496. */
  497. res_val = json_object_get(val, "result");
  498. err_val = json_object_get(val, "error");
  499. if (!res_val ||(err_val && !json_is_null(err_val))) {
  500. char *s;
  501. if (err_val)
  502. s = json_dumps(err_val, JSON_INDENT(3));
  503. else
  504. s = strdup("(unknown reason)");
  505. applog(LOG_INFO, "JSON-RPC call failed: %s", s);
  506. free(s);
  507. json_decref(val);
  508. goto err_out;
  509. }
  510. if (state->hi.reason) {
  511. json_object_set_new(val, "reject-reason", json_string(state->hi.reason));
  512. free(state->hi.reason);
  513. state->hi.reason = NULL;
  514. }
  515. successful_connect = true;
  516. databuf_free(&state->all_data);
  517. curl_slist_free_all(state->headers);
  518. curl_easy_reset(curl);
  519. free(state);
  520. return val;
  521. err_out:
  522. databuf_free(&state->all_data);
  523. curl_slist_free_all(state->headers);
  524. curl_easy_reset(curl);
  525. if (!successful_connect)
  526. applog(LOG_DEBUG, "Failed to connect in json_rpc_call");
  527. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  528. free(state);
  529. return NULL;
  530. }
  531. json_t *json_rpc_call(CURL *curl, const char *url,
  532. const char *userpass, const char *rpc_req,
  533. bool probe, bool longpoll, int *rolltime,
  534. struct pool *pool, bool share)
  535. {
  536. json_rpc_call_async(curl, url, userpass, rpc_req, longpoll, pool, share, NULL);
  537. int rc = curl_easy_perform(curl);
  538. return json_rpc_call_completed(curl, rc, probe, rolltime, NULL);
  539. }
  540. bool our_curl_supports_proxy_uris()
  541. {
  542. curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
  543. return data->age && data->version_num >= (( 7 <<16)|( 21 <<8)| 7); // 7.21.7
  544. }
  545. // NOTE: This assumes reference URI is a root
  546. char *absolute_uri(char *uri, const char *ref)
  547. {
  548. if (strstr(uri, "://"))
  549. return strdup(uri);
  550. char *copy_start, *abs;
  551. bool need_slash = false;
  552. copy_start = (uri[0] == '/') ? &uri[1] : uri;
  553. if (ref[strlen(ref) - 1] != '/')
  554. need_slash = true;
  555. abs = malloc(strlen(ref) + strlen(copy_start) + 2);
  556. if (!abs) {
  557. applog(LOG_ERR, "Malloc failure in absolute_uri");
  558. return NULL;
  559. }
  560. sprintf(abs, "%s%s%s", ref, need_slash ? "/" : "", copy_start);
  561. return abs;
  562. }
  563. static const char _hexchars[0x10] = "0123456789abcdef";
  564. void bin2hex(char *out, const void *in, size_t len)
  565. {
  566. const unsigned char *p = in;
  567. while (len--)
  568. {
  569. (out++)[0] = _hexchars[p[0] >> 4];
  570. (out++)[0] = _hexchars[p[0] & 0xf];
  571. ++p;
  572. }
  573. out[0] = '\0';
  574. }
  575. static inline
  576. int _hex2bin_char(const char c)
  577. {
  578. if (c >= '0' && c <= '9')
  579. return c - '0';
  580. if (c >= 'a' && c <= 'f')
  581. return (c - 'a') + 10;
  582. if (c >= 'A' && c <= 'F')
  583. return (c - 'A') + 10;
  584. return -1;
  585. }
  586. /* Does the reverse of bin2hex but does not allocate any ram */
  587. bool hex2bin(unsigned char *p, const char *hexstr, size_t len)
  588. {
  589. int n, o;
  590. while (len--)
  591. {
  592. n = _hex2bin_char((hexstr++)[0]);
  593. if (unlikely(n == -1))
  594. {
  595. badchar:
  596. if (!hexstr[-1])
  597. applog(LOG_ERR, "hex2bin: str truncated");
  598. else
  599. applog(LOG_ERR, "hex2bin: invalid character 0x%02x", (int)hexstr[-1]);
  600. return false;
  601. }
  602. o = _hex2bin_char((hexstr++)[0]);
  603. if (unlikely(o == -1))
  604. goto badchar;
  605. (p++)[0] = (n << 4) | o;
  606. }
  607. return likely(!hexstr[0]);
  608. }
  609. void hash_data(unsigned char *out_hash, const unsigned char *data)
  610. {
  611. unsigned char blkheader[80];
  612. // 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
  613. swap32yes(blkheader, data, 80 / 4);
  614. // double-SHA256 to get the block hash
  615. gen_hash(blkheader, out_hash, 80);
  616. }
  617. // Example output: 0000000000000000000000000000000000000000000000000000ffff00000000 (bdiff 1)
  618. void real_block_target(unsigned char *target, const unsigned char *data)
  619. {
  620. uint8_t targetshift;
  621. if (unlikely(data[72] < 3 || data[72] > 0x20))
  622. {
  623. // Invalid (out of bounds) target
  624. memset(target, 0xff, 32);
  625. return;
  626. }
  627. targetshift = data[72] - 3;
  628. memset(target, 0, targetshift);
  629. target[targetshift++] = data[75];
  630. target[targetshift++] = data[74];
  631. target[targetshift++] = data[73];
  632. memset(&target[targetshift], 0, 0x20 - targetshift);
  633. }
  634. bool hash_target_check(const unsigned char *hash, const unsigned char *target)
  635. {
  636. const uint32_t *h32 = (uint32_t*)&hash[0];
  637. const uint32_t *t32 = (uint32_t*)&target[0];
  638. for (int i = 7; i >= 0; --i) {
  639. uint32_t h32i = le32toh(h32[i]);
  640. uint32_t t32i = le32toh(t32[i]);
  641. if (h32i > t32i)
  642. return false;
  643. if (h32i < t32i)
  644. return true;
  645. }
  646. return true;
  647. }
  648. bool hash_target_check_v(const unsigned char *hash, const unsigned char *target)
  649. {
  650. bool rc;
  651. rc = hash_target_check(hash, target);
  652. if (opt_debug) {
  653. unsigned char hash_swap[32], target_swap[32];
  654. char hash_str[65];
  655. char target_str[65];
  656. for (int i = 0; i < 32; ++i) {
  657. hash_swap[i] = hash[31-i];
  658. target_swap[i] = target[31-i];
  659. }
  660. bin2hex(hash_str, hash_swap, 32);
  661. bin2hex(target_str, target_swap, 32);
  662. applog(LOG_DEBUG, " Proof: %s\nTarget: %s\nTrgVal? %s",
  663. hash_str,
  664. target_str,
  665. rc ? "YES (hash <= target)" :
  666. "no (false positive; hash > target)");
  667. }
  668. return rc;
  669. }
  670. // This operates on a native-endian SHA256 state
  671. // In other words, on little endian platforms, every 4 bytes are in reverse order
  672. bool fulltest(const unsigned char *hash, const unsigned char *target)
  673. {
  674. unsigned char hash2[32];
  675. swap32tobe(hash2, hash, 32 / 4);
  676. return hash_target_check_v(hash2, target);
  677. }
  678. struct thread_q *tq_new(void)
  679. {
  680. struct thread_q *tq;
  681. tq = calloc(1, sizeof(*tq));
  682. if (!tq)
  683. return NULL;
  684. pthread_mutex_init(&tq->mutex, NULL);
  685. pthread_cond_init(&tq->cond, NULL);
  686. return tq;
  687. }
  688. void tq_free(struct thread_q *tq)
  689. {
  690. struct tq_ent *ent, *iter;
  691. if (!tq)
  692. return;
  693. DL_FOREACH_SAFE(tq->q, ent, iter) {
  694. DL_DELETE(tq->q, ent);
  695. free(ent);
  696. }
  697. pthread_cond_destroy(&tq->cond);
  698. pthread_mutex_destroy(&tq->mutex);
  699. memset(tq, 0, sizeof(*tq)); /* poison */
  700. free(tq);
  701. }
  702. static void tq_freezethaw(struct thread_q *tq, bool frozen)
  703. {
  704. mutex_lock(&tq->mutex);
  705. tq->frozen = frozen;
  706. pthread_cond_signal(&tq->cond);
  707. mutex_unlock(&tq->mutex);
  708. }
  709. void tq_freeze(struct thread_q *tq)
  710. {
  711. tq_freezethaw(tq, true);
  712. }
  713. void tq_thaw(struct thread_q *tq)
  714. {
  715. tq_freezethaw(tq, false);
  716. }
  717. bool tq_push(struct thread_q *tq, void *data)
  718. {
  719. struct tq_ent *ent;
  720. bool rc = true;
  721. ent = calloc(1, sizeof(*ent));
  722. if (!ent)
  723. return false;
  724. ent->data = data;
  725. mutex_lock(&tq->mutex);
  726. if (!tq->frozen) {
  727. DL_APPEND(tq->q, ent);
  728. } else {
  729. free(ent);
  730. rc = false;
  731. }
  732. pthread_cond_signal(&tq->cond);
  733. mutex_unlock(&tq->mutex);
  734. return rc;
  735. }
  736. void *tq_pop(struct thread_q *tq, const struct timespec *abstime)
  737. {
  738. struct tq_ent *ent;
  739. void *rval = NULL;
  740. int rc;
  741. mutex_lock(&tq->mutex);
  742. if (tq->q)
  743. goto pop;
  744. if (abstime)
  745. rc = pthread_cond_timedwait(&tq->cond, &tq->mutex, abstime);
  746. else
  747. rc = pthread_cond_wait(&tq->cond, &tq->mutex);
  748. if (rc)
  749. goto out;
  750. if (!tq->q)
  751. goto out;
  752. pop:
  753. ent = tq->q;
  754. rval = ent->data;
  755. DL_DELETE(tq->q, ent);
  756. free(ent);
  757. out:
  758. mutex_unlock(&tq->mutex);
  759. return rval;
  760. }
  761. int thr_info_create(struct thr_info *thr, pthread_attr_t *attr, void *(*start) (void *), void *arg)
  762. {
  763. int rv = pthread_create(&thr->pth, attr, start, arg);
  764. if (likely(!rv))
  765. thr->has_pth = true;
  766. return rv;
  767. }
  768. void thr_info_freeze(struct thr_info *thr)
  769. {
  770. struct tq_ent *ent, *iter;
  771. struct thread_q *tq;
  772. if (!thr)
  773. return;
  774. tq = thr->q;
  775. if (!tq)
  776. return;
  777. mutex_lock(&tq->mutex);
  778. tq->frozen = true;
  779. DL_FOREACH_SAFE(tq->q, ent, iter) {
  780. DL_DELETE(tq->q, ent);
  781. free(ent);
  782. }
  783. mutex_unlock(&tq->mutex);
  784. }
  785. void thr_info_cancel(struct thr_info *thr)
  786. {
  787. if (!thr)
  788. return;
  789. if (thr->has_pth) {
  790. pthread_cancel(thr->pth);
  791. thr->has_pth = false;
  792. }
  793. }
  794. #ifndef HAVE_PTHREAD_CANCEL
  795. // Bionic (Android) is intentionally missing pthread_cancel, so it is implemented using pthread_kill
  796. enum pthread_cancel_workaround_mode {
  797. PCWM_DEFAULT = 0,
  798. PCWM_TERMINATE = 1,
  799. PCWM_ASYNC = 2,
  800. PCWM_DISABLED = 4,
  801. PCWM_CANCELLED = 8,
  802. };
  803. static pthread_key_t key_pcwm;
  804. struct sigaction pcwm_orig_term_handler;
  805. static
  806. void do_pthread_cancel_exit(int flags)
  807. {
  808. if (!(flags & PCWM_ASYNC))
  809. // NOTE: Logging disables cancel while mutex held, so this is safe
  810. applog(LOG_WARNING, "pthread_cancel workaround: Cannot defer cancellation, terminating thread NOW");
  811. pthread_exit(PTHREAD_CANCELED);
  812. }
  813. static
  814. void sighandler_pthread_cancel(int sig)
  815. {
  816. int flags = (int)pthread_getspecific(key_pcwm);
  817. if (flags & PCWM_TERMINATE) // Main thread
  818. {
  819. // Restore original handler and call it
  820. if (sigaction(sig, &pcwm_orig_term_handler, NULL))
  821. quit(1, "pthread_cancel workaround: Failed to restore original handler");
  822. raise(SIGTERM);
  823. quit(1, "pthread_cancel workaround: Original handler returned");
  824. }
  825. if (flags & PCWM_CANCELLED) // Already pending cancel
  826. return;
  827. if (flags & PCWM_DISABLED)
  828. {
  829. flags |= PCWM_CANCELLED;
  830. if (pthread_setspecific(key_pcwm, (void*)flags))
  831. quit(1, "pthread_cancel workaround: pthread_setspecific failed (setting PCWM_CANCELLED)");
  832. return;
  833. }
  834. do_pthread_cancel_exit(flags);
  835. }
  836. void pthread_testcancel(void)
  837. {
  838. int flags = (int)pthread_getspecific(key_pcwm);
  839. if (flags & PCWM_CANCELLED && !(flags & PCWM_DISABLED))
  840. do_pthread_cancel_exit(flags);
  841. }
  842. int pthread_setcancelstate(int state, int *oldstate)
  843. {
  844. int flags = (int)pthread_getspecific(key_pcwm);
  845. if (oldstate)
  846. *oldstate = (flags & PCWM_DISABLED) ? PTHREAD_CANCEL_DISABLE : PTHREAD_CANCEL_ENABLE;
  847. if (state == PTHREAD_CANCEL_DISABLE)
  848. flags |= PCWM_DISABLED;
  849. else
  850. {
  851. if (flags & PCWM_CANCELLED)
  852. do_pthread_cancel_exit(flags);
  853. flags &= ~PCWM_DISABLED;
  854. }
  855. if (pthread_setspecific(key_pcwm, (void*)flags))
  856. return -1;
  857. return 0;
  858. }
  859. int pthread_setcanceltype(int type, int *oldtype)
  860. {
  861. int flags = (int)pthread_getspecific(key_pcwm);
  862. if (oldtype)
  863. *oldtype = (flags & PCWM_ASYNC) ? PTHREAD_CANCEL_ASYNCHRONOUS : PTHREAD_CANCEL_DEFERRED;
  864. if (type == PTHREAD_CANCEL_ASYNCHRONOUS)
  865. flags |= PCWM_ASYNC;
  866. else
  867. flags &= ~PCWM_ASYNC;
  868. if (pthread_setspecific(key_pcwm, (void*)flags))
  869. return -1;
  870. return 0;
  871. }
  872. void setup_pthread_cancel_workaround()
  873. {
  874. if (pthread_key_create(&key_pcwm, NULL))
  875. quit(1, "pthread_cancel workaround: pthread_key_create failed");
  876. if (pthread_setspecific(key_pcwm, (void*)PCWM_TERMINATE))
  877. quit(1, "pthread_cancel workaround: pthread_setspecific failed");
  878. struct sigaction new_sigact = {
  879. .sa_handler = sighandler_pthread_cancel,
  880. };
  881. if (sigaction(SIGTERM, &new_sigact, &pcwm_orig_term_handler))
  882. quit(1, "pthread_cancel workaround: Failed to install SIGTERM handler");
  883. }
  884. #endif
  885. static void _now_gettimeofday(struct timeval *);
  886. static void _cgsleep_us_r_nanosleep(cgtimer_t *, int64_t);
  887. #ifdef HAVE_POOR_GETTIMEOFDAY
  888. static struct timeval tv_timeofday_offset;
  889. static struct timeval _tv_timeofday_lastchecked;
  890. static pthread_mutex_t _tv_timeofday_mutex = PTHREAD_MUTEX_INITIALIZER;
  891. static
  892. void bfg_calibrate_timeofday(struct timeval *expected, char *buf)
  893. {
  894. struct timeval actual, delta;
  895. timeradd(expected, &tv_timeofday_offset, expected);
  896. _now_gettimeofday(&actual);
  897. if (expected->tv_sec >= actual.tv_sec - 1 && expected->tv_sec <= actual.tv_sec + 1)
  898. // Within reason - no change necessary
  899. return;
  900. timersub(&actual, expected, &delta);
  901. timeradd(&tv_timeofday_offset, &delta, &tv_timeofday_offset);
  902. sprintf(buf, "Recalibrating timeofday offset (delta %ld.%06lds)", (long)delta.tv_sec, (long)delta.tv_usec);
  903. *expected = actual;
  904. }
  905. void bfg_gettimeofday(struct timeval *out)
  906. {
  907. char buf[64] = "";
  908. timer_set_now(out);
  909. mutex_lock(&_tv_timeofday_mutex);
  910. if (_tv_timeofday_lastchecked.tv_sec < out->tv_sec - 21)
  911. bfg_calibrate_timeofday(out, buf);
  912. else
  913. timeradd(out, &tv_timeofday_offset, out);
  914. mutex_unlock(&_tv_timeofday_mutex);
  915. if (unlikely(buf[0]))
  916. applog(LOG_WARNING, "%s", buf);
  917. }
  918. #endif
  919. #ifdef WIN32
  920. static LARGE_INTEGER _perffreq;
  921. static
  922. void _now_queryperformancecounter(struct timeval *tv)
  923. {
  924. LARGE_INTEGER now;
  925. if (unlikely(!QueryPerformanceCounter(&now)))
  926. quit(1, "QueryPerformanceCounter failed");
  927. *tv = (struct timeval){
  928. .tv_sec = now.QuadPart / _perffreq.QuadPart,
  929. .tv_usec = (now.QuadPart % _perffreq.QuadPart) * 1000000 / _perffreq.QuadPart,
  930. };
  931. }
  932. #endif
  933. static void bfg_init_time();
  934. static
  935. void _now_is_not_set(__maybe_unused struct timeval *tv)
  936. {
  937. bfg_init_time();
  938. timer_set_now(tv);
  939. }
  940. void (*timer_set_now)(struct timeval *tv) = _now_is_not_set;
  941. void (*cgsleep_us_r)(cgtimer_t *, int64_t) = _cgsleep_us_r_nanosleep;
  942. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC
  943. static clockid_t bfg_timer_clk;
  944. static
  945. void _now_clock_gettime(struct timeval *tv)
  946. {
  947. struct timespec ts;
  948. if (unlikely(clock_gettime(bfg_timer_clk, &ts)))
  949. quit(1, "clock_gettime failed");
  950. *tv = (struct timeval){
  951. .tv_sec = ts.tv_sec,
  952. .tv_usec = ts.tv_nsec / 1000,
  953. };
  954. }
  955. #ifdef HAVE_CLOCK_NANOSLEEP
  956. static
  957. void _cgsleep_us_r_monotonic(cgtimer_t *tv_start, int64_t us)
  958. {
  959. struct timeval tv_end[1];
  960. struct timespec ts_end[1];
  961. int ret;
  962. timer_set_delay(tv_end, tv_start, us);
  963. timeval_to_spec(ts_end, tv_end);
  964. do {
  965. ret = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, ts_end, NULL);
  966. } while (ret == EINTR);
  967. }
  968. #endif
  969. static
  970. bool _bfg_try_clock_gettime(clockid_t clk)
  971. {
  972. struct timespec ts;
  973. if (clock_gettime(clk, &ts))
  974. return false;
  975. bfg_timer_clk = clk;
  976. timer_set_now = _now_clock_gettime;
  977. return true;
  978. }
  979. #endif
  980. static
  981. void bfg_init_time()
  982. {
  983. if (timer_set_now != _now_is_not_set)
  984. return;
  985. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC
  986. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC_RAW
  987. if (_bfg_try_clock_gettime(CLOCK_MONOTONIC_RAW))
  988. applog(LOG_DEBUG, "Timers: Using clock_gettime(CLOCK_MONOTONIC_RAW)");
  989. else
  990. #endif
  991. if (_bfg_try_clock_gettime(CLOCK_MONOTONIC))
  992. {
  993. applog(LOG_DEBUG, "Timers: Using clock_gettime(CLOCK_MONOTONIC)");
  994. #ifdef HAVE_CLOCK_NANOSLEEP
  995. cgsleep_us_r = _cgsleep_us_r_monotonic;
  996. #endif
  997. }
  998. else
  999. #endif
  1000. #ifdef WIN32
  1001. if (QueryPerformanceFrequency(&_perffreq) && _perffreq.QuadPart)
  1002. {
  1003. timer_set_now = _now_queryperformancecounter;
  1004. applog(LOG_DEBUG, "Timers: Using QueryPerformanceCounter");
  1005. }
  1006. else
  1007. #endif
  1008. {
  1009. timer_set_now = _now_gettimeofday;
  1010. applog(LOG_DEBUG, "Timers: Using gettimeofday");
  1011. }
  1012. #ifdef HAVE_POOR_GETTIMEOFDAY
  1013. char buf[64] = "";
  1014. struct timeval tv;
  1015. timer_set_now(&tv);
  1016. bfg_calibrate_timeofday(&tv, buf);
  1017. applog(LOG_DEBUG, "%s", buf);
  1018. #endif
  1019. }
  1020. void subtime(struct timeval *a, struct timeval *b)
  1021. {
  1022. timersub(a, b, b);
  1023. }
  1024. void addtime(struct timeval *a, struct timeval *b)
  1025. {
  1026. timeradd(a, b, b);
  1027. }
  1028. bool time_more(struct timeval *a, struct timeval *b)
  1029. {
  1030. return timercmp(a, b, >);
  1031. }
  1032. bool time_less(struct timeval *a, struct timeval *b)
  1033. {
  1034. return timercmp(a, b, <);
  1035. }
  1036. void copy_time(struct timeval *dest, const struct timeval *src)
  1037. {
  1038. memcpy(dest, src, sizeof(struct timeval));
  1039. }
  1040. void timespec_to_val(struct timeval *val, const struct timespec *spec)
  1041. {
  1042. val->tv_sec = spec->tv_sec;
  1043. val->tv_usec = spec->tv_nsec / 1000;
  1044. }
  1045. void timeval_to_spec(struct timespec *spec, const struct timeval *val)
  1046. {
  1047. spec->tv_sec = val->tv_sec;
  1048. spec->tv_nsec = val->tv_usec * 1000;
  1049. }
  1050. void us_to_timeval(struct timeval *val, int64_t us)
  1051. {
  1052. lldiv_t tvdiv = lldiv(us, 1000000);
  1053. val->tv_sec = tvdiv.quot;
  1054. val->tv_usec = tvdiv.rem;
  1055. }
  1056. void us_to_timespec(struct timespec *spec, int64_t us)
  1057. {
  1058. lldiv_t tvdiv = lldiv(us, 1000000);
  1059. spec->tv_sec = tvdiv.quot;
  1060. spec->tv_nsec = tvdiv.rem * 1000;
  1061. }
  1062. void ms_to_timespec(struct timespec *spec, int64_t ms)
  1063. {
  1064. lldiv_t tvdiv = lldiv(ms, 1000);
  1065. spec->tv_sec = tvdiv.quot;
  1066. spec->tv_nsec = tvdiv.rem * 1000000;
  1067. }
  1068. void timeraddspec(struct timespec *a, const struct timespec *b)
  1069. {
  1070. a->tv_sec += b->tv_sec;
  1071. a->tv_nsec += b->tv_nsec;
  1072. if (a->tv_nsec >= 1000000000) {
  1073. a->tv_nsec -= 1000000000;
  1074. a->tv_sec++;
  1075. }
  1076. }
  1077. #ifndef WIN32
  1078. static
  1079. void _now_gettimeofday(struct timeval *tv)
  1080. {
  1081. gettimeofday(tv, NULL);
  1082. }
  1083. #else
  1084. /* Windows start time is since 1601 lol so convert it to unix epoch 1970. */
  1085. #define EPOCHFILETIME (116444736000000000LL)
  1086. /* Return the system time as an lldiv_t in decimicroseconds. */
  1087. static void decius_time(lldiv_t *lidiv)
  1088. {
  1089. FILETIME ft;
  1090. LARGE_INTEGER li;
  1091. GetSystemTimeAsFileTime(&ft);
  1092. li.LowPart = ft.dwLowDateTime;
  1093. li.HighPart = ft.dwHighDateTime;
  1094. li.QuadPart -= EPOCHFILETIME;
  1095. /* SystemTime is in decimicroseconds so divide by an unusual number */
  1096. *lidiv = lldiv(li.QuadPart, 10000000);
  1097. }
  1098. void _now_gettimeofday(struct timeval *tv)
  1099. {
  1100. lldiv_t lidiv;
  1101. decius_time(&lidiv);
  1102. tv->tv_sec = lidiv.quot;
  1103. tv->tv_usec = lidiv.rem / 10;
  1104. }
  1105. #endif
  1106. void cgsleep_ms_r(cgtimer_t *tv_start, int ms)
  1107. {
  1108. cgsleep_us_r(tv_start, ((int64_t)ms) * 1000);
  1109. }
  1110. static
  1111. void _cgsleep_us_r_nanosleep(cgtimer_t *tv_start, int64_t us)
  1112. {
  1113. struct timeval tv_timer[1], tv[1];
  1114. struct timespec ts[1];
  1115. timer_set_delay(tv_timer, tv_start, us);
  1116. while (true)
  1117. {
  1118. timer_set_now(tv);
  1119. if (!timercmp(tv_timer, tv, >))
  1120. return;
  1121. timersub(tv_timer, tv, tv);
  1122. timeval_to_spec(ts, tv);
  1123. nanosleep(ts, NULL);
  1124. }
  1125. }
  1126. void cgsleep_ms(int ms)
  1127. {
  1128. cgtimer_t ts_start;
  1129. cgsleep_prepare_r(&ts_start);
  1130. cgsleep_ms_r(&ts_start, ms);
  1131. }
  1132. void cgsleep_us(int64_t us)
  1133. {
  1134. cgtimer_t ts_start;
  1135. cgsleep_prepare_r(&ts_start);
  1136. cgsleep_us_r(&ts_start, us);
  1137. }
  1138. /* Returns the microseconds difference between end and start times as a double */
  1139. double us_tdiff(struct timeval *end, struct timeval *start)
  1140. {
  1141. return end->tv_sec * 1000000 + end->tv_usec - start->tv_sec * 1000000 - start->tv_usec;
  1142. }
  1143. /* Returns the seconds difference between end and start times as a double */
  1144. double tdiff(struct timeval *end, struct timeval *start)
  1145. {
  1146. return end->tv_sec - start->tv_sec + (end->tv_usec - start->tv_usec) / 1000000.0;
  1147. }
  1148. bool extract_sockaddr(char *url, char **sockaddr_url, char **sockaddr_port)
  1149. {
  1150. char *url_begin, *url_end, *ipv6_begin, *ipv6_end, *port_start = NULL;
  1151. char url_address[256], port[6];
  1152. int url_len, port_len = 0;
  1153. url_begin = strstr(url, "//");
  1154. if (!url_begin)
  1155. url_begin = url;
  1156. else
  1157. url_begin += 2;
  1158. /* Look for numeric ipv6 entries */
  1159. ipv6_begin = strstr(url_begin, "[");
  1160. ipv6_end = strstr(url_begin, "]");
  1161. if (ipv6_begin && ipv6_end && ipv6_end > ipv6_begin)
  1162. url_end = strstr(ipv6_end, ":");
  1163. else
  1164. url_end = strstr(url_begin, ":");
  1165. if (url_end) {
  1166. url_len = url_end - url_begin;
  1167. port_len = strlen(url_begin) - url_len - 1;
  1168. if (port_len < 1)
  1169. return false;
  1170. port_start = url_end + 1;
  1171. } else
  1172. url_len = strlen(url_begin);
  1173. if (url_len < 1)
  1174. return false;
  1175. sprintf(url_address, "%.*s", url_len, url_begin);
  1176. if (port_len) {
  1177. char *slash;
  1178. snprintf(port, 6, "%.*s", port_len, port_start);
  1179. slash = strchr(port, '/');
  1180. if (slash)
  1181. *slash = '\0';
  1182. } else
  1183. strcpy(port, "80");
  1184. free(*sockaddr_port);
  1185. *sockaddr_port = strdup(port);
  1186. free(*sockaddr_url);
  1187. *sockaddr_url = strdup(url_address);
  1188. return true;
  1189. }
  1190. enum send_ret {
  1191. SEND_OK,
  1192. SEND_SELECTFAIL,
  1193. SEND_SENDFAIL,
  1194. SEND_INACTIVE
  1195. };
  1196. /* Send a single command across a socket, appending \n to it. This should all
  1197. * be done under stratum lock except when first establishing the socket */
  1198. static enum send_ret __stratum_send(struct pool *pool, char *s, ssize_t len)
  1199. {
  1200. SOCKETTYPE sock = pool->sock;
  1201. ssize_t ssent = 0;
  1202. strcat(s, "\n");
  1203. len++;
  1204. while (len > 0 ) {
  1205. struct timeval timeout = {1, 0};
  1206. ssize_t sent;
  1207. fd_set wd;
  1208. FD_ZERO(&wd);
  1209. FD_SET(sock, &wd);
  1210. if (select(sock + 1, NULL, &wd, NULL, &timeout) < 1)
  1211. return SEND_SELECTFAIL;
  1212. #ifdef __APPLE__
  1213. sent = send(pool->sock, s + ssent, len, SO_NOSIGPIPE);
  1214. #elif WIN32
  1215. sent = send(pool->sock, s + ssent, len, 0);
  1216. #else
  1217. sent = send(pool->sock, s + ssent, len, MSG_NOSIGNAL);
  1218. #endif
  1219. if (sent < 0) {
  1220. if (!sock_blocks())
  1221. return SEND_SENDFAIL;
  1222. sent = 0;
  1223. }
  1224. ssent += sent;
  1225. len -= sent;
  1226. }
  1227. pool->cgminer_pool_stats.times_sent++;
  1228. pool->cgminer_pool_stats.bytes_sent += ssent;
  1229. total_bytes_sent += ssent;
  1230. pool->cgminer_pool_stats.net_bytes_sent += ssent;
  1231. return SEND_OK;
  1232. }
  1233. bool _stratum_send(struct pool *pool, char *s, ssize_t len, bool force)
  1234. {
  1235. enum send_ret ret = SEND_INACTIVE;
  1236. if (opt_protocol)
  1237. applog(LOG_DEBUG, "Pool %u: SEND: %s", pool->pool_no, s);
  1238. mutex_lock(&pool->stratum_lock);
  1239. if (pool->stratum_active || force)
  1240. ret = __stratum_send(pool, s, len);
  1241. mutex_unlock(&pool->stratum_lock);
  1242. /* This is to avoid doing applog under stratum_lock */
  1243. switch (ret) {
  1244. default:
  1245. case SEND_OK:
  1246. break;
  1247. case SEND_SELECTFAIL:
  1248. applog(LOG_DEBUG, "Write select failed on pool %d sock", pool->pool_no);
  1249. suspend_stratum(pool);
  1250. break;
  1251. case SEND_SENDFAIL:
  1252. applog(LOG_DEBUG, "Failed to send in stratum_send");
  1253. suspend_stratum(pool);
  1254. break;
  1255. case SEND_INACTIVE:
  1256. applog(LOG_DEBUG, "Stratum send failed due to no pool stratum_active");
  1257. break;
  1258. }
  1259. return (ret == SEND_OK);
  1260. }
  1261. static bool socket_full(struct pool *pool, int wait)
  1262. {
  1263. SOCKETTYPE sock = pool->sock;
  1264. struct timeval timeout;
  1265. fd_set rd;
  1266. if (sock == INVSOCK)
  1267. return true;
  1268. if (unlikely(wait < 0))
  1269. wait = 0;
  1270. FD_ZERO(&rd);
  1271. FD_SET(sock, &rd);
  1272. timeout.tv_usec = 0;
  1273. timeout.tv_sec = wait;
  1274. if (select(sock + 1, &rd, NULL, NULL, &timeout) > 0)
  1275. return true;
  1276. return false;
  1277. }
  1278. /* Check to see if Santa's been good to you */
  1279. bool sock_full(struct pool *pool)
  1280. {
  1281. if (strlen(pool->sockbuf))
  1282. return true;
  1283. return (socket_full(pool, 0));
  1284. }
  1285. static void clear_sockbuf(struct pool *pool)
  1286. {
  1287. strcpy(pool->sockbuf, "");
  1288. }
  1289. static void clear_sock(struct pool *pool)
  1290. {
  1291. ssize_t n;
  1292. mutex_lock(&pool->stratum_lock);
  1293. do {
  1294. if (pool->sock)
  1295. n = recv(pool->sock, pool->sockbuf, RECVSIZE, 0);
  1296. else
  1297. n = 0;
  1298. } while (n > 0);
  1299. mutex_unlock(&pool->stratum_lock);
  1300. clear_sockbuf(pool);
  1301. }
  1302. /* Make sure the pool sockbuf is large enough to cope with any coinbase size
  1303. * by reallocing it to a large enough size rounded up to a multiple of RBUFSIZE
  1304. * and zeroing the new memory */
  1305. static void recalloc_sock(struct pool *pool, size_t len)
  1306. {
  1307. size_t old, new;
  1308. old = strlen(pool->sockbuf);
  1309. new = old + len + 1;
  1310. if (new < pool->sockbuf_size)
  1311. return;
  1312. new = new + (RBUFSIZE - (new % RBUFSIZE));
  1313. // Avoid potentially recursive locking
  1314. // applog(LOG_DEBUG, "Recallocing pool sockbuf to %lu", (unsigned long)new);
  1315. pool->sockbuf = realloc(pool->sockbuf, new);
  1316. if (!pool->sockbuf)
  1317. quithere(1, "Failed to realloc pool sockbuf");
  1318. memset(pool->sockbuf + old, 0, new - old);
  1319. pool->sockbuf_size = new;
  1320. }
  1321. /* Peeks at a socket to find the first end of line and then reads just that
  1322. * from the socket and returns that as a malloced char */
  1323. char *recv_line(struct pool *pool)
  1324. {
  1325. char *tok, *sret = NULL;
  1326. ssize_t len, buflen;
  1327. int waited = 0;
  1328. if (!strstr(pool->sockbuf, "\n")) {
  1329. struct timeval rstart, now;
  1330. cgtime(&rstart);
  1331. if (!socket_full(pool, DEFAULT_SOCKWAIT)) {
  1332. applog(LOG_DEBUG, "Timed out waiting for data on socket_full");
  1333. goto out;
  1334. }
  1335. do {
  1336. char s[RBUFSIZE];
  1337. size_t slen;
  1338. ssize_t n;
  1339. memset(s, 0, RBUFSIZE);
  1340. n = recv(pool->sock, s, RECVSIZE, 0);
  1341. if (!n) {
  1342. applog(LOG_DEBUG, "Socket closed waiting in recv_line");
  1343. suspend_stratum(pool);
  1344. break;
  1345. }
  1346. cgtime(&now);
  1347. waited = tdiff(&now, &rstart);
  1348. if (n < 0) {
  1349. //Save errno from being overweitten bei socket_ commands
  1350. int socket_recv_errno;
  1351. socket_recv_errno = SOCKERR;
  1352. if (!sock_blocks() || !socket_full(pool, DEFAULT_SOCKWAIT - waited)) {
  1353. applog(LOG_DEBUG, "Failed to recv sock in recv_line: %s", bfg_strerror(socket_recv_errno, BST_SOCKET));
  1354. suspend_stratum(pool);
  1355. break;
  1356. }
  1357. } else {
  1358. slen = strlen(s);
  1359. recalloc_sock(pool, slen);
  1360. strcat(pool->sockbuf, s);
  1361. }
  1362. } while (waited < DEFAULT_SOCKWAIT && !strstr(pool->sockbuf, "\n"));
  1363. }
  1364. buflen = strlen(pool->sockbuf);
  1365. tok = strtok(pool->sockbuf, "\n");
  1366. if (!tok) {
  1367. applog(LOG_DEBUG, "Failed to parse a \\n terminated string in recv_line");
  1368. goto out;
  1369. }
  1370. sret = strdup(tok);
  1371. len = strlen(sret);
  1372. /* Copy what's left in the buffer after the \n, including the
  1373. * terminating \0 */
  1374. if (buflen > len + 1)
  1375. memmove(pool->sockbuf, pool->sockbuf + len + 1, buflen - len + 1);
  1376. else
  1377. strcpy(pool->sockbuf, "");
  1378. pool->cgminer_pool_stats.times_received++;
  1379. pool->cgminer_pool_stats.bytes_received += len;
  1380. total_bytes_rcvd += len;
  1381. pool->cgminer_pool_stats.net_bytes_received += len;
  1382. out:
  1383. if (!sret)
  1384. clear_sock(pool);
  1385. else if (opt_protocol)
  1386. applog(LOG_DEBUG, "Pool %u: RECV: %s", pool->pool_no, sret);
  1387. return sret;
  1388. }
  1389. /* Dumps any JSON value as a string. Just like jansson 2.1's JSON_ENCODE_ANY
  1390. * flag, but this is compatible with 2.0. */
  1391. char *json_dumps_ANY(json_t *json, size_t flags)
  1392. {
  1393. switch (json_typeof(json))
  1394. {
  1395. case JSON_ARRAY:
  1396. case JSON_OBJECT:
  1397. return json_dumps(json, flags);
  1398. default:
  1399. break;
  1400. }
  1401. char *rv;
  1402. #ifdef JSON_ENCODE_ANY
  1403. rv = json_dumps(json, JSON_ENCODE_ANY | flags);
  1404. if (rv)
  1405. return rv;
  1406. #endif
  1407. json_t *tmp = json_array();
  1408. char *s;
  1409. int i;
  1410. size_t len;
  1411. if (!tmp)
  1412. quithere(1, "Failed to allocate json array");
  1413. if (json_array_append(tmp, json))
  1414. quithere(1, "Failed to append temporary array");
  1415. s = json_dumps(tmp, flags);
  1416. if (!s)
  1417. return NULL;
  1418. for (i = 0; s[i] != '['; ++i)
  1419. if (unlikely(!(s[i] && isCspace(s[i]))))
  1420. quithere(1, "Failed to find opening bracket in array dump");
  1421. len = strlen(&s[++i]) - 1;
  1422. if (unlikely(s[i+len] != ']'))
  1423. quithere(1, "Failed to find closing bracket in array dump");
  1424. rv = malloc(len + 1);
  1425. memcpy(rv, &s[i], len);
  1426. rv[len] = '\0';
  1427. free(s);
  1428. json_decref(tmp);
  1429. return rv;
  1430. }
  1431. /* Extracts a string value from a json array with error checking. To be used
  1432. * when the value of the string returned is only examined and not to be stored.
  1433. * See json_array_string below */
  1434. const char *__json_array_string(json_t *val, unsigned int entry)
  1435. {
  1436. json_t *arr_entry;
  1437. if (json_is_null(val))
  1438. return NULL;
  1439. if (!json_is_array(val))
  1440. return NULL;
  1441. if (entry > json_array_size(val))
  1442. return NULL;
  1443. arr_entry = json_array_get(val, entry);
  1444. if (!json_is_string(arr_entry))
  1445. return NULL;
  1446. return json_string_value(arr_entry);
  1447. }
  1448. /* Creates a freshly malloced dup of __json_array_string */
  1449. static char *json_array_string(json_t *val, unsigned int entry)
  1450. {
  1451. const char *buf = __json_array_string(val, entry);
  1452. if (buf)
  1453. return strdup(buf);
  1454. return NULL;
  1455. }
  1456. void stratum_probe_transparency(struct pool *pool)
  1457. {
  1458. // Request transaction data to discourage pools from doing anything shady
  1459. char s[1024];
  1460. int sLen;
  1461. sLen = sprintf(s, "{\"params\": [\"%s\"], \"id\": \"txlist%s\", \"method\": \"mining.get_transactions\"}",
  1462. pool->swork.job_id,
  1463. pool->swork.job_id);
  1464. stratum_send(pool, s, sLen);
  1465. if ((!pool->swork.opaque) && !timer_isset(&pool->swork.tv_transparency))
  1466. cgtime(&pool->swork.tv_transparency);
  1467. pool->swork.transparency_probed = true;
  1468. }
  1469. static bool parse_notify(struct pool *pool, json_t *val)
  1470. {
  1471. const char *prev_hash, *coinbase1, *coinbase2, *bbversion, *nbit, *ntime;
  1472. char *job_id;
  1473. bool clean, ret = false;
  1474. int merkles, i;
  1475. size_t cb1_len, cb2_len;
  1476. json_t *arr;
  1477. arr = json_array_get(val, 4);
  1478. if (!arr || !json_is_array(arr))
  1479. goto out;
  1480. merkles = json_array_size(arr);
  1481. for (i = 0; i < merkles; i++)
  1482. if (!json_is_string(json_array_get(arr, i)))
  1483. goto out;
  1484. prev_hash = __json_array_string(val, 1);
  1485. coinbase1 = __json_array_string(val, 2);
  1486. coinbase2 = __json_array_string(val, 3);
  1487. bbversion = __json_array_string(val, 5);
  1488. nbit = __json_array_string(val, 6);
  1489. ntime = __json_array_string(val, 7);
  1490. clean = json_is_true(json_array_get(val, 8));
  1491. if (!prev_hash || !coinbase1 || !coinbase2 || !bbversion || !nbit || !ntime)
  1492. goto out;
  1493. job_id = json_array_string(val, 0);
  1494. if (!job_id)
  1495. goto out;
  1496. cg_wlock(&pool->data_lock);
  1497. cgtime(&pool->swork.tv_received);
  1498. free(pool->swork.job_id);
  1499. pool->swork.job_id = job_id;
  1500. pool->submit_old = !clean;
  1501. pool->swork.clean = true;
  1502. hex2bin(&pool->swork.header1[0], bbversion, 4);
  1503. hex2bin(&pool->swork.header1[4], prev_hash, 32);
  1504. hex2bin((void*)&pool->swork.ntime, ntime, 4);
  1505. pool->swork.ntime = be32toh(pool->swork.ntime);
  1506. hex2bin(&pool->swork.diffbits[0], nbit, 4);
  1507. cb1_len = strlen(coinbase1) / 2;
  1508. pool->swork.nonce2_offset = cb1_len + pool->n1_len;
  1509. cb2_len = strlen(coinbase2) / 2;
  1510. bytes_resize(&pool->swork.coinbase, pool->swork.nonce2_offset + pool->n2size + cb2_len);
  1511. uint8_t *coinbase = bytes_buf(&pool->swork.coinbase);
  1512. hex2bin(coinbase, coinbase1, cb1_len);
  1513. hex2bin(&coinbase[cb1_len], pool->nonce1, pool->n1_len);
  1514. // NOTE: gap for nonce2, filled at work generation time
  1515. hex2bin(&coinbase[pool->swork.nonce2_offset + pool->n2size], coinbase2, cb2_len);
  1516. bytes_resize(&pool->swork.merkle_bin, 32 * merkles);
  1517. for (i = 0; i < merkles; i++)
  1518. hex2bin(&bytes_buf(&pool->swork.merkle_bin)[i * 32], json_string_value(json_array_get(arr, i)), 32);
  1519. pool->swork.merkles = merkles;
  1520. pool->nonce2 = 0;
  1521. cg_wunlock(&pool->data_lock);
  1522. applog(LOG_DEBUG, "Received stratum notify from pool %u with job_id=%s",
  1523. pool->pool_no, job_id);
  1524. if (opt_debug && opt_protocol)
  1525. {
  1526. applog(LOG_DEBUG, "job_id: %s", job_id);
  1527. applog(LOG_DEBUG, "prev_hash: %s", prev_hash);
  1528. applog(LOG_DEBUG, "coinbase1: %s", coinbase1);
  1529. applog(LOG_DEBUG, "coinbase2: %s", coinbase2);
  1530. for (i = 0; i < merkles; i++)
  1531. applog(LOG_DEBUG, "merkle%d: %s", i, json_string_value(json_array_get(arr, i)));
  1532. applog(LOG_DEBUG, "bbversion: %s", bbversion);
  1533. applog(LOG_DEBUG, "nbit: %s", nbit);
  1534. applog(LOG_DEBUG, "ntime: %s", ntime);
  1535. applog(LOG_DEBUG, "clean: %s", clean ? "yes" : "no");
  1536. }
  1537. /* A notify message is the closest stratum gets to a getwork */
  1538. pool->getwork_requested++;
  1539. total_getworks++;
  1540. if ((merkles && (!pool->swork.transparency_probed || rand() <= RAND_MAX / (opt_skip_checks + 1))) || timer_isset(&pool->swork.tv_transparency))
  1541. if (pool->probed)
  1542. stratum_probe_transparency(pool);
  1543. ret = true;
  1544. out:
  1545. return ret;
  1546. }
  1547. static bool parse_diff(struct pool *pool, json_t *val)
  1548. {
  1549. double diff;
  1550. diff = json_number_value(json_array_get(val, 0));
  1551. if (diff == 0)
  1552. return false;
  1553. cg_wlock(&pool->data_lock);
  1554. pool->swork.diff = diff;
  1555. cg_wunlock(&pool->data_lock);
  1556. applog(LOG_DEBUG, "Pool %d stratum bdifficulty set to %f", pool->pool_no, diff);
  1557. return true;
  1558. }
  1559. static bool parse_reconnect(struct pool *pool, json_t *val)
  1560. {
  1561. const char *url, *port;
  1562. char address[256];
  1563. url = __json_array_string(val, 0);
  1564. if (!url)
  1565. url = pool->sockaddr_url;
  1566. port = __json_array_string(val, 1);
  1567. if (!port)
  1568. port = pool->stratum_port;
  1569. snprintf(address, sizeof(address), "%s:%s", url, port);
  1570. if (!extract_sockaddr(address, &pool->sockaddr_url, &pool->stratum_port))
  1571. return false;
  1572. pool->stratum_url = pool->sockaddr_url;
  1573. applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, address);
  1574. if (!restart_stratum(pool))
  1575. return false;
  1576. return true;
  1577. }
  1578. static bool send_version(struct pool *pool, json_t *val)
  1579. {
  1580. char s[RBUFSIZE], *idstr;
  1581. json_t *id = json_object_get(val, "id");
  1582. if (!(id && !json_is_null(id)))
  1583. return false;
  1584. idstr = json_dumps_ANY(id, 0);
  1585. sprintf(s, "{\"id\": %s, \"result\": \""PACKAGE"/"VERSION"\", \"error\": null}", idstr);
  1586. free(idstr);
  1587. if (!stratum_send(pool, s, strlen(s)))
  1588. return false;
  1589. return true;
  1590. }
  1591. static bool stratum_show_message(struct pool *pool, json_t *val, json_t *params)
  1592. {
  1593. char *msg;
  1594. char s[RBUFSIZE], *idstr;
  1595. json_t *id = json_object_get(val, "id");
  1596. msg = json_array_string(params, 0);
  1597. if (likely(msg))
  1598. {
  1599. free(pool->admin_msg);
  1600. pool->admin_msg = msg;
  1601. applog(LOG_NOTICE, "Message from pool %u: %s", pool->pool_no, msg);
  1602. }
  1603. if (!(id && !json_is_null(id)))
  1604. return true;
  1605. idstr = json_dumps_ANY(id, 0);
  1606. if (likely(msg))
  1607. sprintf(s, "{\"id\": %s, \"result\": true, \"error\": null}", idstr);
  1608. else
  1609. sprintf(s, "{\"id\": %s, \"result\": null, \"error\": [-1, \"Failed to parse message\", null]}", idstr);
  1610. free(idstr);
  1611. if (!stratum_send(pool, s, strlen(s)))
  1612. return false;
  1613. return true;
  1614. }
  1615. bool parse_method(struct pool *pool, char *s)
  1616. {
  1617. json_t *val = NULL, *method, *err_val, *params;
  1618. json_error_t err;
  1619. bool ret = false;
  1620. const char *buf;
  1621. if (!s)
  1622. goto out;
  1623. val = JSON_LOADS(s, &err);
  1624. if (!val) {
  1625. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1626. goto out;
  1627. }
  1628. method = json_object_get(val, "method");
  1629. if (!method)
  1630. goto out;
  1631. err_val = json_object_get(val, "error");
  1632. params = json_object_get(val, "params");
  1633. if (err_val && !json_is_null(err_val)) {
  1634. char *ss;
  1635. if (err_val)
  1636. ss = json_dumps(err_val, JSON_INDENT(3));
  1637. else
  1638. ss = strdup("(unknown reason)");
  1639. applog(LOG_INFO, "JSON-RPC method decode failed: %s", ss);
  1640. free(ss);
  1641. goto out;
  1642. }
  1643. buf = json_string_value(method);
  1644. if (!buf)
  1645. goto out;
  1646. if (!strncasecmp(buf, "mining.notify", 13)) {
  1647. if (parse_notify(pool, params))
  1648. pool->stratum_notify = ret = true;
  1649. else
  1650. pool->stratum_notify = ret = false;
  1651. goto out;
  1652. }
  1653. if (!strncasecmp(buf, "mining.set_difficulty", 21) && parse_diff(pool, params)) {
  1654. ret = true;
  1655. goto out;
  1656. }
  1657. if (!strncasecmp(buf, "client.reconnect", 16) && parse_reconnect(pool, params)) {
  1658. ret = true;
  1659. goto out;
  1660. }
  1661. if (!strncasecmp(buf, "client.get_version", 18) && send_version(pool, val)) {
  1662. ret = true;
  1663. goto out;
  1664. }
  1665. if (!strncasecmp(buf, "client.show_message", 19) && stratum_show_message(pool, val, params)) {
  1666. ret = true;
  1667. goto out;
  1668. }
  1669. out:
  1670. if (val)
  1671. json_decref(val);
  1672. return ret;
  1673. }
  1674. extern bool parse_stratum_response(struct pool *, char *s);
  1675. bool auth_stratum(struct pool *pool)
  1676. {
  1677. json_t *val = NULL, *res_val, *err_val;
  1678. char s[RBUFSIZE], *sret = NULL;
  1679. json_error_t err;
  1680. bool ret = false;
  1681. sprintf(s, "{\"id\": \"auth\", \"method\": \"mining.authorize\", \"params\": [\"%s\", \"%s\"]}",
  1682. pool->rpc_user, pool->rpc_pass);
  1683. if (!stratum_send(pool, s, strlen(s)))
  1684. goto out;
  1685. /* Parse all data in the queue and anything left should be auth */
  1686. while (42) {
  1687. sret = recv_line(pool);
  1688. if (!sret)
  1689. goto out;
  1690. if (parse_method(pool, sret))
  1691. free(sret);
  1692. else
  1693. break;
  1694. }
  1695. val = JSON_LOADS(sret, &err);
  1696. free(sret);
  1697. res_val = json_object_get(val, "result");
  1698. err_val = json_object_get(val, "error");
  1699. if (!res_val || json_is_false(res_val) || (err_val && !json_is_null(err_val))) {
  1700. char *ss;
  1701. if (err_val)
  1702. ss = json_dumps(err_val, JSON_INDENT(3));
  1703. else
  1704. ss = strdup("(unknown reason)");
  1705. applog(LOG_WARNING, "pool %d JSON stratum auth failed: %s", pool->pool_no, ss);
  1706. free(ss);
  1707. goto out;
  1708. }
  1709. ret = true;
  1710. applog(LOG_INFO, "Stratum authorisation success for pool %d", pool->pool_no);
  1711. pool->probed = true;
  1712. successful_connect = true;
  1713. out:
  1714. if (val)
  1715. json_decref(val);
  1716. if (pool->stratum_notify)
  1717. stratum_probe_transparency(pool);
  1718. return ret;
  1719. }
  1720. curl_socket_t grab_socket_opensocket_cb(void *clientp, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr)
  1721. {
  1722. struct pool *pool = clientp;
  1723. curl_socket_t sck = socket(addr->family, addr->socktype, addr->protocol);
  1724. pool->sock = sck;
  1725. return sck;
  1726. }
  1727. static bool setup_stratum_curl(struct pool *pool)
  1728. {
  1729. char curl_err_str[CURL_ERROR_SIZE];
  1730. CURL *curl = NULL;
  1731. char s[RBUFSIZE];
  1732. bool ret = false;
  1733. applog(LOG_DEBUG, "initiate_stratum with sockbuf=%p", pool->sockbuf);
  1734. mutex_lock(&pool->stratum_lock);
  1735. timer_unset(&pool->swork.tv_transparency);
  1736. pool->stratum_active = false;
  1737. pool->stratum_notify = false;
  1738. pool->swork.transparency_probed = false;
  1739. if (pool->stratum_curl)
  1740. curl_easy_cleanup(pool->stratum_curl);
  1741. pool->stratum_curl = curl_easy_init();
  1742. if (unlikely(!pool->stratum_curl))
  1743. quithere(1, "Failed to curl_easy_init");
  1744. if (pool->sockbuf)
  1745. pool->sockbuf[0] = '\0';
  1746. curl = pool->stratum_curl;
  1747. if (!pool->sockbuf) {
  1748. pool->sockbuf = calloc(RBUFSIZE, 1);
  1749. if (!pool->sockbuf)
  1750. quithere(1, "Failed to calloc pool sockbuf");
  1751. pool->sockbuf_size = RBUFSIZE;
  1752. }
  1753. /* Create a http url for use with curl */
  1754. sprintf(s, "http://%s:%s", pool->sockaddr_url, pool->stratum_port);
  1755. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  1756. curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 30);
  1757. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_err_str);
  1758. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  1759. curl_easy_setopt(curl, CURLOPT_URL, s);
  1760. if (!opt_delaynet)
  1761. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  1762. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  1763. * to enable it */
  1764. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  1765. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  1766. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1767. // CURLINFO_LASTSOCKET is broken on Win64 (which has a wider SOCKET type than curl_easy_getinfo returns), so we use this hack for now
  1768. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, grab_socket_opensocket_cb);
  1769. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  1770. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  1771. if (pool->rpc_proxy) {
  1772. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  1773. } else if (opt_socks_proxy) {
  1774. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  1775. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  1776. }
  1777. curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1);
  1778. pool->sock = INVSOCK;
  1779. if (curl_easy_perform(curl)) {
  1780. applog(LOG_INFO, "Stratum connect failed to pool %d: %s", pool->pool_no, curl_err_str);
  1781. errout:
  1782. curl_easy_cleanup(curl);
  1783. pool->stratum_curl = NULL;
  1784. goto out;
  1785. }
  1786. if (pool->sock == INVSOCK)
  1787. {
  1788. applog(LOG_ERR, "Stratum connect succeeded, but technical problem extracting socket (pool %u)", pool->pool_no);
  1789. goto errout;
  1790. }
  1791. keep_sockalive(pool->sock);
  1792. pool->cgminer_pool_stats.times_sent++;
  1793. pool->cgminer_pool_stats.times_received++;
  1794. ret = true;
  1795. out:
  1796. mutex_unlock(&pool->stratum_lock);
  1797. return ret;
  1798. }
  1799. static char *get_sessionid(json_t *val)
  1800. {
  1801. char *ret = NULL;
  1802. json_t *arr_val;
  1803. int arrsize, i;
  1804. arr_val = json_array_get(val, 0);
  1805. if (!arr_val || !json_is_array(arr_val))
  1806. goto out;
  1807. arrsize = json_array_size(arr_val);
  1808. for (i = 0; i < arrsize; i++) {
  1809. json_t *arr = json_array_get(arr_val, i);
  1810. const char *notify;
  1811. if (!arr | !json_is_array(arr))
  1812. break;
  1813. notify = __json_array_string(arr, 0);
  1814. if (!notify)
  1815. continue;
  1816. if (!strncasecmp(notify, "mining.notify", 13)) {
  1817. ret = json_array_string(arr, 1);
  1818. break;
  1819. }
  1820. }
  1821. out:
  1822. return ret;
  1823. }
  1824. void suspend_stratum(struct pool *pool)
  1825. {
  1826. clear_sockbuf(pool);
  1827. applog(LOG_INFO, "Closing socket for stratum pool %d", pool->pool_no);
  1828. mutex_lock(&pool->stratum_lock);
  1829. pool->stratum_active = pool->stratum_notify = false;
  1830. if (pool->stratum_curl) {
  1831. curl_easy_cleanup(pool->stratum_curl);
  1832. }
  1833. pool->stratum_curl = NULL;
  1834. pool->sock = INVSOCK;
  1835. mutex_unlock(&pool->stratum_lock);
  1836. }
  1837. bool initiate_stratum(struct pool *pool)
  1838. {
  1839. bool ret = false, recvd = false, noresume = false, sockd = false;
  1840. bool trysuggest = request_target_str;
  1841. char s[RBUFSIZE], *sret = NULL, *nonce1, *sessionid;
  1842. json_t *val = NULL, *res_val, *err_val;
  1843. json_error_t err;
  1844. int n2size;
  1845. resend:
  1846. if (!setup_stratum_curl(pool)) {
  1847. sockd = false;
  1848. goto out;
  1849. }
  1850. sockd = true;
  1851. clear_sock(pool);
  1852. if (trysuggest)
  1853. {
  1854. int sz = sprintf(s, "{\"id\": null, \"method\": \"mining.suggest_target\", \"params\": [\"%s\"]}", request_target_str);
  1855. if (!_stratum_send(pool, s, sz, true))
  1856. {
  1857. applog(LOG_DEBUG, "Pool %u: Failed to send suggest_target in initiate_stratum", pool->pool_no);
  1858. goto out;
  1859. }
  1860. recvd = true;
  1861. }
  1862. if (noresume) {
  1863. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": []}", swork_id++);
  1864. } else {
  1865. if (pool->sessionid)
  1866. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\", \"%s\"]}", swork_id++, pool->sessionid);
  1867. else
  1868. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\"]}", swork_id++);
  1869. }
  1870. if (!_stratum_send(pool, s, strlen(s), true)) {
  1871. applog(LOG_DEBUG, "Failed to send s in initiate_stratum");
  1872. goto out;
  1873. }
  1874. recvd = true;
  1875. if (!socket_full(pool, DEFAULT_SOCKWAIT)) {
  1876. applog(LOG_DEBUG, "Timed out waiting for response in initiate_stratum");
  1877. goto out;
  1878. }
  1879. sret = recv_line(pool);
  1880. if (!sret)
  1881. goto out;
  1882. val = JSON_LOADS(sret, &err);
  1883. free(sret);
  1884. if (!val) {
  1885. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  1886. goto out;
  1887. }
  1888. res_val = json_object_get(val, "result");
  1889. err_val = json_object_get(val, "error");
  1890. if (!res_val || json_is_null(res_val) ||
  1891. (err_val && !json_is_null(err_val))) {
  1892. char *ss;
  1893. if (err_val)
  1894. ss = json_dumps(err_val, JSON_INDENT(3));
  1895. else
  1896. ss = strdup("(unknown reason)");
  1897. applog(LOG_INFO, "JSON-RPC decode failed: %s", ss);
  1898. free(ss);
  1899. goto out;
  1900. }
  1901. sessionid = get_sessionid(res_val);
  1902. if (!sessionid)
  1903. applog(LOG_DEBUG, "Failed to get sessionid in initiate_stratum");
  1904. nonce1 = json_array_string(res_val, 1);
  1905. if (!nonce1) {
  1906. applog(LOG_INFO, "Failed to get nonce1 in initiate_stratum");
  1907. free(sessionid);
  1908. goto out;
  1909. }
  1910. n2size = json_integer_value(json_array_get(res_val, 2));
  1911. if (!n2size) {
  1912. applog(LOG_INFO, "Failed to get n2size in initiate_stratum");
  1913. free(sessionid);
  1914. free(nonce1);
  1915. goto out;
  1916. }
  1917. cg_wlock(&pool->data_lock);
  1918. free(pool->sessionid);
  1919. pool->sessionid = sessionid;
  1920. free(pool->nonce1);
  1921. pool->nonce1 = nonce1;
  1922. pool->n1_len = strlen(nonce1) / 2;
  1923. pool->n2size = n2size;
  1924. pool->nonce2sz = (n2size > sizeof(pool->nonce2)) ? sizeof(pool->nonce2) : n2size;
  1925. #ifdef WORDS_BIGENDIAN
  1926. pool->nonce2off = (n2size < sizeof(pool->nonce2)) ? (sizeof(pool->nonce2) - n2size) : 0;
  1927. #endif
  1928. cg_wunlock(&pool->data_lock);
  1929. if (sessionid)
  1930. applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid);
  1931. ret = true;
  1932. out:
  1933. if (val)
  1934. {
  1935. json_decref(val);
  1936. val = NULL;
  1937. }
  1938. if (ret) {
  1939. if (!pool->stratum_url)
  1940. pool->stratum_url = pool->sockaddr_url;
  1941. pool->stratum_active = true;
  1942. pool->swork.diff = 1;
  1943. if (opt_protocol) {
  1944. applog(LOG_DEBUG, "Pool %d confirmed mining.subscribe with extranonce1 %s extran2size %d",
  1945. pool->pool_no, pool->nonce1, pool->n2size);
  1946. }
  1947. } else {
  1948. if (recvd)
  1949. {
  1950. if (trysuggest)
  1951. {
  1952. applog(LOG_DEBUG, "Pool %u: Failed to connect stratum with mining.suggest_target, retrying without", pool->pool_no);
  1953. trysuggest = false;
  1954. goto resend;
  1955. }
  1956. if (!noresume)
  1957. {
  1958. applog(LOG_DEBUG, "Failed to resume stratum, trying afresh");
  1959. noresume = true;
  1960. goto resend;
  1961. }
  1962. }
  1963. applog(LOG_DEBUG, "Initiate stratum failed");
  1964. if (sockd)
  1965. suspend_stratum(pool);
  1966. }
  1967. return ret;
  1968. }
  1969. bool restart_stratum(struct pool *pool)
  1970. {
  1971. if (pool->stratum_active)
  1972. suspend_stratum(pool);
  1973. if (!initiate_stratum(pool))
  1974. return false;
  1975. if (!auth_stratum(pool))
  1976. return false;
  1977. return true;
  1978. }
  1979. void dev_error_update(struct cgpu_info *dev, enum dev_reason reason)
  1980. {
  1981. dev->device_last_not_well = time(NULL);
  1982. cgtime(&dev->tv_device_last_not_well);
  1983. dev->device_not_well_reason = reason;
  1984. }
  1985. void dev_error(struct cgpu_info *dev, enum dev_reason reason)
  1986. {
  1987. dev_error_update(dev, reason);
  1988. switch (reason) {
  1989. case REASON_THREAD_FAIL_INIT:
  1990. dev->thread_fail_init_count++;
  1991. break;
  1992. case REASON_THREAD_ZERO_HASH:
  1993. dev->thread_zero_hash_count++;
  1994. break;
  1995. case REASON_THREAD_FAIL_QUEUE:
  1996. dev->thread_fail_queue_count++;
  1997. break;
  1998. case REASON_DEV_SICK_IDLE_60:
  1999. dev->dev_sick_idle_60_count++;
  2000. break;
  2001. case REASON_DEV_DEAD_IDLE_600:
  2002. dev->dev_dead_idle_600_count++;
  2003. break;
  2004. case REASON_DEV_NOSTART:
  2005. dev->dev_nostart_count++;
  2006. break;
  2007. case REASON_DEV_OVER_HEAT:
  2008. dev->dev_over_heat_count++;
  2009. break;
  2010. case REASON_DEV_THERMAL_CUTOFF:
  2011. dev->dev_thermal_cutoff_count++;
  2012. break;
  2013. case REASON_DEV_COMMS_ERROR:
  2014. dev->dev_comms_error_count++;
  2015. break;
  2016. case REASON_DEV_THROTTLE:
  2017. dev->dev_throttle_count++;
  2018. break;
  2019. }
  2020. }
  2021. /* Realloc an existing string to fit an extra string s, appending s to it. */
  2022. void *realloc_strcat(char *ptr, char *s)
  2023. {
  2024. size_t old = strlen(ptr), len = strlen(s);
  2025. char *ret;
  2026. if (!len)
  2027. return ptr;
  2028. len += old + 1;
  2029. align_len(&len);
  2030. ret = malloc(len);
  2031. if (unlikely(!ret))
  2032. quithere(1, "Failed to malloc");
  2033. sprintf(ret, "%s%s", ptr, s);
  2034. free(ptr);
  2035. return ret;
  2036. }
  2037. static
  2038. bool sanechars[] = {
  2039. false, false, false, false, false, false, false, false,
  2040. false, false, false, false, false, false, false, false,
  2041. false, false, false, false, false, false, false, false,
  2042. false, false, false, false, false, false, false, false,
  2043. false, false, false, false, false, false, false, false,
  2044. false, false, false, false, false, false, false, false,
  2045. true , true , true , true , true , true , true , true ,
  2046. true , true , false, false, false, false, false, false,
  2047. false, true , true , true , true , true , true , true ,
  2048. true , true , true , true , true , true , true , true ,
  2049. true , true , true , true , true , true , true , true ,
  2050. true , true , true , false, false, false, false, false,
  2051. false, true , true , true , true , true , true , true ,
  2052. true , true , true , true , true , true , true , true ,
  2053. true , true , true , true , true , true , true , true ,
  2054. true , true , true , false, false, false, false, false,
  2055. };
  2056. char *sanestr(char *o, char *s)
  2057. {
  2058. char *rv = o;
  2059. bool br = false;
  2060. for ( ; s[0]; ++s)
  2061. {
  2062. if (sanechars[s[0] & 0x7f])
  2063. {
  2064. if (br)
  2065. {
  2066. br = false;
  2067. if (s[0] >= '0' && s[0] <= '9')
  2068. (o++)[0] = '_';
  2069. }
  2070. (o++)[0] = s[0];
  2071. }
  2072. else
  2073. if (o != s && o[-1] >= '0' && o[-1] <= '9')
  2074. br = true;
  2075. }
  2076. o[0] = '\0';
  2077. return rv;
  2078. }
  2079. void RenameThread(const char* name)
  2080. {
  2081. #if defined(PR_SET_NAME)
  2082. // Only the first 15 characters are used (16 - NUL terminator)
  2083. prctl(PR_SET_NAME, name, 0, 0, 0);
  2084. #elif defined(__APPLE__)
  2085. pthread_setname_np(name);
  2086. #elif (defined(__FreeBSD__) || defined(__OpenBSD__))
  2087. pthread_set_name_np(pthread_self(), name);
  2088. #else
  2089. // Prevent warnings for unused parameters...
  2090. (void)name;
  2091. #endif
  2092. }
  2093. static pthread_key_t key_bfgtls;
  2094. struct bfgtls_data {
  2095. char *bfg_strerror_result;
  2096. size_t bfg_strerror_resultsz;
  2097. #ifdef WIN32
  2098. LPSTR bfg_strerror_socketresult;
  2099. #endif
  2100. };
  2101. static
  2102. struct bfgtls_data *get_bfgtls()
  2103. {
  2104. struct bfgtls_data *bfgtls = pthread_getspecific(key_bfgtls);
  2105. if (bfgtls)
  2106. return bfgtls;
  2107. void *p;
  2108. bfgtls = malloc(sizeof(*bfgtls));
  2109. if (!bfgtls)
  2110. quithere(1, "malloc bfgtls failed");
  2111. p = malloc(64);
  2112. if (!p)
  2113. quithere(1, "malloc bfg_strerror_result failed");
  2114. *bfgtls = (struct bfgtls_data){
  2115. .bfg_strerror_resultsz = 64,
  2116. .bfg_strerror_result = p,
  2117. };
  2118. if (pthread_setspecific(key_bfgtls, bfgtls))
  2119. quithere(1, "pthread_setspecific failed");
  2120. return bfgtls;
  2121. }
  2122. void bfg_init_threadlocal()
  2123. {
  2124. if (pthread_key_create(&key_bfgtls, NULL))
  2125. quithere(1, "pthread_key_create failed");
  2126. }
  2127. static
  2128. bool bfg_grow_buffer(char ** const bufp, size_t * const bufszp, size_t minimum)
  2129. {
  2130. if (minimum <= *bufszp)
  2131. return false;
  2132. while (minimum > *bufszp)
  2133. *bufszp = 2;
  2134. *bufp = realloc(*bufp, *bufszp);
  2135. if (unlikely(!*bufp))
  2136. quithere(1, "realloc failed");
  2137. return true;
  2138. }
  2139. static
  2140. const char *bfg_strcpy_growing_buffer(char ** const bufp, size_t * const bufszp, const char *src)
  2141. {
  2142. if (!src)
  2143. return NULL;
  2144. const size_t srcsz = strlen(src) + 1;
  2145. bfg_grow_buffer(bufp, bufszp, srcsz);
  2146. memcpy(*bufp, src, srcsz);
  2147. return *bufp;
  2148. }
  2149. // Guaranteed to always return some string (or quit)
  2150. const char *bfg_strerror(int e, enum bfg_strerror_type type)
  2151. {
  2152. static __maybe_unused pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  2153. struct bfgtls_data *bfgtls = get_bfgtls();
  2154. size_t * const bufszp = &bfgtls->bfg_strerror_resultsz;
  2155. char ** const bufp = &bfgtls->bfg_strerror_result;
  2156. const char *have = NULL;
  2157. switch (type) {
  2158. case BST_LIBUSB:
  2159. // NOTE: Nested preprocessor checks since the latter isn't defined at all without the former
  2160. #ifdef HAVE_LIBUSB
  2161. # if HAVE_DECL_LIBUSB_ERROR_NAME
  2162. // libusb makes no guarantees for thread-safety or persistence
  2163. mutex_lock(&mutex);
  2164. have = bfg_strcpy_growing_buffer(bufp, bufszp, libusb_error_name(e));
  2165. mutex_unlock(&mutex);
  2166. # endif
  2167. #endif
  2168. break;
  2169. case BST_SOCKET:
  2170. {
  2171. #ifdef WIN32
  2172. // Windows has a different namespace for socket errors
  2173. LPSTR *msg = &bfgtls->bfg_strerror_socketresult;
  2174. if (*msg)
  2175. LocalFree(*msg);
  2176. if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, 0, e, 0, (LPSTR)msg, 0, 0))
  2177. return *msg;
  2178. *msg = NULL;
  2179. break;
  2180. #endif
  2181. }
  2182. // Fallthru on non-WIN32
  2183. case BST_ERRNO:
  2184. {
  2185. #ifdef __STRERROR_S_WORKS
  2186. // FIXME: Not sure how to get this on MingW64
  2187. retry:
  2188. if (likely(!strerror_s(*bufp, *bufszp, e)))
  2189. {
  2190. if (bfg_grow_buffer(bufp, bufszp, strlen(*bufp) + 2))
  2191. goto retry;
  2192. return *bufp;
  2193. }
  2194. // TODO: XSI strerror_r
  2195. // TODO: GNU strerror_r
  2196. #else
  2197. mutex_lock(&mutex);
  2198. have = bfg_strcpy_growing_buffer(bufp, bufszp, strerror(e));
  2199. mutex_unlock(&mutex);
  2200. #endif
  2201. }
  2202. }
  2203. if (have)
  2204. return *bufp;
  2205. // Failback: Stringify the number
  2206. static const char fmt[] = "%s error #%d", *typestr;
  2207. switch (type) {
  2208. case BST_ERRNO:
  2209. typestr = "System";
  2210. break;
  2211. case BST_SOCKET:
  2212. typestr = "Socket";
  2213. break;
  2214. case BST_LIBUSB:
  2215. typestr = "libusb";
  2216. break;
  2217. default:
  2218. typestr = "Unexpected";
  2219. }
  2220. int sz = snprintf((char*)bfgtls, 0, fmt, typestr, e) + 1;
  2221. bfg_grow_buffer(bufp, bufszp, sz);
  2222. sprintf(*bufp, fmt, typestr, e);
  2223. return *bufp;
  2224. }
  2225. void notifier_init(notifier_t pipefd)
  2226. {
  2227. #ifdef WIN32
  2228. #define WindowsErrorStr(e) bfg_strerror(e, BST_SOCKET)
  2229. SOCKET listener, connecter, acceptor;
  2230. listener = socket(AF_INET, SOCK_STREAM, 0);
  2231. if (listener == INVALID_SOCKET)
  2232. quit(1, "Failed to create listener socket"IN_FMT_FFL": %s",
  2233. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2234. connecter = socket(AF_INET, SOCK_STREAM, 0);
  2235. if (connecter == INVALID_SOCKET)
  2236. quit(1, "Failed to create connect socket"IN_FMT_FFL": %s",
  2237. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2238. struct sockaddr_in inaddr = {
  2239. .sin_family = AF_INET,
  2240. .sin_addr = {
  2241. .s_addr = htonl(INADDR_LOOPBACK),
  2242. },
  2243. .sin_port = 0,
  2244. };
  2245. {
  2246. static const int reuse = 1;
  2247. setsockopt(listener, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuse, sizeof(reuse));
  2248. }
  2249. if (bind(listener, (struct sockaddr*)&inaddr, sizeof(inaddr)) == SOCKET_ERROR)
  2250. quit(1, "Failed to bind listener socket"IN_FMT_FFL": %s",
  2251. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2252. socklen_t inaddr_sz = sizeof(inaddr);
  2253. if (getsockname(listener, (struct sockaddr*)&inaddr, &inaddr_sz) == SOCKET_ERROR)
  2254. quit(1, "Failed to getsockname"IN_FMT_FFL": %s",
  2255. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2256. if (listen(listener, 1) == SOCKET_ERROR)
  2257. quit(1, "Failed to listen"IN_FMT_FFL": %s",
  2258. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2259. inaddr.sin_family = AF_INET;
  2260. inaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
  2261. if (connect(connecter, (struct sockaddr*)&inaddr, inaddr_sz) == SOCKET_ERROR)
  2262. quit(1, "Failed to connect"IN_FMT_FFL": %s",
  2263. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2264. acceptor = accept(listener, NULL, NULL);
  2265. if (acceptor == INVALID_SOCKET)
  2266. quit(1, "Failed to accept"IN_FMT_FFL": %s",
  2267. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2268. closesocket(listener);
  2269. pipefd[0] = connecter;
  2270. pipefd[1] = acceptor;
  2271. #else
  2272. if (pipe(pipefd))
  2273. quithere(1, "Failed to create pipe");
  2274. #endif
  2275. }
  2276. void notifier_wake(notifier_t fd)
  2277. {
  2278. if (fd[1] == INVSOCK)
  2279. return;
  2280. if (1 !=
  2281. #ifdef WIN32
  2282. send(fd[1], "\0", 1, 0)
  2283. #else
  2284. write(fd[1], "\0", 1)
  2285. #endif
  2286. )
  2287. applog(LOG_WARNING, "Error trying to wake notifier");
  2288. }
  2289. void notifier_read(notifier_t fd)
  2290. {
  2291. char buf[0x10];
  2292. #ifdef WIN32
  2293. IGNORE_RETURN_VALUE(recv(fd[0], buf, sizeof(buf), 0));
  2294. #else
  2295. IGNORE_RETURN_VALUE(read(fd[0], buf, sizeof(buf)));
  2296. #endif
  2297. }
  2298. void notifier_init_invalid(notifier_t fd)
  2299. {
  2300. fd[0] = fd[1] = INVSOCK;
  2301. }
  2302. void notifier_destroy(notifier_t fd)
  2303. {
  2304. #ifdef WIN32
  2305. closesocket(fd[0]);
  2306. closesocket(fd[1]);
  2307. #else
  2308. close(fd[0]);
  2309. close(fd[1]);
  2310. #endif
  2311. fd[0] = fd[1] = INVSOCK;
  2312. }
  2313. void _bytes_alloc_failure(size_t sz)
  2314. {
  2315. quit(1, "bytes_resize failed to allocate %lu bytes", (unsigned long)sz);
  2316. }
  2317. void *cmd_thread(void *cmdp)
  2318. {
  2319. const char *cmd = cmdp;
  2320. applog(LOG_DEBUG, "Executing command: %s", cmd);
  2321. int rc = system(cmd);
  2322. if (rc)
  2323. applog(LOG_WARNING, "Command returned %d exit code: %s", rc, cmd);
  2324. return NULL;
  2325. }
  2326. void run_cmd(const char *cmd)
  2327. {
  2328. if (!cmd)
  2329. return;
  2330. pthread_t pth;
  2331. pthread_create(&pth, NULL, cmd_thread, (void*)cmd);
  2332. }