miner.c 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115
  1. /*
  2. * Copyright 2011-2012 Con Kolivas
  3. * Copyright 2011-2012 Luke Dashjr
  4. * Copyright 2010 Jeff Garzik
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 3 of the License, or (at your option)
  9. * any later version. See COPYING for more details.
  10. */
  11. #include "config.h"
  12. #ifdef HAVE_CURSES
  13. #include <curses.h>
  14. #endif
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #include <stdbool.h>
  19. #include <stdint.h>
  20. #include <unistd.h>
  21. #include <sys/time.h>
  22. #include <time.h>
  23. #include <math.h>
  24. #include <stdarg.h>
  25. #include <assert.h>
  26. #include <signal.h>
  27. #include <sys/stat.h>
  28. #include <sys/types.h>
  29. #ifndef WIN32
  30. #include <sys/resource.h>
  31. #endif
  32. #include <ccan/opt/opt.h>
  33. #include <jansson.h>
  34. #include <curl/curl.h>
  35. #include <libgen.h>
  36. #include <sha2.h>
  37. #include "compat.h"
  38. #include "miner.h"
  39. #include "findnonce.h"
  40. #include "adl.h"
  41. #include "driver-cpu.h"
  42. #include "driver-opencl.h"
  43. #include "bench_block.h"
  44. #if defined(unix)
  45. #include <errno.h>
  46. #include <fcntl.h>
  47. #include <sys/wait.h>
  48. #endif
  49. enum workio_commands {
  50. WC_GET_WORK,
  51. WC_SUBMIT_WORK,
  52. };
  53. struct workio_cmd {
  54. enum workio_commands cmd;
  55. struct thr_info *thr;
  56. union {
  57. struct work *work;
  58. } u;
  59. bool lagging;
  60. };
  61. struct strategies strategies[] = {
  62. { "Failover" },
  63. { "Round Robin" },
  64. { "Rotate" },
  65. { "Load Balance" },
  66. };
  67. static char packagename[255];
  68. int gpu_threads;
  69. bool opt_protocol = false;
  70. static bool opt_benchmark;
  71. static bool want_longpoll = true;
  72. static bool have_longpoll = false;
  73. static bool want_per_device_stats = false;
  74. bool use_syslog = false;
  75. static bool opt_quiet = false;
  76. static bool opt_realquiet = false;
  77. bool opt_loginput = false;
  78. const int opt_cutofftemp = 95;
  79. static int opt_retries = -1;
  80. static int opt_fail_pause = 5;
  81. static int fail_pause = 5;
  82. int opt_log_interval = 5;
  83. static int opt_queue = 1;
  84. int opt_scantime = 60;
  85. int opt_expiry = 120;
  86. int opt_bench_algo = -1;
  87. static const bool opt_time = true;
  88. #ifdef HAVE_OPENCL
  89. int opt_dynamic_interval = 7;
  90. #endif
  91. bool opt_restart = true;
  92. static bool opt_nogpu;
  93. struct list_head scan_devices;
  94. int nDevs;
  95. int opt_g_threads = 2;
  96. static signed int devices_enabled = 0;
  97. static bool opt_removedisabled = false;
  98. int total_devices = 0;
  99. struct cgpu_info *devices[MAX_DEVICES];
  100. bool have_opencl = false;
  101. int gpu_threads;
  102. int opt_n_threads = -1;
  103. int mining_threads;
  104. int num_processors;
  105. bool use_curses =
  106. #ifdef HAVE_CURSES
  107. true
  108. #else
  109. false
  110. #endif
  111. ;
  112. static bool opt_submit_stale;
  113. static int opt_shares;
  114. static bool opt_fail_only;
  115. bool opt_autofan;
  116. bool opt_autoengine;
  117. bool opt_noadl;
  118. char *opt_api_allow = NULL;
  119. char *opt_api_description = PACKAGE_STRING;
  120. int opt_api_port = 4028;
  121. bool opt_api_listen = false;
  122. bool opt_api_network = false;
  123. bool opt_delaynet = false;
  124. char *opt_kernel_path;
  125. char *cgminer_path;
  126. #define QUIET (opt_quiet || opt_realquiet)
  127. struct thr_info *thr_info;
  128. static int work_thr_id;
  129. int longpoll_thr_id;
  130. static int stage_thr_id;
  131. static int watchpool_thr_id;
  132. static int watchdog_thr_id;
  133. #ifdef HAVE_CURSES
  134. static int input_thr_id;
  135. #endif
  136. int gpur_thr_id;
  137. static int api_thr_id;
  138. static int total_threads;
  139. struct work_restart *work_restart = NULL;
  140. static pthread_mutex_t hash_lock;
  141. static pthread_mutex_t qd_lock;
  142. static pthread_mutex_t *stgd_lock;
  143. #ifdef HAVE_CURSES
  144. static pthread_mutex_t curses_lock;
  145. #endif
  146. static pthread_rwlock_t blk_lock;
  147. pthread_rwlock_t netacc_lock;
  148. double total_mhashes_done;
  149. static struct timeval total_tv_start, total_tv_end;
  150. pthread_mutex_t control_lock;
  151. int hw_errors;
  152. int total_accepted, total_rejected;
  153. int total_getworks, total_stale, total_discarded;
  154. static int total_queued;
  155. unsigned int new_blocks;
  156. static unsigned int work_block;
  157. unsigned int found_blocks;
  158. unsigned int local_work;
  159. unsigned int total_go, total_ro;
  160. struct pool *pools[MAX_POOLS];
  161. static struct pool *currentpool = NULL;
  162. int total_pools;
  163. enum pool_strategy pool_strategy = POOL_FAILOVER;
  164. int opt_rotate_period;
  165. static int total_urls, total_users, total_passes, total_userpasses;
  166. #ifndef HAVE_CURSES
  167. const
  168. #endif
  169. static bool curses_active = false;
  170. static char current_block[37];
  171. static char *current_hash;
  172. static char datestamp[40];
  173. static char blocktime[30];
  174. struct block {
  175. char hash[37];
  176. UT_hash_handle hh;
  177. };
  178. static struct block *blocks = NULL;
  179. char *opt_socks_proxy = NULL;
  180. static const char def_conf[] = "bfgminer.conf";
  181. static bool config_loaded = false;
  182. static int include_count = 0;
  183. #define JSON_INCLUDE_CONF "include"
  184. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed"
  185. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  186. #define JSON_MAX_DEPTH 10
  187. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  188. #if defined(unix)
  189. static char *opt_stderr_cmd = NULL;
  190. static int forkpid = 0;
  191. #endif // defined(unix)
  192. bool ping = true;
  193. struct sigaction termhandler, inthandler;
  194. struct thread_q *getq;
  195. static int total_work;
  196. struct work *staged_work = NULL;
  197. static int staged_extras;
  198. struct schedtime {
  199. bool enable;
  200. struct tm tm;
  201. };
  202. struct schedtime schedstart;
  203. struct schedtime schedstop;
  204. bool sched_paused;
  205. static bool time_before(struct tm *tm1, struct tm *tm2)
  206. {
  207. if (tm1->tm_hour < tm2->tm_hour)
  208. return true;
  209. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  210. return true;
  211. return false;
  212. }
  213. static bool should_run(void)
  214. {
  215. struct timeval tv;
  216. struct tm *tm;
  217. if (!schedstart.enable && !schedstop.enable)
  218. return true;
  219. gettimeofday(&tv, NULL);
  220. tm = localtime(&tv.tv_sec);
  221. if (schedstart.enable) {
  222. if (!schedstop.enable) {
  223. if (time_before(tm, &schedstart.tm))
  224. return false;
  225. /* This is a once off event with no stop time set */
  226. schedstart.enable = false;
  227. return true;
  228. }
  229. if (time_before(&schedstart.tm, &schedstop.tm)) {
  230. if (time_before(tm, &schedstop.tm) && !time_before(tm, &schedstart.tm))
  231. return true;
  232. return false;
  233. } /* Times are reversed */
  234. if (time_before(tm, &schedstart.tm)) {
  235. if (time_before(tm, &schedstop.tm))
  236. return true;
  237. return false;
  238. }
  239. return true;
  240. }
  241. /* only schedstop.enable == true */
  242. if (!time_before(tm, &schedstop.tm))
  243. return false;
  244. return true;
  245. }
  246. void get_datestamp(char *f, struct timeval *tv)
  247. {
  248. struct tm *tm;
  249. tm = localtime(&tv->tv_sec);
  250. sprintf(f, "[%d-%02d-%02d %02d:%02d:%02d]",
  251. tm->tm_year + 1900,
  252. tm->tm_mon + 1,
  253. tm->tm_mday,
  254. tm->tm_hour,
  255. tm->tm_min,
  256. tm->tm_sec);
  257. }
  258. void get_timestamp(char *f, struct timeval *tv)
  259. {
  260. struct tm *tm;
  261. tm = localtime(&tv->tv_sec);
  262. sprintf(f, "[%02d:%02d:%02d]",
  263. tm->tm_hour,
  264. tm->tm_min,
  265. tm->tm_sec);
  266. }
  267. static void applog_and_exit(const char *fmt, ...)
  268. {
  269. va_list ap;
  270. va_start(ap, fmt);
  271. vapplog(LOG_ERR, fmt, ap);
  272. va_end(ap);
  273. exit(1);
  274. }
  275. static pthread_mutex_t sharelog_lock;
  276. FILE *sharelog_file = NULL;
  277. static void
  278. sharelog(const char*disposition, const struct work*work) {
  279. if (!sharelog_file)
  280. return;
  281. int thr_id = work->thr_id;
  282. struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
  283. struct pool *pool = work->pool;
  284. unsigned long int t = (unsigned long int)work->share_found_time;
  285. char *target = bin2hex(work->target, sizeof(work->target));
  286. if (unlikely(!target)) {
  287. applog(LOG_ERR, "sharelog target OOM");
  288. return;
  289. }
  290. char *hash = bin2hex(work->hash, sizeof(work->hash));
  291. if (unlikely(!hash)) {
  292. free(target);
  293. applog(LOG_ERR, "sharelog hash OOM");
  294. return;
  295. }
  296. char *data = bin2hex(work->data, sizeof(work->data));
  297. if (unlikely(!data)) {
  298. free(target);
  299. free(hash);
  300. applog(LOG_ERR, "sharelog data OOM");
  301. return;
  302. }
  303. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  304. char s[1024];
  305. int rv;
  306. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s%u,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->api->name, cgpu->device_id, thr_id, hash, data);
  307. free(target);
  308. free(hash);
  309. free(data);
  310. if (rv >= sizeof(s))
  311. s[sizeof(s) - 1] = '\0';
  312. else
  313. if (rv < 0) {
  314. applog(LOG_ERR, "sharelog printf error");
  315. return;
  316. }
  317. size_t ret;
  318. mutex_lock(&sharelog_lock);
  319. ret = fwrite(s, rv, 1, sharelog_file);
  320. fflush(sharelog_file);
  321. mutex_unlock(&sharelog_lock);
  322. if (1 != ret)
  323. applog(LOG_ERR, "sharelog fwrite error");
  324. }
  325. static void add_pool(void)
  326. {
  327. struct pool *pool;
  328. pool = calloc(sizeof(struct pool), 1);
  329. if (!pool) {
  330. applog(LOG_ERR, "Failed to malloc pool in add_pool");
  331. exit (1);
  332. }
  333. pool->pool_no = pool->prio = total_pools;
  334. pools[total_pools++] = pool;
  335. if (unlikely(pthread_mutex_init(&pool->pool_lock, NULL))) {
  336. applog(LOG_ERR, "Failed to pthread_mutex_init in add_pool");
  337. exit (1);
  338. }
  339. /* Make sure the pool doesn't think we've been idle since time 0 */
  340. pool->tv_idle.tv_sec = ~0UL;
  341. }
  342. /* Pool variant of test and set */
  343. static bool pool_tset(struct pool *pool, bool *var)
  344. {
  345. bool ret;
  346. mutex_lock(&pool->pool_lock);
  347. ret = *var;
  348. *var = true;
  349. mutex_unlock(&pool->pool_lock);
  350. return ret;
  351. }
  352. bool pool_tclear(struct pool *pool, bool *var)
  353. {
  354. bool ret;
  355. mutex_lock(&pool->pool_lock);
  356. ret = *var;
  357. *var = false;
  358. mutex_unlock(&pool->pool_lock);
  359. return ret;
  360. }
  361. static bool pool_isset(struct pool *pool, bool *var)
  362. {
  363. bool ret;
  364. mutex_lock(&pool->pool_lock);
  365. ret = *var;
  366. mutex_unlock(&pool->pool_lock);
  367. return ret;
  368. }
  369. struct pool *current_pool(void)
  370. {
  371. struct pool *pool;
  372. mutex_lock(&control_lock);
  373. pool = currentpool;
  374. mutex_unlock(&control_lock);
  375. return pool;
  376. }
  377. char *set_int_range(const char *arg, int *i, int min, int max)
  378. {
  379. char *err = opt_set_intval(arg, i);
  380. if (err)
  381. return err;
  382. if (*i < min || *i > max)
  383. return "Value out of range";
  384. return NULL;
  385. }
  386. static char *set_int_0_to_9999(const char *arg, int *i)
  387. {
  388. return set_int_range(arg, i, 0, 9999);
  389. }
  390. static char *set_int_1_to_65535(const char *arg, int *i)
  391. {
  392. return set_int_range(arg, i, 1, 65535);
  393. }
  394. static char *set_int_0_to_10(const char *arg, int *i)
  395. {
  396. return set_int_range(arg, i, 0, 10);
  397. }
  398. static char *set_int_1_to_10(const char *arg, int *i)
  399. {
  400. return set_int_range(arg, i, 1, 10);
  401. }
  402. #if defined(USE_BITFORCE) || defined(USE_ICARUS)
  403. static char *add_serial(char *arg)
  404. {
  405. string_elist_add(arg, &scan_devices);
  406. return NULL;
  407. }
  408. #endif
  409. static char *set_devices(char *arg)
  410. {
  411. int i = strtol(arg, &arg, 0);
  412. if (*arg) {
  413. if (*arg == '?') {
  414. devices_enabled = -1;
  415. return NULL;
  416. }
  417. return "Invalid device number";
  418. }
  419. if (i < 0 || i >= (int)(sizeof(devices_enabled) * 8) - 1)
  420. return "Invalid device number";
  421. devices_enabled |= 1 << i;
  422. return NULL;
  423. }
  424. static char *set_loadbalance(enum pool_strategy *strategy)
  425. {
  426. *strategy = POOL_LOADBALANCE;
  427. return NULL;
  428. }
  429. static char *set_rotate(const char *arg, int *i)
  430. {
  431. pool_strategy = POOL_ROTATE;
  432. return set_int_range(arg, i, 0, 9999);
  433. }
  434. static char *set_rr(enum pool_strategy *strategy)
  435. {
  436. *strategy = POOL_ROUNDROBIN;
  437. return NULL;
  438. }
  439. static char *set_url(char *arg)
  440. {
  441. struct pool *pool;
  442. total_urls++;
  443. if (total_urls > total_pools)
  444. add_pool();
  445. pool = pools[total_urls - 1];
  446. opt_set_charp(arg, &pool->rpc_url);
  447. if (strncmp(arg, "http://", 7) &&
  448. strncmp(arg, "https://", 8)) {
  449. char *httpinput;
  450. httpinput = malloc(255);
  451. if (!httpinput)
  452. quit(1, "Failed to malloc httpinput");
  453. strcpy(httpinput, "http://");
  454. strncat(httpinput, arg, 248);
  455. pool->rpc_url = httpinput;
  456. }
  457. return NULL;
  458. }
  459. static char *set_user(const char *arg)
  460. {
  461. struct pool *pool;
  462. if (total_userpasses)
  463. return "Use only user + pass or userpass, but not both";
  464. total_users++;
  465. if (total_users > total_pools)
  466. add_pool();
  467. pool = pools[total_users - 1];
  468. opt_set_charp(arg, &pool->rpc_user);
  469. return NULL;
  470. }
  471. static char *set_pass(const char *arg)
  472. {
  473. struct pool *pool;
  474. if (total_userpasses)
  475. return "Use only user + pass or userpass, but not both";
  476. total_passes++;
  477. if (total_passes > total_pools)
  478. add_pool();
  479. pool = pools[total_passes - 1];
  480. opt_set_charp(arg, &pool->rpc_pass);
  481. return NULL;
  482. }
  483. static char *set_userpass(const char *arg)
  484. {
  485. struct pool *pool;
  486. if (total_users || total_passes)
  487. return "Use only user + pass or userpass, but not both";
  488. total_userpasses++;
  489. if (total_userpasses > total_pools)
  490. add_pool();
  491. pool = pools[total_userpasses - 1];
  492. opt_set_charp(arg, &pool->rpc_userpass);
  493. return NULL;
  494. }
  495. static char *enable_debug(bool *flag)
  496. {
  497. *flag = true;
  498. /* Turn out verbose output, too. */
  499. opt_log_output = true;
  500. return NULL;
  501. }
  502. static char *set_schedtime(const char *arg, struct schedtime *st)
  503. {
  504. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  505. return "Invalid time set, should be HH:MM";
  506. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  507. return "Invalid time set.";
  508. st->enable = true;
  509. return NULL;
  510. }
  511. static char*
  512. set_sharelog(char *arg) {
  513. char *r = "";
  514. long int i = strtol(arg, &r, 10);
  515. if ((!*r) && i >= 0 && i <= INT_MAX) {
  516. sharelog_file = fdopen((int)i, "a");
  517. if (!sharelog_file)
  518. applog(LOG_ERR, "Failed to open fd %u for share log", (unsigned int)i);
  519. } else if (!strcmp(arg, "-")) {
  520. sharelog_file = stdout;
  521. if (!sharelog_file)
  522. applog(LOG_ERR, "Standard output missing for share log");
  523. } else {
  524. sharelog_file = fopen(arg, "a");
  525. if (!sharelog_file)
  526. applog(LOG_ERR, "Failed to open %s for share log", arg);
  527. }
  528. return NULL;
  529. }
  530. static char *temp_cutoff_str = NULL;
  531. char *set_temp_cutoff(char *arg)
  532. {
  533. int val;
  534. if (!(arg && arg[0]))
  535. return "Invalid parameters for set temp cutoff";
  536. val = atoi(arg);
  537. if (val < 0 || val > 200)
  538. return "Invalid value passed to set temp cutoff";
  539. temp_cutoff_str = arg;
  540. return NULL;
  541. }
  542. static void load_temp_cutoffs()
  543. {
  544. int i, val = 0, device = 0;
  545. char *nextptr;
  546. if (temp_cutoff_str) {
  547. for (device = 0, nextptr = strtok(temp_cutoff_str, ","); nextptr; ++device, nextptr = strtok(NULL, ",")) {
  548. if (device >= total_devices)
  549. quit(1, "Too many values passed to set temp cutoff");
  550. val = atoi(nextptr);
  551. if (val < 0 || val > 200)
  552. quit(1, "Invalid value passed to set temp cutoff");
  553. devices[device]->cutofftemp = val;
  554. }
  555. }
  556. else
  557. val = opt_cutofftemp;
  558. if (device <= 1) {
  559. for (i = device; i < total_devices; ++i)
  560. devices[i]->cutofftemp = val;
  561. }
  562. }
  563. static char *set_api_allow(const char *arg)
  564. {
  565. opt_set_charp(arg, &opt_api_allow);
  566. return NULL;
  567. }
  568. static char *set_api_description(const char *arg)
  569. {
  570. opt_set_charp(arg, &opt_api_description);
  571. return NULL;
  572. }
  573. /* These options are available from config file or commandline */
  574. static struct opt_table opt_config_table[] = {
  575. #ifdef WANT_CPUMINE
  576. OPT_WITH_ARG("--algo|-a",
  577. set_algo, show_algo, &opt_algo,
  578. "Specify sha256 implementation for CPU mining:\n"
  579. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  580. "\n\tc\t\tLinux kernel sha256, implemented in C"
  581. #ifdef WANT_SSE2_4WAY
  582. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  583. #endif
  584. #ifdef WANT_VIA_PADLOCK
  585. "\n\tvia\t\tVIA padlock implementation"
  586. #endif
  587. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  588. #ifdef WANT_CRYPTOPP_ASM32
  589. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  590. #endif
  591. #ifdef WANT_X8632_SSE2
  592. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  593. #endif
  594. #ifdef WANT_X8664_SSE2
  595. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  596. #endif
  597. #ifdef WANT_X8664_SSE4
  598. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  599. #endif
  600. #ifdef WANT_ALTIVEC_4WAY
  601. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  602. #endif
  603. ),
  604. #endif
  605. OPT_WITH_ARG("--api-allow",
  606. set_api_allow, NULL, NULL,
  607. "Allow API access only to the given list of IP[/Prefix] addresses[/subnets]"),
  608. OPT_WITH_ARG("--api-description",
  609. set_api_description, NULL, NULL,
  610. "Description placed in the API status header, default: BFGMiner version"),
  611. OPT_WITHOUT_ARG("--api-listen",
  612. opt_set_bool, &opt_api_listen,
  613. "Enable API, default: disabled"),
  614. OPT_WITHOUT_ARG("--api-network",
  615. opt_set_bool, &opt_api_network,
  616. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  617. OPT_WITH_ARG("--api-port",
  618. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  619. "Port number of miner API"),
  620. #ifdef HAVE_ADL
  621. OPT_WITHOUT_ARG("--auto-fan",
  622. opt_set_bool, &opt_autofan,
  623. "Automatically adjust all GPU fan speeds to maintain a target temperature"),
  624. OPT_WITHOUT_ARG("--auto-gpu",
  625. opt_set_bool, &opt_autoengine,
  626. "Automatically adjust all GPU engine clock speeds to maintain a target temperature"),
  627. #endif
  628. OPT_WITHOUT_ARG("--benchmark",
  629. opt_set_bool, &opt_benchmark,
  630. "Run BFGMiner in benchmark mode - produces no shares"),
  631. #ifdef WANT_CPUMINE
  632. OPT_WITH_ARG("--bench-algo|-b",
  633. set_int_0_to_9999, opt_show_intval, &opt_bench_algo,
  634. opt_hidden),
  635. OPT_WITH_ARG("--cpu-threads|-t",
  636. force_nthreads_int, opt_show_intval, &opt_n_threads,
  637. "Number of miner CPU threads"),
  638. #endif
  639. OPT_WITHOUT_ARG("--debug|-D",
  640. enable_debug, &opt_debug,
  641. "Enable debug output"),
  642. OPT_WITH_ARG("--device|-d",
  643. set_devices, NULL, NULL,
  644. "Select device to use, (Use repeat -d for multiple devices, default: all)"),
  645. OPT_WITHOUT_ARG("--disable-gpu|-G",
  646. opt_set_bool, &opt_nogpu,
  647. #ifdef HAVE_OPENCL
  648. "Disable GPU mining even if suitable devices exist"
  649. #else
  650. opt_hidden
  651. #endif
  652. ),
  653. #if defined(WANT_CPUMINE) && (defined(HAVE_OPENCL) || defined(USE_BITFORCE) || defined(USE_ICARUS))
  654. OPT_WITHOUT_ARG("--enable-cpu|-C",
  655. opt_set_bool, &opt_usecpu,
  656. "Enable CPU mining with other mining (default: no CPU mining if other devices exist)"),
  657. #endif
  658. OPT_WITH_ARG("--expiry|-E",
  659. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  660. "Upper bound on how many seconds after getting work we consider a share from it stale"),
  661. OPT_WITHOUT_ARG("--failover-only",
  662. opt_set_bool, &opt_fail_only,
  663. "Don't leak work to backup pools when primary pool is lagging"),
  664. #ifdef HAVE_OPENCL
  665. OPT_WITH_ARG("--gpu-dyninterval",
  666. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  667. "Set the refresh interval in ms for GPUs using dynamic intensity"),
  668. OPT_WITH_ARG("--gpu-platform",
  669. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  670. "Select OpenCL platform ID to use for GPU mining"),
  671. OPT_WITH_ARG("--gpu-threads|-g",
  672. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  673. "Number of threads per GPU (1 - 10)"),
  674. #ifdef HAVE_ADL
  675. OPT_WITH_ARG("--gpu-engine",
  676. set_gpu_engine, NULL, NULL,
  677. "GPU engine (over)clock range in Mhz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)"),
  678. OPT_WITH_ARG("--gpu-fan",
  679. set_gpu_fan, NULL, NULL,
  680. "GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
  681. OPT_WITH_ARG("--gpu-map",
  682. set_gpu_map, NULL, NULL,
  683. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  684. OPT_WITH_ARG("--gpu-memclock",
  685. set_gpu_memclock, NULL, NULL,
  686. "Set the GPU memory (over)clock in Mhz - one value for all or separate by commas for per card"),
  687. OPT_WITH_ARG("--gpu-memdiff",
  688. set_gpu_memdiff, NULL, NULL,
  689. "Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode"),
  690. OPT_WITH_ARG("--gpu-powertune",
  691. set_gpu_powertune, NULL, NULL,
  692. "Set the GPU powertune percentage - one value for all or separate by commas for per card"),
  693. OPT_WITHOUT_ARG("--gpu-reorder",
  694. opt_set_bool, &opt_reorder,
  695. "Attempt to reorder GPU devices according to PCI Bus ID"),
  696. OPT_WITH_ARG("--gpu-vddc",
  697. set_gpu_vddc, NULL, NULL,
  698. "Set the GPU voltage in Volts - one value for all or separate by commas for per card"),
  699. #endif
  700. OPT_WITH_ARG("--intensity|-I",
  701. set_intensity, NULL, NULL,
  702. "Intensity of GPU scanning (d or " _MIN_INTENSITY_STR " -> " _MAX_INTENSITY_STR ", default: d to maintain desktop interactivity)"),
  703. OPT_WITH_ARG("--kernel-path|-K",
  704. opt_set_charp, opt_show_charp, &opt_kernel_path,
  705. "Specify a path to where the kernel .cl files are"),
  706. OPT_WITH_ARG("--kernel|-k",
  707. set_kernel, NULL, NULL,
  708. "Override kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated"),
  709. #endif
  710. OPT_WITHOUT_ARG("--load-balance",
  711. set_loadbalance, &pool_strategy,
  712. "Change multipool strategy from failover to even load balance"),
  713. OPT_WITH_ARG("--log|-l",
  714. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  715. "Interval in seconds between log output"),
  716. #if defined(unix)
  717. OPT_WITH_ARG("--monitor|-m",
  718. opt_set_charp, NULL, &opt_stderr_cmd,
  719. "Use custom pipe cmd for output messages"),
  720. #endif // defined(unix)
  721. OPT_WITHOUT_ARG("--net-delay",
  722. opt_set_bool, &opt_delaynet,
  723. "Impose small delays in networking to not overload slow routers"),
  724. OPT_WITHOUT_ARG("--no-adl",
  725. opt_set_bool, &opt_noadl,
  726. #ifdef HAVE_ADL
  727. "Disable the ATI display library used for monitoring and setting GPU parameters"
  728. #else
  729. opt_hidden
  730. #endif
  731. ),
  732. OPT_WITHOUT_ARG("--no-longpoll",
  733. opt_set_invbool, &want_longpoll,
  734. "Disable X-Long-Polling support"),
  735. OPT_WITHOUT_ARG("--no-restart",
  736. opt_set_invbool, &opt_restart,
  737. #ifdef HAVE_OPENCL
  738. "Do not attempt to restart GPUs that hang"
  739. #else
  740. opt_hidden
  741. #endif
  742. ),
  743. OPT_WITH_ARG("--pass|-p",
  744. set_pass, NULL, NULL,
  745. "Password for bitcoin JSON-RPC server"),
  746. OPT_WITHOUT_ARG("--per-device-stats",
  747. opt_set_bool, &want_per_device_stats,
  748. "Force verbose mode and output per-device statistics"),
  749. OPT_WITHOUT_ARG("--protocol-dump|-P",
  750. opt_set_bool, &opt_protocol,
  751. "Verbose dump of protocol-level activities"),
  752. OPT_WITH_ARG("--queue|-Q",
  753. set_int_0_to_9999, opt_show_intval, &opt_queue,
  754. "Minimum number of work items to have queued (0+)"),
  755. OPT_WITHOUT_ARG("--quiet|-q",
  756. opt_set_bool, &opt_quiet,
  757. "Disable logging output, display status and errors"),
  758. OPT_WITHOUT_ARG("--real-quiet",
  759. opt_set_bool, &opt_realquiet,
  760. "Disable all output"),
  761. OPT_WITHOUT_ARG("--remove-disabled",
  762. opt_set_bool, &opt_removedisabled,
  763. "Remove disabled devices entirely, as if they didn't exist"),
  764. OPT_WITH_ARG("--retries|-r",
  765. opt_set_intval, opt_show_intval, &opt_retries,
  766. "Number of times to retry before giving up, if JSON-RPC call fails (-1 means never)"),
  767. OPT_WITH_ARG("--retry-pause|-R",
  768. set_int_0_to_9999, opt_show_intval, &opt_fail_pause,
  769. "Number of seconds to pause, between retries"),
  770. OPT_WITH_ARG("--rotate",
  771. set_rotate, opt_show_intval, &opt_rotate_period,
  772. "Change multipool strategy from failover to regularly rotate at N minutes"),
  773. OPT_WITHOUT_ARG("--round-robin",
  774. set_rr, &pool_strategy,
  775. "Change multipool strategy from failover to round robin on failure"),
  776. #if defined(USE_BITFORCE) || defined(USE_ICARUS)
  777. OPT_WITH_ARG("--scan-serial|-S",
  778. add_serial, NULL, NULL,
  779. "Serial port to probe for FPGA Mining device"),
  780. #endif
  781. OPT_WITH_ARG("--scan-time|-s",
  782. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  783. "Upper bound on time spent scanning current work, in seconds"),
  784. OPT_WITH_ARG("--sched-start",
  785. set_schedtime, NULL, &schedstart,
  786. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  787. OPT_WITH_ARG("--sched-stop",
  788. set_schedtime, NULL, &schedstop,
  789. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  790. OPT_WITH_ARG("--sharelog",
  791. set_sharelog, NULL, NULL,
  792. "Append share log to file"),
  793. OPT_WITH_ARG("--shares",
  794. opt_set_intval, NULL, &opt_shares,
  795. "Quit after mining N shares (default: unlimited)"),
  796. OPT_WITH_ARG("--socks-proxy",
  797. opt_set_charp, NULL, &opt_socks_proxy,
  798. "Set socks4 proxy (host:port)"),
  799. OPT_WITHOUT_ARG("--submit-stale",
  800. opt_set_bool, &opt_submit_stale,
  801. "Submit shares even if they would normally be considered stale"),
  802. #ifdef HAVE_SYSLOG_H
  803. OPT_WITHOUT_ARG("--syslog",
  804. opt_set_bool, &use_syslog,
  805. "Use system log for output messages (default: standard error)"),
  806. #endif
  807. #if defined(HAVE_ADL) || defined(USE_BITFORCE)
  808. OPT_WITH_ARG("--temp-cutoff",
  809. set_temp_cutoff, opt_show_intval, &opt_cutofftemp,
  810. "Temperature where a device will be automatically disabled, one value or comma separated list"),
  811. #endif
  812. #ifdef HAVE_ADL
  813. OPT_WITH_ARG("--temp-hysteresis",
  814. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  815. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  816. OPT_WITH_ARG("--temp-overheat",
  817. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  818. "Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  819. OPT_WITH_ARG("--temp-target",
  820. set_temp_target, opt_show_intval, &opt_targettemp,
  821. "Target temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  822. #endif
  823. OPT_WITHOUT_ARG("--text-only|-T",
  824. opt_set_invbool, &use_curses,
  825. #ifdef HAVE_CURSES
  826. "Disable ncurses formatted screen output"
  827. #else
  828. opt_hidden
  829. #endif
  830. ),
  831. OPT_WITH_ARG("--url|-o",
  832. set_url, NULL, NULL,
  833. "URL for bitcoin JSON-RPC server"),
  834. OPT_WITH_ARG("--user|-u",
  835. set_user, NULL, NULL,
  836. "Username for bitcoin JSON-RPC server"),
  837. #ifdef HAVE_OPENCL
  838. OPT_WITH_ARG("--vectors|-v",
  839. set_vector, NULL, NULL,
  840. "Override detected optimal vector (1, 2 or 4) - one value or comma separated list"),
  841. #endif
  842. OPT_WITHOUT_ARG("--verbose",
  843. opt_set_bool, &opt_log_output,
  844. "Log verbose output to stderr as well as status output"),
  845. #ifdef HAVE_OPENCL
  846. OPT_WITH_ARG("--worksize|-w",
  847. set_worksize, NULL, NULL,
  848. "Override detected optimal worksize - one value or comma separated list"),
  849. #endif
  850. OPT_WITH_ARG("--userpass|-O",
  851. set_userpass, NULL, NULL,
  852. "Username:Password pair for bitcoin JSON-RPC server"),
  853. OPT_WITH_ARG("--pools",
  854. opt_set_bool, NULL, NULL, opt_hidden),
  855. OPT_ENDTABLE
  856. };
  857. static char *load_config(const char *arg, void __maybe_unused *unused);
  858. static int fileconf_load;
  859. static char *parse_config(json_t *config, bool fileconf)
  860. {
  861. static char err_buf[200];
  862. json_t *val;
  863. struct opt_table *opt;
  864. if (fileconf && !fileconf_load)
  865. fileconf_load = 1;
  866. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  867. char *p, *name;
  868. /* We don't handle subtables. */
  869. assert(!(opt->type & OPT_SUBTABLE));
  870. /* Pull apart the option name(s). */
  871. name = strdup(opt->names);
  872. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  873. char *err = NULL;
  874. /* Ignore short options. */
  875. if (p[1] != '-')
  876. continue;
  877. val = json_object_get(config, p+2);
  878. if (!val)
  879. continue;
  880. if ((opt->type & OPT_HASARG) && json_is_string(val)) {
  881. err = opt->cb_arg(json_string_value(val),
  882. opt->u.arg);
  883. } else if ((opt->type & OPT_HASARG) && json_is_array(val)) {
  884. int n, size = json_array_size(val);
  885. for (n = 0; n < size && !err; n++) {
  886. if (json_is_string(json_array_get(val, n)))
  887. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  888. else if (json_is_object(json_array_get(val, n)))
  889. err = parse_config(json_array_get(val, n), false);
  890. }
  891. } else if ((opt->type & OPT_NOARG) && json_is_true(val))
  892. err = opt->cb(opt->u.arg);
  893. else
  894. err = "Invalid value";
  895. if (err) {
  896. /* Allow invalid values to be in configuration
  897. * file, just skipping over them provided the
  898. * JSON is still valid after that. */
  899. if (fileconf) {
  900. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  901. fileconf_load = -1;
  902. } else {
  903. sprintf(err_buf, "Parsing JSON option %s: %s",
  904. p, err);
  905. return err_buf;
  906. }
  907. }
  908. }
  909. free(name);
  910. }
  911. val = json_object_get(config, JSON_INCLUDE_CONF);
  912. if (val && json_is_string(val))
  913. return load_config(json_string_value(val), NULL);
  914. return NULL;
  915. }
  916. char *cnfbuf = NULL;
  917. static char *load_config(const char *arg, void __maybe_unused *unused)
  918. {
  919. json_error_t err;
  920. json_t *config;
  921. char *json_error;
  922. if (!cnfbuf)
  923. cnfbuf = strdup(arg);
  924. if (++include_count > JSON_MAX_DEPTH)
  925. return JSON_MAX_DEPTH_ERR;
  926. #if JANSSON_MAJOR_VERSION > 1
  927. config = json_load_file(arg, 0, &err);
  928. #else
  929. config = json_load_file(arg, &err);
  930. #endif
  931. if (!json_is_object(config)) {
  932. json_error = malloc(JSON_LOAD_ERROR_LEN + strlen(arg));
  933. if (!json_error)
  934. quit(1, "Malloc failure in json error");
  935. sprintf(json_error, JSON_LOAD_ERROR, arg);
  936. return json_error;
  937. }
  938. config_loaded = true;
  939. /* Parse the config now, so we can override it. That can keep pointers
  940. * so don't free config object. */
  941. return parse_config(config, true);
  942. }
  943. static void load_default_config(void)
  944. {
  945. cnfbuf = malloc(PATH_MAX);
  946. #if defined(unix)
  947. if (getenv("HOME") && *getenv("HOME")) {
  948. strcpy(cnfbuf, getenv("HOME"));
  949. strcat(cnfbuf, "/");
  950. }
  951. else
  952. strcpy(cnfbuf, "");
  953. char *dirp = cnfbuf + strlen(cnfbuf);
  954. strcpy(dirp, ".bfgminer/");
  955. strcat(dirp, def_conf);
  956. if (access(cnfbuf, R_OK))
  957. {
  958. // No BFGMiner config, try Cgminer's...
  959. strcpy(dirp, ".cgminer/");
  960. strcat(dirp, def_conf);
  961. }
  962. #else
  963. strcpy(cnfbuf, "");
  964. #endif
  965. strcat(cnfbuf, def_conf);
  966. if (!access(cnfbuf, R_OK))
  967. load_config(cnfbuf, NULL);
  968. else {
  969. free(cnfbuf);
  970. cnfbuf = NULL;
  971. }
  972. }
  973. extern const char *opt_argv0;
  974. static char *opt_verusage_and_exit(const char *extra)
  975. {
  976. printf("%s\nBuilt with "
  977. #ifdef HAVE_OPENCL
  978. "GPU "
  979. #endif
  980. #ifdef WANT_CPUMINE
  981. "CPU "
  982. #endif
  983. #ifdef USE_BITFORCE
  984. "bitforce "
  985. #endif
  986. #ifdef USE_ICARUS
  987. "icarus "
  988. #endif
  989. #ifdef USE_ZTEX
  990. "ztex "
  991. #endif
  992. "mining support.\n"
  993. , packagename);
  994. printf("%s", opt_usage(opt_argv0, extra));
  995. fflush(stdout);
  996. exit(0);
  997. }
  998. /* These options are available from commandline only */
  999. static struct opt_table opt_cmdline_table[] = {
  1000. OPT_WITH_ARG("--config|-c",
  1001. load_config, NULL, NULL,
  1002. "Load a JSON-format configuration file\n"
  1003. "See example.conf for an example configuration."),
  1004. OPT_WITHOUT_ARG("--help|-h",
  1005. opt_verusage_and_exit, NULL,
  1006. "Print this message"),
  1007. #ifdef HAVE_OPENCL
  1008. OPT_WITHOUT_ARG("--ndevs|-n",
  1009. print_ndevs_and_exit, &nDevs,
  1010. "Display number of detected GPUs, OpenCL platform information, and exit"),
  1011. #endif
  1012. OPT_WITHOUT_ARG("--version|-V",
  1013. opt_version_and_exit, packagename,
  1014. "Display version and exit"),
  1015. OPT_ENDTABLE
  1016. };
  1017. static bool jobj_binary(const json_t *obj, const char *key,
  1018. void *buf, size_t buflen, bool required)
  1019. {
  1020. const char *hexstr;
  1021. json_t *tmp;
  1022. tmp = json_object_get(obj, key);
  1023. if (unlikely(!tmp)) {
  1024. if (unlikely(required))
  1025. applog(LOG_ERR, "JSON key '%s' not found", key);
  1026. return false;
  1027. }
  1028. hexstr = json_string_value(tmp);
  1029. if (unlikely(!hexstr)) {
  1030. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  1031. return false;
  1032. }
  1033. if (!hex2bin(buf, hexstr, buflen))
  1034. return false;
  1035. return true;
  1036. }
  1037. static bool work_decode(const json_t *val, struct work *work)
  1038. {
  1039. if (unlikely(!jobj_binary(val, "data", work->data, sizeof(work->data), true))) {
  1040. applog(LOG_ERR, "JSON inval data");
  1041. goto err_out;
  1042. }
  1043. if (likely(!jobj_binary(val, "midstate",
  1044. work->midstate, sizeof(work->midstate), false))) {
  1045. // Calculate it ourselves
  1046. union {
  1047. unsigned char c[64];
  1048. uint32_t i[16];
  1049. } data;
  1050. int swapcounter;
  1051. for (swapcounter = 0; swapcounter < 16; swapcounter++)
  1052. data.i[swapcounter] = swab32(((uint32_t*) (work->data))[swapcounter]);
  1053. sha2_context ctx;
  1054. sha2_starts( &ctx, 0 );
  1055. sha2_update( &ctx, data.c, 64 );
  1056. memcpy(work->midstate, ctx.state, sizeof(work->midstate));
  1057. }
  1058. if (likely(!jobj_binary(val, "hash1", work->hash1, sizeof(work->hash1), false))) {
  1059. // Always the same anyway
  1060. memcpy(work->hash1, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x80\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0", 64);
  1061. }
  1062. if (unlikely(!jobj_binary(val, "target", work->target, sizeof(work->target), true))) {
  1063. applog(LOG_ERR, "JSON inval target");
  1064. goto err_out;
  1065. }
  1066. memset(work->hash, 0, sizeof(work->hash));
  1067. #ifdef __BIG_ENDIAN__
  1068. int swapcounter = 0;
  1069. for (swapcounter = 0; swapcounter < 32; swapcounter++)
  1070. (((uint32_t*) (work->data))[swapcounter]) = swab32(((uint32_t*) (work->data))[swapcounter]);
  1071. for (swapcounter = 0; swapcounter < 16; swapcounter++)
  1072. (((uint32_t*) (work->hash1))[swapcounter]) = swab32(((uint32_t*) (work->hash1))[swapcounter]);
  1073. for (swapcounter = 0; swapcounter < 8; swapcounter++)
  1074. (((uint32_t*) (work->midstate))[swapcounter]) = swab32(((uint32_t*) (work->midstate))[swapcounter]);
  1075. for (swapcounter = 0; swapcounter < 8; swapcounter++)
  1076. (((uint32_t*) (work->target))[swapcounter]) = swab32(((uint32_t*) (work->target))[swapcounter]);
  1077. #endif
  1078. gettimeofday(&work->tv_staged, NULL);
  1079. return true;
  1080. err_out:
  1081. return false;
  1082. }
  1083. int dev_from_id(int thr_id)
  1084. {
  1085. return thr_info[thr_id].cgpu->device_id;
  1086. }
  1087. /* Make the change in the recent value adjust dynamically when the difference
  1088. * is large, but damp it when the values are closer together. This allows the
  1089. * value to change quickly, but not fluctuate too dramatically when it has
  1090. * stabilised. */
  1091. void decay_time(double *f, double fadd)
  1092. {
  1093. double ratio = 0;
  1094. if (likely(*f > 0)) {
  1095. ratio = fadd / *f;
  1096. if (ratio > 1)
  1097. ratio = 1 / ratio;
  1098. }
  1099. if (ratio > 0.63)
  1100. *f = (fadd * 0.58 + *f) / 1.58;
  1101. else
  1102. *f = (fadd + *f * 0.58) / 1.58;
  1103. }
  1104. static int requests_staged(void)
  1105. {
  1106. int ret;
  1107. mutex_lock(stgd_lock);
  1108. ret = HASH_COUNT(staged_work);
  1109. mutex_unlock(stgd_lock);
  1110. return ret;
  1111. }
  1112. #ifdef HAVE_CURSES
  1113. WINDOW *mainwin, *statuswin, *logwin;
  1114. #endif
  1115. double total_secs = 0.1;
  1116. static char statusline[256];
  1117. /* logstart is where the log window should start */
  1118. static int devcursor, logstart, logcursor;
  1119. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  1120. static int statusy;
  1121. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  1122. struct cgpu_info *cpus;
  1123. #ifdef HAVE_CURSES
  1124. static inline void unlock_curses(void)
  1125. {
  1126. mutex_unlock(&curses_lock);
  1127. }
  1128. static inline void lock_curses(void)
  1129. {
  1130. mutex_lock(&curses_lock);
  1131. }
  1132. static bool curses_active_locked(void)
  1133. {
  1134. bool ret;
  1135. lock_curses();
  1136. ret = curses_active;
  1137. if (!ret)
  1138. unlock_curses();
  1139. return ret;
  1140. }
  1141. #endif
  1142. void tailsprintf(char *f, const char *fmt, ...)
  1143. {
  1144. va_list ap;
  1145. va_start(ap, fmt);
  1146. vsprintf(f + strlen(f), fmt, ap);
  1147. va_end(ap);
  1148. }
  1149. static void get_statline(char *buf, struct cgpu_info *cgpu)
  1150. {
  1151. sprintf(buf, "%s%d ", cgpu->api->name, cgpu->device_id);
  1152. if (cgpu->api->get_statline_before)
  1153. cgpu->api->get_statline_before(buf, cgpu);
  1154. else
  1155. tailsprintf(buf, " | ");
  1156. tailsprintf(buf, "(%ds):%.1f (avg):%.1f Mh/s | A:%d R:%d HW:%d U:%.2f/m",
  1157. opt_log_interval,
  1158. cgpu->rolling,
  1159. cgpu->total_mhashes / total_secs,
  1160. cgpu->accepted,
  1161. cgpu->rejected,
  1162. cgpu->hw_errors,
  1163. cgpu->utility);
  1164. if (cgpu->api->get_statline)
  1165. cgpu->api->get_statline(buf, cgpu);
  1166. }
  1167. static void text_print_status(int thr_id)
  1168. {
  1169. struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
  1170. char logline[255];
  1171. if (cgpu) {
  1172. get_statline(logline, cgpu);
  1173. printf("%s\n", logline);
  1174. }
  1175. }
  1176. #ifdef HAVE_CURSES
  1177. /* Must be called with curses mutex lock held and curses_active */
  1178. static void curses_print_status(void)
  1179. {
  1180. struct pool *pool = current_pool();
  1181. wattron(statuswin, A_BOLD);
  1182. mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  1183. #ifdef WANT_CPUMINE
  1184. if (opt_n_threads)
  1185. wprintw(statuswin, " CPU Algo: %s", algo_names[opt_algo]);
  1186. #endif
  1187. wattroff(statuswin, A_BOLD);
  1188. mvwhline(statuswin, 1, 0, '-', 80);
  1189. mvwprintw(statuswin, 2, 0, " %s", statusline);
  1190. wclrtoeol(statuswin);
  1191. mvwprintw(statuswin, 3, 0, " TQ: %d ST: %d SS: %d DW: %d NB: %d LW: %d GF: %d RF: %d",
  1192. total_queued, requests_staged(), total_stale, total_discarded, new_blocks,
  1193. local_work, total_go, total_ro);
  1194. wclrtoeol(statuswin);
  1195. if (pool_strategy == POOL_LOADBALANCE && total_pools > 1)
  1196. mvwprintw(statuswin, 4, 0, " Connected to multiple pools with%s LP",
  1197. have_longpoll ? "": "out");
  1198. else
  1199. mvwprintw(statuswin, 4, 0, " Connected to %s with%s LP as user %s",
  1200. pool->rpc_url, have_longpoll ? "": "out", pool->rpc_user);
  1201. wclrtoeol(statuswin);
  1202. mvwprintw(statuswin, 5, 0, " Block: %s... Started: %s", current_hash, blocktime);
  1203. mvwhline(statuswin, 6, 0, '-', 80);
  1204. mvwhline(statuswin, statusy - 1, 0, '-', 80);
  1205. mvwprintw(statuswin, devcursor - 1, 1, "[P]ool management %s[S]ettings [D]isplay options [Q]uit",
  1206. have_opencl ? "[G]PU management " : "");
  1207. }
  1208. static void adj_width(int var, int *length)
  1209. {
  1210. if ((int)(log10(var) + 1) > *length)
  1211. (*length)++;
  1212. }
  1213. static void curses_print_devstatus(int thr_id)
  1214. {
  1215. static int awidth = 1, rwidth = 1, hwwidth = 1, uwidth = 1;
  1216. struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
  1217. char logline[255];
  1218. cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
  1219. /* Check this isn't out of the window size */
  1220. if (wmove(statuswin,devcursor + cgpu->cgminer_id, 0) == ERR)
  1221. return;
  1222. wprintw(statuswin, " %s %d: ", cgpu->api->name, cgpu->device_id);
  1223. if (cgpu->api->get_statline_before) {
  1224. logline[0] = '\0';
  1225. cgpu->api->get_statline_before(logline, cgpu);
  1226. wprintw(statuswin, "%s", logline);
  1227. }
  1228. else
  1229. wprintw(statuswin, " | ");
  1230. if (cgpu->status == LIFE_DEAD)
  1231. wprintw(statuswin, "DEAD ");
  1232. else if (cgpu->status == LIFE_SICK)
  1233. wprintw(statuswin, "SICK ");
  1234. else if (cgpu->deven == DEV_DISABLED)
  1235. wprintw(statuswin, "OFF ");
  1236. else if (cgpu->deven == DEV_RECOVER)
  1237. wprintw(statuswin, "REST ");
  1238. else
  1239. wprintw(statuswin, "%5.1f", cgpu->rolling);
  1240. adj_width(cgpu->accepted, &awidth);
  1241. adj_width(cgpu->rejected, &rwidth);
  1242. adj_width(cgpu->hw_errors, &hwwidth);
  1243. adj_width(cgpu->utility, &uwidth);
  1244. wprintw(statuswin, "/%5.1fMh/s | A:%*d R:%*d HW:%*d U:%*.2f/m",
  1245. cgpu->total_mhashes / total_secs,
  1246. awidth, cgpu->accepted,
  1247. rwidth, cgpu->rejected,
  1248. hwwidth, cgpu->hw_errors,
  1249. uwidth + 3, cgpu->utility);
  1250. if (cgpu->api->get_statline) {
  1251. logline[0] = '\0';
  1252. cgpu->api->get_statline(logline, cgpu);
  1253. wprintw(statuswin, "%s", logline);
  1254. }
  1255. wclrtoeol(statuswin);
  1256. }
  1257. #endif
  1258. static void print_status(int thr_id)
  1259. {
  1260. if (!curses_active)
  1261. text_print_status(thr_id);
  1262. }
  1263. #ifdef HAVE_CURSES
  1264. /* Check for window resize. Called with curses mutex locked */
  1265. static inline bool change_logwinsize(void)
  1266. {
  1267. int x, y, logx, logy;
  1268. bool ret = false;
  1269. getmaxyx(mainwin, y, x);
  1270. if (x < 80 || y < 25)
  1271. return ret;
  1272. if (y > statusy + 2 && statusy < logstart) {
  1273. if (y - 2 < logstart)
  1274. statusy = y - 2;
  1275. else
  1276. statusy = logstart;
  1277. logcursor = statusy + 1;
  1278. mvwin(logwin, logcursor, 0);
  1279. wresize(statuswin, statusy, x);
  1280. ret = true;
  1281. }
  1282. y -= logcursor;
  1283. getmaxyx(logwin, logy, logx);
  1284. /* Detect screen size change */
  1285. if (x != logx || y != logy) {
  1286. wresize(logwin, y, x);
  1287. ret = true;
  1288. }
  1289. return ret;
  1290. }
  1291. static void check_winsizes(void)
  1292. {
  1293. if (!use_curses)
  1294. return;
  1295. if (curses_active_locked()) {
  1296. int y, x;
  1297. x = getmaxx(statuswin);
  1298. if (logstart > LINES - 2)
  1299. statusy = LINES - 2;
  1300. else
  1301. statusy = logstart;
  1302. logcursor = statusy + 1;
  1303. wresize(statuswin, statusy, x);
  1304. getmaxyx(mainwin, y, x);
  1305. y -= logcursor;
  1306. wresize(logwin, y, x);
  1307. mvwin(logwin, logcursor, 0);
  1308. unlock_curses();
  1309. }
  1310. }
  1311. /* For mandatory printing when mutex is already locked */
  1312. void wlog(const char *f, ...)
  1313. {
  1314. va_list ap;
  1315. va_start(ap, f);
  1316. vw_printw(logwin, f, ap);
  1317. va_end(ap);
  1318. }
  1319. /* Mandatory printing */
  1320. void wlogprint(const char *f, ...)
  1321. {
  1322. va_list ap;
  1323. if (curses_active_locked()) {
  1324. va_start(ap, f);
  1325. vw_printw(logwin, f, ap);
  1326. va_end(ap);
  1327. unlock_curses();
  1328. }
  1329. }
  1330. #endif
  1331. #ifdef HAVE_CURSES
  1332. void log_curses(int prio, const char *f, va_list ap)
  1333. {
  1334. bool high_prio;
  1335. if (opt_quiet && prio != LOG_ERR)
  1336. return;
  1337. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  1338. if (curses_active_locked()) {
  1339. if (!opt_loginput || high_prio) {
  1340. vw_printw(logwin, f, ap);
  1341. if (high_prio) {
  1342. touchwin(logwin);
  1343. wrefresh(logwin);
  1344. }
  1345. }
  1346. unlock_curses();
  1347. } else
  1348. vprintf(f, ap);
  1349. }
  1350. void clear_logwin(void)
  1351. {
  1352. if (curses_active_locked()) {
  1353. wclear(logwin);
  1354. unlock_curses();
  1355. }
  1356. }
  1357. #endif
  1358. /* regenerate the full work->hash value and also return true if it's a block */
  1359. bool regeneratehash(const struct work *work)
  1360. {
  1361. uint32_t *data32 = (uint32_t *)(work->data);
  1362. unsigned char swap[128];
  1363. uint32_t *swap32 = (uint32_t *)swap;
  1364. unsigned char hash1[32];
  1365. uint32_t *hash32 = (uint32_t *)(work->hash);
  1366. uint32_t difficulty = 0;
  1367. uint32_t diffbytes = 0;
  1368. uint32_t diffvalue = 0;
  1369. uint32_t diffcmp[8];
  1370. int diffshift = 0;
  1371. int i;
  1372. for (i = 0; i < 80 / 4; i++)
  1373. swap32[i] = swab32(data32[i]);
  1374. sha2(swap, 80, hash1, false);
  1375. sha2(hash1, 32, (unsigned char *)(work->hash), false);
  1376. difficulty = swab32(*((uint32_t *)(work->data + 72)));
  1377. diffbytes = ((difficulty >> 24) & 0xff) - 3;
  1378. diffvalue = difficulty & 0x00ffffff;
  1379. diffshift = (diffbytes % 4) * 8;
  1380. if (diffshift == 0) {
  1381. diffshift = 32;
  1382. diffbytes--;
  1383. }
  1384. memset(diffcmp, 0, 32);
  1385. diffcmp[(diffbytes >> 2) + 1] = diffvalue >> (32 - diffshift);
  1386. diffcmp[diffbytes >> 2] = diffvalue << diffshift;
  1387. for (i = 7; i >= 0; i--) {
  1388. if (hash32[i] > diffcmp[i])
  1389. return false;
  1390. if (hash32[i] < diffcmp[i])
  1391. return true;
  1392. }
  1393. // https://en.bitcoin.it/wiki/Block says: "numerically below"
  1394. // https://en.bitcoin.it/wiki/Target says: "lower than or equal to"
  1395. // code in bitcoind 0.3.24 main.cpp CheckWork() says: if (hash > hashTarget) return false;
  1396. if (hash32[0] == diffcmp[0])
  1397. return true;
  1398. else
  1399. return false;
  1400. }
  1401. static bool submit_upstream_work(const struct work *work)
  1402. {
  1403. char *hexstr = NULL;
  1404. json_t *val, *res;
  1405. char s[345], sd[345];
  1406. bool rc = false;
  1407. int thr_id = work->thr_id;
  1408. struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
  1409. CURL *curl = curl_easy_init();
  1410. struct pool *pool = work->pool;
  1411. bool rolltime;
  1412. uint32_t *hash32;
  1413. char hashshow[64+1] = "";
  1414. bool isblock;
  1415. if (unlikely(!curl)) {
  1416. applog(LOG_ERR, "CURL initialisation failed");
  1417. return rc;
  1418. }
  1419. #ifdef __BIG_ENDIAN__
  1420. int swapcounter = 0;
  1421. for (swapcounter = 0; swapcounter < 32; swapcounter++)
  1422. (((uint32_t*) (work->data))[swapcounter]) = swab32(((uint32_t*) (work->data))[swapcounter]);
  1423. #endif
  1424. /* build hex string */
  1425. hexstr = bin2hex(work->data, sizeof(work->data));
  1426. if (unlikely(!hexstr)) {
  1427. applog(LOG_ERR, "submit_upstream_work OOM");
  1428. goto out_nofree;
  1429. }
  1430. /* build JSON-RPC request */
  1431. sprintf(s,
  1432. "{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}\r\n",
  1433. hexstr);
  1434. sprintf(sd,
  1435. "{\"method\": \"getwork\", \"params\": [ \"%s\" ], \"id\":1}",
  1436. hexstr);
  1437. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  1438. /* Force a fresh connection in case there are dead persistent
  1439. * connections to this pool */
  1440. if (pool_isset(pool, &pool->submit_fail))
  1441. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  1442. /* issue JSON-RPC request */
  1443. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, s, false, false, &rolltime, pool, true);
  1444. if (unlikely(!val)) {
  1445. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  1446. if (!pool_tset(pool, &pool->submit_fail)) {
  1447. total_ro++;
  1448. pool->remotefail_occasions++;
  1449. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  1450. }
  1451. goto out;
  1452. } else if (pool_tclear(pool, &pool->submit_fail))
  1453. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  1454. res = json_object_get(val, "result");
  1455. if (!QUIET) {
  1456. #ifndef MIPSEB
  1457. // This one segfaults on my router for some reason
  1458. isblock = regeneratehash(work);
  1459. if (isblock)
  1460. found_blocks++;
  1461. hash32 = (uint32_t *)(work->hash);
  1462. sprintf(hashshow, "%08lx.%08lx.%08lx%s",
  1463. (unsigned long)(hash32[7]), (unsigned long)(hash32[6]), (unsigned long)(hash32[5]),
  1464. isblock ? " BLOCK!" : "");
  1465. #endif
  1466. }
  1467. /* Theoretically threads could race when modifying accepted and
  1468. * rejected values but the chance of two submits completing at the
  1469. * same time is zero so there is no point adding extra locking */
  1470. if (json_is_true(res)) {
  1471. cgpu->accepted++;
  1472. total_accepted++;
  1473. pool->accepted++;
  1474. cgpu->last_share_pool = pool->pool_no;
  1475. cgpu->last_share_pool_time = time(NULL);
  1476. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  1477. if (!QUIET) {
  1478. if (total_pools > 1)
  1479. applog(LOG_NOTICE, "Accepted %s %s %d thread %d pool %d",
  1480. hashshow, cgpu->api->name, cgpu->device_id, thr_id, work->pool->pool_no);
  1481. else
  1482. applog(LOG_NOTICE, "Accepted %s %s %d thread %d",
  1483. hashshow, cgpu->api->name, cgpu->device_id, thr_id);
  1484. }
  1485. sharelog("accept", work);
  1486. if (opt_shares && total_accepted >= opt_shares) {
  1487. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  1488. kill_work();
  1489. goto out;
  1490. }
  1491. } else {
  1492. cgpu->rejected++;
  1493. total_rejected++;
  1494. pool->rejected++;
  1495. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  1496. if (!QUIET) {
  1497. char where[17];
  1498. char disposition[36] = "reject";
  1499. char reason[32];
  1500. if (total_pools > 1)
  1501. sprintf(where, " pool %d", work->pool->pool_no);
  1502. else
  1503. strcpy(where, "");
  1504. res = json_object_get(val, "reject-reason");
  1505. if (res) {
  1506. const char *reasontmp = json_string_value(res);
  1507. size_t reasonLen = strlen(reasontmp);
  1508. if (reasonLen > 28)
  1509. reasonLen = 28;
  1510. reason[0] = ' '; reason[1] = '(';
  1511. memcpy(2 + reason, reasontmp, reasonLen);
  1512. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  1513. memcpy(disposition + 7, reasontmp, reasonLen);
  1514. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  1515. } else
  1516. strcpy(reason, "");
  1517. applog(LOG_NOTICE, "Rejected %s %s %d thread %d%s%s",
  1518. hashshow, cgpu->api->name, cgpu->device_id, thr_id, where, reason);
  1519. sharelog(disposition, work);
  1520. }
  1521. }
  1522. cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
  1523. if (!opt_realquiet)
  1524. print_status(thr_id);
  1525. if (!want_per_device_stats) {
  1526. char logline[255];
  1527. get_statline(logline, cgpu);
  1528. applog(LOG_INFO, "%s", logline);
  1529. }
  1530. json_decref(val);
  1531. rc = true;
  1532. out:
  1533. free(hexstr);
  1534. out_nofree:
  1535. curl_easy_cleanup(curl);
  1536. return rc;
  1537. }
  1538. static const char *rpc_req =
  1539. "{\"method\": \"getwork\", \"params\": [], \"id\":0}\r\n";
  1540. /* Select any active pool in a rotating fashion when loadbalance is chosen */
  1541. static inline struct pool *select_pool(bool lagging)
  1542. {
  1543. static int rotating_pool = 0;
  1544. struct pool *pool, *cp;
  1545. cp = current_pool();
  1546. if (pool_strategy != POOL_LOADBALANCE && !lagging)
  1547. pool = cp;
  1548. else
  1549. pool = NULL;
  1550. while (!pool) {
  1551. if (++rotating_pool >= total_pools)
  1552. rotating_pool = 0;
  1553. pool = pools[rotating_pool];
  1554. if ((!pool->idle && pool->enabled) || pool == cp)
  1555. break;
  1556. pool = NULL;
  1557. }
  1558. return pool;
  1559. }
  1560. static void get_benchmark_work(struct work *work)
  1561. {
  1562. // Use a random work block pulled from a pool
  1563. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  1564. size_t bench_size = sizeof(work);
  1565. size_t work_size = sizeof(bench_block);
  1566. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  1567. memset(work, 0, sizeof(work));
  1568. memcpy(work, &bench_block, min_size);
  1569. }
  1570. static bool get_upstream_work(struct work *work, bool lagging)
  1571. {
  1572. bool rc = false, req_longpoll = false;
  1573. struct pool *pool;
  1574. json_t *val = NULL;
  1575. int retries = 0;
  1576. CURL *curl;
  1577. char *url;
  1578. curl = curl_easy_init();
  1579. if (unlikely(!curl)) {
  1580. applog(LOG_ERR, "CURL initialisation failed");
  1581. return rc;
  1582. }
  1583. pool = select_pool(lagging);
  1584. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  1585. url = pool->rpc_url;
  1586. /* If this is the current pool and supports longpoll but has not sent
  1587. * a longpoll, send one now */
  1588. if (unlikely(want_longpoll && !pool->is_lp && pool == current_pool() &&
  1589. pool->hdr_path && !pool_tset(pool, &pool->lp_sent))) {
  1590. req_longpoll = true;
  1591. url = pool->lp_url;
  1592. }
  1593. retry:
  1594. /* A single failure response here might be reported as a dead pool and
  1595. * there may be temporary denied messages etc. falsely reporting
  1596. * failure so retry a few times before giving up */
  1597. while (!val && retries++ < 3) {
  1598. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req,
  1599. false, req_longpoll, &work->rolltime, pool, false);
  1600. }
  1601. if (unlikely(!val)) {
  1602. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  1603. goto out;
  1604. }
  1605. rc = work_decode(json_object_get(val, "result"), work);
  1606. if (!rc && retries < 3) {
  1607. /* Force a fresh connection in case there are dead persistent
  1608. * connections */
  1609. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  1610. goto retry;
  1611. }
  1612. work->pool = pool;
  1613. work->longpoll = req_longpoll;
  1614. total_getworks++;
  1615. pool->getwork_requested++;
  1616. json_decref(val);
  1617. out:
  1618. curl_easy_cleanup(curl);
  1619. return rc;
  1620. }
  1621. static struct work *make_work(void)
  1622. {
  1623. struct work *work = calloc(1, sizeof(struct work));
  1624. if (unlikely(!work))
  1625. quit(1, "Failed to calloc work in make_work");
  1626. work->id = total_work++;
  1627. return work;
  1628. }
  1629. static void free_work(struct work *work)
  1630. {
  1631. free(work);
  1632. }
  1633. static void workio_cmd_free(struct workio_cmd *wc)
  1634. {
  1635. if (!wc)
  1636. return;
  1637. switch (wc->cmd) {
  1638. case WC_SUBMIT_WORK:
  1639. free_work(wc->u.work);
  1640. break;
  1641. default: /* do nothing */
  1642. break;
  1643. }
  1644. memset(wc, 0, sizeof(*wc)); /* poison */
  1645. free(wc);
  1646. }
  1647. #ifdef HAVE_CURSES
  1648. static void disable_curses(void)
  1649. {
  1650. if (curses_active_locked()) {
  1651. curses_active = false;
  1652. leaveok(logwin, false);
  1653. leaveok(statuswin, false);
  1654. leaveok(mainwin, false);
  1655. nocbreak();
  1656. echo();
  1657. delwin(logwin);
  1658. delwin(statuswin);
  1659. delwin(mainwin);
  1660. endwin();
  1661. #ifdef WIN32
  1662. // Move the cursor to after curses output.
  1663. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  1664. CONSOLE_SCREEN_BUFFER_INFO csbi;
  1665. COORD coord;
  1666. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  1667. coord.X = 0;
  1668. coord.Y = csbi.dwSize.Y - 1;
  1669. SetConsoleCursorPosition(hout, coord);
  1670. }
  1671. #endif
  1672. unlock_curses();
  1673. }
  1674. }
  1675. #endif
  1676. static void print_summary(void);
  1677. static void __kill_work(void)
  1678. {
  1679. struct thr_info *thr;
  1680. int i;
  1681. applog(LOG_INFO, "Received kill message");
  1682. applog(LOG_DEBUG, "Killing off watchpool thread");
  1683. /* Kill the watchpool thread */
  1684. thr = &thr_info[watchpool_thr_id];
  1685. thr_info_cancel(thr);
  1686. applog(LOG_DEBUG, "Killing off watchdog thread");
  1687. /* Kill the watchdog thread */
  1688. thr = &thr_info[watchdog_thr_id];
  1689. thr_info_cancel(thr);
  1690. applog(LOG_DEBUG, "Stopping mining threads");
  1691. /* Stop the mining threads*/
  1692. for (i = 0; i < mining_threads; i++) {
  1693. thr = &thr_info[i];
  1694. thr_info_freeze(thr);
  1695. thr->pause = true;
  1696. }
  1697. sleep(1);
  1698. applog(LOG_DEBUG, "Killing off mining threads");
  1699. /* Kill the mining threads*/
  1700. for (i = 0; i < mining_threads; i++) {
  1701. thr = &thr_info[i];
  1702. thr_info_cancel(thr);
  1703. }
  1704. applog(LOG_DEBUG, "Killing off stage thread");
  1705. /* Stop the others */
  1706. thr = &thr_info[stage_thr_id];
  1707. thr_info_cancel(thr);
  1708. applog(LOG_DEBUG, "Killing off longpoll thread");
  1709. thr = &thr_info[longpoll_thr_id];
  1710. if (have_longpoll)
  1711. thr_info_cancel(thr);
  1712. applog(LOG_DEBUG, "Killing off API thread");
  1713. thr = &thr_info[api_thr_id];
  1714. thr_info_cancel(thr);
  1715. }
  1716. /* This should be the common exit path */
  1717. void kill_work(void)
  1718. {
  1719. __kill_work();
  1720. quit(0, "Shutdown signal received.");
  1721. }
  1722. static
  1723. #ifdef WIN32
  1724. const
  1725. #endif
  1726. char **initial_args;
  1727. static void clean_up(void);
  1728. void app_restart(void)
  1729. {
  1730. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  1731. __kill_work();
  1732. clean_up();
  1733. #if defined(unix)
  1734. if (forkpid > 0) {
  1735. kill(forkpid, SIGTERM);
  1736. forkpid = 0;
  1737. }
  1738. #endif
  1739. execv(initial_args[0], initial_args);
  1740. applog(LOG_WARNING, "Failed to restart application");
  1741. }
  1742. static void sighandler(int __maybe_unused sig)
  1743. {
  1744. /* Restore signal handlers so we can still quit if kill_work fails */
  1745. sigaction(SIGTERM, &termhandler, NULL);
  1746. sigaction(SIGINT, &inthandler, NULL);
  1747. kill_work();
  1748. }
  1749. static void *get_work_thread(void *userdata)
  1750. {
  1751. struct workio_cmd *wc = (struct workio_cmd *)userdata;
  1752. struct work *ret_work;
  1753. int failures = 0;
  1754. pthread_detach(pthread_self());
  1755. ret_work = make_work();
  1756. if (wc->thr)
  1757. ret_work->thr = wc->thr;
  1758. else
  1759. ret_work->thr = NULL;
  1760. /* obtain new work from bitcoin via JSON-RPC */
  1761. while (!get_upstream_work(ret_work, wc->lagging)) {
  1762. if (unlikely((opt_retries >= 0) && (++failures > opt_retries))) {
  1763. applog(LOG_ERR, "json_rpc_call failed, terminating workio thread");
  1764. free_work(ret_work);
  1765. kill_work();
  1766. goto out;
  1767. }
  1768. /* pause, then restart work-request loop */
  1769. applog(LOG_DEBUG, "json_rpc_call failed on get work, retry after %d seconds",
  1770. fail_pause);
  1771. sleep(fail_pause);
  1772. fail_pause += opt_fail_pause;
  1773. }
  1774. fail_pause = opt_fail_pause;
  1775. applog(LOG_DEBUG, "Pushing work to requesting thread");
  1776. /* send work to requesting thread */
  1777. if (unlikely(!tq_push(thr_info[stage_thr_id].q, ret_work))) {
  1778. applog(LOG_ERR, "Failed to tq_push work in workio_get_work");
  1779. kill_work();
  1780. free_work(ret_work);
  1781. }
  1782. out:
  1783. workio_cmd_free(wc);
  1784. return NULL;
  1785. }
  1786. static bool workio_get_work(struct workio_cmd *wc)
  1787. {
  1788. pthread_t get_thread;
  1789. if (unlikely(pthread_create(&get_thread, NULL, get_work_thread, (void *)wc))) {
  1790. applog(LOG_ERR, "Failed to create get_work_thread");
  1791. return false;
  1792. }
  1793. return true;
  1794. }
  1795. static bool stale_work(struct work *work, bool share)
  1796. {
  1797. struct timeval now;
  1798. if (opt_benchmark)
  1799. return false;
  1800. gettimeofday(&now, NULL);
  1801. if (share) {
  1802. if ((now.tv_sec - work->tv_staged.tv_sec) >= opt_expiry)
  1803. return true;
  1804. } else if ((now.tv_sec - work->tv_staged.tv_sec) >= opt_scantime)
  1805. return true;
  1806. if (work->work_block != work_block)
  1807. return true;
  1808. if (opt_fail_only && !share && work->pool != current_pool())
  1809. return true;
  1810. return false;
  1811. }
  1812. static void *submit_work_thread(void *userdata)
  1813. {
  1814. struct workio_cmd *wc = (struct workio_cmd *)userdata;
  1815. struct work *work = wc->u.work;
  1816. struct pool *pool = work->pool;
  1817. int failures = 0;
  1818. pthread_detach(pthread_self());
  1819. if (stale_work(work, true)) {
  1820. if (opt_submit_stale)
  1821. applog(LOG_NOTICE, "Stale share detected, submitting as user requested");
  1822. else if (pool->submit_old)
  1823. applog(LOG_NOTICE, "Stale share detected, submitting as pool requested");
  1824. else {
  1825. applog(LOG_NOTICE, "Stale share detected, discarding");
  1826. sharelog("discard", work);
  1827. total_stale++;
  1828. pool->stale_shares++;
  1829. goto out;
  1830. }
  1831. }
  1832. /* submit solution to bitcoin via JSON-RPC */
  1833. while (!submit_upstream_work(work)) {
  1834. if (!opt_submit_stale && stale_work(work, true)) {
  1835. applog(LOG_NOTICE, "Stale share detected, discarding");
  1836. total_stale++;
  1837. pool->stale_shares++;
  1838. break;
  1839. }
  1840. if (unlikely((opt_retries >= 0) && (++failures > opt_retries))) {
  1841. applog(LOG_ERR, "Failed %d retries ...terminating workio thread", opt_retries);
  1842. kill_work();
  1843. break;
  1844. }
  1845. /* pause, then restart work-request loop */
  1846. applog(LOG_INFO, "json_rpc_call failed on submit_work, retry after %d seconds",
  1847. fail_pause);
  1848. sleep(fail_pause);
  1849. fail_pause += opt_fail_pause;
  1850. }
  1851. fail_pause = opt_fail_pause;
  1852. out:
  1853. workio_cmd_free(wc);
  1854. return NULL;
  1855. }
  1856. static bool workio_submit_work(struct workio_cmd *wc)
  1857. {
  1858. pthread_t submit_thread;
  1859. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, (void *)wc))) {
  1860. applog(LOG_ERR, "Failed to create submit_work_thread");
  1861. return false;
  1862. }
  1863. return true;
  1864. }
  1865. /* Find the pool that currently has the highest priority */
  1866. static struct pool *priority_pool(int choice)
  1867. {
  1868. struct pool *ret = NULL;
  1869. int i;
  1870. for (i = 0; i < total_pools; i++) {
  1871. struct pool *pool = pools[i];
  1872. if (pool->prio == choice) {
  1873. ret = pool;
  1874. break;
  1875. }
  1876. }
  1877. if (unlikely(!ret)) {
  1878. applog(LOG_ERR, "WTF No pool %d found!", choice);
  1879. return pools[choice];
  1880. }
  1881. return ret;
  1882. }
  1883. void switch_pools(struct pool *selected)
  1884. {
  1885. struct pool *pool, *last_pool;
  1886. int i, pool_no;
  1887. mutex_lock(&control_lock);
  1888. last_pool = currentpool;
  1889. pool_no = currentpool->pool_no;
  1890. /* Switch selected to pool number 0 and move the rest down */
  1891. if (selected) {
  1892. if (selected->prio != 0) {
  1893. for (i = 0; i < total_pools; i++) {
  1894. pool = pools[i];
  1895. if (pool->prio < selected->prio)
  1896. pool->prio++;
  1897. }
  1898. selected->prio = 0;
  1899. }
  1900. }
  1901. switch (pool_strategy) {
  1902. /* Both of these set to the master pool */
  1903. case POOL_FAILOVER:
  1904. case POOL_LOADBALANCE:
  1905. for (i = 0; i < total_pools; i++) {
  1906. pool = priority_pool(i);
  1907. if (!pool->idle && pool->enabled) {
  1908. pool_no = pool->pool_no;
  1909. break;
  1910. }
  1911. }
  1912. break;
  1913. /* Both of these simply increment and cycle */
  1914. case POOL_ROUNDROBIN:
  1915. case POOL_ROTATE:
  1916. if (selected) {
  1917. pool_no = selected->pool_no;
  1918. break;
  1919. }
  1920. pool_no++;
  1921. if (pool_no >= total_pools)
  1922. pool_no = 0;
  1923. break;
  1924. default:
  1925. break;
  1926. }
  1927. currentpool = pools[pool_no];
  1928. pool = currentpool;
  1929. mutex_unlock(&control_lock);
  1930. if (pool != last_pool)
  1931. applog(LOG_WARNING, "Switching to %s", pool->rpc_url);
  1932. /* Reset the queued amount to allow more to be queued for the new pool */
  1933. mutex_lock(&qd_lock);
  1934. total_queued = 0;
  1935. mutex_unlock(&qd_lock);
  1936. }
  1937. static void discard_work(struct work *work)
  1938. {
  1939. if (!work->clone && !work->rolls && !work->mined) {
  1940. if (work->pool)
  1941. work->pool->discarded_work++;
  1942. total_discarded++;
  1943. applog(LOG_DEBUG, "Discarded work");
  1944. } else
  1945. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  1946. free_work(work);
  1947. }
  1948. /* This is overkill, but at least we'll know accurately how much work is
  1949. * queued to prevent ever being left without work */
  1950. static void inc_queued(void)
  1951. {
  1952. mutex_lock(&qd_lock);
  1953. total_queued++;
  1954. mutex_unlock(&qd_lock);
  1955. }
  1956. static void dec_queued(void)
  1957. {
  1958. mutex_lock(&qd_lock);
  1959. if (total_queued > 0)
  1960. total_queued--;
  1961. mutex_unlock(&qd_lock);
  1962. }
  1963. static int requests_queued(void)
  1964. {
  1965. int ret;
  1966. mutex_lock(&qd_lock);
  1967. ret = total_queued;
  1968. mutex_unlock(&qd_lock);
  1969. return ret;
  1970. }
  1971. static int discard_stale(void)
  1972. {
  1973. struct work *work, *tmp;
  1974. int i, stale = 0;
  1975. mutex_lock(stgd_lock);
  1976. HASH_ITER(hh, staged_work, work, tmp) {
  1977. if (stale_work(work, false)) {
  1978. HASH_DEL(staged_work, work);
  1979. if (work->clone || work->longpoll)
  1980. --staged_extras;
  1981. discard_work(work);
  1982. stale++;
  1983. }
  1984. }
  1985. mutex_unlock(stgd_lock);
  1986. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  1987. /* Dec queued outside the loop to not have recursive locks */
  1988. for (i = 0; i < stale; i++)
  1989. dec_queued();
  1990. return stale;
  1991. }
  1992. static bool queue_request(struct thr_info *thr, bool needed);
  1993. static void restart_threads(void)
  1994. {
  1995. int i, stale;
  1996. /* Discard staged work that is now stale */
  1997. stale = discard_stale();
  1998. for (i = 0; i < stale; i++)
  1999. queue_request(NULL, true);
  2000. for (i = 0; i < mining_threads; i++)
  2001. work_restart[i].restart = 1;
  2002. }
  2003. static void set_curblock(char *hexstr, unsigned char *hash)
  2004. {
  2005. unsigned char hash_swap[32];
  2006. char *old_hash = NULL;
  2007. struct timeval tv_now;
  2008. /* Don't free current_hash directly to avoid dereferencing it when
  2009. * we might be accessing its data elsewhere */
  2010. if (current_hash)
  2011. old_hash = current_hash;
  2012. strcpy(current_block, hexstr);
  2013. gettimeofday(&tv_now, NULL);
  2014. get_timestamp(blocktime, &tv_now);
  2015. swap256(hash_swap, hash);
  2016. current_hash = bin2hex(hash_swap, 16);
  2017. if (unlikely(!current_hash))
  2018. quit (1, "set_curblock OOM");
  2019. applog(LOG_INFO, "New block: %s...", current_hash);
  2020. if (old_hash)
  2021. free(old_hash);
  2022. }
  2023. /* Search to see if this string is from a block that has been seen before */
  2024. static bool block_exists(char *hexstr)
  2025. {
  2026. struct block *s;
  2027. rd_lock(&blk_lock);
  2028. HASH_FIND_STR(blocks, hexstr, s);
  2029. rd_unlock(&blk_lock);
  2030. if (s)
  2031. return true;
  2032. return false;
  2033. }
  2034. /* Tests if this work is from a block that has been seen before */
  2035. static inline bool from_existing_block(struct work *work)
  2036. {
  2037. char *hexstr = bin2hex(work->data, 18);
  2038. bool ret;
  2039. if (unlikely(!hexstr)) {
  2040. applog(LOG_ERR, "from_existing_block OOM");
  2041. return true;
  2042. }
  2043. ret = block_exists(hexstr);
  2044. free(hexstr);
  2045. return ret;
  2046. }
  2047. static void test_work_current(struct work *work)
  2048. {
  2049. char *hexstr;
  2050. if (opt_benchmark)
  2051. return;
  2052. hexstr = bin2hex(work->data, 18);
  2053. if (unlikely(!hexstr)) {
  2054. applog(LOG_ERR, "stage_thread OOM");
  2055. return;
  2056. }
  2057. /* Search to see if this block exists yet and if not, consider it a
  2058. * new block and set the current block details to this one */
  2059. if (!block_exists(hexstr)) {
  2060. struct block *s = calloc(sizeof(struct block), 1);
  2061. if (unlikely(!s))
  2062. quit (1, "test_work_current OOM");
  2063. strcpy(s->hash, hexstr);
  2064. wr_lock(&blk_lock);
  2065. HASH_ADD_STR(blocks, hash, s);
  2066. wr_unlock(&blk_lock);
  2067. set_curblock(hexstr, work->data);
  2068. if (unlikely(++new_blocks == 1))
  2069. goto out_free;
  2070. work_block++;
  2071. if (work->longpoll) {
  2072. applog(LOG_NOTICE, "LONGPOLL detected new block on network, waiting on fresh work");
  2073. work->longpoll = false;
  2074. } else if (have_longpoll)
  2075. applog(LOG_NOTICE, "New block detected on network before longpoll, waiting on fresh work");
  2076. else
  2077. applog(LOG_NOTICE, "New block detected on network, waiting on fresh work");
  2078. restart_threads();
  2079. } else if (work->longpoll) {
  2080. work->longpoll = false;
  2081. applog(LOG_NOTICE, "LONGPOLL requested work restart, waiting on fresh work");
  2082. work_block++;
  2083. restart_threads();
  2084. }
  2085. out_free:
  2086. free(hexstr);
  2087. }
  2088. static int tv_sort(struct work *worka, struct work *workb)
  2089. {
  2090. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  2091. }
  2092. static bool hash_push(struct work *work)
  2093. {
  2094. bool rc = true;
  2095. mutex_lock(stgd_lock);
  2096. if (likely(!getq->frozen)) {
  2097. HASH_ADD_INT(staged_work, id, work);
  2098. HASH_SORT(staged_work, tv_sort);
  2099. if (work->clone || work->longpoll)
  2100. ++staged_extras;
  2101. } else
  2102. rc = false;
  2103. pthread_cond_signal(&getq->cond);
  2104. mutex_unlock(stgd_lock);
  2105. return rc;
  2106. }
  2107. static void *stage_thread(void *userdata)
  2108. {
  2109. struct thr_info *mythr = userdata;
  2110. bool ok = true;
  2111. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  2112. while (ok) {
  2113. struct work *work = NULL;
  2114. applog(LOG_DEBUG, "Popping work to stage thread");
  2115. work = tq_pop(mythr->q, NULL);
  2116. if (unlikely(!work)) {
  2117. applog(LOG_ERR, "Failed to tq_pop in stage_thread");
  2118. ok = false;
  2119. break;
  2120. }
  2121. work->work_block = work_block;
  2122. test_work_current(work);
  2123. applog(LOG_DEBUG, "Pushing work to getwork queue");
  2124. if (unlikely(!hash_push(work))) {
  2125. applog(LOG_WARNING, "Failed to hash_push in stage_thread");
  2126. continue;
  2127. }
  2128. }
  2129. tq_freeze(mythr->q);
  2130. return NULL;
  2131. }
  2132. static bool stage_work(struct work *work)
  2133. {
  2134. applog(LOG_DEBUG, "Pushing work to stage thread");
  2135. if (unlikely(!tq_push(thr_info[stage_thr_id].q, work))) {
  2136. applog(LOG_ERR, "Could not tq_push work in stage_work");
  2137. return false;
  2138. }
  2139. return true;
  2140. }
  2141. #ifdef HAVE_CURSES
  2142. int curses_int(const char *query)
  2143. {
  2144. int ret;
  2145. char *cvar;
  2146. cvar = curses_input(query);
  2147. ret = atoi(cvar);
  2148. free(cvar);
  2149. return ret;
  2150. }
  2151. #endif
  2152. #ifdef HAVE_CURSES
  2153. static bool input_pool(bool live);
  2154. #endif
  2155. int active_pools(void)
  2156. {
  2157. int ret = 0;
  2158. int i;
  2159. for (i = 0; i < total_pools; i++) {
  2160. if ((pools[i])->enabled)
  2161. ret++;
  2162. }
  2163. return ret;
  2164. }
  2165. #ifdef HAVE_CURSES
  2166. static void display_pool_summary(struct pool *pool)
  2167. {
  2168. double efficiency = 0.0;
  2169. if (curses_active_locked()) {
  2170. wlog("Pool: %s\n", pool->rpc_url);
  2171. wlog("%s long-poll support\n", pool->hdr_path ? "Has" : "Does not have");
  2172. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  2173. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  2174. wlog(" Accepted shares: %d\n", pool->accepted);
  2175. wlog(" Rejected shares: %d\n", pool->rejected);
  2176. if (pool->accepted || pool->rejected)
  2177. wlog(" Reject ratio: %.1f%%\n", (double)(pool->rejected * 100) / (double)(pool->accepted + pool->rejected));
  2178. efficiency = pool->getwork_requested ? pool->accepted * 100.0 / pool->getwork_requested : 0.0;
  2179. wlog(" Efficiency (accepted / queued): %.0f%%\n", efficiency);
  2180. wlog(" Discarded work due to new blocks: %d\n", pool->discarded_work);
  2181. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  2182. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  2183. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  2184. unlock_curses();
  2185. }
  2186. }
  2187. #endif
  2188. /* We can't remove the memory used for this struct pool because there may
  2189. * still be work referencing it. We just remove it from the pools list */
  2190. void remove_pool(struct pool *pool)
  2191. {
  2192. int i, last_pool = total_pools - 1;
  2193. struct pool *other;
  2194. /* Boost priority of any lower prio than this one */
  2195. for (i = 0; i < total_pools; i++) {
  2196. other = pools[i];
  2197. if (other->prio > pool->prio)
  2198. other->prio--;
  2199. }
  2200. if (pool->pool_no < last_pool) {
  2201. /* Swap the last pool for this one */
  2202. (pools[last_pool])->pool_no = pool->pool_no;
  2203. pools[pool->pool_no] = pools[last_pool];
  2204. }
  2205. /* Give it an invalid number */
  2206. pool->pool_no = total_pools;
  2207. total_pools--;
  2208. }
  2209. void write_config(FILE *fcfg)
  2210. {
  2211. int i;
  2212. /* Write pool values */
  2213. fputs("{\n\"pools\" : [", fcfg);
  2214. for(i = 0; i < total_pools; i++) {
  2215. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "", pools[i]->rpc_url);
  2216. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", pools[i]->rpc_user);
  2217. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\"\n\t}", pools[i]->rpc_pass);
  2218. }
  2219. fputs("\n],\n\n", fcfg);
  2220. if (nDevs) {
  2221. /* Write GPU device values */
  2222. fputs("\"intensity\" : \"", fcfg);
  2223. for(i = 0; i < nDevs; i++)
  2224. fprintf(fcfg, gpus[i].dynamic ? "%sd" : "%s%d", i > 0 ? "," : "", gpus[i].intensity);
  2225. #ifdef HAVE_OPENCL
  2226. fputs("\",\n\"vectors\" : \"", fcfg);
  2227. for(i = 0; i < nDevs; i++)
  2228. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  2229. gpus[i].vwidth);
  2230. fputs("\",\n\"worksize\" : \"", fcfg);
  2231. for(i = 0; i < nDevs; i++)
  2232. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  2233. (int)gpus[i].work_size);
  2234. fputs("\",\n\"kernel\" : \"", fcfg);
  2235. for(i = 0; i < nDevs; i++) {
  2236. fprintf(fcfg, "%s", i > 0 ? "," : "");
  2237. switch (gpus[i].kernel) {
  2238. case KL_NONE: // Shouldn't happen
  2239. break;
  2240. case KL_POCLBM:
  2241. fprintf(fcfg, "poclbm");
  2242. break;
  2243. case KL_PHATK:
  2244. fprintf(fcfg, "phatk");
  2245. break;
  2246. case KL_DIAKGCN:
  2247. fprintf(fcfg, "diakgcn");
  2248. break;
  2249. case KL_DIABLO:
  2250. fprintf(fcfg, "diablo");
  2251. break;
  2252. }
  2253. }
  2254. #ifdef HAVE_ADL
  2255. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  2256. for(i = 0; i < nDevs; i++)
  2257. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  2258. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  2259. for(i = 0; i < nDevs; i++)
  2260. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  2261. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  2262. for(i = 0; i < nDevs; i++)
  2263. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  2264. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  2265. for(i = 0; i < nDevs; i++)
  2266. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  2267. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  2268. for(i = 0; i < nDevs; i++)
  2269. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  2270. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  2271. for(i = 0; i < nDevs; i++)
  2272. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  2273. fputs("\",\n\"temp-cutoff\" : \"", fcfg);
  2274. for(i = 0; i < nDevs; i++)
  2275. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].cutofftemp);
  2276. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  2277. for(i = 0; i < nDevs; i++)
  2278. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  2279. fputs("\",\n\"temp-target\" : \"", fcfg);
  2280. for(i = 0; i < nDevs; i++)
  2281. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.targettemp);
  2282. #endif
  2283. #endif
  2284. fputs("\"", fcfg);
  2285. #ifdef WANT_CPUMINE
  2286. fputs(",\n", fcfg);
  2287. #endif
  2288. }
  2289. #ifdef HAVE_ADL
  2290. if (opt_reorder)
  2291. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  2292. #endif
  2293. #ifdef WANT_CPUMINE
  2294. fprintf(fcfg, "\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  2295. #endif
  2296. /* Simple bool and int options */
  2297. struct opt_table *opt;
  2298. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2299. char *p, *name = strdup(opt->names);
  2300. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  2301. if (p[1] != '-')
  2302. continue;
  2303. if (opt->type & OPT_NOARG &&
  2304. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  2305. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  2306. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  2307. if (opt->type & OPT_HASARG &&
  2308. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  2309. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  2310. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  2311. (void *)opt->cb_arg == (void *)set_int_1_to_10) && opt->desc != opt_hidden)
  2312. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  2313. }
  2314. }
  2315. /* Special case options */
  2316. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  2317. if (pool_strategy == POOL_LOADBALANCE)
  2318. fputs(",\n\"load-balance\" : true", fcfg);
  2319. if (pool_strategy == POOL_ROUNDROBIN)
  2320. fputs(",\n\"round-robin\" : true", fcfg);
  2321. if (pool_strategy == POOL_ROTATE)
  2322. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  2323. #if defined(unix)
  2324. if (opt_stderr_cmd && *opt_stderr_cmd)
  2325. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", opt_stderr_cmd);
  2326. #endif // defined(unix)
  2327. if (opt_kernel_path && *opt_kernel_path) {
  2328. char *kpath = strdup(opt_kernel_path);
  2329. if (kpath[strlen(kpath)-1] == '/')
  2330. kpath[strlen(kpath)-1] = 0;
  2331. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", kpath);
  2332. }
  2333. if (schedstart.enable)
  2334. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  2335. if (schedstop.enable)
  2336. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  2337. if (opt_socks_proxy && *opt_socks_proxy)
  2338. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", opt_socks_proxy);
  2339. for(i = 0; i < nDevs; i++)
  2340. if (gpus[i].deven == DEV_DISABLED)
  2341. break;
  2342. if (i < nDevs)
  2343. for (i = 0; i < nDevs; i++)
  2344. if (gpus[i].deven != DEV_DISABLED)
  2345. fprintf(fcfg, ",\n\"device\" : \"%d\"", i);
  2346. if (opt_api_allow)
  2347. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", opt_api_allow);
  2348. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  2349. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", opt_api_description);
  2350. fputs("\n}", fcfg);
  2351. }
  2352. #ifdef HAVE_CURSES
  2353. static void display_pools(void)
  2354. {
  2355. struct pool *pool;
  2356. int selected, i;
  2357. char input;
  2358. opt_loginput = true;
  2359. immedok(logwin, true);
  2360. clear_logwin();
  2361. updated:
  2362. for (i = 0; i < total_pools; i++) {
  2363. pool = pools[i];
  2364. if (pool == current_pool())
  2365. wattron(logwin, A_BOLD);
  2366. if (!pool->enabled)
  2367. wattron(logwin, A_DIM);
  2368. wlogprint("%d: %s %s Priority %d: %s User:%s\n",
  2369. pool->pool_no,
  2370. pool->enabled? "Enabled" : "Disabled",
  2371. pool->idle? "Dead" : "Alive",
  2372. pool->prio,
  2373. pool->rpc_url, pool->rpc_user);
  2374. wattroff(logwin, A_BOLD | A_DIM);
  2375. }
  2376. retry:
  2377. wlogprint("\nCurrent pool management strategy: %s\n",
  2378. strategies[pool_strategy]);
  2379. if (pool_strategy == POOL_ROTATE)
  2380. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  2381. wlogprint("[A]dd pool [R]emove pool [D]isable pool [E]nable pool\n");
  2382. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  2383. wlogprint("Or press any other key to continue\n");
  2384. input = getch();
  2385. if (!strncasecmp(&input, "a", 1)) {
  2386. input_pool(true);
  2387. goto updated;
  2388. } else if (!strncasecmp(&input, "r", 1)) {
  2389. if (total_pools <= 1) {
  2390. wlogprint("Cannot remove last pool");
  2391. goto retry;
  2392. }
  2393. selected = curses_int("Select pool number");
  2394. if (selected < 0 || selected >= total_pools) {
  2395. wlogprint("Invalid selection\n");
  2396. goto retry;
  2397. }
  2398. pool = pools[selected];
  2399. if (pool == current_pool())
  2400. switch_pools(NULL);
  2401. if (pool == current_pool()) {
  2402. wlogprint("Unable to remove pool due to activity\n");
  2403. goto retry;
  2404. }
  2405. pool->enabled = false;
  2406. remove_pool(pool);
  2407. goto updated;
  2408. } else if (!strncasecmp(&input, "s", 1)) {
  2409. selected = curses_int("Select pool number");
  2410. if (selected < 0 || selected >= total_pools) {
  2411. wlogprint("Invalid selection\n");
  2412. goto retry;
  2413. }
  2414. pool = pools[selected];
  2415. pool->enabled = true;
  2416. switch_pools(pool);
  2417. goto updated;
  2418. } else if (!strncasecmp(&input, "d", 1)) {
  2419. if (active_pools() <= 1) {
  2420. wlogprint("Cannot disable last pool");
  2421. goto retry;
  2422. }
  2423. selected = curses_int("Select pool number");
  2424. if (selected < 0 || selected >= total_pools) {
  2425. wlogprint("Invalid selection\n");
  2426. goto retry;
  2427. }
  2428. pool = pools[selected];
  2429. pool->enabled = false;
  2430. if (pool == current_pool())
  2431. switch_pools(NULL);
  2432. goto updated;
  2433. } else if (!strncasecmp(&input, "e", 1)) {
  2434. selected = curses_int("Select pool number");
  2435. if (selected < 0 || selected >= total_pools) {
  2436. wlogprint("Invalid selection\n");
  2437. goto retry;
  2438. }
  2439. pool = pools[selected];
  2440. pool->enabled = true;
  2441. if (pool->prio < current_pool()->prio)
  2442. switch_pools(pool);
  2443. goto updated;
  2444. } else if (!strncasecmp(&input, "c", 1)) {
  2445. for (i = 0; i <= TOP_STRATEGY; i++)
  2446. wlogprint("%d: %s\n", i, strategies[i]);
  2447. selected = curses_int("Select strategy number type");
  2448. if (selected < 0 || selected > TOP_STRATEGY) {
  2449. wlogprint("Invalid selection\n");
  2450. goto retry;
  2451. }
  2452. if (selected == POOL_ROTATE) {
  2453. opt_rotate_period = curses_int("Select interval in minutes");
  2454. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  2455. opt_rotate_period = 0;
  2456. wlogprint("Invalid selection\n");
  2457. goto retry;
  2458. }
  2459. }
  2460. pool_strategy = selected;
  2461. switch_pools(NULL);
  2462. goto updated;
  2463. } else if (!strncasecmp(&input, "i", 1)) {
  2464. selected = curses_int("Select pool number");
  2465. if (selected < 0 || selected >= total_pools) {
  2466. wlogprint("Invalid selection\n");
  2467. goto retry;
  2468. }
  2469. pool = pools[selected];
  2470. display_pool_summary(pool);
  2471. goto retry;
  2472. } else
  2473. clear_logwin();
  2474. immedok(logwin, false);
  2475. opt_loginput = false;
  2476. }
  2477. static void display_options(void)
  2478. {
  2479. int selected;
  2480. char input;
  2481. opt_loginput = true;
  2482. immedok(logwin, true);
  2483. clear_logwin();
  2484. retry:
  2485. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  2486. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n[R]PC debug:%s\n[L]og interval:%d\n",
  2487. opt_debug ? "on" : "off",
  2488. want_per_device_stats? "on" : "off",
  2489. opt_quiet ? "on" : "off",
  2490. opt_log_output ? "on" : "off",
  2491. opt_protocol ? "on" : "off",
  2492. opt_log_interval);
  2493. wlogprint("Select an option or any other key to return\n");
  2494. input = getch();
  2495. if (!strncasecmp(&input, "q", 1)) {
  2496. opt_quiet ^= true;
  2497. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  2498. goto retry;
  2499. } else if (!strncasecmp(&input, "v", 1)) {
  2500. opt_log_output ^= true;
  2501. if (opt_log_output)
  2502. opt_quiet = false;
  2503. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  2504. goto retry;
  2505. } else if (!strncasecmp(&input, "n", 1)) {
  2506. opt_log_output = false;
  2507. opt_debug = false;
  2508. opt_quiet = false;
  2509. opt_protocol = false;
  2510. want_per_device_stats = false;
  2511. wlogprint("Output mode reset to normal\n");
  2512. goto retry;
  2513. } else if (!strncasecmp(&input, "d", 1)) {
  2514. opt_debug ^= true;
  2515. opt_log_output = opt_debug;
  2516. if (opt_debug)
  2517. opt_quiet = false;
  2518. wlogprint("Debug mode %s\n", opt_debug ? "enabled" : "disabled");
  2519. goto retry;
  2520. } else if (!strncasecmp(&input, "p", 1)) {
  2521. want_per_device_stats ^= true;
  2522. opt_log_output = want_per_device_stats;
  2523. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  2524. goto retry;
  2525. } else if (!strncasecmp(&input, "r", 1)) {
  2526. opt_protocol ^= true;
  2527. if (opt_protocol)
  2528. opt_quiet = false;
  2529. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  2530. goto retry;
  2531. } else if (!strncasecmp(&input, "c", 1))
  2532. clear_logwin();
  2533. else if (!strncasecmp(&input, "l", 1)) {
  2534. selected = curses_int("Interval in seconds");
  2535. if (selected < 0 || selected > 9999) {
  2536. wlogprint("Invalid selection\n");
  2537. goto retry;
  2538. }
  2539. opt_log_interval = selected;
  2540. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  2541. goto retry;
  2542. } else if (!strncasecmp(&input, "s", 1)) {
  2543. opt_realquiet = true;
  2544. } else
  2545. clear_logwin();
  2546. immedok(logwin, false);
  2547. opt_loginput = false;
  2548. }
  2549. #endif
  2550. static void start_longpoll(void);
  2551. static void stop_longpoll(void);
  2552. #ifdef HAVE_CURSES
  2553. static void set_options(void)
  2554. {
  2555. int selected;
  2556. char input;
  2557. opt_loginput = true;
  2558. immedok(logwin, true);
  2559. clear_logwin();
  2560. retry:
  2561. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  2562. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  2563. "[P]ause: %d\n[W]rite config file\n[B]FGMiner restart\n",
  2564. opt_queue, opt_scantime, opt_expiry, opt_retries, opt_fail_pause);
  2565. wlogprint("Select an option or any other key to return\n");
  2566. input = getch();
  2567. if (!strncasecmp(&input, "q", 1)) {
  2568. selected = curses_int("Extra work items to queue");
  2569. if (selected < 0 || selected > 9999) {
  2570. wlogprint("Invalid selection\n");
  2571. goto retry;
  2572. }
  2573. opt_queue = selected;
  2574. goto retry;
  2575. } else if (!strncasecmp(&input, "l", 1)) {
  2576. want_longpoll ^= true;
  2577. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  2578. if (!want_longpoll) {
  2579. if (have_longpoll)
  2580. stop_longpoll();
  2581. } else
  2582. start_longpoll();
  2583. goto retry;
  2584. } else if (!strncasecmp(&input, "s", 1)) {
  2585. selected = curses_int("Set scantime in seconds");
  2586. if (selected < 0 || selected > 9999) {
  2587. wlogprint("Invalid selection\n");
  2588. goto retry;
  2589. }
  2590. opt_scantime = selected;
  2591. goto retry;
  2592. } else if (!strncasecmp(&input, "e", 1)) {
  2593. selected = curses_int("Set expiry time in seconds");
  2594. if (selected < 0 || selected > 9999) {
  2595. wlogprint("Invalid selection\n");
  2596. goto retry;
  2597. }
  2598. opt_expiry = selected;
  2599. goto retry;
  2600. } else if (!strncasecmp(&input, "r", 1)) {
  2601. selected = curses_int("Retries before failing (-1 infinite)");
  2602. if (selected < -1 || selected > 9999) {
  2603. wlogprint("Invalid selection\n");
  2604. goto retry;
  2605. }
  2606. opt_retries = selected;
  2607. goto retry;
  2608. } else if (!strncasecmp(&input, "p", 1)) {
  2609. selected = curses_int("Seconds to pause before network retries");
  2610. if (selected < 1 || selected > 9999) {
  2611. wlogprint("Invalid selection\n");
  2612. goto retry;
  2613. }
  2614. opt_fail_pause = selected;
  2615. goto retry;
  2616. } else if (!strncasecmp(&input, "w", 1)) {
  2617. FILE *fcfg;
  2618. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  2619. #if defined(unix)
  2620. if (getenv("HOME") && *getenv("HOME")) {
  2621. strcpy(filename, getenv("HOME"));
  2622. strcat(filename, "/");
  2623. }
  2624. else
  2625. strcpy(filename, "");
  2626. strcat(filename, ".bfgminer/");
  2627. mkdir(filename, 0777);
  2628. #else
  2629. strcpy(filename, "");
  2630. #endif
  2631. strcat(filename, def_conf);
  2632. sprintf(prompt, "Config filename to write (Enter for default) [%s]", filename);
  2633. str = curses_input(prompt);
  2634. if (strcmp(str, "-1")) {
  2635. struct stat statbuf;
  2636. strcpy(filename, str);
  2637. if (!stat(filename, &statbuf)) {
  2638. wlogprint("File exists, overwrite?\n");
  2639. input = getch();
  2640. if (strncasecmp(&input, "y", 1))
  2641. goto retry;
  2642. }
  2643. }
  2644. fcfg = fopen(filename, "w");
  2645. if (!fcfg) {
  2646. wlogprint("Cannot open or create file\n");
  2647. goto retry;
  2648. }
  2649. write_config(fcfg);
  2650. fclose(fcfg);
  2651. goto retry;
  2652. } else if (!strncasecmp(&input, "b", 1)) {
  2653. wlogprint("Are you sure?\n");
  2654. input = getch();
  2655. if (!strncasecmp(&input, "y", 1))
  2656. app_restart();
  2657. else
  2658. clear_logwin();
  2659. } else
  2660. clear_logwin();
  2661. immedok(logwin, false);
  2662. opt_loginput = false;
  2663. }
  2664. static void *input_thread(void __maybe_unused *userdata)
  2665. {
  2666. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  2667. if (!curses_active)
  2668. return NULL;
  2669. while (1) {
  2670. char input;
  2671. input = getch();
  2672. if (!strncasecmp(&input, "q", 1)) {
  2673. kill_work();
  2674. return NULL;
  2675. } else if (!strncasecmp(&input, "d", 1))
  2676. display_options();
  2677. else if (!strncasecmp(&input, "p", 1))
  2678. display_pools();
  2679. else if (!strncasecmp(&input, "s", 1))
  2680. set_options();
  2681. else if (have_opencl && !strncasecmp(&input, "g", 1))
  2682. manage_gpu();
  2683. if (opt_realquiet) {
  2684. disable_curses();
  2685. break;
  2686. }
  2687. }
  2688. return NULL;
  2689. }
  2690. #endif
  2691. /* This thread should not be shut down unless a problem occurs */
  2692. static void *workio_thread(void *userdata)
  2693. {
  2694. struct thr_info *mythr = userdata;
  2695. bool ok = true;
  2696. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  2697. while (ok) {
  2698. struct workio_cmd *wc;
  2699. applog(LOG_DEBUG, "Popping work to work thread");
  2700. /* wait for workio_cmd sent to us, on our queue */
  2701. wc = tq_pop(mythr->q, NULL);
  2702. if (unlikely(!wc)) {
  2703. applog(LOG_ERR, "Failed to tq_pop in workio_thread");
  2704. ok = false;
  2705. break;
  2706. }
  2707. /* process workio_cmd */
  2708. switch (wc->cmd) {
  2709. case WC_GET_WORK:
  2710. ok = workio_get_work(wc);
  2711. break;
  2712. case WC_SUBMIT_WORK:
  2713. ok = workio_submit_work(wc);
  2714. break;
  2715. default:
  2716. ok = false;
  2717. break;
  2718. }
  2719. }
  2720. tq_freeze(mythr->q);
  2721. return NULL;
  2722. }
  2723. static void *api_thread(void *userdata)
  2724. {
  2725. struct thr_info *mythr = userdata;
  2726. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  2727. api(api_thr_id);
  2728. PTH(mythr) = 0L;
  2729. return NULL;
  2730. }
  2731. void thread_reportin(struct thr_info *thr)
  2732. {
  2733. gettimeofday(&thr->last, NULL);
  2734. thr->cgpu->status = LIFE_WELL;
  2735. thr->getwork = false;
  2736. thr->cgpu->device_last_well = time(NULL);
  2737. }
  2738. static inline void thread_reportout(struct thr_info *thr)
  2739. {
  2740. thr->getwork = true;
  2741. }
  2742. static void hashmeter(int thr_id, struct timeval *diff,
  2743. unsigned long hashes_done)
  2744. {
  2745. struct timeval temp_tv_end, total_diff;
  2746. double secs;
  2747. double local_secs;
  2748. double utility, efficiency = 0.0;
  2749. static double local_mhashes_done = 0;
  2750. static double rolling = 0;
  2751. double local_mhashes = (double)hashes_done / 1000000.0;
  2752. bool showlog = false;
  2753. /* Update the last time this thread reported in */
  2754. if (thr_id >= 0) {
  2755. gettimeofday(&thr_info[thr_id].last, NULL);
  2756. thr_info[thr_id].cgpu->device_last_well = time(NULL);
  2757. }
  2758. /* Don't bother calculating anything if we're not displaying it */
  2759. if (opt_realquiet || !opt_log_interval)
  2760. return;
  2761. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  2762. /* So we can call hashmeter from a non worker thread */
  2763. if (thr_id >= 0) {
  2764. struct thr_info *thr = &thr_info[thr_id];
  2765. struct cgpu_info *cgpu = thr_info[thr_id].cgpu;
  2766. double thread_rolling = 0.0;
  2767. int i;
  2768. applog(LOG_DEBUG, "[thread %d: %lu hashes, %.0f khash/sec]",
  2769. thr_id, hashes_done, hashes_done / secs);
  2770. /* Rolling average for each thread and each device */
  2771. decay_time(&thr->rolling, local_mhashes / secs);
  2772. for (i = 0; i < mining_threads; i++) {
  2773. struct thr_info *th = &thr_info[i];
  2774. if (th->cgpu == cgpu)
  2775. thread_rolling += th->rolling;
  2776. }
  2777. mutex_lock(&hash_lock);
  2778. decay_time(&cgpu->rolling, thread_rolling);
  2779. cgpu->total_mhashes += local_mhashes;
  2780. mutex_unlock(&hash_lock);
  2781. // If needed, output detailed, per-device stats
  2782. if (want_per_device_stats) {
  2783. struct timeval now;
  2784. struct timeval elapsed;
  2785. gettimeofday(&now, NULL);
  2786. timeval_subtract(&elapsed, &now, &thr->cgpu->last_message_tv);
  2787. if (opt_log_interval <= elapsed.tv_sec) {
  2788. struct cgpu_info *cgpu = thr->cgpu;
  2789. char logline[255];
  2790. cgpu->last_message_tv = now;
  2791. get_statline(logline, cgpu);
  2792. if (!curses_active) {
  2793. printf("%s \r", logline);
  2794. fflush(stdout);
  2795. } else
  2796. applog(LOG_INFO, "%s", logline);
  2797. }
  2798. }
  2799. }
  2800. /* Totals are updated by all threads so can race without locking */
  2801. mutex_lock(&hash_lock);
  2802. gettimeofday(&temp_tv_end, NULL);
  2803. timeval_subtract(&total_diff, &temp_tv_end, &total_tv_end);
  2804. total_mhashes_done += local_mhashes;
  2805. local_mhashes_done += local_mhashes;
  2806. if (total_diff.tv_sec < opt_log_interval)
  2807. /* Only update the total every opt_log_interval seconds */
  2808. goto out_unlock;
  2809. showlog = true;
  2810. gettimeofday(&total_tv_end, NULL);
  2811. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  2812. decay_time(&rolling, local_mhashes_done / local_secs);
  2813. timeval_subtract(&total_diff, &total_tv_end, &total_tv_start);
  2814. total_secs = (double)total_diff.tv_sec +
  2815. ((double)total_diff.tv_usec / 1000000.0);
  2816. utility = total_accepted / ( total_secs ? total_secs : 1 ) * 60;
  2817. efficiency = total_getworks ? total_accepted * 100.0 / total_getworks : 0.0;
  2818. sprintf(statusline, "%s(%ds):%.1f (avg):%.1f Mh/s | Q:%d A:%d R:%d HW:%d E:%.0f%% U:%.2f/m",
  2819. want_per_device_stats ? "ALL " : "",
  2820. opt_log_interval, rolling, total_mhashes_done / total_secs,
  2821. total_getworks, total_accepted, total_rejected, hw_errors, efficiency, utility);
  2822. local_mhashes_done = 0;
  2823. out_unlock:
  2824. mutex_unlock(&hash_lock);
  2825. if (showlog) {
  2826. if (!curses_active) {
  2827. printf("%s \r", statusline);
  2828. fflush(stdout);
  2829. } else
  2830. applog(LOG_INFO, "%s", statusline);
  2831. }
  2832. }
  2833. static bool pool_active(struct pool *pool, bool pinging)
  2834. {
  2835. bool ret = false;
  2836. json_t *val;
  2837. CURL *curl;
  2838. bool rolltime;
  2839. curl = curl_easy_init();
  2840. if (unlikely(!curl)) {
  2841. applog(LOG_ERR, "CURL initialisation failed");
  2842. return false;
  2843. }
  2844. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  2845. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  2846. true, false, &rolltime, pool, false);
  2847. if (val) {
  2848. struct work *work = make_work();
  2849. bool rc;
  2850. rc = work_decode(json_object_get(val, "result"), work);
  2851. if (rc) {
  2852. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  2853. pool->pool_no, pool->rpc_url);
  2854. work->pool = pool;
  2855. work->rolltime = rolltime;
  2856. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  2857. tq_push(thr_info[stage_thr_id].q, work);
  2858. total_getworks++;
  2859. pool->getwork_requested++;
  2860. inc_queued();
  2861. ret = true;
  2862. gettimeofday(&pool->tv_idle, NULL);
  2863. } else {
  2864. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  2865. pool->pool_no, pool->rpc_url);
  2866. free_work(work);
  2867. }
  2868. json_decref(val);
  2869. /* We may be updating the url after the pool has died */
  2870. if (pool->lp_url)
  2871. free(pool->lp_url);
  2872. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  2873. if (pool->hdr_path) {
  2874. char *copy_start, *hdr_path;
  2875. bool need_slash = false;
  2876. hdr_path = pool->hdr_path;
  2877. if (strstr(hdr_path, "://")) {
  2878. pool->lp_url = hdr_path;
  2879. hdr_path = NULL;
  2880. } else {
  2881. /* absolute path, on current server */
  2882. copy_start = (*hdr_path == '/') ? (hdr_path + 1) : hdr_path;
  2883. if (pool->rpc_url[strlen(pool->rpc_url) - 1] != '/')
  2884. need_slash = true;
  2885. pool->lp_url = malloc(strlen(pool->rpc_url) + strlen(copy_start) + 2);
  2886. if (!pool->lp_url) {
  2887. applog(LOG_ERR, "Malloc failure in pool_active");
  2888. return false;
  2889. }
  2890. sprintf(pool->lp_url, "%s%s%s", pool->rpc_url, need_slash ? "/" : "", copy_start);
  2891. }
  2892. } else
  2893. pool->lp_url = NULL;
  2894. } else {
  2895. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  2896. pool->pool_no, pool->rpc_url);
  2897. if (!pinging)
  2898. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  2899. }
  2900. curl_easy_cleanup(curl);
  2901. return ret;
  2902. }
  2903. static void pool_died(struct pool *pool)
  2904. {
  2905. if (!pool_tset(pool, &pool->idle)) {
  2906. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  2907. gettimeofday(&pool->tv_idle, NULL);
  2908. switch_pools(NULL);
  2909. }
  2910. }
  2911. static inline int cp_prio(void)
  2912. {
  2913. int prio;
  2914. mutex_lock(&control_lock);
  2915. prio = currentpool->prio;
  2916. mutex_unlock(&control_lock);
  2917. return prio;
  2918. }
  2919. static void pool_resus(struct pool *pool)
  2920. {
  2921. applog(LOG_WARNING, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  2922. if (pool->prio < cp_prio() && pool_strategy == POOL_FAILOVER)
  2923. switch_pools(NULL);
  2924. }
  2925. static long requested_tv_sec;
  2926. static bool queue_request(struct thr_info *thr, bool needed)
  2927. {
  2928. int rq = requests_queued();
  2929. struct workio_cmd *wc;
  2930. struct timeval now;
  2931. gettimeofday(&now, NULL);
  2932. /* Space out retrieval of extra work according to the number of mining
  2933. * threads */
  2934. if (rq >= mining_threads + staged_extras &&
  2935. (now.tv_sec - requested_tv_sec) < (opt_scantime / (mining_threads + 1) ?: 1))
  2936. return true;
  2937. /* fill out work request message */
  2938. wc = calloc(1, sizeof(*wc));
  2939. if (unlikely(!wc)) {
  2940. applog(LOG_ERR, "Failed to calloc wc in queue_request");
  2941. return false;
  2942. }
  2943. wc->cmd = WC_GET_WORK;
  2944. if (thr)
  2945. wc->thr = thr;
  2946. else
  2947. wc->thr = NULL;
  2948. /* If we're queueing work faster than we can stage it, consider the
  2949. * system lagging and allow work to be gathered from another pool if
  2950. * possible */
  2951. if (rq && needed && !requests_staged() && !opt_fail_only)
  2952. wc->lagging = true;
  2953. applog(LOG_DEBUG, "Queueing getwork request to work thread");
  2954. /* send work request to workio thread */
  2955. if (unlikely(!tq_push(thr_info[work_thr_id].q, wc))) {
  2956. applog(LOG_ERR, "Failed to tq_push in queue_request");
  2957. workio_cmd_free(wc);
  2958. return false;
  2959. }
  2960. requested_tv_sec = now.tv_sec;
  2961. inc_queued();
  2962. return true;
  2963. }
  2964. static struct work *hash_pop(const struct timespec *abstime)
  2965. {
  2966. struct work *work = NULL;
  2967. int rc = 0;
  2968. mutex_lock(stgd_lock);
  2969. while (!getq->frozen && !HASH_COUNT(staged_work) && !rc)
  2970. rc = pthread_cond_timedwait(&getq->cond, stgd_lock, abstime);
  2971. if (HASH_COUNT(staged_work)) {
  2972. work = staged_work;
  2973. HASH_DEL(staged_work, work);
  2974. if (work->clone || work->longpoll)
  2975. --staged_extras;
  2976. }
  2977. mutex_unlock(stgd_lock);
  2978. return work;
  2979. }
  2980. static inline bool should_roll(struct work *work)
  2981. {
  2982. if (work->pool == current_pool() || pool_strategy == POOL_LOADBALANCE)
  2983. return true;
  2984. return false;
  2985. }
  2986. static inline bool can_roll(struct work *work)
  2987. {
  2988. return (work->pool && !stale_work(work, false) && work->rolltime &&
  2989. work->rolls < 11 && !work->clone);
  2990. }
  2991. static void roll_work(struct work *work)
  2992. {
  2993. uint32_t *work_ntime;
  2994. uint32_t ntime;
  2995. work_ntime = (uint32_t *)(work->data + 68);
  2996. ntime = be32toh(*work_ntime);
  2997. ntime++;
  2998. *work_ntime = htobe32(ntime);
  2999. local_work++;
  3000. work->rolls++;
  3001. work->blk.nonce = 0;
  3002. applog(LOG_DEBUG, "Successfully rolled work");
  3003. /* This is now a different work item so it needs a different ID for the
  3004. * hashtable */
  3005. work->id = total_work++;
  3006. }
  3007. static bool reuse_work(struct work *work)
  3008. {
  3009. if (can_roll(work) && should_roll(work)) {
  3010. roll_work(work);
  3011. return true;
  3012. }
  3013. return false;
  3014. }
  3015. static bool get_work(struct work *work, bool requested, struct thr_info *thr,
  3016. const int thr_id)
  3017. {
  3018. bool newreq = false, ret = false;
  3019. struct timespec abstime = {0, 0};
  3020. struct timeval now;
  3021. struct work *work_heap;
  3022. struct pool *pool;
  3023. int failures = 0;
  3024. /* Tell the watchdog thread this thread is waiting on getwork and
  3025. * should not be restarted */
  3026. thread_reportout(thr);
  3027. if (opt_benchmark) {
  3028. get_benchmark_work(work);
  3029. thread_reportin(thr);
  3030. return true;
  3031. }
  3032. retry:
  3033. pool = current_pool();
  3034. if (!requested || requests_queued() < opt_queue) {
  3035. if (unlikely(!queue_request(thr, true))) {
  3036. applog(LOG_WARNING, "Failed to queue_request in get_work");
  3037. goto out;
  3038. }
  3039. newreq = true;
  3040. }
  3041. if (reuse_work(work)) {
  3042. ret = true;
  3043. goto out;
  3044. }
  3045. if (requested && !newreq && !requests_staged() && requests_queued() >= mining_threads &&
  3046. !pool_tset(pool, &pool->lagging)) {
  3047. applog(LOG_WARNING, "Pool %d not providing work fast enough", pool->pool_no);
  3048. pool->getfail_occasions++;
  3049. total_go++;
  3050. }
  3051. newreq = requested = false;
  3052. gettimeofday(&now, NULL);
  3053. abstime.tv_sec = now.tv_sec + 60;
  3054. applog(LOG_DEBUG, "Popping work from get queue to get work");
  3055. /* wait for 1st response, or get cached response */
  3056. work_heap = hash_pop(&abstime);
  3057. if (unlikely(!work_heap)) {
  3058. /* Attempt to switch pools if this one times out */
  3059. pool_died(pool);
  3060. goto retry;
  3061. }
  3062. if (stale_work(work_heap, false)) {
  3063. dec_queued();
  3064. discard_work(work_heap);
  3065. goto retry;
  3066. }
  3067. pool = work_heap->pool;
  3068. /* If we make it here we have succeeded in getting fresh work */
  3069. if (!work_heap->mined) {
  3070. pool_tclear(pool, &pool->lagging);
  3071. if (pool_tclear(pool, &pool->idle))
  3072. pool_resus(pool);
  3073. }
  3074. memcpy(work, work_heap, sizeof(*work));
  3075. /* Hand out a clone if we can roll this work item */
  3076. if (reuse_work(work_heap)) {
  3077. applog(LOG_DEBUG, "Pushing divided work to get queue head");
  3078. stage_work(work_heap);
  3079. work->clone = true;
  3080. } else {
  3081. dec_queued();
  3082. free_work(work_heap);
  3083. }
  3084. ret = true;
  3085. out:
  3086. if (unlikely(ret == false)) {
  3087. if ((opt_retries >= 0) && (++failures > opt_retries)) {
  3088. applog(LOG_ERR, "Failed %d times to get_work");
  3089. return ret;
  3090. }
  3091. applog(LOG_DEBUG, "Retrying after %d seconds", fail_pause);
  3092. sleep(fail_pause);
  3093. fail_pause += opt_fail_pause;
  3094. goto retry;
  3095. }
  3096. fail_pause = opt_fail_pause;
  3097. work->thr_id = thr_id;
  3098. thread_reportin(thr);
  3099. if (ret)
  3100. work->mined = true;
  3101. return ret;
  3102. }
  3103. bool submit_work_sync(struct thr_info *thr, const struct work *work_in)
  3104. {
  3105. struct workio_cmd *wc;
  3106. /* fill out work request message */
  3107. wc = calloc(1, sizeof(*wc));
  3108. if (unlikely(!wc)) {
  3109. applog(LOG_ERR, "Failed to calloc wc in submit_work_sync");
  3110. return false;
  3111. }
  3112. wc->u.work = make_work();
  3113. wc->cmd = WC_SUBMIT_WORK;
  3114. wc->thr = thr;
  3115. memcpy(wc->u.work, work_in, sizeof(*work_in));
  3116. wc->u.work->share_found_time = time(NULL);
  3117. applog(LOG_DEBUG, "Pushing submit work to work thread");
  3118. /* send solution to workio thread */
  3119. if (unlikely(!tq_push(thr_info[work_thr_id].q, wc))) {
  3120. applog(LOG_ERR, "Failed to tq_push work in submit_work_sync");
  3121. goto err_out;
  3122. }
  3123. return true;
  3124. err_out:
  3125. workio_cmd_free(wc);
  3126. return false;
  3127. }
  3128. bool hashtest(const struct work *work)
  3129. {
  3130. uint32_t *data32 = (uint32_t *)(work->data);
  3131. unsigned char swap[128];
  3132. uint32_t *swap32 = (uint32_t *)swap;
  3133. unsigned char hash1[32];
  3134. unsigned char hash2[32];
  3135. uint32_t *hash2_32 = (uint32_t *)hash2;
  3136. int i;
  3137. for (i = 0; i < 80 / 4; i++)
  3138. swap32[i] = swab32(data32[i]);
  3139. sha2(swap, 80, hash1, false);
  3140. sha2(hash1, 32, hash2, false);
  3141. for (i = 0; i < 32 / 4; i++)
  3142. hash2_32[i] = swab32(hash2_32[i]);
  3143. memcpy((void*)work->hash, hash2, 32);
  3144. return fulltest(work->hash, work->target);
  3145. }
  3146. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  3147. {
  3148. work->data[64 + 12 + 0] = (nonce >> 0) & 0xff;
  3149. work->data[64 + 12 + 1] = (nonce >> 8) & 0xff;
  3150. work->data[64 + 12 + 2] = (nonce >> 16) & 0xff;
  3151. work->data[64 + 12 + 3] = (nonce >> 24) & 0xff;
  3152. /* Do one last check before attempting to submit the work */
  3153. if (!hashtest(work)) {
  3154. applog(LOG_INFO, "Share below target");
  3155. return true;
  3156. }
  3157. return submit_work_sync(thr, work);
  3158. }
  3159. static inline bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  3160. {
  3161. if (wdiff->tv_sec > opt_scantime ||
  3162. work->blk.nonce >= MAXTHREADS - hashes ||
  3163. hashes >= 0xfffffffe ||
  3164. stale_work(work, false))
  3165. return true;
  3166. return false;
  3167. }
  3168. void *miner_thread(void *userdata)
  3169. {
  3170. struct thr_info *mythr = userdata;
  3171. const int thr_id = mythr->id;
  3172. struct cgpu_info *cgpu = mythr->cgpu;
  3173. const struct device_api *api = cgpu->api;
  3174. /* Try to cycle approximately 5 times before each log update */
  3175. const unsigned long def_cycle = opt_log_interval / 5 ? : 1;
  3176. long cycle;
  3177. struct timeval tv_start, tv_end, tv_workstart, tv_lastupdate;
  3178. struct timeval diff, sdiff, wdiff;
  3179. uint32_t max_nonce = api->can_limit_work ? api->can_limit_work(mythr) : 0xffffffff;
  3180. uint32_t hashes_done = 0;
  3181. uint32_t hashes;
  3182. struct work *work = make_work();
  3183. unsigned const int request_interval = opt_scantime * 2 / 3 ? : 1;
  3184. unsigned const long request_nonce = MAXTHREADS / 3 * 2;
  3185. bool requested = false;
  3186. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  3187. if (api->thread_init && !api->thread_init(mythr)) {
  3188. cgpu->device_last_not_well = time(NULL);
  3189. cgpu->device_not_well_reason = REASON_THREAD_FAIL_INIT;
  3190. cgpu->thread_fail_init_count++;
  3191. goto out;
  3192. }
  3193. thread_reportout(mythr);
  3194. applog(LOG_DEBUG, "Popping ping in miner thread");
  3195. tq_pop(mythr->q, NULL); /* Wait for a ping to start */
  3196. sdiff.tv_sec = sdiff.tv_usec = 0;
  3197. gettimeofday(&tv_lastupdate, NULL);
  3198. while (1) {
  3199. work_restart[thr_id].restart = 0;
  3200. if (api->free_work && likely(work->pool))
  3201. api->free_work(mythr, work);
  3202. if (unlikely(!get_work(work, requested, mythr, thr_id))) {
  3203. applog(LOG_ERR, "work retrieval failed, exiting "
  3204. "mining thread %d", thr_id);
  3205. break;
  3206. }
  3207. requested = false;
  3208. cycle = (can_roll(work) && should_roll(work)) ? 1 : def_cycle;
  3209. gettimeofday(&tv_workstart, NULL);
  3210. work->blk.nonce = 0;
  3211. cgpu->max_hashes = 0;
  3212. if (api->prepare_work && !api->prepare_work(mythr, work)) {
  3213. applog(LOG_ERR, "work prepare failed, exiting "
  3214. "mining thread %d", thr_id);
  3215. break;
  3216. }
  3217. do {
  3218. gettimeofday(&tv_start, NULL);
  3219. hashes = api->scanhash(mythr, work, work->blk.nonce + max_nonce);
  3220. if (unlikely(work_restart[thr_id].restart)) {
  3221. /* Apart from device_thread 0, we stagger the
  3222. * starting of every next thread to try and get
  3223. * all devices busy before worrying about
  3224. * getting work for their extra threads */
  3225. if (mythr->device_thread) {
  3226. struct timespec rgtp;
  3227. rgtp.tv_sec = 0;
  3228. rgtp.tv_nsec = 250 * mythr->device_thread * 1000000;
  3229. nanosleep(&rgtp, NULL);
  3230. }
  3231. break;
  3232. }
  3233. if (unlikely(!hashes)) {
  3234. cgpu->device_last_not_well = time(NULL);
  3235. cgpu->device_not_well_reason = REASON_THREAD_ZERO_HASH;
  3236. cgpu->thread_zero_hash_count++;
  3237. goto out;
  3238. }
  3239. hashes_done += hashes;
  3240. if (hashes > cgpu->max_hashes)
  3241. cgpu->max_hashes = hashes;
  3242. gettimeofday(&tv_end, NULL);
  3243. timeval_subtract(&diff, &tv_end, &tv_start);
  3244. sdiff.tv_sec += diff.tv_sec;
  3245. sdiff.tv_usec += diff.tv_usec;
  3246. if (sdiff.tv_usec > 1000000) {
  3247. ++sdiff.tv_sec;
  3248. sdiff.tv_usec -= 1000000;
  3249. }
  3250. timeval_subtract(&wdiff, &tv_end, &tv_workstart);
  3251. if (!requested) {
  3252. if (wdiff.tv_sec > request_interval || work->blk.nonce > request_nonce) {
  3253. thread_reportout(mythr);
  3254. if (unlikely(!queue_request(mythr, false))) {
  3255. applog(LOG_ERR, "Failed to queue_request in miner_thread %d", thr_id);
  3256. cgpu->device_last_not_well = time(NULL);
  3257. cgpu->device_not_well_reason = REASON_THREAD_FAIL_QUEUE;
  3258. cgpu->thread_fail_queue_count++;
  3259. goto out;
  3260. }
  3261. thread_reportin(mythr);
  3262. requested = true;
  3263. }
  3264. }
  3265. if (unlikely(sdiff.tv_sec < cycle)) {
  3266. if (likely(!api->can_limit_work || max_nonce == 0xffffffff))
  3267. continue;
  3268. {
  3269. int mult = 1000000 / ((sdiff.tv_usec + 0x400) / 0x400) + 0x10;
  3270. mult *= cycle;
  3271. if (max_nonce > (0xffffffff * 0x400) / mult)
  3272. max_nonce = 0xffffffff;
  3273. else
  3274. max_nonce = (max_nonce * mult) / 0x400;
  3275. }
  3276. } else if (unlikely(sdiff.tv_sec > cycle) && api->can_limit_work) {
  3277. max_nonce = max_nonce * cycle / sdiff.tv_sec;
  3278. } else if (unlikely(sdiff.tv_usec > 100000) && api->can_limit_work) {
  3279. max_nonce = max_nonce * 0x400 / (((cycle * 1000000) + sdiff.tv_usec) / (cycle * 1000000 / 0x400));
  3280. }
  3281. timeval_subtract(&diff, &tv_end, &tv_lastupdate);
  3282. if (diff.tv_sec >= opt_log_interval) {
  3283. hashmeter(thr_id, &diff, hashes_done);
  3284. hashes_done = 0;
  3285. tv_lastupdate = tv_end;
  3286. }
  3287. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED)) {
  3288. applog(LOG_WARNING, "Thread %d being disabled", thr_id);
  3289. mythr->rolling = mythr->cgpu->rolling = 0;
  3290. applog(LOG_DEBUG, "Popping wakeup ping in miner thread");
  3291. thread_reportout(mythr);
  3292. tq_pop(mythr->q, NULL); /* Ignore ping that's popped */
  3293. thread_reportin(mythr);
  3294. applog(LOG_WARNING, "Thread %d being re-enabled", thr_id);
  3295. }
  3296. sdiff.tv_sec = sdiff.tv_usec = 0;
  3297. } while (!abandon_work(work, &wdiff, cgpu->max_hashes));
  3298. }
  3299. out:
  3300. if (api->thread_shutdown)
  3301. api->thread_shutdown(mythr);
  3302. thread_reportin(mythr);
  3303. applog(LOG_ERR, "Thread %d failure, exiting", thr_id);
  3304. tq_freeze(mythr->q);
  3305. return NULL;
  3306. }
  3307. enum {
  3308. STAT_SLEEP_INTERVAL = 1,
  3309. STAT_CTR_INTERVAL = 10000000,
  3310. FAILURE_INTERVAL = 30,
  3311. };
  3312. /* Stage another work item from the work returned in a longpoll */
  3313. static void convert_to_work(json_t *val, bool rolltime, struct pool *pool)
  3314. {
  3315. struct work *work, *work_clone;
  3316. bool rc;
  3317. work = make_work();
  3318. rc= work_decode(json_object_get(val, "result"), work);
  3319. if (unlikely(!rc)) {
  3320. applog(LOG_ERR, "Could not convert longpoll data to work");
  3321. return;
  3322. }
  3323. work->pool = pool;
  3324. work->rolltime = rolltime;
  3325. work->longpoll = true;
  3326. /* We'll be checking this work item twice, but we already know it's
  3327. * from a new block so explicitly force the new block detection now
  3328. * rather than waiting for it to hit the stage thread. This also
  3329. * allows testwork to know whether LP discovered the block or not. */
  3330. test_work_current(work);
  3331. work_clone = make_work();
  3332. memcpy(work_clone, work, sizeof(struct work));
  3333. while (reuse_work(work)) {
  3334. work_clone->clone = true;
  3335. work_clone->longpoll = false;
  3336. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  3337. if (unlikely(!stage_work(work_clone)))
  3338. break;
  3339. work_clone = make_work();
  3340. memcpy(work_clone, work, sizeof(struct work));
  3341. }
  3342. free_work(work_clone);
  3343. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  3344. if (unlikely(!stage_work(work)))
  3345. free_work(work);
  3346. else
  3347. applog(LOG_DEBUG, "Converted longpoll data to work");
  3348. }
  3349. /* If we want longpoll, enable it for the chosen default pool, or, if
  3350. * the pool does not support longpoll, find the first one that does
  3351. * and use its longpoll support */
  3352. static struct pool *select_longpoll_pool(void)
  3353. {
  3354. struct pool *cp = current_pool();
  3355. int i;
  3356. if (cp->hdr_path)
  3357. return cp;
  3358. for (i = 0; i < total_pools; i++) {
  3359. struct pool *pool = pools[i];
  3360. if (pool->hdr_path)
  3361. return pool;
  3362. }
  3363. return NULL;
  3364. }
  3365. static void *longpoll_thread(void *userdata)
  3366. {
  3367. struct thr_info *mythr = userdata;
  3368. struct timeval start, end;
  3369. struct pool *sp, *pool;
  3370. CURL *curl = NULL;
  3371. int failures = 0;
  3372. bool rolltime;
  3373. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  3374. pthread_detach(pthread_self());
  3375. curl = curl_easy_init();
  3376. if (unlikely(!curl)) {
  3377. applog(LOG_ERR, "CURL initialisation failed");
  3378. goto out;
  3379. }
  3380. tq_pop(mythr->q, NULL);
  3381. pool = select_longpoll_pool();
  3382. if (!pool) {
  3383. applog(LOG_WARNING, "No long-poll found on any pool server");
  3384. while (!pool) {
  3385. sleep(30);
  3386. pool = select_longpoll_pool();
  3387. }
  3388. }
  3389. pool->is_lp = true;
  3390. have_longpoll = true;
  3391. applog(LOG_WARNING, "Long-polling activated for %s", pool->lp_url);
  3392. while (1) {
  3393. json_t *val, *soval;
  3394. gettimeofday(&start, NULL);
  3395. /* Longpoll connections can be persistent for a very long time
  3396. * and any number of issues could have come up in the meantime
  3397. * so always establish a fresh connection instead of relying on
  3398. * a persistent one. */
  3399. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  3400. val = json_rpc_call(curl, pool->lp_url, pool->rpc_userpass, rpc_req,
  3401. false, true, &rolltime, pool, false);
  3402. if (likely(val)) {
  3403. soval = json_object_get(json_object_get(val, "result"), "submitold");
  3404. if (soval)
  3405. pool->submit_old = json_is_true(soval);
  3406. else
  3407. pool->submit_old = false;
  3408. convert_to_work(val, rolltime, pool);
  3409. failures = 0;
  3410. json_decref(val);
  3411. } else {
  3412. /* Some pools regularly drop the longpoll request so
  3413. * only see this as longpoll failure if it happens
  3414. * immediately and just restart it the rest of the
  3415. * time. */
  3416. gettimeofday(&end, NULL);
  3417. if (end.tv_sec - start.tv_sec > 30)
  3418. continue;
  3419. if (opt_retries == -1 || failures++ < opt_retries) {
  3420. applog(LOG_WARNING,
  3421. "longpoll failed for %s, sleeping for 30s", pool->lp_url);
  3422. sleep(30);
  3423. } else {
  3424. applog(LOG_ERR,
  3425. "longpoll failed for %s, ending thread", pool->lp_url);
  3426. goto out;
  3427. }
  3428. }
  3429. sp = select_longpoll_pool();
  3430. if (sp != pool) {
  3431. pool->is_lp = false;
  3432. pool = sp;
  3433. pool->is_lp = true;
  3434. applog(LOG_WARNING, "Long-polling changed to %s", pool->lp_url);
  3435. }
  3436. }
  3437. out:
  3438. if (curl)
  3439. curl_easy_cleanup(curl);
  3440. tq_freeze(mythr->q);
  3441. return NULL;
  3442. }
  3443. __maybe_unused
  3444. static void stop_longpoll(void)
  3445. {
  3446. struct thr_info *thr = &thr_info[longpoll_thr_id];
  3447. thr_info_cancel(thr);
  3448. have_longpoll = false;
  3449. tq_freeze(thr->q);
  3450. }
  3451. static void start_longpoll(void)
  3452. {
  3453. struct thr_info *thr = &thr_info[longpoll_thr_id];
  3454. tq_thaw(thr->q);
  3455. if (unlikely(thr_info_create(thr, NULL, longpoll_thread, thr)))
  3456. quit(1, "longpoll thread create failed");
  3457. applog(LOG_DEBUG, "Pushing ping to longpoll thread");
  3458. tq_push(thr_info[longpoll_thr_id].q, &ping);
  3459. }
  3460. void reinit_device(struct cgpu_info *cgpu)
  3461. {
  3462. if (cgpu->api->reinit_device)
  3463. cgpu->api->reinit_device(cgpu);
  3464. }
  3465. static struct timeval rotate_tv;
  3466. static void *watchpool_thread(void __maybe_unused *userdata)
  3467. {
  3468. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  3469. while (42) {
  3470. struct timeval now;
  3471. int i;
  3472. gettimeofday(&now, NULL);
  3473. for (i = 0; i < total_pools; i++) {
  3474. struct pool *pool = pools[i];
  3475. if (!pool->enabled)
  3476. continue;
  3477. /* Test pool is idle once every minute */
  3478. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 60) {
  3479. gettimeofday(&pool->tv_idle, NULL);
  3480. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  3481. pool_resus(pool);
  3482. }
  3483. }
  3484. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  3485. gettimeofday(&rotate_tv, NULL);
  3486. switch_pools(NULL);
  3487. }
  3488. sleep(10);
  3489. }
  3490. return NULL;
  3491. }
  3492. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  3493. * the screen at regular intervals, and restarts threads if they appear to have
  3494. * died. */
  3495. static void *watchdog_thread(void __maybe_unused *userdata)
  3496. {
  3497. const unsigned int interval = 3;
  3498. struct timeval zero_tv;
  3499. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  3500. memset(&zero_tv, 0, sizeof(struct timeval));
  3501. gettimeofday(&rotate_tv, NULL);
  3502. while (1) {
  3503. int i;
  3504. struct timeval now;
  3505. sleep(interval);
  3506. if (requests_queued() < opt_queue)
  3507. queue_request(NULL, false);
  3508. hashmeter(-1, &zero_tv, 0);
  3509. #ifdef HAVE_CURSES
  3510. if (curses_active_locked()) {
  3511. change_logwinsize();
  3512. curses_print_status();
  3513. for (i = 0; i < mining_threads; i++)
  3514. curses_print_devstatus(i);
  3515. touchwin(statuswin);
  3516. wrefresh(statuswin);
  3517. touchwin(logwin);
  3518. wrefresh(logwin);
  3519. unlock_curses();
  3520. }
  3521. #endif
  3522. gettimeofday(&now, NULL);
  3523. if (!sched_paused && !should_run()) {
  3524. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  3525. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  3526. if (!schedstart.enable) {
  3527. quit(0, "Terminating execution as planned");
  3528. break;
  3529. }
  3530. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  3531. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  3532. sched_paused = true;
  3533. for (i = 0; i < mining_threads; i++) {
  3534. struct thr_info *thr;
  3535. thr = &thr_info[i];
  3536. thr->pause = true;
  3537. }
  3538. } else if (sched_paused && should_run()) {
  3539. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  3540. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  3541. if (schedstop.enable)
  3542. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  3543. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  3544. sched_paused = false;
  3545. for (i = 0; i < mining_threads; i++) {
  3546. struct thr_info *thr;
  3547. thr = &thr_info[i];
  3548. /* Don't touch disabled devices */
  3549. if (thr->cgpu->deven == DEV_DISABLED)
  3550. continue;
  3551. thr->pause = false;
  3552. tq_push(thr->q, &ping);
  3553. }
  3554. }
  3555. #ifdef HAVE_OPENCL
  3556. for (i = 0; i < total_devices; ++i) {
  3557. struct cgpu_info *cgpu = devices[i];
  3558. struct thr_info *thr = cgpu->thread;
  3559. enum dev_enable *denable;
  3560. int gpu;
  3561. if (cgpu->api != &opencl_api)
  3562. continue;
  3563. /* Use only one thread per device to determine if the GPU is healthy */
  3564. if (i >= nDevs)
  3565. break;
  3566. gpu = thr->cgpu->device_id;
  3567. denable = &cgpu->deven;
  3568. #ifdef HAVE_ADL
  3569. if (adl_active && gpus[gpu].has_adl)
  3570. gpu_autotune(gpu, denable);
  3571. if (opt_debug && gpus[gpu].has_adl) {
  3572. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  3573. float temp = 0, vddc = 0;
  3574. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  3575. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMhz V: %.3fV A: %d%% P: %d%%",
  3576. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  3577. }
  3578. #endif
  3579. /* Thread is waiting on getwork or disabled */
  3580. if (thr->getwork || *denable == DEV_DISABLED)
  3581. continue;
  3582. if (gpus[gpu].status != LIFE_WELL && now.tv_sec - thr->last.tv_sec < 60) {
  3583. applog(LOG_ERR, "Device %d recovered, GPU %d declared WELL!", i, gpu);
  3584. gpus[gpu].status = LIFE_WELL;
  3585. gpus[gpu].device_last_well = time(NULL);
  3586. } else if (now.tv_sec - thr->last.tv_sec > 60 && gpus[gpu].status == LIFE_WELL) {
  3587. thr->rolling = thr->cgpu->rolling = 0;
  3588. gpus[gpu].status = LIFE_SICK;
  3589. applog(LOG_ERR, "Device %d idle for more than 60 seconds, GPU %d declared SICK!", i, gpu);
  3590. gettimeofday(&thr->sick, NULL);
  3591. gpus[gpu].device_last_not_well = time(NULL);
  3592. gpus[gpu].device_not_well_reason = REASON_DEV_SICK_IDLE_60;
  3593. gpus[gpu].dev_sick_idle_60_count++;
  3594. #ifdef HAVE_ADL
  3595. if (adl_active && gpus[gpu].has_adl && gpu_activity(gpu) > 50) {
  3596. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  3597. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  3598. } else
  3599. #endif
  3600. if (opt_restart) {
  3601. applog(LOG_ERR, "Attempting to restart GPU");
  3602. reinit_device(thr->cgpu);
  3603. }
  3604. } else if (now.tv_sec - thr->last.tv_sec > 600 && gpus[i].status == LIFE_SICK) {
  3605. gpus[gpu].status = LIFE_DEAD;
  3606. applog(LOG_ERR, "Device %d not responding for more than 10 minutes, GPU %d declared DEAD!", i, gpu);
  3607. gettimeofday(&thr->sick, NULL);
  3608. gpus[gpu].device_last_not_well = time(NULL);
  3609. gpus[gpu].device_not_well_reason = REASON_DEV_DEAD_IDLE_600;
  3610. gpus[gpu].dev_dead_idle_600_count++;
  3611. } else if (now.tv_sec - thr->sick.tv_sec > 60 &&
  3612. (gpus[i].status == LIFE_SICK || gpus[i].status == LIFE_DEAD)) {
  3613. /* Attempt to restart a GPU that's sick or dead once every minute */
  3614. gettimeofday(&thr->sick, NULL);
  3615. #ifdef HAVE_ADL
  3616. if (adl_active && gpus[gpu].has_adl && gpu_activity(gpu) > 50) {
  3617. /* Again do not attempt to restart a device that may have hard hung */
  3618. } else
  3619. #endif
  3620. if (opt_restart)
  3621. reinit_device(thr->cgpu);
  3622. }
  3623. }
  3624. #endif
  3625. }
  3626. return NULL;
  3627. }
  3628. static void log_print_status(struct cgpu_info *cgpu)
  3629. {
  3630. char logline[255];
  3631. get_statline(logline, cgpu);
  3632. applog(LOG_WARNING, "%s", logline);
  3633. }
  3634. static void print_summary(void)
  3635. {
  3636. struct timeval diff;
  3637. int hours, mins, secs, i;
  3638. double utility, efficiency = 0.0;
  3639. timeval_subtract(&diff, &total_tv_end, &total_tv_start);
  3640. hours = diff.tv_sec / 3600;
  3641. mins = (diff.tv_sec % 3600) / 60;
  3642. secs = diff.tv_sec % 60;
  3643. utility = total_accepted / ( total_secs ? total_secs : 1 ) * 60;
  3644. efficiency = total_getworks ? total_accepted * 100.0 / total_getworks : 0.0;
  3645. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  3646. applog(LOG_WARNING, "Started at %s", datestamp);
  3647. if (total_pools == 1)
  3648. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  3649. #ifdef WANT_CPUMINE
  3650. if (opt_n_threads)
  3651. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  3652. #endif
  3653. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  3654. if (total_secs)
  3655. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  3656. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  3657. applog(LOG_WARNING, "Queued work requests: %d", total_getworks);
  3658. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  3659. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  3660. applog(LOG_WARNING, "Rejected shares: %d", total_rejected);
  3661. if (total_accepted || total_rejected)
  3662. applog(LOG_WARNING, "Reject ratio: %.1f%%", (double)(total_rejected * 100) / (double)(total_accepted + total_rejected));
  3663. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  3664. applog(LOG_WARNING, "Efficiency (accepted / queued): %.0f%%", efficiency);
  3665. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  3666. applog(LOG_WARNING, "Discarded work due to new blocks: %d", total_discarded);
  3667. applog(LOG_WARNING, "Stale submissions discarded due to new blocks: %d", total_stale);
  3668. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  3669. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  3670. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  3671. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  3672. if (total_pools > 1) {
  3673. for (i = 0; i < total_pools; i++) {
  3674. struct pool *pool = pools[i];
  3675. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  3676. applog(LOG_WARNING, " Queued work requests: %d", pool->getwork_requested);
  3677. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  3678. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  3679. applog(LOG_WARNING, " Rejected shares: %d", pool->rejected);
  3680. if (pool->accepted || pool->rejected)
  3681. applog(LOG_WARNING, " Reject ratio: %.1f%%", (double)(pool->rejected * 100) / (double)(pool->accepted + pool->rejected));
  3682. efficiency = pool->getwork_requested ? pool->accepted * 100.0 / pool->getwork_requested : 0.0;
  3683. applog(LOG_WARNING, " Efficiency (accepted / queued): %.0f%%", efficiency);
  3684. applog(LOG_WARNING, " Discarded work due to new blocks: %d", pool->discarded_work);
  3685. applog(LOG_WARNING, " Stale submissions discarded due to new blocks: %d", pool->stale_shares);
  3686. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  3687. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  3688. }
  3689. }
  3690. applog(LOG_WARNING, "Summary of per device statistics:\n");
  3691. for (i = 0; i < total_devices; ++i) {
  3692. if (devices[i]->deven == DEV_ENABLED)
  3693. log_print_status(devices[i]);
  3694. }
  3695. if (opt_shares)
  3696. applog(LOG_WARNING, "Mined %d accepted shares of %d requested\n", total_accepted, opt_shares);
  3697. fflush(stdout);
  3698. fflush(stderr);
  3699. if (opt_shares > total_accepted)
  3700. applog(LOG_WARNING, "WARNING - Mined only %d shares of %d requested.", total_accepted, opt_shares);
  3701. }
  3702. static void clean_up(void)
  3703. {
  3704. #ifdef HAVE_OPENCL
  3705. clear_adl(nDevs);
  3706. #endif
  3707. #ifdef HAVE_LIBUSB
  3708. libusb_exit(NULL);
  3709. #endif
  3710. gettimeofday(&total_tv_end, NULL);
  3711. #ifdef HAVE_CURSES
  3712. disable_curses();
  3713. #endif
  3714. if (!opt_realquiet && successful_connect)
  3715. print_summary();
  3716. if (opt_n_threads)
  3717. free(cpus);
  3718. curl_global_cleanup();
  3719. }
  3720. void quit(int status, const char *format, ...)
  3721. {
  3722. va_list ap;
  3723. clean_up();
  3724. if (format) {
  3725. va_start(ap, format);
  3726. vfprintf(stderr, format, ap);
  3727. va_end(ap);
  3728. }
  3729. fprintf(stderr, "\n");
  3730. fflush(stderr);
  3731. #if defined(unix)
  3732. if (forkpid > 0) {
  3733. kill(forkpid, SIGTERM);
  3734. forkpid = 0;
  3735. }
  3736. #endif
  3737. exit(status);
  3738. }
  3739. #ifdef HAVE_CURSES
  3740. char *curses_input(const char *query)
  3741. {
  3742. char *input;
  3743. echo();
  3744. input = malloc(255);
  3745. if (!input)
  3746. quit(1, "Failed to malloc input");
  3747. leaveok(logwin, false);
  3748. wlogprint("%s:\n", query);
  3749. wgetnstr(logwin, input, 255);
  3750. if (!strlen(input))
  3751. strcpy(input, "-1");
  3752. leaveok(logwin, true);
  3753. noecho();
  3754. return input;
  3755. }
  3756. #endif
  3757. int add_pool_details(bool live, char *url, char *user, char *pass)
  3758. {
  3759. struct pool *pool = NULL;
  3760. if (total_pools == MAX_POOLS)
  3761. return ADD_POOL_MAXIMUM;
  3762. pool = calloc(sizeof(struct pool), 1);
  3763. if (!pool)
  3764. quit(1, "Failed to realloc pools in add_pool_details");
  3765. pool->pool_no = total_pools;
  3766. pool->prio = total_pools;
  3767. if (unlikely(pthread_mutex_init(&pool->pool_lock, NULL)))
  3768. quit (1, "Failed to pthread_mutex_init in input_pool");
  3769. pool->rpc_url = url;
  3770. pool->rpc_user = user;
  3771. pool->rpc_pass = pass;
  3772. pool->rpc_userpass = malloc(strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2);
  3773. if (!pool->rpc_userpass)
  3774. quit(1, "Failed to malloc userpass");
  3775. sprintf(pool->rpc_userpass, "%s:%s", pool->rpc_user, pool->rpc_pass);
  3776. pool->tv_idle.tv_sec = ~0UL;
  3777. /* Test the pool is not idle if we're live running, otherwise
  3778. * it will be tested separately */
  3779. pool->enabled = true;
  3780. if (live && !pool_active(pool, false))
  3781. pool->idle = true;
  3782. pools[total_pools++] = pool;
  3783. return ADD_POOL_OK;
  3784. }
  3785. #ifdef HAVE_CURSES
  3786. static bool input_pool(bool live)
  3787. {
  3788. char *url = NULL, *user = NULL, *pass = NULL;
  3789. bool ret = false;
  3790. immedok(logwin, true);
  3791. if (total_pools == MAX_POOLS) {
  3792. wlogprint("Reached maximum number of pools.\n");
  3793. goto out;
  3794. }
  3795. wlogprint("Input server details.\n");
  3796. url = curses_input("URL");
  3797. if (!url)
  3798. goto out;
  3799. if (strncmp(url, "http://", 7) &&
  3800. strncmp(url, "https://", 8)) {
  3801. char *httpinput;
  3802. httpinput = malloc(255);
  3803. if (!httpinput)
  3804. quit(1, "Failed to malloc httpinput");
  3805. strcpy(httpinput, "http://");
  3806. strncat(httpinput, url, 248);
  3807. free(url);
  3808. url = httpinput;
  3809. }
  3810. user = curses_input("Username");
  3811. if (!user)
  3812. goto out;
  3813. pass = curses_input("Password");
  3814. if (!pass)
  3815. goto out;
  3816. ret = (add_pool_details(live, url, user, pass) == ADD_POOL_OK);
  3817. out:
  3818. immedok(logwin, false);
  3819. if (!ret) {
  3820. if (url)
  3821. free(url);
  3822. if (user)
  3823. free(user);
  3824. if (pass)
  3825. free(pass);
  3826. }
  3827. return ret;
  3828. }
  3829. #endif
  3830. #if defined(unix)
  3831. static void fork_monitor()
  3832. {
  3833. // Make a pipe: [readFD, writeFD]
  3834. int pfd[2];
  3835. int r = pipe(pfd);
  3836. if (r<0) {
  3837. perror("pipe - failed to create pipe for --monitor");
  3838. exit(1);
  3839. }
  3840. // Make stderr write end of pipe
  3841. fflush(stderr);
  3842. r = dup2(pfd[1], 2);
  3843. if (r<0) {
  3844. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  3845. exit(1);
  3846. }
  3847. r = close(pfd[1]);
  3848. if (r<0) {
  3849. perror("close - failed to close write end of pipe for --monitor");
  3850. exit(1);
  3851. }
  3852. // Don't allow a dying monitor to kill the main process
  3853. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  3854. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  3855. if (SIG_ERR==sr0 || SIG_ERR==sr1) {
  3856. perror("signal - failed to edit signal mask for --monitor");
  3857. exit(1);
  3858. }
  3859. // Fork a child process
  3860. forkpid = fork();
  3861. if (forkpid<0) {
  3862. perror("fork - failed to fork child process for --monitor");
  3863. exit(1);
  3864. }
  3865. // Child: launch monitor command
  3866. if (0==forkpid) {
  3867. // Make stdin read end of pipe
  3868. r = dup2(pfd[0], 0);
  3869. if (r<0) {
  3870. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  3871. exit(1);
  3872. }
  3873. close(pfd[0]);
  3874. if (r<0) {
  3875. perror("close - in child, failed to close read end of pipe for --monitor");
  3876. exit(1);
  3877. }
  3878. // Launch user specified command
  3879. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  3880. perror("execl - in child failed to exec user specified command for --monitor");
  3881. exit(1);
  3882. }
  3883. // Parent: clean up unused fds and bail
  3884. r = close(pfd[0]);
  3885. if (r<0) {
  3886. perror("close - failed to close read end of pipe for --monitor");
  3887. exit(1);
  3888. }
  3889. }
  3890. #endif // defined(unix)
  3891. #ifdef HAVE_CURSES
  3892. void enable_curses(void) {
  3893. int x,y;
  3894. lock_curses();
  3895. if (curses_active) {
  3896. unlock_curses();
  3897. return;
  3898. }
  3899. mainwin = initscr();
  3900. getmaxyx(mainwin, y, x);
  3901. statuswin = newwin(logstart, x, 0, 0);
  3902. leaveok(statuswin, true);
  3903. logwin = newwin(y - logcursor, 0, logcursor, 0);
  3904. idlok(logwin, true);
  3905. scrollok(logwin, true);
  3906. leaveok(logwin, true);
  3907. cbreak();
  3908. noecho();
  3909. curses_active = true;
  3910. statusy = logstart;
  3911. unlock_curses();
  3912. }
  3913. #endif
  3914. /* TODO: fix need a dummy CPU device_api even if no support for CPU mining */
  3915. #ifndef WANT_CPUMINE
  3916. struct device_api cpu_api;
  3917. struct device_api cpu_api = {
  3918. .name = "CPU",
  3919. };
  3920. #endif
  3921. #ifdef USE_BITFORCE
  3922. extern struct device_api bitforce_api;
  3923. #endif
  3924. #ifdef USE_ICARUS
  3925. extern struct device_api icarus_api;
  3926. #endif
  3927. #ifdef USE_ZTEX
  3928. extern struct device_api ztex_api;
  3929. #endif
  3930. static int cgminer_id_count = 0;
  3931. void enable_device(struct cgpu_info *cgpu)
  3932. {
  3933. cgpu->deven = DEV_ENABLED;
  3934. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  3935. mining_threads += cgpu->threads;
  3936. #ifdef HAVE_OPENCL
  3937. if (cgpu->api == &opencl_api) {
  3938. gpu_threads += cgpu->threads;
  3939. }
  3940. #endif
  3941. }
  3942. struct _cgpu_devid_counter {
  3943. char name[4];
  3944. int lastid;
  3945. UT_hash_handle hh;
  3946. };
  3947. bool add_cgpu(struct cgpu_info*cgpu)
  3948. {
  3949. static struct _cgpu_devid_counter *devids = NULL;
  3950. struct _cgpu_devid_counter *d;
  3951. HASH_FIND_STR(devids, cgpu->api->name, d);
  3952. if (d)
  3953. cgpu->device_id = ++d->lastid;
  3954. else
  3955. {
  3956. d = malloc(sizeof(*d));
  3957. memcpy(d->name, cgpu->api->name, sizeof(d->name));
  3958. cgpu->device_id = d->lastid = 0;
  3959. HASH_ADD_STR(devids, name, d);
  3960. }
  3961. devices[total_devices++] = cgpu;
  3962. return true;
  3963. }
  3964. int main(int argc, char *argv[])
  3965. {
  3966. struct block *block, *tmpblock;
  3967. struct work *work, *tmpwork;
  3968. bool pools_active = false;
  3969. struct sigaction handler;
  3970. struct thr_info *thr;
  3971. unsigned int k;
  3972. int i, j;
  3973. /* This dangerous functions tramples random dynamically allocated
  3974. * variables so do it before anything at all */
  3975. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  3976. quit(1, "Failed to curl_global_init");
  3977. initial_args = malloc(sizeof(char *) * (argc + 1));
  3978. for (i = 0; i < argc; i++)
  3979. initial_args[i] = strdup(argv[i]);
  3980. initial_args[argc] = NULL;
  3981. #ifdef HAVE_LIBUSB
  3982. libusb_init(NULL);
  3983. #endif
  3984. mutex_init(&hash_lock);
  3985. mutex_init(&qd_lock);
  3986. #ifdef HAVE_CURSES
  3987. mutex_init(&curses_lock);
  3988. #endif
  3989. mutex_init(&control_lock);
  3990. mutex_init(&sharelog_lock);
  3991. rwlock_init(&blk_lock);
  3992. rwlock_init(&netacc_lock);
  3993. sprintf(packagename, "%s %s", PACKAGE, VERSION);
  3994. #ifdef WANT_CPUMINE
  3995. init_max_name_len();
  3996. #endif
  3997. handler.sa_handler = &sighandler;
  3998. handler.sa_flags = 0;
  3999. sigemptyset(&handler.sa_mask);
  4000. sigaction(SIGTERM, &handler, &termhandler);
  4001. sigaction(SIGINT, &handler, &inthandler);
  4002. opt_kernel_path = alloca(PATH_MAX);
  4003. strcpy(opt_kernel_path, CGMINER_PREFIX);
  4004. cgminer_path = alloca(PATH_MAX);
  4005. strcpy(cgminer_path, dirname(argv[0]));
  4006. strcat(cgminer_path, "/");
  4007. #ifdef WANT_CPUMINE
  4008. // Hack to make cgminer silent when called recursively on WIN32
  4009. int skip_to_bench = 0;
  4010. #if defined(WIN32)
  4011. char buf[32];
  4012. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  4013. skip_to_bench = 1;
  4014. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  4015. skip_to_bench = 1;
  4016. #endif // defined(WIN32)
  4017. #endif
  4018. devcursor = 8;
  4019. logstart = devcursor + 1;
  4020. logcursor = logstart + 1;
  4021. block = calloc(sizeof(struct block), 1);
  4022. if (unlikely(!block))
  4023. quit (1, "main OOM");
  4024. for (i = 0; i < 36; i++)
  4025. strcat(block->hash, "0");
  4026. HASH_ADD_STR(blocks, hash, block);
  4027. strcpy(current_block, block->hash);
  4028. INIT_LIST_HEAD(&scan_devices);
  4029. memset(gpus, 0, sizeof(gpus));
  4030. for (i = 0; i < MAX_GPUDEVICES; i++)
  4031. gpus[i].dynamic = true;
  4032. memset(devices, 0, sizeof(devices));
  4033. /* parse command line */
  4034. opt_register_table(opt_config_table,
  4035. "Options for both config file and command line");
  4036. opt_register_table(opt_cmdline_table,
  4037. "Options for command line only");
  4038. opt_parse(&argc, argv, applog_and_exit);
  4039. if (argc != 1)
  4040. quit(1, "Unexpected extra commandline arguments");
  4041. if (!config_loaded)
  4042. load_default_config();
  4043. if (opt_benchmark) {
  4044. struct pool *pool;
  4045. want_longpoll = false;
  4046. pool = calloc(sizeof(struct pool), 1);
  4047. pool->pool_no = 0;
  4048. pools[total_pools++] = pool;
  4049. pthread_mutex_init(&pool->pool_lock, NULL);
  4050. pool->rpc_url = malloc(255);
  4051. strcpy(pool->rpc_url, "Benchmark");
  4052. pool->rpc_user = pool->rpc_url;
  4053. pool->rpc_pass = pool->rpc_url;
  4054. pool->enabled = true;
  4055. pool->idle = false;
  4056. successful_connect = true;
  4057. }
  4058. #ifdef HAVE_CURSES
  4059. if (opt_realquiet || devices_enabled == -1)
  4060. use_curses = false;
  4061. if (use_curses)
  4062. enable_curses();
  4063. #endif
  4064. applog(LOG_WARNING, "Started %s", packagename);
  4065. if (cnfbuf) {
  4066. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  4067. switch (fileconf_load) {
  4068. case 0:
  4069. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  4070. applog(LOG_WARNING, "Configuration file could not be used.");
  4071. break;
  4072. case -1:
  4073. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  4074. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  4075. break;
  4076. default:
  4077. break;
  4078. }
  4079. free(cnfbuf);
  4080. cnfbuf = NULL;
  4081. }
  4082. strcat(opt_kernel_path, "/");
  4083. if (want_per_device_stats)
  4084. opt_log_output = true;
  4085. #ifdef WANT_CPUMINE
  4086. if (0<=opt_bench_algo) {
  4087. double rate = bench_algo_stage3(opt_bench_algo);
  4088. if (!skip_to_bench) {
  4089. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  4090. } else {
  4091. // Write result to shared memory for parent
  4092. #if defined(WIN32)
  4093. char unique_name[64];
  4094. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  4095. HANDLE map_handle = CreateFileMapping(
  4096. INVALID_HANDLE_VALUE, // use paging file
  4097. NULL, // default security attributes
  4098. PAGE_READWRITE, // read/write access
  4099. 0, // size: high 32-bits
  4100. 4096, // size: low 32-bits
  4101. unique_name // name of map object
  4102. );
  4103. if (NULL!=map_handle) {
  4104. void *shared_mem = MapViewOfFile(
  4105. map_handle, // object to map view of
  4106. FILE_MAP_WRITE, // read/write access
  4107. 0, // high offset: map from
  4108. 0, // low offset: beginning
  4109. 0 // default: map entire file
  4110. );
  4111. if (NULL!=shared_mem)
  4112. CopyMemory(shared_mem, &rate, sizeof(rate));
  4113. (void)UnmapViewOfFile(shared_mem);
  4114. }
  4115. (void)CloseHandle(map_handle);
  4116. }
  4117. #endif
  4118. }
  4119. exit(0);
  4120. }
  4121. #endif
  4122. #ifdef HAVE_OPENCL
  4123. if (!opt_nogpu)
  4124. opencl_api.api_detect();
  4125. #endif
  4126. #ifdef USE_ICARUS
  4127. icarus_api.api_detect();
  4128. #endif
  4129. #ifdef USE_BITFORCE
  4130. bitforce_api.api_detect();
  4131. #endif
  4132. #ifdef USE_ZTEX
  4133. ztex_api.api_detect();
  4134. #endif
  4135. #ifdef WANT_CPUMINE
  4136. cpu_api.api_detect();
  4137. #endif
  4138. if (devices_enabled == -1) {
  4139. applog(LOG_ERR, "Devices detected:");
  4140. for (i = 0; i < total_devices; ++i) {
  4141. struct cgpu_info *cgpu = devices[i];
  4142. if (cgpu->name)
  4143. applog(LOG_ERR, " %2d. %s %d: %s (driver: %s)", i, cgpu->api->name, cgpu->device_id, cgpu->name, cgpu->api->dname);
  4144. else
  4145. applog(LOG_ERR, " %2d. %s %d (driver: %s)", i, cgpu->api->name, cgpu->device_id, cgpu->api->dname);
  4146. }
  4147. quit(0, "%d devices listed", total_devices);
  4148. }
  4149. mining_threads = 0;
  4150. gpu_threads = 0;
  4151. if (devices_enabled) {
  4152. for (i = 0; i < (int)(sizeof(devices_enabled) * 8) - 1; ++i) {
  4153. if (devices_enabled & (1 << i)) {
  4154. if (i >= total_devices)
  4155. quit (1, "Command line options set a device that doesn't exist");
  4156. enable_device(devices[i]);
  4157. } else if (i < total_devices) {
  4158. if (opt_removedisabled) {
  4159. if (devices[i]->api == &cpu_api)
  4160. --opt_n_threads;
  4161. } else {
  4162. enable_device(devices[i]);
  4163. }
  4164. devices[i]->deven = DEV_DISABLED;
  4165. }
  4166. }
  4167. total_devices = cgminer_id_count;
  4168. } else {
  4169. for (i = 0; i < total_devices; ++i)
  4170. enable_device(devices[i]);
  4171. }
  4172. if (!total_devices)
  4173. quit(1, "All devices disabled, cannot mine!");
  4174. load_temp_cutoffs();
  4175. logstart += total_devices;
  4176. logcursor = logstart + 1;
  4177. #ifdef HAVE_CURSES
  4178. check_winsizes();
  4179. #endif
  4180. if (!total_pools) {
  4181. applog(LOG_WARNING, "Need to specify at least one pool server.");
  4182. #ifdef HAVE_CURSES
  4183. if (!use_curses || !input_pool(false))
  4184. #endif
  4185. quit(1, "Pool setup failed");
  4186. }
  4187. for (i = 0; i < total_pools; i++) {
  4188. struct pool *pool = pools[i];
  4189. if (!pool->rpc_userpass) {
  4190. if (!pool->rpc_user || !pool->rpc_pass)
  4191. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  4192. pool->rpc_userpass = malloc(strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2);
  4193. if (!pool->rpc_userpass)
  4194. quit(1, "Failed to malloc userpass");
  4195. sprintf(pool->rpc_userpass, "%s:%s", pool->rpc_user, pool->rpc_pass);
  4196. } else {
  4197. pool->rpc_user = malloc(strlen(pool->rpc_userpass) + 1);
  4198. if (!pool->rpc_user)
  4199. quit(1, "Failed to malloc user");
  4200. strcpy(pool->rpc_user, pool->rpc_userpass);
  4201. pool->rpc_user = strtok(pool->rpc_user, ":");
  4202. if (!pool->rpc_user)
  4203. quit(1, "Failed to find colon delimiter in userpass");
  4204. }
  4205. }
  4206. /* Set the currentpool to pool 0 */
  4207. currentpool = pools[0];
  4208. #ifdef HAVE_SYSLOG_H
  4209. if (use_syslog)
  4210. openlog(PACKAGE, LOG_PID, LOG_USER);
  4211. #endif
  4212. #if defined(unix)
  4213. if (opt_stderr_cmd)
  4214. fork_monitor();
  4215. #endif // defined(unix)
  4216. total_threads = mining_threads + 8;
  4217. work_restart = calloc(total_threads, sizeof(*work_restart));
  4218. if (!work_restart)
  4219. quit(1, "Failed to calloc work_restart");
  4220. thr_info = calloc(total_threads, sizeof(*thr));
  4221. if (!thr_info)
  4222. quit(1, "Failed to calloc thr_info");
  4223. /* init workio thread info */
  4224. work_thr_id = mining_threads;
  4225. thr = &thr_info[work_thr_id];
  4226. thr->id = work_thr_id;
  4227. thr->q = tq_new();
  4228. if (!thr->q)
  4229. quit(1, "Failed to tq_new");
  4230. /* start work I/O thread */
  4231. if (thr_info_create(thr, NULL, workio_thread, thr))
  4232. quit(1, "workio thread create failed");
  4233. /* init longpoll thread info */
  4234. longpoll_thr_id = mining_threads + 1;
  4235. thr = &thr_info[longpoll_thr_id];
  4236. thr->id = longpoll_thr_id;
  4237. thr->q = tq_new();
  4238. if (!thr->q)
  4239. quit(1, "Failed to tq_new");
  4240. stage_thr_id = mining_threads + 2;
  4241. thr = &thr_info[stage_thr_id];
  4242. thr->q = tq_new();
  4243. if (!thr->q)
  4244. quit(1, "Failed to tq_new");
  4245. /* start stage thread */
  4246. if (thr_info_create(thr, NULL, stage_thread, thr))
  4247. quit(1, "stage thread create failed");
  4248. pthread_detach(thr->pth);
  4249. /* Create a unique get work queue */
  4250. getq = tq_new();
  4251. if (!getq)
  4252. quit(1, "Failed to create getq");
  4253. /* We use the getq mutex as the staged lock */
  4254. stgd_lock = &getq->mutex;
  4255. if (opt_benchmark)
  4256. goto begin_bench;
  4257. for (i = 0; i < total_pools; i++) {
  4258. struct pool *pool = pools[i];
  4259. pool->enabled = true;
  4260. pool->idle = true;
  4261. }
  4262. applog(LOG_NOTICE, "Probing for an alive pool");
  4263. do {
  4264. /* Look for at least one active pool before starting */
  4265. for (i = 0; i < total_pools; i++) {
  4266. struct pool *pool = pools[i];
  4267. if (pool_active(pool, false)) {
  4268. if (!currentpool)
  4269. currentpool = pool;
  4270. applog(LOG_INFO, "Pool %d %s active", pool->pool_no, pool->rpc_url);
  4271. pools_active = true;
  4272. break;
  4273. } else {
  4274. if (pool == currentpool)
  4275. currentpool = NULL;
  4276. applog(LOG_WARNING, "Unable to get work from pool %d %s", pool->pool_no, pool->rpc_url);
  4277. }
  4278. }
  4279. if (!pools_active) {
  4280. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  4281. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  4282. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  4283. for (i = 0; i < total_pools; i++) {
  4284. struct pool *pool;
  4285. pool = pools[i];
  4286. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  4287. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  4288. }
  4289. #ifdef HAVE_CURSES
  4290. if (use_curses) {
  4291. halfdelay(150);
  4292. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  4293. if (getch() != ERR)
  4294. quit(0, "No servers could be used! Exiting.");
  4295. nocbreak();
  4296. } else
  4297. #endif
  4298. quit(0, "No servers could be used! Exiting.");
  4299. }
  4300. } while (!pools_active);
  4301. if (want_longpoll)
  4302. start_longpoll();
  4303. begin_bench:
  4304. total_mhashes_done = 0;
  4305. for (i = 0; i < total_devices; i++) {
  4306. struct cgpu_info *cgpu = devices[i];
  4307. cgpu->rolling = cgpu->total_mhashes = 0;
  4308. }
  4309. gettimeofday(&total_tv_start, NULL);
  4310. gettimeofday(&total_tv_end, NULL);
  4311. get_datestamp(datestamp, &total_tv_start);
  4312. #ifndef HAVE_OPENCL
  4313. opt_g_threads = 0;
  4314. #endif
  4315. // Start threads
  4316. k = 0;
  4317. for (i = 0; i < total_devices; ++i) {
  4318. struct cgpu_info *cgpu = devices[i];
  4319. for (j = 0; j < cgpu->threads; ++j, ++k) {
  4320. thr = &thr_info[k];
  4321. thr->id = k;
  4322. thr->cgpu = cgpu;
  4323. thr->device_thread = j;
  4324. thr->q = tq_new();
  4325. if (!thr->q)
  4326. quit(1, "tq_new failed in starting %s%d mining thread (#%d)", cgpu->api->name, cgpu->device_id, i);
  4327. /* Enable threads for devices set not to mine but disable
  4328. * their queue in case we wish to enable them later */
  4329. if (cgpu->deven != DEV_DISABLED) {
  4330. applog(LOG_DEBUG, "Pushing ping to thread %d", thr->id);
  4331. tq_push(thr->q, &ping);
  4332. }
  4333. if (cgpu->api->thread_prepare && !cgpu->api->thread_prepare(thr))
  4334. continue;
  4335. thread_reportout(thr);
  4336. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  4337. quit(1, "thread %d create failed", thr->id);
  4338. cgpu->thread = thr;
  4339. }
  4340. }
  4341. #ifdef HAVE_OPENCL
  4342. applog(LOG_INFO, "%d gpu miner threads started", gpu_threads);
  4343. for (i = 0; i < nDevs; i++)
  4344. pause_dynamic_threads(i);
  4345. #endif
  4346. #ifdef WANT_CPUMINE
  4347. applog(LOG_INFO, "%d cpu miner threads started, "
  4348. "using SHA256 '%s' algorithm.",
  4349. opt_n_threads,
  4350. algo_names[opt_algo]);
  4351. #endif
  4352. gettimeofday(&total_tv_start, NULL);
  4353. gettimeofday(&total_tv_end, NULL);
  4354. watchpool_thr_id = mining_threads + 3;
  4355. thr = &thr_info[watchpool_thr_id];
  4356. /* start watchpool thread */
  4357. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  4358. quit(1, "watchpool thread create failed");
  4359. pthread_detach(thr->pth);
  4360. watchdog_thr_id = mining_threads + 4;
  4361. thr = &thr_info[watchdog_thr_id];
  4362. /* start watchdog thread */
  4363. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  4364. quit(1, "watchdog thread create failed");
  4365. pthread_detach(thr->pth);
  4366. /* Create reinit gpu thread */
  4367. gpur_thr_id = mining_threads + 5;
  4368. thr = &thr_info[gpur_thr_id];
  4369. thr->q = tq_new();
  4370. if (!thr->q)
  4371. quit(1, "tq_new failed for gpur_thr_id");
  4372. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  4373. quit(1, "reinit_gpu thread create failed");
  4374. /* Create API socket thread */
  4375. api_thr_id = mining_threads + 6;
  4376. thr = &thr_info[api_thr_id];
  4377. if (thr_info_create(thr, NULL, api_thread, thr))
  4378. quit(1, "API thread create failed");
  4379. pthread_detach(thr->pth);
  4380. #ifdef HAVE_CURSES
  4381. /* Create curses input thread for keyboard input. Create this last so
  4382. * that we know all threads are created since this can call kill_work
  4383. * to try and shut down ll previous threads. */
  4384. input_thr_id = mining_threads + 7;
  4385. thr = &thr_info[input_thr_id];
  4386. if (thr_info_create(thr, NULL, input_thread, thr))
  4387. quit(1, "input thread create failed");
  4388. pthread_detach(thr->pth);
  4389. #endif
  4390. /* main loop - simply wait for workio thread to exit. This is not the
  4391. * normal exit path and only occurs should the workio_thread die
  4392. * unexpectedly */
  4393. pthread_join(thr_info[work_thr_id].pth, NULL);
  4394. applog(LOG_INFO, "workio thread dead, exiting.");
  4395. clean_up();
  4396. /* Not really necessary, but let's clean this up too anyway */
  4397. HASH_ITER(hh, staged_work, work, tmpwork) {
  4398. HASH_DEL(staged_work, work);
  4399. free_work(work);
  4400. }
  4401. HASH_ITER(hh, blocks, block, tmpblock) {
  4402. HASH_DEL(blocks, block);
  4403. free(block);
  4404. }
  4405. #if defined(unix)
  4406. if (forkpid > 0) {
  4407. kill(forkpid, SIGTERM);
  4408. forkpid = 0;
  4409. }
  4410. #endif
  4411. return 0;
  4412. }