miner.c 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <limits.h>
  22. #include <locale.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <sys/time.h>
  30. #include <time.h>
  31. #include <math.h>
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #include <signal.h>
  35. #include <wctype.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <dirent.h>
  39. #ifdef HAVE_PWD_H
  40. #include <pwd.h>
  41. #endif
  42. #ifndef WIN32
  43. #include <sys/resource.h>
  44. #include <sys/socket.h>
  45. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  46. #include <libudev.h>
  47. #include <sys/epoll.h>
  48. #define HAVE_BFG_HOTPLUG
  49. #endif
  50. #else
  51. #include <winsock2.h>
  52. #include <windows.h>
  53. #include <dbt.h>
  54. #define HAVE_BFG_HOTPLUG
  55. #endif
  56. #include <ccan/opt/opt.h>
  57. #include <jansson.h>
  58. #include <curl/curl.h>
  59. #include <libgen.h>
  60. #include <sha2.h>
  61. #include <utlist.h>
  62. #include <blkmaker.h>
  63. #include <blkmaker_jansson.h>
  64. #include <blktemplate.h>
  65. #include "compat.h"
  66. #include "deviceapi.h"
  67. #include "logging.h"
  68. #include "miner.h"
  69. #include "adl.h"
  70. #include "driver-cpu.h"
  71. #include "driver-opencl.h"
  72. #include "scrypt.h"
  73. #ifdef USE_AVALON
  74. #include "driver-avalon.h"
  75. #endif
  76. #ifdef HAVE_BFG_LOWLEVEL
  77. #include "lowlevel.h"
  78. #endif
  79. #if defined(unix) || defined(__APPLE__)
  80. #include <errno.h>
  81. #include <fcntl.h>
  82. #include <sys/wait.h>
  83. #endif
  84. #ifdef USE_SCRYPT
  85. #include "scrypt.h"
  86. #endif
  87. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  88. # define USE_FPGA
  89. #endif
  90. enum bfg_quit_summary {
  91. BQS_DEFAULT,
  92. BQS_NONE,
  93. BQS_DEVS,
  94. BQS_PROCS,
  95. BQS_DETAILED,
  96. };
  97. struct strategies strategies[] = {
  98. { "Failover" },
  99. { "Round Robin" },
  100. { "Rotate" },
  101. { "Load Balance" },
  102. { "Balance" },
  103. };
  104. static char packagename[256];
  105. bool opt_protocol;
  106. bool opt_dev_protocol;
  107. static bool opt_benchmark;
  108. static bool want_longpoll = true;
  109. static bool want_gbt = true;
  110. static bool want_getwork = true;
  111. #if BLKMAKER_VERSION > 1
  112. struct _cbscript_t {
  113. char *data;
  114. size_t sz;
  115. };
  116. static struct _cbscript_t opt_coinbase_script;
  117. static uint32_t template_nonce;
  118. #endif
  119. #if BLKMAKER_VERSION > 0
  120. char *opt_coinbase_sig;
  121. #endif
  122. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  123. static bool include_serial_in_statline;
  124. char *request_target_str;
  125. float request_pdiff = 1.0;
  126. double request_bdiff;
  127. static bool want_stratum = true;
  128. bool have_longpoll;
  129. int opt_skip_checks;
  130. bool want_per_device_stats;
  131. bool use_syslog;
  132. bool opt_quiet_work_updates;
  133. bool opt_quiet;
  134. bool opt_realquiet;
  135. int loginput_size;
  136. bool opt_compact;
  137. bool opt_show_procs;
  138. const int opt_cutofftemp = 95;
  139. int opt_hysteresis = 3;
  140. static int opt_retries = -1;
  141. int opt_fail_pause = 5;
  142. int opt_log_interval = 20;
  143. int opt_queue = 1;
  144. int opt_scantime = 60;
  145. int opt_expiry = 120;
  146. int opt_expiry_lp = 3600;
  147. unsigned long long global_hashrate;
  148. static bool opt_unittest = false;
  149. unsigned long global_quota_gcd = 1;
  150. time_t last_getwork;
  151. #ifdef HAVE_OPENCL
  152. int opt_dynamic_interval = 7;
  153. int nDevs;
  154. int opt_g_threads = -1;
  155. #endif
  156. #ifdef USE_SCRYPT
  157. static char detect_algo = 1;
  158. bool opt_scrypt;
  159. #else
  160. static char detect_algo;
  161. #endif
  162. bool opt_restart = true;
  163. #ifdef USE_LIBMICROHTTPD
  164. #include "httpsrv.h"
  165. int httpsrv_port = -1;
  166. #endif
  167. #ifdef USE_LIBEVENT
  168. int stratumsrv_port = -1;
  169. #endif
  170. const
  171. int rescan_delay_ms = 1000;
  172. #ifdef HAVE_BFG_HOTPLUG
  173. bool opt_hotplug = 1;
  174. const
  175. int hotplug_delay_ms = 100;
  176. #else
  177. const bool opt_hotplug;
  178. #endif
  179. struct string_elist *scan_devices;
  180. static struct string_elist *opt_set_device_list;
  181. bool opt_force_dev_init;
  182. static struct string_elist *opt_devices_enabled_list;
  183. static bool opt_display_devs;
  184. int total_devices;
  185. struct cgpu_info **devices;
  186. int total_devices_new;
  187. struct cgpu_info **devices_new;
  188. bool have_opencl;
  189. int opt_n_threads = -1;
  190. int mining_threads;
  191. int num_processors;
  192. #ifdef HAVE_CURSES
  193. bool use_curses = true;
  194. #else
  195. bool use_curses;
  196. #endif
  197. #ifdef HAVE_LIBUSB
  198. bool have_libusb;
  199. #endif
  200. static bool opt_submit_stale = true;
  201. static float opt_shares;
  202. static int opt_submit_threads = 0x40;
  203. bool opt_fail_only;
  204. bool opt_autofan;
  205. bool opt_autoengine;
  206. bool opt_noadl;
  207. char *opt_api_allow = NULL;
  208. char *opt_api_groups;
  209. char *opt_api_description = PACKAGE_STRING;
  210. int opt_api_port = 4028;
  211. bool opt_api_listen;
  212. bool opt_api_mcast;
  213. char *opt_api_mcast_addr = API_MCAST_ADDR;
  214. char *opt_api_mcast_code = API_MCAST_CODE;
  215. char *opt_api_mcast_des = "";
  216. int opt_api_mcast_port = 4028;
  217. bool opt_api_network;
  218. bool opt_delaynet;
  219. bool opt_disable_pool;
  220. static bool no_work;
  221. bool opt_worktime;
  222. bool opt_weighed_stats;
  223. char *opt_kernel_path;
  224. char *cgminer_path;
  225. #if defined(USE_BITFORCE)
  226. bool opt_bfl_noncerange;
  227. #endif
  228. #define QUIET (opt_quiet || opt_realquiet)
  229. struct thr_info *control_thr;
  230. struct thr_info **mining_thr;
  231. static int gwsched_thr_id;
  232. static int watchpool_thr_id;
  233. static int watchdog_thr_id;
  234. #ifdef HAVE_CURSES
  235. static int input_thr_id;
  236. #endif
  237. int gpur_thr_id;
  238. static int api_thr_id;
  239. static int total_control_threads;
  240. pthread_mutex_t hash_lock;
  241. static pthread_mutex_t *stgd_lock;
  242. pthread_mutex_t console_lock;
  243. cglock_t ch_lock;
  244. static pthread_rwlock_t blk_lock;
  245. static pthread_mutex_t sshare_lock;
  246. pthread_rwlock_t netacc_lock;
  247. pthread_rwlock_t mining_thr_lock;
  248. pthread_rwlock_t devices_lock;
  249. static pthread_mutex_t lp_lock;
  250. static pthread_cond_t lp_cond;
  251. pthread_cond_t gws_cond;
  252. bool shutting_down;
  253. double total_rolling;
  254. double total_mhashes_done;
  255. static struct timeval total_tv_start, total_tv_end;
  256. static struct timeval miner_started;
  257. cglock_t control_lock;
  258. pthread_mutex_t stats_lock;
  259. static pthread_mutex_t submitting_lock;
  260. static int total_submitting;
  261. static struct work *submit_waiting;
  262. notifier_t submit_waiting_notifier;
  263. int hw_errors;
  264. int total_accepted, total_rejected;
  265. int total_getworks, total_stale, total_discarded;
  266. uint64_t total_bytes_rcvd, total_bytes_sent;
  267. double total_diff1, total_bad_diff1;
  268. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  269. static int staged_rollable;
  270. unsigned int new_blocks;
  271. unsigned int found_blocks;
  272. unsigned int local_work;
  273. unsigned int total_go, total_ro;
  274. struct pool **pools;
  275. static struct pool *currentpool = NULL;
  276. int total_pools, enabled_pools;
  277. enum pool_strategy pool_strategy = POOL_FAILOVER;
  278. int opt_rotate_period;
  279. static int total_urls, total_users, total_passes;
  280. static
  281. #ifndef HAVE_CURSES
  282. const
  283. #endif
  284. bool curses_active;
  285. #ifdef HAVE_CURSES
  286. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  287. const
  288. #endif
  289. short default_bgcolor = COLOR_BLACK;
  290. static int attr_title = A_BOLD;
  291. #endif
  292. static
  293. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  294. bool use_unicode;
  295. static
  296. bool have_unicode_degrees;
  297. static
  298. wchar_t unicode_micro = 'u';
  299. #else
  300. const bool use_unicode;
  301. static
  302. const bool have_unicode_degrees;
  303. static
  304. const char unicode_micro = 'u';
  305. #endif
  306. #ifdef HAVE_CURSES
  307. #define U8_BAD_START "\xef\x80\x81"
  308. #define U8_BAD_END "\xef\x80\x80"
  309. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  310. bool selecting_device;
  311. unsigned selected_device;
  312. #endif
  313. static char current_block[40];
  314. /* Protected by ch_lock */
  315. static char *current_hash;
  316. static uint32_t current_block_id;
  317. char *current_fullhash;
  318. static char datestamp[40];
  319. static char blocktime[32];
  320. time_t block_time;
  321. static char best_share[8] = "0";
  322. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  323. static char block_diff[8];
  324. static char net_hashrate[10];
  325. double best_diff = 0;
  326. static bool known_blkheight_current;
  327. static uint32_t known_blkheight;
  328. static uint32_t known_blkheight_blkid;
  329. static uint64_t block_subsidy;
  330. struct block {
  331. char hash[40];
  332. UT_hash_handle hh;
  333. int block_no;
  334. };
  335. static struct block *blocks = NULL;
  336. int swork_id;
  337. /* For creating a hash database of stratum shares submitted that have not had
  338. * a response yet */
  339. struct stratum_share {
  340. UT_hash_handle hh;
  341. bool block;
  342. struct work *work;
  343. int id;
  344. };
  345. static struct stratum_share *stratum_shares = NULL;
  346. char *opt_socks_proxy = NULL;
  347. static const char def_conf[] = "bfgminer.conf";
  348. static bool config_loaded;
  349. static int include_count;
  350. #define JSON_INCLUDE_CONF "include"
  351. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  352. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  353. #define JSON_MAX_DEPTH 10
  354. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  355. char *cmd_idle, *cmd_sick, *cmd_dead;
  356. #if defined(unix) || defined(__APPLE__)
  357. static char *opt_stderr_cmd = NULL;
  358. static int forkpid;
  359. #endif // defined(unix)
  360. #ifdef HAVE_CHROOT
  361. char *chroot_dir;
  362. #endif
  363. #ifdef HAVE_PWD_H
  364. char *opt_setuid;
  365. #endif
  366. struct sigaction termhandler, inthandler;
  367. struct thread_q *getq;
  368. static int total_work;
  369. static bool staged_full;
  370. struct work *staged_work = NULL;
  371. struct schedtime {
  372. bool enable;
  373. struct tm tm;
  374. };
  375. struct schedtime schedstart;
  376. struct schedtime schedstop;
  377. bool sched_paused;
  378. static bool time_before(struct tm *tm1, struct tm *tm2)
  379. {
  380. if (tm1->tm_hour < tm2->tm_hour)
  381. return true;
  382. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  383. return true;
  384. return false;
  385. }
  386. static bool should_run(void)
  387. {
  388. struct tm tm;
  389. time_t tt;
  390. bool within_range;
  391. if (!schedstart.enable && !schedstop.enable)
  392. return true;
  393. tt = time(NULL);
  394. localtime_r(&tt, &tm);
  395. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  396. if (time_before(&schedstop.tm, &schedstart.tm))
  397. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  398. else
  399. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  400. if (within_range && !schedstop.enable)
  401. /* This is a once off event with no stop time set */
  402. schedstart.enable = false;
  403. return within_range;
  404. }
  405. void get_datestamp(char *f, size_t fsiz, time_t tt)
  406. {
  407. struct tm _tm;
  408. struct tm *tm = &_tm;
  409. if (tt == INVALID_TIMESTAMP)
  410. tt = time(NULL);
  411. localtime_r(&tt, tm);
  412. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  413. tm->tm_year + 1900,
  414. tm->tm_mon + 1,
  415. tm->tm_mday,
  416. tm->tm_hour,
  417. tm->tm_min,
  418. tm->tm_sec);
  419. }
  420. static
  421. void get_timestamp(char *f, size_t fsiz, time_t tt)
  422. {
  423. struct tm _tm;
  424. struct tm *tm = &_tm;
  425. localtime_r(&tt, tm);
  426. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  427. tm->tm_hour,
  428. tm->tm_min,
  429. tm->tm_sec);
  430. }
  431. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  432. static char exit_buf[512];
  433. static void applog_and_exit(const char *fmt, ...)
  434. {
  435. va_list ap;
  436. va_start(ap, fmt);
  437. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  438. va_end(ap);
  439. _applog(LOG_ERR, exit_buf);
  440. exit(1);
  441. }
  442. char *devpath_to_devid(const char *devpath)
  443. {
  444. #ifndef WIN32
  445. struct stat my_stat;
  446. if (stat(devpath, &my_stat))
  447. return NULL;
  448. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  449. memcpy(devs, "dev_t:", 6);
  450. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  451. #else
  452. if (!strncmp(devpath, "\\\\.\\", 4))
  453. devpath += 4;
  454. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  455. return NULL;
  456. devpath += 3;
  457. char *p;
  458. strtol(devpath, &p, 10);
  459. if (p[0])
  460. return NULL;
  461. const int sz = (p - devpath);
  462. char *devs = malloc(4 + sz + 1);
  463. sprintf(devs, "com:%s", devpath);
  464. #endif
  465. return devs;
  466. }
  467. static
  468. bool devpaths_match(const char * const ap, const char * const bp)
  469. {
  470. char * const a = devpath_to_devid(ap);
  471. if (!a)
  472. return false;
  473. char * const b = devpath_to_devid(bp);
  474. bool rv = false;
  475. if (b)
  476. {
  477. rv = !strcmp(a, b);
  478. free(b);
  479. }
  480. free(a);
  481. return rv;
  482. }
  483. static
  484. int proc_letter_to_number(const char *s, const char ** const rem)
  485. {
  486. int n = 0, c;
  487. for ( ; s[0]; ++s)
  488. {
  489. if (unlikely(n > INT_MAX / 26))
  490. break;
  491. c = tolower(s[0]) - 'a';
  492. if (unlikely(c < 0 || c > 25))
  493. break;
  494. if (unlikely(INT_MAX - c < n))
  495. break;
  496. n = (n * 26) + c;
  497. }
  498. *rem = s;
  499. return n;
  500. }
  501. static
  502. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  503. {
  504. // all - matches anything
  505. // d0 - matches all processors of device 0
  506. // d0-3 - matches all processors of device 0, 1, 2, or 3
  507. // d0a - matches first processor of device 0
  508. // 0 - matches processor 0
  509. // 0-4 - matches processors 0, 1, 2, 3, or 4
  510. // ___ - matches all processors on all devices using driver/name ___
  511. // ___0 - matches all processors of 0th device using driver/name ___
  512. // ___0a - matches first processor of 0th device using driver/name ___
  513. // @* - matches device with serial or path *
  514. // @*@a - matches first processor of device with serial or path *
  515. // ___@* - matches device with serial or path * using driver/name ___
  516. if (!strcasecmp(pattern, "all"))
  517. return true;
  518. const struct device_drv * const drv = cgpu->drv;
  519. const char *p = pattern, *p2;
  520. size_t L;
  521. int n, i, c = -1;
  522. int n2;
  523. int proc_first = -1, proc_last = -1;
  524. struct cgpu_info *device;
  525. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  526. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  527. // dname or name
  528. p = &pattern[L];
  529. else
  530. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  531. // d#
  532. ++p;
  533. else
  534. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  535. // # or @
  536. {}
  537. else
  538. return false;
  539. L = p - pattern;
  540. while (isspace(p[0]))
  541. ++p;
  542. if (p[0] == '@')
  543. {
  544. // Serial/path
  545. const char * const ser = &p[1];
  546. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  547. {}
  548. p2 = (p[0] == '@') ? &p[1] : p;
  549. const size_t serlen = (p - ser);
  550. p = "";
  551. n = n2 = 0;
  552. const char * const devpath = cgpu->device_path ?: "";
  553. const char * const devser = cgpu->dev_serial ?: "";
  554. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  555. {} // Match
  556. else
  557. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  558. {} // Match
  559. else
  560. {
  561. char devpath2[serlen + 1];
  562. memcpy(devpath2, ser, serlen);
  563. devpath2[serlen] = '\0';
  564. if (!devpaths_match(devpath, ser))
  565. return false;
  566. }
  567. }
  568. else
  569. {
  570. if (isdigit(p[0]))
  571. n = strtol(p, (void*)&p2, 0);
  572. else
  573. {
  574. n = 0;
  575. p2 = p;
  576. }
  577. if (p2[0] == '-')
  578. {
  579. ++p2;
  580. if (p2[0] && isdigit(p2[0]))
  581. n2 = strtol(p2, (void*)&p2, 0);
  582. else
  583. n2 = INT_MAX;
  584. }
  585. else
  586. n2 = n;
  587. if (p == pattern)
  588. {
  589. if (!p[0])
  590. return true;
  591. if (p2 && p2[0])
  592. goto invsyntax;
  593. for (i = n; i <= n2; ++i)
  594. {
  595. if (i >= total_devices)
  596. break;
  597. if (cgpu == devices[i])
  598. return true;
  599. }
  600. return false;
  601. }
  602. }
  603. if (p2[0])
  604. {
  605. proc_first = proc_letter_to_number(&p2[0], &p2);
  606. if (p2[0] == '-')
  607. {
  608. ++p2;
  609. if (p2[0])
  610. proc_last = proc_letter_to_number(p2, &p2);
  611. else
  612. proc_last = INT_MAX;
  613. }
  614. else
  615. proc_last = proc_first;
  616. if (p2[0])
  617. goto invsyntax;
  618. }
  619. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  620. {
  621. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  622. (!L) ||
  623. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  624. {} // Matched name or dname
  625. else
  626. return false;
  627. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  628. return false;
  629. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  630. return false;
  631. return true;
  632. }
  633. // d#
  634. c = -1;
  635. for (i = 0; ; ++i)
  636. {
  637. if (i == total_devices)
  638. return false;
  639. if (devices[i]->device != devices[i])
  640. continue;
  641. ++c;
  642. if (c < n)
  643. continue;
  644. if (c > n2)
  645. break;
  646. for (device = devices[i]; device; device = device->next_proc)
  647. {
  648. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  649. continue;
  650. if (device == cgpu)
  651. return true;
  652. }
  653. }
  654. return false;
  655. invsyntax:
  656. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  657. return false;
  658. }
  659. #define TEST_CGPU_MATCH(pattern) \
  660. if (!cgpu_match(pattern, &cgpu)) \
  661. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  662. // END TEST_CGPU_MATCH
  663. #define TEST_CGPU_NOMATCH(pattern) \
  664. if (cgpu_match(pattern, &cgpu)) \
  665. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  666. // END TEST_CGPU_MATCH
  667. static __maybe_unused
  668. void test_cgpu_match()
  669. {
  670. struct device_drv drv = {
  671. .dname = "test",
  672. .name = "TST",
  673. };
  674. struct cgpu_info cgpu = {
  675. .drv = &drv,
  676. .device = &cgpu,
  677. .device_id = 1,
  678. .proc_id = 1,
  679. .proc_repr = "TST 1b",
  680. }, cgpu0a = {
  681. .drv = &drv,
  682. .device = &cgpu0a,
  683. .device_id = 0,
  684. .proc_id = 0,
  685. .proc_repr = "TST 0a",
  686. }, cgpu1a = {
  687. .drv = &drv,
  688. .device = &cgpu0a,
  689. .device_id = 1,
  690. .proc_id = 0,
  691. .proc_repr = "TST 1a",
  692. };
  693. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  694. devices = devices_list;
  695. total_devices = 3;
  696. TEST_CGPU_MATCH("all")
  697. TEST_CGPU_MATCH("d1")
  698. TEST_CGPU_NOMATCH("d2")
  699. TEST_CGPU_MATCH("d0-5")
  700. TEST_CGPU_NOMATCH("d0-0")
  701. TEST_CGPU_NOMATCH("d2-5")
  702. TEST_CGPU_MATCH("d-1")
  703. TEST_CGPU_MATCH("d1-")
  704. TEST_CGPU_NOMATCH("d-0")
  705. TEST_CGPU_NOMATCH("d2-")
  706. TEST_CGPU_MATCH("2")
  707. TEST_CGPU_NOMATCH("3")
  708. TEST_CGPU_MATCH("1-2")
  709. TEST_CGPU_MATCH("2-3")
  710. TEST_CGPU_NOMATCH("1-1")
  711. TEST_CGPU_NOMATCH("3-4")
  712. TEST_CGPU_MATCH("TST")
  713. TEST_CGPU_MATCH("test")
  714. TEST_CGPU_MATCH("tst")
  715. TEST_CGPU_MATCH("TEST")
  716. TEST_CGPU_NOMATCH("TSF")
  717. TEST_CGPU_NOMATCH("TS")
  718. TEST_CGPU_NOMATCH("TSTF")
  719. TEST_CGPU_MATCH("TST1")
  720. TEST_CGPU_MATCH("test1")
  721. TEST_CGPU_MATCH("TST0-1")
  722. TEST_CGPU_MATCH("TST 1")
  723. TEST_CGPU_MATCH("TST 1-2")
  724. TEST_CGPU_MATCH("TEST 1-2")
  725. TEST_CGPU_NOMATCH("TST2")
  726. TEST_CGPU_NOMATCH("TST2-3")
  727. TEST_CGPU_NOMATCH("TST0-0")
  728. TEST_CGPU_MATCH("TST1b")
  729. TEST_CGPU_MATCH("tst1b")
  730. TEST_CGPU_NOMATCH("TST1c")
  731. TEST_CGPU_NOMATCH("TST1bb")
  732. TEST_CGPU_MATCH("TST0-1b")
  733. TEST_CGPU_NOMATCH("TST0-1c")
  734. TEST_CGPU_MATCH("TST1a-d")
  735. TEST_CGPU_NOMATCH("TST1a-a")
  736. TEST_CGPU_NOMATCH("TST1-a")
  737. TEST_CGPU_NOMATCH("TST1c-z")
  738. TEST_CGPU_NOMATCH("TST1c-")
  739. TEST_CGPU_MATCH("@")
  740. TEST_CGPU_NOMATCH("@abc")
  741. TEST_CGPU_MATCH("@@b")
  742. TEST_CGPU_NOMATCH("@@c")
  743. TEST_CGPU_MATCH("TST@")
  744. TEST_CGPU_NOMATCH("TST@abc")
  745. TEST_CGPU_MATCH("TST@@b")
  746. TEST_CGPU_NOMATCH("TST@@c")
  747. TEST_CGPU_MATCH("TST@@b-f")
  748. TEST_CGPU_NOMATCH("TST@@c-f")
  749. TEST_CGPU_NOMATCH("TST@@-a")
  750. cgpu.device_path = "/dev/test";
  751. cgpu.dev_serial = "testy";
  752. TEST_CGPU_MATCH("TST@/dev/test")
  753. TEST_CGPU_MATCH("TST@testy")
  754. TEST_CGPU_NOMATCH("TST@")
  755. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  756. TEST_CGPU_NOMATCH("TST@testy3@b")
  757. TEST_CGPU_MATCH("TST@/dev/test@b")
  758. TEST_CGPU_MATCH("TST@testy@b")
  759. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  760. TEST_CGPU_NOMATCH("TST@testy@c")
  761. cgpu.device_path = "usb:000:999";
  762. TEST_CGPU_MATCH("TST@usb:000:999")
  763. drv.dname = "test7";
  764. TEST_CGPU_MATCH("test7")
  765. TEST_CGPU_MATCH("TEST7")
  766. TEST_CGPU_NOMATCH("test&")
  767. TEST_CGPU_MATCH("test7 1-2")
  768. TEST_CGPU_MATCH("test7@testy@b")
  769. }
  770. static
  771. int cgpu_search(const char * const pattern, const int first)
  772. {
  773. int i;
  774. struct cgpu_info *cgpu;
  775. #define CHECK_CGPU_SEARCH do{ \
  776. cgpu = get_devices(i); \
  777. if (cgpu_match(pattern, cgpu)) \
  778. return i; \
  779. }while(0)
  780. for (i = first; i < total_devices; ++i)
  781. CHECK_CGPU_SEARCH;
  782. for (i = 0; i < first; ++i)
  783. CHECK_CGPU_SEARCH;
  784. #undef CHECK_CGPU_SEARCH
  785. return -1;
  786. }
  787. static pthread_mutex_t sharelog_lock;
  788. static FILE *sharelog_file = NULL;
  789. struct thr_info *get_thread(int thr_id)
  790. {
  791. struct thr_info *thr;
  792. rd_lock(&mining_thr_lock);
  793. thr = mining_thr[thr_id];
  794. rd_unlock(&mining_thr_lock);
  795. return thr;
  796. }
  797. static struct cgpu_info *get_thr_cgpu(int thr_id)
  798. {
  799. struct thr_info *thr = get_thread(thr_id);
  800. return thr->cgpu;
  801. }
  802. struct cgpu_info *get_devices(int id)
  803. {
  804. struct cgpu_info *cgpu;
  805. rd_lock(&devices_lock);
  806. cgpu = devices[id];
  807. rd_unlock(&devices_lock);
  808. return cgpu;
  809. }
  810. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  811. static FILE *noncelog_file = NULL;
  812. static
  813. void noncelog(const struct work * const work)
  814. {
  815. const int thr_id = work->thr_id;
  816. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  817. char buf[0x200], hash[65], data[161], midstate[65];
  818. int rv;
  819. size_t ret;
  820. bin2hex(hash, work->hash, 32);
  821. bin2hex(data, work->data, 80);
  822. bin2hex(midstate, work->midstate, 32);
  823. // timestamp,proc,hash,data,midstate
  824. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  825. (unsigned long)time(NULL), proc->proc_repr_ns,
  826. hash, data, midstate);
  827. if (unlikely(rv < 1))
  828. {
  829. applog(LOG_ERR, "noncelog printf error");
  830. return;
  831. }
  832. mutex_lock(&noncelog_lock);
  833. ret = fwrite(buf, rv, 1, noncelog_file);
  834. fflush(noncelog_file);
  835. mutex_unlock(&noncelog_lock);
  836. if (ret != 1)
  837. applog(LOG_ERR, "noncelog fwrite error");
  838. }
  839. static void sharelog(const char*disposition, const struct work*work)
  840. {
  841. char target[(sizeof(work->target) * 2) + 1];
  842. char hash[(sizeof(work->hash) * 2) + 1];
  843. char data[(sizeof(work->data) * 2) + 1];
  844. struct cgpu_info *cgpu;
  845. unsigned long int t;
  846. struct pool *pool;
  847. int thr_id, rv;
  848. char s[1024];
  849. size_t ret;
  850. if (!sharelog_file)
  851. return;
  852. thr_id = work->thr_id;
  853. cgpu = get_thr_cgpu(thr_id);
  854. pool = work->pool;
  855. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  856. bin2hex(target, work->target, sizeof(work->target));
  857. bin2hex(hash, work->hash, sizeof(work->hash));
  858. bin2hex(data, work->data, sizeof(work->data));
  859. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  860. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->proc_repr_ns, thr_id, hash, data);
  861. if (rv >= (int)(sizeof(s)))
  862. s[sizeof(s) - 1] = '\0';
  863. else if (rv < 0) {
  864. applog(LOG_ERR, "sharelog printf error");
  865. return;
  866. }
  867. mutex_lock(&sharelog_lock);
  868. ret = fwrite(s, rv, 1, sharelog_file);
  869. fflush(sharelog_file);
  870. mutex_unlock(&sharelog_lock);
  871. if (ret != 1)
  872. applog(LOG_ERR, "sharelog fwrite error");
  873. }
  874. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  875. /* Adjust all the pools' quota to the greatest common denominator after a pool
  876. * has been added or the quotas changed. */
  877. void adjust_quota_gcd(void)
  878. {
  879. unsigned long gcd, lowest_quota = ~0UL, quota;
  880. struct pool *pool;
  881. int i;
  882. for (i = 0; i < total_pools; i++) {
  883. pool = pools[i];
  884. quota = pool->quota;
  885. if (!quota)
  886. continue;
  887. if (quota < lowest_quota)
  888. lowest_quota = quota;
  889. }
  890. if (likely(lowest_quota < ~0UL)) {
  891. gcd = lowest_quota;
  892. for (i = 0; i < total_pools; i++) {
  893. pool = pools[i];
  894. quota = pool->quota;
  895. if (!quota)
  896. continue;
  897. while (quota % gcd)
  898. gcd--;
  899. }
  900. } else
  901. gcd = 1;
  902. for (i = 0; i < total_pools; i++) {
  903. pool = pools[i];
  904. pool->quota_used *= global_quota_gcd;
  905. pool->quota_used /= gcd;
  906. pool->quota_gcd = pool->quota / gcd;
  907. }
  908. global_quota_gcd = gcd;
  909. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  910. }
  911. /* Return value is ignored if not called from add_pool_details */
  912. struct pool *add_pool(void)
  913. {
  914. struct pool *pool;
  915. pool = calloc(sizeof(struct pool), 1);
  916. if (!pool)
  917. quit(1, "Failed to malloc pool in add_pool");
  918. pool->pool_no = pool->prio = total_pools;
  919. mutex_init(&pool->last_work_lock);
  920. mutex_init(&pool->pool_lock);
  921. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  922. quit(1, "Failed to pthread_cond_init in add_pool");
  923. cglock_init(&pool->data_lock);
  924. mutex_init(&pool->stratum_lock);
  925. timer_unset(&pool->swork.tv_transparency);
  926. /* Make sure the pool doesn't think we've been idle since time 0 */
  927. pool->tv_idle.tv_sec = ~0UL;
  928. cgtime(&pool->cgminer_stats.start_tv);
  929. pool->rpc_proxy = NULL;
  930. pool->quota = 1;
  931. adjust_quota_gcd();
  932. pool->sock = INVSOCK;
  933. pool->lp_socket = CURL_SOCKET_BAD;
  934. if (opt_benchmark)
  935. {
  936. // Don't add to pools array, but immediately remove it
  937. remove_pool(pool);
  938. return pool;
  939. }
  940. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  941. pools[total_pools++] = pool;
  942. return pool;
  943. }
  944. /* Pool variant of test and set */
  945. static bool pool_tset(struct pool *pool, bool *var)
  946. {
  947. bool ret;
  948. mutex_lock(&pool->pool_lock);
  949. ret = *var;
  950. *var = true;
  951. mutex_unlock(&pool->pool_lock);
  952. return ret;
  953. }
  954. bool pool_tclear(struct pool *pool, bool *var)
  955. {
  956. bool ret;
  957. mutex_lock(&pool->pool_lock);
  958. ret = *var;
  959. *var = false;
  960. mutex_unlock(&pool->pool_lock);
  961. return ret;
  962. }
  963. struct pool *current_pool(void)
  964. {
  965. struct pool *pool;
  966. cg_rlock(&control_lock);
  967. pool = currentpool;
  968. cg_runlock(&control_lock);
  969. return pool;
  970. }
  971. // Copied from ccan/opt/helpers.c
  972. static char *arg_bad(const char *fmt, const char *arg)
  973. {
  974. char *str = malloc(strlen(fmt) + strlen(arg));
  975. sprintf(str, fmt, arg);
  976. return str;
  977. }
  978. static
  979. char *opt_set_floatval(const char *arg, float *f)
  980. {
  981. char *endp;
  982. errno = 0;
  983. *f = strtof(arg, &endp);
  984. if (*endp || !arg[0])
  985. return arg_bad("'%s' is not a number", arg);
  986. if (errno)
  987. return arg_bad("'%s' is out of range", arg);
  988. return NULL;
  989. }
  990. static
  991. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  992. {
  993. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  994. }
  995. static
  996. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  997. {
  998. return opt_set_bool(b);
  999. }
  1000. char *set_int_range(const char *arg, int *i, int min, int max)
  1001. {
  1002. char *err = opt_set_intval(arg, i);
  1003. if (err)
  1004. return err;
  1005. if (*i < min || *i > max)
  1006. return "Value out of range";
  1007. return NULL;
  1008. }
  1009. static char *set_int_0_to_9999(const char *arg, int *i)
  1010. {
  1011. return set_int_range(arg, i, 0, 9999);
  1012. }
  1013. static char *set_int_1_to_65535(const char *arg, int *i)
  1014. {
  1015. return set_int_range(arg, i, 1, 65535);
  1016. }
  1017. static char *set_int_0_to_10(const char *arg, int *i)
  1018. {
  1019. return set_int_range(arg, i, 0, 10);
  1020. }
  1021. static char *set_int_1_to_10(const char *arg, int *i)
  1022. {
  1023. return set_int_range(arg, i, 1, 10);
  1024. }
  1025. char *set_strdup(const char *arg, char **p)
  1026. {
  1027. *p = strdup((char *)arg);
  1028. return NULL;
  1029. }
  1030. #if BLKMAKER_VERSION > 1
  1031. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1032. {
  1033. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1034. if (!scriptsz)
  1035. return "Invalid address";
  1036. char *script = malloc(scriptsz);
  1037. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1038. free(script);
  1039. return "Failed to convert address to script";
  1040. }
  1041. p->data = script;
  1042. p->sz = scriptsz;
  1043. return NULL;
  1044. }
  1045. #endif
  1046. static
  1047. char *set_quit_summary(const char * const arg)
  1048. {
  1049. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1050. opt_quit_summary = BQS_NONE;
  1051. else
  1052. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1053. opt_quit_summary = BQS_DEVS;
  1054. else
  1055. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1056. opt_quit_summary = BQS_PROCS;
  1057. else
  1058. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1059. opt_quit_summary = BQS_DETAILED;
  1060. else
  1061. return "Quit summary must be one of none/devs/procs/detailed";
  1062. return NULL;
  1063. }
  1064. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1065. char *set_request_diff(const char *arg, float *p)
  1066. {
  1067. unsigned char target[32];
  1068. char *e = opt_set_floatval(arg, p);
  1069. if (e)
  1070. return e;
  1071. request_bdiff = (double)*p * 0.9999847412109375;
  1072. bdiff_target_leadzero(target, request_bdiff);
  1073. request_target_str = malloc(65);
  1074. bin2hex(request_target_str, target, 32);
  1075. return NULL;
  1076. }
  1077. #ifdef NEED_BFG_LOWL_VCOM
  1078. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1079. #ifdef WIN32
  1080. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1081. {
  1082. char dev[PATH_MAX];
  1083. char *devp = dev;
  1084. size_t bufLen = 0x100;
  1085. tryagain: ;
  1086. char buf[bufLen];
  1087. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1088. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1089. bufLen *= 2;
  1090. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1091. goto tryagain;
  1092. }
  1093. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1094. }
  1095. size_t tLen;
  1096. memcpy(devp, "\\\\.\\", 4);
  1097. devp = &devp[4];
  1098. for (char *t = buf; *t; t += tLen) {
  1099. tLen = strlen(t) + 1;
  1100. if (strncmp("COM", t, 3))
  1101. continue;
  1102. memcpy(devp, t, tLen);
  1103. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1104. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1105. }
  1106. }
  1107. #else
  1108. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1109. {
  1110. char dev[PATH_MAX];
  1111. char *devp = dev;
  1112. DIR *D;
  1113. struct dirent *de;
  1114. const char devdir[] = "/dev";
  1115. const size_t devdirlen = sizeof(devdir) - 1;
  1116. char *devpath = devp;
  1117. char *devfile = devpath + devdirlen + 1;
  1118. D = opendir(devdir);
  1119. if (!D)
  1120. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1121. memcpy(devpath, devdir, devdirlen);
  1122. devpath[devdirlen] = '/';
  1123. while ( (de = readdir(D)) ) {
  1124. if (!strncmp(de->d_name, "cu.", 3)
  1125. //don't probe Bluetooth devices - causes bus errors and segfaults
  1126. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1127. goto trydev;
  1128. if (strncmp(de->d_name, "tty", 3))
  1129. continue;
  1130. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1131. continue;
  1132. trydev:
  1133. strcpy(devfile, de->d_name);
  1134. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1135. }
  1136. closedir(D);
  1137. }
  1138. #endif
  1139. #endif
  1140. static char *add_serial(const char *arg)
  1141. {
  1142. string_elist_add(arg, &scan_devices);
  1143. return NULL;
  1144. }
  1145. static
  1146. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1147. {
  1148. string_elist_add(arg, elist);
  1149. return NULL;
  1150. }
  1151. bool get_intrange(const char *arg, int *val1, int *val2)
  1152. {
  1153. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1154. char *p, *p2;
  1155. *val1 = strtol(arg, &p, 0);
  1156. if (arg == p)
  1157. // Zero-length ending number, invalid
  1158. return false;
  1159. while (true)
  1160. {
  1161. if (!p[0])
  1162. {
  1163. *val2 = *val1;
  1164. return true;
  1165. }
  1166. if (p[0] == '-')
  1167. break;
  1168. if (!isspace(p[0]))
  1169. // Garbage, invalid
  1170. return false;
  1171. ++p;
  1172. }
  1173. p2 = &p[1];
  1174. *val2 = strtol(p2, &p, 0);
  1175. if (p2 == p)
  1176. // Zero-length ending number, invalid
  1177. return false;
  1178. while (true)
  1179. {
  1180. if (!p[0])
  1181. return true;
  1182. if (!isspace(p[0]))
  1183. // Garbage, invalid
  1184. return false;
  1185. ++p;
  1186. }
  1187. }
  1188. static
  1189. void _test_intrange(const char *s, const int v[2])
  1190. {
  1191. int a[2];
  1192. if (!get_intrange(s, &a[0], &a[1]))
  1193. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1194. for (int i = 0; i < 2; ++i)
  1195. if (unlikely(a[i] != v[i]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1197. }
  1198. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1199. static
  1200. void _test_intrange_fail(const char *s)
  1201. {
  1202. int a[2];
  1203. if (get_intrange(s, &a[0], &a[1]))
  1204. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1205. }
  1206. static
  1207. void test_intrange()
  1208. {
  1209. _test_intrange("-1--2", -1, -2);
  1210. _test_intrange("-1-2", -1, 2);
  1211. _test_intrange("1--2", 1, -2);
  1212. _test_intrange("1-2", 1, 2);
  1213. _test_intrange("111-222", 111, 222);
  1214. _test_intrange(" 11 - 22 ", 11, 22);
  1215. _test_intrange("+11-+22", 11, 22);
  1216. _test_intrange("-1", -1, -1);
  1217. _test_intrange_fail("all");
  1218. _test_intrange_fail("1-");
  1219. _test_intrange_fail("");
  1220. _test_intrange_fail("1-54x");
  1221. }
  1222. static char *set_devices(char *arg)
  1223. {
  1224. if (*arg) {
  1225. if (*arg == '?') {
  1226. opt_display_devs = true;
  1227. return NULL;
  1228. }
  1229. } else
  1230. return "Invalid device parameters";
  1231. string_elist_add(arg, &opt_devices_enabled_list);
  1232. return NULL;
  1233. }
  1234. static char *set_balance(enum pool_strategy *strategy)
  1235. {
  1236. *strategy = POOL_BALANCE;
  1237. return NULL;
  1238. }
  1239. static char *set_loadbalance(enum pool_strategy *strategy)
  1240. {
  1241. *strategy = POOL_LOADBALANCE;
  1242. return NULL;
  1243. }
  1244. static char *set_rotate(const char *arg, int *i)
  1245. {
  1246. pool_strategy = POOL_ROTATE;
  1247. return set_int_range(arg, i, 0, 9999);
  1248. }
  1249. static char *set_rr(enum pool_strategy *strategy)
  1250. {
  1251. *strategy = POOL_ROUNDROBIN;
  1252. return NULL;
  1253. }
  1254. /* Detect that url is for a stratum protocol either via the presence of
  1255. * stratum+tcp or by detecting a stratum server response */
  1256. bool detect_stratum(struct pool *pool, char *url)
  1257. {
  1258. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1259. return false;
  1260. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1261. pool->rpc_url = strdup(url);
  1262. pool->has_stratum = true;
  1263. pool->stratum_url = pool->sockaddr_url;
  1264. return true;
  1265. }
  1266. return false;
  1267. }
  1268. static struct pool *add_url(void)
  1269. {
  1270. total_urls++;
  1271. if (total_urls > total_pools)
  1272. add_pool();
  1273. return pools[total_urls - 1];
  1274. }
  1275. static void setup_url(struct pool *pool, char *arg)
  1276. {
  1277. if (detect_stratum(pool, arg))
  1278. return;
  1279. opt_set_charp(arg, &pool->rpc_url);
  1280. if (strncmp(arg, "http://", 7) &&
  1281. strncmp(arg, "https://", 8)) {
  1282. const size_t L = strlen(arg);
  1283. char *httpinput;
  1284. httpinput = malloc(8 + L);
  1285. if (!httpinput)
  1286. quit(1, "Failed to malloc httpinput");
  1287. sprintf(httpinput, "http://%s", arg);
  1288. pool->rpc_url = httpinput;
  1289. }
  1290. }
  1291. static char *set_url(char *arg)
  1292. {
  1293. struct pool *pool = add_url();
  1294. setup_url(pool, arg);
  1295. return NULL;
  1296. }
  1297. static char *set_quota(char *arg)
  1298. {
  1299. char *semicolon = strchr(arg, ';'), *url;
  1300. int len, qlen, quota;
  1301. struct pool *pool;
  1302. if (!semicolon)
  1303. return "No semicolon separated quota;URL pair found";
  1304. len = strlen(arg);
  1305. *semicolon = '\0';
  1306. qlen = strlen(arg);
  1307. if (!qlen)
  1308. return "No parameter for quota found";
  1309. len -= qlen + 1;
  1310. if (len < 1)
  1311. return "No parameter for URL found";
  1312. quota = atoi(arg);
  1313. if (quota < 0)
  1314. return "Invalid negative parameter for quota set";
  1315. url = arg + qlen + 1;
  1316. pool = add_url();
  1317. setup_url(pool, url);
  1318. pool->quota = quota;
  1319. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1320. adjust_quota_gcd();
  1321. return NULL;
  1322. }
  1323. static char *set_user(const char *arg)
  1324. {
  1325. struct pool *pool;
  1326. total_users++;
  1327. if (total_users > total_pools)
  1328. add_pool();
  1329. pool = pools[total_users - 1];
  1330. opt_set_charp(arg, &pool->rpc_user);
  1331. return NULL;
  1332. }
  1333. static char *set_pass(const char *arg)
  1334. {
  1335. struct pool *pool;
  1336. total_passes++;
  1337. if (total_passes > total_pools)
  1338. add_pool();
  1339. pool = pools[total_passes - 1];
  1340. opt_set_charp(arg, &pool->rpc_pass);
  1341. return NULL;
  1342. }
  1343. static char *set_userpass(const char *arg)
  1344. {
  1345. struct pool *pool;
  1346. char *updup;
  1347. if (total_users != total_passes)
  1348. return "User + pass options must be balanced before userpass";
  1349. ++total_users;
  1350. ++total_passes;
  1351. if (total_users > total_pools)
  1352. add_pool();
  1353. pool = pools[total_users - 1];
  1354. updup = strdup(arg);
  1355. opt_set_charp(arg, &pool->rpc_userpass);
  1356. pool->rpc_user = strtok(updup, ":");
  1357. if (!pool->rpc_user)
  1358. return "Failed to find : delimited user info";
  1359. pool->rpc_pass = strtok(NULL, ":");
  1360. if (!pool->rpc_pass)
  1361. pool->rpc_pass = "";
  1362. return NULL;
  1363. }
  1364. static char *set_pool_priority(const char *arg)
  1365. {
  1366. struct pool *pool;
  1367. if (!total_pools)
  1368. return "Usage of --pool-priority before pools are defined does not make sense";
  1369. pool = pools[total_pools - 1];
  1370. opt_set_intval(arg, &pool->prio);
  1371. return NULL;
  1372. }
  1373. static char *set_pool_proxy(const char *arg)
  1374. {
  1375. struct pool *pool;
  1376. if (!total_pools)
  1377. return "Usage of --pool-proxy before pools are defined does not make sense";
  1378. if (!our_curl_supports_proxy_uris())
  1379. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1380. pool = pools[total_pools - 1];
  1381. opt_set_charp(arg, &pool->rpc_proxy);
  1382. return NULL;
  1383. }
  1384. static char *set_pool_force_rollntime(const char *arg)
  1385. {
  1386. struct pool *pool;
  1387. if (!total_pools)
  1388. return "Usage of --force-rollntime before pools are defined does not make sense";
  1389. pool = pools[total_pools - 1];
  1390. opt_set_intval(arg, &pool->force_rollntime);
  1391. return NULL;
  1392. }
  1393. static char *enable_debug(bool *flag)
  1394. {
  1395. *flag = true;
  1396. opt_debug_console = true;
  1397. /* Turn on verbose output, too. */
  1398. opt_log_output = true;
  1399. return NULL;
  1400. }
  1401. static char *set_schedtime(const char *arg, struct schedtime *st)
  1402. {
  1403. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1404. {
  1405. if (strcasecmp(arg, "now"))
  1406. return "Invalid time set, should be HH:MM";
  1407. } else
  1408. schedstop.tm.tm_sec = 0;
  1409. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1410. return "Invalid time set.";
  1411. st->enable = true;
  1412. return NULL;
  1413. }
  1414. static
  1415. char *set_log_file(char *arg)
  1416. {
  1417. char *r = "";
  1418. long int i = strtol(arg, &r, 10);
  1419. int fd, stderr_fd = fileno(stderr);
  1420. if ((!*r) && i >= 0 && i <= INT_MAX)
  1421. fd = i;
  1422. else
  1423. if (!strcmp(arg, "-"))
  1424. {
  1425. fd = fileno(stdout);
  1426. if (unlikely(fd == -1))
  1427. return "Standard output missing for log-file";
  1428. }
  1429. else
  1430. {
  1431. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1432. if (unlikely(fd == -1))
  1433. return "Failed to open log-file";
  1434. }
  1435. close(stderr_fd);
  1436. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1437. return "Failed to dup2 for log-file";
  1438. close(fd);
  1439. return NULL;
  1440. }
  1441. static
  1442. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1443. {
  1444. char *r = "";
  1445. long int i = strtol(arg, &r, 10);
  1446. static char *err = NULL;
  1447. const size_t errbufsz = 0x100;
  1448. free(err);
  1449. err = NULL;
  1450. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1451. *F = fdopen((int)i, mode);
  1452. if (!*F)
  1453. {
  1454. err = malloc(errbufsz);
  1455. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1456. (int)i, purpose);
  1457. return err;
  1458. }
  1459. } else if (!strcmp(arg, "-")) {
  1460. *F = (mode[0] == 'a') ? stdout : stdin;
  1461. if (!*F)
  1462. {
  1463. err = malloc(errbufsz);
  1464. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1465. (mode[0] == 'a') ? "out" : "in", purpose);
  1466. return err;
  1467. }
  1468. } else {
  1469. *F = fopen(arg, mode);
  1470. if (!*F)
  1471. {
  1472. err = malloc(errbufsz);
  1473. snprintf(err, errbufsz, "Failed to open %s for %s",
  1474. arg, purpose);
  1475. return err;
  1476. }
  1477. }
  1478. return NULL;
  1479. }
  1480. static char *set_noncelog(char *arg)
  1481. {
  1482. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1483. }
  1484. static char *set_sharelog(char *arg)
  1485. {
  1486. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1487. }
  1488. static
  1489. void _add_set_device_option(const char * const func, const char * const buf)
  1490. {
  1491. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1492. string_elist_add(buf, &opt_set_device_list);
  1493. }
  1494. #define add_set_device_option(...) do{ \
  1495. char _tmp1718[0x100]; \
  1496. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1497. _add_set_device_option(__func__, _tmp1718); \
  1498. }while(0)
  1499. char *set_temp_cutoff(char *arg)
  1500. {
  1501. if (strchr(arg, ','))
  1502. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1503. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1504. add_set_device_option("all:temp-cutoff=%s", arg);
  1505. return NULL;
  1506. }
  1507. char *set_temp_target(char *arg)
  1508. {
  1509. if (strchr(arg, ','))
  1510. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1511. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1512. add_set_device_option("all:temp-target=%s", arg);
  1513. return NULL;
  1514. }
  1515. static char *set_api_allow(const char *arg)
  1516. {
  1517. opt_set_charp(arg, &opt_api_allow);
  1518. return NULL;
  1519. }
  1520. static char *set_api_groups(const char *arg)
  1521. {
  1522. opt_set_charp(arg, &opt_api_groups);
  1523. return NULL;
  1524. }
  1525. static char *set_api_description(const char *arg)
  1526. {
  1527. opt_set_charp(arg, &opt_api_description);
  1528. return NULL;
  1529. }
  1530. static char *set_api_mcast_des(const char *arg)
  1531. {
  1532. opt_set_charp(arg, &opt_api_mcast_des);
  1533. return NULL;
  1534. }
  1535. #ifdef USE_ICARUS
  1536. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1537. static char *set_icarus_options(const char *arg)
  1538. {
  1539. if (strchr(arg, ','))
  1540. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1541. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1542. char *opts = strdup(arg), *argdup;
  1543. argdup = opts;
  1544. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1545. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1546. char *saveptr, *opt;
  1547. for (int i = 0; i < 4; ++i, ++sdf)
  1548. {
  1549. opt = strtok_r(opts, ":", &saveptr);
  1550. opts = NULL;
  1551. if (!opt)
  1552. break;
  1553. if (!opt[0])
  1554. continue;
  1555. for (int j = 0; j < 4; ++j)
  1556. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1557. }
  1558. free(argdup);
  1559. return NULL;
  1560. }
  1561. static char *set_icarus_timing(const char *arg)
  1562. {
  1563. if (strchr(arg, ','))
  1564. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1565. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1566. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1567. for (int j = 0; j < 4; ++j)
  1568. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1569. return NULL;
  1570. }
  1571. #endif
  1572. #ifdef USE_AVALON
  1573. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1574. static char *set_avalon_options(const char *arg)
  1575. {
  1576. if (strchr(arg, ','))
  1577. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1578. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1579. char *opts = strdup(arg), *argdup;
  1580. argdup = opts;
  1581. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1582. char *saveptr, *opt;
  1583. for (int i = 0; i < 5; ++i, ++sdf)
  1584. {
  1585. opt = strtok_r(opts, ":", &saveptr);
  1586. opts = NULL;
  1587. if (!opt)
  1588. break;
  1589. if (!opt[0])
  1590. continue;
  1591. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1592. }
  1593. free(argdup);
  1594. return NULL;
  1595. }
  1596. #endif
  1597. #ifdef USE_KLONDIKE
  1598. static char *set_klondike_options(const char *arg)
  1599. {
  1600. int hashclock;
  1601. double temptarget;
  1602. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1603. {
  1604. default:
  1605. return "Unrecognised --klondike-options";
  1606. case 2:
  1607. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1608. // fallthru
  1609. case 1:
  1610. add_set_device_option("klondike:clock=%d", hashclock);
  1611. }
  1612. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1613. return NULL;
  1614. }
  1615. #endif
  1616. __maybe_unused
  1617. static char *set_null(const char __maybe_unused *arg)
  1618. {
  1619. return NULL;
  1620. }
  1621. /* These options are available from config file or commandline */
  1622. static struct opt_table opt_config_table[] = {
  1623. #ifdef WANT_CPUMINE
  1624. OPT_WITH_ARG("--algo",
  1625. set_algo, show_algo, &opt_algo,
  1626. "Specify sha256 implementation for CPU mining:\n"
  1627. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1628. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1629. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1630. #ifdef WANT_SSE2_4WAY
  1631. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1632. #endif
  1633. #ifdef WANT_VIA_PADLOCK
  1634. "\n\tvia\t\tVIA padlock implementation"
  1635. #endif
  1636. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1637. #ifdef WANT_CRYPTOPP_ASM32
  1638. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1639. #endif
  1640. #ifdef WANT_X8632_SSE2
  1641. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1642. #endif
  1643. #ifdef WANT_X8664_SSE2
  1644. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1645. #endif
  1646. #ifdef WANT_X8664_SSE4
  1647. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1648. #endif
  1649. #ifdef WANT_ALTIVEC_4WAY
  1650. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1651. #endif
  1652. ),
  1653. OPT_WITH_ARG("-a",
  1654. set_algo, show_algo, &opt_algo,
  1655. opt_hidden),
  1656. #endif
  1657. OPT_WITH_ARG("--api-allow",
  1658. set_api_allow, NULL, NULL,
  1659. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1660. OPT_WITH_ARG("--api-description",
  1661. set_api_description, NULL, NULL,
  1662. "Description placed in the API status header, default: BFGMiner version"),
  1663. OPT_WITH_ARG("--api-groups",
  1664. set_api_groups, NULL, NULL,
  1665. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1666. OPT_WITHOUT_ARG("--api-listen",
  1667. opt_set_bool, &opt_api_listen,
  1668. "Enable API, default: disabled"),
  1669. OPT_WITHOUT_ARG("--api-mcast",
  1670. opt_set_bool, &opt_api_mcast,
  1671. "Enable API Multicast listener, default: disabled"),
  1672. OPT_WITH_ARG("--api-mcast-addr",
  1673. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1674. "API Multicast listen address"),
  1675. OPT_WITH_ARG("--api-mcast-code",
  1676. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1677. "Code expected in the API Multicast message, don't use '-'"),
  1678. OPT_WITH_ARG("--api-mcast-des",
  1679. set_api_mcast_des, NULL, NULL,
  1680. "Description appended to the API Multicast reply, default: ''"),
  1681. OPT_WITH_ARG("--api-mcast-port",
  1682. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1683. "API Multicast listen port"),
  1684. OPT_WITHOUT_ARG("--api-network",
  1685. opt_set_bool, &opt_api_network,
  1686. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1687. OPT_WITH_ARG("--api-port",
  1688. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1689. "Port number of miner API"),
  1690. #ifdef HAVE_ADL
  1691. OPT_WITHOUT_ARG("--auto-fan",
  1692. opt_set_bool, &opt_autofan,
  1693. opt_hidden),
  1694. OPT_WITHOUT_ARG("--auto-gpu",
  1695. opt_set_bool, &opt_autoengine,
  1696. opt_hidden),
  1697. #endif
  1698. OPT_WITHOUT_ARG("--balance",
  1699. set_balance, &pool_strategy,
  1700. "Change multipool strategy from failover to even share balance"),
  1701. OPT_WITHOUT_ARG("--benchmark",
  1702. opt_set_bool, &opt_benchmark,
  1703. "Run BFGMiner in benchmark mode - produces no shares"),
  1704. #if defined(USE_BITFORCE)
  1705. OPT_WITHOUT_ARG("--bfl-range",
  1706. opt_set_bool, &opt_bfl_noncerange,
  1707. "Use nonce range on bitforce devices if supported"),
  1708. #endif
  1709. #ifdef HAVE_CHROOT
  1710. OPT_WITH_ARG("--chroot-dir",
  1711. opt_set_charp, NULL, &chroot_dir,
  1712. "Chroot to a directory right after startup"),
  1713. #endif
  1714. OPT_WITH_ARG("--cmd-idle",
  1715. opt_set_charp, NULL, &cmd_idle,
  1716. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1717. OPT_WITH_ARG("--cmd-sick",
  1718. opt_set_charp, NULL, &cmd_sick,
  1719. "Execute a command when a device is declared sick"),
  1720. OPT_WITH_ARG("--cmd-dead",
  1721. opt_set_charp, NULL, &cmd_dead,
  1722. "Execute a command when a device is declared dead"),
  1723. #if BLKMAKER_VERSION > 1
  1724. OPT_WITH_ARG("--coinbase-addr",
  1725. set_b58addr, NULL, &opt_coinbase_script,
  1726. "Set coinbase payout address for solo mining"),
  1727. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1728. set_b58addr, NULL, &opt_coinbase_script,
  1729. opt_hidden),
  1730. #endif
  1731. #if BLKMAKER_VERSION > 0
  1732. OPT_WITH_ARG("--coinbase-sig",
  1733. set_strdup, NULL, &opt_coinbase_sig,
  1734. "Set coinbase signature when possible"),
  1735. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1736. set_strdup, NULL, &opt_coinbase_sig,
  1737. opt_hidden),
  1738. #endif
  1739. #ifdef HAVE_CURSES
  1740. OPT_WITHOUT_ARG("--compact",
  1741. opt_set_bool, &opt_compact,
  1742. "Use compact display without per device statistics"),
  1743. #endif
  1744. #ifdef WANT_CPUMINE
  1745. OPT_WITH_ARG("--cpu-threads",
  1746. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1747. "Number of miner CPU threads"),
  1748. OPT_WITH_ARG("-t",
  1749. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1750. opt_hidden),
  1751. #endif
  1752. OPT_WITHOUT_ARG("--debug|-D",
  1753. enable_debug, &opt_debug,
  1754. "Enable debug output"),
  1755. OPT_WITHOUT_ARG("--debuglog",
  1756. opt_set_bool, &opt_debug,
  1757. "Enable debug logging"),
  1758. OPT_WITHOUT_ARG("--device-protocol-dump",
  1759. opt_set_bool, &opt_dev_protocol,
  1760. "Verbose dump of device protocol-level activities"),
  1761. OPT_WITH_ARG("--device|-d",
  1762. set_devices, NULL, NULL,
  1763. "Enable only devices matching pattern (default: all)"),
  1764. OPT_WITHOUT_ARG("--disable-rejecting",
  1765. opt_set_bool, &opt_disable_pool,
  1766. "Automatically disable pools that continually reject shares"),
  1767. #ifdef USE_LIBMICROHTTPD
  1768. OPT_WITH_ARG("--http-port",
  1769. opt_set_intval, opt_show_intval, &httpsrv_port,
  1770. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1771. #endif
  1772. OPT_WITH_ARG("--expiry",
  1773. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1774. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1775. OPT_WITH_ARG("-E",
  1776. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1777. opt_hidden),
  1778. OPT_WITH_ARG("--expiry-lp",
  1779. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1780. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1781. OPT_WITHOUT_ARG("--failover-only",
  1782. opt_set_bool, &opt_fail_only,
  1783. "Don't leak work to backup pools when primary pool is lagging"),
  1784. #ifdef USE_FPGA
  1785. OPT_WITHOUT_ARG("--force-dev-init",
  1786. opt_set_bool, &opt_force_dev_init,
  1787. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1788. #endif
  1789. #ifdef HAVE_OPENCL
  1790. OPT_WITH_ARG("--gpu-dyninterval",
  1791. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1792. opt_hidden),
  1793. OPT_WITH_ARG("--gpu-platform",
  1794. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1795. "Select OpenCL platform ID to use for GPU mining"),
  1796. OPT_WITH_ARG("--gpu-threads|-g",
  1797. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1798. opt_hidden),
  1799. #ifdef HAVE_ADL
  1800. OPT_WITH_ARG("--gpu-engine",
  1801. set_gpu_engine, NULL, NULL,
  1802. opt_hidden),
  1803. OPT_WITH_ARG("--gpu-fan",
  1804. set_gpu_fan, NULL, NULL,
  1805. opt_hidden),
  1806. OPT_WITH_ARG("--gpu-map",
  1807. set_gpu_map, NULL, NULL,
  1808. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1809. OPT_WITH_ARG("--gpu-memclock",
  1810. set_gpu_memclock, NULL, NULL,
  1811. opt_hidden),
  1812. OPT_WITH_ARG("--gpu-memdiff",
  1813. set_gpu_memdiff, NULL, NULL,
  1814. opt_hidden),
  1815. OPT_WITH_ARG("--gpu-powertune",
  1816. set_gpu_powertune, NULL, NULL,
  1817. opt_hidden),
  1818. OPT_WITHOUT_ARG("--gpu-reorder",
  1819. opt_set_bool, &opt_reorder,
  1820. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1821. OPT_WITH_ARG("--gpu-vddc",
  1822. set_gpu_vddc, NULL, NULL,
  1823. opt_hidden),
  1824. #endif
  1825. #ifdef USE_SCRYPT
  1826. OPT_WITH_ARG("--lookup-gap",
  1827. set_lookup_gap, NULL, NULL,
  1828. opt_hidden),
  1829. #endif
  1830. OPT_WITH_ARG("--intensity|-I",
  1831. set_intensity, NULL, NULL,
  1832. opt_hidden),
  1833. #endif
  1834. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1835. OPT_WITH_ARG("--kernel-path",
  1836. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1837. "Specify a path to where bitstream and kernel files are"),
  1838. OPT_WITH_ARG("-K",
  1839. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1840. opt_hidden),
  1841. #endif
  1842. #ifdef HAVE_OPENCL
  1843. OPT_WITH_ARG("--kernel|-k",
  1844. set_kernel, NULL, NULL,
  1845. opt_hidden),
  1846. #endif
  1847. #ifdef USE_ICARUS
  1848. OPT_WITH_ARG("--icarus-options",
  1849. set_icarus_options, NULL, NULL,
  1850. opt_hidden),
  1851. OPT_WITH_ARG("--icarus-timing",
  1852. set_icarus_timing, NULL, NULL,
  1853. opt_hidden),
  1854. #endif
  1855. #ifdef USE_AVALON
  1856. OPT_WITH_ARG("--avalon-options",
  1857. set_avalon_options, NULL, NULL,
  1858. opt_hidden),
  1859. #endif
  1860. #ifdef USE_KLONDIKE
  1861. OPT_WITH_ARG("--klondike-options",
  1862. set_klondike_options, NULL, NULL,
  1863. "Set klondike options clock:temptarget"),
  1864. #endif
  1865. OPT_WITHOUT_ARG("--load-balance",
  1866. set_loadbalance, &pool_strategy,
  1867. "Change multipool strategy from failover to quota based balance"),
  1868. OPT_WITH_ARG("--log|-l",
  1869. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1870. "Interval in seconds between log output"),
  1871. OPT_WITH_ARG("--log-file|-L",
  1872. set_log_file, NULL, NULL,
  1873. "Append log file for output messages"),
  1874. OPT_WITH_ARG("--logfile",
  1875. set_log_file, NULL, NULL,
  1876. opt_hidden),
  1877. OPT_WITHOUT_ARG("--log-microseconds",
  1878. opt_set_bool, &opt_log_microseconds,
  1879. "Include microseconds in log output"),
  1880. #if defined(unix) || defined(__APPLE__)
  1881. OPT_WITH_ARG("--monitor|-m",
  1882. opt_set_charp, NULL, &opt_stderr_cmd,
  1883. "Use custom pipe cmd for output messages"),
  1884. #endif // defined(unix)
  1885. OPT_WITHOUT_ARG("--net-delay",
  1886. opt_set_bool, &opt_delaynet,
  1887. "Impose small delays in networking to avoid overloading slow routers"),
  1888. OPT_WITHOUT_ARG("--no-adl",
  1889. opt_set_bool, &opt_noadl,
  1890. #ifdef HAVE_ADL
  1891. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1892. #else
  1893. opt_hidden
  1894. #endif
  1895. ),
  1896. OPT_WITHOUT_ARG("--no-gbt",
  1897. opt_set_invbool, &want_gbt,
  1898. "Disable getblocktemplate support"),
  1899. OPT_WITHOUT_ARG("--no-getwork",
  1900. opt_set_invbool, &want_getwork,
  1901. "Disable getwork support"),
  1902. OPT_WITHOUT_ARG("--no-hotplug",
  1903. #ifdef HAVE_BFG_HOTPLUG
  1904. opt_set_invbool, &opt_hotplug,
  1905. "Disable hotplug detection"
  1906. #else
  1907. set_null, &opt_hotplug,
  1908. opt_hidden
  1909. #endif
  1910. ),
  1911. OPT_WITHOUT_ARG("--no-longpoll",
  1912. opt_set_invbool, &want_longpoll,
  1913. "Disable X-Long-Polling support"),
  1914. OPT_WITHOUT_ARG("--no-pool-disable",
  1915. opt_set_invbool, &opt_disable_pool,
  1916. opt_hidden),
  1917. OPT_WITHOUT_ARG("--no-restart",
  1918. opt_set_invbool, &opt_restart,
  1919. "Do not attempt to restart devices that hang"
  1920. ),
  1921. OPT_WITHOUT_ARG("--no-show-processors",
  1922. opt_set_invbool, &opt_show_procs,
  1923. opt_hidden),
  1924. OPT_WITHOUT_ARG("--no-show-procs",
  1925. opt_set_invbool, &opt_show_procs,
  1926. opt_hidden),
  1927. OPT_WITHOUT_ARG("--no-stratum",
  1928. opt_set_invbool, &want_stratum,
  1929. "Disable Stratum detection"),
  1930. OPT_WITHOUT_ARG("--no-submit-stale",
  1931. opt_set_invbool, &opt_submit_stale,
  1932. "Don't submit shares if they are detected as stale"),
  1933. #ifdef HAVE_OPENCL
  1934. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1935. opt_set_invbool, &opt_opencl_binaries,
  1936. "Don't attempt to use or save OpenCL kernel binaries"),
  1937. #endif
  1938. OPT_WITHOUT_ARG("--no-unicode",
  1939. #ifdef USE_UNICODE
  1940. opt_set_invbool, &use_unicode,
  1941. "Don't use Unicode characters in TUI"
  1942. #else
  1943. set_null, &use_unicode,
  1944. opt_hidden
  1945. #endif
  1946. ),
  1947. OPT_WITH_ARG("--noncelog",
  1948. set_noncelog, NULL, NULL,
  1949. "Create log of all nonces found"),
  1950. OPT_WITH_ARG("--pass|-p",
  1951. set_pass, NULL, NULL,
  1952. "Password for bitcoin JSON-RPC server"),
  1953. OPT_WITHOUT_ARG("--per-device-stats",
  1954. opt_set_bool, &want_per_device_stats,
  1955. "Force verbose mode and output per-device statistics"),
  1956. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1957. set_userpass, NULL, NULL,
  1958. opt_hidden),
  1959. OPT_WITH_ARG("--pool-priority",
  1960. set_pool_priority, NULL, NULL,
  1961. "Priority for just the previous-defined pool"),
  1962. OPT_WITH_ARG("--pool-proxy|-x",
  1963. set_pool_proxy, NULL, NULL,
  1964. "Proxy URI to use for connecting to just the previous-defined pool"),
  1965. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1966. set_pool_force_rollntime, NULL, NULL,
  1967. opt_hidden),
  1968. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1969. opt_set_bool, &opt_protocol,
  1970. "Verbose dump of protocol-level activities"),
  1971. OPT_WITH_ARG("--queue|-Q",
  1972. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1973. "Minimum number of work items to have queued (0+)"),
  1974. OPT_WITHOUT_ARG("--quiet|-q",
  1975. opt_set_bool, &opt_quiet,
  1976. "Disable logging output, display status and errors"),
  1977. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  1978. opt_set_bool, &opt_quiet_work_updates,
  1979. opt_hidden),
  1980. OPT_WITH_ARG("--quit-summary",
  1981. set_quit_summary, NULL, NULL,
  1982. "Summary printed when you quit: none/devs/procs/detailed"),
  1983. OPT_WITH_ARG("--quota|-U",
  1984. set_quota, NULL, NULL,
  1985. "quota;URL combination for server with load-balance strategy quotas"),
  1986. OPT_WITHOUT_ARG("--real-quiet",
  1987. opt_set_bool, &opt_realquiet,
  1988. "Disable all output"),
  1989. OPT_WITH_ARG("--request-diff",
  1990. set_request_diff, opt_show_floatval, &request_pdiff,
  1991. "Request a specific difficulty from pools"),
  1992. OPT_WITH_ARG("--retries",
  1993. opt_set_intval, opt_show_intval, &opt_retries,
  1994. "Number of times to retry failed submissions before giving up (-1 means never)"),
  1995. OPT_WITH_ARG("--retry-pause",
  1996. set_null, NULL, NULL,
  1997. opt_hidden),
  1998. OPT_WITH_ARG("--rotate",
  1999. set_rotate, opt_show_intval, &opt_rotate_period,
  2000. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2001. OPT_WITHOUT_ARG("--round-robin",
  2002. set_rr, &pool_strategy,
  2003. "Change multipool strategy from failover to round robin on failure"),
  2004. OPT_WITH_ARG("--scan|-S",
  2005. add_serial, NULL, NULL,
  2006. "Configure how to scan for mining devices"),
  2007. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2008. add_serial, NULL, NULL,
  2009. opt_hidden),
  2010. OPT_WITH_ARG("--scan-time",
  2011. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2012. "Upper bound on time spent scanning current work, in seconds"),
  2013. OPT_WITH_ARG("-s",
  2014. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2015. opt_hidden),
  2016. OPT_WITH_ARG("--scantime",
  2017. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2018. opt_hidden),
  2019. OPT_WITH_ARG("--sched-start",
  2020. set_schedtime, NULL, &schedstart,
  2021. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2022. OPT_WITH_ARG("--sched-stop",
  2023. set_schedtime, NULL, &schedstop,
  2024. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2025. #ifdef USE_SCRYPT
  2026. OPT_WITHOUT_ARG("--scrypt",
  2027. opt_set_bool, &opt_scrypt,
  2028. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2029. #endif
  2030. OPT_WITH_ARG("--set-device|--set",
  2031. opt_string_elist_add, NULL, &opt_set_device_list,
  2032. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2033. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2034. OPT_WITH_ARG("--shaders",
  2035. set_shaders, NULL, NULL,
  2036. opt_hidden),
  2037. #endif
  2038. #ifdef HAVE_PWD_H
  2039. OPT_WITH_ARG("--setuid",
  2040. opt_set_charp, NULL, &opt_setuid,
  2041. "Username of an unprivileged user to run as"),
  2042. #endif
  2043. OPT_WITH_ARG("--sharelog",
  2044. set_sharelog, NULL, NULL,
  2045. "Append share log to file"),
  2046. OPT_WITH_ARG("--shares",
  2047. opt_set_floatval, NULL, &opt_shares,
  2048. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2049. OPT_WITHOUT_ARG("--show-processors",
  2050. opt_set_bool, &opt_show_procs,
  2051. "Show per processor statistics in summary"),
  2052. OPT_WITHOUT_ARG("--show-procs",
  2053. opt_set_bool, &opt_show_procs,
  2054. opt_hidden),
  2055. OPT_WITH_ARG("--skip-security-checks",
  2056. set_int_0_to_9999, NULL, &opt_skip_checks,
  2057. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2058. OPT_WITH_ARG("--socks-proxy",
  2059. opt_set_charp, NULL, &opt_socks_proxy,
  2060. "Set socks proxy (host:port)"),
  2061. #ifdef USE_LIBEVENT
  2062. OPT_WITH_ARG("--stratum-port",
  2063. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2064. "Port number to listen on for stratum miners (-1 means disabled)"),
  2065. #endif
  2066. OPT_WITHOUT_ARG("--submit-stale",
  2067. opt_set_bool, &opt_submit_stale,
  2068. opt_hidden),
  2069. OPT_WITH_ARG("--submit-threads",
  2070. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2071. "Minimum number of concurrent share submissions (default: 64)"),
  2072. #ifdef HAVE_SYSLOG_H
  2073. OPT_WITHOUT_ARG("--syslog",
  2074. opt_set_bool, &use_syslog,
  2075. "Use system log for output messages (default: standard error)"),
  2076. #endif
  2077. OPT_WITH_ARG("--temp-cutoff",
  2078. set_temp_cutoff, NULL, &opt_cutofftemp,
  2079. opt_hidden),
  2080. OPT_WITH_ARG("--temp-hysteresis",
  2081. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2082. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2083. #ifdef HAVE_ADL
  2084. OPT_WITH_ARG("--temp-overheat",
  2085. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2086. opt_hidden),
  2087. #endif
  2088. OPT_WITH_ARG("--temp-target",
  2089. set_temp_target, NULL, NULL,
  2090. opt_hidden),
  2091. OPT_WITHOUT_ARG("--text-only|-T",
  2092. opt_set_invbool, &use_curses,
  2093. #ifdef HAVE_CURSES
  2094. "Disable ncurses formatted screen output"
  2095. #else
  2096. opt_hidden
  2097. #endif
  2098. ),
  2099. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2100. OPT_WITH_ARG("--thread-concurrency",
  2101. set_thread_concurrency, NULL, NULL,
  2102. opt_hidden),
  2103. #endif
  2104. #ifdef USE_UNICODE
  2105. OPT_WITHOUT_ARG("--unicode",
  2106. opt_set_bool, &use_unicode,
  2107. "Use Unicode characters in TUI"),
  2108. #endif
  2109. OPT_WITH_ARG("--url|-o",
  2110. set_url, NULL, NULL,
  2111. "URL for bitcoin JSON-RPC server"),
  2112. OPT_WITH_ARG("--user|-u",
  2113. set_user, NULL, NULL,
  2114. "Username for bitcoin JSON-RPC server"),
  2115. #ifdef HAVE_OPENCL
  2116. OPT_WITH_ARG("--vectors|-v",
  2117. set_vector, NULL, NULL,
  2118. opt_hidden),
  2119. #endif
  2120. OPT_WITHOUT_ARG("--verbose",
  2121. opt_set_bool, &opt_log_output,
  2122. "Log verbose output to stderr as well as status output"),
  2123. OPT_WITHOUT_ARG("--weighed-stats",
  2124. opt_set_bool, &opt_weighed_stats,
  2125. "Display statistics weighed to difficulty 1"),
  2126. #ifdef HAVE_OPENCL
  2127. OPT_WITH_ARG("--worksize|-w",
  2128. set_worksize, NULL, NULL,
  2129. opt_hidden),
  2130. #endif
  2131. OPT_WITHOUT_ARG("--unittest",
  2132. opt_set_bool, &opt_unittest, opt_hidden),
  2133. OPT_WITH_ARG("--userpass|-O",
  2134. set_userpass, NULL, NULL,
  2135. "Username:Password pair for bitcoin JSON-RPC server"),
  2136. OPT_WITHOUT_ARG("--worktime",
  2137. opt_set_bool, &opt_worktime,
  2138. "Display extra work time debug information"),
  2139. OPT_WITH_ARG("--pools",
  2140. opt_set_bool, NULL, NULL, opt_hidden),
  2141. OPT_ENDTABLE
  2142. };
  2143. static char *load_config(const char *arg, void __maybe_unused *unused);
  2144. static int fileconf_load;
  2145. static char *parse_config(json_t *config, bool fileconf)
  2146. {
  2147. static char err_buf[200];
  2148. struct opt_table *opt;
  2149. json_t *val;
  2150. if (fileconf && !fileconf_load)
  2151. fileconf_load = 1;
  2152. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2153. char *p, *name, *sp;
  2154. /* We don't handle subtables. */
  2155. assert(!(opt->type & OPT_SUBTABLE));
  2156. if (!opt->names)
  2157. continue;
  2158. /* Pull apart the option name(s). */
  2159. name = strdup(opt->names);
  2160. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2161. char *err = "Invalid value";
  2162. /* Ignore short options. */
  2163. if (p[1] != '-')
  2164. continue;
  2165. val = json_object_get(config, p+2);
  2166. if (!val)
  2167. continue;
  2168. if (opt->type & OPT_HASARG) {
  2169. if (json_is_string(val)) {
  2170. err = opt->cb_arg(json_string_value(val),
  2171. opt->u.arg);
  2172. } else if (json_is_number(val)) {
  2173. char buf[256], *p, *q;
  2174. snprintf(buf, 256, "%f", json_number_value(val));
  2175. if ( (p = strchr(buf, '.')) ) {
  2176. // Trim /\.0*$/ to work properly with integer-only arguments
  2177. q = p;
  2178. while (*(++q) == '0') {}
  2179. if (*q == '\0')
  2180. *p = '\0';
  2181. }
  2182. err = opt->cb_arg(buf, opt->u.arg);
  2183. } else if (json_is_array(val)) {
  2184. int n, size = json_array_size(val);
  2185. err = NULL;
  2186. for (n = 0; n < size && !err; n++) {
  2187. if (json_is_string(json_array_get(val, n)))
  2188. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2189. else if (json_is_object(json_array_get(val, n)))
  2190. err = parse_config(json_array_get(val, n), false);
  2191. }
  2192. }
  2193. } else if (opt->type & OPT_NOARG) {
  2194. if (json_is_true(val))
  2195. err = opt->cb(opt->u.arg);
  2196. else if (json_is_boolean(val)) {
  2197. if (opt->cb == (void*)opt_set_bool)
  2198. err = opt_set_invbool(opt->u.arg);
  2199. else if (opt->cb == (void*)opt_set_invbool)
  2200. err = opt_set_bool(opt->u.arg);
  2201. }
  2202. }
  2203. if (err) {
  2204. /* Allow invalid values to be in configuration
  2205. * file, just skipping over them provided the
  2206. * JSON is still valid after that. */
  2207. if (fileconf) {
  2208. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2209. fileconf_load = -1;
  2210. } else {
  2211. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2212. p, err);
  2213. return err_buf;
  2214. }
  2215. }
  2216. }
  2217. free(name);
  2218. }
  2219. val = json_object_get(config, JSON_INCLUDE_CONF);
  2220. if (val && json_is_string(val))
  2221. return load_config(json_string_value(val), NULL);
  2222. return NULL;
  2223. }
  2224. char *cnfbuf = NULL;
  2225. static char *load_config(const char *arg, void __maybe_unused *unused)
  2226. {
  2227. json_error_t err;
  2228. json_t *config;
  2229. char *json_error;
  2230. size_t siz;
  2231. if (!cnfbuf)
  2232. cnfbuf = strdup(arg);
  2233. if (++include_count > JSON_MAX_DEPTH)
  2234. return JSON_MAX_DEPTH_ERR;
  2235. #if JANSSON_MAJOR_VERSION > 1
  2236. config = json_load_file(arg, 0, &err);
  2237. #else
  2238. config = json_load_file(arg, &err);
  2239. #endif
  2240. if (!json_is_object(config)) {
  2241. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2242. json_error = malloc(siz);
  2243. if (!json_error)
  2244. quit(1, "Malloc failure in json error");
  2245. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2246. return json_error;
  2247. }
  2248. config_loaded = true;
  2249. /* Parse the config now, so we can override it. That can keep pointers
  2250. * so don't free config object. */
  2251. return parse_config(config, true);
  2252. }
  2253. static void load_default_config(void)
  2254. {
  2255. cnfbuf = malloc(PATH_MAX);
  2256. #if defined(unix)
  2257. if (getenv("HOME") && *getenv("HOME")) {
  2258. strcpy(cnfbuf, getenv("HOME"));
  2259. strcat(cnfbuf, "/");
  2260. } else
  2261. strcpy(cnfbuf, "");
  2262. char *dirp = cnfbuf + strlen(cnfbuf);
  2263. strcpy(dirp, ".bfgminer/");
  2264. strcat(dirp, def_conf);
  2265. if (access(cnfbuf, R_OK))
  2266. // No BFGMiner config, try Cgminer's...
  2267. strcpy(dirp, ".cgminer/cgminer.conf");
  2268. #else
  2269. strcpy(cnfbuf, "");
  2270. strcat(cnfbuf, def_conf);
  2271. #endif
  2272. if (!access(cnfbuf, R_OK))
  2273. load_config(cnfbuf, NULL);
  2274. else {
  2275. free(cnfbuf);
  2276. cnfbuf = NULL;
  2277. }
  2278. }
  2279. extern const char *opt_argv0;
  2280. static char *opt_verusage_and_exit(const char *extra)
  2281. {
  2282. puts(packagename);
  2283. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2284. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2285. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2286. printf(" Options:%s\n", BFG_OPTLIST);
  2287. printf("%s", opt_usage(opt_argv0, extra));
  2288. fflush(stdout);
  2289. exit(0);
  2290. }
  2291. /* These options are parsed before anything else */
  2292. static struct opt_table opt_early_table[] = {
  2293. OPT_EARLY_WITH_ARG("--config|-c",
  2294. set_bool_ignore_arg, NULL, &config_loaded,
  2295. opt_hidden),
  2296. OPT_EARLY_WITHOUT_ARG("--no-config",
  2297. opt_set_bool, &config_loaded,
  2298. "Inhibit loading default config file"),
  2299. OPT_ENDTABLE
  2300. };
  2301. /* These options are available from commandline only */
  2302. static struct opt_table opt_cmdline_table[] = {
  2303. OPT_WITH_ARG("--config|-c",
  2304. load_config, NULL, NULL,
  2305. "Load a JSON-format configuration file\n"
  2306. "See example.conf for an example configuration."),
  2307. OPT_EARLY_WITHOUT_ARG("--no-config",
  2308. opt_set_bool, &config_loaded,
  2309. "Inhibit loading default config file"),
  2310. OPT_WITHOUT_ARG("--help|-h",
  2311. opt_verusage_and_exit, NULL,
  2312. "Print this message"),
  2313. #ifdef HAVE_OPENCL
  2314. OPT_WITHOUT_ARG("--ndevs|-n",
  2315. print_ndevs_and_exit, &nDevs,
  2316. opt_hidden),
  2317. #endif
  2318. OPT_WITHOUT_ARG("--version|-V",
  2319. opt_version_and_exit, packagename,
  2320. "Display version and exit"),
  2321. OPT_ENDTABLE
  2322. };
  2323. static bool jobj_binary(const json_t *obj, const char *key,
  2324. void *buf, size_t buflen, bool required)
  2325. {
  2326. const char *hexstr;
  2327. json_t *tmp;
  2328. tmp = json_object_get(obj, key);
  2329. if (unlikely(!tmp)) {
  2330. if (unlikely(required))
  2331. applog(LOG_ERR, "JSON key '%s' not found", key);
  2332. return false;
  2333. }
  2334. hexstr = json_string_value(tmp);
  2335. if (unlikely(!hexstr)) {
  2336. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2337. return false;
  2338. }
  2339. if (!hex2bin(buf, hexstr, buflen))
  2340. return false;
  2341. return true;
  2342. }
  2343. static void calc_midstate(struct work *work)
  2344. {
  2345. union {
  2346. unsigned char c[64];
  2347. uint32_t i[16];
  2348. } data;
  2349. swap32yes(&data.i[0], work->data, 16);
  2350. sha256_ctx ctx;
  2351. sha256_init(&ctx);
  2352. sha256_update(&ctx, data.c, 64);
  2353. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2354. swap32tole(work->midstate, work->midstate, 8);
  2355. }
  2356. static struct work *make_work(void)
  2357. {
  2358. struct work *work = calloc(1, sizeof(struct work));
  2359. if (unlikely(!work))
  2360. quit(1, "Failed to calloc work in make_work");
  2361. cg_wlock(&control_lock);
  2362. work->id = total_work++;
  2363. cg_wunlock(&control_lock);
  2364. return work;
  2365. }
  2366. /* This is the central place all work that is about to be retired should be
  2367. * cleaned to remove any dynamically allocated arrays within the struct */
  2368. void clean_work(struct work *work)
  2369. {
  2370. free(work->job_id);
  2371. bytes_free(&work->nonce2);
  2372. free(work->nonce1);
  2373. if (work->device_data_free_func)
  2374. work->device_data_free_func(work);
  2375. if (work->tmpl) {
  2376. struct pool *pool = work->pool;
  2377. mutex_lock(&pool->pool_lock);
  2378. bool free_tmpl = !--*work->tmpl_refcount;
  2379. mutex_unlock(&pool->pool_lock);
  2380. if (free_tmpl) {
  2381. blktmpl_free(work->tmpl);
  2382. free(work->tmpl_refcount);
  2383. }
  2384. }
  2385. memset(work, 0, sizeof(struct work));
  2386. }
  2387. /* All dynamically allocated work structs should be freed here to not leak any
  2388. * ram from arrays allocated within the work struct */
  2389. void free_work(struct work *work)
  2390. {
  2391. clean_work(work);
  2392. free(work);
  2393. }
  2394. static const char *workpadding_bin = "\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x80\x02\0\0";
  2395. // Must only be called with ch_lock held!
  2396. static
  2397. void __update_block_title(const unsigned char *hash_swap)
  2398. {
  2399. if (hash_swap) {
  2400. char tmp[17];
  2401. // Only provided when the block has actually changed
  2402. free(current_hash);
  2403. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2404. bin2hex(tmp, &hash_swap[24], 8);
  2405. memset(current_hash, '.', 3);
  2406. memcpy(&current_hash[3], tmp, 17);
  2407. known_blkheight_current = false;
  2408. } else if (likely(known_blkheight_current)) {
  2409. return;
  2410. }
  2411. if (current_block_id == known_blkheight_blkid) {
  2412. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2413. if (known_blkheight < 1000000) {
  2414. memmove(&current_hash[3], &current_hash[11], 8);
  2415. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2416. }
  2417. known_blkheight_current = true;
  2418. }
  2419. }
  2420. static
  2421. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2422. {
  2423. if (known_blkheight == blkheight)
  2424. return;
  2425. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2426. cg_wlock(&ch_lock);
  2427. known_blkheight = blkheight;
  2428. known_blkheight_blkid = block_id;
  2429. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2430. if (block_id == current_block_id)
  2431. __update_block_title(NULL);
  2432. cg_wunlock(&ch_lock);
  2433. }
  2434. static
  2435. void pool_set_opaque(struct pool *pool, bool opaque)
  2436. {
  2437. if (pool->swork.opaque == opaque)
  2438. return;
  2439. pool->swork.opaque = opaque;
  2440. if (opaque)
  2441. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2442. pool->pool_no);
  2443. else
  2444. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2445. pool->pool_no);
  2446. }
  2447. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2448. {
  2449. json_t *res_val = json_object_get(val, "result");
  2450. json_t *tmp_val;
  2451. bool ret = false;
  2452. if (unlikely(detect_algo == 1)) {
  2453. json_t *tmp = json_object_get(res_val, "algorithm");
  2454. const char *v = tmp ? json_string_value(tmp) : "";
  2455. if (strncasecmp(v, "scrypt", 6))
  2456. detect_algo = 2;
  2457. }
  2458. if (work->tmpl) {
  2459. struct timeval tv_now;
  2460. cgtime(&tv_now);
  2461. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2462. if (err) {
  2463. applog(LOG_ERR, "blktmpl error: %s", err);
  2464. return false;
  2465. }
  2466. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2467. #if BLKMAKER_VERSION > 1
  2468. if (opt_coinbase_script.sz)
  2469. {
  2470. bool newcb;
  2471. #if BLKMAKER_VERSION > 2
  2472. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2473. #else
  2474. newcb = !work->tmpl->cbtxn;
  2475. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2476. #endif
  2477. if (newcb)
  2478. {
  2479. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2480. if (ae < (ssize_t)sizeof(template_nonce))
  2481. applog(LOG_WARNING, "Cannot append template-nonce to coinbase on pool %u (%"PRId64") - you might be wasting hashing!", work->pool->pool_no, (int64_t)ae);
  2482. ++template_nonce;
  2483. }
  2484. }
  2485. #endif
  2486. #if BLKMAKER_VERSION > 0
  2487. {
  2488. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2489. static bool appenderr = false;
  2490. if (ae <= 0) {
  2491. if (opt_coinbase_sig) {
  2492. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2493. appenderr = true;
  2494. }
  2495. } else if (ae >= 3 || opt_coinbase_sig) {
  2496. const char *cbappend = opt_coinbase_sig;
  2497. const char full[] = PACKAGE " " VERSION;
  2498. if (!cbappend) {
  2499. if ((size_t)ae >= sizeof(full) - 1)
  2500. cbappend = full;
  2501. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2502. cbappend = PACKAGE;
  2503. else
  2504. cbappend = "BFG";
  2505. }
  2506. size_t cbappendsz = strlen(cbappend);
  2507. static bool truncatewarning = false;
  2508. if (cbappendsz <= (size_t)ae) {
  2509. if (cbappendsz < (size_t)ae)
  2510. // If we have space, include the trailing \0
  2511. ++cbappendsz;
  2512. ae = cbappendsz;
  2513. truncatewarning = false;
  2514. } else {
  2515. char *tmp = malloc(ae + 1);
  2516. memcpy(tmp, opt_coinbase_sig, ae);
  2517. tmp[ae] = '\0';
  2518. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2519. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2520. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2521. free(tmp);
  2522. truncatewarning = true;
  2523. }
  2524. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2525. if (ae <= 0) {
  2526. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2527. appenderr = true;
  2528. } else
  2529. appenderr = false;
  2530. }
  2531. }
  2532. #endif
  2533. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2534. return false;
  2535. swap32yes(work->data, work->data, 80 / 4);
  2536. memcpy(&work->data[80], workpadding_bin, 48);
  2537. const struct blktmpl_longpoll_req *lp;
  2538. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2539. free(pool->lp_id);
  2540. pool->lp_id = strdup(lp->id);
  2541. #if 0 /* This just doesn't work :( */
  2542. curl_socket_t sock = pool->lp_socket;
  2543. if (sock != CURL_SOCKET_BAD) {
  2544. pool->lp_socket = CURL_SOCKET_BAD;
  2545. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2546. shutdown(sock, SHUT_RDWR);
  2547. }
  2548. #endif
  2549. }
  2550. }
  2551. else
  2552. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2553. applog(LOG_ERR, "JSON inval data");
  2554. return false;
  2555. }
  2556. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2557. // Calculate it ourselves
  2558. applog(LOG_DEBUG, "Calculating midstate locally");
  2559. calc_midstate(work);
  2560. }
  2561. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2562. applog(LOG_ERR, "JSON inval target");
  2563. return false;
  2564. }
  2565. if (work->tmpl) {
  2566. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2567. {
  2568. int p = (sizeof(work->target) - 1) - i;
  2569. unsigned char c = work->target[i];
  2570. work->target[i] = work->target[p];
  2571. work->target[p] = c;
  2572. }
  2573. }
  2574. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2575. uint32_t blkheight = json_number_value(tmp_val);
  2576. uint32_t block_id = ((uint32_t*)work->data)[1];
  2577. have_block_height(block_id, blkheight);
  2578. }
  2579. memset(work->hash, 0, sizeof(work->hash));
  2580. cgtime(&work->tv_staged);
  2581. pool_set_opaque(pool, !work->tmpl);
  2582. ret = true;
  2583. return ret;
  2584. }
  2585. /* Returns whether the pool supports local work generation or not. */
  2586. static bool pool_localgen(struct pool *pool)
  2587. {
  2588. return (pool->last_work_copy || pool->has_stratum);
  2589. }
  2590. int dev_from_id(int thr_id)
  2591. {
  2592. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2593. return cgpu->device_id;
  2594. }
  2595. /* Create an exponentially decaying average over the opt_log_interval */
  2596. void decay_time(double *f, double fadd, double fsecs)
  2597. {
  2598. double ftotal, fprop;
  2599. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2600. ftotal = 1.0 + fprop;
  2601. *f += (fadd * fprop);
  2602. *f /= ftotal;
  2603. }
  2604. static int __total_staged(void)
  2605. {
  2606. return HASH_COUNT(staged_work);
  2607. }
  2608. static int total_staged(void)
  2609. {
  2610. int ret;
  2611. mutex_lock(stgd_lock);
  2612. ret = __total_staged();
  2613. mutex_unlock(stgd_lock);
  2614. return ret;
  2615. }
  2616. #ifdef HAVE_CURSES
  2617. WINDOW *mainwin, *statuswin, *logwin;
  2618. #endif
  2619. double total_secs = 1.0;
  2620. static char statusline[256];
  2621. /* logstart is where the log window should start */
  2622. static int devcursor, logstart, logcursor;
  2623. #ifdef HAVE_CURSES
  2624. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2625. static int statusy;
  2626. static int devsummaryYOffset;
  2627. static int total_lines;
  2628. #endif
  2629. #ifdef HAVE_OPENCL
  2630. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2631. #endif
  2632. struct cgpu_info *cpus;
  2633. bool _bfg_console_cancel_disabled;
  2634. int _bfg_console_prev_cancelstate;
  2635. #ifdef HAVE_CURSES
  2636. #define lock_curses() bfg_console_lock()
  2637. #define unlock_curses() bfg_console_unlock()
  2638. static bool curses_active_locked(void)
  2639. {
  2640. bool ret;
  2641. lock_curses();
  2642. ret = curses_active;
  2643. if (!ret)
  2644. unlock_curses();
  2645. return ret;
  2646. }
  2647. // Cancellable getch
  2648. int my_cancellable_getch(void)
  2649. {
  2650. // This only works because the macro only hits direct getch() calls
  2651. typedef int (*real_getch_t)(void);
  2652. const real_getch_t real_getch = __real_getch;
  2653. int type, rv;
  2654. bool sct;
  2655. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2656. rv = real_getch();
  2657. if (sct)
  2658. pthread_setcanceltype(type, &type);
  2659. return rv;
  2660. }
  2661. #ifdef PDCURSES
  2662. static
  2663. int bfg_wresize(WINDOW *win, int lines, int columns)
  2664. {
  2665. int rv = wresize(win, lines, columns);
  2666. int x, y;
  2667. getyx(win, y, x);
  2668. if (unlikely(y >= lines || x >= columns))
  2669. {
  2670. if (y >= lines)
  2671. y = lines - 1;
  2672. if (x >= columns)
  2673. x = columns - 1;
  2674. wmove(win, y, x);
  2675. }
  2676. return rv;
  2677. }
  2678. #else
  2679. # define bfg_wresize wresize
  2680. #endif
  2681. #endif
  2682. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2683. {
  2684. va_list ap;
  2685. size_t presz = strlen(buf);
  2686. va_start(ap, fmt);
  2687. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2688. va_end(ap);
  2689. }
  2690. double stats_elapsed(struct cgminer_stats *stats)
  2691. {
  2692. struct timeval now;
  2693. double elapsed;
  2694. if (stats->start_tv.tv_sec == 0)
  2695. elapsed = total_secs;
  2696. else {
  2697. cgtime(&now);
  2698. elapsed = tdiff(&now, &stats->start_tv);
  2699. }
  2700. if (elapsed < 1.0)
  2701. elapsed = 1.0;
  2702. return elapsed;
  2703. }
  2704. bool drv_ready(struct cgpu_info *cgpu)
  2705. {
  2706. switch (cgpu->status) {
  2707. case LIFE_INIT:
  2708. case LIFE_DEAD2:
  2709. return false;
  2710. default:
  2711. return true;
  2712. }
  2713. }
  2714. double cgpu_utility(struct cgpu_info *cgpu)
  2715. {
  2716. double dev_runtime = cgpu_runtime(cgpu);
  2717. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2718. }
  2719. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2720. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2721. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2722. }while(0)
  2723. static float
  2724. utility_to_hashrate(double utility)
  2725. {
  2726. return utility * 0x4444444;
  2727. }
  2728. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2729. static const int _unitbase = 4;
  2730. static
  2731. void pick_unit(float hashrate, unsigned char *unit)
  2732. {
  2733. unsigned char i;
  2734. if (hashrate == 0)
  2735. {
  2736. if (*unit < _unitbase)
  2737. *unit = _unitbase;
  2738. return;
  2739. }
  2740. hashrate *= 1e12;
  2741. for (i = 0; i < *unit; ++i)
  2742. hashrate /= 1e3;
  2743. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2744. while (hashrate >= 999.95)
  2745. {
  2746. hashrate /= 1e3;
  2747. if (likely(_unitchar[*unit] != '?'))
  2748. ++*unit;
  2749. }
  2750. }
  2751. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2752. enum h2bs_fmt {
  2753. H2B_NOUNIT, // "xxx.x"
  2754. H2B_SHORT, // "xxx.xMH/s"
  2755. H2B_SPACED, // "xxx.x MH/s"
  2756. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2757. };
  2758. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2759. enum bfu_floatprec {
  2760. FUP_INTEGER,
  2761. FUP_HASHES,
  2762. FUP_BTC,
  2763. FUP_DIFF,
  2764. };
  2765. static
  2766. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2767. {
  2768. char *s = buf;
  2769. unsigned char prec, i, unit;
  2770. int rv = 0;
  2771. if (unitin == -1)
  2772. {
  2773. unit = 0;
  2774. hashrate_pick_unit(hashrate, &unit);
  2775. }
  2776. else
  2777. unit = unitin;
  2778. hashrate *= 1e12;
  2779. for (i = 0; i < unit; ++i)
  2780. hashrate /= 1000;
  2781. switch (fprec)
  2782. {
  2783. case FUP_HASHES:
  2784. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2785. if (hashrate >= 99.995 || unit < 6)
  2786. prec = 1;
  2787. else
  2788. prec = 2;
  2789. _SNP("%5.*f", prec, hashrate);
  2790. break;
  2791. case FUP_INTEGER:
  2792. _SNP("%3d", (int)hashrate);
  2793. break;
  2794. case FUP_BTC:
  2795. if (hashrate >= 99.995)
  2796. prec = 0;
  2797. else
  2798. prec = 2;
  2799. _SNP("%5.*f", prec, hashrate);
  2800. break;
  2801. case FUP_DIFF:
  2802. if (unit > _unitbase)
  2803. _SNP("%.3g", hashrate);
  2804. else
  2805. _SNP("%u", (unsigned int)hashrate);
  2806. }
  2807. switch (fmt) {
  2808. case H2B_SPACED:
  2809. _SNP(" ");
  2810. case H2B_SHORT:
  2811. _SNP("%c%s", _unitchar[unit], measurement);
  2812. default:
  2813. break;
  2814. case H2B_SHORTV:
  2815. _SNP("%.1s%s", (unit == _unitbase) ? "" : &_unitchar[unit], measurement);
  2816. }
  2817. return rv;
  2818. }
  2819. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2820. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2821. static
  2822. char *_multi_format_unit(char **buflist, size_t *bufszlist, bool floatprec, const char *measurement, enum h2bs_fmt fmt, const char *delim, int count, const float *numbers, bool isarray)
  2823. {
  2824. unsigned char unit = 0;
  2825. bool allzero = true;
  2826. int i;
  2827. size_t delimsz = 0;
  2828. char *buf = buflist[0];
  2829. size_t bufsz = bufszlist[0];
  2830. size_t itemwidth = (floatprec ? 5 : 3);
  2831. if (!isarray)
  2832. delimsz = strlen(delim);
  2833. for (i = 0; i < count; ++i)
  2834. if (numbers[i] != 0)
  2835. {
  2836. pick_unit(numbers[i], &unit);
  2837. allzero = false;
  2838. }
  2839. if (allzero)
  2840. unit = _unitbase;
  2841. --count;
  2842. for (i = 0; i < count; ++i)
  2843. {
  2844. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2845. if (isarray)
  2846. {
  2847. buf = buflist[i + 1];
  2848. bufsz = bufszlist[i + 1];
  2849. }
  2850. else
  2851. {
  2852. buf += itemwidth;
  2853. bufsz -= itemwidth;
  2854. if (delimsz > bufsz)
  2855. delimsz = bufsz;
  2856. memcpy(buf, delim, delimsz);
  2857. buf += delimsz;
  2858. bufsz -= delimsz;
  2859. }
  2860. }
  2861. // Last entry has the unit
  2862. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2863. return buflist[0];
  2864. }
  2865. #define multi_format_unit2(buf, bufsz, floatprec, measurement, fmt, delim, count, ...) _multi_format_unit((char *[]){buf}, (size_t[]){bufsz}, floatprec, measurement, fmt, delim, count, (float[]){ __VA_ARGS__ }, false)
  2866. #define multi_format_unit_array2(buflist, bufszlist, floatprec, measurement, fmt, count, ...) (void)_multi_format_unit(buflist, bufszlist, floatprec, measurement, fmt, NULL, count, (float[]){ __VA_ARGS__ }, true)
  2867. static
  2868. int percentf3(char * const buf, size_t sz, double p, const double t)
  2869. {
  2870. char *s = buf;
  2871. int rv = 0;
  2872. if (!p)
  2873. _SNP("none");
  2874. else
  2875. if (t <= p)
  2876. _SNP("100%%");
  2877. else
  2878. {
  2879. p /= t;
  2880. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2881. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2882. else
  2883. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2884. _SNP("%.1f%%", p * 100); // "9.1%"
  2885. else
  2886. _SNP("%3.0f%%", p * 100); // " 99%"
  2887. }
  2888. return rv;
  2889. }
  2890. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2891. static
  2892. void test_decimal_width()
  2893. {
  2894. // The pipe character at end of each line should perfectly line up
  2895. char printbuf[512];
  2896. char testbuf1[64];
  2897. char testbuf2[64];
  2898. char testbuf3[64];
  2899. char testbuf4[64];
  2900. double testn;
  2901. int width;
  2902. int saved;
  2903. // Hotspots around 0.1 and 0.01
  2904. saved = -1;
  2905. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2906. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2907. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2908. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2909. if (unlikely((saved != -1) && (width != saved))) {
  2910. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2911. applog(LOG_ERR, "%s", printbuf);
  2912. }
  2913. saved = width;
  2914. }
  2915. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2916. saved = -1;
  2917. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2918. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2919. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2920. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2921. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2922. if (unlikely((saved != -1) && (width != saved))) {
  2923. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2924. applog(LOG_ERR, "%s", printbuf);
  2925. }
  2926. saved = width;
  2927. }
  2928. // Hotspot around unit transition boundary in pick_unit
  2929. saved = -1;
  2930. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2931. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2932. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2933. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2934. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2935. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2936. if (unlikely((saved != -1) && (width != saved))) {
  2937. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2938. applog(LOG_ERR, "%s", printbuf);
  2939. }
  2940. saved = width;
  2941. }
  2942. }
  2943. #ifdef HAVE_CURSES
  2944. static void adj_width(int var, int *length);
  2945. #endif
  2946. #ifdef HAVE_CURSES
  2947. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2948. static
  2949. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, int wnotaccepted, int waccepted, int hwerrs, int bad_diff1, int allnonces)
  2950. {
  2951. char rejpcbuf[6];
  2952. char bnbuf[6];
  2953. adj_width(accepted, &awidth);
  2954. adj_width(rejected, &rwidth);
  2955. adj_width(stale, &swidth);
  2956. adj_width(hwerrs, &hwwidth);
  2957. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2958. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2959. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2960. cHr, aHr, uHr,
  2961. awidth, accepted,
  2962. rwidth, rejected,
  2963. swidth, stale,
  2964. rejpcbuf,
  2965. hwwidth, hwerrs,
  2966. bnbuf
  2967. );
  2968. }
  2969. #endif
  2970. static inline
  2971. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  2972. {
  2973. if (!(use_unicode && have_unicode_degrees))
  2974. maybe_unicode = false;
  2975. if (temp && *temp > 0.)
  2976. if (maybe_unicode)
  2977. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  2978. else
  2979. snprintf(buf, bufsz, "%4.1fC", *temp);
  2980. else
  2981. {
  2982. if (temp)
  2983. snprintf(buf, bufsz, " ");
  2984. if (maybe_unicode)
  2985. tailsprintf(buf, bufsz, " ");
  2986. }
  2987. tailsprintf(buf, bufsz, " | ");
  2988. }
  2989. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  2990. {
  2991. #ifndef HAVE_CURSES
  2992. assert(for_curses == false);
  2993. #endif
  2994. struct device_drv *drv = cgpu->drv;
  2995. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  2996. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  2997. char rejpcbuf[6];
  2998. char bnbuf[6];
  2999. double dev_runtime;
  3000. if (!opt_show_procs)
  3001. cgpu = cgpu->device;
  3002. dev_runtime = cgpu_runtime(cgpu);
  3003. double rolling, mhashes;
  3004. int accepted, rejected, stale;
  3005. double waccepted;
  3006. double wnotaccepted;
  3007. int hwerrs;
  3008. double bad_diff1, good_diff1;
  3009. rolling = mhashes = waccepted = wnotaccepted = 0;
  3010. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3011. {
  3012. struct cgpu_info *slave = cgpu;
  3013. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3014. {
  3015. slave->utility = slave->accepted / dev_runtime * 60;
  3016. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3017. rolling += slave->rolling;
  3018. mhashes += slave->total_mhashes;
  3019. if (opt_weighed_stats)
  3020. {
  3021. accepted += slave->diff_accepted;
  3022. rejected += slave->diff_rejected;
  3023. stale += slave->diff_stale;
  3024. }
  3025. else
  3026. {
  3027. accepted += slave->accepted;
  3028. rejected += slave->rejected;
  3029. stale += slave->stale;
  3030. }
  3031. waccepted += slave->diff_accepted;
  3032. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3033. hwerrs += slave->hw_errors;
  3034. bad_diff1 += slave->bad_diff1;
  3035. good_diff1 += slave->diff1;
  3036. if (opt_show_procs)
  3037. break;
  3038. }
  3039. }
  3040. double wtotal = (waccepted + wnotaccepted);
  3041. multi_format_unit_array2(
  3042. ((char*[]){cHr, aHr, uHr}),
  3043. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  3044. true, "h/s", hashrate_style,
  3045. 3,
  3046. 1e6*rolling,
  3047. 1e6*mhashes / dev_runtime,
  3048. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3049. // Processor representation
  3050. #ifdef HAVE_CURSES
  3051. if (for_curses)
  3052. {
  3053. if (opt_show_procs)
  3054. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3055. else
  3056. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3057. }
  3058. else
  3059. #endif
  3060. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3061. if (include_serial_in_statline && cgpu->dev_serial)
  3062. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3063. if (unlikely(cgpu->status == LIFE_INIT))
  3064. {
  3065. tailsprintf(buf, bufsz, "Initializing...");
  3066. return;
  3067. }
  3068. {
  3069. const size_t bufln = strlen(buf);
  3070. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3071. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3072. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3073. else
  3074. {
  3075. float temp = cgpu->temp;
  3076. if (!opt_show_procs)
  3077. {
  3078. // Find the highest temperature of all processors
  3079. struct cgpu_info *proc = cgpu;
  3080. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3081. if (proc->temp > temp)
  3082. temp = proc->temp;
  3083. }
  3084. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3085. }
  3086. }
  3087. #ifdef HAVE_CURSES
  3088. if (for_curses)
  3089. {
  3090. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3091. const char *cHrStats;
  3092. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3093. bool all_dead = true, all_off = true, all_rdrv = true;
  3094. struct cgpu_info *proc = cgpu;
  3095. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3096. {
  3097. switch (cHrStatsI) {
  3098. default:
  3099. if (proc->status == LIFE_WAIT)
  3100. cHrStatsI = 5;
  3101. case 5:
  3102. if (proc->deven == DEV_RECOVER_ERR)
  3103. cHrStatsI = 4;
  3104. case 4:
  3105. if (proc->deven == DEV_RECOVER)
  3106. cHrStatsI = 3;
  3107. case 3:
  3108. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3109. {
  3110. cHrStatsI = 1;
  3111. all_off = false;
  3112. }
  3113. else
  3114. {
  3115. if (likely(proc->deven == DEV_ENABLED))
  3116. all_off = false;
  3117. if (proc->deven != DEV_RECOVER_DRV)
  3118. all_rdrv = false;
  3119. }
  3120. case 1:
  3121. break;
  3122. }
  3123. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3124. all_dead = false;
  3125. if (opt_show_procs)
  3126. break;
  3127. }
  3128. if (unlikely(all_dead))
  3129. cHrStatsI = 0;
  3130. else
  3131. if (unlikely(all_off))
  3132. cHrStatsI = 2;
  3133. cHrStats = cHrStatsOpt[cHrStatsI];
  3134. if (cHrStatsI == 2 && all_rdrv)
  3135. cHrStats = " RST ";
  3136. format_statline(buf, bufsz,
  3137. cHrStats,
  3138. aHr, uHr,
  3139. accepted, rejected, stale,
  3140. wnotaccepted, waccepted,
  3141. hwerrs,
  3142. bad_diff1, bad_diff1 + good_diff1);
  3143. }
  3144. else
  3145. #endif
  3146. {
  3147. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3148. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3149. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3150. opt_log_interval,
  3151. cHr, aHr, uHr,
  3152. accepted,
  3153. rejected,
  3154. stale,
  3155. rejpcbuf,
  3156. hwerrs,
  3157. bnbuf
  3158. );
  3159. }
  3160. }
  3161. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3162. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3163. static void text_print_status(int thr_id)
  3164. {
  3165. struct cgpu_info *cgpu;
  3166. char logline[256];
  3167. cgpu = get_thr_cgpu(thr_id);
  3168. if (cgpu) {
  3169. get_statline(logline, sizeof(logline), cgpu);
  3170. printf("%s\n", logline);
  3171. }
  3172. }
  3173. #ifdef HAVE_CURSES
  3174. static int attr_bad = A_BOLD;
  3175. #ifdef WIN32
  3176. #define swprintf snwprintf
  3177. #endif
  3178. static
  3179. void bfg_waddstr(WINDOW *win, const char *s)
  3180. {
  3181. const char *p = s;
  3182. int32_t w;
  3183. int wlen;
  3184. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3185. while (true)
  3186. {
  3187. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3188. {
  3189. // Printable ASCII
  3190. ++p;
  3191. }
  3192. if (p != s)
  3193. waddnstr(win, s, p - s);
  3194. w = utf8_decode(p, &wlen);
  3195. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3196. {
  3197. w = unicode_micro;
  3198. wlen = 1;
  3199. }
  3200. s = p += wlen;
  3201. switch(w)
  3202. {
  3203. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3204. case '\0':
  3205. return;
  3206. case 0xf000: // "bad" off
  3207. wattroff(win, attr_bad);
  3208. break;
  3209. case 0xf001: // "bad" on
  3210. wattron(win, attr_bad);
  3211. break;
  3212. #ifdef USE_UNICODE
  3213. case '|':
  3214. wadd_wch(win, WACS_VLINE);
  3215. break;
  3216. #endif
  3217. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3218. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3219. if (!use_unicode)
  3220. {
  3221. waddch(win, '-');
  3222. break;
  3223. }
  3224. #ifdef USE_UNICODE
  3225. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3226. break;
  3227. #endif
  3228. case 0x2022:
  3229. if (w > WCHAR_MAX || !iswprint(w))
  3230. w = '*';
  3231. default:
  3232. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3233. {
  3234. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3235. if (iswprint(REPLACEMENT_CHAR))
  3236. w = REPLACEMENT_CHAR;
  3237. else
  3238. #endif
  3239. w = '?';
  3240. }
  3241. {
  3242. #ifdef USE_UNICODE
  3243. wchar_t wbuf[0x10];
  3244. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3245. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3246. waddnwstr(win, wbuf, wbuflen);
  3247. #else
  3248. wprintw(win, "%lc", (wint_t)w);
  3249. #endif
  3250. }
  3251. }
  3252. }
  3253. }
  3254. static inline
  3255. void bfg_hline(WINDOW *win, int y)
  3256. {
  3257. int maxx, __maybe_unused maxy;
  3258. getmaxyx(win, maxy, maxx);
  3259. #ifdef USE_UNICODE
  3260. if (use_unicode)
  3261. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3262. else
  3263. #endif
  3264. mvwhline(win, y, 0, '-', maxx);
  3265. }
  3266. // Spaces until end of line, using current attributes (ie, not completely clear)
  3267. static
  3268. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3269. {
  3270. int x, maxx;
  3271. int __maybe_unused y;
  3272. getmaxyx(win, y, maxx);
  3273. getyx(win, y, x);
  3274. const int space_count = (maxx - x) - offset;
  3275. // Check for negative - terminal too narrow
  3276. if (space_count <= 0)
  3277. return;
  3278. char buf[space_count];
  3279. memset(buf, ' ', space_count);
  3280. waddnstr(win, buf, space_count);
  3281. }
  3282. static int menu_attr = A_REVERSE;
  3283. #define CURBUFSIZ 256
  3284. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3285. char tmp42[CURBUFSIZ]; \
  3286. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3287. wmove(win, y, x); \
  3288. bfg_waddstr(win, tmp42); \
  3289. } while (0)
  3290. #define cg_wprintw(win, fmt, ...) do { \
  3291. char tmp42[CURBUFSIZ]; \
  3292. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3293. bfg_waddstr(win, tmp42); \
  3294. } while (0)
  3295. /* Must be called with curses mutex lock held and curses_active */
  3296. static void curses_print_status(const int ts)
  3297. {
  3298. struct pool *pool = currentpool;
  3299. struct timeval now, tv;
  3300. float efficiency;
  3301. double income;
  3302. int logdiv;
  3303. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3304. wattron(statuswin, attr_title);
  3305. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3306. timer_set_now(&now);
  3307. {
  3308. unsigned int days, hours;
  3309. div_t d;
  3310. timersub(&now, &miner_started, &tv);
  3311. d = div(tv.tv_sec, 86400);
  3312. days = d.quot;
  3313. d = div(d.rem, 3600);
  3314. hours = d.quot;
  3315. d = div(d.rem, 60);
  3316. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3317. , days
  3318. , (days == 1) ? ' ' : 's'
  3319. , hours
  3320. , d.quot
  3321. , d.rem
  3322. );
  3323. }
  3324. bfg_wspctoeol(statuswin, 0);
  3325. wattroff(statuswin, attr_title);
  3326. wattron(statuswin, menu_attr);
  3327. wmove(statuswin, 1, 0);
  3328. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3329. bfg_wspctoeol(statuswin, 14);
  3330. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3331. wattroff(statuswin, menu_attr);
  3332. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3333. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3334. have_longpoll ? "": "out");
  3335. } else if (pool->has_stratum) {
  3336. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3337. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3338. } else {
  3339. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3340. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3341. }
  3342. wclrtoeol(statuswin);
  3343. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3344. current_hash, block_diff, net_hashrate, blocktime);
  3345. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3346. char bwstr[12], incomestr[13];
  3347. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3348. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3349. ts,
  3350. total_go + total_ro,
  3351. new_blocks,
  3352. total_submitting,
  3353. multi_format_unit2(bwstr, sizeof(bwstr),
  3354. false, "B/s", H2B_SHORT, "/", 2,
  3355. (float)(total_bytes_rcvd / total_secs),
  3356. (float)(total_bytes_sent / total_secs)),
  3357. efficiency,
  3358. incomestr,
  3359. best_share);
  3360. wclrtoeol(statuswin);
  3361. mvwaddstr(statuswin, 5, 0, " ");
  3362. bfg_waddstr(statuswin, statusline);
  3363. wclrtoeol(statuswin);
  3364. logdiv = statusy - 1;
  3365. bfg_hline(statuswin, 6);
  3366. bfg_hline(statuswin, logdiv);
  3367. #ifdef USE_UNICODE
  3368. if (use_unicode)
  3369. {
  3370. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3371. if (opt_show_procs && !opt_compact)
  3372. ++offset; // proc letter
  3373. if (have_unicode_degrees)
  3374. ++offset; // degrees symbol
  3375. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3376. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3377. offset += 24; // hashrates etc
  3378. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3379. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3380. }
  3381. #endif
  3382. }
  3383. static void adj_width(int var, int *length)
  3384. {
  3385. if ((int)(log10(var) + 1) > *length)
  3386. (*length)++;
  3387. }
  3388. static int dev_width;
  3389. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3390. {
  3391. char logline[256];
  3392. int ypos;
  3393. if (opt_compact)
  3394. return;
  3395. /* Check this isn't out of the window size */
  3396. if (opt_show_procs)
  3397. ypos = cgpu->cgminer_id;
  3398. else
  3399. {
  3400. if (cgpu->proc_id)
  3401. return;
  3402. ypos = cgpu->device_line_id;
  3403. }
  3404. ypos += devsummaryYOffset;
  3405. if (ypos < 0)
  3406. return;
  3407. ypos += devcursor - 1;
  3408. if (ypos >= statusy - 1)
  3409. return;
  3410. if (wmove(statuswin, ypos, 0) == ERR)
  3411. return;
  3412. get_statline2(logline, sizeof(logline), cgpu, true);
  3413. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3414. wattron(statuswin, A_REVERSE);
  3415. bfg_waddstr(statuswin, logline);
  3416. wattroff(statuswin, A_REVERSE);
  3417. wclrtoeol(statuswin);
  3418. }
  3419. static
  3420. void _refresh_devstatus(const bool already_have_lock) {
  3421. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3422. int i;
  3423. if (unlikely(!total_devices))
  3424. {
  3425. const int ypos = devcursor - 1;
  3426. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3427. {
  3428. wattron(statuswin, attr_bad);
  3429. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3430. wclrtoeol(statuswin);
  3431. wattroff(statuswin, attr_bad);
  3432. }
  3433. }
  3434. for (i = 0; i < total_devices; i++)
  3435. curses_print_devstatus(get_devices(i));
  3436. touchwin(statuswin);
  3437. wrefresh(statuswin);
  3438. if (!already_have_lock)
  3439. unlock_curses();
  3440. }
  3441. }
  3442. #define refresh_devstatus() _refresh_devstatus(false)
  3443. #endif
  3444. static void print_status(int thr_id)
  3445. {
  3446. if (!curses_active)
  3447. text_print_status(thr_id);
  3448. }
  3449. #ifdef HAVE_CURSES
  3450. static
  3451. bool set_statusy(int maxy)
  3452. {
  3453. if (loginput_size)
  3454. {
  3455. maxy -= loginput_size;
  3456. if (maxy < 0)
  3457. maxy = 0;
  3458. }
  3459. if (logstart < maxy)
  3460. maxy = logstart;
  3461. if (statusy == maxy)
  3462. return false;
  3463. statusy = maxy;
  3464. logcursor = statusy;
  3465. return true;
  3466. }
  3467. /* Check for window resize. Called with curses mutex locked */
  3468. static inline void change_logwinsize(void)
  3469. {
  3470. int x, y, logx, logy;
  3471. getmaxyx(mainwin, y, x);
  3472. if (x < 80 || y < 25)
  3473. return;
  3474. if (y > statusy + 2 && statusy < logstart) {
  3475. set_statusy(y - 2);
  3476. mvwin(logwin, logcursor, 0);
  3477. bfg_wresize(statuswin, statusy, x);
  3478. }
  3479. y -= logcursor;
  3480. getmaxyx(logwin, logy, logx);
  3481. /* Detect screen size change */
  3482. if (x != logx || y != logy)
  3483. bfg_wresize(logwin, y, x);
  3484. }
  3485. static void check_winsizes(void)
  3486. {
  3487. if (!use_curses)
  3488. return;
  3489. if (curses_active_locked()) {
  3490. int y, x;
  3491. x = getmaxx(statuswin);
  3492. if (set_statusy(LINES - 2))
  3493. {
  3494. erase();
  3495. bfg_wresize(statuswin, statusy, x);
  3496. getmaxyx(mainwin, y, x);
  3497. y -= logcursor;
  3498. bfg_wresize(logwin, y, x);
  3499. mvwin(logwin, logcursor, 0);
  3500. }
  3501. unlock_curses();
  3502. }
  3503. }
  3504. static int device_line_id_count;
  3505. static void switch_logsize(void)
  3506. {
  3507. if (curses_active_locked()) {
  3508. if (opt_compact) {
  3509. logstart = devcursor - 1;
  3510. logcursor = logstart + 1;
  3511. } else {
  3512. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3513. logstart = devcursor + total_lines;
  3514. logcursor = logstart;
  3515. }
  3516. unlock_curses();
  3517. }
  3518. check_winsizes();
  3519. }
  3520. /* For mandatory printing when mutex is already locked */
  3521. void _wlog(const char *str)
  3522. {
  3523. static bool newline;
  3524. size_t end = strlen(str) - 1;
  3525. if (newline)
  3526. bfg_waddstr(logwin, "\n");
  3527. if (str[end] == '\n')
  3528. {
  3529. char *s;
  3530. newline = true;
  3531. s = alloca(end + 1);
  3532. memcpy(s, str, end);
  3533. s[end] = '\0';
  3534. str = s;
  3535. }
  3536. else
  3537. newline = false;
  3538. bfg_waddstr(logwin, str);
  3539. }
  3540. /* Mandatory printing */
  3541. void _wlogprint(const char *str)
  3542. {
  3543. if (curses_active_locked()) {
  3544. _wlog(str);
  3545. unlock_curses();
  3546. }
  3547. }
  3548. #endif
  3549. #ifdef HAVE_CURSES
  3550. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3551. {
  3552. bool high_prio;
  3553. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3554. if (curses_active)
  3555. {
  3556. if (!loginput_size || high_prio) {
  3557. wlog(" %s %s\n", datetime, str);
  3558. if (high_prio) {
  3559. touchwin(logwin);
  3560. wrefresh(logwin);
  3561. }
  3562. }
  3563. return true;
  3564. }
  3565. return false;
  3566. }
  3567. void clear_logwin(void)
  3568. {
  3569. if (curses_active_locked()) {
  3570. wclear(logwin);
  3571. unlock_curses();
  3572. }
  3573. }
  3574. void logwin_update(void)
  3575. {
  3576. if (curses_active_locked()) {
  3577. touchwin(logwin);
  3578. wrefresh(logwin);
  3579. unlock_curses();
  3580. }
  3581. }
  3582. #endif
  3583. static void enable_pool(struct pool *pool)
  3584. {
  3585. if (pool->enabled != POOL_ENABLED) {
  3586. enabled_pools++;
  3587. pool->enabled = POOL_ENABLED;
  3588. }
  3589. }
  3590. #ifdef HAVE_CURSES
  3591. static void disable_pool(struct pool *pool)
  3592. {
  3593. if (pool->enabled == POOL_ENABLED)
  3594. enabled_pools--;
  3595. pool->enabled = POOL_DISABLED;
  3596. }
  3597. #endif
  3598. static void reject_pool(struct pool *pool)
  3599. {
  3600. if (pool->enabled == POOL_ENABLED)
  3601. enabled_pools--;
  3602. pool->enabled = POOL_REJECTING;
  3603. }
  3604. static double share_diff(const struct work *);
  3605. static
  3606. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3607. struct cgpu_info *cgpu;
  3608. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3609. char shrdiffdisp[16];
  3610. const double tgtdiff = work->work_difficulty;
  3611. char tgtdiffdisp[16];
  3612. char where[20];
  3613. cgpu = get_thr_cgpu(work->thr_id);
  3614. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3615. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3616. if (total_pools > 1)
  3617. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3618. else
  3619. where[0] = '\0';
  3620. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3621. disp,
  3622. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3623. cgpu->proc_repr,
  3624. where,
  3625. shrdiffdisp, tgtdiffdisp,
  3626. reason,
  3627. resubmit ? "(resubmit)" : "",
  3628. worktime
  3629. );
  3630. }
  3631. static bool test_work_current(struct work *);
  3632. static void _submit_work_async(struct work *);
  3633. static
  3634. void maybe_local_submit(const struct work *work)
  3635. {
  3636. #if BLKMAKER_VERSION > 3
  3637. if (unlikely(work->block && work->tmpl))
  3638. {
  3639. // This is a block with a full template (GBT)
  3640. // Regardless of the result, submit to local bitcoind(s) as well
  3641. struct work *work_cp;
  3642. char *p;
  3643. for (int i = 0; i < total_pools; ++i)
  3644. {
  3645. p = strchr(pools[i]->rpc_url, '#');
  3646. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3647. continue;
  3648. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3649. work_cp = copy_work(work);
  3650. work_cp->pool = pools[i];
  3651. work_cp->do_foreign_submit = true;
  3652. _submit_work_async(work_cp);
  3653. }
  3654. }
  3655. #endif
  3656. }
  3657. /* Theoretically threads could race when modifying accepted and
  3658. * rejected values but the chance of two submits completing at the
  3659. * same time is zero so there is no point adding extra locking */
  3660. static void
  3661. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3662. /*char *hashshow,*/ bool resubmit, char *worktime)
  3663. {
  3664. struct pool *pool = work->pool;
  3665. struct cgpu_info *cgpu;
  3666. cgpu = get_thr_cgpu(work->thr_id);
  3667. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3668. mutex_lock(&stats_lock);
  3669. cgpu->accepted++;
  3670. total_accepted++;
  3671. pool->accepted++;
  3672. cgpu->diff_accepted += work->work_difficulty;
  3673. total_diff_accepted += work->work_difficulty;
  3674. pool->diff_accepted += work->work_difficulty;
  3675. mutex_unlock(&stats_lock);
  3676. pool->seq_rejects = 0;
  3677. cgpu->last_share_pool = pool->pool_no;
  3678. cgpu->last_share_pool_time = time(NULL);
  3679. cgpu->last_share_diff = work->work_difficulty;
  3680. pool->last_share_time = cgpu->last_share_pool_time;
  3681. pool->last_share_diff = work->work_difficulty;
  3682. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3683. if (!QUIET) {
  3684. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3685. }
  3686. sharelog("accept", work);
  3687. if (opt_shares && total_diff_accepted >= opt_shares) {
  3688. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3689. kill_work();
  3690. return;
  3691. }
  3692. /* Detect if a pool that has been temporarily disabled for
  3693. * continually rejecting shares has started accepting shares.
  3694. * This will only happen with the work returned from a
  3695. * longpoll */
  3696. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3697. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3698. enable_pool(pool);
  3699. switch_pools(NULL);
  3700. }
  3701. if (unlikely(work->block)) {
  3702. // Force moving on to this new block :)
  3703. struct work fakework;
  3704. memset(&fakework, 0, sizeof(fakework));
  3705. fakework.pool = work->pool;
  3706. // Copy block version, bits, and time from share
  3707. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3708. memcpy(&fakework.data[68], &work->data[68], 8);
  3709. // Set prevblock to winning hash (swap32'd)
  3710. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3711. test_work_current(&fakework);
  3712. }
  3713. } else {
  3714. mutex_lock(&stats_lock);
  3715. cgpu->rejected++;
  3716. total_rejected++;
  3717. pool->rejected++;
  3718. cgpu->diff_rejected += work->work_difficulty;
  3719. total_diff_rejected += work->work_difficulty;
  3720. pool->diff_rejected += work->work_difficulty;
  3721. pool->seq_rejects++;
  3722. mutex_unlock(&stats_lock);
  3723. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3724. if (!QUIET) {
  3725. char where[20];
  3726. char disposition[36] = "reject";
  3727. char reason[32];
  3728. strcpy(reason, "");
  3729. if (total_pools > 1)
  3730. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3731. else
  3732. strcpy(where, "");
  3733. if (!json_is_string(res))
  3734. res = json_object_get(val, "reject-reason");
  3735. if (res) {
  3736. const char *reasontmp = json_string_value(res);
  3737. size_t reasonLen = strlen(reasontmp);
  3738. if (reasonLen > 28)
  3739. reasonLen = 28;
  3740. reason[0] = ' '; reason[1] = '(';
  3741. memcpy(2 + reason, reasontmp, reasonLen);
  3742. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3743. memcpy(disposition + 7, reasontmp, reasonLen);
  3744. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3745. } else if (work->stratum && err && json_is_array(err)) {
  3746. json_t *reason_val = json_array_get(err, 1);
  3747. char *reason_str;
  3748. if (reason_val && json_is_string(reason_val)) {
  3749. reason_str = (char *)json_string_value(reason_val);
  3750. snprintf(reason, 31, " (%s)", reason_str);
  3751. }
  3752. }
  3753. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3754. sharelog(disposition, work);
  3755. }
  3756. /* Once we have more than a nominal amount of sequential rejects,
  3757. * at least 10 and more than 3 mins at the current utility,
  3758. * disable the pool because some pool error is likely to have
  3759. * ensued. Do not do this if we know the share just happened to
  3760. * be stale due to networking delays.
  3761. */
  3762. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3763. double utility = total_accepted / total_secs * 60;
  3764. if (pool->seq_rejects > utility * 3) {
  3765. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3766. pool->pool_no, pool->seq_rejects);
  3767. reject_pool(pool);
  3768. if (pool == current_pool())
  3769. switch_pools(NULL);
  3770. pool->seq_rejects = 0;
  3771. }
  3772. }
  3773. }
  3774. maybe_local_submit(work);
  3775. }
  3776. static char *submit_upstream_work_request(struct work *work)
  3777. {
  3778. char *hexstr = NULL;
  3779. char *s, *sd;
  3780. struct pool *pool = work->pool;
  3781. if (work->tmpl) {
  3782. json_t *req;
  3783. unsigned char data[80];
  3784. swap32yes(data, work->data, 80 / 4);
  3785. #if BLKMAKER_VERSION > 3
  3786. if (work->do_foreign_submit)
  3787. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3788. else
  3789. #endif
  3790. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3791. s = json_dumps(req, 0);
  3792. json_decref(req);
  3793. sd = malloc(161);
  3794. bin2hex(sd, data, 80);
  3795. } else {
  3796. /* build hex string */
  3797. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3798. bin2hex(hexstr, work->data, sizeof(work->data));
  3799. /* build JSON-RPC request */
  3800. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3801. s = realloc_strcat(s, hexstr);
  3802. s = realloc_strcat(s, "\" ], \"id\":1}");
  3803. free(hexstr);
  3804. sd = s;
  3805. }
  3806. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3807. if (work->tmpl)
  3808. free(sd);
  3809. else
  3810. s = realloc_strcat(s, "\n");
  3811. return s;
  3812. }
  3813. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3814. json_t *res, *err;
  3815. bool rc = false;
  3816. int thr_id = work->thr_id;
  3817. struct pool *pool = work->pool;
  3818. struct timeval tv_submit_reply;
  3819. time_t ts_submit_reply;
  3820. char worktime[200] = "";
  3821. cgtime(&tv_submit_reply);
  3822. ts_submit_reply = time(NULL);
  3823. if (unlikely(!val)) {
  3824. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3825. if (!pool_tset(pool, &pool->submit_fail)) {
  3826. total_ro++;
  3827. pool->remotefail_occasions++;
  3828. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3829. }
  3830. goto out;
  3831. } else if (pool_tclear(pool, &pool->submit_fail))
  3832. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3833. res = json_object_get(val, "result");
  3834. err = json_object_get(val, "error");
  3835. if (!QUIET) {
  3836. if (opt_worktime) {
  3837. char workclone[20];
  3838. struct tm _tm;
  3839. struct tm *tm, tm_getwork, tm_submit_reply;
  3840. tm = &_tm;
  3841. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3842. (struct timeval *)&(work->tv_getwork));
  3843. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3844. (struct timeval *)&(work->tv_getwork_reply));
  3845. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3846. (struct timeval *)&(work->tv_work_start));
  3847. double work_to_submit = tdiff(ptv_submit,
  3848. (struct timeval *)&(work->tv_work_found));
  3849. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3850. int diffplaces = 3;
  3851. localtime_r(&work->ts_getwork, tm);
  3852. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3853. localtime_r(&ts_submit_reply, tm);
  3854. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3855. if (work->clone) {
  3856. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3857. tdiff((struct timeval *)&(work->tv_cloned),
  3858. (struct timeval *)&(work->tv_getwork_reply)));
  3859. }
  3860. else
  3861. strcpy(workclone, "O");
  3862. if (work->work_difficulty < 1)
  3863. diffplaces = 6;
  3864. snprintf(worktime, sizeof(worktime),
  3865. " <-%08lx.%08lx M:%c D:%1.*f G:%02d:%02d:%02d:%1.3f %s (%1.3f) W:%1.3f (%1.3f) S:%1.3f R:%02d:%02d:%02d",
  3866. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3867. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3868. work->getwork_mode, diffplaces, work->work_difficulty,
  3869. tm_getwork.tm_hour, tm_getwork.tm_min,
  3870. tm_getwork.tm_sec, getwork_time, workclone,
  3871. getwork_to_work, work_time, work_to_submit, submit_time,
  3872. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3873. tm_submit_reply.tm_sec);
  3874. }
  3875. }
  3876. share_result(val, res, err, work, resubmit, worktime);
  3877. if (!opt_realquiet)
  3878. print_status(thr_id);
  3879. if (!want_per_device_stats) {
  3880. char logline[256];
  3881. struct cgpu_info *cgpu;
  3882. cgpu = get_thr_cgpu(thr_id);
  3883. get_statline(logline, sizeof(logline), cgpu);
  3884. applog(LOG_INFO, "%s", logline);
  3885. }
  3886. json_decref(val);
  3887. rc = true;
  3888. out:
  3889. return rc;
  3890. }
  3891. /* Specifies whether we can use this pool for work or not. */
  3892. static bool pool_unworkable(struct pool *pool)
  3893. {
  3894. if (pool->idle)
  3895. return true;
  3896. if (pool->enabled != POOL_ENABLED)
  3897. return true;
  3898. if (pool->has_stratum && !pool->stratum_active)
  3899. return true;
  3900. return false;
  3901. }
  3902. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3903. * rolling average per 10 minutes and if pools start getting more, it biases
  3904. * away from them to distribute work evenly. The share count is reset to the
  3905. * rolling average every 10 minutes to not send all work to one pool after it
  3906. * has been disabled/out for an extended period. */
  3907. static struct pool *select_balanced(struct pool *cp)
  3908. {
  3909. int i, lowest = cp->shares;
  3910. struct pool *ret = cp;
  3911. for (i = 0; i < total_pools; i++) {
  3912. struct pool *pool = pools[i];
  3913. if (pool_unworkable(pool))
  3914. continue;
  3915. if (pool->shares < lowest) {
  3916. lowest = pool->shares;
  3917. ret = pool;
  3918. }
  3919. }
  3920. ret->shares++;
  3921. return ret;
  3922. }
  3923. static bool pool_active(struct pool *, bool pinging);
  3924. static void pool_died(struct pool *);
  3925. static struct pool *priority_pool(int choice);
  3926. static bool pool_unusable(struct pool *pool);
  3927. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3928. * it has any quota left. */
  3929. static inline struct pool *select_pool(bool lagging)
  3930. {
  3931. static int rotating_pool = 0;
  3932. struct pool *pool, *cp;
  3933. bool avail = false;
  3934. int tested, i;
  3935. cp = current_pool();
  3936. retry:
  3937. if (pool_strategy == POOL_BALANCE) {
  3938. pool = select_balanced(cp);
  3939. goto out;
  3940. }
  3941. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3942. pool = cp;
  3943. goto out;
  3944. } else
  3945. pool = NULL;
  3946. for (i = 0; i < total_pools; i++) {
  3947. struct pool *tp = pools[i];
  3948. if (tp->quota_used < tp->quota_gcd) {
  3949. avail = true;
  3950. break;
  3951. }
  3952. }
  3953. /* There are no pools with quota, so reset them. */
  3954. if (!avail) {
  3955. for (i = 0; i < total_pools; i++)
  3956. pools[i]->quota_used = 0;
  3957. if (++rotating_pool >= total_pools)
  3958. rotating_pool = 0;
  3959. }
  3960. /* Try to find the first pool in the rotation that is usable */
  3961. tested = 0;
  3962. while (!pool && tested++ < total_pools) {
  3963. pool = pools[rotating_pool];
  3964. if (pool->quota_used++ < pool->quota_gcd) {
  3965. if (!pool_unworkable(pool))
  3966. break;
  3967. /* Failover-only flag for load-balance means distribute
  3968. * unused quota to priority pool 0. */
  3969. if (opt_fail_only)
  3970. priority_pool(0)->quota_used--;
  3971. }
  3972. pool = NULL;
  3973. if (++rotating_pool >= total_pools)
  3974. rotating_pool = 0;
  3975. }
  3976. /* If there are no alive pools with quota, choose according to
  3977. * priority. */
  3978. if (!pool) {
  3979. for (i = 0; i < total_pools; i++) {
  3980. struct pool *tp = priority_pool(i);
  3981. if (!pool_unusable(tp)) {
  3982. pool = tp;
  3983. break;
  3984. }
  3985. }
  3986. }
  3987. /* If still nothing is usable, use the current pool */
  3988. if (!pool)
  3989. pool = cp;
  3990. out:
  3991. if (cp != pool)
  3992. {
  3993. if (!pool_active(pool, false))
  3994. {
  3995. pool_died(pool);
  3996. goto retry;
  3997. }
  3998. pool_tclear(pool, &pool->idle);
  3999. }
  4000. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4001. return pool;
  4002. }
  4003. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4004. static const uint64_t diffone = 0xFFFF000000000000ull;
  4005. static double target_diff(const unsigned char *target)
  4006. {
  4007. double targ = 0;
  4008. signed int i;
  4009. for (i = 31; i >= 0; --i)
  4010. targ = (targ * 0x100) + target[i];
  4011. return DIFFEXACTONE / (targ ?: 1);
  4012. }
  4013. /*
  4014. * Calculate the work share difficulty
  4015. */
  4016. static void calc_diff(struct work *work, int known)
  4017. {
  4018. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4019. double difficulty;
  4020. if (!known) {
  4021. work->work_difficulty = target_diff(work->target);
  4022. } else
  4023. work->work_difficulty = known;
  4024. difficulty = work->work_difficulty;
  4025. pool_stats->last_diff = difficulty;
  4026. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4027. if (difficulty == pool_stats->min_diff)
  4028. pool_stats->min_diff_count++;
  4029. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4030. pool_stats->min_diff = difficulty;
  4031. pool_stats->min_diff_count = 1;
  4032. }
  4033. if (difficulty == pool_stats->max_diff)
  4034. pool_stats->max_diff_count++;
  4035. else if (difficulty > pool_stats->max_diff) {
  4036. pool_stats->max_diff = difficulty;
  4037. pool_stats->max_diff_count = 1;
  4038. }
  4039. }
  4040. static
  4041. void setup_benchmark_pool()
  4042. {
  4043. struct pool *pool;
  4044. want_longpoll = false;
  4045. // Temporarily disable opt_benchmark to avoid auto-removal
  4046. opt_benchmark = false;
  4047. pool = add_pool();
  4048. opt_benchmark = true;
  4049. pool->rpc_url = malloc(255);
  4050. strcpy(pool->rpc_url, "Benchmark");
  4051. pool->rpc_user = pool->rpc_url;
  4052. pool->rpc_pass = pool->rpc_url;
  4053. enable_pool(pool);
  4054. pool->idle = false;
  4055. successful_connect = true;
  4056. }
  4057. void get_benchmark_work(struct work *work)
  4058. {
  4059. static uint32_t blkhdr[20];
  4060. for (int i = 18; i >= 0; --i)
  4061. if (++blkhdr[i])
  4062. break;
  4063. memcpy(&work->data[ 0], blkhdr, 80);
  4064. memcpy(&work->data[80], workpadding_bin, 48);
  4065. calc_midstate(work);
  4066. set_target(work->target, 1.0);
  4067. work->mandatory = true;
  4068. work->pool = pools[0];
  4069. cgtime(&work->tv_getwork);
  4070. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4071. copy_time(&work->tv_staged, &work->tv_getwork);
  4072. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4073. calc_diff(work, 0);
  4074. }
  4075. static void wake_gws(void);
  4076. static void update_last_work(struct work *work)
  4077. {
  4078. if (!work->tmpl)
  4079. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4080. return;
  4081. struct pool *pool = work->pool;
  4082. mutex_lock(&pool->last_work_lock);
  4083. if (pool->last_work_copy)
  4084. free_work(pool->last_work_copy);
  4085. pool->last_work_copy = copy_work(work);
  4086. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4087. mutex_unlock(&pool->last_work_lock);
  4088. }
  4089. static
  4090. void gbt_req_target(json_t *req)
  4091. {
  4092. json_t *j;
  4093. json_t *n;
  4094. if (!request_target_str)
  4095. return;
  4096. j = json_object_get(req, "params");
  4097. if (!j)
  4098. {
  4099. n = json_array();
  4100. if (!n)
  4101. return;
  4102. if (json_object_set_new(req, "params", n))
  4103. goto erradd;
  4104. j = n;
  4105. }
  4106. n = json_array_get(j, 0);
  4107. if (!n)
  4108. {
  4109. n = json_object();
  4110. if (!n)
  4111. return;
  4112. if (json_array_append_new(j, n))
  4113. goto erradd;
  4114. }
  4115. j = n;
  4116. n = json_string(request_target_str);
  4117. if (!n)
  4118. return;
  4119. if (json_object_set_new(j, "target", n))
  4120. goto erradd;
  4121. return;
  4122. erradd:
  4123. json_decref(n);
  4124. }
  4125. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4126. {
  4127. char *rpc_req;
  4128. clean_work(work);
  4129. switch (proto) {
  4130. case PLP_GETWORK:
  4131. work->getwork_mode = GETWORK_MODE_POOL;
  4132. return strdup(getwork_req);
  4133. case PLP_GETBLOCKTEMPLATE:
  4134. work->getwork_mode = GETWORK_MODE_GBT;
  4135. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4136. if (!work->tmpl_refcount)
  4137. return NULL;
  4138. work->tmpl = blktmpl_create();
  4139. if (!work->tmpl)
  4140. goto gbtfail2;
  4141. *work->tmpl_refcount = 1;
  4142. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4143. if (!caps)
  4144. goto gbtfail;
  4145. caps |= GBT_LONGPOLL;
  4146. #if BLKMAKER_VERSION > 1
  4147. if (opt_coinbase_script.sz)
  4148. caps |= GBT_CBVALUE;
  4149. #endif
  4150. json_t *req = blktmpl_request_jansson(caps, lpid);
  4151. if (!req)
  4152. goto gbtfail;
  4153. if (probe)
  4154. gbt_req_target(req);
  4155. rpc_req = json_dumps(req, 0);
  4156. if (!rpc_req)
  4157. goto gbtfail;
  4158. json_decref(req);
  4159. return rpc_req;
  4160. default:
  4161. return NULL;
  4162. }
  4163. return NULL;
  4164. gbtfail:
  4165. blktmpl_free(work->tmpl);
  4166. work->tmpl = NULL;
  4167. gbtfail2:
  4168. free(work->tmpl_refcount);
  4169. work->tmpl_refcount = NULL;
  4170. return NULL;
  4171. }
  4172. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4173. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4174. static const char *pool_protocol_name(enum pool_protocol proto)
  4175. {
  4176. switch (proto) {
  4177. case PLP_GETBLOCKTEMPLATE:
  4178. return "getblocktemplate";
  4179. case PLP_GETWORK:
  4180. return "getwork";
  4181. default:
  4182. return "UNKNOWN";
  4183. }
  4184. }
  4185. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4186. {
  4187. switch (proto) {
  4188. case PLP_GETBLOCKTEMPLATE:
  4189. if (want_getwork)
  4190. return PLP_GETWORK;
  4191. default:
  4192. return PLP_NONE;
  4193. }
  4194. }
  4195. static bool get_upstream_work(struct work *work, CURL *curl)
  4196. {
  4197. struct pool *pool = work->pool;
  4198. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4199. struct timeval tv_elapsed;
  4200. json_t *val = NULL;
  4201. bool rc = false;
  4202. char *url;
  4203. enum pool_protocol proto;
  4204. char *rpc_req;
  4205. if (pool->proto == PLP_NONE)
  4206. pool->proto = PLP_GETBLOCKTEMPLATE;
  4207. tryagain:
  4208. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4209. work->pool = pool;
  4210. if (!rpc_req)
  4211. return false;
  4212. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4213. url = pool->rpc_url;
  4214. cgtime(&work->tv_getwork);
  4215. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4216. false, &work->rolltime, pool, false);
  4217. pool_stats->getwork_attempts++;
  4218. free(rpc_req);
  4219. if (likely(val)) {
  4220. rc = work_decode(pool, work, val);
  4221. if (unlikely(!rc))
  4222. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4223. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4224. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4225. pool->proto = proto;
  4226. goto tryagain;
  4227. } else
  4228. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4229. cgtime(&work->tv_getwork_reply);
  4230. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4231. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4232. pool_stats->getwork_wait_rolling /= 1.63;
  4233. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4234. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4235. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4236. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4237. }
  4238. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4239. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4240. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4241. }
  4242. pool_stats->getwork_calls++;
  4243. work->pool = pool;
  4244. work->longpoll = false;
  4245. calc_diff(work, 0);
  4246. total_getworks++;
  4247. pool->getwork_requested++;
  4248. if (rc)
  4249. update_last_work(work);
  4250. if (likely(val))
  4251. json_decref(val);
  4252. return rc;
  4253. }
  4254. #ifdef HAVE_CURSES
  4255. static void disable_curses(void)
  4256. {
  4257. if (curses_active_locked()) {
  4258. use_curses = false;
  4259. curses_active = false;
  4260. leaveok(logwin, false);
  4261. leaveok(statuswin, false);
  4262. leaveok(mainwin, false);
  4263. nocbreak();
  4264. echo();
  4265. delwin(logwin);
  4266. delwin(statuswin);
  4267. delwin(mainwin);
  4268. endwin();
  4269. #ifdef WIN32
  4270. // Move the cursor to after curses output.
  4271. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4272. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4273. COORD coord;
  4274. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4275. coord.X = 0;
  4276. coord.Y = csbi.dwSize.Y - 1;
  4277. SetConsoleCursorPosition(hout, coord);
  4278. }
  4279. #endif
  4280. unlock_curses();
  4281. }
  4282. }
  4283. #endif
  4284. static void __kill_work(void)
  4285. {
  4286. struct cgpu_info *cgpu;
  4287. struct thr_info *thr;
  4288. int i;
  4289. if (!successful_connect)
  4290. return;
  4291. applog(LOG_INFO, "Received kill message");
  4292. shutting_down = true;
  4293. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4294. notifier_wake(submit_waiting_notifier);
  4295. #ifdef USE_LIBMICROHTTPD
  4296. httpsrv_stop();
  4297. #endif
  4298. applog(LOG_DEBUG, "Killing off watchpool thread");
  4299. /* Kill the watchpool thread */
  4300. thr = &control_thr[watchpool_thr_id];
  4301. thr_info_cancel(thr);
  4302. applog(LOG_DEBUG, "Killing off watchdog thread");
  4303. /* Kill the watchdog thread */
  4304. thr = &control_thr[watchdog_thr_id];
  4305. thr_info_cancel(thr);
  4306. applog(LOG_DEBUG, "Shutting down mining threads");
  4307. for (i = 0; i < mining_threads; i++) {
  4308. thr = get_thread(i);
  4309. if (!thr)
  4310. continue;
  4311. cgpu = thr->cgpu;
  4312. if (!cgpu)
  4313. continue;
  4314. if (!cgpu->threads)
  4315. continue;
  4316. cgpu->shutdown = true;
  4317. thr->work_restart = true;
  4318. notifier_wake(thr->notifier);
  4319. notifier_wake(thr->work_restart_notifier);
  4320. }
  4321. sleep(1);
  4322. applog(LOG_DEBUG, "Killing off mining threads");
  4323. /* Kill the mining threads*/
  4324. for (i = 0; i < mining_threads; i++) {
  4325. thr = get_thread(i);
  4326. if (!thr)
  4327. continue;
  4328. cgpu = thr->cgpu;
  4329. if (cgpu->threads)
  4330. {
  4331. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4332. thr_info_cancel(thr);
  4333. }
  4334. cgpu->status = LIFE_DEAD2;
  4335. }
  4336. /* Stop the others */
  4337. applog(LOG_DEBUG, "Killing off API thread");
  4338. thr = &control_thr[api_thr_id];
  4339. thr_info_cancel(thr);
  4340. }
  4341. /* This should be the common exit path */
  4342. void kill_work(void)
  4343. {
  4344. __kill_work();
  4345. quit(0, "Shutdown signal received.");
  4346. }
  4347. static
  4348. #ifdef WIN32
  4349. #ifndef _WIN64
  4350. const
  4351. #endif
  4352. #endif
  4353. char **initial_args;
  4354. void _bfg_clean_up(bool);
  4355. void app_restart(void)
  4356. {
  4357. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4358. __kill_work();
  4359. _bfg_clean_up(true);
  4360. #if defined(unix) || defined(__APPLE__)
  4361. if (forkpid > 0) {
  4362. kill(forkpid, SIGTERM);
  4363. forkpid = 0;
  4364. }
  4365. #endif
  4366. execv(initial_args[0], initial_args);
  4367. applog(LOG_WARNING, "Failed to restart application");
  4368. }
  4369. static void sighandler(int __maybe_unused sig)
  4370. {
  4371. /* Restore signal handlers so we can still quit if kill_work fails */
  4372. sigaction(SIGTERM, &termhandler, NULL);
  4373. sigaction(SIGINT, &inthandler, NULL);
  4374. kill_work();
  4375. }
  4376. static void start_longpoll(void);
  4377. static void stop_longpoll(void);
  4378. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4379. * this pool. */
  4380. static void recruit_curl(struct pool *pool)
  4381. {
  4382. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4383. if (unlikely(!ce))
  4384. quit(1, "Failed to calloc in recruit_curl");
  4385. ce->curl = curl_easy_init();
  4386. if (unlikely(!ce->curl))
  4387. quit(1, "Failed to init in recruit_curl");
  4388. LL_PREPEND(pool->curllist, ce);
  4389. pool->curls++;
  4390. }
  4391. /* Grab an available curl if there is one. If not, then recruit extra curls
  4392. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4393. * and there are already 5 curls in circulation. Limit total number to the
  4394. * number of mining threads per pool as well to prevent blasting a pool during
  4395. * network delays/outages. */
  4396. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4397. {
  4398. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4399. bool recruited = false;
  4400. struct curl_ent *ce;
  4401. mutex_lock(&pool->pool_lock);
  4402. retry:
  4403. if (!pool->curls) {
  4404. recruit_curl(pool);
  4405. recruited = true;
  4406. } else if (!pool->curllist) {
  4407. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4408. if (!blocking) {
  4409. mutex_unlock(&pool->pool_lock);
  4410. return NULL;
  4411. }
  4412. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4413. goto retry;
  4414. } else {
  4415. recruit_curl(pool);
  4416. recruited = true;
  4417. }
  4418. }
  4419. ce = pool->curllist;
  4420. LL_DELETE(pool->curllist, ce);
  4421. mutex_unlock(&pool->pool_lock);
  4422. if (recruited)
  4423. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4424. return ce;
  4425. }
  4426. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4427. {
  4428. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4429. }
  4430. __maybe_unused
  4431. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4432. {
  4433. return pop_curl_entry3(pool, 1);
  4434. }
  4435. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4436. {
  4437. mutex_lock(&pool->pool_lock);
  4438. if (!ce || !ce->curl)
  4439. quithere(1, "Attempted to add NULL");
  4440. LL_PREPEND(pool->curllist, ce);
  4441. cgtime(&ce->tv);
  4442. pthread_cond_broadcast(&pool->cr_cond);
  4443. mutex_unlock(&pool->pool_lock);
  4444. }
  4445. bool stale_work(struct work *work, bool share);
  4446. static inline bool should_roll(struct work *work)
  4447. {
  4448. struct timeval now;
  4449. time_t expiry;
  4450. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4451. return false;
  4452. if (stale_work(work, false))
  4453. return false;
  4454. if (work->rolltime > opt_scantime)
  4455. expiry = work->rolltime;
  4456. else
  4457. expiry = opt_scantime;
  4458. expiry = expiry * 2 / 3;
  4459. /* We shouldn't roll if we're unlikely to get one shares' duration
  4460. * work out of doing so */
  4461. cgtime(&now);
  4462. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4463. return false;
  4464. return true;
  4465. }
  4466. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4467. * reject blocks as invalid. */
  4468. static inline bool can_roll(struct work *work)
  4469. {
  4470. if (work->stratum)
  4471. return false;
  4472. if (!(work->pool && !work->clone))
  4473. return false;
  4474. if (work->tmpl) {
  4475. if (stale_work(work, false))
  4476. return false;
  4477. return blkmk_work_left(work->tmpl);
  4478. }
  4479. return (work->rolltime &&
  4480. work->rolls < 7000 && !stale_work(work, false));
  4481. }
  4482. static void roll_work(struct work *work)
  4483. {
  4484. if (work->tmpl) {
  4485. struct timeval tv_now;
  4486. cgtime(&tv_now);
  4487. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4488. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4489. swap32yes(work->data, work->data, 80 / 4);
  4490. calc_midstate(work);
  4491. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4492. } else {
  4493. uint32_t *work_ntime;
  4494. uint32_t ntime;
  4495. work_ntime = (uint32_t *)(work->data + 68);
  4496. ntime = be32toh(*work_ntime);
  4497. ntime++;
  4498. *work_ntime = htobe32(ntime);
  4499. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4500. }
  4501. local_work++;
  4502. work->rolls++;
  4503. work->blk.nonce = 0;
  4504. /* This is now a different work item so it needs a different ID for the
  4505. * hashtable */
  4506. work->id = total_work++;
  4507. }
  4508. /* Duplicates any dynamically allocated arrays within the work struct to
  4509. * prevent a copied work struct from freeing ram belonging to another struct */
  4510. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4511. {
  4512. int id = work->id;
  4513. clean_work(work);
  4514. memcpy(work, base_work, sizeof(struct work));
  4515. /* Keep the unique new id assigned during make_work to prevent copied
  4516. * work from having the same id. */
  4517. work->id = id;
  4518. if (base_work->job_id)
  4519. work->job_id = strdup(base_work->job_id);
  4520. if (base_work->nonce1)
  4521. work->nonce1 = strdup(base_work->nonce1);
  4522. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4523. if (base_work->tmpl) {
  4524. struct pool *pool = work->pool;
  4525. mutex_lock(&pool->pool_lock);
  4526. ++*work->tmpl_refcount;
  4527. mutex_unlock(&pool->pool_lock);
  4528. }
  4529. if (noffset)
  4530. {
  4531. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4532. uint32_t ntime = be32toh(*work_ntime);
  4533. ntime += noffset;
  4534. *work_ntime = htobe32(ntime);
  4535. }
  4536. if (work->device_data_dup_func)
  4537. work->device_data = work->device_data_dup_func(work);
  4538. }
  4539. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4540. * for all dynamically allocated arrays within the struct */
  4541. struct work *copy_work(const struct work *base_work)
  4542. {
  4543. struct work *work = make_work();
  4544. _copy_work(work, base_work, 0);
  4545. return work;
  4546. }
  4547. void __copy_work(struct work *work, const struct work *base_work)
  4548. {
  4549. _copy_work(work, base_work, 0);
  4550. }
  4551. static struct work *make_clone(struct work *work)
  4552. {
  4553. struct work *work_clone = copy_work(work);
  4554. work_clone->clone = true;
  4555. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4556. work_clone->longpoll = false;
  4557. work_clone->mandatory = false;
  4558. /* Make cloned work appear slightly older to bias towards keeping the
  4559. * master work item which can be further rolled */
  4560. work_clone->tv_staged.tv_sec -= 1;
  4561. return work_clone;
  4562. }
  4563. static void stage_work(struct work *work);
  4564. static bool clone_available(void)
  4565. {
  4566. struct work *work_clone = NULL, *work, *tmp;
  4567. bool cloned = false;
  4568. mutex_lock(stgd_lock);
  4569. if (!staged_rollable)
  4570. goto out_unlock;
  4571. HASH_ITER(hh, staged_work, work, tmp) {
  4572. if (can_roll(work) && should_roll(work)) {
  4573. roll_work(work);
  4574. work_clone = make_clone(work);
  4575. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4576. roll_work(work);
  4577. cloned = true;
  4578. break;
  4579. }
  4580. }
  4581. out_unlock:
  4582. mutex_unlock(stgd_lock);
  4583. if (cloned) {
  4584. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4585. stage_work(work_clone);
  4586. }
  4587. return cloned;
  4588. }
  4589. static void pool_died(struct pool *pool)
  4590. {
  4591. if (!pool_tset(pool, &pool->idle)) {
  4592. cgtime(&pool->tv_idle);
  4593. if (pool == current_pool()) {
  4594. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4595. switch_pools(NULL);
  4596. } else
  4597. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4598. }
  4599. }
  4600. bool stale_work(struct work *work, bool share)
  4601. {
  4602. unsigned work_expiry;
  4603. struct pool *pool;
  4604. uint32_t block_id;
  4605. unsigned getwork_delay;
  4606. if (opt_benchmark)
  4607. return false;
  4608. block_id = ((uint32_t*)work->data)[1];
  4609. pool = work->pool;
  4610. /* Technically the rolltime should be correct but some pools
  4611. * advertise a broken expire= that is lower than a meaningful
  4612. * scantime */
  4613. if (work->rolltime >= opt_scantime || work->tmpl)
  4614. work_expiry = work->rolltime;
  4615. else
  4616. work_expiry = opt_expiry;
  4617. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4618. if (work_expiry > max_expiry)
  4619. work_expiry = max_expiry;
  4620. if (share) {
  4621. /* If the share isn't on this pool's latest block, it's stale */
  4622. if (pool->block_id && pool->block_id != block_id)
  4623. {
  4624. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4625. return true;
  4626. }
  4627. /* If the pool doesn't want old shares, then any found in work before
  4628. * the most recent longpoll is stale */
  4629. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4630. {
  4631. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4632. return true;
  4633. }
  4634. } else {
  4635. /* If this work isn't for the latest Bitcoin block, it's stale */
  4636. /* But only care about the current pool if failover-only */
  4637. if (enabled_pools <= 1 || opt_fail_only) {
  4638. if (pool->block_id && block_id != pool->block_id)
  4639. {
  4640. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4641. return true;
  4642. }
  4643. } else {
  4644. if (block_id != current_block_id)
  4645. {
  4646. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4647. return true;
  4648. }
  4649. }
  4650. /* If the pool has asked us to restart since this work, it's stale */
  4651. if (work->work_restart_id != pool->work_restart_id)
  4652. {
  4653. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4654. return true;
  4655. }
  4656. if (pool->has_stratum && work->job_id) {
  4657. bool same_job;
  4658. if (!pool->stratum_active || !pool->stratum_notify) {
  4659. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4660. return true;
  4661. }
  4662. same_job = true;
  4663. cg_rlock(&pool->data_lock);
  4664. if (strcmp(work->job_id, pool->swork.job_id))
  4665. same_job = false;
  4666. cg_runlock(&pool->data_lock);
  4667. if (!same_job) {
  4668. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4669. return true;
  4670. }
  4671. }
  4672. /* Factor in the average getwork delay of this pool, rounding it up to
  4673. * the nearest second */
  4674. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4675. if (unlikely(work_expiry <= getwork_delay + 5))
  4676. work_expiry = 5;
  4677. else
  4678. work_expiry -= getwork_delay;
  4679. }
  4680. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4681. if (elapsed_since_staged > work_expiry) {
  4682. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4683. return true;
  4684. }
  4685. /* If the user only wants strict failover, any work from a pool other than
  4686. * the current one is always considered stale */
  4687. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4688. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4689. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4690. return true;
  4691. }
  4692. return false;
  4693. }
  4694. static double share_diff(const struct work *work)
  4695. {
  4696. double ret;
  4697. bool new_best = false;
  4698. ret = target_diff(work->hash);
  4699. cg_wlock(&control_lock);
  4700. if (unlikely(ret > best_diff)) {
  4701. new_best = true;
  4702. best_diff = ret;
  4703. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4704. }
  4705. if (unlikely(ret > work->pool->best_diff))
  4706. work->pool->best_diff = ret;
  4707. cg_wunlock(&control_lock);
  4708. if (unlikely(new_best))
  4709. applog(LOG_INFO, "New best share: %s", best_share);
  4710. return ret;
  4711. }
  4712. static void regen_hash(struct work *work)
  4713. {
  4714. hash_data(work->hash, work->data);
  4715. }
  4716. static void rebuild_hash(struct work *work)
  4717. {
  4718. if (opt_scrypt)
  4719. scrypt_regenhash(work);
  4720. else
  4721. regen_hash(work);
  4722. work->share_diff = share_diff(work);
  4723. if (unlikely(work->share_diff >= current_diff)) {
  4724. work->block = true;
  4725. work->pool->solved++;
  4726. found_blocks++;
  4727. work->mandatory = true;
  4728. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4729. }
  4730. }
  4731. static void submit_discard_share2(const char *reason, struct work *work)
  4732. {
  4733. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4734. sharelog(reason, work);
  4735. mutex_lock(&stats_lock);
  4736. ++total_stale;
  4737. ++cgpu->stale;
  4738. ++(work->pool->stale_shares);
  4739. total_diff_stale += work->work_difficulty;
  4740. cgpu->diff_stale += work->work_difficulty;
  4741. work->pool->diff_stale += work->work_difficulty;
  4742. mutex_unlock(&stats_lock);
  4743. }
  4744. static void submit_discard_share(struct work *work)
  4745. {
  4746. submit_discard_share2("discard", work);
  4747. }
  4748. struct submit_work_state {
  4749. struct work *work;
  4750. bool resubmit;
  4751. struct curl_ent *ce;
  4752. int failures;
  4753. struct timeval tv_staleexpire;
  4754. char *s;
  4755. struct timeval tv_submit;
  4756. struct submit_work_state *next;
  4757. };
  4758. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4759. {
  4760. long *p_timeout_us = userp;
  4761. const long max_ms = LONG_MAX / 1000;
  4762. if (max_ms < timeout_ms)
  4763. timeout_ms = max_ms;
  4764. *p_timeout_us = timeout_ms * 1000;
  4765. return 0;
  4766. }
  4767. static void sws_has_ce(struct submit_work_state *sws)
  4768. {
  4769. struct pool *pool = sws->work->pool;
  4770. sws->s = submit_upstream_work_request(sws->work);
  4771. cgtime(&sws->tv_submit);
  4772. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4773. }
  4774. static struct submit_work_state *begin_submission(struct work *work)
  4775. {
  4776. struct pool *pool;
  4777. struct submit_work_state *sws = NULL;
  4778. pool = work->pool;
  4779. sws = malloc(sizeof(*sws));
  4780. *sws = (struct submit_work_state){
  4781. .work = work,
  4782. };
  4783. rebuild_hash(work);
  4784. if (stale_work(work, true)) {
  4785. work->stale = true;
  4786. if (opt_submit_stale)
  4787. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4788. else if (pool->submit_old)
  4789. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4790. else {
  4791. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4792. submit_discard_share(work);
  4793. goto out;
  4794. }
  4795. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4796. }
  4797. if (work->stratum) {
  4798. char *s;
  4799. s = malloc(1024);
  4800. sws->s = s;
  4801. } else {
  4802. /* submit solution to bitcoin via JSON-RPC */
  4803. sws->ce = pop_curl_entry2(pool, false);
  4804. if (sws->ce) {
  4805. sws_has_ce(sws);
  4806. } else {
  4807. sws->next = pool->sws_waiting_on_curl;
  4808. pool->sws_waiting_on_curl = sws;
  4809. if (sws->next)
  4810. applog(LOG_DEBUG, "submit_thread queuing submission");
  4811. else
  4812. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4813. }
  4814. }
  4815. return sws;
  4816. out:
  4817. free(sws);
  4818. return NULL;
  4819. }
  4820. static bool retry_submission(struct submit_work_state *sws)
  4821. {
  4822. struct work *work = sws->work;
  4823. struct pool *pool = work->pool;
  4824. sws->resubmit = true;
  4825. if ((!work->stale) && stale_work(work, true)) {
  4826. work->stale = true;
  4827. if (opt_submit_stale)
  4828. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4829. else if (pool->submit_old)
  4830. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4831. else {
  4832. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4833. submit_discard_share(work);
  4834. return false;
  4835. }
  4836. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4837. }
  4838. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4839. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4840. submit_discard_share(work);
  4841. return false;
  4842. }
  4843. else if (work->stale) {
  4844. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4845. {
  4846. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4847. submit_discard_share(work);
  4848. return false;
  4849. }
  4850. }
  4851. /* pause, then restart work-request loop */
  4852. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4853. cgtime(&sws->tv_submit);
  4854. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4855. return true;
  4856. }
  4857. static void free_sws(struct submit_work_state *sws)
  4858. {
  4859. free(sws->s);
  4860. free_work(sws->work);
  4861. free(sws);
  4862. }
  4863. static void *submit_work_thread(__maybe_unused void *userdata)
  4864. {
  4865. int wip = 0;
  4866. CURLM *curlm;
  4867. long curlm_timeout_us = -1;
  4868. struct timeval curlm_timer;
  4869. struct submit_work_state *sws, **swsp;
  4870. struct submit_work_state *write_sws = NULL;
  4871. unsigned tsreduce = 0;
  4872. pthread_detach(pthread_self());
  4873. RenameThread("submit_work");
  4874. applog(LOG_DEBUG, "Creating extra submit work thread");
  4875. curlm = curl_multi_init();
  4876. curlm_timeout_us = -1;
  4877. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4878. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4879. fd_set rfds, wfds, efds;
  4880. int maxfd;
  4881. struct timeval tv_timeout, tv_now;
  4882. int n;
  4883. CURLMsg *cm;
  4884. FD_ZERO(&rfds);
  4885. while (1) {
  4886. mutex_lock(&submitting_lock);
  4887. total_submitting -= tsreduce;
  4888. tsreduce = 0;
  4889. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4890. notifier_read(submit_waiting_notifier);
  4891. }
  4892. // Receive any new submissions
  4893. while (submit_waiting) {
  4894. struct work *work = submit_waiting;
  4895. DL_DELETE(submit_waiting, work);
  4896. if ( (sws = begin_submission(work)) ) {
  4897. if (sws->ce)
  4898. curl_multi_add_handle(curlm, sws->ce->curl);
  4899. else if (sws->s) {
  4900. sws->next = write_sws;
  4901. write_sws = sws;
  4902. }
  4903. ++wip;
  4904. }
  4905. else {
  4906. --total_submitting;
  4907. free_work(work);
  4908. }
  4909. }
  4910. if (unlikely(shutting_down && !wip))
  4911. break;
  4912. mutex_unlock(&submitting_lock);
  4913. FD_ZERO(&rfds);
  4914. FD_ZERO(&wfds);
  4915. FD_ZERO(&efds);
  4916. tv_timeout.tv_sec = -1;
  4917. // Setup cURL with select
  4918. // Need to call perform to ensure the timeout gets updated
  4919. curl_multi_perform(curlm, &n);
  4920. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4921. if (curlm_timeout_us >= 0)
  4922. {
  4923. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4924. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4925. }
  4926. // Setup waiting stratum submissions with select
  4927. for (sws = write_sws; sws; sws = sws->next)
  4928. {
  4929. struct pool *pool = sws->work->pool;
  4930. int fd = pool->sock;
  4931. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4932. continue;
  4933. FD_SET(fd, &wfds);
  4934. set_maxfd(&maxfd, fd);
  4935. }
  4936. // Setup "submit waiting" notifier with select
  4937. FD_SET(submit_waiting_notifier[0], &rfds);
  4938. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4939. // Wait for something interesting to happen :)
  4940. cgtime(&tv_now);
  4941. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4942. FD_ZERO(&rfds);
  4943. continue;
  4944. }
  4945. // Handle any stratum ready-to-write results
  4946. for (swsp = &write_sws; (sws = *swsp); ) {
  4947. struct work *work = sws->work;
  4948. struct pool *pool = work->pool;
  4949. int fd = pool->sock;
  4950. bool sessionid_match;
  4951. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4952. next_write_sws:
  4953. // TODO: Check if stale, possibly discard etc
  4954. swsp = &sws->next;
  4955. continue;
  4956. }
  4957. cg_rlock(&pool->data_lock);
  4958. // NOTE: cgminer only does this check on retries, but BFGMiner does it for even the first/normal submit; therefore, it needs to be such that it always is true on the same connection regardless of session management
  4959. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4960. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4961. cg_runlock(&pool->data_lock);
  4962. if (!sessionid_match)
  4963. {
  4964. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4965. submit_discard_share2("disconnect", work);
  4966. ++tsreduce;
  4967. next_write_sws_del:
  4968. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4969. FD_CLR(fd, &wfds);
  4970. // Delete sws for this submission, since we're done with it
  4971. *swsp = sws->next;
  4972. free_sws(sws);
  4973. --wip;
  4974. continue;
  4975. }
  4976. char *s = sws->s;
  4977. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4978. int sshare_id;
  4979. uint32_t nonce;
  4980. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4981. char noncehex[9];
  4982. char ntimehex[9];
  4983. sshare->work = copy_work(work);
  4984. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4985. nonce = *((uint32_t *)(work->data + 76));
  4986. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  4987. bin2hex(ntimehex, (void *)&work->data[68], 4);
  4988. mutex_lock(&sshare_lock);
  4989. /* Give the stratum share a unique id */
  4990. sshare_id =
  4991. sshare->id = swork_id++;
  4992. HASH_ADD_INT(stratum_shares, id, sshare);
  4993. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  4994. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  4995. mutex_unlock(&sshare_lock);
  4996. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  4997. if (likely(stratum_send(pool, s, strlen(s)))) {
  4998. if (pool_tclear(pool, &pool->submit_fail))
  4999. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5000. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5001. goto next_write_sws_del;
  5002. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5003. // Undo stuff
  5004. mutex_lock(&sshare_lock);
  5005. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5006. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5007. if (sshare)
  5008. HASH_DEL(stratum_shares, sshare);
  5009. mutex_unlock(&sshare_lock);
  5010. if (sshare)
  5011. {
  5012. free_work(sshare->work);
  5013. free(sshare);
  5014. }
  5015. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5016. total_ro++;
  5017. pool->remotefail_occasions++;
  5018. if (!sshare)
  5019. goto next_write_sws_del;
  5020. goto next_write_sws;
  5021. }
  5022. }
  5023. // Handle any cURL activities
  5024. curl_multi_perform(curlm, &n);
  5025. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5026. if (cm->msg == CURLMSG_DONE)
  5027. {
  5028. bool finished;
  5029. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5030. curl_multi_remove_handle(curlm, cm->easy_handle);
  5031. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5032. if (!finished) {
  5033. if (retry_submission(sws))
  5034. curl_multi_add_handle(curlm, sws->ce->curl);
  5035. else
  5036. finished = true;
  5037. }
  5038. if (finished) {
  5039. --wip;
  5040. ++tsreduce;
  5041. struct pool *pool = sws->work->pool;
  5042. if (pool->sws_waiting_on_curl) {
  5043. pool->sws_waiting_on_curl->ce = sws->ce;
  5044. sws_has_ce(pool->sws_waiting_on_curl);
  5045. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5046. curl_multi_add_handle(curlm, sws->ce->curl);
  5047. } else {
  5048. push_curl_entry(sws->ce, sws->work->pool);
  5049. }
  5050. free_sws(sws);
  5051. }
  5052. }
  5053. }
  5054. }
  5055. assert(!write_sws);
  5056. mutex_unlock(&submitting_lock);
  5057. curl_multi_cleanup(curlm);
  5058. applog(LOG_DEBUG, "submit_work thread exiting");
  5059. return NULL;
  5060. }
  5061. /* Find the pool that currently has the highest priority */
  5062. static struct pool *priority_pool(int choice)
  5063. {
  5064. struct pool *ret = NULL;
  5065. int i;
  5066. for (i = 0; i < total_pools; i++) {
  5067. struct pool *pool = pools[i];
  5068. if (pool->prio == choice) {
  5069. ret = pool;
  5070. break;
  5071. }
  5072. }
  5073. if (unlikely(!ret)) {
  5074. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5075. return pools[choice];
  5076. }
  5077. return ret;
  5078. }
  5079. int prioritize_pools(char *param, int *pid)
  5080. {
  5081. char *ptr, *next;
  5082. int i, pr, prio = 0;
  5083. if (total_pools == 0) {
  5084. return MSG_NOPOOL;
  5085. }
  5086. if (param == NULL || *param == '\0') {
  5087. return MSG_MISPID;
  5088. }
  5089. bool pools_changed[total_pools];
  5090. int new_prio[total_pools];
  5091. for (i = 0; i < total_pools; ++i)
  5092. pools_changed[i] = false;
  5093. next = param;
  5094. while (next && *next) {
  5095. ptr = next;
  5096. next = strchr(ptr, ',');
  5097. if (next)
  5098. *(next++) = '\0';
  5099. i = atoi(ptr);
  5100. if (i < 0 || i >= total_pools) {
  5101. *pid = i;
  5102. return MSG_INVPID;
  5103. }
  5104. if (pools_changed[i]) {
  5105. *pid = i;
  5106. return MSG_DUPPID;
  5107. }
  5108. pools_changed[i] = true;
  5109. new_prio[i] = prio++;
  5110. }
  5111. // Only change them if no errors
  5112. for (i = 0; i < total_pools; i++) {
  5113. if (pools_changed[i])
  5114. pools[i]->prio = new_prio[i];
  5115. }
  5116. // In priority order, cycle through the unchanged pools and append them
  5117. for (pr = 0; pr < total_pools; pr++)
  5118. for (i = 0; i < total_pools; i++) {
  5119. if (!pools_changed[i] && pools[i]->prio == pr) {
  5120. pools[i]->prio = prio++;
  5121. pools_changed[i] = true;
  5122. break;
  5123. }
  5124. }
  5125. if (current_pool()->prio)
  5126. switch_pools(NULL);
  5127. return MSG_POOLPRIO;
  5128. }
  5129. void validate_pool_priorities(void)
  5130. {
  5131. // TODO: this should probably do some sort of logging
  5132. int i, j;
  5133. bool used[total_pools];
  5134. bool valid[total_pools];
  5135. for (i = 0; i < total_pools; i++)
  5136. used[i] = valid[i] = false;
  5137. for (i = 0; i < total_pools; i++) {
  5138. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5139. if (!used[pools[i]->prio]) {
  5140. valid[i] = true;
  5141. used[pools[i]->prio] = true;
  5142. }
  5143. }
  5144. }
  5145. for (i = 0; i < total_pools; i++) {
  5146. if (!valid[i]) {
  5147. for (j = 0; j < total_pools; j++) {
  5148. if (!used[j]) {
  5149. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5150. pools[i]->prio = j;
  5151. used[j] = true;
  5152. break;
  5153. }
  5154. }
  5155. }
  5156. }
  5157. }
  5158. static void clear_pool_work(struct pool *pool);
  5159. /* Specifies whether we can switch to this pool or not. */
  5160. static bool pool_unusable(struct pool *pool)
  5161. {
  5162. if (pool->idle)
  5163. return true;
  5164. if (pool->enabled != POOL_ENABLED)
  5165. return true;
  5166. return false;
  5167. }
  5168. void switch_pools(struct pool *selected)
  5169. {
  5170. struct pool *pool, *last_pool;
  5171. int i, pool_no, next_pool;
  5172. cg_wlock(&control_lock);
  5173. last_pool = currentpool;
  5174. pool_no = currentpool->pool_no;
  5175. /* Switch selected to pool number 0 and move the rest down */
  5176. if (selected) {
  5177. if (selected->prio != 0) {
  5178. for (i = 0; i < total_pools; i++) {
  5179. pool = pools[i];
  5180. if (pool->prio < selected->prio)
  5181. pool->prio++;
  5182. }
  5183. selected->prio = 0;
  5184. }
  5185. }
  5186. switch (pool_strategy) {
  5187. /* All of these set to the master pool */
  5188. case POOL_BALANCE:
  5189. case POOL_FAILOVER:
  5190. case POOL_LOADBALANCE:
  5191. for (i = 0; i < total_pools; i++) {
  5192. pool = priority_pool(i);
  5193. if (pool_unusable(pool))
  5194. continue;
  5195. pool_no = pool->pool_no;
  5196. break;
  5197. }
  5198. break;
  5199. /* Both of these simply increment and cycle */
  5200. case POOL_ROUNDROBIN:
  5201. case POOL_ROTATE:
  5202. if (selected && !selected->idle) {
  5203. pool_no = selected->pool_no;
  5204. break;
  5205. }
  5206. next_pool = pool_no;
  5207. /* Select the next alive pool */
  5208. for (i = 1; i < total_pools; i++) {
  5209. next_pool++;
  5210. if (next_pool >= total_pools)
  5211. next_pool = 0;
  5212. pool = pools[next_pool];
  5213. if (pool_unusable(pool))
  5214. continue;
  5215. pool_no = next_pool;
  5216. break;
  5217. }
  5218. break;
  5219. default:
  5220. break;
  5221. }
  5222. currentpool = pools[pool_no];
  5223. pool = currentpool;
  5224. cg_wunlock(&control_lock);
  5225. /* Set the lagging flag to avoid pool not providing work fast enough
  5226. * messages in failover only mode since we have to get all fresh work
  5227. * as in restart_threads */
  5228. if (opt_fail_only)
  5229. pool_tset(pool, &pool->lagging);
  5230. if (pool != last_pool)
  5231. {
  5232. pool->block_id = 0;
  5233. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5234. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5235. if (pool_localgen(pool) || opt_fail_only)
  5236. clear_pool_work(last_pool);
  5237. }
  5238. }
  5239. mutex_lock(&lp_lock);
  5240. pthread_cond_broadcast(&lp_cond);
  5241. mutex_unlock(&lp_lock);
  5242. }
  5243. static void discard_work(struct work *work)
  5244. {
  5245. if (!work->clone && !work->rolls && !work->mined) {
  5246. if (work->pool) {
  5247. work->pool->discarded_work++;
  5248. work->pool->quota_used--;
  5249. work->pool->works--;
  5250. }
  5251. total_discarded++;
  5252. applog(LOG_DEBUG, "Discarded work");
  5253. } else
  5254. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5255. free_work(work);
  5256. }
  5257. static void wake_gws(void)
  5258. {
  5259. mutex_lock(stgd_lock);
  5260. pthread_cond_signal(&gws_cond);
  5261. mutex_unlock(stgd_lock);
  5262. }
  5263. static void discard_stale(void)
  5264. {
  5265. struct work *work, *tmp;
  5266. int stale = 0;
  5267. mutex_lock(stgd_lock);
  5268. HASH_ITER(hh, staged_work, work, tmp) {
  5269. if (stale_work(work, false)) {
  5270. HASH_DEL(staged_work, work);
  5271. discard_work(work);
  5272. stale++;
  5273. staged_full = false;
  5274. }
  5275. }
  5276. pthread_cond_signal(&gws_cond);
  5277. mutex_unlock(stgd_lock);
  5278. if (stale)
  5279. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5280. }
  5281. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5282. {
  5283. bool rv;
  5284. struct timeval tv, orig;
  5285. ldiv_t d;
  5286. d = ldiv(ustime, 1000000);
  5287. tv = (struct timeval){
  5288. .tv_sec = d.quot,
  5289. .tv_usec = d.rem,
  5290. };
  5291. orig = work->tv_staged;
  5292. timersub(&orig, &tv, &work->tv_staged);
  5293. rv = stale_work(work, share);
  5294. work->tv_staged = orig;
  5295. return rv;
  5296. }
  5297. static void restart_threads(void)
  5298. {
  5299. struct pool *cp = current_pool();
  5300. int i;
  5301. struct thr_info *thr;
  5302. /* Artificially set the lagging flag to avoid pool not providing work
  5303. * fast enough messages after every long poll */
  5304. pool_tset(cp, &cp->lagging);
  5305. /* Discard staged work that is now stale */
  5306. discard_stale();
  5307. rd_lock(&mining_thr_lock);
  5308. for (i = 0; i < mining_threads; i++)
  5309. {
  5310. thr = mining_thr[i];
  5311. thr->work_restart = true;
  5312. }
  5313. for (i = 0; i < mining_threads; i++)
  5314. {
  5315. thr = mining_thr[i];
  5316. notifier_wake(thr->work_restart_notifier);
  5317. }
  5318. rd_unlock(&mining_thr_lock);
  5319. }
  5320. static
  5321. void blkhashstr(char *rv, const unsigned char *hash)
  5322. {
  5323. unsigned char hash_swap[32];
  5324. swap256(hash_swap, hash);
  5325. swap32tole(hash_swap, hash_swap, 32 / 4);
  5326. bin2hex(rv, hash_swap, 32);
  5327. }
  5328. static void set_curblock(char *hexstr, unsigned char *hash)
  5329. {
  5330. unsigned char hash_swap[32];
  5331. current_block_id = ((uint32_t*)hash)[0];
  5332. strcpy(current_block, hexstr);
  5333. swap256(hash_swap, hash);
  5334. swap32tole(hash_swap, hash_swap, 32 / 4);
  5335. cg_wlock(&ch_lock);
  5336. block_time = time(NULL);
  5337. __update_block_title(hash_swap);
  5338. free(current_fullhash);
  5339. current_fullhash = malloc(65);
  5340. bin2hex(current_fullhash, hash_swap, 32);
  5341. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5342. cg_wunlock(&ch_lock);
  5343. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5344. }
  5345. /* Search to see if this string is from a block that has been seen before */
  5346. static bool block_exists(char *hexstr)
  5347. {
  5348. struct block *s;
  5349. rd_lock(&blk_lock);
  5350. HASH_FIND_STR(blocks, hexstr, s);
  5351. rd_unlock(&blk_lock);
  5352. if (s)
  5353. return true;
  5354. return false;
  5355. }
  5356. /* Tests if this work is from a block that has been seen before */
  5357. static inline bool from_existing_block(struct work *work)
  5358. {
  5359. char hexstr[37];
  5360. bool ret;
  5361. bin2hex(hexstr, work->data + 8, 18);
  5362. ret = block_exists(hexstr);
  5363. return ret;
  5364. }
  5365. static int block_sort(struct block *blocka, struct block *blockb)
  5366. {
  5367. return blocka->block_no - blockb->block_no;
  5368. }
  5369. static void set_blockdiff(const struct work *work)
  5370. {
  5371. unsigned char target[32];
  5372. double diff;
  5373. uint64_t diff64;
  5374. real_block_target(target, work->data);
  5375. diff = target_diff(target);
  5376. diff64 = diff;
  5377. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5378. format_unit2(net_hashrate, sizeof(net_hashrate),
  5379. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5380. if (unlikely(current_diff != diff))
  5381. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5382. current_diff = diff;
  5383. }
  5384. static bool test_work_current(struct work *work)
  5385. {
  5386. bool ret = true;
  5387. char hexstr[65];
  5388. if (work->mandatory)
  5389. return ret;
  5390. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5391. /* Hack to work around dud work sneaking into test */
  5392. bin2hex(hexstr, work->data + 8, 18);
  5393. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5394. goto out_free;
  5395. /* Search to see if this block exists yet and if not, consider it a
  5396. * new block and set the current block details to this one */
  5397. if (!block_exists(hexstr)) {
  5398. struct block *s = calloc(sizeof(struct block), 1);
  5399. int deleted_block = 0;
  5400. ret = false;
  5401. if (unlikely(!s))
  5402. quit (1, "test_work_current OOM");
  5403. strcpy(s->hash, hexstr);
  5404. s->block_no = new_blocks++;
  5405. wr_lock(&blk_lock);
  5406. /* Only keep the last hour's worth of blocks in memory since
  5407. * work from blocks before this is virtually impossible and we
  5408. * want to prevent memory usage from continually rising */
  5409. if (HASH_COUNT(blocks) > 6) {
  5410. struct block *oldblock;
  5411. HASH_SORT(blocks, block_sort);
  5412. oldblock = blocks;
  5413. deleted_block = oldblock->block_no;
  5414. HASH_DEL(blocks, oldblock);
  5415. free(oldblock);
  5416. }
  5417. HASH_ADD_STR(blocks, hash, s);
  5418. set_blockdiff(work);
  5419. wr_unlock(&blk_lock);
  5420. work->pool->block_id = block_id;
  5421. if (deleted_block)
  5422. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5423. #if BLKMAKER_VERSION > 1
  5424. template_nonce = 0;
  5425. #endif
  5426. set_curblock(hexstr, &work->data[4]);
  5427. if (unlikely(new_blocks == 1))
  5428. goto out_free;
  5429. if (!work->stratum) {
  5430. if (work->longpoll) {
  5431. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5432. work->pool->pool_no);
  5433. } else if (have_longpoll)
  5434. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5435. else
  5436. applog(LOG_NOTICE, "New block detected on network");
  5437. }
  5438. restart_threads();
  5439. } else {
  5440. bool restart = false;
  5441. struct pool *curpool = NULL;
  5442. if (unlikely(work->pool->block_id != block_id)) {
  5443. bool was_active = work->pool->block_id != 0;
  5444. work->pool->block_id = block_id;
  5445. if (!work->longpoll)
  5446. update_last_work(work);
  5447. if (was_active) { // Pool actively changed block
  5448. if (work->pool == (curpool = current_pool()))
  5449. restart = true;
  5450. if (block_id == current_block_id) {
  5451. // Caught up, only announce if this pool is the one in use
  5452. if (restart)
  5453. applog(LOG_NOTICE, "%s %d caught up to new block",
  5454. work->longpoll ? "Longpoll from pool" : "Pool",
  5455. work->pool->pool_no);
  5456. } else {
  5457. // Switched to a block we know, but not the latest... why?
  5458. // This might detect pools trying to double-spend or 51%,
  5459. // but let's not make any accusations until it's had time
  5460. // in the real world.
  5461. blkhashstr(hexstr, &work->data[4]);
  5462. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5463. work->longpoll ? "Longpoll from pool" : "Pool",
  5464. work->pool->pool_no,
  5465. hexstr);
  5466. }
  5467. }
  5468. }
  5469. if (work->longpoll) {
  5470. ++work->pool->work_restart_id;
  5471. update_last_work(work);
  5472. if ((!restart) && work->pool == current_pool()) {
  5473. applog(
  5474. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5475. "Longpoll from pool %d requested work update",
  5476. work->pool->pool_no);
  5477. restart = true;
  5478. }
  5479. }
  5480. if (restart)
  5481. restart_threads();
  5482. }
  5483. work->longpoll = false;
  5484. out_free:
  5485. return ret;
  5486. }
  5487. static int tv_sort(struct work *worka, struct work *workb)
  5488. {
  5489. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5490. }
  5491. static bool work_rollable(struct work *work)
  5492. {
  5493. return (!work->clone && work->rolltime);
  5494. }
  5495. static bool hash_push(struct work *work)
  5496. {
  5497. bool rc = true;
  5498. mutex_lock(stgd_lock);
  5499. if (work_rollable(work))
  5500. staged_rollable++;
  5501. if (likely(!getq->frozen)) {
  5502. HASH_ADD_INT(staged_work, id, work);
  5503. HASH_SORT(staged_work, tv_sort);
  5504. } else
  5505. rc = false;
  5506. pthread_cond_broadcast(&getq->cond);
  5507. mutex_unlock(stgd_lock);
  5508. return rc;
  5509. }
  5510. static void stage_work(struct work *work)
  5511. {
  5512. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5513. work->id, work->pool->pool_no);
  5514. work->work_restart_id = work->pool->work_restart_id;
  5515. work->pool->last_work_time = time(NULL);
  5516. cgtime(&work->pool->tv_last_work_time);
  5517. test_work_current(work);
  5518. work->pool->works++;
  5519. hash_push(work);
  5520. }
  5521. #ifdef HAVE_CURSES
  5522. int curses_int(const char *query)
  5523. {
  5524. int ret;
  5525. char *cvar;
  5526. cvar = curses_input(query);
  5527. if (unlikely(!cvar))
  5528. return -1;
  5529. ret = atoi(cvar);
  5530. free(cvar);
  5531. return ret;
  5532. }
  5533. #endif
  5534. #ifdef HAVE_CURSES
  5535. static bool input_pool(bool live);
  5536. #endif
  5537. #ifdef HAVE_CURSES
  5538. static void display_pool_summary(struct pool *pool)
  5539. {
  5540. double efficiency = 0.0;
  5541. char xfer[17], bw[19];
  5542. int pool_secs;
  5543. if (curses_active_locked()) {
  5544. wlog("Pool: %s\n", pool->rpc_url);
  5545. if (pool->solved)
  5546. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5547. if (!pool->has_stratum)
  5548. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5549. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5550. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5551. wlog(" Accepted shares: %d\n", pool->accepted);
  5552. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5553. pool->rejected, pool->stale_shares,
  5554. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5555. );
  5556. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5557. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5558. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5559. wlog(" Network transfer: %s (%s)\n",
  5560. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5561. (float)pool->cgminer_pool_stats.net_bytes_received,
  5562. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5563. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5564. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5565. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5566. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5567. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5568. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5569. wlog(" Items worked on: %d\n", pool->works);
  5570. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5571. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5572. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5573. unlock_curses();
  5574. }
  5575. }
  5576. #endif
  5577. /* We can't remove the memory used for this struct pool because there may
  5578. * still be work referencing it. We just remove it from the pools list */
  5579. void remove_pool(struct pool *pool)
  5580. {
  5581. int i, last_pool = total_pools - 1;
  5582. struct pool *other;
  5583. /* Boost priority of any lower prio than this one */
  5584. for (i = 0; i < total_pools; i++) {
  5585. other = pools[i];
  5586. if (other->prio > pool->prio)
  5587. other->prio--;
  5588. }
  5589. if (pool->pool_no < last_pool) {
  5590. /* Swap the last pool for this one */
  5591. (pools[last_pool])->pool_no = pool->pool_no;
  5592. pools[pool->pool_no] = pools[last_pool];
  5593. }
  5594. /* Give it an invalid number */
  5595. pool->pool_no = total_pools;
  5596. pool->removed = true;
  5597. pool->has_stratum = false;
  5598. total_pools--;
  5599. }
  5600. /* add a mutex if this needs to be thread safe in the future */
  5601. static struct JE {
  5602. char *buf;
  5603. struct JE *next;
  5604. } *jedata = NULL;
  5605. static void json_escape_free()
  5606. {
  5607. struct JE *jeptr = jedata;
  5608. struct JE *jenext;
  5609. jedata = NULL;
  5610. while (jeptr) {
  5611. jenext = jeptr->next;
  5612. free(jeptr->buf);
  5613. free(jeptr);
  5614. jeptr = jenext;
  5615. }
  5616. }
  5617. static
  5618. char *json_escape(const char *str)
  5619. {
  5620. struct JE *jeptr;
  5621. char *buf, *ptr;
  5622. /* 2x is the max, may as well just allocate that */
  5623. ptr = buf = malloc(strlen(str) * 2 + 1);
  5624. jeptr = malloc(sizeof(*jeptr));
  5625. jeptr->buf = buf;
  5626. jeptr->next = jedata;
  5627. jedata = jeptr;
  5628. while (*str) {
  5629. if (*str == '\\' || *str == '"')
  5630. *(ptr++) = '\\';
  5631. *(ptr++) = *(str++);
  5632. }
  5633. *ptr = '\0';
  5634. return buf;
  5635. }
  5636. static
  5637. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5638. {
  5639. if (!elist)
  5640. return;
  5641. static struct string_elist *entry;
  5642. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5643. bool first = true;
  5644. DL_FOREACH(elist, entry)
  5645. {
  5646. const char * const s = entry->string;
  5647. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5648. first = false;
  5649. }
  5650. fprintf(fcfg, "\n]");
  5651. }
  5652. void write_config(FILE *fcfg)
  5653. {
  5654. int i;
  5655. /* Write pool values */
  5656. fputs("{\n\"pools\" : [", fcfg);
  5657. for(i = 0; i < total_pools; i++) {
  5658. struct pool *pool = pools[i];
  5659. if (pool->quota != 1) {
  5660. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5661. pool->quota,
  5662. json_escape(pool->rpc_url));
  5663. } else {
  5664. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5665. json_escape(pool->rpc_url));
  5666. }
  5667. if (pool->rpc_proxy)
  5668. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5669. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5670. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5671. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5672. if (pool->force_rollntime)
  5673. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5674. fprintf(fcfg, "\n\t}");
  5675. }
  5676. fputs("\n]\n", fcfg);
  5677. #ifdef HAVE_OPENCL
  5678. write_config_opencl(fcfg);
  5679. #endif
  5680. #ifdef WANT_CPUMINE
  5681. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5682. #endif
  5683. /* Simple bool and int options */
  5684. struct opt_table *opt;
  5685. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5686. char *p, *name = strdup(opt->names);
  5687. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5688. if (p[1] != '-')
  5689. continue;
  5690. if (opt->type & OPT_NOARG &&
  5691. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5692. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5693. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5694. if (opt->type & OPT_HASARG &&
  5695. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5696. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5697. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5698. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5699. opt->desc != opt_hidden &&
  5700. 0 <= *(int *)opt->u.arg)
  5701. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5702. }
  5703. }
  5704. /* Special case options */
  5705. if (request_target_str)
  5706. {
  5707. if (request_pdiff == (long)request_pdiff)
  5708. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5709. else
  5710. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5711. }
  5712. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5713. if (pool_strategy == POOL_BALANCE)
  5714. fputs(",\n\"balance\" : true", fcfg);
  5715. if (pool_strategy == POOL_LOADBALANCE)
  5716. fputs(",\n\"load-balance\" : true", fcfg);
  5717. if (pool_strategy == POOL_ROUNDROBIN)
  5718. fputs(",\n\"round-robin\" : true", fcfg);
  5719. if (pool_strategy == POOL_ROTATE)
  5720. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5721. #if defined(unix) || defined(__APPLE__)
  5722. if (opt_stderr_cmd && *opt_stderr_cmd)
  5723. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5724. #endif // defined(unix)
  5725. if (opt_kernel_path && *opt_kernel_path) {
  5726. char *kpath = strdup(opt_kernel_path);
  5727. if (kpath[strlen(kpath)-1] == '/')
  5728. kpath[strlen(kpath)-1] = 0;
  5729. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5730. free(kpath);
  5731. }
  5732. if (schedstart.enable)
  5733. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5734. if (schedstop.enable)
  5735. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5736. if (opt_socks_proxy && *opt_socks_proxy)
  5737. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5738. _write_config_string_elist(fcfg, "scan", scan_devices);
  5739. #ifdef USE_LIBMICROHTTPD
  5740. if (httpsrv_port != -1)
  5741. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5742. #endif
  5743. #ifdef USE_LIBEVENT
  5744. if (stratumsrv_port != -1)
  5745. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5746. #endif
  5747. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5748. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5749. if (opt_api_allow)
  5750. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5751. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5752. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5753. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5754. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5755. if (*opt_api_mcast_des)
  5756. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5757. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5758. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5759. if (opt_api_groups)
  5760. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5761. fputs("\n}\n", fcfg);
  5762. json_escape_free();
  5763. }
  5764. void zero_bestshare(void)
  5765. {
  5766. int i;
  5767. best_diff = 0;
  5768. memset(best_share, 0, 8);
  5769. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5770. for (i = 0; i < total_pools; i++) {
  5771. struct pool *pool = pools[i];
  5772. pool->best_diff = 0;
  5773. }
  5774. }
  5775. void zero_stats(void)
  5776. {
  5777. int i;
  5778. applog(LOG_DEBUG, "Zeroing stats");
  5779. cgtime(&total_tv_start);
  5780. miner_started = total_tv_start;
  5781. total_rolling = 0;
  5782. total_mhashes_done = 0;
  5783. total_getworks = 0;
  5784. total_accepted = 0;
  5785. total_rejected = 0;
  5786. hw_errors = 0;
  5787. total_stale = 0;
  5788. total_discarded = 0;
  5789. total_bytes_rcvd = total_bytes_sent = 0;
  5790. new_blocks = 0;
  5791. local_work = 0;
  5792. total_go = 0;
  5793. total_ro = 0;
  5794. total_secs = 1.0;
  5795. total_diff1 = 0;
  5796. total_bad_diff1 = 0;
  5797. found_blocks = 0;
  5798. total_diff_accepted = 0;
  5799. total_diff_rejected = 0;
  5800. total_diff_stale = 0;
  5801. #ifdef HAVE_CURSES
  5802. awidth = rwidth = swidth = hwwidth = 1;
  5803. #endif
  5804. for (i = 0; i < total_pools; i++) {
  5805. struct pool *pool = pools[i];
  5806. pool->getwork_requested = 0;
  5807. pool->accepted = 0;
  5808. pool->rejected = 0;
  5809. pool->solved = 0;
  5810. pool->getwork_requested = 0;
  5811. pool->stale_shares = 0;
  5812. pool->discarded_work = 0;
  5813. pool->getfail_occasions = 0;
  5814. pool->remotefail_occasions = 0;
  5815. pool->last_share_time = 0;
  5816. pool->diff1 = 0;
  5817. pool->diff_accepted = 0;
  5818. pool->diff_rejected = 0;
  5819. pool->diff_stale = 0;
  5820. pool->last_share_diff = 0;
  5821. pool->cgminer_stats.start_tv = total_tv_start;
  5822. pool->cgminer_stats.getwork_calls = 0;
  5823. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5824. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5825. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5826. pool->cgminer_pool_stats.getwork_calls = 0;
  5827. pool->cgminer_pool_stats.getwork_attempts = 0;
  5828. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5829. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5830. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5831. pool->cgminer_pool_stats.min_diff = 0;
  5832. pool->cgminer_pool_stats.max_diff = 0;
  5833. pool->cgminer_pool_stats.min_diff_count = 0;
  5834. pool->cgminer_pool_stats.max_diff_count = 0;
  5835. pool->cgminer_pool_stats.times_sent = 0;
  5836. pool->cgminer_pool_stats.bytes_sent = 0;
  5837. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5838. pool->cgminer_pool_stats.times_received = 0;
  5839. pool->cgminer_pool_stats.bytes_received = 0;
  5840. pool->cgminer_pool_stats.net_bytes_received = 0;
  5841. }
  5842. zero_bestshare();
  5843. for (i = 0; i < total_devices; ++i) {
  5844. struct cgpu_info *cgpu = get_devices(i);
  5845. mutex_lock(&hash_lock);
  5846. cgpu->total_mhashes = 0;
  5847. cgpu->accepted = 0;
  5848. cgpu->rejected = 0;
  5849. cgpu->stale = 0;
  5850. cgpu->hw_errors = 0;
  5851. cgpu->utility = 0.0;
  5852. cgpu->utility_diff1 = 0;
  5853. cgpu->last_share_pool_time = 0;
  5854. cgpu->bad_diff1 = 0;
  5855. cgpu->diff1 = 0;
  5856. cgpu->diff_accepted = 0;
  5857. cgpu->diff_rejected = 0;
  5858. cgpu->diff_stale = 0;
  5859. cgpu->last_share_diff = 0;
  5860. cgpu->thread_fail_init_count = 0;
  5861. cgpu->thread_zero_hash_count = 0;
  5862. cgpu->thread_fail_queue_count = 0;
  5863. cgpu->dev_sick_idle_60_count = 0;
  5864. cgpu->dev_dead_idle_600_count = 0;
  5865. cgpu->dev_nostart_count = 0;
  5866. cgpu->dev_over_heat_count = 0;
  5867. cgpu->dev_thermal_cutoff_count = 0;
  5868. cgpu->dev_comms_error_count = 0;
  5869. cgpu->dev_throttle_count = 0;
  5870. cgpu->cgminer_stats.start_tv = total_tv_start;
  5871. cgpu->cgminer_stats.getwork_calls = 0;
  5872. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5873. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5874. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5875. mutex_unlock(&hash_lock);
  5876. }
  5877. }
  5878. #ifdef HAVE_CURSES
  5879. static
  5880. void loginput_mode(const int size)
  5881. {
  5882. clear_logwin();
  5883. loginput_size = size;
  5884. check_winsizes();
  5885. }
  5886. static void display_pools(void)
  5887. {
  5888. struct pool *pool;
  5889. int selected, i, j;
  5890. char input;
  5891. loginput_mode(7 + total_pools);
  5892. immedok(logwin, true);
  5893. updated:
  5894. for (j = 0; j < total_pools; j++) {
  5895. for (i = 0; i < total_pools; i++) {
  5896. pool = pools[i];
  5897. if (pool->prio != j)
  5898. continue;
  5899. if (pool == current_pool())
  5900. wattron(logwin, A_BOLD);
  5901. if (pool->enabled != POOL_ENABLED)
  5902. wattron(logwin, A_DIM);
  5903. wlogprint("%d: ", pool->prio);
  5904. switch (pool->enabled) {
  5905. case POOL_ENABLED:
  5906. wlogprint("Enabled ");
  5907. break;
  5908. case POOL_DISABLED:
  5909. wlogprint("Disabled ");
  5910. break;
  5911. case POOL_REJECTING:
  5912. wlogprint("Rejectin ");
  5913. break;
  5914. }
  5915. if (pool->idle)
  5916. wlogprint("Dead ");
  5917. else
  5918. if (pool->has_stratum)
  5919. wlogprint("Strtm");
  5920. else
  5921. if (pool->lp_url && pool->proto != pool->lp_proto)
  5922. wlogprint("Mixed");
  5923. else
  5924. switch (pool->proto) {
  5925. case PLP_GETBLOCKTEMPLATE:
  5926. wlogprint(" GBT ");
  5927. break;
  5928. case PLP_GETWORK:
  5929. wlogprint("GWork");
  5930. break;
  5931. default:
  5932. wlogprint("Alive");
  5933. }
  5934. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  5935. pool->quota,
  5936. pool->pool_no,
  5937. pool->rpc_url, pool->rpc_user);
  5938. wattroff(logwin, A_BOLD | A_DIM);
  5939. break; //for (i = 0; i < total_pools; i++)
  5940. }
  5941. }
  5942. retry:
  5943. wlogprint("\nCurrent pool management strategy: %s\n",
  5944. strategies[pool_strategy].s);
  5945. if (pool_strategy == POOL_ROTATE)
  5946. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  5947. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  5948. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  5949. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  5950. wlogprint("Or press any other key to continue\n");
  5951. logwin_update();
  5952. input = getch();
  5953. if (!strncasecmp(&input, "a", 1)) {
  5954. if (opt_benchmark)
  5955. {
  5956. wlogprint("Cannot add pools in benchmark mode");
  5957. goto retry;
  5958. }
  5959. input_pool(true);
  5960. goto updated;
  5961. } else if (!strncasecmp(&input, "r", 1)) {
  5962. if (total_pools <= 1) {
  5963. wlogprint("Cannot remove last pool");
  5964. goto retry;
  5965. }
  5966. selected = curses_int("Select pool number");
  5967. if (selected < 0 || selected >= total_pools) {
  5968. wlogprint("Invalid selection\n");
  5969. goto retry;
  5970. }
  5971. pool = pools[selected];
  5972. if (pool == current_pool())
  5973. switch_pools(NULL);
  5974. if (pool == current_pool()) {
  5975. wlogprint("Unable to remove pool due to activity\n");
  5976. goto retry;
  5977. }
  5978. disable_pool(pool);
  5979. remove_pool(pool);
  5980. goto updated;
  5981. } else if (!strncasecmp(&input, "s", 1)) {
  5982. selected = curses_int("Select pool number");
  5983. if (selected < 0 || selected >= total_pools) {
  5984. wlogprint("Invalid selection\n");
  5985. goto retry;
  5986. }
  5987. pool = pools[selected];
  5988. enable_pool(pool);
  5989. switch_pools(pool);
  5990. goto updated;
  5991. } else if (!strncasecmp(&input, "d", 1)) {
  5992. if (enabled_pools <= 1) {
  5993. wlogprint("Cannot disable last pool");
  5994. goto retry;
  5995. }
  5996. selected = curses_int("Select pool number");
  5997. if (selected < 0 || selected >= total_pools) {
  5998. wlogprint("Invalid selection\n");
  5999. goto retry;
  6000. }
  6001. pool = pools[selected];
  6002. disable_pool(pool);
  6003. if (pool == current_pool())
  6004. switch_pools(NULL);
  6005. goto updated;
  6006. } else if (!strncasecmp(&input, "e", 1)) {
  6007. selected = curses_int("Select pool number");
  6008. if (selected < 0 || selected >= total_pools) {
  6009. wlogprint("Invalid selection\n");
  6010. goto retry;
  6011. }
  6012. pool = pools[selected];
  6013. enable_pool(pool);
  6014. if (pool->prio < current_pool()->prio)
  6015. switch_pools(pool);
  6016. goto updated;
  6017. } else if (!strncasecmp(&input, "c", 1)) {
  6018. for (i = 0; i <= TOP_STRATEGY; i++)
  6019. wlogprint("%d: %s\n", i, strategies[i].s);
  6020. selected = curses_int("Select strategy number type");
  6021. if (selected < 0 || selected > TOP_STRATEGY) {
  6022. wlogprint("Invalid selection\n");
  6023. goto retry;
  6024. }
  6025. if (selected == POOL_ROTATE) {
  6026. opt_rotate_period = curses_int("Select interval in minutes");
  6027. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6028. opt_rotate_period = 0;
  6029. wlogprint("Invalid selection\n");
  6030. goto retry;
  6031. }
  6032. }
  6033. pool_strategy = selected;
  6034. switch_pools(NULL);
  6035. goto updated;
  6036. } else if (!strncasecmp(&input, "i", 1)) {
  6037. selected = curses_int("Select pool number");
  6038. if (selected < 0 || selected >= total_pools) {
  6039. wlogprint("Invalid selection\n");
  6040. goto retry;
  6041. }
  6042. pool = pools[selected];
  6043. display_pool_summary(pool);
  6044. goto retry;
  6045. } else if (!strncasecmp(&input, "q", 1)) {
  6046. selected = curses_int("Select pool number");
  6047. if (selected < 0 || selected >= total_pools) {
  6048. wlogprint("Invalid selection\n");
  6049. goto retry;
  6050. }
  6051. pool = pools[selected];
  6052. selected = curses_int("Set quota");
  6053. if (selected < 0) {
  6054. wlogprint("Invalid negative quota\n");
  6055. goto retry;
  6056. }
  6057. pool->quota = selected;
  6058. adjust_quota_gcd();
  6059. goto updated;
  6060. } else if (!strncasecmp(&input, "f", 1)) {
  6061. opt_fail_only ^= true;
  6062. goto updated;
  6063. } else if (!strncasecmp(&input, "p", 1)) {
  6064. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6065. if (!prilist)
  6066. {
  6067. wlogprint("Not changing priorities\n");
  6068. goto retry;
  6069. }
  6070. int res = prioritize_pools(prilist, &i);
  6071. free(prilist);
  6072. switch (res) {
  6073. case MSG_NOPOOL:
  6074. wlogprint("No pools\n");
  6075. goto retry;
  6076. case MSG_MISPID:
  6077. wlogprint("Missing pool id parameter\n");
  6078. goto retry;
  6079. case MSG_INVPID:
  6080. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6081. goto retry;
  6082. case MSG_DUPPID:
  6083. wlogprint("Duplicate pool specified %d\n", i);
  6084. goto retry;
  6085. case MSG_POOLPRIO:
  6086. default:
  6087. goto updated;
  6088. }
  6089. }
  6090. immedok(logwin, false);
  6091. loginput_mode(0);
  6092. }
  6093. static const char *summary_detail_level_str(void)
  6094. {
  6095. if (opt_compact)
  6096. return "compact";
  6097. if (opt_show_procs)
  6098. return "processors";
  6099. return "devices";
  6100. }
  6101. static void display_options(void)
  6102. {
  6103. int selected;
  6104. char input;
  6105. immedok(logwin, true);
  6106. loginput_mode(12);
  6107. retry:
  6108. clear_logwin();
  6109. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6110. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6111. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6112. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6113. opt_debug_console ? "on" : "off",
  6114. want_per_device_stats? "on" : "off",
  6115. opt_quiet ? "on" : "off",
  6116. opt_log_output ? "on" : "off",
  6117. opt_protocol ? "on" : "off",
  6118. opt_worktime ? "on" : "off",
  6119. summary_detail_level_str(),
  6120. opt_log_interval,
  6121. opt_weighed_stats ? "weighed" : "absolute");
  6122. wlogprint("Select an option or any other key to return\n");
  6123. logwin_update();
  6124. input = getch();
  6125. if (!strncasecmp(&input, "q", 1)) {
  6126. opt_quiet ^= true;
  6127. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6128. goto retry;
  6129. } else if (!strncasecmp(&input, "v", 1)) {
  6130. opt_log_output ^= true;
  6131. if (opt_log_output)
  6132. opt_quiet = false;
  6133. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6134. goto retry;
  6135. } else if (!strncasecmp(&input, "n", 1)) {
  6136. opt_log_output = false;
  6137. opt_debug_console = false;
  6138. opt_quiet = false;
  6139. opt_protocol = false;
  6140. opt_compact = false;
  6141. opt_show_procs = false;
  6142. devsummaryYOffset = 0;
  6143. want_per_device_stats = false;
  6144. wlogprint("Output mode reset to normal\n");
  6145. switch_logsize();
  6146. goto retry;
  6147. } else if (!strncasecmp(&input, "d", 1)) {
  6148. opt_debug = true;
  6149. opt_debug_console ^= true;
  6150. opt_log_output = opt_debug_console;
  6151. if (opt_debug_console)
  6152. opt_quiet = false;
  6153. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6154. goto retry;
  6155. } else if (!strncasecmp(&input, "m", 1)) {
  6156. if (opt_compact)
  6157. opt_compact = false;
  6158. else
  6159. if (!opt_show_procs)
  6160. opt_show_procs = true;
  6161. else
  6162. {
  6163. opt_compact = true;
  6164. opt_show_procs = false;
  6165. devsummaryYOffset = 0;
  6166. }
  6167. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6168. switch_logsize();
  6169. goto retry;
  6170. } else if (!strncasecmp(&input, "p", 1)) {
  6171. want_per_device_stats ^= true;
  6172. opt_log_output = want_per_device_stats;
  6173. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6174. goto retry;
  6175. } else if (!strncasecmp(&input, "r", 1)) {
  6176. opt_protocol ^= true;
  6177. if (opt_protocol)
  6178. opt_quiet = false;
  6179. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6180. goto retry;
  6181. } else if (!strncasecmp(&input, "c", 1))
  6182. clear_logwin();
  6183. else if (!strncasecmp(&input, "l", 1)) {
  6184. selected = curses_int("Interval in seconds");
  6185. if (selected < 0 || selected > 9999) {
  6186. wlogprint("Invalid selection\n");
  6187. goto retry;
  6188. }
  6189. opt_log_interval = selected;
  6190. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6191. goto retry;
  6192. } else if (!strncasecmp(&input, "s", 1)) {
  6193. opt_realquiet = true;
  6194. } else if (!strncasecmp(&input, "w", 1)) {
  6195. opt_worktime ^= true;
  6196. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6197. goto retry;
  6198. } else if (!strncasecmp(&input, "t", 1)) {
  6199. opt_weighed_stats ^= true;
  6200. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6201. goto retry;
  6202. } else if (!strncasecmp(&input, "z", 1)) {
  6203. zero_stats();
  6204. goto retry;
  6205. }
  6206. immedok(logwin, false);
  6207. loginput_mode(0);
  6208. }
  6209. #endif
  6210. void default_save_file(char *filename)
  6211. {
  6212. #if defined(unix) || defined(__APPLE__)
  6213. if (getenv("HOME") && *getenv("HOME")) {
  6214. strcpy(filename, getenv("HOME"));
  6215. strcat(filename, "/");
  6216. }
  6217. else
  6218. strcpy(filename, "");
  6219. strcat(filename, ".bfgminer/");
  6220. mkdir(filename, 0777);
  6221. #else
  6222. strcpy(filename, "");
  6223. #endif
  6224. strcat(filename, def_conf);
  6225. }
  6226. #ifdef HAVE_CURSES
  6227. static void set_options(void)
  6228. {
  6229. int selected;
  6230. char input;
  6231. immedok(logwin, true);
  6232. loginput_mode(8);
  6233. retry:
  6234. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6235. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6236. "[W]rite config file\n[B]FGMiner restart\n",
  6237. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6238. wlogprint("Select an option or any other key to return\n");
  6239. logwin_update();
  6240. input = getch();
  6241. if (!strncasecmp(&input, "q", 1)) {
  6242. selected = curses_int("Extra work items to queue");
  6243. if (selected < 0 || selected > 9999) {
  6244. wlogprint("Invalid selection\n");
  6245. goto retry;
  6246. }
  6247. opt_queue = selected;
  6248. goto retry;
  6249. } else if (!strncasecmp(&input, "l", 1)) {
  6250. if (want_longpoll)
  6251. stop_longpoll();
  6252. else
  6253. start_longpoll();
  6254. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6255. goto retry;
  6256. } else if (!strncasecmp(&input, "s", 1)) {
  6257. selected = curses_int("Set scantime in seconds");
  6258. if (selected < 0 || selected > 9999) {
  6259. wlogprint("Invalid selection\n");
  6260. goto retry;
  6261. }
  6262. opt_scantime = selected;
  6263. goto retry;
  6264. } else if (!strncasecmp(&input, "e", 1)) {
  6265. selected = curses_int("Set expiry time in seconds");
  6266. if (selected < 0 || selected > 9999) {
  6267. wlogprint("Invalid selection\n");
  6268. goto retry;
  6269. }
  6270. opt_expiry = selected;
  6271. goto retry;
  6272. } else if (!strncasecmp(&input, "r", 1)) {
  6273. selected = curses_int("Retries before failing (-1 infinite)");
  6274. if (selected < -1 || selected > 9999) {
  6275. wlogprint("Invalid selection\n");
  6276. goto retry;
  6277. }
  6278. opt_retries = selected;
  6279. goto retry;
  6280. } else if (!strncasecmp(&input, "w", 1)) {
  6281. FILE *fcfg;
  6282. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6283. default_save_file(filename);
  6284. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6285. str = curses_input(prompt);
  6286. if (str) {
  6287. struct stat statbuf;
  6288. strcpy(filename, str);
  6289. free(str);
  6290. if (!stat(filename, &statbuf)) {
  6291. wlogprint("File exists, overwrite?\n");
  6292. input = getch();
  6293. if (strncasecmp(&input, "y", 1))
  6294. goto retry;
  6295. }
  6296. }
  6297. fcfg = fopen(filename, "w");
  6298. if (!fcfg) {
  6299. wlogprint("Cannot open or create file\n");
  6300. goto retry;
  6301. }
  6302. write_config(fcfg);
  6303. fclose(fcfg);
  6304. goto retry;
  6305. } else if (!strncasecmp(&input, "b", 1)) {
  6306. wlogprint("Are you sure?\n");
  6307. input = getch();
  6308. if (!strncasecmp(&input, "y", 1))
  6309. app_restart();
  6310. else
  6311. clear_logwin();
  6312. } else
  6313. clear_logwin();
  6314. loginput_mode(0);
  6315. immedok(logwin, false);
  6316. }
  6317. int scan_serial(const char *);
  6318. static
  6319. void _managetui_msg(const char *repr, const char **msg)
  6320. {
  6321. if (*msg)
  6322. {
  6323. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6324. wattron(logwin, A_BOLD);
  6325. wlogprint("%s", *msg);
  6326. wattroff(logwin, A_BOLD);
  6327. *msg = NULL;
  6328. }
  6329. logwin_update();
  6330. }
  6331. void manage_device(void)
  6332. {
  6333. char logline[256];
  6334. const char *msg = NULL;
  6335. struct cgpu_info *cgpu;
  6336. const struct device_drv *drv;
  6337. selecting_device = true;
  6338. immedok(logwin, true);
  6339. loginput_mode(12);
  6340. devchange:
  6341. if (unlikely(!total_devices))
  6342. {
  6343. clear_logwin();
  6344. wlogprint("(no devices)\n");
  6345. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6346. _managetui_msg("(none)", &msg);
  6347. int input = getch();
  6348. switch (input)
  6349. {
  6350. case '+': case '=': // add new device
  6351. goto addnew;
  6352. default:
  6353. goto out;
  6354. }
  6355. }
  6356. cgpu = devices[selected_device];
  6357. drv = cgpu->drv;
  6358. refresh_devstatus();
  6359. refresh:
  6360. clear_logwin();
  6361. wlogprint("Select processor to manage using up/down arrow keys\n");
  6362. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6363. wattron(logwin, A_BOLD);
  6364. wlogprint("%s", logline);
  6365. wattroff(logwin, A_BOLD);
  6366. wlogprint("\n");
  6367. if (cgpu->dev_manufacturer)
  6368. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6369. else
  6370. if (cgpu->dev_product)
  6371. wlogprint(" %s\n", cgpu->dev_product);
  6372. if (cgpu->dev_serial)
  6373. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6374. if (cgpu->kname)
  6375. wlogprint("Kernel: %s\n", cgpu->kname);
  6376. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6377. drv->proc_wlogprint_status(cgpu);
  6378. wlogprint("\n");
  6379. // TODO: Last share at TIMESTAMP on pool N
  6380. // TODO: Custom device info/commands
  6381. if (cgpu->deven != DEV_ENABLED)
  6382. wlogprint("[E]nable ");
  6383. if (cgpu->deven != DEV_DISABLED)
  6384. wlogprint("[D]isable ");
  6385. if (drv->identify_device)
  6386. wlogprint("[I]dentify ");
  6387. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6388. drv->proc_tui_wlogprint_choices(cgpu);
  6389. wlogprint("\n");
  6390. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6391. _managetui_msg(cgpu->proc_repr, &msg);
  6392. while (true)
  6393. {
  6394. int input = getch();
  6395. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6396. switch (input) {
  6397. case 'd': case 'D':
  6398. if (cgpu->deven == DEV_DISABLED)
  6399. msg = "Processor already disabled\n";
  6400. else
  6401. {
  6402. cgpu->deven = DEV_DISABLED;
  6403. msg = "Processor being disabled\n";
  6404. }
  6405. goto refresh;
  6406. case 'e': case 'E':
  6407. if (cgpu->deven == DEV_ENABLED)
  6408. msg = "Processor already enabled\n";
  6409. else
  6410. {
  6411. proc_enable(cgpu);
  6412. msg = "Processor being enabled\n";
  6413. }
  6414. goto refresh;
  6415. case 'i': case 'I':
  6416. if (drv->identify_device && drv->identify_device(cgpu))
  6417. msg = "Identify command sent\n";
  6418. else
  6419. goto key_default;
  6420. goto refresh;
  6421. case KEY_DOWN:
  6422. if (selected_device >= total_devices - 1)
  6423. break;
  6424. ++selected_device;
  6425. goto devchange;
  6426. case KEY_UP:
  6427. if (selected_device <= 0)
  6428. break;
  6429. --selected_device;
  6430. goto devchange;
  6431. case KEY_NPAGE:
  6432. {
  6433. if (selected_device >= total_devices - 1)
  6434. break;
  6435. struct cgpu_info *mdev = devices[selected_device]->device;
  6436. do {
  6437. ++selected_device;
  6438. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6439. goto devchange;
  6440. }
  6441. case KEY_PPAGE:
  6442. {
  6443. if (selected_device <= 0)
  6444. break;
  6445. struct cgpu_info *mdev = devices[selected_device]->device;
  6446. do {
  6447. --selected_device;
  6448. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6449. goto devchange;
  6450. }
  6451. case '/': case '?': // find device
  6452. {
  6453. static char *pattern = NULL;
  6454. char *newpattern = curses_input("Enter pattern");
  6455. if (newpattern)
  6456. {
  6457. free(pattern);
  6458. pattern = newpattern;
  6459. }
  6460. else
  6461. if (!pattern)
  6462. pattern = calloc(1, 1);
  6463. int match = cgpu_search(pattern, selected_device + 1);
  6464. if (match == -1)
  6465. {
  6466. msg = "Couldn't find device\n";
  6467. goto refresh;
  6468. }
  6469. selected_device = match;
  6470. goto devchange;
  6471. }
  6472. case '+': case '=': // add new device
  6473. {
  6474. addnew:
  6475. clear_logwin();
  6476. _wlogprint(
  6477. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6478. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6479. "For example: erupter:"
  6480. #ifdef WIN32
  6481. "\\\\.\\COM40"
  6482. #elif defined(__APPLE__)
  6483. "/dev/cu.SLAB_USBtoUART"
  6484. #else
  6485. "/dev/ttyUSB39"
  6486. #endif
  6487. "\n"
  6488. );
  6489. char *scanser = curses_input("Enter target");
  6490. if (scan_serial(scanser))
  6491. {
  6492. selected_device = total_devices - 1;
  6493. msg = "Device scan succeeded\n";
  6494. }
  6495. else
  6496. msg = "No new devices found\n";
  6497. goto devchange;
  6498. }
  6499. case 'Q': case 'q':
  6500. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6501. case '\x1b': // ESC
  6502. case KEY_ENTER:
  6503. case '\r': // Ctrl-M on Windows, with nonl
  6504. #ifdef PADENTER
  6505. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6506. #endif
  6507. case '\n':
  6508. goto out;
  6509. default:
  6510. ;
  6511. key_default:
  6512. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6513. {
  6514. msg = drv->proc_tui_handle_choice(cgpu, input);
  6515. if (msg)
  6516. goto refresh;
  6517. }
  6518. }
  6519. }
  6520. out:
  6521. selecting_device = false;
  6522. loginput_mode(0);
  6523. immedok(logwin, false);
  6524. }
  6525. void show_help(void)
  6526. {
  6527. loginput_mode(10);
  6528. // NOTE: wlogprint is a macro with a buffer limit
  6529. _wlogprint(
  6530. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6531. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6532. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6533. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6534. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6535. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6536. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6537. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6538. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6539. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6540. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6541. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6542. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6543. "\n"
  6544. "devices/processors hashing (only for totals line), hottest temperature\n"
  6545. );
  6546. wlogprint(
  6547. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6548. , opt_log_interval);
  6549. _wlogprint(
  6550. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6551. "HW: hardware errors / % nonces invalid\n"
  6552. "\n"
  6553. "Press any key to clear"
  6554. );
  6555. logwin_update();
  6556. getch();
  6557. loginput_mode(0);
  6558. }
  6559. static void *input_thread(void __maybe_unused *userdata)
  6560. {
  6561. RenameThread("input");
  6562. if (!curses_active)
  6563. return NULL;
  6564. while (1) {
  6565. int input;
  6566. input = getch();
  6567. switch (input) {
  6568. case 'h': case 'H': case '?':
  6569. case KEY_F(1):
  6570. show_help();
  6571. break;
  6572. case 'q': case 'Q':
  6573. kill_work();
  6574. return NULL;
  6575. case 'd': case 'D':
  6576. display_options();
  6577. break;
  6578. case 'm': case 'M':
  6579. manage_device();
  6580. break;
  6581. case 'p': case 'P':
  6582. display_pools();
  6583. break;
  6584. case 's': case 'S':
  6585. set_options();
  6586. break;
  6587. #ifdef HAVE_CURSES
  6588. case KEY_DOWN:
  6589. {
  6590. const int visible_lines = logcursor - devcursor;
  6591. const int invisible_lines = total_lines - visible_lines;
  6592. if (devsummaryYOffset <= -invisible_lines)
  6593. break;
  6594. devsummaryYOffset -= 2;
  6595. }
  6596. case KEY_UP:
  6597. if (devsummaryYOffset == 0)
  6598. break;
  6599. ++devsummaryYOffset;
  6600. refresh_devstatus();
  6601. break;
  6602. case KEY_NPAGE:
  6603. {
  6604. const int visible_lines = logcursor - devcursor;
  6605. const int invisible_lines = total_lines - visible_lines;
  6606. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6607. devsummaryYOffset = -invisible_lines;
  6608. else
  6609. devsummaryYOffset -= visible_lines;
  6610. refresh_devstatus();
  6611. break;
  6612. }
  6613. case KEY_PPAGE:
  6614. {
  6615. const int visible_lines = logcursor - devcursor;
  6616. if (devsummaryYOffset + visible_lines >= 0)
  6617. devsummaryYOffset = 0;
  6618. else
  6619. devsummaryYOffset += visible_lines;
  6620. refresh_devstatus();
  6621. break;
  6622. }
  6623. #endif
  6624. }
  6625. if (opt_realquiet) {
  6626. disable_curses();
  6627. break;
  6628. }
  6629. }
  6630. return NULL;
  6631. }
  6632. #endif
  6633. static void *api_thread(void *userdata)
  6634. {
  6635. struct thr_info *mythr = userdata;
  6636. pthread_detach(pthread_self());
  6637. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6638. RenameThread("rpc");
  6639. api(api_thr_id);
  6640. mythr->has_pth = false;
  6641. return NULL;
  6642. }
  6643. void thread_reportin(struct thr_info *thr)
  6644. {
  6645. cgtime(&thr->last);
  6646. thr->cgpu->status = LIFE_WELL;
  6647. thr->getwork = 0;
  6648. thr->cgpu->device_last_well = time(NULL);
  6649. }
  6650. void thread_reportout(struct thr_info *thr)
  6651. {
  6652. thr->getwork = time(NULL);
  6653. }
  6654. static void hashmeter(int thr_id, struct timeval *diff,
  6655. uint64_t hashes_done)
  6656. {
  6657. char logstatusline[256];
  6658. struct timeval temp_tv_end, total_diff;
  6659. double secs;
  6660. double local_secs;
  6661. static double local_mhashes_done = 0;
  6662. double local_mhashes = (double)hashes_done / 1000000.0;
  6663. bool showlog = false;
  6664. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6665. char rejpcbuf[6];
  6666. char bnbuf[6];
  6667. struct thr_info *thr;
  6668. /* Update the last time this thread reported in */
  6669. if (thr_id >= 0) {
  6670. thr = get_thread(thr_id);
  6671. cgtime(&(thr->last));
  6672. thr->cgpu->device_last_well = time(NULL);
  6673. }
  6674. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6675. /* So we can call hashmeter from a non worker thread */
  6676. if (thr_id >= 0) {
  6677. struct cgpu_info *cgpu = thr->cgpu;
  6678. int threadobj = cgpu->threads ?: 1;
  6679. double thread_rolling = 0.0;
  6680. int i;
  6681. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6682. thr_id, hashes_done, hashes_done / 1000 / secs);
  6683. /* Rolling average for each thread and each device */
  6684. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6685. for (i = 0; i < threadobj; i++)
  6686. thread_rolling += cgpu->thr[i]->rolling;
  6687. mutex_lock(&hash_lock);
  6688. decay_time(&cgpu->rolling, thread_rolling, secs);
  6689. cgpu->total_mhashes += local_mhashes;
  6690. mutex_unlock(&hash_lock);
  6691. // If needed, output detailed, per-device stats
  6692. if (want_per_device_stats) {
  6693. struct timeval now;
  6694. struct timeval elapsed;
  6695. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6696. cgtime(&now);
  6697. timersub(&now, last_msg_tv, &elapsed);
  6698. if (opt_log_interval <= elapsed.tv_sec) {
  6699. struct cgpu_info *cgpu = thr->cgpu;
  6700. char logline[255];
  6701. *last_msg_tv = now;
  6702. get_statline(logline, sizeof(logline), cgpu);
  6703. if (!curses_active) {
  6704. printf("%s \r", logline);
  6705. fflush(stdout);
  6706. } else
  6707. applog(LOG_INFO, "%s", logline);
  6708. }
  6709. }
  6710. }
  6711. /* Totals are updated by all threads so can race without locking */
  6712. mutex_lock(&hash_lock);
  6713. cgtime(&temp_tv_end);
  6714. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6715. total_mhashes_done += local_mhashes;
  6716. local_mhashes_done += local_mhashes;
  6717. /* Only update with opt_log_interval */
  6718. if (total_diff.tv_sec < opt_log_interval)
  6719. goto out_unlock;
  6720. showlog = true;
  6721. cgtime(&total_tv_end);
  6722. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6723. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6724. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6725. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6726. total_secs = (double)total_diff.tv_sec +
  6727. ((double)total_diff.tv_usec / 1000000.0);
  6728. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6729. multi_format_unit_array2(
  6730. ((char*[]){cHr, aHr, uHr}),
  6731. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6732. true, "h/s", H2B_SHORT,
  6733. 3,
  6734. 1e6*total_rolling,
  6735. 1e6*total_mhashes_done / total_secs,
  6736. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6737. int ui_accepted, ui_rejected, ui_stale;
  6738. if (opt_weighed_stats)
  6739. {
  6740. ui_accepted = total_diff_accepted;
  6741. ui_rejected = total_diff_rejected;
  6742. ui_stale = total_diff_stale;
  6743. }
  6744. else
  6745. {
  6746. ui_accepted = total_accepted;
  6747. ui_rejected = total_rejected;
  6748. ui_stale = total_stale;
  6749. }
  6750. #ifdef HAVE_CURSES
  6751. if (curses_active_locked()) {
  6752. float temp = 0;
  6753. struct cgpu_info *proc, *last_working_dev = NULL;
  6754. int i, working_devs = 0, working_procs = 0;
  6755. int divx;
  6756. bool bad = false;
  6757. // Find the highest temperature of all processors
  6758. for (i = 0; i < total_devices; ++i)
  6759. {
  6760. proc = get_devices(i);
  6761. if (proc->temp > temp)
  6762. temp = proc->temp;
  6763. if (unlikely(proc->deven == DEV_DISABLED))
  6764. ; // Just need to block it off from both conditions
  6765. else
  6766. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6767. {
  6768. if (proc->rolling > .1)
  6769. {
  6770. ++working_procs;
  6771. if (proc->device != last_working_dev)
  6772. {
  6773. ++working_devs;
  6774. last_working_dev = proc->device;
  6775. }
  6776. }
  6777. }
  6778. else
  6779. bad = true;
  6780. }
  6781. if (working_devs == working_procs)
  6782. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6783. else
  6784. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6785. divx = 7;
  6786. if (opt_show_procs && !opt_compact)
  6787. ++divx;
  6788. if (bad)
  6789. {
  6790. divx += sizeof(U8_BAD_START)-1;
  6791. strcpy(&statusline[divx], U8_BAD_END);
  6792. divx += sizeof(U8_BAD_END)-1;
  6793. }
  6794. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6795. format_statline(statusline, sizeof(statusline),
  6796. cHr, aHr,
  6797. uHr,
  6798. ui_accepted,
  6799. ui_rejected,
  6800. ui_stale,
  6801. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6802. hw_errors,
  6803. total_bad_diff1, total_bad_diff1 + total_diff1);
  6804. unlock_curses();
  6805. }
  6806. #endif
  6807. // Add a space
  6808. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6809. uHr[5] = ' ';
  6810. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6811. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6812. snprintf(logstatusline, sizeof(logstatusline),
  6813. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6814. want_per_device_stats ? "ALL " : "",
  6815. opt_log_interval,
  6816. cHr, aHr,
  6817. uHr,
  6818. ui_accepted,
  6819. ui_rejected,
  6820. ui_stale,
  6821. rejpcbuf,
  6822. hw_errors,
  6823. bnbuf
  6824. );
  6825. local_mhashes_done = 0;
  6826. out_unlock:
  6827. mutex_unlock(&hash_lock);
  6828. if (showlog) {
  6829. if (!curses_active) {
  6830. printf("%s \r", logstatusline);
  6831. fflush(stdout);
  6832. } else
  6833. applog(LOG_INFO, "%s", logstatusline);
  6834. }
  6835. }
  6836. void hashmeter2(struct thr_info *thr)
  6837. {
  6838. struct timeval tv_now, tv_elapsed;
  6839. timerclear(&thr->tv_hashes_done);
  6840. cgtime(&tv_now);
  6841. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6842. /* Update the hashmeter at most 5 times per second */
  6843. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6844. tv_elapsed.tv_sec >= opt_log_interval) {
  6845. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6846. thr->hashes_done = 0;
  6847. thr->tv_lastupdate = tv_now;
  6848. }
  6849. }
  6850. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6851. struct stratum_share *sshare)
  6852. {
  6853. struct work *work = sshare->work;
  6854. share_result(val, res_val, err_val, work, false, "");
  6855. }
  6856. /* Parses stratum json responses and tries to find the id that the request
  6857. * matched to and treat it accordingly. */
  6858. bool parse_stratum_response(struct pool *pool, char *s)
  6859. {
  6860. json_t *val = NULL, *err_val, *res_val, *id_val;
  6861. struct stratum_share *sshare;
  6862. json_error_t err;
  6863. bool ret = false;
  6864. int id;
  6865. val = JSON_LOADS(s, &err);
  6866. if (!val) {
  6867. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6868. goto out;
  6869. }
  6870. res_val = json_object_get(val, "result");
  6871. err_val = json_object_get(val, "error");
  6872. id_val = json_object_get(val, "id");
  6873. if (json_is_null(id_val) || !id_val) {
  6874. char *ss;
  6875. if (err_val)
  6876. ss = json_dumps(err_val, JSON_INDENT(3));
  6877. else
  6878. ss = strdup("(unknown reason)");
  6879. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6880. free(ss);
  6881. goto out;
  6882. }
  6883. if (!json_is_integer(id_val)) {
  6884. if (json_is_string(id_val)
  6885. && !strncmp(json_string_value(id_val), "txlist", 6))
  6886. {
  6887. const bool is_array = json_is_array(res_val);
  6888. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6889. is_array ? "transaction list" : "no-transaction-list response",
  6890. pool->pool_no, &json_string_value(id_val)[6]);
  6891. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6892. // We only care about a transaction list for the current job id
  6893. goto fishy;
  6894. // Check that the transactions actually hash to the merkle links
  6895. {
  6896. unsigned maxtx = 1 << pool->swork.merkles;
  6897. unsigned mintx = maxtx >> 1;
  6898. --maxtx;
  6899. unsigned acttx = (unsigned)json_array_size(res_val);
  6900. if (acttx < mintx || acttx > maxtx) {
  6901. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6902. pool->pool_no, acttx, mintx, maxtx);
  6903. goto fishy;
  6904. }
  6905. // TODO: Check hashes match actual merkle links
  6906. }
  6907. pool_set_opaque(pool, false);
  6908. timer_unset(&pool->swork.tv_transparency);
  6909. fishy:
  6910. ret = true;
  6911. }
  6912. goto out;
  6913. }
  6914. id = json_integer_value(id_val);
  6915. mutex_lock(&sshare_lock);
  6916. HASH_FIND_INT(stratum_shares, &id, sshare);
  6917. if (sshare)
  6918. HASH_DEL(stratum_shares, sshare);
  6919. mutex_unlock(&sshare_lock);
  6920. if (!sshare) {
  6921. double pool_diff;
  6922. /* Since the share is untracked, we can only guess at what the
  6923. * work difficulty is based on the current pool diff. */
  6924. cg_rlock(&pool->data_lock);
  6925. pool_diff = pool->swork.diff;
  6926. cg_runlock(&pool->data_lock);
  6927. if (json_is_true(res_val)) {
  6928. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  6929. /* We don't know what device this came from so we can't
  6930. * attribute the work to the relevant cgpu */
  6931. mutex_lock(&stats_lock);
  6932. total_accepted++;
  6933. pool->accepted++;
  6934. total_diff_accepted += pool_diff;
  6935. pool->diff_accepted += pool_diff;
  6936. mutex_unlock(&stats_lock);
  6937. } else {
  6938. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  6939. mutex_lock(&stats_lock);
  6940. total_rejected++;
  6941. pool->rejected++;
  6942. total_diff_rejected += pool_diff;
  6943. pool->diff_rejected += pool_diff;
  6944. mutex_unlock(&stats_lock);
  6945. }
  6946. goto out;
  6947. }
  6948. else {
  6949. mutex_lock(&submitting_lock);
  6950. --total_submitting;
  6951. mutex_unlock(&submitting_lock);
  6952. }
  6953. stratum_share_result(val, res_val, err_val, sshare);
  6954. free_work(sshare->work);
  6955. free(sshare);
  6956. ret = true;
  6957. out:
  6958. if (val)
  6959. json_decref(val);
  6960. return ret;
  6961. }
  6962. static void shutdown_stratum(struct pool *pool)
  6963. {
  6964. // Shut down Stratum as if we never had it
  6965. pool->stratum_active = false;
  6966. pool->stratum_init = false;
  6967. pool->has_stratum = false;
  6968. shutdown(pool->sock, SHUT_RDWR);
  6969. free(pool->stratum_url);
  6970. if (pool->sockaddr_url == pool->stratum_url)
  6971. pool->sockaddr_url = NULL;
  6972. pool->stratum_url = NULL;
  6973. }
  6974. void clear_stratum_shares(struct pool *pool)
  6975. {
  6976. int my_mining_threads = mining_threads; // Cached outside of locking
  6977. struct stratum_share *sshare, *tmpshare;
  6978. struct work *work;
  6979. struct cgpu_info *cgpu;
  6980. double diff_cleared = 0;
  6981. double thr_diff_cleared[my_mining_threads];
  6982. int cleared = 0;
  6983. int thr_cleared[my_mining_threads];
  6984. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  6985. for (int i = 0; i < my_mining_threads; ++i)
  6986. {
  6987. thr_diff_cleared[i] = 0;
  6988. thr_cleared[i] = 0;
  6989. }
  6990. mutex_lock(&sshare_lock);
  6991. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  6992. work = sshare->work;
  6993. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  6994. HASH_DEL(stratum_shares, sshare);
  6995. sharelog("disconnect", work);
  6996. diff_cleared += sshare->work->work_difficulty;
  6997. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  6998. ++thr_cleared[work->thr_id];
  6999. free_work(sshare->work);
  7000. free(sshare);
  7001. cleared++;
  7002. }
  7003. }
  7004. mutex_unlock(&sshare_lock);
  7005. if (cleared) {
  7006. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7007. mutex_lock(&stats_lock);
  7008. pool->stale_shares += cleared;
  7009. total_stale += cleared;
  7010. pool->diff_stale += diff_cleared;
  7011. total_diff_stale += diff_cleared;
  7012. for (int i = 0; i < my_mining_threads; ++i)
  7013. if (thr_cleared[i])
  7014. {
  7015. cgpu = get_thr_cgpu(i);
  7016. cgpu->diff_stale += thr_diff_cleared[i];
  7017. cgpu->stale += thr_cleared[i];
  7018. }
  7019. mutex_unlock(&stats_lock);
  7020. mutex_lock(&submitting_lock);
  7021. total_submitting -= cleared;
  7022. mutex_unlock(&submitting_lock);
  7023. }
  7024. }
  7025. static void resubmit_stratum_shares(struct pool *pool)
  7026. {
  7027. struct stratum_share *sshare, *tmpshare;
  7028. struct work *work;
  7029. unsigned resubmitted = 0;
  7030. mutex_lock(&sshare_lock);
  7031. mutex_lock(&submitting_lock);
  7032. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7033. if (sshare->work->pool != pool)
  7034. continue;
  7035. HASH_DEL(stratum_shares, sshare);
  7036. work = sshare->work;
  7037. DL_APPEND(submit_waiting, work);
  7038. free(sshare);
  7039. ++resubmitted;
  7040. }
  7041. mutex_unlock(&submitting_lock);
  7042. mutex_unlock(&sshare_lock);
  7043. if (resubmitted) {
  7044. notifier_wake(submit_waiting_notifier);
  7045. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7046. }
  7047. }
  7048. static void clear_pool_work(struct pool *pool)
  7049. {
  7050. struct work *work, *tmp;
  7051. int cleared = 0;
  7052. mutex_lock(stgd_lock);
  7053. HASH_ITER(hh, staged_work, work, tmp) {
  7054. if (work->pool == pool) {
  7055. HASH_DEL(staged_work, work);
  7056. free_work(work);
  7057. cleared++;
  7058. staged_full = false;
  7059. }
  7060. }
  7061. mutex_unlock(stgd_lock);
  7062. }
  7063. static int cp_prio(void)
  7064. {
  7065. int prio;
  7066. cg_rlock(&control_lock);
  7067. prio = currentpool->prio;
  7068. cg_runlock(&control_lock);
  7069. return prio;
  7070. }
  7071. /* We only need to maintain a secondary pool connection when we need the
  7072. * capacity to get work from the backup pools while still on the primary */
  7073. static bool cnx_needed(struct pool *pool)
  7074. {
  7075. struct pool *cp;
  7076. if (pool->enabled != POOL_ENABLED)
  7077. return false;
  7078. /* Balance strategies need all pools online */
  7079. if (pool_strategy == POOL_BALANCE)
  7080. return true;
  7081. if (pool_strategy == POOL_LOADBALANCE)
  7082. return true;
  7083. /* Idle stratum pool needs something to kick it alive again */
  7084. if (pool->has_stratum && pool->idle)
  7085. return true;
  7086. /* Getwork pools without opt_fail_only need backup pools up to be able
  7087. * to leak shares */
  7088. cp = current_pool();
  7089. if (cp == pool)
  7090. return true;
  7091. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7092. return true;
  7093. /* Keep the connection open to allow any stray shares to be submitted
  7094. * on switching pools for 2 minutes. */
  7095. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7096. return true;
  7097. /* If the pool has only just come to life and is higher priority than
  7098. * the current pool keep the connection open so we can fail back to
  7099. * it. */
  7100. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7101. return true;
  7102. if (pool_unworkable(cp))
  7103. return true;
  7104. /* We've run out of work, bring anything back to life. */
  7105. if (no_work)
  7106. return true;
  7107. return false;
  7108. }
  7109. static void wait_lpcurrent(struct pool *pool);
  7110. static void pool_resus(struct pool *pool);
  7111. static void gen_stratum_work(struct pool *pool, struct work *work);
  7112. static void stratum_resumed(struct pool *pool)
  7113. {
  7114. if (!pool->stratum_notify)
  7115. return;
  7116. if (pool_tclear(pool, &pool->idle)) {
  7117. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7118. pool_resus(pool);
  7119. }
  7120. }
  7121. static bool supports_resume(struct pool *pool)
  7122. {
  7123. bool ret;
  7124. cg_rlock(&pool->data_lock);
  7125. ret = (pool->sessionid != NULL);
  7126. cg_runlock(&pool->data_lock);
  7127. return ret;
  7128. }
  7129. /* One stratum thread per pool that has stratum waits on the socket checking
  7130. * for new messages and for the integrity of the socket connection. We reset
  7131. * the connection based on the integrity of the receive side only as the send
  7132. * side will eventually expire data it fails to send. */
  7133. static void *stratum_thread(void *userdata)
  7134. {
  7135. struct pool *pool = (struct pool *)userdata;
  7136. pthread_detach(pthread_self());
  7137. char threadname[20];
  7138. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7139. RenameThread(threadname);
  7140. srand(time(NULL) + (intptr_t)userdata);
  7141. while (42) {
  7142. struct timeval timeout;
  7143. int sel_ret;
  7144. fd_set rd;
  7145. char *s;
  7146. int sock;
  7147. if (unlikely(!pool->has_stratum))
  7148. break;
  7149. /* Check to see whether we need to maintain this connection
  7150. * indefinitely or just bring it up when we switch to this
  7151. * pool */
  7152. while (true)
  7153. {
  7154. sock = pool->sock;
  7155. if (sock == INVSOCK)
  7156. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7157. pool->pool_no);
  7158. else
  7159. if (!sock_full(pool) && !cnx_needed(pool))
  7160. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7161. pool->pool_no);
  7162. else
  7163. break;
  7164. suspend_stratum(pool);
  7165. clear_stratum_shares(pool);
  7166. clear_pool_work(pool);
  7167. wait_lpcurrent(pool);
  7168. if (!restart_stratum(pool)) {
  7169. pool_died(pool);
  7170. while (!restart_stratum(pool)) {
  7171. if (pool->removed)
  7172. goto out;
  7173. cgsleep_ms(30000);
  7174. }
  7175. }
  7176. }
  7177. FD_ZERO(&rd);
  7178. FD_SET(sock, &rd);
  7179. timeout.tv_sec = 120;
  7180. timeout.tv_usec = 0;
  7181. /* If we fail to receive any notify messages for 2 minutes we
  7182. * assume the connection has been dropped and treat this pool
  7183. * as dead */
  7184. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7185. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7186. s = NULL;
  7187. } else
  7188. s = recv_line(pool);
  7189. if (!s) {
  7190. if (!pool->has_stratum)
  7191. break;
  7192. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7193. pool->getfail_occasions++;
  7194. total_go++;
  7195. mutex_lock(&pool->stratum_lock);
  7196. pool->stratum_active = pool->stratum_notify = false;
  7197. pool->sock = INVSOCK;
  7198. mutex_unlock(&pool->stratum_lock);
  7199. /* If the socket to our stratum pool disconnects, all
  7200. * submissions need to be discarded or resent. */
  7201. if (!supports_resume(pool))
  7202. clear_stratum_shares(pool);
  7203. else
  7204. resubmit_stratum_shares(pool);
  7205. clear_pool_work(pool);
  7206. if (pool == current_pool())
  7207. restart_threads();
  7208. if (restart_stratum(pool))
  7209. continue;
  7210. shutdown_stratum(pool);
  7211. pool_died(pool);
  7212. break;
  7213. }
  7214. /* Check this pool hasn't died while being a backup pool and
  7215. * has not had its idle flag cleared */
  7216. stratum_resumed(pool);
  7217. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7218. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7219. free(s);
  7220. if (pool->swork.clean) {
  7221. struct work *work = make_work();
  7222. /* Generate a single work item to update the current
  7223. * block database */
  7224. pool->swork.clean = false;
  7225. gen_stratum_work(pool, work);
  7226. /* Try to extract block height from coinbase scriptSig */
  7227. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7228. unsigned char cb_height_sz;
  7229. cb_height_sz = bin_height[-1];
  7230. if (cb_height_sz == 3) {
  7231. // FIXME: The block number will overflow this by AD 2173
  7232. uint32_t block_id = ((uint32_t*)work->data)[1];
  7233. uint32_t height = 0;
  7234. memcpy(&height, bin_height, 3);
  7235. height = le32toh(height);
  7236. have_block_height(block_id, height);
  7237. }
  7238. ++pool->work_restart_id;
  7239. if (test_work_current(work)) {
  7240. /* Only accept a work update if this stratum
  7241. * connection is from the current pool */
  7242. if (pool == current_pool()) {
  7243. restart_threads();
  7244. applog(
  7245. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7246. "Stratum from pool %d requested work update", pool->pool_no);
  7247. }
  7248. } else
  7249. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7250. free_work(work);
  7251. }
  7252. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7253. // More than 4 timmills past since requested transactions
  7254. timer_unset(&pool->swork.tv_transparency);
  7255. pool_set_opaque(pool, true);
  7256. }
  7257. }
  7258. out:
  7259. return NULL;
  7260. }
  7261. static void init_stratum_thread(struct pool *pool)
  7262. {
  7263. have_longpoll = true;
  7264. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7265. quit(1, "Failed to create stratum thread");
  7266. }
  7267. static void *longpoll_thread(void *userdata);
  7268. static bool stratum_works(struct pool *pool)
  7269. {
  7270. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7271. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7272. return false;
  7273. if (pool->stratum_active)
  7274. return true;
  7275. if (!initiate_stratum(pool))
  7276. return false;
  7277. return true;
  7278. }
  7279. static bool pool_active(struct pool *pool, bool pinging)
  7280. {
  7281. struct timeval tv_getwork, tv_getwork_reply;
  7282. bool ret = false;
  7283. json_t *val;
  7284. CURL *curl;
  7285. int rolltime;
  7286. char *rpc_req;
  7287. struct work *work;
  7288. enum pool_protocol proto;
  7289. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7290. /* This is the central point we activate stratum when we can */
  7291. curl = curl_easy_init();
  7292. if (unlikely(!curl)) {
  7293. applog(LOG_ERR, "CURL initialisation failed");
  7294. return false;
  7295. }
  7296. if (!(want_gbt || want_getwork))
  7297. goto nohttp;
  7298. work = make_work();
  7299. /* Probe for GBT support on first pass */
  7300. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7301. tryagain:
  7302. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7303. work->pool = pool;
  7304. if (!rpc_req)
  7305. goto out;
  7306. pool->probed = false;
  7307. cgtime(&tv_getwork);
  7308. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7309. true, false, &rolltime, pool, false);
  7310. cgtime(&tv_getwork_reply);
  7311. free(rpc_req);
  7312. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7313. * and if so, switch to that in preference to getwork if it works */
  7314. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7315. if (!pool->has_stratum) {
  7316. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7317. if (!pool->rpc_url)
  7318. pool->rpc_url = strdup(pool->stratum_url);
  7319. pool->has_stratum = true;
  7320. }
  7321. free_work(work);
  7322. if (val)
  7323. json_decref(val);
  7324. retry_stratum:
  7325. curl_easy_cleanup(curl);
  7326. /* We create the stratum thread for each pool just after
  7327. * successful authorisation. Once the init flag has been set
  7328. * we never unset it and the stratum thread is responsible for
  7329. * setting/unsetting the active flag */
  7330. bool init = pool_tset(pool, &pool->stratum_init);
  7331. if (!init) {
  7332. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7333. if (ret)
  7334. {
  7335. detect_algo = 2;
  7336. init_stratum_thread(pool);
  7337. }
  7338. else
  7339. pool_tclear(pool, &pool->stratum_init);
  7340. return ret;
  7341. }
  7342. return pool->stratum_active;
  7343. }
  7344. else if (pool->has_stratum)
  7345. shutdown_stratum(pool);
  7346. if (val) {
  7347. bool rc;
  7348. json_t *res;
  7349. res = json_object_get(val, "result");
  7350. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7351. goto badwork;
  7352. work->rolltime = rolltime;
  7353. rc = work_decode(pool, work, val);
  7354. if (rc) {
  7355. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7356. pool->pool_no, pool->rpc_url);
  7357. work->pool = pool;
  7358. copy_time(&work->tv_getwork, &tv_getwork);
  7359. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7360. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7361. calc_diff(work, 0);
  7362. update_last_work(work);
  7363. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7364. stage_work(work);
  7365. total_getworks++;
  7366. pool->getwork_requested++;
  7367. ret = true;
  7368. cgtime(&pool->tv_idle);
  7369. } else {
  7370. badwork:
  7371. json_decref(val);
  7372. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7373. pool->pool_no, pool->rpc_url);
  7374. pool->proto = proto = pool_protocol_fallback(proto);
  7375. if (PLP_NONE != proto)
  7376. goto tryagain;
  7377. free_work(work);
  7378. goto out;
  7379. }
  7380. json_decref(val);
  7381. if (proto != pool->proto) {
  7382. pool->proto = proto;
  7383. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7384. }
  7385. if (pool->lp_url)
  7386. goto out;
  7387. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7388. const struct blktmpl_longpoll_req *lp;
  7389. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7390. // NOTE: work_decode takes care of lp id
  7391. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7392. if (!pool->lp_url)
  7393. {
  7394. ret = false;
  7395. goto out;
  7396. }
  7397. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7398. }
  7399. else
  7400. if (pool->hdr_path && want_getwork) {
  7401. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7402. if (!pool->lp_url)
  7403. {
  7404. ret = false;
  7405. goto out;
  7406. }
  7407. pool->lp_proto = PLP_GETWORK;
  7408. } else
  7409. pool->lp_url = NULL;
  7410. if (want_longpoll && !pool->lp_started) {
  7411. pool->lp_started = true;
  7412. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7413. quit(1, "Failed to create pool longpoll thread");
  7414. }
  7415. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7416. pool->proto = proto;
  7417. goto tryagain;
  7418. } else {
  7419. free_work(work);
  7420. nohttp:
  7421. /* If we failed to parse a getwork, this could be a stratum
  7422. * url without the prefix stratum+tcp:// so let's check it */
  7423. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7424. pool->has_stratum = true;
  7425. goto retry_stratum;
  7426. }
  7427. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7428. pool->pool_no, pool->rpc_url);
  7429. if (!pinging)
  7430. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7431. }
  7432. out:
  7433. curl_easy_cleanup(curl);
  7434. return ret;
  7435. }
  7436. static void pool_resus(struct pool *pool)
  7437. {
  7438. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7439. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7440. else
  7441. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7442. }
  7443. static struct work *hash_pop(void)
  7444. {
  7445. struct work *work = NULL, *tmp;
  7446. int hc;
  7447. struct timespec ts;
  7448. retry:
  7449. mutex_lock(stgd_lock);
  7450. while (!HASH_COUNT(staged_work))
  7451. {
  7452. if (unlikely(staged_full))
  7453. {
  7454. if (likely(opt_queue < 10 + mining_threads))
  7455. {
  7456. ++opt_queue;
  7457. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7458. }
  7459. else
  7460. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7461. staged_full = false; // Let it fill up before triggering an underrun again
  7462. no_work = true;
  7463. }
  7464. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7465. pthread_cond_signal(&gws_cond);
  7466. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7467. {
  7468. run_cmd(cmd_idle);
  7469. pthread_cond_signal(&gws_cond);
  7470. pthread_cond_wait(&getq->cond, stgd_lock);
  7471. }
  7472. }
  7473. no_work = false;
  7474. hc = HASH_COUNT(staged_work);
  7475. /* Find clone work if possible, to allow masters to be reused */
  7476. if (hc > staged_rollable) {
  7477. HASH_ITER(hh, staged_work, work, tmp) {
  7478. if (!work_rollable(work))
  7479. break;
  7480. }
  7481. } else
  7482. work = staged_work;
  7483. if (can_roll(work) && should_roll(work))
  7484. {
  7485. // Instead of consuming it, force it to be cloned and grab the clone
  7486. mutex_unlock(stgd_lock);
  7487. clone_available();
  7488. goto retry;
  7489. }
  7490. HASH_DEL(staged_work, work);
  7491. if (work_rollable(work))
  7492. staged_rollable--;
  7493. /* Signal the getwork scheduler to look for more work */
  7494. pthread_cond_signal(&gws_cond);
  7495. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7496. pthread_cond_signal(&getq->cond);
  7497. mutex_unlock(stgd_lock);
  7498. work->pool->last_work_time = time(NULL);
  7499. cgtime(&work->pool->tv_last_work_time);
  7500. return work;
  7501. }
  7502. /* Clones work by rolling it if possible, and returning a clone instead of the
  7503. * original work item which gets staged again to possibly be rolled again in
  7504. * the future */
  7505. static struct work *clone_work(struct work *work)
  7506. {
  7507. int mrs = mining_threads + opt_queue - total_staged();
  7508. struct work *work_clone;
  7509. bool cloned;
  7510. if (mrs < 1)
  7511. return work;
  7512. cloned = false;
  7513. work_clone = make_clone(work);
  7514. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7515. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7516. stage_work(work_clone);
  7517. roll_work(work);
  7518. work_clone = make_clone(work);
  7519. /* Roll it again to prevent duplicates should this be used
  7520. * directly later on */
  7521. roll_work(work);
  7522. cloned = true;
  7523. }
  7524. if (cloned) {
  7525. stage_work(work);
  7526. return work_clone;
  7527. }
  7528. free_work(work_clone);
  7529. return work;
  7530. }
  7531. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7532. {
  7533. unsigned char hash1[32];
  7534. sha256(data, len, hash1);
  7535. sha256(hash1, 32, hash);
  7536. }
  7537. /* Diff 1 is a 256 bit unsigned integer of
  7538. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7539. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7540. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7541. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7542. {
  7543. uint64_t *data64, h64;
  7544. double d64;
  7545. d64 = diffone;
  7546. d64 /= diff;
  7547. d64 = ceil(d64);
  7548. h64 = d64;
  7549. memset(target, 0, 32);
  7550. if (d64 < 18446744073709551616.0) {
  7551. unsigned char *rtarget = target;
  7552. memset(rtarget, 0, 32);
  7553. if (opt_scrypt)
  7554. data64 = (uint64_t *)(rtarget + 2);
  7555. else
  7556. data64 = (uint64_t *)(rtarget + 4);
  7557. *data64 = htobe64(h64);
  7558. } else {
  7559. /* Support for the classic all FFs just-below-1 diff */
  7560. if (opt_scrypt)
  7561. memset(&target[2], 0xff, 30);
  7562. else
  7563. memset(&target[4], 0xff, 28);
  7564. }
  7565. }
  7566. void set_target(unsigned char *dest_target, double diff)
  7567. {
  7568. unsigned char rtarget[32];
  7569. bdiff_target_leadzero(rtarget, diff);
  7570. swab256(dest_target, rtarget);
  7571. if (opt_debug) {
  7572. char htarget[65];
  7573. bin2hex(htarget, rtarget, 32);
  7574. applog(LOG_DEBUG, "Generated target %s", htarget);
  7575. }
  7576. }
  7577. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7578. {
  7579. *dst = *src;
  7580. dst->job_id = strdup(src->job_id);
  7581. bytes_cpy(&dst->coinbase, &src->coinbase);
  7582. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7583. }
  7584. void stratum_work_clean(struct stratum_work * const swork)
  7585. {
  7586. free(swork->job_id);
  7587. bytes_free(&swork->coinbase);
  7588. bytes_free(&swork->merkle_bin);
  7589. }
  7590. /* Generates stratum based work based on the most recent notify information
  7591. * from the pool. This will keep generating work while a pool is down so we use
  7592. * other means to detect when the pool has died in stratum_thread */
  7593. static void gen_stratum_work(struct pool *pool, struct work *work)
  7594. {
  7595. clean_work(work);
  7596. cg_wlock(&pool->data_lock);
  7597. pool->swork.data_lock_p = &pool->data_lock;
  7598. bytes_resize(&work->nonce2, pool->n2size);
  7599. if (pool->nonce2sz < pool->n2size)
  7600. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7601. memcpy(bytes_buf(&work->nonce2),
  7602. #ifdef WORDS_BIGENDIAN
  7603. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7604. &((char*)&pool->nonce2)[pool->nonce2off],
  7605. #else
  7606. &pool->nonce2,
  7607. #endif
  7608. pool->nonce2sz);
  7609. pool->nonce2++;
  7610. work->pool = pool;
  7611. work->work_restart_id = work->pool->work_restart_id;
  7612. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7613. cgtime(&work->tv_staged);
  7614. }
  7615. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7616. {
  7617. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7618. uint8_t *merkle_bin;
  7619. uint32_t *data32, *swap32;
  7620. int i;
  7621. /* Generate coinbase */
  7622. coinbase = bytes_buf(&swork->coinbase);
  7623. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7624. /* Downgrade to a read lock to read off the variables */
  7625. if (swork->data_lock_p)
  7626. cg_dwlock(swork->data_lock_p);
  7627. /* Generate merkle root */
  7628. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7629. memcpy(merkle_sha, merkle_root, 32);
  7630. merkle_bin = bytes_buf(&swork->merkle_bin);
  7631. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7632. memcpy(merkle_sha + 32, merkle_bin, 32);
  7633. gen_hash(merkle_sha, merkle_root, 64);
  7634. memcpy(merkle_sha, merkle_root, 32);
  7635. }
  7636. data32 = (uint32_t *)merkle_sha;
  7637. swap32 = (uint32_t *)merkle_root;
  7638. flip32(swap32, data32);
  7639. memcpy(&work->data[0], swork->header1, 36);
  7640. memcpy(&work->data[36], merkle_root, 32);
  7641. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7642. memcpy(&work->data[72], swork->diffbits, 4);
  7643. memset(&work->data[76], 0, 4); // nonce
  7644. memcpy(&work->data[80], workpadding_bin, 48);
  7645. /* Store the stratum work diff to check it still matches the pool's
  7646. * stratum diff when submitting shares */
  7647. work->sdiff = swork->diff;
  7648. /* Copy parameters required for share submission */
  7649. work->job_id = strdup(swork->job_id);
  7650. work->nonce1 = strdup(nonce1);
  7651. if (swork->data_lock_p)
  7652. cg_runlock(swork->data_lock_p);
  7653. if (opt_debug)
  7654. {
  7655. char header[161];
  7656. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7657. bin2hex(header, work->data, 80);
  7658. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7659. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7660. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7661. }
  7662. calc_midstate(work);
  7663. set_target(work->target, work->sdiff);
  7664. local_work++;
  7665. work->stratum = true;
  7666. work->blk.nonce = 0;
  7667. work->id = total_work++;
  7668. work->longpoll = false;
  7669. work->getwork_mode = GETWORK_MODE_STRATUM;
  7670. /* Nominally allow a driver to ntime roll 60 seconds */
  7671. work->drv_rolllimit = 60;
  7672. calc_diff(work, 0);
  7673. }
  7674. void request_work(struct thr_info *thr)
  7675. {
  7676. struct cgpu_info *cgpu = thr->cgpu;
  7677. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7678. /* Tell the watchdog thread this thread is waiting on getwork and
  7679. * should not be restarted */
  7680. thread_reportout(thr);
  7681. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7682. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7683. {
  7684. if (proc->threads)
  7685. break;
  7686. thread_reportout(proc->thr[0]);
  7687. }
  7688. cgtime(&dev_stats->_get_start);
  7689. }
  7690. // FIXME: Make this non-blocking (and remove HACK above)
  7691. struct work *get_work(struct thr_info *thr)
  7692. {
  7693. const int thr_id = thr->id;
  7694. struct cgpu_info *cgpu = thr->cgpu;
  7695. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7696. struct cgminer_stats *pool_stats;
  7697. struct timeval tv_get;
  7698. struct work *work = NULL;
  7699. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7700. while (!work) {
  7701. work = hash_pop();
  7702. if (stale_work(work, false)) {
  7703. staged_full = false; // It wasn't really full, since it was stale :(
  7704. discard_work(work);
  7705. work = NULL;
  7706. wake_gws();
  7707. }
  7708. }
  7709. last_getwork = time(NULL);
  7710. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7711. cgpu->proc_repr, work->id, thr_id);
  7712. work->thr_id = thr_id;
  7713. thread_reportin(thr);
  7714. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7715. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7716. {
  7717. if (proc->threads)
  7718. break;
  7719. thread_reportin(proc->thr[0]);
  7720. }
  7721. work->mined = true;
  7722. work->blk.nonce = 0;
  7723. cgtime(&tv_get);
  7724. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7725. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7726. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7727. dev_stats->getwork_wait_max = tv_get;
  7728. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7729. dev_stats->getwork_wait_min = tv_get;
  7730. ++dev_stats->getwork_calls;
  7731. pool_stats = &(work->pool->cgminer_stats);
  7732. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7733. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7734. pool_stats->getwork_wait_max = tv_get;
  7735. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7736. pool_stats->getwork_wait_min = tv_get;
  7737. ++pool_stats->getwork_calls;
  7738. if (work->work_difficulty < 1)
  7739. {
  7740. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7741. {
  7742. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7743. cgpu->proc_repr);
  7744. work->nonce_diff = cgpu->min_nonce_diff;
  7745. }
  7746. else
  7747. work->nonce_diff = work->work_difficulty;
  7748. }
  7749. else
  7750. work->nonce_diff = 1;
  7751. return work;
  7752. }
  7753. static
  7754. void _submit_work_async(struct work *work)
  7755. {
  7756. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7757. if (opt_benchmark)
  7758. {
  7759. json_t * const jn = json_null();
  7760. rebuild_hash(work);
  7761. share_result(jn, jn, jn, work, false, "");
  7762. free_work(work);
  7763. return;
  7764. }
  7765. mutex_lock(&submitting_lock);
  7766. ++total_submitting;
  7767. DL_APPEND(submit_waiting, work);
  7768. mutex_unlock(&submitting_lock);
  7769. notifier_wake(submit_waiting_notifier);
  7770. }
  7771. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7772. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7773. {
  7774. if (tv_work_found)
  7775. copy_time(&work->tv_work_found, tv_work_found);
  7776. _submit_work_async(work);
  7777. }
  7778. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7779. {
  7780. struct cgpu_info * const cgpu = thr->cgpu;
  7781. if (bad_nonce_p)
  7782. {
  7783. if (bad_nonce_p == UNKNOWN_NONCE)
  7784. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7785. cgpu->proc_repr);
  7786. else
  7787. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7788. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7789. }
  7790. mutex_lock(&stats_lock);
  7791. hw_errors++;
  7792. ++cgpu->hw_errors;
  7793. if (bad_nonce_p)
  7794. {
  7795. total_bad_diff1 += nonce_diff;
  7796. cgpu->bad_diff1 += nonce_diff;
  7797. }
  7798. mutex_unlock(&stats_lock);
  7799. if (thr->cgpu->drv->hw_error)
  7800. thr->cgpu->drv->hw_error(thr);
  7801. }
  7802. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7803. {
  7804. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7805. hash_data(work->hash, work->data);
  7806. if (hash2_32[7] != 0)
  7807. return TNR_BAD;
  7808. if (!checktarget)
  7809. return TNR_GOOD;
  7810. if (!hash_target_check_v(work->hash, work->target))
  7811. return TNR_HIGH;
  7812. return TNR_GOOD;
  7813. }
  7814. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7815. {
  7816. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7817. *work_nonce = htole32(nonce);
  7818. #ifdef USE_SCRYPT
  7819. if (opt_scrypt)
  7820. // NOTE: Depends on scrypt_test return matching enum values
  7821. return scrypt_test(work->data, work->target, nonce);
  7822. #endif
  7823. return hashtest2(work, checktarget);
  7824. }
  7825. /* Returns true if nonce for work was a valid share */
  7826. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7827. {
  7828. return submit_noffset_nonce(thr, work, nonce, 0);
  7829. }
  7830. /* Allows drivers to submit work items where the driver has changed the ntime
  7831. * value by noffset. Must be only used with a work protocol that does not ntime
  7832. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7833. * the original work struct, but the copy of it only. */
  7834. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7835. int noffset)
  7836. {
  7837. struct work *work = make_work();
  7838. _copy_work(work, work_in, noffset);
  7839. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7840. struct timeval tv_work_found;
  7841. enum test_nonce2_result res;
  7842. bool ret = true;
  7843. thread_reportout(thr);
  7844. cgtime(&tv_work_found);
  7845. *work_nonce = htole32(nonce);
  7846. work->thr_id = thr->id;
  7847. /* Do one last check before attempting to submit the work */
  7848. /* Side effect: sets work->data for us */
  7849. res = test_nonce2(work, nonce);
  7850. if (unlikely(res == TNR_BAD))
  7851. {
  7852. inc_hw_errors(thr, work, nonce);
  7853. ret = false;
  7854. goto out;
  7855. }
  7856. mutex_lock(&stats_lock);
  7857. total_diff1 += work->nonce_diff;
  7858. thr ->cgpu->diff1 += work->nonce_diff;
  7859. work->pool->diff1 += work->nonce_diff;
  7860. thr->cgpu->last_device_valid_work = time(NULL);
  7861. mutex_unlock(&stats_lock);
  7862. if (noncelog_file)
  7863. noncelog(work);
  7864. if (res == TNR_HIGH)
  7865. {
  7866. // Share above target, normal
  7867. /* Check the diff of the share, even if it didn't reach the
  7868. * target, just to set the best share value if it's higher. */
  7869. share_diff(work);
  7870. goto out;
  7871. }
  7872. submit_work_async2(work, &tv_work_found);
  7873. work = NULL; // Taken by submit_work_async2
  7874. out:
  7875. if (work)
  7876. free_work(work);
  7877. thread_reportin(thr);
  7878. return ret;
  7879. }
  7880. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7881. {
  7882. if (wdiff->tv_sec > opt_scantime ||
  7883. work->blk.nonce >= 0xfffffffe - hashes ||
  7884. hashes >= 0xfffffffe ||
  7885. stale_work(work, false))
  7886. return true;
  7887. return false;
  7888. }
  7889. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7890. {
  7891. struct cgpu_info *proc = thr->cgpu;
  7892. if (proc->threads > 1)
  7893. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7894. else
  7895. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7896. }
  7897. // Called by asynchronous minerloops, when they find their processor should be disabled
  7898. void mt_disable_start(struct thr_info *mythr)
  7899. {
  7900. struct cgpu_info *cgpu = mythr->cgpu;
  7901. struct device_drv *drv = cgpu->drv;
  7902. if (drv->thread_disable)
  7903. drv->thread_disable(mythr);
  7904. hashmeter2(mythr);
  7905. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7906. mythr->rolling = mythr->cgpu->rolling = 0;
  7907. thread_reportout(mythr);
  7908. mythr->_mt_disable_called = true;
  7909. }
  7910. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7911. * the driver tells us it's full so that it may extract the work item using
  7912. * the get_queued() function which adds it to the hashtable on
  7913. * cgpu->queued_work. */
  7914. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7915. {
  7916. thread_reportout(mythr);
  7917. do {
  7918. bool need_work;
  7919. /* Do this lockless just to know if we need more unqueued work. */
  7920. need_work = (!cgpu->unqueued_work);
  7921. /* get_work is a blocking function so do it outside of lock
  7922. * to prevent deadlocks with other locks. */
  7923. if (need_work) {
  7924. struct work *work = get_work(mythr);
  7925. wr_lock(&cgpu->qlock);
  7926. /* Check we haven't grabbed work somehow between
  7927. * checking and picking up the lock. */
  7928. if (likely(!cgpu->unqueued_work))
  7929. cgpu->unqueued_work = work;
  7930. else
  7931. need_work = false;
  7932. wr_unlock(&cgpu->qlock);
  7933. if (unlikely(!need_work))
  7934. discard_work(work);
  7935. }
  7936. /* The queue_full function should be used by the driver to
  7937. * actually place work items on the physical device if it
  7938. * does have a queue. */
  7939. } while (drv->queue_full && !drv->queue_full(cgpu));
  7940. }
  7941. /* Add a work item to a cgpu's queued hashlist */
  7942. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  7943. {
  7944. cgpu->queued_count++;
  7945. HASH_ADD_INT(cgpu->queued_work, id, work);
  7946. }
  7947. /* This function is for retrieving one work item from the unqueued pointer and
  7948. * adding it to the hashtable of queued work. Code using this function must be
  7949. * able to handle NULL as a return which implies there is no work available. */
  7950. struct work *get_queued(struct cgpu_info *cgpu)
  7951. {
  7952. struct work *work = NULL;
  7953. wr_lock(&cgpu->qlock);
  7954. if (cgpu->unqueued_work) {
  7955. work = cgpu->unqueued_work;
  7956. if (unlikely(stale_work(work, false))) {
  7957. discard_work(work);
  7958. work = NULL;
  7959. wake_gws();
  7960. goto out_unlock;
  7961. } else
  7962. __add_queued(cgpu, work);
  7963. cgpu->unqueued_work = NULL;
  7964. }
  7965. wr_unlock(&cgpu->qlock);
  7966. return work;
  7967. }
  7968. void add_queued(struct cgpu_info *cgpu, struct work *work)
  7969. {
  7970. wr_lock(&cgpu->qlock);
  7971. __add_queued(cgpu, work);
  7972. wr_unlock(&cgpu->qlock);
  7973. }
  7974. /* Get fresh work and add it to cgpu's queued hashlist */
  7975. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  7976. {
  7977. struct work *work = get_work(thr);
  7978. add_queued(cgpu, work);
  7979. return work;
  7980. }
  7981. /* This function is for finding an already queued work item in the
  7982. * given que hashtable. Code using this function must be able
  7983. * to handle NULL as a return which implies there is no matching work.
  7984. * The calling function must lock access to the que if it is required.
  7985. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7986. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7987. {
  7988. struct work *work, *tmp, *ret = NULL;
  7989. HASH_ITER(hh, que, work, tmp) {
  7990. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  7991. memcmp(work->data + offset, data, datalen) == 0) {
  7992. ret = work;
  7993. break;
  7994. }
  7995. }
  7996. return ret;
  7997. }
  7998. /* This function is for finding an already queued work item in the
  7999. * device's queued_work hashtable. Code using this function must be able
  8000. * to handle NULL as a return which implies there is no matching work.
  8001. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8002. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8003. {
  8004. struct work *ret;
  8005. rd_lock(&cgpu->qlock);
  8006. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8007. rd_unlock(&cgpu->qlock);
  8008. return ret;
  8009. }
  8010. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8011. {
  8012. struct work *work, *ret = NULL;
  8013. rd_lock(&cgpu->qlock);
  8014. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8015. if (work)
  8016. ret = copy_work(work);
  8017. rd_unlock(&cgpu->qlock);
  8018. return ret;
  8019. }
  8020. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8021. {
  8022. cgpu->queued_count--;
  8023. HASH_DEL(cgpu->queued_work, work);
  8024. }
  8025. /* This function should be used by queued device drivers when they're sure
  8026. * the work struct is no longer in use. */
  8027. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8028. {
  8029. wr_lock(&cgpu->qlock);
  8030. __work_completed(cgpu, work);
  8031. wr_unlock(&cgpu->qlock);
  8032. free_work(work);
  8033. }
  8034. /* Combines find_queued_work_bymidstate and work_completed in one function
  8035. * withOUT destroying the work so the driver must free it. */
  8036. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8037. {
  8038. struct work *work;
  8039. wr_lock(&cgpu->qlock);
  8040. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8041. if (work)
  8042. __work_completed(cgpu, work);
  8043. wr_unlock(&cgpu->qlock);
  8044. return work;
  8045. }
  8046. static void flush_queue(struct cgpu_info *cgpu)
  8047. {
  8048. struct work *work = NULL;
  8049. wr_lock(&cgpu->qlock);
  8050. work = cgpu->unqueued_work;
  8051. cgpu->unqueued_work = NULL;
  8052. wr_unlock(&cgpu->qlock);
  8053. if (work) {
  8054. free_work(work);
  8055. applog(LOG_DEBUG, "Discarded queued work item");
  8056. }
  8057. }
  8058. /* This version of hash work is for devices that are fast enough to always
  8059. * perform a full nonce range and need a queue to maintain the device busy.
  8060. * Work creation and destruction is not done from within this function
  8061. * directly. */
  8062. void hash_queued_work(struct thr_info *mythr)
  8063. {
  8064. const long cycle = opt_log_interval / 5 ? : 1;
  8065. struct timeval tv_start = {0, 0}, tv_end;
  8066. struct cgpu_info *cgpu = mythr->cgpu;
  8067. struct device_drv *drv = cgpu->drv;
  8068. const int thr_id = mythr->id;
  8069. int64_t hashes_done = 0;
  8070. if (unlikely(cgpu->deven != DEV_ENABLED))
  8071. mt_disable(mythr);
  8072. while (likely(!cgpu->shutdown)) {
  8073. struct timeval diff;
  8074. int64_t hashes;
  8075. fill_queue(mythr, cgpu, drv, thr_id);
  8076. thread_reportin(mythr);
  8077. hashes = drv->scanwork(mythr);
  8078. /* Reset the bool here in case the driver looks for it
  8079. * synchronously in the scanwork loop. */
  8080. mythr->work_restart = false;
  8081. if (unlikely(hashes == -1 )) {
  8082. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8083. cgpu->deven = DEV_DISABLED;
  8084. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8085. mt_disable(mythr);
  8086. }
  8087. hashes_done += hashes;
  8088. cgtime(&tv_end);
  8089. timersub(&tv_end, &tv_start, &diff);
  8090. if (diff.tv_sec >= cycle) {
  8091. hashmeter(thr_id, &diff, hashes_done);
  8092. hashes_done = 0;
  8093. copy_time(&tv_start, &tv_end);
  8094. }
  8095. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8096. mt_disable(mythr);
  8097. if (unlikely(mythr->work_restart)) {
  8098. flush_queue(cgpu);
  8099. if (drv->flush_work)
  8100. drv->flush_work(cgpu);
  8101. }
  8102. }
  8103. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8104. }
  8105. // Called by minerloop, when it is re-enabling a processor
  8106. void mt_disable_finish(struct thr_info *mythr)
  8107. {
  8108. struct device_drv *drv = mythr->cgpu->drv;
  8109. thread_reportin(mythr);
  8110. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8111. if (drv->thread_enable)
  8112. drv->thread_enable(mythr);
  8113. mythr->_mt_disable_called = false;
  8114. }
  8115. // Called by synchronous minerloops, when they find their processor should be disabled
  8116. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8117. void mt_disable(struct thr_info *mythr)
  8118. {
  8119. const struct cgpu_info * const cgpu = mythr->cgpu;
  8120. mt_disable_start(mythr);
  8121. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8122. do {
  8123. notifier_read(mythr->notifier);
  8124. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8125. mt_disable_finish(mythr);
  8126. }
  8127. enum {
  8128. STAT_SLEEP_INTERVAL = 1,
  8129. STAT_CTR_INTERVAL = 10000000,
  8130. FAILURE_INTERVAL = 30,
  8131. };
  8132. /* Stage another work item from the work returned in a longpoll */
  8133. static void convert_to_work(json_t *val, int rolltime, struct pool *pool, struct work *work, struct timeval *tv_lp, struct timeval *tv_lp_reply)
  8134. {
  8135. bool rc;
  8136. work->rolltime = rolltime;
  8137. rc = work_decode(pool, work, val);
  8138. if (unlikely(!rc)) {
  8139. applog(LOG_ERR, "Could not convert longpoll data to work");
  8140. free_work(work);
  8141. return;
  8142. }
  8143. total_getworks++;
  8144. pool->getwork_requested++;
  8145. work->pool = pool;
  8146. copy_time(&work->tv_getwork, tv_lp);
  8147. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8148. calc_diff(work, 0);
  8149. if (pool->enabled == POOL_REJECTING)
  8150. work->mandatory = true;
  8151. work->longpoll = true;
  8152. work->getwork_mode = GETWORK_MODE_LP;
  8153. update_last_work(work);
  8154. /* We'll be checking this work item twice, but we already know it's
  8155. * from a new block so explicitly force the new block detection now
  8156. * rather than waiting for it to hit the stage thread. This also
  8157. * allows testwork to know whether LP discovered the block or not. */
  8158. test_work_current(work);
  8159. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8160. * the longpoll work from a pool that has been rejecting shares as a
  8161. * way to detect when the pool has recovered.
  8162. */
  8163. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8164. free_work(work);
  8165. return;
  8166. }
  8167. work = clone_work(work);
  8168. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8169. stage_work(work);
  8170. applog(LOG_DEBUG, "Converted longpoll data to work");
  8171. }
  8172. /* If we want longpoll, enable it for the chosen default pool, or, if
  8173. * the pool does not support longpoll, find the first one that does
  8174. * and use its longpoll support */
  8175. static struct pool *select_longpoll_pool(struct pool *cp)
  8176. {
  8177. int i;
  8178. if (cp->lp_url)
  8179. return cp;
  8180. for (i = 0; i < total_pools; i++) {
  8181. struct pool *pool = pools[i];
  8182. if (pool->has_stratum || pool->lp_url)
  8183. return pool;
  8184. }
  8185. return NULL;
  8186. }
  8187. /* This will make the longpoll thread wait till it's the current pool, or it
  8188. * has been flagged as rejecting, before attempting to open any connections.
  8189. */
  8190. static void wait_lpcurrent(struct pool *pool)
  8191. {
  8192. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8193. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8194. pool_strategy != POOL_BALANCE))) {
  8195. mutex_lock(&lp_lock);
  8196. pthread_cond_wait(&lp_cond, &lp_lock);
  8197. mutex_unlock(&lp_lock);
  8198. }
  8199. }
  8200. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8201. struct pool *pool = vpool;
  8202. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8203. pool->lp_socket = sock;
  8204. return sock;
  8205. }
  8206. static void *longpoll_thread(void *userdata)
  8207. {
  8208. struct pool *cp = (struct pool *)userdata;
  8209. /* This *pool is the source of the actual longpoll, not the pool we've
  8210. * tied it to */
  8211. struct timeval start, reply, end;
  8212. struct pool *pool = NULL;
  8213. char threadname[20];
  8214. CURL *curl = NULL;
  8215. int failures = 0;
  8216. char *lp_url;
  8217. int rolltime;
  8218. #ifndef HAVE_PTHREAD_CANCEL
  8219. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8220. #endif
  8221. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8222. RenameThread(threadname);
  8223. curl = curl_easy_init();
  8224. if (unlikely(!curl)) {
  8225. applog(LOG_ERR, "CURL initialisation failed");
  8226. return NULL;
  8227. }
  8228. retry_pool:
  8229. pool = select_longpoll_pool(cp);
  8230. if (!pool) {
  8231. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8232. while (!pool) {
  8233. cgsleep_ms(60000);
  8234. pool = select_longpoll_pool(cp);
  8235. }
  8236. }
  8237. if (pool->has_stratum) {
  8238. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8239. cp->rpc_url, pool->rpc_url);
  8240. goto out;
  8241. }
  8242. /* Any longpoll from any pool is enough for this to be true */
  8243. have_longpoll = true;
  8244. wait_lpcurrent(cp);
  8245. {
  8246. lp_url = pool->lp_url;
  8247. if (cp == pool)
  8248. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8249. else
  8250. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8251. }
  8252. while (42) {
  8253. json_t *val, *soval;
  8254. struct work *work = make_work();
  8255. char *lpreq;
  8256. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8257. work->pool = pool;
  8258. if (!lpreq)
  8259. {
  8260. free_work(work);
  8261. goto lpfail;
  8262. }
  8263. wait_lpcurrent(cp);
  8264. cgtime(&start);
  8265. /* Longpoll connections can be persistent for a very long time
  8266. * and any number of issues could have come up in the meantime
  8267. * so always establish a fresh connection instead of relying on
  8268. * a persistent one. */
  8269. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8270. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8271. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8272. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8273. lpreq, false, true, &rolltime, pool, false);
  8274. pool->lp_socket = CURL_SOCKET_BAD;
  8275. cgtime(&reply);
  8276. free(lpreq);
  8277. if (likely(val)) {
  8278. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8279. if (soval)
  8280. pool->submit_old = json_is_true(soval);
  8281. else
  8282. pool->submit_old = false;
  8283. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8284. failures = 0;
  8285. json_decref(val);
  8286. } else {
  8287. /* Some pools regularly drop the longpoll request so
  8288. * only see this as longpoll failure if it happens
  8289. * immediately and just restart it the rest of the
  8290. * time. */
  8291. cgtime(&end);
  8292. free_work(work);
  8293. if (end.tv_sec - start.tv_sec > 30)
  8294. continue;
  8295. if (failures == 1)
  8296. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8297. lpfail:
  8298. cgsleep_ms(30000);
  8299. }
  8300. if (pool != cp) {
  8301. pool = select_longpoll_pool(cp);
  8302. if (pool->has_stratum) {
  8303. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8304. cp->rpc_url, pool->rpc_url);
  8305. break;
  8306. }
  8307. if (unlikely(!pool))
  8308. goto retry_pool;
  8309. }
  8310. if (unlikely(pool->removed))
  8311. break;
  8312. }
  8313. out:
  8314. curl_easy_cleanup(curl);
  8315. return NULL;
  8316. }
  8317. static void stop_longpoll(void)
  8318. {
  8319. int i;
  8320. want_longpoll = false;
  8321. for (i = 0; i < total_pools; ++i)
  8322. {
  8323. struct pool *pool = pools[i];
  8324. if (unlikely(!pool->lp_started))
  8325. continue;
  8326. pool->lp_started = false;
  8327. pthread_cancel(pool->longpoll_thread);
  8328. }
  8329. have_longpoll = false;
  8330. }
  8331. static void start_longpoll(void)
  8332. {
  8333. int i;
  8334. want_longpoll = true;
  8335. for (i = 0; i < total_pools; ++i)
  8336. {
  8337. struct pool *pool = pools[i];
  8338. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8339. continue;
  8340. pool->lp_started = true;
  8341. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8342. quit(1, "Failed to create pool longpoll thread");
  8343. }
  8344. }
  8345. void reinit_device(struct cgpu_info *cgpu)
  8346. {
  8347. if (cgpu->drv->reinit_device)
  8348. cgpu->drv->reinit_device(cgpu);
  8349. }
  8350. static struct timeval rotate_tv;
  8351. /* We reap curls if they are unused for over a minute */
  8352. static void reap_curl(struct pool *pool)
  8353. {
  8354. struct curl_ent *ent, *iter;
  8355. struct timeval now;
  8356. int reaped = 0;
  8357. cgtime(&now);
  8358. mutex_lock(&pool->pool_lock);
  8359. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8360. if (pool->curls < 2)
  8361. break;
  8362. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8363. reaped++;
  8364. pool->curls--;
  8365. LL_DELETE(pool->curllist, ent);
  8366. curl_easy_cleanup(ent->curl);
  8367. free(ent);
  8368. }
  8369. }
  8370. mutex_unlock(&pool->pool_lock);
  8371. if (reaped)
  8372. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8373. }
  8374. static void *watchpool_thread(void __maybe_unused *userdata)
  8375. {
  8376. int intervals = 0;
  8377. #ifndef HAVE_PTHREAD_CANCEL
  8378. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8379. #endif
  8380. RenameThread("watchpool");
  8381. while (42) {
  8382. struct timeval now;
  8383. int i;
  8384. if (++intervals > 20)
  8385. intervals = 0;
  8386. cgtime(&now);
  8387. for (i = 0; i < total_pools; i++) {
  8388. struct pool *pool = pools[i];
  8389. if (!opt_benchmark)
  8390. reap_curl(pool);
  8391. /* Get a rolling utility per pool over 10 mins */
  8392. if (intervals > 19) {
  8393. int shares = pool->diff1 - pool->last_shares;
  8394. pool->last_shares = pool->diff1;
  8395. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8396. pool->shares = pool->utility;
  8397. }
  8398. if (pool->enabled == POOL_DISABLED)
  8399. continue;
  8400. /* Don't start testing any pools if the test threads
  8401. * from startup are still doing their first attempt. */
  8402. if (unlikely(pool->testing)) {
  8403. pthread_join(pool->test_thread, NULL);
  8404. }
  8405. /* Test pool is idle once every minute */
  8406. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8407. cgtime(&pool->tv_idle);
  8408. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8409. pool_resus(pool);
  8410. }
  8411. /* Only switch pools if the failback pool has been
  8412. * alive for more than 5 minutes to prevent
  8413. * intermittently failing pools from being used. */
  8414. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8415. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8416. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8417. pool->pool_no, pool->rpc_url);
  8418. switch_pools(NULL);
  8419. }
  8420. }
  8421. if (current_pool()->idle)
  8422. switch_pools(NULL);
  8423. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8424. cgtime(&rotate_tv);
  8425. switch_pools(NULL);
  8426. }
  8427. cgsleep_ms(30000);
  8428. }
  8429. return NULL;
  8430. }
  8431. void mt_enable(struct thr_info *thr)
  8432. {
  8433. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8434. notifier_wake(thr->notifier);
  8435. }
  8436. void proc_enable(struct cgpu_info *cgpu)
  8437. {
  8438. int j;
  8439. cgpu->deven = DEV_ENABLED;
  8440. for (j = cgpu->threads ?: 1; j--; )
  8441. mt_enable(cgpu->thr[j]);
  8442. }
  8443. #define device_recovered(cgpu) proc_enable(cgpu)
  8444. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8445. {
  8446. struct string_elist *setstr_elist;
  8447. const char *p, *p2;
  8448. char replybuf[0x2000];
  8449. size_t L;
  8450. DL_FOREACH(opt_set_device_list, setstr_elist)
  8451. {
  8452. const char * const setstr = setstr_elist->string;
  8453. p = strchr(setstr, ':');
  8454. if (!p)
  8455. p = setstr;
  8456. {
  8457. L = p - setstr;
  8458. char pattern[L + 1];
  8459. if (L)
  8460. memcpy(pattern, setstr, L);
  8461. pattern[L] = '\0';
  8462. if (!cgpu_match(pattern, cgpu))
  8463. continue;
  8464. }
  8465. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8466. cgpu->proc_repr, __func__, setstr);
  8467. if (p[0] == ':')
  8468. ++p;
  8469. p2 = strchr(p, '=');
  8470. if (!p2)
  8471. {
  8472. L = strlen(p);
  8473. p2 = "";
  8474. }
  8475. else
  8476. {
  8477. L = p2 - p;
  8478. ++p2;
  8479. }
  8480. char opt[L + 1];
  8481. if (L)
  8482. memcpy(opt, p, L);
  8483. opt[L] = '\0';
  8484. L = strlen(p2);
  8485. char setval[L + 1];
  8486. if (L)
  8487. memcpy(setval, p2, L);
  8488. setval[L] = '\0';
  8489. enum bfg_set_device_replytype success;
  8490. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8491. switch (success)
  8492. {
  8493. case SDR_OK:
  8494. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8495. cgpu->proc_repr, setstr,
  8496. p ? ": " : "", p ?: "");
  8497. break;
  8498. case SDR_ERR:
  8499. case SDR_HELP:
  8500. case SDR_UNKNOWN:
  8501. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8502. cgpu->proc_repr, setstr, p);
  8503. break;
  8504. case SDR_AUTO:
  8505. case SDR_NOSUPP:
  8506. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8507. cgpu->proc_repr, setstr);
  8508. }
  8509. }
  8510. cgpu->already_set_defaults = true;
  8511. }
  8512. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8513. {
  8514. struct device_drv dummy_drv = *drv;
  8515. struct cgpu_info dummy_cgpu = {
  8516. .drv = &dummy_drv,
  8517. .device = &dummy_cgpu,
  8518. .device_id = -1,
  8519. .proc_id = -1,
  8520. .device_data = userp,
  8521. .device_path = devpath,
  8522. .dev_serial = serial,
  8523. };
  8524. strcpy(dummy_cgpu.proc_repr, drv->name);
  8525. switch (mode)
  8526. {
  8527. case 0:
  8528. dummy_drv.set_device = datap;
  8529. break;
  8530. case 1:
  8531. dummy_drv.set_device = NULL;
  8532. dummy_cgpu.set_device_funcs = datap;
  8533. break;
  8534. }
  8535. cgpu_set_defaults(&dummy_cgpu);
  8536. }
  8537. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8538. * the screen at regular intervals, and restarts threads if they appear to have
  8539. * died. */
  8540. #define WATCHDOG_SICK_TIME 60
  8541. #define WATCHDOG_DEAD_TIME 600
  8542. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8543. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8544. static void *watchdog_thread(void __maybe_unused *userdata)
  8545. {
  8546. const unsigned int interval = WATCHDOG_INTERVAL;
  8547. struct timeval zero_tv;
  8548. #ifndef HAVE_PTHREAD_CANCEL
  8549. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8550. #endif
  8551. RenameThread("watchdog");
  8552. memset(&zero_tv, 0, sizeof(struct timeval));
  8553. cgtime(&rotate_tv);
  8554. while (1) {
  8555. int i;
  8556. struct timeval now;
  8557. sleep(interval);
  8558. discard_stale();
  8559. hashmeter(-1, &zero_tv, 0);
  8560. #ifdef HAVE_CURSES
  8561. const int ts = total_staged();
  8562. if (curses_active_locked()) {
  8563. change_logwinsize();
  8564. curses_print_status(ts);
  8565. _refresh_devstatus(true);
  8566. touchwin(logwin);
  8567. wrefresh(logwin);
  8568. unlock_curses();
  8569. }
  8570. #endif
  8571. cgtime(&now);
  8572. if (!sched_paused && !should_run()) {
  8573. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8574. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8575. if (!schedstart.enable) {
  8576. quit(0, "Terminating execution as planned");
  8577. break;
  8578. }
  8579. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8580. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8581. sched_paused = true;
  8582. rd_lock(&mining_thr_lock);
  8583. for (i = 0; i < mining_threads; i++)
  8584. mining_thr[i]->pause = true;
  8585. rd_unlock(&mining_thr_lock);
  8586. } else if (sched_paused && should_run()) {
  8587. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8588. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8589. if (schedstop.enable)
  8590. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8591. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8592. sched_paused = false;
  8593. for (i = 0; i < mining_threads; i++) {
  8594. struct thr_info *thr;
  8595. thr = get_thread(i);
  8596. thr->pause = false;
  8597. }
  8598. for (i = 0; i < total_devices; ++i)
  8599. {
  8600. struct cgpu_info *cgpu = get_devices(i);
  8601. /* Don't touch disabled devices */
  8602. if (cgpu->deven == DEV_DISABLED)
  8603. continue;
  8604. proc_enable(cgpu);
  8605. }
  8606. }
  8607. for (i = 0; i < total_devices; ++i) {
  8608. struct cgpu_info *cgpu = get_devices(i);
  8609. if (!cgpu->disable_watchdog)
  8610. bfg_watchdog(cgpu, &now);
  8611. }
  8612. }
  8613. return NULL;
  8614. }
  8615. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8616. {
  8617. struct thr_info *thr = cgpu->thr[0];
  8618. enum dev_enable *denable;
  8619. char *dev_str = cgpu->proc_repr;
  8620. if (likely(drv_ready(cgpu)))
  8621. {
  8622. if (unlikely(!cgpu->already_set_defaults))
  8623. cgpu_set_defaults(cgpu);
  8624. if (cgpu->drv->get_stats)
  8625. cgpu->drv->get_stats(cgpu);
  8626. }
  8627. denable = &cgpu->deven;
  8628. if (cgpu->drv->watchdog)
  8629. cgpu->drv->watchdog(cgpu, tvp_now);
  8630. /* Thread is disabled */
  8631. if (*denable == DEV_DISABLED)
  8632. return;
  8633. else
  8634. if (*denable == DEV_RECOVER_ERR) {
  8635. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8636. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8637. dev_str);
  8638. if (cgpu->reinit_backoff < 300)
  8639. cgpu->reinit_backoff *= 2;
  8640. device_recovered(cgpu);
  8641. }
  8642. return;
  8643. }
  8644. else
  8645. if (*denable == DEV_RECOVER) {
  8646. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8647. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8648. dev_str);
  8649. device_recovered(cgpu);
  8650. }
  8651. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8652. return;
  8653. }
  8654. else
  8655. if (cgpu->temp > cgpu->cutofftemp)
  8656. {
  8657. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8658. dev_str, (int)cgpu->temp);
  8659. *denable = DEV_RECOVER;
  8660. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8661. run_cmd(cmd_idle);
  8662. }
  8663. if (thr->getwork) {
  8664. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8665. int thrid;
  8666. bool cgpu_idle = true;
  8667. thr->rolling = 0;
  8668. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8669. if (!cgpu->thr[thrid]->getwork)
  8670. cgpu_idle = false;
  8671. if (cgpu_idle) {
  8672. cgpu->rolling = 0;
  8673. cgpu->status = LIFE_WAIT;
  8674. }
  8675. }
  8676. return;
  8677. }
  8678. else if (cgpu->status == LIFE_WAIT)
  8679. cgpu->status = LIFE_WELL;
  8680. #ifdef WANT_CPUMINE
  8681. if (!strcmp(cgpu->drv->dname, "cpu"))
  8682. return;
  8683. #endif
  8684. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8685. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8686. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8687. cgpu->status = LIFE_WELL;
  8688. cgpu->device_last_well = time(NULL);
  8689. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8690. thr->rolling = cgpu->rolling = 0;
  8691. cgpu->status = LIFE_SICK;
  8692. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8693. cgtime(&thr->sick);
  8694. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8695. run_cmd(cmd_sick);
  8696. if (opt_restart && cgpu->drv->reinit_device) {
  8697. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8698. reinit_device(cgpu);
  8699. }
  8700. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8701. cgpu->status = LIFE_DEAD;
  8702. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8703. cgtime(&thr->sick);
  8704. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8705. run_cmd(cmd_dead);
  8706. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8707. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8708. /* Attempt to restart a GPU that's sick or dead once every minute */
  8709. cgtime(&thr->sick);
  8710. if (opt_restart)
  8711. reinit_device(cgpu);
  8712. }
  8713. }
  8714. static void log_print_status(struct cgpu_info *cgpu)
  8715. {
  8716. char logline[255];
  8717. get_statline(logline, sizeof(logline), cgpu);
  8718. applog(LOG_WARNING, "%s", logline);
  8719. }
  8720. void print_summary(void)
  8721. {
  8722. struct timeval diff;
  8723. int hours, mins, secs, i;
  8724. double utility, efficiency = 0.0;
  8725. char xfer[17], bw[19];
  8726. int pool_secs;
  8727. timersub(&total_tv_end, &total_tv_start, &diff);
  8728. hours = diff.tv_sec / 3600;
  8729. mins = (diff.tv_sec % 3600) / 60;
  8730. secs = diff.tv_sec % 60;
  8731. utility = total_accepted / total_secs * 60;
  8732. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8733. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8734. applog(LOG_WARNING, "Started at %s", datestamp);
  8735. if (total_pools == 1)
  8736. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8737. #ifdef WANT_CPUMINE
  8738. if (opt_n_threads)
  8739. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8740. #endif
  8741. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8742. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8743. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8744. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8745. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8746. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8747. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8748. total_rejected, total_stale,
  8749. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8750. );
  8751. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8752. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8753. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8754. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8755. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8756. (float)total_bytes_rcvd,
  8757. (float)total_bytes_sent),
  8758. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8759. (float)(total_bytes_rcvd / total_secs),
  8760. (float)(total_bytes_sent / total_secs)));
  8761. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8762. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8763. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8764. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8765. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8766. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8767. if (total_pools > 1) {
  8768. for (i = 0; i < total_pools; i++) {
  8769. struct pool *pool = pools[i];
  8770. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8771. if (pool->solved)
  8772. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8773. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8774. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8775. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8776. pool->rejected, pool->stale_shares,
  8777. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8778. );
  8779. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8780. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8781. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8782. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8783. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8784. (float)pool->cgminer_pool_stats.net_bytes_received,
  8785. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8786. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8787. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8788. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8789. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8790. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8791. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8792. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8793. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8794. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8795. }
  8796. }
  8797. if (opt_quit_summary != BQS_NONE)
  8798. {
  8799. if (opt_quit_summary == BQS_DETAILED)
  8800. include_serial_in_statline = true;
  8801. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8802. for (i = 0; i < total_devices; ++i) {
  8803. struct cgpu_info *cgpu = get_devices(i);
  8804. if (!cgpu->proc_id)
  8805. {
  8806. // Device summary line
  8807. opt_show_procs = false;
  8808. log_print_status(cgpu);
  8809. opt_show_procs = true;
  8810. }
  8811. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8812. log_print_status(cgpu);
  8813. }
  8814. }
  8815. if (opt_shares) {
  8816. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  8817. if (opt_shares > total_diff_accepted)
  8818. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  8819. }
  8820. applog(LOG_WARNING, " ");
  8821. fflush(stderr);
  8822. fflush(stdout);
  8823. }
  8824. void _bfg_clean_up(bool restarting)
  8825. {
  8826. #ifdef HAVE_OPENCL
  8827. clear_adl(nDevs);
  8828. #endif
  8829. #ifdef HAVE_LIBUSB
  8830. if (likely(have_libusb))
  8831. libusb_exit(NULL);
  8832. #endif
  8833. cgtime(&total_tv_end);
  8834. #ifdef WIN32
  8835. timeEndPeriod(1);
  8836. #endif
  8837. if (!restarting) {
  8838. /* Attempting to disable curses or print a summary during a
  8839. * restart can lead to a deadlock. */
  8840. #ifdef HAVE_CURSES
  8841. disable_curses();
  8842. #endif
  8843. if (!opt_realquiet && successful_connect)
  8844. print_summary();
  8845. }
  8846. if (opt_n_threads)
  8847. free(cpus);
  8848. curl_global_cleanup();
  8849. #ifdef WIN32
  8850. WSACleanup();
  8851. #endif
  8852. }
  8853. void _quit(int status)
  8854. {
  8855. if (status) {
  8856. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8857. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8858. int *p = NULL;
  8859. // NOTE debugger can bypass with: p = &p
  8860. *p = status; // Segfault, hopefully dumping core
  8861. }
  8862. }
  8863. #if defined(unix) || defined(__APPLE__)
  8864. if (forkpid > 0) {
  8865. kill(forkpid, SIGTERM);
  8866. forkpid = 0;
  8867. }
  8868. #endif
  8869. exit(status);
  8870. }
  8871. #ifdef HAVE_CURSES
  8872. char *curses_input(const char *query)
  8873. {
  8874. char *input;
  8875. echo();
  8876. input = malloc(255);
  8877. if (!input)
  8878. quit(1, "Failed to malloc input");
  8879. leaveok(logwin, false);
  8880. wlogprint("%s:\n", query);
  8881. wgetnstr(logwin, input, 255);
  8882. if (!strlen(input))
  8883. {
  8884. free(input);
  8885. input = NULL;
  8886. }
  8887. leaveok(logwin, true);
  8888. noecho();
  8889. return input;
  8890. }
  8891. #endif
  8892. static bool pools_active = false;
  8893. static void *test_pool_thread(void *arg)
  8894. {
  8895. struct pool *pool = (struct pool *)arg;
  8896. if (pool_active(pool, false)) {
  8897. pool_tset(pool, &pool->lagging);
  8898. pool_tclear(pool, &pool->idle);
  8899. bool first_pool = false;
  8900. cg_wlock(&control_lock);
  8901. if (!pools_active) {
  8902. currentpool = pool;
  8903. if (pool->pool_no != 0)
  8904. first_pool = true;
  8905. pools_active = true;
  8906. }
  8907. cg_wunlock(&control_lock);
  8908. if (unlikely(first_pool))
  8909. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8910. else
  8911. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8912. switch_pools(NULL);
  8913. } else
  8914. pool_died(pool);
  8915. pool->testing = false;
  8916. return NULL;
  8917. }
  8918. /* Always returns true that the pool details were added unless we are not
  8919. * live, implying this is the only pool being added, so if no pools are
  8920. * active it returns false. */
  8921. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  8922. {
  8923. size_t siz;
  8924. pool->rpc_url = url;
  8925. pool->rpc_user = user;
  8926. pool->rpc_pass = pass;
  8927. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  8928. pool->rpc_userpass = malloc(siz);
  8929. if (!pool->rpc_userpass)
  8930. quit(1, "Failed to malloc userpass");
  8931. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  8932. pool->testing = true;
  8933. pool->idle = true;
  8934. enable_pool(pool);
  8935. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  8936. if (!live) {
  8937. pthread_join(pool->test_thread, NULL);
  8938. return pools_active;
  8939. }
  8940. return true;
  8941. }
  8942. #ifdef HAVE_CURSES
  8943. static bool input_pool(bool live)
  8944. {
  8945. char *url = NULL, *user = NULL, *pass = NULL;
  8946. struct pool *pool;
  8947. bool ret = false;
  8948. immedok(logwin, true);
  8949. wlogprint("Input server details.\n");
  8950. url = curses_input("URL");
  8951. if (!url)
  8952. goto out;
  8953. user = curses_input("Username");
  8954. if (!user)
  8955. goto out;
  8956. pass = curses_input("Password");
  8957. if (!pass)
  8958. pass = calloc(1, 1);
  8959. pool = add_pool();
  8960. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  8961. strncmp(url, "https://", 8)) {
  8962. char *httpinput;
  8963. httpinput = malloc(256);
  8964. if (!httpinput)
  8965. quit(1, "Failed to malloc httpinput");
  8966. strcpy(httpinput, "http://");
  8967. strncat(httpinput, url, 248);
  8968. free(url);
  8969. url = httpinput;
  8970. }
  8971. ret = add_pool_details(pool, live, url, user, pass);
  8972. out:
  8973. immedok(logwin, false);
  8974. if (!ret) {
  8975. if (url)
  8976. free(url);
  8977. if (user)
  8978. free(user);
  8979. if (pass)
  8980. free(pass);
  8981. }
  8982. return ret;
  8983. }
  8984. #endif
  8985. #if defined(unix) || defined(__APPLE__)
  8986. static void fork_monitor()
  8987. {
  8988. // Make a pipe: [readFD, writeFD]
  8989. int pfd[2];
  8990. int r = pipe(pfd);
  8991. if (r < 0) {
  8992. perror("pipe - failed to create pipe for --monitor");
  8993. exit(1);
  8994. }
  8995. // Make stderr write end of pipe
  8996. fflush(stderr);
  8997. r = dup2(pfd[1], 2);
  8998. if (r < 0) {
  8999. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9000. exit(1);
  9001. }
  9002. r = close(pfd[1]);
  9003. if (r < 0) {
  9004. perror("close - failed to close write end of pipe for --monitor");
  9005. exit(1);
  9006. }
  9007. // Don't allow a dying monitor to kill the main process
  9008. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9009. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9010. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9011. perror("signal - failed to edit signal mask for --monitor");
  9012. exit(1);
  9013. }
  9014. // Fork a child process
  9015. forkpid = fork();
  9016. if (forkpid < 0) {
  9017. perror("fork - failed to fork child process for --monitor");
  9018. exit(1);
  9019. }
  9020. // Child: launch monitor command
  9021. if (0 == forkpid) {
  9022. // Make stdin read end of pipe
  9023. r = dup2(pfd[0], 0);
  9024. if (r < 0) {
  9025. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9026. exit(1);
  9027. }
  9028. close(pfd[0]);
  9029. if (r < 0) {
  9030. perror("close - in child, failed to close read end of pipe for --monitor");
  9031. exit(1);
  9032. }
  9033. // Launch user specified command
  9034. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9035. perror("execl - in child failed to exec user specified command for --monitor");
  9036. exit(1);
  9037. }
  9038. // Parent: clean up unused fds and bail
  9039. r = close(pfd[0]);
  9040. if (r < 0) {
  9041. perror("close - failed to close read end of pipe for --monitor");
  9042. exit(1);
  9043. }
  9044. }
  9045. #endif // defined(unix)
  9046. #ifdef HAVE_CURSES
  9047. #ifdef USE_UNICODE
  9048. static
  9049. wchar_t select_unicode_char(const wchar_t *opt)
  9050. {
  9051. for ( ; *opt; ++opt)
  9052. if (iswprint(*opt))
  9053. return *opt;
  9054. return '?';
  9055. }
  9056. #endif
  9057. void enable_curses(void) {
  9058. int x;
  9059. __maybe_unused int y;
  9060. lock_curses();
  9061. if (curses_active) {
  9062. unlock_curses();
  9063. return;
  9064. }
  9065. #ifdef USE_UNICODE
  9066. if (use_unicode)
  9067. {
  9068. setlocale(LC_CTYPE, "");
  9069. if (iswprint(0xb0))
  9070. have_unicode_degrees = true;
  9071. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9072. }
  9073. #endif
  9074. mainwin = initscr();
  9075. start_color();
  9076. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9077. if (ERR != use_default_colors())
  9078. default_bgcolor = -1;
  9079. #endif
  9080. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9081. {
  9082. menu_attr = COLOR_PAIR(1);
  9083. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9084. attr_bad |= COLOR_PAIR(2);
  9085. }
  9086. keypad(mainwin, true);
  9087. getmaxyx(mainwin, y, x);
  9088. statuswin = newwin(logstart, x, 0, 0);
  9089. leaveok(statuswin, true);
  9090. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9091. // We resize the window later anyway, so just start it off at 1 :)
  9092. logwin = newwin(1, 0, logcursor, 0);
  9093. idlok(logwin, true);
  9094. scrollok(logwin, true);
  9095. leaveok(logwin, true);
  9096. cbreak();
  9097. noecho();
  9098. nonl();
  9099. curses_active = true;
  9100. statusy = logstart;
  9101. unlock_curses();
  9102. }
  9103. #endif
  9104. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9105. #ifndef WANT_CPUMINE
  9106. struct device_drv cpu_drv;
  9107. struct device_drv cpu_drv = {
  9108. .name = "CPU",
  9109. };
  9110. #endif
  9111. static int cgminer_id_count = 0;
  9112. static int device_line_id_count;
  9113. void register_device(struct cgpu_info *cgpu)
  9114. {
  9115. cgpu->deven = DEV_ENABLED;
  9116. wr_lock(&devices_lock);
  9117. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9118. wr_unlock(&devices_lock);
  9119. if (!cgpu->proc_id)
  9120. cgpu->device_line_id = device_line_id_count++;
  9121. mining_threads += cgpu->threads ?: 1;
  9122. #ifdef HAVE_CURSES
  9123. adj_width(mining_threads, &dev_width);
  9124. #endif
  9125. rwlock_init(&cgpu->qlock);
  9126. cgpu->queued_work = NULL;
  9127. }
  9128. struct _cgpu_devid_counter {
  9129. char name[4];
  9130. int lastid;
  9131. UT_hash_handle hh;
  9132. };
  9133. void renumber_cgpu(struct cgpu_info *cgpu)
  9134. {
  9135. static struct _cgpu_devid_counter *devids = NULL;
  9136. struct _cgpu_devid_counter *d;
  9137. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9138. if (d)
  9139. cgpu->device_id = ++d->lastid;
  9140. else {
  9141. d = malloc(sizeof(*d));
  9142. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9143. cgpu->device_id = d->lastid = 0;
  9144. HASH_ADD_STR(devids, name, d);
  9145. }
  9146. }
  9147. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9148. {
  9149. sha256(buffer, length, digest);
  9150. return true;
  9151. }
  9152. static
  9153. int drv_algo_check(const struct device_drv * const drv)
  9154. {
  9155. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9156. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9157. return (algos & algomatch);
  9158. }
  9159. #ifndef HAVE_PTHREAD_CANCEL
  9160. extern void setup_pthread_cancel_workaround();
  9161. extern struct sigaction pcwm_orig_term_handler;
  9162. #endif
  9163. bool bfg_need_detect_rescan;
  9164. extern void probe_device(struct lowlevel_device_info *);
  9165. static void schedule_rescan(const struct timeval *);
  9166. static
  9167. void drv_detect_all()
  9168. {
  9169. bool rescanning = false;
  9170. rescan:
  9171. bfg_need_detect_rescan = false;
  9172. #ifdef HAVE_BFG_LOWLEVEL
  9173. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9174. LL_FOREACH_SAFE(infolist, info, infotmp)
  9175. probe_device(info);
  9176. LL_FOREACH_SAFE(infolist, info, infotmp)
  9177. pthread_join(info->probe_pth, NULL);
  9178. #endif
  9179. struct driver_registration *reg, *tmp;
  9180. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9181. {
  9182. const struct device_drv * const drv = reg->drv;
  9183. if (!(drv_algo_check(drv) && drv->drv_detect))
  9184. continue;
  9185. drv->drv_detect();
  9186. }
  9187. #ifdef HAVE_BFG_LOWLEVEL
  9188. lowlevel_scan_free();
  9189. #endif
  9190. if (bfg_need_detect_rescan)
  9191. {
  9192. if (rescanning)
  9193. {
  9194. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9195. struct timeval tv_when;
  9196. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9197. schedule_rescan(&tv_when);
  9198. }
  9199. else
  9200. {
  9201. rescanning = true;
  9202. applog(LOG_DEBUG, "Device rescan requested");
  9203. goto rescan;
  9204. }
  9205. }
  9206. }
  9207. static
  9208. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9209. {
  9210. struct thr_info *thr;
  9211. int j;
  9212. struct device_drv *api = cgpu->drv;
  9213. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9214. int threadobj = cgpu->threads;
  9215. if (!threadobj)
  9216. // Create a fake thread object to handle hashmeter etc
  9217. threadobj = 1;
  9218. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9219. cgpu->thr[threadobj] = NULL;
  9220. cgpu->status = LIFE_INIT;
  9221. if (opt_devices_enabled_list)
  9222. {
  9223. struct string_elist *enablestr_elist;
  9224. cgpu->deven = DEV_DISABLED;
  9225. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9226. {
  9227. const char * const enablestr = enablestr_elist->string;
  9228. if (cgpu_match(enablestr, cgpu))
  9229. {
  9230. cgpu->deven = DEV_ENABLED;
  9231. break;
  9232. }
  9233. }
  9234. }
  9235. cgpu->max_hashes = 0;
  9236. BFGINIT(cgpu->min_nonce_diff, 1);
  9237. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9238. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9239. // Setup thread structs before starting any of the threads, in case they try to interact
  9240. for (j = 0; j < threadobj; ++j, ++*kp) {
  9241. thr = get_thread(*kp);
  9242. thr->id = *kp;
  9243. thr->cgpu = cgpu;
  9244. thr->device_thread = j;
  9245. thr->work_restart_notifier[1] = INVSOCK;
  9246. thr->mutex_request[1] = INVSOCK;
  9247. thr->_job_transition_in_progress = true;
  9248. timerclear(&thr->tv_morework);
  9249. thr->scanhash_working = true;
  9250. thr->hashes_done = 0;
  9251. timerclear(&thr->tv_hashes_done);
  9252. cgtime(&thr->tv_lastupdate);
  9253. thr->tv_poll.tv_sec = -1;
  9254. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9255. cgpu->thr[j] = thr;
  9256. }
  9257. if (!cgpu->device->threads)
  9258. notifier_init_invalid(cgpu->thr[0]->notifier);
  9259. else
  9260. if (!cgpu->threads)
  9261. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9262. else
  9263. for (j = 0; j < cgpu->threads; ++j)
  9264. {
  9265. thr = cgpu->thr[j];
  9266. notifier_init(thr->notifier);
  9267. }
  9268. }
  9269. static
  9270. void start_cgpu(struct cgpu_info *cgpu)
  9271. {
  9272. struct thr_info *thr;
  9273. int j;
  9274. for (j = 0; j < cgpu->threads; ++j) {
  9275. thr = cgpu->thr[j];
  9276. /* Enable threads for devices set not to mine but disable
  9277. * their queue in case we wish to enable them later */
  9278. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9279. continue;
  9280. thread_reportout(thr);
  9281. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9282. quit(1, "thread %d create failed", thr->id);
  9283. notifier_wake(thr->notifier);
  9284. }
  9285. if (cgpu->deven == DEV_ENABLED)
  9286. proc_enable(cgpu);
  9287. }
  9288. static
  9289. void _scan_serial(void *p)
  9290. {
  9291. const char *s = p;
  9292. struct string_elist *iter, *tmp;
  9293. struct string_elist *orig_scan_devices = scan_devices;
  9294. if (s)
  9295. {
  9296. // Make temporary scan_devices list
  9297. scan_devices = NULL;
  9298. string_elist_add("noauto", &scan_devices);
  9299. add_serial(s);
  9300. }
  9301. drv_detect_all();
  9302. if (s)
  9303. {
  9304. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9305. {
  9306. string_elist_del(&scan_devices, iter);
  9307. }
  9308. scan_devices = orig_scan_devices;
  9309. }
  9310. }
  9311. #ifdef HAVE_BFG_LOWLEVEL
  9312. static
  9313. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9314. {
  9315. if (!(false
  9316. || (info->serial && !strcasecmp(ser, info->serial))
  9317. || (info->path && !strcasecmp(ser, info->path ))
  9318. || (info->devid && !strcasecmp(ser, info->devid ))
  9319. ))
  9320. {
  9321. char *devid = devpath_to_devid(ser);
  9322. if (!devid)
  9323. return false;
  9324. const bool different = strcmp(info->devid, devid);
  9325. free(devid);
  9326. if (different)
  9327. return false;
  9328. }
  9329. return true;
  9330. }
  9331. static
  9332. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9333. {
  9334. struct driver_registration *dreg;
  9335. char dname[dnamelen];
  9336. int i;
  9337. for (i = 0; i < dnamelen; ++i)
  9338. dname[i] = tolower(_dname[i]);
  9339. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9340. if (!dreg)
  9341. {
  9342. for (i = 0; i < dnamelen; ++i)
  9343. dname[i] = toupper(_dname[i]);
  9344. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9345. if (!dreg)
  9346. return NULL;
  9347. }
  9348. if (!drv_algo_check(dreg->drv))
  9349. return NULL;
  9350. return dreg->drv;
  9351. }
  9352. static
  9353. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9354. {
  9355. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9356. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9357. return false;
  9358. return drv->lowl_probe(info);
  9359. }
  9360. static
  9361. void *probe_device_thread(void *p)
  9362. {
  9363. struct lowlevel_device_info * const infolist = p;
  9364. struct lowlevel_device_info *info = infolist;
  9365. {
  9366. char threadname[5 + strlen(info->devid) + 1];
  9367. sprintf(threadname, "probe_%s", info->devid);
  9368. RenameThread(threadname);
  9369. }
  9370. // If already in use, ignore
  9371. if (bfg_claim_any(NULL, NULL, info->devid))
  9372. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9373. __func__, info->product);
  9374. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9375. struct string_elist *sd_iter, *sd_tmp;
  9376. struct driver_registration *dreg, *dreg_tmp;
  9377. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9378. {
  9379. const char * const dname = sd_iter->string;
  9380. const char * const colon = strpbrk(dname, ":@");
  9381. if (!(colon && colon != dname))
  9382. continue;
  9383. const char * const ser = &colon[1];
  9384. LL_FOREACH2(infolist, info, same_devid_next)
  9385. {
  9386. if (!_probe_device_match(info, ser))
  9387. continue;
  9388. const size_t dnamelen = (colon - dname);
  9389. if (_probe_device_internal(info, dname, dnamelen))
  9390. return NULL;
  9391. else
  9392. if (opt_hotplug)
  9393. bfg_need_detect_rescan = true;
  9394. }
  9395. }
  9396. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9397. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9398. {
  9399. const struct device_drv * const drv = dreg->drv;
  9400. if (!drv_algo_check(drv))
  9401. continue;
  9402. // Check for "noauto" flag
  9403. // NOTE: driver-specific configuration overrides general
  9404. bool doauto = true;
  9405. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9406. {
  9407. const char * const dname = sd_iter->string;
  9408. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9409. const char *colon = strchr(dname, ':');
  9410. if (!colon)
  9411. colon = &dname[-1];
  9412. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9413. continue;
  9414. const ssize_t dnamelen = (colon - dname);
  9415. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9416. continue;
  9417. doauto = (tolower(colon[1]) == 'a');
  9418. if (dnamelen != -1)
  9419. break;
  9420. }
  9421. if (doauto && drv->lowl_match)
  9422. {
  9423. LL_FOREACH2(infolist, info, same_devid_next)
  9424. {
  9425. if (!drv->lowl_match(info))
  9426. continue;
  9427. if (drv->lowl_probe(info))
  9428. return NULL;
  9429. else
  9430. if (opt_hotplug)
  9431. bfg_need_detect_rescan = true;
  9432. }
  9433. }
  9434. }
  9435. // probe driver(s) with 'all' enabled
  9436. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9437. {
  9438. const char * const dname = sd_iter->string;
  9439. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9440. const char * const colon = strchr(dname, ':');
  9441. if (!colon)
  9442. {
  9443. LL_FOREACH2(infolist, info, same_devid_next)
  9444. {
  9445. if (
  9446. #ifdef NEED_BFG_LOWL_VCOM
  9447. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9448. #endif
  9449. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9450. {
  9451. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9452. {
  9453. const struct device_drv * const drv = dreg->drv;
  9454. if (!drv_algo_check(drv))
  9455. continue;
  9456. if (drv->lowl_probe_by_name_only)
  9457. continue;
  9458. if (!drv->lowl_probe)
  9459. continue;
  9460. if (drv->lowl_probe(info))
  9461. return NULL;
  9462. }
  9463. if (opt_hotplug)
  9464. bfg_need_detect_rescan = true;
  9465. break;
  9466. }
  9467. }
  9468. continue;
  9469. }
  9470. if (strcasecmp(&colon[1], "all"))
  9471. continue;
  9472. const size_t dnamelen = (colon - dname);
  9473. LL_FOREACH2(infolist, info, same_devid_next)
  9474. {
  9475. if (_probe_device_internal(info, dname, dnamelen))
  9476. return NULL;
  9477. }
  9478. }
  9479. return NULL;
  9480. }
  9481. void probe_device(struct lowlevel_device_info * const info)
  9482. {
  9483. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9484. }
  9485. #endif
  9486. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9487. {
  9488. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9489. int devcount, i, mining_threads_new = 0;
  9490. unsigned int k;
  9491. struct cgpu_info *cgpu;
  9492. struct thr_info *thr;
  9493. void *p;
  9494. mutex_lock(&mutex);
  9495. devcount = total_devices;
  9496. addfunc(arg);
  9497. if (!total_devices_new)
  9498. goto out;
  9499. wr_lock(&devices_lock);
  9500. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9501. if (unlikely(!p))
  9502. {
  9503. wr_unlock(&devices_lock);
  9504. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9505. goto out;
  9506. }
  9507. devices = p;
  9508. wr_unlock(&devices_lock);
  9509. for (i = 0; i < total_devices_new; ++i)
  9510. {
  9511. cgpu = devices_new[i];
  9512. mining_threads_new += cgpu->threads ?: 1;
  9513. }
  9514. wr_lock(&mining_thr_lock);
  9515. mining_threads_new += mining_threads;
  9516. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9517. if (unlikely(!p))
  9518. {
  9519. wr_unlock(&mining_thr_lock);
  9520. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9521. goto out;
  9522. }
  9523. mining_thr = p;
  9524. wr_unlock(&mining_thr_lock);
  9525. for (i = mining_threads; i < mining_threads_new; ++i) {
  9526. mining_thr[i] = calloc(1, sizeof(*thr));
  9527. if (!mining_thr[i])
  9528. {
  9529. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9530. for ( ; --i >= mining_threads; )
  9531. free(mining_thr[i]);
  9532. goto out;
  9533. }
  9534. }
  9535. k = mining_threads;
  9536. for (i = 0; i < total_devices_new; ++i)
  9537. {
  9538. cgpu = devices_new[i];
  9539. allocate_cgpu(cgpu, &k);
  9540. }
  9541. for (i = 0; i < total_devices_new; ++i)
  9542. {
  9543. cgpu = devices_new[i];
  9544. start_cgpu(cgpu);
  9545. register_device(cgpu);
  9546. ++total_devices;
  9547. }
  9548. #ifdef HAVE_CURSES
  9549. switch_logsize();
  9550. #endif
  9551. out:
  9552. total_devices_new = 0;
  9553. devcount = total_devices - devcount;
  9554. mutex_unlock(&mutex);
  9555. return devcount;
  9556. }
  9557. int scan_serial(const char *s)
  9558. {
  9559. return create_new_cgpus(_scan_serial, (void*)s);
  9560. }
  9561. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9562. static bool rescan_active;
  9563. static struct timeval tv_rescan;
  9564. static notifier_t rescan_notifier;
  9565. static
  9566. void *rescan_thread(__maybe_unused void *p)
  9567. {
  9568. pthread_detach(pthread_self());
  9569. RenameThread("rescan");
  9570. struct timeval tv_timeout, tv_now;
  9571. fd_set rfds;
  9572. while (true)
  9573. {
  9574. mutex_lock(&rescan_mutex);
  9575. tv_timeout = tv_rescan;
  9576. if (!timer_isset(&tv_timeout))
  9577. {
  9578. rescan_active = false;
  9579. mutex_unlock(&rescan_mutex);
  9580. break;
  9581. }
  9582. mutex_unlock(&rescan_mutex);
  9583. FD_ZERO(&rfds);
  9584. FD_SET(rescan_notifier[0], &rfds);
  9585. const int maxfd = rescan_notifier[0];
  9586. timer_set_now(&tv_now);
  9587. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9588. notifier_read(rescan_notifier);
  9589. mutex_lock(&rescan_mutex);
  9590. if (timer_passed(&tv_rescan, NULL))
  9591. {
  9592. timer_unset(&tv_rescan);
  9593. mutex_unlock(&rescan_mutex);
  9594. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9595. scan_serial(NULL);
  9596. }
  9597. else
  9598. mutex_unlock(&rescan_mutex);
  9599. }
  9600. return NULL;
  9601. }
  9602. static
  9603. void _schedule_rescan(const struct timeval * const tvp_when)
  9604. {
  9605. if (rescan_active)
  9606. {
  9607. if (timercmp(tvp_when, &tv_rescan, <))
  9608. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9609. else
  9610. {
  9611. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9612. tv_rescan = *tvp_when;
  9613. }
  9614. return;
  9615. }
  9616. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9617. tv_rescan = *tvp_when;
  9618. rescan_active = true;
  9619. static pthread_t pth;
  9620. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9621. applog(LOG_ERR, "Failed to start rescan thread");
  9622. }
  9623. static
  9624. void schedule_rescan(const struct timeval * const tvp_when)
  9625. {
  9626. mutex_lock(&rescan_mutex);
  9627. _schedule_rescan(tvp_when);
  9628. mutex_unlock(&rescan_mutex);
  9629. }
  9630. #ifdef HAVE_BFG_HOTPLUG
  9631. static
  9632. void hotplug_trigger()
  9633. {
  9634. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9635. struct timeval tv_now;
  9636. timer_set_now(&tv_now);
  9637. schedule_rescan(&tv_now);
  9638. }
  9639. #endif
  9640. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9641. static
  9642. void *hotplug_thread(__maybe_unused void *p)
  9643. {
  9644. pthread_detach(pthread_self());
  9645. RenameThread("hotplug");
  9646. struct udev * const udev = udev_new();
  9647. if (unlikely(!udev))
  9648. applogfailr(NULL, LOG_ERR, "udev_new");
  9649. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9650. if (unlikely(!mon))
  9651. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9652. if (unlikely(udev_monitor_enable_receiving(mon)))
  9653. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9654. const int epfd = epoll_create(1);
  9655. if (unlikely(epfd == -1))
  9656. applogfailr(NULL, LOG_ERR, "epoll_create");
  9657. {
  9658. const int fd = udev_monitor_get_fd(mon);
  9659. struct epoll_event ev = {
  9660. .events = EPOLLIN | EPOLLPRI,
  9661. .data.fd = fd,
  9662. };
  9663. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9664. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9665. }
  9666. struct epoll_event ev;
  9667. int rv;
  9668. bool pending = false;
  9669. while (true)
  9670. {
  9671. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9672. if (rv == -1)
  9673. {
  9674. if (errno == EAGAIN || errno == EINTR)
  9675. continue;
  9676. break;
  9677. }
  9678. if (!rv)
  9679. {
  9680. hotplug_trigger();
  9681. pending = false;
  9682. continue;
  9683. }
  9684. struct udev_device * const device = udev_monitor_receive_device(mon);
  9685. if (!device)
  9686. continue;
  9687. const char * const action = udev_device_get_action(device);
  9688. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9689. if (strcmp(action, "add"))
  9690. continue;
  9691. pending = true;
  9692. }
  9693. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9694. }
  9695. #elif defined(WIN32)
  9696. static UINT_PTR _hotplug_wintimer_id;
  9697. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9698. {
  9699. KillTimer(NULL, _hotplug_wintimer_id);
  9700. _hotplug_wintimer_id = 0;
  9701. hotplug_trigger();
  9702. }
  9703. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9704. {
  9705. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9706. {
  9707. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9708. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9709. }
  9710. return DefWindowProc(hwnd, msg, wParam, lParam);
  9711. }
  9712. static
  9713. void *hotplug_thread(__maybe_unused void *p)
  9714. {
  9715. pthread_detach(pthread_self());
  9716. WNDCLASS DummyWinCls = {
  9717. .lpszClassName = "BFGDummyWinCls",
  9718. .lpfnWndProc = hotplug_win_callback,
  9719. };
  9720. ATOM a = RegisterClass(&DummyWinCls);
  9721. if (unlikely(!a))
  9722. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9723. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9724. if (unlikely(!hwnd))
  9725. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9726. MSG msg;
  9727. while (GetMessage(&msg, NULL, 0, 0))
  9728. {
  9729. TranslateMessage(&msg);
  9730. DispatchMessage(&msg);
  9731. }
  9732. quit(0, "WM_QUIT received");
  9733. return NULL;
  9734. }
  9735. #endif
  9736. #ifdef HAVE_BFG_HOTPLUG
  9737. static
  9738. void hotplug_start()
  9739. {
  9740. pthread_t pth;
  9741. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9742. applog(LOG_ERR, "Failed to start hotplug thread");
  9743. }
  9744. #endif
  9745. static void probe_pools(void)
  9746. {
  9747. int i;
  9748. for (i = 0; i < total_pools; i++) {
  9749. struct pool *pool = pools[i];
  9750. pool->testing = true;
  9751. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9752. }
  9753. }
  9754. static void raise_fd_limits(void)
  9755. {
  9756. #ifdef HAVE_SETRLIMIT
  9757. struct rlimit fdlimit;
  9758. unsigned long old_soft_limit;
  9759. char frombuf[0x10] = "unlimited";
  9760. char hardbuf[0x10] = "unlimited";
  9761. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9762. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9763. old_soft_limit = fdlimit.rlim_cur;
  9764. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9765. fdlimit.rlim_cur = FD_SETSIZE;
  9766. else
  9767. fdlimit.rlim_cur = fdlimit.rlim_max;
  9768. if (fdlimit.rlim_max != RLIM_INFINITY)
  9769. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9770. if (old_soft_limit != RLIM_INFINITY)
  9771. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9772. if (fdlimit.rlim_cur == old_soft_limit)
  9773. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9774. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9775. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9776. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9777. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9778. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9779. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9780. #else
  9781. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9782. #endif
  9783. }
  9784. extern void bfg_init_threadlocal();
  9785. extern void stratumsrv_start();
  9786. int main(int argc, char *argv[])
  9787. {
  9788. struct sigaction handler;
  9789. struct thr_info *thr;
  9790. struct block *block;
  9791. unsigned int k;
  9792. int i;
  9793. int rearrange_pools = 0;
  9794. char *s;
  9795. #ifdef WIN32
  9796. LoadLibrary("backtrace.dll");
  9797. #endif
  9798. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9799. bfg_init_threadlocal();
  9800. #ifndef HAVE_PTHREAD_CANCEL
  9801. setup_pthread_cancel_workaround();
  9802. #endif
  9803. bfg_init_checksums();
  9804. #ifdef WIN32
  9805. {
  9806. WSADATA wsa;
  9807. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9808. if (i)
  9809. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9810. }
  9811. #endif
  9812. /* This dangerous functions tramples random dynamically allocated
  9813. * variables so do it before anything at all */
  9814. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9815. quit(1, "Failed to curl_global_init");
  9816. initial_args = malloc(sizeof(char *) * (argc + 1));
  9817. for (i = 0; i < argc; i++)
  9818. initial_args[i] = strdup(argv[i]);
  9819. initial_args[argc] = NULL;
  9820. mutex_init(&hash_lock);
  9821. mutex_init(&console_lock);
  9822. cglock_init(&control_lock);
  9823. mutex_init(&stats_lock);
  9824. mutex_init(&sharelog_lock);
  9825. cglock_init(&ch_lock);
  9826. mutex_init(&sshare_lock);
  9827. rwlock_init(&blk_lock);
  9828. rwlock_init(&netacc_lock);
  9829. rwlock_init(&mining_thr_lock);
  9830. rwlock_init(&devices_lock);
  9831. mutex_init(&lp_lock);
  9832. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9833. quit(1, "Failed to pthread_cond_init lp_cond");
  9834. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9835. quit(1, "Failed to pthread_cond_init gws_cond");
  9836. notifier_init(submit_waiting_notifier);
  9837. timer_unset(&tv_rescan);
  9838. notifier_init(rescan_notifier);
  9839. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9840. #ifdef WANT_CPUMINE
  9841. init_max_name_len();
  9842. #endif
  9843. handler.sa_handler = &sighandler;
  9844. handler.sa_flags = 0;
  9845. sigemptyset(&handler.sa_mask);
  9846. #ifdef HAVE_PTHREAD_CANCEL
  9847. sigaction(SIGTERM, &handler, &termhandler);
  9848. #else
  9849. // Need to let pthread_cancel emulation handle SIGTERM first
  9850. termhandler = pcwm_orig_term_handler;
  9851. pcwm_orig_term_handler = handler;
  9852. #endif
  9853. sigaction(SIGINT, &handler, &inthandler);
  9854. #ifndef WIN32
  9855. signal(SIGPIPE, SIG_IGN);
  9856. #else
  9857. timeBeginPeriod(1);
  9858. #endif
  9859. opt_kernel_path = CGMINER_PREFIX;
  9860. cgminer_path = alloca(PATH_MAX);
  9861. s = strdup(argv[0]);
  9862. strcpy(cgminer_path, dirname(s));
  9863. free(s);
  9864. strcat(cgminer_path, "/");
  9865. #if defined(WANT_CPUMINE) && defined(WIN32)
  9866. {
  9867. char buf[32];
  9868. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  9869. if (gev > 0 && gev < sizeof(buf))
  9870. {
  9871. setup_benchmark_pool();
  9872. double rate = bench_algo_stage3(atoi(buf));
  9873. // Write result to shared memory for parent
  9874. char unique_name[64];
  9875. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  9876. {
  9877. HANDLE map_handle = CreateFileMapping(
  9878. INVALID_HANDLE_VALUE, // use paging file
  9879. NULL, // default security attributes
  9880. PAGE_READWRITE, // read/write access
  9881. 0, // size: high 32-bits
  9882. 4096, // size: low 32-bits
  9883. unique_name // name of map object
  9884. );
  9885. if (NULL != map_handle) {
  9886. void *shared_mem = MapViewOfFile(
  9887. map_handle, // object to map view of
  9888. FILE_MAP_WRITE, // read/write access
  9889. 0, // high offset: map from
  9890. 0, // low offset: beginning
  9891. 0 // default: map entire file
  9892. );
  9893. if (NULL != shared_mem)
  9894. CopyMemory(shared_mem, &rate, sizeof(rate));
  9895. (void)UnmapViewOfFile(shared_mem);
  9896. }
  9897. (void)CloseHandle(map_handle);
  9898. }
  9899. exit(0);
  9900. }
  9901. }
  9902. #endif
  9903. devcursor = 8;
  9904. logstart = devcursor;
  9905. logcursor = logstart;
  9906. block = calloc(sizeof(struct block), 1);
  9907. if (unlikely(!block))
  9908. quit (1, "main OOM");
  9909. for (i = 0; i < 36; i++)
  9910. strcat(block->hash, "0");
  9911. HASH_ADD_STR(blocks, hash, block);
  9912. strcpy(current_block, block->hash);
  9913. mutex_init(&submitting_lock);
  9914. #ifdef HAVE_OPENCL
  9915. opencl_early_init();
  9916. #endif
  9917. schedstart.tm.tm_sec = 1;
  9918. schedstop .tm.tm_sec = 1;
  9919. opt_register_table(opt_early_table, NULL);
  9920. opt_register_table(opt_config_table, NULL);
  9921. opt_register_table(opt_cmdline_table, NULL);
  9922. opt_early_parse(argc, argv, applog_and_exit);
  9923. if (!config_loaded)
  9924. {
  9925. load_default_config();
  9926. rearrange_pools = total_pools;
  9927. }
  9928. opt_free_table();
  9929. /* parse command line */
  9930. opt_register_table(opt_config_table,
  9931. "Options for both config file and command line");
  9932. opt_register_table(opt_cmdline_table,
  9933. "Options for command line only");
  9934. opt_parse(&argc, argv, applog_and_exit);
  9935. if (argc != 1)
  9936. quit(1, "Unexpected extra commandline arguments");
  9937. if (rearrange_pools && rearrange_pools < total_pools)
  9938. {
  9939. // Prioritise commandline pools before default-config pools
  9940. for (i = 0; i < rearrange_pools; ++i)
  9941. pools[i]->prio += rearrange_pools;
  9942. for ( ; i < total_pools; ++i)
  9943. pools[i]->prio -= rearrange_pools;
  9944. }
  9945. #ifndef HAVE_PTHREAD_CANCEL
  9946. // Can't do this any earlier, or config isn't loaded
  9947. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  9948. #endif
  9949. #ifdef HAVE_PWD_H
  9950. struct passwd *user_info = NULL;
  9951. if (opt_setuid != NULL) {
  9952. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  9953. quit(1, "Unable to find setuid user information");
  9954. }
  9955. }
  9956. #endif
  9957. #ifdef HAVE_CHROOT
  9958. if (chroot_dir != NULL) {
  9959. #ifdef HAVE_PWD_H
  9960. if (user_info == NULL && getuid() == 0) {
  9961. applog(LOG_WARNING, "Running as root inside chroot");
  9962. }
  9963. #endif
  9964. if (chroot(chroot_dir) != 0) {
  9965. quit(1, "Unable to chroot");
  9966. }
  9967. if (chdir("/"))
  9968. quit(1, "Unable to chdir to chroot");
  9969. }
  9970. #endif
  9971. #ifdef HAVE_PWD_H
  9972. if (user_info != NULL) {
  9973. if (setgid((*user_info).pw_gid) != 0)
  9974. quit(1, "Unable to setgid");
  9975. if (setuid((*user_info).pw_uid) != 0)
  9976. quit(1, "Unable to setuid");
  9977. }
  9978. #endif
  9979. raise_fd_limits();
  9980. if (opt_benchmark) {
  9981. while (total_pools)
  9982. remove_pool(pools[0]);
  9983. setup_benchmark_pool();
  9984. }
  9985. if (opt_unittest) {
  9986. test_cgpu_match();
  9987. test_intrange();
  9988. test_decimal_width();
  9989. utf8_test();
  9990. }
  9991. #ifdef HAVE_CURSES
  9992. if (opt_realquiet || opt_display_devs)
  9993. use_curses = false;
  9994. setlocale(LC_ALL, "C");
  9995. if (use_curses)
  9996. enable_curses();
  9997. #endif
  9998. #ifdef HAVE_LIBUSB
  9999. int err = libusb_init(NULL);
  10000. if (err)
  10001. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10002. else
  10003. have_libusb = true;
  10004. #endif
  10005. applog(LOG_WARNING, "Started %s", packagename);
  10006. if (cnfbuf) {
  10007. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10008. switch (fileconf_load) {
  10009. case 0:
  10010. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10011. applog(LOG_WARNING, "Configuration file could not be used.");
  10012. break;
  10013. case -1:
  10014. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10015. if (use_curses)
  10016. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10017. break;
  10018. default:
  10019. break;
  10020. }
  10021. free(cnfbuf);
  10022. cnfbuf = NULL;
  10023. }
  10024. i = strlen(opt_kernel_path) + 2;
  10025. char __kernel_path[i];
  10026. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10027. opt_kernel_path = __kernel_path;
  10028. if (want_per_device_stats)
  10029. opt_log_output = true;
  10030. #ifdef WANT_CPUMINE
  10031. #ifdef USE_SCRYPT
  10032. if (opt_scrypt)
  10033. set_scrypt_algo(&opt_algo);
  10034. #endif
  10035. #endif
  10036. bfg_devapi_init();
  10037. drv_detect_all();
  10038. total_devices = total_devices_new;
  10039. devices = devices_new;
  10040. total_devices_new = 0;
  10041. devices_new = NULL;
  10042. if (opt_display_devs) {
  10043. int devcount = 0;
  10044. applog(LOG_ERR, "Devices detected:");
  10045. for (i = 0; i < total_devices; ++i) {
  10046. struct cgpu_info *cgpu = devices[i];
  10047. char buf[0x100];
  10048. if (cgpu->device != cgpu)
  10049. continue;
  10050. if (cgpu->name)
  10051. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10052. else
  10053. if (cgpu->dev_manufacturer)
  10054. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10055. else
  10056. if (cgpu->dev_product)
  10057. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10058. else
  10059. strcpy(buf, " Device");
  10060. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10061. if (cgpu->dev_serial)
  10062. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10063. if (cgpu->device_path)
  10064. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10065. tailsprintf(buf, sizeof(buf), ")");
  10066. _applog(LOG_NOTICE, buf);
  10067. ++devcount;
  10068. }
  10069. quit(0, "%d devices listed", devcount);
  10070. }
  10071. mining_threads = 0;
  10072. for (i = 0; i < total_devices; ++i)
  10073. register_device(devices[i]);
  10074. if (!total_devices) {
  10075. applog(LOG_WARNING, "No devices detected!");
  10076. if (use_curses)
  10077. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10078. else
  10079. applog(LOG_WARNING, "Waiting for devices");
  10080. }
  10081. if (opt_quit_summary == BQS_DEFAULT)
  10082. {
  10083. if (total_devices < 25)
  10084. opt_quit_summary = BQS_PROCS;
  10085. else
  10086. opt_quit_summary = BQS_DEVS;
  10087. }
  10088. #ifdef HAVE_CURSES
  10089. switch_logsize();
  10090. #endif
  10091. if (!total_pools) {
  10092. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10093. #ifdef HAVE_CURSES
  10094. if (!use_curses || !input_pool(false))
  10095. #endif
  10096. quit(1, "Pool setup failed");
  10097. }
  10098. for (i = 0; i < total_pools; i++) {
  10099. struct pool *pool = pools[i];
  10100. size_t siz;
  10101. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10102. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10103. if (!pool->rpc_url)
  10104. quit(1, "No URI supplied for pool %u", i);
  10105. if (!pool->rpc_userpass) {
  10106. if (!pool->rpc_user || !pool->rpc_pass)
  10107. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10108. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10109. pool->rpc_userpass = malloc(siz);
  10110. if (!pool->rpc_userpass)
  10111. quit(1, "Failed to malloc userpass");
  10112. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10113. }
  10114. }
  10115. /* Set the currentpool to pool with priority 0 */
  10116. validate_pool_priorities();
  10117. for (i = 0; i < total_pools; i++) {
  10118. struct pool *pool = pools[i];
  10119. if (!pool->prio)
  10120. currentpool = pool;
  10121. }
  10122. #ifdef HAVE_SYSLOG_H
  10123. if (use_syslog)
  10124. openlog(PACKAGE, LOG_PID, LOG_USER);
  10125. #endif
  10126. #if defined(unix) || defined(__APPLE__)
  10127. if (opt_stderr_cmd)
  10128. fork_monitor();
  10129. #endif // defined(unix)
  10130. mining_thr = calloc(mining_threads, sizeof(thr));
  10131. if (!mining_thr)
  10132. quit(1, "Failed to calloc mining_thr");
  10133. for (i = 0; i < mining_threads; i++) {
  10134. mining_thr[i] = calloc(1, sizeof(*thr));
  10135. if (!mining_thr[i])
  10136. quit(1, "Failed to calloc mining_thr[%d]", i);
  10137. }
  10138. total_control_threads = 6;
  10139. control_thr = calloc(total_control_threads, sizeof(*thr));
  10140. if (!control_thr)
  10141. quit(1, "Failed to calloc control_thr");
  10142. gwsched_thr_id = 0;
  10143. /* Create a unique get work queue */
  10144. getq = tq_new();
  10145. if (!getq)
  10146. quit(1, "Failed to create getq");
  10147. /* We use the getq mutex as the staged lock */
  10148. stgd_lock = &getq->mutex;
  10149. if (opt_benchmark)
  10150. goto begin_bench;
  10151. for (i = 0; i < total_pools; i++) {
  10152. struct pool *pool = pools[i];
  10153. enable_pool(pool);
  10154. pool->idle = true;
  10155. }
  10156. applog(LOG_NOTICE, "Probing for an alive pool");
  10157. do {
  10158. bool still_testing;
  10159. int i;
  10160. /* Look for at least one active pool before starting */
  10161. probe_pools();
  10162. do {
  10163. sleep(1);
  10164. if (pools_active)
  10165. break;
  10166. still_testing = false;
  10167. for (int i = 0; i < total_pools; ++i)
  10168. if (pools[i]->testing)
  10169. still_testing = true;
  10170. } while (still_testing);
  10171. if (!pools_active) {
  10172. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10173. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10174. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10175. for (i = 0; i < total_pools; i++) {
  10176. struct pool *pool;
  10177. pool = pools[i];
  10178. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10179. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10180. }
  10181. #ifdef HAVE_CURSES
  10182. if (use_curses) {
  10183. halfdelay(150);
  10184. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10185. if (getch() != ERR)
  10186. quit(0, "No servers could be used! Exiting.");
  10187. cbreak();
  10188. } else
  10189. #endif
  10190. quit(0, "No servers could be used! Exiting.");
  10191. }
  10192. } while (!pools_active);
  10193. #ifdef USE_SCRYPT
  10194. if (detect_algo == 1 && !opt_scrypt) {
  10195. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10196. opt_scrypt = true;
  10197. }
  10198. #endif
  10199. detect_algo = 0;
  10200. begin_bench:
  10201. total_mhashes_done = 0;
  10202. for (i = 0; i < total_devices; i++) {
  10203. struct cgpu_info *cgpu = devices[i];
  10204. cgpu->rolling = cgpu->total_mhashes = 0;
  10205. }
  10206. cgtime(&total_tv_start);
  10207. cgtime(&total_tv_end);
  10208. miner_started = total_tv_start;
  10209. time_t miner_start_ts = time(NULL);
  10210. if (schedstart.tm.tm_sec)
  10211. localtime_r(&miner_start_ts, &schedstart.tm);
  10212. if (schedstop.tm.tm_sec)
  10213. localtime_r(&miner_start_ts, &schedstop .tm);
  10214. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10215. // Initialise processors and threads
  10216. k = 0;
  10217. for (i = 0; i < total_devices; ++i) {
  10218. struct cgpu_info *cgpu = devices[i];
  10219. allocate_cgpu(cgpu, &k);
  10220. }
  10221. // Start threads
  10222. for (i = 0; i < total_devices; ++i) {
  10223. struct cgpu_info *cgpu = devices[i];
  10224. start_cgpu(cgpu);
  10225. }
  10226. #ifdef HAVE_OPENCL
  10227. for (i = 0; i < nDevs; i++)
  10228. pause_dynamic_threads(i);
  10229. #endif
  10230. #ifdef WANT_CPUMINE
  10231. applog(LOG_INFO, "%d cpu miner threads started, "
  10232. "using SHA256 '%s' algorithm.",
  10233. opt_n_threads,
  10234. algo_names[opt_algo]);
  10235. #endif
  10236. cgtime(&total_tv_start);
  10237. cgtime(&total_tv_end);
  10238. if (!opt_benchmark)
  10239. {
  10240. pthread_t submit_thread;
  10241. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10242. quit(1, "submit_work thread create failed");
  10243. }
  10244. watchpool_thr_id = 1;
  10245. thr = &control_thr[watchpool_thr_id];
  10246. /* start watchpool thread */
  10247. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10248. quit(1, "watchpool thread create failed");
  10249. pthread_detach(thr->pth);
  10250. watchdog_thr_id = 2;
  10251. thr = &control_thr[watchdog_thr_id];
  10252. /* start watchdog thread */
  10253. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10254. quit(1, "watchdog thread create failed");
  10255. pthread_detach(thr->pth);
  10256. #ifdef HAVE_OPENCL
  10257. /* Create reinit gpu thread */
  10258. gpur_thr_id = 3;
  10259. thr = &control_thr[gpur_thr_id];
  10260. thr->q = tq_new();
  10261. if (!thr->q)
  10262. quit(1, "tq_new failed for gpur_thr_id");
  10263. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10264. quit(1, "reinit_gpu thread create failed");
  10265. #endif
  10266. /* Create API socket thread */
  10267. api_thr_id = 4;
  10268. thr = &control_thr[api_thr_id];
  10269. if (thr_info_create(thr, NULL, api_thread, thr))
  10270. quit(1, "API thread create failed");
  10271. #ifdef USE_LIBMICROHTTPD
  10272. if (httpsrv_port != -1)
  10273. httpsrv_start(httpsrv_port);
  10274. #endif
  10275. #ifdef USE_LIBEVENT
  10276. if (stratumsrv_port != -1)
  10277. stratumsrv_start();
  10278. #endif
  10279. #ifdef HAVE_BFG_HOTPLUG
  10280. if (opt_hotplug && !opt_scrypt)
  10281. hotplug_start();
  10282. #endif
  10283. #ifdef HAVE_CURSES
  10284. /* Create curses input thread for keyboard input. Create this last so
  10285. * that we know all threads are created since this can call kill_work
  10286. * to try and shut down ll previous threads. */
  10287. input_thr_id = 5;
  10288. thr = &control_thr[input_thr_id];
  10289. if (thr_info_create(thr, NULL, input_thread, thr))
  10290. quit(1, "input thread create failed");
  10291. pthread_detach(thr->pth);
  10292. #endif
  10293. /* Just to be sure */
  10294. if (total_control_threads != 6)
  10295. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10296. /* Once everything is set up, main() becomes the getwork scheduler */
  10297. while (42) {
  10298. int ts, max_staged = opt_queue;
  10299. struct pool *pool, *cp;
  10300. bool lagging = false;
  10301. struct curl_ent *ce;
  10302. struct work *work;
  10303. cp = current_pool();
  10304. // Generally, each processor needs a new work, and all at once during work restarts
  10305. max_staged += mining_threads;
  10306. mutex_lock(stgd_lock);
  10307. ts = __total_staged();
  10308. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10309. lagging = true;
  10310. /* Wait until hash_pop tells us we need to create more work */
  10311. if (ts > max_staged) {
  10312. staged_full = true;
  10313. pthread_cond_wait(&gws_cond, stgd_lock);
  10314. ts = __total_staged();
  10315. }
  10316. mutex_unlock(stgd_lock);
  10317. if (ts > max_staged)
  10318. continue;
  10319. work = make_work();
  10320. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10321. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10322. cp->getfail_occasions++;
  10323. total_go++;
  10324. }
  10325. pool = select_pool(lagging);
  10326. retry:
  10327. if (pool->has_stratum) {
  10328. while (!pool->stratum_active || !pool->stratum_notify) {
  10329. struct pool *altpool = select_pool(true);
  10330. if (altpool == pool && pool->has_stratum)
  10331. cgsleep_ms(5000);
  10332. pool = altpool;
  10333. goto retry;
  10334. }
  10335. gen_stratum_work(pool, work);
  10336. applog(LOG_DEBUG, "Generated stratum work");
  10337. stage_work(work);
  10338. continue;
  10339. }
  10340. if (pool->last_work_copy) {
  10341. mutex_lock(&pool->last_work_lock);
  10342. struct work *last_work = pool->last_work_copy;
  10343. if (!last_work)
  10344. {}
  10345. else
  10346. if (can_roll(last_work) && should_roll(last_work)) {
  10347. struct timeval tv_now;
  10348. cgtime(&tv_now);
  10349. free_work(work);
  10350. work = make_clone(pool->last_work_copy);
  10351. mutex_unlock(&pool->last_work_lock);
  10352. roll_work(work);
  10353. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tmpl, tv_now.tv_sec));
  10354. stage_work(work);
  10355. continue;
  10356. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10357. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10358. } else {
  10359. free_work(last_work);
  10360. pool->last_work_copy = NULL;
  10361. }
  10362. mutex_unlock(&pool->last_work_lock);
  10363. }
  10364. if (clone_available()) {
  10365. applog(LOG_DEBUG, "Cloned getwork work");
  10366. free_work(work);
  10367. continue;
  10368. }
  10369. if (opt_benchmark) {
  10370. get_benchmark_work(work);
  10371. applog(LOG_DEBUG, "Generated benchmark work");
  10372. stage_work(work);
  10373. continue;
  10374. }
  10375. work->pool = pool;
  10376. ce = pop_curl_entry3(pool, 2);
  10377. /* obtain new work from bitcoin via JSON-RPC */
  10378. if (!get_upstream_work(work, ce->curl)) {
  10379. struct pool *next_pool;
  10380. /* Make sure the pool just hasn't stopped serving
  10381. * requests but is up as we'll keep hammering it */
  10382. push_curl_entry(ce, pool);
  10383. ++pool->seq_getfails;
  10384. pool_died(pool);
  10385. next_pool = select_pool(!opt_fail_only);
  10386. if (pool == next_pool) {
  10387. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10388. cgsleep_ms(5000);
  10389. } else {
  10390. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10391. pool = next_pool;
  10392. }
  10393. goto retry;
  10394. }
  10395. if (ts >= max_staged)
  10396. pool_tclear(pool, &pool->lagging);
  10397. if (pool_tclear(pool, &pool->idle))
  10398. pool_resus(pool);
  10399. applog(LOG_DEBUG, "Generated getwork work");
  10400. stage_work(work);
  10401. push_curl_entry(ce, pool);
  10402. }
  10403. return 0;
  10404. }