util.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441
  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. #ifdef NEED_BFG_LOWL_VCOM
  52. #include "lowl-vcom.h"
  53. #endif
  54. #include "miner.h"
  55. #include "compat.h"
  56. #include "util.h"
  57. #define DEFAULT_SOCKWAIT 60
  58. bool successful_connect = false;
  59. struct timeval nettime;
  60. struct data_buffer {
  61. void *buf;
  62. size_t len;
  63. curl_socket_t *idlemarker;
  64. };
  65. struct upload_buffer {
  66. const void *buf;
  67. size_t len;
  68. };
  69. struct header_info {
  70. char *lp_path;
  71. int rolltime;
  72. char *reason;
  73. char *stratum_url;
  74. bool hadrolltime;
  75. bool canroll;
  76. bool hadexpire;
  77. };
  78. struct tq_ent {
  79. void *data;
  80. struct tq_ent *prev;
  81. struct tq_ent *next;
  82. };
  83. static void databuf_free(struct data_buffer *db)
  84. {
  85. if (!db)
  86. return;
  87. free(db->buf);
  88. #ifdef DEBUG_DATABUF
  89. applog(LOG_DEBUG, "databuf_free(%p)", db->buf);
  90. #endif
  91. memset(db, 0, sizeof(*db));
  92. }
  93. struct json_rpc_call_state {
  94. struct data_buffer all_data;
  95. struct header_info hi;
  96. void *priv;
  97. char curl_err_str[CURL_ERROR_SIZE];
  98. struct curl_slist *headers;
  99. struct upload_buffer upload_data;
  100. struct pool *pool;
  101. bool longpoll;
  102. };
  103. // aka data_buffer_write
  104. static size_t all_data_cb(const void *ptr, size_t size, size_t nmemb,
  105. void *user_data)
  106. {
  107. struct data_buffer *db = user_data;
  108. size_t oldlen, newlen;
  109. oldlen = db->len;
  110. if (unlikely(nmemb == 0 || size == 0 || oldlen >= SIZE_MAX - size))
  111. return 0;
  112. if (unlikely(nmemb > (SIZE_MAX - oldlen) / size))
  113. nmemb = (SIZE_MAX - oldlen) / size;
  114. size_t len = size * nmemb;
  115. void *newmem;
  116. static const unsigned char zero = 0;
  117. if (db->idlemarker) {
  118. const unsigned char *cptr = ptr;
  119. for (size_t i = 0; i < len; ++i)
  120. if (!(isCspace(cptr[i]) || cptr[i] == '{')) {
  121. *db->idlemarker = CURL_SOCKET_BAD;
  122. db->idlemarker = NULL;
  123. break;
  124. }
  125. }
  126. newlen = oldlen + len;
  127. newmem = realloc(db->buf, newlen + 1);
  128. #ifdef DEBUG_DATABUF
  129. applog(LOG_DEBUG, "data_buffer_write realloc(%p, %lu) => %p", db->buf, (long unsigned)(newlen + 1), newmem);
  130. #endif
  131. if (!newmem)
  132. return 0;
  133. db->buf = newmem;
  134. db->len = newlen;
  135. memcpy(db->buf + oldlen, ptr, len);
  136. memcpy(db->buf + newlen, &zero, 1); /* null terminate */
  137. return nmemb;
  138. }
  139. static size_t upload_data_cb(void *ptr, size_t size, size_t nmemb,
  140. void *user_data)
  141. {
  142. struct json_rpc_call_state * const state = user_data;
  143. struct upload_buffer * const ub = &state->upload_data;
  144. unsigned int len = size * nmemb;
  145. if (state->longpoll)
  146. {
  147. struct pool * const pool = state->pool;
  148. pool->lp_active = true;
  149. }
  150. if (len > ub->len)
  151. len = ub->len;
  152. if (len) {
  153. memcpy(ptr, ub->buf, len);
  154. ub->buf += len;
  155. ub->len -= len;
  156. }
  157. return len;
  158. }
  159. static size_t resp_hdr_cb(void *ptr, size_t size, size_t nmemb, void *user_data)
  160. {
  161. struct header_info *hi = user_data;
  162. size_t remlen, slen, ptrlen = size * nmemb;
  163. char *rem, *val = NULL, *key = NULL;
  164. void *tmp;
  165. val = calloc(1, ptrlen);
  166. key = calloc(1, ptrlen);
  167. if (!key || !val)
  168. goto out;
  169. tmp = memchr(ptr, ':', ptrlen);
  170. if (!tmp || (tmp == ptr)) /* skip empty keys / blanks */
  171. goto out;
  172. slen = tmp - ptr;
  173. if ((slen + 1) == ptrlen) /* skip key w/ no value */
  174. goto out;
  175. memcpy(key, ptr, slen); /* store & nul term key */
  176. key[slen] = 0;
  177. rem = ptr + slen + 1; /* trim value's leading whitespace */
  178. remlen = ptrlen - slen - 1;
  179. while ((remlen > 0) && (isCspace(*rem))) {
  180. remlen--;
  181. rem++;
  182. }
  183. memcpy(val, rem, remlen); /* store value, trim trailing ws */
  184. val[remlen] = 0;
  185. while ((*val) && (isCspace(val[strlen(val) - 1])))
  186. val[strlen(val) - 1] = 0;
  187. if (!*val) /* skip blank value */
  188. goto out;
  189. if (opt_protocol)
  190. applog(LOG_DEBUG, "HTTP hdr(%s): %s", key, val);
  191. if (!strcasecmp("X-Roll-Ntime", key)) {
  192. hi->hadrolltime = true;
  193. if (!strncasecmp("N", val, 1))
  194. applog(LOG_DEBUG, "X-Roll-Ntime: N found");
  195. else {
  196. hi->canroll = true;
  197. /* Check to see if expire= is supported and if not, set
  198. * the rolltime to the default scantime */
  199. if (strlen(val) > 7 && !strncasecmp("expire=", val, 7)) {
  200. sscanf(val + 7, "%d", &hi->rolltime);
  201. hi->hadexpire = true;
  202. } else
  203. hi->rolltime = opt_scantime;
  204. applog(LOG_DEBUG, "X-Roll-Ntime expiry set to %d", hi->rolltime);
  205. }
  206. }
  207. if (!strcasecmp("X-Long-Polling", key)) {
  208. hi->lp_path = val; /* steal memory reference */
  209. val = NULL;
  210. }
  211. if (!strcasecmp("X-Reject-Reason", key)) {
  212. hi->reason = val; /* steal memory reference */
  213. val = NULL;
  214. }
  215. if (!strcasecmp("X-Stratum", key)) {
  216. hi->stratum_url = val;
  217. val = NULL;
  218. }
  219. out:
  220. free(key);
  221. free(val);
  222. return ptrlen;
  223. }
  224. static int keep_sockalive(SOCKETTYPE fd)
  225. {
  226. const int tcp_one = 1;
  227. const int tcp_keepidle = 45;
  228. const int tcp_keepintvl = 30;
  229. int ret = 0;
  230. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (const char *)&tcp_one, sizeof(tcp_one))))
  231. ret = 1;
  232. #ifndef WIN32
  233. int flags = fcntl(fd, F_GETFL, 0);
  234. fcntl(fd, F_SETFL, O_NONBLOCK | flags);
  235. #else
  236. u_long flags = 1;
  237. ioctlsocket(fd, FIONBIO, &flags);
  238. #endif
  239. if (!opt_delaynet)
  240. #ifndef __linux
  241. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (const void *)&tcp_one, sizeof(tcp_one))))
  242. #else /* __linux */
  243. if (unlikely(setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&tcp_one, sizeof(tcp_one))))
  244. #endif /* __linux */
  245. ret = 1;
  246. #ifdef __linux
  247. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPCNT, &tcp_one, sizeof(tcp_one))))
  248. ret = 1;
  249. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPIDLE, &tcp_keepidle, sizeof(tcp_keepidle))))
  250. ret = 1;
  251. if (unlikely(setsockopt(fd, SOL_TCP, TCP_KEEPINTVL, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  252. ret = 1;
  253. #endif /* __linux */
  254. #ifdef __APPLE_CC__
  255. if (unlikely(setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &tcp_keepintvl, sizeof(tcp_keepintvl))))
  256. ret = 1;
  257. #endif /* __APPLE_CC__ */
  258. #ifdef WIN32
  259. const int zero = 0;
  260. struct tcp_keepalive vals;
  261. vals.onoff = 1;
  262. vals.keepalivetime = tcp_keepidle * 1000;
  263. vals.keepaliveinterval = tcp_keepintvl * 1000;
  264. DWORD outputBytes;
  265. if (unlikely(WSAIoctl(fd, SIO_KEEPALIVE_VALS, &vals, sizeof(vals), NULL, 0, &outputBytes, NULL, NULL)))
  266. ret = 1;
  267. /* Windows happily submits indefinitely to the send buffer blissfully
  268. * unaware nothing is getting there without gracefully failing unless
  269. * we disable the send buffer */
  270. if (unlikely(setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (const char *)&zero, sizeof(zero))))
  271. ret = 1;
  272. #endif /* WIN32 */
  273. return ret;
  274. }
  275. int json_rpc_call_sockopt_cb(void __maybe_unused *userdata, curl_socket_t fd,
  276. curlsocktype __maybe_unused purpose)
  277. {
  278. return keep_sockalive(fd);
  279. }
  280. static void last_nettime(struct timeval *last)
  281. {
  282. rd_lock(&netacc_lock);
  283. last->tv_sec = nettime.tv_sec;
  284. last->tv_usec = nettime.tv_usec;
  285. rd_unlock(&netacc_lock);
  286. }
  287. static void set_nettime(void)
  288. {
  289. wr_lock(&netacc_lock);
  290. cgtime(&nettime);
  291. wr_unlock(&netacc_lock);
  292. }
  293. static int curl_debug_cb(__maybe_unused CURL *handle, curl_infotype type,
  294. char *data, size_t size,
  295. void *userdata)
  296. {
  297. struct pool *pool = (struct pool *)userdata;
  298. switch(type) {
  299. case CURLINFO_HEADER_IN:
  300. case CURLINFO_DATA_IN:
  301. case CURLINFO_SSL_DATA_IN:
  302. pool->cgminer_pool_stats.bytes_received += size;
  303. total_bytes_rcvd += size;
  304. pool->cgminer_pool_stats.net_bytes_received += size;
  305. break;
  306. case CURLINFO_HEADER_OUT:
  307. case CURLINFO_DATA_OUT:
  308. case CURLINFO_SSL_DATA_OUT:
  309. pool->cgminer_pool_stats.bytes_sent += size;
  310. total_bytes_sent += size;
  311. pool->cgminer_pool_stats.net_bytes_sent += size;
  312. break;
  313. case CURLINFO_TEXT:
  314. {
  315. if (!opt_protocol)
  316. break;
  317. // data is not null-terminated, so we need to copy and terminate it for applog
  318. char datacp[size + 1];
  319. memcpy(datacp, data, size);
  320. while (likely(size) && unlikely(isCspace(datacp[size-1])))
  321. --size;
  322. if (unlikely(!size))
  323. break;
  324. datacp[size] = '\0';
  325. applog(LOG_DEBUG, "Pool %u: %s", pool->pool_no, datacp);
  326. break;
  327. }
  328. default:
  329. break;
  330. }
  331. return 0;
  332. }
  333. void json_rpc_call_async(CURL *curl, const char *url,
  334. const char *userpass, const char *rpc_req,
  335. bool longpoll,
  336. struct pool *pool, bool share,
  337. void *priv)
  338. {
  339. struct json_rpc_call_state *state = malloc(sizeof(struct json_rpc_call_state));
  340. *state = (struct json_rpc_call_state){
  341. .priv = priv,
  342. .pool = pool,
  343. };
  344. long timeout = longpoll ? (60 * 60) : 60;
  345. char len_hdr[64], user_agent_hdr[128];
  346. struct curl_slist *headers = NULL;
  347. if (longpoll)
  348. {
  349. state->all_data.idlemarker = &pool->lp_socket;
  350. state->longpoll = true;
  351. }
  352. /* it is assumed that 'curl' is freshly [re]initialized at this pt */
  353. curl_easy_setopt(curl, CURLOPT_PRIVATE, state);
  354. curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  355. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  356. * to enable it */
  357. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  358. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  359. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  360. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  361. curl_easy_setopt(curl, CURLOPT_URL, url);
  362. curl_easy_setopt(curl, CURLOPT_ENCODING, "");
  363. curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  364. /* Shares are staggered already and delays in submission can be costly
  365. * so do not delay them */
  366. if (!opt_delaynet || share)
  367. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  368. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, all_data_cb);
  369. curl_easy_setopt(curl, CURLOPT_WRITEDATA, &state->all_data);
  370. curl_easy_setopt(curl, CURLOPT_READFUNCTION, upload_data_cb);
  371. curl_easy_setopt(curl, CURLOPT_READDATA, state);
  372. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, &state->curl_err_str[0]);
  373. curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
  374. curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, resp_hdr_cb);
  375. curl_easy_setopt(curl, CURLOPT_HEADERDATA, &state->hi);
  376. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  377. if (pool->rpc_proxy) {
  378. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  379. } else if (opt_socks_proxy) {
  380. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  381. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  382. }
  383. if (userpass) {
  384. curl_easy_setopt(curl, CURLOPT_USERPWD, userpass);
  385. curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  386. }
  387. if (longpoll)
  388. curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, json_rpc_call_sockopt_cb);
  389. curl_easy_setopt(curl, CURLOPT_POST, 1);
  390. if (opt_protocol)
  391. applog(LOG_DEBUG, "JSON protocol request:\n%s", rpc_req);
  392. state->upload_data.buf = rpc_req;
  393. state->upload_data.len = strlen(rpc_req);
  394. sprintf(len_hdr, "Content-Length: %lu",
  395. (unsigned long) state->upload_data.len);
  396. sprintf(user_agent_hdr, "User-Agent: %s", PACKAGE"/"VERSION);
  397. headers = curl_slist_append(headers,
  398. "Content-type: application/json");
  399. headers = curl_slist_append(headers,
  400. "X-Mining-Extensions: longpoll midstate rollntime submitold");
  401. if (longpoll)
  402. headers = curl_slist_append(headers,
  403. "X-Minimum-Wait: 0");
  404. if (likely(global_hashrate)) {
  405. char ghashrate[255];
  406. sprintf(ghashrate, "X-Mining-Hashrate: %"PRIu64, (uint64_t)global_hashrate);
  407. headers = curl_slist_append(headers, ghashrate);
  408. }
  409. headers = curl_slist_append(headers, len_hdr);
  410. headers = curl_slist_append(headers, user_agent_hdr);
  411. headers = curl_slist_append(headers, "Expect:"); /* disable Expect hdr*/
  412. curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  413. state->headers = headers;
  414. if (opt_delaynet) {
  415. /* Don't delay share submission, but still track the nettime */
  416. if (!share) {
  417. long long now_msecs, last_msecs;
  418. struct timeval now, last;
  419. cgtime(&now);
  420. last_nettime(&last);
  421. now_msecs = (long long)now.tv_sec * 1000;
  422. now_msecs += now.tv_usec / 1000;
  423. last_msecs = (long long)last.tv_sec * 1000;
  424. last_msecs += last.tv_usec / 1000;
  425. if (now_msecs > last_msecs && now_msecs - last_msecs < 250) {
  426. struct timespec rgtp;
  427. rgtp.tv_sec = 0;
  428. rgtp.tv_nsec = (250 - (now_msecs - last_msecs)) * 1000000;
  429. nanosleep(&rgtp, NULL);
  430. }
  431. }
  432. set_nettime();
  433. }
  434. }
  435. json_t *json_rpc_call_completed(CURL *curl, int rc, bool probe, int *rolltime, void *out_priv)
  436. {
  437. struct json_rpc_call_state *state;
  438. if (curl_easy_getinfo(curl, CURLINFO_PRIVATE, (void*)&state) != CURLE_OK) {
  439. applog(LOG_ERR, "Failed to get private curl data");
  440. if (out_priv)
  441. *(void**)out_priv = NULL;
  442. goto err_out;
  443. }
  444. if (out_priv)
  445. *(void**)out_priv = state->priv;
  446. json_t *val, *err_val, *res_val;
  447. json_error_t err;
  448. struct pool *pool = state->pool;
  449. bool probing = probe && !pool->probed;
  450. if (rc) {
  451. applog(LOG_INFO, "HTTP request failed: %s", state->curl_err_str);
  452. goto err_out;
  453. }
  454. if (!state->all_data.buf) {
  455. applog(LOG_DEBUG, "Empty data received in json_rpc_call.");
  456. goto err_out;
  457. }
  458. pool->cgminer_pool_stats.times_sent++;
  459. pool->cgminer_pool_stats.times_received++;
  460. if (probing) {
  461. pool->probed = true;
  462. /* If X-Long-Polling was found, activate long polling */
  463. if (state->hi.lp_path) {
  464. if (pool->hdr_path != NULL)
  465. free(pool->hdr_path);
  466. pool->hdr_path = state->hi.lp_path;
  467. } else
  468. pool->hdr_path = NULL;
  469. if (state->hi.stratum_url) {
  470. pool->stratum_url = state->hi.stratum_url;
  471. state->hi.stratum_url = NULL;
  472. }
  473. } else {
  474. if (state->hi.lp_path) {
  475. free(state->hi.lp_path);
  476. state->hi.lp_path = NULL;
  477. }
  478. if (state->hi.stratum_url) {
  479. free(state->hi.stratum_url);
  480. state->hi.stratum_url = NULL;
  481. }
  482. }
  483. if (pool->force_rollntime)
  484. {
  485. state->hi.canroll = true;
  486. state->hi.hadexpire = true;
  487. state->hi.rolltime = pool->force_rollntime;
  488. }
  489. if (rolltime)
  490. *rolltime = state->hi.rolltime;
  491. pool->cgminer_pool_stats.rolltime = state->hi.rolltime;
  492. pool->cgminer_pool_stats.hadrolltime = state->hi.hadrolltime;
  493. pool->cgminer_pool_stats.canroll = state->hi.canroll;
  494. pool->cgminer_pool_stats.hadexpire = state->hi.hadexpire;
  495. val = JSON_LOADS(state->all_data.buf, &err);
  496. if (!val) {
  497. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  498. if (opt_protocol)
  499. applog(LOG_DEBUG, "JSON protocol response:\n%s", (char*)state->all_data.buf);
  500. goto err_out;
  501. }
  502. if (opt_protocol) {
  503. char *s = json_dumps(val, JSON_INDENT(3));
  504. applog(LOG_DEBUG, "JSON protocol response:\n%s", s);
  505. free(s);
  506. }
  507. /* JSON-RPC valid response returns a non-null 'result',
  508. * and a null 'error'.
  509. */
  510. res_val = json_object_get(val, "result");
  511. err_val = json_object_get(val, "error");
  512. if (!res_val ||(err_val && !json_is_null(err_val))) {
  513. char *s;
  514. if (err_val)
  515. s = json_dumps(err_val, JSON_INDENT(3));
  516. else
  517. s = strdup("(unknown reason)");
  518. applog(LOG_INFO, "JSON-RPC call failed: %s", s);
  519. free(s);
  520. json_decref(val);
  521. goto err_out;
  522. }
  523. if (state->hi.reason) {
  524. json_object_set_new(val, "reject-reason", json_string(state->hi.reason));
  525. free(state->hi.reason);
  526. state->hi.reason = NULL;
  527. }
  528. successful_connect = true;
  529. databuf_free(&state->all_data);
  530. curl_slist_free_all(state->headers);
  531. curl_easy_reset(curl);
  532. free(state);
  533. return val;
  534. err_out:
  535. databuf_free(&state->all_data);
  536. curl_slist_free_all(state->headers);
  537. curl_easy_reset(curl);
  538. if (!successful_connect)
  539. applog(LOG_DEBUG, "Failed to connect in json_rpc_call");
  540. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  541. free(state);
  542. return NULL;
  543. }
  544. json_t *json_rpc_call(CURL *curl, const char *url,
  545. const char *userpass, const char *rpc_req,
  546. bool probe, bool longpoll, int *rolltime,
  547. struct pool *pool, bool share)
  548. {
  549. json_rpc_call_async(curl, url, userpass, rpc_req, longpoll, pool, share, NULL);
  550. int rc = curl_easy_perform(curl);
  551. return json_rpc_call_completed(curl, rc, probe, rolltime, NULL);
  552. }
  553. bool our_curl_supports_proxy_uris()
  554. {
  555. curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
  556. return data->age && data->version_num >= (( 7 <<16)|( 21 <<8)| 7); // 7.21.7
  557. }
  558. // NOTE: This assumes reference URI is a root
  559. char *absolute_uri(char *uri, const char *ref)
  560. {
  561. if (strstr(uri, "://"))
  562. return strdup(uri);
  563. char *copy_start, *abs;
  564. bool need_slash = false;
  565. copy_start = (uri[0] == '/') ? &uri[1] : uri;
  566. if (ref[strlen(ref) - 1] != '/')
  567. need_slash = true;
  568. abs = malloc(strlen(ref) + strlen(copy_start) + 2);
  569. if (!abs) {
  570. applog(LOG_ERR, "Malloc failure in absolute_uri");
  571. return NULL;
  572. }
  573. sprintf(abs, "%s%s%s", ref, need_slash ? "/" : "", copy_start);
  574. return abs;
  575. }
  576. static const char _hexchars[0x10] = "0123456789abcdef";
  577. void bin2hex(char *out, const void *in, size_t len)
  578. {
  579. const unsigned char *p = in;
  580. while (len--)
  581. {
  582. (out++)[0] = _hexchars[p[0] >> 4];
  583. (out++)[0] = _hexchars[p[0] & 0xf];
  584. ++p;
  585. }
  586. out[0] = '\0';
  587. }
  588. static inline
  589. int _hex2bin_char(const char c)
  590. {
  591. if (c >= '0' && c <= '9')
  592. return c - '0';
  593. if (c >= 'a' && c <= 'f')
  594. return (c - 'a') + 10;
  595. if (c >= 'A' && c <= 'F')
  596. return (c - 'A') + 10;
  597. return -1;
  598. }
  599. /* Does the reverse of bin2hex but does not allocate any ram */
  600. bool hex2bin(unsigned char *p, const char *hexstr, size_t len)
  601. {
  602. int n, o;
  603. while (len--)
  604. {
  605. n = _hex2bin_char((hexstr++)[0]);
  606. if (unlikely(n == -1))
  607. {
  608. badchar:
  609. if (!hexstr[-1])
  610. applog(LOG_ERR, "hex2bin: str truncated");
  611. else
  612. applog(LOG_ERR, "hex2bin: invalid character 0x%02x", (int)hexstr[-1]);
  613. return false;
  614. }
  615. o = _hex2bin_char((hexstr++)[0]);
  616. if (unlikely(o == -1))
  617. goto badchar;
  618. (p++)[0] = (n << 4) | o;
  619. }
  620. return likely(!hexstr[0]);
  621. }
  622. size_t ucs2_to_utf8(char * const out, const uint16_t * const in, const size_t sz)
  623. {
  624. uint8_t *p = (void*)out;
  625. for (int i = 0; i < sz; ++i)
  626. {
  627. const uint16_t c = in[i];
  628. if (c < 0x80)
  629. p++[0] = c;
  630. else
  631. {
  632. if (c < 0x800)
  633. p++[0] = 0xc0 | (c >> 6);
  634. else
  635. {
  636. p++[0] = 0xe0 | (c >> 12);
  637. p++[0] = 0x80 | ((c >> 6) & 0x3f);
  638. }
  639. p++[0] = 0x80 | (c & 0x3f);
  640. }
  641. }
  642. return p - (uint8_t*)(void*)out;
  643. }
  644. char *ucs2_to_utf8_dup(uint16_t * const in, size_t sz)
  645. {
  646. char * const out = malloc((sz * 4) + 1);
  647. sz = ucs2_to_utf8(out, in, sz);
  648. out[sz] = '\0';
  649. return out;
  650. }
  651. void hash_data(unsigned char *out_hash, const unsigned char *data)
  652. {
  653. unsigned char blkheader[80];
  654. // 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
  655. swap32yes(blkheader, data, 80 / 4);
  656. // double-SHA256 to get the block hash
  657. gen_hash(blkheader, out_hash, 80);
  658. }
  659. // Example output: 0000000000000000000000000000000000000000000000000000ffff00000000 (bdiff 1)
  660. void real_block_target(unsigned char *target, const unsigned char *data)
  661. {
  662. uint8_t targetshift;
  663. if (unlikely(data[72] < 3 || data[72] > 0x20))
  664. {
  665. // Invalid (out of bounds) target
  666. memset(target, 0xff, 32);
  667. return;
  668. }
  669. targetshift = data[72] - 3;
  670. memset(target, 0, targetshift);
  671. target[targetshift++] = data[75];
  672. target[targetshift++] = data[74];
  673. target[targetshift++] = data[73];
  674. memset(&target[targetshift], 0, 0x20 - targetshift);
  675. }
  676. bool hash_target_check(const unsigned char *hash, const unsigned char *target)
  677. {
  678. const uint32_t *h32 = (uint32_t*)&hash[0];
  679. const uint32_t *t32 = (uint32_t*)&target[0];
  680. for (int i = 7; i >= 0; --i) {
  681. uint32_t h32i = le32toh(h32[i]);
  682. uint32_t t32i = le32toh(t32[i]);
  683. if (h32i > t32i)
  684. return false;
  685. if (h32i < t32i)
  686. return true;
  687. }
  688. return true;
  689. }
  690. bool hash_target_check_v(const unsigned char *hash, const unsigned char *target)
  691. {
  692. bool rc;
  693. rc = hash_target_check(hash, target);
  694. if (opt_debug) {
  695. unsigned char hash_swap[32], target_swap[32];
  696. char hash_str[65];
  697. char target_str[65];
  698. for (int i = 0; i < 32; ++i) {
  699. hash_swap[i] = hash[31-i];
  700. target_swap[i] = target[31-i];
  701. }
  702. bin2hex(hash_str, hash_swap, 32);
  703. bin2hex(target_str, target_swap, 32);
  704. applog(LOG_DEBUG, " Proof: %s\nTarget: %s\nTrgVal? %s",
  705. hash_str,
  706. target_str,
  707. rc ? "YES (hash <= target)" :
  708. "no (false positive; hash > target)");
  709. }
  710. return rc;
  711. }
  712. // This operates on a native-endian SHA256 state
  713. // In other words, on little endian platforms, every 4 bytes are in reverse order
  714. bool fulltest(const unsigned char *hash, const unsigned char *target)
  715. {
  716. unsigned char hash2[32];
  717. swap32tobe(hash2, hash, 32 / 4);
  718. return hash_target_check_v(hash2, target);
  719. }
  720. struct thread_q *tq_new(void)
  721. {
  722. struct thread_q *tq;
  723. tq = calloc(1, sizeof(*tq));
  724. if (!tq)
  725. return NULL;
  726. pthread_mutex_init(&tq->mutex, NULL);
  727. pthread_cond_init(&tq->cond, NULL);
  728. return tq;
  729. }
  730. void tq_free(struct thread_q *tq)
  731. {
  732. struct tq_ent *ent, *iter;
  733. if (!tq)
  734. return;
  735. DL_FOREACH_SAFE(tq->q, ent, iter) {
  736. DL_DELETE(tq->q, ent);
  737. free(ent);
  738. }
  739. pthread_cond_destroy(&tq->cond);
  740. pthread_mutex_destroy(&tq->mutex);
  741. memset(tq, 0, sizeof(*tq)); /* poison */
  742. free(tq);
  743. }
  744. static void tq_freezethaw(struct thread_q *tq, bool frozen)
  745. {
  746. mutex_lock(&tq->mutex);
  747. tq->frozen = frozen;
  748. pthread_cond_signal(&tq->cond);
  749. mutex_unlock(&tq->mutex);
  750. }
  751. void tq_freeze(struct thread_q *tq)
  752. {
  753. tq_freezethaw(tq, true);
  754. }
  755. void tq_thaw(struct thread_q *tq)
  756. {
  757. tq_freezethaw(tq, false);
  758. }
  759. bool tq_push(struct thread_q *tq, void *data)
  760. {
  761. struct tq_ent *ent;
  762. bool rc = true;
  763. ent = calloc(1, sizeof(*ent));
  764. if (!ent)
  765. return false;
  766. ent->data = data;
  767. mutex_lock(&tq->mutex);
  768. if (!tq->frozen) {
  769. DL_APPEND(tq->q, ent);
  770. } else {
  771. free(ent);
  772. rc = false;
  773. }
  774. pthread_cond_signal(&tq->cond);
  775. mutex_unlock(&tq->mutex);
  776. return rc;
  777. }
  778. void *tq_pop(struct thread_q *tq, const struct timespec *abstime)
  779. {
  780. struct tq_ent *ent;
  781. void *rval = NULL;
  782. int rc;
  783. mutex_lock(&tq->mutex);
  784. if (tq->q)
  785. goto pop;
  786. if (abstime)
  787. rc = pthread_cond_timedwait(&tq->cond, &tq->mutex, abstime);
  788. else
  789. rc = pthread_cond_wait(&tq->cond, &tq->mutex);
  790. if (rc)
  791. goto out;
  792. if (!tq->q)
  793. goto out;
  794. pop:
  795. ent = tq->q;
  796. rval = ent->data;
  797. DL_DELETE(tq->q, ent);
  798. free(ent);
  799. out:
  800. mutex_unlock(&tq->mutex);
  801. return rval;
  802. }
  803. int thr_info_create(struct thr_info *thr, pthread_attr_t *attr, void *(*start) (void *), void *arg)
  804. {
  805. int rv = pthread_create(&thr->pth, attr, start, arg);
  806. if (likely(!rv))
  807. thr->has_pth = true;
  808. return rv;
  809. }
  810. void thr_info_freeze(struct thr_info *thr)
  811. {
  812. struct tq_ent *ent, *iter;
  813. struct thread_q *tq;
  814. if (!thr)
  815. return;
  816. tq = thr->q;
  817. if (!tq)
  818. return;
  819. mutex_lock(&tq->mutex);
  820. tq->frozen = true;
  821. DL_FOREACH_SAFE(tq->q, ent, iter) {
  822. DL_DELETE(tq->q, ent);
  823. free(ent);
  824. }
  825. mutex_unlock(&tq->mutex);
  826. }
  827. void thr_info_cancel(struct thr_info *thr)
  828. {
  829. if (!thr)
  830. return;
  831. if (thr->has_pth) {
  832. pthread_cancel(thr->pth);
  833. thr->has_pth = false;
  834. }
  835. }
  836. #ifndef HAVE_PTHREAD_CANCEL
  837. // Bionic (Android) is intentionally missing pthread_cancel, so it is implemented using pthread_kill
  838. enum pthread_cancel_workaround_mode {
  839. PCWM_DEFAULT = 0,
  840. PCWM_TERMINATE = 1,
  841. PCWM_ASYNC = 2,
  842. PCWM_DISABLED = 4,
  843. PCWM_CANCELLED = 8,
  844. };
  845. static pthread_key_t key_pcwm;
  846. struct sigaction pcwm_orig_term_handler;
  847. static
  848. void do_pthread_cancel_exit(int flags)
  849. {
  850. if (!(flags & PCWM_ASYNC))
  851. // NOTE: Logging disables cancel while mutex held, so this is safe
  852. applog(LOG_WARNING, "pthread_cancel workaround: Cannot defer cancellation, terminating thread NOW");
  853. pthread_exit(PTHREAD_CANCELED);
  854. }
  855. static
  856. void sighandler_pthread_cancel(int sig)
  857. {
  858. int flags = (int)pthread_getspecific(key_pcwm);
  859. if (flags & PCWM_TERMINATE) // Main thread
  860. {
  861. // Restore original handler and call it
  862. if (sigaction(sig, &pcwm_orig_term_handler, NULL))
  863. quit(1, "pthread_cancel workaround: Failed to restore original handler");
  864. raise(SIGTERM);
  865. quit(1, "pthread_cancel workaround: Original handler returned");
  866. }
  867. if (flags & PCWM_CANCELLED) // Already pending cancel
  868. return;
  869. if (flags & PCWM_DISABLED)
  870. {
  871. flags |= PCWM_CANCELLED;
  872. if (pthread_setspecific(key_pcwm, (void*)flags))
  873. quit(1, "pthread_cancel workaround: pthread_setspecific failed (setting PCWM_CANCELLED)");
  874. return;
  875. }
  876. do_pthread_cancel_exit(flags);
  877. }
  878. void pthread_testcancel(void)
  879. {
  880. int flags = (int)pthread_getspecific(key_pcwm);
  881. if (flags & PCWM_CANCELLED && !(flags & PCWM_DISABLED))
  882. do_pthread_cancel_exit(flags);
  883. }
  884. int pthread_setcancelstate(int state, int *oldstate)
  885. {
  886. int flags = (int)pthread_getspecific(key_pcwm);
  887. if (oldstate)
  888. *oldstate = (flags & PCWM_DISABLED) ? PTHREAD_CANCEL_DISABLE : PTHREAD_CANCEL_ENABLE;
  889. if (state == PTHREAD_CANCEL_DISABLE)
  890. flags |= PCWM_DISABLED;
  891. else
  892. {
  893. if (flags & PCWM_CANCELLED)
  894. do_pthread_cancel_exit(flags);
  895. flags &= ~PCWM_DISABLED;
  896. }
  897. if (pthread_setspecific(key_pcwm, (void*)flags))
  898. return -1;
  899. return 0;
  900. }
  901. int pthread_setcanceltype(int type, int *oldtype)
  902. {
  903. int flags = (int)pthread_getspecific(key_pcwm);
  904. if (oldtype)
  905. *oldtype = (flags & PCWM_ASYNC) ? PTHREAD_CANCEL_ASYNCHRONOUS : PTHREAD_CANCEL_DEFERRED;
  906. if (type == PTHREAD_CANCEL_ASYNCHRONOUS)
  907. flags |= PCWM_ASYNC;
  908. else
  909. flags &= ~PCWM_ASYNC;
  910. if (pthread_setspecific(key_pcwm, (void*)flags))
  911. return -1;
  912. return 0;
  913. }
  914. void setup_pthread_cancel_workaround()
  915. {
  916. if (pthread_key_create(&key_pcwm, NULL))
  917. quit(1, "pthread_cancel workaround: pthread_key_create failed");
  918. if (pthread_setspecific(key_pcwm, (void*)PCWM_TERMINATE))
  919. quit(1, "pthread_cancel workaround: pthread_setspecific failed");
  920. struct sigaction new_sigact = {
  921. .sa_handler = sighandler_pthread_cancel,
  922. };
  923. if (sigaction(SIGTERM, &new_sigact, &pcwm_orig_term_handler))
  924. quit(1, "pthread_cancel workaround: Failed to install SIGTERM handler");
  925. }
  926. #endif
  927. static void _now_gettimeofday(struct timeval *);
  928. static void _cgsleep_us_r_nanosleep(cgtimer_t *, int64_t);
  929. #ifdef HAVE_POOR_GETTIMEOFDAY
  930. static struct timeval tv_timeofday_offset;
  931. static struct timeval _tv_timeofday_lastchecked;
  932. static pthread_mutex_t _tv_timeofday_mutex = PTHREAD_MUTEX_INITIALIZER;
  933. static
  934. void bfg_calibrate_timeofday(struct timeval *expected, char *buf)
  935. {
  936. struct timeval actual, delta;
  937. timeradd(expected, &tv_timeofday_offset, expected);
  938. _now_gettimeofday(&actual);
  939. if (expected->tv_sec >= actual.tv_sec - 1 && expected->tv_sec <= actual.tv_sec + 1)
  940. // Within reason - no change necessary
  941. return;
  942. timersub(&actual, expected, &delta);
  943. timeradd(&tv_timeofday_offset, &delta, &tv_timeofday_offset);
  944. sprintf(buf, "Recalibrating timeofday offset (delta %ld.%06lds)", (long)delta.tv_sec, (long)delta.tv_usec);
  945. *expected = actual;
  946. }
  947. void bfg_gettimeofday(struct timeval *out)
  948. {
  949. char buf[64] = "";
  950. timer_set_now(out);
  951. mutex_lock(&_tv_timeofday_mutex);
  952. if (_tv_timeofday_lastchecked.tv_sec < out->tv_sec - 21)
  953. bfg_calibrate_timeofday(out, buf);
  954. else
  955. timeradd(out, &tv_timeofday_offset, out);
  956. mutex_unlock(&_tv_timeofday_mutex);
  957. if (unlikely(buf[0]))
  958. applog(LOG_WARNING, "%s", buf);
  959. }
  960. #endif
  961. #ifdef WIN32
  962. static LARGE_INTEGER _perffreq;
  963. static
  964. void _now_queryperformancecounter(struct timeval *tv)
  965. {
  966. LARGE_INTEGER now;
  967. if (unlikely(!QueryPerformanceCounter(&now)))
  968. quit(1, "QueryPerformanceCounter failed");
  969. *tv = (struct timeval){
  970. .tv_sec = now.QuadPart / _perffreq.QuadPart,
  971. .tv_usec = (now.QuadPart % _perffreq.QuadPart) * 1000000 / _perffreq.QuadPart,
  972. };
  973. }
  974. #endif
  975. static void bfg_init_time();
  976. static
  977. void _now_is_not_set(__maybe_unused struct timeval *tv)
  978. {
  979. bfg_init_time();
  980. timer_set_now(tv);
  981. }
  982. void (*timer_set_now)(struct timeval *tv) = _now_is_not_set;
  983. void (*cgsleep_us_r)(cgtimer_t *, int64_t) = _cgsleep_us_r_nanosleep;
  984. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC
  985. static clockid_t bfg_timer_clk;
  986. static
  987. void _now_clock_gettime(struct timeval *tv)
  988. {
  989. struct timespec ts;
  990. if (unlikely(clock_gettime(bfg_timer_clk, &ts)))
  991. quit(1, "clock_gettime failed");
  992. *tv = (struct timeval){
  993. .tv_sec = ts.tv_sec,
  994. .tv_usec = ts.tv_nsec / 1000,
  995. };
  996. }
  997. #ifdef HAVE_CLOCK_NANOSLEEP
  998. static
  999. void _cgsleep_us_r_monotonic(cgtimer_t *tv_start, int64_t us)
  1000. {
  1001. struct timeval tv_end[1];
  1002. struct timespec ts_end[1];
  1003. int ret;
  1004. timer_set_delay(tv_end, tv_start, us);
  1005. timeval_to_spec(ts_end, tv_end);
  1006. do {
  1007. ret = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, ts_end, NULL);
  1008. } while (ret == EINTR);
  1009. }
  1010. #endif
  1011. static
  1012. bool _bfg_try_clock_gettime(clockid_t clk)
  1013. {
  1014. struct timespec ts;
  1015. if (clock_gettime(clk, &ts))
  1016. return false;
  1017. bfg_timer_clk = clk;
  1018. timer_set_now = _now_clock_gettime;
  1019. return true;
  1020. }
  1021. #endif
  1022. static
  1023. void bfg_init_time()
  1024. {
  1025. if (timer_set_now != _now_is_not_set)
  1026. return;
  1027. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC
  1028. #ifdef HAVE_CLOCK_GETTIME_MONOTONIC_RAW
  1029. if (_bfg_try_clock_gettime(CLOCK_MONOTONIC_RAW))
  1030. applog(LOG_DEBUG, "Timers: Using clock_gettime(CLOCK_MONOTONIC_RAW)");
  1031. else
  1032. #endif
  1033. if (_bfg_try_clock_gettime(CLOCK_MONOTONIC))
  1034. {
  1035. applog(LOG_DEBUG, "Timers: Using clock_gettime(CLOCK_MONOTONIC)");
  1036. #ifdef HAVE_CLOCK_NANOSLEEP
  1037. cgsleep_us_r = _cgsleep_us_r_monotonic;
  1038. #endif
  1039. }
  1040. else
  1041. #endif
  1042. #ifdef WIN32
  1043. if (QueryPerformanceFrequency(&_perffreq) && _perffreq.QuadPart)
  1044. {
  1045. timer_set_now = _now_queryperformancecounter;
  1046. applog(LOG_DEBUG, "Timers: Using QueryPerformanceCounter");
  1047. }
  1048. else
  1049. #endif
  1050. {
  1051. timer_set_now = _now_gettimeofday;
  1052. applog(LOG_DEBUG, "Timers: Using gettimeofday");
  1053. }
  1054. #ifdef HAVE_POOR_GETTIMEOFDAY
  1055. char buf[64] = "";
  1056. struct timeval tv;
  1057. timer_set_now(&tv);
  1058. bfg_calibrate_timeofday(&tv, buf);
  1059. applog(LOG_DEBUG, "%s", buf);
  1060. #endif
  1061. }
  1062. void subtime(struct timeval *a, struct timeval *b)
  1063. {
  1064. timersub(a, b, b);
  1065. }
  1066. void addtime(struct timeval *a, struct timeval *b)
  1067. {
  1068. timeradd(a, b, b);
  1069. }
  1070. bool time_more(struct timeval *a, struct timeval *b)
  1071. {
  1072. return timercmp(a, b, >);
  1073. }
  1074. bool time_less(struct timeval *a, struct timeval *b)
  1075. {
  1076. return timercmp(a, b, <);
  1077. }
  1078. void copy_time(struct timeval *dest, const struct timeval *src)
  1079. {
  1080. memcpy(dest, src, sizeof(struct timeval));
  1081. }
  1082. void timespec_to_val(struct timeval *val, const struct timespec *spec)
  1083. {
  1084. val->tv_sec = spec->tv_sec;
  1085. val->tv_usec = spec->tv_nsec / 1000;
  1086. }
  1087. void timeval_to_spec(struct timespec *spec, const struct timeval *val)
  1088. {
  1089. spec->tv_sec = val->tv_sec;
  1090. spec->tv_nsec = val->tv_usec * 1000;
  1091. }
  1092. void us_to_timeval(struct timeval *val, int64_t us)
  1093. {
  1094. lldiv_t tvdiv = lldiv(us, 1000000);
  1095. val->tv_sec = tvdiv.quot;
  1096. val->tv_usec = tvdiv.rem;
  1097. }
  1098. void us_to_timespec(struct timespec *spec, int64_t us)
  1099. {
  1100. lldiv_t tvdiv = lldiv(us, 1000000);
  1101. spec->tv_sec = tvdiv.quot;
  1102. spec->tv_nsec = tvdiv.rem * 1000;
  1103. }
  1104. void ms_to_timespec(struct timespec *spec, int64_t ms)
  1105. {
  1106. lldiv_t tvdiv = lldiv(ms, 1000);
  1107. spec->tv_sec = tvdiv.quot;
  1108. spec->tv_nsec = tvdiv.rem * 1000000;
  1109. }
  1110. void timeraddspec(struct timespec *a, const struct timespec *b)
  1111. {
  1112. a->tv_sec += b->tv_sec;
  1113. a->tv_nsec += b->tv_nsec;
  1114. if (a->tv_nsec >= 1000000000) {
  1115. a->tv_nsec -= 1000000000;
  1116. a->tv_sec++;
  1117. }
  1118. }
  1119. #ifndef WIN32
  1120. static
  1121. void _now_gettimeofday(struct timeval *tv)
  1122. {
  1123. gettimeofday(tv, NULL);
  1124. }
  1125. #else
  1126. /* Windows start time is since 1601 lol so convert it to unix epoch 1970. */
  1127. #define EPOCHFILETIME (116444736000000000LL)
  1128. void _now_gettimeofday(struct timeval *tv)
  1129. {
  1130. FILETIME ft;
  1131. LARGE_INTEGER li;
  1132. GetSystemTimeAsFileTime(&ft);
  1133. li.LowPart = ft.dwLowDateTime;
  1134. li.HighPart = ft.dwHighDateTime;
  1135. li.QuadPart -= EPOCHFILETIME;
  1136. /* SystemTime is in decimicroseconds so divide by an unusual number */
  1137. tv->tv_sec = li.QuadPart / 10000000;
  1138. tv->tv_usec = li.QuadPart % 10000000;
  1139. }
  1140. #endif
  1141. void cgsleep_ms_r(cgtimer_t *tv_start, int ms)
  1142. {
  1143. cgsleep_us_r(tv_start, ((int64_t)ms) * 1000);
  1144. }
  1145. static
  1146. void _cgsleep_us_r_nanosleep(cgtimer_t *tv_start, int64_t us)
  1147. {
  1148. struct timeval tv_timer[1], tv[1];
  1149. struct timespec ts[1];
  1150. timer_set_delay(tv_timer, tv_start, us);
  1151. while (true)
  1152. {
  1153. timer_set_now(tv);
  1154. if (!timercmp(tv_timer, tv, >))
  1155. return;
  1156. timersub(tv_timer, tv, tv);
  1157. timeval_to_spec(ts, tv);
  1158. nanosleep(ts, NULL);
  1159. }
  1160. }
  1161. void cgsleep_ms(int ms)
  1162. {
  1163. cgtimer_t ts_start;
  1164. cgsleep_prepare_r(&ts_start);
  1165. cgsleep_ms_r(&ts_start, ms);
  1166. }
  1167. void cgsleep_us(int64_t us)
  1168. {
  1169. cgtimer_t ts_start;
  1170. cgsleep_prepare_r(&ts_start);
  1171. cgsleep_us_r(&ts_start, us);
  1172. }
  1173. /* Returns the microseconds difference between end and start times as a double */
  1174. double us_tdiff(struct timeval *end, struct timeval *start)
  1175. {
  1176. return end->tv_sec * 1000000 + end->tv_usec - start->tv_sec * 1000000 - start->tv_usec;
  1177. }
  1178. /* Returns the seconds difference between end and start times as a double */
  1179. double tdiff(struct timeval *end, struct timeval *start)
  1180. {
  1181. return end->tv_sec - start->tv_sec + (end->tv_usec - start->tv_usec) / 1000000.0;
  1182. }
  1183. int utf8_len(const uint8_t b)
  1184. {
  1185. if (!(b & 0x80))
  1186. return 1;
  1187. if (!(b & 0x20))
  1188. return 2;
  1189. else
  1190. if (!(b & 0x10))
  1191. return 3;
  1192. else
  1193. return 4;
  1194. }
  1195. int32_t utf8_decode(const void *b, int *out_len)
  1196. {
  1197. int32_t w;
  1198. const unsigned char *s = b;
  1199. *out_len = utf8_len(s[0]);
  1200. if (*out_len == 1)
  1201. // ASCII
  1202. return s[0];
  1203. #ifdef STRICT_UTF8
  1204. if (unlikely(!(s[0] & 0x40)))
  1205. goto invalid;
  1206. if (unlikely(s[0] & 0x38 == 0x38))
  1207. goto invalid;
  1208. #endif
  1209. w = s[0] & ((2 << (6 - *out_len)) - 1);
  1210. for (int i = 1; i < *out_len; ++i)
  1211. {
  1212. #ifdef STRICT_UTF8
  1213. if (unlikely((s[i] & 0xc0) != 0x80))
  1214. goto invalid;
  1215. #endif
  1216. w = (w << 6) | (s[i] & 0x3f);
  1217. }
  1218. #if defined(STRICT_UTF8)
  1219. if (unlikely(w > 0x10FFFF))
  1220. goto invalid;
  1221. // FIXME: UTF-8 requires smallest possible encoding; check it
  1222. #endif
  1223. return w;
  1224. #ifdef STRICT_UTF8
  1225. invalid:
  1226. *out_len = 1;
  1227. return REPLACEMENT_CHAR;
  1228. #endif
  1229. }
  1230. size_t utf8_strlen(const void * const b)
  1231. {
  1232. const uint8_t *s = b;
  1233. size_t c = 0;
  1234. int clen, i;
  1235. while (s[0])
  1236. {
  1237. clen = utf8_len(s[0]);
  1238. for (i = 0; i < clen; ++i)
  1239. if (!s[i])
  1240. clen = 1;
  1241. ++c;
  1242. s += clen;
  1243. }
  1244. return c;
  1245. }
  1246. static
  1247. void _utf8_test(const char *s, const wchar_t expected, int expectedlen)
  1248. {
  1249. int len;
  1250. wchar_t r;
  1251. if (expected != REPLACEMENT_CHAR)
  1252. {
  1253. len = utf8_len(((uint8_t*)s)[0]);
  1254. if (len != expectedlen)
  1255. applog(LOG_ERR, "UTF-8 test U+%06lX (len %d) failed: got utf8_len=>%d", (unsigned long)expected, expectedlen, len);
  1256. len = utf8_strlen(s);
  1257. if (len != (s[0] ? 1 : 0))
  1258. applog(LOG_ERR, "UTF-8 test U+%06lX (len %d) failed: got utf8_strlen=>%d", (unsigned long)expected, expectedlen, len);
  1259. len = -1;
  1260. }
  1261. r = utf8_decode(s, &len);
  1262. if (unlikely(r != expected || expectedlen != len))
  1263. applog(LOG_ERR, "UTF-8 test U+%06lX (len %d) failed: got U+%06lX (len %d)", (unsigned long)expected, expectedlen, (unsigned long)r, len);
  1264. }
  1265. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1266. void utf8_test()
  1267. {
  1268. _utf8_test("", 0, 1);
  1269. _utf8_test("\1", 1, 1);
  1270. _utf8_test("\x7f", 0x7f, 1);
  1271. #if WCHAR_MAX >= 0x80
  1272. _utf8_test("\xc2\x80", 0x80, 2);
  1273. #if WCHAR_MAX >= 0xff
  1274. _utf8_test("\xc3\xbf", 0xff, 2);
  1275. #if WCHAR_MAX >= 0x7ff
  1276. _utf8_test("\xdf\xbf", 0x7ff, 2);
  1277. #if WCHAR_MAX >= 0x800
  1278. _utf8_test("\xe0\xa0\x80", 0x800, 3);
  1279. #if WCHAR_MAX >= 0xffff
  1280. _utf8_test("\xef\xbf\xbf", 0xffff, 3);
  1281. #if WCHAR_MAX >= 0x10000
  1282. _utf8_test("\xf0\x90\x80\x80", 0x10000, 4);
  1283. #if WCHAR_MAX >= 0x10ffff
  1284. _utf8_test("\xf4\x8f\xbf\xbf", 0x10ffff, 4);
  1285. #endif
  1286. #endif
  1287. #endif
  1288. #endif
  1289. #endif
  1290. #endif
  1291. #endif
  1292. #ifdef STRICT_UTF8
  1293. _utf8_test("\x80", REPLACEMENT_CHAR, 1);
  1294. _utf8_test("\xbf", REPLACEMENT_CHAR, 1);
  1295. _utf8_test("\xfe", REPLACEMENT_CHAR, 1);
  1296. _utf8_test("\xff", REPLACEMENT_CHAR, 1);
  1297. #endif
  1298. }
  1299. bool extract_sockaddr(char *url, char **sockaddr_url, char **sockaddr_port)
  1300. {
  1301. char *url_begin, *url_end, *ipv6_begin, *ipv6_end, *port_start = NULL;
  1302. char url_address[256], port[6];
  1303. int url_len, port_len = 0;
  1304. url_begin = strstr(url, "//");
  1305. if (!url_begin)
  1306. url_begin = url;
  1307. else
  1308. url_begin += 2;
  1309. /* Look for numeric ipv6 entries */
  1310. ipv6_begin = strstr(url_begin, "[");
  1311. ipv6_end = strstr(url_begin, "]");
  1312. if (ipv6_begin && ipv6_end && ipv6_end > ipv6_begin)
  1313. url_end = strstr(ipv6_end, ":");
  1314. else
  1315. url_end = strstr(url_begin, ":");
  1316. if (url_end) {
  1317. url_len = url_end - url_begin;
  1318. port_len = strlen(url_begin) - url_len - 1;
  1319. if (port_len < 1)
  1320. return false;
  1321. port_start = url_end + 1;
  1322. } else
  1323. url_len = strlen(url_begin);
  1324. if (url_len < 1)
  1325. return false;
  1326. sprintf(url_address, "%.*s", url_len, url_begin);
  1327. if (port_len) {
  1328. char *slash;
  1329. snprintf(port, 6, "%.*s", port_len, port_start);
  1330. slash = strchr(port, '/');
  1331. if (slash)
  1332. *slash = '\0';
  1333. } else
  1334. strcpy(port, "80");
  1335. free(*sockaddr_port);
  1336. *sockaddr_port = strdup(port);
  1337. free(*sockaddr_url);
  1338. *sockaddr_url = strdup(url_address);
  1339. return true;
  1340. }
  1341. enum send_ret {
  1342. SEND_OK,
  1343. SEND_SELECTFAIL,
  1344. SEND_SENDFAIL,
  1345. SEND_INACTIVE
  1346. };
  1347. /* Send a single command across a socket, appending \n to it. This should all
  1348. * be done under stratum lock except when first establishing the socket */
  1349. static enum send_ret __stratum_send(struct pool *pool, char *s, ssize_t len)
  1350. {
  1351. SOCKETTYPE sock = pool->sock;
  1352. ssize_t ssent = 0;
  1353. strcat(s, "\n");
  1354. len++;
  1355. while (len > 0 ) {
  1356. struct timeval timeout = {1, 0};
  1357. size_t sent = 0;
  1358. CURLcode rc;
  1359. fd_set wd;
  1360. retry:
  1361. FD_ZERO(&wd);
  1362. FD_SET(sock, &wd);
  1363. if (select(sock + 1, NULL, &wd, NULL, &timeout) < 1) {
  1364. if (interrupted())
  1365. goto retry;
  1366. return SEND_SELECTFAIL;
  1367. }
  1368. rc = curl_easy_send(pool->stratum_curl, s + ssent, len, &sent);
  1369. if (rc != CURLE_OK)
  1370. {
  1371. if (rc != CURLE_AGAIN)
  1372. return SEND_SENDFAIL;
  1373. sent = 0;
  1374. }
  1375. ssent += sent;
  1376. len -= sent;
  1377. }
  1378. pool->cgminer_pool_stats.times_sent++;
  1379. pool->cgminer_pool_stats.bytes_sent += ssent;
  1380. total_bytes_sent += ssent;
  1381. pool->cgminer_pool_stats.net_bytes_sent += ssent;
  1382. return SEND_OK;
  1383. }
  1384. bool _stratum_send(struct pool *pool, char *s, ssize_t len, bool force)
  1385. {
  1386. enum send_ret ret = SEND_INACTIVE;
  1387. if (opt_protocol)
  1388. applog(LOG_DEBUG, "Pool %u: SEND: %s", pool->pool_no, s);
  1389. mutex_lock(&pool->stratum_lock);
  1390. if (pool->stratum_active || force)
  1391. ret = __stratum_send(pool, s, len);
  1392. mutex_unlock(&pool->stratum_lock);
  1393. /* This is to avoid doing applog under stratum_lock */
  1394. switch (ret) {
  1395. default:
  1396. case SEND_OK:
  1397. break;
  1398. case SEND_SELECTFAIL:
  1399. applog(LOG_DEBUG, "Write select failed on pool %d sock", pool->pool_no);
  1400. suspend_stratum(pool);
  1401. break;
  1402. case SEND_SENDFAIL:
  1403. applog(LOG_DEBUG, "Failed to send in stratum_send");
  1404. suspend_stratum(pool);
  1405. break;
  1406. case SEND_INACTIVE:
  1407. applog(LOG_DEBUG, "Stratum send failed due to no pool stratum_active");
  1408. break;
  1409. }
  1410. return (ret == SEND_OK);
  1411. }
  1412. static bool socket_full(struct pool *pool, int wait)
  1413. {
  1414. SOCKETTYPE sock = pool->sock;
  1415. struct timeval timeout;
  1416. fd_set rd;
  1417. if (sock == INVSOCK)
  1418. return true;
  1419. if (unlikely(wait < 0))
  1420. wait = 0;
  1421. FD_ZERO(&rd);
  1422. FD_SET(sock, &rd);
  1423. timeout.tv_usec = 0;
  1424. timeout.tv_sec = wait;
  1425. if (select(sock + 1, &rd, NULL, NULL, &timeout) > 0)
  1426. return true;
  1427. return false;
  1428. }
  1429. /* Check to see if Santa's been good to you */
  1430. bool sock_full(struct pool *pool)
  1431. {
  1432. if (strlen(pool->sockbuf))
  1433. return true;
  1434. return (socket_full(pool, 0));
  1435. }
  1436. static void clear_sockbuf(struct pool *pool)
  1437. {
  1438. strcpy(pool->sockbuf, "");
  1439. }
  1440. static void clear_sock(struct pool *pool)
  1441. {
  1442. size_t n = 0;
  1443. mutex_lock(&pool->stratum_lock);
  1444. do {
  1445. n = 0;
  1446. if (pool->sock)
  1447. curl_easy_recv(pool->stratum_curl, pool->sockbuf, RECVSIZE, &n);
  1448. } while (n > 0);
  1449. mutex_unlock(&pool->stratum_lock);
  1450. clear_sockbuf(pool);
  1451. }
  1452. /* Make sure the pool sockbuf is large enough to cope with any coinbase size
  1453. * by reallocing it to a large enough size rounded up to a multiple of RBUFSIZE
  1454. * and zeroing the new memory */
  1455. static void recalloc_sock(struct pool *pool, size_t len)
  1456. {
  1457. size_t old, new;
  1458. old = strlen(pool->sockbuf);
  1459. new = old + len + 1;
  1460. if (new < pool->sockbuf_size)
  1461. return;
  1462. new = new + (RBUFSIZE - (new % RBUFSIZE));
  1463. // Avoid potentially recursive locking
  1464. // applog(LOG_DEBUG, "Recallocing pool sockbuf to %lu", (unsigned long)new);
  1465. pool->sockbuf = realloc(pool->sockbuf, new);
  1466. if (!pool->sockbuf)
  1467. quithere(1, "Failed to realloc pool sockbuf");
  1468. memset(pool->sockbuf + old, 0, new - old);
  1469. pool->sockbuf_size = new;
  1470. }
  1471. /* Peeks at a socket to find the first end of line and then reads just that
  1472. * from the socket and returns that as a malloced char */
  1473. char *recv_line(struct pool *pool)
  1474. {
  1475. char *tok, *sret = NULL;
  1476. ssize_t len, buflen;
  1477. int waited = 0;
  1478. if (!strstr(pool->sockbuf, "\n")) {
  1479. struct timeval rstart, now;
  1480. cgtime(&rstart);
  1481. if (!socket_full(pool, DEFAULT_SOCKWAIT)) {
  1482. applog(LOG_DEBUG, "Timed out waiting for data on socket_full");
  1483. goto out;
  1484. }
  1485. do {
  1486. char s[RBUFSIZE];
  1487. size_t slen;
  1488. size_t n = 0;
  1489. CURLcode rc;
  1490. memset(s, 0, RBUFSIZE);
  1491. rc = curl_easy_recv(pool->stratum_curl, s, RECVSIZE, &n);
  1492. if (rc == CURLE_OK && !n)
  1493. {
  1494. applog(LOG_DEBUG, "Socket closed waiting in recv_line");
  1495. suspend_stratum(pool);
  1496. break;
  1497. }
  1498. cgtime(&now);
  1499. waited = tdiff(&now, &rstart);
  1500. if (rc != CURLE_OK)
  1501. {
  1502. if (rc != CURLE_AGAIN || !socket_full(pool, DEFAULT_SOCKWAIT - waited))
  1503. {
  1504. applog(LOG_DEBUG, "Failed to recv sock in recv_line");
  1505. suspend_stratum(pool);
  1506. break;
  1507. }
  1508. } else {
  1509. slen = strlen(s);
  1510. recalloc_sock(pool, slen);
  1511. strcat(pool->sockbuf, s);
  1512. }
  1513. } while (waited < DEFAULT_SOCKWAIT && !strstr(pool->sockbuf, "\n"));
  1514. }
  1515. buflen = strlen(pool->sockbuf);
  1516. tok = strtok(pool->sockbuf, "\n");
  1517. if (!tok) {
  1518. applog(LOG_DEBUG, "Failed to parse a \\n terminated string in recv_line");
  1519. goto out;
  1520. }
  1521. sret = strdup(tok);
  1522. len = strlen(sret);
  1523. /* Copy what's left in the buffer after the \n, including the
  1524. * terminating \0 */
  1525. if (buflen > len + 1)
  1526. memmove(pool->sockbuf, pool->sockbuf + len + 1, buflen - len + 1);
  1527. else
  1528. strcpy(pool->sockbuf, "");
  1529. pool->cgminer_pool_stats.times_received++;
  1530. pool->cgminer_pool_stats.bytes_received += len;
  1531. total_bytes_rcvd += len;
  1532. pool->cgminer_pool_stats.net_bytes_received += len;
  1533. out:
  1534. if (!sret)
  1535. clear_sock(pool);
  1536. else if (opt_protocol)
  1537. applog(LOG_DEBUG, "Pool %u: RECV: %s", pool->pool_no, sret);
  1538. return sret;
  1539. }
  1540. /* Dumps any JSON value as a string. Just like jansson 2.1's JSON_ENCODE_ANY
  1541. * flag, but this is compatible with 2.0. */
  1542. char *json_dumps_ANY(json_t *json, size_t flags)
  1543. {
  1544. switch (json_typeof(json))
  1545. {
  1546. case JSON_ARRAY:
  1547. case JSON_OBJECT:
  1548. return json_dumps(json, flags);
  1549. default:
  1550. break;
  1551. }
  1552. char *rv;
  1553. #ifdef JSON_ENCODE_ANY
  1554. rv = json_dumps(json, JSON_ENCODE_ANY | flags);
  1555. if (rv)
  1556. return rv;
  1557. #endif
  1558. json_t *tmp = json_array();
  1559. char *s;
  1560. int i;
  1561. size_t len;
  1562. if (!tmp)
  1563. quithere(1, "Failed to allocate json array");
  1564. if (json_array_append(tmp, json))
  1565. quithere(1, "Failed to append temporary array");
  1566. s = json_dumps(tmp, flags);
  1567. if (!s)
  1568. return NULL;
  1569. for (i = 0; s[i] != '['; ++i)
  1570. if (unlikely(!(s[i] && isCspace(s[i]))))
  1571. quithere(1, "Failed to find opening bracket in array dump");
  1572. len = strlen(&s[++i]) - 1;
  1573. if (unlikely(s[i+len] != ']'))
  1574. quithere(1, "Failed to find closing bracket in array dump");
  1575. rv = malloc(len + 1);
  1576. memcpy(rv, &s[i], len);
  1577. rv[len] = '\0';
  1578. free(s);
  1579. json_decref(tmp);
  1580. return rv;
  1581. }
  1582. /* Extracts a string value from a json array with error checking. To be used
  1583. * when the value of the string returned is only examined and not to be stored.
  1584. * See json_array_string below */
  1585. const char *__json_array_string(json_t *val, unsigned int entry)
  1586. {
  1587. json_t *arr_entry;
  1588. if (json_is_null(val))
  1589. return NULL;
  1590. if (!json_is_array(val))
  1591. return NULL;
  1592. if (entry > json_array_size(val))
  1593. return NULL;
  1594. arr_entry = json_array_get(val, entry);
  1595. if (!json_is_string(arr_entry))
  1596. return NULL;
  1597. return json_string_value(arr_entry);
  1598. }
  1599. /* Creates a freshly malloced dup of __json_array_string */
  1600. static char *json_array_string(json_t *val, unsigned int entry)
  1601. {
  1602. const char *buf = __json_array_string(val, entry);
  1603. if (buf)
  1604. return strdup(buf);
  1605. return NULL;
  1606. }
  1607. void *my_memrchr(const void * const datap, const int c, const size_t sz)
  1608. {
  1609. const uint8_t *data = datap;
  1610. const uint8_t *p = &data[sz];
  1611. while (p > data)
  1612. if (*--p == c)
  1613. return (void *)p;
  1614. return NULL;
  1615. }
  1616. bool isCalpha(const int c)
  1617. {
  1618. if (c >= 'A' && c <= 'Z')
  1619. return true;
  1620. if (c >= 'a' && c <= 'z')
  1621. return true;
  1622. return false;
  1623. }
  1624. const char *get_registered_domain(size_t * const out_domainlen, const char * const fqdn, const size_t fqdnlen)
  1625. {
  1626. const char *s;
  1627. int dots = 0;
  1628. for (s = &fqdn[fqdnlen-1]; s >= fqdn; --s)
  1629. {
  1630. if (s[0] == '.')
  1631. {
  1632. *out_domainlen = fqdnlen - (&s[1] - fqdn);
  1633. if (++dots >= 2 && *out_domainlen > 5)
  1634. return &s[1];
  1635. }
  1636. else
  1637. if (!(dots || isCalpha(s[0])))
  1638. {
  1639. *out_domainlen = fqdnlen;
  1640. return fqdn;
  1641. }
  1642. }
  1643. *out_domainlen = fqdnlen;
  1644. return fqdn;
  1645. }
  1646. const char *extract_domain(size_t * const out_domainlen, const char * const uri, const size_t urilen)
  1647. {
  1648. const char *p = uri, *b, *q, *s;
  1649. bool alldigit;
  1650. p = memchr(&p[1], '/', urilen - (&p[1] - uri));
  1651. if (p)
  1652. {
  1653. if (p[-1] == ':')
  1654. {
  1655. // part of the URI scheme, ignore it
  1656. while (p[0] == '/')
  1657. ++p;
  1658. p = memchr(p, '/', urilen - (p - uri)) ?: &uri[urilen];
  1659. }
  1660. }
  1661. else
  1662. p = &uri[urilen];
  1663. s = p;
  1664. q = my_memrchr(uri, ':', p - uri);
  1665. if (q)
  1666. {
  1667. alldigit = true;
  1668. for (q = b = &q[1]; q < p; ++q)
  1669. if (!isdigit(q[0]))
  1670. {
  1671. alldigit = false;
  1672. break;
  1673. }
  1674. if (alldigit && p != b)
  1675. p = &b[-1];
  1676. }
  1677. alldigit = true;
  1678. for (b = uri; b < p; ++b)
  1679. {
  1680. if (b[0] == ':')
  1681. break;
  1682. if (alldigit && !isdigit(b[0]))
  1683. alldigit = false;
  1684. }
  1685. if ((b < p && b[0] == ':') && (b == uri || !alldigit))
  1686. b = &b[1];
  1687. else
  1688. b = uri;
  1689. while (b <= p && b[0] == '/')
  1690. ++b;
  1691. if (p - b > 1 && b[0] == '[' && p[-1] == ']')
  1692. {
  1693. ++b;
  1694. --p;
  1695. }
  1696. else
  1697. if (memchr(b, ':', p - b))
  1698. p = s;
  1699. if (p > b && p[-1] == '.')
  1700. --p;
  1701. *out_domainlen = p - b;
  1702. return b;
  1703. }
  1704. bool match_domains(const char * const a, const size_t alen, const char * const b, const size_t blen)
  1705. {
  1706. size_t a_domainlen, b_domainlen;
  1707. const char *a_domain, *b_domain;
  1708. a_domain = extract_domain(&a_domainlen, a, alen);
  1709. a_domain = get_registered_domain(&a_domainlen, a_domain, a_domainlen);
  1710. b_domain = extract_domain(&b_domainlen, b, blen);
  1711. b_domain = get_registered_domain(&b_domainlen, b_domain, b_domainlen);
  1712. if (a_domainlen != b_domainlen)
  1713. return false;
  1714. return !strncasecmp(a_domain, b_domain, a_domainlen);
  1715. }
  1716. static
  1717. void _test_extract_domain(const char * const expect, const char * const uri)
  1718. {
  1719. size_t sz;
  1720. const char * const d = extract_domain(&sz, uri, strlen(uri));
  1721. if (sz != strlen(expect) || strncasecmp(d, expect, sz))
  1722. applog(LOG_WARNING, "extract_domain \"%s\" test failed; got \"%.*s\" instead of \"%s\"", uri, sz, d, expect);
  1723. }
  1724. static
  1725. void _test_get_regd_domain(const char * const expect, const char * const fqdn)
  1726. {
  1727. size_t sz;
  1728. const char * const d = get_registered_domain(&sz, fqdn, strlen(fqdn));
  1729. if (d == NULL || sz != strlen(expect) || strncasecmp(d, expect, sz))
  1730. applog(LOG_WARNING, "get_registered_domain \"%s\" test failed; got \"%.*s\" instead of \"%s\"", fqdn, sz, d, expect);
  1731. }
  1732. void test_domain_funcs()
  1733. {
  1734. _test_extract_domain("s.m.eligius.st", "http://s.m.eligius.st:3334");
  1735. _test_extract_domain("s.m.eligius.st", "http://s.m.eligius.st:3334/abc/abc/");
  1736. _test_extract_domain("s.m.eligius.st", "http://s.m.eligius.st/abc/abc/");
  1737. _test_extract_domain("s.m.eligius.st", "http://s.m.eligius.st");
  1738. _test_extract_domain("s.m.eligius.st", "http:s.m.eligius.st");
  1739. _test_extract_domain("s.m.eligius.st", "stratum+tcp:s.m.eligius.st");
  1740. _test_extract_domain("s.m.eligius.st", "stratum+tcp:s.m.eligius.st:3334");
  1741. _test_extract_domain("s.m.eligius.st", "stratum+tcp://s.m.eligius.st:3334");
  1742. _test_extract_domain("s.m.eligius.st", "stratum+tcp://s.m.eligius.st:3334///");
  1743. _test_extract_domain("s.m.eligius.st", "stratum+tcp://s.m.eligius.st.:3334///");
  1744. _test_extract_domain("s.m.eligius.st", "s.m.eligius.st:3334");
  1745. _test_extract_domain("s.m.eligius.st", "s.m.eligius.st:3334///");
  1746. _test_extract_domain("foohost", "foohost:3334");
  1747. _test_extract_domain("foohost", "foohost:3334///");
  1748. _test_extract_domain("foohost", "foohost:3334/abc.com//");
  1749. _test_extract_domain("", "foohost:");
  1750. _test_extract_domain("3334", "foohost://3334/abc.com//");
  1751. _test_extract_domain("192.0.2.0", "foohost:192.0.2.0");
  1752. _test_extract_domain("192.0.2.0", "192.0.2.0:3334");
  1753. _test_extract_domain("192.0.2.0", "192.0.2.0:3334///");
  1754. _test_extract_domain("2001:db8::1", "2001:db8::1");
  1755. _test_extract_domain("2001:db8::1", "http://[2001:db8::1]");
  1756. _test_extract_domain("2001:db8::1", "http:[2001:db8::1]");
  1757. _test_extract_domain("2001:db8::1", "http://[2001:db8::1]:42");
  1758. _test_extract_domain("2001:db8::1", "http://[2001:db8::1]:42/abc//def/ghi");
  1759. _test_extract_domain("2001:db8::cafe", "http://[2001:db8::cafe]");
  1760. _test_extract_domain("2001:db8::cafe", "http:[2001:db8::cafe]");
  1761. _test_extract_domain("2001:db8::cafe", "http://[2001:db8::cafe]:42");
  1762. _test_extract_domain("2001:db8::cafe", "http://[2001:db8::cafe]:42/abc//def/ghi");
  1763. _test_get_regd_domain("eligius.st", "s.m.eligius.st");
  1764. _test_get_regd_domain("eligius.st", "eligius.st");
  1765. _test_get_regd_domain("foohost.co.uk", "myserver.foohost.co.uk");
  1766. _test_get_regd_domain("foohost", "foohost");
  1767. _test_get_regd_domain("192.0.2.0", "192.0.2.0");
  1768. _test_get_regd_domain("2001:db8::1", "2001:db8::1");
  1769. }
  1770. struct bfg_strtobool_keyword {
  1771. bool val;
  1772. const char *keyword;
  1773. };
  1774. bool bfg_strtobool(const char * const s, char ** const endptr, __maybe_unused const int opts)
  1775. {
  1776. struct bfg_strtobool_keyword keywords[] = {
  1777. {false, "false"},
  1778. {false, "never"},
  1779. {false, "none"},
  1780. {false, "off"},
  1781. {false, "no"},
  1782. {false, "0"},
  1783. {true , "always"},
  1784. {true , "true"},
  1785. {true , "yes"},
  1786. {true , "on"},
  1787. };
  1788. const int total_keywords = sizeof(keywords) / sizeof(*keywords);
  1789. for (int i = 0; i < total_keywords; ++i)
  1790. {
  1791. const size_t kwlen = strlen(keywords[i].keyword);
  1792. if (!strncasecmp(keywords[i].keyword, s, kwlen))
  1793. {
  1794. if (endptr)
  1795. *endptr = (char*)&s[kwlen];
  1796. return keywords[i].val;
  1797. }
  1798. }
  1799. char *lend;
  1800. strtol(s, &lend, 0);
  1801. if (lend > s)
  1802. {
  1803. if (endptr)
  1804. *endptr = lend;
  1805. // Any number other than "0" is intentionally considered true, including 0x0
  1806. return true;
  1807. }
  1808. *endptr = (char*)s;
  1809. return false;
  1810. }
  1811. bool uri_get_param_bool(const char * const uri, const char * const param, const bool defval)
  1812. {
  1813. const char *start = strchr(uri, '#');
  1814. bool invert = false, foundval = true;
  1815. if (!start)
  1816. return defval;
  1817. const char *p = start;
  1818. ++start;
  1819. nextmatch:
  1820. p = strstr(&p[1], param);
  1821. if (!p)
  1822. return defval;
  1823. const char *q = &p[strlen(param)];
  1824. if (isCalpha(q[0]))
  1825. goto nextmatch;
  1826. if (p - start >= 2 && (!strncasecmp(&p[-2], "no", 2)) && !isCalpha(p[-3]))
  1827. invert = true;
  1828. else
  1829. if (isCalpha(p[-1]))
  1830. goto nextmatch;
  1831. if (q[0] == '=')
  1832. {
  1833. ++q;
  1834. char *end;
  1835. bool v = bfg_strtobool(q, &end, 0);
  1836. if (end > q && !isCalpha(end[0]))
  1837. foundval = v;
  1838. }
  1839. if (invert)
  1840. foundval = !foundval;
  1841. return foundval;
  1842. }
  1843. static
  1844. void _test_uri_get_param(const char * const uri, const char * const param, const bool defval, const bool expect)
  1845. {
  1846. const bool actual = uri_get_param_bool(uri, param, defval);
  1847. if (actual != expect)
  1848. applog(LOG_WARNING, "%s(\"%s\", \"%s\", %s) test failed",
  1849. "uri_get_param_bool", uri, param, defval ? "true" : "false");
  1850. }
  1851. void test_uri_get_param()
  1852. {
  1853. _test_uri_get_param("stratum+tcp://footest/#redirect", "redirect", false, true);
  1854. _test_uri_get_param("stratum+tcp://footest/#redirectme", "redirect", false, false);
  1855. _test_uri_get_param("stratum+tcp://footest/#noredirect", "redirect", false, false);
  1856. _test_uri_get_param("stratum+tcp://footest/#redirect=0", "redirect", false, false);
  1857. _test_uri_get_param("stratum+tcp://footest/#redirect=1", "redirect", false, true);
  1858. _test_uri_get_param("stratum+tcp://footest/#redirect", "redirect", true, true);
  1859. _test_uri_get_param("stratum+tcp://footest/#redirectme", "redirect", true, true);
  1860. _test_uri_get_param("stratum+tcp://footest/#noredirect", "redirect", true, false);
  1861. _test_uri_get_param("stratum+tcp://footest/#redirect=0", "redirect", true, false);
  1862. _test_uri_get_param("stratum+tcp://footest/#redirect=1", "redirect", true, true);
  1863. _test_uri_get_param("stratum+tcp://footest/#redirect=0,foo=1", "redirect", true, false);
  1864. _test_uri_get_param("stratum+tcp://footest/#redirect=1,foo=0", "redirect", false, true);
  1865. _test_uri_get_param("stratum+tcp://footest/#foo=1,noredirect=0,foo=1", "redirect", false, true);
  1866. _test_uri_get_param("stratum+tcp://footest/#bar=0,noredirect=1,foo=0", "redirect", true, false);
  1867. _test_uri_get_param("stratum+tcp://footest/#redirect=false", "redirect", true, false);
  1868. _test_uri_get_param("stratum+tcp://footest/#redirect=no", "redirect", true, false);
  1869. _test_uri_get_param("stratum+tcp://footest/#redirect=yes", "redirect", false, true);
  1870. }
  1871. void stratum_probe_transparency(struct pool *pool)
  1872. {
  1873. // Request transaction data to discourage pools from doing anything shady
  1874. char s[1024];
  1875. int sLen;
  1876. sLen = sprintf(s, "{\"params\": [\"%s\"], \"id\": \"txlist%s\", \"method\": \"mining.get_transactions\"}",
  1877. pool->swork.job_id,
  1878. pool->swork.job_id);
  1879. stratum_send(pool, s, sLen);
  1880. if ((!pool->swork.opaque) && !timer_isset(&pool->swork.tv_transparency))
  1881. timer_set_delay_from_now(&pool->swork.tv_transparency, 21093750L);
  1882. pool->swork.transparency_probed = true;
  1883. }
  1884. static bool parse_notify(struct pool *pool, json_t *val)
  1885. {
  1886. const char *prev_hash, *coinbase1, *coinbase2, *bbversion, *nbit, *ntime;
  1887. char *job_id;
  1888. bool clean, ret = false;
  1889. int merkles, i;
  1890. size_t cb1_len, cb2_len;
  1891. json_t *arr;
  1892. arr = json_array_get(val, 4);
  1893. if (!arr || !json_is_array(arr))
  1894. goto out;
  1895. merkles = json_array_size(arr);
  1896. for (i = 0; i < merkles; i++)
  1897. if (!json_is_string(json_array_get(arr, i)))
  1898. goto out;
  1899. prev_hash = __json_array_string(val, 1);
  1900. coinbase1 = __json_array_string(val, 2);
  1901. coinbase2 = __json_array_string(val, 3);
  1902. bbversion = __json_array_string(val, 5);
  1903. nbit = __json_array_string(val, 6);
  1904. ntime = __json_array_string(val, 7);
  1905. clean = json_is_true(json_array_get(val, 8));
  1906. if (!prev_hash || !coinbase1 || !coinbase2 || !bbversion || !nbit || !ntime)
  1907. goto out;
  1908. job_id = json_array_string(val, 0);
  1909. if (!job_id)
  1910. goto out;
  1911. cg_wlock(&pool->data_lock);
  1912. cgtime(&pool->swork.tv_received);
  1913. free(pool->swork.job_id);
  1914. pool->swork.job_id = job_id;
  1915. if (pool->swork.tr)
  1916. {
  1917. tmpl_decref(pool->swork.tr);
  1918. pool->swork.tr = NULL;
  1919. }
  1920. pool->submit_old = !clean;
  1921. pool->swork.clean = true;
  1922. hex2bin(&pool->swork.header1[0], bbversion, 4);
  1923. hex2bin(&pool->swork.header1[4], prev_hash, 32);
  1924. hex2bin((void*)&pool->swork.ntime, ntime, 4);
  1925. pool->swork.ntime = be32toh(pool->swork.ntime);
  1926. hex2bin(&pool->swork.diffbits[0], nbit, 4);
  1927. /* Nominally allow a driver to ntime roll 60 seconds */
  1928. set_simple_ntime_roll_limit(&pool->swork.ntime_roll_limits, pool->swork.ntime, 60);
  1929. cb1_len = strlen(coinbase1) / 2;
  1930. pool->swork.nonce2_offset = cb1_len + pool->n1_len;
  1931. cb2_len = strlen(coinbase2) / 2;
  1932. bytes_resize(&pool->swork.coinbase, pool->swork.nonce2_offset + pool->swork.n2size + cb2_len);
  1933. uint8_t *coinbase = bytes_buf(&pool->swork.coinbase);
  1934. hex2bin(coinbase, coinbase1, cb1_len);
  1935. hex2bin(&coinbase[cb1_len], pool->swork.nonce1, pool->n1_len);
  1936. // NOTE: gap for nonce2, filled at work generation time
  1937. hex2bin(&coinbase[pool->swork.nonce2_offset + pool->swork.n2size], coinbase2, cb2_len);
  1938. bytes_resize(&pool->swork.merkle_bin, 32 * merkles);
  1939. for (i = 0; i < merkles; i++)
  1940. hex2bin(&bytes_buf(&pool->swork.merkle_bin)[i * 32], json_string_value(json_array_get(arr, i)), 32);
  1941. pool->swork.merkles = merkles;
  1942. pool->nonce2 = 0;
  1943. cg_wunlock(&pool->data_lock);
  1944. applog(LOG_DEBUG, "Received stratum notify from pool %u with job_id=%s",
  1945. pool->pool_no, job_id);
  1946. if (opt_debug && opt_protocol)
  1947. {
  1948. applog(LOG_DEBUG, "job_id: %s", job_id);
  1949. applog(LOG_DEBUG, "prev_hash: %s", prev_hash);
  1950. applog(LOG_DEBUG, "coinbase1: %s", coinbase1);
  1951. applog(LOG_DEBUG, "coinbase2: %s", coinbase2);
  1952. for (i = 0; i < merkles; i++)
  1953. applog(LOG_DEBUG, "merkle%d: %s", i, json_string_value(json_array_get(arr, i)));
  1954. applog(LOG_DEBUG, "bbversion: %s", bbversion);
  1955. applog(LOG_DEBUG, "nbit: %s", nbit);
  1956. applog(LOG_DEBUG, "ntime: %s", ntime);
  1957. applog(LOG_DEBUG, "clean: %s", clean ? "yes" : "no");
  1958. }
  1959. /* A notify message is the closest stratum gets to a getwork */
  1960. pool->getwork_requested++;
  1961. total_getworks++;
  1962. if ((merkles && (!pool->swork.transparency_probed || rand() <= RAND_MAX / (opt_skip_checks + 1))) || timer_isset(&pool->swork.tv_transparency))
  1963. if (pool->probed)
  1964. stratum_probe_transparency(pool);
  1965. ret = true;
  1966. out:
  1967. return ret;
  1968. }
  1969. static bool parse_diff(struct pool *pool, json_t *val)
  1970. {
  1971. double diff;
  1972. diff = json_number_value(json_array_get(val, 0));
  1973. if (diff == 0)
  1974. return false;
  1975. if ((int64_t)diff != diff)
  1976. {
  1977. // Always assume fractional values are proper bdiff per specification
  1978. diff = bdiff_to_pdiff(diff);
  1979. }
  1980. else
  1981. {
  1982. // Integer; allow it to be interpreted as pdiff, since some the difference is trivial and some pools see it this way
  1983. if (opt_scrypt)
  1984. {
  1985. // Some scrypt pools multiply difficulty by 0x10000; since diff 1 is pretty difficult for scrypt right now, this is a safe assumption (otherwise they would be using a fractional value)
  1986. diff /= 0x10000;
  1987. }
  1988. }
  1989. if ((!opt_scrypt) && diff < 1 && diff > 0.999)
  1990. diff = 1;
  1991. cg_wlock(&pool->data_lock);
  1992. set_target_to_pdiff(pool->swork.target, diff);
  1993. cg_wunlock(&pool->data_lock);
  1994. applog(LOG_DEBUG, "Pool %d stratum difficulty set to %g", pool->pool_no, diff);
  1995. return true;
  1996. }
  1997. static bool parse_reconnect(struct pool *pool, json_t *val)
  1998. {
  1999. if (opt_disable_client_reconnect)
  2000. return false;
  2001. const char *url;
  2002. char address[256];
  2003. json_t *port_json;
  2004. url = __json_array_string(val, 0);
  2005. if (!url)
  2006. url = pool->sockaddr_url;
  2007. else
  2008. if (!pool_may_redirect_to(pool, url))
  2009. return false;
  2010. port_json = json_array_get(val, 1);
  2011. if (json_is_number(port_json))
  2012. {
  2013. const unsigned port = json_number_value(port_json);
  2014. snprintf(address, sizeof(address), "%s:%u", url, port);
  2015. }
  2016. else
  2017. {
  2018. const char *port;
  2019. if (json_is_string(port_json))
  2020. port = json_string_value(port_json);
  2021. else
  2022. port = pool->stratum_port;
  2023. snprintf(address, sizeof(address), "%s:%s", url, port);
  2024. }
  2025. if (!extract_sockaddr(address, &pool->sockaddr_url, &pool->stratum_port))
  2026. return false;
  2027. pool->stratum_url = pool->sockaddr_url;
  2028. applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, address);
  2029. if (!restart_stratum(pool))
  2030. return false;
  2031. return true;
  2032. }
  2033. static bool send_version(struct pool *pool, json_t *val)
  2034. {
  2035. char s[RBUFSIZE], *idstr;
  2036. json_t *id = json_object_get(val, "id");
  2037. if (!(id && !json_is_null(id)))
  2038. return false;
  2039. idstr = json_dumps_ANY(id, 0);
  2040. sprintf(s, "{\"id\": %s, \"result\": \""PACKAGE"/"VERSION"\", \"error\": null}", idstr);
  2041. free(idstr);
  2042. if (!stratum_send(pool, s, strlen(s)))
  2043. return false;
  2044. return true;
  2045. }
  2046. static bool stratum_show_message(struct pool *pool, json_t *val, json_t *params)
  2047. {
  2048. char *msg;
  2049. char s[RBUFSIZE], *idstr;
  2050. json_t *id = json_object_get(val, "id");
  2051. msg = json_array_string(params, 0);
  2052. if (likely(msg))
  2053. {
  2054. free(pool->admin_msg);
  2055. pool->admin_msg = msg;
  2056. applog(LOG_NOTICE, "Message from pool %u: %s", pool->pool_no, msg);
  2057. }
  2058. if (!(id && !json_is_null(id)))
  2059. return true;
  2060. idstr = json_dumps_ANY(id, 0);
  2061. if (likely(msg))
  2062. sprintf(s, "{\"id\": %s, \"result\": true, \"error\": null}", idstr);
  2063. else
  2064. sprintf(s, "{\"id\": %s, \"result\": null, \"error\": [-1, \"Failed to parse message\", null]}", idstr);
  2065. free(idstr);
  2066. if (!stratum_send(pool, s, strlen(s)))
  2067. return false;
  2068. return true;
  2069. }
  2070. bool parse_method(struct pool *pool, char *s)
  2071. {
  2072. json_t *val = NULL, *method, *err_val, *params;
  2073. json_error_t err;
  2074. bool ret = false;
  2075. const char *buf;
  2076. if (!s)
  2077. goto out;
  2078. val = JSON_LOADS(s, &err);
  2079. if (!val) {
  2080. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  2081. goto out;
  2082. }
  2083. method = json_object_get(val, "method");
  2084. if (!method)
  2085. goto out;
  2086. err_val = json_object_get(val, "error");
  2087. params = json_object_get(val, "params");
  2088. if (err_val && !json_is_null(err_val)) {
  2089. char *ss;
  2090. if (err_val)
  2091. ss = json_dumps(err_val, JSON_INDENT(3));
  2092. else
  2093. ss = strdup("(unknown reason)");
  2094. applog(LOG_INFO, "JSON-RPC method decode failed: %s", ss);
  2095. free(ss);
  2096. goto out;
  2097. }
  2098. buf = json_string_value(method);
  2099. if (!buf)
  2100. goto out;
  2101. if (!strncasecmp(buf, "mining.notify", 13)) {
  2102. if (parse_notify(pool, params))
  2103. pool->stratum_notify = ret = true;
  2104. else
  2105. pool->stratum_notify = ret = false;
  2106. goto out;
  2107. }
  2108. if (!strncasecmp(buf, "mining.set_difficulty", 21) && parse_diff(pool, params)) {
  2109. ret = true;
  2110. goto out;
  2111. }
  2112. if (!strncasecmp(buf, "client.reconnect", 16) && parse_reconnect(pool, params)) {
  2113. ret = true;
  2114. goto out;
  2115. }
  2116. if (!strncasecmp(buf, "client.get_version", 18) && send_version(pool, val)) {
  2117. ret = true;
  2118. goto out;
  2119. }
  2120. if (!strncasecmp(buf, "client.show_message", 19) && stratum_show_message(pool, val, params)) {
  2121. ret = true;
  2122. goto out;
  2123. }
  2124. out:
  2125. if (val)
  2126. json_decref(val);
  2127. return ret;
  2128. }
  2129. extern bool parse_stratum_response(struct pool *, char *s);
  2130. bool auth_stratum(struct pool *pool)
  2131. {
  2132. json_t *val = NULL, *res_val, *err_val;
  2133. char s[RBUFSIZE], *sret = NULL;
  2134. json_error_t err;
  2135. bool ret = false;
  2136. sprintf(s, "{\"id\": \"auth\", \"method\": \"mining.authorize\", \"params\": [\"%s\", \"%s\"]}",
  2137. pool->rpc_user, pool->rpc_pass);
  2138. if (!stratum_send(pool, s, strlen(s)))
  2139. goto out;
  2140. /* Parse all data in the queue and anything left should be auth */
  2141. while (42) {
  2142. sret = recv_line(pool);
  2143. if (!sret)
  2144. goto out;
  2145. if (parse_method(pool, sret))
  2146. free(sret);
  2147. else
  2148. break;
  2149. }
  2150. val = JSON_LOADS(sret, &err);
  2151. free(sret);
  2152. res_val = json_object_get(val, "result");
  2153. err_val = json_object_get(val, "error");
  2154. if (!res_val || json_is_false(res_val) || (err_val && !json_is_null(err_val))) {
  2155. char *ss;
  2156. if (err_val)
  2157. ss = json_dumps(err_val, JSON_INDENT(3));
  2158. else
  2159. ss = strdup("(unknown reason)");
  2160. applog(LOG_WARNING, "pool %d JSON stratum auth failed: %s", pool->pool_no, ss);
  2161. free(ss);
  2162. goto out;
  2163. }
  2164. ret = true;
  2165. applog(LOG_INFO, "Stratum authorisation success for pool %d", pool->pool_no);
  2166. pool->probed = true;
  2167. successful_connect = true;
  2168. out:
  2169. if (val)
  2170. json_decref(val);
  2171. if (pool->stratum_notify)
  2172. stratum_probe_transparency(pool);
  2173. return ret;
  2174. }
  2175. curl_socket_t grab_socket_opensocket_cb(void *clientp, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr)
  2176. {
  2177. struct pool *pool = clientp;
  2178. curl_socket_t sck = socket(addr->family, addr->socktype, addr->protocol);
  2179. pool->sock = sck;
  2180. return sck;
  2181. }
  2182. static bool setup_stratum_curl(struct pool *pool)
  2183. {
  2184. CURL *curl = NULL;
  2185. char s[RBUFSIZE];
  2186. bool ret = false;
  2187. bool try_tls = uri_get_param_bool(pool->rpc_url, "tls", true);
  2188. applog(LOG_DEBUG, "initiate_stratum with sockbuf=%p", pool->sockbuf);
  2189. mutex_lock(&pool->stratum_lock);
  2190. timer_unset(&pool->swork.tv_transparency);
  2191. pool->stratum_active = false;
  2192. pool->stratum_notify = false;
  2193. pool->swork.transparency_probed = false;
  2194. if (pool->stratum_curl)
  2195. curl_easy_cleanup(pool->stratum_curl);
  2196. pool->stratum_curl = curl_easy_init();
  2197. if (unlikely(!pool->stratum_curl))
  2198. quithere(1, "Failed to curl_easy_init");
  2199. if (pool->sockbuf)
  2200. pool->sockbuf[0] = '\0';
  2201. curl = pool->stratum_curl;
  2202. if (!pool->sockbuf) {
  2203. pool->sockbuf = calloc(RBUFSIZE, 1);
  2204. if (!pool->sockbuf)
  2205. quithere(1, "Failed to calloc pool sockbuf");
  2206. pool->sockbuf_size = RBUFSIZE;
  2207. }
  2208. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  2209. curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 30);
  2210. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, pool->curl_err_str);
  2211. curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
  2212. if (!opt_delaynet)
  2213. curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
  2214. /* We use DEBUGFUNCTION to count bytes sent/received, and verbose is needed
  2215. * to enable it */
  2216. curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, curl_debug_cb);
  2217. curl_easy_setopt(curl, CURLOPT_DEBUGDATA, (void *)pool);
  2218. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  2219. // CURLINFO_LASTSOCKET is broken on Win64 (which has a wider SOCKET type than curl_easy_getinfo returns), so we use this hack for now
  2220. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, grab_socket_opensocket_cb);
  2221. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  2222. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_TRY);
  2223. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, (long)0);
  2224. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, (long)0);
  2225. if (pool->rpc_proxy) {
  2226. curl_easy_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1);
  2227. curl_easy_setopt(curl, CURLOPT_PROXY, pool->rpc_proxy);
  2228. } else if (opt_socks_proxy) {
  2229. curl_easy_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1);
  2230. curl_easy_setopt(curl, CURLOPT_PROXY, opt_socks_proxy);
  2231. curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  2232. }
  2233. curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1);
  2234. retry:
  2235. /* Create a http url for use with curl */
  2236. sprintf(s, "http%s://%s:%s", try_tls ? "s" : "",
  2237. pool->sockaddr_url, pool->stratum_port);
  2238. curl_easy_setopt(curl, CURLOPT_URL, s);
  2239. pool->sock = INVSOCK;
  2240. if (curl_easy_perform(curl)) {
  2241. if (try_tls)
  2242. {
  2243. applog(LOG_DEBUG, "Stratum connect failed with TLS to pool %u: %s",
  2244. pool->pool_no, pool->curl_err_str);
  2245. try_tls = false;
  2246. goto retry;
  2247. }
  2248. applog(LOG_INFO, "Stratum connect failed to pool %d: %s",
  2249. pool->pool_no, pool->curl_err_str);
  2250. errout:
  2251. curl_easy_cleanup(curl);
  2252. pool->stratum_curl = NULL;
  2253. goto out;
  2254. }
  2255. if (pool->sock == INVSOCK)
  2256. {
  2257. applog(LOG_ERR, "Stratum connect succeeded, but technical problem extracting socket (pool %u)", pool->pool_no);
  2258. goto errout;
  2259. }
  2260. keep_sockalive(pool->sock);
  2261. pool->cgminer_pool_stats.times_sent++;
  2262. pool->cgminer_pool_stats.times_received++;
  2263. ret = true;
  2264. out:
  2265. mutex_unlock(&pool->stratum_lock);
  2266. return ret;
  2267. }
  2268. static char *get_sessionid(json_t *val)
  2269. {
  2270. char *ret = NULL;
  2271. json_t *arr_val;
  2272. int arrsize, i;
  2273. arr_val = json_array_get(val, 0);
  2274. if (!arr_val || !json_is_array(arr_val))
  2275. goto out;
  2276. arrsize = json_array_size(arr_val);
  2277. for (i = 0; i < arrsize; i++) {
  2278. json_t *arr = json_array_get(arr_val, i);
  2279. const char *notify;
  2280. if (!arr | !json_is_array(arr))
  2281. break;
  2282. notify = __json_array_string(arr, 0);
  2283. if (!notify)
  2284. continue;
  2285. if (!strncasecmp(notify, "mining.notify", 13)) {
  2286. ret = json_array_string(arr, 1);
  2287. break;
  2288. }
  2289. }
  2290. out:
  2291. return ret;
  2292. }
  2293. void suspend_stratum(struct pool *pool)
  2294. {
  2295. clear_sockbuf(pool);
  2296. applog(LOG_INFO, "Closing socket for stratum pool %d", pool->pool_no);
  2297. mutex_lock(&pool->stratum_lock);
  2298. pool->stratum_active = pool->stratum_notify = false;
  2299. if (pool->stratum_curl) {
  2300. curl_easy_cleanup(pool->stratum_curl);
  2301. }
  2302. pool->stratum_curl = NULL;
  2303. pool->sock = INVSOCK;
  2304. mutex_unlock(&pool->stratum_lock);
  2305. }
  2306. bool initiate_stratum(struct pool *pool)
  2307. {
  2308. bool ret = false, recvd = false, noresume = false, sockd = false;
  2309. bool trysuggest = request_target_str;
  2310. char s[RBUFSIZE], *sret = NULL, *nonce1, *sessionid;
  2311. json_t *val = NULL, *res_val, *err_val;
  2312. json_error_t err;
  2313. int n2size;
  2314. resend:
  2315. if (!setup_stratum_curl(pool)) {
  2316. sockd = false;
  2317. goto out;
  2318. }
  2319. sockd = true;
  2320. clear_sock(pool);
  2321. if (trysuggest)
  2322. {
  2323. int sz = sprintf(s, "{\"id\": null, \"method\": \"mining.suggest_target\", \"params\": [\"%s\"]}", request_target_str);
  2324. if (!_stratum_send(pool, s, sz, true))
  2325. {
  2326. applog(LOG_DEBUG, "Pool %u: Failed to send suggest_target in initiate_stratum", pool->pool_no);
  2327. goto out;
  2328. }
  2329. recvd = true;
  2330. }
  2331. if (noresume) {
  2332. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": []}", swork_id++);
  2333. } else {
  2334. if (pool->sessionid)
  2335. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\", \"%s\"]}", swork_id++, pool->sessionid);
  2336. else
  2337. sprintf(s, "{\"id\": %d, \"method\": \"mining.subscribe\", \"params\": [\""PACKAGE"/"VERSION"\"]}", swork_id++);
  2338. }
  2339. if (!_stratum_send(pool, s, strlen(s), true)) {
  2340. applog(LOG_DEBUG, "Failed to send s in initiate_stratum");
  2341. goto out;
  2342. }
  2343. recvd = true;
  2344. if (!socket_full(pool, DEFAULT_SOCKWAIT)) {
  2345. applog(LOG_DEBUG, "Timed out waiting for response in initiate_stratum");
  2346. goto out;
  2347. }
  2348. sret = recv_line(pool);
  2349. if (!sret)
  2350. goto out;
  2351. val = JSON_LOADS(sret, &err);
  2352. free(sret);
  2353. if (!val) {
  2354. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  2355. goto out;
  2356. }
  2357. res_val = json_object_get(val, "result");
  2358. err_val = json_object_get(val, "error");
  2359. if (!res_val || json_is_null(res_val) ||
  2360. (err_val && !json_is_null(err_val))) {
  2361. char *ss;
  2362. if (err_val)
  2363. ss = json_dumps(err_val, JSON_INDENT(3));
  2364. else
  2365. ss = strdup("(unknown reason)");
  2366. applog(LOG_INFO, "JSON-RPC decode failed: %s", ss);
  2367. free(ss);
  2368. goto out;
  2369. }
  2370. sessionid = get_sessionid(res_val);
  2371. if (!sessionid)
  2372. applog(LOG_DEBUG, "Failed to get sessionid in initiate_stratum");
  2373. nonce1 = json_array_string(res_val, 1);
  2374. if (!nonce1) {
  2375. applog(LOG_INFO, "Failed to get nonce1 in initiate_stratum");
  2376. free(sessionid);
  2377. goto out;
  2378. }
  2379. n2size = json_integer_value(json_array_get(res_val, 2));
  2380. if (!n2size) {
  2381. applog(LOG_INFO, "Failed to get n2size in initiate_stratum");
  2382. free(sessionid);
  2383. free(nonce1);
  2384. goto out;
  2385. }
  2386. cg_wlock(&pool->data_lock);
  2387. free(pool->sessionid);
  2388. pool->sessionid = sessionid;
  2389. free(pool->swork.nonce1);
  2390. pool->swork.nonce1 = nonce1;
  2391. pool->n1_len = strlen(nonce1) / 2;
  2392. pool->swork.n2size = n2size;
  2393. pool->nonce2sz = (n2size > sizeof(pool->nonce2)) ? sizeof(pool->nonce2) : n2size;
  2394. #ifdef WORDS_BIGENDIAN
  2395. pool->nonce2off = (n2size < sizeof(pool->nonce2)) ? (sizeof(pool->nonce2) - n2size) : 0;
  2396. #endif
  2397. cg_wunlock(&pool->data_lock);
  2398. if (sessionid)
  2399. applog(LOG_DEBUG, "Pool %d stratum session id: %s", pool->pool_no, pool->sessionid);
  2400. ret = true;
  2401. out:
  2402. if (val)
  2403. {
  2404. json_decref(val);
  2405. val = NULL;
  2406. }
  2407. if (ret) {
  2408. if (!pool->stratum_url)
  2409. pool->stratum_url = pool->sockaddr_url;
  2410. pool->stratum_active = true;
  2411. set_target_to_pdiff(pool->swork.target, 1);
  2412. if (opt_protocol) {
  2413. applog(LOG_DEBUG, "Pool %d confirmed mining.subscribe with extranonce1 %s extran2size %d",
  2414. pool->pool_no, pool->swork.nonce1, pool->swork.n2size);
  2415. }
  2416. } else {
  2417. if (recvd)
  2418. {
  2419. if (trysuggest)
  2420. {
  2421. applog(LOG_DEBUG, "Pool %u: Failed to connect stratum with mining.suggest_target, retrying without", pool->pool_no);
  2422. trysuggest = false;
  2423. goto resend;
  2424. }
  2425. if (!noresume)
  2426. {
  2427. applog(LOG_DEBUG, "Failed to resume stratum, trying afresh");
  2428. noresume = true;
  2429. goto resend;
  2430. }
  2431. }
  2432. applog(LOG_DEBUG, "Initiate stratum failed");
  2433. if (sockd)
  2434. suspend_stratum(pool);
  2435. }
  2436. return ret;
  2437. }
  2438. bool restart_stratum(struct pool *pool)
  2439. {
  2440. bool ret = true;
  2441. mutex_lock(&pool->pool_test_lock);
  2442. if (pool->stratum_active)
  2443. suspend_stratum(pool);
  2444. if (!initiate_stratum(pool))
  2445. {
  2446. ret = false;
  2447. goto out;
  2448. }
  2449. if (!auth_stratum(pool))
  2450. {
  2451. ret = false;
  2452. goto out;
  2453. }
  2454. out:
  2455. mutex_unlock(&pool->pool_test_lock);
  2456. return ret;
  2457. }
  2458. void dev_error_update(struct cgpu_info *dev, enum dev_reason reason)
  2459. {
  2460. dev->device_last_not_well = time(NULL);
  2461. cgtime(&dev->tv_device_last_not_well);
  2462. dev->device_not_well_reason = reason;
  2463. }
  2464. void dev_error(struct cgpu_info *dev, enum dev_reason reason)
  2465. {
  2466. dev_error_update(dev, reason);
  2467. switch (reason) {
  2468. case REASON_THREAD_FAIL_INIT:
  2469. dev->thread_fail_init_count++;
  2470. break;
  2471. case REASON_THREAD_ZERO_HASH:
  2472. dev->thread_zero_hash_count++;
  2473. break;
  2474. case REASON_THREAD_FAIL_QUEUE:
  2475. dev->thread_fail_queue_count++;
  2476. break;
  2477. case REASON_DEV_SICK_IDLE_60:
  2478. dev->dev_sick_idle_60_count++;
  2479. break;
  2480. case REASON_DEV_DEAD_IDLE_600:
  2481. dev->dev_dead_idle_600_count++;
  2482. break;
  2483. case REASON_DEV_NOSTART:
  2484. dev->dev_nostart_count++;
  2485. break;
  2486. case REASON_DEV_OVER_HEAT:
  2487. dev->dev_over_heat_count++;
  2488. break;
  2489. case REASON_DEV_THERMAL_CUTOFF:
  2490. dev->dev_thermal_cutoff_count++;
  2491. break;
  2492. case REASON_DEV_COMMS_ERROR:
  2493. dev->dev_comms_error_count++;
  2494. break;
  2495. case REASON_DEV_THROTTLE:
  2496. dev->dev_throttle_count++;
  2497. break;
  2498. }
  2499. }
  2500. /* Realloc an existing string to fit an extra string s, appending s to it. */
  2501. void *realloc_strcat(char *ptr, char *s)
  2502. {
  2503. size_t old = strlen(ptr), len = strlen(s);
  2504. char *ret;
  2505. if (!len)
  2506. return ptr;
  2507. len += old + 1;
  2508. align_len(&len);
  2509. ret = malloc(len);
  2510. if (unlikely(!ret))
  2511. quithere(1, "Failed to malloc");
  2512. sprintf(ret, "%s%s", ptr, s);
  2513. free(ptr);
  2514. return ret;
  2515. }
  2516. static
  2517. bool sanechars[] = {
  2518. false, false, false, false, false, false, false, false,
  2519. false, false, false, false, false, false, false, false,
  2520. false, false, false, false, false, false, false, false,
  2521. false, false, false, false, false, false, false, false,
  2522. false, false, false, false, false, false, false, false,
  2523. false, false, false, false, false, true , false, false,
  2524. true , true , true , true , true , true , true , true ,
  2525. true , true , false, false, false, false, false, false,
  2526. false, true , true , true , true , true , true , true ,
  2527. true , true , true , true , true , true , true , true ,
  2528. true , true , true , true , true , true , true , true ,
  2529. true , true , true , false, false, false, false, false,
  2530. false, true , true , true , true , true , true , true ,
  2531. true , true , true , true , true , true , true , true ,
  2532. true , true , true , true , true , true , true , true ,
  2533. true , true , true , false, false, false, false, false,
  2534. };
  2535. char *sanestr(char *o, char *s)
  2536. {
  2537. char *rv = o;
  2538. bool br = false;
  2539. for ( ; s[0]; ++s)
  2540. {
  2541. if (sanechars[s[0] & 0x7f])
  2542. {
  2543. if (br)
  2544. {
  2545. br = false;
  2546. if (s[0] >= '0' && s[0] <= '9')
  2547. (o++)[0] = '_';
  2548. }
  2549. (o++)[0] = s[0];
  2550. }
  2551. else
  2552. if (o != s && o[-1] >= '0' && o[-1] <= '9')
  2553. br = true;
  2554. }
  2555. o[0] = '\0';
  2556. return rv;
  2557. }
  2558. void RenameThread(const char* name)
  2559. {
  2560. #if defined(PR_SET_NAME)
  2561. // Only the first 15 characters are used (16 - NUL terminator)
  2562. prctl(PR_SET_NAME, name, 0, 0, 0);
  2563. #elif defined(__APPLE__)
  2564. pthread_setname_np(name);
  2565. #elif (defined(__FreeBSD__) || defined(__OpenBSD__))
  2566. pthread_set_name_np(pthread_self(), name);
  2567. #else
  2568. // Prevent warnings for unused parameters...
  2569. (void)name;
  2570. #endif
  2571. }
  2572. static pthread_key_t key_bfgtls;
  2573. struct bfgtls_data {
  2574. char *bfg_strerror_result;
  2575. size_t bfg_strerror_resultsz;
  2576. #ifdef WIN32
  2577. LPSTR bfg_strerror_socketresult;
  2578. #endif
  2579. #ifdef NEED_BFG_LOWL_VCOM
  2580. struct detectone_meta_info_t __detectone_meta_info;
  2581. #endif
  2582. enum bfg_probe_result_flags_values probe_result_flags;
  2583. };
  2584. static
  2585. struct bfgtls_data *get_bfgtls()
  2586. {
  2587. struct bfgtls_data *bfgtls = pthread_getspecific(key_bfgtls);
  2588. if (bfgtls)
  2589. return bfgtls;
  2590. void *p;
  2591. bfgtls = malloc(sizeof(*bfgtls));
  2592. if (!bfgtls)
  2593. quithere(1, "malloc bfgtls failed");
  2594. p = malloc(64);
  2595. if (!p)
  2596. quithere(1, "malloc bfg_strerror_result failed");
  2597. *bfgtls = (struct bfgtls_data){
  2598. .bfg_strerror_resultsz = 64,
  2599. .bfg_strerror_result = p,
  2600. };
  2601. if (pthread_setspecific(key_bfgtls, bfgtls))
  2602. quithere(1, "pthread_setspecific failed");
  2603. return bfgtls;
  2604. }
  2605. static
  2606. void bfgtls_free(void * const p)
  2607. {
  2608. struct bfgtls_data * const bfgtls = p;
  2609. free(bfgtls->bfg_strerror_result);
  2610. #ifdef WIN32
  2611. if (bfgtls->bfg_strerror_socketresult)
  2612. LocalFree(bfgtls->bfg_strerror_socketresult);
  2613. #endif
  2614. free(bfgtls);
  2615. }
  2616. #ifdef NEED_BFG_LOWL_VCOM
  2617. struct detectone_meta_info_t *_detectone_meta_info()
  2618. {
  2619. return &get_bfgtls()->__detectone_meta_info;
  2620. }
  2621. #endif
  2622. enum bfg_probe_result_flags_values *_bfg_probe_result_flags()
  2623. {
  2624. return &get_bfgtls()->probe_result_flags;
  2625. }
  2626. void bfg_init_threadlocal()
  2627. {
  2628. if (pthread_key_create(&key_bfgtls, bfgtls_free))
  2629. quithere(1, "pthread_key_create failed");
  2630. }
  2631. static
  2632. bool bfg_grow_buffer(char ** const bufp, size_t * const bufszp, size_t minimum)
  2633. {
  2634. if (minimum <= *bufszp)
  2635. return false;
  2636. while (minimum > *bufszp)
  2637. *bufszp = 2;
  2638. *bufp = realloc(*bufp, *bufszp);
  2639. if (unlikely(!*bufp))
  2640. quithere(1, "realloc failed");
  2641. return true;
  2642. }
  2643. static
  2644. const char *bfg_strcpy_growing_buffer(char ** const bufp, size_t * const bufszp, const char *src)
  2645. {
  2646. if (!src)
  2647. return NULL;
  2648. const size_t srcsz = strlen(src) + 1;
  2649. bfg_grow_buffer(bufp, bufszp, srcsz);
  2650. memcpy(*bufp, src, srcsz);
  2651. return *bufp;
  2652. }
  2653. // Guaranteed to always return some string (or quit)
  2654. const char *bfg_strerror(int e, enum bfg_strerror_type type)
  2655. {
  2656. static __maybe_unused pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  2657. struct bfgtls_data *bfgtls = get_bfgtls();
  2658. size_t * const bufszp = &bfgtls->bfg_strerror_resultsz;
  2659. char ** const bufp = &bfgtls->bfg_strerror_result;
  2660. const char *have = NULL;
  2661. switch (type) {
  2662. case BST_LIBUSB:
  2663. // NOTE: Nested preprocessor checks since the latter isn't defined at all without the former
  2664. #ifdef HAVE_LIBUSB
  2665. # if HAVE_DECL_LIBUSB_ERROR_NAME
  2666. // libusb makes no guarantees for thread-safety or persistence
  2667. mutex_lock(&mutex);
  2668. have = bfg_strcpy_growing_buffer(bufp, bufszp, libusb_error_name(e));
  2669. mutex_unlock(&mutex);
  2670. # endif
  2671. #endif
  2672. break;
  2673. case BST_SOCKET:
  2674. case BST_SYSTEM:
  2675. {
  2676. #ifdef WIN32
  2677. // Windows has a different namespace for system and socket errors
  2678. LPSTR *msg = &bfgtls->bfg_strerror_socketresult;
  2679. if (*msg)
  2680. LocalFree(*msg);
  2681. if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, 0, e, 0, (LPSTR)msg, 0, 0))
  2682. {
  2683. LPSTR msgp = *msg;
  2684. size_t n = strlen(msgp);
  2685. while (isCspace(msgp[--n]))
  2686. msgp[n] = '\0';
  2687. return *msg;
  2688. }
  2689. *msg = NULL;
  2690. break;
  2691. #endif
  2692. }
  2693. // Fallthru on non-WIN32
  2694. case BST_ERRNO:
  2695. {
  2696. #ifdef __STRERROR_S_WORKS
  2697. // FIXME: Not sure how to get this on MingW64
  2698. retry:
  2699. if (likely(!strerror_s(*bufp, *bufszp, e)))
  2700. {
  2701. if (bfg_grow_buffer(bufp, bufszp, strlen(*bufp) + 2))
  2702. goto retry;
  2703. return *bufp;
  2704. }
  2705. // TODO: XSI strerror_r
  2706. // TODO: GNU strerror_r
  2707. #else
  2708. mutex_lock(&mutex);
  2709. have = bfg_strcpy_growing_buffer(bufp, bufszp, strerror(e));
  2710. mutex_unlock(&mutex);
  2711. #endif
  2712. }
  2713. }
  2714. if (have)
  2715. return *bufp;
  2716. // Failback: Stringify the number
  2717. static const char fmt[] = "%s error #%d", *typestr;
  2718. switch (type) {
  2719. case BST_ERRNO:
  2720. typestr = "System";
  2721. break;
  2722. case BST_SOCKET:
  2723. typestr = "Socket";
  2724. break;
  2725. case BST_LIBUSB:
  2726. typestr = "libusb";
  2727. break;
  2728. default:
  2729. typestr = "Unexpected";
  2730. }
  2731. int sz = snprintf((char*)bfgtls, 0, fmt, typestr, e) + 1;
  2732. bfg_grow_buffer(bufp, bufszp, sz);
  2733. sprintf(*bufp, fmt, typestr, e);
  2734. return *bufp;
  2735. }
  2736. void notifier_init(notifier_t pipefd)
  2737. {
  2738. #ifdef WIN32
  2739. #define WindowsErrorStr(e) bfg_strerror(e, BST_SOCKET)
  2740. SOCKET listener, connecter, acceptor;
  2741. listener = socket(AF_INET, SOCK_STREAM, 0);
  2742. if (listener == INVALID_SOCKET)
  2743. quit(1, "Failed to create listener socket"IN_FMT_FFL": %s",
  2744. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2745. connecter = socket(AF_INET, SOCK_STREAM, 0);
  2746. if (connecter == INVALID_SOCKET)
  2747. quit(1, "Failed to create connect socket"IN_FMT_FFL": %s",
  2748. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2749. struct sockaddr_in inaddr = {
  2750. .sin_family = AF_INET,
  2751. .sin_addr = {
  2752. .s_addr = htonl(INADDR_LOOPBACK),
  2753. },
  2754. .sin_port = 0,
  2755. };
  2756. {
  2757. static const int reuse = 1;
  2758. setsockopt(listener, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuse, sizeof(reuse));
  2759. }
  2760. if (bind(listener, (struct sockaddr*)&inaddr, sizeof(inaddr)) == SOCKET_ERROR)
  2761. quit(1, "Failed to bind listener socket"IN_FMT_FFL": %s",
  2762. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2763. socklen_t inaddr_sz = sizeof(inaddr);
  2764. if (getsockname(listener, (struct sockaddr*)&inaddr, &inaddr_sz) == SOCKET_ERROR)
  2765. quit(1, "Failed to getsockname"IN_FMT_FFL": %s",
  2766. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2767. if (listen(listener, 1) == SOCKET_ERROR)
  2768. quit(1, "Failed to listen"IN_FMT_FFL": %s",
  2769. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2770. inaddr.sin_family = AF_INET;
  2771. inaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
  2772. if (connect(connecter, (struct sockaddr*)&inaddr, inaddr_sz) == SOCKET_ERROR)
  2773. quit(1, "Failed to connect"IN_FMT_FFL": %s",
  2774. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2775. acceptor = accept(listener, NULL, NULL);
  2776. if (acceptor == INVALID_SOCKET)
  2777. quit(1, "Failed to accept"IN_FMT_FFL": %s",
  2778. __FILE__, __func__, __LINE__, WindowsErrorStr(WSAGetLastError()));
  2779. closesocket(listener);
  2780. pipefd[0] = connecter;
  2781. pipefd[1] = acceptor;
  2782. #else
  2783. if (pipe(pipefd))
  2784. quithere(1, "Failed to create pipe");
  2785. #endif
  2786. }
  2787. void *bfg_slurp_file(void * const bufp, size_t bufsz, const char * const filename)
  2788. {
  2789. char *buf = bufp;
  2790. FILE * const F = fopen(filename, "r");
  2791. if (!F)
  2792. goto err;
  2793. if (!buf)
  2794. {
  2795. fseek(F, 0, SEEK_END);
  2796. const long filesz = ftell(F);
  2797. if (unlikely(filesz < 0))
  2798. {
  2799. fclose(F);
  2800. goto err;
  2801. }
  2802. rewind(F);
  2803. bufsz = filesz + 1;
  2804. buf = malloc(bufsz);
  2805. }
  2806. const size_t rsz = fread(buf, 1, bufsz - 1, F);
  2807. fclose(F);
  2808. buf[rsz] = '\0';
  2809. return buf;
  2810. err:
  2811. if (buf)
  2812. buf[0] = '\0';
  2813. return NULL;
  2814. }
  2815. void notifier_wake(notifier_t fd)
  2816. {
  2817. if (fd[1] == INVSOCK)
  2818. return;
  2819. if (1 !=
  2820. #ifdef WIN32
  2821. send(fd[1], "\0", 1, 0)
  2822. #else
  2823. write(fd[1], "\0", 1)
  2824. #endif
  2825. )
  2826. applog(LOG_WARNING, "Error trying to wake notifier");
  2827. }
  2828. void notifier_read(notifier_t fd)
  2829. {
  2830. char buf[0x10];
  2831. #ifdef WIN32
  2832. IGNORE_RETURN_VALUE(recv(fd[0], buf, sizeof(buf), 0));
  2833. #else
  2834. IGNORE_RETURN_VALUE(read(fd[0], buf, sizeof(buf)));
  2835. #endif
  2836. }
  2837. void notifier_init_invalid(notifier_t fd)
  2838. {
  2839. fd[0] = fd[1] = INVSOCK;
  2840. }
  2841. void notifier_destroy(notifier_t fd)
  2842. {
  2843. #ifdef WIN32
  2844. closesocket(fd[0]);
  2845. closesocket(fd[1]);
  2846. #else
  2847. close(fd[0]);
  2848. close(fd[1]);
  2849. #endif
  2850. fd[0] = fd[1] = INVSOCK;
  2851. }
  2852. void _bytes_alloc_failure(size_t sz)
  2853. {
  2854. quit(1, "bytes_resize failed to allocate %lu bytes", (unsigned long)sz);
  2855. }
  2856. char *trimmed_strdup(const char *s)
  2857. {
  2858. size_t n;
  2859. char *c;
  2860. while (isspace(s[0]))
  2861. ++s;
  2862. n = strlen(s) - 1;
  2863. while (isspace(s[n]))
  2864. --n;
  2865. ++n;
  2866. c = malloc(n + 1);
  2867. c[n] = '\0';
  2868. memcpy(c, s, n);
  2869. return c;
  2870. }
  2871. void *cmd_thread(void *cmdp)
  2872. {
  2873. const char *cmd = cmdp;
  2874. applog(LOG_DEBUG, "Executing command: %s", cmd);
  2875. int rc = system(cmd);
  2876. if (rc)
  2877. applog(LOG_WARNING, "Command returned %d exit code: %s", rc, cmd);
  2878. return NULL;
  2879. }
  2880. void run_cmd(const char *cmd)
  2881. {
  2882. if (!cmd)
  2883. return;
  2884. pthread_t pth;
  2885. pthread_create(&pth, NULL, cmd_thread, (void*)cmd);
  2886. }
  2887. uint8_t crc5usb(unsigned char *ptr, uint8_t len)
  2888. {
  2889. uint8_t i, j, k;
  2890. uint8_t crc = 0x1f;
  2891. uint8_t crcin[5] = {1, 1, 1, 1, 1};
  2892. uint8_t crcout[5] = {1, 1, 1, 1, 1};
  2893. uint8_t din = 0;
  2894. j = 0x80;
  2895. k = 0;
  2896. for (i = 0; i < len; i++)
  2897. {
  2898. if (*ptr & j)
  2899. din = 1;
  2900. else
  2901. din = 0;
  2902. crcout[0] = crcin[4] ^ din;
  2903. crcout[1] = crcin[0];
  2904. crcout[2] = crcin[1] ^ crcin[4] ^ din;
  2905. crcout[3] = crcin[2];
  2906. crcout[4] = crcin[3];
  2907. j = j >> 1;
  2908. k++;
  2909. if (k == 8)
  2910. {
  2911. j = 0x80;
  2912. k = 0;
  2913. ptr++;
  2914. }
  2915. memcpy(crcin, crcout, 5);
  2916. }
  2917. crc = 0;
  2918. if(crcin[4])
  2919. crc |= 0x10;
  2920. if(crcin[3])
  2921. crc |= 0x08;
  2922. if(crcin[2])
  2923. crc |= 0x04;
  2924. if(crcin[1])
  2925. crc |= 0x02;
  2926. if(crcin[0])
  2927. crc |= 0x01;
  2928. return crc;
  2929. }
  2930. static uint8_t _crc8ccitt_table[0x100];
  2931. void bfg_init_checksums(void)
  2932. {
  2933. for (int i = 0; i < 0x100; ++i)
  2934. {
  2935. uint8_t crc = i;
  2936. for (int j = 0; j < 8; ++j)
  2937. crc = (crc << 1) ^ ((crc & 0x80) ? 7 : 0);
  2938. _crc8ccitt_table[i] = crc & 0xff;
  2939. }
  2940. }
  2941. uint8_t crc8ccitt(const void * const buf, const size_t buflen)
  2942. {
  2943. const uint8_t *p = buf;
  2944. uint8_t crc = 0xff;
  2945. for (int i = 0; i < buflen; ++i)
  2946. crc = _crc8ccitt_table[crc ^ *p++];
  2947. return crc;
  2948. }