miner.c 292 KB

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