miner.c 292 KB

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