api.c 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256
  1. /*
  2. * Copyright 2011-2014 Andrew Smith
  3. * Copyright 2011-2014 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. #define _MEMORY_DEBUG_MASTER 1
  11. #include "config.h"
  12. #include <stdio.h>
  13. #include <ctype.h>
  14. #include <stdlib.h>
  15. #include <string.h>
  16. #include <stdbool.h>
  17. #include <stdint.h>
  18. #include <unistd.h>
  19. #include <limits.h>
  20. #include <sys/types.h>
  21. #include "compat.h"
  22. #include "miner.h"
  23. #include "util.h"
  24. #include "klist.h"
  25. #if defined(USE_BFLSC) || defined(USE_AVALON) || defined(USE_AVALON2) || defined(USE_AVALON4) || \
  26. defined(USE_HASHFAST) || defined(USE_BITFURY) || defined(USE_BLOCKERUPTER) || defined(USE_KLONDIKE) || \
  27. defined(USE_KNC) || defined(USE_BAB) || defined(USE_DRILLBIT) || \
  28. defined(USE_MINION) || defined(USE_COINTERRA) || defined(USE_BITMINE_A1) || \
  29. defined(USE_BMSC) || defined(USE_BITMAIN) || defined(USE_SP10) || defined(USE_SP30) || \
  30. defined(USE_ICARUS) || defined(USE_HASHRATIO)
  31. #define HAVE_AN_ASIC 1
  32. #endif
  33. #if defined(USE_BITFORCE) || defined(USE_MODMINER)
  34. #define HAVE_AN_FPGA 1
  35. #endif
  36. // BUFSIZ varies on Windows and Linux
  37. #define TMPBUFSIZ 8192
  38. // Number of requests to queue - normally would be small
  39. // However lots of PGA's may mean more
  40. #define QUEUE 100
  41. #if defined WIN32
  42. static char WSAbuf[1024];
  43. struct WSAERRORS {
  44. int id;
  45. char *code;
  46. } WSAErrors[] = {
  47. { 0, "No error" },
  48. { WSAEINTR, "Interrupted system call" },
  49. { WSAEBADF, "Bad file number" },
  50. { WSAEACCES, "Permission denied" },
  51. { WSAEFAULT, "Bad address" },
  52. { WSAEINVAL, "Invalid argument" },
  53. { WSAEMFILE, "Too many open sockets" },
  54. { WSAEWOULDBLOCK, "Operation would block" },
  55. { WSAEINPROGRESS, "Operation now in progress" },
  56. { WSAEALREADY, "Operation already in progress" },
  57. { WSAENOTSOCK, "Socket operation on non-socket" },
  58. { WSAEDESTADDRREQ, "Destination address required" },
  59. { WSAEMSGSIZE, "Message too long" },
  60. { WSAEPROTOTYPE, "Protocol wrong type for socket" },
  61. { WSAENOPROTOOPT, "Bad protocol option" },
  62. { WSAEPROTONOSUPPORT, "Protocol not supported" },
  63. { WSAESOCKTNOSUPPORT, "Socket type not supported" },
  64. { WSAEOPNOTSUPP, "Operation not supported on socket" },
  65. { WSAEPFNOSUPPORT, "Protocol family not supported" },
  66. { WSAEAFNOSUPPORT, "Address family not supported" },
  67. { WSAEADDRINUSE, "Address already in use" },
  68. { WSAEADDRNOTAVAIL, "Can't assign requested address" },
  69. { WSAENETDOWN, "Network is down" },
  70. { WSAENETUNREACH, "Network is unreachable" },
  71. { WSAENETRESET, "Net connection reset" },
  72. { WSAECONNABORTED, "Software caused connection abort" },
  73. { WSAECONNRESET, "Connection reset by peer" },
  74. { WSAENOBUFS, "No buffer space available" },
  75. { WSAEISCONN, "Socket is already connected" },
  76. { WSAENOTCONN, "Socket is not connected" },
  77. { WSAESHUTDOWN, "Can't send after socket shutdown" },
  78. { WSAETOOMANYREFS, "Too many references, can't splice" },
  79. { WSAETIMEDOUT, "Connection timed out" },
  80. { WSAECONNREFUSED, "Connection refused" },
  81. { WSAELOOP, "Too many levels of symbolic links" },
  82. { WSAENAMETOOLONG, "File name too long" },
  83. { WSAEHOSTDOWN, "Host is down" },
  84. { WSAEHOSTUNREACH, "No route to host" },
  85. { WSAENOTEMPTY, "Directory not empty" },
  86. { WSAEPROCLIM, "Too many processes" },
  87. { WSAEUSERS, "Too many users" },
  88. { WSAEDQUOT, "Disc quota exceeded" },
  89. { WSAESTALE, "Stale NFS file handle" },
  90. { WSAEREMOTE, "Too many levels of remote in path" },
  91. { WSASYSNOTREADY, "Network system is unavailable" },
  92. { WSAVERNOTSUPPORTED, "Winsock version out of range" },
  93. { WSANOTINITIALISED, "WSAStartup not yet called" },
  94. { WSAEDISCON, "Graceful shutdown in progress" },
  95. { WSAHOST_NOT_FOUND, "Host not found" },
  96. { WSANO_DATA, "No host data of that type was found" },
  97. { -1, "Unknown error code" }
  98. };
  99. char *WSAErrorMsg(void) {
  100. int i;
  101. int id = WSAGetLastError();
  102. /* Assume none of them are actually -1 */
  103. for (i = 0; WSAErrors[i].id != -1; i++)
  104. if (WSAErrors[i].id == id)
  105. break;
  106. sprintf(WSAbuf, "Socket Error: (%d) %s", id, WSAErrors[i].code);
  107. return &(WSAbuf[0]);
  108. }
  109. #endif
  110. #if defined(__APPLE__)
  111. #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
  112. #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
  113. #endif
  114. static const char *UNAVAILABLE = " - API will not be available";
  115. static const char *MUNAVAILABLE = " - API multicast listener will not be available";
  116. static const char *BLANK = "";
  117. static const char *COMMA = ",";
  118. #define COMSTR ","
  119. static const char SEPARATOR = '|';
  120. #define SEPSTR "|"
  121. #define CMDJOIN '+'
  122. #define JOIN_CMD "CMD="
  123. #define BETWEEN_JOIN SEPSTR
  124. static const char *APIVERSION = "3.1";
  125. static const char *DEAD = "Dead";
  126. static const char *SICK = "Sick";
  127. static const char *NOSTART = "NoStart";
  128. static const char *INIT = "Initialising";
  129. static const char *DISABLED = "Disabled";
  130. static const char *ALIVE = "Alive";
  131. static const char *REJECTING = "Rejecting";
  132. static const char *UNKNOWN = "Unknown";
  133. static __maybe_unused const char *NONE = "None";
  134. static const char *YES = "Y";
  135. static const char *NO = "N";
  136. static const char *NULLSTR = "(null)";
  137. static const char *TRUESTR = "true";
  138. static const char *FALSESTR = "false";
  139. static const char *SHA256STR = "sha256";
  140. static const char *DEVICECODE = ""
  141. #ifdef USE_BMSC
  142. "BTM "
  143. #endif
  144. #ifdef USE_BITMAIN
  145. "BTM "
  146. #endif
  147. #ifdef USE_AVALON
  148. "AVA "
  149. #endif
  150. #ifdef USE_BAB
  151. "BaB "
  152. #endif
  153. #ifdef USE_BFLSC
  154. "BAS "
  155. #endif
  156. #ifdef USE_BITFORCE
  157. "BFL "
  158. #endif
  159. #ifdef USE_BITFURY
  160. "BFU "
  161. #endif
  162. #ifdef USE_BLOCKERUPTER
  163. "BET "
  164. #endif
  165. #ifdef USE_DRILLBIT
  166. "DRB "
  167. #endif
  168. #ifdef USE_HASHFAST
  169. "HFA "
  170. #endif
  171. #ifdef USE_HASHRATIO
  172. "HRO "
  173. #endif
  174. #ifdef USE_BITMINE_A1
  175. "BA1 "
  176. #endif
  177. #ifdef USE_ICARUS
  178. "ICA "
  179. #endif
  180. #ifdef USE_KNC
  181. "KnC "
  182. #endif
  183. #ifdef USE_MINION
  184. "MBA "
  185. #endif
  186. #ifdef USE_MODMINER
  187. "MMQ "
  188. #endif
  189. #ifdef USE_COINTERRA
  190. "CTA "
  191. #endif
  192. #ifdef USE_SP10
  193. "SPN "
  194. #endif
  195. #ifdef USE_SP30
  196. "S30 "
  197. #endif
  198. "";
  199. static const char *OSINFO =
  200. #if defined(__linux)
  201. "Linux";
  202. #else
  203. #if defined(__APPLE__)
  204. "Apple";
  205. #else
  206. #if defined (WIN32)
  207. "Windows";
  208. #else
  209. #if defined(unix)
  210. "Unix";
  211. #else
  212. "Unknown";
  213. #endif
  214. #endif
  215. #endif
  216. #endif
  217. #define _DEVS "DEVS"
  218. #define _POOLS "POOLS"
  219. #define _SUMMARY "SUMMARY"
  220. #define _STATUS "STATUS"
  221. #define _VERSION "VERSION"
  222. #define _MINECONFIG "CONFIG"
  223. #ifdef HAVE_AN_FPGA
  224. #define _PGA "PGA"
  225. #endif
  226. #ifdef HAVE_AN_ASIC
  227. #define _ASC "ASC"
  228. #endif
  229. #define _PGAS "PGAS"
  230. #define _ASCS "ASCS"
  231. #define _NOTIFY "NOTIFY"
  232. #define _DEVDETAILS "DEVDETAILS"
  233. #define _BYE "BYE"
  234. #define _RESTART "RESTART"
  235. #define _MINESTATS "STATS"
  236. #define _CHECK "CHECK"
  237. #define _MINECOIN "COIN"
  238. #define _DEBUGSET "DEBUG"
  239. #define _SETCONFIG "SETCONFIG"
  240. #define _USBSTATS "USBSTATS"
  241. #define _LCD "LCD"
  242. static const char ISJSON = '{';
  243. #define JSON0 "{"
  244. #define JSON1 "\""
  245. #define JSON2 "\":["
  246. #define JSON3 "]"
  247. #define JSON4 ",\"id\":1"
  248. // If anyone cares, id=0 for truncated output
  249. #define JSON4_TRUNCATED ",\"id\":0"
  250. #define JSON5 "}"
  251. #define JSON6 "\":"
  252. #define JSON_START JSON0
  253. #define JSON_DEVS JSON1 _DEVS JSON2
  254. #define JSON_POOLS JSON1 _POOLS JSON2
  255. #define JSON_SUMMARY JSON1 _SUMMARY JSON2
  256. #define JSON_STATUS JSON1 _STATUS JSON2
  257. #define JSON_VERSION JSON1 _VERSION JSON2
  258. #define JSON_MINECONFIG JSON1 _MINECONFIG JSON2
  259. #define JSON_ACTION JSON0 JSON1 _STATUS JSON6
  260. #ifdef HAVE_AN_FPGA
  261. #define JSON_PGA JSON1 _PGA JSON2
  262. #endif
  263. #ifdef HAVE_AN_ASIC
  264. #define JSON_ASC JSON1 _ASC JSON2
  265. #endif
  266. #define JSON_PGAS JSON1 _PGAS JSON2
  267. #define JSON_ASCS JSON1 _ASCS JSON2
  268. #define JSON_NOTIFY JSON1 _NOTIFY JSON2
  269. #define JSON_DEVDETAILS JSON1 _DEVDETAILS JSON2
  270. #define JSON_BYE JSON1 _BYE JSON1
  271. #define JSON_RESTART JSON1 _RESTART JSON1
  272. #define JSON_CLOSE JSON3
  273. #define JSON_MINESTATS JSON1 _MINESTATS JSON2
  274. #define JSON_CHECK JSON1 _CHECK JSON2
  275. #define JSON_MINECOIN JSON1 _MINECOIN JSON2
  276. #define JSON_DEBUGSET JSON1 _DEBUGSET JSON2
  277. #define JSON_SETCONFIG JSON1 _SETCONFIG JSON2
  278. #define JSON_USBSTATS JSON1 _USBSTATS JSON2
  279. #define JSON_LCD JSON1 _LCD JSON2
  280. #define JSON_END JSON4 JSON5
  281. #define JSON_END_TRUNCATED JSON4_TRUNCATED JSON5
  282. #define JSON_BETWEEN_JOIN ","
  283. static const char *JSON_COMMAND = "command";
  284. static const char *JSON_PARAMETER = "parameter";
  285. #define MSG_POOL 7
  286. #define MSG_NOPOOL 8
  287. #define MSG_DEVS 9
  288. #define MSG_NODEVS 10
  289. #define MSG_SUMM 11
  290. #define MSG_INVCMD 14
  291. #define MSG_MISID 15
  292. #define MSG_VERSION 22
  293. #define MSG_INVJSON 23
  294. #define MSG_MISCMD 24
  295. #define MSG_MISPID 25
  296. #define MSG_INVPID 26
  297. #define MSG_SWITCHP 27
  298. #define MSG_MISVAL 28
  299. #define MSG_NOADL 29
  300. #define MSG_INVINT 31
  301. #define MSG_MINECONFIG 33
  302. #define MSG_MISFN 42
  303. #define MSG_BADFN 43
  304. #define MSG_SAVED 44
  305. #define MSG_ACCDENY 45
  306. #define MSG_ACCOK 46
  307. #define MSG_ENAPOOL 47
  308. #define MSG_DISPOOL 48
  309. #define MSG_ALRENAP 49
  310. #define MSG_ALRDISP 50
  311. #define MSG_DISLASTP 51
  312. #define MSG_MISPDP 52
  313. #define MSG_INVPDP 53
  314. #define MSG_TOOMANYP 54
  315. #define MSG_ADDPOOL 55
  316. #ifdef HAVE_AN_FPGA
  317. #define MSG_PGANON 56
  318. #define MSG_PGADEV 57
  319. #define MSG_INVPGA 58
  320. #endif
  321. #define MSG_NUMPGA 59
  322. #define MSG_NOTIFY 60
  323. #ifdef HAVE_AN_FPGA
  324. #define MSG_PGALRENA 61
  325. #define MSG_PGALRDIS 62
  326. #define MSG_PGAENA 63
  327. #define MSG_PGADIS 64
  328. #define MSG_PGAUNW 65
  329. #endif
  330. #define MSG_REMLASTP 66
  331. #define MSG_ACTPOOL 67
  332. #define MSG_REMPOOL 68
  333. #define MSG_DEVDETAILS 69
  334. #define MSG_MINESTATS 70
  335. #define MSG_MISCHK 71
  336. #define MSG_CHECK 72
  337. #define MSG_POOLPRIO 73
  338. #define MSG_DUPPID 74
  339. #define MSG_MISBOOL 75
  340. #define MSG_INVBOOL 76
  341. #define MSG_FOO 77
  342. #define MSG_MINECOIN 78
  343. #define MSG_DEBUGSET 79
  344. #define MSG_PGAIDENT 80
  345. #define MSG_PGANOID 81
  346. #define MSG_SETCONFIG 82
  347. #define MSG_UNKCON 83
  348. #define MSG_INVNUM 84
  349. #define MSG_CONPAR 85
  350. #define MSG_CONVAL 86
  351. #define MSG_USBSTA 87
  352. #define MSG_NOUSTA 88
  353. #ifdef HAVE_AN_FPGA
  354. #define MSG_MISPGAOPT 89
  355. #define MSG_PGANOSET 90
  356. #define MSG_PGAHELP 91
  357. #define MSG_PGASETOK 92
  358. #define MSG_PGASETERR 93
  359. #endif
  360. #define MSG_ZERMIS 94
  361. #define MSG_ZERINV 95
  362. #define MSG_ZERSUM 96
  363. #define MSG_ZERNOSUM 97
  364. #define MSG_PGAUSBNODEV 98
  365. #define MSG_INVHPLG 99
  366. #define MSG_HOTPLUG 100
  367. #define MSG_DISHPLG 101
  368. #define MSG_NOHPLG 102
  369. #define MSG_MISHPLG 103
  370. #define MSG_NUMASC 104
  371. #ifdef HAVE_AN_ASIC
  372. #define MSG_ASCNON 105
  373. #define MSG_ASCDEV 106
  374. #define MSG_INVASC 107
  375. #define MSG_ASCLRENA 108
  376. #define MSG_ASCLRDIS 109
  377. #define MSG_ASCENA 110
  378. #define MSG_ASCDIS 111
  379. #define MSG_ASCUNW 112
  380. #define MSG_ASCIDENT 113
  381. #define MSG_ASCNOID 114
  382. #endif
  383. #define MSG_ASCUSBNODEV 115
  384. #ifdef HAVE_AN_ASIC
  385. #define MSG_MISASCOPT 116
  386. #define MSG_ASCNOSET 117
  387. #define MSG_ASCHELP 118
  388. #define MSG_ASCSETOK 119
  389. #define MSG_ASCSETERR 120
  390. #endif
  391. #define MSG_INVNEG 121
  392. #define MSG_SETQUOTA 122
  393. #define MSG_LOCKOK 123
  394. #define MSG_LOCKDIS 124
  395. #define MSG_LCD 125
  396. enum code_severity {
  397. SEVERITY_ERR,
  398. SEVERITY_WARN,
  399. SEVERITY_INFO,
  400. SEVERITY_SUCC,
  401. SEVERITY_FAIL
  402. };
  403. enum code_parameters {
  404. PARAM_PGA,
  405. PARAM_ASC,
  406. PARAM_PID,
  407. PARAM_PGAMAX,
  408. PARAM_ASCMAX,
  409. PARAM_PMAX,
  410. PARAM_POOLMAX,
  411. // Single generic case: have the code resolve it - see below
  412. PARAM_DMAX,
  413. PARAM_CMD,
  414. PARAM_POOL,
  415. PARAM_STR,
  416. PARAM_BOTH,
  417. PARAM_BOOL,
  418. PARAM_SET,
  419. PARAM_INT,
  420. PARAM_NONE
  421. };
  422. struct CODES {
  423. const enum code_severity severity;
  424. const int code;
  425. const enum code_parameters params;
  426. const char *description;
  427. } codes[] = {
  428. { SEVERITY_SUCC, MSG_POOL, PARAM_PMAX, "%d Pool(s)" },
  429. { SEVERITY_ERR, MSG_NOPOOL, PARAM_NONE, "No pools" },
  430. { SEVERITY_SUCC, MSG_DEVS, PARAM_DMAX,
  431. #ifdef HAVE_AN_ASIC
  432. "%d ASC(s)"
  433. #endif
  434. #if defined(HAVE_AN_ASIC) && defined(HAVE_AN_FPGA)
  435. " - "
  436. #endif
  437. #ifdef HAVE_AN_FPGA
  438. "%d PGA(s)"
  439. #endif
  440. },
  441. { SEVERITY_ERR, MSG_NODEVS, PARAM_NONE, "No "
  442. #ifdef HAVE_AN_ASIC
  443. "ASCs"
  444. #endif
  445. #if defined(HAVE_AN_ASIC) && defined(HAVE_AN_FPGA)
  446. "/"
  447. #endif
  448. #ifdef HAVE_AN_FPGA
  449. "PGAs"
  450. #endif
  451. },
  452. { SEVERITY_SUCC, MSG_SUMM, PARAM_NONE, "Summary" },
  453. { SEVERITY_ERR, MSG_INVCMD, PARAM_NONE, "Invalid command" },
  454. { SEVERITY_ERR, MSG_MISID, PARAM_NONE, "Missing device id parameter" },
  455. #ifdef HAVE_AN_FPGA
  456. { SEVERITY_ERR, MSG_PGANON, PARAM_NONE, "No PGAs" },
  457. { SEVERITY_SUCC, MSG_PGADEV, PARAM_PGA, "PGA%d" },
  458. { SEVERITY_ERR, MSG_INVPGA, PARAM_PGAMAX, "Invalid PGA id %d - range is 0 - %d" },
  459. { SEVERITY_INFO, MSG_PGALRENA,PARAM_PGA, "PGA %d already enabled" },
  460. { SEVERITY_INFO, MSG_PGALRDIS,PARAM_PGA, "PGA %d already disabled" },
  461. { SEVERITY_INFO, MSG_PGAENA, PARAM_PGA, "PGA %d sent enable message" },
  462. { SEVERITY_INFO, MSG_PGADIS, PARAM_PGA, "PGA %d set disable flag" },
  463. { SEVERITY_ERR, MSG_PGAUNW, PARAM_PGA, "PGA %d is not flagged WELL, cannot enable" },
  464. #endif
  465. { SEVERITY_SUCC, MSG_NUMPGA, PARAM_NONE, "PGA count" },
  466. { SEVERITY_SUCC, MSG_NUMASC, PARAM_NONE, "ASC count" },
  467. { SEVERITY_SUCC, MSG_VERSION, PARAM_NONE, "CGMiner versions" },
  468. { SEVERITY_ERR, MSG_INVJSON, PARAM_NONE, "Invalid JSON" },
  469. { SEVERITY_ERR, MSG_MISCMD, PARAM_CMD, "Missing JSON '%s'" },
  470. { SEVERITY_ERR, MSG_MISPID, PARAM_NONE, "Missing pool id parameter" },
  471. { SEVERITY_ERR, MSG_INVPID, PARAM_POOLMAX, "Invalid pool id %d - range is 0 - %d" },
  472. { SEVERITY_SUCC, MSG_SWITCHP, PARAM_POOL, "Switching to pool %d:'%s'" },
  473. { SEVERITY_SUCC, MSG_MINECONFIG,PARAM_NONE, "CGMiner config" },
  474. { SEVERITY_ERR, MSG_MISFN, PARAM_NONE, "Missing save filename parameter" },
  475. { SEVERITY_ERR, MSG_BADFN, PARAM_STR, "Can't open or create save file '%s'" },
  476. { SEVERITY_SUCC, MSG_SAVED, PARAM_STR, "Configuration saved to file '%s'" },
  477. { SEVERITY_ERR, MSG_ACCDENY, PARAM_STR, "Access denied to '%s' command" },
  478. { SEVERITY_SUCC, MSG_ACCOK, PARAM_NONE, "Privileged access OK" },
  479. { SEVERITY_SUCC, MSG_ENAPOOL, PARAM_POOL, "Enabling pool %d:'%s'" },
  480. { SEVERITY_SUCC, MSG_POOLPRIO,PARAM_NONE, "Changed pool priorities" },
  481. { SEVERITY_ERR, MSG_DUPPID, PARAM_PID, "Duplicate pool specified %d" },
  482. { SEVERITY_SUCC, MSG_DISPOOL, PARAM_POOL, "Disabling pool %d:'%s'" },
  483. { SEVERITY_INFO, MSG_ALRENAP, PARAM_POOL, "Pool %d:'%s' already enabled" },
  484. { SEVERITY_INFO, MSG_ALRDISP, PARAM_POOL, "Pool %d:'%s' already disabled" },
  485. { SEVERITY_ERR, MSG_DISLASTP,PARAM_POOL, "Cannot disable last active pool %d:'%s'" },
  486. { SEVERITY_ERR, MSG_MISPDP, PARAM_NONE, "Missing addpool details" },
  487. { SEVERITY_ERR, MSG_INVPDP, PARAM_STR, "Invalid addpool details '%s'" },
  488. { SEVERITY_ERR, MSG_TOOMANYP,PARAM_NONE, "Reached maximum number of pools (%d)" },
  489. { SEVERITY_SUCC, MSG_ADDPOOL, PARAM_POOL, "Added pool %d: '%s'" },
  490. { SEVERITY_ERR, MSG_REMLASTP,PARAM_POOL, "Cannot remove last pool %d:'%s'" },
  491. { SEVERITY_ERR, MSG_ACTPOOL, PARAM_POOL, "Cannot remove active pool %d:'%s'" },
  492. { SEVERITY_SUCC, MSG_REMPOOL, PARAM_BOTH, "Removed pool %d:'%s'" },
  493. { SEVERITY_SUCC, MSG_NOTIFY, PARAM_NONE, "Notify" },
  494. { SEVERITY_SUCC, MSG_DEVDETAILS,PARAM_NONE, "Device Details" },
  495. { SEVERITY_SUCC, MSG_MINESTATS,PARAM_NONE, "CGMiner stats" },
  496. { SEVERITY_ERR, MSG_MISCHK, PARAM_NONE, "Missing check cmd" },
  497. { SEVERITY_SUCC, MSG_CHECK, PARAM_NONE, "Check command" },
  498. { SEVERITY_ERR, MSG_MISBOOL, PARAM_NONE, "Missing parameter: true/false" },
  499. { SEVERITY_ERR, MSG_INVBOOL, PARAM_NONE, "Invalid parameter should be true or false" },
  500. { SEVERITY_SUCC, MSG_FOO, PARAM_BOOL, "Failover-Only set to %s" },
  501. { SEVERITY_SUCC, MSG_MINECOIN,PARAM_NONE, "CGMiner coin" },
  502. { SEVERITY_SUCC, MSG_DEBUGSET,PARAM_NONE, "Debug settings" },
  503. #ifdef HAVE_AN_FPGA
  504. { SEVERITY_SUCC, MSG_PGAIDENT,PARAM_PGA, "Identify command sent to PGA%d" },
  505. { SEVERITY_WARN, MSG_PGANOID, PARAM_PGA, "PGA%d does not support identify" },
  506. #endif
  507. { SEVERITY_SUCC, MSG_SETCONFIG,PARAM_SET, "Set config '%s' to %d" },
  508. { SEVERITY_ERR, MSG_UNKCON, PARAM_STR, "Unknown config '%s'" },
  509. { SEVERITY_ERR, MSG_INVNUM, PARAM_BOTH, "Invalid number (%d) for '%s' range is 0-9999" },
  510. { SEVERITY_ERR, MSG_INVNEG, PARAM_BOTH, "Invalid negative number (%d) for '%s'" },
  511. { SEVERITY_SUCC, MSG_SETQUOTA,PARAM_SET, "Set pool '%s' to quota %d'" },
  512. { SEVERITY_ERR, MSG_CONPAR, PARAM_NONE, "Missing config parameters 'name,N'" },
  513. { SEVERITY_ERR, MSG_CONVAL, PARAM_STR, "Missing config value N for '%s,N'" },
  514. { SEVERITY_SUCC, MSG_USBSTA, PARAM_NONE, "USB Statistics" },
  515. { SEVERITY_INFO, MSG_NOUSTA, PARAM_NONE, "No USB Statistics" },
  516. #ifdef HAVE_AN_FPGA
  517. { SEVERITY_ERR, MSG_MISPGAOPT, PARAM_NONE, "Missing option after PGA number" },
  518. { SEVERITY_WARN, MSG_PGANOSET, PARAM_PGA, "PGA %d does not support pgaset" },
  519. { SEVERITY_INFO, MSG_PGAHELP, PARAM_BOTH, "PGA %d set help: %s" },
  520. { SEVERITY_SUCC, MSG_PGASETOK, PARAM_BOTH, "PGA %d set OK" },
  521. { SEVERITY_ERR, MSG_PGASETERR, PARAM_BOTH, "PGA %d set failed: %s" },
  522. #endif
  523. { SEVERITY_ERR, MSG_ZERMIS, PARAM_NONE, "Missing zero parameters" },
  524. { SEVERITY_ERR, MSG_ZERINV, PARAM_STR, "Invalid zero parameter '%s'" },
  525. { SEVERITY_SUCC, MSG_ZERSUM, PARAM_STR, "Zeroed %s stats with summary" },
  526. { SEVERITY_SUCC, MSG_ZERNOSUM, PARAM_STR, "Zeroed %s stats without summary" },
  527. #ifdef USE_USBUTILS
  528. { SEVERITY_ERR, MSG_PGAUSBNODEV, PARAM_PGA, "PGA%d has no device" },
  529. { SEVERITY_ERR, MSG_ASCUSBNODEV, PARAM_PGA, "ASC%d has no device" },
  530. #endif
  531. { SEVERITY_ERR, MSG_INVHPLG, PARAM_STR, "Invalid value for hotplug (%s) must be 0..9999" },
  532. { SEVERITY_SUCC, MSG_HOTPLUG, PARAM_INT, "Hotplug check set to %ds" },
  533. { SEVERITY_SUCC, MSG_DISHPLG, PARAM_NONE, "Hotplug disabled" },
  534. { SEVERITY_WARN, MSG_NOHPLG, PARAM_NONE, "Hotplug is not available" },
  535. { SEVERITY_ERR, MSG_MISHPLG, PARAM_NONE, "Missing hotplug parameter" },
  536. #ifdef HAVE_AN_ASIC
  537. { SEVERITY_ERR, MSG_ASCNON, PARAM_NONE, "No ASCs" },
  538. { SEVERITY_SUCC, MSG_ASCDEV, PARAM_ASC, "ASC%d" },
  539. { SEVERITY_ERR, MSG_INVASC, PARAM_ASCMAX, "Invalid ASC id %d - range is 0 - %d" },
  540. { SEVERITY_INFO, MSG_ASCLRENA,PARAM_ASC, "ASC %d already enabled" },
  541. { SEVERITY_INFO, MSG_ASCLRDIS,PARAM_ASC, "ASC %d already disabled" },
  542. { SEVERITY_INFO, MSG_ASCENA, PARAM_ASC, "ASC %d sent enable message" },
  543. { SEVERITY_INFO, MSG_ASCDIS, PARAM_ASC, "ASC %d set disable flag" },
  544. { SEVERITY_ERR, MSG_ASCUNW, PARAM_ASC, "ASC %d is not flagged WELL, cannot enable" },
  545. { SEVERITY_SUCC, MSG_ASCIDENT,PARAM_ASC, "Identify command sent to ASC%d" },
  546. { SEVERITY_WARN, MSG_ASCNOID, PARAM_ASC, "ASC%d does not support identify" },
  547. { SEVERITY_ERR, MSG_MISASCOPT, PARAM_NONE, "Missing option after ASC number" },
  548. { SEVERITY_WARN, MSG_ASCNOSET, PARAM_ASC, "ASC %d does not support ascset" },
  549. { SEVERITY_INFO, MSG_ASCHELP, PARAM_BOTH, "ASC %d set help: %s" },
  550. { SEVERITY_SUCC, MSG_ASCSETOK, PARAM_BOTH, "ASC %d set OK" },
  551. { SEVERITY_ERR, MSG_ASCSETERR, PARAM_BOTH, "ASC %d set failed: %s" },
  552. #endif
  553. { SEVERITY_SUCC, MSG_LCD, PARAM_NONE, "LCD" },
  554. { SEVERITY_SUCC, MSG_LOCKOK, PARAM_NONE, "Lock stats created" },
  555. { SEVERITY_WARN, MSG_LOCKDIS, PARAM_NONE, "Lock stats not enabled" },
  556. { SEVERITY_FAIL, 0, 0, NULL }
  557. };
  558. static const char *localaddr = "127.0.0.1";
  559. static int my_thr_id = 0;
  560. static bool bye;
  561. // Used to control quit restart access to shutdown variables
  562. static pthread_mutex_t quit_restart_lock;
  563. static bool do_a_quit;
  564. static bool do_a_restart;
  565. static time_t when = 0; // when the request occurred
  566. struct IPACCESS {
  567. struct in6_addr ip;
  568. struct in6_addr mask;
  569. char group;
  570. };
  571. #define GROUP(g) (toupper(g))
  572. #define PRIVGROUP GROUP('W')
  573. #define NOPRIVGROUP GROUP('R')
  574. #define ISPRIVGROUP(g) (GROUP(g) == PRIVGROUP)
  575. #define GROUPOFFSET(g) (GROUP(g) - GROUP('A'))
  576. #define VALIDGROUP(g) (GROUP(g) >= GROUP('A') && GROUP(g) <= GROUP('Z'))
  577. #define COMMANDS(g) (apigroups[GROUPOFFSET(g)].commands)
  578. #define DEFINEDGROUP(g) (ISPRIVGROUP(g) || COMMANDS(g) != NULL)
  579. struct APIGROUPS {
  580. // This becomes a string like: "|cmd1|cmd2|cmd3|" so it's quick to search
  581. char *commands;
  582. } apigroups['Z' - 'A' + 1]; // only A=0 to Z=25 (R: noprivs, W: allprivs)
  583. static struct IPACCESS *ipaccess = NULL;
  584. static int ips = 0;
  585. struct io_data {
  586. size_t siz;
  587. char *ptr;
  588. char *cur;
  589. bool sock;
  590. bool close;
  591. };
  592. struct io_list {
  593. struct io_data *io_data;
  594. struct io_list *prev;
  595. struct io_list *next;
  596. };
  597. static struct io_list *io_head = NULL;
  598. #define SOCKBUFALLOCSIZ 65536
  599. #define io_new(init) _io_new(init, false)
  600. #define sock_io_new() _io_new(SOCKBUFALLOCSIZ, true)
  601. #define ALLOC_SBITEMS 2
  602. #define LIMIT_SBITEMS 0
  603. typedef struct sbitem {
  604. char *buf;
  605. size_t siz;
  606. size_t tot;
  607. } SBITEM;
  608. // Size to grow tot if exceeded
  609. #define SBEXTEND 4096
  610. #define DATASB(_item) ((SBITEM *)(_item->data))
  611. static K_LIST *strbufs;
  612. static void io_reinit(struct io_data *io_data)
  613. {
  614. io_data->cur = io_data->ptr;
  615. *(io_data->ptr) = '\0';
  616. io_data->close = false;
  617. }
  618. static struct io_data *_io_new(size_t initial, bool socket_buf)
  619. {
  620. struct io_data *io_data;
  621. struct io_list *io_list;
  622. io_data = malloc(sizeof(*io_data));
  623. io_data->ptr = malloc(initial);
  624. io_data->siz = initial;
  625. io_data->sock = socket_buf;
  626. io_reinit(io_data);
  627. io_list = malloc(sizeof(*io_list));
  628. io_list->io_data = io_data;
  629. if (io_head) {
  630. io_list->next = io_head;
  631. io_list->prev = io_head->prev;
  632. io_list->next->prev = io_list;
  633. io_list->prev->next = io_list;
  634. } else {
  635. io_list->prev = io_list;
  636. io_list->next = io_list;
  637. io_head = io_list;
  638. }
  639. return io_data;
  640. }
  641. static bool io_add(struct io_data *io_data, char *buf)
  642. {
  643. size_t len, dif, tot;
  644. len = strlen(buf);
  645. dif = io_data->cur - io_data->ptr;
  646. // send will always have enough space to add the JSON
  647. tot = len + 1 + dif + sizeof(JSON_CLOSE) + sizeof(JSON_END);
  648. if (tot > io_data->siz) {
  649. size_t new = io_data->siz + (2 * SOCKBUFALLOCSIZ);
  650. if (new < tot)
  651. new = (2 + (size_t)((float)tot / (float)SOCKBUFALLOCSIZ)) * SOCKBUFALLOCSIZ;
  652. io_data->ptr = realloc(io_data->ptr, new);
  653. io_data->cur = io_data->ptr + dif;
  654. io_data->siz = new;
  655. }
  656. memcpy(io_data->cur, buf, len + 1);
  657. io_data->cur += len;
  658. return true;
  659. }
  660. static bool io_put(struct io_data *io_data, char *buf)
  661. {
  662. io_reinit(io_data);
  663. return io_add(io_data, buf);
  664. }
  665. static void io_close(struct io_data *io_data)
  666. {
  667. io_data->close = true;
  668. }
  669. static void io_free()
  670. {
  671. struct io_list *io_list, *io_next;
  672. if (io_head) {
  673. io_list = io_head;
  674. do {
  675. io_next = io_list->next;
  676. free(io_list->io_data->ptr);
  677. free(io_list->io_data);
  678. free(io_list);
  679. io_list = io_next;
  680. } while (io_list != io_head);
  681. io_head = NULL;
  682. }
  683. }
  684. // This is only called when expected to be needed (rarely)
  685. // i.e. strings outside of the codes control (input from the user)
  686. static char *escape_string(char *str, bool isjson)
  687. {
  688. char *buf, *ptr;
  689. int count;
  690. count = 0;
  691. for (ptr = str; *ptr; ptr++) {
  692. switch (*ptr) {
  693. case ',':
  694. case '|':
  695. case '=':
  696. if (!isjson)
  697. count++;
  698. break;
  699. case '"':
  700. if (isjson)
  701. count++;
  702. break;
  703. case '\\':
  704. count++;
  705. break;
  706. }
  707. }
  708. if (count == 0)
  709. return str;
  710. buf = malloc(strlen(str) + count + 1);
  711. if (unlikely(!buf)) {
  712. quithere(1, "Failed to malloc escape buf %d",
  713. (int)(strlen(str) + count + 1));
  714. }
  715. ptr = buf;
  716. while (*str)
  717. switch (*str) {
  718. case ',':
  719. case '|':
  720. case '=':
  721. if (!isjson)
  722. *(ptr++) = '\\';
  723. *(ptr++) = *(str++);
  724. break;
  725. case '"':
  726. if (isjson)
  727. *(ptr++) = '\\';
  728. *(ptr++) = *(str++);
  729. break;
  730. case '\\':
  731. *(ptr++) = '\\';
  732. *(ptr++) = *(str++);
  733. break;
  734. default:
  735. *(ptr++) = *(str++);
  736. break;
  737. }
  738. *ptr = '\0';
  739. return buf;
  740. }
  741. static struct api_data *api_add_extra(struct api_data *root, struct api_data *extra)
  742. {
  743. struct api_data *tmp;
  744. if (root) {
  745. if (extra) {
  746. // extra tail
  747. tmp = extra->prev;
  748. // extra prev = root tail
  749. extra->prev = root->prev;
  750. // root tail next = extra
  751. root->prev->next = extra;
  752. // extra tail next = root
  753. tmp->next = root;
  754. // root prev = extra tail
  755. root->prev = tmp;
  756. }
  757. } else
  758. root = extra;
  759. return root;
  760. }
  761. static struct api_data *api_add_data_full(struct api_data *root, char *name, enum api_data_type type, void *data, bool copy_data)
  762. {
  763. struct api_data *api_data;
  764. api_data = (struct api_data *)malloc(sizeof(struct api_data));
  765. api_data->name = strdup(name);
  766. api_data->type = type;
  767. if (root == NULL) {
  768. root = api_data;
  769. root->prev = root;
  770. root->next = root;
  771. } else {
  772. api_data->prev = root->prev;
  773. root->prev = api_data;
  774. api_data->next = root;
  775. api_data->prev->next = api_data;
  776. }
  777. api_data->data_was_malloc = copy_data;
  778. // Avoid crashing on bad data
  779. if (data == NULL) {
  780. api_data->type = type = API_CONST;
  781. data = (void *)NULLSTR;
  782. api_data->data_was_malloc = copy_data = false;
  783. }
  784. if (!copy_data)
  785. api_data->data = data;
  786. else
  787. switch(type) {
  788. case API_ESCAPE:
  789. case API_STRING:
  790. case API_CONST:
  791. api_data->data = (void *)malloc(strlen((char *)data) + 1);
  792. strcpy((char*)(api_data->data), (char *)data);
  793. break;
  794. case API_UINT8:
  795. /* Most OSs won't really alloc less than 4 */
  796. api_data->data = malloc(4);
  797. *(uint8_t *)api_data->data = *(uint8_t *)data;
  798. break;
  799. case API_INT16:
  800. /* Most OSs won't really alloc less than 4 */
  801. api_data->data = malloc(4);
  802. *(int16_t *)api_data->data = *(int16_t *)data;
  803. break;
  804. case API_UINT16:
  805. /* Most OSs won't really alloc less than 4 */
  806. api_data->data = malloc(4);
  807. *(uint16_t *)api_data->data = *(uint16_t *)data;
  808. break;
  809. case API_INT:
  810. api_data->data = (void *)malloc(sizeof(int));
  811. *((int *)(api_data->data)) = *((int *)data);
  812. break;
  813. case API_UINT:
  814. api_data->data = (void *)malloc(sizeof(unsigned int));
  815. *((unsigned int *)(api_data->data)) = *((unsigned int *)data);
  816. break;
  817. case API_UINT32:
  818. api_data->data = (void *)malloc(sizeof(uint32_t));
  819. *((uint32_t *)(api_data->data)) = *((uint32_t *)data);
  820. break;
  821. case API_HEX32:
  822. api_data->data = (void *)malloc(sizeof(uint32_t));
  823. *((uint32_t *)(api_data->data)) = *((uint32_t *)data);
  824. break;
  825. case API_UINT64:
  826. api_data->data = (void *)malloc(sizeof(uint64_t));
  827. *((uint64_t *)(api_data->data)) = *((uint64_t *)data);
  828. break;
  829. case API_INT64:
  830. api_data->data = (void *)malloc(sizeof(int64_t));
  831. *((int64_t *)(api_data->data)) = *((int64_t *)data);
  832. break;
  833. case API_DOUBLE:
  834. case API_ELAPSED:
  835. case API_MHS:
  836. case API_MHTOTAL:
  837. case API_UTILITY:
  838. case API_FREQ:
  839. case API_HS:
  840. case API_DIFF:
  841. case API_PERCENT:
  842. api_data->data = (void *)malloc(sizeof(double));
  843. *((double *)(api_data->data)) = *((double *)data);
  844. break;
  845. case API_BOOL:
  846. api_data->data = (void *)malloc(sizeof(bool));
  847. *((bool *)(api_data->data)) = *((bool *)data);
  848. break;
  849. case API_TIMEVAL:
  850. api_data->data = (void *)malloc(sizeof(struct timeval));
  851. memcpy(api_data->data, data, sizeof(struct timeval));
  852. break;
  853. case API_TIME:
  854. api_data->data = (void *)malloc(sizeof(time_t));
  855. *(time_t *)(api_data->data) = *((time_t *)data);
  856. break;
  857. case API_VOLTS:
  858. case API_TEMP:
  859. case API_AVG:
  860. api_data->data = (void *)malloc(sizeof(float));
  861. *((float *)(api_data->data)) = *((float *)data);
  862. break;
  863. default:
  864. applog(LOG_ERR, "API: unknown1 data type %d ignored", type);
  865. api_data->type = API_STRING;
  866. api_data->data_was_malloc = false;
  867. api_data->data = (void *)UNKNOWN;
  868. break;
  869. }
  870. return root;
  871. }
  872. struct api_data *api_add_escape(struct api_data *root, char *name, char *data, bool copy_data)
  873. {
  874. return api_add_data_full(root, name, API_ESCAPE, (void *)data, copy_data);
  875. }
  876. struct api_data *api_add_string(struct api_data *root, char *name, char *data, bool copy_data)
  877. {
  878. return api_add_data_full(root, name, API_STRING, (void *)data, copy_data);
  879. }
  880. struct api_data *api_add_const(struct api_data *root, char *name, const char *data, bool copy_data)
  881. {
  882. return api_add_data_full(root, name, API_CONST, (void *)data, copy_data);
  883. }
  884. struct api_data *api_add_uint8(struct api_data *root, char *name, uint8_t *data, bool copy_data)
  885. {
  886. return api_add_data_full(root, name, API_UINT8, (void *)data, copy_data);
  887. }
  888. struct api_data *api_add_int16(struct api_data *root, char *name, uint16_t *data, bool copy_data)
  889. {
  890. return api_add_data_full(root, name, API_INT16, (void *)data, copy_data);
  891. }
  892. struct api_data *api_add_uint16(struct api_data *root, char *name, uint16_t *data, bool copy_data)
  893. {
  894. return api_add_data_full(root, name, API_UINT16, (void *)data, copy_data);
  895. }
  896. struct api_data *api_add_int(struct api_data *root, char *name, int *data, bool copy_data)
  897. {
  898. return api_add_data_full(root, name, API_INT, (void *)data, copy_data);
  899. }
  900. struct api_data *api_add_uint(struct api_data *root, char *name, unsigned int *data, bool copy_data)
  901. {
  902. return api_add_data_full(root, name, API_UINT, (void *)data, copy_data);
  903. }
  904. struct api_data *api_add_uint32(struct api_data *root, char *name, uint32_t *data, bool copy_data)
  905. {
  906. return api_add_data_full(root, name, API_UINT32, (void *)data, copy_data);
  907. }
  908. struct api_data *api_add_hex32(struct api_data *root, char *name, uint32_t *data, bool copy_data)
  909. {
  910. return api_add_data_full(root, name, API_HEX32, (void *)data, copy_data);
  911. }
  912. struct api_data *api_add_uint64(struct api_data *root, char *name, uint64_t *data, bool copy_data)
  913. {
  914. return api_add_data_full(root, name, API_UINT64, (void *)data, copy_data);
  915. }
  916. struct api_data *api_add_int64(struct api_data *root, char *name, int64_t *data, bool copy_data)
  917. {
  918. return api_add_data_full(root, name, API_INT64, (void *)data, copy_data);
  919. }
  920. struct api_data *api_add_double(struct api_data *root, char *name, double *data, bool copy_data)
  921. {
  922. return api_add_data_full(root, name, API_DOUBLE, (void *)data, copy_data);
  923. }
  924. struct api_data *api_add_elapsed(struct api_data *root, char *name, double *data, bool copy_data)
  925. {
  926. return api_add_data_full(root, name, API_ELAPSED, (void *)data, copy_data);
  927. }
  928. struct api_data *api_add_bool(struct api_data *root, char *name, bool *data, bool copy_data)
  929. {
  930. return api_add_data_full(root, name, API_BOOL, (void *)data, copy_data);
  931. }
  932. struct api_data *api_add_timeval(struct api_data *root, char *name, struct timeval *data, bool copy_data)
  933. {
  934. return api_add_data_full(root, name, API_TIMEVAL, (void *)data, copy_data);
  935. }
  936. struct api_data *api_add_time(struct api_data *root, char *name, time_t *data, bool copy_data)
  937. {
  938. return api_add_data_full(root, name, API_TIME, (void *)data, copy_data);
  939. }
  940. struct api_data *api_add_mhs(struct api_data *root, char *name, double *data, bool copy_data)
  941. {
  942. return api_add_data_full(root, name, API_MHS, (void *)data, copy_data);
  943. }
  944. struct api_data *api_add_mhtotal(struct api_data *root, char *name, double *data, bool copy_data)
  945. {
  946. return api_add_data_full(root, name, API_MHTOTAL, (void *)data, copy_data);
  947. }
  948. struct api_data *api_add_temp(struct api_data *root, char *name, float *data, bool copy_data)
  949. {
  950. return api_add_data_full(root, name, API_TEMP, (void *)data, copy_data);
  951. }
  952. struct api_data *api_add_utility(struct api_data *root, char *name, double *data, bool copy_data)
  953. {
  954. return api_add_data_full(root, name, API_UTILITY, (void *)data, copy_data);
  955. }
  956. struct api_data *api_add_freq(struct api_data *root, char *name, double *data, bool copy_data)
  957. {
  958. return api_add_data_full(root, name, API_FREQ, (void *)data, copy_data);
  959. }
  960. struct api_data *api_add_volts(struct api_data *root, char *name, float *data, bool copy_data)
  961. {
  962. return api_add_data_full(root, name, API_VOLTS, (void *)data, copy_data);
  963. }
  964. struct api_data *api_add_hs(struct api_data *root, char *name, double *data, bool copy_data)
  965. {
  966. return api_add_data_full(root, name, API_HS, (void *)data, copy_data);
  967. }
  968. struct api_data *api_add_diff(struct api_data *root, char *name, double *data, bool copy_data)
  969. {
  970. return api_add_data_full(root, name, API_DIFF, (void *)data, copy_data);
  971. }
  972. struct api_data *api_add_percent(struct api_data *root, char *name, double *data, bool copy_data)
  973. {
  974. return api_add_data_full(root, name, API_PERCENT, (void *)data, copy_data);
  975. }
  976. struct api_data *api_add_avg(struct api_data *root, char *name, float *data, bool copy_data)
  977. {
  978. return api_add_data_full(root, name, API_AVG, (void *)data, copy_data);
  979. }
  980. static void add_item_buf(K_ITEM *item, const char *str)
  981. {
  982. size_t old_siz, new_siz, siz, ext;
  983. char *buf;
  984. buf = DATASB(item)->buf;
  985. siz = (size_t)strlen(str);
  986. old_siz = DATASB(item)->siz;
  987. new_siz = old_siz + siz + 1; // include '\0'
  988. if (DATASB(item)->tot < new_siz) {
  989. ext = (siz + 1) + SBEXTEND - ((siz + 1) % SBEXTEND);
  990. DATASB(item)->buf = buf = realloc(DATASB(item)->buf, DATASB(item)->tot + ext);
  991. if (!buf) {
  992. quithere(1, "OOM buf siz=%d tot=%d ext=%d",
  993. (int)siz, (int)(DATASB(item)->tot), (int)ext);
  994. }
  995. DATASB(item)->tot += ext;
  996. }
  997. memcpy(buf + old_siz, str, siz + 1);
  998. DATASB(item)->siz += siz;
  999. }
  1000. static struct api_data *print_data(struct io_data *io_data, struct api_data *root, bool isjson, bool precom)
  1001. {
  1002. // N.B. strings don't use this buffer so 64 is enough (for now)
  1003. char buf[64];
  1004. struct api_data *tmp;
  1005. bool done, first = true;
  1006. char *original, *escape;
  1007. K_ITEM *item;
  1008. K_WLOCK(strbufs);
  1009. item = k_unlink_head(strbufs);
  1010. K_WUNLOCK(strbufs);
  1011. DATASB(item)->siz = 0;
  1012. if (precom)
  1013. add_item_buf(item, COMMA);
  1014. if (isjson)
  1015. add_item_buf(item, JSON0);
  1016. while (root) {
  1017. if (!first)
  1018. add_item_buf(item, COMMA);
  1019. else
  1020. first = false;
  1021. if (isjson)
  1022. add_item_buf(item, JSON1);
  1023. add_item_buf(item, root->name);
  1024. if (isjson)
  1025. add_item_buf(item, JSON1);
  1026. if (isjson)
  1027. add_item_buf(item, ":");
  1028. else
  1029. add_item_buf(item, "=");
  1030. first = false;
  1031. done = false;
  1032. switch(root->type) {
  1033. case API_STRING:
  1034. case API_CONST:
  1035. if (isjson)
  1036. add_item_buf(item, JSON1);
  1037. add_item_buf(item, (char *)(root->data));
  1038. if (isjson)
  1039. add_item_buf(item, JSON1);
  1040. done = true;
  1041. break;
  1042. case API_ESCAPE:
  1043. original = (char *)(root->data);
  1044. escape = escape_string((char *)(root->data), isjson);
  1045. if (isjson)
  1046. add_item_buf(item, JSON1);
  1047. add_item_buf(item, escape);
  1048. if (isjson)
  1049. add_item_buf(item, JSON1);
  1050. if (escape != original)
  1051. free(escape);
  1052. done = true;
  1053. break;
  1054. case API_UINT8:
  1055. snprintf(buf, sizeof(buf), "%u", *(uint8_t *)root->data);
  1056. break;
  1057. case API_INT16:
  1058. snprintf(buf, sizeof(buf), "%d", *(int16_t *)root->data);
  1059. break;
  1060. case API_UINT16:
  1061. snprintf(buf, sizeof(buf), "%u", *(uint16_t *)root->data);
  1062. break;
  1063. case API_INT:
  1064. snprintf(buf, sizeof(buf), "%d", *((int *)(root->data)));
  1065. break;
  1066. case API_UINT:
  1067. snprintf(buf, sizeof(buf), "%u", *((unsigned int *)(root->data)));
  1068. break;
  1069. case API_UINT32:
  1070. snprintf(buf, sizeof(buf), "%"PRIu32, *((uint32_t *)(root->data)));
  1071. break;
  1072. case API_HEX32:
  1073. if (isjson)
  1074. add_item_buf(item, JSON1);
  1075. snprintf(buf, sizeof(buf), "0x%08x", *((uint32_t *)(root->data)));
  1076. add_item_buf(item, buf);
  1077. if (isjson)
  1078. add_item_buf(item, JSON1);
  1079. done = true;
  1080. break;
  1081. case API_UINT64:
  1082. snprintf(buf, sizeof(buf), "%"PRIu64, *((uint64_t *)(root->data)));
  1083. break;
  1084. case API_INT64:
  1085. snprintf(buf, sizeof(buf), "%"PRId64, *((int64_t *)(root->data)));
  1086. break;
  1087. case API_TIME:
  1088. snprintf(buf, sizeof(buf), "%lu", *((unsigned long *)(root->data)));
  1089. break;
  1090. case API_DOUBLE:
  1091. snprintf(buf, sizeof(buf), "%f", *((double *)(root->data)));
  1092. break;
  1093. case API_ELAPSED:
  1094. snprintf(buf, sizeof(buf), "%.0f", *((double *)(root->data)));
  1095. break;
  1096. case API_UTILITY:
  1097. case API_FREQ:
  1098. case API_MHS:
  1099. snprintf(buf, sizeof(buf), "%.2f", *((double *)(root->data)));
  1100. break;
  1101. case API_VOLTS:
  1102. case API_AVG:
  1103. snprintf(buf, sizeof(buf), "%.3f", *((float *)(root->data)));
  1104. break;
  1105. case API_MHTOTAL:
  1106. snprintf(buf, sizeof(buf), "%.4f", *((double *)(root->data)));
  1107. break;
  1108. case API_HS:
  1109. snprintf(buf, sizeof(buf), "%.15f", *((double *)(root->data)));
  1110. break;
  1111. case API_DIFF:
  1112. snprintf(buf, sizeof(buf), "%.8f", *((double *)(root->data)));
  1113. break;
  1114. case API_BOOL:
  1115. snprintf(buf, sizeof(buf), "%s", *((bool *)(root->data)) ? TRUESTR : FALSESTR);
  1116. break;
  1117. case API_TIMEVAL:
  1118. snprintf(buf, sizeof(buf), "%ld.%06ld",
  1119. (long)((struct timeval *)(root->data))->tv_sec,
  1120. (long)((struct timeval *)(root->data))->tv_usec);
  1121. break;
  1122. case API_TEMP:
  1123. snprintf(buf, sizeof(buf), "%.2f", *((float *)(root->data)));
  1124. break;
  1125. case API_PERCENT:
  1126. snprintf(buf, sizeof(buf), "%.4f", *((double *)(root->data)) * 100.0);
  1127. break;
  1128. default:
  1129. applog(LOG_ERR, "API: unknown2 data type %d ignored", root->type);
  1130. if (isjson)
  1131. add_item_buf(item, JSON1);
  1132. add_item_buf(item, UNKNOWN);
  1133. if (isjson)
  1134. add_item_buf(item, JSON1);
  1135. done = true;
  1136. break;
  1137. }
  1138. if (!done)
  1139. add_item_buf(item, buf);
  1140. free(root->name);
  1141. if (root->data_was_malloc)
  1142. free(root->data);
  1143. if (root->next == root) {
  1144. free(root);
  1145. root = NULL;
  1146. } else {
  1147. tmp = root;
  1148. root = tmp->next;
  1149. root->prev = tmp->prev;
  1150. root->prev->next = root;
  1151. free(tmp);
  1152. }
  1153. }
  1154. if (isjson)
  1155. add_item_buf(item, JSON5);
  1156. else
  1157. add_item_buf(item, SEPSTR);
  1158. io_add(io_data, DATASB(item)->buf);
  1159. K_WLOCK(strbufs);
  1160. k_add_head(strbufs, item);
  1161. K_WUNLOCK(strbufs);
  1162. return root;
  1163. }
  1164. #define DRIVER_COUNT_DRV(X) if (devices[i]->drv->drv_id == DRIVER_##X) \
  1165. count++;
  1166. #ifdef HAVE_AN_ASIC
  1167. static int numascs(void)
  1168. {
  1169. int count = 0;
  1170. int i;
  1171. rd_lock(&devices_lock);
  1172. for (i = 0; i < total_devices; i++) {
  1173. ASIC_PARSE_COMMANDS(DRIVER_COUNT_DRV)
  1174. }
  1175. rd_unlock(&devices_lock);
  1176. return count;
  1177. }
  1178. static int ascdevice(int ascid)
  1179. {
  1180. int count = 0;
  1181. int i;
  1182. rd_lock(&devices_lock);
  1183. for (i = 0; i < total_devices; i++) {
  1184. ASIC_PARSE_COMMANDS(DRIVER_COUNT_DRV)
  1185. if (count == (ascid + 1))
  1186. goto foundit;
  1187. }
  1188. rd_unlock(&devices_lock);
  1189. return -1;
  1190. foundit:
  1191. rd_unlock(&devices_lock);
  1192. return i;
  1193. }
  1194. #endif
  1195. #ifdef HAVE_AN_FPGA
  1196. static int numpgas(void)
  1197. {
  1198. int count = 0;
  1199. int i;
  1200. rd_lock(&devices_lock);
  1201. for (i = 0; i < total_devices; i++) {
  1202. FPGA_PARSE_COMMANDS(DRIVER_COUNT_DRV)
  1203. }
  1204. rd_unlock(&devices_lock);
  1205. return count;
  1206. }
  1207. static int pgadevice(int pgaid)
  1208. {
  1209. int count = 0;
  1210. int i;
  1211. rd_lock(&devices_lock);
  1212. for (i = 0; i < total_devices; i++) {
  1213. FPGA_PARSE_COMMANDS(DRIVER_COUNT_DRV)
  1214. if (count == (pgaid + 1))
  1215. goto foundit;
  1216. }
  1217. rd_unlock(&devices_lock);
  1218. return -1;
  1219. foundit:
  1220. rd_unlock(&devices_lock);
  1221. return i;
  1222. }
  1223. #endif
  1224. // All replies (except BYE and RESTART) start with a message
  1225. // thus for JSON, message() inserts JSON_START at the front
  1226. // and send_result() adds JSON_END at the end
  1227. static void message(struct io_data *io_data, int messageid, int paramid, char *param2, bool isjson)
  1228. {
  1229. struct api_data *root = NULL;
  1230. char buf[TMPBUFSIZ];
  1231. char severity[2];
  1232. #ifdef HAVE_AN_ASIC
  1233. int asc;
  1234. #endif
  1235. #ifdef HAVE_AN_FPGA
  1236. int pga;
  1237. #endif
  1238. int i;
  1239. if (isjson)
  1240. io_add(io_data, JSON_START JSON_STATUS);
  1241. for (i = 0; codes[i].severity != SEVERITY_FAIL; i++) {
  1242. if (codes[i].code == messageid) {
  1243. switch (codes[i].severity) {
  1244. case SEVERITY_WARN:
  1245. severity[0] = 'W';
  1246. break;
  1247. case SEVERITY_INFO:
  1248. severity[0] = 'I';
  1249. break;
  1250. case SEVERITY_SUCC:
  1251. severity[0] = 'S';
  1252. break;
  1253. case SEVERITY_ERR:
  1254. default:
  1255. severity[0] = 'E';
  1256. break;
  1257. }
  1258. severity[1] = '\0';
  1259. switch(codes[i].params) {
  1260. case PARAM_PGA:
  1261. case PARAM_ASC:
  1262. case PARAM_PID:
  1263. case PARAM_INT:
  1264. sprintf(buf, codes[i].description, paramid);
  1265. break;
  1266. case PARAM_POOL:
  1267. sprintf(buf, codes[i].description, paramid, pools[paramid]->rpc_url);
  1268. break;
  1269. #ifdef HAVE_AN_FPGA
  1270. case PARAM_PGAMAX:
  1271. pga = numpgas();
  1272. sprintf(buf, codes[i].description, paramid, pga - 1);
  1273. break;
  1274. #endif
  1275. #ifdef HAVE_AN_ASIC
  1276. case PARAM_ASCMAX:
  1277. asc = numascs();
  1278. sprintf(buf, codes[i].description, paramid, asc - 1);
  1279. break;
  1280. #endif
  1281. case PARAM_PMAX:
  1282. sprintf(buf, codes[i].description, total_pools);
  1283. break;
  1284. case PARAM_POOLMAX:
  1285. sprintf(buf, codes[i].description, paramid, total_pools - 1);
  1286. break;
  1287. case PARAM_DMAX:
  1288. #ifdef HAVE_AN_ASIC
  1289. asc = numascs();
  1290. #endif
  1291. #ifdef HAVE_AN_FPGA
  1292. pga = numpgas();
  1293. #endif
  1294. sprintf(buf, codes[i].description
  1295. #ifdef HAVE_AN_ASIC
  1296. , asc
  1297. #endif
  1298. #ifdef HAVE_AN_FPGA
  1299. , pga
  1300. #endif
  1301. );
  1302. break;
  1303. case PARAM_CMD:
  1304. sprintf(buf, codes[i].description, JSON_COMMAND);
  1305. break;
  1306. case PARAM_STR:
  1307. sprintf(buf, codes[i].description, param2);
  1308. break;
  1309. case PARAM_BOTH:
  1310. sprintf(buf, codes[i].description, paramid, param2);
  1311. break;
  1312. case PARAM_BOOL:
  1313. sprintf(buf, codes[i].description, paramid ? TRUESTR : FALSESTR);
  1314. break;
  1315. case PARAM_SET:
  1316. sprintf(buf, codes[i].description, param2, paramid);
  1317. break;
  1318. case PARAM_NONE:
  1319. default:
  1320. strcpy(buf, codes[i].description);
  1321. }
  1322. root = api_add_string(root, _STATUS, severity, false);
  1323. root = api_add_time(root, "When", &when, false);
  1324. root = api_add_int(root, "Code", &messageid, false);
  1325. root = api_add_escape(root, "Msg", buf, false);
  1326. root = api_add_escape(root, "Description", opt_api_description, false);
  1327. root = print_data(io_data, root, isjson, false);
  1328. if (isjson)
  1329. io_add(io_data, JSON_CLOSE);
  1330. return;
  1331. }
  1332. }
  1333. root = api_add_string(root, _STATUS, "F", false);
  1334. root = api_add_time(root, "When", &when, false);
  1335. int id = -1;
  1336. root = api_add_int(root, "Code", &id, false);
  1337. sprintf(buf, "%d", messageid);
  1338. root = api_add_escape(root, "Msg", buf, false);
  1339. root = api_add_escape(root, "Description", opt_api_description, false);
  1340. root = print_data(io_data, root, isjson, false);
  1341. if (isjson)
  1342. io_add(io_data, JSON_CLOSE);
  1343. }
  1344. #if LOCK_TRACKING
  1345. #define LOCK_FMT_FFL " - called from %s %s():%d"
  1346. #define LOCKMSG(fmt, ...) fprintf(stderr, "APILOCK: " fmt "\n", ##__VA_ARGS__)
  1347. #define LOCKMSGMORE(fmt, ...) fprintf(stderr, " " fmt "\n", ##__VA_ARGS__)
  1348. #define LOCKMSGFFL(fmt, ...) fprintf(stderr, "APILOCK: " fmt LOCK_FMT_FFL "\n", ##__VA_ARGS__, file, func, linenum)
  1349. #define LOCKMSGFLUSH() fflush(stderr)
  1350. typedef struct lockstat {
  1351. uint64_t lock_id;
  1352. const char *file;
  1353. const char *func;
  1354. int linenum;
  1355. struct timeval tv;
  1356. } LOCKSTAT;
  1357. typedef struct lockline {
  1358. struct lockline *prev;
  1359. struct lockstat *stat;
  1360. struct lockline *next;
  1361. } LOCKLINE;
  1362. typedef struct lockinfo {
  1363. void *lock;
  1364. enum cglock_typ typ;
  1365. const char *file;
  1366. const char *func;
  1367. int linenum;
  1368. uint64_t gets;
  1369. uint64_t gots;
  1370. uint64_t tries;
  1371. uint64_t dids;
  1372. uint64_t didnts; // should be tries - dids
  1373. uint64_t unlocks;
  1374. LOCKSTAT lastgot;
  1375. LOCKLINE *lockgets;
  1376. LOCKLINE *locktries;
  1377. } LOCKINFO;
  1378. typedef struct locklist {
  1379. LOCKINFO *info;
  1380. struct locklist *next;
  1381. } LOCKLIST;
  1382. static uint64_t lock_id = 1;
  1383. static LOCKLIST *lockhead;
  1384. static void lockmsgnow()
  1385. {
  1386. struct timeval now;
  1387. struct tm *tm;
  1388. time_t dt;
  1389. cgtime(&now);
  1390. dt = now.tv_sec;
  1391. tm = localtime(&dt);
  1392. LOCKMSG("%d-%02d-%02d %02d:%02d:%02d",
  1393. tm->tm_year + 1900,
  1394. tm->tm_mon + 1,
  1395. tm->tm_mday,
  1396. tm->tm_hour,
  1397. tm->tm_min,
  1398. tm->tm_sec);
  1399. }
  1400. static LOCKLIST *newlock(void *lock, enum cglock_typ typ, const char *file, const char *func, const int linenum)
  1401. {
  1402. LOCKLIST *list;
  1403. list = calloc(1, sizeof(*list));
  1404. if (!list)
  1405. quithere(1, "OOM list");
  1406. list->info = calloc(1, sizeof(*(list->info)));
  1407. if (!list->info)
  1408. quithere(1, "OOM info");
  1409. list->next = lockhead;
  1410. lockhead = list;
  1411. list->info->lock = lock;
  1412. list->info->typ = typ;
  1413. list->info->file = file;
  1414. list->info->func = func;
  1415. list->info->linenum = linenum;
  1416. return list;
  1417. }
  1418. static LOCKINFO *findlock(void *lock, enum cglock_typ typ, const char *file, const char *func, const int linenum)
  1419. {
  1420. LOCKLIST *look;
  1421. look = lockhead;
  1422. while (look) {
  1423. if (look->info->lock == lock)
  1424. break;
  1425. look = look->next;
  1426. }
  1427. if (!look)
  1428. look = newlock(lock, typ, file, func, linenum);
  1429. return look->info;
  1430. }
  1431. static void addgettry(LOCKINFO *info, uint64_t id, const char *file, const char *func, const int linenum, bool get)
  1432. {
  1433. LOCKSTAT *stat;
  1434. LOCKLINE *line;
  1435. stat = calloc(1, sizeof(*stat));
  1436. if (!stat)
  1437. quithere(1, "OOM stat");
  1438. line = calloc(1, sizeof(*line));
  1439. if (!line)
  1440. quithere(1, "OOM line");
  1441. if (get)
  1442. info->gets++;
  1443. else
  1444. info->tries++;
  1445. stat->lock_id = id;
  1446. stat->file = file;
  1447. stat->func = func;
  1448. stat->linenum = linenum;
  1449. cgtime(&stat->tv);
  1450. line->stat = stat;
  1451. if (get) {
  1452. line->next = info->lockgets;
  1453. if (info->lockgets)
  1454. info->lockgets->prev = line;
  1455. info->lockgets = line;
  1456. } else {
  1457. line->next = info->locktries;
  1458. if (info->locktries)
  1459. info->locktries->prev = line;
  1460. info->locktries = line;
  1461. }
  1462. }
  1463. static void markgotdid(LOCKINFO *info, uint64_t id, const char *file, const char *func, const int linenum, bool got, int ret)
  1464. {
  1465. LOCKLINE *line;
  1466. if (got)
  1467. info->gots++;
  1468. else {
  1469. if (ret == 0)
  1470. info->dids++;
  1471. else
  1472. info->didnts++;
  1473. }
  1474. if (got || ret == 0) {
  1475. info->lastgot.lock_id = id;
  1476. info->lastgot.file = file;
  1477. info->lastgot.func = func;
  1478. info->lastgot.linenum = linenum;
  1479. cgtime(&info->lastgot.tv);
  1480. }
  1481. if (got)
  1482. line = info->lockgets;
  1483. else
  1484. line = info->locktries;
  1485. while (line) {
  1486. if (line->stat->lock_id == id)
  1487. break;
  1488. line = line->next;
  1489. }
  1490. if (!line) {
  1491. lockmsgnow();
  1492. LOCKMSGFFL("ERROR attempt to mark a lock as '%s' that wasn't '%s' id=%"PRIu64,
  1493. got ? "got" : "did/didnt", got ? "get" : "try", id);
  1494. }
  1495. // Unlink it
  1496. if (line->prev)
  1497. line->prev->next = line->next;
  1498. if (line->next)
  1499. line->next->prev = line->prev;
  1500. if (got) {
  1501. if (info->lockgets == line)
  1502. info->lockgets = line->next;
  1503. } else {
  1504. if (info->locktries == line)
  1505. info->locktries = line->next;
  1506. }
  1507. free(line->stat);
  1508. free(line);
  1509. }
  1510. // Yes this uses locks also ... ;/
  1511. static void locklock()
  1512. {
  1513. if (unlikely(pthread_mutex_lock(&lockstat_lock)))
  1514. quithere(1, "WTF MUTEX ERROR ON LOCK! errno=%d", errno);
  1515. }
  1516. static void lockunlock()
  1517. {
  1518. if (unlikely(pthread_mutex_unlock(&lockstat_lock)))
  1519. quithere(1, "WTF MUTEX ERROR ON UNLOCK! errno=%d", errno);
  1520. }
  1521. uint64_t api_getlock(void *lock, const char *file, const char *func, const int linenum)
  1522. {
  1523. LOCKINFO *info;
  1524. uint64_t id;
  1525. locklock();
  1526. info = findlock(lock, CGLOCK_UNKNOWN, file, func, linenum);
  1527. id = lock_id++;
  1528. addgettry(info, id, file, func, linenum, true);
  1529. lockunlock();
  1530. return id;
  1531. }
  1532. void api_gotlock(uint64_t id, void *lock, const char *file, const char *func, const int linenum)
  1533. {
  1534. LOCKINFO *info;
  1535. locklock();
  1536. info = findlock(lock, CGLOCK_UNKNOWN, file, func, linenum);
  1537. markgotdid(info, id, file, func, linenum, true, 0);
  1538. lockunlock();
  1539. }
  1540. uint64_t api_trylock(void *lock, const char *file, const char *func, const int linenum)
  1541. {
  1542. LOCKINFO *info;
  1543. uint64_t id;
  1544. locklock();
  1545. info = findlock(lock, CGLOCK_UNKNOWN, file, func, linenum);
  1546. id = lock_id++;
  1547. addgettry(info, id, file, func, linenum, false);
  1548. lockunlock();
  1549. return id;
  1550. }
  1551. void api_didlock(uint64_t id, int ret, void *lock, const char *file, const char *func, const int linenum)
  1552. {
  1553. LOCKINFO *info;
  1554. locklock();
  1555. info = findlock(lock, CGLOCK_UNKNOWN, file, func, linenum);
  1556. markgotdid(info, id, file, func, linenum, false, ret);
  1557. lockunlock();
  1558. }
  1559. void api_gunlock(void *lock, const char *file, const char *func, const int linenum)
  1560. {
  1561. LOCKINFO *info;
  1562. locklock();
  1563. info = findlock(lock, CGLOCK_UNKNOWN, file, func, linenum);
  1564. info->unlocks++;
  1565. lockunlock();
  1566. }
  1567. void api_initlock(void *lock, enum cglock_typ typ, const char *file, const char *func, const int linenum)
  1568. {
  1569. locklock();
  1570. findlock(lock, typ, file, func, linenum);
  1571. lockunlock();
  1572. }
  1573. void dsp_det(char *msg, LOCKSTAT *stat)
  1574. {
  1575. struct tm *tm;
  1576. time_t dt;
  1577. dt = stat->tv.tv_sec;
  1578. tm = localtime(&dt);
  1579. LOCKMSGMORE("%s id=%"PRIu64" by %s %s():%d at %d-%02d-%02d %02d:%02d:%02d",
  1580. msg,
  1581. stat->lock_id,
  1582. stat->file,
  1583. stat->func,
  1584. stat->linenum,
  1585. tm->tm_year + 1900,
  1586. tm->tm_mon + 1,
  1587. tm->tm_mday,
  1588. tm->tm_hour,
  1589. tm->tm_min,
  1590. tm->tm_sec);
  1591. }
  1592. void dsp_lock(LOCKINFO *info)
  1593. {
  1594. LOCKLINE *line;
  1595. char *status;
  1596. LOCKMSG("Lock %p created by %s %s():%d",
  1597. info->lock,
  1598. info->file,
  1599. info->func,
  1600. info->linenum);
  1601. LOCKMSGMORE("gets:%"PRIu64" gots:%"PRIu64" tries:%"PRIu64
  1602. " dids:%"PRIu64" didnts:%"PRIu64" unlocks:%"PRIu64,
  1603. info->gets,
  1604. info->gots,
  1605. info->tries,
  1606. info->dids,
  1607. info->didnts,
  1608. info->unlocks);
  1609. if (info->gots > 0 || info->dids > 0) {
  1610. if (info->unlocks < info->gots + info->dids)
  1611. status = "Last got/did still HELD";
  1612. else
  1613. status = "Last got/did (idle)";
  1614. dsp_det(status, &(info->lastgot));
  1615. } else
  1616. LOCKMSGMORE("... unused ...");
  1617. if (info->lockgets) {
  1618. LOCKMSGMORE("BLOCKED gets (%"PRIu64")", info->gets - info->gots);
  1619. line = info->lockgets;
  1620. while (line) {
  1621. dsp_det("", line->stat);
  1622. line = line->next;
  1623. }
  1624. } else
  1625. LOCKMSGMORE("no blocked gets");
  1626. if (info->locktries) {
  1627. LOCKMSGMORE("BLOCKED tries (%"PRIu64")", info->tries - info->dids - info->didnts);
  1628. line = info->lockgets;
  1629. while (line) {
  1630. dsp_det("", line->stat);
  1631. line = line->next;
  1632. }
  1633. } else
  1634. LOCKMSGMORE("no blocked tries");
  1635. }
  1636. void show_locks()
  1637. {
  1638. LOCKLIST *list;
  1639. locklock();
  1640. lockmsgnow();
  1641. list = lockhead;
  1642. if (!list)
  1643. LOCKMSG("no locks?!?\n");
  1644. else {
  1645. while (list) {
  1646. dsp_lock(list->info);
  1647. list = list->next;
  1648. }
  1649. }
  1650. LOCKMSGFLUSH();
  1651. lockunlock();
  1652. }
  1653. #endif
  1654. static void lockstats(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1655. {
  1656. #if LOCK_TRACKING
  1657. show_locks();
  1658. message(io_data, MSG_LOCKOK, 0, NULL, isjson);
  1659. #else
  1660. message(io_data, MSG_LOCKDIS, 0, NULL, isjson);
  1661. #endif
  1662. }
  1663. static void apiversion(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1664. {
  1665. struct api_data *root = NULL;
  1666. bool io_open;
  1667. message(io_data, MSG_VERSION, 0, NULL, isjson);
  1668. io_open = io_add(io_data, isjson ? COMSTR JSON_VERSION : _VERSION COMSTR);
  1669. root = api_add_string(root, "CGMiner", VERSION, false);
  1670. root = api_add_const(root, "API", APIVERSION, false);
  1671. root = api_add_string(root, "Miner", g_miner_version, false);
  1672. root = api_add_string(root, "CompileTime", g_miner_compiletime, false);
  1673. root = api_add_string(root, "Type", g_miner_type, false);
  1674. root = print_data(io_data, root, isjson, false);
  1675. if (isjson && io_open)
  1676. io_close(io_data);
  1677. }
  1678. static void minerconfig(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1679. {
  1680. struct api_data *root = NULL;
  1681. bool io_open;
  1682. int asccount = 0;
  1683. int pgacount = 0;
  1684. #ifdef HAVE_AN_ASIC
  1685. asccount = numascs();
  1686. #endif
  1687. #ifdef HAVE_AN_FPGA
  1688. pgacount = numpgas();
  1689. #endif
  1690. message(io_data, MSG_MINECONFIG, 0, NULL, isjson);
  1691. io_open = io_add(io_data, isjson ? COMSTR JSON_MINECONFIG : _MINECONFIG COMSTR);
  1692. root = api_add_int(root, "ASC Count", &asccount, false);
  1693. root = api_add_int(root, "PGA Count", &pgacount, false);
  1694. root = api_add_int(root, "Pool Count", &total_pools, false);
  1695. root = api_add_const(root, "Strategy", strategies[pool_strategy].s, false);
  1696. root = api_add_int(root, "Log Interval", &opt_log_interval, false);
  1697. root = api_add_const(root, "Device Code", DEVICECODE, false);
  1698. root = api_add_const(root, "OS", OSINFO, false);
  1699. root = api_add_bool(root, "Failover-Only", &opt_fail_only, false);
  1700. root = api_add_int(root, "ScanTime", &opt_scantime, false);
  1701. root = api_add_int(root, "Queue", &opt_queue, false);
  1702. root = api_add_int(root, "Expiry", &opt_expiry, false);
  1703. #ifdef USE_USBUTILS
  1704. if (hotplug_time == 0)
  1705. root = api_add_const(root, "Hotplug", DISABLED, false);
  1706. else
  1707. root = api_add_int(root, "Hotplug", &hotplug_time, false);
  1708. #else
  1709. root = api_add_const(root, "Hotplug", NONE, false);
  1710. #endif
  1711. root = print_data(io_data, root, isjson, false);
  1712. if (isjson && io_open)
  1713. io_close(io_data);
  1714. }
  1715. static const char *status2str(enum alive status)
  1716. {
  1717. switch (status) {
  1718. case LIFE_WELL:
  1719. return ALIVE;
  1720. case LIFE_SICK:
  1721. return SICK;
  1722. case LIFE_DEAD:
  1723. return DEAD;
  1724. case LIFE_NOSTART:
  1725. return NOSTART;
  1726. case LIFE_INIT:
  1727. return INIT;
  1728. default:
  1729. return UNKNOWN;
  1730. }
  1731. }
  1732. #ifdef HAVE_AN_ASIC
  1733. static void ascstatus(struct io_data *io_data, int asc, bool isjson, bool precom)
  1734. {
  1735. struct api_data *root = NULL;
  1736. char *enabled;
  1737. char *status;
  1738. int numasc = numascs();
  1739. if (numasc > 0 && asc >= 0 && asc < numasc) {
  1740. int dev = ascdevice(asc);
  1741. if (dev < 0) // Should never happen
  1742. return;
  1743. struct cgpu_info *cgpu = get_devices(dev);
  1744. float temp = cgpu->temp;
  1745. double dev_runtime;
  1746. dev_runtime = cgpu_runtime(cgpu);
  1747. cgpu->utility = cgpu->accepted / dev_runtime * 60;
  1748. if (cgpu->deven != DEV_DISABLED)
  1749. enabled = (char *)YES;
  1750. else
  1751. enabled = (char *)NO;
  1752. status = (char *)status2str(cgpu->status);
  1753. root = api_add_int(root, "ASC", &asc, false);
  1754. root = api_add_string(root, "Name", cgpu->drv->name, false);
  1755. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  1756. root = api_add_string(root, "Enabled", enabled, false);
  1757. root = api_add_string(root, "Status", status, false);
  1758. root = api_add_temp(root, "Temperature", &temp, false);
  1759. double mhs = cgpu->total_mhashes / dev_runtime;
  1760. root = api_add_mhs(root, "MHS av", &mhs, false);
  1761. char mhsname[27];
  1762. sprintf(mhsname, "MHS %ds", opt_log_interval);
  1763. root = api_add_mhs(root, mhsname, &(cgpu->rolling), false);
  1764. root = api_add_int(root, "Accepted", &(cgpu->accepted), false);
  1765. root = api_add_int(root, "Rejected", &(cgpu->rejected), false);
  1766. root = api_add_int(root, "Hardware Errors", &(cgpu->hw_errors), false);
  1767. root = api_add_utility(root, "Utility", &(cgpu->utility), false);
  1768. int last_share_pool = cgpu->last_share_pool_time > 0 ?
  1769. cgpu->last_share_pool : -1;
  1770. root = api_add_int(root, "Last Share Pool", &last_share_pool, false);
  1771. root = api_add_time(root, "Last Share Time", &(cgpu->last_share_pool_time), false);
  1772. root = api_add_mhtotal(root, "Total MH", &(cgpu->total_mhashes), false);
  1773. root = api_add_int64(root, "Diff1 Work", &(cgpu->diff1), false);
  1774. root = api_add_diff(root, "Difficulty Accepted", &(cgpu->diff_accepted), false);
  1775. root = api_add_diff(root, "Difficulty Rejected", &(cgpu->diff_rejected), false);
  1776. root = api_add_diff(root, "Last Share Difficulty", &(cgpu->last_share_diff), false);
  1777. #ifdef USE_USBUTILS
  1778. root = api_add_bool(root, "No Device", &(cgpu->usbinfo.nodev), false);
  1779. #endif
  1780. root = api_add_time(root, "Last Valid Work", &(cgpu->last_device_valid_work), false);
  1781. double hwp = (cgpu->hw_errors + cgpu->diff1) ?
  1782. (double)(cgpu->hw_errors) / (double)(cgpu->hw_errors + cgpu->diff1) : 0;
  1783. root = api_add_percent(root, "Device Hardware%", &hwp, false);
  1784. double rejp = cgpu->diff1 ?
  1785. (double)(cgpu->diff_rejected) / (double)(cgpu->diff1) : 0;
  1786. root = api_add_percent(root, "Device Rejected%", &rejp, false);
  1787. root = api_add_elapsed(root, "Device Elapsed", &(dev_runtime), false);
  1788. root = print_data(io_data, root, isjson, precom);
  1789. }
  1790. }
  1791. #endif
  1792. #ifdef HAVE_AN_FPGA
  1793. static void pgastatus(struct io_data *io_data, int pga, bool isjson, bool precom)
  1794. {
  1795. struct api_data *root = NULL;
  1796. char *enabled;
  1797. char *status;
  1798. int numpga = numpgas();
  1799. if (numpga > 0 && pga >= 0 && pga < numpga) {
  1800. int dev = pgadevice(pga);
  1801. if (dev < 0) // Should never happen
  1802. return;
  1803. struct cgpu_info *cgpu = get_devices(dev);
  1804. double frequency = 0;
  1805. float temp = cgpu->temp;
  1806. struct timeval now;
  1807. double dev_runtime;
  1808. if (cgpu->dev_start_tv.tv_sec == 0)
  1809. dev_runtime = total_secs;
  1810. else {
  1811. cgtime(&now);
  1812. dev_runtime = tdiff(&now, &(cgpu->dev_start_tv));
  1813. }
  1814. if (dev_runtime < 1.0)
  1815. dev_runtime = 1.0;
  1816. #ifdef USE_MODMINER
  1817. if (cgpu->drv->drv_id == DRIVER_modminer)
  1818. frequency = cgpu->clock;
  1819. #endif
  1820. cgpu->utility = cgpu->accepted / dev_runtime * 60;
  1821. if (cgpu->deven != DEV_DISABLED)
  1822. enabled = (char *)YES;
  1823. else
  1824. enabled = (char *)NO;
  1825. status = (char *)status2str(cgpu->status);
  1826. root = api_add_int(root, "PGA", &pga, false);
  1827. root = api_add_string(root, "Name", cgpu->drv->name, false);
  1828. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  1829. root = api_add_string(root, "Enabled", enabled, false);
  1830. root = api_add_string(root, "Status", status, false);
  1831. root = api_add_temp(root, "Temperature", &temp, false);
  1832. double mhs = cgpu->total_mhashes / dev_runtime;
  1833. root = api_add_mhs(root, "MHS av", &mhs, false);
  1834. char mhsname[27];
  1835. sprintf(mhsname, "MHS %ds", opt_log_interval);
  1836. root = api_add_mhs(root, mhsname, &(cgpu->rolling), false);
  1837. root = api_add_int(root, "Accepted", &(cgpu->accepted), false);
  1838. root = api_add_int(root, "Rejected", &(cgpu->rejected), false);
  1839. root = api_add_int(root, "Hardware Errors", &(cgpu->hw_errors), false);
  1840. root = api_add_utility(root, "Utility", &(cgpu->utility), false);
  1841. int last_share_pool = cgpu->last_share_pool_time > 0 ?
  1842. cgpu->last_share_pool : -1;
  1843. root = api_add_int(root, "Last Share Pool", &last_share_pool, false);
  1844. root = api_add_time(root, "Last Share Time", &(cgpu->last_share_pool_time), false);
  1845. root = api_add_mhtotal(root, "Total MH", &(cgpu->total_mhashes), false);
  1846. root = api_add_freq(root, "Frequency", &frequency, false);
  1847. root = api_add_int64(root, "Diff1 Work", &(cgpu->diff1), false);
  1848. root = api_add_diff(root, "Difficulty Accepted", &(cgpu->diff_accepted), false);
  1849. root = api_add_diff(root, "Difficulty Rejected", &(cgpu->diff_rejected), false);
  1850. root = api_add_diff(root, "Last Share Difficulty", &(cgpu->last_share_diff), false);
  1851. #ifdef USE_USBUTILS
  1852. root = api_add_bool(root, "No Device", &(cgpu->usbinfo.nodev), false);
  1853. #endif
  1854. root = api_add_time(root, "Last Valid Work", &(cgpu->last_device_valid_work), false);
  1855. double hwp = (cgpu->hw_errors + cgpu->diff1) ?
  1856. (double)(cgpu->hw_errors) / (double)(cgpu->hw_errors + cgpu->diff1) : 0;
  1857. root = api_add_percent(root, "Device Hardware%", &hwp, false);
  1858. double rejp = cgpu->diff1 ?
  1859. (double)(cgpu->diff_rejected) / (double)(cgpu->diff1) : 0;
  1860. root = api_add_percent(root, "Device Rejected%", &rejp, false);
  1861. root = api_add_elapsed(root, "Device Elapsed", &(dev_runtime), false);
  1862. root = print_data(io_data, root, isjson, precom);
  1863. }
  1864. }
  1865. #endif
  1866. static void devstatus(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1867. {
  1868. bool io_open = false;
  1869. int devcount = 0;
  1870. int numasc = 0;
  1871. int numpga = 0;
  1872. int i;
  1873. #ifdef HAVE_AN_ASIC
  1874. numasc = numascs();
  1875. #endif
  1876. #ifdef HAVE_AN_FPGA
  1877. numpga = numpgas();
  1878. #endif
  1879. if (numpga == 0 && numasc == 0) {
  1880. message(io_data, MSG_NODEVS, 0, NULL, isjson);
  1881. return;
  1882. }
  1883. message(io_data, MSG_DEVS, 0, NULL, isjson);
  1884. if (isjson)
  1885. io_open = io_add(io_data, COMSTR JSON_DEVS);
  1886. #ifdef HAVE_AN_ASIC
  1887. if (numasc > 0) {
  1888. for (i = 0; i < numasc; i++) {
  1889. ascstatus(io_data, i, isjson, isjson && devcount > 0);
  1890. devcount++;
  1891. }
  1892. }
  1893. #endif
  1894. #ifdef HAVE_AN_FPGA
  1895. if (numpga > 0) {
  1896. for (i = 0; i < numpga; i++) {
  1897. pgastatus(io_data, i, isjson, isjson && devcount > 0);
  1898. devcount++;
  1899. }
  1900. }
  1901. #endif
  1902. if (isjson && io_open)
  1903. io_close(io_data);
  1904. }
  1905. static void edevstatus(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  1906. {
  1907. bool io_open = false;
  1908. int devcount = 0;
  1909. int numasc = 0;
  1910. int numpga = 0;
  1911. int i;
  1912. #ifdef USE_USBUTILS
  1913. time_t howoldsec = 0;
  1914. #endif
  1915. #ifdef HAVE_AN_ASIC
  1916. numasc = numascs();
  1917. #endif
  1918. #ifdef HAVE_AN_FPGA
  1919. numpga = numpgas();
  1920. #endif
  1921. if (numpga == 0 && numasc == 0) {
  1922. message(io_data, MSG_NODEVS, 0, NULL, isjson);
  1923. return;
  1924. }
  1925. #ifdef USE_USBUTILS
  1926. if (param && *param)
  1927. howoldsec = (time_t)atoi(param);
  1928. #endif
  1929. message(io_data, MSG_DEVS, 0, NULL, isjson);
  1930. if (isjson)
  1931. io_open = io_add(io_data, COMSTR JSON_DEVS);
  1932. #ifdef HAVE_AN_ASIC
  1933. if (numasc > 0) {
  1934. for (i = 0; i < numasc; i++) {
  1935. #ifdef USE_USBUTILS
  1936. int dev = ascdevice(i);
  1937. if (dev < 0) // Should never happen
  1938. continue;
  1939. struct cgpu_info *cgpu = get_devices(dev);
  1940. if (!cgpu)
  1941. continue;
  1942. if (cgpu->blacklisted)
  1943. continue;
  1944. if (cgpu->usbinfo.nodev) {
  1945. if (howoldsec <= 0)
  1946. continue;
  1947. if ((when - cgpu->usbinfo.last_nodev.tv_sec) >= howoldsec)
  1948. continue;
  1949. }
  1950. #endif
  1951. ascstatus(io_data, i, isjson, isjson && devcount > 0);
  1952. devcount++;
  1953. }
  1954. }
  1955. #endif
  1956. #ifdef HAVE_AN_FPGA
  1957. if (numpga > 0) {
  1958. for (i = 0; i < numpga; i++) {
  1959. #ifdef USE_USBUTILS
  1960. int dev = pgadevice(i);
  1961. if (dev < 0) // Should never happen
  1962. continue;
  1963. struct cgpu_info *cgpu = get_devices(dev);
  1964. if (!cgpu)
  1965. continue;
  1966. if (cgpu->blacklisted)
  1967. continue;
  1968. if (cgpu->usbinfo.nodev) {
  1969. if (howoldsec <= 0)
  1970. continue;
  1971. if ((when - cgpu->usbinfo.last_nodev.tv_sec) >= howoldsec)
  1972. continue;
  1973. }
  1974. #endif
  1975. pgastatus(io_data, i, isjson, isjson && devcount > 0);
  1976. devcount++;
  1977. }
  1978. }
  1979. #endif
  1980. if (isjson && io_open)
  1981. io_close(io_data);
  1982. }
  1983. #ifdef HAVE_AN_FPGA
  1984. static void pgadev(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  1985. {
  1986. bool io_open = false;
  1987. int numpga = numpgas();
  1988. int id;
  1989. if (numpga == 0) {
  1990. message(io_data, MSG_PGANON, 0, NULL, isjson);
  1991. return;
  1992. }
  1993. if (param == NULL || *param == '\0') {
  1994. message(io_data, MSG_MISID, 0, NULL, isjson);
  1995. return;
  1996. }
  1997. id = atoi(param);
  1998. if (id < 0 || id >= numpga) {
  1999. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2000. return;
  2001. }
  2002. message(io_data, MSG_PGADEV, id, NULL, isjson);
  2003. if (isjson)
  2004. io_open = io_add(io_data, COMSTR JSON_PGA);
  2005. pgastatus(io_data, id, isjson, false);
  2006. if (isjson && io_open)
  2007. io_close(io_data);
  2008. }
  2009. static void pgaenable(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2010. {
  2011. struct cgpu_info *cgpu;
  2012. int numpga = numpgas();
  2013. struct thr_info *thr;
  2014. int pga;
  2015. int id;
  2016. int i;
  2017. if (numpga == 0) {
  2018. message(io_data, MSG_PGANON, 0, NULL, isjson);
  2019. return;
  2020. }
  2021. if (param == NULL || *param == '\0') {
  2022. message(io_data, MSG_MISID, 0, NULL, isjson);
  2023. return;
  2024. }
  2025. id = atoi(param);
  2026. if (id < 0 || id >= numpga) {
  2027. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2028. return;
  2029. }
  2030. int dev = pgadevice(id);
  2031. if (dev < 0) { // Should never happen
  2032. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2033. return;
  2034. }
  2035. cgpu = get_devices(dev);
  2036. applog(LOG_DEBUG, "API: request to pgaenable pgaid %d device %d %s%u",
  2037. id, dev, cgpu->drv->name, cgpu->device_id);
  2038. if (cgpu->deven != DEV_DISABLED) {
  2039. message(io_data, MSG_PGALRENA, id, NULL, isjson);
  2040. return;
  2041. }
  2042. #if 0 /* A DISABLED device wont change status FIXME: should disabling make it WELL? */
  2043. if (cgpu->status != LIFE_WELL) {
  2044. message(io_data, MSG_PGAUNW, id, NULL, isjson);
  2045. return;
  2046. }
  2047. #endif
  2048. #ifdef USE_USBUTILS
  2049. if (cgpu->usbinfo.nodev) {
  2050. message(io_data, MSG_PGAUSBNODEV, id, NULL, isjson);
  2051. return;
  2052. }
  2053. #endif
  2054. for (i = 0; i < mining_threads; i++) {
  2055. thr = get_thread(i);
  2056. pga = thr->cgpu->cgminer_id;
  2057. if (pga == dev) {
  2058. cgpu->deven = DEV_ENABLED;
  2059. applog(LOG_DEBUG, "API: Pushing sem post to thread %d", thr->id);
  2060. cgsem_post(&thr->sem);
  2061. }
  2062. }
  2063. message(io_data, MSG_PGAENA, id, NULL, isjson);
  2064. }
  2065. static void pgadisable(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2066. {
  2067. struct cgpu_info *cgpu;
  2068. int numpga = numpgas();
  2069. int id;
  2070. if (numpga == 0) {
  2071. message(io_data, MSG_PGANON, 0, NULL, isjson);
  2072. return;
  2073. }
  2074. if (param == NULL || *param == '\0') {
  2075. message(io_data, MSG_MISID, 0, NULL, isjson);
  2076. return;
  2077. }
  2078. id = atoi(param);
  2079. if (id < 0 || id >= numpga) {
  2080. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2081. return;
  2082. }
  2083. int dev = pgadevice(id);
  2084. if (dev < 0) { // Should never happen
  2085. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2086. return;
  2087. }
  2088. cgpu = get_devices(dev);
  2089. applog(LOG_DEBUG, "API: request to pgadisable pgaid %d device %d %s%u",
  2090. id, dev, cgpu->drv->name, cgpu->device_id);
  2091. if (cgpu->deven == DEV_DISABLED) {
  2092. message(io_data, MSG_PGALRDIS, id, NULL, isjson);
  2093. return;
  2094. }
  2095. cgpu->deven = DEV_DISABLED;
  2096. message(io_data, MSG_PGADIS, id, NULL, isjson);
  2097. }
  2098. static void pgaidentify(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2099. {
  2100. struct cgpu_info *cgpu;
  2101. struct device_drv *drv;
  2102. int numpga = numpgas();
  2103. int id;
  2104. if (numpga == 0) {
  2105. message(io_data, MSG_PGANON, 0, NULL, isjson);
  2106. return;
  2107. }
  2108. if (param == NULL || *param == '\0') {
  2109. message(io_data, MSG_MISID, 0, NULL, isjson);
  2110. return;
  2111. }
  2112. id = atoi(param);
  2113. if (id < 0 || id >= numpga) {
  2114. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2115. return;
  2116. }
  2117. int dev = pgadevice(id);
  2118. if (dev < 0) { // Should never happen
  2119. message(io_data, MSG_INVPGA, id, NULL, isjson);
  2120. return;
  2121. }
  2122. cgpu = get_devices(dev);
  2123. drv = cgpu->drv;
  2124. if (!drv->identify_device)
  2125. message(io_data, MSG_PGANOID, id, NULL, isjson);
  2126. else {
  2127. drv->identify_device(cgpu);
  2128. message(io_data, MSG_PGAIDENT, id, NULL, isjson);
  2129. }
  2130. }
  2131. #endif
  2132. static void poolstatus(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2133. {
  2134. struct api_data *root = NULL;
  2135. bool io_open = false;
  2136. char *status, *lp;
  2137. int i;
  2138. int hour = 0;
  2139. int minute = 0;
  2140. int second = 0;
  2141. char lasttime[256] = {0};
  2142. long timediff = 0;
  2143. if (total_pools == 0) {
  2144. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2145. return;
  2146. }
  2147. message(io_data, MSG_POOL, 0, NULL, isjson);
  2148. if (isjson)
  2149. io_open = io_add(io_data, COMSTR JSON_POOLS);
  2150. for (i = 0; i < total_pools; i++) {
  2151. struct pool *pool = pools[i];
  2152. if (pool->removed)
  2153. continue;
  2154. switch (pool->enabled) {
  2155. case POOL_DISABLED:
  2156. status = (char *)DISABLED;
  2157. break;
  2158. case POOL_REJECTING:
  2159. status = (char *)REJECTING;
  2160. break;
  2161. case POOL_ENABLED:
  2162. if (pool->idle)
  2163. status = (char *)DEAD;
  2164. else
  2165. status = (char *)ALIVE;
  2166. break;
  2167. default:
  2168. status = (char *)UNKNOWN;
  2169. break;
  2170. }
  2171. if (pool->hdr_path)
  2172. lp = (char *)YES;
  2173. else
  2174. lp = (char *)NO;
  2175. if(pool->last_share_time <= 0) {
  2176. strcpy(lasttime, "0");
  2177. } else {
  2178. timediff = time(NULL) - pool->last_share_time;
  2179. if(timediff < 0)
  2180. timediff = 0;
  2181. hour = timediff / 3600;
  2182. minute = (timediff % 3600) / 60;
  2183. second = (timediff % 3600) % 60;
  2184. sprintf(lasttime, "%d:%02d:%02d", hour, minute, second);
  2185. }
  2186. root = api_add_int(root, "POOL", &i, false);
  2187. root = api_add_escape(root, "URL", pool->rpc_url, false);
  2188. root = api_add_string(root, "Status", status, false);
  2189. root = api_add_int(root, "Priority", &(pool->prio), false);
  2190. root = api_add_int(root, "Quota", &pool->quota, false);
  2191. root = api_add_string(root, "Long Poll", lp, false);
  2192. root = api_add_uint(root, "Getworks", &(pool->getwork_requested), false);
  2193. root = api_add_int64(root, "Accepted", &(pool->accepted), false);
  2194. root = api_add_int64(root, "Rejected", &(pool->rejected), false);
  2195. //root = api_add_int(root, "Works", &pool->works, false);
  2196. root = api_add_uint(root, "Discarded", &(pool->discarded_work), false);
  2197. root = api_add_uint(root, "Stale", &(pool->stale_shares), false);
  2198. root = api_add_uint(root, "Get Failures", &(pool->getfail_occasions), false);
  2199. root = api_add_uint(root, "Remote Failures", &(pool->remotefail_occasions), false);
  2200. root = api_add_escape(root, "User", pool->rpc_user, false);
  2201. //root = api_add_time(root, "Last Share Time", &(pool->last_share_time), false);
  2202. root = api_add_string(root, "Last Share Time", lasttime, false);
  2203. root = api_add_string(root, "Diff", pool->diff, false);
  2204. root = api_add_int64(root, "Diff1 Shares", &(pool->diff1), false);
  2205. if (pool->rpc_proxy) {
  2206. root = api_add_const(root, "Proxy Type", proxytype(pool->rpc_proxytype), false);
  2207. root = api_add_escape(root, "Proxy", pool->rpc_proxy, false);
  2208. } else {
  2209. root = api_add_const(root, "Proxy Type", BLANK, false);
  2210. root = api_add_const(root, "Proxy", BLANK, false);
  2211. }
  2212. root = api_add_diff(root, "Difficulty Accepted", &(pool->diff_accepted), false);
  2213. root = api_add_diff(root, "Difficulty Rejected", &(pool->diff_rejected), false);
  2214. root = api_add_diff(root, "Difficulty Stale", &(pool->diff_stale), false);
  2215. root = api_add_diff(root, "Last Share Difficulty", &(pool->last_share_diff), false);
  2216. root = api_add_bool(root, "Has Stratum", &(pool->has_stratum), false);
  2217. root = api_add_bool(root, "Stratum Active", &(pool->stratum_active), false);
  2218. if (pool->stratum_active)
  2219. root = api_add_escape(root, "Stratum URL", pool->stratum_url, false);
  2220. else
  2221. root = api_add_const(root, "Stratum URL", BLANK, false);
  2222. root = api_add_bool(root, "Has GBT", &(pool->has_gbt), false);
  2223. root = api_add_uint64(root, "Best Share", &(pool->best_diff), true);
  2224. double rejp = (pool->diff_accepted + pool->diff_rejected + pool->diff_stale) ?
  2225. (double)(pool->diff_rejected) / (double)(pool->diff_accepted + pool->diff_rejected + pool->diff_stale) : 0;
  2226. root = api_add_percent(root, "Pool Rejected%", &rejp, false);
  2227. double stalep = (pool->diff_accepted + pool->diff_rejected + pool->diff_stale) ?
  2228. (double)(pool->diff_stale) / (double)(pool->diff_accepted + pool->diff_rejected + pool->diff_stale) : 0;
  2229. root = api_add_percent(root, "Pool Stale%", &stalep, false);
  2230. root = print_data(io_data, root, isjson, isjson && (i > 0));
  2231. }
  2232. if (isjson && io_open)
  2233. io_close(io_data);
  2234. }
  2235. static void lcddisplay(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2236. {
  2237. struct api_data *root = NULL;
  2238. bool io_open = false;
  2239. char *status, *lp;
  2240. double ghs;
  2241. char szindex[32] = {0};
  2242. char szfan[32] = {0};
  2243. char sztemp[32] = {0};
  2244. char szpool[32] = {0};
  2245. char szuser[32] = {0};
  2246. struct pool *pool = current_pool();
  2247. message(io_data, MSG_POOL, 0, NULL, isjson);
  2248. if (isjson)
  2249. io_open = io_add(io_data, COMSTR JSON_POOLS);
  2250. ghs = total_mhashes_done / 1000 / total_secs;
  2251. strcpy(szindex, "0");
  2252. root = api_add_string(root, "LCD", szindex, false);
  2253. root = api_add_mhs(root, "GHS5s", &(g_displayed_rolling), false);
  2254. root = api_add_mhs(root, "GHSavg", &(ghs), false);
  2255. sprintf(szfan, "%d", g_max_fan);
  2256. root = api_add_string(root, "fan", szfan, false);
  2257. sprintf(sztemp, "%d", g_max_temp);
  2258. root = api_add_string(root, "temp", sztemp, false);
  2259. if(pool == NULL) {
  2260. strcpy(szpool, "no");
  2261. strcpy(szuser, "no");
  2262. root = api_add_string(root, "pool", szpool, false);
  2263. root = api_add_string(root, "user", szuser, false);
  2264. } else {
  2265. root = api_add_string(root, "pool", pool->rpc_url, false);
  2266. root = api_add_string(root, "user", pool->rpc_user, false);
  2267. }
  2268. root = print_data(io_data, root, isjson, isjson);
  2269. if (isjson && io_open)
  2270. io_close(io_data);
  2271. }
  2272. static void summary(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2273. {
  2274. struct api_data *root = NULL;
  2275. bool io_open;
  2276. double utility, ghs, work_utility;
  2277. message(io_data, MSG_SUMM, 0, NULL, isjson);
  2278. io_open = io_add(io_data, isjson ? COMSTR JSON_SUMMARY : _SUMMARY COMSTR);
  2279. // stop hashmeter() changing some while copying
  2280. mutex_lock(&hash_lock);
  2281. utility = total_accepted / ( total_secs ? total_secs : 1 ) * 60;
  2282. ghs = total_mhashes_done / 1000 / total_secs;
  2283. work_utility = total_diff1 / ( total_secs ? total_secs : 1 ) * 60;
  2284. root = api_add_elapsed(root, "Elapsed", &(total_secs), true);
  2285. root = api_add_mhs(root, "GHS 5s", &(g_displayed_rolling), false);
  2286. root = api_add_mhs(root, "GHS av", &(ghs), false);
  2287. root = api_add_uint(root, "Found Blocks", &(found_blocks), true);
  2288. root = api_add_int64(root, "Getworks", &(total_getworks), true);
  2289. root = api_add_int64(root, "Accepted", &(total_accepted), true);
  2290. root = api_add_int64(root, "Rejected", &(total_rejected), true);
  2291. root = api_add_int(root, "Hardware Errors", &(hw_errors), true);
  2292. root = api_add_utility(root, "Utility", &(utility), false);
  2293. root = api_add_int64(root, "Discarded", &(total_discarded), true);
  2294. root = api_add_int64(root, "Stale", &(total_stale), true);
  2295. root = api_add_uint(root, "Get Failures", &(total_go), true);
  2296. root = api_add_uint(root, "Local Work", &(local_work), true);
  2297. root = api_add_uint(root, "Remote Failures", &(total_ro), true);
  2298. root = api_add_uint(root, "Network Blocks", &(new_blocks), true);
  2299. root = api_add_mhtotal(root, "Total MH", &(total_mhashes_done), true);
  2300. root = api_add_utility(root, "Work Utility", &(work_utility), false);
  2301. root = api_add_diff(root, "Difficulty Accepted", &(total_diff_accepted), true);
  2302. root = api_add_diff(root, "Difficulty Rejected", &(total_diff_rejected), true);
  2303. root = api_add_diff(root, "Difficulty Stale", &(total_diff_stale), true);
  2304. root = api_add_uint64(root, "Best Share", &(best_diff), true);
  2305. double hwp = (hw_errors + total_diff1) ?
  2306. (double)(hw_errors) / (double)(hw_errors + total_diff1) : 0;
  2307. root = api_add_percent(root, "Device Hardware%", &hwp, false);
  2308. double rejp = total_diff1 ?
  2309. (double)(total_diff_rejected) / (double)(total_diff1) : 0;
  2310. root = api_add_percent(root, "Device Rejected%", &rejp, false);
  2311. double prejp = (total_diff_accepted + total_diff_rejected + total_diff_stale) ?
  2312. (double)(total_diff_rejected) / (double)(total_diff_accepted + total_diff_rejected + total_diff_stale) : 0;
  2313. root = api_add_percent(root, "Pool Rejected%", &prejp, false);
  2314. double stalep = (total_diff_accepted + total_diff_rejected + total_diff_stale) ?
  2315. (double)(total_diff_stale) / (double)(total_diff_accepted + total_diff_rejected + total_diff_stale) : 0;
  2316. root = api_add_percent(root, "Pool Stale%", &stalep, false);
  2317. root = api_add_time(root, "Last getwork", &last_getwork, false);
  2318. mutex_unlock(&hash_lock);
  2319. root = print_data(io_data, root, isjson, false);
  2320. if (isjson && io_open)
  2321. io_close(io_data);
  2322. }
  2323. static void pgacount(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2324. {
  2325. struct api_data *root = NULL;
  2326. bool io_open;
  2327. int count = 0;
  2328. #ifdef HAVE_AN_FPGA
  2329. count = numpgas();
  2330. #endif
  2331. message(io_data, MSG_NUMPGA, 0, NULL, isjson);
  2332. io_open = io_add(io_data, isjson ? COMSTR JSON_PGAS : _PGAS COMSTR);
  2333. root = api_add_int(root, "Count", &count, false);
  2334. root = print_data(io_data, root, isjson, false);
  2335. if (isjson && io_open)
  2336. io_close(io_data);
  2337. }
  2338. static void switchpool(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2339. {
  2340. struct pool *pool;
  2341. int id;
  2342. if (total_pools == 0) {
  2343. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2344. return;
  2345. }
  2346. if (param == NULL || *param == '\0') {
  2347. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2348. return;
  2349. }
  2350. id = atoi(param);
  2351. cg_rlock(&control_lock);
  2352. if (id < 0 || id >= total_pools) {
  2353. cg_runlock(&control_lock);
  2354. message(io_data, MSG_INVPID, id, NULL, isjson);
  2355. return;
  2356. }
  2357. pool = pools[id];
  2358. pool->enabled = POOL_ENABLED;
  2359. cg_runlock(&control_lock);
  2360. switch_pools(pool);
  2361. message(io_data, MSG_SWITCHP, id, NULL, isjson);
  2362. }
  2363. static void copyadvanceafter(char ch, char **param, char **buf)
  2364. {
  2365. #define src_p (*param)
  2366. #define dst_b (*buf)
  2367. while (*src_p && *src_p != ch) {
  2368. if (*src_p == '\\' && *(src_p+1) != '\0')
  2369. src_p++;
  2370. *(dst_b++) = *(src_p++);
  2371. }
  2372. if (*src_p)
  2373. src_p++;
  2374. *(dst_b++) = '\0';
  2375. }
  2376. static bool pooldetails(char *param, char **url, char **user, char **pass)
  2377. {
  2378. char *ptr, *buf;
  2379. ptr = buf = malloc(strlen(param)+1);
  2380. if (unlikely(!buf))
  2381. quit(1, "Failed to malloc pooldetails buf");
  2382. *url = buf;
  2383. // copy url
  2384. copyadvanceafter(',', &param, &buf);
  2385. if (!(*param)) // missing user
  2386. goto exitsama;
  2387. *user = buf;
  2388. // copy user
  2389. copyadvanceafter(',', &param, &buf);
  2390. if (!*param) // missing pass
  2391. goto exitsama;
  2392. *pass = buf;
  2393. // copy pass
  2394. copyadvanceafter(',', &param, &buf);
  2395. return true;
  2396. exitsama:
  2397. free(ptr);
  2398. return false;
  2399. }
  2400. static void addpool(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2401. {
  2402. char *url, *user, *pass;
  2403. struct pool *pool;
  2404. char *ptr;
  2405. if (param == NULL || *param == '\0') {
  2406. message(io_data, MSG_MISPDP, 0, NULL, isjson);
  2407. return;
  2408. }
  2409. if (!pooldetails(param, &url, &user, &pass)) {
  2410. ptr = escape_string(param, isjson);
  2411. message(io_data, MSG_INVPDP, 0, ptr, isjson);
  2412. if (ptr != param)
  2413. free(ptr);
  2414. ptr = NULL;
  2415. return;
  2416. }
  2417. pool = add_pool();
  2418. detect_stratum(pool, url);
  2419. add_pool_details(pool, true, url, user, pass);
  2420. ptr = escape_string(url, isjson);
  2421. message(io_data, MSG_ADDPOOL, pool->pool_no, ptr, isjson);
  2422. if (ptr != url)
  2423. free(ptr);
  2424. ptr = NULL;
  2425. }
  2426. static void enablepool(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2427. {
  2428. struct pool *pool;
  2429. int id;
  2430. if (total_pools == 0) {
  2431. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2432. return;
  2433. }
  2434. if (param == NULL || *param == '\0') {
  2435. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2436. return;
  2437. }
  2438. id = atoi(param);
  2439. if (id < 0 || id >= total_pools) {
  2440. message(io_data, MSG_INVPID, id, NULL, isjson);
  2441. return;
  2442. }
  2443. pool = pools[id];
  2444. if (pool->enabled == POOL_ENABLED) {
  2445. message(io_data, MSG_ALRENAP, id, NULL, isjson);
  2446. return;
  2447. }
  2448. pool->enabled = POOL_ENABLED;
  2449. if (pool->prio < current_pool()->prio)
  2450. switch_pools(pool);
  2451. message(io_data, MSG_ENAPOOL, id, NULL, isjson);
  2452. }
  2453. static void poolpriority(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2454. {
  2455. char *ptr, *next;
  2456. int i, pr, prio = 0;
  2457. // TODO: all cgminer code needs a mutex added everywhere for change
  2458. // access to total_pools and also parts of the pools[] array,
  2459. // just copying total_pools here wont solve that
  2460. if (total_pools == 0) {
  2461. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2462. return;
  2463. }
  2464. if (param == NULL || *param == '\0') {
  2465. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2466. return;
  2467. }
  2468. bool pools_changed[total_pools];
  2469. int new_prio[total_pools];
  2470. for (i = 0; i < total_pools; ++i)
  2471. pools_changed[i] = false;
  2472. next = param;
  2473. while (next && *next) {
  2474. ptr = next;
  2475. next = strchr(ptr, ',');
  2476. if (next)
  2477. *(next++) = '\0';
  2478. i = atoi(ptr);
  2479. if (i < 0 || i >= total_pools) {
  2480. message(io_data, MSG_INVPID, i, NULL, isjson);
  2481. return;
  2482. }
  2483. if (pools_changed[i]) {
  2484. message(io_data, MSG_DUPPID, i, NULL, isjson);
  2485. return;
  2486. }
  2487. pools_changed[i] = true;
  2488. new_prio[i] = prio++;
  2489. }
  2490. // Only change them if no errors
  2491. for (i = 0; i < total_pools; i++) {
  2492. if (pools_changed[i])
  2493. pools[i]->prio = new_prio[i];
  2494. }
  2495. // In priority order, cycle through the unchanged pools and append them
  2496. for (pr = 0; pr < total_pools; pr++)
  2497. for (i = 0; i < total_pools; i++) {
  2498. if (!pools_changed[i] && pools[i]->prio == pr) {
  2499. pools[i]->prio = prio++;
  2500. pools_changed[i] = true;
  2501. break;
  2502. }
  2503. }
  2504. if (current_pool()->prio)
  2505. switch_pools(NULL);
  2506. message(io_data, MSG_POOLPRIO, 0, NULL, isjson);
  2507. }
  2508. static void poolquota(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2509. {
  2510. struct pool *pool;
  2511. int quota, id;
  2512. char *comma;
  2513. if (total_pools == 0) {
  2514. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2515. return;
  2516. }
  2517. if (param == NULL || *param == '\0') {
  2518. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2519. return;
  2520. }
  2521. comma = strchr(param, ',');
  2522. if (!comma) {
  2523. message(io_data, MSG_CONVAL, 0, param, isjson);
  2524. return;
  2525. }
  2526. *(comma++) = '\0';
  2527. id = atoi(param);
  2528. if (id < 0 || id >= total_pools) {
  2529. message(io_data, MSG_INVPID, id, NULL, isjson);
  2530. return;
  2531. }
  2532. pool = pools[id];
  2533. quota = atoi(comma);
  2534. if (quota < 0) {
  2535. message(io_data, MSG_INVNEG, quota, pool->rpc_url, isjson);
  2536. return;
  2537. }
  2538. pool->quota = quota;
  2539. adjust_quota_gcd();
  2540. message(io_data, MSG_SETQUOTA, quota, pool->rpc_url, isjson);
  2541. }
  2542. static void disablepool(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2543. {
  2544. struct pool *pool;
  2545. int id;
  2546. if (total_pools == 0) {
  2547. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2548. return;
  2549. }
  2550. if (param == NULL || *param == '\0') {
  2551. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2552. return;
  2553. }
  2554. id = atoi(param);
  2555. if (id < 0 || id >= total_pools) {
  2556. message(io_data, MSG_INVPID, id, NULL, isjson);
  2557. return;
  2558. }
  2559. pool = pools[id];
  2560. if (pool->enabled == POOL_DISABLED) {
  2561. message(io_data, MSG_ALRDISP, id, NULL, isjson);
  2562. return;
  2563. }
  2564. if (enabled_pools <= 1) {
  2565. message(io_data, MSG_DISLASTP, id, NULL, isjson);
  2566. return;
  2567. }
  2568. pool->enabled = POOL_DISABLED;
  2569. if (pool == current_pool())
  2570. switch_pools(NULL);
  2571. message(io_data, MSG_DISPOOL, id, NULL, isjson);
  2572. }
  2573. static void removepool(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2574. {
  2575. struct pool *pool;
  2576. char *rpc_url;
  2577. bool dofree = false;
  2578. int id;
  2579. if (total_pools == 0) {
  2580. message(io_data, MSG_NOPOOL, 0, NULL, isjson);
  2581. return;
  2582. }
  2583. if (param == NULL || *param == '\0') {
  2584. message(io_data, MSG_MISPID, 0, NULL, isjson);
  2585. return;
  2586. }
  2587. id = atoi(param);
  2588. if (id < 0 || id >= total_pools) {
  2589. message(io_data, MSG_INVPID, id, NULL, isjson);
  2590. return;
  2591. }
  2592. if (total_pools <= 1) {
  2593. message(io_data, MSG_REMLASTP, id, NULL, isjson);
  2594. return;
  2595. }
  2596. pool = pools[id];
  2597. if (pool == current_pool())
  2598. switch_pools(NULL);
  2599. if (pool == current_pool()) {
  2600. message(io_data, MSG_ACTPOOL, id, NULL, isjson);
  2601. return;
  2602. }
  2603. pool->enabled = POOL_DISABLED;
  2604. rpc_url = escape_string(pool->rpc_url, isjson);
  2605. if (rpc_url != pool->rpc_url)
  2606. dofree = true;
  2607. remove_pool(pool);
  2608. message(io_data, MSG_REMPOOL, id, rpc_url, isjson);
  2609. if (dofree)
  2610. free(rpc_url);
  2611. rpc_url = NULL;
  2612. }
  2613. void doquit(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2614. {
  2615. if (isjson)
  2616. io_put(io_data, JSON_ACTION JSON_BYE);
  2617. else
  2618. io_put(io_data, _BYE);
  2619. bye = true;
  2620. do_a_quit = true;
  2621. }
  2622. void dorestart(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2623. {
  2624. if (isjson)
  2625. io_put(io_data, JSON_ACTION JSON_RESTART);
  2626. else
  2627. io_put(io_data, _RESTART);
  2628. bye = true;
  2629. do_a_restart = true;
  2630. }
  2631. void privileged(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2632. {
  2633. message(io_data, MSG_ACCOK, 0, NULL, isjson);
  2634. }
  2635. void notifystatus(struct io_data *io_data, int device, struct cgpu_info *cgpu, bool isjson, __maybe_unused char group)
  2636. {
  2637. struct api_data *root = NULL;
  2638. char *reason;
  2639. if (cgpu->device_last_not_well == 0)
  2640. reason = REASON_NONE;
  2641. else
  2642. switch(cgpu->device_not_well_reason) {
  2643. case REASON_THREAD_FAIL_INIT:
  2644. reason = REASON_THREAD_FAIL_INIT_STR;
  2645. break;
  2646. case REASON_THREAD_ZERO_HASH:
  2647. reason = REASON_THREAD_ZERO_HASH_STR;
  2648. break;
  2649. case REASON_THREAD_FAIL_QUEUE:
  2650. reason = REASON_THREAD_FAIL_QUEUE_STR;
  2651. break;
  2652. case REASON_DEV_SICK_IDLE_60:
  2653. reason = REASON_DEV_SICK_IDLE_60_STR;
  2654. break;
  2655. case REASON_DEV_DEAD_IDLE_600:
  2656. reason = REASON_DEV_DEAD_IDLE_600_STR;
  2657. break;
  2658. case REASON_DEV_NOSTART:
  2659. reason = REASON_DEV_NOSTART_STR;
  2660. break;
  2661. case REASON_DEV_OVER_HEAT:
  2662. reason = REASON_DEV_OVER_HEAT_STR;
  2663. break;
  2664. case REASON_DEV_THERMAL_CUTOFF:
  2665. reason = REASON_DEV_THERMAL_CUTOFF_STR;
  2666. break;
  2667. case REASON_DEV_COMMS_ERROR:
  2668. reason = REASON_DEV_COMMS_ERROR_STR;
  2669. break;
  2670. default:
  2671. reason = REASON_UNKNOWN_STR;
  2672. break;
  2673. }
  2674. // ALL counters (and only counters) must start the name with a '*'
  2675. // Simplifies future external support for identifying new counters
  2676. root = api_add_int(root, "NOTIFY", &device, false);
  2677. root = api_add_string(root, "Name", cgpu->drv->name, false);
  2678. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  2679. root = api_add_time(root, "Last Well", &(cgpu->device_last_well), false);
  2680. root = api_add_time(root, "Last Not Well", &(cgpu->device_last_not_well), false);
  2681. root = api_add_string(root, "Reason Not Well", reason, false);
  2682. root = api_add_int(root, "*Thread Fail Init", &(cgpu->thread_fail_init_count), false);
  2683. root = api_add_int(root, "*Thread Zero Hash", &(cgpu->thread_zero_hash_count), false);
  2684. root = api_add_int(root, "*Thread Fail Queue", &(cgpu->thread_fail_queue_count), false);
  2685. root = api_add_int(root, "*Dev Sick Idle 60s", &(cgpu->dev_sick_idle_60_count), false);
  2686. root = api_add_int(root, "*Dev Dead Idle 600s", &(cgpu->dev_dead_idle_600_count), false);
  2687. root = api_add_int(root, "*Dev Nostart", &(cgpu->dev_nostart_count), false);
  2688. root = api_add_int(root, "*Dev Over Heat", &(cgpu->dev_over_heat_count), false);
  2689. root = api_add_int(root, "*Dev Thermal Cutoff", &(cgpu->dev_thermal_cutoff_count), false);
  2690. root = api_add_int(root, "*Dev Comms Error", &(cgpu->dev_comms_error_count), false);
  2691. root = api_add_int(root, "*Dev Throttle", &(cgpu->dev_throttle_count), false);
  2692. root = print_data(io_data, root, isjson, isjson && (device > 0));
  2693. }
  2694. static void notify(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, char group)
  2695. {
  2696. struct cgpu_info *cgpu;
  2697. bool io_open = false;
  2698. int i;
  2699. if (total_devices == 0) {
  2700. message(io_data, MSG_NODEVS, 0, NULL, isjson);
  2701. return;
  2702. }
  2703. message(io_data, MSG_NOTIFY, 0, NULL, isjson);
  2704. if (isjson)
  2705. io_open = io_add(io_data, COMSTR JSON_NOTIFY);
  2706. for (i = 0; i < total_devices; i++) {
  2707. cgpu = get_devices(i);
  2708. notifystatus(io_data, i, cgpu, isjson, group);
  2709. }
  2710. if (isjson && io_open)
  2711. io_close(io_data);
  2712. }
  2713. static void devdetails(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2714. {
  2715. struct api_data *root = NULL;
  2716. bool io_open = false;
  2717. struct cgpu_info *cgpu;
  2718. int i;
  2719. if (total_devices == 0) {
  2720. message(io_data, MSG_NODEVS, 0, NULL, isjson);
  2721. return;
  2722. }
  2723. message(io_data, MSG_DEVDETAILS, 0, NULL, isjson);
  2724. if (isjson)
  2725. io_open = io_add(io_data, COMSTR JSON_DEVDETAILS);
  2726. for (i = 0; i < total_devices; i++) {
  2727. cgpu = get_devices(i);
  2728. root = api_add_int(root, "DEVDETAILS", &i, false);
  2729. root = api_add_string(root, "Name", cgpu->drv->name, false);
  2730. root = api_add_int(root, "ID", &(cgpu->device_id), false);
  2731. root = api_add_string(root, "Driver", cgpu->drv->dname, false);
  2732. root = api_add_const(root, "Kernel", cgpu->kname ? : BLANK, false);
  2733. root = api_add_const(root, "Model", cgpu->name ? : BLANK, false);
  2734. root = api_add_const(root, "Device Path", cgpu->device_path ? : BLANK, false);
  2735. root = print_data(io_data, root, isjson, isjson && (i > 0));
  2736. }
  2737. if (isjson && io_open)
  2738. io_close(io_data);
  2739. }
  2740. void dosave(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2741. {
  2742. char filename[PATH_MAX];
  2743. FILE *fcfg;
  2744. char *ptr;
  2745. if (param == NULL || *param == '\0') {
  2746. default_save_file(filename);
  2747. param = filename;
  2748. }
  2749. fcfg = fopen(param, "w");
  2750. if (!fcfg) {
  2751. ptr = escape_string(param, isjson);
  2752. message(io_data, MSG_BADFN, 0, ptr, isjson);
  2753. if (ptr != param)
  2754. free(ptr);
  2755. ptr = NULL;
  2756. return;
  2757. }
  2758. write_config(fcfg);
  2759. fclose(fcfg);
  2760. ptr = escape_string(param, isjson);
  2761. message(io_data, MSG_SAVED, 0, ptr, isjson);
  2762. if (ptr != param)
  2763. free(ptr);
  2764. ptr = NULL;
  2765. }
  2766. static int itemstats(struct io_data *io_data, int i, char *id, struct cgminer_stats *stats, struct cgminer_pool_stats *pool_stats, struct api_data *extra, struct cgpu_info *cgpu, bool isjson)
  2767. {
  2768. struct api_data *root = NULL;
  2769. double ghs;
  2770. ghs = total_mhashes_done / 1000 / total_secs;
  2771. root = api_add_int(root, "STATS", &i, false);
  2772. root = api_add_string(root, "ID", id, false);
  2773. root = api_add_elapsed(root, "Elapsed", &(total_secs), false);
  2774. root = api_add_uint32(root, "Calls", &(stats->getwork_calls), false);
  2775. root = api_add_timeval(root, "Wait", &(stats->getwork_wait), false);
  2776. root = api_add_timeval(root, "Max", &(stats->getwork_wait_max), false);
  2777. root = api_add_timeval(root, "Min", &(stats->getwork_wait_min), false);
  2778. root = api_add_mhs(root, "GHS 5s", &(g_displayed_rolling), false);
  2779. root = api_add_mhs(root, "GHS av", &(ghs), false);
  2780. /*
  2781. if (pool_stats) {
  2782. root = api_add_uint32(root, "Pool Calls", &(pool_stats->getwork_calls), false);
  2783. root = api_add_uint32(root, "Pool Attempts", &(pool_stats->getwork_attempts), false);
  2784. root = api_add_timeval(root, "Pool Wait", &(pool_stats->getwork_wait), false);
  2785. root = api_add_timeval(root, "Pool Max", &(pool_stats->getwork_wait_max), false);
  2786. root = api_add_timeval(root, "Pool Min", &(pool_stats->getwork_wait_min), false);
  2787. root = api_add_double(root, "Pool Av", &(pool_stats->getwork_wait_rolling), false);
  2788. root = api_add_bool(root, "Work Had Roll Time", &(pool_stats->hadrolltime), false);
  2789. root = api_add_bool(root, "Work Can Roll", &(pool_stats->canroll), false);
  2790. root = api_add_bool(root, "Work Had Expire", &(pool_stats->hadexpire), false);
  2791. root = api_add_uint32(root, "Work Roll Time", &(pool_stats->rolltime), false);
  2792. root = api_add_diff(root, "Work Diff", &(pool_stats->last_diff), false);
  2793. root = api_add_diff(root, "Min Diff", &(pool_stats->min_diff), false);
  2794. root = api_add_diff(root, "Max Diff", &(pool_stats->max_diff), false);
  2795. root = api_add_uint32(root, "Min Diff Count", &(pool_stats->min_diff_count), false);
  2796. root = api_add_uint32(root, "Max Diff Count", &(pool_stats->max_diff_count), false);
  2797. root = api_add_uint64(root, "Times Sent", &(pool_stats->times_sent), false);
  2798. root = api_add_uint64(root, "Bytes Sent", &(pool_stats->bytes_sent), false);
  2799. root = api_add_uint64(root, "Times Recv", &(pool_stats->times_received), false);
  2800. root = api_add_uint64(root, "Bytes Recv", &(pool_stats->bytes_received), false);
  2801. root = api_add_uint64(root, "Net Bytes Sent", &(pool_stats->net_bytes_sent), false);
  2802. root = api_add_uint64(root, "Net Bytes Recv", &(pool_stats->net_bytes_received), false);
  2803. }*/
  2804. if (extra)
  2805. root = api_add_extra(root, extra);
  2806. if (cgpu) {
  2807. #ifdef USE_USBUTILS
  2808. char details[256];
  2809. if (cgpu->usbinfo.pipe_count)
  2810. snprintf(details, sizeof(details),
  2811. "%"PRIu64" %"PRIu64"/%"PRIu64"/%"PRIu64" %lu",
  2812. cgpu->usbinfo.pipe_count,
  2813. cgpu->usbinfo.clear_err_count,
  2814. cgpu->usbinfo.retry_err_count,
  2815. cgpu->usbinfo.clear_fail_count,
  2816. (unsigned long)(cgpu->usbinfo.last_pipe));
  2817. else
  2818. strcpy(details, "0");
  2819. root = api_add_string(root, "USB Pipe", details, true);
  2820. /*
  2821. snprintf(details, sizeof(details),
  2822. "r%"PRIu64" %.6f w%"PRIu64" %.6f",
  2823. cgpu->usbinfo.read_delay_count,
  2824. cgpu->usbinfo.total_read_delay,
  2825. cgpu->usbinfo.write_delay_count,
  2826. cgpu->usbinfo.total_write_delay);
  2827. root = api_add_string(root, "USB Delay", details, true);
  2828. if (cgpu->usbinfo.usb_tmo[0].count == 0 &&
  2829. cgpu->usbinfo.usb_tmo[1].count == 0 &&
  2830. cgpu->usbinfo.usb_tmo[2].count == 0) {
  2831. snprintf(details, sizeof(details),
  2832. "%"PRIu64" 0", cgpu->usbinfo.tmo_count);
  2833. } else {
  2834. snprintf(details, sizeof(details),
  2835. "%"PRIu64" %d=%d/%d/%d/%"PRIu64"/%"PRIu64
  2836. " %d=%d/%d/%d/%"PRIu64"/%"PRIu64
  2837. " %d=%d/%d/%d/%"PRIu64"/%"PRIu64" ",
  2838. cgpu->usbinfo.tmo_count,
  2839. USB_TMO_0, cgpu->usbinfo.usb_tmo[0].count,
  2840. cgpu->usbinfo.usb_tmo[0].min_tmo,
  2841. cgpu->usbinfo.usb_tmo[0].max_tmo,
  2842. cgpu->usbinfo.usb_tmo[0].total_over,
  2843. cgpu->usbinfo.usb_tmo[0].total_tmo,
  2844. USB_TMO_1, cgpu->usbinfo.usb_tmo[1].count,
  2845. cgpu->usbinfo.usb_tmo[1].min_tmo,
  2846. cgpu->usbinfo.usb_tmo[1].max_tmo,
  2847. cgpu->usbinfo.usb_tmo[1].total_over,
  2848. cgpu->usbinfo.usb_tmo[1].total_tmo,
  2849. USB_TMO_2, cgpu->usbinfo.usb_tmo[2].count,
  2850. cgpu->usbinfo.usb_tmo[2].min_tmo,
  2851. cgpu->usbinfo.usb_tmo[2].max_tmo,
  2852. cgpu->usbinfo.usb_tmo[2].total_over,
  2853. cgpu->usbinfo.usb_tmo[2].total_tmo);
  2854. }
  2855. root = api_add_string(root, "USB tmo", details, true);*/
  2856. #endif
  2857. }
  2858. root = print_data(io_data, root, isjson, isjson && (i > 0));
  2859. return ++i;
  2860. }
  2861. static void minerstats(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2862. {
  2863. struct api_data *root = NULL;
  2864. struct cgpu_info *cgpu;
  2865. bool io_open = false;
  2866. struct api_data *extra;
  2867. char id[20];
  2868. int i, j;
  2869. message(io_data, MSG_MINESTATS, 0, NULL, isjson);
  2870. if (isjson)
  2871. io_open = io_add(io_data, COMSTR JSON_MINESTATS);
  2872. root = api_add_string(root, "CGMiner", VERSION, false);
  2873. root = api_add_string(root, "Miner", g_miner_version, false);
  2874. root = api_add_string(root, "CompileTime", g_miner_compiletime, false);
  2875. root = api_add_string(root, "Type", g_miner_type, false);
  2876. root = print_data(io_data, root, isjson, false);
  2877. i = 0;
  2878. for (j = 0; j < total_devices; j++) {
  2879. cgpu = get_devices(j);
  2880. if (cgpu && cgpu->drv) {
  2881. if (cgpu->drv->get_api_stats)
  2882. extra = cgpu->drv->get_api_stats(cgpu);
  2883. else
  2884. extra = NULL;
  2885. sprintf(id, "%s%d", cgpu->drv->name, cgpu->device_id);
  2886. i = itemstats(io_data, i, id, &(cgpu->cgminer_stats), NULL, extra, cgpu, isjson);
  2887. }
  2888. }
  2889. /*
  2890. for (j = 0; j < total_pools; j++) {
  2891. struct pool *pool = pools[j];
  2892. sprintf(id, "POOL%d", j);
  2893. i = itemstats(io_data, i, id, &(pool->cgminer_stats), &(pool->cgminer_pool_stats), NULL, NULL, isjson);
  2894. }*/
  2895. if (isjson && io_open)
  2896. io_close(io_data);
  2897. }
  2898. static void minerestats(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2899. {
  2900. struct cgpu_info *cgpu;
  2901. bool io_open = false;
  2902. struct api_data *extra;
  2903. char id[20];
  2904. int i, j;
  2905. #ifdef USE_USBUTILS
  2906. time_t howoldsec = 0;
  2907. if (param && *param)
  2908. howoldsec = (time_t)atoi(param);
  2909. #endif
  2910. message(io_data, MSG_MINESTATS, 0, NULL, isjson);
  2911. if (isjson)
  2912. io_open = io_add(io_data, COMSTR JSON_MINESTATS);
  2913. i = 0;
  2914. for (j = 0; j < total_devices; j++) {
  2915. cgpu = get_devices(j);
  2916. if (!cgpu)
  2917. continue;
  2918. #ifdef USE_USBUTILS
  2919. if (cgpu->blacklisted)
  2920. continue;
  2921. if (cgpu->usbinfo.nodev) {
  2922. if (howoldsec <= 0)
  2923. continue;
  2924. if ((when - cgpu->usbinfo.last_nodev.tv_sec) >= howoldsec)
  2925. continue;
  2926. }
  2927. #endif
  2928. if (cgpu->drv) {
  2929. if (cgpu->drv->get_api_stats)
  2930. extra = cgpu->drv->get_api_stats(cgpu);
  2931. else
  2932. extra = NULL;
  2933. sprintf(id, "%s%d", cgpu->drv->name, cgpu->device_id);
  2934. i = itemstats(io_data, i, id, &(cgpu->cgminer_stats), NULL, extra, cgpu, isjson);
  2935. }
  2936. }
  2937. if (isjson && io_open)
  2938. io_close(io_data);
  2939. }
  2940. static void failoveronly(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2941. {
  2942. if (param == NULL || *param == '\0') {
  2943. message(io_data, MSG_MISBOOL, 0, NULL, isjson);
  2944. return;
  2945. }
  2946. *param = tolower(*param);
  2947. if (*param != 't' && *param != 'f') {
  2948. message(io_data, MSG_INVBOOL, 0, NULL, isjson);
  2949. return;
  2950. }
  2951. bool tf = (*param == 't');
  2952. opt_fail_only = tf;
  2953. message(io_data, MSG_FOO, tf, NULL, isjson);
  2954. }
  2955. static void minecoin(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  2956. {
  2957. struct api_data *root = NULL;
  2958. bool io_open;
  2959. message(io_data, MSG_MINECOIN, 0, NULL, isjson);
  2960. io_open = io_add(io_data, isjson ? COMSTR JSON_MINECOIN : _MINECOIN COMSTR);
  2961. root = api_add_const(root, "Hash Method", SHA256STR, false);
  2962. cg_rlock(&ch_lock);
  2963. root = api_add_timeval(root, "Current Block Time", &block_timeval, true);
  2964. root = api_add_string(root, "Current Block Hash", current_hash, true);
  2965. cg_runlock(&ch_lock);
  2966. root = api_add_bool(root, "LP", &have_longpoll, false);
  2967. root = api_add_diff(root, "Network Difficulty", &current_diff, true);
  2968. root = print_data(io_data, root, isjson, false);
  2969. if (isjson && io_open)
  2970. io_close(io_data);
  2971. }
  2972. static void debugstate(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  2973. {
  2974. struct api_data *root = NULL;
  2975. bool io_open;
  2976. if (param == NULL)
  2977. param = (char *)BLANK;
  2978. else
  2979. *param = tolower(*param);
  2980. switch(*param) {
  2981. case 's':
  2982. opt_realquiet = true;
  2983. break;
  2984. case 'q':
  2985. opt_quiet ^= true;
  2986. break;
  2987. case 'v':
  2988. opt_log_output ^= true;
  2989. if (opt_log_output)
  2990. opt_quiet = false;
  2991. break;
  2992. case 'd':
  2993. opt_debug ^= true;
  2994. opt_log_output = opt_debug;
  2995. if (opt_debug)
  2996. opt_quiet = false;
  2997. break;
  2998. case 'r':
  2999. opt_protocol ^= true;
  3000. if (opt_protocol)
  3001. opt_quiet = false;
  3002. break;
  3003. case 'p':
  3004. want_per_device_stats ^= true;
  3005. opt_log_output = want_per_device_stats;
  3006. break;
  3007. case 'n':
  3008. opt_log_output = false;
  3009. opt_debug = false;
  3010. opt_quiet = false;
  3011. opt_protocol = false;
  3012. want_per_device_stats = false;
  3013. opt_worktime = false;
  3014. break;
  3015. case 'w':
  3016. opt_worktime ^= true;
  3017. break;
  3018. #ifdef _MEMORY_DEBUG
  3019. case 'y':
  3020. cgmemspeedup();
  3021. break;
  3022. case 'z':
  3023. cgmemrpt();
  3024. break;
  3025. #endif
  3026. default:
  3027. // anything else just reports the settings
  3028. break;
  3029. }
  3030. message(io_data, MSG_DEBUGSET, 0, NULL, isjson);
  3031. io_open = io_add(io_data, isjson ? COMSTR JSON_DEBUGSET : _DEBUGSET COMSTR);
  3032. root = api_add_bool(root, "Silent", &opt_realquiet, false);
  3033. root = api_add_bool(root, "Quiet", &opt_quiet, false);
  3034. root = api_add_bool(root, "Verbose", &opt_log_output, false);
  3035. root = api_add_bool(root, "Debug", &opt_debug, false);
  3036. root = api_add_bool(root, "RPCProto", &opt_protocol, false);
  3037. root = api_add_bool(root, "PerDevice", &want_per_device_stats, false);
  3038. root = api_add_bool(root, "WorkTime", &opt_worktime, false);
  3039. root = print_data(io_data, root, isjson, false);
  3040. if (isjson && io_open)
  3041. io_close(io_data);
  3042. }
  3043. static void setconfig(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3044. {
  3045. char *comma;
  3046. int value;
  3047. if (param == NULL || *param == '\0') {
  3048. message(io_data, MSG_CONPAR, 0, NULL, isjson);
  3049. return;
  3050. }
  3051. comma = strchr(param, ',');
  3052. if (!comma) {
  3053. message(io_data, MSG_CONVAL, 0, param, isjson);
  3054. return;
  3055. }
  3056. *(comma++) = '\0';
  3057. value = atoi(comma);
  3058. if (value < 0 || value > 9999) {
  3059. message(io_data, MSG_INVNUM, value, param, isjson);
  3060. return;
  3061. }
  3062. if (strcasecmp(param, "queue") == 0)
  3063. opt_queue = value;
  3064. else if (strcasecmp(param, "scantime") == 0)
  3065. opt_scantime = value;
  3066. else if (strcasecmp(param, "expiry") == 0)
  3067. opt_expiry = value;
  3068. else {
  3069. message(io_data, MSG_UNKCON, 0, param, isjson);
  3070. return;
  3071. }
  3072. message(io_data, MSG_SETCONFIG, value, param, isjson);
  3073. }
  3074. static void usbstats(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3075. {
  3076. struct api_data *root = NULL;
  3077. #ifdef USE_USBUTILS
  3078. bool io_open = false;
  3079. int count = 0;
  3080. root = api_usb_stats(&count);
  3081. #endif
  3082. if (!root) {
  3083. message(io_data, MSG_NOUSTA, 0, NULL, isjson);
  3084. return;
  3085. }
  3086. #ifdef USE_USBUTILS
  3087. message(io_data, MSG_USBSTA, 0, NULL, isjson);
  3088. if (isjson)
  3089. io_open = io_add(io_data, COMSTR JSON_USBSTATS);
  3090. root = print_data(io_data, root, isjson, false);
  3091. while (42) {
  3092. root = api_usb_stats(&count);
  3093. if (!root)
  3094. break;
  3095. root = print_data(io_data, root, isjson, isjson);
  3096. }
  3097. if (isjson && io_open)
  3098. io_close(io_data);
  3099. #endif
  3100. }
  3101. #ifdef HAVE_AN_FPGA
  3102. static void pgaset(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3103. {
  3104. struct cgpu_info *cgpu;
  3105. struct device_drv *drv;
  3106. char buf[TMPBUFSIZ];
  3107. int numpga = numpgas();
  3108. if (numpga == 0) {
  3109. message(io_data, MSG_PGANON, 0, NULL, isjson);
  3110. return;
  3111. }
  3112. if (param == NULL || *param == '\0') {
  3113. message(io_data, MSG_MISID, 0, NULL, isjson);
  3114. return;
  3115. }
  3116. char *opt = strchr(param, ',');
  3117. if (opt)
  3118. *(opt++) = '\0';
  3119. if (!opt || !*opt) {
  3120. message(io_data, MSG_MISPGAOPT, 0, NULL, isjson);
  3121. return;
  3122. }
  3123. int id = atoi(param);
  3124. if (id < 0 || id >= numpga) {
  3125. message(io_data, MSG_INVPGA, id, NULL, isjson);
  3126. return;
  3127. }
  3128. int dev = pgadevice(id);
  3129. if (dev < 0) { // Should never happen
  3130. message(io_data, MSG_INVPGA, id, NULL, isjson);
  3131. return;
  3132. }
  3133. cgpu = get_devices(dev);
  3134. drv = cgpu->drv;
  3135. char *set = strchr(opt, ',');
  3136. if (set)
  3137. *(set++) = '\0';
  3138. if (!drv->set_device)
  3139. message(io_data, MSG_PGANOSET, id, NULL, isjson);
  3140. else {
  3141. char *ret = drv->set_device(cgpu, opt, set, buf);
  3142. if (ret) {
  3143. if (strcasecmp(opt, "help") == 0)
  3144. message(io_data, MSG_PGAHELP, id, ret, isjson);
  3145. else
  3146. message(io_data, MSG_PGASETERR, id, ret, isjson);
  3147. } else
  3148. message(io_data, MSG_PGASETOK, id, NULL, isjson);
  3149. }
  3150. }
  3151. #endif
  3152. static void dozero(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3153. {
  3154. if (param == NULL || *param == '\0') {
  3155. message(io_data, MSG_ZERMIS, 0, NULL, isjson);
  3156. return;
  3157. }
  3158. char *sum = strchr(param, ',');
  3159. if (sum)
  3160. *(sum++) = '\0';
  3161. if (!sum || !*sum) {
  3162. message(io_data, MSG_MISBOOL, 0, NULL, isjson);
  3163. return;
  3164. }
  3165. bool all = false;
  3166. bool bs = false;
  3167. if (strcasecmp(param, "all") == 0)
  3168. all = true;
  3169. else if (strcasecmp(param, "bestshare") == 0)
  3170. bs = true;
  3171. if (all == false && bs == false) {
  3172. message(io_data, MSG_ZERINV, 0, param, isjson);
  3173. return;
  3174. }
  3175. *sum = tolower(*sum);
  3176. if (*sum != 't' && *sum != 'f') {
  3177. message(io_data, MSG_INVBOOL, 0, NULL, isjson);
  3178. return;
  3179. }
  3180. bool dosum = (*sum == 't');
  3181. if (dosum)
  3182. print_summary();
  3183. if (all)
  3184. zero_stats();
  3185. if (bs)
  3186. zero_bestshare();
  3187. if (dosum)
  3188. message(io_data, MSG_ZERSUM, 0, all ? "All" : "BestShare", isjson);
  3189. else
  3190. message(io_data, MSG_ZERNOSUM, 0, all ? "All" : "BestShare", isjson);
  3191. }
  3192. static void dohotplug(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3193. {
  3194. #ifdef USE_USBUTILS
  3195. int value;
  3196. if (param == NULL || *param == '\0') {
  3197. message(io_data, MSG_MISHPLG, 0, NULL, isjson);
  3198. return;
  3199. }
  3200. value = atoi(param);
  3201. if (value < 0 || value > 9999) {
  3202. message(io_data, MSG_INVHPLG, 0, param, isjson);
  3203. return;
  3204. }
  3205. hotplug_time = value;
  3206. if (value)
  3207. message(io_data, MSG_HOTPLUG, value, NULL, isjson);
  3208. else
  3209. message(io_data, MSG_DISHPLG, 0, NULL, isjson);
  3210. #else
  3211. message(io_data, MSG_NOHPLG, 0, NULL, isjson);
  3212. return;
  3213. #endif
  3214. }
  3215. #ifdef HAVE_AN_ASIC
  3216. static void ascdev(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3217. {
  3218. bool io_open = false;
  3219. int numasc = numascs();
  3220. int id;
  3221. if (numasc == 0) {
  3222. message(io_data, MSG_ASCNON, 0, NULL, isjson);
  3223. return;
  3224. }
  3225. if (param == NULL || *param == '\0') {
  3226. message(io_data, MSG_MISID, 0, NULL, isjson);
  3227. return;
  3228. }
  3229. id = atoi(param);
  3230. if (id < 0 || id >= numasc) {
  3231. message(io_data, MSG_INVASC, id, NULL, isjson);
  3232. return;
  3233. }
  3234. message(io_data, MSG_ASCDEV, id, NULL, isjson);
  3235. if (isjson)
  3236. io_open = io_add(io_data, COMSTR JSON_ASC);
  3237. ascstatus(io_data, id, isjson, false);
  3238. if (isjson && io_open)
  3239. io_close(io_data);
  3240. }
  3241. static void ascenable(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3242. {
  3243. struct cgpu_info *cgpu;
  3244. int numasc = numascs();
  3245. struct thr_info *thr;
  3246. int asc;
  3247. int id;
  3248. int i;
  3249. if (numasc == 0) {
  3250. message(io_data, MSG_ASCNON, 0, NULL, isjson);
  3251. return;
  3252. }
  3253. if (param == NULL || *param == '\0') {
  3254. message(io_data, MSG_MISID, 0, NULL, isjson);
  3255. return;
  3256. }
  3257. id = atoi(param);
  3258. if (id < 0 || id >= numasc) {
  3259. message(io_data, MSG_INVASC, id, NULL, isjson);
  3260. return;
  3261. }
  3262. int dev = ascdevice(id);
  3263. if (dev < 0) { // Should never happen
  3264. message(io_data, MSG_INVASC, id, NULL, isjson);
  3265. return;
  3266. }
  3267. cgpu = get_devices(dev);
  3268. applog(LOG_DEBUG, "API: request to ascenable ascid %d device %d %s%u",
  3269. id, dev, cgpu->drv->name, cgpu->device_id);
  3270. if (cgpu->deven != DEV_DISABLED) {
  3271. message(io_data, MSG_ASCLRENA, id, NULL, isjson);
  3272. return;
  3273. }
  3274. #if 0 /* A DISABLED device wont change status FIXME: should disabling make it WELL? */
  3275. if (cgpu->status != LIFE_WELL) {
  3276. message(io_data, MSG_ASCUNW, id, NULL, isjson);
  3277. return;
  3278. }
  3279. #endif
  3280. #ifdef USE_USBUTILS
  3281. if (cgpu->usbinfo.nodev) {
  3282. message(io_data, MSG_ASCUSBNODEV, id, NULL, isjson);
  3283. return;
  3284. }
  3285. #endif
  3286. for (i = 0; i < mining_threads; i++) {
  3287. thr = get_thread(i);
  3288. asc = thr->cgpu->cgminer_id;
  3289. if (asc == dev) {
  3290. cgpu->deven = DEV_ENABLED;
  3291. applog(LOG_DEBUG, "API: Pushing sem post to thread %d", thr->id);
  3292. cgsem_post(&thr->sem);
  3293. }
  3294. }
  3295. message(io_data, MSG_ASCENA, id, NULL, isjson);
  3296. }
  3297. static void ascdisable(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3298. {
  3299. struct cgpu_info *cgpu;
  3300. int numasc = numascs();
  3301. int id;
  3302. if (numasc == 0) {
  3303. message(io_data, MSG_ASCNON, 0, NULL, isjson);
  3304. return;
  3305. }
  3306. if (param == NULL || *param == '\0') {
  3307. message(io_data, MSG_MISID, 0, NULL, isjson);
  3308. return;
  3309. }
  3310. id = atoi(param);
  3311. if (id < 0 || id >= numasc) {
  3312. message(io_data, MSG_INVASC, id, NULL, isjson);
  3313. return;
  3314. }
  3315. int dev = ascdevice(id);
  3316. if (dev < 0) { // Should never happen
  3317. message(io_data, MSG_INVASC, id, NULL, isjson);
  3318. return;
  3319. }
  3320. cgpu = get_devices(dev);
  3321. applog(LOG_DEBUG, "API: request to ascdisable ascid %d device %d %s%u",
  3322. id, dev, cgpu->drv->name, cgpu->device_id);
  3323. if (cgpu->deven == DEV_DISABLED) {
  3324. message(io_data, MSG_ASCLRDIS, id, NULL, isjson);
  3325. return;
  3326. }
  3327. cgpu->deven = DEV_DISABLED;
  3328. message(io_data, MSG_ASCDIS, id, NULL, isjson);
  3329. }
  3330. static void ascidentify(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, __maybe_unused char group)
  3331. {
  3332. struct cgpu_info *cgpu;
  3333. struct device_drv *drv;
  3334. int numasc = numascs();
  3335. int id;
  3336. if (numasc == 0) {
  3337. message(io_data, MSG_ASCNON, 0, NULL, isjson);
  3338. return;
  3339. }
  3340. if (param == NULL || *param == '\0') {
  3341. message(io_data, MSG_MISID, 0, NULL, isjson);
  3342. return;
  3343. }
  3344. id = atoi(param);
  3345. if (id < 0 || id >= numasc) {
  3346. message(io_data, MSG_INVASC, id, NULL, isjson);
  3347. return;
  3348. }
  3349. int dev = ascdevice(id);
  3350. if (dev < 0) { // Should never happen
  3351. message(io_data, MSG_INVASC, id, NULL, isjson);
  3352. return;
  3353. }
  3354. cgpu = get_devices(dev);
  3355. drv = cgpu->drv;
  3356. if (!drv->identify_device)
  3357. message(io_data, MSG_ASCNOID, id, NULL, isjson);
  3358. else {
  3359. drv->identify_device(cgpu);
  3360. message(io_data, MSG_ASCIDENT, id, NULL, isjson);
  3361. }
  3362. }
  3363. #endif
  3364. static void asccount(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3365. {
  3366. struct api_data *root = NULL;
  3367. bool io_open;
  3368. int count = 0;
  3369. #ifdef HAVE_AN_ASIC
  3370. count = numascs();
  3371. #endif
  3372. message(io_data, MSG_NUMASC, 0, NULL, isjson);
  3373. io_open = io_add(io_data, isjson ? COMSTR JSON_ASCS : _ASCS COMSTR);
  3374. root = api_add_int(root, "Count", &count, false);
  3375. root = print_data(io_data, root, isjson, false);
  3376. if (isjson && io_open)
  3377. io_close(io_data);
  3378. }
  3379. #ifdef HAVE_AN_ASIC
  3380. static void ascset(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3381. {
  3382. struct cgpu_info *cgpu;
  3383. struct device_drv *drv;
  3384. char buf[TMPBUFSIZ];
  3385. int numasc = numascs();
  3386. if (numasc == 0) {
  3387. message(io_data, MSG_ASCNON, 0, NULL, isjson);
  3388. return;
  3389. }
  3390. if (param == NULL || *param == '\0') {
  3391. message(io_data, MSG_MISID, 0, NULL, isjson);
  3392. return;
  3393. }
  3394. char *opt = strchr(param, ',');
  3395. if (opt)
  3396. *(opt++) = '\0';
  3397. if (!opt || !*opt) {
  3398. message(io_data, MSG_MISASCOPT, 0, NULL, isjson);
  3399. return;
  3400. }
  3401. int id = atoi(param);
  3402. if (id < 0 || id >= numasc) {
  3403. message(io_data, MSG_INVASC, id, NULL, isjson);
  3404. return;
  3405. }
  3406. int dev = ascdevice(id);
  3407. if (dev < 0) { // Should never happen
  3408. message(io_data, MSG_INVASC, id, NULL, isjson);
  3409. return;
  3410. }
  3411. cgpu = get_devices(dev);
  3412. drv = cgpu->drv;
  3413. char *set = strchr(opt, ',');
  3414. if (set)
  3415. *(set++) = '\0';
  3416. if (!drv->set_device)
  3417. message(io_data, MSG_ASCNOSET, id, NULL, isjson);
  3418. else {
  3419. char *ret = drv->set_device(cgpu, opt, set, buf);
  3420. if (ret) {
  3421. if (strcasecmp(opt, "help") == 0)
  3422. message(io_data, MSG_ASCHELP, id, ret, isjson);
  3423. else
  3424. message(io_data, MSG_ASCSETERR, id, ret, isjson);
  3425. } else
  3426. message(io_data, MSG_ASCSETOK, id, NULL, isjson);
  3427. }
  3428. }
  3429. #endif
  3430. static void lcddata(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __maybe_unused char *param, bool isjson, __maybe_unused char group)
  3431. {
  3432. struct api_data *root = NULL;
  3433. struct cgpu_info *cgpu;
  3434. bool io_open;
  3435. double ghs = 0.0, last_share_diff = 0.0;
  3436. float temp = 0.0;
  3437. time_t last_share_time = 0;
  3438. time_t last_device_valid_work = 0;
  3439. struct pool *pool = NULL;
  3440. char *rpc_url = "none", *rpc_user = "";
  3441. int i;
  3442. message(io_data, MSG_LCD, 0, NULL, isjson);
  3443. io_open = io_add(io_data, isjson ? COMSTR JSON_LCD : _LCD COMSTR);
  3444. // stop hashmeter() changing some while copying
  3445. mutex_lock(&hash_lock);
  3446. root = api_add_elapsed(root, "Elapsed", &(total_secs), true);
  3447. ghs = total_mhashes_done / total_secs / 1000.0;
  3448. root = api_add_mhs(root, "GHS av", &ghs, true);
  3449. ghs = rolling5 / 1000.0;
  3450. root = api_add_mhs(root, "GHS 5m", &ghs, true);
  3451. ghs = total_rolling / 1000.0;
  3452. root = api_add_mhs(root, "GHS 5s", &ghs, true);
  3453. mutex_unlock(&hash_lock);
  3454. temp = 0;
  3455. last_device_valid_work = 0;
  3456. for (i = 0; i < total_devices; i++) {
  3457. cgpu = get_devices(i);
  3458. if (last_device_valid_work == 0 ||
  3459. last_device_valid_work < cgpu->last_device_valid_work)
  3460. last_device_valid_work = cgpu->last_device_valid_work;
  3461. if (temp < cgpu->temp)
  3462. temp = cgpu->temp;
  3463. }
  3464. last_share_time = 0;
  3465. last_share_diff = 0;
  3466. for (i = 0; i < total_pools; i++) {
  3467. pool = pools[i];
  3468. if (pool->removed)
  3469. continue;
  3470. if (last_share_time == 0 || last_share_time < pool->last_share_time) {
  3471. last_share_time = pool->last_share_time;
  3472. last_share_diff = pool->last_share_diff;
  3473. }
  3474. }
  3475. pool = current_pool();
  3476. if (pool) {
  3477. rpc_url = pool->rpc_url;
  3478. rpc_user = pool->rpc_user;
  3479. }
  3480. root = api_add_temp(root, "Temperature", &temp, false);
  3481. root = api_add_diff(root, "Last Share Difficulty", &last_share_diff, false);
  3482. root = api_add_time(root, "Last Share Time", &last_share_time, false);
  3483. root = api_add_uint64(root, "Best Share", &best_diff, true);
  3484. root = api_add_time(root, "Last Valid Work", &last_device_valid_work, false);
  3485. root = api_add_uint(root, "Found Blocks", &found_blocks, true);
  3486. root = api_add_escape(root, "Current Pool", rpc_url, true);
  3487. root = api_add_escape(root, "User", rpc_user, true);
  3488. root = print_data(io_data, root, isjson, false);
  3489. if (isjson && io_open)
  3490. io_close(io_data);
  3491. }
  3492. static void checkcommand(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, char group);
  3493. struct CMDS {
  3494. char *name;
  3495. void (*func)(struct io_data *, SOCKETTYPE, char *, bool, char);
  3496. bool iswritemode;
  3497. bool joinable;
  3498. } cmds[] = {
  3499. { "version", apiversion, false, true },
  3500. { "config", minerconfig, false, true },
  3501. { "devs", devstatus, false, true },
  3502. { "edevs", edevstatus, false, true },
  3503. { "pools", poolstatus, false, true },
  3504. { "summary", summary, false, true },
  3505. #ifdef HAVE_AN_FPGA
  3506. { "pga", pgadev, false, false },
  3507. { "pgaenable", pgaenable, true, false },
  3508. { "pgadisable", pgadisable, true, false },
  3509. { "pgaidentify", pgaidentify, true, false },
  3510. #endif
  3511. { "pgacount", pgacount, false, true },
  3512. { "switchpool", switchpool, true, false },
  3513. { "addpool", addpool, true, false },
  3514. { "poolpriority", poolpriority, true, false },
  3515. { "poolquota", poolquota, true, false },
  3516. { "enablepool", enablepool, true, false },
  3517. { "disablepool", disablepool, true, false },
  3518. { "removepool", removepool, true, false },
  3519. { "save", dosave, true, false },
  3520. { "quit", doquit, true, false },
  3521. { "privileged", privileged, true, false },
  3522. { "notify", notify, false, true },
  3523. { "devdetails", devdetails, false, true },
  3524. { "restart", dorestart, true, false },
  3525. { "stats", minerstats, false, true },
  3526. { "estats", minerestats, false, true },
  3527. { "check", checkcommand, false, false },
  3528. { "failover-only", failoveronly, true, false },
  3529. { "coin", minecoin, false, true },
  3530. { "debug", debugstate, true, false },
  3531. { "setconfig", setconfig, true, false },
  3532. { "usbstats", usbstats, false, true },
  3533. #ifdef HAVE_AN_FPGA
  3534. { "pgaset", pgaset, true, false },
  3535. #endif
  3536. { "zero", dozero, true, false },
  3537. { "hotplug", dohotplug, true, false },
  3538. #ifdef HAVE_AN_ASIC
  3539. { "asc", ascdev, false, false },
  3540. { "ascenable", ascenable, true, false },
  3541. { "ascdisable", ascdisable, true, false },
  3542. { "ascidentify", ascidentify, true, false },
  3543. { "ascset", ascset, true, false },
  3544. #endif
  3545. { "asccount", asccount, false, true },
  3546. { "lcd", lcddisplay, false, true },
  3547. { "lockstats", lockstats, true, true },
  3548. { NULL, NULL, false, false }
  3549. };
  3550. static void checkcommand(struct io_data *io_data, __maybe_unused SOCKETTYPE c, char *param, bool isjson, char group)
  3551. {
  3552. struct api_data *root = NULL;
  3553. bool io_open;
  3554. char cmdbuf[100];
  3555. bool found, access;
  3556. int i;
  3557. if (param == NULL || *param == '\0') {
  3558. message(io_data, MSG_MISCHK, 0, NULL, isjson);
  3559. return;
  3560. }
  3561. found = false;
  3562. access = false;
  3563. for (i = 0; cmds[i].name != NULL; i++) {
  3564. if (strcmp(cmds[i].name, param) == 0) {
  3565. found = true;
  3566. sprintf(cmdbuf, "|%s|", param);
  3567. if (ISPRIVGROUP(group) || strstr(COMMANDS(group), cmdbuf))
  3568. access = true;
  3569. break;
  3570. }
  3571. }
  3572. message(io_data, MSG_CHECK, 0, NULL, isjson);
  3573. io_open = io_add(io_data, isjson ? COMSTR JSON_CHECK : _CHECK COMSTR);
  3574. root = api_add_const(root, "Exists", found ? YES : NO, false);
  3575. root = api_add_const(root, "Access", access ? YES : NO, false);
  3576. root = print_data(io_data, root, isjson, false);
  3577. if (isjson && io_open)
  3578. io_close(io_data);
  3579. }
  3580. static void head_join(struct io_data *io_data, char *cmdptr, bool isjson, bool *firstjoin)
  3581. {
  3582. char *ptr;
  3583. if (*firstjoin) {
  3584. if (isjson)
  3585. io_add(io_data, JSON0);
  3586. *firstjoin = false;
  3587. } else {
  3588. if (isjson)
  3589. io_add(io_data, JSON_BETWEEN_JOIN);
  3590. }
  3591. // External supplied string
  3592. ptr = escape_string(cmdptr, isjson);
  3593. if (isjson) {
  3594. io_add(io_data, JSON1);
  3595. io_add(io_data, ptr);
  3596. io_add(io_data, JSON2);
  3597. } else {
  3598. io_add(io_data, JOIN_CMD);
  3599. io_add(io_data, ptr);
  3600. io_add(io_data, BETWEEN_JOIN);
  3601. }
  3602. if (ptr != cmdptr)
  3603. free(ptr);
  3604. }
  3605. static void tail_join(struct io_data *io_data, bool isjson)
  3606. {
  3607. if (io_data->close) {
  3608. io_add(io_data, JSON_CLOSE);
  3609. io_data->close = false;
  3610. }
  3611. if (isjson) {
  3612. io_add(io_data, JSON_END);
  3613. io_add(io_data, JSON3);
  3614. }
  3615. }
  3616. static void send_result(struct io_data *io_data, SOCKETTYPE c, bool isjson)
  3617. {
  3618. int count, sendc, res, tosend, len, n;
  3619. char *buf = io_data->ptr;
  3620. strcpy(buf, io_data->ptr);
  3621. if (io_data->close)
  3622. strcat(buf, JSON_CLOSE);
  3623. if (isjson)
  3624. strcat(buf, JSON_END);
  3625. len = strlen(buf);
  3626. tosend = len+1;
  3627. applog(LOG_DEBUG, "API: send reply: (%d) '%.10s%s'", tosend, buf, len > 10 ? "..." : BLANK);
  3628. count = sendc = 0;
  3629. while (count < 5 && tosend > 0) {
  3630. // allow 50ms per attempt
  3631. struct timeval timeout = {0, 50000};
  3632. fd_set wd;
  3633. FD_ZERO(&wd);
  3634. FD_SET(c, &wd);
  3635. if ((res = select(c + 1, NULL, &wd, NULL, &timeout)) < 1) {
  3636. applog(LOG_WARNING, "API: send select failed (%d)", res);
  3637. return;
  3638. }
  3639. n = send(c, buf, tosend, 0);
  3640. sendc++;
  3641. if (SOCKETFAIL(n)) {
  3642. count++;
  3643. if (sock_blocks())
  3644. continue;
  3645. applog(LOG_WARNING, "API: send (%d:%d) failed: %s", len+1, (len+1 - tosend), SOCKERRMSG);
  3646. return;
  3647. } else {
  3648. if (sendc <= 1) {
  3649. if (n == tosend)
  3650. applog(LOG_DEBUG, "API: sent all of %d first go", tosend);
  3651. else
  3652. applog(LOG_DEBUG, "API: sent %d of %d first go", n, tosend);
  3653. } else {
  3654. if (n == tosend)
  3655. applog(LOG_DEBUG, "API: sent all of remaining %d (sendc=%d)", tosend, sendc);
  3656. else
  3657. applog(LOG_DEBUG, "API: sent %d of remaining %d (sendc=%d)", n, tosend, sendc);
  3658. }
  3659. tosend -= n;
  3660. buf += n;
  3661. if (n == 0)
  3662. count++;
  3663. }
  3664. }
  3665. }
  3666. static void tidyup(__maybe_unused void *arg)
  3667. {
  3668. mutex_lock(&quit_restart_lock);
  3669. SOCKETTYPE *apisock = (SOCKETTYPE *)arg;
  3670. bye = true;
  3671. if (*apisock != INVSOCK) {
  3672. shutdown(*apisock, SHUT_RDWR);
  3673. CLOSESOCKET(*apisock);
  3674. *apisock = INVSOCK;
  3675. }
  3676. if (ipaccess != NULL) {
  3677. free(ipaccess);
  3678. ipaccess = NULL;
  3679. }
  3680. io_free();
  3681. mutex_unlock(&quit_restart_lock);
  3682. }
  3683. /*
  3684. * Interpret --api-groups G:cmd1:cmd2:cmd3,P:cmd4,*,...
  3685. */
  3686. static void setup_groups()
  3687. {
  3688. char *api_groups = opt_api_groups ? opt_api_groups : (char *)BLANK;
  3689. char *buf, *ptr, *next, *colon;
  3690. char group;
  3691. char commands[TMPBUFSIZ];
  3692. char cmdbuf[100];
  3693. char *cmd;
  3694. bool addstar, did;
  3695. int i;
  3696. buf = malloc(strlen(api_groups) + 1);
  3697. if (unlikely(!buf))
  3698. quit(1, "Failed to malloc ipgroups buf");
  3699. strcpy(buf, api_groups);
  3700. next = buf;
  3701. // for each group defined
  3702. while (next && *next) {
  3703. ptr = next;
  3704. next = strchr(ptr, ',');
  3705. if (next)
  3706. *(next++) = '\0';
  3707. // Validate the group
  3708. if (*(ptr+1) != ':') {
  3709. colon = strchr(ptr, ':');
  3710. if (colon)
  3711. *colon = '\0';
  3712. quit(1, "API invalid group name '%s'", ptr);
  3713. }
  3714. group = GROUP(*ptr);
  3715. if (!VALIDGROUP(group))
  3716. quit(1, "API invalid group name '%c'", *ptr);
  3717. if (group == PRIVGROUP)
  3718. quit(1, "API group name can't be '%c'", PRIVGROUP);
  3719. if (group == NOPRIVGROUP)
  3720. quit(1, "API group name can't be '%c'", NOPRIVGROUP);
  3721. if (apigroups[GROUPOFFSET(group)].commands != NULL)
  3722. quit(1, "API duplicate group name '%c'", *ptr);
  3723. ptr += 2;
  3724. // Validate the command list (and handle '*')
  3725. cmd = &(commands[0]);
  3726. *(cmd++) = SEPARATOR;
  3727. *cmd = '\0';
  3728. addstar = false;
  3729. while (ptr && *ptr) {
  3730. colon = strchr(ptr, ':');
  3731. if (colon)
  3732. *(colon++) = '\0';
  3733. if (strcmp(ptr, "*") == 0)
  3734. addstar = true;
  3735. else {
  3736. did = false;
  3737. for (i = 0; cmds[i].name != NULL; i++) {
  3738. if (strcasecmp(ptr, cmds[i].name) == 0) {
  3739. did = true;
  3740. break;
  3741. }
  3742. }
  3743. if (did) {
  3744. // skip duplicates
  3745. sprintf(cmdbuf, "|%s|", cmds[i].name);
  3746. if (strstr(commands, cmdbuf) == NULL) {
  3747. strcpy(cmd, cmds[i].name);
  3748. cmd += strlen(cmds[i].name);
  3749. *(cmd++) = SEPARATOR;
  3750. *cmd = '\0';
  3751. }
  3752. } else {
  3753. quit(1, "API unknown command '%s' in group '%c'", ptr, group);
  3754. }
  3755. }
  3756. ptr = colon;
  3757. }
  3758. // * = allow all non-iswritemode commands
  3759. if (addstar) {
  3760. for (i = 0; cmds[i].name != NULL; i++) {
  3761. if (cmds[i].iswritemode == false) {
  3762. // skip duplicates
  3763. sprintf(cmdbuf, "|%s|", cmds[i].name);
  3764. if (strstr(commands, cmdbuf) == NULL) {
  3765. strcpy(cmd, cmds[i].name);
  3766. cmd += strlen(cmds[i].name);
  3767. *(cmd++) = SEPARATOR;
  3768. *cmd = '\0';
  3769. }
  3770. }
  3771. }
  3772. }
  3773. ptr = apigroups[GROUPOFFSET(group)].commands = malloc(strlen(commands) + 1);
  3774. if (unlikely(!ptr))
  3775. quit(1, "Failed to malloc group commands buf");
  3776. strcpy(ptr, commands);
  3777. }
  3778. // Now define R (NOPRIVGROUP) as all non-iswritemode commands
  3779. cmd = &(commands[0]);
  3780. *(cmd++) = SEPARATOR;
  3781. *cmd = '\0';
  3782. for (i = 0; cmds[i].name != NULL; i++) {
  3783. if (cmds[i].iswritemode == false) {
  3784. strcpy(cmd, cmds[i].name);
  3785. cmd += strlen(cmds[i].name);
  3786. *(cmd++) = SEPARATOR;
  3787. *cmd = '\0';
  3788. }
  3789. }
  3790. ptr = apigroups[GROUPOFFSET(NOPRIVGROUP)].commands = malloc(strlen(commands) + 1);
  3791. if (unlikely(!ptr))
  3792. quit(1, "Failed to malloc noprivgroup commands buf");
  3793. strcpy(ptr, commands);
  3794. // W (PRIVGROUP) is handled as a special case since it simply means all commands
  3795. free(buf);
  3796. return;
  3797. }
  3798. /*
  3799. * Interpret [W:]IP[/Prefix][,[R|W:]IP2[/Prefix2][,...]] --api-allow option
  3800. * ipv6 address should be enclosed with a pair of square brackets and the prefix left outside
  3801. * special case of 0/0 allows /0 (means all IP addresses)
  3802. */
  3803. #define ALLIP "0/0"
  3804. /*
  3805. * N.B. IP4 addresses are by Definition 32bit big endian on all platforms
  3806. */
  3807. static void setup_ipaccess()
  3808. {
  3809. char *buf, *ptr, *comma, *slash, *end;
  3810. int ipcount, mask, i, shift;
  3811. bool ipv6 = false;
  3812. char group;
  3813. char tmp[30];
  3814. buf = malloc(strlen(opt_api_allow) + 1);
  3815. if (unlikely(!buf))
  3816. quit(1, "Failed to malloc ipaccess buf");
  3817. strcpy(buf, opt_api_allow);
  3818. ipcount = 1;
  3819. ptr = buf;
  3820. while (*ptr)
  3821. if (*(ptr++) == ',')
  3822. ipcount++;
  3823. // possibly more than needed, but never less
  3824. ipaccess = calloc(ipcount, sizeof(struct IPACCESS));
  3825. if (unlikely(!ipaccess))
  3826. quit(1, "Failed to calloc ipaccess");
  3827. ips = 0;
  3828. ptr = buf;
  3829. while (ptr && *ptr) {
  3830. while (*ptr == ' ' || *ptr == '\t')
  3831. ptr++;
  3832. if (*ptr == ',') {
  3833. ptr++;
  3834. continue;
  3835. }
  3836. comma = strchr(ptr, ',');
  3837. if (comma)
  3838. *(comma++) = '\0';
  3839. group = NOPRIVGROUP;
  3840. if (isalpha(*ptr) && *(ptr+1) == ':') {
  3841. if (DEFINEDGROUP(*ptr))
  3842. group = GROUP(*ptr);
  3843. ptr += 2;
  3844. }
  3845. ipaccess[ips].group = group;
  3846. if (strcmp(ptr, ALLIP) == 0) {
  3847. for (i = 0; i < 16; i++) {
  3848. ipaccess[ips].ip.s6_addr[i] = 0;
  3849. ipaccess[ips].mask.s6_addr[i] = 0;
  3850. }
  3851. }
  3852. else {
  3853. end = strchr(ptr, '/');
  3854. if (!end) {
  3855. for (i = 0; i < 16; i++)
  3856. ipaccess[ips].mask.s6_addr[i] = 0xff;
  3857. end = ptr + strlen(ptr);
  3858. }
  3859. slash = end--;
  3860. if (*ptr == '[' && *end == ']') {
  3861. *(ptr++) = '\0';
  3862. *(end--) = '\0';
  3863. ipv6 = true;
  3864. }
  3865. else
  3866. ipv6 = false;
  3867. if (*slash) {
  3868. *(slash++) = '\0';
  3869. mask = atoi(slash);
  3870. if (mask < 1 || (mask += ipv6 ? 0 : 96) > 128 )
  3871. goto popipo; // skip invalid/zero
  3872. for (i = 0; i < 16; i++)
  3873. ipaccess[ips].mask.s6_addr[i] = 0;
  3874. i = 0;
  3875. shift = 7;
  3876. while (mask-- > 0) {
  3877. ipaccess[ips].mask.s6_addr[i] |= 1 << shift;
  3878. if (shift-- == 0) {
  3879. i++;
  3880. shift = 7;
  3881. }
  3882. }
  3883. }
  3884. for (i = 0; i < 16; i++)
  3885. ipaccess[ips].ip.s6_addr[i] = 0; // missing default to '[::]'
  3886. if (ipv6) {
  3887. if (INET_PTON(AF_INET6, ptr, &(ipaccess[ips].ip)) != 1)
  3888. goto popipo;
  3889. }
  3890. else {
  3891. // v4 mapped v6 address, such as "::ffff:255.255.255.255"
  3892. sprintf(tmp, "::ffff:%s", ptr);
  3893. if (INET_PTON(AF_INET6, tmp, &(ipaccess[ips].ip)) != 1)
  3894. goto popipo;
  3895. }
  3896. for (i = 0; i < 16; i++)
  3897. ipaccess[ips].ip.s6_addr[i] &= ipaccess[ips].mask.s6_addr[i];
  3898. }
  3899. ips++;
  3900. popipo:
  3901. ptr = comma;
  3902. }
  3903. free(buf);
  3904. }
  3905. static void *quit_thread(__maybe_unused void *userdata)
  3906. {
  3907. // allow thread creator to finish whatever it's doing
  3908. mutex_lock(&quit_restart_lock);
  3909. mutex_unlock(&quit_restart_lock);
  3910. if (opt_debug)
  3911. applog(LOG_DEBUG, "API: killing cgminer");
  3912. kill_work();
  3913. return NULL;
  3914. }
  3915. static void *restart_thread(__maybe_unused void *userdata)
  3916. {
  3917. // allow thread creator to finish whatever it's doing
  3918. mutex_lock(&quit_restart_lock);
  3919. mutex_unlock(&quit_restart_lock);
  3920. if (opt_debug)
  3921. applog(LOG_DEBUG, "API: restarting cgminer");
  3922. app_restart();
  3923. return NULL;
  3924. }
  3925. static bool check_connect(struct sockaddr_storage *cli, char **connectaddr, char *group)
  3926. {
  3927. bool addrok = false;
  3928. int i, j;
  3929. bool match;
  3930. char tmp[30];
  3931. struct in6_addr client_ip;
  3932. *connectaddr = (char *)malloc(INET6_ADDRSTRLEN);
  3933. getnameinfo((struct sockaddr *)cli, sizeof(*cli),
  3934. *connectaddr, INET6_ADDRSTRLEN, NULL, 0, NI_NUMERICHOST);
  3935. // v4 mapped v6 address, such as "::ffff:255.255.255.255"
  3936. if (cli->ss_family == AF_INET) {
  3937. sprintf(tmp, "::ffff:%s", *connectaddr);
  3938. INET_PTON(AF_INET6, tmp, &client_ip);
  3939. }
  3940. else
  3941. INET_PTON(AF_INET6, *connectaddr, &client_ip);
  3942. *group = NOPRIVGROUP;
  3943. if (opt_api_allow) {
  3944. for (i = 0; i < ips; i++) {
  3945. match = true;
  3946. for (j = 0; j < 16; j++)
  3947. if ((client_ip.s6_addr[j] & ipaccess[i].mask.s6_addr[j])
  3948. != ipaccess[i].ip.s6_addr[j]) {
  3949. match = false;
  3950. break;
  3951. }
  3952. if (match) {
  3953. addrok = true;
  3954. *group = ipaccess[i].group;
  3955. break;
  3956. }
  3957. }
  3958. } else {
  3959. if (opt_api_network)
  3960. addrok = true;
  3961. else
  3962. addrok = (strcmp(*connectaddr, localaddr) == 0)
  3963. || IN6_IS_ADDR_LOOPBACK(&client_ip);
  3964. }
  3965. return addrok;
  3966. }
  3967. static void mcast()
  3968. {
  3969. struct sockaddr_storage came_from;
  3970. time_t bindstart;
  3971. char *binderror;
  3972. SOCKETTYPE mcast_sock = INVSOCK;
  3973. SOCKETTYPE reply_sock = INVSOCK;
  3974. socklen_t came_from_siz;
  3975. char *connectaddr;
  3976. ssize_t rep;
  3977. int bound;
  3978. int count;
  3979. int reply_port;
  3980. bool addrok;
  3981. char group;
  3982. char port_s[10], came_from_port[10];
  3983. struct addrinfo hints, *res, *host, *client;
  3984. char expect[] = "cgminer-"; // first 8 bytes constant
  3985. char *expect_code;
  3986. size_t expect_code_len;
  3987. char buf[1024];
  3988. char replybuf[1024];
  3989. sprintf(port_s, "%d", opt_api_mcast_port);
  3990. memset(&hints, 0, sizeof(hints));
  3991. hints.ai_family = AF_UNSPEC;
  3992. if (getaddrinfo(opt_api_mcast_addr, port_s, &hints, &res) != 0)
  3993. quit(1, "Invalid API Multicast Address");
  3994. host = res;
  3995. while (host != NULL) {
  3996. mcast_sock = socket(res->ai_family, SOCK_DGRAM, 0);
  3997. if (mcast_sock > 0)
  3998. break;
  3999. host = host->ai_next;
  4000. }
  4001. if (mcast_sock == INVSOCK) {
  4002. freeaddrinfo(res);
  4003. quit(1, "API mcast could not open socket");
  4004. }
  4005. int optval = 1;
  4006. if (SOCKETFAIL(setsockopt(mcast_sock, SOL_SOCKET, SO_REUSEADDR, (void *)(&optval), sizeof(optval)))) {
  4007. applog(LOG_ERR, "API mcast setsockopt SO_REUSEADDR failed (%s)%s", SOCKERRMSG, MUNAVAILABLE);
  4008. goto die;
  4009. }
  4010. // try for more than 1 minute ... in case the old one hasn't completely gone yet
  4011. bound = 0;
  4012. bindstart = time(NULL);
  4013. while (bound == 0) {
  4014. if (SOCKETFAIL(bind(mcast_sock, host->ai_addr, host->ai_addrlen))) {
  4015. binderror = SOCKERRMSG;
  4016. if ((time(NULL) - bindstart) > 61)
  4017. break;
  4018. else
  4019. cgsleep_ms(30000);
  4020. } else
  4021. bound = 1;
  4022. }
  4023. if (bound == 0) {
  4024. applog(LOG_ERR, "API mcast bind to port %d failed (%s)%s", opt_api_mcast_port, binderror, MUNAVAILABLE);
  4025. goto die;
  4026. }
  4027. switch (host->ai_family) {
  4028. case AF_INET: {
  4029. struct ip_mreq grp;
  4030. memset(&grp, 0, sizeof(grp));
  4031. grp.imr_multiaddr.s_addr = ((struct sockaddr_in *)(host->ai_addr))->sin_addr.s_addr;
  4032. grp.imr_interface.s_addr = INADDR_ANY;
  4033. if (SOCKETFAIL(setsockopt(mcast_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
  4034. (void *)(&grp), sizeof(grp)))) {
  4035. applog(LOG_ERR, "API mcast join failed (%s)%s", SOCKERRMSG, MUNAVAILABLE);
  4036. goto die;
  4037. }
  4038. break;
  4039. }
  4040. case AF_INET6: {
  4041. struct ipv6_mreq grp;
  4042. memcpy(&grp.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)(host->ai_addr))->sin6_addr),
  4043. sizeof(struct in6_addr));
  4044. grp.ipv6mr_interface= 0;
  4045. if (SOCKETFAIL(setsockopt(mcast_sock, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP,
  4046. (void *)(&grp), sizeof(grp)))) {
  4047. applog(LOG_ERR, "API mcast join failed (%s)%s", SOCKERRMSG, MUNAVAILABLE);
  4048. goto die;
  4049. }
  4050. break;
  4051. }
  4052. default:
  4053. break;
  4054. }
  4055. freeaddrinfo(res);
  4056. expect_code_len = sizeof(expect) + strlen(opt_api_mcast_code);
  4057. expect_code = malloc(expect_code_len+1);
  4058. if (!expect_code)
  4059. quit(1, "Failed to malloc mcast expect_code");
  4060. snprintf(expect_code, expect_code_len+1, "%s%s-", expect, opt_api_mcast_code);
  4061. count = 0;
  4062. while (80085) {
  4063. cgsleep_ms(1000);
  4064. count++;
  4065. came_from_siz = sizeof(came_from);
  4066. if (SOCKETFAIL(rep = recvfrom(mcast_sock, buf, sizeof(buf) - 1,
  4067. 0, (struct sockaddr *)(&came_from), &came_from_siz))) {
  4068. applog(LOG_DEBUG, "API mcast failed count=%d (%s) (%d)",
  4069. count, SOCKERRMSG, (int)mcast_sock);
  4070. continue;
  4071. }
  4072. addrok = check_connect(&came_from, &connectaddr, &group);
  4073. applog(LOG_DEBUG, "API mcast from %s - %s",
  4074. connectaddr, addrok ? "Accepted" : "Ignored");
  4075. if (!addrok)
  4076. continue;
  4077. buf[rep] = '\0';
  4078. if (rep > 0 && buf[rep-1] == '\n')
  4079. buf[--rep] = '\0';
  4080. getnameinfo((struct sockaddr *)(&came_from), came_from_siz,
  4081. NULL, 0, came_from_port, sizeof(came_from_port), NI_NUMERICHOST);
  4082. applog(LOG_DEBUG, "API mcast request rep=%d (%s) from [%s]:%s",
  4083. (int)rep, buf, connectaddr, came_from_port);
  4084. if ((size_t)rep > expect_code_len && memcmp(buf, expect_code, expect_code_len) == 0) {
  4085. reply_port = atoi(&buf[expect_code_len]);
  4086. if (reply_port < 1 || reply_port > 65535) {
  4087. applog(LOG_DEBUG, "API mcast request ignored - invalid port (%s)",
  4088. &buf[expect_code_len]);
  4089. } else {
  4090. applog(LOG_DEBUG, "API mcast request OK port %s=%d",
  4091. &buf[expect_code_len], reply_port);
  4092. if (getaddrinfo(connectaddr, &buf[expect_code_len], &hints, &res) != 0) {
  4093. applog(LOG_ERR, "Invalid client address %s", connectaddr);
  4094. continue;
  4095. }
  4096. client = res;
  4097. while (client) {
  4098. reply_sock = socket(res->ai_family, SOCK_DGRAM, 0);
  4099. if (mcast_sock > 0)
  4100. break;
  4101. client = client->ai_next;
  4102. }
  4103. if (reply_sock == INVSOCK) {
  4104. freeaddrinfo(res);
  4105. applog(LOG_ERR, "API mcast could not open socket to client %s", connectaddr);
  4106. continue;
  4107. }
  4108. snprintf(replybuf, sizeof(replybuf),
  4109. "cgm-" API_MCAST_CODE "-%d-%s",
  4110. opt_api_port, opt_api_mcast_des);
  4111. rep = sendto(reply_sock, replybuf, strlen(replybuf)+1,
  4112. 0, client->ai_addr, client->ai_addrlen);
  4113. freeaddrinfo(res);
  4114. if (SOCKETFAIL(rep)) {
  4115. applog(LOG_DEBUG, "API mcast send reply failed (%s) (%d)",
  4116. SOCKERRMSG, (int)reply_sock);
  4117. } else {
  4118. applog(LOG_DEBUG, "API mcast send reply (%s) succeeded (%d) (%d)",
  4119. replybuf, (int)rep, (int)reply_sock);
  4120. }
  4121. CLOSESOCKET(reply_sock);
  4122. }
  4123. } else
  4124. applog(LOG_DEBUG, "API mcast request was no good");
  4125. }
  4126. die:
  4127. CLOSESOCKET(mcast_sock);
  4128. }
  4129. static void *mcast_thread(void *userdata)
  4130. {
  4131. struct thr_info *mythr = userdata;
  4132. pthread_detach(pthread_self());
  4133. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  4134. RenameThread("APIMcast");
  4135. mcast();
  4136. PTH(mythr) = 0L;
  4137. return NULL;
  4138. }
  4139. void mcast_init()
  4140. {
  4141. struct thr_info *thr;
  4142. thr = calloc(1, sizeof(*thr));
  4143. if (!thr)
  4144. quit(1, "Failed to calloc mcast thr");
  4145. if (thr_info_create(thr, NULL, mcast_thread, thr))
  4146. quit(1, "API mcast thread create failed");
  4147. }
  4148. void api(int api_thr_id)
  4149. {
  4150. struct io_data *io_data;
  4151. struct thr_info bye_thr;
  4152. char buf[TMPBUFSIZ];
  4153. char param_buf[TMPBUFSIZ];
  4154. SOCKETTYPE c;
  4155. int n, bound;
  4156. char *connectaddr;
  4157. char *binderror;
  4158. time_t bindstart;
  4159. short int port = opt_api_port;
  4160. char port_s[10];
  4161. struct sockaddr_storage cli;
  4162. socklen_t clisiz;
  4163. char cmdbuf[100];
  4164. char *cmd = NULL;
  4165. char *param;
  4166. bool addrok;
  4167. char group;
  4168. json_error_t json_err;
  4169. json_t *json_config = NULL;
  4170. json_t *json_val;
  4171. bool isjson;
  4172. bool did, isjoin = false, firstjoin;
  4173. int i;
  4174. struct addrinfo hints, *res, *host;
  4175. SOCKETTYPE *apisock;
  4176. apisock = malloc(sizeof(*apisock));
  4177. *apisock = INVSOCK;
  4178. if (!opt_api_listen) {
  4179. applog(LOG_DEBUG, "API not running%s", UNAVAILABLE);
  4180. free(apisock);
  4181. return;
  4182. }
  4183. io_data = sock_io_new();
  4184. mutex_init(&quit_restart_lock);
  4185. pthread_cleanup_push(tidyup, (void *)apisock);
  4186. my_thr_id = api_thr_id;
  4187. setup_groups();
  4188. if (opt_api_allow) {
  4189. setup_ipaccess();
  4190. if (ips == 0) {
  4191. applog(LOG_WARNING, "API not running (no valid IPs specified)%s", UNAVAILABLE);
  4192. free(apisock);
  4193. return;
  4194. }
  4195. }
  4196. /* This should be done before curl in needed
  4197. * to ensure curl has already called WSAStartup() in windows */
  4198. cgsleep_ms(opt_log_interval*1000);
  4199. sprintf(port_s, "%d", port);
  4200. memset(&hints, 0, sizeof(hints));
  4201. hints.ai_flags = AI_PASSIVE;
  4202. hints.ai_family = AF_UNSPEC;
  4203. if (getaddrinfo(opt_api_host, port_s, &hints, &res) != 0) {
  4204. applog(LOG_ERR, "API failed to resolve %s", opt_api_host);
  4205. free(apisock);
  4206. return;
  4207. }
  4208. host = res;
  4209. while (host) {
  4210. *apisock = socket(res->ai_family, SOCK_STREAM, 0);
  4211. if (*apisock > 0)
  4212. break;
  4213. host = host->ai_next;
  4214. }
  4215. if (*apisock == INVSOCK) {
  4216. applog(LOG_ERR, "API initialisation failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  4217. freeaddrinfo(res);
  4218. free(apisock);
  4219. return;
  4220. }
  4221. #ifndef WIN32
  4222. // On linux with SO_REUSEADDR, bind will get the port if the previous
  4223. // socket is closed (even if it is still in TIME_WAIT) but fail if
  4224. // another program has it open - which is what we want
  4225. int optval = 1;
  4226. // If it doesn't work, we don't really care - just show a debug message
  4227. if (SOCKETFAIL(setsockopt(*apisock, SOL_SOCKET, SO_REUSEADDR, (void *)(&optval), sizeof(optval))))
  4228. applog(LOG_DEBUG, "API setsockopt SO_REUSEADDR failed (ignored): %s", SOCKERRMSG);
  4229. #else
  4230. // On windows a 2nd program can bind to a port>1024 already in use unless
  4231. // SO_EXCLUSIVEADDRUSE is used - however then the bind to a closed port
  4232. // in TIME_WAIT will fail until the timeout - so we leave the options alone
  4233. #endif
  4234. // try for more than 1 minute ... in case the old one hasn't completely gone yet
  4235. bound = 0;
  4236. bindstart = time(NULL);
  4237. while (bound == 0) {
  4238. if (SOCKETFAIL(bind(*apisock, host->ai_addr, host->ai_addrlen))) {
  4239. binderror = SOCKERRMSG;
  4240. if ((time(NULL) - bindstart) > 61)
  4241. break;
  4242. else {
  4243. applog(LOG_WARNING, "API bind to port %d failed - trying again in 30sec", port);
  4244. cgsleep_ms(30000);
  4245. }
  4246. } else
  4247. bound = 1;
  4248. }
  4249. freeaddrinfo(res);
  4250. if (bound == 0) {
  4251. applog(LOG_ERR, "API bind to port %d failed (%s)%s", port, binderror, UNAVAILABLE);
  4252. free(apisock);
  4253. return;
  4254. }
  4255. if (SOCKETFAIL(listen(*apisock, QUEUE))) {
  4256. applog(LOG_ERR, "API3 initialisation failed (%s)%s", SOCKERRMSG, UNAVAILABLE);
  4257. CLOSESOCKET(*apisock);
  4258. free(apisock);
  4259. return;
  4260. }
  4261. if (opt_api_allow)
  4262. applog(LOG_WARNING, "API running in IP access mode on port %d (%d)", port, (int)*apisock);
  4263. else {
  4264. if (opt_api_network)
  4265. applog(LOG_WARNING, "API running in UNRESTRICTED read access mode on port %d (%d)", port, (int)*apisock);
  4266. else
  4267. applog(LOG_WARNING, "API running in local read access mode on port %d (%d)", port, (int)*apisock);
  4268. }
  4269. if (opt_api_mcast)
  4270. mcast_init();
  4271. strbufs = k_new_list("StrBufs", sizeof(SBITEM), ALLOC_SBITEMS, LIMIT_SBITEMS, false);
  4272. while (!bye) {
  4273. clisiz = sizeof(cli);
  4274. if (SOCKETFAIL(c = accept(*apisock, (struct sockaddr *)(&cli), &clisiz))) {
  4275. applog(LOG_ERR, "API failed (%s)%s (%d)", SOCKERRMSG, UNAVAILABLE, (int)*apisock);
  4276. goto die;
  4277. }
  4278. addrok = check_connect((struct sockaddr_storage *)&cli, &connectaddr, &group);
  4279. applog(LOG_DEBUG, "API: connection from %s - %s",
  4280. connectaddr, addrok ? "Accepted" : "Ignored");
  4281. if (addrok) {
  4282. n = recv(c, &buf[0], TMPBUFSIZ-1, 0);
  4283. if (SOCKETFAIL(n))
  4284. buf[0] = '\0';
  4285. else
  4286. buf[n] = '\0';
  4287. if (opt_debug) {
  4288. if (SOCKETFAIL(n))
  4289. applog(LOG_DEBUG, "API: recv failed: %s", SOCKERRMSG);
  4290. else
  4291. applog(LOG_DEBUG, "API: recv command: (%d) '%s'", n, buf);
  4292. }
  4293. if (!SOCKETFAIL(n)) {
  4294. // the time of the request in now
  4295. when = time(NULL);
  4296. io_reinit(io_data);
  4297. did = false;
  4298. if (*buf != ISJSON) {
  4299. isjson = false;
  4300. param = strchr(buf, SEPARATOR);
  4301. if (param != NULL)
  4302. *(param++) = '\0';
  4303. cmd = buf;
  4304. }
  4305. else {
  4306. isjson = true;
  4307. param = NULL;
  4308. json_config = json_loadb(buf, n, 0, &json_err);
  4309. if (!json_is_object(json_config)) {
  4310. message(io_data, MSG_INVJSON, 0, NULL, isjson);
  4311. send_result(io_data, c, isjson);
  4312. did = true;
  4313. } else {
  4314. json_val = json_object_get(json_config, JSON_COMMAND);
  4315. if (json_val == NULL) {
  4316. message(io_data, MSG_MISCMD, 0, NULL, isjson);
  4317. send_result(io_data, c, isjson);
  4318. did = true;
  4319. } else {
  4320. if (!json_is_string(json_val)) {
  4321. message(io_data, MSG_INVCMD, 0, NULL, isjson);
  4322. send_result(io_data, c, isjson);
  4323. did = true;
  4324. } else {
  4325. cmd = (char *)json_string_value(json_val);
  4326. json_val = json_object_get(json_config, JSON_PARAMETER);
  4327. if (json_is_string(json_val))
  4328. param = (char *)json_string_value(json_val);
  4329. else if (json_is_integer(json_val)) {
  4330. sprintf(param_buf, "%d", (int)json_integer_value(json_val));
  4331. param = param_buf;
  4332. } else if (json_is_real(json_val)) {
  4333. sprintf(param_buf, "%f", (double)json_real_value(json_val));
  4334. param = param_buf;
  4335. }
  4336. }
  4337. }
  4338. }
  4339. }
  4340. if (!did) {
  4341. char *cmdptr, *cmdsbuf = NULL;
  4342. if (strchr(cmd, CMDJOIN)) {
  4343. firstjoin = isjoin = true;
  4344. // cmd + leading+tailing '|' + '\0'
  4345. cmdsbuf = malloc(strlen(cmd) + 3);
  4346. if (!cmdsbuf)
  4347. quithere(1, "OOM cmdsbuf");
  4348. strcpy(cmdsbuf, "|");
  4349. param = NULL;
  4350. } else
  4351. firstjoin = isjoin = false;
  4352. cmdptr = cmd;
  4353. do {
  4354. did = false;
  4355. if (isjoin) {
  4356. cmd = strchr(cmdptr, CMDJOIN);
  4357. if (cmd)
  4358. *(cmd++) = '\0';
  4359. if (!*cmdptr)
  4360. goto inochi;
  4361. }
  4362. for (i = 0; cmds[i].name != NULL; i++) {
  4363. if (strcmp(cmdptr, cmds[i].name) == 0) {
  4364. sprintf(cmdbuf, "|%s|", cmdptr);
  4365. if (isjoin) {
  4366. if (strstr(cmdsbuf, cmdbuf)) {
  4367. did = true;
  4368. break;
  4369. }
  4370. strcat(cmdsbuf, cmdptr);
  4371. strcat(cmdsbuf, "|");
  4372. head_join(io_data, cmdptr, isjson, &firstjoin);
  4373. if (!cmds[i].joinable) {
  4374. message(io_data, MSG_ACCDENY, 0, cmds[i].name, isjson);
  4375. did = true;
  4376. tail_join(io_data, isjson);
  4377. break;
  4378. }
  4379. }
  4380. if (ISPRIVGROUP(group) || strstr(COMMANDS(group), cmdbuf))
  4381. (cmds[i].func)(io_data, c, param, isjson, group);
  4382. else {
  4383. message(io_data, MSG_ACCDENY, 0, cmds[i].name, isjson);
  4384. applog(LOG_DEBUG, "API: access denied to '%s' for '%s' command", connectaddr, cmds[i].name);
  4385. }
  4386. did = true;
  4387. if (!isjoin)
  4388. send_result(io_data, c, isjson);
  4389. else
  4390. tail_join(io_data, isjson);
  4391. break;
  4392. }
  4393. }
  4394. if (!did) {
  4395. if (isjoin)
  4396. head_join(io_data, cmdptr, isjson, &firstjoin);
  4397. message(io_data, MSG_INVCMD, 0, NULL, isjson);
  4398. if (isjoin)
  4399. tail_join(io_data, isjson);
  4400. else
  4401. send_result(io_data, c, isjson);
  4402. }
  4403. inochi:
  4404. if (isjoin)
  4405. cmdptr = cmd;
  4406. } while (isjoin && cmdptr);
  4407. }
  4408. if (isjoin)
  4409. send_result(io_data, c, isjson);
  4410. if (isjson && json_is_object(json_config))
  4411. json_decref(json_config);
  4412. }
  4413. }
  4414. CLOSESOCKET(c);
  4415. }
  4416. die:
  4417. /* Blank line fix for older compilers since pthread_cleanup_pop is a
  4418. * macro that gets confused by a label existing immediately before it
  4419. */
  4420. ;
  4421. pthread_cleanup_pop(true);
  4422. free(apisock);
  4423. if (opt_debug)
  4424. applog(LOG_DEBUG, "API: terminating due to: %s",
  4425. do_a_quit ? "QUIT" : (do_a_restart ? "RESTART" : (bye ? "BYE" : "UNKNOWN!")));
  4426. mutex_lock(&quit_restart_lock);
  4427. if (do_a_restart) {
  4428. if (thr_info_create(&bye_thr, NULL, restart_thread, &bye_thr)) {
  4429. mutex_unlock(&quit_restart_lock);
  4430. quit(1, "API failed to initiate a restart - aborting");
  4431. }
  4432. pthread_detach(bye_thr.pth);
  4433. } else if (do_a_quit) {
  4434. if (thr_info_create(&bye_thr, NULL, quit_thread, &bye_thr)) {
  4435. mutex_unlock(&quit_restart_lock);
  4436. quit(1, "API failed to initiate a clean quit - aborting");
  4437. }
  4438. pthread_detach(bye_thr.pth);
  4439. }
  4440. mutex_unlock(&quit_restart_lock);
  4441. }