miner.c 306 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <limits.h>
  22. #include <locale.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <sys/time.h>
  30. #include <time.h>
  31. #include <math.h>
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #include <signal.h>
  35. #include <wctype.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <dirent.h>
  39. #ifdef HAVE_PWD_H
  40. #include <pwd.h>
  41. #endif
  42. #ifndef WIN32
  43. #include <sys/resource.h>
  44. #include <sys/socket.h>
  45. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  46. #include <libudev.h>
  47. #include <sys/epoll.h>
  48. #define HAVE_BFG_HOTPLUG
  49. #endif
  50. #else
  51. #include <winsock2.h>
  52. #include <windows.h>
  53. #include <dbt.h>
  54. #define HAVE_BFG_HOTPLUG
  55. #endif
  56. #include <ccan/opt/opt.h>
  57. #include <jansson.h>
  58. #include <curl/curl.h>
  59. #include <libgen.h>
  60. #include <sha2.h>
  61. #include <utlist.h>
  62. #include <blkmaker.h>
  63. #include <blkmaker_jansson.h>
  64. #include <blktemplate.h>
  65. #include "compat.h"
  66. #include "deviceapi.h"
  67. #include "logging.h"
  68. #include "miner.h"
  69. #include "adl.h"
  70. #include "driver-cpu.h"
  71. #include "driver-opencl.h"
  72. #include "scrypt.h"
  73. #ifdef USE_AVALON
  74. #include "driver-avalon.h"
  75. #endif
  76. #ifdef HAVE_BFG_LOWLEVEL
  77. #include "lowlevel.h"
  78. #endif
  79. #if defined(unix) || defined(__APPLE__)
  80. #include <errno.h>
  81. #include <fcntl.h>
  82. #include <sys/wait.h>
  83. #endif
  84. #ifdef USE_SCRYPT
  85. #include "scrypt.h"
  86. #endif
  87. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  88. # define USE_FPGA
  89. #endif
  90. enum bfg_quit_summary {
  91. BQS_DEFAULT,
  92. BQS_NONE,
  93. BQS_DEVS,
  94. BQS_PROCS,
  95. BQS_DETAILED,
  96. };
  97. struct strategies strategies[] = {
  98. { "Failover" },
  99. { "Round Robin" },
  100. { "Rotate" },
  101. { "Load Balance" },
  102. { "Balance" },
  103. };
  104. static char packagename[256];
  105. bool opt_protocol;
  106. bool opt_dev_protocol;
  107. static bool opt_benchmark;
  108. static bool want_longpoll = true;
  109. static bool want_gbt = true;
  110. static bool want_getwork = true;
  111. #if BLKMAKER_VERSION > 1
  112. struct _cbscript_t {
  113. char *data;
  114. size_t sz;
  115. };
  116. static struct _cbscript_t opt_coinbase_script;
  117. static uint32_t template_nonce;
  118. #endif
  119. #if BLKMAKER_VERSION > 0
  120. char *opt_coinbase_sig;
  121. #endif
  122. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  123. static bool include_serial_in_statline;
  124. char *request_target_str;
  125. float request_pdiff = 1.0;
  126. double request_bdiff;
  127. static bool want_stratum = true;
  128. bool have_longpoll;
  129. int opt_skip_checks;
  130. bool want_per_device_stats;
  131. bool use_syslog;
  132. bool opt_quiet_work_updates;
  133. bool opt_quiet;
  134. bool opt_realquiet;
  135. int loginput_size;
  136. bool opt_compact;
  137. bool opt_show_procs;
  138. const int opt_cutofftemp = 95;
  139. int opt_hysteresis = 3;
  140. static int opt_retries = -1;
  141. int opt_fail_pause = 5;
  142. int opt_log_interval = 20;
  143. int opt_queue = 1;
  144. int opt_scantime = 60;
  145. int opt_expiry = 120;
  146. int opt_expiry_lp = 3600;
  147. unsigned long long global_hashrate;
  148. static bool opt_unittest = false;
  149. unsigned long global_quota_gcd = 1;
  150. time_t last_getwork;
  151. #ifdef HAVE_OPENCL
  152. int opt_dynamic_interval = 7;
  153. int nDevs;
  154. int opt_g_threads = -1;
  155. #endif
  156. #ifdef USE_SCRYPT
  157. static char detect_algo = 1;
  158. bool opt_scrypt;
  159. #else
  160. static char detect_algo;
  161. #endif
  162. bool opt_restart = true;
  163. #ifdef USE_LIBMICROHTTPD
  164. #include "httpsrv.h"
  165. int httpsrv_port = -1;
  166. #endif
  167. #ifdef USE_LIBEVENT
  168. int stratumsrv_port = -1;
  169. #endif
  170. const
  171. int rescan_delay_ms = 1000;
  172. #ifdef HAVE_BFG_HOTPLUG
  173. bool opt_hotplug = 1;
  174. const
  175. int hotplug_delay_ms = 100;
  176. #else
  177. const bool opt_hotplug;
  178. #endif
  179. struct string_elist *scan_devices;
  180. static struct string_elist *opt_set_device_list;
  181. bool opt_force_dev_init;
  182. static struct string_elist *opt_devices_enabled_list;
  183. static bool opt_display_devs;
  184. int total_devices;
  185. struct cgpu_info **devices;
  186. int total_devices_new;
  187. struct cgpu_info **devices_new;
  188. bool have_opencl;
  189. int opt_n_threads = -1;
  190. int mining_threads;
  191. int num_processors;
  192. #ifdef HAVE_CURSES
  193. bool use_curses = true;
  194. #else
  195. bool use_curses;
  196. #endif
  197. #ifdef HAVE_LIBUSB
  198. bool have_libusb;
  199. #endif
  200. static bool opt_submit_stale = true;
  201. static float opt_shares;
  202. static int opt_submit_threads = 0x40;
  203. bool opt_fail_only;
  204. bool opt_autofan;
  205. bool opt_autoengine;
  206. bool opt_noadl;
  207. char *opt_api_allow = NULL;
  208. char *opt_api_groups;
  209. char *opt_api_description = PACKAGE_STRING;
  210. int opt_api_port = 4028;
  211. bool opt_api_listen;
  212. bool opt_api_mcast;
  213. char *opt_api_mcast_addr = API_MCAST_ADDR;
  214. char *opt_api_mcast_code = API_MCAST_CODE;
  215. char *opt_api_mcast_des = "";
  216. int opt_api_mcast_port = 4028;
  217. bool opt_api_network;
  218. bool opt_delaynet;
  219. bool opt_disable_pool;
  220. static bool no_work;
  221. bool opt_worktime;
  222. bool opt_weighed_stats;
  223. char *opt_kernel_path;
  224. char *cgminer_path;
  225. #if defined(USE_BITFORCE)
  226. bool opt_bfl_noncerange;
  227. #endif
  228. #define QUIET (opt_quiet || opt_realquiet)
  229. struct thr_info *control_thr;
  230. struct thr_info **mining_thr;
  231. static int gwsched_thr_id;
  232. static int watchpool_thr_id;
  233. static int watchdog_thr_id;
  234. #ifdef HAVE_CURSES
  235. static int input_thr_id;
  236. #endif
  237. int gpur_thr_id;
  238. static int api_thr_id;
  239. static int total_control_threads;
  240. pthread_mutex_t hash_lock;
  241. static pthread_mutex_t *stgd_lock;
  242. pthread_mutex_t console_lock;
  243. cglock_t ch_lock;
  244. static pthread_rwlock_t blk_lock;
  245. static pthread_mutex_t sshare_lock;
  246. pthread_rwlock_t netacc_lock;
  247. pthread_rwlock_t mining_thr_lock;
  248. pthread_rwlock_t devices_lock;
  249. static pthread_mutex_t lp_lock;
  250. static pthread_cond_t lp_cond;
  251. pthread_cond_t gws_cond;
  252. bool shutting_down;
  253. double total_rolling;
  254. double total_mhashes_done;
  255. static struct timeval total_tv_start, total_tv_end;
  256. static struct timeval miner_started;
  257. cglock_t control_lock;
  258. pthread_mutex_t stats_lock;
  259. static pthread_mutex_t submitting_lock;
  260. static int total_submitting;
  261. static struct work *submit_waiting;
  262. notifier_t submit_waiting_notifier;
  263. int hw_errors;
  264. int total_accepted, total_rejected;
  265. int total_getworks, total_stale, total_discarded;
  266. uint64_t total_bytes_rcvd, total_bytes_sent;
  267. double total_diff1, total_bad_diff1;
  268. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  269. static int staged_rollable;
  270. unsigned int new_blocks;
  271. unsigned int found_blocks;
  272. unsigned int local_work;
  273. unsigned int total_go, total_ro;
  274. struct pool **pools;
  275. static struct pool *currentpool = NULL;
  276. int total_pools, enabled_pools;
  277. enum pool_strategy pool_strategy = POOL_FAILOVER;
  278. int opt_rotate_period;
  279. static int total_urls, total_users, total_passes;
  280. static
  281. #ifndef HAVE_CURSES
  282. const
  283. #endif
  284. bool curses_active;
  285. #ifdef HAVE_CURSES
  286. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  287. const
  288. #endif
  289. short default_bgcolor = COLOR_BLACK;
  290. static int attr_title = A_BOLD;
  291. #endif
  292. static
  293. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  294. bool use_unicode;
  295. static
  296. bool have_unicode_degrees;
  297. static
  298. wchar_t unicode_micro = 'u';
  299. #else
  300. const bool use_unicode;
  301. static
  302. const bool have_unicode_degrees;
  303. static
  304. const char unicode_micro = 'u';
  305. #endif
  306. #ifdef HAVE_CURSES
  307. #define U8_BAD_START "\xef\x80\x81"
  308. #define U8_BAD_END "\xef\x80\x80"
  309. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  310. bool selecting_device;
  311. unsigned selected_device;
  312. #endif
  313. static char current_block[40];
  314. /* Protected by ch_lock */
  315. static char *current_hash;
  316. static uint32_t current_block_id;
  317. char *current_fullhash;
  318. static char datestamp[40];
  319. static char blocktime[32];
  320. time_t block_time;
  321. static char best_share[8] = "0";
  322. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  323. static char block_diff[8];
  324. static char net_hashrate[10];
  325. double best_diff = 0;
  326. static bool known_blkheight_current;
  327. static uint32_t known_blkheight;
  328. static uint32_t known_blkheight_blkid;
  329. static uint64_t block_subsidy;
  330. struct block {
  331. char hash[40];
  332. UT_hash_handle hh;
  333. int block_no;
  334. };
  335. static struct block *blocks = NULL;
  336. int swork_id;
  337. /* For creating a hash database of stratum shares submitted that have not had
  338. * a response yet */
  339. struct stratum_share {
  340. UT_hash_handle hh;
  341. bool block;
  342. struct work *work;
  343. int id;
  344. };
  345. static struct stratum_share *stratum_shares = NULL;
  346. char *opt_socks_proxy = NULL;
  347. static const char def_conf[] = "bfgminer.conf";
  348. static bool config_loaded;
  349. static int include_count;
  350. #define JSON_INCLUDE_CONF "include"
  351. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  352. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  353. #define JSON_MAX_DEPTH 10
  354. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  355. char *cmd_idle, *cmd_sick, *cmd_dead;
  356. #if defined(unix) || defined(__APPLE__)
  357. static char *opt_stderr_cmd = NULL;
  358. static int forkpid;
  359. #endif // defined(unix)
  360. #ifdef HAVE_CHROOT
  361. char *chroot_dir;
  362. #endif
  363. #ifdef HAVE_PWD_H
  364. char *opt_setuid;
  365. #endif
  366. struct sigaction termhandler, inthandler;
  367. struct thread_q *getq;
  368. static int total_work;
  369. static bool staged_full;
  370. struct work *staged_work = NULL;
  371. struct schedtime {
  372. bool enable;
  373. struct tm tm;
  374. };
  375. struct schedtime schedstart;
  376. struct schedtime schedstop;
  377. bool sched_paused;
  378. static bool time_before(struct tm *tm1, struct tm *tm2)
  379. {
  380. if (tm1->tm_hour < tm2->tm_hour)
  381. return true;
  382. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  383. return true;
  384. return false;
  385. }
  386. static bool should_run(void)
  387. {
  388. struct tm tm;
  389. time_t tt;
  390. bool within_range;
  391. if (!schedstart.enable && !schedstop.enable)
  392. return true;
  393. tt = time(NULL);
  394. localtime_r(&tt, &tm);
  395. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  396. if (time_before(&schedstop.tm, &schedstart.tm))
  397. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  398. else
  399. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  400. if (within_range && !schedstop.enable)
  401. /* This is a once off event with no stop time set */
  402. schedstart.enable = false;
  403. return within_range;
  404. }
  405. void get_datestamp(char *f, size_t fsiz, time_t tt)
  406. {
  407. struct tm _tm;
  408. struct tm *tm = &_tm;
  409. if (tt == INVALID_TIMESTAMP)
  410. tt = time(NULL);
  411. localtime_r(&tt, tm);
  412. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  413. tm->tm_year + 1900,
  414. tm->tm_mon + 1,
  415. tm->tm_mday,
  416. tm->tm_hour,
  417. tm->tm_min,
  418. tm->tm_sec);
  419. }
  420. static
  421. void get_timestamp(char *f, size_t fsiz, time_t tt)
  422. {
  423. struct tm _tm;
  424. struct tm *tm = &_tm;
  425. localtime_r(&tt, tm);
  426. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  427. tm->tm_hour,
  428. tm->tm_min,
  429. tm->tm_sec);
  430. }
  431. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  432. static char exit_buf[512];
  433. static void applog_and_exit(const char *fmt, ...)
  434. {
  435. va_list ap;
  436. va_start(ap, fmt);
  437. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  438. va_end(ap);
  439. _applog(LOG_ERR, exit_buf);
  440. exit(1);
  441. }
  442. char *devpath_to_devid(const char *devpath)
  443. {
  444. #ifndef WIN32
  445. struct stat my_stat;
  446. if (stat(devpath, &my_stat))
  447. return NULL;
  448. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  449. memcpy(devs, "dev_t:", 6);
  450. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  451. #else
  452. if (!strncmp(devpath, "\\\\.\\", 4))
  453. devpath += 4;
  454. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  455. return NULL;
  456. devpath += 3;
  457. char *p;
  458. strtol(devpath, &p, 10);
  459. if (p[0])
  460. return NULL;
  461. const int sz = (p - devpath);
  462. char *devs = malloc(4 + sz + 1);
  463. sprintf(devs, "com:%s", devpath);
  464. #endif
  465. return devs;
  466. }
  467. static
  468. bool devpaths_match(const char * const ap, const char * const bp)
  469. {
  470. char * const a = devpath_to_devid(ap);
  471. if (!a)
  472. return false;
  473. char * const b = devpath_to_devid(bp);
  474. bool rv = false;
  475. if (b)
  476. {
  477. rv = !strcmp(a, b);
  478. free(b);
  479. }
  480. free(a);
  481. return rv;
  482. }
  483. static
  484. int proc_letter_to_number(const char *s, const char ** const rem)
  485. {
  486. int n = 0, c;
  487. for ( ; s[0]; ++s)
  488. {
  489. if (unlikely(n > INT_MAX / 26))
  490. break;
  491. c = tolower(s[0]) - 'a';
  492. if (unlikely(c < 0 || c > 25))
  493. break;
  494. if (unlikely(INT_MAX - c < n))
  495. break;
  496. n = (n * 26) + c;
  497. }
  498. *rem = s;
  499. return n;
  500. }
  501. static
  502. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  503. {
  504. // all - matches anything
  505. // d0 - matches all processors of device 0
  506. // d0-3 - matches all processors of device 0, 1, 2, or 3
  507. // d0a - matches first processor of device 0
  508. // 0 - matches processor 0
  509. // 0-4 - matches processors 0, 1, 2, 3, or 4
  510. // ___ - matches all processors on all devices using driver/name ___
  511. // ___0 - matches all processors of 0th device using driver/name ___
  512. // ___0a - matches first processor of 0th device using driver/name ___
  513. // @* - matches device with serial or path *
  514. // @*@a - matches first processor of device with serial or path *
  515. // ___@* - matches device with serial or path * using driver/name ___
  516. if (!strcasecmp(pattern, "all"))
  517. return true;
  518. const struct device_drv * const drv = cgpu->drv;
  519. const char *p = pattern, *p2;
  520. size_t L;
  521. int n, i, c = -1;
  522. int n2;
  523. int proc_first = -1, proc_last = -1;
  524. struct cgpu_info *device;
  525. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  526. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  527. // dname or name
  528. p = &pattern[L];
  529. else
  530. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  531. // d#
  532. ++p;
  533. else
  534. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  535. // # or @
  536. {}
  537. else
  538. return false;
  539. L = p - pattern;
  540. while (isspace(p[0]))
  541. ++p;
  542. if (p[0] == '@')
  543. {
  544. // Serial/path
  545. const char * const ser = &p[1];
  546. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  547. {}
  548. p2 = (p[0] == '@') ? &p[1] : p;
  549. const size_t serlen = (p - ser);
  550. p = "";
  551. n = n2 = 0;
  552. const char * const devpath = cgpu->device_path ?: "";
  553. const char * const devser = cgpu->dev_serial ?: "";
  554. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  555. {} // Match
  556. else
  557. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  558. {} // Match
  559. else
  560. {
  561. char devpath2[serlen + 1];
  562. memcpy(devpath2, ser, serlen);
  563. devpath2[serlen] = '\0';
  564. if (!devpaths_match(devpath, ser))
  565. return false;
  566. }
  567. }
  568. else
  569. {
  570. if (isdigit(p[0]))
  571. n = strtol(p, (void*)&p2, 0);
  572. else
  573. {
  574. n = 0;
  575. p2 = p;
  576. }
  577. if (p2[0] == '-')
  578. {
  579. ++p2;
  580. if (p2[0] && isdigit(p2[0]))
  581. n2 = strtol(p2, (void*)&p2, 0);
  582. else
  583. n2 = INT_MAX;
  584. }
  585. else
  586. n2 = n;
  587. if (p == pattern)
  588. {
  589. if (!p[0])
  590. return true;
  591. if (p2 && p2[0])
  592. goto invsyntax;
  593. for (i = n; i <= n2; ++i)
  594. {
  595. if (i >= total_devices)
  596. break;
  597. if (cgpu == devices[i])
  598. return true;
  599. }
  600. return false;
  601. }
  602. }
  603. if (p2[0])
  604. {
  605. proc_first = proc_letter_to_number(&p2[0], &p2);
  606. if (p2[0] == '-')
  607. {
  608. ++p2;
  609. if (p2[0])
  610. proc_last = proc_letter_to_number(p2, &p2);
  611. else
  612. proc_last = INT_MAX;
  613. }
  614. else
  615. proc_last = proc_first;
  616. if (p2[0])
  617. goto invsyntax;
  618. }
  619. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  620. {
  621. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  622. (!L) ||
  623. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  624. {} // Matched name or dname
  625. else
  626. return false;
  627. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  628. return false;
  629. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  630. return false;
  631. return true;
  632. }
  633. // d#
  634. c = -1;
  635. for (i = 0; ; ++i)
  636. {
  637. if (i == total_devices)
  638. return false;
  639. if (devices[i]->device != devices[i])
  640. continue;
  641. ++c;
  642. if (c < n)
  643. continue;
  644. if (c > n2)
  645. break;
  646. for (device = devices[i]; device; device = device->next_proc)
  647. {
  648. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  649. continue;
  650. if (device == cgpu)
  651. return true;
  652. }
  653. }
  654. return false;
  655. invsyntax:
  656. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  657. return false;
  658. }
  659. #define TEST_CGPU_MATCH(pattern) \
  660. if (!cgpu_match(pattern, &cgpu)) \
  661. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  662. // END TEST_CGPU_MATCH
  663. #define TEST_CGPU_NOMATCH(pattern) \
  664. if (cgpu_match(pattern, &cgpu)) \
  665. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  666. // END TEST_CGPU_MATCH
  667. static __maybe_unused
  668. void test_cgpu_match()
  669. {
  670. struct device_drv drv = {
  671. .dname = "test",
  672. .name = "TST",
  673. };
  674. struct cgpu_info cgpu = {
  675. .drv = &drv,
  676. .device = &cgpu,
  677. .device_id = 1,
  678. .proc_id = 1,
  679. .proc_repr = "TST 1b",
  680. }, cgpu0a = {
  681. .drv = &drv,
  682. .device = &cgpu0a,
  683. .device_id = 0,
  684. .proc_id = 0,
  685. .proc_repr = "TST 0a",
  686. }, cgpu1a = {
  687. .drv = &drv,
  688. .device = &cgpu0a,
  689. .device_id = 1,
  690. .proc_id = 0,
  691. .proc_repr = "TST 1a",
  692. };
  693. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  694. devices = devices_list;
  695. total_devices = 3;
  696. TEST_CGPU_MATCH("all")
  697. TEST_CGPU_MATCH("d1")
  698. TEST_CGPU_NOMATCH("d2")
  699. TEST_CGPU_MATCH("d0-5")
  700. TEST_CGPU_NOMATCH("d0-0")
  701. TEST_CGPU_NOMATCH("d2-5")
  702. TEST_CGPU_MATCH("d-1")
  703. TEST_CGPU_MATCH("d1-")
  704. TEST_CGPU_NOMATCH("d-0")
  705. TEST_CGPU_NOMATCH("d2-")
  706. TEST_CGPU_MATCH("2")
  707. TEST_CGPU_NOMATCH("3")
  708. TEST_CGPU_MATCH("1-2")
  709. TEST_CGPU_MATCH("2-3")
  710. TEST_CGPU_NOMATCH("1-1")
  711. TEST_CGPU_NOMATCH("3-4")
  712. TEST_CGPU_MATCH("TST")
  713. TEST_CGPU_MATCH("test")
  714. TEST_CGPU_MATCH("tst")
  715. TEST_CGPU_MATCH("TEST")
  716. TEST_CGPU_NOMATCH("TSF")
  717. TEST_CGPU_NOMATCH("TS")
  718. TEST_CGPU_NOMATCH("TSTF")
  719. TEST_CGPU_MATCH("TST1")
  720. TEST_CGPU_MATCH("test1")
  721. TEST_CGPU_MATCH("TST0-1")
  722. TEST_CGPU_MATCH("TST 1")
  723. TEST_CGPU_MATCH("TST 1-2")
  724. TEST_CGPU_MATCH("TEST 1-2")
  725. TEST_CGPU_NOMATCH("TST2")
  726. TEST_CGPU_NOMATCH("TST2-3")
  727. TEST_CGPU_NOMATCH("TST0-0")
  728. TEST_CGPU_MATCH("TST1b")
  729. TEST_CGPU_MATCH("tst1b")
  730. TEST_CGPU_NOMATCH("TST1c")
  731. TEST_CGPU_NOMATCH("TST1bb")
  732. TEST_CGPU_MATCH("TST0-1b")
  733. TEST_CGPU_NOMATCH("TST0-1c")
  734. TEST_CGPU_MATCH("TST1a-d")
  735. TEST_CGPU_NOMATCH("TST1a-a")
  736. TEST_CGPU_NOMATCH("TST1-a")
  737. TEST_CGPU_NOMATCH("TST1c-z")
  738. TEST_CGPU_NOMATCH("TST1c-")
  739. TEST_CGPU_MATCH("@")
  740. TEST_CGPU_NOMATCH("@abc")
  741. TEST_CGPU_MATCH("@@b")
  742. TEST_CGPU_NOMATCH("@@c")
  743. TEST_CGPU_MATCH("TST@")
  744. TEST_CGPU_NOMATCH("TST@abc")
  745. TEST_CGPU_MATCH("TST@@b")
  746. TEST_CGPU_NOMATCH("TST@@c")
  747. TEST_CGPU_MATCH("TST@@b-f")
  748. TEST_CGPU_NOMATCH("TST@@c-f")
  749. TEST_CGPU_NOMATCH("TST@@-a")
  750. cgpu.device_path = "/dev/test";
  751. cgpu.dev_serial = "testy";
  752. TEST_CGPU_MATCH("TST@/dev/test")
  753. TEST_CGPU_MATCH("TST@testy")
  754. TEST_CGPU_NOMATCH("TST@")
  755. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  756. TEST_CGPU_NOMATCH("TST@testy3@b")
  757. TEST_CGPU_MATCH("TST@/dev/test@b")
  758. TEST_CGPU_MATCH("TST@testy@b")
  759. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  760. TEST_CGPU_NOMATCH("TST@testy@c")
  761. cgpu.device_path = "usb:000:999";
  762. TEST_CGPU_MATCH("TST@usb:000:999")
  763. drv.dname = "test7";
  764. TEST_CGPU_MATCH("test7")
  765. TEST_CGPU_MATCH("TEST7")
  766. TEST_CGPU_NOMATCH("test&")
  767. TEST_CGPU_MATCH("test7 1-2")
  768. TEST_CGPU_MATCH("test7@testy@b")
  769. }
  770. static
  771. int cgpu_search(const char * const pattern, const int first)
  772. {
  773. int i;
  774. struct cgpu_info *cgpu;
  775. #define CHECK_CGPU_SEARCH do{ \
  776. cgpu = get_devices(i); \
  777. if (cgpu_match(pattern, cgpu)) \
  778. return i; \
  779. }while(0)
  780. for (i = first; i < total_devices; ++i)
  781. CHECK_CGPU_SEARCH;
  782. for (i = 0; i < first; ++i)
  783. CHECK_CGPU_SEARCH;
  784. #undef CHECK_CGPU_SEARCH
  785. return -1;
  786. }
  787. static pthread_mutex_t sharelog_lock;
  788. static FILE *sharelog_file = NULL;
  789. struct thr_info *get_thread(int thr_id)
  790. {
  791. struct thr_info *thr;
  792. rd_lock(&mining_thr_lock);
  793. thr = mining_thr[thr_id];
  794. rd_unlock(&mining_thr_lock);
  795. return thr;
  796. }
  797. static struct cgpu_info *get_thr_cgpu(int thr_id)
  798. {
  799. struct thr_info *thr = get_thread(thr_id);
  800. return thr->cgpu;
  801. }
  802. struct cgpu_info *get_devices(int id)
  803. {
  804. struct cgpu_info *cgpu;
  805. rd_lock(&devices_lock);
  806. cgpu = devices[id];
  807. rd_unlock(&devices_lock);
  808. return cgpu;
  809. }
  810. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  811. static FILE *noncelog_file = NULL;
  812. static
  813. void noncelog(const struct work * const work)
  814. {
  815. const int thr_id = work->thr_id;
  816. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  817. char buf[0x200], hash[65], data[161], midstate[65];
  818. int rv;
  819. size_t ret;
  820. bin2hex(hash, work->hash, 32);
  821. bin2hex(data, work->data, 80);
  822. bin2hex(midstate, work->midstate, 32);
  823. // timestamp,proc,hash,data,midstate
  824. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  825. (unsigned long)time(NULL), proc->proc_repr_ns,
  826. hash, data, midstate);
  827. if (unlikely(rv < 1))
  828. {
  829. applog(LOG_ERR, "noncelog printf error");
  830. return;
  831. }
  832. mutex_lock(&noncelog_lock);
  833. ret = fwrite(buf, rv, 1, noncelog_file);
  834. fflush(noncelog_file);
  835. mutex_unlock(&noncelog_lock);
  836. if (ret != 1)
  837. applog(LOG_ERR, "noncelog fwrite error");
  838. }
  839. static void sharelog(const char*disposition, const struct work*work)
  840. {
  841. char target[(sizeof(work->target) * 2) + 1];
  842. char hash[(sizeof(work->hash) * 2) + 1];
  843. char data[(sizeof(work->data) * 2) + 1];
  844. struct cgpu_info *cgpu;
  845. unsigned long int t;
  846. struct pool *pool;
  847. int thr_id, rv;
  848. char s[1024];
  849. size_t ret;
  850. if (!sharelog_file)
  851. return;
  852. thr_id = work->thr_id;
  853. cgpu = get_thr_cgpu(thr_id);
  854. pool = work->pool;
  855. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  856. bin2hex(target, work->target, sizeof(work->target));
  857. bin2hex(hash, work->hash, sizeof(work->hash));
  858. bin2hex(data, work->data, sizeof(work->data));
  859. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  860. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->proc_repr_ns, thr_id, hash, data);
  861. if (rv >= (int)(sizeof(s)))
  862. s[sizeof(s) - 1] = '\0';
  863. else if (rv < 0) {
  864. applog(LOG_ERR, "sharelog printf error");
  865. return;
  866. }
  867. mutex_lock(&sharelog_lock);
  868. ret = fwrite(s, rv, 1, sharelog_file);
  869. fflush(sharelog_file);
  870. mutex_unlock(&sharelog_lock);
  871. if (ret != 1)
  872. applog(LOG_ERR, "sharelog fwrite error");
  873. }
  874. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  875. /* Adjust all the pools' quota to the greatest common denominator after a pool
  876. * has been added or the quotas changed. */
  877. void adjust_quota_gcd(void)
  878. {
  879. unsigned long gcd, lowest_quota = ~0UL, quota;
  880. struct pool *pool;
  881. int i;
  882. for (i = 0; i < total_pools; i++) {
  883. pool = pools[i];
  884. quota = pool->quota;
  885. if (!quota)
  886. continue;
  887. if (quota < lowest_quota)
  888. lowest_quota = quota;
  889. }
  890. if (likely(lowest_quota < ~0UL)) {
  891. gcd = lowest_quota;
  892. for (i = 0; i < total_pools; i++) {
  893. pool = pools[i];
  894. quota = pool->quota;
  895. if (!quota)
  896. continue;
  897. while (quota % gcd)
  898. gcd--;
  899. }
  900. } else
  901. gcd = 1;
  902. for (i = 0; i < total_pools; i++) {
  903. pool = pools[i];
  904. pool->quota_used *= global_quota_gcd;
  905. pool->quota_used /= gcd;
  906. pool->quota_gcd = pool->quota / gcd;
  907. }
  908. global_quota_gcd = gcd;
  909. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  910. }
  911. /* Return value is ignored if not called from add_pool_details */
  912. struct pool *add_pool(void)
  913. {
  914. struct pool *pool;
  915. pool = calloc(sizeof(struct pool), 1);
  916. if (!pool)
  917. quit(1, "Failed to malloc pool in add_pool");
  918. pool->pool_no = pool->prio = total_pools;
  919. mutex_init(&pool->last_work_lock);
  920. mutex_init(&pool->pool_lock);
  921. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  922. quit(1, "Failed to pthread_cond_init in add_pool");
  923. cglock_init(&pool->data_lock);
  924. mutex_init(&pool->stratum_lock);
  925. timer_unset(&pool->swork.tv_transparency);
  926. /* Make sure the pool doesn't think we've been idle since time 0 */
  927. pool->tv_idle.tv_sec = ~0UL;
  928. cgtime(&pool->cgminer_stats.start_tv);
  929. pool->rpc_proxy = NULL;
  930. pool->quota = 1;
  931. pool->sock = INVSOCK;
  932. pool->lp_socket = CURL_SOCKET_BAD;
  933. if (opt_benchmark)
  934. {
  935. // Don't add to pools array, but immediately remove it
  936. remove_pool(pool);
  937. return pool;
  938. }
  939. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  940. pools[total_pools++] = pool;
  941. adjust_quota_gcd();
  942. return pool;
  943. }
  944. /* Pool variant of test and set */
  945. static bool pool_tset(struct pool *pool, bool *var)
  946. {
  947. bool ret;
  948. mutex_lock(&pool->pool_lock);
  949. ret = *var;
  950. *var = true;
  951. mutex_unlock(&pool->pool_lock);
  952. return ret;
  953. }
  954. bool pool_tclear(struct pool *pool, bool *var)
  955. {
  956. bool ret;
  957. mutex_lock(&pool->pool_lock);
  958. ret = *var;
  959. *var = false;
  960. mutex_unlock(&pool->pool_lock);
  961. return ret;
  962. }
  963. struct pool *current_pool(void)
  964. {
  965. struct pool *pool;
  966. cg_rlock(&control_lock);
  967. pool = currentpool;
  968. cg_runlock(&control_lock);
  969. return pool;
  970. }
  971. // Copied from ccan/opt/helpers.c
  972. static char *arg_bad(const char *fmt, const char *arg)
  973. {
  974. char *str = malloc(strlen(fmt) + strlen(arg));
  975. sprintf(str, fmt, arg);
  976. return str;
  977. }
  978. static
  979. char *opt_set_floatval(const char *arg, float *f)
  980. {
  981. char *endp;
  982. errno = 0;
  983. *f = strtof(arg, &endp);
  984. if (*endp || !arg[0])
  985. return arg_bad("'%s' is not a number", arg);
  986. if (errno)
  987. return arg_bad("'%s' is out of range", arg);
  988. return NULL;
  989. }
  990. static
  991. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  992. {
  993. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  994. }
  995. static
  996. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  997. {
  998. return opt_set_bool(b);
  999. }
  1000. char *set_int_range(const char *arg, int *i, int min, int max)
  1001. {
  1002. char *err = opt_set_intval(arg, i);
  1003. if (err)
  1004. return err;
  1005. if (*i < min || *i > max)
  1006. return "Value out of range";
  1007. return NULL;
  1008. }
  1009. static char *set_int_0_to_9999(const char *arg, int *i)
  1010. {
  1011. return set_int_range(arg, i, 0, 9999);
  1012. }
  1013. static char *set_int_1_to_65535(const char *arg, int *i)
  1014. {
  1015. return set_int_range(arg, i, 1, 65535);
  1016. }
  1017. static char *set_int_0_to_10(const char *arg, int *i)
  1018. {
  1019. return set_int_range(arg, i, 0, 10);
  1020. }
  1021. static char *set_int_1_to_10(const char *arg, int *i)
  1022. {
  1023. return set_int_range(arg, i, 1, 10);
  1024. }
  1025. char *set_strdup(const char *arg, char **p)
  1026. {
  1027. *p = strdup((char *)arg);
  1028. return NULL;
  1029. }
  1030. #if BLKMAKER_VERSION > 1
  1031. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1032. {
  1033. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1034. if (!scriptsz)
  1035. return "Invalid address";
  1036. char *script = malloc(scriptsz);
  1037. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1038. free(script);
  1039. return "Failed to convert address to script";
  1040. }
  1041. p->data = script;
  1042. p->sz = scriptsz;
  1043. return NULL;
  1044. }
  1045. #endif
  1046. static
  1047. char *set_quit_summary(const char * const arg)
  1048. {
  1049. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1050. opt_quit_summary = BQS_NONE;
  1051. else
  1052. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1053. opt_quit_summary = BQS_DEVS;
  1054. else
  1055. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1056. opt_quit_summary = BQS_PROCS;
  1057. else
  1058. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1059. opt_quit_summary = BQS_DETAILED;
  1060. else
  1061. return "Quit summary must be one of none/devs/procs/detailed";
  1062. return NULL;
  1063. }
  1064. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1065. char *set_request_diff(const char *arg, float *p)
  1066. {
  1067. unsigned char target[32];
  1068. char *e = opt_set_floatval(arg, p);
  1069. if (e)
  1070. return e;
  1071. request_bdiff = (double)*p * 0.9999847412109375;
  1072. bdiff_target_leadzero(target, request_bdiff);
  1073. request_target_str = malloc(65);
  1074. bin2hex(request_target_str, target, 32);
  1075. return NULL;
  1076. }
  1077. #ifdef NEED_BFG_LOWL_VCOM
  1078. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1079. #ifdef WIN32
  1080. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1081. {
  1082. char dev[PATH_MAX];
  1083. char *devp = dev;
  1084. size_t bufLen = 0x100;
  1085. tryagain: ;
  1086. char buf[bufLen];
  1087. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1088. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1089. bufLen *= 2;
  1090. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1091. goto tryagain;
  1092. }
  1093. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1094. }
  1095. size_t tLen;
  1096. memcpy(devp, "\\\\.\\", 4);
  1097. devp = &devp[4];
  1098. for (char *t = buf; *t; t += tLen) {
  1099. tLen = strlen(t) + 1;
  1100. if (strncmp("COM", t, 3))
  1101. continue;
  1102. memcpy(devp, t, tLen);
  1103. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1104. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1105. }
  1106. }
  1107. #else
  1108. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1109. {
  1110. char dev[PATH_MAX];
  1111. char *devp = dev;
  1112. DIR *D;
  1113. struct dirent *de;
  1114. const char devdir[] = "/dev";
  1115. const size_t devdirlen = sizeof(devdir) - 1;
  1116. char *devpath = devp;
  1117. char *devfile = devpath + devdirlen + 1;
  1118. D = opendir(devdir);
  1119. if (!D)
  1120. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1121. memcpy(devpath, devdir, devdirlen);
  1122. devpath[devdirlen] = '/';
  1123. while ( (de = readdir(D)) ) {
  1124. if (!strncmp(de->d_name, "cu.", 3)
  1125. //don't probe Bluetooth devices - causes bus errors and segfaults
  1126. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1127. goto trydev;
  1128. if (strncmp(de->d_name, "tty", 3))
  1129. continue;
  1130. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1131. continue;
  1132. trydev:
  1133. strcpy(devfile, de->d_name);
  1134. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1135. }
  1136. closedir(D);
  1137. }
  1138. #endif
  1139. #endif
  1140. static char *add_serial(const char *arg)
  1141. {
  1142. string_elist_add(arg, &scan_devices);
  1143. return NULL;
  1144. }
  1145. static
  1146. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1147. {
  1148. string_elist_add(arg, elist);
  1149. return NULL;
  1150. }
  1151. bool get_intrange(const char *arg, int *val1, int *val2)
  1152. {
  1153. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1154. char *p, *p2;
  1155. *val1 = strtol(arg, &p, 0);
  1156. if (arg == p)
  1157. // Zero-length ending number, invalid
  1158. return false;
  1159. while (true)
  1160. {
  1161. if (!p[0])
  1162. {
  1163. *val2 = *val1;
  1164. return true;
  1165. }
  1166. if (p[0] == '-')
  1167. break;
  1168. if (!isspace(p[0]))
  1169. // Garbage, invalid
  1170. return false;
  1171. ++p;
  1172. }
  1173. p2 = &p[1];
  1174. *val2 = strtol(p2, &p, 0);
  1175. if (p2 == p)
  1176. // Zero-length ending number, invalid
  1177. return false;
  1178. while (true)
  1179. {
  1180. if (!p[0])
  1181. return true;
  1182. if (!isspace(p[0]))
  1183. // Garbage, invalid
  1184. return false;
  1185. ++p;
  1186. }
  1187. }
  1188. static
  1189. void _test_intrange(const char *s, const int v[2])
  1190. {
  1191. int a[2];
  1192. if (!get_intrange(s, &a[0], &a[1]))
  1193. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1194. for (int i = 0; i < 2; ++i)
  1195. if (unlikely(a[i] != v[i]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1197. }
  1198. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1199. static
  1200. void _test_intrange_fail(const char *s)
  1201. {
  1202. int a[2];
  1203. if (get_intrange(s, &a[0], &a[1]))
  1204. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1205. }
  1206. static
  1207. void test_intrange()
  1208. {
  1209. _test_intrange("-1--2", -1, -2);
  1210. _test_intrange("-1-2", -1, 2);
  1211. _test_intrange("1--2", 1, -2);
  1212. _test_intrange("1-2", 1, 2);
  1213. _test_intrange("111-222", 111, 222);
  1214. _test_intrange(" 11 - 22 ", 11, 22);
  1215. _test_intrange("+11-+22", 11, 22);
  1216. _test_intrange("-1", -1, -1);
  1217. _test_intrange_fail("all");
  1218. _test_intrange_fail("1-");
  1219. _test_intrange_fail("");
  1220. _test_intrange_fail("1-54x");
  1221. }
  1222. static char *set_devices(char *arg)
  1223. {
  1224. if (*arg) {
  1225. if (*arg == '?') {
  1226. opt_display_devs = true;
  1227. return NULL;
  1228. }
  1229. } else
  1230. return "Invalid device parameters";
  1231. string_elist_add(arg, &opt_devices_enabled_list);
  1232. return NULL;
  1233. }
  1234. static char *set_balance(enum pool_strategy *strategy)
  1235. {
  1236. *strategy = POOL_BALANCE;
  1237. return NULL;
  1238. }
  1239. static char *set_loadbalance(enum pool_strategy *strategy)
  1240. {
  1241. *strategy = POOL_LOADBALANCE;
  1242. return NULL;
  1243. }
  1244. static char *set_rotate(const char *arg, int *i)
  1245. {
  1246. pool_strategy = POOL_ROTATE;
  1247. return set_int_range(arg, i, 0, 9999);
  1248. }
  1249. static char *set_rr(enum pool_strategy *strategy)
  1250. {
  1251. *strategy = POOL_ROUNDROBIN;
  1252. return NULL;
  1253. }
  1254. /* Detect that url is for a stratum protocol either via the presence of
  1255. * stratum+tcp or by detecting a stratum server response */
  1256. bool detect_stratum(struct pool *pool, char *url)
  1257. {
  1258. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1259. return false;
  1260. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1261. pool->rpc_url = strdup(url);
  1262. pool->has_stratum = true;
  1263. pool->stratum_url = pool->sockaddr_url;
  1264. return true;
  1265. }
  1266. return false;
  1267. }
  1268. static struct pool *add_url(void)
  1269. {
  1270. total_urls++;
  1271. if (total_urls > total_pools)
  1272. add_pool();
  1273. return pools[total_urls - 1];
  1274. }
  1275. static void setup_url(struct pool *pool, char *arg)
  1276. {
  1277. if (detect_stratum(pool, arg))
  1278. return;
  1279. opt_set_charp(arg, &pool->rpc_url);
  1280. if (strncmp(arg, "http://", 7) &&
  1281. strncmp(arg, "https://", 8)) {
  1282. const size_t L = strlen(arg);
  1283. char *httpinput;
  1284. httpinput = malloc(8 + L);
  1285. if (!httpinput)
  1286. quit(1, "Failed to malloc httpinput");
  1287. sprintf(httpinput, "http://%s", arg);
  1288. pool->rpc_url = httpinput;
  1289. }
  1290. }
  1291. static char *set_url(char *arg)
  1292. {
  1293. struct pool *pool = add_url();
  1294. setup_url(pool, arg);
  1295. return NULL;
  1296. }
  1297. static char *set_quota(char *arg)
  1298. {
  1299. char *semicolon = strchr(arg, ';'), *url;
  1300. int len, qlen, quota;
  1301. struct pool *pool;
  1302. if (!semicolon)
  1303. return "No semicolon separated quota;URL pair found";
  1304. len = strlen(arg);
  1305. *semicolon = '\0';
  1306. qlen = strlen(arg);
  1307. if (!qlen)
  1308. return "No parameter for quota found";
  1309. len -= qlen + 1;
  1310. if (len < 1)
  1311. return "No parameter for URL found";
  1312. quota = atoi(arg);
  1313. if (quota < 0)
  1314. return "Invalid negative parameter for quota set";
  1315. url = arg + qlen + 1;
  1316. pool = add_url();
  1317. setup_url(pool, url);
  1318. pool->quota = quota;
  1319. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1320. adjust_quota_gcd();
  1321. return NULL;
  1322. }
  1323. static char *set_user(const char *arg)
  1324. {
  1325. struct pool *pool;
  1326. total_users++;
  1327. if (total_users > total_pools)
  1328. add_pool();
  1329. pool = pools[total_users - 1];
  1330. opt_set_charp(arg, &pool->rpc_user);
  1331. return NULL;
  1332. }
  1333. static char *set_pass(const char *arg)
  1334. {
  1335. struct pool *pool;
  1336. total_passes++;
  1337. if (total_passes > total_pools)
  1338. add_pool();
  1339. pool = pools[total_passes - 1];
  1340. opt_set_charp(arg, &pool->rpc_pass);
  1341. return NULL;
  1342. }
  1343. static char *set_userpass(const char *arg)
  1344. {
  1345. struct pool *pool;
  1346. char *updup;
  1347. if (total_users != total_passes)
  1348. return "User + pass options must be balanced before userpass";
  1349. ++total_users;
  1350. ++total_passes;
  1351. if (total_users > total_pools)
  1352. add_pool();
  1353. pool = pools[total_users - 1];
  1354. updup = strdup(arg);
  1355. opt_set_charp(arg, &pool->rpc_userpass);
  1356. pool->rpc_user = strtok(updup, ":");
  1357. if (!pool->rpc_user)
  1358. return "Failed to find : delimited user info";
  1359. pool->rpc_pass = strtok(NULL, ":");
  1360. if (!pool->rpc_pass)
  1361. pool->rpc_pass = "";
  1362. return NULL;
  1363. }
  1364. static char *set_pool_priority(const char *arg)
  1365. {
  1366. struct pool *pool;
  1367. if (!total_pools)
  1368. return "Usage of --pool-priority before pools are defined does not make sense";
  1369. pool = pools[total_pools - 1];
  1370. opt_set_intval(arg, &pool->prio);
  1371. return NULL;
  1372. }
  1373. static char *set_pool_proxy(const char *arg)
  1374. {
  1375. struct pool *pool;
  1376. if (!total_pools)
  1377. return "Usage of --pool-proxy before pools are defined does not make sense";
  1378. if (!our_curl_supports_proxy_uris())
  1379. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1380. pool = pools[total_pools - 1];
  1381. opt_set_charp(arg, &pool->rpc_proxy);
  1382. return NULL;
  1383. }
  1384. static char *set_pool_force_rollntime(const char *arg)
  1385. {
  1386. struct pool *pool;
  1387. if (!total_pools)
  1388. return "Usage of --force-rollntime before pools are defined does not make sense";
  1389. pool = pools[total_pools - 1];
  1390. opt_set_intval(arg, &pool->force_rollntime);
  1391. return NULL;
  1392. }
  1393. static char *enable_debug(bool *flag)
  1394. {
  1395. *flag = true;
  1396. opt_debug_console = true;
  1397. /* Turn on verbose output, too. */
  1398. opt_log_output = true;
  1399. return NULL;
  1400. }
  1401. static char *set_schedtime(const char *arg, struct schedtime *st)
  1402. {
  1403. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1404. {
  1405. if (strcasecmp(arg, "now"))
  1406. return "Invalid time set, should be HH:MM";
  1407. } else
  1408. schedstop.tm.tm_sec = 0;
  1409. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1410. return "Invalid time set.";
  1411. st->enable = true;
  1412. return NULL;
  1413. }
  1414. static
  1415. char *set_log_file(char *arg)
  1416. {
  1417. char *r = "";
  1418. long int i = strtol(arg, &r, 10);
  1419. int fd, stderr_fd = fileno(stderr);
  1420. if ((!*r) && i >= 0 && i <= INT_MAX)
  1421. fd = i;
  1422. else
  1423. if (!strcmp(arg, "-"))
  1424. {
  1425. fd = fileno(stdout);
  1426. if (unlikely(fd == -1))
  1427. return "Standard output missing for log-file";
  1428. }
  1429. else
  1430. {
  1431. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1432. if (unlikely(fd == -1))
  1433. return "Failed to open log-file";
  1434. }
  1435. close(stderr_fd);
  1436. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1437. return "Failed to dup2 for log-file";
  1438. close(fd);
  1439. return NULL;
  1440. }
  1441. static
  1442. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1443. {
  1444. char *r = "";
  1445. long int i = strtol(arg, &r, 10);
  1446. static char *err = NULL;
  1447. const size_t errbufsz = 0x100;
  1448. free(err);
  1449. err = NULL;
  1450. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1451. *F = fdopen((int)i, mode);
  1452. if (!*F)
  1453. {
  1454. err = malloc(errbufsz);
  1455. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1456. (int)i, purpose);
  1457. return err;
  1458. }
  1459. } else if (!strcmp(arg, "-")) {
  1460. *F = (mode[0] == 'a') ? stdout : stdin;
  1461. if (!*F)
  1462. {
  1463. err = malloc(errbufsz);
  1464. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1465. (mode[0] == 'a') ? "out" : "in", purpose);
  1466. return err;
  1467. }
  1468. } else {
  1469. *F = fopen(arg, mode);
  1470. if (!*F)
  1471. {
  1472. err = malloc(errbufsz);
  1473. snprintf(err, errbufsz, "Failed to open %s for %s",
  1474. arg, purpose);
  1475. return err;
  1476. }
  1477. }
  1478. return NULL;
  1479. }
  1480. static char *set_noncelog(char *arg)
  1481. {
  1482. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1483. }
  1484. static char *set_sharelog(char *arg)
  1485. {
  1486. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1487. }
  1488. static
  1489. void _add_set_device_option(const char * const func, const char * const buf)
  1490. {
  1491. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1492. string_elist_add(buf, &opt_set_device_list);
  1493. }
  1494. #define add_set_device_option(...) do{ \
  1495. char _tmp1718[0x100]; \
  1496. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1497. _add_set_device_option(__func__, _tmp1718); \
  1498. }while(0)
  1499. char *set_temp_cutoff(char *arg)
  1500. {
  1501. if (strchr(arg, ','))
  1502. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1503. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1504. add_set_device_option("all:temp-cutoff=%s", arg);
  1505. return NULL;
  1506. }
  1507. char *set_temp_target(char *arg)
  1508. {
  1509. if (strchr(arg, ','))
  1510. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1511. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1512. add_set_device_option("all:temp-target=%s", arg);
  1513. return NULL;
  1514. }
  1515. static
  1516. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1517. {
  1518. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1519. add_set_device_option("OCL:binary=no");
  1520. return NULL;
  1521. }
  1522. static char *set_api_allow(const char *arg)
  1523. {
  1524. opt_set_charp(arg, &opt_api_allow);
  1525. return NULL;
  1526. }
  1527. static char *set_api_groups(const char *arg)
  1528. {
  1529. opt_set_charp(arg, &opt_api_groups);
  1530. return NULL;
  1531. }
  1532. static char *set_api_description(const char *arg)
  1533. {
  1534. opt_set_charp(arg, &opt_api_description);
  1535. return NULL;
  1536. }
  1537. static char *set_api_mcast_des(const char *arg)
  1538. {
  1539. opt_set_charp(arg, &opt_api_mcast_des);
  1540. return NULL;
  1541. }
  1542. #ifdef USE_ICARUS
  1543. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1544. static char *set_icarus_options(const char *arg)
  1545. {
  1546. if (strchr(arg, ','))
  1547. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1548. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1549. char *opts = strdup(arg), *argdup;
  1550. argdup = opts;
  1551. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1552. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1553. char *saveptr, *opt;
  1554. for (int i = 0; i < 4; ++i, ++sdf)
  1555. {
  1556. opt = strtok_r(opts, ":", &saveptr);
  1557. opts = NULL;
  1558. if (!opt)
  1559. break;
  1560. if (!opt[0])
  1561. continue;
  1562. for (int j = 0; j < 4; ++j)
  1563. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1564. }
  1565. free(argdup);
  1566. return NULL;
  1567. }
  1568. static char *set_icarus_timing(const char *arg)
  1569. {
  1570. if (strchr(arg, ','))
  1571. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1572. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1573. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1574. for (int j = 0; j < 4; ++j)
  1575. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1576. return NULL;
  1577. }
  1578. #endif
  1579. #ifdef USE_AVALON
  1580. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1581. static char *set_avalon_options(const char *arg)
  1582. {
  1583. if (strchr(arg, ','))
  1584. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1585. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1586. char *opts = strdup(arg), *argdup;
  1587. argdup = opts;
  1588. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1589. char *saveptr, *opt;
  1590. for (int i = 0; i < 5; ++i, ++sdf)
  1591. {
  1592. opt = strtok_r(opts, ":", &saveptr);
  1593. opts = NULL;
  1594. if (!opt)
  1595. break;
  1596. if (!opt[0])
  1597. continue;
  1598. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1599. }
  1600. free(argdup);
  1601. return NULL;
  1602. }
  1603. #endif
  1604. #ifdef USE_KLONDIKE
  1605. static char *set_klondike_options(const char *arg)
  1606. {
  1607. int hashclock;
  1608. double temptarget;
  1609. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1610. {
  1611. default:
  1612. return "Unrecognised --klondike-options";
  1613. case 2:
  1614. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1615. // fallthru
  1616. case 1:
  1617. add_set_device_option("klondike:clock=%d", hashclock);
  1618. }
  1619. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1620. return NULL;
  1621. }
  1622. #endif
  1623. __maybe_unused
  1624. static char *set_null(const char __maybe_unused *arg)
  1625. {
  1626. return NULL;
  1627. }
  1628. /* These options are available from config file or commandline */
  1629. static struct opt_table opt_config_table[] = {
  1630. #ifdef WANT_CPUMINE
  1631. OPT_WITH_ARG("--algo",
  1632. set_algo, show_algo, &opt_algo,
  1633. "Specify sha256 implementation for CPU mining:\n"
  1634. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1635. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1636. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1637. #ifdef WANT_SSE2_4WAY
  1638. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1639. #endif
  1640. #ifdef WANT_VIA_PADLOCK
  1641. "\n\tvia\t\tVIA padlock implementation"
  1642. #endif
  1643. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1644. #ifdef WANT_CRYPTOPP_ASM32
  1645. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1646. #endif
  1647. #ifdef WANT_X8632_SSE2
  1648. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1649. #endif
  1650. #ifdef WANT_X8664_SSE2
  1651. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1652. #endif
  1653. #ifdef WANT_X8664_SSE4
  1654. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1655. #endif
  1656. #ifdef WANT_ALTIVEC_4WAY
  1657. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1658. #endif
  1659. ),
  1660. OPT_WITH_ARG("-a",
  1661. set_algo, show_algo, &opt_algo,
  1662. opt_hidden),
  1663. #endif
  1664. OPT_WITH_ARG("--api-allow",
  1665. set_api_allow, NULL, NULL,
  1666. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1667. OPT_WITH_ARG("--api-description",
  1668. set_api_description, NULL, NULL,
  1669. "Description placed in the API status header, default: BFGMiner version"),
  1670. OPT_WITH_ARG("--api-groups",
  1671. set_api_groups, NULL, NULL,
  1672. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1673. OPT_WITHOUT_ARG("--api-listen",
  1674. opt_set_bool, &opt_api_listen,
  1675. "Enable API, default: disabled"),
  1676. OPT_WITHOUT_ARG("--api-mcast",
  1677. opt_set_bool, &opt_api_mcast,
  1678. "Enable API Multicast listener, default: disabled"),
  1679. OPT_WITH_ARG("--api-mcast-addr",
  1680. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1681. "API Multicast listen address"),
  1682. OPT_WITH_ARG("--api-mcast-code",
  1683. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1684. "Code expected in the API Multicast message, don't use '-'"),
  1685. OPT_WITH_ARG("--api-mcast-des",
  1686. set_api_mcast_des, NULL, NULL,
  1687. "Description appended to the API Multicast reply, default: ''"),
  1688. OPT_WITH_ARG("--api-mcast-port",
  1689. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1690. "API Multicast listen port"),
  1691. OPT_WITHOUT_ARG("--api-network",
  1692. opt_set_bool, &opt_api_network,
  1693. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1694. OPT_WITH_ARG("--api-port",
  1695. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1696. "Port number of miner API"),
  1697. #ifdef HAVE_ADL
  1698. OPT_WITHOUT_ARG("--auto-fan",
  1699. opt_set_bool, &opt_autofan,
  1700. opt_hidden),
  1701. OPT_WITHOUT_ARG("--auto-gpu",
  1702. opt_set_bool, &opt_autoengine,
  1703. opt_hidden),
  1704. #endif
  1705. OPT_WITHOUT_ARG("--balance",
  1706. set_balance, &pool_strategy,
  1707. "Change multipool strategy from failover to even share balance"),
  1708. OPT_WITHOUT_ARG("--benchmark",
  1709. opt_set_bool, &opt_benchmark,
  1710. "Run BFGMiner in benchmark mode - produces no shares"),
  1711. #if defined(USE_BITFORCE)
  1712. OPT_WITHOUT_ARG("--bfl-range",
  1713. opt_set_bool, &opt_bfl_noncerange,
  1714. "Use nonce range on bitforce devices if supported"),
  1715. #endif
  1716. #ifdef HAVE_CHROOT
  1717. OPT_WITH_ARG("--chroot-dir",
  1718. opt_set_charp, NULL, &chroot_dir,
  1719. "Chroot to a directory right after startup"),
  1720. #endif
  1721. OPT_WITH_ARG("--cmd-idle",
  1722. opt_set_charp, NULL, &cmd_idle,
  1723. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1724. OPT_WITH_ARG("--cmd-sick",
  1725. opt_set_charp, NULL, &cmd_sick,
  1726. "Execute a command when a device is declared sick"),
  1727. OPT_WITH_ARG("--cmd-dead",
  1728. opt_set_charp, NULL, &cmd_dead,
  1729. "Execute a command when a device is declared dead"),
  1730. #if BLKMAKER_VERSION > 1
  1731. OPT_WITH_ARG("--coinbase-addr",
  1732. set_b58addr, NULL, &opt_coinbase_script,
  1733. "Set coinbase payout address for solo mining"),
  1734. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1735. set_b58addr, NULL, &opt_coinbase_script,
  1736. opt_hidden),
  1737. #endif
  1738. #if BLKMAKER_VERSION > 0
  1739. OPT_WITH_ARG("--coinbase-sig",
  1740. set_strdup, NULL, &opt_coinbase_sig,
  1741. "Set coinbase signature when possible"),
  1742. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1743. set_strdup, NULL, &opt_coinbase_sig,
  1744. opt_hidden),
  1745. #endif
  1746. #ifdef HAVE_CURSES
  1747. OPT_WITHOUT_ARG("--compact",
  1748. opt_set_bool, &opt_compact,
  1749. "Use compact display without per device statistics"),
  1750. #endif
  1751. #ifdef WANT_CPUMINE
  1752. OPT_WITH_ARG("--cpu-threads",
  1753. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1754. "Number of miner CPU threads"),
  1755. OPT_WITH_ARG("-t",
  1756. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1757. opt_hidden),
  1758. #endif
  1759. OPT_WITHOUT_ARG("--debug|-D",
  1760. enable_debug, &opt_debug,
  1761. "Enable debug output"),
  1762. OPT_WITHOUT_ARG("--debuglog",
  1763. opt_set_bool, &opt_debug,
  1764. "Enable debug logging"),
  1765. OPT_WITHOUT_ARG("--device-protocol-dump",
  1766. opt_set_bool, &opt_dev_protocol,
  1767. "Verbose dump of device protocol-level activities"),
  1768. OPT_WITH_ARG("--device|-d",
  1769. set_devices, NULL, NULL,
  1770. "Enable only devices matching pattern (default: all)"),
  1771. OPT_WITHOUT_ARG("--disable-rejecting",
  1772. opt_set_bool, &opt_disable_pool,
  1773. "Automatically disable pools that continually reject shares"),
  1774. #ifdef USE_LIBMICROHTTPD
  1775. OPT_WITH_ARG("--http-port",
  1776. opt_set_intval, opt_show_intval, &httpsrv_port,
  1777. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1778. #endif
  1779. OPT_WITH_ARG("--expiry",
  1780. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1781. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1782. OPT_WITH_ARG("-E",
  1783. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1784. opt_hidden),
  1785. OPT_WITH_ARG("--expiry-lp",
  1786. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1787. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1788. OPT_WITHOUT_ARG("--failover-only",
  1789. opt_set_bool, &opt_fail_only,
  1790. "Don't leak work to backup pools when primary pool is lagging"),
  1791. #ifdef USE_FPGA
  1792. OPT_WITHOUT_ARG("--force-dev-init",
  1793. opt_set_bool, &opt_force_dev_init,
  1794. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1795. #endif
  1796. #ifdef HAVE_OPENCL
  1797. OPT_WITH_ARG("--gpu-dyninterval",
  1798. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1799. opt_hidden),
  1800. OPT_WITH_ARG("--gpu-platform",
  1801. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1802. "Select OpenCL platform ID to use for GPU mining"),
  1803. OPT_WITH_ARG("--gpu-threads|-g",
  1804. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1805. opt_hidden),
  1806. #ifdef HAVE_ADL
  1807. OPT_WITH_ARG("--gpu-engine",
  1808. set_gpu_engine, NULL, NULL,
  1809. opt_hidden),
  1810. OPT_WITH_ARG("--gpu-fan",
  1811. set_gpu_fan, NULL, NULL,
  1812. opt_hidden),
  1813. OPT_WITH_ARG("--gpu-map",
  1814. set_gpu_map, NULL, NULL,
  1815. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1816. OPT_WITH_ARG("--gpu-memclock",
  1817. set_gpu_memclock, NULL, NULL,
  1818. opt_hidden),
  1819. OPT_WITH_ARG("--gpu-memdiff",
  1820. set_gpu_memdiff, NULL, NULL,
  1821. opt_hidden),
  1822. OPT_WITH_ARG("--gpu-powertune",
  1823. set_gpu_powertune, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITHOUT_ARG("--gpu-reorder",
  1826. opt_set_bool, &opt_reorder,
  1827. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1828. OPT_WITH_ARG("--gpu-vddc",
  1829. set_gpu_vddc, NULL, NULL,
  1830. opt_hidden),
  1831. #endif
  1832. #ifdef USE_SCRYPT
  1833. OPT_WITH_ARG("--lookup-gap",
  1834. set_lookup_gap, NULL, NULL,
  1835. opt_hidden),
  1836. #endif
  1837. OPT_WITH_ARG("--intensity|-I",
  1838. set_intensity, NULL, NULL,
  1839. opt_hidden),
  1840. #endif
  1841. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1842. OPT_WITH_ARG("--kernel-path",
  1843. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1844. "Specify a path to where bitstream and kernel files are"),
  1845. OPT_WITH_ARG("-K",
  1846. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1847. opt_hidden),
  1848. #endif
  1849. #ifdef HAVE_OPENCL
  1850. OPT_WITH_ARG("--kernel|-k",
  1851. set_kernel, NULL, NULL,
  1852. opt_hidden),
  1853. #endif
  1854. #ifdef USE_ICARUS
  1855. OPT_WITH_ARG("--icarus-options",
  1856. set_icarus_options, NULL, NULL,
  1857. opt_hidden),
  1858. OPT_WITH_ARG("--icarus-timing",
  1859. set_icarus_timing, NULL, NULL,
  1860. opt_hidden),
  1861. #endif
  1862. #ifdef USE_AVALON
  1863. OPT_WITH_ARG("--avalon-options",
  1864. set_avalon_options, NULL, NULL,
  1865. opt_hidden),
  1866. #endif
  1867. #ifdef USE_KLONDIKE
  1868. OPT_WITH_ARG("--klondike-options",
  1869. set_klondike_options, NULL, NULL,
  1870. "Set klondike options clock:temptarget"),
  1871. #endif
  1872. OPT_WITHOUT_ARG("--load-balance",
  1873. set_loadbalance, &pool_strategy,
  1874. "Change multipool strategy from failover to quota based balance"),
  1875. OPT_WITH_ARG("--log|-l",
  1876. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1877. "Interval in seconds between log output"),
  1878. OPT_WITH_ARG("--log-file|-L",
  1879. set_log_file, NULL, NULL,
  1880. "Append log file for output messages"),
  1881. OPT_WITH_ARG("--logfile",
  1882. set_log_file, NULL, NULL,
  1883. opt_hidden),
  1884. OPT_WITHOUT_ARG("--log-microseconds",
  1885. opt_set_bool, &opt_log_microseconds,
  1886. "Include microseconds in log output"),
  1887. #if defined(unix) || defined(__APPLE__)
  1888. OPT_WITH_ARG("--monitor|-m",
  1889. opt_set_charp, NULL, &opt_stderr_cmd,
  1890. "Use custom pipe cmd for output messages"),
  1891. #endif // defined(unix)
  1892. OPT_WITHOUT_ARG("--net-delay",
  1893. opt_set_bool, &opt_delaynet,
  1894. "Impose small delays in networking to avoid overloading slow routers"),
  1895. OPT_WITHOUT_ARG("--no-adl",
  1896. opt_set_bool, &opt_noadl,
  1897. #ifdef HAVE_ADL
  1898. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1899. #else
  1900. opt_hidden
  1901. #endif
  1902. ),
  1903. OPT_WITHOUT_ARG("--no-gbt",
  1904. opt_set_invbool, &want_gbt,
  1905. "Disable getblocktemplate support"),
  1906. OPT_WITHOUT_ARG("--no-getwork",
  1907. opt_set_invbool, &want_getwork,
  1908. "Disable getwork support"),
  1909. OPT_WITHOUT_ARG("--no-hotplug",
  1910. #ifdef HAVE_BFG_HOTPLUG
  1911. opt_set_invbool, &opt_hotplug,
  1912. "Disable hotplug detection"
  1913. #else
  1914. set_null, &opt_hotplug,
  1915. opt_hidden
  1916. #endif
  1917. ),
  1918. OPT_WITHOUT_ARG("--no-longpoll",
  1919. opt_set_invbool, &want_longpoll,
  1920. "Disable X-Long-Polling support"),
  1921. OPT_WITHOUT_ARG("--no-pool-disable",
  1922. opt_set_invbool, &opt_disable_pool,
  1923. opt_hidden),
  1924. OPT_WITHOUT_ARG("--no-restart",
  1925. opt_set_invbool, &opt_restart,
  1926. "Do not attempt to restart devices that hang"
  1927. ),
  1928. OPT_WITHOUT_ARG("--no-show-processors",
  1929. opt_set_invbool, &opt_show_procs,
  1930. opt_hidden),
  1931. OPT_WITHOUT_ARG("--no-show-procs",
  1932. opt_set_invbool, &opt_show_procs,
  1933. opt_hidden),
  1934. OPT_WITHOUT_ARG("--no-stratum",
  1935. opt_set_invbool, &want_stratum,
  1936. "Disable Stratum detection"),
  1937. OPT_WITHOUT_ARG("--no-submit-stale",
  1938. opt_set_invbool, &opt_submit_stale,
  1939. "Don't submit shares if they are detected as stale"),
  1940. #ifdef HAVE_OPENCL
  1941. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1942. set_no_opencl_binaries, NULL,
  1943. opt_hidden),
  1944. #endif
  1945. OPT_WITHOUT_ARG("--no-unicode",
  1946. #ifdef USE_UNICODE
  1947. opt_set_invbool, &use_unicode,
  1948. "Don't use Unicode characters in TUI"
  1949. #else
  1950. set_null, &use_unicode,
  1951. opt_hidden
  1952. #endif
  1953. ),
  1954. OPT_WITH_ARG("--noncelog",
  1955. set_noncelog, NULL, NULL,
  1956. "Create log of all nonces found"),
  1957. OPT_WITH_ARG("--pass|-p",
  1958. set_pass, NULL, NULL,
  1959. "Password for bitcoin JSON-RPC server"),
  1960. OPT_WITHOUT_ARG("--per-device-stats",
  1961. opt_set_bool, &want_per_device_stats,
  1962. "Force verbose mode and output per-device statistics"),
  1963. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1964. set_userpass, NULL, NULL,
  1965. opt_hidden),
  1966. OPT_WITH_ARG("--pool-priority",
  1967. set_pool_priority, NULL, NULL,
  1968. "Priority for just the previous-defined pool"),
  1969. OPT_WITH_ARG("--pool-proxy|-x",
  1970. set_pool_proxy, NULL, NULL,
  1971. "Proxy URI to use for connecting to just the previous-defined pool"),
  1972. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1973. set_pool_force_rollntime, NULL, NULL,
  1974. opt_hidden),
  1975. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1976. opt_set_bool, &opt_protocol,
  1977. "Verbose dump of protocol-level activities"),
  1978. OPT_WITH_ARG("--queue|-Q",
  1979. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1980. "Minimum number of work items to have queued (0+)"),
  1981. OPT_WITHOUT_ARG("--quiet|-q",
  1982. opt_set_bool, &opt_quiet,
  1983. "Disable logging output, display status and errors"),
  1984. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  1985. opt_set_bool, &opt_quiet_work_updates,
  1986. opt_hidden),
  1987. OPT_WITH_ARG("--quit-summary",
  1988. set_quit_summary, NULL, NULL,
  1989. "Summary printed when you quit: none/devs/procs/detailed"),
  1990. OPT_WITH_ARG("--quota|-U",
  1991. set_quota, NULL, NULL,
  1992. "quota;URL combination for server with load-balance strategy quotas"),
  1993. OPT_WITHOUT_ARG("--real-quiet",
  1994. opt_set_bool, &opt_realquiet,
  1995. "Disable all output"),
  1996. OPT_WITH_ARG("--request-diff",
  1997. set_request_diff, opt_show_floatval, &request_pdiff,
  1998. "Request a specific difficulty from pools"),
  1999. OPT_WITH_ARG("--retries",
  2000. opt_set_intval, opt_show_intval, &opt_retries,
  2001. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2002. OPT_WITH_ARG("--retry-pause",
  2003. set_null, NULL, NULL,
  2004. opt_hidden),
  2005. OPT_WITH_ARG("--rotate",
  2006. set_rotate, opt_show_intval, &opt_rotate_period,
  2007. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2008. OPT_WITHOUT_ARG("--round-robin",
  2009. set_rr, &pool_strategy,
  2010. "Change multipool strategy from failover to round robin on failure"),
  2011. OPT_WITH_ARG("--scan|-S",
  2012. add_serial, NULL, NULL,
  2013. "Configure how to scan for mining devices"),
  2014. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2015. add_serial, NULL, NULL,
  2016. opt_hidden),
  2017. OPT_WITH_ARG("--scan-time",
  2018. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2019. "Upper bound on time spent scanning current work, in seconds"),
  2020. OPT_WITH_ARG("-s",
  2021. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2022. opt_hidden),
  2023. OPT_WITH_ARG("--scantime",
  2024. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2025. opt_hidden),
  2026. OPT_WITH_ARG("--sched-start",
  2027. set_schedtime, NULL, &schedstart,
  2028. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2029. OPT_WITH_ARG("--sched-stop",
  2030. set_schedtime, NULL, &schedstop,
  2031. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2032. #ifdef USE_SCRYPT
  2033. OPT_WITHOUT_ARG("--scrypt",
  2034. opt_set_bool, &opt_scrypt,
  2035. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2036. #endif
  2037. OPT_WITH_ARG("--set-device|--set",
  2038. opt_string_elist_add, NULL, &opt_set_device_list,
  2039. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2040. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2041. OPT_WITH_ARG("--shaders",
  2042. set_shaders, NULL, NULL,
  2043. opt_hidden),
  2044. #endif
  2045. #ifdef HAVE_PWD_H
  2046. OPT_WITH_ARG("--setuid",
  2047. opt_set_charp, NULL, &opt_setuid,
  2048. "Username of an unprivileged user to run as"),
  2049. #endif
  2050. OPT_WITH_ARG("--sharelog",
  2051. set_sharelog, NULL, NULL,
  2052. "Append share log to file"),
  2053. OPT_WITH_ARG("--shares",
  2054. opt_set_floatval, NULL, &opt_shares,
  2055. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2056. OPT_WITHOUT_ARG("--show-processors",
  2057. opt_set_bool, &opt_show_procs,
  2058. "Show per processor statistics in summary"),
  2059. OPT_WITHOUT_ARG("--show-procs",
  2060. opt_set_bool, &opt_show_procs,
  2061. opt_hidden),
  2062. OPT_WITH_ARG("--skip-security-checks",
  2063. set_int_0_to_9999, NULL, &opt_skip_checks,
  2064. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2065. OPT_WITH_ARG("--socks-proxy",
  2066. opt_set_charp, NULL, &opt_socks_proxy,
  2067. "Set socks proxy (host:port)"),
  2068. #ifdef USE_LIBEVENT
  2069. OPT_WITH_ARG("--stratum-port",
  2070. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2071. "Port number to listen on for stratum miners (-1 means disabled)"),
  2072. #endif
  2073. OPT_WITHOUT_ARG("--submit-stale",
  2074. opt_set_bool, &opt_submit_stale,
  2075. opt_hidden),
  2076. OPT_WITH_ARG("--submit-threads",
  2077. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2078. "Minimum number of concurrent share submissions (default: 64)"),
  2079. #ifdef HAVE_SYSLOG_H
  2080. OPT_WITHOUT_ARG("--syslog",
  2081. opt_set_bool, &use_syslog,
  2082. "Use system log for output messages (default: standard error)"),
  2083. #endif
  2084. OPT_WITH_ARG("--temp-cutoff",
  2085. set_temp_cutoff, NULL, &opt_cutofftemp,
  2086. opt_hidden),
  2087. OPT_WITH_ARG("--temp-hysteresis",
  2088. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2089. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2090. #ifdef HAVE_ADL
  2091. OPT_WITH_ARG("--temp-overheat",
  2092. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2093. opt_hidden),
  2094. #endif
  2095. OPT_WITH_ARG("--temp-target",
  2096. set_temp_target, NULL, NULL,
  2097. opt_hidden),
  2098. OPT_WITHOUT_ARG("--text-only|-T",
  2099. opt_set_invbool, &use_curses,
  2100. #ifdef HAVE_CURSES
  2101. "Disable ncurses formatted screen output"
  2102. #else
  2103. opt_hidden
  2104. #endif
  2105. ),
  2106. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2107. OPT_WITH_ARG("--thread-concurrency",
  2108. set_thread_concurrency, NULL, NULL,
  2109. opt_hidden),
  2110. #endif
  2111. #ifdef USE_UNICODE
  2112. OPT_WITHOUT_ARG("--unicode",
  2113. opt_set_bool, &use_unicode,
  2114. "Use Unicode characters in TUI"),
  2115. #endif
  2116. OPT_WITH_ARG("--url|-o",
  2117. set_url, NULL, NULL,
  2118. "URL for bitcoin JSON-RPC server"),
  2119. OPT_WITH_ARG("--user|-u",
  2120. set_user, NULL, NULL,
  2121. "Username for bitcoin JSON-RPC server"),
  2122. #ifdef HAVE_OPENCL
  2123. OPT_WITH_ARG("--vectors|-v",
  2124. set_vector, NULL, NULL,
  2125. opt_hidden),
  2126. #endif
  2127. OPT_WITHOUT_ARG("--verbose",
  2128. opt_set_bool, &opt_log_output,
  2129. "Log verbose output to stderr as well as status output"),
  2130. OPT_WITHOUT_ARG("--weighed-stats",
  2131. opt_set_bool, &opt_weighed_stats,
  2132. "Display statistics weighed to difficulty 1"),
  2133. #ifdef HAVE_OPENCL
  2134. OPT_WITH_ARG("--worksize|-w",
  2135. set_worksize, NULL, NULL,
  2136. opt_hidden),
  2137. #endif
  2138. OPT_WITHOUT_ARG("--unittest",
  2139. opt_set_bool, &opt_unittest, opt_hidden),
  2140. OPT_WITH_ARG("--userpass|-O",
  2141. set_userpass, NULL, NULL,
  2142. "Username:Password pair for bitcoin JSON-RPC server"),
  2143. OPT_WITHOUT_ARG("--worktime",
  2144. opt_set_bool, &opt_worktime,
  2145. "Display extra work time debug information"),
  2146. OPT_WITH_ARG("--pools",
  2147. opt_set_bool, NULL, NULL, opt_hidden),
  2148. OPT_ENDTABLE
  2149. };
  2150. static char *load_config(const char *arg, void __maybe_unused *unused);
  2151. static int fileconf_load;
  2152. static char *parse_config(json_t *config, bool fileconf)
  2153. {
  2154. static char err_buf[200];
  2155. struct opt_table *opt;
  2156. json_t *val;
  2157. if (fileconf && !fileconf_load)
  2158. fileconf_load = 1;
  2159. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2160. char *p, *name, *sp;
  2161. /* We don't handle subtables. */
  2162. assert(!(opt->type & OPT_SUBTABLE));
  2163. if (!opt->names)
  2164. continue;
  2165. /* Pull apart the option name(s). */
  2166. name = strdup(opt->names);
  2167. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2168. char *err = "Invalid value";
  2169. /* Ignore short options. */
  2170. if (p[1] != '-')
  2171. continue;
  2172. val = json_object_get(config, p+2);
  2173. if (!val)
  2174. continue;
  2175. if (opt->type & OPT_HASARG) {
  2176. if (json_is_string(val)) {
  2177. err = opt->cb_arg(json_string_value(val),
  2178. opt->u.arg);
  2179. } else if (json_is_number(val)) {
  2180. char buf[256], *p, *q;
  2181. snprintf(buf, 256, "%f", json_number_value(val));
  2182. if ( (p = strchr(buf, '.')) ) {
  2183. // Trim /\.0*$/ to work properly with integer-only arguments
  2184. q = p;
  2185. while (*(++q) == '0') {}
  2186. if (*q == '\0')
  2187. *p = '\0';
  2188. }
  2189. err = opt->cb_arg(buf, opt->u.arg);
  2190. } else if (json_is_array(val)) {
  2191. int n, size = json_array_size(val);
  2192. err = NULL;
  2193. for (n = 0; n < size && !err; n++) {
  2194. if (json_is_string(json_array_get(val, n)))
  2195. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2196. else if (json_is_object(json_array_get(val, n)))
  2197. err = parse_config(json_array_get(val, n), false);
  2198. }
  2199. }
  2200. } else if (opt->type & OPT_NOARG) {
  2201. if (json_is_true(val))
  2202. err = opt->cb(opt->u.arg);
  2203. else if (json_is_boolean(val)) {
  2204. if (opt->cb == (void*)opt_set_bool)
  2205. err = opt_set_invbool(opt->u.arg);
  2206. else if (opt->cb == (void*)opt_set_invbool)
  2207. err = opt_set_bool(opt->u.arg);
  2208. }
  2209. }
  2210. if (err) {
  2211. /* Allow invalid values to be in configuration
  2212. * file, just skipping over them provided the
  2213. * JSON is still valid after that. */
  2214. if (fileconf) {
  2215. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2216. fileconf_load = -1;
  2217. } else {
  2218. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2219. p, err);
  2220. return err_buf;
  2221. }
  2222. }
  2223. }
  2224. free(name);
  2225. }
  2226. val = json_object_get(config, JSON_INCLUDE_CONF);
  2227. if (val && json_is_string(val))
  2228. return load_config(json_string_value(val), NULL);
  2229. return NULL;
  2230. }
  2231. char *cnfbuf = NULL;
  2232. static char *load_config(const char *arg, void __maybe_unused *unused)
  2233. {
  2234. json_error_t err;
  2235. json_t *config;
  2236. char *json_error;
  2237. size_t siz;
  2238. if (!cnfbuf)
  2239. cnfbuf = strdup(arg);
  2240. if (++include_count > JSON_MAX_DEPTH)
  2241. return JSON_MAX_DEPTH_ERR;
  2242. #if JANSSON_MAJOR_VERSION > 1
  2243. config = json_load_file(arg, 0, &err);
  2244. #else
  2245. config = json_load_file(arg, &err);
  2246. #endif
  2247. if (!json_is_object(config)) {
  2248. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2249. json_error = malloc(siz);
  2250. if (!json_error)
  2251. quit(1, "Malloc failure in json error");
  2252. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2253. return json_error;
  2254. }
  2255. config_loaded = true;
  2256. /* Parse the config now, so we can override it. That can keep pointers
  2257. * so don't free config object. */
  2258. return parse_config(config, true);
  2259. }
  2260. static void load_default_config(void)
  2261. {
  2262. cnfbuf = malloc(PATH_MAX);
  2263. #if defined(unix)
  2264. if (getenv("HOME") && *getenv("HOME")) {
  2265. strcpy(cnfbuf, getenv("HOME"));
  2266. strcat(cnfbuf, "/");
  2267. } else
  2268. strcpy(cnfbuf, "");
  2269. char *dirp = cnfbuf + strlen(cnfbuf);
  2270. strcpy(dirp, ".bfgminer/");
  2271. strcat(dirp, def_conf);
  2272. if (access(cnfbuf, R_OK))
  2273. // No BFGMiner config, try Cgminer's...
  2274. strcpy(dirp, ".cgminer/cgminer.conf");
  2275. #else
  2276. strcpy(cnfbuf, "");
  2277. strcat(cnfbuf, def_conf);
  2278. #endif
  2279. if (!access(cnfbuf, R_OK))
  2280. load_config(cnfbuf, NULL);
  2281. else {
  2282. free(cnfbuf);
  2283. cnfbuf = NULL;
  2284. }
  2285. }
  2286. extern const char *opt_argv0;
  2287. static char *opt_verusage_and_exit(const char *extra)
  2288. {
  2289. puts(packagename);
  2290. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2291. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2292. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2293. printf(" Options:%s\n", BFG_OPTLIST);
  2294. printf("%s", opt_usage(opt_argv0, extra));
  2295. fflush(stdout);
  2296. exit(0);
  2297. }
  2298. /* These options are parsed before anything else */
  2299. static struct opt_table opt_early_table[] = {
  2300. OPT_EARLY_WITH_ARG("--config|-c",
  2301. set_bool_ignore_arg, NULL, &config_loaded,
  2302. opt_hidden),
  2303. OPT_EARLY_WITHOUT_ARG("--no-config",
  2304. opt_set_bool, &config_loaded,
  2305. "Inhibit loading default config file"),
  2306. OPT_ENDTABLE
  2307. };
  2308. /* These options are available from commandline only */
  2309. static struct opt_table opt_cmdline_table[] = {
  2310. OPT_WITH_ARG("--config|-c",
  2311. load_config, NULL, NULL,
  2312. "Load a JSON-format configuration file\n"
  2313. "See example.conf for an example configuration."),
  2314. OPT_EARLY_WITHOUT_ARG("--no-config",
  2315. opt_set_bool, &config_loaded,
  2316. "Inhibit loading default config file"),
  2317. OPT_WITHOUT_ARG("--help|-h",
  2318. opt_verusage_and_exit, NULL,
  2319. "Print this message"),
  2320. #ifdef HAVE_OPENCL
  2321. OPT_WITHOUT_ARG("--ndevs|-n",
  2322. print_ndevs_and_exit, &nDevs,
  2323. opt_hidden),
  2324. #endif
  2325. OPT_WITHOUT_ARG("--version|-V",
  2326. opt_version_and_exit, packagename,
  2327. "Display version and exit"),
  2328. OPT_ENDTABLE
  2329. };
  2330. static bool jobj_binary(const json_t *obj, const char *key,
  2331. void *buf, size_t buflen, bool required)
  2332. {
  2333. const char *hexstr;
  2334. json_t *tmp;
  2335. tmp = json_object_get(obj, key);
  2336. if (unlikely(!tmp)) {
  2337. if (unlikely(required))
  2338. applog(LOG_ERR, "JSON key '%s' not found", key);
  2339. return false;
  2340. }
  2341. hexstr = json_string_value(tmp);
  2342. if (unlikely(!hexstr)) {
  2343. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2344. return false;
  2345. }
  2346. if (!hex2bin(buf, hexstr, buflen))
  2347. return false;
  2348. return true;
  2349. }
  2350. static void calc_midstate(struct work *work)
  2351. {
  2352. union {
  2353. unsigned char c[64];
  2354. uint32_t i[16];
  2355. } data;
  2356. swap32yes(&data.i[0], work->data, 16);
  2357. sha256_ctx ctx;
  2358. sha256_init(&ctx);
  2359. sha256_update(&ctx, data.c, 64);
  2360. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2361. swap32tole(work->midstate, work->midstate, 8);
  2362. }
  2363. static struct work *make_work(void)
  2364. {
  2365. struct work *work = calloc(1, sizeof(struct work));
  2366. if (unlikely(!work))
  2367. quit(1, "Failed to calloc work in make_work");
  2368. cg_wlock(&control_lock);
  2369. work->id = total_work++;
  2370. cg_wunlock(&control_lock);
  2371. return work;
  2372. }
  2373. /* This is the central place all work that is about to be retired should be
  2374. * cleaned to remove any dynamically allocated arrays within the struct */
  2375. void clean_work(struct work *work)
  2376. {
  2377. free(work->job_id);
  2378. bytes_free(&work->nonce2);
  2379. free(work->nonce1);
  2380. if (work->device_data_free_func)
  2381. work->device_data_free_func(work);
  2382. if (work->tmpl) {
  2383. struct pool *pool = work->pool;
  2384. mutex_lock(&pool->pool_lock);
  2385. bool free_tmpl = !--*work->tmpl_refcount;
  2386. mutex_unlock(&pool->pool_lock);
  2387. if (free_tmpl) {
  2388. blktmpl_free(work->tmpl);
  2389. free(work->tmpl_refcount);
  2390. }
  2391. }
  2392. memset(work, 0, sizeof(struct work));
  2393. }
  2394. /* All dynamically allocated work structs should be freed here to not leak any
  2395. * ram from arrays allocated within the work struct */
  2396. void free_work(struct work *work)
  2397. {
  2398. clean_work(work);
  2399. free(work);
  2400. }
  2401. 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";
  2402. // Must only be called with ch_lock held!
  2403. static
  2404. void __update_block_title(const unsigned char *hash_swap)
  2405. {
  2406. if (hash_swap) {
  2407. char tmp[17];
  2408. // Only provided when the block has actually changed
  2409. free(current_hash);
  2410. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2411. bin2hex(tmp, &hash_swap[24], 8);
  2412. memset(current_hash, '.', 3);
  2413. memcpy(&current_hash[3], tmp, 17);
  2414. known_blkheight_current = false;
  2415. } else if (likely(known_blkheight_current)) {
  2416. return;
  2417. }
  2418. if (current_block_id == known_blkheight_blkid) {
  2419. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2420. if (known_blkheight < 1000000) {
  2421. memmove(&current_hash[3], &current_hash[11], 8);
  2422. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2423. }
  2424. known_blkheight_current = true;
  2425. }
  2426. }
  2427. static
  2428. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2429. {
  2430. if (known_blkheight == blkheight)
  2431. return;
  2432. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2433. cg_wlock(&ch_lock);
  2434. known_blkheight = blkheight;
  2435. known_blkheight_blkid = block_id;
  2436. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2437. if (block_id == current_block_id)
  2438. __update_block_title(NULL);
  2439. cg_wunlock(&ch_lock);
  2440. }
  2441. static
  2442. void pool_set_opaque(struct pool *pool, bool opaque)
  2443. {
  2444. if (pool->swork.opaque == opaque)
  2445. return;
  2446. pool->swork.opaque = opaque;
  2447. if (opaque)
  2448. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2449. pool->pool_no);
  2450. else
  2451. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2452. pool->pool_no);
  2453. }
  2454. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2455. {
  2456. json_t *res_val = json_object_get(val, "result");
  2457. json_t *tmp_val;
  2458. bool ret = false;
  2459. if (unlikely(detect_algo == 1)) {
  2460. json_t *tmp = json_object_get(res_val, "algorithm");
  2461. const char *v = tmp ? json_string_value(tmp) : "";
  2462. if (strncasecmp(v, "scrypt", 6))
  2463. detect_algo = 2;
  2464. }
  2465. if (work->tmpl) {
  2466. struct timeval tv_now;
  2467. cgtime(&tv_now);
  2468. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2469. if (err) {
  2470. applog(LOG_ERR, "blktmpl error: %s", err);
  2471. return false;
  2472. }
  2473. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2474. #if BLKMAKER_VERSION > 1
  2475. if (opt_coinbase_script.sz)
  2476. {
  2477. bool newcb;
  2478. #if BLKMAKER_VERSION > 2
  2479. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2480. #else
  2481. newcb = !work->tmpl->cbtxn;
  2482. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2483. #endif
  2484. if (newcb)
  2485. {
  2486. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2487. if (ae < (ssize_t)sizeof(template_nonce))
  2488. 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);
  2489. ++template_nonce;
  2490. }
  2491. }
  2492. #endif
  2493. #if BLKMAKER_VERSION > 0
  2494. {
  2495. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2496. static bool appenderr = false;
  2497. if (ae <= 0) {
  2498. if (opt_coinbase_sig) {
  2499. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2500. appenderr = true;
  2501. }
  2502. } else if (ae >= 3 || opt_coinbase_sig) {
  2503. const char *cbappend = opt_coinbase_sig;
  2504. const char full[] = PACKAGE " " VERSION;
  2505. if (!cbappend) {
  2506. if ((size_t)ae >= sizeof(full) - 1)
  2507. cbappend = full;
  2508. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2509. cbappend = PACKAGE;
  2510. else
  2511. cbappend = "BFG";
  2512. }
  2513. size_t cbappendsz = strlen(cbappend);
  2514. static bool truncatewarning = false;
  2515. if (cbappendsz <= (size_t)ae) {
  2516. if (cbappendsz < (size_t)ae)
  2517. // If we have space, include the trailing \0
  2518. ++cbappendsz;
  2519. ae = cbappendsz;
  2520. truncatewarning = false;
  2521. } else {
  2522. char *tmp = malloc(ae + 1);
  2523. memcpy(tmp, opt_coinbase_sig, ae);
  2524. tmp[ae] = '\0';
  2525. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2526. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2527. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2528. free(tmp);
  2529. truncatewarning = true;
  2530. }
  2531. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2532. if (ae <= 0) {
  2533. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2534. appenderr = true;
  2535. } else
  2536. appenderr = false;
  2537. }
  2538. }
  2539. #endif
  2540. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2541. return false;
  2542. swap32yes(work->data, work->data, 80 / 4);
  2543. memcpy(&work->data[80], workpadding_bin, 48);
  2544. const struct blktmpl_longpoll_req *lp;
  2545. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2546. free(pool->lp_id);
  2547. pool->lp_id = strdup(lp->id);
  2548. #if 0 /* This just doesn't work :( */
  2549. curl_socket_t sock = pool->lp_socket;
  2550. if (sock != CURL_SOCKET_BAD) {
  2551. pool->lp_socket = CURL_SOCKET_BAD;
  2552. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2553. shutdown(sock, SHUT_RDWR);
  2554. }
  2555. #endif
  2556. }
  2557. }
  2558. else
  2559. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2560. applog(LOG_ERR, "JSON inval data");
  2561. return false;
  2562. }
  2563. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2564. // Calculate it ourselves
  2565. applog(LOG_DEBUG, "Calculating midstate locally");
  2566. calc_midstate(work);
  2567. }
  2568. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2569. applog(LOG_ERR, "JSON inval target");
  2570. return false;
  2571. }
  2572. if (work->tmpl) {
  2573. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2574. {
  2575. int p = (sizeof(work->target) - 1) - i;
  2576. unsigned char c = work->target[i];
  2577. work->target[i] = work->target[p];
  2578. work->target[p] = c;
  2579. }
  2580. }
  2581. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2582. uint32_t blkheight = json_number_value(tmp_val);
  2583. uint32_t block_id = ((uint32_t*)work->data)[1];
  2584. have_block_height(block_id, blkheight);
  2585. }
  2586. memset(work->hash, 0, sizeof(work->hash));
  2587. cgtime(&work->tv_staged);
  2588. pool_set_opaque(pool, !work->tmpl);
  2589. ret = true;
  2590. return ret;
  2591. }
  2592. /* Returns whether the pool supports local work generation or not. */
  2593. static bool pool_localgen(struct pool *pool)
  2594. {
  2595. return (pool->last_work_copy || pool->has_stratum);
  2596. }
  2597. int dev_from_id(int thr_id)
  2598. {
  2599. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2600. return cgpu->device_id;
  2601. }
  2602. /* Create an exponentially decaying average over the opt_log_interval */
  2603. void decay_time(double *f, double fadd, double fsecs)
  2604. {
  2605. double ftotal, fprop;
  2606. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2607. ftotal = 1.0 + fprop;
  2608. *f += (fadd * fprop);
  2609. *f /= ftotal;
  2610. }
  2611. static int __total_staged(void)
  2612. {
  2613. return HASH_COUNT(staged_work);
  2614. }
  2615. static int total_staged(void)
  2616. {
  2617. int ret;
  2618. mutex_lock(stgd_lock);
  2619. ret = __total_staged();
  2620. mutex_unlock(stgd_lock);
  2621. return ret;
  2622. }
  2623. #ifdef HAVE_CURSES
  2624. WINDOW *mainwin, *statuswin, *logwin;
  2625. #endif
  2626. double total_secs = 1.0;
  2627. static char statusline[256];
  2628. /* logstart is where the log window should start */
  2629. static int devcursor, logstart, logcursor;
  2630. #ifdef HAVE_CURSES
  2631. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2632. static int statusy;
  2633. static int devsummaryYOffset;
  2634. static int total_lines;
  2635. #endif
  2636. #ifdef HAVE_OPENCL
  2637. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2638. #endif
  2639. struct cgpu_info *cpus;
  2640. bool _bfg_console_cancel_disabled;
  2641. int _bfg_console_prev_cancelstate;
  2642. #ifdef HAVE_CURSES
  2643. #define lock_curses() bfg_console_lock()
  2644. #define unlock_curses() bfg_console_unlock()
  2645. static bool curses_active_locked(void)
  2646. {
  2647. bool ret;
  2648. lock_curses();
  2649. ret = curses_active;
  2650. if (!ret)
  2651. unlock_curses();
  2652. return ret;
  2653. }
  2654. // Cancellable getch
  2655. int my_cancellable_getch(void)
  2656. {
  2657. // This only works because the macro only hits direct getch() calls
  2658. typedef int (*real_getch_t)(void);
  2659. const real_getch_t real_getch = __real_getch;
  2660. int type, rv;
  2661. bool sct;
  2662. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2663. rv = real_getch();
  2664. if (sct)
  2665. pthread_setcanceltype(type, &type);
  2666. return rv;
  2667. }
  2668. #ifdef PDCURSES
  2669. static
  2670. int bfg_wresize(WINDOW *win, int lines, int columns)
  2671. {
  2672. int rv = wresize(win, lines, columns);
  2673. int x, y;
  2674. getyx(win, y, x);
  2675. if (unlikely(y >= lines || x >= columns))
  2676. {
  2677. if (y >= lines)
  2678. y = lines - 1;
  2679. if (x >= columns)
  2680. x = columns - 1;
  2681. wmove(win, y, x);
  2682. }
  2683. return rv;
  2684. }
  2685. #else
  2686. # define bfg_wresize wresize
  2687. #endif
  2688. #endif
  2689. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2690. {
  2691. va_list ap;
  2692. size_t presz = strlen(buf);
  2693. va_start(ap, fmt);
  2694. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2695. va_end(ap);
  2696. }
  2697. double stats_elapsed(struct cgminer_stats *stats)
  2698. {
  2699. struct timeval now;
  2700. double elapsed;
  2701. if (stats->start_tv.tv_sec == 0)
  2702. elapsed = total_secs;
  2703. else {
  2704. cgtime(&now);
  2705. elapsed = tdiff(&now, &stats->start_tv);
  2706. }
  2707. if (elapsed < 1.0)
  2708. elapsed = 1.0;
  2709. return elapsed;
  2710. }
  2711. bool drv_ready(struct cgpu_info *cgpu)
  2712. {
  2713. switch (cgpu->status) {
  2714. case LIFE_INIT:
  2715. case LIFE_DEAD2:
  2716. return false;
  2717. default:
  2718. return true;
  2719. }
  2720. }
  2721. double cgpu_utility(struct cgpu_info *cgpu)
  2722. {
  2723. double dev_runtime = cgpu_runtime(cgpu);
  2724. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2725. }
  2726. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2727. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2728. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2729. }while(0)
  2730. static float
  2731. utility_to_hashrate(double utility)
  2732. {
  2733. return utility * 0x4444444;
  2734. }
  2735. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2736. static const int _unitbase = 4;
  2737. static
  2738. void pick_unit(float hashrate, unsigned char *unit)
  2739. {
  2740. unsigned char i;
  2741. if (hashrate == 0)
  2742. {
  2743. if (*unit < _unitbase)
  2744. *unit = _unitbase;
  2745. return;
  2746. }
  2747. hashrate *= 1e12;
  2748. for (i = 0; i < *unit; ++i)
  2749. hashrate /= 1e3;
  2750. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2751. while (hashrate >= 999.95)
  2752. {
  2753. hashrate /= 1e3;
  2754. if (likely(_unitchar[*unit] != '?'))
  2755. ++*unit;
  2756. }
  2757. }
  2758. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2759. enum h2bs_fmt {
  2760. H2B_NOUNIT, // "xxx.x"
  2761. H2B_SHORT, // "xxx.xMH/s"
  2762. H2B_SPACED, // "xxx.x MH/s"
  2763. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2764. };
  2765. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2766. enum bfu_floatprec {
  2767. FUP_INTEGER,
  2768. FUP_HASHES,
  2769. FUP_BTC,
  2770. FUP_DIFF,
  2771. };
  2772. static
  2773. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2774. {
  2775. char *s = buf;
  2776. unsigned char prec, i, unit;
  2777. int rv = 0;
  2778. if (unitin == -1)
  2779. {
  2780. unit = 0;
  2781. hashrate_pick_unit(hashrate, &unit);
  2782. }
  2783. else
  2784. unit = unitin;
  2785. hashrate *= 1e12;
  2786. for (i = 0; i < unit; ++i)
  2787. hashrate /= 1000;
  2788. switch (fprec)
  2789. {
  2790. case FUP_HASHES:
  2791. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2792. if (hashrate >= 99.995 || unit < 6)
  2793. prec = 1;
  2794. else
  2795. prec = 2;
  2796. _SNP("%5.*f", prec, hashrate);
  2797. break;
  2798. case FUP_INTEGER:
  2799. _SNP("%3d", (int)hashrate);
  2800. break;
  2801. case FUP_BTC:
  2802. if (hashrate >= 99.995)
  2803. prec = 0;
  2804. else
  2805. prec = 2;
  2806. _SNP("%5.*f", prec, hashrate);
  2807. break;
  2808. case FUP_DIFF:
  2809. if (unit > _unitbase)
  2810. _SNP("%.3g", hashrate);
  2811. else
  2812. _SNP("%u", (unsigned int)hashrate);
  2813. }
  2814. switch (fmt) {
  2815. case H2B_SPACED:
  2816. _SNP(" ");
  2817. case H2B_SHORT:
  2818. _SNP("%c%s", _unitchar[unit], measurement);
  2819. default:
  2820. break;
  2821. case H2B_SHORTV:
  2822. _SNP("%.1s%s", (unit == _unitbase) ? "" : &_unitchar[unit], measurement);
  2823. }
  2824. return rv;
  2825. }
  2826. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2827. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2828. static
  2829. 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)
  2830. {
  2831. unsigned char unit = 0;
  2832. bool allzero = true;
  2833. int i;
  2834. size_t delimsz = 0;
  2835. char *buf = buflist[0];
  2836. size_t bufsz = bufszlist[0];
  2837. size_t itemwidth = (floatprec ? 5 : 3);
  2838. if (!isarray)
  2839. delimsz = strlen(delim);
  2840. for (i = 0; i < count; ++i)
  2841. if (numbers[i] != 0)
  2842. {
  2843. pick_unit(numbers[i], &unit);
  2844. allzero = false;
  2845. }
  2846. if (allzero)
  2847. unit = _unitbase;
  2848. --count;
  2849. for (i = 0; i < count; ++i)
  2850. {
  2851. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2852. if (isarray)
  2853. {
  2854. buf = buflist[i + 1];
  2855. bufsz = bufszlist[i + 1];
  2856. }
  2857. else
  2858. {
  2859. buf += itemwidth;
  2860. bufsz -= itemwidth;
  2861. if (delimsz > bufsz)
  2862. delimsz = bufsz;
  2863. memcpy(buf, delim, delimsz);
  2864. buf += delimsz;
  2865. bufsz -= delimsz;
  2866. }
  2867. }
  2868. // Last entry has the unit
  2869. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2870. return buflist[0];
  2871. }
  2872. #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)
  2873. #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)
  2874. static
  2875. int percentf3(char * const buf, size_t sz, double p, const double t)
  2876. {
  2877. char *s = buf;
  2878. int rv = 0;
  2879. if (!p)
  2880. _SNP("none");
  2881. else
  2882. if (t <= p)
  2883. _SNP("100%%");
  2884. else
  2885. {
  2886. p /= t;
  2887. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2888. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2889. else
  2890. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2891. _SNP("%.1f%%", p * 100); // "9.1%"
  2892. else
  2893. _SNP("%3.0f%%", p * 100); // " 99%"
  2894. }
  2895. return rv;
  2896. }
  2897. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2898. static
  2899. void test_decimal_width()
  2900. {
  2901. // The pipe character at end of each line should perfectly line up
  2902. char printbuf[512];
  2903. char testbuf1[64];
  2904. char testbuf2[64];
  2905. char testbuf3[64];
  2906. char testbuf4[64];
  2907. double testn;
  2908. int width;
  2909. int saved;
  2910. // Hotspots around 0.1 and 0.01
  2911. saved = -1;
  2912. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2913. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2914. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2915. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2916. if (unlikely((saved != -1) && (width != saved))) {
  2917. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2918. applog(LOG_ERR, "%s", printbuf);
  2919. }
  2920. saved = width;
  2921. }
  2922. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2923. saved = -1;
  2924. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2925. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2926. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2927. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2928. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2929. if (unlikely((saved != -1) && (width != saved))) {
  2930. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2931. applog(LOG_ERR, "%s", printbuf);
  2932. }
  2933. saved = width;
  2934. }
  2935. // Hotspot around unit transition boundary in pick_unit
  2936. saved = -1;
  2937. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2938. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2939. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2940. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2941. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2942. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2943. if (unlikely((saved != -1) && (width != saved))) {
  2944. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2945. applog(LOG_ERR, "%s", printbuf);
  2946. }
  2947. saved = width;
  2948. }
  2949. }
  2950. #ifdef HAVE_CURSES
  2951. static void adj_width(int var, int *length);
  2952. #endif
  2953. #ifdef HAVE_CURSES
  2954. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2955. static
  2956. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, int wnotaccepted, int waccepted, int hwerrs, int bad_diff1, int allnonces)
  2957. {
  2958. char rejpcbuf[6];
  2959. char bnbuf[6];
  2960. adj_width(accepted, &awidth);
  2961. adj_width(rejected, &rwidth);
  2962. adj_width(stale, &swidth);
  2963. adj_width(hwerrs, &hwwidth);
  2964. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2965. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2966. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2967. cHr, aHr, uHr,
  2968. awidth, accepted,
  2969. rwidth, rejected,
  2970. swidth, stale,
  2971. rejpcbuf,
  2972. hwwidth, hwerrs,
  2973. bnbuf
  2974. );
  2975. }
  2976. #endif
  2977. static inline
  2978. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  2979. {
  2980. if (!(use_unicode && have_unicode_degrees))
  2981. maybe_unicode = false;
  2982. if (temp && *temp > 0.)
  2983. if (maybe_unicode)
  2984. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  2985. else
  2986. snprintf(buf, bufsz, "%4.1fC", *temp);
  2987. else
  2988. {
  2989. if (temp)
  2990. snprintf(buf, bufsz, " ");
  2991. if (maybe_unicode)
  2992. tailsprintf(buf, bufsz, " ");
  2993. }
  2994. tailsprintf(buf, bufsz, " | ");
  2995. }
  2996. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  2997. {
  2998. #ifndef HAVE_CURSES
  2999. assert(for_curses == false);
  3000. #endif
  3001. struct device_drv *drv = cgpu->drv;
  3002. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3003. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  3004. char rejpcbuf[6];
  3005. char bnbuf[6];
  3006. double dev_runtime;
  3007. if (!opt_show_procs)
  3008. cgpu = cgpu->device;
  3009. dev_runtime = cgpu_runtime(cgpu);
  3010. double rolling, mhashes;
  3011. int accepted, rejected, stale;
  3012. double waccepted;
  3013. double wnotaccepted;
  3014. int hwerrs;
  3015. double bad_diff1, good_diff1;
  3016. rolling = mhashes = waccepted = wnotaccepted = 0;
  3017. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3018. {
  3019. struct cgpu_info *slave = cgpu;
  3020. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3021. {
  3022. slave->utility = slave->accepted / dev_runtime * 60;
  3023. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3024. rolling += slave->rolling;
  3025. mhashes += slave->total_mhashes;
  3026. if (opt_weighed_stats)
  3027. {
  3028. accepted += slave->diff_accepted;
  3029. rejected += slave->diff_rejected;
  3030. stale += slave->diff_stale;
  3031. }
  3032. else
  3033. {
  3034. accepted += slave->accepted;
  3035. rejected += slave->rejected;
  3036. stale += slave->stale;
  3037. }
  3038. waccepted += slave->diff_accepted;
  3039. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3040. hwerrs += slave->hw_errors;
  3041. bad_diff1 += slave->bad_diff1;
  3042. good_diff1 += slave->diff1;
  3043. if (opt_show_procs)
  3044. break;
  3045. }
  3046. }
  3047. double wtotal = (waccepted + wnotaccepted);
  3048. multi_format_unit_array2(
  3049. ((char*[]){cHr, aHr, uHr}),
  3050. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  3051. true, "h/s", hashrate_style,
  3052. 3,
  3053. 1e6*rolling,
  3054. 1e6*mhashes / dev_runtime,
  3055. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3056. // Processor representation
  3057. #ifdef HAVE_CURSES
  3058. if (for_curses)
  3059. {
  3060. if (opt_show_procs)
  3061. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3062. else
  3063. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3064. }
  3065. else
  3066. #endif
  3067. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3068. if (include_serial_in_statline && cgpu->dev_serial)
  3069. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3070. if (unlikely(cgpu->status == LIFE_INIT))
  3071. {
  3072. tailsprintf(buf, bufsz, "Initializing...");
  3073. return;
  3074. }
  3075. {
  3076. const size_t bufln = strlen(buf);
  3077. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3078. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3079. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3080. else
  3081. {
  3082. float temp = cgpu->temp;
  3083. if (!opt_show_procs)
  3084. {
  3085. // Find the highest temperature of all processors
  3086. struct cgpu_info *proc = cgpu;
  3087. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3088. if (proc->temp > temp)
  3089. temp = proc->temp;
  3090. }
  3091. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3092. }
  3093. }
  3094. #ifdef HAVE_CURSES
  3095. if (for_curses)
  3096. {
  3097. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3098. const char *cHrStats;
  3099. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3100. bool all_dead = true, all_off = true, all_rdrv = true;
  3101. struct cgpu_info *proc = cgpu;
  3102. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3103. {
  3104. switch (cHrStatsI) {
  3105. default:
  3106. if (proc->status == LIFE_WAIT)
  3107. cHrStatsI = 5;
  3108. case 5:
  3109. if (proc->deven == DEV_RECOVER_ERR)
  3110. cHrStatsI = 4;
  3111. case 4:
  3112. if (proc->deven == DEV_RECOVER)
  3113. cHrStatsI = 3;
  3114. case 3:
  3115. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3116. {
  3117. cHrStatsI = 1;
  3118. all_off = false;
  3119. }
  3120. else
  3121. {
  3122. if (likely(proc->deven == DEV_ENABLED))
  3123. all_off = false;
  3124. if (proc->deven != DEV_RECOVER_DRV)
  3125. all_rdrv = false;
  3126. }
  3127. case 1:
  3128. break;
  3129. }
  3130. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3131. all_dead = false;
  3132. if (opt_show_procs)
  3133. break;
  3134. }
  3135. if (unlikely(all_dead))
  3136. cHrStatsI = 0;
  3137. else
  3138. if (unlikely(all_off))
  3139. cHrStatsI = 2;
  3140. cHrStats = cHrStatsOpt[cHrStatsI];
  3141. if (cHrStatsI == 2 && all_rdrv)
  3142. cHrStats = " RST ";
  3143. format_statline(buf, bufsz,
  3144. cHrStats,
  3145. aHr, uHr,
  3146. accepted, rejected, stale,
  3147. wnotaccepted, waccepted,
  3148. hwerrs,
  3149. bad_diff1, bad_diff1 + good_diff1);
  3150. }
  3151. else
  3152. #endif
  3153. {
  3154. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3155. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3156. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3157. opt_log_interval,
  3158. cHr, aHr, uHr,
  3159. accepted,
  3160. rejected,
  3161. stale,
  3162. rejpcbuf,
  3163. hwerrs,
  3164. bnbuf
  3165. );
  3166. }
  3167. }
  3168. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3169. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3170. static void text_print_status(int thr_id)
  3171. {
  3172. struct cgpu_info *cgpu;
  3173. char logline[256];
  3174. cgpu = get_thr_cgpu(thr_id);
  3175. if (cgpu) {
  3176. get_statline(logline, sizeof(logline), cgpu);
  3177. printf("%s\n", logline);
  3178. }
  3179. }
  3180. #ifdef HAVE_CURSES
  3181. static int attr_bad = A_BOLD;
  3182. #ifdef WIN32
  3183. #define swprintf snwprintf
  3184. #endif
  3185. static
  3186. void bfg_waddstr(WINDOW *win, const char *s)
  3187. {
  3188. const char *p = s;
  3189. int32_t w;
  3190. int wlen;
  3191. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3192. while (true)
  3193. {
  3194. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3195. {
  3196. // Printable ASCII
  3197. ++p;
  3198. }
  3199. if (p != s)
  3200. waddnstr(win, s, p - s);
  3201. w = utf8_decode(p, &wlen);
  3202. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3203. {
  3204. w = unicode_micro;
  3205. wlen = 1;
  3206. }
  3207. s = p += wlen;
  3208. switch(w)
  3209. {
  3210. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3211. case '\0':
  3212. return;
  3213. case 0xf000: // "bad" off
  3214. wattroff(win, attr_bad);
  3215. break;
  3216. case 0xf001: // "bad" on
  3217. wattron(win, attr_bad);
  3218. break;
  3219. #ifdef USE_UNICODE
  3220. case '|':
  3221. wadd_wch(win, WACS_VLINE);
  3222. break;
  3223. #endif
  3224. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3225. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3226. if (!use_unicode)
  3227. {
  3228. waddch(win, '-');
  3229. break;
  3230. }
  3231. #ifdef USE_UNICODE
  3232. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3233. break;
  3234. #endif
  3235. case 0x2022:
  3236. if (w > WCHAR_MAX || !iswprint(w))
  3237. w = '*';
  3238. default:
  3239. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3240. {
  3241. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3242. if (iswprint(REPLACEMENT_CHAR))
  3243. w = REPLACEMENT_CHAR;
  3244. else
  3245. #endif
  3246. w = '?';
  3247. }
  3248. {
  3249. #ifdef USE_UNICODE
  3250. wchar_t wbuf[0x10];
  3251. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3252. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3253. waddnwstr(win, wbuf, wbuflen);
  3254. #else
  3255. wprintw(win, "%lc", (wint_t)w);
  3256. #endif
  3257. }
  3258. }
  3259. }
  3260. }
  3261. static inline
  3262. void bfg_hline(WINDOW *win, int y)
  3263. {
  3264. int maxx, __maybe_unused maxy;
  3265. getmaxyx(win, maxy, maxx);
  3266. #ifdef USE_UNICODE
  3267. if (use_unicode)
  3268. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3269. else
  3270. #endif
  3271. mvwhline(win, y, 0, '-', maxx);
  3272. }
  3273. // Spaces until end of line, using current attributes (ie, not completely clear)
  3274. static
  3275. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3276. {
  3277. int x, maxx;
  3278. int __maybe_unused y;
  3279. getmaxyx(win, y, maxx);
  3280. getyx(win, y, x);
  3281. const int space_count = (maxx - x) - offset;
  3282. // Check for negative - terminal too narrow
  3283. if (space_count <= 0)
  3284. return;
  3285. char buf[space_count];
  3286. memset(buf, ' ', space_count);
  3287. waddnstr(win, buf, space_count);
  3288. }
  3289. static int menu_attr = A_REVERSE;
  3290. #define CURBUFSIZ 256
  3291. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3292. char tmp42[CURBUFSIZ]; \
  3293. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3294. wmove(win, y, x); \
  3295. bfg_waddstr(win, tmp42); \
  3296. } while (0)
  3297. #define cg_wprintw(win, fmt, ...) do { \
  3298. char tmp42[CURBUFSIZ]; \
  3299. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3300. bfg_waddstr(win, tmp42); \
  3301. } while (0)
  3302. /* Must be called with curses mutex lock held and curses_active */
  3303. static void curses_print_status(const int ts)
  3304. {
  3305. struct pool *pool = currentpool;
  3306. struct timeval now, tv;
  3307. float efficiency;
  3308. double income;
  3309. int logdiv;
  3310. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3311. wattron(statuswin, attr_title);
  3312. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3313. timer_set_now(&now);
  3314. {
  3315. unsigned int days, hours;
  3316. div_t d;
  3317. timersub(&now, &miner_started, &tv);
  3318. d = div(tv.tv_sec, 86400);
  3319. days = d.quot;
  3320. d = div(d.rem, 3600);
  3321. hours = d.quot;
  3322. d = div(d.rem, 60);
  3323. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3324. , days
  3325. , (days == 1) ? ' ' : 's'
  3326. , hours
  3327. , d.quot
  3328. , d.rem
  3329. );
  3330. }
  3331. bfg_wspctoeol(statuswin, 0);
  3332. wattroff(statuswin, attr_title);
  3333. wattron(statuswin, menu_attr);
  3334. wmove(statuswin, 1, 0);
  3335. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3336. bfg_wspctoeol(statuswin, 14);
  3337. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3338. wattroff(statuswin, menu_attr);
  3339. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3340. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3341. have_longpoll ? "": "out");
  3342. } else if (pool->has_stratum) {
  3343. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3344. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3345. } else {
  3346. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3347. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3348. }
  3349. wclrtoeol(statuswin);
  3350. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3351. current_hash, block_diff, net_hashrate, blocktime);
  3352. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3353. char bwstr[12], incomestr[13];
  3354. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3355. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3356. ts,
  3357. total_go + total_ro,
  3358. new_blocks,
  3359. total_submitting,
  3360. multi_format_unit2(bwstr, sizeof(bwstr),
  3361. false, "B/s", H2B_SHORT, "/", 2,
  3362. (float)(total_bytes_rcvd / total_secs),
  3363. (float)(total_bytes_sent / total_secs)),
  3364. efficiency,
  3365. incomestr,
  3366. best_share);
  3367. wclrtoeol(statuswin);
  3368. mvwaddstr(statuswin, 5, 0, " ");
  3369. bfg_waddstr(statuswin, statusline);
  3370. wclrtoeol(statuswin);
  3371. logdiv = statusy - 1;
  3372. bfg_hline(statuswin, 6);
  3373. bfg_hline(statuswin, logdiv);
  3374. #ifdef USE_UNICODE
  3375. if (use_unicode)
  3376. {
  3377. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3378. if (opt_show_procs && !opt_compact)
  3379. ++offset; // proc letter
  3380. if (have_unicode_degrees)
  3381. ++offset; // degrees symbol
  3382. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3383. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3384. offset += 24; // hashrates etc
  3385. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3386. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3387. }
  3388. #endif
  3389. }
  3390. static void adj_width(int var, int *length)
  3391. {
  3392. if ((int)(log10(var) + 1) > *length)
  3393. (*length)++;
  3394. }
  3395. static int dev_width;
  3396. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3397. {
  3398. char logline[256];
  3399. int ypos;
  3400. if (opt_compact)
  3401. return;
  3402. /* Check this isn't out of the window size */
  3403. if (opt_show_procs)
  3404. ypos = cgpu->cgminer_id;
  3405. else
  3406. {
  3407. if (cgpu->proc_id)
  3408. return;
  3409. ypos = cgpu->device_line_id;
  3410. }
  3411. ypos += devsummaryYOffset;
  3412. if (ypos < 0)
  3413. return;
  3414. ypos += devcursor - 1;
  3415. if (ypos >= statusy - 1)
  3416. return;
  3417. if (wmove(statuswin, ypos, 0) == ERR)
  3418. return;
  3419. get_statline2(logline, sizeof(logline), cgpu, true);
  3420. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3421. wattron(statuswin, A_REVERSE);
  3422. bfg_waddstr(statuswin, logline);
  3423. wattroff(statuswin, A_REVERSE);
  3424. wclrtoeol(statuswin);
  3425. }
  3426. static
  3427. void _refresh_devstatus(const bool already_have_lock) {
  3428. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3429. int i;
  3430. if (unlikely(!total_devices))
  3431. {
  3432. const int ypos = devcursor - 1;
  3433. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3434. {
  3435. wattron(statuswin, attr_bad);
  3436. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3437. wclrtoeol(statuswin);
  3438. wattroff(statuswin, attr_bad);
  3439. }
  3440. }
  3441. for (i = 0; i < total_devices; i++)
  3442. curses_print_devstatus(get_devices(i));
  3443. touchwin(statuswin);
  3444. wrefresh(statuswin);
  3445. if (!already_have_lock)
  3446. unlock_curses();
  3447. }
  3448. }
  3449. #define refresh_devstatus() _refresh_devstatus(false)
  3450. #endif
  3451. static void print_status(int thr_id)
  3452. {
  3453. if (!curses_active)
  3454. text_print_status(thr_id);
  3455. }
  3456. #ifdef HAVE_CURSES
  3457. static
  3458. bool set_statusy(int maxy)
  3459. {
  3460. if (loginput_size)
  3461. {
  3462. maxy -= loginput_size;
  3463. if (maxy < 0)
  3464. maxy = 0;
  3465. }
  3466. if (logstart < maxy)
  3467. maxy = logstart;
  3468. if (statusy == maxy)
  3469. return false;
  3470. statusy = maxy;
  3471. logcursor = statusy;
  3472. return true;
  3473. }
  3474. /* Check for window resize. Called with curses mutex locked */
  3475. static inline void change_logwinsize(void)
  3476. {
  3477. int x, y, logx, logy;
  3478. getmaxyx(mainwin, y, x);
  3479. if (x < 80 || y < 25)
  3480. return;
  3481. if (y > statusy + 2 && statusy < logstart) {
  3482. set_statusy(y - 2);
  3483. mvwin(logwin, logcursor, 0);
  3484. bfg_wresize(statuswin, statusy, x);
  3485. }
  3486. y -= logcursor;
  3487. getmaxyx(logwin, logy, logx);
  3488. /* Detect screen size change */
  3489. if (x != logx || y != logy)
  3490. bfg_wresize(logwin, y, x);
  3491. }
  3492. static void check_winsizes(void)
  3493. {
  3494. if (!use_curses)
  3495. return;
  3496. if (curses_active_locked()) {
  3497. int y, x;
  3498. x = getmaxx(statuswin);
  3499. if (set_statusy(LINES - 2))
  3500. {
  3501. erase();
  3502. bfg_wresize(statuswin, statusy, x);
  3503. getmaxyx(mainwin, y, x);
  3504. y -= logcursor;
  3505. bfg_wresize(logwin, y, x);
  3506. mvwin(logwin, logcursor, 0);
  3507. }
  3508. unlock_curses();
  3509. }
  3510. }
  3511. static int device_line_id_count;
  3512. static void switch_logsize(void)
  3513. {
  3514. if (curses_active_locked()) {
  3515. if (opt_compact) {
  3516. logstart = devcursor - 1;
  3517. logcursor = logstart + 1;
  3518. } else {
  3519. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3520. logstart = devcursor + total_lines;
  3521. logcursor = logstart;
  3522. }
  3523. unlock_curses();
  3524. }
  3525. check_winsizes();
  3526. }
  3527. /* For mandatory printing when mutex is already locked */
  3528. void _wlog(const char *str)
  3529. {
  3530. static bool newline;
  3531. size_t end = strlen(str) - 1;
  3532. if (newline)
  3533. bfg_waddstr(logwin, "\n");
  3534. if (str[end] == '\n')
  3535. {
  3536. char *s;
  3537. newline = true;
  3538. s = alloca(end + 1);
  3539. memcpy(s, str, end);
  3540. s[end] = '\0';
  3541. str = s;
  3542. }
  3543. else
  3544. newline = false;
  3545. bfg_waddstr(logwin, str);
  3546. }
  3547. /* Mandatory printing */
  3548. void _wlogprint(const char *str)
  3549. {
  3550. if (curses_active_locked()) {
  3551. _wlog(str);
  3552. unlock_curses();
  3553. }
  3554. }
  3555. #endif
  3556. #ifdef HAVE_CURSES
  3557. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3558. {
  3559. bool high_prio;
  3560. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3561. if (curses_active)
  3562. {
  3563. if (!loginput_size || high_prio) {
  3564. wlog(" %s %s\n", datetime, str);
  3565. if (high_prio) {
  3566. touchwin(logwin);
  3567. wrefresh(logwin);
  3568. }
  3569. }
  3570. return true;
  3571. }
  3572. return false;
  3573. }
  3574. void clear_logwin(void)
  3575. {
  3576. if (curses_active_locked()) {
  3577. wclear(logwin);
  3578. unlock_curses();
  3579. }
  3580. }
  3581. void logwin_update(void)
  3582. {
  3583. if (curses_active_locked()) {
  3584. touchwin(logwin);
  3585. wrefresh(logwin);
  3586. unlock_curses();
  3587. }
  3588. }
  3589. #endif
  3590. static void enable_pool(struct pool *pool)
  3591. {
  3592. if (pool->enabled != POOL_ENABLED) {
  3593. enabled_pools++;
  3594. pool->enabled = POOL_ENABLED;
  3595. }
  3596. }
  3597. #ifdef HAVE_CURSES
  3598. static void disable_pool(struct pool *pool)
  3599. {
  3600. if (pool->enabled == POOL_ENABLED)
  3601. enabled_pools--;
  3602. pool->enabled = POOL_DISABLED;
  3603. }
  3604. #endif
  3605. static void reject_pool(struct pool *pool)
  3606. {
  3607. if (pool->enabled == POOL_ENABLED)
  3608. enabled_pools--;
  3609. pool->enabled = POOL_REJECTING;
  3610. }
  3611. static double share_diff(const struct work *);
  3612. static
  3613. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3614. struct cgpu_info *cgpu;
  3615. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3616. char shrdiffdisp[16];
  3617. const double tgtdiff = work->work_difficulty;
  3618. char tgtdiffdisp[16];
  3619. char where[20];
  3620. cgpu = get_thr_cgpu(work->thr_id);
  3621. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3622. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3623. if (total_pools > 1)
  3624. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3625. else
  3626. where[0] = '\0';
  3627. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3628. disp,
  3629. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3630. cgpu->proc_repr,
  3631. where,
  3632. shrdiffdisp, tgtdiffdisp,
  3633. reason,
  3634. resubmit ? "(resubmit)" : "",
  3635. worktime
  3636. );
  3637. }
  3638. static bool test_work_current(struct work *);
  3639. static void _submit_work_async(struct work *);
  3640. static
  3641. void maybe_local_submit(const struct work *work)
  3642. {
  3643. #if BLKMAKER_VERSION > 3
  3644. if (unlikely(work->block && work->tmpl))
  3645. {
  3646. // This is a block with a full template (GBT)
  3647. // Regardless of the result, submit to local bitcoind(s) as well
  3648. struct work *work_cp;
  3649. char *p;
  3650. for (int i = 0; i < total_pools; ++i)
  3651. {
  3652. p = strchr(pools[i]->rpc_url, '#');
  3653. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3654. continue;
  3655. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3656. work_cp = copy_work(work);
  3657. work_cp->pool = pools[i];
  3658. work_cp->do_foreign_submit = true;
  3659. _submit_work_async(work_cp);
  3660. }
  3661. }
  3662. #endif
  3663. }
  3664. /* Theoretically threads could race when modifying accepted and
  3665. * rejected values but the chance of two submits completing at the
  3666. * same time is zero so there is no point adding extra locking */
  3667. static void
  3668. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3669. /*char *hashshow,*/ bool resubmit, char *worktime)
  3670. {
  3671. struct pool *pool = work->pool;
  3672. struct cgpu_info *cgpu;
  3673. cgpu = get_thr_cgpu(work->thr_id);
  3674. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3675. mutex_lock(&stats_lock);
  3676. cgpu->accepted++;
  3677. total_accepted++;
  3678. pool->accepted++;
  3679. cgpu->diff_accepted += work->work_difficulty;
  3680. total_diff_accepted += work->work_difficulty;
  3681. pool->diff_accepted += work->work_difficulty;
  3682. mutex_unlock(&stats_lock);
  3683. pool->seq_rejects = 0;
  3684. cgpu->last_share_pool = pool->pool_no;
  3685. cgpu->last_share_pool_time = time(NULL);
  3686. cgpu->last_share_diff = work->work_difficulty;
  3687. pool->last_share_time = cgpu->last_share_pool_time;
  3688. pool->last_share_diff = work->work_difficulty;
  3689. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3690. if (!QUIET) {
  3691. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3692. }
  3693. sharelog("accept", work);
  3694. if (opt_shares && total_diff_accepted >= opt_shares) {
  3695. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3696. kill_work();
  3697. return;
  3698. }
  3699. /* Detect if a pool that has been temporarily disabled for
  3700. * continually rejecting shares has started accepting shares.
  3701. * This will only happen with the work returned from a
  3702. * longpoll */
  3703. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3704. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3705. enable_pool(pool);
  3706. switch_pools(NULL);
  3707. }
  3708. if (unlikely(work->block)) {
  3709. // Force moving on to this new block :)
  3710. struct work fakework;
  3711. memset(&fakework, 0, sizeof(fakework));
  3712. fakework.pool = work->pool;
  3713. // Copy block version, bits, and time from share
  3714. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3715. memcpy(&fakework.data[68], &work->data[68], 8);
  3716. // Set prevblock to winning hash (swap32'd)
  3717. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3718. test_work_current(&fakework);
  3719. }
  3720. } else {
  3721. mutex_lock(&stats_lock);
  3722. cgpu->rejected++;
  3723. total_rejected++;
  3724. pool->rejected++;
  3725. cgpu->diff_rejected += work->work_difficulty;
  3726. total_diff_rejected += work->work_difficulty;
  3727. pool->diff_rejected += work->work_difficulty;
  3728. pool->seq_rejects++;
  3729. mutex_unlock(&stats_lock);
  3730. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3731. if (!QUIET) {
  3732. char where[20];
  3733. char disposition[36] = "reject";
  3734. char reason[32];
  3735. strcpy(reason, "");
  3736. if (total_pools > 1)
  3737. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3738. else
  3739. strcpy(where, "");
  3740. if (!json_is_string(res))
  3741. res = json_object_get(val, "reject-reason");
  3742. if (res) {
  3743. const char *reasontmp = json_string_value(res);
  3744. size_t reasonLen = strlen(reasontmp);
  3745. if (reasonLen > 28)
  3746. reasonLen = 28;
  3747. reason[0] = ' '; reason[1] = '(';
  3748. memcpy(2 + reason, reasontmp, reasonLen);
  3749. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3750. memcpy(disposition + 7, reasontmp, reasonLen);
  3751. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3752. } else if (work->stratum && err && json_is_array(err)) {
  3753. json_t *reason_val = json_array_get(err, 1);
  3754. char *reason_str;
  3755. if (reason_val && json_is_string(reason_val)) {
  3756. reason_str = (char *)json_string_value(reason_val);
  3757. snprintf(reason, 31, " (%s)", reason_str);
  3758. }
  3759. }
  3760. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3761. sharelog(disposition, work);
  3762. }
  3763. /* Once we have more than a nominal amount of sequential rejects,
  3764. * at least 10 and more than 3 mins at the current utility,
  3765. * disable the pool because some pool error is likely to have
  3766. * ensued. Do not do this if we know the share just happened to
  3767. * be stale due to networking delays.
  3768. */
  3769. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3770. double utility = total_accepted / total_secs * 60;
  3771. if (pool->seq_rejects > utility * 3) {
  3772. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3773. pool->pool_no, pool->seq_rejects);
  3774. reject_pool(pool);
  3775. if (pool == current_pool())
  3776. switch_pools(NULL);
  3777. pool->seq_rejects = 0;
  3778. }
  3779. }
  3780. }
  3781. maybe_local_submit(work);
  3782. }
  3783. static char *submit_upstream_work_request(struct work *work)
  3784. {
  3785. char *hexstr = NULL;
  3786. char *s, *sd;
  3787. struct pool *pool = work->pool;
  3788. if (work->tmpl) {
  3789. json_t *req;
  3790. unsigned char data[80];
  3791. swap32yes(data, work->data, 80 / 4);
  3792. #if BLKMAKER_VERSION > 3
  3793. if (work->do_foreign_submit)
  3794. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3795. else
  3796. #endif
  3797. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3798. s = json_dumps(req, 0);
  3799. json_decref(req);
  3800. sd = malloc(161);
  3801. bin2hex(sd, data, 80);
  3802. } else {
  3803. /* build hex string */
  3804. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3805. bin2hex(hexstr, work->data, sizeof(work->data));
  3806. /* build JSON-RPC request */
  3807. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3808. s = realloc_strcat(s, hexstr);
  3809. s = realloc_strcat(s, "\" ], \"id\":1}");
  3810. free(hexstr);
  3811. sd = s;
  3812. }
  3813. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3814. if (work->tmpl)
  3815. free(sd);
  3816. else
  3817. s = realloc_strcat(s, "\n");
  3818. return s;
  3819. }
  3820. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3821. json_t *res, *err;
  3822. bool rc = false;
  3823. int thr_id = work->thr_id;
  3824. struct pool *pool = work->pool;
  3825. struct timeval tv_submit_reply;
  3826. time_t ts_submit_reply;
  3827. char worktime[200] = "";
  3828. cgtime(&tv_submit_reply);
  3829. ts_submit_reply = time(NULL);
  3830. if (unlikely(!val)) {
  3831. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3832. if (!pool_tset(pool, &pool->submit_fail)) {
  3833. total_ro++;
  3834. pool->remotefail_occasions++;
  3835. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3836. }
  3837. goto out;
  3838. } else if (pool_tclear(pool, &pool->submit_fail))
  3839. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3840. res = json_object_get(val, "result");
  3841. err = json_object_get(val, "error");
  3842. if (!QUIET) {
  3843. if (opt_worktime) {
  3844. char workclone[20];
  3845. struct tm _tm;
  3846. struct tm *tm, tm_getwork, tm_submit_reply;
  3847. tm = &_tm;
  3848. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3849. (struct timeval *)&(work->tv_getwork));
  3850. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3851. (struct timeval *)&(work->tv_getwork_reply));
  3852. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3853. (struct timeval *)&(work->tv_work_start));
  3854. double work_to_submit = tdiff(ptv_submit,
  3855. (struct timeval *)&(work->tv_work_found));
  3856. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3857. int diffplaces = 3;
  3858. localtime_r(&work->ts_getwork, tm);
  3859. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3860. localtime_r(&ts_submit_reply, tm);
  3861. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3862. if (work->clone) {
  3863. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3864. tdiff((struct timeval *)&(work->tv_cloned),
  3865. (struct timeval *)&(work->tv_getwork_reply)));
  3866. }
  3867. else
  3868. strcpy(workclone, "O");
  3869. if (work->work_difficulty < 1)
  3870. diffplaces = 6;
  3871. snprintf(worktime, sizeof(worktime),
  3872. " <-%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",
  3873. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3874. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3875. work->getwork_mode, diffplaces, work->work_difficulty,
  3876. tm_getwork.tm_hour, tm_getwork.tm_min,
  3877. tm_getwork.tm_sec, getwork_time, workclone,
  3878. getwork_to_work, work_time, work_to_submit, submit_time,
  3879. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3880. tm_submit_reply.tm_sec);
  3881. }
  3882. }
  3883. share_result(val, res, err, work, resubmit, worktime);
  3884. if (!opt_realquiet)
  3885. print_status(thr_id);
  3886. if (!want_per_device_stats) {
  3887. char logline[256];
  3888. struct cgpu_info *cgpu;
  3889. cgpu = get_thr_cgpu(thr_id);
  3890. get_statline(logline, sizeof(logline), cgpu);
  3891. applog(LOG_INFO, "%s", logline);
  3892. }
  3893. json_decref(val);
  3894. rc = true;
  3895. out:
  3896. return rc;
  3897. }
  3898. /* Specifies whether we can use this pool for work or not. */
  3899. static bool pool_unworkable(const struct pool * const pool)
  3900. {
  3901. if (pool->idle)
  3902. return true;
  3903. if (pool->enabled != POOL_ENABLED)
  3904. return true;
  3905. if (pool->has_stratum && !pool->stratum_active)
  3906. return true;
  3907. return false;
  3908. }
  3909. static
  3910. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  3911. {
  3912. if (pool_unworkable(pool))
  3913. return false;
  3914. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  3915. return true;
  3916. if (!cp)
  3917. cp = current_pool();
  3918. return (pool == cp);
  3919. }
  3920. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3921. * rolling average per 10 minutes and if pools start getting more, it biases
  3922. * away from them to distribute work evenly. The share count is reset to the
  3923. * rolling average every 10 minutes to not send all work to one pool after it
  3924. * has been disabled/out for an extended period. */
  3925. static struct pool *select_balanced(struct pool *cp)
  3926. {
  3927. int i, lowest = cp->shares;
  3928. struct pool *ret = cp;
  3929. for (i = 0; i < total_pools; i++) {
  3930. struct pool *pool = pools[i];
  3931. if (pool_unworkable(pool))
  3932. continue;
  3933. if (pool->shares < lowest) {
  3934. lowest = pool->shares;
  3935. ret = pool;
  3936. }
  3937. }
  3938. ret->shares++;
  3939. return ret;
  3940. }
  3941. static bool pool_active(struct pool *, bool pinging);
  3942. static void pool_died(struct pool *);
  3943. static struct pool *priority_pool(int choice);
  3944. static bool pool_unusable(struct pool *pool);
  3945. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3946. * it has any quota left. */
  3947. static inline struct pool *select_pool(bool lagging)
  3948. {
  3949. static int rotating_pool = 0;
  3950. struct pool *pool, *cp;
  3951. bool avail = false;
  3952. int tested, i;
  3953. cp = current_pool();
  3954. retry:
  3955. if (pool_strategy == POOL_BALANCE) {
  3956. pool = select_balanced(cp);
  3957. goto out;
  3958. }
  3959. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3960. pool = cp;
  3961. goto out;
  3962. } else
  3963. pool = NULL;
  3964. for (i = 0; i < total_pools; i++) {
  3965. struct pool *tp = pools[i];
  3966. if (tp->quota_used < tp->quota_gcd) {
  3967. avail = true;
  3968. break;
  3969. }
  3970. }
  3971. /* There are no pools with quota, so reset them. */
  3972. if (!avail) {
  3973. for (i = 0; i < total_pools; i++)
  3974. pools[i]->quota_used = 0;
  3975. if (++rotating_pool >= total_pools)
  3976. rotating_pool = 0;
  3977. }
  3978. /* Try to find the first pool in the rotation that is usable */
  3979. tested = 0;
  3980. while (!pool && tested++ < total_pools) {
  3981. pool = pools[rotating_pool];
  3982. if (pool->quota_used++ < pool->quota_gcd) {
  3983. if (!pool_unworkable(pool))
  3984. break;
  3985. /* Failover-only flag for load-balance means distribute
  3986. * unused quota to priority pool 0. */
  3987. if (opt_fail_only)
  3988. priority_pool(0)->quota_used--;
  3989. }
  3990. pool = NULL;
  3991. if (++rotating_pool >= total_pools)
  3992. rotating_pool = 0;
  3993. }
  3994. /* If there are no alive pools with quota, choose according to
  3995. * priority. */
  3996. if (!pool) {
  3997. for (i = 0; i < total_pools; i++) {
  3998. struct pool *tp = priority_pool(i);
  3999. if (!pool_unusable(tp)) {
  4000. pool = tp;
  4001. break;
  4002. }
  4003. }
  4004. }
  4005. /* If still nothing is usable, use the current pool */
  4006. if (!pool)
  4007. pool = cp;
  4008. out:
  4009. if (!pool_actively_in_use(pool, cp))
  4010. {
  4011. if (!pool_active(pool, false))
  4012. {
  4013. pool_died(pool);
  4014. goto retry;
  4015. }
  4016. pool_tclear(pool, &pool->idle);
  4017. }
  4018. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4019. return pool;
  4020. }
  4021. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4022. static const uint64_t diffone = 0xFFFF000000000000ull;
  4023. static double target_diff(const unsigned char *target)
  4024. {
  4025. double targ = 0;
  4026. signed int i;
  4027. for (i = 31; i >= 0; --i)
  4028. targ = (targ * 0x100) + target[i];
  4029. return DIFFEXACTONE / (targ ?: 1);
  4030. }
  4031. /*
  4032. * Calculate the work share difficulty
  4033. */
  4034. static void calc_diff(struct work *work, int known)
  4035. {
  4036. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4037. double difficulty;
  4038. if (!known) {
  4039. work->work_difficulty = target_diff(work->target);
  4040. } else
  4041. work->work_difficulty = known;
  4042. difficulty = work->work_difficulty;
  4043. pool_stats->last_diff = difficulty;
  4044. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4045. if (difficulty == pool_stats->min_diff)
  4046. pool_stats->min_diff_count++;
  4047. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4048. pool_stats->min_diff = difficulty;
  4049. pool_stats->min_diff_count = 1;
  4050. }
  4051. if (difficulty == pool_stats->max_diff)
  4052. pool_stats->max_diff_count++;
  4053. else if (difficulty > pool_stats->max_diff) {
  4054. pool_stats->max_diff = difficulty;
  4055. pool_stats->max_diff_count = 1;
  4056. }
  4057. }
  4058. static
  4059. void setup_benchmark_pool()
  4060. {
  4061. struct pool *pool;
  4062. want_longpoll = false;
  4063. // Temporarily disable opt_benchmark to avoid auto-removal
  4064. opt_benchmark = false;
  4065. pool = add_pool();
  4066. opt_benchmark = true;
  4067. pool->rpc_url = malloc(255);
  4068. strcpy(pool->rpc_url, "Benchmark");
  4069. pool->rpc_user = pool->rpc_url;
  4070. pool->rpc_pass = pool->rpc_url;
  4071. enable_pool(pool);
  4072. pool->idle = false;
  4073. successful_connect = true;
  4074. }
  4075. void get_benchmark_work(struct work *work)
  4076. {
  4077. static uint32_t blkhdr[20];
  4078. for (int i = 18; i >= 0; --i)
  4079. if (++blkhdr[i])
  4080. break;
  4081. memcpy(&work->data[ 0], blkhdr, 80);
  4082. memcpy(&work->data[80], workpadding_bin, 48);
  4083. calc_midstate(work);
  4084. set_target(work->target, 1.0);
  4085. work->mandatory = true;
  4086. work->pool = pools[0];
  4087. cgtime(&work->tv_getwork);
  4088. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4089. copy_time(&work->tv_staged, &work->tv_getwork);
  4090. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4091. calc_diff(work, 0);
  4092. }
  4093. static void wake_gws(void);
  4094. static void update_last_work(struct work *work)
  4095. {
  4096. if (!work->tmpl)
  4097. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4098. return;
  4099. struct pool *pool = work->pool;
  4100. mutex_lock(&pool->last_work_lock);
  4101. if (pool->last_work_copy)
  4102. free_work(pool->last_work_copy);
  4103. pool->last_work_copy = copy_work(work);
  4104. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4105. mutex_unlock(&pool->last_work_lock);
  4106. }
  4107. static
  4108. void gbt_req_target(json_t *req)
  4109. {
  4110. json_t *j;
  4111. json_t *n;
  4112. if (!request_target_str)
  4113. return;
  4114. j = json_object_get(req, "params");
  4115. if (!j)
  4116. {
  4117. n = json_array();
  4118. if (!n)
  4119. return;
  4120. if (json_object_set_new(req, "params", n))
  4121. goto erradd;
  4122. j = n;
  4123. }
  4124. n = json_array_get(j, 0);
  4125. if (!n)
  4126. {
  4127. n = json_object();
  4128. if (!n)
  4129. return;
  4130. if (json_array_append_new(j, n))
  4131. goto erradd;
  4132. }
  4133. j = n;
  4134. n = json_string(request_target_str);
  4135. if (!n)
  4136. return;
  4137. if (json_object_set_new(j, "target", n))
  4138. goto erradd;
  4139. return;
  4140. erradd:
  4141. json_decref(n);
  4142. }
  4143. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4144. {
  4145. char *rpc_req;
  4146. clean_work(work);
  4147. switch (proto) {
  4148. case PLP_GETWORK:
  4149. work->getwork_mode = GETWORK_MODE_POOL;
  4150. return strdup(getwork_req);
  4151. case PLP_GETBLOCKTEMPLATE:
  4152. work->getwork_mode = GETWORK_MODE_GBT;
  4153. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4154. if (!work->tmpl_refcount)
  4155. return NULL;
  4156. work->tmpl = blktmpl_create();
  4157. if (!work->tmpl)
  4158. goto gbtfail2;
  4159. *work->tmpl_refcount = 1;
  4160. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4161. if (!caps)
  4162. goto gbtfail;
  4163. caps |= GBT_LONGPOLL;
  4164. #if BLKMAKER_VERSION > 1
  4165. if (opt_coinbase_script.sz)
  4166. caps |= GBT_CBVALUE;
  4167. #endif
  4168. json_t *req = blktmpl_request_jansson(caps, lpid);
  4169. if (!req)
  4170. goto gbtfail;
  4171. if (probe)
  4172. gbt_req_target(req);
  4173. rpc_req = json_dumps(req, 0);
  4174. if (!rpc_req)
  4175. goto gbtfail;
  4176. json_decref(req);
  4177. return rpc_req;
  4178. default:
  4179. return NULL;
  4180. }
  4181. return NULL;
  4182. gbtfail:
  4183. blktmpl_free(work->tmpl);
  4184. work->tmpl = NULL;
  4185. gbtfail2:
  4186. free(work->tmpl_refcount);
  4187. work->tmpl_refcount = NULL;
  4188. return NULL;
  4189. }
  4190. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4191. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4192. static const char *pool_protocol_name(enum pool_protocol proto)
  4193. {
  4194. switch (proto) {
  4195. case PLP_GETBLOCKTEMPLATE:
  4196. return "getblocktemplate";
  4197. case PLP_GETWORK:
  4198. return "getwork";
  4199. default:
  4200. return "UNKNOWN";
  4201. }
  4202. }
  4203. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4204. {
  4205. switch (proto) {
  4206. case PLP_GETBLOCKTEMPLATE:
  4207. if (want_getwork)
  4208. return PLP_GETWORK;
  4209. default:
  4210. return PLP_NONE;
  4211. }
  4212. }
  4213. static bool get_upstream_work(struct work *work, CURL *curl)
  4214. {
  4215. struct pool *pool = work->pool;
  4216. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4217. struct timeval tv_elapsed;
  4218. json_t *val = NULL;
  4219. bool rc = false;
  4220. char *url;
  4221. enum pool_protocol proto;
  4222. char *rpc_req;
  4223. if (pool->proto == PLP_NONE)
  4224. pool->proto = PLP_GETBLOCKTEMPLATE;
  4225. tryagain:
  4226. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4227. work->pool = pool;
  4228. if (!rpc_req)
  4229. return false;
  4230. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4231. url = pool->rpc_url;
  4232. cgtime(&work->tv_getwork);
  4233. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4234. false, &work->rolltime, pool, false);
  4235. pool_stats->getwork_attempts++;
  4236. free(rpc_req);
  4237. if (likely(val)) {
  4238. rc = work_decode(pool, work, val);
  4239. if (unlikely(!rc))
  4240. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4241. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4242. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4243. pool->proto = proto;
  4244. goto tryagain;
  4245. } else
  4246. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4247. cgtime(&work->tv_getwork_reply);
  4248. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4249. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4250. pool_stats->getwork_wait_rolling /= 1.63;
  4251. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4252. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4253. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4254. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4255. }
  4256. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4257. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4258. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4259. }
  4260. pool_stats->getwork_calls++;
  4261. work->pool = pool;
  4262. work->longpoll = false;
  4263. calc_diff(work, 0);
  4264. total_getworks++;
  4265. pool->getwork_requested++;
  4266. if (rc)
  4267. update_last_work(work);
  4268. if (likely(val))
  4269. json_decref(val);
  4270. return rc;
  4271. }
  4272. #ifdef HAVE_CURSES
  4273. static void disable_curses(void)
  4274. {
  4275. if (curses_active_locked()) {
  4276. use_curses = false;
  4277. curses_active = false;
  4278. leaveok(logwin, false);
  4279. leaveok(statuswin, false);
  4280. leaveok(mainwin, false);
  4281. nocbreak();
  4282. echo();
  4283. delwin(logwin);
  4284. delwin(statuswin);
  4285. delwin(mainwin);
  4286. endwin();
  4287. #ifdef WIN32
  4288. // Move the cursor to after curses output.
  4289. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4290. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4291. COORD coord;
  4292. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4293. coord.X = 0;
  4294. coord.Y = csbi.dwSize.Y - 1;
  4295. SetConsoleCursorPosition(hout, coord);
  4296. }
  4297. #endif
  4298. unlock_curses();
  4299. }
  4300. }
  4301. #endif
  4302. static void __kill_work(void)
  4303. {
  4304. struct cgpu_info *cgpu;
  4305. struct thr_info *thr;
  4306. int i;
  4307. if (!successful_connect)
  4308. return;
  4309. applog(LOG_INFO, "Received kill message");
  4310. shutting_down = true;
  4311. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4312. notifier_wake(submit_waiting_notifier);
  4313. #ifdef USE_LIBMICROHTTPD
  4314. httpsrv_stop();
  4315. #endif
  4316. applog(LOG_DEBUG, "Killing off watchpool thread");
  4317. /* Kill the watchpool thread */
  4318. thr = &control_thr[watchpool_thr_id];
  4319. thr_info_cancel(thr);
  4320. applog(LOG_DEBUG, "Killing off watchdog thread");
  4321. /* Kill the watchdog thread */
  4322. thr = &control_thr[watchdog_thr_id];
  4323. thr_info_cancel(thr);
  4324. applog(LOG_DEBUG, "Shutting down mining threads");
  4325. for (i = 0; i < mining_threads; i++) {
  4326. thr = get_thread(i);
  4327. if (!thr)
  4328. continue;
  4329. cgpu = thr->cgpu;
  4330. if (!cgpu)
  4331. continue;
  4332. if (!cgpu->threads)
  4333. continue;
  4334. cgpu->shutdown = true;
  4335. thr->work_restart = true;
  4336. notifier_wake(thr->notifier);
  4337. notifier_wake(thr->work_restart_notifier);
  4338. }
  4339. sleep(1);
  4340. applog(LOG_DEBUG, "Killing off mining threads");
  4341. /* Kill the mining threads*/
  4342. for (i = 0; i < mining_threads; i++) {
  4343. thr = get_thread(i);
  4344. if (!thr)
  4345. continue;
  4346. cgpu = thr->cgpu;
  4347. if (cgpu->threads)
  4348. {
  4349. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4350. thr_info_cancel(thr);
  4351. }
  4352. cgpu->status = LIFE_DEAD2;
  4353. }
  4354. /* Stop the others */
  4355. applog(LOG_DEBUG, "Killing off API thread");
  4356. thr = &control_thr[api_thr_id];
  4357. thr_info_cancel(thr);
  4358. }
  4359. /* This should be the common exit path */
  4360. void kill_work(void)
  4361. {
  4362. __kill_work();
  4363. quit(0, "Shutdown signal received.");
  4364. }
  4365. static
  4366. #ifdef WIN32
  4367. #ifndef _WIN64
  4368. const
  4369. #endif
  4370. #endif
  4371. char **initial_args;
  4372. void _bfg_clean_up(bool);
  4373. void app_restart(void)
  4374. {
  4375. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4376. __kill_work();
  4377. _bfg_clean_up(true);
  4378. #if defined(unix) || defined(__APPLE__)
  4379. if (forkpid > 0) {
  4380. kill(forkpid, SIGTERM);
  4381. forkpid = 0;
  4382. }
  4383. #endif
  4384. execv(initial_args[0], initial_args);
  4385. applog(LOG_WARNING, "Failed to restart application");
  4386. }
  4387. static void sighandler(int __maybe_unused sig)
  4388. {
  4389. /* Restore signal handlers so we can still quit if kill_work fails */
  4390. sigaction(SIGTERM, &termhandler, NULL);
  4391. sigaction(SIGINT, &inthandler, NULL);
  4392. kill_work();
  4393. }
  4394. static void start_longpoll(void);
  4395. static void stop_longpoll(void);
  4396. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4397. * this pool. */
  4398. static void recruit_curl(struct pool *pool)
  4399. {
  4400. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4401. if (unlikely(!ce))
  4402. quit(1, "Failed to calloc in recruit_curl");
  4403. ce->curl = curl_easy_init();
  4404. if (unlikely(!ce->curl))
  4405. quit(1, "Failed to init in recruit_curl");
  4406. LL_PREPEND(pool->curllist, ce);
  4407. pool->curls++;
  4408. }
  4409. /* Grab an available curl if there is one. If not, then recruit extra curls
  4410. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4411. * and there are already 5 curls in circulation. Limit total number to the
  4412. * number of mining threads per pool as well to prevent blasting a pool during
  4413. * network delays/outages. */
  4414. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4415. {
  4416. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4417. bool recruited = false;
  4418. struct curl_ent *ce;
  4419. mutex_lock(&pool->pool_lock);
  4420. retry:
  4421. if (!pool->curls) {
  4422. recruit_curl(pool);
  4423. recruited = true;
  4424. } else if (!pool->curllist) {
  4425. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4426. if (!blocking) {
  4427. mutex_unlock(&pool->pool_lock);
  4428. return NULL;
  4429. }
  4430. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4431. goto retry;
  4432. } else {
  4433. recruit_curl(pool);
  4434. recruited = true;
  4435. }
  4436. }
  4437. ce = pool->curllist;
  4438. LL_DELETE(pool->curllist, ce);
  4439. mutex_unlock(&pool->pool_lock);
  4440. if (recruited)
  4441. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4442. return ce;
  4443. }
  4444. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4445. {
  4446. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4447. }
  4448. __maybe_unused
  4449. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4450. {
  4451. return pop_curl_entry3(pool, 1);
  4452. }
  4453. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4454. {
  4455. mutex_lock(&pool->pool_lock);
  4456. if (!ce || !ce->curl)
  4457. quithere(1, "Attempted to add NULL");
  4458. LL_PREPEND(pool->curllist, ce);
  4459. cgtime(&ce->tv);
  4460. pthread_cond_broadcast(&pool->cr_cond);
  4461. mutex_unlock(&pool->pool_lock);
  4462. }
  4463. bool stale_work(struct work *work, bool share);
  4464. static inline bool should_roll(struct work *work)
  4465. {
  4466. struct timeval now;
  4467. time_t expiry;
  4468. if (!pool_actively_in_use(work->pool, NULL))
  4469. return false;
  4470. if (stale_work(work, false))
  4471. return false;
  4472. if (work->rolltime > opt_scantime)
  4473. expiry = work->rolltime;
  4474. else
  4475. expiry = opt_scantime;
  4476. expiry = expiry * 2 / 3;
  4477. /* We shouldn't roll if we're unlikely to get one shares' duration
  4478. * work out of doing so */
  4479. cgtime(&now);
  4480. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4481. return false;
  4482. return true;
  4483. }
  4484. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4485. * reject blocks as invalid. */
  4486. static inline bool can_roll(struct work *work)
  4487. {
  4488. if (work->stratum)
  4489. return false;
  4490. if (!(work->pool && !work->clone))
  4491. return false;
  4492. if (work->tmpl) {
  4493. if (stale_work(work, false))
  4494. return false;
  4495. return blkmk_work_left(work->tmpl);
  4496. }
  4497. return (work->rolltime &&
  4498. work->rolls < 7000 && !stale_work(work, false));
  4499. }
  4500. static void roll_work(struct work *work)
  4501. {
  4502. if (work->tmpl) {
  4503. struct timeval tv_now;
  4504. cgtime(&tv_now);
  4505. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4506. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4507. swap32yes(work->data, work->data, 80 / 4);
  4508. calc_midstate(work);
  4509. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4510. } else {
  4511. uint32_t *work_ntime;
  4512. uint32_t ntime;
  4513. work_ntime = (uint32_t *)(work->data + 68);
  4514. ntime = be32toh(*work_ntime);
  4515. ntime++;
  4516. *work_ntime = htobe32(ntime);
  4517. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4518. }
  4519. local_work++;
  4520. work->rolls++;
  4521. work->blk.nonce = 0;
  4522. /* This is now a different work item so it needs a different ID for the
  4523. * hashtable */
  4524. work->id = total_work++;
  4525. }
  4526. /* Duplicates any dynamically allocated arrays within the work struct to
  4527. * prevent a copied work struct from freeing ram belonging to another struct */
  4528. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4529. {
  4530. int id = work->id;
  4531. clean_work(work);
  4532. memcpy(work, base_work, sizeof(struct work));
  4533. /* Keep the unique new id assigned during make_work to prevent copied
  4534. * work from having the same id. */
  4535. work->id = id;
  4536. if (base_work->job_id)
  4537. work->job_id = strdup(base_work->job_id);
  4538. if (base_work->nonce1)
  4539. work->nonce1 = strdup(base_work->nonce1);
  4540. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4541. if (base_work->tmpl) {
  4542. struct pool *pool = work->pool;
  4543. mutex_lock(&pool->pool_lock);
  4544. ++*work->tmpl_refcount;
  4545. mutex_unlock(&pool->pool_lock);
  4546. }
  4547. if (noffset)
  4548. {
  4549. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4550. uint32_t ntime = be32toh(*work_ntime);
  4551. ntime += noffset;
  4552. *work_ntime = htobe32(ntime);
  4553. }
  4554. if (work->device_data_dup_func)
  4555. work->device_data = work->device_data_dup_func(work);
  4556. }
  4557. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4558. * for all dynamically allocated arrays within the struct */
  4559. struct work *copy_work(const struct work *base_work)
  4560. {
  4561. struct work *work = make_work();
  4562. _copy_work(work, base_work, 0);
  4563. return work;
  4564. }
  4565. void __copy_work(struct work *work, const struct work *base_work)
  4566. {
  4567. _copy_work(work, base_work, 0);
  4568. }
  4569. static struct work *make_clone(struct work *work)
  4570. {
  4571. struct work *work_clone = copy_work(work);
  4572. work_clone->clone = true;
  4573. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4574. work_clone->longpoll = false;
  4575. work_clone->mandatory = false;
  4576. /* Make cloned work appear slightly older to bias towards keeping the
  4577. * master work item which can be further rolled */
  4578. work_clone->tv_staged.tv_sec -= 1;
  4579. return work_clone;
  4580. }
  4581. static void stage_work(struct work *work);
  4582. static bool clone_available(void)
  4583. {
  4584. struct work *work_clone = NULL, *work, *tmp;
  4585. bool cloned = false;
  4586. mutex_lock(stgd_lock);
  4587. if (!staged_rollable)
  4588. goto out_unlock;
  4589. HASH_ITER(hh, staged_work, work, tmp) {
  4590. if (can_roll(work) && should_roll(work)) {
  4591. roll_work(work);
  4592. work_clone = make_clone(work);
  4593. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4594. roll_work(work);
  4595. cloned = true;
  4596. break;
  4597. }
  4598. }
  4599. out_unlock:
  4600. mutex_unlock(stgd_lock);
  4601. if (cloned) {
  4602. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4603. stage_work(work_clone);
  4604. }
  4605. return cloned;
  4606. }
  4607. static void pool_died(struct pool *pool)
  4608. {
  4609. if (!pool_tset(pool, &pool->idle)) {
  4610. cgtime(&pool->tv_idle);
  4611. if (pool == current_pool()) {
  4612. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4613. switch_pools(NULL);
  4614. } else
  4615. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4616. }
  4617. }
  4618. bool stale_work(struct work *work, bool share)
  4619. {
  4620. unsigned work_expiry;
  4621. struct pool *pool;
  4622. uint32_t block_id;
  4623. unsigned getwork_delay;
  4624. if (opt_benchmark)
  4625. return false;
  4626. block_id = ((uint32_t*)work->data)[1];
  4627. pool = work->pool;
  4628. /* Technically the rolltime should be correct but some pools
  4629. * advertise a broken expire= that is lower than a meaningful
  4630. * scantime */
  4631. if (work->rolltime >= opt_scantime || work->tmpl)
  4632. work_expiry = work->rolltime;
  4633. else
  4634. work_expiry = opt_expiry;
  4635. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4636. if (work_expiry > max_expiry)
  4637. work_expiry = max_expiry;
  4638. if (share) {
  4639. /* If the share isn't on this pool's latest block, it's stale */
  4640. if (pool->block_id && pool->block_id != block_id)
  4641. {
  4642. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4643. return true;
  4644. }
  4645. /* If the pool doesn't want old shares, then any found in work before
  4646. * the most recent longpoll is stale */
  4647. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4648. {
  4649. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4650. return true;
  4651. }
  4652. } else {
  4653. /* If this work isn't for the latest Bitcoin block, it's stale */
  4654. /* But only care about the current pool if failover-only */
  4655. if (enabled_pools <= 1 || opt_fail_only) {
  4656. if (pool->block_id && block_id != pool->block_id)
  4657. {
  4658. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4659. return true;
  4660. }
  4661. } else {
  4662. if (block_id != current_block_id)
  4663. {
  4664. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4665. return true;
  4666. }
  4667. }
  4668. /* If the pool has asked us to restart since this work, it's stale */
  4669. if (work->work_restart_id != pool->work_restart_id)
  4670. {
  4671. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4672. return true;
  4673. }
  4674. if (pool->has_stratum && work->job_id) {
  4675. bool same_job;
  4676. if (!pool->stratum_active || !pool->stratum_notify) {
  4677. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4678. return true;
  4679. }
  4680. same_job = true;
  4681. cg_rlock(&pool->data_lock);
  4682. if (strcmp(work->job_id, pool->swork.job_id))
  4683. same_job = false;
  4684. cg_runlock(&pool->data_lock);
  4685. if (!same_job) {
  4686. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4687. return true;
  4688. }
  4689. }
  4690. /* Factor in the average getwork delay of this pool, rounding it up to
  4691. * the nearest second */
  4692. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4693. if (unlikely(work_expiry <= getwork_delay + 5))
  4694. work_expiry = 5;
  4695. else
  4696. work_expiry -= getwork_delay;
  4697. }
  4698. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4699. if (elapsed_since_staged > work_expiry) {
  4700. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4701. return true;
  4702. }
  4703. /* If the user only wants strict failover, any work from a pool other than
  4704. * the current one is always considered stale */
  4705. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4706. {
  4707. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4708. return true;
  4709. }
  4710. return false;
  4711. }
  4712. static double share_diff(const struct work *work)
  4713. {
  4714. double ret;
  4715. bool new_best = false;
  4716. ret = target_diff(work->hash);
  4717. cg_wlock(&control_lock);
  4718. if (unlikely(ret > best_diff)) {
  4719. new_best = true;
  4720. best_diff = ret;
  4721. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4722. }
  4723. if (unlikely(ret > work->pool->best_diff))
  4724. work->pool->best_diff = ret;
  4725. cg_wunlock(&control_lock);
  4726. if (unlikely(new_best))
  4727. applog(LOG_INFO, "New best share: %s", best_share);
  4728. return ret;
  4729. }
  4730. static void regen_hash(struct work *work)
  4731. {
  4732. hash_data(work->hash, work->data);
  4733. }
  4734. static void rebuild_hash(struct work *work)
  4735. {
  4736. if (opt_scrypt)
  4737. scrypt_regenhash(work);
  4738. else
  4739. regen_hash(work);
  4740. work->share_diff = share_diff(work);
  4741. if (unlikely(work->share_diff >= current_diff)) {
  4742. work->block = true;
  4743. work->pool->solved++;
  4744. found_blocks++;
  4745. work->mandatory = true;
  4746. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4747. }
  4748. }
  4749. static void submit_discard_share2(const char *reason, struct work *work)
  4750. {
  4751. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4752. sharelog(reason, work);
  4753. mutex_lock(&stats_lock);
  4754. ++total_stale;
  4755. ++cgpu->stale;
  4756. ++(work->pool->stale_shares);
  4757. total_diff_stale += work->work_difficulty;
  4758. cgpu->diff_stale += work->work_difficulty;
  4759. work->pool->diff_stale += work->work_difficulty;
  4760. mutex_unlock(&stats_lock);
  4761. }
  4762. static void submit_discard_share(struct work *work)
  4763. {
  4764. submit_discard_share2("discard", work);
  4765. }
  4766. struct submit_work_state {
  4767. struct work *work;
  4768. bool resubmit;
  4769. struct curl_ent *ce;
  4770. int failures;
  4771. struct timeval tv_staleexpire;
  4772. char *s;
  4773. struct timeval tv_submit;
  4774. struct submit_work_state *next;
  4775. };
  4776. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4777. {
  4778. long *p_timeout_us = userp;
  4779. const long max_ms = LONG_MAX / 1000;
  4780. if (max_ms < timeout_ms)
  4781. timeout_ms = max_ms;
  4782. *p_timeout_us = timeout_ms * 1000;
  4783. return 0;
  4784. }
  4785. static void sws_has_ce(struct submit_work_state *sws)
  4786. {
  4787. struct pool *pool = sws->work->pool;
  4788. sws->s = submit_upstream_work_request(sws->work);
  4789. cgtime(&sws->tv_submit);
  4790. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4791. }
  4792. static struct submit_work_state *begin_submission(struct work *work)
  4793. {
  4794. struct pool *pool;
  4795. struct submit_work_state *sws = NULL;
  4796. pool = work->pool;
  4797. sws = malloc(sizeof(*sws));
  4798. *sws = (struct submit_work_state){
  4799. .work = work,
  4800. };
  4801. rebuild_hash(work);
  4802. if (stale_work(work, true)) {
  4803. work->stale = true;
  4804. if (opt_submit_stale)
  4805. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4806. else if (pool->submit_old)
  4807. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4808. else {
  4809. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4810. submit_discard_share(work);
  4811. goto out;
  4812. }
  4813. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4814. }
  4815. if (work->stratum) {
  4816. char *s;
  4817. s = malloc(1024);
  4818. sws->s = s;
  4819. } else {
  4820. /* submit solution to bitcoin via JSON-RPC */
  4821. sws->ce = pop_curl_entry2(pool, false);
  4822. if (sws->ce) {
  4823. sws_has_ce(sws);
  4824. } else {
  4825. sws->next = pool->sws_waiting_on_curl;
  4826. pool->sws_waiting_on_curl = sws;
  4827. if (sws->next)
  4828. applog(LOG_DEBUG, "submit_thread queuing submission");
  4829. else
  4830. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4831. }
  4832. }
  4833. return sws;
  4834. out:
  4835. free(sws);
  4836. return NULL;
  4837. }
  4838. static bool retry_submission(struct submit_work_state *sws)
  4839. {
  4840. struct work *work = sws->work;
  4841. struct pool *pool = work->pool;
  4842. sws->resubmit = true;
  4843. if ((!work->stale) && stale_work(work, true)) {
  4844. work->stale = true;
  4845. if (opt_submit_stale)
  4846. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4847. else if (pool->submit_old)
  4848. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4849. else {
  4850. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4851. submit_discard_share(work);
  4852. return false;
  4853. }
  4854. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4855. }
  4856. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4857. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4858. submit_discard_share(work);
  4859. return false;
  4860. }
  4861. else if (work->stale) {
  4862. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4863. {
  4864. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4865. submit_discard_share(work);
  4866. return false;
  4867. }
  4868. }
  4869. /* pause, then restart work-request loop */
  4870. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4871. cgtime(&sws->tv_submit);
  4872. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4873. return true;
  4874. }
  4875. static void free_sws(struct submit_work_state *sws)
  4876. {
  4877. free(sws->s);
  4878. free_work(sws->work);
  4879. free(sws);
  4880. }
  4881. static void *submit_work_thread(__maybe_unused void *userdata)
  4882. {
  4883. int wip = 0;
  4884. CURLM *curlm;
  4885. long curlm_timeout_us = -1;
  4886. struct timeval curlm_timer;
  4887. struct submit_work_state *sws, **swsp;
  4888. struct submit_work_state *write_sws = NULL;
  4889. unsigned tsreduce = 0;
  4890. pthread_detach(pthread_self());
  4891. RenameThread("submit_work");
  4892. applog(LOG_DEBUG, "Creating extra submit work thread");
  4893. curlm = curl_multi_init();
  4894. curlm_timeout_us = -1;
  4895. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4896. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4897. fd_set rfds, wfds, efds;
  4898. int maxfd;
  4899. struct timeval tv_timeout, tv_now;
  4900. int n;
  4901. CURLMsg *cm;
  4902. FD_ZERO(&rfds);
  4903. while (1) {
  4904. mutex_lock(&submitting_lock);
  4905. total_submitting -= tsreduce;
  4906. tsreduce = 0;
  4907. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4908. notifier_read(submit_waiting_notifier);
  4909. }
  4910. // Receive any new submissions
  4911. while (submit_waiting) {
  4912. struct work *work = submit_waiting;
  4913. DL_DELETE(submit_waiting, work);
  4914. if ( (sws = begin_submission(work)) ) {
  4915. if (sws->ce)
  4916. curl_multi_add_handle(curlm, sws->ce->curl);
  4917. else if (sws->s) {
  4918. sws->next = write_sws;
  4919. write_sws = sws;
  4920. }
  4921. ++wip;
  4922. }
  4923. else {
  4924. --total_submitting;
  4925. free_work(work);
  4926. }
  4927. }
  4928. if (unlikely(shutting_down && !wip))
  4929. break;
  4930. mutex_unlock(&submitting_lock);
  4931. FD_ZERO(&rfds);
  4932. FD_ZERO(&wfds);
  4933. FD_ZERO(&efds);
  4934. tv_timeout.tv_sec = -1;
  4935. // Setup cURL with select
  4936. // Need to call perform to ensure the timeout gets updated
  4937. curl_multi_perform(curlm, &n);
  4938. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4939. if (curlm_timeout_us >= 0)
  4940. {
  4941. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4942. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4943. }
  4944. // Setup waiting stratum submissions with select
  4945. for (sws = write_sws; sws; sws = sws->next)
  4946. {
  4947. struct pool *pool = sws->work->pool;
  4948. int fd = pool->sock;
  4949. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4950. continue;
  4951. FD_SET(fd, &wfds);
  4952. set_maxfd(&maxfd, fd);
  4953. }
  4954. // Setup "submit waiting" notifier with select
  4955. FD_SET(submit_waiting_notifier[0], &rfds);
  4956. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4957. // Wait for something interesting to happen :)
  4958. cgtime(&tv_now);
  4959. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4960. FD_ZERO(&rfds);
  4961. continue;
  4962. }
  4963. // Handle any stratum ready-to-write results
  4964. for (swsp = &write_sws; (sws = *swsp); ) {
  4965. struct work *work = sws->work;
  4966. struct pool *pool = work->pool;
  4967. int fd = pool->sock;
  4968. bool sessionid_match;
  4969. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4970. next_write_sws:
  4971. // TODO: Check if stale, possibly discard etc
  4972. swsp = &sws->next;
  4973. continue;
  4974. }
  4975. cg_rlock(&pool->data_lock);
  4976. // 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
  4977. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4978. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4979. cg_runlock(&pool->data_lock);
  4980. if (!sessionid_match)
  4981. {
  4982. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4983. submit_discard_share2("disconnect", work);
  4984. ++tsreduce;
  4985. next_write_sws_del:
  4986. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4987. FD_CLR(fd, &wfds);
  4988. // Delete sws for this submission, since we're done with it
  4989. *swsp = sws->next;
  4990. free_sws(sws);
  4991. --wip;
  4992. continue;
  4993. }
  4994. char *s = sws->s;
  4995. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4996. int sshare_id;
  4997. uint32_t nonce;
  4998. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4999. char noncehex[9];
  5000. char ntimehex[9];
  5001. sshare->work = copy_work(work);
  5002. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5003. nonce = *((uint32_t *)(work->data + 76));
  5004. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5005. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5006. mutex_lock(&sshare_lock);
  5007. /* Give the stratum share a unique id */
  5008. sshare_id =
  5009. sshare->id = swork_id++;
  5010. HASH_ADD_INT(stratum_shares, id, sshare);
  5011. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5012. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5013. mutex_unlock(&sshare_lock);
  5014. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5015. if (likely(stratum_send(pool, s, strlen(s)))) {
  5016. if (pool_tclear(pool, &pool->submit_fail))
  5017. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5018. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5019. goto next_write_sws_del;
  5020. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5021. // Undo stuff
  5022. mutex_lock(&sshare_lock);
  5023. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5024. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5025. if (sshare)
  5026. HASH_DEL(stratum_shares, sshare);
  5027. mutex_unlock(&sshare_lock);
  5028. if (sshare)
  5029. {
  5030. free_work(sshare->work);
  5031. free(sshare);
  5032. }
  5033. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5034. total_ro++;
  5035. pool->remotefail_occasions++;
  5036. if (!sshare)
  5037. goto next_write_sws_del;
  5038. goto next_write_sws;
  5039. }
  5040. }
  5041. // Handle any cURL activities
  5042. curl_multi_perform(curlm, &n);
  5043. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5044. if (cm->msg == CURLMSG_DONE)
  5045. {
  5046. bool finished;
  5047. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5048. curl_multi_remove_handle(curlm, cm->easy_handle);
  5049. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5050. if (!finished) {
  5051. if (retry_submission(sws))
  5052. curl_multi_add_handle(curlm, sws->ce->curl);
  5053. else
  5054. finished = true;
  5055. }
  5056. if (finished) {
  5057. --wip;
  5058. ++tsreduce;
  5059. struct pool *pool = sws->work->pool;
  5060. if (pool->sws_waiting_on_curl) {
  5061. pool->sws_waiting_on_curl->ce = sws->ce;
  5062. sws_has_ce(pool->sws_waiting_on_curl);
  5063. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5064. curl_multi_add_handle(curlm, sws->ce->curl);
  5065. } else {
  5066. push_curl_entry(sws->ce, sws->work->pool);
  5067. }
  5068. free_sws(sws);
  5069. }
  5070. }
  5071. }
  5072. }
  5073. assert(!write_sws);
  5074. mutex_unlock(&submitting_lock);
  5075. curl_multi_cleanup(curlm);
  5076. applog(LOG_DEBUG, "submit_work thread exiting");
  5077. return NULL;
  5078. }
  5079. /* Find the pool that currently has the highest priority */
  5080. static struct pool *priority_pool(int choice)
  5081. {
  5082. struct pool *ret = NULL;
  5083. int i;
  5084. for (i = 0; i < total_pools; i++) {
  5085. struct pool *pool = pools[i];
  5086. if (pool->prio == choice) {
  5087. ret = pool;
  5088. break;
  5089. }
  5090. }
  5091. if (unlikely(!ret)) {
  5092. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5093. return pools[choice];
  5094. }
  5095. return ret;
  5096. }
  5097. int prioritize_pools(char *param, int *pid)
  5098. {
  5099. char *ptr, *next;
  5100. int i, pr, prio = 0;
  5101. if (total_pools == 0) {
  5102. return MSG_NOPOOL;
  5103. }
  5104. if (param == NULL || *param == '\0') {
  5105. return MSG_MISPID;
  5106. }
  5107. bool pools_changed[total_pools];
  5108. int new_prio[total_pools];
  5109. for (i = 0; i < total_pools; ++i)
  5110. pools_changed[i] = false;
  5111. next = param;
  5112. while (next && *next) {
  5113. ptr = next;
  5114. next = strchr(ptr, ',');
  5115. if (next)
  5116. *(next++) = '\0';
  5117. i = atoi(ptr);
  5118. if (i < 0 || i >= total_pools) {
  5119. *pid = i;
  5120. return MSG_INVPID;
  5121. }
  5122. if (pools_changed[i]) {
  5123. *pid = i;
  5124. return MSG_DUPPID;
  5125. }
  5126. pools_changed[i] = true;
  5127. new_prio[i] = prio++;
  5128. }
  5129. // Only change them if no errors
  5130. for (i = 0; i < total_pools; i++) {
  5131. if (pools_changed[i])
  5132. pools[i]->prio = new_prio[i];
  5133. }
  5134. // In priority order, cycle through the unchanged pools and append them
  5135. for (pr = 0; pr < total_pools; pr++)
  5136. for (i = 0; i < total_pools; i++) {
  5137. if (!pools_changed[i] && pools[i]->prio == pr) {
  5138. pools[i]->prio = prio++;
  5139. pools_changed[i] = true;
  5140. break;
  5141. }
  5142. }
  5143. if (current_pool()->prio)
  5144. switch_pools(NULL);
  5145. return MSG_POOLPRIO;
  5146. }
  5147. void validate_pool_priorities(void)
  5148. {
  5149. // TODO: this should probably do some sort of logging
  5150. int i, j;
  5151. bool used[total_pools];
  5152. bool valid[total_pools];
  5153. for (i = 0; i < total_pools; i++)
  5154. used[i] = valid[i] = false;
  5155. for (i = 0; i < total_pools; i++) {
  5156. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5157. if (!used[pools[i]->prio]) {
  5158. valid[i] = true;
  5159. used[pools[i]->prio] = true;
  5160. }
  5161. }
  5162. }
  5163. for (i = 0; i < total_pools; i++) {
  5164. if (!valid[i]) {
  5165. for (j = 0; j < total_pools; j++) {
  5166. if (!used[j]) {
  5167. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5168. pools[i]->prio = j;
  5169. used[j] = true;
  5170. break;
  5171. }
  5172. }
  5173. }
  5174. }
  5175. }
  5176. static void clear_pool_work(struct pool *pool);
  5177. /* Specifies whether we can switch to this pool or not. */
  5178. static bool pool_unusable(struct pool *pool)
  5179. {
  5180. if (pool->idle)
  5181. return true;
  5182. if (pool->enabled != POOL_ENABLED)
  5183. return true;
  5184. return false;
  5185. }
  5186. void switch_pools(struct pool *selected)
  5187. {
  5188. struct pool *pool, *last_pool;
  5189. int i, pool_no, next_pool;
  5190. cg_wlock(&control_lock);
  5191. last_pool = currentpool;
  5192. pool_no = currentpool->pool_no;
  5193. /* Switch selected to pool number 0 and move the rest down */
  5194. if (selected) {
  5195. if (selected->prio != 0) {
  5196. for (i = 0; i < total_pools; i++) {
  5197. pool = pools[i];
  5198. if (pool->prio < selected->prio)
  5199. pool->prio++;
  5200. }
  5201. selected->prio = 0;
  5202. }
  5203. }
  5204. switch (pool_strategy) {
  5205. /* All of these set to the master pool */
  5206. case POOL_BALANCE:
  5207. case POOL_FAILOVER:
  5208. case POOL_LOADBALANCE:
  5209. for (i = 0; i < total_pools; i++) {
  5210. pool = priority_pool(i);
  5211. if (pool_unusable(pool))
  5212. continue;
  5213. pool_no = pool->pool_no;
  5214. break;
  5215. }
  5216. break;
  5217. /* Both of these simply increment and cycle */
  5218. case POOL_ROUNDROBIN:
  5219. case POOL_ROTATE:
  5220. if (selected && !selected->idle) {
  5221. pool_no = selected->pool_no;
  5222. break;
  5223. }
  5224. next_pool = pool_no;
  5225. /* Select the next alive pool */
  5226. for (i = 1; i < total_pools; i++) {
  5227. next_pool++;
  5228. if (next_pool >= total_pools)
  5229. next_pool = 0;
  5230. pool = pools[next_pool];
  5231. if (pool_unusable(pool))
  5232. continue;
  5233. pool_no = next_pool;
  5234. break;
  5235. }
  5236. break;
  5237. default:
  5238. break;
  5239. }
  5240. currentpool = pools[pool_no];
  5241. pool = currentpool;
  5242. cg_wunlock(&control_lock);
  5243. /* Set the lagging flag to avoid pool not providing work fast enough
  5244. * messages in failover only mode since we have to get all fresh work
  5245. * as in restart_threads */
  5246. if (opt_fail_only)
  5247. pool_tset(pool, &pool->lagging);
  5248. if (pool != last_pool)
  5249. {
  5250. pool->block_id = 0;
  5251. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5252. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5253. if (pool_localgen(pool) || opt_fail_only)
  5254. clear_pool_work(last_pool);
  5255. }
  5256. }
  5257. mutex_lock(&lp_lock);
  5258. pthread_cond_broadcast(&lp_cond);
  5259. mutex_unlock(&lp_lock);
  5260. }
  5261. static void discard_work(struct work *work)
  5262. {
  5263. if (!work->clone && !work->rolls && !work->mined) {
  5264. if (work->pool) {
  5265. work->pool->discarded_work++;
  5266. work->pool->quota_used--;
  5267. work->pool->works--;
  5268. }
  5269. total_discarded++;
  5270. applog(LOG_DEBUG, "Discarded work");
  5271. } else
  5272. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5273. free_work(work);
  5274. }
  5275. static void wake_gws(void)
  5276. {
  5277. mutex_lock(stgd_lock);
  5278. pthread_cond_signal(&gws_cond);
  5279. mutex_unlock(stgd_lock);
  5280. }
  5281. static void discard_stale(void)
  5282. {
  5283. struct work *work, *tmp;
  5284. int stale = 0;
  5285. mutex_lock(stgd_lock);
  5286. HASH_ITER(hh, staged_work, work, tmp) {
  5287. if (stale_work(work, false)) {
  5288. HASH_DEL(staged_work, work);
  5289. discard_work(work);
  5290. stale++;
  5291. staged_full = false;
  5292. }
  5293. }
  5294. pthread_cond_signal(&gws_cond);
  5295. mutex_unlock(stgd_lock);
  5296. if (stale)
  5297. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5298. }
  5299. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5300. {
  5301. bool rv;
  5302. struct timeval tv, orig;
  5303. ldiv_t d;
  5304. d = ldiv(ustime, 1000000);
  5305. tv = (struct timeval){
  5306. .tv_sec = d.quot,
  5307. .tv_usec = d.rem,
  5308. };
  5309. orig = work->tv_staged;
  5310. timersub(&orig, &tv, &work->tv_staged);
  5311. rv = stale_work(work, share);
  5312. work->tv_staged = orig;
  5313. return rv;
  5314. }
  5315. static void restart_threads(void)
  5316. {
  5317. struct pool *cp = current_pool();
  5318. int i;
  5319. struct thr_info *thr;
  5320. /* Artificially set the lagging flag to avoid pool not providing work
  5321. * fast enough messages after every long poll */
  5322. pool_tset(cp, &cp->lagging);
  5323. /* Discard staged work that is now stale */
  5324. discard_stale();
  5325. rd_lock(&mining_thr_lock);
  5326. for (i = 0; i < mining_threads; i++)
  5327. {
  5328. thr = mining_thr[i];
  5329. thr->work_restart = true;
  5330. }
  5331. for (i = 0; i < mining_threads; i++)
  5332. {
  5333. thr = mining_thr[i];
  5334. notifier_wake(thr->work_restart_notifier);
  5335. }
  5336. rd_unlock(&mining_thr_lock);
  5337. }
  5338. static
  5339. void blkhashstr(char *rv, const unsigned char *hash)
  5340. {
  5341. unsigned char hash_swap[32];
  5342. swap256(hash_swap, hash);
  5343. swap32tole(hash_swap, hash_swap, 32 / 4);
  5344. bin2hex(rv, hash_swap, 32);
  5345. }
  5346. static void set_curblock(char *hexstr, unsigned char *hash)
  5347. {
  5348. unsigned char hash_swap[32];
  5349. current_block_id = ((uint32_t*)hash)[0];
  5350. strcpy(current_block, hexstr);
  5351. swap256(hash_swap, hash);
  5352. swap32tole(hash_swap, hash_swap, 32 / 4);
  5353. cg_wlock(&ch_lock);
  5354. block_time = time(NULL);
  5355. __update_block_title(hash_swap);
  5356. free(current_fullhash);
  5357. current_fullhash = malloc(65);
  5358. bin2hex(current_fullhash, hash_swap, 32);
  5359. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5360. cg_wunlock(&ch_lock);
  5361. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5362. }
  5363. /* Search to see if this string is from a block that has been seen before */
  5364. static bool block_exists(char *hexstr)
  5365. {
  5366. struct block *s;
  5367. rd_lock(&blk_lock);
  5368. HASH_FIND_STR(blocks, hexstr, s);
  5369. rd_unlock(&blk_lock);
  5370. if (s)
  5371. return true;
  5372. return false;
  5373. }
  5374. /* Tests if this work is from a block that has been seen before */
  5375. static inline bool from_existing_block(struct work *work)
  5376. {
  5377. char hexstr[37];
  5378. bool ret;
  5379. bin2hex(hexstr, work->data + 8, 18);
  5380. ret = block_exists(hexstr);
  5381. return ret;
  5382. }
  5383. static int block_sort(struct block *blocka, struct block *blockb)
  5384. {
  5385. return blocka->block_no - blockb->block_no;
  5386. }
  5387. static void set_blockdiff(const struct work *work)
  5388. {
  5389. unsigned char target[32];
  5390. double diff;
  5391. uint64_t diff64;
  5392. real_block_target(target, work->data);
  5393. diff = target_diff(target);
  5394. diff64 = diff;
  5395. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5396. format_unit2(net_hashrate, sizeof(net_hashrate),
  5397. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5398. if (unlikely(current_diff != diff))
  5399. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5400. current_diff = diff;
  5401. }
  5402. static bool test_work_current(struct work *work)
  5403. {
  5404. bool ret = true;
  5405. char hexstr[65];
  5406. if (work->mandatory)
  5407. return ret;
  5408. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5409. /* Hack to work around dud work sneaking into test */
  5410. bin2hex(hexstr, work->data + 8, 18);
  5411. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5412. goto out_free;
  5413. struct pool * const pool = work->pool;
  5414. /* Search to see if this block exists yet and if not, consider it a
  5415. * new block and set the current block details to this one */
  5416. if (!block_exists(hexstr))
  5417. {
  5418. struct block *s = calloc(sizeof(struct block), 1);
  5419. int deleted_block = 0;
  5420. ret = false;
  5421. if (unlikely(!s))
  5422. quit (1, "test_work_current OOM");
  5423. strcpy(s->hash, hexstr);
  5424. s->block_no = new_blocks++;
  5425. wr_lock(&blk_lock);
  5426. /* Only keep the last hour's worth of blocks in memory since
  5427. * work from blocks before this is virtually impossible and we
  5428. * want to prevent memory usage from continually rising */
  5429. if (HASH_COUNT(blocks) > 6)
  5430. {
  5431. struct block *oldblock;
  5432. HASH_SORT(blocks, block_sort);
  5433. oldblock = blocks;
  5434. deleted_block = oldblock->block_no;
  5435. HASH_DEL(blocks, oldblock);
  5436. free(oldblock);
  5437. }
  5438. HASH_ADD_STR(blocks, hash, s);
  5439. set_blockdiff(work);
  5440. wr_unlock(&blk_lock);
  5441. pool->block_id = block_id;
  5442. if (deleted_block)
  5443. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5444. #if BLKMAKER_VERSION > 1
  5445. template_nonce = 0;
  5446. #endif
  5447. set_curblock(hexstr, &work->data[4]);
  5448. if (unlikely(new_blocks == 1))
  5449. goto out_free;
  5450. if (!work->stratum)
  5451. {
  5452. if (work->longpoll)
  5453. {
  5454. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5455. pool->pool_no);
  5456. }
  5457. else
  5458. if (have_longpoll)
  5459. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5460. else
  5461. applog(LOG_NOTICE, "New block detected on network");
  5462. }
  5463. restart_threads();
  5464. }
  5465. else
  5466. {
  5467. bool restart = false;
  5468. if (unlikely(pool->block_id != block_id))
  5469. {
  5470. bool was_active = pool->block_id != 0;
  5471. pool->block_id = block_id;
  5472. if (!work->longpoll)
  5473. update_last_work(work);
  5474. if (was_active)
  5475. {
  5476. // Pool actively changed block
  5477. if (pool == current_pool())
  5478. restart = true;
  5479. if (block_id == current_block_id)
  5480. {
  5481. // Caught up, only announce if this pool is the one in use
  5482. if (restart)
  5483. applog(LOG_NOTICE, "%s %d caught up to new block",
  5484. work->longpoll ? "Longpoll from pool" : "Pool",
  5485. pool->pool_no);
  5486. }
  5487. else
  5488. {
  5489. // Switched to a block we know, but not the latest... why?
  5490. // This might detect pools trying to double-spend or 51%,
  5491. // but let's not make any accusations until it's had time
  5492. // in the real world.
  5493. blkhashstr(hexstr, &work->data[4]);
  5494. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5495. work->longpoll ? "Longpoll from pool" : "Pool",
  5496. pool->pool_no,
  5497. hexstr);
  5498. }
  5499. }
  5500. }
  5501. if (work->longpoll)
  5502. {
  5503. struct pool * const cp = current_pool();
  5504. ++pool->work_restart_id;
  5505. update_last_work(work);
  5506. applog(
  5507. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5508. "Longpoll from pool %d requested work update",
  5509. pool->pool_no);
  5510. if ((!restart) && pool == cp)
  5511. restart = true;
  5512. }
  5513. if (restart)
  5514. restart_threads();
  5515. }
  5516. work->longpoll = false;
  5517. out_free:
  5518. return ret;
  5519. }
  5520. static int tv_sort(struct work *worka, struct work *workb)
  5521. {
  5522. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5523. }
  5524. static bool work_rollable(struct work *work)
  5525. {
  5526. return (!work->clone && work->rolltime);
  5527. }
  5528. static bool hash_push(struct work *work)
  5529. {
  5530. bool rc = true;
  5531. mutex_lock(stgd_lock);
  5532. if (work_rollable(work))
  5533. staged_rollable++;
  5534. if (likely(!getq->frozen)) {
  5535. HASH_ADD_INT(staged_work, id, work);
  5536. HASH_SORT(staged_work, tv_sort);
  5537. } else
  5538. rc = false;
  5539. pthread_cond_broadcast(&getq->cond);
  5540. mutex_unlock(stgd_lock);
  5541. return rc;
  5542. }
  5543. static void stage_work(struct work *work)
  5544. {
  5545. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5546. work->id, work->pool->pool_no);
  5547. work->work_restart_id = work->pool->work_restart_id;
  5548. work->pool->last_work_time = time(NULL);
  5549. cgtime(&work->pool->tv_last_work_time);
  5550. test_work_current(work);
  5551. work->pool->works++;
  5552. hash_push(work);
  5553. }
  5554. #ifdef HAVE_CURSES
  5555. int curses_int(const char *query)
  5556. {
  5557. int ret;
  5558. char *cvar;
  5559. cvar = curses_input(query);
  5560. if (unlikely(!cvar))
  5561. return -1;
  5562. ret = atoi(cvar);
  5563. free(cvar);
  5564. return ret;
  5565. }
  5566. #endif
  5567. #ifdef HAVE_CURSES
  5568. static bool input_pool(bool live);
  5569. #endif
  5570. #ifdef HAVE_CURSES
  5571. static void display_pool_summary(struct pool *pool)
  5572. {
  5573. double efficiency = 0.0;
  5574. char xfer[17], bw[19];
  5575. int pool_secs;
  5576. if (curses_active_locked()) {
  5577. wlog("Pool: %s\n", pool->rpc_url);
  5578. if (pool->solved)
  5579. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5580. if (!pool->has_stratum)
  5581. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5582. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5583. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5584. wlog(" Accepted shares: %d\n", pool->accepted);
  5585. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5586. pool->rejected, pool->stale_shares,
  5587. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5588. );
  5589. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5590. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5591. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5592. wlog(" Network transfer: %s (%s)\n",
  5593. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5594. (float)pool->cgminer_pool_stats.net_bytes_received,
  5595. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5596. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5597. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5598. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5599. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5600. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5601. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5602. wlog(" Items worked on: %d\n", pool->works);
  5603. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5604. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5605. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5606. unlock_curses();
  5607. }
  5608. }
  5609. #endif
  5610. /* We can't remove the memory used for this struct pool because there may
  5611. * still be work referencing it. We just remove it from the pools list */
  5612. void remove_pool(struct pool *pool)
  5613. {
  5614. int i, last_pool = total_pools - 1;
  5615. struct pool *other;
  5616. /* Boost priority of any lower prio than this one */
  5617. for (i = 0; i < total_pools; i++) {
  5618. other = pools[i];
  5619. if (other->prio > pool->prio)
  5620. other->prio--;
  5621. }
  5622. if (pool->pool_no < last_pool) {
  5623. /* Swap the last pool for this one */
  5624. (pools[last_pool])->pool_no = pool->pool_no;
  5625. pools[pool->pool_no] = pools[last_pool];
  5626. }
  5627. /* Give it an invalid number */
  5628. pool->pool_no = total_pools;
  5629. pool->removed = true;
  5630. pool->has_stratum = false;
  5631. total_pools--;
  5632. }
  5633. /* add a mutex if this needs to be thread safe in the future */
  5634. static struct JE {
  5635. char *buf;
  5636. struct JE *next;
  5637. } *jedata = NULL;
  5638. static void json_escape_free()
  5639. {
  5640. struct JE *jeptr = jedata;
  5641. struct JE *jenext;
  5642. jedata = NULL;
  5643. while (jeptr) {
  5644. jenext = jeptr->next;
  5645. free(jeptr->buf);
  5646. free(jeptr);
  5647. jeptr = jenext;
  5648. }
  5649. }
  5650. static
  5651. char *json_escape(const char *str)
  5652. {
  5653. struct JE *jeptr;
  5654. char *buf, *ptr;
  5655. /* 2x is the max, may as well just allocate that */
  5656. ptr = buf = malloc(strlen(str) * 2 + 1);
  5657. jeptr = malloc(sizeof(*jeptr));
  5658. jeptr->buf = buf;
  5659. jeptr->next = jedata;
  5660. jedata = jeptr;
  5661. while (*str) {
  5662. if (*str == '\\' || *str == '"')
  5663. *(ptr++) = '\\';
  5664. *(ptr++) = *(str++);
  5665. }
  5666. *ptr = '\0';
  5667. return buf;
  5668. }
  5669. static
  5670. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5671. {
  5672. if (!elist)
  5673. return;
  5674. static struct string_elist *entry;
  5675. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5676. bool first = true;
  5677. DL_FOREACH(elist, entry)
  5678. {
  5679. const char * const s = entry->string;
  5680. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5681. first = false;
  5682. }
  5683. fprintf(fcfg, "\n]");
  5684. }
  5685. void write_config(FILE *fcfg)
  5686. {
  5687. int i;
  5688. /* Write pool values */
  5689. fputs("{\n\"pools\" : [", fcfg);
  5690. for(i = 0; i < total_pools; i++) {
  5691. struct pool *pool = pools[i];
  5692. if (pool->quota != 1) {
  5693. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5694. pool->quota,
  5695. json_escape(pool->rpc_url));
  5696. } else {
  5697. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5698. json_escape(pool->rpc_url));
  5699. }
  5700. if (pool->rpc_proxy)
  5701. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5702. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5703. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5704. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5705. if (pool->force_rollntime)
  5706. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5707. fprintf(fcfg, "\n\t}");
  5708. }
  5709. fputs("\n]\n", fcfg);
  5710. #ifdef HAVE_OPENCL
  5711. write_config_opencl(fcfg);
  5712. #endif
  5713. #ifdef WANT_CPUMINE
  5714. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5715. #endif
  5716. /* Simple bool and int options */
  5717. struct opt_table *opt;
  5718. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5719. char *p, *name = strdup(opt->names);
  5720. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5721. if (p[1] != '-')
  5722. continue;
  5723. if (opt->type & OPT_NOARG &&
  5724. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5725. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5726. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5727. if (opt->type & OPT_HASARG &&
  5728. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5729. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5730. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5731. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5732. opt->desc != opt_hidden &&
  5733. 0 <= *(int *)opt->u.arg)
  5734. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5735. }
  5736. }
  5737. /* Special case options */
  5738. if (request_target_str)
  5739. {
  5740. if (request_pdiff == (long)request_pdiff)
  5741. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5742. else
  5743. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5744. }
  5745. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5746. if (pool_strategy == POOL_BALANCE)
  5747. fputs(",\n\"balance\" : true", fcfg);
  5748. if (pool_strategy == POOL_LOADBALANCE)
  5749. fputs(",\n\"load-balance\" : true", fcfg);
  5750. if (pool_strategy == POOL_ROUNDROBIN)
  5751. fputs(",\n\"round-robin\" : true", fcfg);
  5752. if (pool_strategy == POOL_ROTATE)
  5753. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5754. #if defined(unix) || defined(__APPLE__)
  5755. if (opt_stderr_cmd && *opt_stderr_cmd)
  5756. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5757. #endif // defined(unix)
  5758. if (opt_kernel_path && *opt_kernel_path) {
  5759. char *kpath = strdup(opt_kernel_path);
  5760. if (kpath[strlen(kpath)-1] == '/')
  5761. kpath[strlen(kpath)-1] = 0;
  5762. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5763. free(kpath);
  5764. }
  5765. if (schedstart.enable)
  5766. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5767. if (schedstop.enable)
  5768. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5769. if (opt_socks_proxy && *opt_socks_proxy)
  5770. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5771. _write_config_string_elist(fcfg, "scan", scan_devices);
  5772. #ifdef USE_LIBMICROHTTPD
  5773. if (httpsrv_port != -1)
  5774. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5775. #endif
  5776. #ifdef USE_LIBEVENT
  5777. if (stratumsrv_port != -1)
  5778. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5779. #endif
  5780. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5781. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5782. if (opt_api_allow)
  5783. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5784. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5785. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5786. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5787. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5788. if (*opt_api_mcast_des)
  5789. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5790. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5791. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5792. if (opt_api_groups)
  5793. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5794. fputs("\n}\n", fcfg);
  5795. json_escape_free();
  5796. }
  5797. void zero_bestshare(void)
  5798. {
  5799. int i;
  5800. best_diff = 0;
  5801. memset(best_share, 0, 8);
  5802. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5803. for (i = 0; i < total_pools; i++) {
  5804. struct pool *pool = pools[i];
  5805. pool->best_diff = 0;
  5806. }
  5807. }
  5808. void zero_stats(void)
  5809. {
  5810. int i;
  5811. applog(LOG_DEBUG, "Zeroing stats");
  5812. cgtime(&total_tv_start);
  5813. miner_started = total_tv_start;
  5814. total_rolling = 0;
  5815. total_mhashes_done = 0;
  5816. total_getworks = 0;
  5817. total_accepted = 0;
  5818. total_rejected = 0;
  5819. hw_errors = 0;
  5820. total_stale = 0;
  5821. total_discarded = 0;
  5822. total_bytes_rcvd = total_bytes_sent = 0;
  5823. new_blocks = 0;
  5824. local_work = 0;
  5825. total_go = 0;
  5826. total_ro = 0;
  5827. total_secs = 1.0;
  5828. total_diff1 = 0;
  5829. total_bad_diff1 = 0;
  5830. found_blocks = 0;
  5831. total_diff_accepted = 0;
  5832. total_diff_rejected = 0;
  5833. total_diff_stale = 0;
  5834. #ifdef HAVE_CURSES
  5835. awidth = rwidth = swidth = hwwidth = 1;
  5836. #endif
  5837. for (i = 0; i < total_pools; i++) {
  5838. struct pool *pool = pools[i];
  5839. pool->getwork_requested = 0;
  5840. pool->accepted = 0;
  5841. pool->rejected = 0;
  5842. pool->solved = 0;
  5843. pool->getwork_requested = 0;
  5844. pool->stale_shares = 0;
  5845. pool->discarded_work = 0;
  5846. pool->getfail_occasions = 0;
  5847. pool->remotefail_occasions = 0;
  5848. pool->last_share_time = 0;
  5849. pool->diff1 = 0;
  5850. pool->diff_accepted = 0;
  5851. pool->diff_rejected = 0;
  5852. pool->diff_stale = 0;
  5853. pool->last_share_diff = 0;
  5854. pool->cgminer_stats.start_tv = total_tv_start;
  5855. pool->cgminer_stats.getwork_calls = 0;
  5856. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5857. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5858. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5859. pool->cgminer_pool_stats.getwork_calls = 0;
  5860. pool->cgminer_pool_stats.getwork_attempts = 0;
  5861. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5862. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5863. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5864. pool->cgminer_pool_stats.min_diff = 0;
  5865. pool->cgminer_pool_stats.max_diff = 0;
  5866. pool->cgminer_pool_stats.min_diff_count = 0;
  5867. pool->cgminer_pool_stats.max_diff_count = 0;
  5868. pool->cgminer_pool_stats.times_sent = 0;
  5869. pool->cgminer_pool_stats.bytes_sent = 0;
  5870. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5871. pool->cgminer_pool_stats.times_received = 0;
  5872. pool->cgminer_pool_stats.bytes_received = 0;
  5873. pool->cgminer_pool_stats.net_bytes_received = 0;
  5874. }
  5875. zero_bestshare();
  5876. for (i = 0; i < total_devices; ++i) {
  5877. struct cgpu_info *cgpu = get_devices(i);
  5878. mutex_lock(&hash_lock);
  5879. cgpu->total_mhashes = 0;
  5880. cgpu->accepted = 0;
  5881. cgpu->rejected = 0;
  5882. cgpu->stale = 0;
  5883. cgpu->hw_errors = 0;
  5884. cgpu->utility = 0.0;
  5885. cgpu->utility_diff1 = 0;
  5886. cgpu->last_share_pool_time = 0;
  5887. cgpu->bad_diff1 = 0;
  5888. cgpu->diff1 = 0;
  5889. cgpu->diff_accepted = 0;
  5890. cgpu->diff_rejected = 0;
  5891. cgpu->diff_stale = 0;
  5892. cgpu->last_share_diff = 0;
  5893. cgpu->thread_fail_init_count = 0;
  5894. cgpu->thread_zero_hash_count = 0;
  5895. cgpu->thread_fail_queue_count = 0;
  5896. cgpu->dev_sick_idle_60_count = 0;
  5897. cgpu->dev_dead_idle_600_count = 0;
  5898. cgpu->dev_nostart_count = 0;
  5899. cgpu->dev_over_heat_count = 0;
  5900. cgpu->dev_thermal_cutoff_count = 0;
  5901. cgpu->dev_comms_error_count = 0;
  5902. cgpu->dev_throttle_count = 0;
  5903. cgpu->cgminer_stats.start_tv = total_tv_start;
  5904. cgpu->cgminer_stats.getwork_calls = 0;
  5905. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5906. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5907. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5908. mutex_unlock(&hash_lock);
  5909. }
  5910. }
  5911. #ifdef HAVE_CURSES
  5912. static
  5913. void loginput_mode(const int size)
  5914. {
  5915. clear_logwin();
  5916. loginput_size = size;
  5917. check_winsizes();
  5918. }
  5919. static void display_pools(void)
  5920. {
  5921. struct pool *pool;
  5922. int selected, i, j;
  5923. char input;
  5924. loginput_mode(7 + total_pools);
  5925. immedok(logwin, true);
  5926. updated:
  5927. for (j = 0; j < total_pools; j++) {
  5928. for (i = 0; i < total_pools; i++) {
  5929. pool = pools[i];
  5930. if (pool->prio != j)
  5931. continue;
  5932. if (pool == current_pool())
  5933. wattron(logwin, A_BOLD);
  5934. if (pool->enabled != POOL_ENABLED)
  5935. wattron(logwin, A_DIM);
  5936. wlogprint("%d: ", pool->prio);
  5937. switch (pool->enabled) {
  5938. case POOL_ENABLED:
  5939. wlogprint("Enabled ");
  5940. break;
  5941. case POOL_DISABLED:
  5942. wlogprint("Disabled ");
  5943. break;
  5944. case POOL_REJECTING:
  5945. wlogprint("Rejectin ");
  5946. break;
  5947. }
  5948. if (pool->idle)
  5949. wlogprint("Dead ");
  5950. else
  5951. if (pool->has_stratum)
  5952. wlogprint("Strtm");
  5953. else
  5954. if (pool->lp_url && pool->proto != pool->lp_proto)
  5955. wlogprint("Mixed");
  5956. else
  5957. switch (pool->proto) {
  5958. case PLP_GETBLOCKTEMPLATE:
  5959. wlogprint(" GBT ");
  5960. break;
  5961. case PLP_GETWORK:
  5962. wlogprint("GWork");
  5963. break;
  5964. default:
  5965. wlogprint("Alive");
  5966. }
  5967. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  5968. pool->quota,
  5969. pool->pool_no,
  5970. pool->rpc_url, pool->rpc_user);
  5971. wattroff(logwin, A_BOLD | A_DIM);
  5972. break; //for (i = 0; i < total_pools; i++)
  5973. }
  5974. }
  5975. retry:
  5976. wlogprint("\nCurrent pool management strategy: %s\n",
  5977. strategies[pool_strategy].s);
  5978. if (pool_strategy == POOL_ROTATE)
  5979. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  5980. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  5981. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  5982. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  5983. wlogprint("Or press any other key to continue\n");
  5984. logwin_update();
  5985. input = getch();
  5986. if (!strncasecmp(&input, "a", 1)) {
  5987. if (opt_benchmark)
  5988. {
  5989. wlogprint("Cannot add pools in benchmark mode");
  5990. goto retry;
  5991. }
  5992. input_pool(true);
  5993. goto updated;
  5994. } else if (!strncasecmp(&input, "r", 1)) {
  5995. if (total_pools <= 1) {
  5996. wlogprint("Cannot remove last pool");
  5997. goto retry;
  5998. }
  5999. selected = curses_int("Select pool number");
  6000. if (selected < 0 || selected >= total_pools) {
  6001. wlogprint("Invalid selection\n");
  6002. goto retry;
  6003. }
  6004. pool = pools[selected];
  6005. if (pool == current_pool())
  6006. switch_pools(NULL);
  6007. if (pool == current_pool()) {
  6008. wlogprint("Unable to remove pool due to activity\n");
  6009. goto retry;
  6010. }
  6011. disable_pool(pool);
  6012. remove_pool(pool);
  6013. goto updated;
  6014. } else if (!strncasecmp(&input, "s", 1)) {
  6015. selected = curses_int("Select pool number");
  6016. if (selected < 0 || selected >= total_pools) {
  6017. wlogprint("Invalid selection\n");
  6018. goto retry;
  6019. }
  6020. pool = pools[selected];
  6021. enable_pool(pool);
  6022. switch_pools(pool);
  6023. goto updated;
  6024. } else if (!strncasecmp(&input, "d", 1)) {
  6025. if (enabled_pools <= 1) {
  6026. wlogprint("Cannot disable last pool");
  6027. goto retry;
  6028. }
  6029. selected = curses_int("Select pool number");
  6030. if (selected < 0 || selected >= total_pools) {
  6031. wlogprint("Invalid selection\n");
  6032. goto retry;
  6033. }
  6034. pool = pools[selected];
  6035. disable_pool(pool);
  6036. if (pool == current_pool())
  6037. switch_pools(NULL);
  6038. goto updated;
  6039. } else if (!strncasecmp(&input, "e", 1)) {
  6040. selected = curses_int("Select pool number");
  6041. if (selected < 0 || selected >= total_pools) {
  6042. wlogprint("Invalid selection\n");
  6043. goto retry;
  6044. }
  6045. pool = pools[selected];
  6046. enable_pool(pool);
  6047. if (pool->prio < current_pool()->prio)
  6048. switch_pools(pool);
  6049. goto updated;
  6050. } else if (!strncasecmp(&input, "c", 1)) {
  6051. for (i = 0; i <= TOP_STRATEGY; i++)
  6052. wlogprint("%d: %s\n", i, strategies[i].s);
  6053. selected = curses_int("Select strategy number type");
  6054. if (selected < 0 || selected > TOP_STRATEGY) {
  6055. wlogprint("Invalid selection\n");
  6056. goto retry;
  6057. }
  6058. if (selected == POOL_ROTATE) {
  6059. opt_rotate_period = curses_int("Select interval in minutes");
  6060. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6061. opt_rotate_period = 0;
  6062. wlogprint("Invalid selection\n");
  6063. goto retry;
  6064. }
  6065. }
  6066. pool_strategy = selected;
  6067. switch_pools(NULL);
  6068. goto updated;
  6069. } else if (!strncasecmp(&input, "i", 1)) {
  6070. selected = curses_int("Select pool number");
  6071. if (selected < 0 || selected >= total_pools) {
  6072. wlogprint("Invalid selection\n");
  6073. goto retry;
  6074. }
  6075. pool = pools[selected];
  6076. display_pool_summary(pool);
  6077. goto retry;
  6078. } else if (!strncasecmp(&input, "q", 1)) {
  6079. selected = curses_int("Select pool number");
  6080. if (selected < 0 || selected >= total_pools) {
  6081. wlogprint("Invalid selection\n");
  6082. goto retry;
  6083. }
  6084. pool = pools[selected];
  6085. selected = curses_int("Set quota");
  6086. if (selected < 0) {
  6087. wlogprint("Invalid negative quota\n");
  6088. goto retry;
  6089. }
  6090. pool->quota = selected;
  6091. adjust_quota_gcd();
  6092. goto updated;
  6093. } else if (!strncasecmp(&input, "f", 1)) {
  6094. opt_fail_only ^= true;
  6095. goto updated;
  6096. } else if (!strncasecmp(&input, "p", 1)) {
  6097. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6098. if (!prilist)
  6099. {
  6100. wlogprint("Not changing priorities\n");
  6101. goto retry;
  6102. }
  6103. int res = prioritize_pools(prilist, &i);
  6104. free(prilist);
  6105. switch (res) {
  6106. case MSG_NOPOOL:
  6107. wlogprint("No pools\n");
  6108. goto retry;
  6109. case MSG_MISPID:
  6110. wlogprint("Missing pool id parameter\n");
  6111. goto retry;
  6112. case MSG_INVPID:
  6113. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6114. goto retry;
  6115. case MSG_DUPPID:
  6116. wlogprint("Duplicate pool specified %d\n", i);
  6117. goto retry;
  6118. case MSG_POOLPRIO:
  6119. default:
  6120. goto updated;
  6121. }
  6122. }
  6123. immedok(logwin, false);
  6124. loginput_mode(0);
  6125. }
  6126. static const char *summary_detail_level_str(void)
  6127. {
  6128. if (opt_compact)
  6129. return "compact";
  6130. if (opt_show_procs)
  6131. return "processors";
  6132. return "devices";
  6133. }
  6134. static void display_options(void)
  6135. {
  6136. int selected;
  6137. char input;
  6138. immedok(logwin, true);
  6139. loginput_mode(12);
  6140. retry:
  6141. clear_logwin();
  6142. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6143. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6144. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6145. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6146. opt_debug_console ? "on" : "off",
  6147. want_per_device_stats? "on" : "off",
  6148. opt_quiet ? "on" : "off",
  6149. opt_log_output ? "on" : "off",
  6150. opt_protocol ? "on" : "off",
  6151. opt_worktime ? "on" : "off",
  6152. summary_detail_level_str(),
  6153. opt_log_interval,
  6154. opt_weighed_stats ? "weighed" : "absolute");
  6155. wlogprint("Select an option or any other key to return\n");
  6156. logwin_update();
  6157. input = getch();
  6158. if (!strncasecmp(&input, "q", 1)) {
  6159. opt_quiet ^= true;
  6160. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6161. goto retry;
  6162. } else if (!strncasecmp(&input, "v", 1)) {
  6163. opt_log_output ^= true;
  6164. if (opt_log_output)
  6165. opt_quiet = false;
  6166. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6167. goto retry;
  6168. } else if (!strncasecmp(&input, "n", 1)) {
  6169. opt_log_output = false;
  6170. opt_debug_console = false;
  6171. opt_quiet = false;
  6172. opt_protocol = false;
  6173. opt_compact = false;
  6174. opt_show_procs = false;
  6175. devsummaryYOffset = 0;
  6176. want_per_device_stats = false;
  6177. wlogprint("Output mode reset to normal\n");
  6178. switch_logsize();
  6179. goto retry;
  6180. } else if (!strncasecmp(&input, "d", 1)) {
  6181. opt_debug = true;
  6182. opt_debug_console ^= true;
  6183. opt_log_output = opt_debug_console;
  6184. if (opt_debug_console)
  6185. opt_quiet = false;
  6186. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6187. goto retry;
  6188. } else if (!strncasecmp(&input, "m", 1)) {
  6189. if (opt_compact)
  6190. opt_compact = false;
  6191. else
  6192. if (!opt_show_procs)
  6193. opt_show_procs = true;
  6194. else
  6195. {
  6196. opt_compact = true;
  6197. opt_show_procs = false;
  6198. devsummaryYOffset = 0;
  6199. }
  6200. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6201. switch_logsize();
  6202. goto retry;
  6203. } else if (!strncasecmp(&input, "p", 1)) {
  6204. want_per_device_stats ^= true;
  6205. opt_log_output = want_per_device_stats;
  6206. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6207. goto retry;
  6208. } else if (!strncasecmp(&input, "r", 1)) {
  6209. opt_protocol ^= true;
  6210. if (opt_protocol)
  6211. opt_quiet = false;
  6212. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6213. goto retry;
  6214. } else if (!strncasecmp(&input, "c", 1))
  6215. clear_logwin();
  6216. else if (!strncasecmp(&input, "l", 1)) {
  6217. selected = curses_int("Interval in seconds");
  6218. if (selected < 0 || selected > 9999) {
  6219. wlogprint("Invalid selection\n");
  6220. goto retry;
  6221. }
  6222. opt_log_interval = selected;
  6223. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6224. goto retry;
  6225. } else if (!strncasecmp(&input, "s", 1)) {
  6226. opt_realquiet = true;
  6227. } else if (!strncasecmp(&input, "w", 1)) {
  6228. opt_worktime ^= true;
  6229. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6230. goto retry;
  6231. } else if (!strncasecmp(&input, "t", 1)) {
  6232. opt_weighed_stats ^= true;
  6233. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6234. goto retry;
  6235. } else if (!strncasecmp(&input, "z", 1)) {
  6236. zero_stats();
  6237. goto retry;
  6238. }
  6239. immedok(logwin, false);
  6240. loginput_mode(0);
  6241. }
  6242. #endif
  6243. void default_save_file(char *filename)
  6244. {
  6245. #if defined(unix) || defined(__APPLE__)
  6246. if (getenv("HOME") && *getenv("HOME")) {
  6247. strcpy(filename, getenv("HOME"));
  6248. strcat(filename, "/");
  6249. }
  6250. else
  6251. strcpy(filename, "");
  6252. strcat(filename, ".bfgminer/");
  6253. mkdir(filename, 0777);
  6254. #else
  6255. strcpy(filename, "");
  6256. #endif
  6257. strcat(filename, def_conf);
  6258. }
  6259. #ifdef HAVE_CURSES
  6260. static void set_options(void)
  6261. {
  6262. int selected;
  6263. char input;
  6264. immedok(logwin, true);
  6265. loginput_mode(8);
  6266. retry:
  6267. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6268. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6269. "[W]rite config file\n[B]FGMiner restart\n",
  6270. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6271. wlogprint("Select an option or any other key to return\n");
  6272. logwin_update();
  6273. input = getch();
  6274. if (!strncasecmp(&input, "q", 1)) {
  6275. selected = curses_int("Extra work items to queue");
  6276. if (selected < 0 || selected > 9999) {
  6277. wlogprint("Invalid selection\n");
  6278. goto retry;
  6279. }
  6280. opt_queue = selected;
  6281. goto retry;
  6282. } else if (!strncasecmp(&input, "l", 1)) {
  6283. if (want_longpoll)
  6284. stop_longpoll();
  6285. else
  6286. start_longpoll();
  6287. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6288. goto retry;
  6289. } else if (!strncasecmp(&input, "s", 1)) {
  6290. selected = curses_int("Set scantime in seconds");
  6291. if (selected < 0 || selected > 9999) {
  6292. wlogprint("Invalid selection\n");
  6293. goto retry;
  6294. }
  6295. opt_scantime = selected;
  6296. goto retry;
  6297. } else if (!strncasecmp(&input, "e", 1)) {
  6298. selected = curses_int("Set expiry time in seconds");
  6299. if (selected < 0 || selected > 9999) {
  6300. wlogprint("Invalid selection\n");
  6301. goto retry;
  6302. }
  6303. opt_expiry = selected;
  6304. goto retry;
  6305. } else if (!strncasecmp(&input, "r", 1)) {
  6306. selected = curses_int("Retries before failing (-1 infinite)");
  6307. if (selected < -1 || selected > 9999) {
  6308. wlogprint("Invalid selection\n");
  6309. goto retry;
  6310. }
  6311. opt_retries = selected;
  6312. goto retry;
  6313. } else if (!strncasecmp(&input, "w", 1)) {
  6314. FILE *fcfg;
  6315. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6316. default_save_file(filename);
  6317. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6318. str = curses_input(prompt);
  6319. if (str) {
  6320. struct stat statbuf;
  6321. strcpy(filename, str);
  6322. free(str);
  6323. if (!stat(filename, &statbuf)) {
  6324. wlogprint("File exists, overwrite?\n");
  6325. input = getch();
  6326. if (strncasecmp(&input, "y", 1))
  6327. goto retry;
  6328. }
  6329. }
  6330. fcfg = fopen(filename, "w");
  6331. if (!fcfg) {
  6332. wlogprint("Cannot open or create file\n");
  6333. goto retry;
  6334. }
  6335. write_config(fcfg);
  6336. fclose(fcfg);
  6337. goto retry;
  6338. } else if (!strncasecmp(&input, "b", 1)) {
  6339. wlogprint("Are you sure?\n");
  6340. input = getch();
  6341. if (!strncasecmp(&input, "y", 1))
  6342. app_restart();
  6343. else
  6344. clear_logwin();
  6345. } else
  6346. clear_logwin();
  6347. loginput_mode(0);
  6348. immedok(logwin, false);
  6349. }
  6350. int scan_serial(const char *);
  6351. static
  6352. void _managetui_msg(const char *repr, const char **msg)
  6353. {
  6354. if (*msg)
  6355. {
  6356. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6357. wattron(logwin, A_BOLD);
  6358. wlogprint("%s", *msg);
  6359. wattroff(logwin, A_BOLD);
  6360. *msg = NULL;
  6361. }
  6362. logwin_update();
  6363. }
  6364. void manage_device(void)
  6365. {
  6366. char logline[256];
  6367. const char *msg = NULL;
  6368. struct cgpu_info *cgpu;
  6369. const struct device_drv *drv;
  6370. selecting_device = true;
  6371. immedok(logwin, true);
  6372. loginput_mode(12);
  6373. devchange:
  6374. if (unlikely(!total_devices))
  6375. {
  6376. clear_logwin();
  6377. wlogprint("(no devices)\n");
  6378. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6379. _managetui_msg("(none)", &msg);
  6380. int input = getch();
  6381. switch (input)
  6382. {
  6383. case '+': case '=': // add new device
  6384. goto addnew;
  6385. default:
  6386. goto out;
  6387. }
  6388. }
  6389. cgpu = devices[selected_device];
  6390. drv = cgpu->drv;
  6391. refresh_devstatus();
  6392. refresh:
  6393. clear_logwin();
  6394. wlogprint("Select processor to manage using up/down arrow keys\n");
  6395. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6396. wattron(logwin, A_BOLD);
  6397. wlogprint("%s", logline);
  6398. wattroff(logwin, A_BOLD);
  6399. wlogprint("\n");
  6400. if (cgpu->dev_manufacturer)
  6401. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6402. else
  6403. if (cgpu->dev_product)
  6404. wlogprint(" %s\n", cgpu->dev_product);
  6405. if (cgpu->dev_serial)
  6406. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6407. if (cgpu->kname)
  6408. wlogprint("Kernel: %s\n", cgpu->kname);
  6409. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6410. drv->proc_wlogprint_status(cgpu);
  6411. wlogprint("\n");
  6412. // TODO: Last share at TIMESTAMP on pool N
  6413. // TODO: Custom device info/commands
  6414. if (cgpu->deven != DEV_ENABLED)
  6415. wlogprint("[E]nable ");
  6416. if (cgpu->deven != DEV_DISABLED)
  6417. wlogprint("[D]isable ");
  6418. if (drv->identify_device)
  6419. wlogprint("[I]dentify ");
  6420. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6421. drv->proc_tui_wlogprint_choices(cgpu);
  6422. wlogprint("\n");
  6423. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6424. _managetui_msg(cgpu->proc_repr, &msg);
  6425. while (true)
  6426. {
  6427. int input = getch();
  6428. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6429. switch (input) {
  6430. case 'd': case 'D':
  6431. if (cgpu->deven == DEV_DISABLED)
  6432. msg = "Processor already disabled\n";
  6433. else
  6434. {
  6435. cgpu->deven = DEV_DISABLED;
  6436. msg = "Processor being disabled\n";
  6437. }
  6438. goto refresh;
  6439. case 'e': case 'E':
  6440. if (cgpu->deven == DEV_ENABLED)
  6441. msg = "Processor already enabled\n";
  6442. else
  6443. {
  6444. proc_enable(cgpu);
  6445. msg = "Processor being enabled\n";
  6446. }
  6447. goto refresh;
  6448. case 'i': case 'I':
  6449. if (drv->identify_device && drv->identify_device(cgpu))
  6450. msg = "Identify command sent\n";
  6451. else
  6452. goto key_default;
  6453. goto refresh;
  6454. case KEY_DOWN:
  6455. if (selected_device >= total_devices - 1)
  6456. break;
  6457. ++selected_device;
  6458. goto devchange;
  6459. case KEY_UP:
  6460. if (selected_device <= 0)
  6461. break;
  6462. --selected_device;
  6463. goto devchange;
  6464. case KEY_NPAGE:
  6465. {
  6466. if (selected_device >= total_devices - 1)
  6467. break;
  6468. struct cgpu_info *mdev = devices[selected_device]->device;
  6469. do {
  6470. ++selected_device;
  6471. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6472. goto devchange;
  6473. }
  6474. case KEY_PPAGE:
  6475. {
  6476. if (selected_device <= 0)
  6477. break;
  6478. struct cgpu_info *mdev = devices[selected_device]->device;
  6479. do {
  6480. --selected_device;
  6481. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6482. goto devchange;
  6483. }
  6484. case '/': case '?': // find device
  6485. {
  6486. static char *pattern = NULL;
  6487. char *newpattern = curses_input("Enter pattern");
  6488. if (newpattern)
  6489. {
  6490. free(pattern);
  6491. pattern = newpattern;
  6492. }
  6493. else
  6494. if (!pattern)
  6495. pattern = calloc(1, 1);
  6496. int match = cgpu_search(pattern, selected_device + 1);
  6497. if (match == -1)
  6498. {
  6499. msg = "Couldn't find device\n";
  6500. goto refresh;
  6501. }
  6502. selected_device = match;
  6503. goto devchange;
  6504. }
  6505. case '+': case '=': // add new device
  6506. {
  6507. addnew:
  6508. clear_logwin();
  6509. _wlogprint(
  6510. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6511. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6512. "For example: erupter:"
  6513. #ifdef WIN32
  6514. "\\\\.\\COM40"
  6515. #elif defined(__APPLE__)
  6516. "/dev/cu.SLAB_USBtoUART"
  6517. #else
  6518. "/dev/ttyUSB39"
  6519. #endif
  6520. "\n"
  6521. );
  6522. char *scanser = curses_input("Enter target");
  6523. if (scan_serial(scanser))
  6524. {
  6525. selected_device = total_devices - 1;
  6526. msg = "Device scan succeeded\n";
  6527. }
  6528. else
  6529. msg = "No new devices found\n";
  6530. goto devchange;
  6531. }
  6532. case 'Q': case 'q':
  6533. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6534. case '\x1b': // ESC
  6535. case KEY_ENTER:
  6536. case '\r': // Ctrl-M on Windows, with nonl
  6537. #ifdef PADENTER
  6538. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6539. #endif
  6540. case '\n':
  6541. goto out;
  6542. default:
  6543. ;
  6544. key_default:
  6545. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6546. {
  6547. msg = drv->proc_tui_handle_choice(cgpu, input);
  6548. if (msg)
  6549. goto refresh;
  6550. }
  6551. }
  6552. }
  6553. out:
  6554. selecting_device = false;
  6555. loginput_mode(0);
  6556. immedok(logwin, false);
  6557. }
  6558. void show_help(void)
  6559. {
  6560. loginput_mode(10);
  6561. // NOTE: wlogprint is a macro with a buffer limit
  6562. _wlogprint(
  6563. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6564. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6565. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6566. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6567. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6568. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6569. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6570. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6571. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6572. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6573. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6574. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6575. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6576. "\n"
  6577. "devices/processors hashing (only for totals line), hottest temperature\n"
  6578. );
  6579. wlogprint(
  6580. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6581. , opt_log_interval);
  6582. _wlogprint(
  6583. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6584. "HW: hardware errors / % nonces invalid\n"
  6585. "\n"
  6586. "Press any key to clear"
  6587. );
  6588. logwin_update();
  6589. getch();
  6590. loginput_mode(0);
  6591. }
  6592. static void *input_thread(void __maybe_unused *userdata)
  6593. {
  6594. RenameThread("input");
  6595. if (!curses_active)
  6596. return NULL;
  6597. while (1) {
  6598. int input;
  6599. input = getch();
  6600. switch (input) {
  6601. case 'h': case 'H': case '?':
  6602. case KEY_F(1):
  6603. show_help();
  6604. break;
  6605. case 'q': case 'Q':
  6606. kill_work();
  6607. return NULL;
  6608. case 'd': case 'D':
  6609. display_options();
  6610. break;
  6611. case 'm': case 'M':
  6612. manage_device();
  6613. break;
  6614. case 'p': case 'P':
  6615. display_pools();
  6616. break;
  6617. case 's': case 'S':
  6618. set_options();
  6619. break;
  6620. #ifdef HAVE_CURSES
  6621. case KEY_DOWN:
  6622. {
  6623. const int visible_lines = logcursor - devcursor;
  6624. const int invisible_lines = total_lines - visible_lines;
  6625. if (devsummaryYOffset <= -invisible_lines)
  6626. break;
  6627. devsummaryYOffset -= 2;
  6628. }
  6629. case KEY_UP:
  6630. if (devsummaryYOffset == 0)
  6631. break;
  6632. ++devsummaryYOffset;
  6633. refresh_devstatus();
  6634. break;
  6635. case KEY_NPAGE:
  6636. {
  6637. const int visible_lines = logcursor - devcursor;
  6638. const int invisible_lines = total_lines - visible_lines;
  6639. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6640. devsummaryYOffset = -invisible_lines;
  6641. else
  6642. devsummaryYOffset -= visible_lines;
  6643. refresh_devstatus();
  6644. break;
  6645. }
  6646. case KEY_PPAGE:
  6647. {
  6648. const int visible_lines = logcursor - devcursor;
  6649. if (devsummaryYOffset + visible_lines >= 0)
  6650. devsummaryYOffset = 0;
  6651. else
  6652. devsummaryYOffset += visible_lines;
  6653. refresh_devstatus();
  6654. break;
  6655. }
  6656. #endif
  6657. }
  6658. if (opt_realquiet) {
  6659. disable_curses();
  6660. break;
  6661. }
  6662. }
  6663. return NULL;
  6664. }
  6665. #endif
  6666. static void *api_thread(void *userdata)
  6667. {
  6668. struct thr_info *mythr = userdata;
  6669. pthread_detach(pthread_self());
  6670. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6671. RenameThread("rpc");
  6672. api(api_thr_id);
  6673. mythr->has_pth = false;
  6674. return NULL;
  6675. }
  6676. void thread_reportin(struct thr_info *thr)
  6677. {
  6678. cgtime(&thr->last);
  6679. thr->cgpu->status = LIFE_WELL;
  6680. thr->getwork = 0;
  6681. thr->cgpu->device_last_well = time(NULL);
  6682. }
  6683. void thread_reportout(struct thr_info *thr)
  6684. {
  6685. thr->getwork = time(NULL);
  6686. }
  6687. static void hashmeter(int thr_id, struct timeval *diff,
  6688. uint64_t hashes_done)
  6689. {
  6690. char logstatusline[256];
  6691. struct timeval temp_tv_end, total_diff;
  6692. double secs;
  6693. double local_secs;
  6694. static double local_mhashes_done = 0;
  6695. double local_mhashes = (double)hashes_done / 1000000.0;
  6696. bool showlog = false;
  6697. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6698. char rejpcbuf[6];
  6699. char bnbuf[6];
  6700. struct thr_info *thr;
  6701. /* Update the last time this thread reported in */
  6702. if (thr_id >= 0) {
  6703. thr = get_thread(thr_id);
  6704. cgtime(&(thr->last));
  6705. thr->cgpu->device_last_well = time(NULL);
  6706. }
  6707. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6708. /* So we can call hashmeter from a non worker thread */
  6709. if (thr_id >= 0) {
  6710. struct cgpu_info *cgpu = thr->cgpu;
  6711. int threadobj = cgpu->threads ?: 1;
  6712. double thread_rolling = 0.0;
  6713. int i;
  6714. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6715. thr_id, hashes_done, hashes_done / 1000 / secs);
  6716. /* Rolling average for each thread and each device */
  6717. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6718. for (i = 0; i < threadobj; i++)
  6719. thread_rolling += cgpu->thr[i]->rolling;
  6720. mutex_lock(&hash_lock);
  6721. decay_time(&cgpu->rolling, thread_rolling, secs);
  6722. cgpu->total_mhashes += local_mhashes;
  6723. mutex_unlock(&hash_lock);
  6724. // If needed, output detailed, per-device stats
  6725. if (want_per_device_stats) {
  6726. struct timeval now;
  6727. struct timeval elapsed;
  6728. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6729. cgtime(&now);
  6730. timersub(&now, last_msg_tv, &elapsed);
  6731. if (opt_log_interval <= elapsed.tv_sec) {
  6732. struct cgpu_info *cgpu = thr->cgpu;
  6733. char logline[255];
  6734. *last_msg_tv = now;
  6735. get_statline(logline, sizeof(logline), cgpu);
  6736. if (!curses_active) {
  6737. printf("%s \r", logline);
  6738. fflush(stdout);
  6739. } else
  6740. applog(LOG_INFO, "%s", logline);
  6741. }
  6742. }
  6743. }
  6744. /* Totals are updated by all threads so can race without locking */
  6745. mutex_lock(&hash_lock);
  6746. cgtime(&temp_tv_end);
  6747. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6748. total_mhashes_done += local_mhashes;
  6749. local_mhashes_done += local_mhashes;
  6750. /* Only update with opt_log_interval */
  6751. if (total_diff.tv_sec < opt_log_interval)
  6752. goto out_unlock;
  6753. showlog = true;
  6754. cgtime(&total_tv_end);
  6755. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6756. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6757. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6758. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6759. total_secs = (double)total_diff.tv_sec +
  6760. ((double)total_diff.tv_usec / 1000000.0);
  6761. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6762. multi_format_unit_array2(
  6763. ((char*[]){cHr, aHr, uHr}),
  6764. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6765. true, "h/s", H2B_SHORT,
  6766. 3,
  6767. 1e6*total_rolling,
  6768. 1e6*total_mhashes_done / total_secs,
  6769. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6770. int ui_accepted, ui_rejected, ui_stale;
  6771. if (opt_weighed_stats)
  6772. {
  6773. ui_accepted = total_diff_accepted;
  6774. ui_rejected = total_diff_rejected;
  6775. ui_stale = total_diff_stale;
  6776. }
  6777. else
  6778. {
  6779. ui_accepted = total_accepted;
  6780. ui_rejected = total_rejected;
  6781. ui_stale = total_stale;
  6782. }
  6783. #ifdef HAVE_CURSES
  6784. if (curses_active_locked()) {
  6785. float temp = 0;
  6786. struct cgpu_info *proc, *last_working_dev = NULL;
  6787. int i, working_devs = 0, working_procs = 0;
  6788. int divx;
  6789. bool bad = false;
  6790. // Find the highest temperature of all processors
  6791. for (i = 0; i < total_devices; ++i)
  6792. {
  6793. proc = get_devices(i);
  6794. if (proc->temp > temp)
  6795. temp = proc->temp;
  6796. if (unlikely(proc->deven == DEV_DISABLED))
  6797. ; // Just need to block it off from both conditions
  6798. else
  6799. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6800. {
  6801. if (proc->rolling > .1)
  6802. {
  6803. ++working_procs;
  6804. if (proc->device != last_working_dev)
  6805. {
  6806. ++working_devs;
  6807. last_working_dev = proc->device;
  6808. }
  6809. }
  6810. }
  6811. else
  6812. bad = true;
  6813. }
  6814. if (working_devs == working_procs)
  6815. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6816. else
  6817. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6818. divx = 7;
  6819. if (opt_show_procs && !opt_compact)
  6820. ++divx;
  6821. if (bad)
  6822. {
  6823. divx += sizeof(U8_BAD_START)-1;
  6824. strcpy(&statusline[divx], U8_BAD_END);
  6825. divx += sizeof(U8_BAD_END)-1;
  6826. }
  6827. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6828. format_statline(statusline, sizeof(statusline),
  6829. cHr, aHr,
  6830. uHr,
  6831. ui_accepted,
  6832. ui_rejected,
  6833. ui_stale,
  6834. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6835. hw_errors,
  6836. total_bad_diff1, total_bad_diff1 + total_diff1);
  6837. unlock_curses();
  6838. }
  6839. #endif
  6840. // Add a space
  6841. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6842. uHr[5] = ' ';
  6843. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6844. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6845. snprintf(logstatusline, sizeof(logstatusline),
  6846. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6847. want_per_device_stats ? "ALL " : "",
  6848. opt_log_interval,
  6849. cHr, aHr,
  6850. uHr,
  6851. ui_accepted,
  6852. ui_rejected,
  6853. ui_stale,
  6854. rejpcbuf,
  6855. hw_errors,
  6856. bnbuf
  6857. );
  6858. local_mhashes_done = 0;
  6859. out_unlock:
  6860. mutex_unlock(&hash_lock);
  6861. if (showlog) {
  6862. if (!curses_active) {
  6863. printf("%s \r", logstatusline);
  6864. fflush(stdout);
  6865. } else
  6866. applog(LOG_INFO, "%s", logstatusline);
  6867. }
  6868. }
  6869. void hashmeter2(struct thr_info *thr)
  6870. {
  6871. struct timeval tv_now, tv_elapsed;
  6872. timerclear(&thr->tv_hashes_done);
  6873. cgtime(&tv_now);
  6874. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6875. /* Update the hashmeter at most 5 times per second */
  6876. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6877. tv_elapsed.tv_sec >= opt_log_interval) {
  6878. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6879. thr->hashes_done = 0;
  6880. thr->tv_lastupdate = tv_now;
  6881. }
  6882. }
  6883. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6884. struct stratum_share *sshare)
  6885. {
  6886. struct work *work = sshare->work;
  6887. share_result(val, res_val, err_val, work, false, "");
  6888. }
  6889. /* Parses stratum json responses and tries to find the id that the request
  6890. * matched to and treat it accordingly. */
  6891. bool parse_stratum_response(struct pool *pool, char *s)
  6892. {
  6893. json_t *val = NULL, *err_val, *res_val, *id_val;
  6894. struct stratum_share *sshare;
  6895. json_error_t err;
  6896. bool ret = false;
  6897. int id;
  6898. val = JSON_LOADS(s, &err);
  6899. if (!val) {
  6900. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6901. goto out;
  6902. }
  6903. res_val = json_object_get(val, "result");
  6904. err_val = json_object_get(val, "error");
  6905. id_val = json_object_get(val, "id");
  6906. if (json_is_null(id_val) || !id_val) {
  6907. char *ss;
  6908. if (err_val)
  6909. ss = json_dumps(err_val, JSON_INDENT(3));
  6910. else
  6911. ss = strdup("(unknown reason)");
  6912. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6913. free(ss);
  6914. goto out;
  6915. }
  6916. if (!json_is_integer(id_val)) {
  6917. if (json_is_string(id_val)
  6918. && !strncmp(json_string_value(id_val), "txlist", 6))
  6919. {
  6920. const bool is_array = json_is_array(res_val);
  6921. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6922. is_array ? "transaction list" : "no-transaction-list response",
  6923. pool->pool_no, &json_string_value(id_val)[6]);
  6924. if (!is_array)
  6925. {
  6926. // No need to wait for a timeout
  6927. timer_unset(&pool->swork.tv_transparency);
  6928. pool_set_opaque(pool, true);
  6929. goto fishy;
  6930. }
  6931. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  6932. // We only care about a transaction list for the current job id
  6933. goto fishy;
  6934. // Check that the transactions actually hash to the merkle links
  6935. {
  6936. unsigned maxtx = 1 << pool->swork.merkles;
  6937. unsigned mintx = maxtx >> 1;
  6938. --maxtx;
  6939. unsigned acttx = (unsigned)json_array_size(res_val);
  6940. if (acttx < mintx || acttx > maxtx) {
  6941. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6942. pool->pool_no, acttx, mintx, maxtx);
  6943. goto fishy;
  6944. }
  6945. // TODO: Check hashes match actual merkle links
  6946. }
  6947. pool_set_opaque(pool, false);
  6948. timer_unset(&pool->swork.tv_transparency);
  6949. fishy:
  6950. ret = true;
  6951. }
  6952. goto out;
  6953. }
  6954. id = json_integer_value(id_val);
  6955. mutex_lock(&sshare_lock);
  6956. HASH_FIND_INT(stratum_shares, &id, sshare);
  6957. if (sshare)
  6958. HASH_DEL(stratum_shares, sshare);
  6959. mutex_unlock(&sshare_lock);
  6960. if (!sshare) {
  6961. double pool_diff;
  6962. /* Since the share is untracked, we can only guess at what the
  6963. * work difficulty is based on the current pool diff. */
  6964. cg_rlock(&pool->data_lock);
  6965. pool_diff = pool->swork.diff;
  6966. cg_runlock(&pool->data_lock);
  6967. if (json_is_true(res_val)) {
  6968. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  6969. /* We don't know what device this came from so we can't
  6970. * attribute the work to the relevant cgpu */
  6971. mutex_lock(&stats_lock);
  6972. total_accepted++;
  6973. pool->accepted++;
  6974. total_diff_accepted += pool_diff;
  6975. pool->diff_accepted += pool_diff;
  6976. mutex_unlock(&stats_lock);
  6977. } else {
  6978. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  6979. mutex_lock(&stats_lock);
  6980. total_rejected++;
  6981. pool->rejected++;
  6982. total_diff_rejected += pool_diff;
  6983. pool->diff_rejected += pool_diff;
  6984. mutex_unlock(&stats_lock);
  6985. }
  6986. goto out;
  6987. }
  6988. else {
  6989. mutex_lock(&submitting_lock);
  6990. --total_submitting;
  6991. mutex_unlock(&submitting_lock);
  6992. }
  6993. stratum_share_result(val, res_val, err_val, sshare);
  6994. free_work(sshare->work);
  6995. free(sshare);
  6996. ret = true;
  6997. out:
  6998. if (val)
  6999. json_decref(val);
  7000. return ret;
  7001. }
  7002. static void shutdown_stratum(struct pool *pool)
  7003. {
  7004. // Shut down Stratum as if we never had it
  7005. pool->stratum_active = false;
  7006. pool->stratum_init = false;
  7007. pool->has_stratum = false;
  7008. shutdown(pool->sock, SHUT_RDWR);
  7009. free(pool->stratum_url);
  7010. if (pool->sockaddr_url == pool->stratum_url)
  7011. pool->sockaddr_url = NULL;
  7012. pool->stratum_url = NULL;
  7013. }
  7014. void clear_stratum_shares(struct pool *pool)
  7015. {
  7016. int my_mining_threads = mining_threads; // Cached outside of locking
  7017. struct stratum_share *sshare, *tmpshare;
  7018. struct work *work;
  7019. struct cgpu_info *cgpu;
  7020. double diff_cleared = 0;
  7021. double thr_diff_cleared[my_mining_threads];
  7022. int cleared = 0;
  7023. int thr_cleared[my_mining_threads];
  7024. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7025. for (int i = 0; i < my_mining_threads; ++i)
  7026. {
  7027. thr_diff_cleared[i] = 0;
  7028. thr_cleared[i] = 0;
  7029. }
  7030. mutex_lock(&sshare_lock);
  7031. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7032. work = sshare->work;
  7033. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7034. HASH_DEL(stratum_shares, sshare);
  7035. sharelog("disconnect", work);
  7036. diff_cleared += sshare->work->work_difficulty;
  7037. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7038. ++thr_cleared[work->thr_id];
  7039. free_work(sshare->work);
  7040. free(sshare);
  7041. cleared++;
  7042. }
  7043. }
  7044. mutex_unlock(&sshare_lock);
  7045. if (cleared) {
  7046. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7047. mutex_lock(&stats_lock);
  7048. pool->stale_shares += cleared;
  7049. total_stale += cleared;
  7050. pool->diff_stale += diff_cleared;
  7051. total_diff_stale += diff_cleared;
  7052. for (int i = 0; i < my_mining_threads; ++i)
  7053. if (thr_cleared[i])
  7054. {
  7055. cgpu = get_thr_cgpu(i);
  7056. cgpu->diff_stale += thr_diff_cleared[i];
  7057. cgpu->stale += thr_cleared[i];
  7058. }
  7059. mutex_unlock(&stats_lock);
  7060. mutex_lock(&submitting_lock);
  7061. total_submitting -= cleared;
  7062. mutex_unlock(&submitting_lock);
  7063. }
  7064. }
  7065. static void resubmit_stratum_shares(struct pool *pool)
  7066. {
  7067. struct stratum_share *sshare, *tmpshare;
  7068. struct work *work;
  7069. unsigned resubmitted = 0;
  7070. mutex_lock(&sshare_lock);
  7071. mutex_lock(&submitting_lock);
  7072. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7073. if (sshare->work->pool != pool)
  7074. continue;
  7075. HASH_DEL(stratum_shares, sshare);
  7076. work = sshare->work;
  7077. DL_APPEND(submit_waiting, work);
  7078. free(sshare);
  7079. ++resubmitted;
  7080. }
  7081. mutex_unlock(&submitting_lock);
  7082. mutex_unlock(&sshare_lock);
  7083. if (resubmitted) {
  7084. notifier_wake(submit_waiting_notifier);
  7085. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7086. }
  7087. }
  7088. static void clear_pool_work(struct pool *pool)
  7089. {
  7090. struct work *work, *tmp;
  7091. int cleared = 0;
  7092. mutex_lock(stgd_lock);
  7093. HASH_ITER(hh, staged_work, work, tmp) {
  7094. if (work->pool == pool) {
  7095. HASH_DEL(staged_work, work);
  7096. free_work(work);
  7097. cleared++;
  7098. staged_full = false;
  7099. }
  7100. }
  7101. mutex_unlock(stgd_lock);
  7102. }
  7103. static int cp_prio(void)
  7104. {
  7105. int prio;
  7106. cg_rlock(&control_lock);
  7107. prio = currentpool->prio;
  7108. cg_runlock(&control_lock);
  7109. return prio;
  7110. }
  7111. /* We only need to maintain a secondary pool connection when we need the
  7112. * capacity to get work from the backup pools while still on the primary */
  7113. static bool cnx_needed(struct pool *pool)
  7114. {
  7115. struct pool *cp;
  7116. if (pool->enabled != POOL_ENABLED)
  7117. return false;
  7118. /* Idle stratum pool needs something to kick it alive again */
  7119. if (pool->has_stratum && pool->idle)
  7120. return true;
  7121. /* Getwork pools without opt_fail_only need backup pools up to be able
  7122. * to leak shares */
  7123. cp = current_pool();
  7124. if (pool_actively_in_use(pool, cp))
  7125. return true;
  7126. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7127. return true;
  7128. /* Keep the connection open to allow any stray shares to be submitted
  7129. * on switching pools for 2 minutes. */
  7130. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7131. return true;
  7132. /* If the pool has only just come to life and is higher priority than
  7133. * the current pool keep the connection open so we can fail back to
  7134. * it. */
  7135. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7136. return true;
  7137. if (pool_unworkable(cp))
  7138. return true;
  7139. /* We've run out of work, bring anything back to life. */
  7140. if (no_work)
  7141. return true;
  7142. return false;
  7143. }
  7144. static void wait_lpcurrent(struct pool *pool);
  7145. static void pool_resus(struct pool *pool);
  7146. static void gen_stratum_work(struct pool *pool, struct work *work);
  7147. static void stratum_resumed(struct pool *pool)
  7148. {
  7149. if (!pool->stratum_notify)
  7150. return;
  7151. if (pool_tclear(pool, &pool->idle)) {
  7152. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7153. pool_resus(pool);
  7154. }
  7155. }
  7156. static bool supports_resume(struct pool *pool)
  7157. {
  7158. bool ret;
  7159. cg_rlock(&pool->data_lock);
  7160. ret = (pool->sessionid != NULL);
  7161. cg_runlock(&pool->data_lock);
  7162. return ret;
  7163. }
  7164. /* One stratum thread per pool that has stratum waits on the socket checking
  7165. * for new messages and for the integrity of the socket connection. We reset
  7166. * the connection based on the integrity of the receive side only as the send
  7167. * side will eventually expire data it fails to send. */
  7168. static void *stratum_thread(void *userdata)
  7169. {
  7170. struct pool *pool = (struct pool *)userdata;
  7171. pthread_detach(pthread_self());
  7172. char threadname[20];
  7173. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7174. RenameThread(threadname);
  7175. srand(time(NULL) + (intptr_t)userdata);
  7176. while (42) {
  7177. struct timeval timeout;
  7178. int sel_ret;
  7179. fd_set rd;
  7180. char *s;
  7181. int sock;
  7182. if (unlikely(!pool->has_stratum))
  7183. break;
  7184. /* Check to see whether we need to maintain this connection
  7185. * indefinitely or just bring it up when we switch to this
  7186. * pool */
  7187. while (true)
  7188. {
  7189. sock = pool->sock;
  7190. if (sock == INVSOCK)
  7191. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7192. pool->pool_no);
  7193. else
  7194. if (!sock_full(pool) && !cnx_needed(pool))
  7195. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7196. pool->pool_no);
  7197. else
  7198. break;
  7199. suspend_stratum(pool);
  7200. clear_stratum_shares(pool);
  7201. clear_pool_work(pool);
  7202. wait_lpcurrent(pool);
  7203. if (!restart_stratum(pool)) {
  7204. pool_died(pool);
  7205. while (!restart_stratum(pool)) {
  7206. if (pool->removed)
  7207. goto out;
  7208. cgsleep_ms(30000);
  7209. }
  7210. }
  7211. }
  7212. FD_ZERO(&rd);
  7213. FD_SET(sock, &rd);
  7214. timeout.tv_sec = 120;
  7215. timeout.tv_usec = 0;
  7216. /* If we fail to receive any notify messages for 2 minutes we
  7217. * assume the connection has been dropped and treat this pool
  7218. * as dead */
  7219. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7220. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7221. s = NULL;
  7222. } else
  7223. s = recv_line(pool);
  7224. if (!s) {
  7225. if (!pool->has_stratum)
  7226. break;
  7227. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7228. pool->getfail_occasions++;
  7229. total_go++;
  7230. mutex_lock(&pool->stratum_lock);
  7231. pool->stratum_active = pool->stratum_notify = false;
  7232. pool->sock = INVSOCK;
  7233. mutex_unlock(&pool->stratum_lock);
  7234. /* If the socket to our stratum pool disconnects, all
  7235. * submissions need to be discarded or resent. */
  7236. if (!supports_resume(pool))
  7237. clear_stratum_shares(pool);
  7238. else
  7239. resubmit_stratum_shares(pool);
  7240. clear_pool_work(pool);
  7241. if (pool == current_pool())
  7242. restart_threads();
  7243. if (restart_stratum(pool))
  7244. continue;
  7245. shutdown_stratum(pool);
  7246. pool_died(pool);
  7247. break;
  7248. }
  7249. /* Check this pool hasn't died while being a backup pool and
  7250. * has not had its idle flag cleared */
  7251. stratum_resumed(pool);
  7252. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7253. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7254. free(s);
  7255. if (pool->swork.clean) {
  7256. struct work *work = make_work();
  7257. /* Generate a single work item to update the current
  7258. * block database */
  7259. pool->swork.clean = false;
  7260. gen_stratum_work(pool, work);
  7261. /* Try to extract block height from coinbase scriptSig */
  7262. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7263. unsigned char cb_height_sz;
  7264. cb_height_sz = bin_height[-1];
  7265. if (cb_height_sz == 3) {
  7266. // FIXME: The block number will overflow this by AD 2173
  7267. uint32_t block_id = ((uint32_t*)work->data)[1];
  7268. uint32_t height = 0;
  7269. memcpy(&height, bin_height, 3);
  7270. height = le32toh(height);
  7271. have_block_height(block_id, height);
  7272. }
  7273. ++pool->work_restart_id;
  7274. if (test_work_current(work)) {
  7275. /* Only accept a work update if this stratum
  7276. * connection is from the current pool */
  7277. struct pool * const cp = current_pool();
  7278. if (pool == cp)
  7279. restart_threads();
  7280. applog(
  7281. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7282. "Stratum from pool %d requested work update", pool->pool_no);
  7283. } else
  7284. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7285. free_work(work);
  7286. }
  7287. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7288. // More than 4 timmills past since requested transactions
  7289. timer_unset(&pool->swork.tv_transparency);
  7290. pool_set_opaque(pool, true);
  7291. }
  7292. }
  7293. out:
  7294. return NULL;
  7295. }
  7296. static void init_stratum_thread(struct pool *pool)
  7297. {
  7298. have_longpoll = true;
  7299. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7300. quit(1, "Failed to create stratum thread");
  7301. }
  7302. static void *longpoll_thread(void *userdata);
  7303. static bool stratum_works(struct pool *pool)
  7304. {
  7305. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7306. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7307. return false;
  7308. if (pool->stratum_active)
  7309. return true;
  7310. if (!initiate_stratum(pool))
  7311. return false;
  7312. return true;
  7313. }
  7314. static bool pool_active(struct pool *pool, bool pinging)
  7315. {
  7316. struct timeval tv_getwork, tv_getwork_reply;
  7317. bool ret = false;
  7318. json_t *val;
  7319. CURL *curl;
  7320. int rolltime;
  7321. char *rpc_req;
  7322. struct work *work;
  7323. enum pool_protocol proto;
  7324. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7325. /* This is the central point we activate stratum when we can */
  7326. curl = curl_easy_init();
  7327. if (unlikely(!curl)) {
  7328. applog(LOG_ERR, "CURL initialisation failed");
  7329. return false;
  7330. }
  7331. if (!(want_gbt || want_getwork))
  7332. goto nohttp;
  7333. work = make_work();
  7334. /* Probe for GBT support on first pass */
  7335. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7336. tryagain:
  7337. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7338. work->pool = pool;
  7339. if (!rpc_req)
  7340. goto out;
  7341. pool->probed = false;
  7342. cgtime(&tv_getwork);
  7343. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7344. true, false, &rolltime, pool, false);
  7345. cgtime(&tv_getwork_reply);
  7346. free(rpc_req);
  7347. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7348. * and if so, switch to that in preference to getwork if it works */
  7349. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7350. if (!pool->has_stratum) {
  7351. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7352. if (!pool->rpc_url)
  7353. pool->rpc_url = strdup(pool->stratum_url);
  7354. pool->has_stratum = true;
  7355. }
  7356. free_work(work);
  7357. if (val)
  7358. json_decref(val);
  7359. retry_stratum:
  7360. curl_easy_cleanup(curl);
  7361. /* We create the stratum thread for each pool just after
  7362. * successful authorisation. Once the init flag has been set
  7363. * we never unset it and the stratum thread is responsible for
  7364. * setting/unsetting the active flag */
  7365. bool init = pool_tset(pool, &pool->stratum_init);
  7366. if (!init) {
  7367. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7368. if (ret)
  7369. {
  7370. detect_algo = 2;
  7371. init_stratum_thread(pool);
  7372. }
  7373. else
  7374. pool_tclear(pool, &pool->stratum_init);
  7375. return ret;
  7376. }
  7377. return pool->stratum_active;
  7378. }
  7379. else if (pool->has_stratum)
  7380. shutdown_stratum(pool);
  7381. if (val) {
  7382. bool rc;
  7383. json_t *res;
  7384. res = json_object_get(val, "result");
  7385. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7386. goto badwork;
  7387. work->rolltime = rolltime;
  7388. rc = work_decode(pool, work, val);
  7389. if (rc) {
  7390. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7391. pool->pool_no, pool->rpc_url);
  7392. work->pool = pool;
  7393. copy_time(&work->tv_getwork, &tv_getwork);
  7394. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7395. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7396. calc_diff(work, 0);
  7397. update_last_work(work);
  7398. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7399. stage_work(work);
  7400. total_getworks++;
  7401. pool->getwork_requested++;
  7402. ret = true;
  7403. cgtime(&pool->tv_idle);
  7404. } else {
  7405. badwork:
  7406. json_decref(val);
  7407. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7408. pool->pool_no, pool->rpc_url);
  7409. pool->proto = proto = pool_protocol_fallback(proto);
  7410. if (PLP_NONE != proto)
  7411. goto tryagain;
  7412. free_work(work);
  7413. goto out;
  7414. }
  7415. json_decref(val);
  7416. if (proto != pool->proto) {
  7417. pool->proto = proto;
  7418. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7419. }
  7420. if (pool->lp_url)
  7421. goto out;
  7422. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7423. const struct blktmpl_longpoll_req *lp;
  7424. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7425. // NOTE: work_decode takes care of lp id
  7426. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7427. if (!pool->lp_url)
  7428. {
  7429. ret = false;
  7430. goto out;
  7431. }
  7432. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7433. }
  7434. else
  7435. if (pool->hdr_path && want_getwork) {
  7436. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7437. if (!pool->lp_url)
  7438. {
  7439. ret = false;
  7440. goto out;
  7441. }
  7442. pool->lp_proto = PLP_GETWORK;
  7443. } else
  7444. pool->lp_url = NULL;
  7445. if (want_longpoll && !pool->lp_started) {
  7446. pool->lp_started = true;
  7447. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7448. quit(1, "Failed to create pool longpoll thread");
  7449. }
  7450. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7451. pool->proto = proto;
  7452. goto tryagain;
  7453. } else {
  7454. free_work(work);
  7455. nohttp:
  7456. /* If we failed to parse a getwork, this could be a stratum
  7457. * url without the prefix stratum+tcp:// so let's check it */
  7458. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7459. pool->has_stratum = true;
  7460. goto retry_stratum;
  7461. }
  7462. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7463. pool->pool_no, pool->rpc_url);
  7464. if (!pinging)
  7465. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7466. }
  7467. out:
  7468. curl_easy_cleanup(curl);
  7469. return ret;
  7470. }
  7471. static void pool_resus(struct pool *pool)
  7472. {
  7473. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7474. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7475. else
  7476. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7477. }
  7478. static struct work *hash_pop(void)
  7479. {
  7480. struct work *work = NULL, *tmp;
  7481. int hc;
  7482. struct timespec ts;
  7483. retry:
  7484. mutex_lock(stgd_lock);
  7485. while (!HASH_COUNT(staged_work))
  7486. {
  7487. if (unlikely(staged_full))
  7488. {
  7489. if (likely(opt_queue < 10 + mining_threads))
  7490. {
  7491. ++opt_queue;
  7492. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7493. }
  7494. else
  7495. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7496. staged_full = false; // Let it fill up before triggering an underrun again
  7497. no_work = true;
  7498. }
  7499. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7500. pthread_cond_signal(&gws_cond);
  7501. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7502. {
  7503. run_cmd(cmd_idle);
  7504. pthread_cond_signal(&gws_cond);
  7505. pthread_cond_wait(&getq->cond, stgd_lock);
  7506. }
  7507. }
  7508. no_work = false;
  7509. hc = HASH_COUNT(staged_work);
  7510. /* Find clone work if possible, to allow masters to be reused */
  7511. if (hc > staged_rollable) {
  7512. HASH_ITER(hh, staged_work, work, tmp) {
  7513. if (!work_rollable(work))
  7514. break;
  7515. }
  7516. } else
  7517. work = staged_work;
  7518. if (can_roll(work) && should_roll(work))
  7519. {
  7520. // Instead of consuming it, force it to be cloned and grab the clone
  7521. mutex_unlock(stgd_lock);
  7522. clone_available();
  7523. goto retry;
  7524. }
  7525. HASH_DEL(staged_work, work);
  7526. if (work_rollable(work))
  7527. staged_rollable--;
  7528. /* Signal the getwork scheduler to look for more work */
  7529. pthread_cond_signal(&gws_cond);
  7530. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7531. pthread_cond_signal(&getq->cond);
  7532. mutex_unlock(stgd_lock);
  7533. work->pool->last_work_time = time(NULL);
  7534. cgtime(&work->pool->tv_last_work_time);
  7535. return work;
  7536. }
  7537. /* Clones work by rolling it if possible, and returning a clone instead of the
  7538. * original work item which gets staged again to possibly be rolled again in
  7539. * the future */
  7540. static struct work *clone_work(struct work *work)
  7541. {
  7542. int mrs = mining_threads + opt_queue - total_staged();
  7543. struct work *work_clone;
  7544. bool cloned;
  7545. if (mrs < 1)
  7546. return work;
  7547. cloned = false;
  7548. work_clone = make_clone(work);
  7549. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7550. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7551. stage_work(work_clone);
  7552. roll_work(work);
  7553. work_clone = make_clone(work);
  7554. /* Roll it again to prevent duplicates should this be used
  7555. * directly later on */
  7556. roll_work(work);
  7557. cloned = true;
  7558. }
  7559. if (cloned) {
  7560. stage_work(work);
  7561. return work_clone;
  7562. }
  7563. free_work(work_clone);
  7564. return work;
  7565. }
  7566. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7567. {
  7568. unsigned char hash1[32];
  7569. sha256(data, len, hash1);
  7570. sha256(hash1, 32, hash);
  7571. }
  7572. /* Diff 1 is a 256 bit unsigned integer of
  7573. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7574. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7575. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7576. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7577. {
  7578. uint64_t *data64, h64;
  7579. double d64;
  7580. d64 = diffone;
  7581. d64 /= diff;
  7582. d64 = ceil(d64);
  7583. h64 = d64;
  7584. memset(target, 0, 32);
  7585. if (d64 < 18446744073709551616.0) {
  7586. unsigned char *rtarget = target;
  7587. memset(rtarget, 0, 32);
  7588. if (opt_scrypt)
  7589. data64 = (uint64_t *)(rtarget + 2);
  7590. else
  7591. data64 = (uint64_t *)(rtarget + 4);
  7592. *data64 = htobe64(h64);
  7593. } else {
  7594. /* Support for the classic all FFs just-below-1 diff */
  7595. if (opt_scrypt)
  7596. memset(&target[2], 0xff, 30);
  7597. else
  7598. memset(&target[4], 0xff, 28);
  7599. }
  7600. }
  7601. void set_target(unsigned char *dest_target, double diff)
  7602. {
  7603. unsigned char rtarget[32];
  7604. bdiff_target_leadzero(rtarget, diff);
  7605. swab256(dest_target, rtarget);
  7606. if (opt_debug) {
  7607. char htarget[65];
  7608. bin2hex(htarget, rtarget, 32);
  7609. applog(LOG_DEBUG, "Generated target %s", htarget);
  7610. }
  7611. }
  7612. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7613. {
  7614. *dst = *src;
  7615. dst->job_id = strdup(src->job_id);
  7616. bytes_cpy(&dst->coinbase, &src->coinbase);
  7617. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7618. }
  7619. void stratum_work_clean(struct stratum_work * const swork)
  7620. {
  7621. free(swork->job_id);
  7622. bytes_free(&swork->coinbase);
  7623. bytes_free(&swork->merkle_bin);
  7624. }
  7625. /* Generates stratum based work based on the most recent notify information
  7626. * from the pool. This will keep generating work while a pool is down so we use
  7627. * other means to detect when the pool has died in stratum_thread */
  7628. static void gen_stratum_work(struct pool *pool, struct work *work)
  7629. {
  7630. clean_work(work);
  7631. cg_wlock(&pool->data_lock);
  7632. pool->swork.data_lock_p = &pool->data_lock;
  7633. bytes_resize(&work->nonce2, pool->n2size);
  7634. if (pool->nonce2sz < pool->n2size)
  7635. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7636. memcpy(bytes_buf(&work->nonce2),
  7637. #ifdef WORDS_BIGENDIAN
  7638. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7639. &((char*)&pool->nonce2)[pool->nonce2off],
  7640. #else
  7641. &pool->nonce2,
  7642. #endif
  7643. pool->nonce2sz);
  7644. pool->nonce2++;
  7645. work->pool = pool;
  7646. work->work_restart_id = work->pool->work_restart_id;
  7647. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7648. cgtime(&work->tv_staged);
  7649. }
  7650. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7651. {
  7652. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7653. uint8_t *merkle_bin;
  7654. uint32_t *data32, *swap32;
  7655. int i;
  7656. /* Generate coinbase */
  7657. coinbase = bytes_buf(&swork->coinbase);
  7658. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7659. /* Downgrade to a read lock to read off the variables */
  7660. if (swork->data_lock_p)
  7661. cg_dwlock(swork->data_lock_p);
  7662. /* Generate merkle root */
  7663. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7664. memcpy(merkle_sha, merkle_root, 32);
  7665. merkle_bin = bytes_buf(&swork->merkle_bin);
  7666. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7667. memcpy(merkle_sha + 32, merkle_bin, 32);
  7668. gen_hash(merkle_sha, merkle_root, 64);
  7669. memcpy(merkle_sha, merkle_root, 32);
  7670. }
  7671. data32 = (uint32_t *)merkle_sha;
  7672. swap32 = (uint32_t *)merkle_root;
  7673. flip32(swap32, data32);
  7674. memcpy(&work->data[0], swork->header1, 36);
  7675. memcpy(&work->data[36], merkle_root, 32);
  7676. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7677. memcpy(&work->data[72], swork->diffbits, 4);
  7678. memset(&work->data[76], 0, 4); // nonce
  7679. memcpy(&work->data[80], workpadding_bin, 48);
  7680. /* Store the stratum work diff to check it still matches the pool's
  7681. * stratum diff when submitting shares */
  7682. work->sdiff = swork->diff;
  7683. /* Copy parameters required for share submission */
  7684. work->job_id = strdup(swork->job_id);
  7685. work->nonce1 = strdup(nonce1);
  7686. if (swork->data_lock_p)
  7687. cg_runlock(swork->data_lock_p);
  7688. if (opt_debug)
  7689. {
  7690. char header[161];
  7691. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7692. bin2hex(header, work->data, 80);
  7693. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7694. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7695. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7696. }
  7697. calc_midstate(work);
  7698. set_target(work->target, work->sdiff);
  7699. local_work++;
  7700. work->stratum = true;
  7701. work->blk.nonce = 0;
  7702. work->id = total_work++;
  7703. work->longpoll = false;
  7704. work->getwork_mode = GETWORK_MODE_STRATUM;
  7705. /* Nominally allow a driver to ntime roll 60 seconds */
  7706. work->drv_rolllimit = 60;
  7707. calc_diff(work, 0);
  7708. }
  7709. void request_work(struct thr_info *thr)
  7710. {
  7711. struct cgpu_info *cgpu = thr->cgpu;
  7712. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7713. /* Tell the watchdog thread this thread is waiting on getwork and
  7714. * should not be restarted */
  7715. thread_reportout(thr);
  7716. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7717. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7718. {
  7719. if (proc->threads)
  7720. break;
  7721. thread_reportout(proc->thr[0]);
  7722. }
  7723. cgtime(&dev_stats->_get_start);
  7724. }
  7725. // FIXME: Make this non-blocking (and remove HACK above)
  7726. struct work *get_work(struct thr_info *thr)
  7727. {
  7728. const int thr_id = thr->id;
  7729. struct cgpu_info *cgpu = thr->cgpu;
  7730. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7731. struct cgminer_stats *pool_stats;
  7732. struct timeval tv_get;
  7733. struct work *work = NULL;
  7734. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7735. while (!work) {
  7736. work = hash_pop();
  7737. if (stale_work(work, false)) {
  7738. staged_full = false; // It wasn't really full, since it was stale :(
  7739. discard_work(work);
  7740. work = NULL;
  7741. wake_gws();
  7742. }
  7743. }
  7744. last_getwork = time(NULL);
  7745. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7746. cgpu->proc_repr, work->id, thr_id);
  7747. work->thr_id = thr_id;
  7748. thread_reportin(thr);
  7749. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7750. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7751. {
  7752. if (proc->threads)
  7753. break;
  7754. thread_reportin(proc->thr[0]);
  7755. }
  7756. work->mined = true;
  7757. work->blk.nonce = 0;
  7758. cgtime(&tv_get);
  7759. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7760. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7761. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7762. dev_stats->getwork_wait_max = tv_get;
  7763. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7764. dev_stats->getwork_wait_min = tv_get;
  7765. ++dev_stats->getwork_calls;
  7766. pool_stats = &(work->pool->cgminer_stats);
  7767. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7768. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7769. pool_stats->getwork_wait_max = tv_get;
  7770. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7771. pool_stats->getwork_wait_min = tv_get;
  7772. ++pool_stats->getwork_calls;
  7773. if (work->work_difficulty < 1)
  7774. {
  7775. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7776. {
  7777. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7778. cgpu->proc_repr);
  7779. work->nonce_diff = cgpu->min_nonce_diff;
  7780. }
  7781. else
  7782. work->nonce_diff = work->work_difficulty;
  7783. }
  7784. else
  7785. work->nonce_diff = 1;
  7786. return work;
  7787. }
  7788. static
  7789. void _submit_work_async(struct work *work)
  7790. {
  7791. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7792. if (opt_benchmark)
  7793. {
  7794. json_t * const jn = json_null();
  7795. rebuild_hash(work);
  7796. share_result(jn, jn, jn, work, false, "");
  7797. free_work(work);
  7798. return;
  7799. }
  7800. mutex_lock(&submitting_lock);
  7801. ++total_submitting;
  7802. DL_APPEND(submit_waiting, work);
  7803. mutex_unlock(&submitting_lock);
  7804. notifier_wake(submit_waiting_notifier);
  7805. }
  7806. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7807. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7808. {
  7809. if (tv_work_found)
  7810. copy_time(&work->tv_work_found, tv_work_found);
  7811. _submit_work_async(work);
  7812. }
  7813. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7814. {
  7815. struct cgpu_info * const cgpu = thr->cgpu;
  7816. if (bad_nonce_p)
  7817. {
  7818. if (bad_nonce_p == UNKNOWN_NONCE)
  7819. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7820. cgpu->proc_repr);
  7821. else
  7822. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7823. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7824. }
  7825. mutex_lock(&stats_lock);
  7826. hw_errors++;
  7827. ++cgpu->hw_errors;
  7828. if (bad_nonce_p)
  7829. {
  7830. total_bad_diff1 += nonce_diff;
  7831. cgpu->bad_diff1 += nonce_diff;
  7832. }
  7833. mutex_unlock(&stats_lock);
  7834. if (thr->cgpu->drv->hw_error)
  7835. thr->cgpu->drv->hw_error(thr);
  7836. }
  7837. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7838. {
  7839. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7840. hash_data(work->hash, work->data);
  7841. if (hash2_32[7] != 0)
  7842. return TNR_BAD;
  7843. if (!checktarget)
  7844. return TNR_GOOD;
  7845. if (!hash_target_check_v(work->hash, work->target))
  7846. return TNR_HIGH;
  7847. return TNR_GOOD;
  7848. }
  7849. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7850. {
  7851. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7852. *work_nonce = htole32(nonce);
  7853. #ifdef USE_SCRYPT
  7854. if (opt_scrypt)
  7855. // NOTE: Depends on scrypt_test return matching enum values
  7856. return scrypt_test(work->data, work->target, nonce);
  7857. #endif
  7858. return hashtest2(work, checktarget);
  7859. }
  7860. /* Returns true if nonce for work was a valid share */
  7861. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7862. {
  7863. return submit_noffset_nonce(thr, work, nonce, 0);
  7864. }
  7865. /* Allows drivers to submit work items where the driver has changed the ntime
  7866. * value by noffset. Must be only used with a work protocol that does not ntime
  7867. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7868. * the original work struct, but the copy of it only. */
  7869. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7870. int noffset)
  7871. {
  7872. struct work *work = make_work();
  7873. _copy_work(work, work_in, noffset);
  7874. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7875. struct timeval tv_work_found;
  7876. enum test_nonce2_result res;
  7877. bool ret = true;
  7878. thread_reportout(thr);
  7879. cgtime(&tv_work_found);
  7880. *work_nonce = htole32(nonce);
  7881. work->thr_id = thr->id;
  7882. /* Do one last check before attempting to submit the work */
  7883. /* Side effect: sets work->data for us */
  7884. res = test_nonce2(work, nonce);
  7885. if (unlikely(res == TNR_BAD))
  7886. {
  7887. inc_hw_errors(thr, work, nonce);
  7888. ret = false;
  7889. goto out;
  7890. }
  7891. mutex_lock(&stats_lock);
  7892. total_diff1 += work->nonce_diff;
  7893. thr ->cgpu->diff1 += work->nonce_diff;
  7894. work->pool->diff1 += work->nonce_diff;
  7895. thr->cgpu->last_device_valid_work = time(NULL);
  7896. mutex_unlock(&stats_lock);
  7897. if (noncelog_file)
  7898. noncelog(work);
  7899. if (res == TNR_HIGH)
  7900. {
  7901. // Share above target, normal
  7902. /* Check the diff of the share, even if it didn't reach the
  7903. * target, just to set the best share value if it's higher. */
  7904. share_diff(work);
  7905. goto out;
  7906. }
  7907. submit_work_async2(work, &tv_work_found);
  7908. work = NULL; // Taken by submit_work_async2
  7909. out:
  7910. if (work)
  7911. free_work(work);
  7912. thread_reportin(thr);
  7913. return ret;
  7914. }
  7915. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7916. {
  7917. if (wdiff->tv_sec > opt_scantime ||
  7918. work->blk.nonce >= 0xfffffffe - hashes ||
  7919. hashes >= 0xfffffffe ||
  7920. stale_work(work, false))
  7921. return true;
  7922. return false;
  7923. }
  7924. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7925. {
  7926. struct cgpu_info *proc = thr->cgpu;
  7927. if (proc->threads > 1)
  7928. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7929. else
  7930. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7931. }
  7932. // Called by asynchronous minerloops, when they find their processor should be disabled
  7933. void mt_disable_start(struct thr_info *mythr)
  7934. {
  7935. struct cgpu_info *cgpu = mythr->cgpu;
  7936. struct device_drv *drv = cgpu->drv;
  7937. if (drv->thread_disable)
  7938. drv->thread_disable(mythr);
  7939. hashmeter2(mythr);
  7940. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7941. mythr->rolling = mythr->cgpu->rolling = 0;
  7942. thread_reportout(mythr);
  7943. mythr->_mt_disable_called = true;
  7944. }
  7945. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7946. * the driver tells us it's full so that it may extract the work item using
  7947. * the get_queued() function which adds it to the hashtable on
  7948. * cgpu->queued_work. */
  7949. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7950. {
  7951. thread_reportout(mythr);
  7952. do {
  7953. bool need_work;
  7954. /* Do this lockless just to know if we need more unqueued work. */
  7955. need_work = (!cgpu->unqueued_work);
  7956. /* get_work is a blocking function so do it outside of lock
  7957. * to prevent deadlocks with other locks. */
  7958. if (need_work) {
  7959. struct work *work = get_work(mythr);
  7960. wr_lock(&cgpu->qlock);
  7961. /* Check we haven't grabbed work somehow between
  7962. * checking and picking up the lock. */
  7963. if (likely(!cgpu->unqueued_work))
  7964. cgpu->unqueued_work = work;
  7965. else
  7966. need_work = false;
  7967. wr_unlock(&cgpu->qlock);
  7968. if (unlikely(!need_work))
  7969. discard_work(work);
  7970. }
  7971. /* The queue_full function should be used by the driver to
  7972. * actually place work items on the physical device if it
  7973. * does have a queue. */
  7974. } while (drv->queue_full && !drv->queue_full(cgpu));
  7975. }
  7976. /* Add a work item to a cgpu's queued hashlist */
  7977. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  7978. {
  7979. cgpu->queued_count++;
  7980. HASH_ADD_INT(cgpu->queued_work, id, work);
  7981. }
  7982. /* This function is for retrieving one work item from the unqueued pointer and
  7983. * adding it to the hashtable of queued work. Code using this function must be
  7984. * able to handle NULL as a return which implies there is no work available. */
  7985. struct work *get_queued(struct cgpu_info *cgpu)
  7986. {
  7987. struct work *work = NULL;
  7988. wr_lock(&cgpu->qlock);
  7989. if (cgpu->unqueued_work) {
  7990. work = cgpu->unqueued_work;
  7991. if (unlikely(stale_work(work, false))) {
  7992. discard_work(work);
  7993. work = NULL;
  7994. wake_gws();
  7995. } else
  7996. __add_queued(cgpu, work);
  7997. cgpu->unqueued_work = NULL;
  7998. }
  7999. wr_unlock(&cgpu->qlock);
  8000. return work;
  8001. }
  8002. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8003. {
  8004. wr_lock(&cgpu->qlock);
  8005. __add_queued(cgpu, work);
  8006. wr_unlock(&cgpu->qlock);
  8007. }
  8008. /* Get fresh work and add it to cgpu's queued hashlist */
  8009. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8010. {
  8011. struct work *work = get_work(thr);
  8012. add_queued(cgpu, work);
  8013. return work;
  8014. }
  8015. /* This function is for finding an already queued work item in the
  8016. * given que hashtable. Code using this function must be able
  8017. * to handle NULL as a return which implies there is no matching work.
  8018. * The calling function must lock access to the que if it is required.
  8019. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8020. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8021. {
  8022. struct work *work, *tmp, *ret = NULL;
  8023. HASH_ITER(hh, que, work, tmp) {
  8024. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8025. memcmp(work->data + offset, data, datalen) == 0) {
  8026. ret = work;
  8027. break;
  8028. }
  8029. }
  8030. return ret;
  8031. }
  8032. /* This function is for finding an already queued work item in the
  8033. * device's queued_work hashtable. Code using this function must be able
  8034. * to handle NULL as a return which implies there is no matching work.
  8035. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8036. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8037. {
  8038. struct work *ret;
  8039. rd_lock(&cgpu->qlock);
  8040. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8041. rd_unlock(&cgpu->qlock);
  8042. return ret;
  8043. }
  8044. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8045. {
  8046. struct work *work, *ret = NULL;
  8047. rd_lock(&cgpu->qlock);
  8048. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8049. if (work)
  8050. ret = copy_work(work);
  8051. rd_unlock(&cgpu->qlock);
  8052. return ret;
  8053. }
  8054. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8055. {
  8056. cgpu->queued_count--;
  8057. HASH_DEL(cgpu->queued_work, work);
  8058. }
  8059. /* This function should be used by queued device drivers when they're sure
  8060. * the work struct is no longer in use. */
  8061. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8062. {
  8063. wr_lock(&cgpu->qlock);
  8064. __work_completed(cgpu, work);
  8065. wr_unlock(&cgpu->qlock);
  8066. free_work(work);
  8067. }
  8068. /* Combines find_queued_work_bymidstate and work_completed in one function
  8069. * withOUT destroying the work so the driver must free it. */
  8070. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8071. {
  8072. struct work *work;
  8073. wr_lock(&cgpu->qlock);
  8074. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8075. if (work)
  8076. __work_completed(cgpu, work);
  8077. wr_unlock(&cgpu->qlock);
  8078. return work;
  8079. }
  8080. static void flush_queue(struct cgpu_info *cgpu)
  8081. {
  8082. struct work *work = NULL;
  8083. wr_lock(&cgpu->qlock);
  8084. work = cgpu->unqueued_work;
  8085. cgpu->unqueued_work = NULL;
  8086. wr_unlock(&cgpu->qlock);
  8087. if (work) {
  8088. free_work(work);
  8089. applog(LOG_DEBUG, "Discarded queued work item");
  8090. }
  8091. }
  8092. /* This version of hash work is for devices that are fast enough to always
  8093. * perform a full nonce range and need a queue to maintain the device busy.
  8094. * Work creation and destruction is not done from within this function
  8095. * directly. */
  8096. void hash_queued_work(struct thr_info *mythr)
  8097. {
  8098. const long cycle = opt_log_interval / 5 ? : 1;
  8099. struct timeval tv_start = {0, 0}, tv_end;
  8100. struct cgpu_info *cgpu = mythr->cgpu;
  8101. struct device_drv *drv = cgpu->drv;
  8102. const int thr_id = mythr->id;
  8103. int64_t hashes_done = 0;
  8104. if (unlikely(cgpu->deven != DEV_ENABLED))
  8105. mt_disable(mythr);
  8106. while (likely(!cgpu->shutdown)) {
  8107. struct timeval diff;
  8108. int64_t hashes;
  8109. fill_queue(mythr, cgpu, drv, thr_id);
  8110. thread_reportin(mythr);
  8111. hashes = drv->scanwork(mythr);
  8112. /* Reset the bool here in case the driver looks for it
  8113. * synchronously in the scanwork loop. */
  8114. mythr->work_restart = false;
  8115. if (unlikely(hashes == -1 )) {
  8116. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8117. cgpu->deven = DEV_DISABLED;
  8118. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8119. mt_disable(mythr);
  8120. }
  8121. hashes_done += hashes;
  8122. cgtime(&tv_end);
  8123. timersub(&tv_end, &tv_start, &diff);
  8124. if (diff.tv_sec >= cycle) {
  8125. hashmeter(thr_id, &diff, hashes_done);
  8126. hashes_done = 0;
  8127. copy_time(&tv_start, &tv_end);
  8128. }
  8129. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8130. mt_disable(mythr);
  8131. if (unlikely(mythr->work_restart)) {
  8132. flush_queue(cgpu);
  8133. if (drv->flush_work)
  8134. drv->flush_work(cgpu);
  8135. }
  8136. }
  8137. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8138. }
  8139. // Called by minerloop, when it is re-enabling a processor
  8140. void mt_disable_finish(struct thr_info *mythr)
  8141. {
  8142. struct device_drv *drv = mythr->cgpu->drv;
  8143. thread_reportin(mythr);
  8144. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8145. if (drv->thread_enable)
  8146. drv->thread_enable(mythr);
  8147. mythr->_mt_disable_called = false;
  8148. }
  8149. // Called by synchronous minerloops, when they find their processor should be disabled
  8150. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8151. void mt_disable(struct thr_info *mythr)
  8152. {
  8153. const struct cgpu_info * const cgpu = mythr->cgpu;
  8154. mt_disable_start(mythr);
  8155. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8156. do {
  8157. notifier_read(mythr->notifier);
  8158. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8159. mt_disable_finish(mythr);
  8160. }
  8161. enum {
  8162. STAT_SLEEP_INTERVAL = 1,
  8163. STAT_CTR_INTERVAL = 10000000,
  8164. FAILURE_INTERVAL = 30,
  8165. };
  8166. /* Stage another work item from the work returned in a longpoll */
  8167. 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)
  8168. {
  8169. bool rc;
  8170. work->rolltime = rolltime;
  8171. rc = work_decode(pool, work, val);
  8172. if (unlikely(!rc)) {
  8173. applog(LOG_ERR, "Could not convert longpoll data to work");
  8174. free_work(work);
  8175. return;
  8176. }
  8177. total_getworks++;
  8178. pool->getwork_requested++;
  8179. work->pool = pool;
  8180. copy_time(&work->tv_getwork, tv_lp);
  8181. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8182. calc_diff(work, 0);
  8183. if (pool->enabled == POOL_REJECTING)
  8184. work->mandatory = true;
  8185. work->longpoll = true;
  8186. work->getwork_mode = GETWORK_MODE_LP;
  8187. update_last_work(work);
  8188. /* We'll be checking this work item twice, but we already know it's
  8189. * from a new block so explicitly force the new block detection now
  8190. * rather than waiting for it to hit the stage thread. This also
  8191. * allows testwork to know whether LP discovered the block or not. */
  8192. test_work_current(work);
  8193. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8194. * the longpoll work from a pool that has been rejecting shares as a
  8195. * way to detect when the pool has recovered.
  8196. */
  8197. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8198. free_work(work);
  8199. return;
  8200. }
  8201. work = clone_work(work);
  8202. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8203. stage_work(work);
  8204. applog(LOG_DEBUG, "Converted longpoll data to work");
  8205. }
  8206. /* If we want longpoll, enable it for the chosen default pool, or, if
  8207. * the pool does not support longpoll, find the first one that does
  8208. * and use its longpoll support */
  8209. static struct pool *select_longpoll_pool(struct pool *cp)
  8210. {
  8211. int i;
  8212. if (cp->lp_url)
  8213. return cp;
  8214. for (i = 0; i < total_pools; i++) {
  8215. struct pool *pool = pools[i];
  8216. if (pool->has_stratum || pool->lp_url)
  8217. return pool;
  8218. }
  8219. return NULL;
  8220. }
  8221. /* This will make the longpoll thread wait till it's the current pool, or it
  8222. * has been flagged as rejecting, before attempting to open any connections.
  8223. */
  8224. static void wait_lpcurrent(struct pool *pool)
  8225. {
  8226. while ((!cnx_needed(pool)) && !pool_actively_in_use(pool, NULL))
  8227. {
  8228. mutex_lock(&lp_lock);
  8229. pthread_cond_wait(&lp_cond, &lp_lock);
  8230. mutex_unlock(&lp_lock);
  8231. }
  8232. }
  8233. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8234. struct pool *pool = vpool;
  8235. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8236. pool->lp_socket = sock;
  8237. return sock;
  8238. }
  8239. static void *longpoll_thread(void *userdata)
  8240. {
  8241. struct pool *cp = (struct pool *)userdata;
  8242. /* This *pool is the source of the actual longpoll, not the pool we've
  8243. * tied it to */
  8244. struct timeval start, reply, end;
  8245. struct pool *pool = NULL;
  8246. char threadname[20];
  8247. CURL *curl = NULL;
  8248. int failures = 0;
  8249. char *lp_url;
  8250. int rolltime;
  8251. #ifndef HAVE_PTHREAD_CANCEL
  8252. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8253. #endif
  8254. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8255. RenameThread(threadname);
  8256. curl = curl_easy_init();
  8257. if (unlikely(!curl)) {
  8258. applog(LOG_ERR, "CURL initialisation failed");
  8259. return NULL;
  8260. }
  8261. retry_pool:
  8262. pool = select_longpoll_pool(cp);
  8263. if (!pool) {
  8264. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8265. while (!pool) {
  8266. cgsleep_ms(60000);
  8267. pool = select_longpoll_pool(cp);
  8268. }
  8269. }
  8270. if (pool->has_stratum) {
  8271. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8272. cp->rpc_url, pool->rpc_url);
  8273. goto out;
  8274. }
  8275. /* Any longpoll from any pool is enough for this to be true */
  8276. have_longpoll = true;
  8277. wait_lpcurrent(cp);
  8278. {
  8279. lp_url = pool->lp_url;
  8280. if (cp == pool)
  8281. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8282. else
  8283. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8284. }
  8285. while (42) {
  8286. json_t *val, *soval;
  8287. struct work *work = make_work();
  8288. char *lpreq;
  8289. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8290. work->pool = pool;
  8291. if (!lpreq)
  8292. {
  8293. free_work(work);
  8294. goto lpfail;
  8295. }
  8296. wait_lpcurrent(cp);
  8297. cgtime(&start);
  8298. /* Longpoll connections can be persistent for a very long time
  8299. * and any number of issues could have come up in the meantime
  8300. * so always establish a fresh connection instead of relying on
  8301. * a persistent one. */
  8302. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8303. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8304. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8305. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8306. lpreq, false, true, &rolltime, pool, false);
  8307. pool->lp_socket = CURL_SOCKET_BAD;
  8308. cgtime(&reply);
  8309. free(lpreq);
  8310. if (likely(val)) {
  8311. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8312. if (soval)
  8313. pool->submit_old = json_is_true(soval);
  8314. else
  8315. pool->submit_old = false;
  8316. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8317. failures = 0;
  8318. json_decref(val);
  8319. } else {
  8320. /* Some pools regularly drop the longpoll request so
  8321. * only see this as longpoll failure if it happens
  8322. * immediately and just restart it the rest of the
  8323. * time. */
  8324. cgtime(&end);
  8325. free_work(work);
  8326. if (end.tv_sec - start.tv_sec > 30)
  8327. continue;
  8328. if (failures == 1)
  8329. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8330. lpfail:
  8331. cgsleep_ms(30000);
  8332. }
  8333. if (pool != cp) {
  8334. pool = select_longpoll_pool(cp);
  8335. if (pool->has_stratum) {
  8336. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8337. cp->rpc_url, pool->rpc_url);
  8338. break;
  8339. }
  8340. if (unlikely(!pool))
  8341. goto retry_pool;
  8342. }
  8343. if (unlikely(pool->removed))
  8344. break;
  8345. }
  8346. out:
  8347. curl_easy_cleanup(curl);
  8348. return NULL;
  8349. }
  8350. static void stop_longpoll(void)
  8351. {
  8352. int i;
  8353. want_longpoll = false;
  8354. for (i = 0; i < total_pools; ++i)
  8355. {
  8356. struct pool *pool = pools[i];
  8357. if (unlikely(!pool->lp_started))
  8358. continue;
  8359. pool->lp_started = false;
  8360. pthread_cancel(pool->longpoll_thread);
  8361. }
  8362. have_longpoll = false;
  8363. }
  8364. static void start_longpoll(void)
  8365. {
  8366. int i;
  8367. want_longpoll = true;
  8368. for (i = 0; i < total_pools; ++i)
  8369. {
  8370. struct pool *pool = pools[i];
  8371. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8372. continue;
  8373. pool->lp_started = true;
  8374. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8375. quit(1, "Failed to create pool longpoll thread");
  8376. }
  8377. }
  8378. void reinit_device(struct cgpu_info *cgpu)
  8379. {
  8380. if (cgpu->drv->reinit_device)
  8381. cgpu->drv->reinit_device(cgpu);
  8382. }
  8383. static struct timeval rotate_tv;
  8384. /* We reap curls if they are unused for over a minute */
  8385. static void reap_curl(struct pool *pool)
  8386. {
  8387. struct curl_ent *ent, *iter;
  8388. struct timeval now;
  8389. int reaped = 0;
  8390. cgtime(&now);
  8391. mutex_lock(&pool->pool_lock);
  8392. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8393. if (pool->curls < 2)
  8394. break;
  8395. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8396. reaped++;
  8397. pool->curls--;
  8398. LL_DELETE(pool->curllist, ent);
  8399. curl_easy_cleanup(ent->curl);
  8400. free(ent);
  8401. }
  8402. }
  8403. mutex_unlock(&pool->pool_lock);
  8404. if (reaped)
  8405. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8406. }
  8407. static void *watchpool_thread(void __maybe_unused *userdata)
  8408. {
  8409. int intervals = 0;
  8410. #ifndef HAVE_PTHREAD_CANCEL
  8411. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8412. #endif
  8413. RenameThread("watchpool");
  8414. while (42) {
  8415. struct timeval now;
  8416. int i;
  8417. if (++intervals > 20)
  8418. intervals = 0;
  8419. cgtime(&now);
  8420. for (i = 0; i < total_pools; i++) {
  8421. struct pool *pool = pools[i];
  8422. if (!opt_benchmark)
  8423. reap_curl(pool);
  8424. /* Get a rolling utility per pool over 10 mins */
  8425. if (intervals > 19) {
  8426. int shares = pool->diff1 - pool->last_shares;
  8427. pool->last_shares = pool->diff1;
  8428. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8429. pool->shares = pool->utility;
  8430. }
  8431. if (pool->enabled == POOL_DISABLED)
  8432. continue;
  8433. /* Don't start testing any pools if the test threads
  8434. * from startup are still doing their first attempt. */
  8435. if (unlikely(pool->testing)) {
  8436. pthread_join(pool->test_thread, NULL);
  8437. }
  8438. /* Test pool is idle once every minute */
  8439. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8440. cgtime(&pool->tv_idle);
  8441. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8442. pool_resus(pool);
  8443. }
  8444. /* Only switch pools if the failback pool has been
  8445. * alive for more than 5 minutes to prevent
  8446. * intermittently failing pools from being used. */
  8447. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8448. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8449. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8450. pool->pool_no, pool->rpc_url);
  8451. switch_pools(NULL);
  8452. }
  8453. }
  8454. if (current_pool()->idle)
  8455. switch_pools(NULL);
  8456. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8457. cgtime(&rotate_tv);
  8458. switch_pools(NULL);
  8459. }
  8460. cgsleep_ms(30000);
  8461. }
  8462. return NULL;
  8463. }
  8464. void mt_enable(struct thr_info *thr)
  8465. {
  8466. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8467. notifier_wake(thr->notifier);
  8468. }
  8469. void proc_enable(struct cgpu_info *cgpu)
  8470. {
  8471. int j;
  8472. cgpu->deven = DEV_ENABLED;
  8473. for (j = cgpu->threads ?: 1; j--; )
  8474. mt_enable(cgpu->thr[j]);
  8475. }
  8476. #define device_recovered(cgpu) proc_enable(cgpu)
  8477. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8478. {
  8479. struct string_elist *setstr_elist;
  8480. const char *p, *p2;
  8481. char replybuf[0x2000];
  8482. size_t L;
  8483. DL_FOREACH(opt_set_device_list, setstr_elist)
  8484. {
  8485. const char * const setstr = setstr_elist->string;
  8486. p = strchr(setstr, ':');
  8487. if (!p)
  8488. p = setstr;
  8489. {
  8490. L = p - setstr;
  8491. char pattern[L + 1];
  8492. if (L)
  8493. memcpy(pattern, setstr, L);
  8494. pattern[L] = '\0';
  8495. if (!cgpu_match(pattern, cgpu))
  8496. continue;
  8497. }
  8498. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8499. cgpu->proc_repr, __func__, setstr);
  8500. if (p[0] == ':')
  8501. ++p;
  8502. p2 = strchr(p, '=');
  8503. if (!p2)
  8504. {
  8505. L = strlen(p);
  8506. p2 = "";
  8507. }
  8508. else
  8509. {
  8510. L = p2 - p;
  8511. ++p2;
  8512. }
  8513. char opt[L + 1];
  8514. if (L)
  8515. memcpy(opt, p, L);
  8516. opt[L] = '\0';
  8517. L = strlen(p2);
  8518. char setval[L + 1];
  8519. if (L)
  8520. memcpy(setval, p2, L);
  8521. setval[L] = '\0';
  8522. enum bfg_set_device_replytype success;
  8523. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8524. switch (success)
  8525. {
  8526. case SDR_OK:
  8527. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8528. cgpu->proc_repr, setstr,
  8529. p ? ": " : "", p ?: "");
  8530. break;
  8531. case SDR_ERR:
  8532. case SDR_HELP:
  8533. case SDR_UNKNOWN:
  8534. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8535. cgpu->proc_repr, setstr, p);
  8536. break;
  8537. case SDR_AUTO:
  8538. case SDR_NOSUPP:
  8539. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8540. cgpu->proc_repr, setstr);
  8541. }
  8542. }
  8543. cgpu->already_set_defaults = true;
  8544. }
  8545. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8546. {
  8547. struct device_drv dummy_drv = *drv;
  8548. struct cgpu_info dummy_cgpu = {
  8549. .drv = &dummy_drv,
  8550. .device = &dummy_cgpu,
  8551. .device_id = -1,
  8552. .proc_id = -1,
  8553. .device_data = userp,
  8554. .device_path = devpath,
  8555. .dev_serial = serial,
  8556. };
  8557. strcpy(dummy_cgpu.proc_repr, drv->name);
  8558. switch (mode)
  8559. {
  8560. case 0:
  8561. dummy_drv.set_device = datap;
  8562. break;
  8563. case 1:
  8564. dummy_drv.set_device = NULL;
  8565. dummy_cgpu.set_device_funcs = datap;
  8566. break;
  8567. }
  8568. cgpu_set_defaults(&dummy_cgpu);
  8569. }
  8570. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8571. * the screen at regular intervals, and restarts threads if they appear to have
  8572. * died. */
  8573. #define WATCHDOG_SICK_TIME 60
  8574. #define WATCHDOG_DEAD_TIME 600
  8575. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8576. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8577. static void *watchdog_thread(void __maybe_unused *userdata)
  8578. {
  8579. const unsigned int interval = WATCHDOG_INTERVAL;
  8580. struct timeval zero_tv;
  8581. #ifndef HAVE_PTHREAD_CANCEL
  8582. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8583. #endif
  8584. RenameThread("watchdog");
  8585. memset(&zero_tv, 0, sizeof(struct timeval));
  8586. cgtime(&rotate_tv);
  8587. while (1) {
  8588. int i;
  8589. struct timeval now;
  8590. sleep(interval);
  8591. discard_stale();
  8592. hashmeter(-1, &zero_tv, 0);
  8593. #ifdef HAVE_CURSES
  8594. const int ts = total_staged();
  8595. if (curses_active_locked()) {
  8596. change_logwinsize();
  8597. curses_print_status(ts);
  8598. _refresh_devstatus(true);
  8599. touchwin(logwin);
  8600. wrefresh(logwin);
  8601. unlock_curses();
  8602. }
  8603. #endif
  8604. cgtime(&now);
  8605. if (!sched_paused && !should_run()) {
  8606. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8607. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8608. if (!schedstart.enable) {
  8609. quit(0, "Terminating execution as planned");
  8610. break;
  8611. }
  8612. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8613. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8614. sched_paused = true;
  8615. rd_lock(&mining_thr_lock);
  8616. for (i = 0; i < mining_threads; i++)
  8617. mining_thr[i]->pause = true;
  8618. rd_unlock(&mining_thr_lock);
  8619. } else if (sched_paused && should_run()) {
  8620. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8621. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8622. if (schedstop.enable)
  8623. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8624. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8625. sched_paused = false;
  8626. for (i = 0; i < mining_threads; i++) {
  8627. struct thr_info *thr;
  8628. thr = get_thread(i);
  8629. thr->pause = false;
  8630. }
  8631. for (i = 0; i < total_devices; ++i)
  8632. {
  8633. struct cgpu_info *cgpu = get_devices(i);
  8634. /* Don't touch disabled devices */
  8635. if (cgpu->deven == DEV_DISABLED)
  8636. continue;
  8637. proc_enable(cgpu);
  8638. }
  8639. }
  8640. for (i = 0; i < total_devices; ++i) {
  8641. struct cgpu_info *cgpu = get_devices(i);
  8642. if (!cgpu->disable_watchdog)
  8643. bfg_watchdog(cgpu, &now);
  8644. }
  8645. }
  8646. return NULL;
  8647. }
  8648. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8649. {
  8650. struct thr_info *thr = cgpu->thr[0];
  8651. enum dev_enable *denable;
  8652. char *dev_str = cgpu->proc_repr;
  8653. if (likely(drv_ready(cgpu)))
  8654. {
  8655. if (unlikely(!cgpu->already_set_defaults))
  8656. cgpu_set_defaults(cgpu);
  8657. if (cgpu->drv->get_stats)
  8658. cgpu->drv->get_stats(cgpu);
  8659. }
  8660. denable = &cgpu->deven;
  8661. if (cgpu->drv->watchdog)
  8662. cgpu->drv->watchdog(cgpu, tvp_now);
  8663. /* Thread is disabled */
  8664. if (*denable == DEV_DISABLED)
  8665. return;
  8666. else
  8667. if (*denable == DEV_RECOVER_ERR) {
  8668. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8669. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8670. dev_str);
  8671. if (cgpu->reinit_backoff < 300)
  8672. cgpu->reinit_backoff *= 2;
  8673. device_recovered(cgpu);
  8674. }
  8675. return;
  8676. }
  8677. else
  8678. if (*denable == DEV_RECOVER) {
  8679. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8680. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8681. dev_str);
  8682. device_recovered(cgpu);
  8683. }
  8684. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8685. return;
  8686. }
  8687. else
  8688. if (cgpu->temp > cgpu->cutofftemp)
  8689. {
  8690. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8691. dev_str, (int)cgpu->temp);
  8692. *denable = DEV_RECOVER;
  8693. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8694. run_cmd(cmd_idle);
  8695. }
  8696. if (thr->getwork) {
  8697. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8698. int thrid;
  8699. bool cgpu_idle = true;
  8700. thr->rolling = 0;
  8701. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8702. if (!cgpu->thr[thrid]->getwork)
  8703. cgpu_idle = false;
  8704. if (cgpu_idle) {
  8705. cgpu->rolling = 0;
  8706. cgpu->status = LIFE_WAIT;
  8707. }
  8708. }
  8709. return;
  8710. }
  8711. else if (cgpu->status == LIFE_WAIT)
  8712. cgpu->status = LIFE_WELL;
  8713. #ifdef WANT_CPUMINE
  8714. if (!strcmp(cgpu->drv->dname, "cpu"))
  8715. return;
  8716. #endif
  8717. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8718. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8719. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8720. cgpu->status = LIFE_WELL;
  8721. cgpu->device_last_well = time(NULL);
  8722. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8723. thr->rolling = cgpu->rolling = 0;
  8724. cgpu->status = LIFE_SICK;
  8725. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8726. cgtime(&thr->sick);
  8727. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8728. run_cmd(cmd_sick);
  8729. if (opt_restart && cgpu->drv->reinit_device) {
  8730. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8731. reinit_device(cgpu);
  8732. }
  8733. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8734. cgpu->status = LIFE_DEAD;
  8735. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8736. cgtime(&thr->sick);
  8737. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8738. run_cmd(cmd_dead);
  8739. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8740. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8741. /* Attempt to restart a GPU that's sick or dead once every minute */
  8742. cgtime(&thr->sick);
  8743. if (opt_restart)
  8744. reinit_device(cgpu);
  8745. }
  8746. }
  8747. static void log_print_status(struct cgpu_info *cgpu)
  8748. {
  8749. char logline[255];
  8750. get_statline(logline, sizeof(logline), cgpu);
  8751. applog(LOG_WARNING, "%s", logline);
  8752. }
  8753. void print_summary(void)
  8754. {
  8755. struct timeval diff;
  8756. int hours, mins, secs, i;
  8757. double utility, efficiency = 0.0;
  8758. char xfer[17], bw[19];
  8759. int pool_secs;
  8760. timersub(&total_tv_end, &total_tv_start, &diff);
  8761. hours = diff.tv_sec / 3600;
  8762. mins = (diff.tv_sec % 3600) / 60;
  8763. secs = diff.tv_sec % 60;
  8764. utility = total_accepted / total_secs * 60;
  8765. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8766. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8767. applog(LOG_WARNING, "Started at %s", datestamp);
  8768. if (total_pools == 1)
  8769. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8770. #ifdef WANT_CPUMINE
  8771. if (opt_n_threads)
  8772. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8773. #endif
  8774. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8775. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8776. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8777. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8778. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8779. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8780. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8781. total_rejected, total_stale,
  8782. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8783. );
  8784. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8785. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8786. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8787. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8788. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8789. (float)total_bytes_rcvd,
  8790. (float)total_bytes_sent),
  8791. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8792. (float)(total_bytes_rcvd / total_secs),
  8793. (float)(total_bytes_sent / total_secs)));
  8794. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8795. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8796. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8797. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8798. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8799. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8800. if (total_pools > 1) {
  8801. for (i = 0; i < total_pools; i++) {
  8802. struct pool *pool = pools[i];
  8803. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8804. if (pool->solved)
  8805. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8806. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8807. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8808. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8809. pool->rejected, pool->stale_shares,
  8810. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8811. );
  8812. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8813. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8814. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8815. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8816. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8817. (float)pool->cgminer_pool_stats.net_bytes_received,
  8818. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8819. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8820. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8821. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8822. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8823. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8824. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8825. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8826. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8827. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8828. }
  8829. }
  8830. if (opt_quit_summary != BQS_NONE)
  8831. {
  8832. if (opt_quit_summary == BQS_DETAILED)
  8833. include_serial_in_statline = true;
  8834. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8835. for (i = 0; i < total_devices; ++i) {
  8836. struct cgpu_info *cgpu = get_devices(i);
  8837. if (!cgpu->proc_id)
  8838. {
  8839. // Device summary line
  8840. opt_show_procs = false;
  8841. log_print_status(cgpu);
  8842. opt_show_procs = true;
  8843. }
  8844. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8845. log_print_status(cgpu);
  8846. }
  8847. }
  8848. if (opt_shares) {
  8849. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  8850. if (opt_shares > total_diff_accepted)
  8851. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  8852. }
  8853. applog(LOG_WARNING, " ");
  8854. fflush(stderr);
  8855. fflush(stdout);
  8856. }
  8857. void _bfg_clean_up(bool restarting)
  8858. {
  8859. #ifdef HAVE_OPENCL
  8860. clear_adl(nDevs);
  8861. #endif
  8862. #ifdef HAVE_LIBUSB
  8863. if (likely(have_libusb))
  8864. libusb_exit(NULL);
  8865. #endif
  8866. cgtime(&total_tv_end);
  8867. #ifdef WIN32
  8868. timeEndPeriod(1);
  8869. #endif
  8870. if (!restarting) {
  8871. /* Attempting to disable curses or print a summary during a
  8872. * restart can lead to a deadlock. */
  8873. #ifdef HAVE_CURSES
  8874. disable_curses();
  8875. #endif
  8876. if (!opt_realquiet && successful_connect)
  8877. print_summary();
  8878. }
  8879. if (opt_n_threads)
  8880. free(cpus);
  8881. curl_global_cleanup();
  8882. #ifdef WIN32
  8883. WSACleanup();
  8884. #endif
  8885. }
  8886. void _quit(int status)
  8887. {
  8888. if (status) {
  8889. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8890. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8891. int *p = NULL;
  8892. // NOTE debugger can bypass with: p = &p
  8893. *p = status; // Segfault, hopefully dumping core
  8894. }
  8895. }
  8896. #if defined(unix) || defined(__APPLE__)
  8897. if (forkpid > 0) {
  8898. kill(forkpid, SIGTERM);
  8899. forkpid = 0;
  8900. }
  8901. #endif
  8902. exit(status);
  8903. }
  8904. #ifdef HAVE_CURSES
  8905. char *curses_input(const char *query)
  8906. {
  8907. char *input;
  8908. echo();
  8909. input = malloc(255);
  8910. if (!input)
  8911. quit(1, "Failed to malloc input");
  8912. leaveok(logwin, false);
  8913. wlogprint("%s:\n", query);
  8914. wgetnstr(logwin, input, 255);
  8915. if (!strlen(input))
  8916. {
  8917. free(input);
  8918. input = NULL;
  8919. }
  8920. leaveok(logwin, true);
  8921. noecho();
  8922. return input;
  8923. }
  8924. #endif
  8925. static bool pools_active = false;
  8926. static void *test_pool_thread(void *arg)
  8927. {
  8928. struct pool *pool = (struct pool *)arg;
  8929. if (pool_active(pool, false)) {
  8930. pool_tset(pool, &pool->lagging);
  8931. pool_tclear(pool, &pool->idle);
  8932. bool first_pool = false;
  8933. cg_wlock(&control_lock);
  8934. if (!pools_active) {
  8935. currentpool = pool;
  8936. if (pool->pool_no != 0)
  8937. first_pool = true;
  8938. pools_active = true;
  8939. }
  8940. cg_wunlock(&control_lock);
  8941. if (unlikely(first_pool))
  8942. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8943. else
  8944. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8945. switch_pools(NULL);
  8946. } else
  8947. pool_died(pool);
  8948. pool->testing = false;
  8949. return NULL;
  8950. }
  8951. /* Always returns true that the pool details were added unless we are not
  8952. * live, implying this is the only pool being added, so if no pools are
  8953. * active it returns false. */
  8954. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  8955. {
  8956. size_t siz;
  8957. pool->rpc_url = url;
  8958. pool->rpc_user = user;
  8959. pool->rpc_pass = pass;
  8960. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  8961. pool->rpc_userpass = malloc(siz);
  8962. if (!pool->rpc_userpass)
  8963. quit(1, "Failed to malloc userpass");
  8964. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  8965. pool->testing = true;
  8966. pool->idle = true;
  8967. enable_pool(pool);
  8968. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  8969. if (!live) {
  8970. pthread_join(pool->test_thread, NULL);
  8971. return pools_active;
  8972. }
  8973. return true;
  8974. }
  8975. #ifdef HAVE_CURSES
  8976. static bool input_pool(bool live)
  8977. {
  8978. char *url = NULL, *user = NULL, *pass = NULL;
  8979. struct pool *pool;
  8980. bool ret = false;
  8981. immedok(logwin, true);
  8982. wlogprint("Input server details.\n");
  8983. url = curses_input("URL");
  8984. if (!url)
  8985. goto out;
  8986. user = curses_input("Username");
  8987. if (!user)
  8988. goto out;
  8989. pass = curses_input("Password");
  8990. if (!pass)
  8991. pass = calloc(1, 1);
  8992. pool = add_pool();
  8993. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  8994. strncmp(url, "https://", 8)) {
  8995. char *httpinput;
  8996. httpinput = malloc(256);
  8997. if (!httpinput)
  8998. quit(1, "Failed to malloc httpinput");
  8999. strcpy(httpinput, "http://");
  9000. strncat(httpinput, url, 248);
  9001. free(url);
  9002. url = httpinput;
  9003. }
  9004. ret = add_pool_details(pool, live, url, user, pass);
  9005. out:
  9006. immedok(logwin, false);
  9007. if (!ret) {
  9008. if (url)
  9009. free(url);
  9010. if (user)
  9011. free(user);
  9012. if (pass)
  9013. free(pass);
  9014. }
  9015. return ret;
  9016. }
  9017. #endif
  9018. #if defined(unix) || defined(__APPLE__)
  9019. static void fork_monitor()
  9020. {
  9021. // Make a pipe: [readFD, writeFD]
  9022. int pfd[2];
  9023. int r = pipe(pfd);
  9024. if (r < 0) {
  9025. perror("pipe - failed to create pipe for --monitor");
  9026. exit(1);
  9027. }
  9028. // Make stderr write end of pipe
  9029. fflush(stderr);
  9030. r = dup2(pfd[1], 2);
  9031. if (r < 0) {
  9032. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9033. exit(1);
  9034. }
  9035. r = close(pfd[1]);
  9036. if (r < 0) {
  9037. perror("close - failed to close write end of pipe for --monitor");
  9038. exit(1);
  9039. }
  9040. // Don't allow a dying monitor to kill the main process
  9041. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9042. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9043. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9044. perror("signal - failed to edit signal mask for --monitor");
  9045. exit(1);
  9046. }
  9047. // Fork a child process
  9048. forkpid = fork();
  9049. if (forkpid < 0) {
  9050. perror("fork - failed to fork child process for --monitor");
  9051. exit(1);
  9052. }
  9053. // Child: launch monitor command
  9054. if (0 == forkpid) {
  9055. // Make stdin read end of pipe
  9056. r = dup2(pfd[0], 0);
  9057. if (r < 0) {
  9058. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9059. exit(1);
  9060. }
  9061. close(pfd[0]);
  9062. if (r < 0) {
  9063. perror("close - in child, failed to close read end of pipe for --monitor");
  9064. exit(1);
  9065. }
  9066. // Launch user specified command
  9067. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9068. perror("execl - in child failed to exec user specified command for --monitor");
  9069. exit(1);
  9070. }
  9071. // Parent: clean up unused fds and bail
  9072. r = close(pfd[0]);
  9073. if (r < 0) {
  9074. perror("close - failed to close read end of pipe for --monitor");
  9075. exit(1);
  9076. }
  9077. }
  9078. #endif // defined(unix)
  9079. #ifdef HAVE_CURSES
  9080. #ifdef USE_UNICODE
  9081. static
  9082. wchar_t select_unicode_char(const wchar_t *opt)
  9083. {
  9084. for ( ; *opt; ++opt)
  9085. if (iswprint(*opt))
  9086. return *opt;
  9087. return '?';
  9088. }
  9089. #endif
  9090. void enable_curses(void) {
  9091. int x;
  9092. __maybe_unused int y;
  9093. lock_curses();
  9094. if (curses_active) {
  9095. unlock_curses();
  9096. return;
  9097. }
  9098. #ifdef USE_UNICODE
  9099. if (use_unicode)
  9100. {
  9101. setlocale(LC_CTYPE, "");
  9102. if (iswprint(0xb0))
  9103. have_unicode_degrees = true;
  9104. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9105. }
  9106. #endif
  9107. mainwin = initscr();
  9108. start_color();
  9109. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9110. if (ERR != use_default_colors())
  9111. default_bgcolor = -1;
  9112. #endif
  9113. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9114. {
  9115. menu_attr = COLOR_PAIR(1);
  9116. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9117. attr_bad |= COLOR_PAIR(2);
  9118. }
  9119. keypad(mainwin, true);
  9120. getmaxyx(mainwin, y, x);
  9121. statuswin = newwin(logstart, x, 0, 0);
  9122. leaveok(statuswin, true);
  9123. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9124. // We resize the window later anyway, so just start it off at 1 :)
  9125. logwin = newwin(1, 0, logcursor, 0);
  9126. idlok(logwin, true);
  9127. scrollok(logwin, true);
  9128. leaveok(logwin, true);
  9129. cbreak();
  9130. noecho();
  9131. nonl();
  9132. curses_active = true;
  9133. statusy = logstart;
  9134. unlock_curses();
  9135. }
  9136. #endif
  9137. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9138. #ifndef WANT_CPUMINE
  9139. struct device_drv cpu_drv;
  9140. struct device_drv cpu_drv = {
  9141. .name = "CPU",
  9142. };
  9143. #endif
  9144. static int cgminer_id_count = 0;
  9145. static int device_line_id_count;
  9146. void register_device(struct cgpu_info *cgpu)
  9147. {
  9148. cgpu->deven = DEV_ENABLED;
  9149. wr_lock(&devices_lock);
  9150. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9151. wr_unlock(&devices_lock);
  9152. if (!cgpu->proc_id)
  9153. cgpu->device_line_id = device_line_id_count++;
  9154. mining_threads += cgpu->threads ?: 1;
  9155. #ifdef HAVE_CURSES
  9156. adj_width(mining_threads, &dev_width);
  9157. #endif
  9158. rwlock_init(&cgpu->qlock);
  9159. cgpu->queued_work = NULL;
  9160. }
  9161. struct _cgpu_devid_counter {
  9162. char name[4];
  9163. int lastid;
  9164. UT_hash_handle hh;
  9165. };
  9166. void renumber_cgpu(struct cgpu_info *cgpu)
  9167. {
  9168. static struct _cgpu_devid_counter *devids = NULL;
  9169. struct _cgpu_devid_counter *d;
  9170. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9171. if (d)
  9172. cgpu->device_id = ++d->lastid;
  9173. else {
  9174. d = malloc(sizeof(*d));
  9175. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9176. cgpu->device_id = d->lastid = 0;
  9177. HASH_ADD_STR(devids, name, d);
  9178. }
  9179. // Build repr strings
  9180. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9181. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9182. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9183. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9184. const int lpcount = cgpu->procs;
  9185. if (lpcount > 1)
  9186. {
  9187. int ns;
  9188. struct cgpu_info *slave;
  9189. int lpdigits = 1;
  9190. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9191. ++lpdigits;
  9192. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9193. cgpu->proc_repr[5 + lpdigits] = '\0';
  9194. ns = strlen(cgpu->proc_repr_ns);
  9195. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9196. slave = cgpu;
  9197. for (int i = 1; i < lpcount; ++i)
  9198. {
  9199. slave = slave->next_proc;
  9200. strcpy(slave->dev_repr, cgpu->dev_repr);
  9201. strcpy(slave->proc_repr, cgpu->proc_repr);
  9202. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9203. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9204. {
  9205. slave->proc_repr_ns[ns + y] =
  9206. slave->proc_repr[5 + y] += (x % 26);
  9207. }
  9208. }
  9209. }
  9210. }
  9211. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9212. {
  9213. sha256(buffer, length, digest);
  9214. return true;
  9215. }
  9216. static
  9217. int drv_algo_check(const struct device_drv * const drv)
  9218. {
  9219. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9220. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9221. return (algos & algomatch);
  9222. }
  9223. #ifndef HAVE_PTHREAD_CANCEL
  9224. extern void setup_pthread_cancel_workaround();
  9225. extern struct sigaction pcwm_orig_term_handler;
  9226. #endif
  9227. bool bfg_need_detect_rescan;
  9228. extern void probe_device(struct lowlevel_device_info *);
  9229. static void schedule_rescan(const struct timeval *);
  9230. static
  9231. void drv_detect_all()
  9232. {
  9233. bool rescanning = false;
  9234. rescan:
  9235. bfg_need_detect_rescan = false;
  9236. #ifdef HAVE_BFG_LOWLEVEL
  9237. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9238. LL_FOREACH_SAFE(infolist, info, infotmp)
  9239. probe_device(info);
  9240. LL_FOREACH_SAFE(infolist, info, infotmp)
  9241. pthread_join(info->probe_pth, NULL);
  9242. #endif
  9243. struct driver_registration *reg, *tmp;
  9244. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9245. {
  9246. const struct device_drv * const drv = reg->drv;
  9247. if (!(drv_algo_check(drv) && drv->drv_detect))
  9248. continue;
  9249. drv->drv_detect();
  9250. }
  9251. #ifdef HAVE_BFG_LOWLEVEL
  9252. lowlevel_scan_free();
  9253. #endif
  9254. if (bfg_need_detect_rescan)
  9255. {
  9256. if (rescanning)
  9257. {
  9258. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9259. struct timeval tv_when;
  9260. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9261. schedule_rescan(&tv_when);
  9262. }
  9263. else
  9264. {
  9265. rescanning = true;
  9266. applog(LOG_DEBUG, "Device rescan requested");
  9267. goto rescan;
  9268. }
  9269. }
  9270. }
  9271. static
  9272. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9273. {
  9274. struct thr_info *thr;
  9275. int j;
  9276. struct device_drv *api = cgpu->drv;
  9277. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9278. int threadobj = cgpu->threads;
  9279. if (!threadobj)
  9280. // Create a fake thread object to handle hashmeter etc
  9281. threadobj = 1;
  9282. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9283. cgpu->thr[threadobj] = NULL;
  9284. cgpu->status = LIFE_INIT;
  9285. if (opt_devices_enabled_list)
  9286. {
  9287. struct string_elist *enablestr_elist;
  9288. cgpu->deven = DEV_DISABLED;
  9289. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9290. {
  9291. const char * const enablestr = enablestr_elist->string;
  9292. if (cgpu_match(enablestr, cgpu))
  9293. {
  9294. cgpu->deven = DEV_ENABLED;
  9295. break;
  9296. }
  9297. }
  9298. }
  9299. cgpu->max_hashes = 0;
  9300. BFGINIT(cgpu->min_nonce_diff, 1);
  9301. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9302. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9303. // Setup thread structs before starting any of the threads, in case they try to interact
  9304. for (j = 0; j < threadobj; ++j, ++*kp) {
  9305. thr = get_thread(*kp);
  9306. thr->id = *kp;
  9307. thr->cgpu = cgpu;
  9308. thr->device_thread = j;
  9309. thr->work_restart_notifier[1] = INVSOCK;
  9310. thr->mutex_request[1] = INVSOCK;
  9311. thr->_job_transition_in_progress = true;
  9312. timerclear(&thr->tv_morework);
  9313. thr->scanhash_working = true;
  9314. thr->hashes_done = 0;
  9315. timerclear(&thr->tv_hashes_done);
  9316. cgtime(&thr->tv_lastupdate);
  9317. thr->tv_poll.tv_sec = -1;
  9318. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9319. cgpu->thr[j] = thr;
  9320. }
  9321. if (!cgpu->device->threads)
  9322. notifier_init_invalid(cgpu->thr[0]->notifier);
  9323. else
  9324. if (!cgpu->threads)
  9325. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9326. else
  9327. for (j = 0; j < cgpu->threads; ++j)
  9328. {
  9329. thr = cgpu->thr[j];
  9330. notifier_init(thr->notifier);
  9331. }
  9332. }
  9333. static
  9334. void start_cgpu(struct cgpu_info *cgpu)
  9335. {
  9336. struct thr_info *thr;
  9337. int j;
  9338. for (j = 0; j < cgpu->threads; ++j) {
  9339. thr = cgpu->thr[j];
  9340. /* Enable threads for devices set not to mine but disable
  9341. * their queue in case we wish to enable them later */
  9342. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9343. continue;
  9344. thread_reportout(thr);
  9345. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9346. quit(1, "thread %d create failed", thr->id);
  9347. notifier_wake(thr->notifier);
  9348. }
  9349. if (cgpu->deven == DEV_ENABLED)
  9350. proc_enable(cgpu);
  9351. }
  9352. static
  9353. void _scan_serial(void *p)
  9354. {
  9355. const char *s = p;
  9356. struct string_elist *iter, *tmp;
  9357. struct string_elist *orig_scan_devices = scan_devices;
  9358. if (s)
  9359. {
  9360. // Make temporary scan_devices list
  9361. scan_devices = NULL;
  9362. string_elist_add("noauto", &scan_devices);
  9363. add_serial(s);
  9364. }
  9365. drv_detect_all();
  9366. if (s)
  9367. {
  9368. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9369. {
  9370. string_elist_del(&scan_devices, iter);
  9371. }
  9372. scan_devices = orig_scan_devices;
  9373. }
  9374. }
  9375. #ifdef HAVE_BFG_LOWLEVEL
  9376. static
  9377. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9378. {
  9379. if (!(false
  9380. || (info->serial && !strcasecmp(ser, info->serial))
  9381. || (info->path && !strcasecmp(ser, info->path ))
  9382. || (info->devid && !strcasecmp(ser, info->devid ))
  9383. ))
  9384. {
  9385. char *devid = devpath_to_devid(ser);
  9386. if (!devid)
  9387. return false;
  9388. const bool different = strcmp(info->devid, devid);
  9389. free(devid);
  9390. if (different)
  9391. return false;
  9392. }
  9393. return true;
  9394. }
  9395. static
  9396. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9397. {
  9398. struct driver_registration *dreg;
  9399. char dname[dnamelen];
  9400. int i;
  9401. for (i = 0; i < dnamelen; ++i)
  9402. dname[i] = tolower(_dname[i]);
  9403. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9404. if (!dreg)
  9405. {
  9406. for (i = 0; i < dnamelen; ++i)
  9407. dname[i] = toupper(_dname[i]);
  9408. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9409. if (!dreg)
  9410. return NULL;
  9411. }
  9412. if (!drv_algo_check(dreg->drv))
  9413. return NULL;
  9414. return dreg->drv;
  9415. }
  9416. static
  9417. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9418. {
  9419. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9420. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9421. return false;
  9422. return drv->lowl_probe(info);
  9423. }
  9424. static
  9425. void *probe_device_thread(void *p)
  9426. {
  9427. struct lowlevel_device_info * const infolist = p;
  9428. struct lowlevel_device_info *info = infolist;
  9429. {
  9430. char threadname[5 + strlen(info->devid) + 1];
  9431. sprintf(threadname, "probe_%s", info->devid);
  9432. RenameThread(threadname);
  9433. }
  9434. // If already in use, ignore
  9435. if (bfg_claim_any(NULL, NULL, info->devid))
  9436. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9437. __func__, info->product);
  9438. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9439. struct string_elist *sd_iter, *sd_tmp;
  9440. struct driver_registration *dreg, *dreg_tmp;
  9441. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9442. {
  9443. const char * const dname = sd_iter->string;
  9444. const char * const colon = strpbrk(dname, ":@");
  9445. if (!(colon && colon != dname))
  9446. continue;
  9447. const char * const ser = &colon[1];
  9448. LL_FOREACH2(infolist, info, same_devid_next)
  9449. {
  9450. if (!_probe_device_match(info, ser))
  9451. continue;
  9452. const size_t dnamelen = (colon - dname);
  9453. if (_probe_device_internal(info, dname, dnamelen))
  9454. return NULL;
  9455. else
  9456. if (opt_hotplug)
  9457. bfg_need_detect_rescan = true;
  9458. }
  9459. }
  9460. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9461. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9462. {
  9463. const struct device_drv * const drv = dreg->drv;
  9464. if (!drv_algo_check(drv))
  9465. continue;
  9466. // Check for "noauto" flag
  9467. // NOTE: driver-specific configuration overrides general
  9468. bool doauto = true;
  9469. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9470. {
  9471. const char * const dname = sd_iter->string;
  9472. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9473. const char *colon = strchr(dname, ':');
  9474. if (!colon)
  9475. colon = &dname[-1];
  9476. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9477. continue;
  9478. const ssize_t dnamelen = (colon - dname);
  9479. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9480. continue;
  9481. doauto = (tolower(colon[1]) == 'a');
  9482. if (dnamelen != -1)
  9483. break;
  9484. }
  9485. if (doauto && drv->lowl_match)
  9486. {
  9487. LL_FOREACH2(infolist, info, same_devid_next)
  9488. {
  9489. if (!drv->lowl_match(info))
  9490. continue;
  9491. if (drv->lowl_probe(info))
  9492. return NULL;
  9493. else
  9494. if (opt_hotplug)
  9495. bfg_need_detect_rescan = true;
  9496. }
  9497. }
  9498. }
  9499. // probe driver(s) with 'all' enabled
  9500. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9501. {
  9502. const char * const dname = sd_iter->string;
  9503. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9504. const char * const colon = strchr(dname, ':');
  9505. if (!colon)
  9506. {
  9507. LL_FOREACH2(infolist, info, same_devid_next)
  9508. {
  9509. if (
  9510. #ifdef NEED_BFG_LOWL_VCOM
  9511. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9512. #endif
  9513. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9514. {
  9515. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9516. {
  9517. const struct device_drv * const drv = dreg->drv;
  9518. if (!drv_algo_check(drv))
  9519. continue;
  9520. if (drv->lowl_probe_by_name_only)
  9521. continue;
  9522. if (!drv->lowl_probe)
  9523. continue;
  9524. if (drv->lowl_probe(info))
  9525. return NULL;
  9526. }
  9527. if (opt_hotplug)
  9528. bfg_need_detect_rescan = true;
  9529. break;
  9530. }
  9531. }
  9532. continue;
  9533. }
  9534. if (strcasecmp(&colon[1], "all"))
  9535. continue;
  9536. const size_t dnamelen = (colon - dname);
  9537. LL_FOREACH2(infolist, info, same_devid_next)
  9538. {
  9539. if (_probe_device_internal(info, dname, dnamelen))
  9540. return NULL;
  9541. }
  9542. }
  9543. return NULL;
  9544. }
  9545. void probe_device(struct lowlevel_device_info * const info)
  9546. {
  9547. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9548. }
  9549. #endif
  9550. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9551. {
  9552. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9553. int devcount, i, mining_threads_new = 0;
  9554. unsigned int k;
  9555. struct cgpu_info *cgpu;
  9556. struct thr_info *thr;
  9557. void *p;
  9558. mutex_lock(&mutex);
  9559. devcount = total_devices;
  9560. addfunc(arg);
  9561. if (!total_devices_new)
  9562. goto out;
  9563. wr_lock(&devices_lock);
  9564. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9565. if (unlikely(!p))
  9566. {
  9567. wr_unlock(&devices_lock);
  9568. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9569. goto out;
  9570. }
  9571. devices = p;
  9572. wr_unlock(&devices_lock);
  9573. for (i = 0; i < total_devices_new; ++i)
  9574. {
  9575. cgpu = devices_new[i];
  9576. mining_threads_new += cgpu->threads ?: 1;
  9577. }
  9578. wr_lock(&mining_thr_lock);
  9579. mining_threads_new += mining_threads;
  9580. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9581. if (unlikely(!p))
  9582. {
  9583. wr_unlock(&mining_thr_lock);
  9584. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9585. goto out;
  9586. }
  9587. mining_thr = p;
  9588. wr_unlock(&mining_thr_lock);
  9589. for (i = mining_threads; i < mining_threads_new; ++i) {
  9590. mining_thr[i] = calloc(1, sizeof(*thr));
  9591. if (!mining_thr[i])
  9592. {
  9593. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9594. for ( ; --i >= mining_threads; )
  9595. free(mining_thr[i]);
  9596. goto out;
  9597. }
  9598. }
  9599. k = mining_threads;
  9600. for (i = 0; i < total_devices_new; ++i)
  9601. {
  9602. cgpu = devices_new[i];
  9603. allocate_cgpu(cgpu, &k);
  9604. }
  9605. for (i = 0; i < total_devices_new; ++i)
  9606. {
  9607. cgpu = devices_new[i];
  9608. start_cgpu(cgpu);
  9609. register_device(cgpu);
  9610. ++total_devices;
  9611. }
  9612. #ifdef HAVE_CURSES
  9613. switch_logsize();
  9614. #endif
  9615. out:
  9616. total_devices_new = 0;
  9617. devcount = total_devices - devcount;
  9618. mutex_unlock(&mutex);
  9619. return devcount;
  9620. }
  9621. int scan_serial(const char *s)
  9622. {
  9623. return create_new_cgpus(_scan_serial, (void*)s);
  9624. }
  9625. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9626. static bool rescan_active;
  9627. static struct timeval tv_rescan;
  9628. static notifier_t rescan_notifier;
  9629. static
  9630. void *rescan_thread(__maybe_unused void *p)
  9631. {
  9632. pthread_detach(pthread_self());
  9633. RenameThread("rescan");
  9634. struct timeval tv_timeout, tv_now;
  9635. fd_set rfds;
  9636. while (true)
  9637. {
  9638. mutex_lock(&rescan_mutex);
  9639. tv_timeout = tv_rescan;
  9640. if (!timer_isset(&tv_timeout))
  9641. {
  9642. rescan_active = false;
  9643. mutex_unlock(&rescan_mutex);
  9644. break;
  9645. }
  9646. mutex_unlock(&rescan_mutex);
  9647. FD_ZERO(&rfds);
  9648. FD_SET(rescan_notifier[0], &rfds);
  9649. const int maxfd = rescan_notifier[0];
  9650. timer_set_now(&tv_now);
  9651. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9652. notifier_read(rescan_notifier);
  9653. mutex_lock(&rescan_mutex);
  9654. if (timer_passed(&tv_rescan, NULL))
  9655. {
  9656. timer_unset(&tv_rescan);
  9657. mutex_unlock(&rescan_mutex);
  9658. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9659. scan_serial(NULL);
  9660. }
  9661. else
  9662. mutex_unlock(&rescan_mutex);
  9663. }
  9664. return NULL;
  9665. }
  9666. static
  9667. void _schedule_rescan(const struct timeval * const tvp_when)
  9668. {
  9669. if (rescan_active)
  9670. {
  9671. if (timercmp(tvp_when, &tv_rescan, <))
  9672. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9673. else
  9674. {
  9675. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9676. tv_rescan = *tvp_when;
  9677. }
  9678. return;
  9679. }
  9680. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9681. tv_rescan = *tvp_when;
  9682. rescan_active = true;
  9683. static pthread_t pth;
  9684. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9685. applog(LOG_ERR, "Failed to start rescan thread");
  9686. }
  9687. static
  9688. void schedule_rescan(const struct timeval * const tvp_when)
  9689. {
  9690. mutex_lock(&rescan_mutex);
  9691. _schedule_rescan(tvp_when);
  9692. mutex_unlock(&rescan_mutex);
  9693. }
  9694. #ifdef HAVE_BFG_HOTPLUG
  9695. static
  9696. void hotplug_trigger()
  9697. {
  9698. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9699. struct timeval tv_now;
  9700. timer_set_now(&tv_now);
  9701. schedule_rescan(&tv_now);
  9702. }
  9703. #endif
  9704. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9705. static
  9706. void *hotplug_thread(__maybe_unused void *p)
  9707. {
  9708. pthread_detach(pthread_self());
  9709. RenameThread("hotplug");
  9710. struct udev * const udev = udev_new();
  9711. if (unlikely(!udev))
  9712. applogfailr(NULL, LOG_ERR, "udev_new");
  9713. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9714. if (unlikely(!mon))
  9715. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9716. if (unlikely(udev_monitor_enable_receiving(mon)))
  9717. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9718. const int epfd = epoll_create(1);
  9719. if (unlikely(epfd == -1))
  9720. applogfailr(NULL, LOG_ERR, "epoll_create");
  9721. {
  9722. const int fd = udev_monitor_get_fd(mon);
  9723. struct epoll_event ev = {
  9724. .events = EPOLLIN | EPOLLPRI,
  9725. .data.fd = fd,
  9726. };
  9727. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9728. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9729. }
  9730. struct epoll_event ev;
  9731. int rv;
  9732. bool pending = false;
  9733. while (true)
  9734. {
  9735. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9736. if (rv == -1)
  9737. {
  9738. if (errno == EAGAIN || errno == EINTR)
  9739. continue;
  9740. break;
  9741. }
  9742. if (!rv)
  9743. {
  9744. hotplug_trigger();
  9745. pending = false;
  9746. continue;
  9747. }
  9748. struct udev_device * const device = udev_monitor_receive_device(mon);
  9749. if (!device)
  9750. continue;
  9751. const char * const action = udev_device_get_action(device);
  9752. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9753. if (strcmp(action, "add"))
  9754. continue;
  9755. pending = true;
  9756. }
  9757. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9758. }
  9759. #elif defined(WIN32)
  9760. static UINT_PTR _hotplug_wintimer_id;
  9761. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9762. {
  9763. KillTimer(NULL, _hotplug_wintimer_id);
  9764. _hotplug_wintimer_id = 0;
  9765. hotplug_trigger();
  9766. }
  9767. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9768. {
  9769. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9770. {
  9771. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9772. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9773. }
  9774. return DefWindowProc(hwnd, msg, wParam, lParam);
  9775. }
  9776. static
  9777. void *hotplug_thread(__maybe_unused void *p)
  9778. {
  9779. pthread_detach(pthread_self());
  9780. WNDCLASS DummyWinCls = {
  9781. .lpszClassName = "BFGDummyWinCls",
  9782. .lpfnWndProc = hotplug_win_callback,
  9783. };
  9784. ATOM a = RegisterClass(&DummyWinCls);
  9785. if (unlikely(!a))
  9786. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9787. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9788. if (unlikely(!hwnd))
  9789. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9790. MSG msg;
  9791. while (GetMessage(&msg, NULL, 0, 0))
  9792. {
  9793. TranslateMessage(&msg);
  9794. DispatchMessage(&msg);
  9795. }
  9796. quit(0, "WM_QUIT received");
  9797. return NULL;
  9798. }
  9799. #endif
  9800. #ifdef HAVE_BFG_HOTPLUG
  9801. static
  9802. void hotplug_start()
  9803. {
  9804. pthread_t pth;
  9805. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9806. applog(LOG_ERR, "Failed to start hotplug thread");
  9807. }
  9808. #endif
  9809. static void probe_pools(void)
  9810. {
  9811. int i;
  9812. for (i = 0; i < total_pools; i++) {
  9813. struct pool *pool = pools[i];
  9814. pool->testing = true;
  9815. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9816. }
  9817. }
  9818. static void raise_fd_limits(void)
  9819. {
  9820. #ifdef HAVE_SETRLIMIT
  9821. struct rlimit fdlimit;
  9822. unsigned long old_soft_limit;
  9823. char frombuf[0x10] = "unlimited";
  9824. char hardbuf[0x10] = "unlimited";
  9825. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9826. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9827. old_soft_limit = fdlimit.rlim_cur;
  9828. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9829. fdlimit.rlim_cur = FD_SETSIZE;
  9830. else
  9831. fdlimit.rlim_cur = fdlimit.rlim_max;
  9832. if (fdlimit.rlim_max != RLIM_INFINITY)
  9833. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9834. if (old_soft_limit != RLIM_INFINITY)
  9835. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9836. if (fdlimit.rlim_cur == old_soft_limit)
  9837. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9838. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9839. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9840. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9841. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9842. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9843. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9844. #else
  9845. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9846. #endif
  9847. }
  9848. extern void bfg_init_threadlocal();
  9849. extern void stratumsrv_start();
  9850. int main(int argc, char *argv[])
  9851. {
  9852. struct sigaction handler;
  9853. struct thr_info *thr;
  9854. struct block *block;
  9855. unsigned int k;
  9856. int i;
  9857. int rearrange_pools = 0;
  9858. char *s;
  9859. #ifdef WIN32
  9860. LoadLibrary("backtrace.dll");
  9861. #endif
  9862. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9863. bfg_init_threadlocal();
  9864. #ifndef HAVE_PTHREAD_CANCEL
  9865. setup_pthread_cancel_workaround();
  9866. #endif
  9867. bfg_init_checksums();
  9868. #ifdef WIN32
  9869. {
  9870. WSADATA wsa;
  9871. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9872. if (i)
  9873. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9874. }
  9875. #endif
  9876. /* This dangerous functions tramples random dynamically allocated
  9877. * variables so do it before anything at all */
  9878. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9879. quit(1, "Failed to curl_global_init");
  9880. initial_args = malloc(sizeof(char *) * (argc + 1));
  9881. for (i = 0; i < argc; i++)
  9882. initial_args[i] = strdup(argv[i]);
  9883. initial_args[argc] = NULL;
  9884. mutex_init(&hash_lock);
  9885. mutex_init(&console_lock);
  9886. cglock_init(&control_lock);
  9887. mutex_init(&stats_lock);
  9888. mutex_init(&sharelog_lock);
  9889. cglock_init(&ch_lock);
  9890. mutex_init(&sshare_lock);
  9891. rwlock_init(&blk_lock);
  9892. rwlock_init(&netacc_lock);
  9893. rwlock_init(&mining_thr_lock);
  9894. rwlock_init(&devices_lock);
  9895. mutex_init(&lp_lock);
  9896. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9897. quit(1, "Failed to pthread_cond_init lp_cond");
  9898. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9899. quit(1, "Failed to pthread_cond_init gws_cond");
  9900. notifier_init(submit_waiting_notifier);
  9901. timer_unset(&tv_rescan);
  9902. notifier_init(rescan_notifier);
  9903. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9904. #ifdef WANT_CPUMINE
  9905. init_max_name_len();
  9906. #endif
  9907. handler.sa_handler = &sighandler;
  9908. handler.sa_flags = 0;
  9909. sigemptyset(&handler.sa_mask);
  9910. #ifdef HAVE_PTHREAD_CANCEL
  9911. sigaction(SIGTERM, &handler, &termhandler);
  9912. #else
  9913. // Need to let pthread_cancel emulation handle SIGTERM first
  9914. termhandler = pcwm_orig_term_handler;
  9915. pcwm_orig_term_handler = handler;
  9916. #endif
  9917. sigaction(SIGINT, &handler, &inthandler);
  9918. #ifndef WIN32
  9919. signal(SIGPIPE, SIG_IGN);
  9920. #else
  9921. timeBeginPeriod(1);
  9922. #endif
  9923. opt_kernel_path = CGMINER_PREFIX;
  9924. cgminer_path = alloca(PATH_MAX);
  9925. s = strdup(argv[0]);
  9926. strcpy(cgminer_path, dirname(s));
  9927. free(s);
  9928. strcat(cgminer_path, "/");
  9929. #if defined(WANT_CPUMINE) && defined(WIN32)
  9930. {
  9931. char buf[32];
  9932. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  9933. if (gev > 0 && gev < sizeof(buf))
  9934. {
  9935. setup_benchmark_pool();
  9936. double rate = bench_algo_stage3(atoi(buf));
  9937. // Write result to shared memory for parent
  9938. char unique_name[64];
  9939. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  9940. {
  9941. HANDLE map_handle = CreateFileMapping(
  9942. INVALID_HANDLE_VALUE, // use paging file
  9943. NULL, // default security attributes
  9944. PAGE_READWRITE, // read/write access
  9945. 0, // size: high 32-bits
  9946. 4096, // size: low 32-bits
  9947. unique_name // name of map object
  9948. );
  9949. if (NULL != map_handle) {
  9950. void *shared_mem = MapViewOfFile(
  9951. map_handle, // object to map view of
  9952. FILE_MAP_WRITE, // read/write access
  9953. 0, // high offset: map from
  9954. 0, // low offset: beginning
  9955. 0 // default: map entire file
  9956. );
  9957. if (NULL != shared_mem)
  9958. CopyMemory(shared_mem, &rate, sizeof(rate));
  9959. (void)UnmapViewOfFile(shared_mem);
  9960. }
  9961. (void)CloseHandle(map_handle);
  9962. }
  9963. exit(0);
  9964. }
  9965. }
  9966. #endif
  9967. devcursor = 8;
  9968. logstart = devcursor;
  9969. logcursor = logstart;
  9970. block = calloc(sizeof(struct block), 1);
  9971. if (unlikely(!block))
  9972. quit (1, "main OOM");
  9973. for (i = 0; i < 36; i++)
  9974. strcat(block->hash, "0");
  9975. HASH_ADD_STR(blocks, hash, block);
  9976. strcpy(current_block, block->hash);
  9977. mutex_init(&submitting_lock);
  9978. #ifdef HAVE_OPENCL
  9979. opencl_early_init();
  9980. #endif
  9981. schedstart.tm.tm_sec = 1;
  9982. schedstop .tm.tm_sec = 1;
  9983. opt_register_table(opt_early_table, NULL);
  9984. opt_register_table(opt_config_table, NULL);
  9985. opt_register_table(opt_cmdline_table, NULL);
  9986. opt_early_parse(argc, argv, applog_and_exit);
  9987. if (!config_loaded)
  9988. {
  9989. load_default_config();
  9990. rearrange_pools = total_pools;
  9991. }
  9992. opt_free_table();
  9993. /* parse command line */
  9994. opt_register_table(opt_config_table,
  9995. "Options for both config file and command line");
  9996. opt_register_table(opt_cmdline_table,
  9997. "Options for command line only");
  9998. opt_parse(&argc, argv, applog_and_exit);
  9999. if (argc != 1)
  10000. quit(1, "Unexpected extra commandline arguments");
  10001. if (rearrange_pools && rearrange_pools < total_pools)
  10002. {
  10003. // Prioritise commandline pools before default-config pools
  10004. for (i = 0; i < rearrange_pools; ++i)
  10005. pools[i]->prio += rearrange_pools;
  10006. for ( ; i < total_pools; ++i)
  10007. pools[i]->prio -= rearrange_pools;
  10008. }
  10009. #ifndef HAVE_PTHREAD_CANCEL
  10010. // Can't do this any earlier, or config isn't loaded
  10011. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10012. #endif
  10013. #ifdef HAVE_PWD_H
  10014. struct passwd *user_info = NULL;
  10015. if (opt_setuid != NULL) {
  10016. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10017. quit(1, "Unable to find setuid user information");
  10018. }
  10019. }
  10020. #endif
  10021. #ifdef HAVE_CHROOT
  10022. if (chroot_dir != NULL) {
  10023. #ifdef HAVE_PWD_H
  10024. if (user_info == NULL && getuid() == 0) {
  10025. applog(LOG_WARNING, "Running as root inside chroot");
  10026. }
  10027. #endif
  10028. if (chroot(chroot_dir) != 0) {
  10029. quit(1, "Unable to chroot");
  10030. }
  10031. if (chdir("/"))
  10032. quit(1, "Unable to chdir to chroot");
  10033. }
  10034. #endif
  10035. #ifdef HAVE_PWD_H
  10036. if (user_info != NULL) {
  10037. if (setgid((*user_info).pw_gid) != 0)
  10038. quit(1, "Unable to setgid");
  10039. if (setuid((*user_info).pw_uid) != 0)
  10040. quit(1, "Unable to setuid");
  10041. }
  10042. #endif
  10043. raise_fd_limits();
  10044. if (opt_benchmark) {
  10045. while (total_pools)
  10046. remove_pool(pools[0]);
  10047. setup_benchmark_pool();
  10048. }
  10049. if (opt_unittest) {
  10050. test_cgpu_match();
  10051. test_intrange();
  10052. test_decimal_width();
  10053. utf8_test();
  10054. }
  10055. #ifdef HAVE_CURSES
  10056. if (opt_realquiet || opt_display_devs)
  10057. use_curses = false;
  10058. setlocale(LC_ALL, "C");
  10059. if (use_curses)
  10060. enable_curses();
  10061. #endif
  10062. #ifdef HAVE_LIBUSB
  10063. int err = libusb_init(NULL);
  10064. if (err)
  10065. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10066. else
  10067. have_libusb = true;
  10068. #endif
  10069. applog(LOG_WARNING, "Started %s", packagename);
  10070. if (cnfbuf) {
  10071. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10072. switch (fileconf_load) {
  10073. case 0:
  10074. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10075. applog(LOG_WARNING, "Configuration file could not be used.");
  10076. break;
  10077. case -1:
  10078. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10079. if (use_curses)
  10080. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10081. break;
  10082. default:
  10083. break;
  10084. }
  10085. free(cnfbuf);
  10086. cnfbuf = NULL;
  10087. }
  10088. i = strlen(opt_kernel_path) + 2;
  10089. char __kernel_path[i];
  10090. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10091. opt_kernel_path = __kernel_path;
  10092. if (want_per_device_stats)
  10093. opt_log_output = true;
  10094. #ifdef WANT_CPUMINE
  10095. #ifdef USE_SCRYPT
  10096. if (opt_scrypt)
  10097. set_scrypt_algo(&opt_algo);
  10098. #endif
  10099. #endif
  10100. bfg_devapi_init();
  10101. drv_detect_all();
  10102. total_devices = total_devices_new;
  10103. devices = devices_new;
  10104. total_devices_new = 0;
  10105. devices_new = NULL;
  10106. if (opt_display_devs) {
  10107. int devcount = 0;
  10108. applog(LOG_ERR, "Devices detected:");
  10109. for (i = 0; i < total_devices; ++i) {
  10110. struct cgpu_info *cgpu = devices[i];
  10111. char buf[0x100];
  10112. if (cgpu->device != cgpu)
  10113. continue;
  10114. if (cgpu->name)
  10115. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10116. else
  10117. if (cgpu->dev_manufacturer)
  10118. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10119. else
  10120. if (cgpu->dev_product)
  10121. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10122. else
  10123. strcpy(buf, " Device");
  10124. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10125. if (cgpu->dev_serial)
  10126. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10127. if (cgpu->device_path)
  10128. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10129. tailsprintf(buf, sizeof(buf), ")");
  10130. _applog(LOG_NOTICE, buf);
  10131. ++devcount;
  10132. }
  10133. quit(0, "%d devices listed", devcount);
  10134. }
  10135. mining_threads = 0;
  10136. for (i = 0; i < total_devices; ++i)
  10137. register_device(devices[i]);
  10138. if (!total_devices) {
  10139. applog(LOG_WARNING, "No devices detected!");
  10140. if (use_curses)
  10141. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10142. else
  10143. applog(LOG_WARNING, "Waiting for devices");
  10144. }
  10145. if (opt_quit_summary == BQS_DEFAULT)
  10146. {
  10147. if (total_devices < 25)
  10148. opt_quit_summary = BQS_PROCS;
  10149. else
  10150. opt_quit_summary = BQS_DEVS;
  10151. }
  10152. #ifdef HAVE_CURSES
  10153. switch_logsize();
  10154. #endif
  10155. if (!total_pools) {
  10156. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10157. #ifdef HAVE_CURSES
  10158. if (!use_curses || !input_pool(false))
  10159. #endif
  10160. quit(1, "Pool setup failed");
  10161. }
  10162. for (i = 0; i < total_pools; i++) {
  10163. struct pool *pool = pools[i];
  10164. size_t siz;
  10165. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10166. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10167. if (!pool->rpc_url)
  10168. quit(1, "No URI supplied for pool %u", i);
  10169. if (!pool->rpc_userpass) {
  10170. if (!pool->rpc_user || !pool->rpc_pass)
  10171. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10172. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10173. pool->rpc_userpass = malloc(siz);
  10174. if (!pool->rpc_userpass)
  10175. quit(1, "Failed to malloc userpass");
  10176. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10177. }
  10178. }
  10179. /* Set the currentpool to pool with priority 0 */
  10180. validate_pool_priorities();
  10181. for (i = 0; i < total_pools; i++) {
  10182. struct pool *pool = pools[i];
  10183. if (!pool->prio)
  10184. currentpool = pool;
  10185. }
  10186. #ifdef HAVE_SYSLOG_H
  10187. if (use_syslog)
  10188. openlog(PACKAGE, LOG_PID, LOG_USER);
  10189. #endif
  10190. #if defined(unix) || defined(__APPLE__)
  10191. if (opt_stderr_cmd)
  10192. fork_monitor();
  10193. #endif // defined(unix)
  10194. mining_thr = calloc(mining_threads, sizeof(thr));
  10195. if (!mining_thr)
  10196. quit(1, "Failed to calloc mining_thr");
  10197. for (i = 0; i < mining_threads; i++) {
  10198. mining_thr[i] = calloc(1, sizeof(*thr));
  10199. if (!mining_thr[i])
  10200. quit(1, "Failed to calloc mining_thr[%d]", i);
  10201. }
  10202. total_control_threads = 6;
  10203. control_thr = calloc(total_control_threads, sizeof(*thr));
  10204. if (!control_thr)
  10205. quit(1, "Failed to calloc control_thr");
  10206. gwsched_thr_id = 0;
  10207. /* Create a unique get work queue */
  10208. getq = tq_new();
  10209. if (!getq)
  10210. quit(1, "Failed to create getq");
  10211. /* We use the getq mutex as the staged lock */
  10212. stgd_lock = &getq->mutex;
  10213. if (opt_benchmark)
  10214. goto begin_bench;
  10215. for (i = 0; i < total_pools; i++) {
  10216. struct pool *pool = pools[i];
  10217. enable_pool(pool);
  10218. pool->idle = true;
  10219. }
  10220. applog(LOG_NOTICE, "Probing for an alive pool");
  10221. do {
  10222. bool still_testing;
  10223. int i;
  10224. /* Look for at least one active pool before starting */
  10225. probe_pools();
  10226. do {
  10227. sleep(1);
  10228. if (pools_active)
  10229. break;
  10230. still_testing = false;
  10231. for (int i = 0; i < total_pools; ++i)
  10232. if (pools[i]->testing)
  10233. still_testing = true;
  10234. } while (still_testing);
  10235. if (!pools_active) {
  10236. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10237. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10238. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10239. for (i = 0; i < total_pools; i++) {
  10240. struct pool *pool;
  10241. pool = pools[i];
  10242. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10243. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10244. }
  10245. #ifdef HAVE_CURSES
  10246. if (use_curses) {
  10247. halfdelay(150);
  10248. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10249. if (getch() != ERR)
  10250. quit(0, "No servers could be used! Exiting.");
  10251. cbreak();
  10252. } else
  10253. #endif
  10254. quit(0, "No servers could be used! Exiting.");
  10255. }
  10256. } while (!pools_active);
  10257. #ifdef USE_SCRYPT
  10258. if (detect_algo == 1 && !opt_scrypt) {
  10259. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10260. opt_scrypt = true;
  10261. }
  10262. #endif
  10263. detect_algo = 0;
  10264. begin_bench:
  10265. total_mhashes_done = 0;
  10266. for (i = 0; i < total_devices; i++) {
  10267. struct cgpu_info *cgpu = devices[i];
  10268. cgpu->rolling = cgpu->total_mhashes = 0;
  10269. }
  10270. cgtime(&total_tv_start);
  10271. cgtime(&total_tv_end);
  10272. miner_started = total_tv_start;
  10273. time_t miner_start_ts = time(NULL);
  10274. if (schedstart.tm.tm_sec)
  10275. localtime_r(&miner_start_ts, &schedstart.tm);
  10276. if (schedstop.tm.tm_sec)
  10277. localtime_r(&miner_start_ts, &schedstop .tm);
  10278. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10279. // Initialise processors and threads
  10280. k = 0;
  10281. for (i = 0; i < total_devices; ++i) {
  10282. struct cgpu_info *cgpu = devices[i];
  10283. allocate_cgpu(cgpu, &k);
  10284. }
  10285. // Start threads
  10286. for (i = 0; i < total_devices; ++i) {
  10287. struct cgpu_info *cgpu = devices[i];
  10288. start_cgpu(cgpu);
  10289. }
  10290. #ifdef HAVE_OPENCL
  10291. for (i = 0; i < nDevs; i++)
  10292. pause_dynamic_threads(i);
  10293. #endif
  10294. #ifdef WANT_CPUMINE
  10295. applog(LOG_INFO, "%d cpu miner threads started, "
  10296. "using SHA256 '%s' algorithm.",
  10297. opt_n_threads,
  10298. algo_names[opt_algo]);
  10299. #endif
  10300. cgtime(&total_tv_start);
  10301. cgtime(&total_tv_end);
  10302. if (!opt_benchmark)
  10303. {
  10304. pthread_t submit_thread;
  10305. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10306. quit(1, "submit_work thread create failed");
  10307. }
  10308. watchpool_thr_id = 1;
  10309. thr = &control_thr[watchpool_thr_id];
  10310. /* start watchpool thread */
  10311. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10312. quit(1, "watchpool thread create failed");
  10313. pthread_detach(thr->pth);
  10314. watchdog_thr_id = 2;
  10315. thr = &control_thr[watchdog_thr_id];
  10316. /* start watchdog thread */
  10317. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10318. quit(1, "watchdog thread create failed");
  10319. pthread_detach(thr->pth);
  10320. #ifdef HAVE_OPENCL
  10321. /* Create reinit gpu thread */
  10322. gpur_thr_id = 3;
  10323. thr = &control_thr[gpur_thr_id];
  10324. thr->q = tq_new();
  10325. if (!thr->q)
  10326. quit(1, "tq_new failed for gpur_thr_id");
  10327. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10328. quit(1, "reinit_gpu thread create failed");
  10329. #endif
  10330. /* Create API socket thread */
  10331. api_thr_id = 4;
  10332. thr = &control_thr[api_thr_id];
  10333. if (thr_info_create(thr, NULL, api_thread, thr))
  10334. quit(1, "API thread create failed");
  10335. #ifdef USE_LIBMICROHTTPD
  10336. if (httpsrv_port != -1)
  10337. httpsrv_start(httpsrv_port);
  10338. #endif
  10339. #ifdef USE_LIBEVENT
  10340. if (stratumsrv_port != -1)
  10341. stratumsrv_start();
  10342. #endif
  10343. #ifdef HAVE_BFG_HOTPLUG
  10344. if (opt_hotplug && !opt_scrypt)
  10345. hotplug_start();
  10346. #endif
  10347. #ifdef HAVE_CURSES
  10348. /* Create curses input thread for keyboard input. Create this last so
  10349. * that we know all threads are created since this can call kill_work
  10350. * to try and shut down ll previous threads. */
  10351. input_thr_id = 5;
  10352. thr = &control_thr[input_thr_id];
  10353. if (thr_info_create(thr, NULL, input_thread, thr))
  10354. quit(1, "input thread create failed");
  10355. pthread_detach(thr->pth);
  10356. #endif
  10357. /* Just to be sure */
  10358. if (total_control_threads != 6)
  10359. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10360. /* Once everything is set up, main() becomes the getwork scheduler */
  10361. while (42) {
  10362. int ts, max_staged = opt_queue;
  10363. struct pool *pool, *cp;
  10364. bool lagging = false;
  10365. struct curl_ent *ce;
  10366. struct work *work;
  10367. cp = current_pool();
  10368. // Generally, each processor needs a new work, and all at once during work restarts
  10369. max_staged += mining_threads;
  10370. mutex_lock(stgd_lock);
  10371. ts = __total_staged();
  10372. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10373. lagging = true;
  10374. /* Wait until hash_pop tells us we need to create more work */
  10375. if (ts > max_staged) {
  10376. staged_full = true;
  10377. pthread_cond_wait(&gws_cond, stgd_lock);
  10378. ts = __total_staged();
  10379. }
  10380. mutex_unlock(stgd_lock);
  10381. if (ts > max_staged)
  10382. continue;
  10383. work = make_work();
  10384. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10385. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10386. cp->getfail_occasions++;
  10387. total_go++;
  10388. }
  10389. pool = select_pool(lagging);
  10390. retry:
  10391. if (pool->has_stratum) {
  10392. while (!pool->stratum_active || !pool->stratum_notify) {
  10393. struct pool *altpool = select_pool(true);
  10394. if (altpool == pool && pool->has_stratum)
  10395. cgsleep_ms(5000);
  10396. pool = altpool;
  10397. goto retry;
  10398. }
  10399. gen_stratum_work(pool, work);
  10400. applog(LOG_DEBUG, "Generated stratum work");
  10401. stage_work(work);
  10402. continue;
  10403. }
  10404. if (pool->last_work_copy) {
  10405. mutex_lock(&pool->last_work_lock);
  10406. struct work *last_work = pool->last_work_copy;
  10407. if (!last_work)
  10408. {}
  10409. else
  10410. if (can_roll(last_work) && should_roll(last_work)) {
  10411. struct timeval tv_now;
  10412. cgtime(&tv_now);
  10413. free_work(work);
  10414. work = make_clone(pool->last_work_copy);
  10415. mutex_unlock(&pool->last_work_lock);
  10416. roll_work(work);
  10417. 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));
  10418. stage_work(work);
  10419. continue;
  10420. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10421. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10422. } else {
  10423. free_work(last_work);
  10424. pool->last_work_copy = NULL;
  10425. }
  10426. mutex_unlock(&pool->last_work_lock);
  10427. }
  10428. if (clone_available()) {
  10429. applog(LOG_DEBUG, "Cloned getwork work");
  10430. free_work(work);
  10431. continue;
  10432. }
  10433. if (opt_benchmark) {
  10434. get_benchmark_work(work);
  10435. applog(LOG_DEBUG, "Generated benchmark work");
  10436. stage_work(work);
  10437. continue;
  10438. }
  10439. work->pool = pool;
  10440. ce = pop_curl_entry3(pool, 2);
  10441. /* obtain new work from bitcoin via JSON-RPC */
  10442. if (!get_upstream_work(work, ce->curl)) {
  10443. struct pool *next_pool;
  10444. /* Make sure the pool just hasn't stopped serving
  10445. * requests but is up as we'll keep hammering it */
  10446. push_curl_entry(ce, pool);
  10447. ++pool->seq_getfails;
  10448. pool_died(pool);
  10449. next_pool = select_pool(!opt_fail_only);
  10450. if (pool == next_pool) {
  10451. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10452. cgsleep_ms(5000);
  10453. } else {
  10454. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10455. pool = next_pool;
  10456. }
  10457. goto retry;
  10458. }
  10459. if (ts >= max_staged)
  10460. pool_tclear(pool, &pool->lagging);
  10461. if (pool_tclear(pool, &pool->idle))
  10462. pool_resus(pool);
  10463. applog(LOG_DEBUG, "Generated getwork work");
  10464. stage_work(work);
  10465. push_curl_entry(ce, pool);
  10466. }
  10467. return 0;
  10468. }