api.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399
  1. /*
  2. * Copyright 2011-2012 Andrew Smith
  3. * Copyright 2011-2012 Con Kolivas
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the Free
  7. * Software Foundation; either version 3 of the License, or (at your option)
  8. * any later version. See COPYING for more details.
  9. *
  10. * Note: the code always includes GPU support even if there are no GPUs
  11. * this simplifies handling multiple other device code being included
  12. * depending on compile options
  13. */
  14. #include "config.h"
  15. #include <stdio.h>
  16. #include <ctype.h>
  17. #include <stdlib.h>
  18. #include <string.h>
  19. #include <stdbool.h>
  20. #include <stdint.h>
  21. #include <unistd.h>
  22. #include <sys/types.h>
  23. #include "compat.h"
  24. #include "miner.h"
  25. #include "driver-cpu.h" /* for algo_names[], TODO: re-factor dependency */
  26. #if defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_ZTEX) || defined(USE_MODMINER)
  27. #define HAVE_AN_FPGA 1
  28. #endif
  29. #if defined(unix) || defined(__APPLE__)
  30. #include <errno.h>
  31. #include <sys/socket.h>
  32. #include <netinet/in.h>
  33. #include <arpa/inet.h>
  34. #define SOCKETTYPE int
  35. #define SOCKETFAIL(a) ((a) < 0)
  36. #define INVSOCK -1
  37. #define INVINETADDR -1
  38. #define CLOSESOCKET close
  39. #define SOCKERRMSG strerror(errno)
  40. #endif
  41. #ifdef WIN32
  42. #include <ws2tcpip.h>
  43. #include <winsock2.h>
  44. #define SOCKETTYPE SOCKET
  45. #define SOCKETFAIL(a) ((a) == SOCKET_ERROR)
  46. #define INVSOCK INVALID_SOCKET
  47. #define INVINETADDR INADDR_NONE
  48. #define CLOSESOCKET closesocket
  49. static char WSAbuf[1024];
  50. struct WSAERRORS {
  51. int id;
  52. char *code;
  53. } WSAErrors[] = {
  54. { 0, "No error" },
  55. { WSAEINTR, "Interrupted system call" },
  56. { WSAEBADF, "Bad file number" },
  57. { WSAEACCES, "Permission denied" },
  58. { WSAEFAULT, "Bad address" },
  59. { WSAEINVAL, "Invalid argument" },
  60. { WSAEMFILE, "Too many open sockets" },
  61. { WSAEWOULDBLOCK, "Operation would block" },
  62. { WSAEINPROGRESS, "Operation now in progress" },
  63. { WSAEALREADY, "Operation already in progress" },
  64. { WSAENOTSOCK, "Socket operation on non-socket" },
  65. { WSAEDESTADDRREQ, "Destination address required" },
  66. { WSAEMSGSIZE, "Message too long" },
  67. { WSAEPROTOTYPE, "Protocol wrong type for socket" },
  68. { WSAENOPROTOOPT, "Bad protocol option" },
  69. { WSAEPROTONOSUPPORT, "Protocol not supported" },
  70. { WSAESOCKTNOSUPPORT, "Socket type not supported" },
  71. { WSAEOPNOTSUPP, "Operation not supported on socket" },
  72. { WSAEPFNOSUPPORT, "Protocol family not supported" },
  73. { WSAEAFNOSUPPORT, "Address family not supported" },
  74. { WSAEADDRINUSE, "Address already in use" },
  75. { WSAEADDRNOTAVAIL, "Can't assign requested address" },
  76. { WSAENETDOWN, "Network is down" },
  77. { WSAENETUNREACH, "Network is unreachable" },
  78. { WSAENETRESET, "Net connection reset" },
  79. { WSAECONNABORTED, "Software caused connection abort" },
  80. { WSAECONNRESET, "Connection reset by peer" },
  81. { WSAENOBUFS, "No buffer space available" },
  82. { WSAEISCONN, "Socket is already connected" },
  83. { WSAENOTCONN, "Socket is not connected" },
  84. { WSAESHUTDOWN, "Can't send after socket shutdown" },
  85. { WSAETOOMANYREFS, "Too many references, can't splice" },
  86. { WSAETIMEDOUT, "Connection timed out" },
  87. { WSAECONNREFUSED, "Connection refused" },
  88. { WSAELOOP, "Too many levels of symbolic links" },
  89. { WSAENAMETOOLONG, "File name too long" },
  90. { WSAEHOSTDOWN, "Host is down" },
  91. { WSAEHOSTUNREACH, "No route to host" },
  92. { WSAENOTEMPTY, "Directory not empty" },
  93. { WSAEPROCLIM, "Too many processes" },
  94. { WSAEUSERS, "Too many users" },
  95. { WSAEDQUOT, "Disc quota exceeded" },
  96. { WSAESTALE, "Stale NFS file handle" },
  97. { WSAEREMOTE, "Too many levels of remote in path" },
  98. { WSASYSNOTREADY, "Network system is unavailable" },
  99. { WSAVERNOTSUPPORTED, "Winsock version out of range" },
  100. { WSANOTINITIALISED, "WSAStartup not yet called" },
  101. { WSAEDISCON, "Graceful shutdown in progress" },
  102. { WSAHOST_NOT_FOUND, "Host not found" },
  103. { WSANO_DATA, "No host data of that type was found" },
  104. { -1, "Unknown error code" }
  105. };
  106. static char *WSAErrorMsg()
  107. {
  108. int i;
  109. int id = WSAGetLastError();
  110. /* Assume none of them are actually -1 */
  111. for (i = 0; WSAErrors[i].id != -1; i++)
  112. if (WSAErrors[i].id == id)
  113. break;
  114. sprintf(WSAbuf, "Socket Error: (%d) %s", id, WSAErrors[i].code);
  115. return &(WSAbuf[0]);
  116. }
  117. #define SOCKERRMSG WSAErrorMsg()
  118. #ifndef SHUT_RDWR
  119. #define SHUT_RDWR SD_BOTH
  120. #endif
  121. #ifndef in_addr_t
  122. #define in_addr_t uint32_t
  123. #endif
  124. #endif
  125. // Big enough for largest API request
  126. // though a PC with 100s of PGAs/CPUs may exceed the size ...
  127. // Current code assumes it can socket send this size also
  128. #define MYBUFSIZ 65432 // TODO: intercept before it's exceeded
  129. // BUFSIZ varies on Windows and Linux
  130. #define TMPBUFSIZ 8192
  131. // Number of requests to queue - normally would be small
  132. // However lots of PGA's may mean more
  133. #define QUEUE 100
  134. static char *io_buffer = NULL;
  135. static char *msg_buffer = NULL;
  136. static SOCKETTYPE sock = INVSOCK;
  137. static const char *UNAVAILABLE = " - API will not be available";
  138. static const char *INVAPIGROUPS = "Invalid --api-groups parameter";
  139. static const char *BLANK = "";
  140. static const char *COMMA = ",";
  141. static const char SEPARATOR = '|';
  142. #define SEPSTR "|"
  143. static const char GPUSEP = ',';
  144. static const char *APIVERSION = "1.15";
  145. static const char *DEAD = "Dead";
  146. static const char *SICK = "Sick";
  147. static const char *NOSTART = "NoStart";
  148. static const char *INIT = "Initialising";
  149. static const char *DISABLED = "Disabled";
  150. static const char *ALIVE = "Alive";
  151. static const char *REJECTING = "Rejecting";
  152. static const char *UNKNOWN = "Unknown";
  153. #define _DYNAMIC "D"
  154. static const char *DYNAMIC = _DYNAMIC;
  155. static const char *YES = "Y";
  156. static const char *NO = "N";
  157. static const char *NULLSTR = "(null)";
  158. static const char *DEVICECODE = ""
  159. #ifdef HAVE_OPENCL
  160. "GPU "
  161. #endif
  162. #ifdef USE_BITFORCE
  163. "BFL "
  164. #endif
  165. #ifdef USE_ICARUS
  166. "ICA "
  167. #endif
  168. #ifdef USE_ZTEX
  169. "ZTX "
  170. #endif
  171. #ifdef USE_MODMINER
  172. "MMQ "
  173. #endif
  174. #ifdef WANT_CPUMINE
  175. "CPU "
  176. #endif
  177. "";
  178. static const char *OSINFO =
  179. #if defined(__linux)
  180. "Linux";
  181. #else
  182. #if defined(__APPLE__)
  183. "Apple";
  184. #else
  185. #if defined (WIN32)
  186. "Windows";
  187. #else
  188. #if defined(unix)
  189. "Unix";
  190. #else
  191. "Unknown";
  192. #endif
  193. #endif
  194. #endif
  195. #endif
  196. #define _DEVS "DEVS"
  197. #define _POOLS "POOLS"
  198. #define _SUMMARY "SUMMARY"
  199. #define _STATUS "STATUS"
  200. #define _VERSION "VERSION"
  201. #define _MINECON "CONFIG"
  202. #define _GPU "GPU"
  203. #ifdef HAVE_AN_FPGA
  204. #define _PGA "PGA"
  205. #endif
  206. #ifdef WANT_CPUMINE
  207. #define _CPU "CPU"
  208. #endif
  209. #define _GPUS "GPUS"
  210. #define _PGAS "PGAS"
  211. #define _CPUS "CPUS"
  212. #define _NOTIFY "NOTIFY"
  213. #define _DEVDETAILS "DEVDETAILS"
  214. #define _BYE "BYE"
  215. #define _RESTART "RESTART"
  216. #define _MINESTATS "STATS"
  217. #define _CHECK "CHECK"
  218. static const char ISJSON = '{';
  219. #define JSON0 "{"
  220. #define JSON1 "\""
  221. #define JSON2 "\":["
  222. #define JSON3 "]"
  223. #define JSON4 ",\"id\":1"
  224. #define JSON5 "}"
  225. #define JSON_START JSON0
  226. #define JSON_DEVS JSON1 _DEVS JSON2
  227. #define JSON_POOLS JSON1 _POOLS JSON2
  228. #define JSON_SUMMARY JSON1 _SUMMARY JSON2
  229. #define JSON_STATUS JSON1 _STATUS JSON2
  230. #define JSON_VERSION JSON1 _VERSION JSON2
  231. #define JSON_MINECON JSON1 _MINECON JSON2
  232. #define JSON_GPU JSON1 _GPU JSON2
  233. #ifdef HAVE_AN_FPGA
  234. #define JSON_PGA JSON1 _PGA JSON2
  235. #endif
  236. #ifdef WANT_CPUMINE
  237. #define JSON_CPU JSON1 _CPU JSON2
  238. #endif
  239. #define JSON_GPUS JSON1 _GPUS JSON2
  240. #define JSON_PGAS JSON1 _PGAS JSON2
  241. #define JSON_CPUS JSON1 _CPUS JSON2
  242. #define JSON_NOTIFY JSON1 _NOTIFY JSON2
  243. #define JSON_DEVDETAILS JSON1 _DEVDETAILS JSON2
  244. #define JSON_BYE JSON1 _BYE JSON1
  245. #define JSON_RESTART JSON1 _RESTART JSON1
  246. #define JSON_CLOSE JSON3
  247. #define JSON_MINESTATS JSON1 _MINESTATS JSON2
  248. #define JSON_CHECK JSON1 _CHECK JSON2
  249. #define JSON_END JSON4 JSON5
  250. static const char *JSON_COMMAND = "command";
  251. static const char *JSON_PARAMETER = "parameter";
  252. #define MSG_INVGPU 1
  253. #define MSG_ALRENA 2
  254. #define MSG_ALRDIS 3
  255. #define MSG_GPUMRE 4
  256. #define MSG_GPUREN 5
  257. #define MSG_GPUNON 6
  258. #define MSG_POOL 7
  259. #define MSG_NOPOOL 8
  260. #define MSG_DEVS 9
  261. #define MSG_NODEVS 10
  262. #define MSG_SUMM 11
  263. #define MSG_GPUDIS 12
  264. #define MSG_GPUREI 13
  265. #define MSG_INVCMD 14
  266. #define MSG_MISID 15
  267. #define MSG_GPUDEV 17
  268. #ifdef WANT_CPUMINE
  269. #define MSG_CPUNON 16
  270. #define MSG_CPUDEV 18
  271. #define MSG_INVCPU 19
  272. #endif
  273. #define MSG_NUMGPU 20
  274. #define MSG_NUMCPU 21
  275. #define MSG_VERSION 22
  276. #define MSG_INVJSON 23
  277. #define MSG_MISCMD 24
  278. #define MSG_MISPID 25
  279. #define MSG_INVPID 26
  280. #define MSG_SWITCHP 27
  281. #define MSG_MISVAL 28
  282. #define MSG_NOADL 29
  283. #define MSG_NOGPUADL 30
  284. #define MSG_INVINT 31
  285. #define MSG_GPUINT 32
  286. #define MSG_MINECON 33
  287. #define MSG_GPUMERR 34
  288. #define MSG_GPUMEM 35
  289. #define MSG_GPUEERR 36
  290. #define MSG_GPUENG 37
  291. #define MSG_GPUVERR 38
  292. #define MSG_GPUVDDC 39
  293. #define MSG_GPUFERR 40
  294. #define MSG_GPUFAN 41
  295. #define MSG_MISFN 42
  296. #define MSG_BADFN 43
  297. #define MSG_SAVED 44
  298. #define MSG_ACCDENY 45
  299. #define MSG_ACCOK 46
  300. #define MSG_ENAPOOL 47
  301. #define MSG_DISPOOL 48
  302. #define MSG_ALRENAP 49
  303. #define MSG_ALRDISP 50
  304. #define MSG_DISLASTP 51
  305. #define MSG_MISPDP 52
  306. #define MSG_INVPDP 53
  307. #define MSG_TOOMANYP 54
  308. #define MSG_ADDPOOL 55
  309. #ifdef HAVE_AN_FPGA
  310. #define MSG_PGANON 56
  311. #define MSG_PGADEV 57
  312. #define MSG_INVPGA 58
  313. #endif
  314. #define MSG_NUMPGA 59
  315. #define MSG_NOTIFY 60
  316. #ifdef HAVE_AN_FPGA
  317. #define MSG_PGALRENA 61
  318. #define MSG_PGALRDIS 62
  319. #define MSG_PGAENA 63
  320. #define MSG_PGADIS 64
  321. #define MSG_PGAUNW 65
  322. #endif
  323. #define MSG_REMLASTP 66
  324. #define MSG_ACTPOOL 67
  325. #define MSG_REMPOOL 68
  326. #define MSG_DEVDETAILS 69
  327. #define MSG_MINESTATS 70
  328. #define MSG_MISCHK 71
  329. #define MSG_CHECK 72
  330. #define MSG_POOLPRIO 73
  331. #define MSG_DUPPID 74
  332. enum code_severity {
  333. SEVERITY_ERR,
  334. SEVERITY_WARN,
  335. SEVERITY_INFO,
  336. SEVERITY_SUCC,
  337. SEVERITY_FAIL
  338. };
  339. enum code_parameters {
  340. PARAM_GPU,
  341. PARAM_PGA,
  342. PARAM_CPU,
  343. PARAM_PID,
  344. PARAM_GPUMAX,
  345. PARAM_PGAMAX,
  346. PARAM_CPUMAX,
  347. PARAM_PMAX,
  348. PARAM_POOLMAX,
  349. // Single generic case: have the code resolve it - see below
  350. PARAM_DMAX,
  351. PARAM_CMD,
  352. PARAM_POOL,
  353. PARAM_STR,
  354. PARAM_BOTH,
  355. PARAM_NONE
  356. };
  357. struct CODES {
  358. const enum code_severity severity;
  359. const int code;
  360. const enum code_parameters params;
  361. const char *description;
  362. } codes[] = {
  363. #ifdef HAVE_OPENCL
  364. { SEVERITY_ERR, MSG_INVGPU, PARAM_GPUMAX, "Invalid GPU id %d - range is 0 - %d" },
  365. { SEVERITY_INFO, MSG_ALRENA, PARAM_GPU, "GPU %d already enabled" },
  366. { SEVERITY_INFO, MSG_ALRDIS, PARAM_GPU, "GPU %d already disabled" },
  367. { SEVERITY_WARN, MSG_GPUMRE, PARAM_GPU, "GPU %d must be restarted first" },
  368. { SEVERITY_INFO, MSG_GPUREN, PARAM_GPU, "GPU %d sent enable message" },
  369. #endif
  370. { SEVERITY_ERR, MSG_GPUNON, PARAM_NONE, "No GPUs" },
  371. { SEVERITY_SUCC, MSG_POOL, PARAM_PMAX, "%d Pool(s)" },
  372. { SEVERITY_ERR, MSG_NOPOOL, PARAM_NONE, "No pools" },
  373. { SEVERITY_SUCC, MSG_DEVS, PARAM_DMAX,
  374. #ifdef HAVE_OPENCL
  375. "%d GPU(s)"
  376. #endif
  377. #if defined(HAVE_AN_FPGA) && defined(HAVE_OPENCL)
  378. " - "
  379. #endif
  380. #ifdef HAVE_AN_FPGA
  381. "%d PGA(s)"
  382. #endif
  383. #if defined(WANT_CPUMINE) && (defined(HAVE_OPENCL) || defined(HAVE_AN_FPGA))
  384. " - "
  385. #endif
  386. #ifdef WANT_CPUMINE
  387. "%d CPU(s)"
  388. #endif
  389. },
  390. { SEVERITY_ERR, MSG_NODEVS, PARAM_NONE, "No GPUs"
  391. #ifdef HAVE_AN_FPGA
  392. "/PGAs"
  393. #endif
  394. #ifdef WANT_CPUMINE
  395. "/CPUs"
  396. #endif
  397. },
  398. { SEVERITY_SUCC, MSG_SUMM, PARAM_NONE, "Summary" },
  399. #ifdef HAVE_OPENCL
  400. { SEVERITY_INFO, MSG_GPUDIS, PARAM_GPU, "GPU %d set disable flag" },
  401. { SEVERITY_INFO, MSG_GPUREI, PARAM_GPU, "GPU %d restart attempted" },
  402. #endif
  403. { SEVERITY_ERR, MSG_INVCMD, PARAM_NONE, "Invalid command" },
  404. { SEVERITY_ERR, MSG_MISID, PARAM_NONE, "Missing device id parameter" },
  405. #ifdef HAVE_OPENCL
  406. { SEVERITY_SUCC, MSG_GPUDEV, PARAM_GPU, "GPU%d" },
  407. #endif
  408. #ifdef HAVE_AN_FPGA
  409. { SEVERITY_ERR, MSG_PGANON, PARAM_NONE, "No PGAs" },
  410. { SEVERITY_SUCC, MSG_PGADEV, PARAM_PGA, "PGA%d" },
  411. { SEVERITY_ERR, MSG_INVPGA, PARAM_PGAMAX, "Invalid PGA id %d - range is 0 - %d" },
  412. { SEVERITY_INFO, MSG_PGALRENA,PARAM_PGA, "PGA %d already enabled" },
  413. { SEVERITY_INFO, MSG_PGALRDIS,PARAM_PGA, "PGA %d already disabled" },
  414. { SEVERITY_INFO, MSG_PGAENA, PARAM_PGA, "PGA %d sent enable message" },
  415. { SEVERITY_INFO, MSG_PGADIS, PARAM_PGA, "PGA %d set disable flag" },
  416. { SEVERITY_ERR, MSG_PGAUNW, PARAM_PGA, "PGA %d is not flagged WELL, cannot enable" },
  417. #endif
  418. #ifdef WANT_CPUMINE
  419. { SEVERITY_ERR, MSG_CPUNON, PARAM_NONE, "No CPUs" },
  420. { SEVERITY_SUCC, MSG_CPUDEV, PARAM_CPU, "CPU%d" },
  421. { SEVERITY_ERR, MSG_INVCPU, PARAM_CPUMAX, "Invalid CPU id %d - range is 0 - %d" },
  422. #endif
  423. { SEVERITY_SUCC, MSG_NUMGPU, PARAM_NONE, "GPU count" },
  424. { SEVERITY_SUCC, MSG_NUMPGA, PARAM_NONE, "PGA count" },
  425. { SEVERITY_SUCC, MSG_NUMCPU, PARAM_NONE, "CPU count" },
  426. { SEVERITY_SUCC, MSG_VERSION, PARAM_NONE, "CGMiner versions" },
  427. { SEVERITY_ERR, MSG_INVJSON, PARAM_NONE, "Invalid JSON" },
  428. { SEVERITY_ERR, MSG_MISCMD, PARAM_CMD, "Missing JSON '%s'" },
  429. { SEVERITY_ERR, MSG_MISPID, PARAM_NONE, "Missing pool id parameter" },
  430. { SEVERITY_ERR, MSG_INVPID, PARAM_POOLMAX, "Invalid pool id %d - range is 0 - %d" },
  431. { SEVERITY_SUCC, MSG_SWITCHP, PARAM_POOL, "Switching to pool %d:'%s'" },
  432. { SEVERITY_ERR, MSG_MISVAL, PARAM_NONE, "Missing comma after GPU number" },
  433. { SEVERITY_ERR, MSG_NOADL, PARAM_NONE, "ADL is not available" },
  434. { SEVERITY_ERR, MSG_NOGPUADL,PARAM_GPU, "GPU %d does not have ADL" },
  435. { SEVERITY_ERR, MSG_INVINT, PARAM_STR, "Invalid intensity (%s) - must be '" _DYNAMIC "' or range " _MIN_INTENSITY_STR " - " _MAX_INTENSITY_STR },
  436. { SEVERITY_INFO, MSG_GPUINT, PARAM_BOTH, "GPU %d set new intensity to %s" },
  437. { SEVERITY_SUCC, MSG_MINECON, PARAM_NONE, "CGMiner config" },
  438. #ifdef HAVE_OPENCL
  439. { SEVERITY_ERR, MSG_GPUMERR, PARAM_BOTH, "Setting GPU %d memoryclock to (%s) reported failure" },
  440. { SEVERITY_SUCC, MSG_GPUMEM, PARAM_BOTH, "Setting GPU %d memoryclock to (%s) reported success" },
  441. { SEVERITY_ERR, MSG_GPUEERR, PARAM_BOTH, "Setting GPU %d clock to (%s) reported failure" },
  442. { SEVERITY_SUCC, MSG_GPUENG, PARAM_BOTH, "Setting GPU %d clock to (%s) reported success" },
  443. { SEVERITY_ERR, MSG_GPUVERR, PARAM_BOTH, "Setting GPU %d vddc to (%s) reported failure" },
  444. { SEVERITY_SUCC, MSG_GPUVDDC, PARAM_BOTH, "Setting GPU %d vddc to (%s) reported success" },
  445. { SEVERITY_ERR, MSG_GPUFERR, PARAM_BOTH, "Setting GPU %d fan to (%s) reported failure" },
  446. { SEVERITY_SUCC, MSG_GPUFAN, PARAM_BOTH, "Setting GPU %d fan to (%s) reported success" },
  447. #endif
  448. { SEVERITY_ERR, MSG_MISFN, PARAM_NONE, "Missing save filename parameter" },
  449. { SEVERITY_ERR, MSG_BADFN, PARAM_STR, "Can't open or create save file '%s'" },
  450. { SEVERITY_SUCC, MSG_SAVED, PARAM_STR, "Configuration saved to file '%s'" },
  451. { SEVERITY_ERR, MSG_ACCDENY, PARAM_STR, "Access denied to '%s' command" },
  452. { SEVERITY_SUCC, MSG_ACCOK, PARAM_NONE, "Privileged access OK" },
  453. { SEVERITY_SUCC, MSG_ENAPOOL, PARAM_POOL, "Enabling pool %d:'%s'" },
  454. { SEVERITY_SUCC, MSG_POOLPRIO,PARAM_NONE, "Changed pool priorities" },
  455. { SEVERITY_ERR, MSG_DUPPID, PARAM_PID, "Duplicate pool specified %d" },
  456. { SEVERITY_SUCC, MSG_DISPOOL, PARAM_POOL, "Disabling pool %d:'%s'" },
  457. { SEVERITY_INFO, MSG_ALRENAP, PARAM_POOL, "Pool %d:'%s' already enabled" },
  458. { SEVERITY_INFO, MSG_ALRDISP, PARAM_POOL, "Pool %d:'%s' already disabled" },
  459. { SEVERITY_ERR, MSG_DISLASTP,PARAM_POOL, "Cannot disable last active pool %d:'%s'" },
  460. { SEVERITY_ERR, MSG_MISPDP, PARAM_NONE, "Missing addpool details" },
  461. { SEVERITY_ERR, MSG_INVPDP, PARAM_STR, "Invalid addpool details '%s'" },
  462. { SEVERITY_ERR, MSG_TOOMANYP,PARAM_NONE, "Reached maximum number of pools (%d)" },
  463. { SEVERITY_SUCC, MSG_ADDPOOL, PARAM_STR, "Added pool '%s'" },
  464. { SEVERITY_ERR, MSG_REMLASTP,PARAM_POOL, "Cannot remove last pool %d:'%s'" },
  465. { SEVERITY_ERR, MSG_ACTPOOL, PARAM_POOL, "Cannot remove active pool %d:'%s'" },
  466. { SEVERITY_SUCC, MSG_REMPOOL, PARAM_BOTH, "Removed pool %d:'%s'" },
  467. { SEVERITY_SUCC, MSG_NOTIFY, PARAM_NONE, "Notify" },
  468. { SEVERITY_SUCC, MSG_DEVDETAILS,PARAM_NONE, "Device Details" },
  469. { SEVERITY_SUCC, MSG_MINESTATS,PARAM_NONE, "CGMiner stats" },
  470. { SEVERITY_ERR, MSG_MISCHK, PARAM_NONE, "Missing check cmd" },
  471. { SEVERITY_SUCC, MSG_CHECK, PARAM_NONE, "Check command" },
  472. { SEVERITY_FAIL, 0, 0, NULL }
  473. };
  474. static int my_thr_id = 0;
  475. static bool bye;
  476. static bool ping = true;
  477. // Used to control quit restart access to shutdown variables
  478. static pthread_mutex_t quit_restart_lock;
  479. static bool do_a_quit;
  480. static bool do_a_restart;
  481. static time_t when = 0; // when the request occurred
  482. struct IP4ACCESS {
  483. in_addr_t ip;
  484. in_addr_t mask;
  485. char group;
  486. };
  487. #define GROUP(g) (toupper(g))
  488. #define PRIVGROUP GROUP('W')
  489. #define NOPRIVGROUP GROUP('R')
  490. #define ISPRIVGROUP(g) (GROUP(g) == PRIVGROUP)
  491. #define GROUPOFFSET(g) (GROUP(g) - GROUP('A'))
  492. #define VALIDGROUP(g) (GROUP(g) >= GROUP('A') && GROUP(g) <= GROUP('Z'))
  493. #define COMMANDS(g) (apigroups[GROUPOFFSET(g)].commands)
  494. #define DEFINEDGROUP(g) (ISPRIVGROUP(g) || COMMANDS(g) != NULL)
  495. struct APIGROUPS {
  496. // This becomes a string like: "|cmd1|cmd2|cmd3|" so it's quick to search
  497. char *commands;
  498. } apigroups['Z' - 'A' + 1]; // only A=0 to Z=25 (R: noprivs, W: allprivs)
  499. static struct IP4ACCESS *ipaccess = NULL;
  500. static int ips = 0;
  501. #ifdef USE_BITFORCE
  502. extern struct device_api bitforce_api;
  503. #endif
  504. #ifdef USE_ICARUS
  505. extern struct device_api icarus_api;
  506. #endif
  507. #ifdef USE_ZTEX
  508. extern struct device_api ztex_api;
  509. #endif
  510. #ifdef USE_MODMINER
  511. extern struct device_api modminer_api;
  512. #endif
  513. // This is only called when expected to be needed (rarely)
  514. // i.e. strings outside of the codes control (input from the user)
  515. static char *escape_string(char *str, bool isjson)
  516. {
  517. char *buf, *ptr;
  518. int count;
  519. count = 0;
  520. for (ptr = str; *ptr; ptr++) {
  521. switch (*ptr) {
  522. case ',':
  523. case '|':
  524. case '=':
  525. if (!isjson)
  526. count++;
  527. break;
  528. case '"':
  529. if (isjson)
  530. count++;
  531. break;
  532. case '\\':
  533. count++;
  534. break;
  535. }
  536. }
  537. if (count == 0)
  538. return str;
  539. buf = malloc(strlen(str) + count + 1);
  540. if (unlikely(!buf))
  541. quit(1, "Failed to malloc escape buf");
  542. ptr = buf;
  543. while (*str)
  544. switch (*str) {
  545. case ',':
  546. case '|':
  547. case '=':
  548. if (!isjson)
  549. *(ptr++) = '\\';
  550. *(ptr++) = *(str++);
  551. break;
  552. case '"':
  553. if (isjson)
  554. *(ptr++) = '\\';
  555. *(ptr++) = *(str++);
  556. break;
  557. case '\\':
  558. *(ptr++) = '\\';
  559. *(ptr++) = *(str++);
  560. break;
  561. default:
  562. *(ptr++) = *(str++);
  563. break;
  564. }
  565. *ptr = '\0';
  566. return buf;
  567. }
  568. static struct api_data *api_add_extra(struct api_data *root, struct api_data *extra)
  569. {
  570. struct api_data *tmp;
  571. if (root) {
  572. if (extra) {
  573. // extra tail
  574. tmp = extra->prev;
  575. // extra prev = root tail
  576. extra->prev = root->prev;
  577. // root tail next = extra
  578. root->prev->next = extra;
  579. // extra tail next = root
  580. tmp->next = root;
  581. // root prev = extra tail
  582. root->prev = tmp;
  583. }
  584. } else
  585. root = extra;
  586. return root;
  587. }
  588. static struct api_data *api_add_data_full(struct api_data *root, char *name, enum api_data_type type, void *data, bool copy_data)
  589. {
  590. struct api_data *api_data;
  591. api_data = (struct api_data *)malloc(sizeof(struct api_data));
  592. api_data->name = name;
  593. api_data->type = type;
  594. if (root == NULL) {
  595. root = api_data;
  596. root->prev = root;
  597. root->next = root;
  598. }
  599. else {
  600. api_data->prev = root->prev;
  601. root->prev = api_data;
  602. api_data->next = root;
  603. api_data->prev->next = api_data;
  604. }
  605. api_data->data_was_malloc = copy_data;
  606. // Avoid crashing on bad data
  607. if (data == NULL) {
  608. api_data->type = type = API_CONST;
  609. data = (void *)NULLSTR;
  610. api_data->data_was_malloc = copy_data = false;
  611. }
  612. if (!copy_data)
  613. api_data->data = data;
  614. else
  615. switch(type) {
  616. case API_ESCAPE:
  617. case API_STRING:
  618. case API_CONST:
  619. api_data->data = (void *)malloc(strlen((char *)data) + 1);
  620. strcpy((char*)(api_data->data), (char *)data);
  621. break;
  622. case API_INT:
  623. api_data->data = (void *)malloc(sizeof(int));
  624. *((int *)(api_data->data)) = *((int *)data);
  625. break;
  626. case API_UINT:
  627. api_data->data = (void *)malloc(sizeof(unsigned int));
  628. *((unsigned int *)(api_data->data)) = *((unsigned int *)data);
  629. break;
  630. case API_UINT32:
  631. api_data->data = (void *)malloc(sizeof(uint32_t));
  632. *((uint32_t *)(api_data->data)) = *((uint32_t *)data);
  633. break;
  634. case API_UINT64:
  635. api_data->data = (void *)malloc(sizeof(uint64_t));
  636. *((uint64_t *)(api_data->data)) = *((uint64_t *)data);
  637. break;
  638. case API_DOUBLE:
  639. case API_ELAPSED:
  640. case API_MHS:
  641. case API_MHTOTAL:
  642. case API_UTILITY:
  643. case API_FREQ:
  644. case API_HS:
  645. api_data->data = (void *)malloc(sizeof(double));
  646. *((double *)(api_data->data)) = *((double *)data);
  647. break;
  648. case API_BOOL:
  649. api_data->data = (void *)malloc(sizeof(bool));
  650. *((bool *)(api_data->data)) = *((bool *)data);
  651. break;
  652. case API_TIMEVAL:
  653. api_data->data = (void *)malloc(sizeof(struct timeval));
  654. memcpy(api_data->data, data, sizeof(struct timeval));
  655. break;
  656. case API_TIME:
  657. api_data->data = (void *)malloc(sizeof(time_t));
  658. *(time_t *)(api_data->data) = *((time_t *)data);
  659. break;
  660. case API_VOLTS:
  661. case API_TEMP:
  662. api_data->data = (void *)malloc(sizeof(float));
  663. *((float *)(api_data->data)) = *((float *)data);
  664. break;
  665. default:
  666. applog(LOG_ERR, "API: unknown1 data type %d ignored", type);
  667. api_data->type = API_STRING;
  668. api_data->data_was_malloc = false;
  669. api_data->data = (void *)UNKNOWN;
  670. break;
  671. }
  672. return root;
  673. }
  674. struct api_data *api_add_escape(struct api_data *root, char *name, char *data, bool copy_data)
  675. {
  676. return api_add_data_full(root, name, API_ESCAPE, (void *)data, copy_data);
  677. }
  678. struct api_data *api_add_string(struct api_data *root, char *name, char *data, bool copy_data)
  679. {
  680. return api_add_data_full(root, name, API_STRING, (void *)data, copy_data);
  681. }
  682. struct api_data *api_add_const(struct api_data *root, char *name, const char *data, bool copy_data)
  683. {
  684. return api_add_data_full(root, name, API_CONST, (void *)data, copy_data);
  685. }
  686. struct api_data *api_add_int(struct api_data *root, char *name, int *data, bool copy_data)
  687. {
  688. return api_add_data_full(root, name, API_INT, (void *)data, copy_data);
  689. }
  690. struct api_data *api_add_uint(struct api_data *root, char *name, unsigned int *data, bool copy_data)
  691. {
  692. return api_add_data_full(root, name, API_UINT, (void *)data, copy_data);
  693. }
  694. struct api_data *api_add_uint32(struct api_data *root, char *name, uint32_t *data, bool copy_data)
  695. {
  696. return api_add_data_full(root, name, API_UINT32, (void *)data, copy_data);
  697. }
  698. struct api_data *api_add_uint64(struct api_data *root, char *name, uint64_t *data, bool copy_data)
  699. {
  700. return api_add_data_full(root, name, API_UINT64, (void *)data, copy_data);
  701. }
  702. struct api_data *api_add_double(struct api_data *root, char *name, double *data, bool copy_data)
  703. {
  704. return api_add_data_full(root, name, API_DOUBLE, (void *)data, copy_data);
  705. }
  706. struct api_data *api_add_elapsed(struct api_data *root, char *name, double *data, bool copy_data)
  707. {
  708. return api_add_data_full(root, name, API_ELAPSED, (void *)data, copy_data);
  709. }
  710. struct api_data *api_add_bool(struct api_data *root, char *name, bool *data, bool copy_data)
  711. {
  712. return api_add_data_full(root, name, API_BOOL, (void *)data, copy_data);
  713. }
  714. struct api_data *api_add_timeval(struct api_data *root, char *name, struct timeval *data, bool copy_data)
  715. {
  716. return api_add_data_full(root, name, API_TIMEVAL, (void *)data, copy_data);
  717. }
  718. struct api_data *api_add_time(struct api_data *root, char *name, time_t *data, bool copy_data)
  719. {
  720. return api_add_data_full(root, name, API_TIME, (void *)data, copy_data);
  721. }
  722. struct api_data *api_add_mhs(struct api_data *root, char *name, double *data, bool copy_data)
  723. {
  724. return api_add_data_full(root, name, API_MHS, (void *)data, copy_data);
  725. }
  726. struct api_data *api_add_mhtotal(struct api_data *root, char *name, double *data, bool copy_data)
  727. {
  728. return api_add_data_full(root, name, API_MHTOTAL, (void *)data, copy_data);
  729. }
  730. struct api_data *api_add_temp(struct api_data *root, char *name, float *data, bool copy_data)
  731. {
  732. return api_add_data_full(root, name, API_TEMP, (void *)data, copy_data);
  733. }
  734. struct api_data *api_add_utility(struct api_data *root, char *name, double *data, bool copy_data)
  735. {
  736. return api_add_data_full(root, name, API_UTILITY, (void *)data, copy_data);
  737. }
  738. struct api_data *api_add_freq(struct api_data *root, char *name, double *data, bool copy_data)
  739. {
  740. return api_add_data_full(root, name, API_FREQ, (void *)data, copy_data);
  741. }
  742. struct api_data *api_add_volts(struct api_data *root, char *name, float *data, bool copy_data)
  743. {
  744. return api_add_data_full(root, name, API_VOLTS, (void *)data, copy_data);
  745. }
  746. struct api_data *api_add_hs(struct api_data *root, char *name, double *data, bool copy_data)
  747. {
  748. return api_add_data_full(root, name, API_HS, (void *)data, copy_data);
  749. }
  750. static struct api_data *print_data(struct api_data *root, char *buf, bool isjson)
  751. {
  752. struct api_data *tmp;
  753. bool first = true;
  754. char *original, *escape;
  755. char *quote;
  756. if (isjson) {
  757. strcpy(buf, JSON0);
  758. buf = strchr(buf, '\0');
  759. quote = JSON1;
  760. } else
  761. quote = (char *)BLANK;
  762. while (root) {
  763. if (!first)
  764. *(buf++) = *COMMA;
  765. else
  766. first = false;
  767. sprintf(buf, "%s%s%s%s", quote, root->name, quote, isjson ? ":" : "=");
  768. buf = strchr(buf, '\0');
  769. switch(root->type) {
  770. case API_STRING:
  771. case API_CONST:
  772. sprintf(buf, "%s%s%s", quote, (char *)(root->data), quote);
  773. break;
  774. case API_ESCAPE:
  775. original = (char *)(root->data);
  776. escape = escape_string((char *)(root->data), isjson);
  777. sprintf(buf, "%s%s%s", quote, escape, quote);
  778. if (escape != original)
  779. free(escape);
  780. break;
  781. case API_INT:
  782. sprintf(buf, "%d", *((int *)(root->data)));
  783. break;
  784. case API_UINT:
  785. sprintf(buf, "%u", *((unsigned int *)(root->data)));
  786. break;
  787. case API_UINT32:
  788. sprintf(buf, "%"PRIu32, *((uint32_t *)(root->data)));
  789. break;
  790. case API_UINT64:
  791. sprintf(buf, "%"PRIu64, *((uint64_t *)(root->data)));
  792. break;
  793. case API_TIME:
  794. sprintf(buf, "%lu", *((unsigned long *)(root->data)));
  795. break;
  796. case API_DOUBLE:
  797. sprintf(buf, "%f", *((double *)(root->data)));
  798. break;
  799. case API_ELAPSED:
  800. sprintf(buf, "%.0f", *((double *)(root->data)));
  801. break;
  802. case API_UTILITY:
  803. case API_FREQ:
  804. case API_MHS:
  805. sprintf(buf, "%.2f", *((double *)(root->data)));
  806. break;
  807. case API_VOLTS:
  808. sprintf(buf, "%.3f", *((float *)(root->data)));
  809. break;
  810. case API_MHTOTAL:
  811. sprintf(buf, "%.4f", *((double *)(root->data)));
  812. break;
  813. case API_HS:
  814. sprintf(buf, "%.15f", *((double *)(root->data)));
  815. break;
  816. case API_BOOL:
  817. sprintf(buf, "%s", *((bool *)(root->data)) ? "true" : "false");
  818. break;
  819. case API_TIMEVAL:
  820. sprintf(buf, "%ld.%06ld",
  821. ((struct timeval *)(root->data))->tv_sec,
  822. ((struct timeval *)(root->data))->tv_usec);
  823. break;
  824. case API_TEMP:
  825. sprintf(buf, "%.2f", *((float *)(root->data)));
  826. break;
  827. default:
  828. applog(LOG_ERR, "API: unknown2 data type %d ignored", root->type);
  829. sprintf(buf, "%s%s%s", quote, UNKNOWN, quote);
  830. break;
  831. }
  832. buf = strchr(buf, '\0');
  833. if (root->data_was_malloc)
  834. free(root->data);
  835. if (root->next == root) {
  836. free(root);
  837. root = NULL;
  838. } else {
  839. tmp = root;
  840. root = tmp->next;
  841. root->prev = tmp->prev;
  842. root->prev->next = root;
  843. free(tmp);
  844. }
  845. }
  846. strcpy(buf, isjson ? JSON5 : SEPSTR);
  847. return root;
  848. }
  849. #ifdef HAVE_AN_FPGA
  850. static int numpgas()
  851. {
  852. int count = 0;
  853. int i;
  854. for (i = 0; i < total_devices; i++) {
  855. #ifdef USE_BITFORCE
  856. if (devices[i]->api == &bitforce_api)
  857. count++;
  858. #endif
  859. #ifdef USE_ICARUS
  860. if (devices[i]->api == &icarus_api)
  861. count++;
  862. #endif
  863. #ifdef USE_ZTEX
  864. if (devices[i]->api == &ztex_api)
  865. count++;
  866. #endif
  867. #ifdef USE_MODMINER
  868. if (devices[i]->api == &modminer_api)
  869. count++;
  870. #endif
  871. }
  872. return count;
  873. }
  874. static int pgadevice(int pgaid)
  875. {
  876. int count = 0;
  877. int i;
  878. for (i = 0; i < total_devices; i++) {
  879. #ifdef USE_BITFORCE
  880. if (devices[i]->api == &bitforce_api)
  881. count++;
  882. #endif
  883. #ifdef USE_ICARUS
  884. if (devices[i]->api == &icarus_api)
  885. count++;
  886. #endif
  887. #ifdef USE_ZTEX
  888. if (devices[i]->api == &ztex_api)
  889. count++;
  890. #endif
  891. #ifdef USE_MODMINER
  892. if (devices[i]->api == &modminer_api)
  893. count++;
  894. #endif
  895. if (count == (pgaid + 1))
  896. return i;
  897. }
  898. return -1;
  899. }
  900. #endif
  901. // All replies (except BYE and RESTART) start with a message
  902. // thus for JSON, message() inserts JSON_START at the front
  903. // and send_result() adds JSON_END at the end
  904. static char *message(int messageid, int paramid, char *param2, bool isjson)
  905. {
  906. struct api_data *root = NULL;
  907. char buf[TMPBUFSIZ];
  908. char severity[2];
  909. char *ptr;
  910. #ifdef HAVE_AN_FPGA
  911. int pga;
  912. #endif
  913. #ifdef WANT_CPUMINE
  914. int cpu;
  915. #endif
  916. int i;
  917. if (!isjson)
  918. msg_buffer[0] = '\0';
  919. else
  920. strcpy(msg_buffer, JSON_START JSON_STATUS);
  921. ptr = strchr(msg_buffer, '\0');
  922. for (i = 0; codes[i].severity != SEVERITY_FAIL; i++) {
  923. if (codes[i].code == messageid) {
  924. switch (codes[i].severity) {
  925. case SEVERITY_WARN:
  926. severity[0] = 'W';
  927. break;
  928. case SEVERITY_INFO:
  929. severity[0] = 'I';
  930. break;
  931. case SEVERITY_SUCC:
  932. severity[0] = 'S';
  933. break;
  934. case SEVERITY_ERR:
  935. default:
  936. severity[0] = 'E';
  937. break;
  938. }
  939. severity[1] = '\0';
  940. switch(codes[i].params) {
  941. case PARAM_GPU:
  942. case PARAM_PGA:
  943. case PARAM_CPU:
  944. case PARAM_PID:
  945. sprintf(buf, codes[i].description, paramid);
  946. break;
  947. case PARAM_POOL:
  948. sprintf(buf, codes[i].description, paramid, pools[paramid]->rpc_url);
  949. break;
  950. #ifdef HAVE_OPENCL
  951. case PARAM_GPUMAX:
  952. sprintf(buf, codes[i].description, paramid, nDevs - 1);
  953. break;
  954. #endif
  955. #ifdef HAVE_AN_FPGA
  956. case PARAM_PGAMAX:
  957. pga = numpgas();
  958. sprintf(buf, codes[i].description, paramid, pga - 1);
  959. break;
  960. #endif
  961. #ifdef WANT_CPUMINE
  962. case PARAM_CPUMAX:
  963. if (opt_n_threads > 0)
  964. cpu = num_processors;
  965. else
  966. cpu = 0;
  967. sprintf(buf, codes[i].description, paramid, cpu - 1);
  968. break;
  969. #endif
  970. case PARAM_PMAX:
  971. sprintf(buf, codes[i].description, total_pools);
  972. break;
  973. case PARAM_POOLMAX:
  974. sprintf(buf, codes[i].description, paramid, total_pools - 1);
  975. break;
  976. case PARAM_DMAX:
  977. #ifdef HAVE_AN_FPGA
  978. pga = numpgas();
  979. #endif
  980. #ifdef WANT_CPUMINE
  981. if (opt_n_threads > 0)
  982. cpu = num_processors;
  983. else
  984. cpu = 0;
  985. #endif
  986. sprintf(buf, codes[i].description
  987. #ifdef HAVE_OPENCL
  988. , nDevs
  989. #endif
  990. #ifdef HAVE_AN_FPGA
  991. , pga
  992. #endif
  993. #ifdef WANT_CPUMINE
  994. , cpu
  995. #endif
  996. );
  997. break;
  998. case PARAM_CMD:
  999. sprintf(buf, codes[i].description, JSON_COMMAND);
  1000. break;
  1001. case PARAM_STR:
  1002. sprintf(buf, codes[i].description, param2);
  1003. break;
  1004. case PARAM_BOTH:
  1005. sprintf(buf, codes[i].description, paramid, param2);
  1006. break;
  1007. case PARAM_NONE:
  1008. default:
  1009. strcpy(buf, codes[i].description);
  1010. }
  1011. root = api_add_string(root, _STATUS, severity, false);
  1012. root = api_add_time(root, "When", &when, false);
  1013. root = api_add_int(root, "Code", &messageid, false);
  1014. root = api_add_string(root, "Msg", buf, false);
  1015. root = api_add_string(root, "Description", opt_api_description, false);
  1016. root = print_data(root, ptr, isjson);
  1017. if (isjson)
  1018. strcat(ptr, JSON_CLOSE);
  1019. return msg_buffer;
  1020. }
  1021. }
  1022. root = api_add_string(root, _STATUS, "F", false);
  1023. root = api_add_time(root, "When", &when, false);
  1024. int id = -1;
  1025. root = api_add_int(root, "Code", &id, false);
  1026. sprintf(buf, "%d", messageid);
  1027. root = api_add_string(root, "Msg", buf, false);
  1028. root = api_add_string(root, "Description", opt_api_description, false);
  1029. root = print_data(root, ptr, isjson);
  1030. if (isjson)
  1031. strcat(ptr, JSON_CLOSE);
  1032. return msg_buffer;
  1033. }
  1034. static void apiversion(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1035. {
  1036. struct api_data *root = NULL;
  1037. char buf[TMPBUFSIZ];
  1038. sprintf(io_buffer, isjson
  1039. ? "%s," JSON_VERSION
  1040. : "%s" _VERSION ",",
  1041. message(MSG_VERSION, 0, NULL, isjson));
  1042. root = api_add_string(root, "CGMiner", VERSION, false);
  1043. root = api_add_const(root, "API", APIVERSION, false);
  1044. root = print_data(root, buf, isjson);
  1045. if (isjson)
  1046. strcat(buf, JSON_CLOSE);
  1047. strcat(io_buffer, buf);
  1048. }
  1049. static void minerconfig(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1050. {
  1051. struct api_data *root = NULL;
  1052. char buf[TMPBUFSIZ];
  1053. int gpucount = 0;
  1054. int pgacount = 0;
  1055. int cpucount = 0;
  1056. char *adlinuse = (char *)NO;
  1057. #ifdef HAVE_ADL
  1058. const char *adl = YES;
  1059. int i;
  1060. for (i = 0; i < nDevs; i++) {
  1061. if (gpus[i].has_adl) {
  1062. adlinuse = (char *)YES;
  1063. break;
  1064. }
  1065. }
  1066. #else
  1067. const char *adl = NO;
  1068. #endif
  1069. #ifdef HAVE_OPENCL
  1070. gpucount = nDevs;
  1071. #endif
  1072. #ifdef HAVE_AN_FPGA
  1073. pgacount = numpgas();
  1074. #endif
  1075. #ifdef WANT_CPUMINE
  1076. cpucount = opt_n_threads > 0 ? num_processors : 0;
  1077. #endif
  1078. sprintf(io_buffer, isjson
  1079. ? "%s," JSON_MINECON
  1080. : "%s" _MINECON ",",
  1081. message(MSG_MINECON, 0, NULL, isjson));
  1082. root = api_add_int(root, "GPU Count", &gpucount, false);
  1083. root = api_add_int(root, "PGA Count", &pgacount, false);
  1084. root = api_add_int(root, "CPU Count", &cpucount, false);
  1085. root = api_add_int(root, "Pool Count", &total_pools, false);
  1086. root = api_add_const(root, "ADL", (char *)adl, false);
  1087. root = api_add_string(root, "ADL in use", adlinuse, false);
  1088. root = api_add_const(root, "Strategy", strategies[pool_strategy].s, false);
  1089. root = api_add_int(root, "Log Interval", &opt_log_interval, false);
  1090. root = api_add_const(root, "Device Code", DEVICECODE, false);
  1091. root = api_add_const(root, "OS", OSINFO, false);
  1092. root = print_data(root, buf, isjson);
  1093. if (isjson)
  1094. strcat(buf, JSON_CLOSE);
  1095. strcat(io_buffer, buf);
  1096. }
  1097. static const char*
  1098. status2str(enum alive status)
  1099. {
  1100. switch (status) {
  1101. case LIFE_WELL:
  1102. return ALIVE;
  1103. case LIFE_SICK:
  1104. return SICK;
  1105. case LIFE_DEAD:
  1106. return DEAD;
  1107. case LIFE_NOSTART:
  1108. return NOSTART;
  1109. case LIFE_INIT:
  1110. return INIT;
  1111. default:
  1112. return UNKNOWN;
  1113. }
  1114. }
  1115. #ifdef HAVE_OPENCL
  1116. static void gpustatus(int gpu, bool isjson)
  1117. {
  1118. struct api_data *root = NULL;
  1119. char intensity[20];
  1120. char buf[TMPBUFSIZ];
  1121. char *enabled;
  1122. char *status;
  1123. float gt, gv;
  1124. int ga, gf, gp, gc, gm, pt;
  1125. if (gpu >= 0 && gpu < nDevs) {
  1126. struct cgpu_info *cgpu = &gpus[gpu];
  1127. cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
  1128. #ifdef HAVE_ADL
  1129. if (!gpu_stats(gpu, &gt, &gc, &gm, &gv, &ga, &gf, &gp, &pt))
  1130. #endif
  1131. gt = gv = gm = gc = ga = gf = gp = pt = 0;
  1132. if (cgpu->deven != DEV_DISABLED)
  1133. enabled = (char *)YES;
  1134. else
  1135. enabled = (char *)NO;
  1136. status = (char *)status2str(cgpu->status);
  1137. if (cgpu->dynamic)
  1138. strcpy(intensity, DYNAMIC);
  1139. else
  1140. sprintf(intensity, "%d", cgpu->intensity);
  1141. root = api_add_int(root, "GPU", &gpu, false);
  1142. root = api_add_string(root, "Enabled", enabled, false);
  1143. root = api_add_string(root, "Status", status, false);
  1144. root = api_add_temp(root, "Temperature", &gt, false);
  1145. root = api_add_int(root, "Fan Speed", &gf, false);
  1146. root = api_add_int(root, "Fan Percent", &gp, false);
  1147. root = api_add_int(root, "GPU Clock", &gc, false);
  1148. root = api_add_int(root, "Memory Clock", &gm, false);
  1149. root = api_add_volts(root, "GPU Voltage", &gv, false);
  1150. root = api_add_int(root, "GPU Activity", &ga, false);
  1151. root = api_add_int(root, "Powertune", &pt, false);
  1152. double mhs = cgpu->total_mhashes / total_secs;
  1153. root = api_add_mhs(root, "MHS av", &mhs, false);
  1154. char mhsname[27];
  1155. sprintf(mhsname, "MHS %ds", opt_log_interval);
  1156. root = api_add_mhs(root, mhsname, &(cgpu->rolling), false);
  1157. root = api_add_int(root, "Accepted", &(cgpu->accepted), false);
  1158. root = api_add_int(root, "Rejected", &(cgpu->rejected), false);
  1159. root = api_add_int(root, "Hardware Errors", &(cgpu->hw_errors), false);
  1160. root = api_add_utility(root, "Utility", &(cgpu->utility), false);
  1161. root = api_add_string(root, "Intensity", intensity, false);
  1162. int last_share_pool = cgpu->last_share_pool_time > 0 ?
  1163. cgpu->last_share_pool : -1;
  1164. root = api_add_int(root, "Last Share Pool", &last_share_pool, false);
  1165. root = api_add_time(root, "Last Share Time", &(cgpu->last_share_pool_time), false);
  1166. root = api_add_mhtotal(root, "Total MH", &(cgpu->total_mhashes), false);
  1167. root = print_data(root, buf, isjson);
  1168. strcat(io_buffer, buf);
  1169. }
  1170. }
  1171. #endif
  1172. #ifdef HAVE_AN_FPGA
  1173. static void pgastatus(int pga, bool isjson)
  1174. {
  1175. struct api_data *root = NULL;
  1176. char buf[TMPBUFSIZ];
  1177. char *enabled;
  1178. char *status;
  1179. int numpga = numpgas();
  1180. if (numpga > 0 && pga >= 0 && pga < numpga) {
  1181. int dev = pgadevice(pga);
  1182. if (dev < 0) // Should never happen
  1183. return;
  1184. struct cgpu_info *cgpu = devices[dev];
  1185. double frequency = 0;
  1186. float temp = cgpu->temp;
  1187. #ifdef USE_ZTEX
  1188. if (cgpu->api == &ztex_api && cgpu->device_ztex)
  1189. frequency = cgpu->device_ztex->freqM1 * (cgpu->device_ztex->freqM + 1);
  1190. #endif
  1191. #ifdef USE_MODMINER
  1192. // TODO: a modminer has up to 4 devices but only 1 set of data for all ...
  1193. // except 4 sets of data for temp/clock
  1194. // So this should change in the future to just find the single temp/clock
  1195. // if the modminer code splits the device into seperate devices later
  1196. // For now, just display the highest temp and the average clock
  1197. if (cgpu->api == &modminer_api) {
  1198. int tc = cgpu->threads;
  1199. int i;
  1200. temp = 0;
  1201. if (tc > 4)
  1202. tc = 4;
  1203. for (i = 0; i < tc; i++) {
  1204. struct thr_info *thr = cgpu->thr[i];
  1205. struct modminer_fpga_state *state = thr->cgpu_data;
  1206. if (state->temp > temp)
  1207. temp = state->temp;
  1208. frequency += state->clock;
  1209. }
  1210. frequency /= (tc ? tc : 1);
  1211. }
  1212. #endif
  1213. cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
  1214. if (cgpu->deven != DEV_DISABLED)
  1215. enabled = (char *)YES;
  1216. else
  1217. enabled = (char *)NO;
  1218. status = (char *)status2str(cgpu->status);
  1219. root = api_add_int(root, "PGA", &pga, false);
  1220. root = api_add_string(root, "Name", cgpu->api->name, false);
  1221. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  1222. root = api_add_string(root, "Enabled", enabled, false);
  1223. root = api_add_string(root, "Status", status, false);
  1224. root = api_add_temp(root, "Temperature", &temp, false);
  1225. double mhs = cgpu->total_mhashes / total_secs;
  1226. root = api_add_mhs(root, "MHS av", &mhs, false);
  1227. char mhsname[27];
  1228. sprintf(mhsname, "MHS %ds", opt_log_interval);
  1229. root = api_add_mhs(root, mhsname, &(cgpu->rolling), false);
  1230. root = api_add_int(root, "Accepted", &(cgpu->accepted), false);
  1231. root = api_add_int(root, "Rejected", &(cgpu->rejected), false);
  1232. root = api_add_int(root, "Hardware Errors", &(cgpu->hw_errors), false);
  1233. root = api_add_utility(root, "Utility", &(cgpu->utility), false);
  1234. int last_share_pool = cgpu->last_share_pool_time > 0 ?
  1235. cgpu->last_share_pool : -1;
  1236. root = api_add_int(root, "Last Share Pool", &last_share_pool, false);
  1237. root = api_add_time(root, "Last Share Time", &(cgpu->last_share_pool_time), false);
  1238. root = api_add_mhtotal(root, "Total MH", &(cgpu->total_mhashes), false);
  1239. root = api_add_freq(root, "Frequency", &frequency, false);
  1240. root = print_data(root, buf, isjson);
  1241. strcat(io_buffer, buf);
  1242. }
  1243. }
  1244. #endif
  1245. #ifdef WANT_CPUMINE
  1246. static void cpustatus(int cpu, bool isjson)
  1247. {
  1248. struct api_data *root = NULL;
  1249. char buf[TMPBUFSIZ];
  1250. if (opt_n_threads > 0 && cpu >= 0 && cpu < num_processors) {
  1251. struct cgpu_info *cgpu = &cpus[cpu];
  1252. cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
  1253. root = api_add_int(root, "CPU", &cpu, false);
  1254. double mhs = cgpu->total_mhashes / total_secs;
  1255. root = api_add_mhs(root, "MHS av", &mhs, false);
  1256. char mhsname[27];
  1257. sprintf(mhsname, "MHS %ds", opt_log_interval);
  1258. root = api_add_mhs(root, mhsname, &(cgpu->rolling), false);
  1259. root = api_add_int(root, "Accepted", &(cgpu->accepted), false);
  1260. root = api_add_int(root, "Rejected", &(cgpu->rejected), false);
  1261. root = api_add_utility(root, "Utility", &(cgpu->utility), false);
  1262. int last_share_pool = cgpu->last_share_pool_time > 0 ?
  1263. cgpu->last_share_pool : -1;
  1264. root = api_add_int(root, "Last Share Pool", &last_share_pool, false);
  1265. root = api_add_time(root, "Last Share Time", &(cgpu->last_share_pool_time), false);
  1266. root = api_add_mhtotal(root, "Total MH", &(cgpu->total_mhashes), false);
  1267. root = print_data(root, buf, isjson);
  1268. strcat(io_buffer, buf);
  1269. }
  1270. }
  1271. #endif
  1272. static void devstatus(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1273. {
  1274. int devcount = 0;
  1275. int numgpu = 0;
  1276. int numpga = 0;
  1277. int i;
  1278. #ifdef HAVE_OPENCL
  1279. numgpu = nDevs;
  1280. #endif
  1281. #ifdef HAVE_AN_FPGA
  1282. numpga = numpgas();
  1283. #endif
  1284. if (numgpu == 0 && opt_n_threads == 0 && numpga == 0) {
  1285. strcpy(io_buffer, message(MSG_NODEVS, 0, NULL, isjson));
  1286. return;
  1287. }
  1288. strcpy(io_buffer, message(MSG_DEVS, 0, NULL, isjson));
  1289. if (isjson) {
  1290. strcat(io_buffer, COMMA);
  1291. strcat(io_buffer, JSON_DEVS);
  1292. }
  1293. #ifdef HAVE_OPENCL
  1294. for (i = 0; i < nDevs; i++) {
  1295. if (isjson && devcount > 0)
  1296. strcat(io_buffer, COMMA);
  1297. gpustatus(i, isjson);
  1298. devcount++;
  1299. }
  1300. #endif
  1301. #ifdef HAVE_AN_FPGA
  1302. if (numpga > 0) {
  1303. for (i = 0; i < numpga; i++) {
  1304. if (isjson && devcount > 0)
  1305. strcat(io_buffer, COMMA);
  1306. pgastatus(i, isjson);
  1307. devcount++;
  1308. }
  1309. }
  1310. #endif
  1311. #ifdef WANT_CPUMINE
  1312. if (opt_n_threads > 0) {
  1313. for (i = 0; i < num_processors; i++) {
  1314. if (isjson && devcount > 0)
  1315. strcat(io_buffer, COMMA);
  1316. cpustatus(i, isjson);
  1317. devcount++;
  1318. }
  1319. }
  1320. #endif
  1321. if (isjson)
  1322. strcat(io_buffer, JSON_CLOSE);
  1323. }
  1324. #ifdef HAVE_OPENCL
  1325. static void gpudev(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1326. {
  1327. int id;
  1328. if (nDevs == 0) {
  1329. strcpy(io_buffer, message(MSG_GPUNON, 0, NULL, isjson));
  1330. return;
  1331. }
  1332. if (param == NULL || *param == '\0') {
  1333. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1334. return;
  1335. }
  1336. id = atoi(param);
  1337. if (id < 0 || id >= nDevs) {
  1338. strcpy(io_buffer, message(MSG_INVGPU, id, NULL, isjson));
  1339. return;
  1340. }
  1341. strcpy(io_buffer, message(MSG_GPUDEV, id, NULL, isjson));
  1342. if (isjson) {
  1343. strcat(io_buffer, COMMA);
  1344. strcat(io_buffer, JSON_GPU);
  1345. }
  1346. gpustatus(id, isjson);
  1347. if (isjson)
  1348. strcat(io_buffer, JSON_CLOSE);
  1349. }
  1350. #endif
  1351. #ifdef HAVE_AN_FPGA
  1352. static void pgadev(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1353. {
  1354. int numpga = numpgas();
  1355. int id;
  1356. if (numpga == 0) {
  1357. strcpy(io_buffer, message(MSG_PGANON, 0, NULL, isjson));
  1358. return;
  1359. }
  1360. if (param == NULL || *param == '\0') {
  1361. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1362. return;
  1363. }
  1364. id = atoi(param);
  1365. if (id < 0 || id >= numpga) {
  1366. strcpy(io_buffer, message(MSG_INVPGA, id, NULL, isjson));
  1367. return;
  1368. }
  1369. strcpy(io_buffer, message(MSG_PGADEV, id, NULL, isjson));
  1370. if (isjson) {
  1371. strcat(io_buffer, COMMA);
  1372. strcat(io_buffer, JSON_PGA);
  1373. }
  1374. pgastatus(id, isjson);
  1375. if (isjson)
  1376. strcat(io_buffer, JSON_CLOSE);
  1377. }
  1378. static void pgaenable(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1379. {
  1380. int numpga = numpgas();
  1381. struct thr_info *thr;
  1382. int pga;
  1383. int id;
  1384. int i;
  1385. if (numpga == 0) {
  1386. strcpy(io_buffer, message(MSG_PGANON, 0, NULL, isjson));
  1387. return;
  1388. }
  1389. if (param == NULL || *param == '\0') {
  1390. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1391. return;
  1392. }
  1393. id = atoi(param);
  1394. if (id < 0 || id >= numpga) {
  1395. strcpy(io_buffer, message(MSG_INVPGA, id, NULL, isjson));
  1396. return;
  1397. }
  1398. int dev = pgadevice(id);
  1399. if (dev < 0) { // Should never happen
  1400. strcpy(io_buffer, message(MSG_INVPGA, id, NULL, isjson));
  1401. return;
  1402. }
  1403. struct cgpu_info *cgpu = devices[dev];
  1404. if (cgpu->deven != DEV_DISABLED) {
  1405. strcpy(io_buffer, message(MSG_PGALRENA, id, NULL, isjson));
  1406. return;
  1407. }
  1408. #if 0 /* A DISABLED device wont change status FIXME: should disabling make it WELL? */
  1409. if (cgpu->status != LIFE_WELL) {
  1410. strcpy(io_buffer, message(MSG_PGAUNW, id, NULL, isjson));
  1411. return;
  1412. }
  1413. #endif
  1414. for (i = 0; i < mining_threads; i++) {
  1415. pga = thr_info[i].cgpu->device_id;
  1416. if (pga == dev) {
  1417. thr = &thr_info[i];
  1418. cgpu->deven = DEV_ENABLED;
  1419. tq_push(thr->q, &ping);
  1420. }
  1421. }
  1422. strcpy(io_buffer, message(MSG_PGAENA, id, NULL, isjson));
  1423. }
  1424. static void pgadisable(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1425. {
  1426. int numpga = numpgas();
  1427. int id;
  1428. if (numpga == 0) {
  1429. strcpy(io_buffer, message(MSG_PGANON, 0, NULL, isjson));
  1430. return;
  1431. }
  1432. if (param == NULL || *param == '\0') {
  1433. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1434. return;
  1435. }
  1436. id = atoi(param);
  1437. if (id < 0 || id >= numpga) {
  1438. strcpy(io_buffer, message(MSG_INVPGA, id, NULL, isjson));
  1439. return;
  1440. }
  1441. int dev = pgadevice(id);
  1442. if (dev < 0) { // Should never happen
  1443. strcpy(io_buffer, message(MSG_INVPGA, id, NULL, isjson));
  1444. return;
  1445. }
  1446. struct cgpu_info *cgpu = devices[dev];
  1447. if (cgpu->deven == DEV_DISABLED) {
  1448. strcpy(io_buffer, message(MSG_PGALRDIS, id, NULL, isjson));
  1449. return;
  1450. }
  1451. cgpu->deven = DEV_DISABLED;
  1452. strcpy(io_buffer, message(MSG_PGADIS, id, NULL, isjson));
  1453. }
  1454. #endif
  1455. #ifdef WANT_CPUMINE
  1456. static void cpudev(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1457. {
  1458. int id;
  1459. if (opt_n_threads == 0) {
  1460. strcpy(io_buffer, message(MSG_CPUNON, 0, NULL, isjson));
  1461. return;
  1462. }
  1463. if (param == NULL || *param == '\0') {
  1464. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1465. return;
  1466. }
  1467. id = atoi(param);
  1468. if (id < 0 || id >= num_processors) {
  1469. strcpy(io_buffer, message(MSG_INVCPU, id, NULL, isjson));
  1470. return;
  1471. }
  1472. strcpy(io_buffer, message(MSG_CPUDEV, id, NULL, isjson));
  1473. if (isjson) {
  1474. strcat(io_buffer, COMMA);
  1475. strcat(io_buffer, JSON_CPU);
  1476. }
  1477. cpustatus(id, isjson);
  1478. if (isjson)
  1479. strcat(io_buffer, JSON_CLOSE);
  1480. }
  1481. #endif
  1482. static void poolstatus(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1483. {
  1484. struct api_data *root = NULL;
  1485. char buf[TMPBUFSIZ];
  1486. char *status, *lp;
  1487. int i;
  1488. if (total_pools == 0) {
  1489. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1490. return;
  1491. }
  1492. strcpy(io_buffer, message(MSG_POOL, 0, NULL, isjson));
  1493. if (isjson) {
  1494. strcat(io_buffer, COMMA);
  1495. strcat(io_buffer, JSON_POOLS);
  1496. }
  1497. for (i = 0; i < total_pools; i++) {
  1498. struct pool *pool = pools[i];
  1499. switch (pool->enabled) {
  1500. case POOL_DISABLED:
  1501. status = (char *)DISABLED;
  1502. break;
  1503. case POOL_REJECTING:
  1504. status = (char *)REJECTING;
  1505. break;
  1506. case POOL_ENABLED:
  1507. if (pool->idle)
  1508. status = (char *)DEAD;
  1509. else
  1510. status = (char *)ALIVE;
  1511. break;
  1512. default:
  1513. status = (char *)UNKNOWN;
  1514. break;
  1515. }
  1516. if (pool->hdr_path)
  1517. lp = (char *)YES;
  1518. else
  1519. lp = (char *)NO;
  1520. root = api_add_int(root, "POOL", &i, false);
  1521. root = api_add_escape(root, "URL", pool->rpc_url, false);
  1522. root = api_add_string(root, "Status", status, false);
  1523. root = api_add_int(root, "Priority", &(pool->prio), false);
  1524. root = api_add_string(root, "Long Poll", lp, false);
  1525. root = api_add_uint(root, "Getworks", &(pool->getwork_requested), false);
  1526. root = api_add_int(root, "Accepted", &(pool->accepted), false);
  1527. root = api_add_int(root, "Rejected", &(pool->rejected), false);
  1528. root = api_add_uint(root, "Discarded", &(pool->discarded_work), false);
  1529. root = api_add_uint(root, "Stale", &(pool->stale_shares), false);
  1530. root = api_add_uint(root, "Get Failures", &(pool->getfail_occasions), false);
  1531. root = api_add_uint(root, "Remote Failures", &(pool->remotefail_occasions), false);
  1532. root = api_add_escape(root, "User", pool->rpc_user, false);
  1533. root = api_add_time(root, "Last Share Time", &(pool->last_share_time), false);
  1534. if (isjson && (i > 0))
  1535. strcat(io_buffer, COMMA);
  1536. root = print_data(root, buf, isjson);
  1537. strcat(io_buffer, buf);
  1538. }
  1539. if (isjson)
  1540. strcat(io_buffer, JSON_CLOSE);
  1541. }
  1542. static void summary(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1543. {
  1544. struct api_data *root = NULL;
  1545. char buf[TMPBUFSIZ];
  1546. double utility, mhs;
  1547. #ifdef WANT_CPUMINE
  1548. char *algo = (char *)(algo_names[opt_algo]);
  1549. if (algo == NULL)
  1550. algo = (char *)NULLSTR;
  1551. #endif
  1552. utility = total_accepted / ( total_secs ? total_secs : 1 ) * 60;
  1553. mhs = total_mhashes_done / total_secs;
  1554. sprintf(io_buffer, isjson
  1555. ? "%s," JSON_SUMMARY
  1556. : "%s" _SUMMARY ",",
  1557. message(MSG_SUMM, 0, NULL, isjson));
  1558. root = api_add_elapsed(root, "Elapsed", &(total_secs), false);
  1559. #ifdef WANT_CPUMINE
  1560. root = api_add_string(root, "Algorithm", algo, false);
  1561. #endif
  1562. root = api_add_mhs(root, "MHS av", &(mhs), false);
  1563. root = api_add_uint(root, "Found Blocks", &(found_blocks), false);
  1564. root = api_add_int(root, "Getworks", &(total_getworks), false);
  1565. root = api_add_int(root, "Accepted", &(total_accepted), false);
  1566. root = api_add_int(root, "Rejected", &(total_rejected), false);
  1567. root = api_add_int(root, "Hardware Errors", &(hw_errors), false);
  1568. root = api_add_utility(root, "Utility", &(utility), false);
  1569. root = api_add_int(root, "Discarded", &(total_discarded), false);
  1570. root = api_add_int(root, "Stale", &(total_stale), false);
  1571. root = api_add_uint(root, "Get Failures", &(total_go), false);
  1572. root = api_add_uint(root, "Local Work", &(local_work), false);
  1573. root = api_add_uint(root, "Remote Failures", &(total_ro), false);
  1574. root = api_add_uint(root, "Network Blocks", &(new_blocks), false);
  1575. root = api_add_mhtotal(root, "Total MH", &(total_mhashes_done), false);
  1576. root = print_data(root, buf, isjson);
  1577. if (isjson)
  1578. strcat(buf, JSON_CLOSE);
  1579. strcat(io_buffer, buf);
  1580. }
  1581. #ifdef HAVE_OPENCL
  1582. static void gpuenable(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1583. {
  1584. struct thr_info *thr;
  1585. int gpu;
  1586. int id;
  1587. int i;
  1588. if (gpu_threads == 0) {
  1589. strcpy(io_buffer, message(MSG_GPUNON, 0, NULL, isjson));
  1590. return;
  1591. }
  1592. if (param == NULL || *param == '\0') {
  1593. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1594. return;
  1595. }
  1596. id = atoi(param);
  1597. if (id < 0 || id >= nDevs) {
  1598. strcpy(io_buffer, message(MSG_INVGPU, id, NULL, isjson));
  1599. return;
  1600. }
  1601. if (gpus[id].deven != DEV_DISABLED) {
  1602. strcpy(io_buffer, message(MSG_ALRENA, id, NULL, isjson));
  1603. return;
  1604. }
  1605. for (i = 0; i < gpu_threads; i++) {
  1606. gpu = thr_info[i].cgpu->device_id;
  1607. if (gpu == id) {
  1608. thr = &thr_info[i];
  1609. if (thr->cgpu->status != LIFE_WELL) {
  1610. strcpy(io_buffer, message(MSG_GPUMRE, id, NULL, isjson));
  1611. return;
  1612. }
  1613. gpus[id].deven = DEV_ENABLED;
  1614. tq_push(thr->q, &ping);
  1615. }
  1616. }
  1617. strcpy(io_buffer, message(MSG_GPUREN, id, NULL, isjson));
  1618. }
  1619. static void gpudisable(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1620. {
  1621. int id;
  1622. if (nDevs == 0) {
  1623. strcpy(io_buffer, message(MSG_GPUNON, 0, NULL, isjson));
  1624. return;
  1625. }
  1626. if (param == NULL || *param == '\0') {
  1627. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1628. return;
  1629. }
  1630. id = atoi(param);
  1631. if (id < 0 || id >= nDevs) {
  1632. strcpy(io_buffer, message(MSG_INVGPU, id, NULL, isjson));
  1633. return;
  1634. }
  1635. if (gpus[id].deven == DEV_DISABLED) {
  1636. strcpy(io_buffer, message(MSG_ALRDIS, id, NULL, isjson));
  1637. return;
  1638. }
  1639. gpus[id].deven = DEV_DISABLED;
  1640. strcpy(io_buffer, message(MSG_GPUDIS, id, NULL, isjson));
  1641. }
  1642. static void gpurestart(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1643. {
  1644. int id;
  1645. if (nDevs == 0) {
  1646. strcpy(io_buffer, message(MSG_GPUNON, 0, NULL, isjson));
  1647. return;
  1648. }
  1649. if (param == NULL || *param == '\0') {
  1650. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1651. return;
  1652. }
  1653. id = atoi(param);
  1654. if (id < 0 || id >= nDevs) {
  1655. strcpy(io_buffer, message(MSG_INVGPU, id, NULL, isjson));
  1656. return;
  1657. }
  1658. reinit_device(&gpus[id]);
  1659. strcpy(io_buffer, message(MSG_GPUREI, id, NULL, isjson));
  1660. }
  1661. #endif
  1662. static void gpucount(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1663. {
  1664. struct api_data *root = NULL;
  1665. char buf[TMPBUFSIZ];
  1666. int numgpu = 0;
  1667. #ifdef HAVE_OPENCL
  1668. numgpu = nDevs;
  1669. #endif
  1670. sprintf(io_buffer, isjson
  1671. ? "%s," JSON_GPUS
  1672. : "%s" _GPUS ",",
  1673. message(MSG_NUMGPU, 0, NULL, isjson));
  1674. root = api_add_int(root, "Count", &numgpu, false);
  1675. root = print_data(root, buf, isjson);
  1676. if (isjson)
  1677. strcat(buf, JSON_CLOSE);
  1678. strcat(io_buffer, buf);
  1679. }
  1680. static void pgacount(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1681. {
  1682. struct api_data *root = NULL;
  1683. char buf[TMPBUFSIZ];
  1684. int count = 0;
  1685. #ifdef HAVE_AN_FPGA
  1686. count = numpgas();
  1687. #endif
  1688. sprintf(io_buffer, isjson
  1689. ? "%s," JSON_PGAS
  1690. : "%s" _PGAS ",",
  1691. message(MSG_NUMPGA, 0, NULL, isjson));
  1692. root = api_add_int(root, "Count", &count, false);
  1693. root = print_data(root, buf, isjson);
  1694. if (isjson)
  1695. strcat(buf, JSON_CLOSE);
  1696. strcat(io_buffer, buf);
  1697. }
  1698. static void cpucount(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1699. {
  1700. struct api_data *root = NULL;
  1701. char buf[TMPBUFSIZ];
  1702. int count = 0;
  1703. #ifdef WANT_CPUMINE
  1704. count = opt_n_threads > 0 ? num_processors : 0;
  1705. #endif
  1706. sprintf(io_buffer, isjson
  1707. ? "%s," JSON_CPUS
  1708. : "%s" _CPUS ",",
  1709. message(MSG_NUMCPU, 0, NULL, isjson));
  1710. root = api_add_int(root, "Count", &count, false);
  1711. root = print_data(root, buf, isjson);
  1712. if (isjson)
  1713. strcat(buf, JSON_CLOSE);
  1714. strcat(io_buffer, buf);
  1715. }
  1716. static void switchpool(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1717. {
  1718. struct pool *pool;
  1719. int id;
  1720. if (total_pools == 0) {
  1721. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1722. return;
  1723. }
  1724. if (param == NULL || *param == '\0') {
  1725. strcpy(io_buffer, message(MSG_MISPID, 0, NULL, isjson));
  1726. return;
  1727. }
  1728. id = atoi(param);
  1729. if (id < 0 || id >= total_pools) {
  1730. strcpy(io_buffer, message(MSG_INVPID, id, NULL, isjson));
  1731. return;
  1732. }
  1733. pool = pools[id];
  1734. pool->enabled = POOL_ENABLED;
  1735. switch_pools(pool);
  1736. strcpy(io_buffer, message(MSG_SWITCHP, id, NULL, isjson));
  1737. }
  1738. static void copyadvanceafter(char ch, char **param, char **buf)
  1739. {
  1740. #define src_p (*param)
  1741. #define dst_b (*buf)
  1742. while (*src_p && *src_p != ch) {
  1743. if (*src_p == '\\' && *(src_p+1) != '\0')
  1744. src_p++;
  1745. *(dst_b++) = *(src_p++);
  1746. }
  1747. if (*src_p)
  1748. src_p++;
  1749. *(dst_b++) = '\0';
  1750. }
  1751. static bool pooldetails(char *param, char **url, char **user, char **pass)
  1752. {
  1753. char *ptr, *buf;
  1754. ptr = buf = malloc(strlen(param)+1);
  1755. if (unlikely(!buf))
  1756. quit(1, "Failed to malloc pooldetails buf");
  1757. *url = buf;
  1758. // copy url
  1759. copyadvanceafter(',', &param, &buf);
  1760. if (!(*param)) // missing user
  1761. goto exitsama;
  1762. *user = buf;
  1763. // copy user
  1764. copyadvanceafter(',', &param, &buf);
  1765. if (!*param) // missing pass
  1766. goto exitsama;
  1767. *pass = buf;
  1768. // copy pass
  1769. copyadvanceafter(',', &param, &buf);
  1770. return true;
  1771. exitsama:
  1772. free(ptr);
  1773. return false;
  1774. }
  1775. static void addpool(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1776. {
  1777. char *url, *user, *pass;
  1778. char *ptr;
  1779. if (param == NULL || *param == '\0') {
  1780. strcpy(io_buffer, message(MSG_MISPDP, 0, NULL, isjson));
  1781. return;
  1782. }
  1783. if (!pooldetails(param, &url, &user, &pass)) {
  1784. ptr = escape_string(param, isjson);
  1785. strcpy(io_buffer, message(MSG_INVPDP, 0, ptr, isjson));
  1786. if (ptr != param)
  1787. free(ptr);
  1788. ptr = NULL;
  1789. return;
  1790. }
  1791. add_pool_details(true, url, user, pass);
  1792. ptr = escape_string(url, isjson);
  1793. strcpy(io_buffer, message(MSG_ADDPOOL, 0, ptr, isjson));
  1794. if (ptr != url)
  1795. free(ptr);
  1796. ptr = NULL;
  1797. }
  1798. static void enablepool(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1799. {
  1800. struct pool *pool;
  1801. int id;
  1802. if (total_pools == 0) {
  1803. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1804. return;
  1805. }
  1806. if (param == NULL || *param == '\0') {
  1807. strcpy(io_buffer, message(MSG_MISPID, 0, NULL, isjson));
  1808. return;
  1809. }
  1810. id = atoi(param);
  1811. if (id < 0 || id >= total_pools) {
  1812. strcpy(io_buffer, message(MSG_INVPID, id, NULL, isjson));
  1813. return;
  1814. }
  1815. pool = pools[id];
  1816. if (pool->enabled == POOL_ENABLED) {
  1817. strcpy(io_buffer, message(MSG_ALRENAP, id, NULL, isjson));
  1818. return;
  1819. }
  1820. pool->enabled = POOL_ENABLED;
  1821. if (pool->prio < current_pool()->prio)
  1822. switch_pools(pool);
  1823. strcpy(io_buffer, message(MSG_ENAPOOL, id, NULL, isjson));
  1824. }
  1825. static void poolpriority(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1826. {
  1827. char *ptr, *next;
  1828. int i, pr, prio = 0;
  1829. // TODO: all cgminer code needs a mutex added everywhere for change
  1830. // access to total_pools and also parts of the pools[] array,
  1831. // just copying total_pools here wont solve that
  1832. if (total_pools == 0) {
  1833. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1834. return;
  1835. }
  1836. if (param == NULL || *param == '\0') {
  1837. strcpy(io_buffer, message(MSG_MISPID, 0, NULL, isjson));
  1838. return;
  1839. }
  1840. bool pools_changed[total_pools];
  1841. int new_prio[total_pools];
  1842. for (i = 0; i < total_pools; ++i)
  1843. pools_changed[i] = false;
  1844. next = param;
  1845. while (next && *next) {
  1846. ptr = next;
  1847. next = strchr(ptr, ',');
  1848. if (next)
  1849. *(next++) = '\0';
  1850. i = atoi(ptr);
  1851. if (i < 0 || i >= total_pools) {
  1852. strcpy(io_buffer, message(MSG_INVPID, i, NULL, isjson));
  1853. return;
  1854. }
  1855. if (pools_changed[i]) {
  1856. strcpy(io_buffer, message(MSG_DUPPID, i, NULL, isjson));
  1857. return;
  1858. }
  1859. pools_changed[i] = true;
  1860. new_prio[i] = prio++;
  1861. }
  1862. // Only change them if no errors
  1863. for (i = 0; i < total_pools; i++) {
  1864. if (pools_changed[i])
  1865. pools[i]->prio = new_prio[i];
  1866. }
  1867. // In priority order, cycle through the unchanged pools and append them
  1868. for (pr = 0; pr < total_pools; pr++)
  1869. for (i = 0; i < total_pools; i++) {
  1870. if (!pools_changed[i] && pools[i]->prio == pr) {
  1871. pools[i]->prio = prio++;
  1872. pools_changed[i] = true;
  1873. break;
  1874. }
  1875. }
  1876. if (current_pool()->prio)
  1877. switch_pools(NULL);
  1878. strcpy(io_buffer, message(MSG_POOLPRIO, 0, NULL, isjson));
  1879. }
  1880. static void disablepool(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1881. {
  1882. struct pool *pool;
  1883. int id;
  1884. if (total_pools == 0) {
  1885. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1886. return;
  1887. }
  1888. if (param == NULL || *param == '\0') {
  1889. strcpy(io_buffer, message(MSG_MISPID, 0, NULL, isjson));
  1890. return;
  1891. }
  1892. id = atoi(param);
  1893. if (id < 0 || id >= total_pools) {
  1894. strcpy(io_buffer, message(MSG_INVPID, id, NULL, isjson));
  1895. return;
  1896. }
  1897. pool = pools[id];
  1898. if (pool->enabled == POOL_DISABLED) {
  1899. strcpy(io_buffer, message(MSG_ALRDISP, id, NULL, isjson));
  1900. return;
  1901. }
  1902. if (enabled_pools <= 1) {
  1903. strcpy(io_buffer, message(MSG_DISLASTP, id, NULL, isjson));
  1904. return;
  1905. }
  1906. pool->enabled = POOL_DISABLED;
  1907. if (pool == current_pool())
  1908. switch_pools(NULL);
  1909. strcpy(io_buffer, message(MSG_DISPOOL, id, NULL, isjson));
  1910. }
  1911. static void removepool(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1912. {
  1913. struct pool *pool;
  1914. char *rpc_url;
  1915. bool dofree = false;
  1916. int id;
  1917. if (total_pools == 0) {
  1918. strcpy(io_buffer, message(MSG_NOPOOL, 0, NULL, isjson));
  1919. return;
  1920. }
  1921. if (param == NULL || *param == '\0') {
  1922. strcpy(io_buffer, message(MSG_MISPID, 0, NULL, isjson));
  1923. return;
  1924. }
  1925. id = atoi(param);
  1926. if (id < 0 || id >= total_pools) {
  1927. strcpy(io_buffer, message(MSG_INVPID, id, NULL, isjson));
  1928. return;
  1929. }
  1930. if (total_pools <= 1) {
  1931. strcpy(io_buffer, message(MSG_REMLASTP, id, NULL, isjson));
  1932. return;
  1933. }
  1934. pool = pools[id];
  1935. if (pool == current_pool())
  1936. switch_pools(NULL);
  1937. if (pool == current_pool()) {
  1938. strcpy(io_buffer, message(MSG_ACTPOOL, id, NULL, isjson));
  1939. return;
  1940. }
  1941. pool->enabled = POOL_DISABLED;
  1942. rpc_url = escape_string(pool->rpc_url, isjson);
  1943. if (rpc_url != pool->rpc_url)
  1944. dofree = true;
  1945. remove_pool(pool);
  1946. strcpy(io_buffer, message(MSG_REMPOOL, id, rpc_url, isjson));
  1947. if (dofree)
  1948. free(rpc_url);
  1949. rpc_url = NULL;
  1950. }
  1951. #ifdef HAVE_OPENCL
  1952. static bool splitgpuvalue(char *param, int *gpu, char **value, bool isjson)
  1953. {
  1954. int id;
  1955. char *gpusep;
  1956. if (nDevs == 0) {
  1957. strcpy(io_buffer, message(MSG_GPUNON, 0, NULL, isjson));
  1958. return false;
  1959. }
  1960. if (param == NULL || *param == '\0') {
  1961. strcpy(io_buffer, message(MSG_MISID, 0, NULL, isjson));
  1962. return false;
  1963. }
  1964. gpusep = strchr(param, GPUSEP);
  1965. if (gpusep == NULL) {
  1966. strcpy(io_buffer, message(MSG_MISVAL, 0, NULL, isjson));
  1967. return false;
  1968. }
  1969. *(gpusep++) = '\0';
  1970. id = atoi(param);
  1971. if (id < 0 || id >= nDevs) {
  1972. strcpy(io_buffer, message(MSG_INVGPU, id, NULL, isjson));
  1973. return false;
  1974. }
  1975. *gpu = id;
  1976. *value = gpusep;
  1977. return true;
  1978. }
  1979. static void gpuintensity(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1980. {
  1981. int id;
  1982. char *value;
  1983. int intensity;
  1984. char intensitystr[7];
  1985. if (!splitgpuvalue(param, &id, &value, isjson))
  1986. return;
  1987. if (!strncasecmp(value, DYNAMIC, 1)) {
  1988. gpus[id].dynamic = true;
  1989. strcpy(intensitystr, DYNAMIC);
  1990. }
  1991. else {
  1992. intensity = atoi(value);
  1993. if (intensity < MIN_INTENSITY || intensity > MAX_INTENSITY) {
  1994. strcpy(io_buffer, message(MSG_INVINT, 0, value, isjson));
  1995. return;
  1996. }
  1997. gpus[id].dynamic = false;
  1998. gpus[id].intensity = intensity;
  1999. sprintf(intensitystr, "%d", intensity);
  2000. }
  2001. strcpy(io_buffer, message(MSG_GPUINT, id, intensitystr, isjson));
  2002. }
  2003. static void gpumem(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2004. {
  2005. #ifdef HAVE_ADL
  2006. int id;
  2007. char *value;
  2008. int clock;
  2009. if (!splitgpuvalue(param, &id, &value, isjson))
  2010. return;
  2011. clock = atoi(value);
  2012. if (set_memoryclock(id, clock))
  2013. strcpy(io_buffer, message(MSG_GPUMERR, id, value, isjson));
  2014. else
  2015. strcpy(io_buffer, message(MSG_GPUMEM, id, value, isjson));
  2016. #else
  2017. strcpy(io_buffer, message(MSG_NOADL, 0, NULL, isjson));
  2018. #endif
  2019. }
  2020. static void gpuengine(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2021. {
  2022. #ifdef HAVE_ADL
  2023. int id;
  2024. char *value;
  2025. int clock;
  2026. if (!splitgpuvalue(param, &id, &value, isjson))
  2027. return;
  2028. clock = atoi(value);
  2029. if (set_engineclock(id, clock))
  2030. strcpy(io_buffer, message(MSG_GPUEERR, id, value, isjson));
  2031. else
  2032. strcpy(io_buffer, message(MSG_GPUENG, id, value, isjson));
  2033. #else
  2034. strcpy(io_buffer, message(MSG_NOADL, 0, NULL, isjson));
  2035. #endif
  2036. }
  2037. static void gpufan(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2038. {
  2039. #ifdef HAVE_ADL
  2040. int id;
  2041. char *value;
  2042. int fan;
  2043. if (!splitgpuvalue(param, &id, &value, isjson))
  2044. return;
  2045. fan = atoi(value);
  2046. if (set_fanspeed(id, fan))
  2047. strcpy(io_buffer, message(MSG_GPUFERR, id, value, isjson));
  2048. else
  2049. strcpy(io_buffer, message(MSG_GPUFAN, id, value, isjson));
  2050. #else
  2051. strcpy(io_buffer, message(MSG_NOADL, 0, NULL, isjson));
  2052. #endif
  2053. }
  2054. static void gpuvddc(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2055. {
  2056. #ifdef HAVE_ADL
  2057. int id;
  2058. char *value;
  2059. float vddc;
  2060. if (!splitgpuvalue(param, &id, &value, isjson))
  2061. return;
  2062. vddc = atof(value);
  2063. if (set_vddc(id, vddc))
  2064. strcpy(io_buffer, message(MSG_GPUVERR, id, value, isjson));
  2065. else
  2066. strcpy(io_buffer, message(MSG_GPUVDDC, id, value, isjson));
  2067. #else
  2068. strcpy(io_buffer, message(MSG_NOADL, 0, NULL, isjson));
  2069. #endif
  2070. }
  2071. #endif
  2072. void doquit(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2073. {
  2074. if (isjson)
  2075. strcpy(io_buffer, JSON_START JSON_BYE);
  2076. else
  2077. strcpy(io_buffer, _BYE);
  2078. bye = true;
  2079. do_a_quit = true;
  2080. }
  2081. void dorestart(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2082. {
  2083. if (isjson)
  2084. strcpy(io_buffer, JSON_START JSON_RESTART);
  2085. else
  2086. strcpy(io_buffer, _RESTART);
  2087. bye = true;
  2088. do_a_restart = true;
  2089. }
  2090. void privileged(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2091. {
  2092. strcpy(io_buffer, message(MSG_ACCOK, 0, NULL, isjson));
  2093. }
  2094. void notifystatus(int device, struct cgpu_info *cgpu, bool isjson, __maybe_unused char group)
  2095. {
  2096. struct api_data *root = NULL;
  2097. char buf[TMPBUFSIZ];
  2098. char *reason;
  2099. if (cgpu->device_last_not_well == 0)
  2100. reason = REASON_NONE;
  2101. else
  2102. switch(cgpu->device_not_well_reason) {
  2103. case REASON_THREAD_FAIL_INIT:
  2104. reason = REASON_THREAD_FAIL_INIT_STR;
  2105. break;
  2106. case REASON_THREAD_ZERO_HASH:
  2107. reason = REASON_THREAD_ZERO_HASH_STR;
  2108. break;
  2109. case REASON_THREAD_FAIL_QUEUE:
  2110. reason = REASON_THREAD_FAIL_QUEUE_STR;
  2111. break;
  2112. case REASON_DEV_SICK_IDLE_60:
  2113. reason = REASON_DEV_SICK_IDLE_60_STR;
  2114. break;
  2115. case REASON_DEV_DEAD_IDLE_600:
  2116. reason = REASON_DEV_DEAD_IDLE_600_STR;
  2117. break;
  2118. case REASON_DEV_NOSTART:
  2119. reason = REASON_DEV_NOSTART_STR;
  2120. break;
  2121. case REASON_DEV_OVER_HEAT:
  2122. reason = REASON_DEV_OVER_HEAT_STR;
  2123. break;
  2124. case REASON_DEV_THERMAL_CUTOFF:
  2125. reason = REASON_DEV_THERMAL_CUTOFF_STR;
  2126. break;
  2127. case REASON_DEV_COMMS_ERROR:
  2128. reason = REASON_DEV_COMMS_ERROR_STR;
  2129. break;
  2130. default:
  2131. reason = REASON_UNKNOWN_STR;
  2132. break;
  2133. }
  2134. // ALL counters (and only counters) must start the name with a '*'
  2135. // Simplifies future external support for identifying new counters
  2136. root = api_add_int(root, "NOTIFY", &device, false);
  2137. root = api_add_string(root, "Name", cgpu->api->name, false);
  2138. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  2139. root = api_add_time(root, "Last Well", &(cgpu->device_last_well), false);
  2140. root = api_add_time(root, "Last Not Well", &(cgpu->device_last_not_well), false);
  2141. root = api_add_string(root, "Reason Not Well", reason, false);
  2142. root = api_add_int(root, "*Thread Fail Init", &(cgpu->thread_fail_init_count), false);
  2143. root = api_add_int(root, "*Thread Zero Hash", &(cgpu->thread_zero_hash_count), false);
  2144. root = api_add_int(root, "*Thread Fail Queue", &(cgpu->thread_fail_queue_count), false);
  2145. root = api_add_int(root, "*Dev Sick Idle 60s", &(cgpu->dev_sick_idle_60_count), false);
  2146. root = api_add_int(root, "*Dev Dead Idle 600s", &(cgpu->dev_dead_idle_600_count), false);
  2147. root = api_add_int(root, "*Dev Nostart", &(cgpu->dev_nostart_count), false);
  2148. root = api_add_int(root, "*Dev Over Heat", &(cgpu->dev_over_heat_count), false);
  2149. root = api_add_int(root, "*Dev Thermal Cutoff", &(cgpu->dev_thermal_cutoff_count), false);
  2150. root = api_add_int(root, "*Dev Comms Error", &(cgpu->dev_comms_error_count), false);
  2151. if (isjson && (device > 0))
  2152. strcat(io_buffer, COMMA);
  2153. root = print_data(root, buf, isjson);
  2154. strcat(io_buffer, buf);
  2155. }
  2156. static void notify(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, char group)
  2157. {
  2158. int i;
  2159. if (total_devices == 0) {
  2160. strcpy(io_buffer, message(MSG_NODEVS, 0, NULL, isjson));
  2161. return;
  2162. }
  2163. strcpy(io_buffer, message(MSG_NOTIFY, 0, NULL, isjson));
  2164. if (isjson) {
  2165. strcat(io_buffer, COMMA);
  2166. strcat(io_buffer, JSON_NOTIFY);
  2167. }
  2168. for (i = 0; i < total_devices; i++)
  2169. notifystatus(i, devices[i], isjson, group);
  2170. if (isjson)
  2171. strcat(io_buffer, JSON_CLOSE);
  2172. }
  2173. static void devdetails(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2174. {
  2175. struct api_data *root = NULL;
  2176. char buf[TMPBUFSIZ];
  2177. struct cgpu_info *cgpu;
  2178. int i;
  2179. if (total_devices == 0) {
  2180. strcpy(io_buffer, message(MSG_NODEVS, 0, NULL, isjson));
  2181. return;
  2182. }
  2183. strcpy(io_buffer, message(MSG_DEVDETAILS, 0, NULL, isjson));
  2184. if (isjson) {
  2185. strcat(io_buffer, COMMA);
  2186. strcat(io_buffer, JSON_DEVDETAILS);
  2187. }
  2188. for (i = 0; i < total_devices; i++) {
  2189. cgpu = devices[i];
  2190. root = api_add_int(root, "DEVDETAILS", &i, false);
  2191. root = api_add_string(root, "Name", cgpu->api->name, false);
  2192. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  2193. root = api_add_string(root, "Driver", cgpu->api->dname, false);
  2194. root = api_add_const(root, "Kernel", cgpu->kname ? : BLANK, false);
  2195. root = api_add_const(root, "Model", cgpu->name ? : BLANK, false);
  2196. root = api_add_const(root, "Device Path", cgpu->device_path ? : BLANK, false);
  2197. if (isjson && (i > 0))
  2198. strcat(io_buffer, COMMA);
  2199. root = print_data(root, buf, isjson);
  2200. strcat(io_buffer, buf);
  2201. }
  2202. if (isjson)
  2203. strcat(io_buffer, JSON_CLOSE);
  2204. }
  2205. void dosave(__maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2206. {
  2207. char filename[PATH_MAX];
  2208. FILE *fcfg;
  2209. char *ptr;
  2210. if (param == NULL || *param == '\0') {
  2211. default_save_file(filename);
  2212. param = filename;
  2213. }
  2214. fcfg = fopen(param, "w");
  2215. if (!fcfg) {
  2216. ptr = escape_string(param, isjson);
  2217. strcpy(io_buffer, message(MSG_BADFN, 0, ptr, isjson));
  2218. if (ptr != param)
  2219. free(ptr);
  2220. ptr = NULL;
  2221. return;
  2222. }
  2223. write_config(fcfg);
  2224. fclose(fcfg);
  2225. ptr = escape_string(param, isjson);
  2226. strcpy(io_buffer, message(MSG_SAVED, 0, ptr, isjson));
  2227. if (ptr != param)
  2228. free(ptr);
  2229. ptr = NULL;
  2230. }
  2231. static int itemstats(int i, char *id, struct cgminer_stats *stats, struct cgminer_pool_stats *pool_stats, struct api_data *extra, bool isjson)
  2232. {
  2233. struct api_data *root = NULL;
  2234. char buf[TMPBUFSIZ];
  2235. root = api_add_int(root, "STATS", &i, false);
  2236. root = api_add_string(root, "ID", id, false);
  2237. root = api_add_elapsed(root, "Elapsed", &(total_secs), false);
  2238. root = api_add_uint32(root, "Calls", &(stats->getwork_calls), false);
  2239. root = api_add_timeval(root, "Wait", &(stats->getwork_wait), false);
  2240. root = api_add_timeval(root, "Max", &(stats->getwork_wait_max), false);
  2241. root = api_add_timeval(root, "Min", &(stats->getwork_wait_min), false);
  2242. if (pool_stats) {
  2243. root = api_add_uint32(root, "Pool Calls", &(pool_stats->getwork_calls), false);
  2244. root = api_add_uint32(root, "Pool Attempts", &(pool_stats->getwork_attempts), false);
  2245. root = api_add_timeval(root, "Pool Wait", &(pool_stats->getwork_wait), false);
  2246. root = api_add_timeval(root, "Pool Max", &(pool_stats->getwork_wait_max), false);
  2247. root = api_add_timeval(root, "Pool Min", &(pool_stats->getwork_wait_min), false);
  2248. root = api_add_double(root, "Pool Av", &(pool_stats->getwork_wait_rolling), false);
  2249. }
  2250. if (extra)
  2251. root = api_add_extra(root, extra);
  2252. if (isjson && (i > 0))
  2253. strcat(io_buffer, COMMA);
  2254. root = print_data(root, buf, isjson);
  2255. strcat(io_buffer, buf);
  2256. return ++i;
  2257. }
  2258. static void minerstats(__maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2259. {
  2260. struct api_data *extra;
  2261. char id[20];
  2262. int i, j;
  2263. strcpy(io_buffer, message(MSG_MINESTATS, 0, NULL, isjson));
  2264. if (isjson) {
  2265. strcat(io_buffer, COMMA);
  2266. strcat(io_buffer, JSON_MINESTATS);
  2267. }
  2268. i = 0;
  2269. for (j = 0; j < total_devices; j++) {
  2270. struct cgpu_info *cgpu = devices[j];
  2271. if (cgpu && cgpu->api) {
  2272. if (cgpu->api->get_api_stats)
  2273. extra = cgpu->api->get_api_stats(cgpu);
  2274. else
  2275. extra = NULL;
  2276. sprintf(id, "%s%d", cgpu->api->name, cgpu->device_id);
  2277. i = itemstats(i, id, &(cgpu->cgminer_stats), NULL, extra, isjson);
  2278. }
  2279. }
  2280. for (j = 0; j < total_pools; j++) {
  2281. struct pool *pool = pools[j];
  2282. sprintf(id, "POOL%d", j);
  2283. i = itemstats(i, id, &(pool->cgminer_stats), &(pool->cgminer_pool_stats), NULL, isjson);
  2284. }
  2285. if (isjson)
  2286. strcat(io_buffer, JSON_CLOSE);
  2287. }
  2288. static void checkcommand(__maybe_unused SOCKETTYPE c, char *param, bool isjson, char group);
  2289. struct CMDS {
  2290. char *name;
  2291. void (*func)(SOCKETTYPE, char *, bool, char);
  2292. bool iswritemode;
  2293. } cmds[] = {
  2294. { "version", apiversion, false },
  2295. { "config", minerconfig, false },
  2296. { "devs", devstatus, false },
  2297. { "pools", poolstatus, false },
  2298. { "summary", summary, false },
  2299. #ifdef HAVE_OPENCL
  2300. { "gpuenable", gpuenable, true },
  2301. { "gpudisable", gpudisable, true },
  2302. { "gpurestart", gpurestart, true },
  2303. { "gpu", gpudev, false },
  2304. #endif
  2305. #ifdef HAVE_AN_FPGA
  2306. { "pga", pgadev, false },
  2307. { "pgaenable", pgaenable, true },
  2308. { "pgadisable", pgadisable, true },
  2309. #endif
  2310. #ifdef WANT_CPUMINE
  2311. { "cpu", cpudev, false },
  2312. #endif
  2313. { "gpucount", gpucount, false },
  2314. { "pgacount", pgacount, false },
  2315. { "cpucount", cpucount, false },
  2316. { "switchpool", switchpool, true },
  2317. { "addpool", addpool, true },
  2318. { "poolpriority", poolpriority, true },
  2319. { "enablepool", enablepool, true },
  2320. { "disablepool", disablepool, true },
  2321. { "removepool", removepool, true },
  2322. #ifdef HAVE_OPENCL
  2323. { "gpuintensity", gpuintensity, true },
  2324. { "gpumem", gpumem, true },
  2325. { "gpuengine", gpuengine, true },
  2326. { "gpufan", gpufan, true },
  2327. { "gpuvddc", gpuvddc, true },
  2328. #endif
  2329. { "save", dosave, true },
  2330. { "quit", doquit, true },
  2331. { "privileged", privileged, true },
  2332. { "notify", notify, false },
  2333. { "devdetails", devdetails, false },
  2334. { "restart", dorestart, true },
  2335. { "stats", minerstats, false },
  2336. { "check", checkcommand, false },
  2337. { NULL, NULL, false }
  2338. };
  2339. static void checkcommand(__maybe_unused SOCKETTYPE c, char *param, bool isjson, char group)
  2340. {
  2341. struct api_data *root = NULL;
  2342. char buf[TMPBUFSIZ];
  2343. char cmdbuf[100];
  2344. bool found, access;
  2345. int i;
  2346. if (param == NULL || *param == '\0') {
  2347. strcpy(io_buffer, message(MSG_MISCHK, 0, NULL, isjson));
  2348. return;
  2349. }
  2350. found = false;
  2351. access = false;
  2352. for (i = 0; cmds[i].name != NULL; i++) {
  2353. if (strcmp(cmds[i].name, param) == 0) {
  2354. found = true;
  2355. sprintf(cmdbuf, "|%s|", param);
  2356. if (ISPRIVGROUP(group) || strstr(COMMANDS(group), cmdbuf))
  2357. access = true;
  2358. break;
  2359. }
  2360. }
  2361. sprintf(io_buffer, isjson
  2362. ? "%s," JSON_CHECK
  2363. : "%s" _CHECK ",",
  2364. message(MSG_CHECK, 0, NULL, isjson));
  2365. root = api_add_const(root, "Exists", found ? YES : NO, false);
  2366. root = api_add_const(root, "Access", access ? YES : NO, false);
  2367. root = print_data(root, buf, isjson);
  2368. if (isjson)
  2369. strcat(buf, JSON_CLOSE);
  2370. strcat(io_buffer, buf);
  2371. }
  2372. static void send_result(SOCKETTYPE c, bool isjson)
  2373. {
  2374. int n;
  2375. int len;
  2376. if (isjson)
  2377. strcat(io_buffer, JSON_END);
  2378. len = strlen(io_buffer);
  2379. applog(LOG_DEBUG, "API: send reply: (%d) '%.10s%s'", len+1, io_buffer, len > 10 ? "..." : BLANK);
  2380. // ignore failure - it's closed immediately anyway
  2381. n = send(c, io_buffer, len+1, 0);
  2382. if (opt_debug) {
  2383. if (SOCKETFAIL(n))
  2384. applog(LOG_DEBUG, "API: send failed: %s", SOCKERRMSG);
  2385. else
  2386. applog(LOG_DEBUG, "API: sent %d", n);
  2387. }
  2388. }
  2389. static void tidyup(__maybe_unused void *arg)
  2390. {
  2391. mutex_lock(&quit_restart_lock);
  2392. bye = true;
  2393. if (sock != INVSOCK) {
  2394. shutdown(sock, SHUT_RDWR);
  2395. CLOSESOCKET(sock);
  2396. sock = INVSOCK;
  2397. }
  2398. if (ipaccess != NULL) {
  2399. free(ipaccess);
  2400. ipaccess = NULL;
  2401. }
  2402. if (msg_buffer != NULL) {
  2403. free(msg_buffer);
  2404. msg_buffer = NULL;
  2405. }
  2406. if (io_buffer != NULL) {
  2407. free(io_buffer);
  2408. io_buffer = NULL;
  2409. }
  2410. mutex_unlock(&quit_restart_lock);
  2411. }
  2412. /*
  2413. * Interpret --api-groups G:cmd1:cmd2:cmd3,P:cmd4,*,...
  2414. */
  2415. static void setup_groups()
  2416. {
  2417. char *api_groups = opt_api_groups ? opt_api_groups : (char *)BLANK;
  2418. char *buf, *ptr, *next, *colon;
  2419. char group;
  2420. char commands[TMPBUFSIZ];
  2421. char cmdbuf[100];
  2422. char *cmd;
  2423. bool addstar, did;
  2424. int i;
  2425. buf = malloc(strlen(api_groups) + 1);
  2426. if (unlikely(!buf))
  2427. quit(1, "Failed to malloc ipgroups buf");
  2428. strcpy(buf, api_groups);
  2429. next = buf;
  2430. // for each group defined
  2431. while (next && *next) {
  2432. ptr = next;
  2433. next = strchr(ptr, ',');
  2434. if (next)
  2435. *(next++) = '\0';
  2436. // Validate the group
  2437. if (*(ptr+1) != ':') {
  2438. colon = strchr(ptr, ':');
  2439. if (colon)
  2440. *colon = '\0';
  2441. applog(LOG_WARNING, "API invalid group name '%s'", ptr);
  2442. quit(1, INVAPIGROUPS);
  2443. }
  2444. group = GROUP(*ptr);
  2445. if (!VALIDGROUP(group)) {
  2446. applog(LOG_WARNING, "API invalid group name '%c'", *ptr);
  2447. quit(1, INVAPIGROUPS);
  2448. }
  2449. if (group == PRIVGROUP) {
  2450. applog(LOG_WARNING, "API group name can't be '%c'", PRIVGROUP);
  2451. quit(1, INVAPIGROUPS);
  2452. }
  2453. if (group == NOPRIVGROUP) {
  2454. applog(LOG_WARNING, "API group name can't be '%c'", NOPRIVGROUP);
  2455. quit(1, INVAPIGROUPS);
  2456. }
  2457. if (apigroups[GROUPOFFSET(group)].commands != NULL) {
  2458. applog(LOG_WARNING, "API duplicate group name '%c'", *ptr);
  2459. quit(1, INVAPIGROUPS);
  2460. }
  2461. ptr += 2;
  2462. // Validate the command list (and handle '*')
  2463. cmd = &(commands[0]);
  2464. *(cmd++) = SEPARATOR;
  2465. *cmd = '\0';
  2466. addstar = false;
  2467. while (ptr && *ptr) {
  2468. colon = strchr(ptr, ':');
  2469. if (colon)
  2470. *(colon++) = '\0';
  2471. if (strcmp(ptr, "*") == 0)
  2472. addstar = true;
  2473. else {
  2474. did = false;
  2475. for (i = 0; cmds[i].name != NULL; i++) {
  2476. if (strcasecmp(ptr, cmds[i].name) == 0) {
  2477. did = true;
  2478. break;
  2479. }
  2480. }
  2481. if (did) {
  2482. // skip duplicates
  2483. sprintf(cmdbuf, "|%s|", cmds[i].name);
  2484. if (strstr(commands, cmdbuf) == NULL) {
  2485. strcpy(cmd, cmds[i].name);
  2486. cmd += strlen(cmds[i].name);
  2487. *(cmd++) = SEPARATOR;
  2488. *cmd = '\0';
  2489. }
  2490. } else {
  2491. applog(LOG_WARNING, "API unknown command '%s' in group '%c'", ptr, group);
  2492. quit(1, INVAPIGROUPS);
  2493. }
  2494. }
  2495. ptr = colon;
  2496. }
  2497. // * = allow all non-iswritemode commands
  2498. if (addstar) {
  2499. for (i = 0; cmds[i].name != NULL; i++) {
  2500. if (cmds[i].iswritemode == false) {
  2501. // skip duplicates
  2502. sprintf(cmdbuf, "|%s|", cmds[i].name);
  2503. if (strstr(commands, cmdbuf) == NULL) {
  2504. strcpy(cmd, cmds[i].name);
  2505. cmd += strlen(cmds[i].name);
  2506. *(cmd++) = SEPARATOR;
  2507. *cmd = '\0';
  2508. }
  2509. }
  2510. }
  2511. }
  2512. ptr = apigroups[GROUPOFFSET(group)].commands = malloc(strlen(commands) + 1);
  2513. if (unlikely(!ptr))
  2514. quit(1, "Failed to malloc group commands buf");
  2515. strcpy(ptr, commands);
  2516. }
  2517. // Now define R (NOPRIVGROUP) as all non-iswritemode commands
  2518. cmd = &(commands[0]);
  2519. *(cmd++) = SEPARATOR;
  2520. *cmd = '\0';
  2521. for (i = 0; cmds[i].name != NULL; i++) {
  2522. if (cmds[i].iswritemode == false) {
  2523. strcpy(cmd, cmds[i].name);
  2524. cmd += strlen(cmds[i].name);
  2525. *(cmd++) = SEPARATOR;
  2526. *cmd = '\0';
  2527. }
  2528. }
  2529. ptr = apigroups[GROUPOFFSET(NOPRIVGROUP)].commands = malloc(strlen(commands) + 1);
  2530. if (unlikely(!ptr))
  2531. quit(1, "Failed to malloc noprivgroup commands buf");
  2532. strcpy(ptr, commands);
  2533. // W (PRIVGROUP) is handled as a special case since it simply means all commands
  2534. free(buf);
  2535. return;
  2536. }
  2537. /*
  2538. * Interpret [W:]IP[/Prefix][,[R|W:]IP2[/Prefix2][,...]] --api-allow option
  2539. * special case of 0/0 allows /0 (means all IP addresses)
  2540. */
  2541. #define ALLIP4 "0/0"
  2542. /*
  2543. * N.B. IP4 addresses are by Definition 32bit big endian on all platforms
  2544. */
  2545. static void setup_ipaccess()
  2546. {
  2547. char *buf, *ptr, *comma, *slash, *dot;
  2548. int ipcount, mask, octet, i;
  2549. char group;
  2550. buf = malloc(strlen(opt_api_allow) + 1);
  2551. if (unlikely(!buf))
  2552. quit(1, "Failed to malloc ipaccess buf");
  2553. strcpy(buf, opt_api_allow);
  2554. ipcount = 1;
  2555. ptr = buf;
  2556. while (*ptr)
  2557. if (*(ptr++) == ',')
  2558. ipcount++;
  2559. // possibly more than needed, but never less
  2560. ipaccess = calloc(ipcount, sizeof(struct IP4ACCESS));
  2561. if (unlikely(!ipaccess))
  2562. quit(1, "Failed to calloc ipaccess");
  2563. ips = 0;
  2564. ptr = buf;
  2565. while (ptr && *ptr) {
  2566. while (*ptr == ' ' || *ptr == '\t')
  2567. ptr++;
  2568. if (*ptr == ',') {
  2569. ptr++;
  2570. continue;
  2571. }
  2572. comma = strchr(ptr, ',');
  2573. if (comma)
  2574. *(comma++) = '\0';
  2575. group = NOPRIVGROUP;
  2576. if (isalpha(*ptr) && *(ptr+1) == ':') {
  2577. if (DEFINEDGROUP(*ptr))
  2578. group = GROUP(*ptr);
  2579. ptr += 2;
  2580. }
  2581. ipaccess[ips].group = group;
  2582. if (strcmp(ptr, ALLIP4) == 0)
  2583. ipaccess[ips].ip = ipaccess[ips].mask = 0;
  2584. else {
  2585. slash = strchr(ptr, '/');
  2586. if (!slash)
  2587. ipaccess[ips].mask = 0xffffffff;
  2588. else {
  2589. *(slash++) = '\0';
  2590. mask = atoi(slash);
  2591. if (mask < 1 || mask > 32)
  2592. goto popipo; // skip invalid/zero
  2593. ipaccess[ips].mask = 0;
  2594. while (mask-- >= 0) {
  2595. octet = 1 << (mask % 8);
  2596. ipaccess[ips].mask |= (octet << (24 - (8 * (mask >> 3))));
  2597. }
  2598. }
  2599. ipaccess[ips].ip = 0; // missing default to '.0'
  2600. for (i = 0; ptr && (i < 4); i++) {
  2601. dot = strchr(ptr, '.');
  2602. if (dot)
  2603. *(dot++) = '\0';
  2604. octet = atoi(ptr);
  2605. if (octet < 0 || octet > 0xff)
  2606. goto popipo; // skip invalid
  2607. ipaccess[ips].ip |= (octet << (24 - (i * 8)));
  2608. ptr = dot;
  2609. }
  2610. ipaccess[ips].ip &= ipaccess[ips].mask;
  2611. }
  2612. ips++;
  2613. popipo:
  2614. ptr = comma;
  2615. }
  2616. free(buf);
  2617. }
  2618. static void *quit_thread(__maybe_unused void *userdata)
  2619. {
  2620. // allow thread creator to finish whatever it's doing
  2621. mutex_lock(&quit_restart_lock);
  2622. mutex_unlock(&quit_restart_lock);
  2623. if (opt_debug)
  2624. applog(LOG_DEBUG, "API: killing cgminer");
  2625. kill_work();
  2626. return NULL;
  2627. }
  2628. static void *restart_thread(__maybe_unused void *userdata)
  2629. {
  2630. // allow thread creator to finish whatever it's doing
  2631. mutex_lock(&quit_restart_lock);
  2632. mutex_unlock(&quit_restart_lock);
  2633. if (opt_debug)
  2634. applog(LOG_DEBUG, "API: restarting cgminer");
  2635. app_restart();
  2636. return NULL;
  2637. }
  2638. void api(int api_thr_id)
  2639. {
  2640. struct thr_info bye_thr;
  2641. char buf[TMPBUFSIZ];
  2642. char param_buf[TMPBUFSIZ];
  2643. const char *localaddr = "127.0.0.1";
  2644. SOCKETTYPE c;
  2645. int n, bound;
  2646. char *connectaddr;
  2647. char *binderror;
  2648. time_t bindstart;
  2649. short int port = opt_api_port;
  2650. struct sockaddr_in serv;
  2651. struct sockaddr_in cli;
  2652. socklen_t clisiz;
  2653. char cmdbuf[100];
  2654. char *cmd;
  2655. char *param;
  2656. bool addrok;
  2657. char group;
  2658. json_error_t json_err;
  2659. json_t *json_config;
  2660. json_t *json_val;
  2661. bool isjson;
  2662. bool did;
  2663. int i;
  2664. mutex_init(&quit_restart_lock);
  2665. pthread_cleanup_push(tidyup, NULL);
  2666. my_thr_id = api_thr_id;
  2667. if (!opt_api_listen) {
  2668. applog(LOG_DEBUG, "API not running%s", UNAVAILABLE);
  2669. return;
  2670. }
  2671. setup_groups();
  2672. if (opt_api_allow) {
  2673. setup_ipaccess();
  2674. if (ips == 0) {
  2675. applog(LOG_WARNING, "API not running (no valid IPs specified)%s", UNAVAILABLE);
  2676. return;
  2677. }
  2678. }
  2679. /* This should be done before curl in needed
  2680. * to ensure curl has already called WSAStartup() in windows */
  2681. sleep(opt_log_interval);
  2682. sock = socket(AF_INET, SOCK_STREAM, 0);
  2683. if (sock == INVSOCK) {
  2684. applog(LOG_ERR, "API1 initialisation failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  2685. return;
  2686. }
  2687. memset(&serv, 0, sizeof(serv));
  2688. serv.sin_family = AF_INET;
  2689. if (!opt_api_allow && !opt_api_network) {
  2690. serv.sin_addr.s_addr = inet_addr(localaddr);
  2691. if (serv.sin_addr.s_addr == (in_addr_t)INVINETADDR) {
  2692. applog(LOG_ERR, "API2 initialisation failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  2693. return;
  2694. }
  2695. }
  2696. serv.sin_port = htons(port);
  2697. // try for more than 1 minute ... in case the old one hasn't completely gone yet
  2698. bound = 0;
  2699. bindstart = time(NULL);
  2700. while (bound == 0) {
  2701. if (SOCKETFAIL(bind(sock, (struct sockaddr *)(&serv), sizeof(serv)))) {
  2702. binderror = SOCKERRMSG;
  2703. if ((time(NULL) - bindstart) > 61)
  2704. break;
  2705. else {
  2706. applog(LOG_WARNING, "API bind to port %d failed - trying again in 30sec", port);
  2707. sleep(30);
  2708. }
  2709. } else
  2710. bound = 1;
  2711. }
  2712. if (bound == 0) {
  2713. applog(LOG_ERR, "API bind to port %d failed (%s)%s", port, binderror, UNAVAILABLE);
  2714. return;
  2715. }
  2716. if (SOCKETFAIL(listen(sock, QUEUE))) {
  2717. applog(LOG_ERR, "API3 initialisation failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  2718. CLOSESOCKET(sock);
  2719. return;
  2720. }
  2721. if (opt_api_allow)
  2722. applog(LOG_WARNING, "API running in IP access mode");
  2723. else {
  2724. if (opt_api_network)
  2725. applog(LOG_WARNING, "API running in UNRESTRICTED access mode");
  2726. else
  2727. applog(LOG_WARNING, "API running in local access mode");
  2728. }
  2729. io_buffer = malloc(MYBUFSIZ+1);
  2730. msg_buffer = malloc(MYBUFSIZ+1);
  2731. while (!bye) {
  2732. clisiz = sizeof(cli);
  2733. if (SOCKETFAIL(c = accept(sock, (struct sockaddr *)(&cli), &clisiz))) {
  2734. applog(LOG_ERR, "API failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  2735. goto die;
  2736. }
  2737. connectaddr = inet_ntoa(cli.sin_addr);
  2738. addrok = false;
  2739. group = NOPRIVGROUP;
  2740. if (opt_api_allow) {
  2741. int client_ip = htonl(cli.sin_addr.s_addr);
  2742. for (i = 0; i < ips; i++) {
  2743. if ((client_ip & ipaccess[i].mask) == ipaccess[i].ip) {
  2744. addrok = true;
  2745. group = ipaccess[i].group;
  2746. break;
  2747. }
  2748. }
  2749. } else {
  2750. if (opt_api_network)
  2751. addrok = true;
  2752. else
  2753. addrok = (strcmp(connectaddr, localaddr) == 0);
  2754. }
  2755. if (opt_debug)
  2756. applog(LOG_DEBUG, "API: connection from %s - %s", connectaddr, addrok ? "Accepted" : "Ignored");
  2757. if (addrok) {
  2758. n = recv(c, &buf[0], TMPBUFSIZ-1, 0);
  2759. if (SOCKETFAIL(n))
  2760. buf[0] = '\0';
  2761. else
  2762. buf[n] = '\0';
  2763. if (opt_debug) {
  2764. if (SOCKETFAIL(n))
  2765. applog(LOG_DEBUG, "API: recv failed: %s", SOCKERRMSG);
  2766. else
  2767. applog(LOG_DEBUG, "API: recv command: (%d) '%s'", n, buf);
  2768. }
  2769. if (!SOCKETFAIL(n)) {
  2770. // the time of the request in now
  2771. when = time(NULL);
  2772. did = false;
  2773. if (*buf != ISJSON) {
  2774. isjson = false;
  2775. param = strchr(buf, SEPARATOR);
  2776. if (param != NULL)
  2777. *(param++) = '\0';
  2778. cmd = buf;
  2779. }
  2780. else {
  2781. isjson = true;
  2782. param = NULL;
  2783. #if JANSSON_MAJOR_VERSION > 2 || (JANSSON_MAJOR_VERSION == 2 && JANSSON_MINOR_VERSION > 0)
  2784. json_config = json_loadb(buf, n, 0, &json_err);
  2785. #elif JANSSON_MAJOR_VERSION > 1
  2786. json_config = json_loads(buf, 0, &json_err);
  2787. #else
  2788. json_config = json_loads(buf, &json_err);
  2789. #endif
  2790. if (!json_is_object(json_config)) {
  2791. strcpy(io_buffer, message(MSG_INVJSON, 0, NULL, isjson));
  2792. send_result(c, isjson);
  2793. did = true;
  2794. }
  2795. else {
  2796. json_val = json_object_get(json_config, JSON_COMMAND);
  2797. if (json_val == NULL) {
  2798. strcpy(io_buffer, message(MSG_MISCMD, 0, NULL, isjson));
  2799. send_result(c, isjson);
  2800. did = true;
  2801. }
  2802. else {
  2803. if (!json_is_string(json_val)) {
  2804. strcpy(io_buffer, message(MSG_INVCMD, 0, NULL, isjson));
  2805. send_result(c, isjson);
  2806. did = true;
  2807. }
  2808. else {
  2809. cmd = (char *)json_string_value(json_val);
  2810. json_val = json_object_get(json_config, JSON_PARAMETER);
  2811. if (json_is_string(json_val))
  2812. param = (char *)json_string_value(json_val);
  2813. else if (json_is_integer(json_val)) {
  2814. sprintf(param_buf, "%d", (int)json_integer_value(json_val));
  2815. param = param_buf;
  2816. } else if (json_is_real(json_val)) {
  2817. sprintf(param_buf, "%f", (double)json_real_value(json_val));
  2818. param = param_buf;
  2819. }
  2820. }
  2821. }
  2822. }
  2823. }
  2824. if (!did)
  2825. for (i = 0; cmds[i].name != NULL; i++) {
  2826. if (strcmp(cmd, cmds[i].name) == 0) {
  2827. sprintf(cmdbuf, "|%s|", cmd);
  2828. if (ISPRIVGROUP(group) || strstr(COMMANDS(group), cmdbuf))
  2829. (cmds[i].func)(c, param, isjson, group);
  2830. else {
  2831. strcpy(io_buffer, message(MSG_ACCDENY, 0, cmds[i].name, isjson));
  2832. applog(LOG_DEBUG, "API: access denied to '%s' for '%s' command", connectaddr, cmds[i].name);
  2833. }
  2834. send_result(c, isjson);
  2835. did = true;
  2836. break;
  2837. }
  2838. }
  2839. if (!did) {
  2840. strcpy(io_buffer, message(MSG_INVCMD, 0, NULL, isjson));
  2841. send_result(c, isjson);
  2842. }
  2843. }
  2844. }
  2845. CLOSESOCKET(c);
  2846. }
  2847. die:
  2848. /* Blank line fix for older compilers since pthread_cleanup_pop is a
  2849. * macro that gets confused by a label existing immediately before it
  2850. */
  2851. ;
  2852. pthread_cleanup_pop(true);
  2853. if (opt_debug)
  2854. applog(LOG_DEBUG, "API: terminating due to: %s",
  2855. do_a_quit ? "QUIT" : (do_a_restart ? "RESTART" : (bye ? "BYE" : "UNKNOWN!")));
  2856. mutex_lock(&quit_restart_lock);
  2857. if (do_a_restart) {
  2858. if (thr_info_create(&bye_thr, NULL, restart_thread, &bye_thr)) {
  2859. mutex_unlock(&quit_restart_lock);
  2860. quit(1, "API failed to initiate a restart - aborting");
  2861. }
  2862. pthread_detach(bye_thr.pth);
  2863. } else if (do_a_quit) {
  2864. if (thr_info_create(&bye_thr, NULL, quit_thread, &bye_thr)) {
  2865. mutex_unlock(&quit_restart_lock);
  2866. quit(1, "API failed to initiate a clean quit - aborting");
  2867. }
  2868. pthread_detach(bye_thr.pth);
  2869. }
  2870. mutex_unlock(&quit_restart_lock);
  2871. }