miner.c 319 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453
  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 <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #ifdef USE_AVALON
  75. #include "driver-avalon.h"
  76. #endif
  77. #ifdef HAVE_BFG_LOWLEVEL
  78. #include "lowlevel.h"
  79. #endif
  80. #if defined(unix) || defined(__APPLE__)
  81. #include <errno.h>
  82. #include <fcntl.h>
  83. #include <sys/wait.h>
  84. #endif
  85. #ifdef USE_SCRYPT
  86. #include "scrypt.h"
  87. #endif
  88. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  89. # define USE_FPGA
  90. #endif
  91. enum bfg_quit_summary {
  92. BQS_DEFAULT,
  93. BQS_NONE,
  94. BQS_DEVS,
  95. BQS_PROCS,
  96. BQS_DETAILED,
  97. };
  98. struct strategies strategies[] = {
  99. { "Failover" },
  100. { "Round Robin" },
  101. { "Rotate" },
  102. { "Load Balance" },
  103. { "Balance" },
  104. };
  105. static char packagename[256];
  106. bool opt_protocol;
  107. bool opt_dev_protocol;
  108. static bool opt_benchmark;
  109. static bool want_longpoll = true;
  110. static bool want_gbt = true;
  111. static bool want_getwork = true;
  112. #if BLKMAKER_VERSION > 1
  113. struct _cbscript_t {
  114. char *data;
  115. size_t sz;
  116. };
  117. static struct _cbscript_t opt_coinbase_script;
  118. static uint32_t template_nonce;
  119. #endif
  120. #if BLKMAKER_VERSION > 0
  121. char *opt_coinbase_sig;
  122. #endif
  123. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  124. static bool include_serial_in_statline;
  125. char *request_target_str;
  126. float request_pdiff = 1.0;
  127. double request_bdiff;
  128. static bool want_stratum = true;
  129. bool have_longpoll;
  130. int opt_skip_checks;
  131. bool want_per_device_stats;
  132. bool use_syslog;
  133. bool opt_quiet_work_updates = true;
  134. bool opt_quiet;
  135. bool opt_realquiet;
  136. int loginput_size;
  137. bool opt_compact;
  138. bool opt_show_procs;
  139. const int opt_cutofftemp = 95;
  140. int opt_hysteresis = 3;
  141. static int opt_retries = -1;
  142. int opt_fail_pause = 5;
  143. int opt_log_interval = 20;
  144. int opt_queue = 1;
  145. int opt_scantime = 60;
  146. int opt_expiry = 120;
  147. int opt_expiry_lp = 3600;
  148. unsigned long long global_hashrate;
  149. static bool opt_unittest = false;
  150. unsigned long global_quota_gcd = 1;
  151. time_t last_getwork;
  152. #ifdef HAVE_OPENCL
  153. int opt_dynamic_interval = 7;
  154. int nDevs;
  155. int opt_g_threads = -1;
  156. #endif
  157. #ifdef USE_SCRYPT
  158. static char detect_algo = 1;
  159. bool opt_scrypt;
  160. #else
  161. static char detect_algo;
  162. #endif
  163. bool opt_restart = true;
  164. #ifdef USE_LIBMICROHTTPD
  165. #include "httpsrv.h"
  166. int httpsrv_port = -1;
  167. #endif
  168. #ifdef USE_LIBEVENT
  169. int stratumsrv_port = -1;
  170. #endif
  171. const
  172. int rescan_delay_ms = 1000;
  173. #ifdef HAVE_BFG_HOTPLUG
  174. bool opt_hotplug = 1;
  175. const
  176. int hotplug_delay_ms = 100;
  177. #else
  178. const bool opt_hotplug;
  179. #endif
  180. struct string_elist *scan_devices;
  181. static struct string_elist *opt_set_device_list;
  182. bool opt_force_dev_init;
  183. static struct string_elist *opt_devices_enabled_list;
  184. static bool opt_display_devs;
  185. int total_devices;
  186. struct cgpu_info **devices;
  187. int total_devices_new;
  188. struct cgpu_info **devices_new;
  189. bool have_opencl;
  190. int opt_n_threads = -1;
  191. int mining_threads;
  192. int num_processors;
  193. #ifdef HAVE_CURSES
  194. bool use_curses = true;
  195. #else
  196. bool use_curses;
  197. #endif
  198. #ifdef HAVE_LIBUSB
  199. bool have_libusb;
  200. #endif
  201. static bool opt_submit_stale = true;
  202. static float opt_shares;
  203. static int opt_submit_threads = 0x40;
  204. bool opt_fail_only;
  205. int opt_fail_switch_delay = 300;
  206. bool opt_autofan;
  207. bool opt_autoengine;
  208. bool opt_noadl;
  209. char *opt_api_allow = NULL;
  210. char *opt_api_groups;
  211. char *opt_api_description = PACKAGE_STRING;
  212. int opt_api_port = 4028;
  213. bool opt_api_listen;
  214. bool opt_api_mcast;
  215. char *opt_api_mcast_addr = API_MCAST_ADDR;
  216. char *opt_api_mcast_code = API_MCAST_CODE;
  217. char *opt_api_mcast_des = "";
  218. int opt_api_mcast_port = 4028;
  219. bool opt_api_network;
  220. bool opt_delaynet;
  221. bool opt_disable_pool;
  222. bool opt_disable_client_reconnect = false;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int watchpool_thr_id;
  235. static int watchdog_thr_id;
  236. #ifdef HAVE_CURSES
  237. static int input_thr_id;
  238. #endif
  239. int gpur_thr_id;
  240. static int api_thr_id;
  241. static int total_control_threads;
  242. pthread_mutex_t hash_lock;
  243. static pthread_mutex_t *stgd_lock;
  244. pthread_mutex_t console_lock;
  245. cglock_t ch_lock;
  246. static pthread_rwlock_t blk_lock;
  247. static pthread_mutex_t sshare_lock;
  248. pthread_rwlock_t netacc_lock;
  249. pthread_rwlock_t mining_thr_lock;
  250. pthread_rwlock_t devices_lock;
  251. static pthread_mutex_t lp_lock;
  252. static pthread_cond_t lp_cond;
  253. pthread_cond_t gws_cond;
  254. bool shutting_down;
  255. double total_rolling;
  256. double total_mhashes_done;
  257. static struct timeval total_tv_start, total_tv_end;
  258. static struct timeval miner_started;
  259. cglock_t control_lock;
  260. pthread_mutex_t stats_lock;
  261. static pthread_mutex_t submitting_lock;
  262. static int total_submitting;
  263. static struct work *submit_waiting;
  264. notifier_t submit_waiting_notifier;
  265. int hw_errors;
  266. int total_accepted, total_rejected;
  267. int total_getworks, total_stale, total_discarded;
  268. uint64_t total_bytes_rcvd, total_bytes_sent;
  269. double total_diff1, total_bad_diff1;
  270. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  271. static int staged_rollable;
  272. unsigned int new_blocks;
  273. unsigned int found_blocks;
  274. unsigned int local_work;
  275. unsigned int total_go, total_ro;
  276. struct pool **pools;
  277. static struct pool *currentpool = NULL;
  278. int total_pools, enabled_pools;
  279. enum pool_strategy pool_strategy = POOL_FAILOVER;
  280. int opt_rotate_period;
  281. static int total_urls, total_users, total_passes;
  282. static
  283. #ifndef HAVE_CURSES
  284. const
  285. #endif
  286. bool curses_active;
  287. #ifdef HAVE_CURSES
  288. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  289. const
  290. #endif
  291. short default_bgcolor = COLOR_BLACK;
  292. static int attr_title = A_BOLD;
  293. #endif
  294. static
  295. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  296. bool use_unicode;
  297. static
  298. bool have_unicode_degrees;
  299. static
  300. wchar_t unicode_micro = 'u';
  301. #else
  302. const bool use_unicode;
  303. static
  304. const bool have_unicode_degrees;
  305. static
  306. const char unicode_micro = 'u';
  307. #endif
  308. #ifdef HAVE_CURSES
  309. #define U8_BAD_START "\xef\x80\x81"
  310. #define U8_BAD_END "\xef\x80\x80"
  311. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  312. bool selecting_device;
  313. unsigned selected_device;
  314. #endif
  315. static char current_block[40];
  316. /* Protected by ch_lock */
  317. static char *current_hash;
  318. static uint32_t current_block_id;
  319. char *current_fullhash;
  320. static char datestamp[40];
  321. static char blocktime[32];
  322. time_t block_time;
  323. static char best_share[ALLOC_H2B_SHORTV] = "0";
  324. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  325. static char block_diff[ALLOC_H2B_SHORTV];
  326. static char net_hashrate[ALLOC_H2B_SHORT];
  327. double best_diff = 0;
  328. static bool known_blkheight_current;
  329. static uint32_t known_blkheight;
  330. static uint32_t known_blkheight_blkid;
  331. static uint64_t block_subsidy;
  332. struct block {
  333. char hash[40];
  334. UT_hash_handle hh;
  335. int block_no;
  336. };
  337. static struct block *blocks = NULL;
  338. int swork_id;
  339. /* For creating a hash database of stratum shares submitted that have not had
  340. * a response yet */
  341. struct stratum_share {
  342. UT_hash_handle hh;
  343. bool block;
  344. struct work *work;
  345. int id;
  346. };
  347. static struct stratum_share *stratum_shares = NULL;
  348. char *opt_socks_proxy = NULL;
  349. static const char def_conf[] = "bfgminer.conf";
  350. static bool config_loaded;
  351. static int include_count;
  352. #define JSON_INCLUDE_CONF "include"
  353. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  354. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  355. #define JSON_MAX_DEPTH 10
  356. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  357. char *cmd_idle, *cmd_sick, *cmd_dead;
  358. #if defined(unix) || defined(__APPLE__)
  359. static char *opt_stderr_cmd = NULL;
  360. static int forkpid;
  361. #endif // defined(unix)
  362. #ifdef HAVE_CHROOT
  363. char *chroot_dir;
  364. #endif
  365. #ifdef HAVE_PWD_H
  366. char *opt_setuid;
  367. #endif
  368. struct sigaction termhandler, inthandler;
  369. struct thread_q *getq;
  370. static int total_work;
  371. static bool staged_full;
  372. struct work *staged_work = NULL;
  373. struct schedtime {
  374. bool enable;
  375. struct tm tm;
  376. };
  377. struct schedtime schedstart;
  378. struct schedtime schedstop;
  379. bool sched_paused;
  380. static bool time_before(struct tm *tm1, struct tm *tm2)
  381. {
  382. if (tm1->tm_hour < tm2->tm_hour)
  383. return true;
  384. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  385. return true;
  386. return false;
  387. }
  388. static bool should_run(void)
  389. {
  390. struct tm tm;
  391. time_t tt;
  392. bool within_range;
  393. if (!schedstart.enable && !schedstop.enable)
  394. return true;
  395. tt = time(NULL);
  396. localtime_r(&tt, &tm);
  397. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  398. if (time_before(&schedstop.tm, &schedstart.tm))
  399. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  400. else
  401. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  402. if (within_range && !schedstop.enable)
  403. /* This is a once off event with no stop time set */
  404. schedstart.enable = false;
  405. return within_range;
  406. }
  407. void get_datestamp(char *f, size_t fsiz, time_t tt)
  408. {
  409. struct tm _tm;
  410. struct tm *tm = &_tm;
  411. if (tt == INVALID_TIMESTAMP)
  412. tt = time(NULL);
  413. localtime_r(&tt, tm);
  414. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  415. tm->tm_year + 1900,
  416. tm->tm_mon + 1,
  417. tm->tm_mday,
  418. tm->tm_hour,
  419. tm->tm_min,
  420. tm->tm_sec);
  421. }
  422. static
  423. void get_timestamp(char *f, size_t fsiz, time_t tt)
  424. {
  425. struct tm _tm;
  426. struct tm *tm = &_tm;
  427. localtime_r(&tt, tm);
  428. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  429. tm->tm_hour,
  430. tm->tm_min,
  431. tm->tm_sec);
  432. }
  433. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  434. static char exit_buf[512];
  435. static void applog_and_exit(const char *fmt, ...)
  436. {
  437. va_list ap;
  438. va_start(ap, fmt);
  439. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  440. va_end(ap);
  441. _applog(LOG_ERR, exit_buf);
  442. exit(1);
  443. }
  444. char *devpath_to_devid(const char *devpath)
  445. {
  446. #ifndef WIN32
  447. struct stat my_stat;
  448. if (stat(devpath, &my_stat))
  449. return NULL;
  450. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  451. memcpy(devs, "dev_t:", 6);
  452. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  453. #else
  454. if (!strncmp(devpath, "\\\\.\\", 4))
  455. devpath += 4;
  456. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  457. return NULL;
  458. devpath += 3;
  459. char *p;
  460. strtol(devpath, &p, 10);
  461. if (p[0])
  462. return NULL;
  463. const int sz = (p - devpath);
  464. char *devs = malloc(4 + sz + 1);
  465. sprintf(devs, "com:%s", devpath);
  466. #endif
  467. return devs;
  468. }
  469. static
  470. bool devpaths_match(const char * const ap, const char * const bp)
  471. {
  472. char * const a = devpath_to_devid(ap);
  473. if (!a)
  474. return false;
  475. char * const b = devpath_to_devid(bp);
  476. bool rv = false;
  477. if (b)
  478. {
  479. rv = !strcmp(a, b);
  480. free(b);
  481. }
  482. free(a);
  483. return rv;
  484. }
  485. static
  486. int proc_letter_to_number(const char *s, const char ** const rem)
  487. {
  488. int n = 0, c;
  489. for ( ; s[0]; ++s)
  490. {
  491. if (unlikely(n > INT_MAX / 26))
  492. break;
  493. c = tolower(s[0]) - 'a';
  494. if (unlikely(c < 0 || c > 25))
  495. break;
  496. if (unlikely(INT_MAX - c < n))
  497. break;
  498. n = (n * 26) + c;
  499. }
  500. *rem = s;
  501. return n;
  502. }
  503. static
  504. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  505. {
  506. // all - matches anything
  507. // d0 - matches all processors of device 0
  508. // d0-3 - matches all processors of device 0, 1, 2, or 3
  509. // d0a - matches first processor of device 0
  510. // 0 - matches processor 0
  511. // 0-4 - matches processors 0, 1, 2, 3, or 4
  512. // ___ - matches all processors on all devices using driver/name ___
  513. // ___0 - matches all processors of 0th device using driver/name ___
  514. // ___0a - matches first processor of 0th device using driver/name ___
  515. // @* - matches device with serial or path *
  516. // @*@a - matches first processor of device with serial or path *
  517. // ___@* - matches device with serial or path * using driver/name ___
  518. if (!strcasecmp(pattern, "all"))
  519. return true;
  520. const struct device_drv * const drv = cgpu->drv;
  521. const char *p = pattern, *p2;
  522. size_t L;
  523. int n, i, c = -1;
  524. int n2;
  525. int proc_first = -1, proc_last = -1;
  526. struct cgpu_info *device;
  527. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  528. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  529. // dname or name
  530. p = &pattern[L];
  531. else
  532. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  533. // d#
  534. ++p;
  535. else
  536. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  537. // # or @
  538. {}
  539. else
  540. return false;
  541. L = p - pattern;
  542. while (isspace(p[0]))
  543. ++p;
  544. if (p[0] == '@')
  545. {
  546. // Serial/path
  547. const char * const ser = &p[1];
  548. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  549. {}
  550. p2 = (p[0] == '@') ? &p[1] : p;
  551. const size_t serlen = (p - ser);
  552. p = "";
  553. n = n2 = 0;
  554. const char * const devpath = cgpu->device_path ?: "";
  555. const char * const devser = cgpu->dev_serial ?: "";
  556. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  557. {} // Match
  558. else
  559. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  560. {} // Match
  561. else
  562. {
  563. char devpath2[serlen + 1];
  564. memcpy(devpath2, ser, serlen);
  565. devpath2[serlen] = '\0';
  566. if (!devpaths_match(devpath, ser))
  567. return false;
  568. }
  569. }
  570. else
  571. {
  572. if (isdigit(p[0]))
  573. n = strtol(p, (void*)&p2, 0);
  574. else
  575. {
  576. n = 0;
  577. p2 = p;
  578. }
  579. if (p2[0] == '-')
  580. {
  581. ++p2;
  582. if (p2[0] && isdigit(p2[0]))
  583. n2 = strtol(p2, (void*)&p2, 0);
  584. else
  585. n2 = INT_MAX;
  586. }
  587. else
  588. n2 = n;
  589. if (p == pattern)
  590. {
  591. if (!p[0])
  592. return true;
  593. if (p2 && p2[0])
  594. goto invsyntax;
  595. for (i = n; i <= n2; ++i)
  596. {
  597. if (i >= total_devices)
  598. break;
  599. if (cgpu == devices[i])
  600. return true;
  601. }
  602. return false;
  603. }
  604. }
  605. if (p2[0])
  606. {
  607. proc_first = proc_letter_to_number(&p2[0], &p2);
  608. if (p2[0] == '-')
  609. {
  610. ++p2;
  611. if (p2[0])
  612. proc_last = proc_letter_to_number(p2, &p2);
  613. else
  614. proc_last = INT_MAX;
  615. }
  616. else
  617. proc_last = proc_first;
  618. if (p2[0])
  619. goto invsyntax;
  620. }
  621. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  622. {
  623. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  624. (!L) ||
  625. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  626. {} // Matched name or dname
  627. else
  628. return false;
  629. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  630. return false;
  631. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  632. return false;
  633. return true;
  634. }
  635. // d#
  636. c = -1;
  637. for (i = 0; ; ++i)
  638. {
  639. if (i == total_devices)
  640. return false;
  641. if (devices[i]->device != devices[i])
  642. continue;
  643. ++c;
  644. if (c < n)
  645. continue;
  646. if (c > n2)
  647. break;
  648. for (device = devices[i]; device; device = device->next_proc)
  649. {
  650. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  651. continue;
  652. if (device == cgpu)
  653. return true;
  654. }
  655. }
  656. return false;
  657. invsyntax:
  658. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  659. return false;
  660. }
  661. #define TEST_CGPU_MATCH(pattern) \
  662. if (!cgpu_match(pattern, &cgpu)) \
  663. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  664. // END TEST_CGPU_MATCH
  665. #define TEST_CGPU_NOMATCH(pattern) \
  666. if (cgpu_match(pattern, &cgpu)) \
  667. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  668. // END TEST_CGPU_MATCH
  669. static __maybe_unused
  670. void test_cgpu_match()
  671. {
  672. struct device_drv drv = {
  673. .dname = "test",
  674. .name = "TST",
  675. };
  676. struct cgpu_info cgpu = {
  677. .drv = &drv,
  678. .device = &cgpu,
  679. .device_id = 1,
  680. .proc_id = 1,
  681. .proc_repr = "TST 1b",
  682. }, cgpu0a = {
  683. .drv = &drv,
  684. .device = &cgpu0a,
  685. .device_id = 0,
  686. .proc_id = 0,
  687. .proc_repr = "TST 0a",
  688. }, cgpu1a = {
  689. .drv = &drv,
  690. .device = &cgpu0a,
  691. .device_id = 1,
  692. .proc_id = 0,
  693. .proc_repr = "TST 1a",
  694. };
  695. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  696. devices = devices_list;
  697. total_devices = 3;
  698. TEST_CGPU_MATCH("all")
  699. TEST_CGPU_MATCH("d1")
  700. TEST_CGPU_NOMATCH("d2")
  701. TEST_CGPU_MATCH("d0-5")
  702. TEST_CGPU_NOMATCH("d0-0")
  703. TEST_CGPU_NOMATCH("d2-5")
  704. TEST_CGPU_MATCH("d-1")
  705. TEST_CGPU_MATCH("d1-")
  706. TEST_CGPU_NOMATCH("d-0")
  707. TEST_CGPU_NOMATCH("d2-")
  708. TEST_CGPU_MATCH("2")
  709. TEST_CGPU_NOMATCH("3")
  710. TEST_CGPU_MATCH("1-2")
  711. TEST_CGPU_MATCH("2-3")
  712. TEST_CGPU_NOMATCH("1-1")
  713. TEST_CGPU_NOMATCH("3-4")
  714. TEST_CGPU_MATCH("TST")
  715. TEST_CGPU_MATCH("test")
  716. TEST_CGPU_MATCH("tst")
  717. TEST_CGPU_MATCH("TEST")
  718. TEST_CGPU_NOMATCH("TSF")
  719. TEST_CGPU_NOMATCH("TS")
  720. TEST_CGPU_NOMATCH("TSTF")
  721. TEST_CGPU_MATCH("TST1")
  722. TEST_CGPU_MATCH("test1")
  723. TEST_CGPU_MATCH("TST0-1")
  724. TEST_CGPU_MATCH("TST 1")
  725. TEST_CGPU_MATCH("TST 1-2")
  726. TEST_CGPU_MATCH("TEST 1-2")
  727. TEST_CGPU_NOMATCH("TST2")
  728. TEST_CGPU_NOMATCH("TST2-3")
  729. TEST_CGPU_NOMATCH("TST0-0")
  730. TEST_CGPU_MATCH("TST1b")
  731. TEST_CGPU_MATCH("tst1b")
  732. TEST_CGPU_NOMATCH("TST1c")
  733. TEST_CGPU_NOMATCH("TST1bb")
  734. TEST_CGPU_MATCH("TST0-1b")
  735. TEST_CGPU_NOMATCH("TST0-1c")
  736. TEST_CGPU_MATCH("TST1a-d")
  737. TEST_CGPU_NOMATCH("TST1a-a")
  738. TEST_CGPU_NOMATCH("TST1-a")
  739. TEST_CGPU_NOMATCH("TST1c-z")
  740. TEST_CGPU_NOMATCH("TST1c-")
  741. TEST_CGPU_MATCH("@")
  742. TEST_CGPU_NOMATCH("@abc")
  743. TEST_CGPU_MATCH("@@b")
  744. TEST_CGPU_NOMATCH("@@c")
  745. TEST_CGPU_MATCH("TST@")
  746. TEST_CGPU_NOMATCH("TST@abc")
  747. TEST_CGPU_MATCH("TST@@b")
  748. TEST_CGPU_NOMATCH("TST@@c")
  749. TEST_CGPU_MATCH("TST@@b-f")
  750. TEST_CGPU_NOMATCH("TST@@c-f")
  751. TEST_CGPU_NOMATCH("TST@@-a")
  752. cgpu.device_path = "/dev/test";
  753. cgpu.dev_serial = "testy";
  754. TEST_CGPU_MATCH("TST@/dev/test")
  755. TEST_CGPU_MATCH("TST@testy")
  756. TEST_CGPU_NOMATCH("TST@")
  757. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  758. TEST_CGPU_NOMATCH("TST@testy3@b")
  759. TEST_CGPU_MATCH("TST@/dev/test@b")
  760. TEST_CGPU_MATCH("TST@testy@b")
  761. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  762. TEST_CGPU_NOMATCH("TST@testy@c")
  763. cgpu.device_path = "usb:000:999";
  764. TEST_CGPU_MATCH("TST@usb:000:999")
  765. drv.dname = "test7";
  766. TEST_CGPU_MATCH("test7")
  767. TEST_CGPU_MATCH("TEST7")
  768. TEST_CGPU_NOMATCH("test&")
  769. TEST_CGPU_MATCH("test7 1-2")
  770. TEST_CGPU_MATCH("test7@testy@b")
  771. }
  772. static
  773. int cgpu_search(const char * const pattern, const int first)
  774. {
  775. int i;
  776. struct cgpu_info *cgpu;
  777. #define CHECK_CGPU_SEARCH do{ \
  778. cgpu = get_devices(i); \
  779. if (cgpu_match(pattern, cgpu)) \
  780. return i; \
  781. }while(0)
  782. for (i = first; i < total_devices; ++i)
  783. CHECK_CGPU_SEARCH;
  784. for (i = 0; i < first; ++i)
  785. CHECK_CGPU_SEARCH;
  786. #undef CHECK_CGPU_SEARCH
  787. return -1;
  788. }
  789. static pthread_mutex_t sharelog_lock;
  790. static FILE *sharelog_file = NULL;
  791. struct thr_info *get_thread(int thr_id)
  792. {
  793. struct thr_info *thr;
  794. rd_lock(&mining_thr_lock);
  795. thr = mining_thr[thr_id];
  796. rd_unlock(&mining_thr_lock);
  797. return thr;
  798. }
  799. static struct cgpu_info *get_thr_cgpu(int thr_id)
  800. {
  801. struct thr_info *thr = get_thread(thr_id);
  802. return thr->cgpu;
  803. }
  804. struct cgpu_info *get_devices(int id)
  805. {
  806. struct cgpu_info *cgpu;
  807. rd_lock(&devices_lock);
  808. cgpu = devices[id];
  809. rd_unlock(&devices_lock);
  810. return cgpu;
  811. }
  812. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  813. static FILE *noncelog_file = NULL;
  814. static
  815. void noncelog(const struct work * const work)
  816. {
  817. const int thr_id = work->thr_id;
  818. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  819. char buf[0x200], hash[65], data[161], midstate[65];
  820. int rv;
  821. size_t ret;
  822. bin2hex(hash, work->hash, 32);
  823. bin2hex(data, work->data, 80);
  824. bin2hex(midstate, work->midstate, 32);
  825. // timestamp,proc,hash,data,midstate
  826. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  827. (unsigned long)time(NULL), proc->proc_repr_ns,
  828. hash, data, midstate);
  829. if (unlikely(rv < 1))
  830. {
  831. applog(LOG_ERR, "noncelog printf error");
  832. return;
  833. }
  834. mutex_lock(&noncelog_lock);
  835. ret = fwrite(buf, rv, 1, noncelog_file);
  836. fflush(noncelog_file);
  837. mutex_unlock(&noncelog_lock);
  838. if (ret != 1)
  839. applog(LOG_ERR, "noncelog fwrite error");
  840. }
  841. static void sharelog(const char*disposition, const struct work*work)
  842. {
  843. char target[(sizeof(work->target) * 2) + 1];
  844. char hash[(sizeof(work->hash) * 2) + 1];
  845. char data[(sizeof(work->data) * 2) + 1];
  846. struct cgpu_info *cgpu;
  847. unsigned long int t;
  848. struct pool *pool;
  849. int thr_id, rv;
  850. char s[1024];
  851. size_t ret;
  852. if (!sharelog_file)
  853. return;
  854. thr_id = work->thr_id;
  855. cgpu = get_thr_cgpu(thr_id);
  856. pool = work->pool;
  857. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  858. bin2hex(target, work->target, sizeof(work->target));
  859. bin2hex(hash, work->hash, sizeof(work->hash));
  860. bin2hex(data, work->data, sizeof(work->data));
  861. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  862. 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);
  863. if (rv >= (int)(sizeof(s)))
  864. s[sizeof(s) - 1] = '\0';
  865. else if (rv < 0) {
  866. applog(LOG_ERR, "sharelog printf error");
  867. return;
  868. }
  869. mutex_lock(&sharelog_lock);
  870. ret = fwrite(s, rv, 1, sharelog_file);
  871. fflush(sharelog_file);
  872. mutex_unlock(&sharelog_lock);
  873. if (ret != 1)
  874. applog(LOG_ERR, "sharelog fwrite error");
  875. }
  876. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  877. /* Adjust all the pools' quota to the greatest common denominator after a pool
  878. * has been added or the quotas changed. */
  879. void adjust_quota_gcd(void)
  880. {
  881. unsigned long gcd, lowest_quota = ~0UL, quota;
  882. struct pool *pool;
  883. int i;
  884. for (i = 0; i < total_pools; i++) {
  885. pool = pools[i];
  886. quota = pool->quota;
  887. if (!quota)
  888. continue;
  889. if (quota < lowest_quota)
  890. lowest_quota = quota;
  891. }
  892. if (likely(lowest_quota < ~0UL)) {
  893. gcd = lowest_quota;
  894. for (i = 0; i < total_pools; i++) {
  895. pool = pools[i];
  896. quota = pool->quota;
  897. if (!quota)
  898. continue;
  899. while (quota % gcd)
  900. gcd--;
  901. }
  902. } else
  903. gcd = 1;
  904. for (i = 0; i < total_pools; i++) {
  905. pool = pools[i];
  906. pool->quota_used *= global_quota_gcd;
  907. pool->quota_used /= gcd;
  908. pool->quota_gcd = pool->quota / gcd;
  909. }
  910. global_quota_gcd = gcd;
  911. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  912. }
  913. /* Return value is ignored if not called from add_pool_details */
  914. struct pool *add_pool(void)
  915. {
  916. struct pool *pool;
  917. pool = calloc(sizeof(struct pool), 1);
  918. if (!pool)
  919. quit(1, "Failed to malloc pool in add_pool");
  920. pool->pool_no = pool->prio = total_pools;
  921. mutex_init(&pool->last_work_lock);
  922. mutex_init(&pool->pool_lock);
  923. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  924. quit(1, "Failed to pthread_cond_init in add_pool");
  925. cglock_init(&pool->data_lock);
  926. mutex_init(&pool->stratum_lock);
  927. timer_unset(&pool->swork.tv_transparency);
  928. pool->swork.pool = pool;
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. pool->sock = INVSOCK;
  935. pool->lp_socket = CURL_SOCKET_BAD;
  936. if (opt_benchmark)
  937. {
  938. // Don't add to pools array, but immediately remove it
  939. remove_pool(pool);
  940. return pool;
  941. }
  942. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  943. pools[total_pools++] = pool;
  944. adjust_quota_gcd();
  945. return pool;
  946. }
  947. /* Pool variant of test and set */
  948. static bool pool_tset(struct pool *pool, bool *var)
  949. {
  950. bool ret;
  951. mutex_lock(&pool->pool_lock);
  952. ret = *var;
  953. *var = true;
  954. mutex_unlock(&pool->pool_lock);
  955. return ret;
  956. }
  957. bool pool_tclear(struct pool *pool, bool *var)
  958. {
  959. bool ret;
  960. mutex_lock(&pool->pool_lock);
  961. ret = *var;
  962. *var = false;
  963. mutex_unlock(&pool->pool_lock);
  964. return ret;
  965. }
  966. struct pool *current_pool(void)
  967. {
  968. struct pool *pool;
  969. cg_rlock(&control_lock);
  970. pool = currentpool;
  971. cg_runlock(&control_lock);
  972. return pool;
  973. }
  974. // Copied from ccan/opt/helpers.c
  975. static char *arg_bad(const char *fmt, const char *arg)
  976. {
  977. char *str = malloc(strlen(fmt) + strlen(arg));
  978. sprintf(str, fmt, arg);
  979. return str;
  980. }
  981. static
  982. char *opt_set_floatval(const char *arg, float *f)
  983. {
  984. char *endp;
  985. errno = 0;
  986. *f = strtof(arg, &endp);
  987. if (*endp || !arg[0])
  988. return arg_bad("'%s' is not a number", arg);
  989. if (errno)
  990. return arg_bad("'%s' is out of range", arg);
  991. return NULL;
  992. }
  993. static
  994. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  995. {
  996. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  997. }
  998. static
  999. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  1000. {
  1001. return opt_set_bool(b);
  1002. }
  1003. char *set_int_range(const char *arg, int *i, int min, int max)
  1004. {
  1005. char *err = opt_set_intval(arg, i);
  1006. if (err)
  1007. return err;
  1008. if (*i < min || *i > max)
  1009. return "Value out of range";
  1010. return NULL;
  1011. }
  1012. static char *set_int_0_to_9999(const char *arg, int *i)
  1013. {
  1014. return set_int_range(arg, i, 0, 9999);
  1015. }
  1016. static char *set_int_1_to_65535(const char *arg, int *i)
  1017. {
  1018. return set_int_range(arg, i, 1, 65535);
  1019. }
  1020. static char *set_int_0_to_10(const char *arg, int *i)
  1021. {
  1022. return set_int_range(arg, i, 0, 10);
  1023. }
  1024. static char *set_int_1_to_10(const char *arg, int *i)
  1025. {
  1026. return set_int_range(arg, i, 1, 10);
  1027. }
  1028. char *set_strdup(const char *arg, char **p)
  1029. {
  1030. *p = strdup((char *)arg);
  1031. return NULL;
  1032. }
  1033. #if BLKMAKER_VERSION > 1
  1034. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1035. {
  1036. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1037. if (!scriptsz)
  1038. return "Invalid address";
  1039. char *script = malloc(scriptsz);
  1040. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1041. free(script);
  1042. return "Failed to convert address to script";
  1043. }
  1044. p->data = script;
  1045. p->sz = scriptsz;
  1046. return NULL;
  1047. }
  1048. #endif
  1049. static
  1050. char *set_quit_summary(const char * const arg)
  1051. {
  1052. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1053. opt_quit_summary = BQS_NONE;
  1054. else
  1055. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1056. opt_quit_summary = BQS_DEVS;
  1057. else
  1058. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1059. opt_quit_summary = BQS_PROCS;
  1060. else
  1061. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1062. opt_quit_summary = BQS_DETAILED;
  1063. else
  1064. return "Quit summary must be one of none/devs/procs/detailed";
  1065. return NULL;
  1066. }
  1067. static void pdiff_target_leadzero(void *, double);
  1068. char *set_request_diff(const char *arg, float *p)
  1069. {
  1070. unsigned char target[32];
  1071. char *e = opt_set_floatval(arg, p);
  1072. if (e)
  1073. return e;
  1074. request_bdiff = (double)*p * 0.9999847412109375;
  1075. pdiff_target_leadzero(target, *p);
  1076. request_target_str = malloc(65);
  1077. bin2hex(request_target_str, target, 32);
  1078. return NULL;
  1079. }
  1080. #ifdef NEED_BFG_LOWL_VCOM
  1081. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1082. #ifdef WIN32
  1083. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1084. {
  1085. char dev[PATH_MAX];
  1086. char *devp = dev;
  1087. size_t bufLen = 0x100;
  1088. tryagain: ;
  1089. char buf[bufLen];
  1090. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1091. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1092. bufLen *= 2;
  1093. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1094. goto tryagain;
  1095. }
  1096. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1097. }
  1098. size_t tLen;
  1099. memcpy(devp, "\\\\.\\", 4);
  1100. devp = &devp[4];
  1101. for (char *t = buf; *t; t += tLen) {
  1102. tLen = strlen(t) + 1;
  1103. if (strncmp("COM", t, 3))
  1104. continue;
  1105. memcpy(devp, t, tLen);
  1106. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1107. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1108. }
  1109. }
  1110. #else
  1111. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1112. {
  1113. char dev[PATH_MAX];
  1114. char *devp = dev;
  1115. DIR *D;
  1116. struct dirent *de;
  1117. const char devdir[] = "/dev";
  1118. const size_t devdirlen = sizeof(devdir) - 1;
  1119. char *devpath = devp;
  1120. char *devfile = devpath + devdirlen + 1;
  1121. D = opendir(devdir);
  1122. if (!D)
  1123. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1124. memcpy(devpath, devdir, devdirlen);
  1125. devpath[devdirlen] = '/';
  1126. while ( (de = readdir(D)) ) {
  1127. if (!strncmp(de->d_name, "cu.", 3)
  1128. //don't probe Bluetooth devices - causes bus errors and segfaults
  1129. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1130. goto trydev;
  1131. if (strncmp(de->d_name, "tty", 3))
  1132. continue;
  1133. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1134. continue;
  1135. trydev:
  1136. strcpy(devfile, de->d_name);
  1137. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1138. }
  1139. closedir(D);
  1140. }
  1141. #endif
  1142. #endif
  1143. static char *add_serial(const char *arg)
  1144. {
  1145. string_elist_add(arg, &scan_devices);
  1146. return NULL;
  1147. }
  1148. static
  1149. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1150. {
  1151. string_elist_add(arg, elist);
  1152. return NULL;
  1153. }
  1154. bool get_intrange(const char *arg, int *val1, int *val2)
  1155. {
  1156. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1157. char *p, *p2;
  1158. *val1 = strtol(arg, &p, 0);
  1159. if (arg == p)
  1160. // Zero-length ending number, invalid
  1161. return false;
  1162. while (true)
  1163. {
  1164. if (!p[0])
  1165. {
  1166. *val2 = *val1;
  1167. return true;
  1168. }
  1169. if (p[0] == '-')
  1170. break;
  1171. if (!isspace(p[0]))
  1172. // Garbage, invalid
  1173. return false;
  1174. ++p;
  1175. }
  1176. p2 = &p[1];
  1177. *val2 = strtol(p2, &p, 0);
  1178. if (p2 == p)
  1179. // Zero-length ending number, invalid
  1180. return false;
  1181. while (true)
  1182. {
  1183. if (!p[0])
  1184. return true;
  1185. if (!isspace(p[0]))
  1186. // Garbage, invalid
  1187. return false;
  1188. ++p;
  1189. }
  1190. }
  1191. static
  1192. void _test_intrange(const char *s, const int v[2])
  1193. {
  1194. int a[2];
  1195. if (!get_intrange(s, &a[0], &a[1]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1197. for (int i = 0; i < 2; ++i)
  1198. if (unlikely(a[i] != v[i]))
  1199. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1200. }
  1201. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1202. static
  1203. void _test_intrange_fail(const char *s)
  1204. {
  1205. int a[2];
  1206. if (get_intrange(s, &a[0], &a[1]))
  1207. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1208. }
  1209. static
  1210. void test_intrange()
  1211. {
  1212. _test_intrange("-1--2", -1, -2);
  1213. _test_intrange("-1-2", -1, 2);
  1214. _test_intrange("1--2", 1, -2);
  1215. _test_intrange("1-2", 1, 2);
  1216. _test_intrange("111-222", 111, 222);
  1217. _test_intrange(" 11 - 22 ", 11, 22);
  1218. _test_intrange("+11-+22", 11, 22);
  1219. _test_intrange("-1", -1, -1);
  1220. _test_intrange_fail("all");
  1221. _test_intrange_fail("1-");
  1222. _test_intrange_fail("");
  1223. _test_intrange_fail("1-54x");
  1224. }
  1225. static char *set_devices(char *arg)
  1226. {
  1227. if (*arg) {
  1228. if (*arg == '?') {
  1229. opt_display_devs = true;
  1230. return NULL;
  1231. }
  1232. } else
  1233. return "Invalid device parameters";
  1234. string_elist_add(arg, &opt_devices_enabled_list);
  1235. return NULL;
  1236. }
  1237. static char *set_balance(enum pool_strategy *strategy)
  1238. {
  1239. *strategy = POOL_BALANCE;
  1240. return NULL;
  1241. }
  1242. static char *set_loadbalance(enum pool_strategy *strategy)
  1243. {
  1244. *strategy = POOL_LOADBALANCE;
  1245. return NULL;
  1246. }
  1247. static char *set_rotate(const char *arg, int *i)
  1248. {
  1249. pool_strategy = POOL_ROTATE;
  1250. return set_int_range(arg, i, 0, 9999);
  1251. }
  1252. static char *set_rr(enum pool_strategy *strategy)
  1253. {
  1254. *strategy = POOL_ROUNDROBIN;
  1255. return NULL;
  1256. }
  1257. /* Detect that url is for a stratum protocol either via the presence of
  1258. * stratum+tcp or by detecting a stratum server response */
  1259. bool detect_stratum(struct pool *pool, char *url)
  1260. {
  1261. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1262. return false;
  1263. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1264. pool->rpc_url = strdup(url);
  1265. pool->has_stratum = true;
  1266. pool->stratum_url = pool->sockaddr_url;
  1267. return true;
  1268. }
  1269. return false;
  1270. }
  1271. static struct pool *add_url(void)
  1272. {
  1273. total_urls++;
  1274. if (total_urls > total_pools)
  1275. add_pool();
  1276. return pools[total_urls - 1];
  1277. }
  1278. static void setup_url(struct pool *pool, char *arg)
  1279. {
  1280. if (detect_stratum(pool, arg))
  1281. return;
  1282. opt_set_charp(arg, &pool->rpc_url);
  1283. if (strncmp(arg, "http://", 7) &&
  1284. strncmp(arg, "https://", 8)) {
  1285. const size_t L = strlen(arg);
  1286. char *httpinput;
  1287. httpinput = malloc(8 + L);
  1288. if (!httpinput)
  1289. quit(1, "Failed to malloc httpinput");
  1290. sprintf(httpinput, "http://%s", arg);
  1291. pool->rpc_url = httpinput;
  1292. }
  1293. }
  1294. static char *set_url(char *arg)
  1295. {
  1296. struct pool *pool = add_url();
  1297. setup_url(pool, arg);
  1298. return NULL;
  1299. }
  1300. static char *set_quota(char *arg)
  1301. {
  1302. char *semicolon = strchr(arg, ';'), *url;
  1303. int len, qlen, quota;
  1304. struct pool *pool;
  1305. if (!semicolon)
  1306. return "No semicolon separated quota;URL pair found";
  1307. len = strlen(arg);
  1308. *semicolon = '\0';
  1309. qlen = strlen(arg);
  1310. if (!qlen)
  1311. return "No parameter for quota found";
  1312. len -= qlen + 1;
  1313. if (len < 1)
  1314. return "No parameter for URL found";
  1315. quota = atoi(arg);
  1316. if (quota < 0)
  1317. return "Invalid negative parameter for quota set";
  1318. url = arg + qlen + 1;
  1319. pool = add_url();
  1320. setup_url(pool, url);
  1321. pool->quota = quota;
  1322. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1323. adjust_quota_gcd();
  1324. return NULL;
  1325. }
  1326. static char *set_user(const char *arg)
  1327. {
  1328. struct pool *pool;
  1329. total_users++;
  1330. if (total_users > total_pools)
  1331. add_pool();
  1332. pool = pools[total_users - 1];
  1333. opt_set_charp(arg, &pool->rpc_user);
  1334. return NULL;
  1335. }
  1336. static char *set_pass(const char *arg)
  1337. {
  1338. struct pool *pool;
  1339. total_passes++;
  1340. if (total_passes > total_pools)
  1341. add_pool();
  1342. pool = pools[total_passes - 1];
  1343. opt_set_charp(arg, &pool->rpc_pass);
  1344. return NULL;
  1345. }
  1346. static char *set_userpass(const char *arg)
  1347. {
  1348. struct pool *pool;
  1349. char *updup;
  1350. if (total_users != total_passes)
  1351. return "User + pass options must be balanced before userpass";
  1352. ++total_users;
  1353. ++total_passes;
  1354. if (total_users > total_pools)
  1355. add_pool();
  1356. pool = pools[total_users - 1];
  1357. updup = strdup(arg);
  1358. opt_set_charp(arg, &pool->rpc_userpass);
  1359. pool->rpc_user = strtok(updup, ":");
  1360. if (!pool->rpc_user)
  1361. return "Failed to find : delimited user info";
  1362. pool->rpc_pass = strtok(NULL, ":");
  1363. if (!pool->rpc_pass)
  1364. pool->rpc_pass = "";
  1365. return NULL;
  1366. }
  1367. static char *set_pool_priority(const char *arg)
  1368. {
  1369. struct pool *pool;
  1370. if (!total_pools)
  1371. return "Usage of --pool-priority before pools are defined does not make sense";
  1372. pool = pools[total_pools - 1];
  1373. opt_set_intval(arg, &pool->prio);
  1374. return NULL;
  1375. }
  1376. static char *set_pool_proxy(const char *arg)
  1377. {
  1378. struct pool *pool;
  1379. if (!total_pools)
  1380. return "Usage of --pool-proxy before pools are defined does not make sense";
  1381. if (!our_curl_supports_proxy_uris())
  1382. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1383. pool = pools[total_pools - 1];
  1384. opt_set_charp(arg, &pool->rpc_proxy);
  1385. return NULL;
  1386. }
  1387. static char *set_pool_force_rollntime(const char *arg)
  1388. {
  1389. struct pool *pool;
  1390. if (!total_pools)
  1391. return "Usage of --force-rollntime before pools are defined does not make sense";
  1392. pool = pools[total_pools - 1];
  1393. opt_set_intval(arg, &pool->force_rollntime);
  1394. return NULL;
  1395. }
  1396. static char *enable_debug(bool *flag)
  1397. {
  1398. *flag = true;
  1399. opt_debug_console = true;
  1400. /* Turn on verbose output, too. */
  1401. opt_log_output = true;
  1402. return NULL;
  1403. }
  1404. static char *set_schedtime(const char *arg, struct schedtime *st)
  1405. {
  1406. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1407. {
  1408. if (strcasecmp(arg, "now"))
  1409. return "Invalid time set, should be HH:MM";
  1410. } else
  1411. schedstop.tm.tm_sec = 0;
  1412. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1413. return "Invalid time set.";
  1414. st->enable = true;
  1415. return NULL;
  1416. }
  1417. static
  1418. char *set_log_file(char *arg)
  1419. {
  1420. char *r = "";
  1421. long int i = strtol(arg, &r, 10);
  1422. int fd, stderr_fd = fileno(stderr);
  1423. if ((!*r) && i >= 0 && i <= INT_MAX)
  1424. fd = i;
  1425. else
  1426. if (!strcmp(arg, "-"))
  1427. {
  1428. fd = fileno(stdout);
  1429. if (unlikely(fd == -1))
  1430. return "Standard output missing for log-file";
  1431. }
  1432. else
  1433. {
  1434. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1435. if (unlikely(fd == -1))
  1436. return "Failed to open log-file";
  1437. }
  1438. close(stderr_fd);
  1439. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1440. return "Failed to dup2 for log-file";
  1441. close(fd);
  1442. return NULL;
  1443. }
  1444. static
  1445. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1446. {
  1447. char *r = "";
  1448. long int i = strtol(arg, &r, 10);
  1449. static char *err = NULL;
  1450. const size_t errbufsz = 0x100;
  1451. free(err);
  1452. err = NULL;
  1453. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1454. *F = fdopen((int)i, mode);
  1455. if (!*F)
  1456. {
  1457. err = malloc(errbufsz);
  1458. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1459. (int)i, purpose);
  1460. return err;
  1461. }
  1462. } else if (!strcmp(arg, "-")) {
  1463. *F = (mode[0] == 'a') ? stdout : stdin;
  1464. if (!*F)
  1465. {
  1466. err = malloc(errbufsz);
  1467. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1468. (mode[0] == 'a') ? "out" : "in", purpose);
  1469. return err;
  1470. }
  1471. } else {
  1472. *F = fopen(arg, mode);
  1473. if (!*F)
  1474. {
  1475. err = malloc(errbufsz);
  1476. snprintf(err, errbufsz, "Failed to open %s for %s",
  1477. arg, purpose);
  1478. return err;
  1479. }
  1480. }
  1481. return NULL;
  1482. }
  1483. static char *set_noncelog(char *arg)
  1484. {
  1485. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1486. }
  1487. static char *set_sharelog(char *arg)
  1488. {
  1489. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1490. }
  1491. static
  1492. void _add_set_device_option(const char * const func, const char * const buf)
  1493. {
  1494. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1495. string_elist_add(buf, &opt_set_device_list);
  1496. }
  1497. #define add_set_device_option(...) do{ \
  1498. char _tmp1718[0x100]; \
  1499. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1500. _add_set_device_option(__func__, _tmp1718); \
  1501. }while(0)
  1502. char *set_temp_cutoff(char *arg)
  1503. {
  1504. if (strchr(arg, ','))
  1505. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1506. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1507. add_set_device_option("all:temp-cutoff=%s", arg);
  1508. return NULL;
  1509. }
  1510. char *set_temp_target(char *arg)
  1511. {
  1512. if (strchr(arg, ','))
  1513. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1514. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1515. add_set_device_option("all:temp-target=%s", arg);
  1516. return NULL;
  1517. }
  1518. #ifdef HAVE_OPENCL
  1519. static
  1520. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1521. {
  1522. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1523. add_set_device_option("OCL:binary=no");
  1524. return NULL;
  1525. }
  1526. #endif
  1527. static
  1528. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1529. {
  1530. opt_disable_client_reconnect = true;
  1531. want_stratum = false;
  1532. return NULL;
  1533. }
  1534. static char *set_api_allow(const char *arg)
  1535. {
  1536. opt_set_charp(arg, &opt_api_allow);
  1537. return NULL;
  1538. }
  1539. static char *set_api_groups(const char *arg)
  1540. {
  1541. opt_set_charp(arg, &opt_api_groups);
  1542. return NULL;
  1543. }
  1544. static char *set_api_description(const char *arg)
  1545. {
  1546. opt_set_charp(arg, &opt_api_description);
  1547. return NULL;
  1548. }
  1549. static char *set_api_mcast_des(const char *arg)
  1550. {
  1551. opt_set_charp(arg, &opt_api_mcast_des);
  1552. return NULL;
  1553. }
  1554. #ifdef USE_ICARUS
  1555. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1556. static char *set_icarus_options(const char *arg)
  1557. {
  1558. if (strchr(arg, ','))
  1559. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1560. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1561. char *opts = strdup(arg), *argdup;
  1562. argdup = opts;
  1563. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1564. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1565. char *saveptr, *opt;
  1566. for (int i = 0; i < 4; ++i, ++sdf)
  1567. {
  1568. opt = strtok_r(opts, ":", &saveptr);
  1569. opts = NULL;
  1570. if (!opt)
  1571. break;
  1572. if (!opt[0])
  1573. continue;
  1574. for (int j = 0; j < 4; ++j)
  1575. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1576. }
  1577. free(argdup);
  1578. return NULL;
  1579. }
  1580. static char *set_icarus_timing(const char *arg)
  1581. {
  1582. if (strchr(arg, ','))
  1583. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1584. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1585. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1586. for (int j = 0; j < 4; ++j)
  1587. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1588. return NULL;
  1589. }
  1590. #endif
  1591. #ifdef USE_AVALON
  1592. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1593. static char *set_avalon_options(const char *arg)
  1594. {
  1595. if (strchr(arg, ','))
  1596. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1597. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1598. char *opts = strdup(arg), *argdup;
  1599. argdup = opts;
  1600. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1601. char *saveptr, *opt;
  1602. for (int i = 0; i < 5; ++i, ++sdf)
  1603. {
  1604. opt = strtok_r(opts, ":", &saveptr);
  1605. opts = NULL;
  1606. if (!opt)
  1607. break;
  1608. if (!opt[0])
  1609. continue;
  1610. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1611. }
  1612. free(argdup);
  1613. return NULL;
  1614. }
  1615. #endif
  1616. #ifdef USE_KLONDIKE
  1617. static char *set_klondike_options(const char *arg)
  1618. {
  1619. int hashclock;
  1620. double temptarget;
  1621. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1622. {
  1623. default:
  1624. return "Unrecognised --klondike-options";
  1625. case 2:
  1626. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1627. // fallthru
  1628. case 1:
  1629. add_set_device_option("klondike:clock=%d", hashclock);
  1630. }
  1631. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1632. return NULL;
  1633. }
  1634. #endif
  1635. __maybe_unused
  1636. static char *set_null(const char __maybe_unused *arg)
  1637. {
  1638. return NULL;
  1639. }
  1640. /* These options are available from config file or commandline */
  1641. static struct opt_table opt_config_table[] = {
  1642. #ifdef WANT_CPUMINE
  1643. OPT_WITH_ARG("--algo",
  1644. set_algo, show_algo, &opt_algo,
  1645. "Specify sha256 implementation for CPU mining:\n"
  1646. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1647. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1648. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1649. #ifdef WANT_SSE2_4WAY
  1650. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1651. #endif
  1652. #ifdef WANT_VIA_PADLOCK
  1653. "\n\tvia\t\tVIA padlock implementation"
  1654. #endif
  1655. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1656. #ifdef WANT_CRYPTOPP_ASM32
  1657. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1658. #endif
  1659. #ifdef WANT_X8632_SSE2
  1660. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1661. #endif
  1662. #ifdef WANT_X8664_SSE2
  1663. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1664. #endif
  1665. #ifdef WANT_X8664_SSE4
  1666. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1667. #endif
  1668. #ifdef WANT_ALTIVEC_4WAY
  1669. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1670. #endif
  1671. ),
  1672. OPT_WITH_ARG("-a",
  1673. set_algo, show_algo, &opt_algo,
  1674. opt_hidden),
  1675. #endif
  1676. OPT_WITH_ARG("--api-allow",
  1677. set_api_allow, NULL, NULL,
  1678. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1679. OPT_WITH_ARG("--api-description",
  1680. set_api_description, NULL, NULL,
  1681. "Description placed in the API status header, default: BFGMiner version"),
  1682. OPT_WITH_ARG("--api-groups",
  1683. set_api_groups, NULL, NULL,
  1684. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1685. OPT_WITHOUT_ARG("--api-listen",
  1686. opt_set_bool, &opt_api_listen,
  1687. "Enable API, default: disabled"),
  1688. OPT_WITHOUT_ARG("--api-mcast",
  1689. opt_set_bool, &opt_api_mcast,
  1690. "Enable API Multicast listener, default: disabled"),
  1691. OPT_WITH_ARG("--api-mcast-addr",
  1692. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1693. "API Multicast listen address"),
  1694. OPT_WITH_ARG("--api-mcast-code",
  1695. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1696. "Code expected in the API Multicast message, don't use '-'"),
  1697. OPT_WITH_ARG("--api-mcast-des",
  1698. set_api_mcast_des, NULL, NULL,
  1699. "Description appended to the API Multicast reply, default: ''"),
  1700. OPT_WITH_ARG("--api-mcast-port",
  1701. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1702. "API Multicast listen port"),
  1703. OPT_WITHOUT_ARG("--api-network",
  1704. opt_set_bool, &opt_api_network,
  1705. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1706. OPT_WITH_ARG("--api-port",
  1707. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1708. "Port number of miner API"),
  1709. #ifdef HAVE_ADL
  1710. OPT_WITHOUT_ARG("--auto-fan",
  1711. opt_set_bool, &opt_autofan,
  1712. opt_hidden),
  1713. OPT_WITHOUT_ARG("--auto-gpu",
  1714. opt_set_bool, &opt_autoengine,
  1715. opt_hidden),
  1716. #endif
  1717. OPT_WITHOUT_ARG("--balance",
  1718. set_balance, &pool_strategy,
  1719. "Change multipool strategy from failover to even share balance"),
  1720. OPT_WITHOUT_ARG("--benchmark",
  1721. opt_set_bool, &opt_benchmark,
  1722. "Run BFGMiner in benchmark mode - produces no shares"),
  1723. #if defined(USE_BITFORCE)
  1724. OPT_WITHOUT_ARG("--bfl-range",
  1725. opt_set_bool, &opt_bfl_noncerange,
  1726. "Use nonce range on bitforce devices if supported"),
  1727. #endif
  1728. #ifdef HAVE_CHROOT
  1729. OPT_WITH_ARG("--chroot-dir",
  1730. opt_set_charp, NULL, &chroot_dir,
  1731. "Chroot to a directory right after startup"),
  1732. #endif
  1733. OPT_WITH_ARG("--cmd-idle",
  1734. opt_set_charp, NULL, &cmd_idle,
  1735. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1736. OPT_WITH_ARG("--cmd-sick",
  1737. opt_set_charp, NULL, &cmd_sick,
  1738. "Execute a command when a device is declared sick"),
  1739. OPT_WITH_ARG("--cmd-dead",
  1740. opt_set_charp, NULL, &cmd_dead,
  1741. "Execute a command when a device is declared dead"),
  1742. #if BLKMAKER_VERSION > 1
  1743. OPT_WITH_ARG("--coinbase-addr",
  1744. set_b58addr, NULL, &opt_coinbase_script,
  1745. "Set coinbase payout address for solo mining"),
  1746. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1747. set_b58addr, NULL, &opt_coinbase_script,
  1748. opt_hidden),
  1749. #endif
  1750. #if BLKMAKER_VERSION > 0
  1751. OPT_WITH_ARG("--coinbase-sig",
  1752. set_strdup, NULL, &opt_coinbase_sig,
  1753. "Set coinbase signature when possible"),
  1754. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1755. set_strdup, NULL, &opt_coinbase_sig,
  1756. opt_hidden),
  1757. #endif
  1758. #ifdef HAVE_CURSES
  1759. OPT_WITHOUT_ARG("--compact",
  1760. opt_set_bool, &opt_compact,
  1761. "Use compact display without per device statistics"),
  1762. #endif
  1763. #ifdef WANT_CPUMINE
  1764. OPT_WITH_ARG("--cpu-threads",
  1765. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1766. "Number of miner CPU threads"),
  1767. OPT_WITH_ARG("-t",
  1768. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1769. opt_hidden),
  1770. #endif
  1771. OPT_WITHOUT_ARG("--debug|-D",
  1772. enable_debug, &opt_debug,
  1773. "Enable debug output"),
  1774. OPT_WITHOUT_ARG("--debuglog",
  1775. opt_set_bool, &opt_debug,
  1776. "Enable debug logging"),
  1777. OPT_WITHOUT_ARG("--device-protocol-dump",
  1778. opt_set_bool, &opt_dev_protocol,
  1779. "Verbose dump of device protocol-level activities"),
  1780. OPT_WITH_ARG("--device|-d",
  1781. set_devices, NULL, NULL,
  1782. "Enable only devices matching pattern (default: all)"),
  1783. OPT_WITHOUT_ARG("--disable-rejecting",
  1784. opt_set_bool, &opt_disable_pool,
  1785. "Automatically disable pools that continually reject shares"),
  1786. #ifdef USE_LIBMICROHTTPD
  1787. OPT_WITH_ARG("--http-port",
  1788. opt_set_intval, opt_show_intval, &httpsrv_port,
  1789. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1790. #endif
  1791. OPT_WITH_ARG("--expiry",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1793. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1794. OPT_WITH_ARG("-E",
  1795. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1796. opt_hidden),
  1797. OPT_WITH_ARG("--expiry-lp",
  1798. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1799. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1800. OPT_WITHOUT_ARG("--failover-only",
  1801. opt_set_bool, &opt_fail_only,
  1802. "Don't leak work to backup pools when primary pool is lagging"),
  1803. OPT_WITH_ARG("--failover-switch-delay",
  1804. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1805. "Delay in seconds before switching back to a failed pool"),
  1806. #ifdef USE_FPGA
  1807. OPT_WITHOUT_ARG("--force-dev-init",
  1808. opt_set_bool, &opt_force_dev_init,
  1809. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1810. #endif
  1811. #ifdef HAVE_OPENCL
  1812. OPT_WITH_ARG("--gpu-dyninterval",
  1813. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1814. opt_hidden),
  1815. OPT_WITH_ARG("--gpu-platform",
  1816. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1817. "Select OpenCL platform ID to use for GPU mining"),
  1818. OPT_WITH_ARG("--gpu-threads|-g",
  1819. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1820. opt_hidden),
  1821. #ifdef HAVE_ADL
  1822. OPT_WITH_ARG("--gpu-engine",
  1823. set_gpu_engine, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITH_ARG("--gpu-fan",
  1826. set_gpu_fan, NULL, NULL,
  1827. opt_hidden),
  1828. OPT_WITH_ARG("--gpu-map",
  1829. set_gpu_map, NULL, NULL,
  1830. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1831. OPT_WITH_ARG("--gpu-memclock",
  1832. set_gpu_memclock, NULL, NULL,
  1833. opt_hidden),
  1834. OPT_WITH_ARG("--gpu-memdiff",
  1835. set_gpu_memdiff, NULL, NULL,
  1836. opt_hidden),
  1837. OPT_WITH_ARG("--gpu-powertune",
  1838. set_gpu_powertune, NULL, NULL,
  1839. opt_hidden),
  1840. OPT_WITHOUT_ARG("--gpu-reorder",
  1841. opt_set_bool, &opt_reorder,
  1842. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1843. OPT_WITH_ARG("--gpu-vddc",
  1844. set_gpu_vddc, NULL, NULL,
  1845. opt_hidden),
  1846. #endif
  1847. #ifdef USE_SCRYPT
  1848. OPT_WITH_ARG("--lookup-gap",
  1849. set_lookup_gap, NULL, NULL,
  1850. opt_hidden),
  1851. #endif
  1852. OPT_WITH_ARG("--intensity|-I",
  1853. set_intensity, NULL, NULL,
  1854. opt_hidden),
  1855. #endif
  1856. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1857. OPT_WITH_ARG("--kernel-path",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. "Specify a path to where bitstream and kernel files are"),
  1860. OPT_WITH_ARG("-K",
  1861. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1862. opt_hidden),
  1863. #endif
  1864. #ifdef HAVE_OPENCL
  1865. OPT_WITH_ARG("--kernel|-k",
  1866. set_kernel, NULL, NULL,
  1867. opt_hidden),
  1868. #endif
  1869. #ifdef USE_ICARUS
  1870. OPT_WITH_ARG("--icarus-options",
  1871. set_icarus_options, NULL, NULL,
  1872. opt_hidden),
  1873. OPT_WITH_ARG("--icarus-timing",
  1874. set_icarus_timing, NULL, NULL,
  1875. opt_hidden),
  1876. #endif
  1877. #ifdef USE_AVALON
  1878. OPT_WITH_ARG("--avalon-options",
  1879. set_avalon_options, NULL, NULL,
  1880. opt_hidden),
  1881. #endif
  1882. #ifdef USE_KLONDIKE
  1883. OPT_WITH_ARG("--klondike-options",
  1884. set_klondike_options, NULL, NULL,
  1885. "Set klondike options clock:temptarget"),
  1886. #endif
  1887. OPT_WITHOUT_ARG("--load-balance",
  1888. set_loadbalance, &pool_strategy,
  1889. "Change multipool strategy from failover to quota based balance"),
  1890. OPT_WITH_ARG("--log|-l",
  1891. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1892. "Interval in seconds between log output"),
  1893. OPT_WITH_ARG("--log-file|-L",
  1894. set_log_file, NULL, NULL,
  1895. "Append log file for output messages"),
  1896. OPT_WITH_ARG("--logfile",
  1897. set_log_file, NULL, NULL,
  1898. opt_hidden),
  1899. OPT_WITHOUT_ARG("--log-microseconds",
  1900. opt_set_bool, &opt_log_microseconds,
  1901. "Include microseconds in log output"),
  1902. #if defined(unix) || defined(__APPLE__)
  1903. OPT_WITH_ARG("--monitor|-m",
  1904. opt_set_charp, NULL, &opt_stderr_cmd,
  1905. "Use custom pipe cmd for output messages"),
  1906. #endif // defined(unix)
  1907. OPT_WITHOUT_ARG("--net-delay",
  1908. opt_set_bool, &opt_delaynet,
  1909. "Impose small delays in networking to avoid overloading slow routers"),
  1910. OPT_WITHOUT_ARG("--no-adl",
  1911. opt_set_bool, &opt_noadl,
  1912. #ifdef HAVE_ADL
  1913. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1914. #else
  1915. opt_hidden
  1916. #endif
  1917. ),
  1918. OPT_WITHOUT_ARG("--no-gbt",
  1919. opt_set_invbool, &want_gbt,
  1920. "Disable getblocktemplate support"),
  1921. OPT_WITHOUT_ARG("--no-getwork",
  1922. opt_set_invbool, &want_getwork,
  1923. "Disable getwork support"),
  1924. OPT_WITHOUT_ARG("--no-hotplug",
  1925. #ifdef HAVE_BFG_HOTPLUG
  1926. opt_set_invbool, &opt_hotplug,
  1927. "Disable hotplug detection"
  1928. #else
  1929. set_null, &opt_hotplug,
  1930. opt_hidden
  1931. #endif
  1932. ),
  1933. OPT_WITHOUT_ARG("--no-longpoll",
  1934. opt_set_invbool, &want_longpoll,
  1935. "Disable X-Long-Polling support"),
  1936. OPT_WITHOUT_ARG("--no-pool-disable",
  1937. opt_set_invbool, &opt_disable_pool,
  1938. opt_hidden),
  1939. OPT_WITHOUT_ARG("--no-client-reconnect",
  1940. opt_set_invbool, &opt_disable_client_reconnect,
  1941. opt_hidden),
  1942. OPT_WITHOUT_ARG("--no-pool-redirect",
  1943. disable_pool_redirect, NULL,
  1944. "Ignore pool requests to redirect to another server"),
  1945. OPT_WITHOUT_ARG("--no-restart",
  1946. opt_set_invbool, &opt_restart,
  1947. "Do not attempt to restart devices that hang"
  1948. ),
  1949. OPT_WITHOUT_ARG("--no-show-processors",
  1950. opt_set_invbool, &opt_show_procs,
  1951. opt_hidden),
  1952. OPT_WITHOUT_ARG("--no-show-procs",
  1953. opt_set_invbool, &opt_show_procs,
  1954. opt_hidden),
  1955. OPT_WITHOUT_ARG("--no-stratum",
  1956. opt_set_invbool, &want_stratum,
  1957. "Disable Stratum detection"),
  1958. OPT_WITHOUT_ARG("--no-submit-stale",
  1959. opt_set_invbool, &opt_submit_stale,
  1960. "Don't submit shares if they are detected as stale"),
  1961. #ifdef HAVE_OPENCL
  1962. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1963. set_no_opencl_binaries, NULL,
  1964. opt_hidden),
  1965. #endif
  1966. OPT_WITHOUT_ARG("--no-unicode",
  1967. #ifdef USE_UNICODE
  1968. opt_set_invbool, &use_unicode,
  1969. "Don't use Unicode characters in TUI"
  1970. #else
  1971. set_null, &use_unicode,
  1972. opt_hidden
  1973. #endif
  1974. ),
  1975. OPT_WITH_ARG("--noncelog",
  1976. set_noncelog, NULL, NULL,
  1977. "Create log of all nonces found"),
  1978. OPT_WITH_ARG("--pass|-p",
  1979. set_pass, NULL, NULL,
  1980. "Password for bitcoin JSON-RPC server"),
  1981. OPT_WITHOUT_ARG("--per-device-stats",
  1982. opt_set_bool, &want_per_device_stats,
  1983. "Force verbose mode and output per-device statistics"),
  1984. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1985. set_userpass, NULL, NULL,
  1986. opt_hidden),
  1987. OPT_WITH_ARG("--pool-priority",
  1988. set_pool_priority, NULL, NULL,
  1989. "Priority for just the previous-defined pool"),
  1990. OPT_WITH_ARG("--pool-proxy|-x",
  1991. set_pool_proxy, NULL, NULL,
  1992. "Proxy URI to use for connecting to just the previous-defined pool"),
  1993. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1994. set_pool_force_rollntime, NULL, NULL,
  1995. opt_hidden),
  1996. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1997. opt_set_bool, &opt_protocol,
  1998. "Verbose dump of protocol-level activities"),
  1999. OPT_WITH_ARG("--queue|-Q",
  2000. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2001. "Minimum number of work items to have queued (0+)"),
  2002. OPT_WITHOUT_ARG("--quiet|-q",
  2003. opt_set_bool, &opt_quiet,
  2004. "Disable logging output, display status and errors"),
  2005. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2006. opt_set_bool, &opt_quiet_work_updates,
  2007. opt_hidden),
  2008. OPT_WITH_ARG("--quit-summary",
  2009. set_quit_summary, NULL, NULL,
  2010. "Summary printed when you quit: none/devs/procs/detailed"),
  2011. OPT_WITH_ARG("--quota|-U",
  2012. set_quota, NULL, NULL,
  2013. "quota;URL combination for server with load-balance strategy quotas"),
  2014. OPT_WITHOUT_ARG("--real-quiet",
  2015. opt_set_bool, &opt_realquiet,
  2016. "Disable all output"),
  2017. OPT_WITH_ARG("--request-diff",
  2018. set_request_diff, opt_show_floatval, &request_pdiff,
  2019. "Request a specific difficulty from pools"),
  2020. OPT_WITH_ARG("--retries",
  2021. opt_set_intval, opt_show_intval, &opt_retries,
  2022. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2023. OPT_WITH_ARG("--retry-pause",
  2024. set_null, NULL, NULL,
  2025. opt_hidden),
  2026. OPT_WITH_ARG("--rotate",
  2027. set_rotate, opt_show_intval, &opt_rotate_period,
  2028. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2029. OPT_WITHOUT_ARG("--round-robin",
  2030. set_rr, &pool_strategy,
  2031. "Change multipool strategy from failover to round robin on failure"),
  2032. OPT_WITH_ARG("--scan|-S",
  2033. add_serial, NULL, NULL,
  2034. "Configure how to scan for mining devices"),
  2035. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2036. add_serial, NULL, NULL,
  2037. opt_hidden),
  2038. OPT_WITH_ARG("--scan-time",
  2039. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2040. "Upper bound on time spent scanning current work, in seconds"),
  2041. OPT_WITH_ARG("-s",
  2042. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2043. opt_hidden),
  2044. OPT_WITH_ARG("--scantime",
  2045. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2046. opt_hidden),
  2047. OPT_WITH_ARG("--sched-start",
  2048. set_schedtime, NULL, &schedstart,
  2049. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2050. OPT_WITH_ARG("--sched-stop",
  2051. set_schedtime, NULL, &schedstop,
  2052. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2053. #ifdef USE_SCRYPT
  2054. OPT_WITHOUT_ARG("--scrypt",
  2055. opt_set_bool, &opt_scrypt,
  2056. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2057. #endif
  2058. OPT_WITH_ARG("--set-device|--set",
  2059. opt_string_elist_add, NULL, &opt_set_device_list,
  2060. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2061. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2062. OPT_WITH_ARG("--shaders",
  2063. set_shaders, NULL, NULL,
  2064. opt_hidden),
  2065. #endif
  2066. #ifdef HAVE_PWD_H
  2067. OPT_WITH_ARG("--setuid",
  2068. opt_set_charp, NULL, &opt_setuid,
  2069. "Username of an unprivileged user to run as"),
  2070. #endif
  2071. OPT_WITH_ARG("--sharelog",
  2072. set_sharelog, NULL, NULL,
  2073. "Append share log to file"),
  2074. OPT_WITH_ARG("--shares",
  2075. opt_set_floatval, NULL, &opt_shares,
  2076. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2077. OPT_WITHOUT_ARG("--show-processors",
  2078. opt_set_bool, &opt_show_procs,
  2079. "Show per processor statistics in summary"),
  2080. OPT_WITHOUT_ARG("--show-procs",
  2081. opt_set_bool, &opt_show_procs,
  2082. opt_hidden),
  2083. OPT_WITH_ARG("--skip-security-checks",
  2084. set_int_0_to_9999, NULL, &opt_skip_checks,
  2085. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2086. OPT_WITH_ARG("--socks-proxy",
  2087. opt_set_charp, NULL, &opt_socks_proxy,
  2088. "Set socks proxy (host:port)"),
  2089. #ifdef USE_LIBEVENT
  2090. OPT_WITH_ARG("--stratum-port",
  2091. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2092. "Port number to listen on for stratum miners (-1 means disabled)"),
  2093. #endif
  2094. OPT_WITHOUT_ARG("--submit-stale",
  2095. opt_set_bool, &opt_submit_stale,
  2096. opt_hidden),
  2097. OPT_WITH_ARG("--submit-threads",
  2098. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2099. "Minimum number of concurrent share submissions (default: 64)"),
  2100. #ifdef HAVE_SYSLOG_H
  2101. OPT_WITHOUT_ARG("--syslog",
  2102. opt_set_bool, &use_syslog,
  2103. "Use system log for output messages (default: standard error)"),
  2104. #endif
  2105. OPT_WITH_ARG("--temp-cutoff",
  2106. set_temp_cutoff, NULL, &opt_cutofftemp,
  2107. opt_hidden),
  2108. OPT_WITH_ARG("--temp-hysteresis",
  2109. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2110. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2111. #ifdef HAVE_ADL
  2112. OPT_WITH_ARG("--temp-overheat",
  2113. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2114. opt_hidden),
  2115. #endif
  2116. OPT_WITH_ARG("--temp-target",
  2117. set_temp_target, NULL, NULL,
  2118. opt_hidden),
  2119. OPT_WITHOUT_ARG("--text-only|-T",
  2120. opt_set_invbool, &use_curses,
  2121. #ifdef HAVE_CURSES
  2122. "Disable ncurses formatted screen output"
  2123. #else
  2124. opt_hidden
  2125. #endif
  2126. ),
  2127. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2128. OPT_WITH_ARG("--thread-concurrency",
  2129. set_thread_concurrency, NULL, NULL,
  2130. opt_hidden),
  2131. #endif
  2132. #ifdef USE_UNICODE
  2133. OPT_WITHOUT_ARG("--unicode",
  2134. opt_set_bool, &use_unicode,
  2135. "Use Unicode characters in TUI"),
  2136. #endif
  2137. OPT_WITH_ARG("--url|-o",
  2138. set_url, NULL, NULL,
  2139. "URL for bitcoin JSON-RPC server"),
  2140. OPT_WITH_ARG("--user|-u",
  2141. set_user, NULL, NULL,
  2142. "Username for bitcoin JSON-RPC server"),
  2143. #ifdef HAVE_OPENCL
  2144. OPT_WITH_ARG("--vectors|-v",
  2145. set_vector, NULL, NULL,
  2146. opt_hidden),
  2147. #endif
  2148. OPT_WITHOUT_ARG("--verbose",
  2149. opt_set_bool, &opt_log_output,
  2150. "Log verbose output to stderr as well as status output"),
  2151. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2152. opt_set_invbool, &opt_quiet_work_updates,
  2153. opt_hidden),
  2154. OPT_WITHOUT_ARG("--weighed-stats",
  2155. opt_set_bool, &opt_weighed_stats,
  2156. "Display statistics weighed to difficulty 1"),
  2157. #ifdef HAVE_OPENCL
  2158. OPT_WITH_ARG("--worksize|-w",
  2159. set_worksize, NULL, NULL,
  2160. opt_hidden),
  2161. #endif
  2162. OPT_WITHOUT_ARG("--unittest",
  2163. opt_set_bool, &opt_unittest, opt_hidden),
  2164. OPT_WITH_ARG("--userpass|-O",
  2165. set_userpass, NULL, NULL,
  2166. "Username:Password pair for bitcoin JSON-RPC server"),
  2167. OPT_WITHOUT_ARG("--worktime",
  2168. opt_set_bool, &opt_worktime,
  2169. "Display extra work time debug information"),
  2170. OPT_WITH_ARG("--pools",
  2171. opt_set_bool, NULL, NULL, opt_hidden),
  2172. OPT_ENDTABLE
  2173. };
  2174. static char *load_config(const char *arg, void __maybe_unused *unused);
  2175. static int fileconf_load;
  2176. static char *parse_config(json_t *config, bool fileconf)
  2177. {
  2178. static char err_buf[200];
  2179. struct opt_table *opt;
  2180. json_t *val;
  2181. if (fileconf && !fileconf_load)
  2182. fileconf_load = 1;
  2183. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2184. char *p, *name, *sp;
  2185. /* We don't handle subtables. */
  2186. assert(!(opt->type & OPT_SUBTABLE));
  2187. if (!opt->names)
  2188. continue;
  2189. /* Pull apart the option name(s). */
  2190. name = strdup(opt->names);
  2191. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2192. char *err = "Invalid value";
  2193. /* Ignore short options. */
  2194. if (p[1] != '-')
  2195. continue;
  2196. val = json_object_get(config, p+2);
  2197. if (!val)
  2198. continue;
  2199. if (opt->type & OPT_HASARG) {
  2200. if (json_is_string(val)) {
  2201. err = opt->cb_arg(json_string_value(val),
  2202. opt->u.arg);
  2203. } else if (json_is_number(val)) {
  2204. char buf[256], *p, *q;
  2205. snprintf(buf, 256, "%f", json_number_value(val));
  2206. if ( (p = strchr(buf, '.')) ) {
  2207. // Trim /\.0*$/ to work properly with integer-only arguments
  2208. q = p;
  2209. while (*(++q) == '0') {}
  2210. if (*q == '\0')
  2211. *p = '\0';
  2212. }
  2213. err = opt->cb_arg(buf, opt->u.arg);
  2214. } else if (json_is_array(val)) {
  2215. int n, size = json_array_size(val);
  2216. err = NULL;
  2217. for (n = 0; n < size && !err; n++) {
  2218. if (json_is_string(json_array_get(val, n)))
  2219. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2220. else if (json_is_object(json_array_get(val, n)))
  2221. err = parse_config(json_array_get(val, n), false);
  2222. }
  2223. }
  2224. } else if (opt->type & OPT_NOARG) {
  2225. if (json_is_true(val))
  2226. err = opt->cb(opt->u.arg);
  2227. else if (json_is_boolean(val)) {
  2228. if (opt->cb == (void*)opt_set_bool)
  2229. err = opt_set_invbool(opt->u.arg);
  2230. else if (opt->cb == (void*)opt_set_invbool)
  2231. err = opt_set_bool(opt->u.arg);
  2232. }
  2233. }
  2234. if (err) {
  2235. /* Allow invalid values to be in configuration
  2236. * file, just skipping over them provided the
  2237. * JSON is still valid after that. */
  2238. if (fileconf) {
  2239. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2240. fileconf_load = -1;
  2241. } else {
  2242. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2243. p, err);
  2244. return err_buf;
  2245. }
  2246. }
  2247. }
  2248. free(name);
  2249. }
  2250. val = json_object_get(config, JSON_INCLUDE_CONF);
  2251. if (val && json_is_string(val))
  2252. return load_config(json_string_value(val), NULL);
  2253. return NULL;
  2254. }
  2255. char *cnfbuf = NULL;
  2256. static char *load_config(const char *arg, void __maybe_unused *unused)
  2257. {
  2258. json_error_t err;
  2259. json_t *config;
  2260. char *json_error;
  2261. size_t siz;
  2262. if (!cnfbuf)
  2263. cnfbuf = strdup(arg);
  2264. if (++include_count > JSON_MAX_DEPTH)
  2265. return JSON_MAX_DEPTH_ERR;
  2266. #if JANSSON_MAJOR_VERSION > 1
  2267. config = json_load_file(arg, 0, &err);
  2268. #else
  2269. config = json_load_file(arg, &err);
  2270. #endif
  2271. if (!json_is_object(config)) {
  2272. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2273. json_error = malloc(siz);
  2274. if (!json_error)
  2275. quit(1, "Malloc failure in json error");
  2276. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2277. return json_error;
  2278. }
  2279. config_loaded = true;
  2280. /* Parse the config now, so we can override it. That can keep pointers
  2281. * so don't free config object. */
  2282. return parse_config(config, true);
  2283. }
  2284. static void load_default_config(void)
  2285. {
  2286. cnfbuf = malloc(PATH_MAX);
  2287. #if defined(unix)
  2288. if (getenv("HOME") && *getenv("HOME")) {
  2289. strcpy(cnfbuf, getenv("HOME"));
  2290. strcat(cnfbuf, "/");
  2291. } else
  2292. strcpy(cnfbuf, "");
  2293. char *dirp = cnfbuf + strlen(cnfbuf);
  2294. strcpy(dirp, ".bfgminer/");
  2295. strcat(dirp, def_conf);
  2296. if (access(cnfbuf, R_OK))
  2297. // No BFGMiner config, try Cgminer's...
  2298. strcpy(dirp, ".cgminer/cgminer.conf");
  2299. #else
  2300. strcpy(cnfbuf, "");
  2301. strcat(cnfbuf, def_conf);
  2302. #endif
  2303. if (!access(cnfbuf, R_OK))
  2304. load_config(cnfbuf, NULL);
  2305. else {
  2306. free(cnfbuf);
  2307. cnfbuf = NULL;
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are parsed before anything else */
  2323. static struct opt_table opt_early_table[] = {
  2324. OPT_EARLY_WITH_ARG("--config|-c",
  2325. set_bool_ignore_arg, NULL, &config_loaded,
  2326. opt_hidden),
  2327. OPT_EARLY_WITHOUT_ARG("--no-config",
  2328. opt_set_bool, &config_loaded,
  2329. "Inhibit loading default config file"),
  2330. OPT_ENDTABLE
  2331. };
  2332. /* These options are available from commandline only */
  2333. static struct opt_table opt_cmdline_table[] = {
  2334. OPT_WITH_ARG("--config|-c",
  2335. load_config, NULL, NULL,
  2336. "Load a JSON-format configuration file\n"
  2337. "See example.conf for an example configuration."),
  2338. OPT_EARLY_WITHOUT_ARG("--no-config",
  2339. opt_set_bool, &config_loaded,
  2340. "Inhibit loading default config file"),
  2341. OPT_WITHOUT_ARG("--help|-h",
  2342. opt_verusage_and_exit, NULL,
  2343. "Print this message"),
  2344. #ifdef HAVE_OPENCL
  2345. OPT_WITHOUT_ARG("--ndevs|-n",
  2346. print_ndevs_and_exit, &nDevs,
  2347. opt_hidden),
  2348. #endif
  2349. OPT_WITHOUT_ARG("--version|-V",
  2350. opt_version_and_exit, packagename,
  2351. "Display version and exit"),
  2352. OPT_ENDTABLE
  2353. };
  2354. static bool jobj_binary(const json_t *obj, const char *key,
  2355. void *buf, size_t buflen, bool required)
  2356. {
  2357. const char *hexstr;
  2358. json_t *tmp;
  2359. tmp = json_object_get(obj, key);
  2360. if (unlikely(!tmp)) {
  2361. if (unlikely(required))
  2362. applog(LOG_ERR, "JSON key '%s' not found", key);
  2363. return false;
  2364. }
  2365. hexstr = json_string_value(tmp);
  2366. if (unlikely(!hexstr)) {
  2367. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2368. return false;
  2369. }
  2370. if (!hex2bin(buf, hexstr, buflen))
  2371. return false;
  2372. return true;
  2373. }
  2374. static void calc_midstate(struct work *work)
  2375. {
  2376. union {
  2377. unsigned char c[64];
  2378. uint32_t i[16];
  2379. } data;
  2380. swap32yes(&data.i[0], work->data, 16);
  2381. sha256_ctx ctx;
  2382. sha256_init(&ctx);
  2383. sha256_update(&ctx, data.c, 64);
  2384. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2385. swap32tole(work->midstate, work->midstate, 8);
  2386. }
  2387. static
  2388. struct bfg_tmpl_ref *tmpl_makeref(blktemplate_t * const tmpl)
  2389. {
  2390. struct bfg_tmpl_ref * const tr = malloc(sizeof(*tr));
  2391. *tr = (struct bfg_tmpl_ref){
  2392. .tmpl = tmpl,
  2393. .refcount = 1,
  2394. };
  2395. mutex_init(&tr->mutex);
  2396. return tr;
  2397. }
  2398. static
  2399. void tmpl_incref(struct bfg_tmpl_ref * const tr)
  2400. {
  2401. mutex_lock(&tr->mutex);
  2402. ++tr->refcount;
  2403. mutex_unlock(&tr->mutex);
  2404. }
  2405. void tmpl_decref(struct bfg_tmpl_ref * const tr)
  2406. {
  2407. mutex_lock(&tr->mutex);
  2408. bool free_tmpl = !--tr->refcount;
  2409. mutex_unlock(&tr->mutex);
  2410. if (free_tmpl)
  2411. {
  2412. blktmpl_free(tr->tmpl);
  2413. mutex_destroy(&tr->mutex);
  2414. free(tr);
  2415. }
  2416. }
  2417. static struct work *make_work(void)
  2418. {
  2419. struct work *work = calloc(1, sizeof(struct work));
  2420. if (unlikely(!work))
  2421. quit(1, "Failed to calloc work in make_work");
  2422. cg_wlock(&control_lock);
  2423. work->id = total_work++;
  2424. cg_wunlock(&control_lock);
  2425. return work;
  2426. }
  2427. /* This is the central place all work that is about to be retired should be
  2428. * cleaned to remove any dynamically allocated arrays within the struct */
  2429. void clean_work(struct work *work)
  2430. {
  2431. free(work->job_id);
  2432. bytes_free(&work->nonce2);
  2433. free(work->nonce1);
  2434. if (work->device_data_free_func)
  2435. work->device_data_free_func(work);
  2436. if (work->tr)
  2437. tmpl_decref(work->tr);
  2438. memset(work, 0, sizeof(struct work));
  2439. }
  2440. /* All dynamically allocated work structs should be freed here to not leak any
  2441. * ram from arrays allocated within the work struct */
  2442. void free_work(struct work *work)
  2443. {
  2444. clean_work(work);
  2445. free(work);
  2446. }
  2447. 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";
  2448. // Must only be called with ch_lock held!
  2449. static
  2450. void __update_block_title(const unsigned char *hash_swap)
  2451. {
  2452. if (hash_swap) {
  2453. char tmp[17];
  2454. // Only provided when the block has actually changed
  2455. free(current_hash);
  2456. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2457. bin2hex(tmp, &hash_swap[24], 8);
  2458. memset(current_hash, '.', 3);
  2459. memcpy(&current_hash[3], tmp, 17);
  2460. known_blkheight_current = false;
  2461. } else if (likely(known_blkheight_current)) {
  2462. return;
  2463. }
  2464. if (current_block_id == known_blkheight_blkid) {
  2465. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2466. if (known_blkheight < 1000000) {
  2467. memmove(&current_hash[3], &current_hash[11], 8);
  2468. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2469. }
  2470. known_blkheight_current = true;
  2471. }
  2472. }
  2473. static
  2474. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2475. {
  2476. if (known_blkheight == blkheight)
  2477. return;
  2478. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2479. cg_wlock(&ch_lock);
  2480. known_blkheight = blkheight;
  2481. known_blkheight_blkid = block_id;
  2482. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2483. if (block_id == current_block_id)
  2484. __update_block_title(NULL);
  2485. cg_wunlock(&ch_lock);
  2486. }
  2487. static
  2488. void pool_set_opaque(struct pool *pool, bool opaque)
  2489. {
  2490. if (pool->swork.opaque == opaque)
  2491. return;
  2492. pool->swork.opaque = opaque;
  2493. if (opaque)
  2494. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2495. pool->pool_no);
  2496. else
  2497. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2498. pool->pool_no);
  2499. }
  2500. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2501. {
  2502. const char *p = strchr(pool->rpc_url, '#');
  2503. if (unlikely(p && strstr(&p[1], "redirect")))
  2504. return true;
  2505. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2506. }
  2507. void set_simple_ntime_roll_limit(struct ntime_roll_limits * const nrl, const uint32_t ntime_base, const int ntime_roll, const struct timeval * const tvp_ref)
  2508. {
  2509. const int offsets = max(ntime_roll, 60);
  2510. *nrl = (struct ntime_roll_limits){
  2511. .min = ntime_base,
  2512. .max = ntime_base + ntime_roll,
  2513. .tv_ref = *tvp_ref,
  2514. .minoff = -offsets,
  2515. .maxoff = offsets,
  2516. };
  2517. }
  2518. void work_set_simple_ntime_roll_limit(struct work * const work, const int ntime_roll, const struct timeval * const tvp_ref)
  2519. {
  2520. set_simple_ntime_roll_limit(&work->ntime_roll_limits, upk_u32be(work->data, 0x44), ntime_roll, tvp_ref);
  2521. }
  2522. int work_ntime_range(struct work * const work, const struct timeval * const tvp_earliest, const struct timeval * const tvp_latest, const int desired_roll)
  2523. {
  2524. const struct ntime_roll_limits * const nrl = &work->ntime_roll_limits;
  2525. const uint32_t ref_ntime = work_get_ntime(work);
  2526. const int earliest_elapsed = timer_elapsed(&nrl->tv_ref, tvp_earliest);
  2527. const int latest_elapsed = timer_elapsed(&nrl->tv_ref, tvp_latest);
  2528. // minimum ntime is the latest possible result (add a second to spare) adjusted for minimum offset (or fixed minimum ntime)
  2529. uint32_t min_ntime = max(nrl->min, ref_ntime + latest_elapsed+1 + nrl->minoff);
  2530. // maximum ntime is the earliest possible result adjusted for maximum offset (or fixed maximum ntime)
  2531. uint32_t max_ntime = min(nrl->max, ref_ntime + earliest_elapsed + nrl->maxoff);
  2532. if (max_ntime < min_ntime)
  2533. return -1;
  2534. if (max_ntime - min_ntime > desired_roll)
  2535. {
  2536. // Adjust min_ntime upward for accuracy, when possible
  2537. const int mid_elapsed = ((latest_elapsed - earliest_elapsed) / 2) + earliest_elapsed;
  2538. uint32_t ideal_ntime = ref_ntime + mid_elapsed;
  2539. if (ideal_ntime > min_ntime)
  2540. min_ntime = min(ideal_ntime, max_ntime - desired_roll);
  2541. }
  2542. work_set_ntime(work, min_ntime);
  2543. return max_ntime - min_ntime;
  2544. }
  2545. static double target_diff(const unsigned char *);
  2546. #define GBT_XNONCESZ (sizeof(uint32_t))
  2547. #if BLKMAKER_VERSION > 4
  2548. #define blkmk_append_coinbase_safe(tmpl, append, appendsz) \
  2549. blkmk_append_coinbase_safe2(tmpl, append, appendsz, GBT_XNONCESZ, false)
  2550. #endif
  2551. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2552. {
  2553. json_t *res_val = json_object_get(val, "result");
  2554. json_t *tmp_val;
  2555. bool ret = false;
  2556. struct timeval tv_now;
  2557. if (unlikely(detect_algo == 1)) {
  2558. json_t *tmp = json_object_get(res_val, "algorithm");
  2559. const char *v = tmp ? json_string_value(tmp) : "";
  2560. if (strncasecmp(v, "scrypt", 6))
  2561. detect_algo = 2;
  2562. }
  2563. timer_set_now(&tv_now);
  2564. if (work->tr)
  2565. {
  2566. blktemplate_t * const tmpl = work->tr->tmpl;
  2567. const char *err = blktmpl_add_jansson(tmpl, res_val, tv_now.tv_sec);
  2568. if (err) {
  2569. applog(LOG_ERR, "blktmpl error: %s", err);
  2570. return false;
  2571. }
  2572. work->rolltime = blkmk_time_left(tmpl, tv_now.tv_sec);
  2573. #if BLKMAKER_VERSION > 1
  2574. if (opt_coinbase_script.sz)
  2575. {
  2576. bool newcb;
  2577. #if BLKMAKER_VERSION > 2
  2578. blkmk_init_generation2(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2579. #else
  2580. newcb = !tmpl->cbtxn;
  2581. blkmk_init_generation(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2582. #endif
  2583. if (newcb)
  2584. {
  2585. ssize_t ae = blkmk_append_coinbase_safe(tmpl, &template_nonce, sizeof(template_nonce));
  2586. if (ae < (ssize_t)sizeof(template_nonce))
  2587. 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);
  2588. ++template_nonce;
  2589. }
  2590. }
  2591. #endif
  2592. #if BLKMAKER_VERSION > 0
  2593. {
  2594. ssize_t ae = blkmk_append_coinbase_safe(tmpl, opt_coinbase_sig, 101);
  2595. static bool appenderr = false;
  2596. if (ae <= 0) {
  2597. if (opt_coinbase_sig) {
  2598. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2599. appenderr = true;
  2600. }
  2601. } else if (ae >= 3 || opt_coinbase_sig) {
  2602. const char *cbappend = opt_coinbase_sig;
  2603. const char full[] = PACKAGE " " VERSION;
  2604. if (!cbappend) {
  2605. if ((size_t)ae >= sizeof(full) - 1)
  2606. cbappend = full;
  2607. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2608. cbappend = PACKAGE;
  2609. else
  2610. cbappend = "BFG";
  2611. }
  2612. size_t cbappendsz = strlen(cbappend);
  2613. static bool truncatewarning = false;
  2614. if (cbappendsz <= (size_t)ae) {
  2615. if (cbappendsz < (size_t)ae)
  2616. // If we have space, include the trailing \0
  2617. ++cbappendsz;
  2618. ae = cbappendsz;
  2619. truncatewarning = false;
  2620. } else {
  2621. char *tmp = malloc(ae + 1);
  2622. memcpy(tmp, opt_coinbase_sig, ae);
  2623. tmp[ae] = '\0';
  2624. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2625. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2626. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2627. free(tmp);
  2628. truncatewarning = true;
  2629. }
  2630. ae = blkmk_append_coinbase_safe(tmpl, cbappend, ae);
  2631. if (ae <= 0) {
  2632. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2633. appenderr = true;
  2634. } else
  2635. appenderr = false;
  2636. }
  2637. }
  2638. #endif
  2639. if (blkmk_get_data(tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2640. return false;
  2641. swap32yes(work->data, work->data, 80 / 4);
  2642. memcpy(&work->data[80], workpadding_bin, 48);
  2643. work->ntime_roll_limits = (struct ntime_roll_limits){
  2644. .min = tmpl->mintime,
  2645. .max = tmpl->maxtime,
  2646. .tv_ref = tv_now,
  2647. .minoff = tmpl->mintimeoff,
  2648. .maxoff = tmpl->maxtimeoff,
  2649. };
  2650. const struct blktmpl_longpoll_req *lp;
  2651. if ((lp = blktmpl_get_longpoll(tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2652. free(pool->lp_id);
  2653. pool->lp_id = strdup(lp->id);
  2654. #if 0 /* This just doesn't work :( */
  2655. curl_socket_t sock = pool->lp_socket;
  2656. if (sock != CURL_SOCKET_BAD) {
  2657. pool->lp_socket = CURL_SOCKET_BAD;
  2658. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2659. shutdown(sock, SHUT_RDWR);
  2660. }
  2661. #endif
  2662. }
  2663. }
  2664. else
  2665. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2666. applog(LOG_ERR, "JSON inval data");
  2667. return false;
  2668. }
  2669. else
  2670. work_set_simple_ntime_roll_limit(work, 0, &tv_now);
  2671. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2672. // Calculate it ourselves
  2673. applog(LOG_DEBUG, "Calculating midstate locally");
  2674. calc_midstate(work);
  2675. }
  2676. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2677. applog(LOG_ERR, "JSON inval target");
  2678. return false;
  2679. }
  2680. if (work->tr)
  2681. {
  2682. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2683. {
  2684. int p = (sizeof(work->target) - 1) - i;
  2685. unsigned char c = work->target[i];
  2686. work->target[i] = work->target[p];
  2687. work->target[p] = c;
  2688. }
  2689. }
  2690. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2691. uint32_t blkheight = json_number_value(tmp_val);
  2692. uint32_t block_id = ((uint32_t*)work->data)[1];
  2693. have_block_height(block_id, blkheight);
  2694. }
  2695. memset(work->hash, 0, sizeof(work->hash));
  2696. work->tv_staged = tv_now;
  2697. #if BLKMAKER_VERSION > 4
  2698. if (work->tr)
  2699. {
  2700. blktemplate_t * const tmpl = work->tr->tmpl;
  2701. uint8_t buf[80];
  2702. int16_t expire;
  2703. uint8_t *cbtxn;
  2704. size_t cbtxnsz;
  2705. size_t cbextranonceoffset;
  2706. int branchcount;
  2707. libblkmaker_hash_t *branches;
  2708. if (blkmk_get_mdata(tmpl, buf, sizeof(buf), tv_now.tv_sec, &expire, &cbtxn, &cbtxnsz, &cbextranonceoffset, &branchcount, &branches, GBT_XNONCESZ, false))
  2709. {
  2710. struct stratum_work * const swork = &pool->swork;
  2711. const size_t branchdatasz = branchcount * 0x20;
  2712. cg_wlock(&pool->data_lock);
  2713. swork->tr = work->tr;
  2714. bytes_assimilate_raw(&swork->coinbase, cbtxn, cbtxnsz, cbtxnsz);
  2715. swork->nonce2_offset = cbextranonceoffset;
  2716. bytes_assimilate_raw(&swork->merkle_bin, branches, branchdatasz, branchdatasz);
  2717. swork->merkles = branchcount;
  2718. memcpy(swork->header1, &buf[0], 36);
  2719. swork->ntime = le32toh(*(uint32_t *)(&buf[68]));
  2720. swork->tv_received = tv_now;
  2721. memcpy(swork->diffbits, &buf[72], 4);
  2722. memcpy(swork->target, work->target, sizeof(swork->target));
  2723. free(swork->job_id);
  2724. swork->job_id = NULL;
  2725. swork->clean = true;
  2726. swork->work_restart_id = pool->work_restart_id;
  2727. // FIXME: Do something with expire
  2728. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  2729. pool->nonce2 = 0;
  2730. cg_wunlock(&pool->data_lock);
  2731. }
  2732. else
  2733. applog(LOG_DEBUG, "blkmk_get_mdata failed for pool %u", pool->pool_no);
  2734. }
  2735. #endif // BLKMAKER_VERSION > 4
  2736. pool_set_opaque(pool, !work->tr);
  2737. ret = true;
  2738. return ret;
  2739. }
  2740. /* Returns whether the pool supports local work generation or not. */
  2741. static bool pool_localgen(struct pool *pool)
  2742. {
  2743. return (pool->last_work_copy || pool->has_stratum);
  2744. }
  2745. int dev_from_id(int thr_id)
  2746. {
  2747. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2748. return cgpu->device_id;
  2749. }
  2750. /* Create an exponentially decaying average over the opt_log_interval */
  2751. void decay_time(double *f, double fadd, double fsecs)
  2752. {
  2753. double ftotal, fprop;
  2754. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2755. ftotal = 1.0 + fprop;
  2756. *f += (fadd * fprop);
  2757. *f /= ftotal;
  2758. }
  2759. static int __total_staged(void)
  2760. {
  2761. return HASH_COUNT(staged_work);
  2762. }
  2763. static int total_staged(void)
  2764. {
  2765. int ret;
  2766. mutex_lock(stgd_lock);
  2767. ret = __total_staged();
  2768. mutex_unlock(stgd_lock);
  2769. return ret;
  2770. }
  2771. #ifdef HAVE_CURSES
  2772. WINDOW *mainwin, *statuswin, *logwin;
  2773. #endif
  2774. double total_secs = 1.0;
  2775. static char statusline[256];
  2776. /* logstart is where the log window should start */
  2777. static int devcursor, logstart, logcursor;
  2778. #ifdef HAVE_CURSES
  2779. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2780. static int statusy;
  2781. static int devsummaryYOffset;
  2782. static int total_lines;
  2783. #endif
  2784. #ifdef HAVE_OPENCL
  2785. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2786. #endif
  2787. struct cgpu_info *cpus;
  2788. bool _bfg_console_cancel_disabled;
  2789. int _bfg_console_prev_cancelstate;
  2790. #ifdef HAVE_CURSES
  2791. #define lock_curses() bfg_console_lock()
  2792. #define unlock_curses() bfg_console_unlock()
  2793. static bool curses_active_locked(void)
  2794. {
  2795. bool ret;
  2796. lock_curses();
  2797. ret = curses_active;
  2798. if (!ret)
  2799. unlock_curses();
  2800. return ret;
  2801. }
  2802. // Cancellable getch
  2803. int my_cancellable_getch(void)
  2804. {
  2805. // This only works because the macro only hits direct getch() calls
  2806. typedef int (*real_getch_t)(void);
  2807. const real_getch_t real_getch = __real_getch;
  2808. int type, rv;
  2809. bool sct;
  2810. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2811. rv = real_getch();
  2812. if (sct)
  2813. pthread_setcanceltype(type, &type);
  2814. return rv;
  2815. }
  2816. #ifdef PDCURSES
  2817. static
  2818. int bfg_wresize(WINDOW *win, int lines, int columns)
  2819. {
  2820. int rv = wresize(win, lines, columns);
  2821. int x, y;
  2822. getyx(win, y, x);
  2823. if (unlikely(y >= lines || x >= columns))
  2824. {
  2825. if (y >= lines)
  2826. y = lines - 1;
  2827. if (x >= columns)
  2828. x = columns - 1;
  2829. wmove(win, y, x);
  2830. }
  2831. return rv;
  2832. }
  2833. #else
  2834. # define bfg_wresize wresize
  2835. #endif
  2836. #endif
  2837. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2838. {
  2839. va_list ap;
  2840. size_t presz = strlen(buf);
  2841. va_start(ap, fmt);
  2842. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2843. va_end(ap);
  2844. }
  2845. double stats_elapsed(struct cgminer_stats *stats)
  2846. {
  2847. struct timeval now;
  2848. double elapsed;
  2849. if (stats->start_tv.tv_sec == 0)
  2850. elapsed = total_secs;
  2851. else {
  2852. cgtime(&now);
  2853. elapsed = tdiff(&now, &stats->start_tv);
  2854. }
  2855. if (elapsed < 1.0)
  2856. elapsed = 1.0;
  2857. return elapsed;
  2858. }
  2859. bool drv_ready(struct cgpu_info *cgpu)
  2860. {
  2861. switch (cgpu->status) {
  2862. case LIFE_INIT:
  2863. case LIFE_DEAD2:
  2864. return false;
  2865. default:
  2866. return true;
  2867. }
  2868. }
  2869. double cgpu_utility(struct cgpu_info *cgpu)
  2870. {
  2871. double dev_runtime = cgpu_runtime(cgpu);
  2872. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2873. }
  2874. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2875. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2876. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2877. }while(0)
  2878. static float
  2879. utility_to_hashrate(double utility)
  2880. {
  2881. return utility * 0x4444444;
  2882. }
  2883. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2884. static const int _unitbase = 4;
  2885. static
  2886. void pick_unit(float hashrate, unsigned char *unit)
  2887. {
  2888. unsigned char i;
  2889. if (hashrate == 0)
  2890. {
  2891. if (*unit < _unitbase)
  2892. *unit = _unitbase;
  2893. return;
  2894. }
  2895. hashrate *= 1e12;
  2896. for (i = 0; i < *unit; ++i)
  2897. hashrate /= 1e3;
  2898. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2899. while (hashrate >= 999.95)
  2900. {
  2901. hashrate /= 1e3;
  2902. if (likely(_unitchar[*unit] != '?'))
  2903. ++*unit;
  2904. }
  2905. }
  2906. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2907. enum h2bs_fmt {
  2908. H2B_NOUNIT, // "xxx.x"
  2909. H2B_SHORT, // "xxx.xMH/s"
  2910. H2B_SPACED, // "xxx.x MH/s"
  2911. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2912. };
  2913. enum bfu_floatprec {
  2914. FUP_INTEGER,
  2915. FUP_HASHES,
  2916. FUP_BTC,
  2917. FUP_DIFF,
  2918. };
  2919. static
  2920. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2921. {
  2922. char *s = buf;
  2923. unsigned char prec, i, unit;
  2924. int rv = 0;
  2925. if (unitin == -1)
  2926. {
  2927. unit = 0;
  2928. hashrate_pick_unit(hashrate, &unit);
  2929. }
  2930. else
  2931. unit = unitin;
  2932. hashrate *= 1e12;
  2933. for (i = 0; i < unit; ++i)
  2934. hashrate /= 1000;
  2935. switch (fprec)
  2936. {
  2937. case FUP_HASHES:
  2938. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2939. if (hashrate >= 99.995 || unit < 6)
  2940. prec = 1;
  2941. else
  2942. prec = 2;
  2943. _SNP("%5.*f", prec, hashrate);
  2944. break;
  2945. case FUP_INTEGER:
  2946. _SNP("%3d", (int)hashrate);
  2947. break;
  2948. case FUP_BTC:
  2949. if (hashrate >= 99.995)
  2950. prec = 0;
  2951. else
  2952. prec = 2;
  2953. _SNP("%5.*f", prec, hashrate);
  2954. break;
  2955. case FUP_DIFF:
  2956. if (unit > _unitbase)
  2957. _SNP("%.3g", hashrate);
  2958. else
  2959. _SNP("%u", (unsigned int)hashrate);
  2960. }
  2961. if (fmt != H2B_NOUNIT)
  2962. {
  2963. char uc[3] = {_unitchar[unit], '\0'};
  2964. switch (fmt) {
  2965. case H2B_SPACED:
  2966. _SNP(" ");
  2967. default:
  2968. break;
  2969. case H2B_SHORTV:
  2970. if (isspace(uc[0]))
  2971. uc[0] = '\0';
  2972. }
  2973. if (uc[0] == '\xb5')
  2974. // Convert to UTF-8
  2975. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2976. _SNP("%s%s", uc, measurement);
  2977. }
  2978. return rv;
  2979. }
  2980. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2981. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2982. static
  2983. 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)
  2984. {
  2985. unsigned char unit = 0;
  2986. bool allzero = true;
  2987. int i;
  2988. size_t delimsz = 0;
  2989. char *buf = buflist[0];
  2990. size_t bufsz = bufszlist[0];
  2991. size_t itemwidth = (floatprec ? 5 : 3);
  2992. if (!isarray)
  2993. delimsz = strlen(delim);
  2994. for (i = 0; i < count; ++i)
  2995. if (numbers[i] != 0)
  2996. {
  2997. pick_unit(numbers[i], &unit);
  2998. allzero = false;
  2999. }
  3000. if (allzero)
  3001. unit = _unitbase;
  3002. --count;
  3003. for (i = 0; i < count; ++i)
  3004. {
  3005. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  3006. if (isarray)
  3007. {
  3008. buf = buflist[i + 1];
  3009. bufsz = bufszlist[i + 1];
  3010. }
  3011. else
  3012. {
  3013. buf += itemwidth;
  3014. bufsz -= itemwidth;
  3015. if (delimsz > bufsz)
  3016. delimsz = bufsz;
  3017. memcpy(buf, delim, delimsz);
  3018. buf += delimsz;
  3019. bufsz -= delimsz;
  3020. }
  3021. }
  3022. // Last entry has the unit
  3023. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  3024. return buflist[0];
  3025. }
  3026. #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)
  3027. #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)
  3028. static
  3029. int percentf3(char * const buf, size_t sz, double p, const double t)
  3030. {
  3031. char *s = buf;
  3032. int rv = 0;
  3033. if (!p)
  3034. _SNP("none");
  3035. else
  3036. if (t <= p)
  3037. _SNP("100%%");
  3038. else
  3039. {
  3040. p /= t;
  3041. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  3042. _SNP(".%02.0f%%", p * 10000); // ".01%"
  3043. else
  3044. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  3045. _SNP("%.1f%%", p * 100); // "9.1%"
  3046. else
  3047. _SNP("%3.0f%%", p * 100); // " 99%"
  3048. }
  3049. return rv;
  3050. }
  3051. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  3052. static
  3053. void test_decimal_width()
  3054. {
  3055. // The pipe character at end of each line should perfectly line up
  3056. char printbuf[512];
  3057. char testbuf1[64];
  3058. char testbuf2[64];
  3059. char testbuf3[64];
  3060. char testbuf4[64];
  3061. double testn;
  3062. int width;
  3063. int saved;
  3064. // Hotspots around 0.1 and 0.01
  3065. saved = -1;
  3066. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  3067. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  3068. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  3069. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  3070. if (unlikely((saved != -1) && (width != saved))) {
  3071. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  3072. applog(LOG_ERR, "%s", printbuf);
  3073. }
  3074. saved = width;
  3075. }
  3076. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  3077. saved = -1;
  3078. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  3079. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3080. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3081. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3082. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  3083. width = utf8_strlen(printbuf);
  3084. if (unlikely((saved != -1) && (width != saved))) {
  3085. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  3086. applog(LOG_ERR, "%s", printbuf);
  3087. }
  3088. saved = width;
  3089. }
  3090. // Hotspot around unit transition boundary in pick_unit
  3091. saved = -1;
  3092. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  3093. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3094. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3095. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3096. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  3097. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  3098. width = utf8_strlen(printbuf);
  3099. if (unlikely((saved != -1) && (width != saved))) {
  3100. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  3101. applog(LOG_ERR, "%s", printbuf);
  3102. }
  3103. saved = width;
  3104. }
  3105. }
  3106. #ifdef HAVE_CURSES
  3107. static void adj_width(int var, int *length);
  3108. #endif
  3109. #ifdef HAVE_CURSES
  3110. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  3111. static
  3112. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, int wnotaccepted, int waccepted, int hwerrs, int bad_diff1, int allnonces)
  3113. {
  3114. char rejpcbuf[6];
  3115. char bnbuf[6];
  3116. adj_width(accepted, &awidth);
  3117. adj_width(rejected, &rwidth);
  3118. adj_width(stale, &swidth);
  3119. adj_width(hwerrs, &hwwidth);
  3120. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3121. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3122. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3123. cHr, aHr, uHr,
  3124. awidth, accepted,
  3125. rwidth, rejected,
  3126. swidth, stale,
  3127. rejpcbuf,
  3128. hwwidth, hwerrs,
  3129. bnbuf
  3130. );
  3131. }
  3132. static
  3133. const char *pool_proto_str(const struct pool * const pool)
  3134. {
  3135. if (pool->idle)
  3136. return "Dead ";
  3137. if (pool->has_stratum)
  3138. return "Strtm";
  3139. if (pool->lp_url && pool->proto != pool->lp_proto)
  3140. return "Mixed";
  3141. switch (pool->proto)
  3142. {
  3143. case PLP_GETBLOCKTEMPLATE:
  3144. return " GBT ";
  3145. case PLP_GETWORK:
  3146. return "GWork";
  3147. default:
  3148. return "Alive";
  3149. }
  3150. }
  3151. #endif
  3152. static inline
  3153. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3154. {
  3155. if (!(use_unicode && have_unicode_degrees))
  3156. maybe_unicode = false;
  3157. if (temp && *temp > 0.)
  3158. if (maybe_unicode)
  3159. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3160. else
  3161. snprintf(buf, bufsz, "%4.1fC", *temp);
  3162. else
  3163. {
  3164. if (temp)
  3165. snprintf(buf, bufsz, " ");
  3166. if (maybe_unicode)
  3167. tailsprintf(buf, bufsz, " ");
  3168. }
  3169. tailsprintf(buf, bufsz, " | ");
  3170. }
  3171. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3172. {
  3173. #ifndef HAVE_CURSES
  3174. assert(for_curses == false);
  3175. #endif
  3176. struct device_drv *drv = cgpu->drv;
  3177. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3178. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3179. char rejpcbuf[6];
  3180. char bnbuf[6];
  3181. double dev_runtime;
  3182. if (!opt_show_procs)
  3183. cgpu = cgpu->device;
  3184. dev_runtime = cgpu_runtime(cgpu);
  3185. double rolling, mhashes;
  3186. int accepted, rejected, stale;
  3187. double waccepted;
  3188. double wnotaccepted;
  3189. int hwerrs;
  3190. double bad_diff1, good_diff1;
  3191. rolling = mhashes = waccepted = wnotaccepted = 0;
  3192. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3193. {
  3194. struct cgpu_info *slave = cgpu;
  3195. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3196. {
  3197. slave->utility = slave->accepted / dev_runtime * 60;
  3198. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3199. rolling += slave->rolling;
  3200. mhashes += slave->total_mhashes;
  3201. if (opt_weighed_stats)
  3202. {
  3203. accepted += slave->diff_accepted;
  3204. rejected += slave->diff_rejected;
  3205. stale += slave->diff_stale;
  3206. }
  3207. else
  3208. {
  3209. accepted += slave->accepted;
  3210. rejected += slave->rejected;
  3211. stale += slave->stale;
  3212. }
  3213. waccepted += slave->diff_accepted;
  3214. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3215. hwerrs += slave->hw_errors;
  3216. bad_diff1 += slave->bad_diff1;
  3217. good_diff1 += slave->diff1;
  3218. if (opt_show_procs)
  3219. break;
  3220. }
  3221. }
  3222. double wtotal = (waccepted + wnotaccepted);
  3223. multi_format_unit_array2(
  3224. ((char*[]){cHr, aHr, uHr}),
  3225. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3226. true, "h/s", hashrate_style,
  3227. 3,
  3228. 1e6*rolling,
  3229. 1e6*mhashes / dev_runtime,
  3230. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3231. // Processor representation
  3232. #ifdef HAVE_CURSES
  3233. if (for_curses)
  3234. {
  3235. if (opt_show_procs)
  3236. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3237. else
  3238. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3239. }
  3240. else
  3241. #endif
  3242. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3243. if (include_serial_in_statline && cgpu->dev_serial)
  3244. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3245. if (unlikely(cgpu->status == LIFE_INIT))
  3246. {
  3247. tailsprintf(buf, bufsz, "Initializing...");
  3248. return;
  3249. }
  3250. {
  3251. const size_t bufln = strlen(buf);
  3252. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3253. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3254. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3255. else
  3256. {
  3257. float temp = cgpu->temp;
  3258. if (!opt_show_procs)
  3259. {
  3260. // Find the highest temperature of all processors
  3261. struct cgpu_info *proc = cgpu;
  3262. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3263. if (proc->temp > temp)
  3264. temp = proc->temp;
  3265. }
  3266. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3267. }
  3268. }
  3269. #ifdef HAVE_CURSES
  3270. if (for_curses)
  3271. {
  3272. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3273. const char *cHrStats;
  3274. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3275. bool all_dead = true, all_off = true, all_rdrv = true;
  3276. struct cgpu_info *proc = cgpu;
  3277. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3278. {
  3279. switch (cHrStatsI) {
  3280. default:
  3281. if (proc->status == LIFE_WAIT)
  3282. cHrStatsI = 5;
  3283. case 5:
  3284. if (proc->deven == DEV_RECOVER_ERR)
  3285. cHrStatsI = 4;
  3286. case 4:
  3287. if (proc->deven == DEV_RECOVER)
  3288. cHrStatsI = 3;
  3289. case 3:
  3290. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3291. {
  3292. cHrStatsI = 1;
  3293. all_off = false;
  3294. }
  3295. else
  3296. {
  3297. if (likely(proc->deven == DEV_ENABLED))
  3298. all_off = false;
  3299. if (proc->deven != DEV_RECOVER_DRV)
  3300. all_rdrv = false;
  3301. }
  3302. case 1:
  3303. break;
  3304. }
  3305. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3306. all_dead = false;
  3307. if (opt_show_procs)
  3308. break;
  3309. }
  3310. if (unlikely(all_dead))
  3311. cHrStatsI = 0;
  3312. else
  3313. if (unlikely(all_off))
  3314. cHrStatsI = 2;
  3315. cHrStats = cHrStatsOpt[cHrStatsI];
  3316. if (cHrStatsI == 2 && all_rdrv)
  3317. cHrStats = " RST ";
  3318. format_statline(buf, bufsz,
  3319. cHrStats,
  3320. aHr, uHr,
  3321. accepted, rejected, stale,
  3322. wnotaccepted, waccepted,
  3323. hwerrs,
  3324. bad_diff1, bad_diff1 + good_diff1);
  3325. }
  3326. else
  3327. #endif
  3328. {
  3329. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3330. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3331. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3332. opt_log_interval,
  3333. cHr, aHr, uHr,
  3334. accepted,
  3335. rejected,
  3336. stale,
  3337. rejpcbuf,
  3338. hwerrs,
  3339. bnbuf
  3340. );
  3341. }
  3342. }
  3343. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3344. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3345. static void text_print_status(int thr_id)
  3346. {
  3347. struct cgpu_info *cgpu;
  3348. char logline[256];
  3349. cgpu = get_thr_cgpu(thr_id);
  3350. if (cgpu) {
  3351. get_statline(logline, sizeof(logline), cgpu);
  3352. printf("%s\n", logline);
  3353. }
  3354. }
  3355. #ifdef HAVE_CURSES
  3356. static int attr_bad = A_BOLD;
  3357. #ifdef WIN32
  3358. #define swprintf snwprintf
  3359. #endif
  3360. static
  3361. void bfg_waddstr(WINDOW *win, const char *s)
  3362. {
  3363. const char *p = s;
  3364. int32_t w;
  3365. int wlen;
  3366. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3367. while (true)
  3368. {
  3369. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3370. {
  3371. // Printable ASCII
  3372. ++p;
  3373. }
  3374. if (p != s)
  3375. waddnstr(win, s, p - s);
  3376. w = utf8_decode(p, &wlen);
  3377. s = p += wlen;
  3378. switch(w)
  3379. {
  3380. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3381. case '\0':
  3382. return;
  3383. case 0xb5: // micro symbol
  3384. w = unicode_micro;
  3385. goto default_addch;
  3386. case 0xf000: // "bad" off
  3387. wattroff(win, attr_bad);
  3388. break;
  3389. case 0xf001: // "bad" on
  3390. wattron(win, attr_bad);
  3391. break;
  3392. #ifdef USE_UNICODE
  3393. case '|':
  3394. wadd_wch(win, WACS_VLINE);
  3395. break;
  3396. #endif
  3397. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3398. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3399. if (!use_unicode)
  3400. {
  3401. waddch(win, '-');
  3402. break;
  3403. }
  3404. #ifdef USE_UNICODE
  3405. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3406. break;
  3407. #endif
  3408. case 0x2022:
  3409. if (w > WCHAR_MAX || !iswprint(w))
  3410. w = '*';
  3411. default:
  3412. default_addch:
  3413. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3414. {
  3415. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3416. if (iswprint(REPLACEMENT_CHAR))
  3417. w = REPLACEMENT_CHAR;
  3418. else
  3419. #endif
  3420. w = '?';
  3421. }
  3422. {
  3423. #ifdef USE_UNICODE
  3424. wchar_t wbuf[0x10];
  3425. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3426. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3427. waddnwstr(win, wbuf, wbuflen);
  3428. #else
  3429. wprintw(win, "%lc", (wint_t)w);
  3430. #endif
  3431. }
  3432. }
  3433. }
  3434. }
  3435. static inline
  3436. void bfg_hline(WINDOW *win, int y)
  3437. {
  3438. int maxx, __maybe_unused maxy;
  3439. getmaxyx(win, maxy, maxx);
  3440. #ifdef USE_UNICODE
  3441. if (use_unicode)
  3442. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3443. else
  3444. #endif
  3445. mvwhline(win, y, 0, '-', maxx);
  3446. }
  3447. // Spaces until end of line, using current attributes (ie, not completely clear)
  3448. static
  3449. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3450. {
  3451. int x, maxx;
  3452. int __maybe_unused y;
  3453. getmaxyx(win, y, maxx);
  3454. getyx(win, y, x);
  3455. const int space_count = (maxx - x) - offset;
  3456. // Check for negative - terminal too narrow
  3457. if (space_count <= 0)
  3458. return;
  3459. char buf[space_count];
  3460. memset(buf, ' ', space_count);
  3461. waddnstr(win, buf, space_count);
  3462. }
  3463. static int menu_attr = A_REVERSE;
  3464. #define CURBUFSIZ 256
  3465. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3466. char tmp42[CURBUFSIZ]; \
  3467. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3468. wmove(win, y, x); \
  3469. bfg_waddstr(win, tmp42); \
  3470. } while (0)
  3471. #define cg_wprintw(win, fmt, ...) do { \
  3472. char tmp42[CURBUFSIZ]; \
  3473. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3474. bfg_waddstr(win, tmp42); \
  3475. } while (0)
  3476. static bool pool_unworkable(const struct pool *);
  3477. /* Must be called with curses mutex lock held and curses_active */
  3478. static void curses_print_status(const int ts)
  3479. {
  3480. struct pool *pool = currentpool;
  3481. struct timeval now, tv;
  3482. float efficiency;
  3483. double income;
  3484. int logdiv;
  3485. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3486. wattron(statuswin, attr_title);
  3487. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3488. timer_set_now(&now);
  3489. {
  3490. unsigned int days, hours;
  3491. div_t d;
  3492. timersub(&now, &miner_started, &tv);
  3493. d = div(tv.tv_sec, 86400);
  3494. days = d.quot;
  3495. d = div(d.rem, 3600);
  3496. hours = d.quot;
  3497. d = div(d.rem, 60);
  3498. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3499. , days
  3500. , (days == 1) ? ' ' : 's'
  3501. , hours
  3502. , d.quot
  3503. , d.rem
  3504. );
  3505. }
  3506. bfg_wspctoeol(statuswin, 0);
  3507. wattroff(statuswin, attr_title);
  3508. wattron(statuswin, menu_attr);
  3509. wmove(statuswin, 1, 0);
  3510. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3511. bfg_wspctoeol(statuswin, 14);
  3512. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3513. wattroff(statuswin, menu_attr);
  3514. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3515. char poolinfo[20], poolinfo2[20];
  3516. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3517. double lowdiff = DBL_MAX, highdiff = -1;
  3518. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3519. time_t oldest_work_restart = time(NULL) + 1;
  3520. struct pool *oldest_work_restart_pool = pools[0];
  3521. for (int i = 0; i < total_pools; ++i)
  3522. {
  3523. if (pool_unworkable(pools[i]))
  3524. continue;
  3525. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3526. pool = pools[i];
  3527. ++workable_pools;
  3528. if (poolinfooff < sizeof(poolinfo))
  3529. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3530. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3531. if (pool_stats->last_diff < lowdiff)
  3532. {
  3533. lowdiff = pool_stats->last_diff;
  3534. lowdiff_pool = pool;
  3535. }
  3536. if (pool_stats->last_diff > highdiff)
  3537. {
  3538. highdiff = pool_stats->last_diff;
  3539. highdiff_pool = pool;
  3540. }
  3541. if (oldest_work_restart >= pool->work_restart_time)
  3542. {
  3543. oldest_work_restart = pool->work_restart_time;
  3544. oldest_work_restart_pool = pool;
  3545. }
  3546. }
  3547. if (workable_pools == 1)
  3548. goto one_workable_pool;
  3549. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3550. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3551. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3552. else
  3553. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3554. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3555. poolinfo2,
  3556. lowdiff_pool->diff,
  3557. (lowdiff == highdiff) ? "" : "-",
  3558. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3559. have_longpoll ? '+' : '-',
  3560. oldest_work_restart_pool->work_restart_timestamp);
  3561. }
  3562. else
  3563. {
  3564. one_workable_pool: ;
  3565. char pooladdr[19];
  3566. {
  3567. const char *rawaddr = pool->sockaddr_url;
  3568. BFGINIT(rawaddr, pool->rpc_url);
  3569. size_t pooladdrlen = strlen(rawaddr);
  3570. if (pooladdrlen > 20)
  3571. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3572. else
  3573. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3574. }
  3575. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3576. pool->pool_no, pooladdr, pool->diff,
  3577. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3578. pool->work_restart_timestamp,
  3579. pool->rpc_user);
  3580. }
  3581. wclrtoeol(statuswin);
  3582. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3583. current_hash, block_diff, net_hashrate, blocktime);
  3584. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3585. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3586. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3587. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3588. ts,
  3589. total_go + total_ro,
  3590. new_blocks,
  3591. total_submitting,
  3592. multi_format_unit2(bwstr, sizeof(bwstr),
  3593. false, "B/s", H2B_SHORT, "/", 2,
  3594. (float)(total_bytes_rcvd / total_secs),
  3595. (float)(total_bytes_sent / total_secs)),
  3596. efficiency,
  3597. incomestr,
  3598. best_share);
  3599. wclrtoeol(statuswin);
  3600. mvwaddstr(statuswin, 5, 0, " ");
  3601. bfg_waddstr(statuswin, statusline);
  3602. wclrtoeol(statuswin);
  3603. logdiv = statusy - 1;
  3604. bfg_hline(statuswin, 6);
  3605. bfg_hline(statuswin, logdiv);
  3606. #ifdef USE_UNICODE
  3607. if (use_unicode)
  3608. {
  3609. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3610. if (opt_show_procs && !opt_compact)
  3611. ++offset; // proc letter
  3612. if (have_unicode_degrees)
  3613. ++offset; // degrees symbol
  3614. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3615. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3616. offset += 24; // hashrates etc
  3617. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3618. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3619. }
  3620. #endif
  3621. }
  3622. static void adj_width(int var, int *length)
  3623. {
  3624. if ((int)(log10(var) + 1) > *length)
  3625. (*length)++;
  3626. }
  3627. static int dev_width;
  3628. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3629. {
  3630. char logline[256];
  3631. int ypos;
  3632. if (opt_compact)
  3633. return;
  3634. /* Check this isn't out of the window size */
  3635. if (opt_show_procs)
  3636. ypos = cgpu->cgminer_id;
  3637. else
  3638. {
  3639. if (cgpu->proc_id)
  3640. return;
  3641. ypos = cgpu->device_line_id;
  3642. }
  3643. ypos += devsummaryYOffset;
  3644. if (ypos < 0)
  3645. return;
  3646. ypos += devcursor - 1;
  3647. if (ypos >= statusy - 1)
  3648. return;
  3649. if (wmove(statuswin, ypos, 0) == ERR)
  3650. return;
  3651. get_statline2(logline, sizeof(logline), cgpu, true);
  3652. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3653. wattron(statuswin, A_REVERSE);
  3654. bfg_waddstr(statuswin, logline);
  3655. wattroff(statuswin, A_REVERSE);
  3656. wclrtoeol(statuswin);
  3657. }
  3658. static
  3659. void _refresh_devstatus(const bool already_have_lock) {
  3660. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3661. int i;
  3662. if (unlikely(!total_devices))
  3663. {
  3664. const int ypos = devcursor - 1;
  3665. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3666. {
  3667. wattron(statuswin, attr_bad);
  3668. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3669. wclrtoeol(statuswin);
  3670. wattroff(statuswin, attr_bad);
  3671. }
  3672. }
  3673. for (i = 0; i < total_devices; i++)
  3674. curses_print_devstatus(get_devices(i));
  3675. touchwin(statuswin);
  3676. wrefresh(statuswin);
  3677. if (!already_have_lock)
  3678. unlock_curses();
  3679. }
  3680. }
  3681. #define refresh_devstatus() _refresh_devstatus(false)
  3682. #endif
  3683. static void print_status(int thr_id)
  3684. {
  3685. if (!curses_active)
  3686. text_print_status(thr_id);
  3687. }
  3688. #ifdef HAVE_CURSES
  3689. static
  3690. bool set_statusy(int maxy)
  3691. {
  3692. if (loginput_size)
  3693. {
  3694. maxy -= loginput_size;
  3695. if (maxy < 0)
  3696. maxy = 0;
  3697. }
  3698. if (logstart < maxy)
  3699. maxy = logstart;
  3700. if (statusy == maxy)
  3701. return false;
  3702. statusy = maxy;
  3703. logcursor = statusy;
  3704. return true;
  3705. }
  3706. /* Check for window resize. Called with curses mutex locked */
  3707. static inline void change_logwinsize(void)
  3708. {
  3709. int x, y, logx, logy;
  3710. getmaxyx(mainwin, y, x);
  3711. if (x < 80 || y < 25)
  3712. return;
  3713. if (y > statusy + 2 && statusy < logstart) {
  3714. set_statusy(y - 2);
  3715. mvwin(logwin, logcursor, 0);
  3716. bfg_wresize(statuswin, statusy, x);
  3717. }
  3718. y -= logcursor;
  3719. getmaxyx(logwin, logy, logx);
  3720. /* Detect screen size change */
  3721. if (x != logx || y != logy)
  3722. bfg_wresize(logwin, y, x);
  3723. }
  3724. static void check_winsizes(void)
  3725. {
  3726. if (!use_curses)
  3727. return;
  3728. if (curses_active_locked()) {
  3729. int y, x;
  3730. x = getmaxx(statuswin);
  3731. if (set_statusy(LINES - 2))
  3732. {
  3733. erase();
  3734. bfg_wresize(statuswin, statusy, x);
  3735. getmaxyx(mainwin, y, x);
  3736. y -= logcursor;
  3737. bfg_wresize(logwin, y, x);
  3738. mvwin(logwin, logcursor, 0);
  3739. }
  3740. unlock_curses();
  3741. }
  3742. }
  3743. static int device_line_id_count;
  3744. static void switch_logsize(void)
  3745. {
  3746. if (curses_active_locked()) {
  3747. if (opt_compact) {
  3748. logstart = devcursor - 1;
  3749. logcursor = logstart + 1;
  3750. } else {
  3751. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3752. logstart = devcursor + total_lines;
  3753. logcursor = logstart;
  3754. }
  3755. unlock_curses();
  3756. }
  3757. check_winsizes();
  3758. }
  3759. /* For mandatory printing when mutex is already locked */
  3760. void _wlog(const char *str)
  3761. {
  3762. static bool newline;
  3763. size_t end = strlen(str) - 1;
  3764. if (newline)
  3765. bfg_waddstr(logwin, "\n");
  3766. if (str[end] == '\n')
  3767. {
  3768. char *s;
  3769. newline = true;
  3770. s = alloca(end + 1);
  3771. memcpy(s, str, end);
  3772. s[end] = '\0';
  3773. str = s;
  3774. }
  3775. else
  3776. newline = false;
  3777. bfg_waddstr(logwin, str);
  3778. }
  3779. /* Mandatory printing */
  3780. void _wlogprint(const char *str)
  3781. {
  3782. if (curses_active_locked()) {
  3783. _wlog(str);
  3784. unlock_curses();
  3785. }
  3786. }
  3787. #endif
  3788. #ifdef HAVE_CURSES
  3789. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3790. {
  3791. bool high_prio;
  3792. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3793. if (curses_active)
  3794. {
  3795. if (!loginput_size || high_prio) {
  3796. wlog(" %s %s\n", datetime, str);
  3797. if (high_prio) {
  3798. touchwin(logwin);
  3799. wrefresh(logwin);
  3800. }
  3801. }
  3802. return true;
  3803. }
  3804. return false;
  3805. }
  3806. void clear_logwin(void)
  3807. {
  3808. if (curses_active_locked()) {
  3809. wclear(logwin);
  3810. unlock_curses();
  3811. }
  3812. }
  3813. void logwin_update(void)
  3814. {
  3815. if (curses_active_locked()) {
  3816. touchwin(logwin);
  3817. wrefresh(logwin);
  3818. unlock_curses();
  3819. }
  3820. }
  3821. #endif
  3822. static void enable_pool(struct pool *pool)
  3823. {
  3824. if (pool->enabled != POOL_ENABLED) {
  3825. enabled_pools++;
  3826. pool->enabled = POOL_ENABLED;
  3827. }
  3828. }
  3829. #ifdef HAVE_CURSES
  3830. static void disable_pool(struct pool *pool)
  3831. {
  3832. if (pool->enabled == POOL_ENABLED)
  3833. enabled_pools--;
  3834. pool->enabled = POOL_DISABLED;
  3835. }
  3836. #endif
  3837. static void reject_pool(struct pool *pool)
  3838. {
  3839. if (pool->enabled == POOL_ENABLED)
  3840. enabled_pools--;
  3841. pool->enabled = POOL_REJECTING;
  3842. }
  3843. static double share_diff(const struct work *);
  3844. static
  3845. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3846. struct cgpu_info *cgpu;
  3847. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3848. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3849. const double tgtdiff = work->work_difficulty;
  3850. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3851. char where[20];
  3852. cgpu = get_thr_cgpu(work->thr_id);
  3853. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3854. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3855. if (total_pools > 1)
  3856. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3857. else
  3858. where[0] = '\0';
  3859. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3860. disp,
  3861. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3862. cgpu->proc_repr,
  3863. where,
  3864. shrdiffdisp, tgtdiffdisp,
  3865. reason,
  3866. resubmit ? "(resubmit)" : "",
  3867. worktime
  3868. );
  3869. }
  3870. static bool test_work_current(struct work *);
  3871. static void _submit_work_async(struct work *);
  3872. static
  3873. void maybe_local_submit(const struct work *work)
  3874. {
  3875. #if BLKMAKER_VERSION > 3
  3876. if (unlikely(work->block && work->tr))
  3877. {
  3878. // This is a block with a full template (GBT)
  3879. // Regardless of the result, submit to local bitcoind(s) as well
  3880. struct work *work_cp;
  3881. char *p;
  3882. for (int i = 0; i < total_pools; ++i)
  3883. {
  3884. p = strchr(pools[i]->rpc_url, '#');
  3885. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3886. continue;
  3887. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3888. work_cp = copy_work(work);
  3889. work_cp->pool = pools[i];
  3890. work_cp->do_foreign_submit = true;
  3891. _submit_work_async(work_cp);
  3892. }
  3893. }
  3894. #endif
  3895. }
  3896. /* Theoretically threads could race when modifying accepted and
  3897. * rejected values but the chance of two submits completing at the
  3898. * same time is zero so there is no point adding extra locking */
  3899. static void
  3900. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3901. /*char *hashshow,*/ bool resubmit, char *worktime)
  3902. {
  3903. struct pool *pool = work->pool;
  3904. struct cgpu_info *cgpu;
  3905. cgpu = get_thr_cgpu(work->thr_id);
  3906. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3907. mutex_lock(&stats_lock);
  3908. cgpu->accepted++;
  3909. total_accepted++;
  3910. pool->accepted++;
  3911. cgpu->diff_accepted += work->work_difficulty;
  3912. total_diff_accepted += work->work_difficulty;
  3913. pool->diff_accepted += work->work_difficulty;
  3914. mutex_unlock(&stats_lock);
  3915. pool->seq_rejects = 0;
  3916. cgpu->last_share_pool = pool->pool_no;
  3917. cgpu->last_share_pool_time = time(NULL);
  3918. cgpu->last_share_diff = work->work_difficulty;
  3919. pool->last_share_time = cgpu->last_share_pool_time;
  3920. pool->last_share_diff = work->work_difficulty;
  3921. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3922. if (!QUIET) {
  3923. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3924. }
  3925. sharelog("accept", work);
  3926. if (opt_shares && total_diff_accepted >= opt_shares) {
  3927. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3928. kill_work();
  3929. return;
  3930. }
  3931. /* Detect if a pool that has been temporarily disabled for
  3932. * continually rejecting shares has started accepting shares.
  3933. * This will only happen with the work returned from a
  3934. * longpoll */
  3935. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3936. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3937. enable_pool(pool);
  3938. switch_pools(NULL);
  3939. }
  3940. if (unlikely(work->block)) {
  3941. // Force moving on to this new block :)
  3942. struct work fakework;
  3943. memset(&fakework, 0, sizeof(fakework));
  3944. fakework.pool = work->pool;
  3945. // Copy block version, bits, and time from share
  3946. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3947. memcpy(&fakework.data[68], &work->data[68], 8);
  3948. // Set prevblock to winning hash (swap32'd)
  3949. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3950. test_work_current(&fakework);
  3951. }
  3952. } else {
  3953. mutex_lock(&stats_lock);
  3954. cgpu->rejected++;
  3955. total_rejected++;
  3956. pool->rejected++;
  3957. cgpu->diff_rejected += work->work_difficulty;
  3958. total_diff_rejected += work->work_difficulty;
  3959. pool->diff_rejected += work->work_difficulty;
  3960. pool->seq_rejects++;
  3961. mutex_unlock(&stats_lock);
  3962. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3963. if (!QUIET) {
  3964. char where[20];
  3965. char disposition[36] = "reject";
  3966. char reason[32];
  3967. strcpy(reason, "");
  3968. if (total_pools > 1)
  3969. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3970. else
  3971. strcpy(where, "");
  3972. if (!json_is_string(res))
  3973. res = json_object_get(val, "reject-reason");
  3974. if (res) {
  3975. const char *reasontmp = json_string_value(res);
  3976. size_t reasonLen = strlen(reasontmp);
  3977. if (reasonLen > 28)
  3978. reasonLen = 28;
  3979. reason[0] = ' '; reason[1] = '(';
  3980. memcpy(2 + reason, reasontmp, reasonLen);
  3981. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3982. memcpy(disposition + 7, reasontmp, reasonLen);
  3983. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3984. } else if (work->stratum && err && json_is_array(err)) {
  3985. json_t *reason_val = json_array_get(err, 1);
  3986. char *reason_str;
  3987. if (reason_val && json_is_string(reason_val)) {
  3988. reason_str = (char *)json_string_value(reason_val);
  3989. snprintf(reason, 31, " (%s)", reason_str);
  3990. }
  3991. }
  3992. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3993. sharelog(disposition, work);
  3994. }
  3995. /* Once we have more than a nominal amount of sequential rejects,
  3996. * at least 10 and more than 3 mins at the current utility,
  3997. * disable the pool because some pool error is likely to have
  3998. * ensued. Do not do this if we know the share just happened to
  3999. * be stale due to networking delays.
  4000. */
  4001. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  4002. double utility = total_accepted / total_secs * 60;
  4003. if (pool->seq_rejects > utility * 3) {
  4004. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  4005. pool->pool_no, pool->seq_rejects);
  4006. reject_pool(pool);
  4007. if (pool == current_pool())
  4008. switch_pools(NULL);
  4009. pool->seq_rejects = 0;
  4010. }
  4011. }
  4012. }
  4013. maybe_local_submit(work);
  4014. }
  4015. static char *submit_upstream_work_request(struct work *work)
  4016. {
  4017. char *hexstr = NULL;
  4018. char *s, *sd;
  4019. struct pool *pool = work->pool;
  4020. if (work->tr)
  4021. {
  4022. blktemplate_t * const tmpl = work->tr->tmpl;
  4023. json_t *req;
  4024. unsigned char data[80];
  4025. swap32yes(data, work->data, 80 / 4);
  4026. #if BLKMAKER_VERSION > 3
  4027. if (work->do_foreign_submit)
  4028. req = blkmk_submit_foreign_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4029. else
  4030. #endif
  4031. req = blkmk_submit_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4032. s = json_dumps(req, 0);
  4033. json_decref(req);
  4034. sd = malloc(161);
  4035. bin2hex(sd, data, 80);
  4036. } else {
  4037. /* build hex string */
  4038. hexstr = malloc((sizeof(work->data) * 2) + 1);
  4039. bin2hex(hexstr, work->data, sizeof(work->data));
  4040. /* build JSON-RPC request */
  4041. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  4042. s = realloc_strcat(s, hexstr);
  4043. s = realloc_strcat(s, "\" ], \"id\":1}");
  4044. free(hexstr);
  4045. sd = s;
  4046. }
  4047. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  4048. if (work->tr)
  4049. free(sd);
  4050. else
  4051. s = realloc_strcat(s, "\n");
  4052. return s;
  4053. }
  4054. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  4055. json_t *res, *err;
  4056. bool rc = false;
  4057. int thr_id = work->thr_id;
  4058. struct pool *pool = work->pool;
  4059. struct timeval tv_submit_reply;
  4060. time_t ts_submit_reply;
  4061. char worktime[200] = "";
  4062. cgtime(&tv_submit_reply);
  4063. ts_submit_reply = time(NULL);
  4064. if (unlikely(!val)) {
  4065. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  4066. if (!pool_tset(pool, &pool->submit_fail)) {
  4067. total_ro++;
  4068. pool->remotefail_occasions++;
  4069. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  4070. }
  4071. goto out;
  4072. } else if (pool_tclear(pool, &pool->submit_fail))
  4073. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4074. res = json_object_get(val, "result");
  4075. err = json_object_get(val, "error");
  4076. if (!QUIET) {
  4077. if (opt_worktime) {
  4078. char workclone[20];
  4079. struct tm _tm;
  4080. struct tm *tm, tm_getwork, tm_submit_reply;
  4081. tm = &_tm;
  4082. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  4083. (struct timeval *)&(work->tv_getwork));
  4084. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  4085. (struct timeval *)&(work->tv_getwork_reply));
  4086. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  4087. (struct timeval *)&(work->tv_work_start));
  4088. double work_to_submit = tdiff(ptv_submit,
  4089. (struct timeval *)&(work->tv_work_found));
  4090. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  4091. int diffplaces = 3;
  4092. localtime_r(&work->ts_getwork, tm);
  4093. memcpy(&tm_getwork, tm, sizeof(struct tm));
  4094. localtime_r(&ts_submit_reply, tm);
  4095. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  4096. if (work->clone) {
  4097. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  4098. tdiff((struct timeval *)&(work->tv_cloned),
  4099. (struct timeval *)&(work->tv_getwork_reply)));
  4100. }
  4101. else
  4102. strcpy(workclone, "O");
  4103. if (work->work_difficulty < 1)
  4104. diffplaces = 6;
  4105. snprintf(worktime, sizeof(worktime),
  4106. " <-%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",
  4107. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  4108. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  4109. work->getwork_mode, diffplaces, work->work_difficulty,
  4110. tm_getwork.tm_hour, tm_getwork.tm_min,
  4111. tm_getwork.tm_sec, getwork_time, workclone,
  4112. getwork_to_work, work_time, work_to_submit, submit_time,
  4113. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  4114. tm_submit_reply.tm_sec);
  4115. }
  4116. }
  4117. share_result(val, res, err, work, resubmit, worktime);
  4118. if (!opt_realquiet)
  4119. print_status(thr_id);
  4120. if (!want_per_device_stats) {
  4121. char logline[256];
  4122. struct cgpu_info *cgpu;
  4123. cgpu = get_thr_cgpu(thr_id);
  4124. get_statline(logline, sizeof(logline), cgpu);
  4125. applog(LOG_INFO, "%s", logline);
  4126. }
  4127. json_decref(val);
  4128. rc = true;
  4129. out:
  4130. return rc;
  4131. }
  4132. /* Specifies whether we can use this pool for work or not. */
  4133. static bool pool_unworkable(const struct pool * const pool)
  4134. {
  4135. if (pool->idle)
  4136. return true;
  4137. if (pool->enabled != POOL_ENABLED)
  4138. return true;
  4139. if (pool->has_stratum && !pool->stratum_active)
  4140. return true;
  4141. return false;
  4142. }
  4143. static
  4144. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4145. {
  4146. if (pool->enabled != POOL_ENABLED)
  4147. return false;
  4148. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4149. return true;
  4150. if (!cp)
  4151. cp = current_pool();
  4152. return (pool == cp);
  4153. }
  4154. static
  4155. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4156. {
  4157. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4158. }
  4159. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4160. * rolling average per 10 minutes and if pools start getting more, it biases
  4161. * away from them to distribute work evenly. The share count is reset to the
  4162. * rolling average every 10 minutes to not send all work to one pool after it
  4163. * has been disabled/out for an extended period. */
  4164. static struct pool *select_balanced(struct pool *cp)
  4165. {
  4166. int i, lowest = cp->shares;
  4167. struct pool *ret = cp;
  4168. for (i = 0; i < total_pools; i++) {
  4169. struct pool *pool = pools[i];
  4170. if (pool_unworkable(pool))
  4171. continue;
  4172. if (pool->shares < lowest) {
  4173. lowest = pool->shares;
  4174. ret = pool;
  4175. }
  4176. }
  4177. ret->shares++;
  4178. return ret;
  4179. }
  4180. static bool pool_active(struct pool *, bool pinging);
  4181. static void pool_died(struct pool *);
  4182. static struct pool *priority_pool(int choice);
  4183. static bool pool_unusable(struct pool *pool);
  4184. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4185. * it has any quota left. */
  4186. static inline struct pool *select_pool(bool lagging)
  4187. {
  4188. static int rotating_pool = 0;
  4189. struct pool *pool, *cp;
  4190. bool avail = false;
  4191. int tested, i;
  4192. cp = current_pool();
  4193. retry:
  4194. if (pool_strategy == POOL_BALANCE) {
  4195. pool = select_balanced(cp);
  4196. goto out;
  4197. }
  4198. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4199. pool = cp;
  4200. goto out;
  4201. } else
  4202. pool = NULL;
  4203. for (i = 0; i < total_pools; i++) {
  4204. struct pool *tp = pools[i];
  4205. if (tp->quota_used < tp->quota_gcd) {
  4206. avail = true;
  4207. break;
  4208. }
  4209. }
  4210. /* There are no pools with quota, so reset them. */
  4211. if (!avail) {
  4212. for (i = 0; i < total_pools; i++)
  4213. pools[i]->quota_used = 0;
  4214. if (++rotating_pool >= total_pools)
  4215. rotating_pool = 0;
  4216. }
  4217. /* Try to find the first pool in the rotation that is usable */
  4218. tested = 0;
  4219. while (!pool && tested++ < total_pools) {
  4220. pool = pools[rotating_pool];
  4221. if (pool->quota_used++ < pool->quota_gcd) {
  4222. if (!pool_unworkable(pool))
  4223. break;
  4224. /* Failover-only flag for load-balance means distribute
  4225. * unused quota to priority pool 0. */
  4226. if (opt_fail_only)
  4227. priority_pool(0)->quota_used--;
  4228. }
  4229. pool = NULL;
  4230. if (++rotating_pool >= total_pools)
  4231. rotating_pool = 0;
  4232. }
  4233. /* If there are no alive pools with quota, choose according to
  4234. * priority. */
  4235. if (!pool) {
  4236. for (i = 0; i < total_pools; i++) {
  4237. struct pool *tp = priority_pool(i);
  4238. if (!pool_unusable(tp)) {
  4239. pool = tp;
  4240. break;
  4241. }
  4242. }
  4243. }
  4244. /* If still nothing is usable, use the current pool */
  4245. if (!pool)
  4246. pool = cp;
  4247. out:
  4248. if (!pool_actively_in_use(pool, cp))
  4249. {
  4250. if (!pool_active(pool, false))
  4251. {
  4252. pool_died(pool);
  4253. goto retry;
  4254. }
  4255. pool_tclear(pool, &pool->idle);
  4256. }
  4257. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4258. return pool;
  4259. }
  4260. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4261. static const uint64_t diffone = 0xFFFF000000000000ull;
  4262. static double target_diff(const unsigned char *target)
  4263. {
  4264. double targ = 0;
  4265. signed int i;
  4266. for (i = 31; i >= 0; --i)
  4267. targ = (targ * 0x100) + target[i];
  4268. return DIFFEXACTONE / (targ ?: 1);
  4269. }
  4270. /*
  4271. * Calculate the work share difficulty
  4272. */
  4273. static void calc_diff(struct work *work, int known)
  4274. {
  4275. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4276. double difficulty;
  4277. if (!known) {
  4278. work->work_difficulty = target_diff(work->target);
  4279. } else
  4280. work->work_difficulty = known;
  4281. difficulty = work->work_difficulty;
  4282. pool_stats->last_diff = difficulty;
  4283. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4284. if (difficulty == pool_stats->min_diff)
  4285. pool_stats->min_diff_count++;
  4286. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4287. pool_stats->min_diff = difficulty;
  4288. pool_stats->min_diff_count = 1;
  4289. }
  4290. if (difficulty == pool_stats->max_diff)
  4291. pool_stats->max_diff_count++;
  4292. else if (difficulty > pool_stats->max_diff) {
  4293. pool_stats->max_diff = difficulty;
  4294. pool_stats->max_diff_count = 1;
  4295. }
  4296. }
  4297. static uint32_t benchmark_blkhdr[20];
  4298. static
  4299. void setup_benchmark_pool()
  4300. {
  4301. struct pool *pool;
  4302. want_longpoll = false;
  4303. // Temporarily disable opt_benchmark to avoid auto-removal
  4304. opt_benchmark = false;
  4305. pool = add_pool();
  4306. opt_benchmark = true;
  4307. pool->rpc_url = malloc(255);
  4308. strcpy(pool->rpc_url, "Benchmark");
  4309. pool->rpc_user = pool->rpc_url;
  4310. pool->rpc_pass = pool->rpc_url;
  4311. enable_pool(pool);
  4312. pool->idle = false;
  4313. successful_connect = true;
  4314. {
  4315. uint32_t * const blkhdr = benchmark_blkhdr;
  4316. blkhdr[2] = htobe32(1);
  4317. blkhdr[17] = htobe32(0x7fffffff); // timestamp
  4318. blkhdr[18] = htobe32(0x1700ffff); // "bits"
  4319. }
  4320. {
  4321. struct stratum_work * const swork = &pool->swork;
  4322. const int branchcount = 15; // 1 MB block
  4323. const size_t branchdatasz = branchcount * 0x20;
  4324. const size_t coinbase_sz = 6 * 1024;
  4325. bytes_resize(&swork->coinbase, coinbase_sz);
  4326. memset(bytes_buf(&swork->coinbase), '\xff', coinbase_sz);
  4327. swork->nonce2_offset = 0;
  4328. bytes_resize(&swork->merkle_bin, branchdatasz);
  4329. memset(bytes_buf(&swork->merkle_bin), '\xff', branchdatasz);
  4330. swork->merkles = branchcount;
  4331. memset(swork->header1, '\xff', 36);
  4332. swork->ntime = 0x7fffffff;
  4333. timer_unset(&swork->tv_received);
  4334. memcpy(swork->diffbits, "\x17\0\xff\xff", 4);
  4335. set_target_to_pdiff(swork->target, opt_scrypt ? (1./0x10000) : 1.);
  4336. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  4337. pool->nonce2 = 0;
  4338. }
  4339. }
  4340. void get_benchmark_work(struct work *work)
  4341. {
  4342. struct pool * const pool = pools[0];
  4343. uint32_t * const blkhdr = benchmark_blkhdr;
  4344. for (int i = 16; i >= 0; --i)
  4345. if (++blkhdr[i])
  4346. break;
  4347. memcpy(&work->data[ 0], blkhdr, 80);
  4348. memcpy(&work->data[80], workpadding_bin, 48);
  4349. calc_midstate(work);
  4350. memcpy(work->target, pool->swork.target, sizeof(work->target));
  4351. work->mandatory = true;
  4352. work->pool = pools[0];
  4353. cgtime(&work->tv_getwork);
  4354. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4355. copy_time(&work->tv_staged, &work->tv_getwork);
  4356. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4357. calc_diff(work, 0);
  4358. work_set_simple_ntime_roll_limit(work, 60, &work->tv_getwork);
  4359. }
  4360. static void wake_gws(void);
  4361. static void update_last_work(struct work *work)
  4362. {
  4363. if (!work->tr)
  4364. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4365. return;
  4366. struct pool *pool = work->pool;
  4367. mutex_lock(&pool->last_work_lock);
  4368. if (pool->last_work_copy)
  4369. free_work(pool->last_work_copy);
  4370. pool->last_work_copy = copy_work(work);
  4371. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4372. mutex_unlock(&pool->last_work_lock);
  4373. }
  4374. static
  4375. void gbt_req_target(json_t *req)
  4376. {
  4377. json_t *j;
  4378. json_t *n;
  4379. if (!request_target_str)
  4380. return;
  4381. j = json_object_get(req, "params");
  4382. if (!j)
  4383. {
  4384. n = json_array();
  4385. if (!n)
  4386. return;
  4387. if (json_object_set_new(req, "params", n))
  4388. goto erradd;
  4389. j = n;
  4390. }
  4391. n = json_array_get(j, 0);
  4392. if (!n)
  4393. {
  4394. n = json_object();
  4395. if (!n)
  4396. return;
  4397. if (json_array_append_new(j, n))
  4398. goto erradd;
  4399. }
  4400. j = n;
  4401. n = json_string(request_target_str);
  4402. if (!n)
  4403. return;
  4404. if (json_object_set_new(j, "target", n))
  4405. goto erradd;
  4406. return;
  4407. erradd:
  4408. json_decref(n);
  4409. }
  4410. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4411. {
  4412. char *rpc_req;
  4413. clean_work(work);
  4414. switch (proto) {
  4415. case PLP_GETWORK:
  4416. work->getwork_mode = GETWORK_MODE_POOL;
  4417. return strdup(getwork_req);
  4418. case PLP_GETBLOCKTEMPLATE:
  4419. work->getwork_mode = GETWORK_MODE_GBT;
  4420. blktemplate_t * const tmpl = blktmpl_create();
  4421. if (!tmpl)
  4422. goto gbtfail2;
  4423. work->tr = tmpl_makeref(tmpl);
  4424. gbt_capabilities_t caps = blktmpl_addcaps(tmpl);
  4425. if (!caps)
  4426. goto gbtfail;
  4427. caps |= GBT_LONGPOLL;
  4428. #if BLKMAKER_VERSION > 1
  4429. if (opt_coinbase_script.sz)
  4430. caps |= GBT_CBVALUE;
  4431. #endif
  4432. json_t *req = blktmpl_request_jansson(caps, lpid);
  4433. if (!req)
  4434. goto gbtfail;
  4435. if (probe)
  4436. gbt_req_target(req);
  4437. rpc_req = json_dumps(req, 0);
  4438. if (!rpc_req)
  4439. goto gbtfail;
  4440. json_decref(req);
  4441. return rpc_req;
  4442. default:
  4443. return NULL;
  4444. }
  4445. return NULL;
  4446. gbtfail:
  4447. tmpl_decref(work->tr);
  4448. work->tr = NULL;
  4449. gbtfail2:
  4450. return NULL;
  4451. }
  4452. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4453. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4454. static const char *pool_protocol_name(enum pool_protocol proto)
  4455. {
  4456. switch (proto) {
  4457. case PLP_GETBLOCKTEMPLATE:
  4458. return "getblocktemplate";
  4459. case PLP_GETWORK:
  4460. return "getwork";
  4461. default:
  4462. return "UNKNOWN";
  4463. }
  4464. }
  4465. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4466. {
  4467. switch (proto) {
  4468. case PLP_GETBLOCKTEMPLATE:
  4469. if (want_getwork)
  4470. return PLP_GETWORK;
  4471. default:
  4472. return PLP_NONE;
  4473. }
  4474. }
  4475. static bool get_upstream_work(struct work *work, CURL *curl)
  4476. {
  4477. struct pool *pool = work->pool;
  4478. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4479. struct timeval tv_elapsed;
  4480. json_t *val = NULL;
  4481. bool rc = false;
  4482. char *url;
  4483. enum pool_protocol proto;
  4484. char *rpc_req;
  4485. if (pool->proto == PLP_NONE)
  4486. pool->proto = PLP_GETBLOCKTEMPLATE;
  4487. tryagain:
  4488. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4489. work->pool = pool;
  4490. if (!rpc_req)
  4491. return false;
  4492. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4493. url = pool->rpc_url;
  4494. cgtime(&work->tv_getwork);
  4495. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4496. false, &work->rolltime, pool, false);
  4497. pool_stats->getwork_attempts++;
  4498. free(rpc_req);
  4499. if (likely(val)) {
  4500. rc = work_decode(pool, work, val);
  4501. if (unlikely(!rc))
  4502. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4503. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4504. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4505. pool->proto = proto;
  4506. goto tryagain;
  4507. } else
  4508. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4509. cgtime(&work->tv_getwork_reply);
  4510. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4511. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4512. pool_stats->getwork_wait_rolling /= 1.63;
  4513. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4514. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4515. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4516. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4517. }
  4518. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4519. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4520. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4521. }
  4522. pool_stats->getwork_calls++;
  4523. work->pool = pool;
  4524. work->longpoll = false;
  4525. calc_diff(work, 0);
  4526. total_getworks++;
  4527. pool->getwork_requested++;
  4528. if (rc)
  4529. update_last_work(work);
  4530. if (likely(val))
  4531. json_decref(val);
  4532. return rc;
  4533. }
  4534. #ifdef HAVE_CURSES
  4535. static void disable_curses(void)
  4536. {
  4537. if (curses_active_locked()) {
  4538. use_curses = false;
  4539. curses_active = false;
  4540. leaveok(logwin, false);
  4541. leaveok(statuswin, false);
  4542. leaveok(mainwin, false);
  4543. nocbreak();
  4544. echo();
  4545. delwin(logwin);
  4546. delwin(statuswin);
  4547. delwin(mainwin);
  4548. endwin();
  4549. #ifdef WIN32
  4550. // Move the cursor to after curses output.
  4551. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4552. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4553. COORD coord;
  4554. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4555. coord.X = 0;
  4556. coord.Y = csbi.dwSize.Y - 1;
  4557. SetConsoleCursorPosition(hout, coord);
  4558. }
  4559. #endif
  4560. unlock_curses();
  4561. }
  4562. }
  4563. #endif
  4564. static void __kill_work(void)
  4565. {
  4566. struct cgpu_info *cgpu;
  4567. struct thr_info *thr;
  4568. int i;
  4569. if (!successful_connect)
  4570. return;
  4571. applog(LOG_INFO, "Received kill message");
  4572. shutting_down = true;
  4573. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4574. notifier_wake(submit_waiting_notifier);
  4575. #ifdef USE_LIBMICROHTTPD
  4576. httpsrv_stop();
  4577. #endif
  4578. applog(LOG_DEBUG, "Killing off watchpool thread");
  4579. /* Kill the watchpool thread */
  4580. thr = &control_thr[watchpool_thr_id];
  4581. thr_info_cancel(thr);
  4582. applog(LOG_DEBUG, "Killing off watchdog thread");
  4583. /* Kill the watchdog thread */
  4584. thr = &control_thr[watchdog_thr_id];
  4585. thr_info_cancel(thr);
  4586. applog(LOG_DEBUG, "Shutting down mining threads");
  4587. for (i = 0; i < mining_threads; i++) {
  4588. thr = get_thread(i);
  4589. if (!thr)
  4590. continue;
  4591. cgpu = thr->cgpu;
  4592. if (!cgpu)
  4593. continue;
  4594. if (!cgpu->threads)
  4595. continue;
  4596. cgpu->shutdown = true;
  4597. thr->work_restart = true;
  4598. notifier_wake(thr->notifier);
  4599. notifier_wake(thr->work_restart_notifier);
  4600. }
  4601. sleep(1);
  4602. applog(LOG_DEBUG, "Killing off mining threads");
  4603. /* Kill the mining threads*/
  4604. for (i = 0; i < mining_threads; i++) {
  4605. thr = get_thread(i);
  4606. if (!thr)
  4607. continue;
  4608. cgpu = thr->cgpu;
  4609. if (cgpu->threads)
  4610. {
  4611. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4612. thr_info_cancel(thr);
  4613. }
  4614. cgpu->status = LIFE_DEAD2;
  4615. }
  4616. /* Stop the others */
  4617. applog(LOG_DEBUG, "Killing off API thread");
  4618. thr = &control_thr[api_thr_id];
  4619. thr_info_cancel(thr);
  4620. }
  4621. /* This should be the common exit path */
  4622. void kill_work(void)
  4623. {
  4624. __kill_work();
  4625. quit(0, "Shutdown signal received.");
  4626. }
  4627. static
  4628. #ifdef WIN32
  4629. #ifndef _WIN64
  4630. const
  4631. #endif
  4632. #endif
  4633. char **initial_args;
  4634. void _bfg_clean_up(bool);
  4635. void app_restart(void)
  4636. {
  4637. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4638. __kill_work();
  4639. _bfg_clean_up(true);
  4640. #if defined(unix) || defined(__APPLE__)
  4641. if (forkpid > 0) {
  4642. kill(forkpid, SIGTERM);
  4643. forkpid = 0;
  4644. }
  4645. #endif
  4646. execv(initial_args[0], initial_args);
  4647. applog(LOG_WARNING, "Failed to restart application");
  4648. }
  4649. static void sighandler(int __maybe_unused sig)
  4650. {
  4651. /* Restore signal handlers so we can still quit if kill_work fails */
  4652. sigaction(SIGTERM, &termhandler, NULL);
  4653. sigaction(SIGINT, &inthandler, NULL);
  4654. kill_work();
  4655. }
  4656. static void start_longpoll(void);
  4657. static void stop_longpoll(void);
  4658. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4659. * this pool. */
  4660. static void recruit_curl(struct pool *pool)
  4661. {
  4662. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4663. if (unlikely(!ce))
  4664. quit(1, "Failed to calloc in recruit_curl");
  4665. ce->curl = curl_easy_init();
  4666. if (unlikely(!ce->curl))
  4667. quit(1, "Failed to init in recruit_curl");
  4668. LL_PREPEND(pool->curllist, ce);
  4669. pool->curls++;
  4670. }
  4671. /* Grab an available curl if there is one. If not, then recruit extra curls
  4672. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4673. * and there are already 5 curls in circulation. Limit total number to the
  4674. * number of mining threads per pool as well to prevent blasting a pool during
  4675. * network delays/outages. */
  4676. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4677. {
  4678. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4679. bool recruited = false;
  4680. struct curl_ent *ce;
  4681. mutex_lock(&pool->pool_lock);
  4682. retry:
  4683. if (!pool->curls) {
  4684. recruit_curl(pool);
  4685. recruited = true;
  4686. } else if (!pool->curllist) {
  4687. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4688. if (!blocking) {
  4689. mutex_unlock(&pool->pool_lock);
  4690. return NULL;
  4691. }
  4692. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4693. goto retry;
  4694. } else {
  4695. recruit_curl(pool);
  4696. recruited = true;
  4697. }
  4698. }
  4699. ce = pool->curllist;
  4700. LL_DELETE(pool->curllist, ce);
  4701. mutex_unlock(&pool->pool_lock);
  4702. if (recruited)
  4703. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4704. return ce;
  4705. }
  4706. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4707. {
  4708. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4709. }
  4710. __maybe_unused
  4711. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4712. {
  4713. return pop_curl_entry3(pool, 1);
  4714. }
  4715. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4716. {
  4717. mutex_lock(&pool->pool_lock);
  4718. if (!ce || !ce->curl)
  4719. quithere(1, "Attempted to add NULL");
  4720. LL_PREPEND(pool->curllist, ce);
  4721. cgtime(&ce->tv);
  4722. pthread_cond_broadcast(&pool->cr_cond);
  4723. mutex_unlock(&pool->pool_lock);
  4724. }
  4725. bool stale_work(struct work *work, bool share);
  4726. static inline bool should_roll(struct work *work)
  4727. {
  4728. struct timeval now;
  4729. time_t expiry;
  4730. if (!pool_actively_in_use(work->pool, NULL))
  4731. return false;
  4732. if (stale_work(work, false))
  4733. return false;
  4734. if (work->rolltime > opt_scantime)
  4735. expiry = work->rolltime;
  4736. else
  4737. expiry = opt_scantime;
  4738. expiry = expiry * 2 / 3;
  4739. /* We shouldn't roll if we're unlikely to get one shares' duration
  4740. * work out of doing so */
  4741. cgtime(&now);
  4742. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4743. return false;
  4744. return true;
  4745. }
  4746. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4747. * reject blocks as invalid. */
  4748. static inline bool can_roll(struct work *work)
  4749. {
  4750. if (work->stratum)
  4751. return false;
  4752. if (!(work->pool && !work->clone))
  4753. return false;
  4754. if (work->tr)
  4755. {
  4756. if (stale_work(work, false))
  4757. return false;
  4758. return blkmk_work_left(work->tr->tmpl);
  4759. }
  4760. return (work->rolltime &&
  4761. work->rolls < 7000 && !stale_work(work, false));
  4762. }
  4763. static void roll_work(struct work *work)
  4764. {
  4765. if (work->tr)
  4766. {
  4767. struct timeval tv_now;
  4768. cgtime(&tv_now);
  4769. if (blkmk_get_data(work->tr->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4770. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4771. swap32yes(work->data, work->data, 80 / 4);
  4772. calc_midstate(work);
  4773. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4774. } else {
  4775. uint32_t *work_ntime;
  4776. uint32_t ntime;
  4777. work_ntime = (uint32_t *)(work->data + 68);
  4778. ntime = be32toh(*work_ntime);
  4779. ntime++;
  4780. *work_ntime = htobe32(ntime);
  4781. work_set_simple_ntime_roll_limit(work, 0, &work->ntime_roll_limits.tv_ref);
  4782. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4783. }
  4784. local_work++;
  4785. work->rolls++;
  4786. work->blk.nonce = 0;
  4787. /* This is now a different work item so it needs a different ID for the
  4788. * hashtable */
  4789. work->id = total_work++;
  4790. }
  4791. /* Duplicates any dynamically allocated arrays within the work struct to
  4792. * prevent a copied work struct from freeing ram belonging to another struct */
  4793. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4794. {
  4795. int id = work->id;
  4796. clean_work(work);
  4797. memcpy(work, base_work, sizeof(struct work));
  4798. /* Keep the unique new id assigned during make_work to prevent copied
  4799. * work from having the same id. */
  4800. work->id = id;
  4801. if (base_work->job_id)
  4802. work->job_id = strdup(base_work->job_id);
  4803. if (base_work->nonce1)
  4804. work->nonce1 = strdup(base_work->nonce1);
  4805. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4806. if (base_work->tr)
  4807. tmpl_incref(base_work->tr);
  4808. if (noffset)
  4809. {
  4810. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4811. uint32_t ntime = be32toh(*work_ntime);
  4812. ntime += noffset;
  4813. *work_ntime = htobe32(ntime);
  4814. }
  4815. if (work->device_data_dup_func)
  4816. work->device_data = work->device_data_dup_func(work);
  4817. }
  4818. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4819. * for all dynamically allocated arrays within the struct */
  4820. struct work *copy_work(const struct work *base_work)
  4821. {
  4822. struct work *work = make_work();
  4823. _copy_work(work, base_work, 0);
  4824. return work;
  4825. }
  4826. void __copy_work(struct work *work, const struct work *base_work)
  4827. {
  4828. _copy_work(work, base_work, 0);
  4829. }
  4830. static struct work *make_clone(struct work *work)
  4831. {
  4832. struct work *work_clone = copy_work(work);
  4833. work_clone->clone = true;
  4834. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4835. work_clone->longpoll = false;
  4836. work_clone->mandatory = false;
  4837. /* Make cloned work appear slightly older to bias towards keeping the
  4838. * master work item which can be further rolled */
  4839. work_clone->tv_staged.tv_sec -= 1;
  4840. return work_clone;
  4841. }
  4842. static void stage_work(struct work *work);
  4843. static bool clone_available(void)
  4844. {
  4845. struct work *work_clone = NULL, *work, *tmp;
  4846. bool cloned = false;
  4847. mutex_lock(stgd_lock);
  4848. if (!staged_rollable)
  4849. goto out_unlock;
  4850. HASH_ITER(hh, staged_work, work, tmp) {
  4851. if (can_roll(work) && should_roll(work)) {
  4852. roll_work(work);
  4853. work_clone = make_clone(work);
  4854. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4855. roll_work(work);
  4856. cloned = true;
  4857. break;
  4858. }
  4859. }
  4860. out_unlock:
  4861. mutex_unlock(stgd_lock);
  4862. if (cloned) {
  4863. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4864. stage_work(work_clone);
  4865. }
  4866. return cloned;
  4867. }
  4868. static void pool_died(struct pool *pool)
  4869. {
  4870. if (!pool_tset(pool, &pool->idle)) {
  4871. cgtime(&pool->tv_idle);
  4872. if (pool == current_pool()) {
  4873. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4874. switch_pools(NULL);
  4875. } else
  4876. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4877. }
  4878. }
  4879. bool stale_work(struct work *work, bool share)
  4880. {
  4881. unsigned work_expiry;
  4882. struct pool *pool;
  4883. uint32_t block_id;
  4884. unsigned getwork_delay;
  4885. if (opt_benchmark)
  4886. return false;
  4887. block_id = ((uint32_t*)work->data)[1];
  4888. pool = work->pool;
  4889. /* Technically the rolltime should be correct but some pools
  4890. * advertise a broken expire= that is lower than a meaningful
  4891. * scantime */
  4892. if (work->rolltime >= opt_scantime || work->tr)
  4893. work_expiry = work->rolltime;
  4894. else
  4895. work_expiry = opt_expiry;
  4896. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4897. if (work_expiry > max_expiry)
  4898. work_expiry = max_expiry;
  4899. if (share) {
  4900. /* If the share isn't on this pool's latest block, it's stale */
  4901. if (pool->block_id && pool->block_id != block_id)
  4902. {
  4903. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4904. return true;
  4905. }
  4906. /* If the pool doesn't want old shares, then any found in work before
  4907. * the most recent longpoll is stale */
  4908. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4909. {
  4910. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4911. return true;
  4912. }
  4913. } else {
  4914. /* If this work isn't for the latest Bitcoin block, it's stale */
  4915. /* But only care about the current pool if failover-only */
  4916. if (enabled_pools <= 1 || opt_fail_only) {
  4917. if (pool->block_id && block_id != pool->block_id)
  4918. {
  4919. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4920. return true;
  4921. }
  4922. } else {
  4923. if (block_id != current_block_id)
  4924. {
  4925. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4926. return true;
  4927. }
  4928. }
  4929. /* If the pool has asked us to restart since this work, it's stale */
  4930. if (work->work_restart_id != pool->work_restart_id)
  4931. {
  4932. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4933. return true;
  4934. }
  4935. if (pool->has_stratum && work->job_id) {
  4936. bool same_job;
  4937. if (!pool->stratum_active || !pool->stratum_notify) {
  4938. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4939. return true;
  4940. }
  4941. same_job = true;
  4942. cg_rlock(&pool->data_lock);
  4943. if (strcmp(work->job_id, pool->swork.job_id))
  4944. same_job = false;
  4945. cg_runlock(&pool->data_lock);
  4946. if (!same_job) {
  4947. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4948. return true;
  4949. }
  4950. }
  4951. /* Factor in the average getwork delay of this pool, rounding it up to
  4952. * the nearest second */
  4953. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4954. if (unlikely(work_expiry <= getwork_delay + 5))
  4955. work_expiry = 5;
  4956. else
  4957. work_expiry -= getwork_delay;
  4958. }
  4959. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4960. if (elapsed_since_staged > work_expiry) {
  4961. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4962. return true;
  4963. }
  4964. /* If the user only wants strict failover, any work from a pool other than
  4965. * the current one is always considered stale */
  4966. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4967. {
  4968. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4969. return true;
  4970. }
  4971. return false;
  4972. }
  4973. static double share_diff(const struct work *work)
  4974. {
  4975. double ret;
  4976. bool new_best = false;
  4977. ret = target_diff(work->hash);
  4978. cg_wlock(&control_lock);
  4979. if (unlikely(ret > best_diff)) {
  4980. new_best = true;
  4981. best_diff = ret;
  4982. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4983. }
  4984. if (unlikely(ret > work->pool->best_diff))
  4985. work->pool->best_diff = ret;
  4986. cg_wunlock(&control_lock);
  4987. if (unlikely(new_best))
  4988. applog(LOG_INFO, "New best share: %s", best_share);
  4989. return ret;
  4990. }
  4991. static void regen_hash(struct work *work)
  4992. {
  4993. hash_data(work->hash, work->data);
  4994. }
  4995. static void rebuild_hash(struct work *work)
  4996. {
  4997. if (opt_scrypt)
  4998. scrypt_regenhash(work);
  4999. else
  5000. regen_hash(work);
  5001. work->share_diff = share_diff(work);
  5002. if (unlikely(work->share_diff >= current_diff)) {
  5003. work->block = true;
  5004. work->pool->solved++;
  5005. found_blocks++;
  5006. work->mandatory = true;
  5007. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  5008. }
  5009. }
  5010. static void submit_discard_share2(const char *reason, struct work *work)
  5011. {
  5012. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  5013. sharelog(reason, work);
  5014. mutex_lock(&stats_lock);
  5015. ++total_stale;
  5016. ++cgpu->stale;
  5017. ++(work->pool->stale_shares);
  5018. total_diff_stale += work->work_difficulty;
  5019. cgpu->diff_stale += work->work_difficulty;
  5020. work->pool->diff_stale += work->work_difficulty;
  5021. mutex_unlock(&stats_lock);
  5022. }
  5023. static void submit_discard_share(struct work *work)
  5024. {
  5025. submit_discard_share2("discard", work);
  5026. }
  5027. struct submit_work_state {
  5028. struct work *work;
  5029. bool resubmit;
  5030. struct curl_ent *ce;
  5031. int failures;
  5032. struct timeval tv_staleexpire;
  5033. char *s;
  5034. struct timeval tv_submit;
  5035. struct submit_work_state *next;
  5036. };
  5037. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  5038. {
  5039. long *p_timeout_us = userp;
  5040. const long max_ms = LONG_MAX / 1000;
  5041. if (max_ms < timeout_ms)
  5042. timeout_ms = max_ms;
  5043. *p_timeout_us = timeout_ms * 1000;
  5044. return 0;
  5045. }
  5046. static void sws_has_ce(struct submit_work_state *sws)
  5047. {
  5048. struct pool *pool = sws->work->pool;
  5049. sws->s = submit_upstream_work_request(sws->work);
  5050. cgtime(&sws->tv_submit);
  5051. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5052. }
  5053. static struct submit_work_state *begin_submission(struct work *work)
  5054. {
  5055. struct pool *pool;
  5056. struct submit_work_state *sws = NULL;
  5057. pool = work->pool;
  5058. sws = malloc(sizeof(*sws));
  5059. *sws = (struct submit_work_state){
  5060. .work = work,
  5061. };
  5062. rebuild_hash(work);
  5063. if (stale_work(work, true)) {
  5064. work->stale = true;
  5065. if (opt_submit_stale)
  5066. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  5067. else if (pool->submit_old)
  5068. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  5069. else {
  5070. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  5071. submit_discard_share(work);
  5072. goto out;
  5073. }
  5074. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5075. }
  5076. if (work->stratum) {
  5077. char *s;
  5078. s = malloc(1024);
  5079. sws->s = s;
  5080. } else {
  5081. /* submit solution to bitcoin via JSON-RPC */
  5082. sws->ce = pop_curl_entry2(pool, false);
  5083. if (sws->ce) {
  5084. sws_has_ce(sws);
  5085. } else {
  5086. sws->next = pool->sws_waiting_on_curl;
  5087. pool->sws_waiting_on_curl = sws;
  5088. if (sws->next)
  5089. applog(LOG_DEBUG, "submit_thread queuing submission");
  5090. else
  5091. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  5092. }
  5093. }
  5094. return sws;
  5095. out:
  5096. free(sws);
  5097. return NULL;
  5098. }
  5099. static bool retry_submission(struct submit_work_state *sws)
  5100. {
  5101. struct work *work = sws->work;
  5102. struct pool *pool = work->pool;
  5103. sws->resubmit = true;
  5104. if ((!work->stale) && stale_work(work, true)) {
  5105. work->stale = true;
  5106. if (opt_submit_stale)
  5107. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  5108. else if (pool->submit_old)
  5109. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  5110. else {
  5111. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  5112. submit_discard_share(work);
  5113. return false;
  5114. }
  5115. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5116. }
  5117. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  5118. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  5119. submit_discard_share(work);
  5120. return false;
  5121. }
  5122. else if (work->stale) {
  5123. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  5124. {
  5125. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  5126. submit_discard_share(work);
  5127. return false;
  5128. }
  5129. }
  5130. /* pause, then restart work-request loop */
  5131. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  5132. cgtime(&sws->tv_submit);
  5133. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5134. return true;
  5135. }
  5136. static void free_sws(struct submit_work_state *sws)
  5137. {
  5138. free(sws->s);
  5139. free_work(sws->work);
  5140. free(sws);
  5141. }
  5142. static void *submit_work_thread(__maybe_unused void *userdata)
  5143. {
  5144. int wip = 0;
  5145. CURLM *curlm;
  5146. long curlm_timeout_us = -1;
  5147. struct timeval curlm_timer;
  5148. struct submit_work_state *sws, **swsp;
  5149. struct submit_work_state *write_sws = NULL;
  5150. unsigned tsreduce = 0;
  5151. pthread_detach(pthread_self());
  5152. RenameThread("submit_work");
  5153. applog(LOG_DEBUG, "Creating extra submit work thread");
  5154. curlm = curl_multi_init();
  5155. curlm_timeout_us = -1;
  5156. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5157. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5158. fd_set rfds, wfds, efds;
  5159. int maxfd;
  5160. struct timeval tv_timeout, tv_now;
  5161. int n;
  5162. CURLMsg *cm;
  5163. FD_ZERO(&rfds);
  5164. while (1) {
  5165. mutex_lock(&submitting_lock);
  5166. total_submitting -= tsreduce;
  5167. tsreduce = 0;
  5168. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5169. notifier_read(submit_waiting_notifier);
  5170. }
  5171. // Receive any new submissions
  5172. while (submit_waiting) {
  5173. struct work *work = submit_waiting;
  5174. DL_DELETE(submit_waiting, work);
  5175. if ( (sws = begin_submission(work)) ) {
  5176. if (sws->ce)
  5177. curl_multi_add_handle(curlm, sws->ce->curl);
  5178. else if (sws->s) {
  5179. sws->next = write_sws;
  5180. write_sws = sws;
  5181. }
  5182. ++wip;
  5183. }
  5184. else {
  5185. --total_submitting;
  5186. free_work(work);
  5187. }
  5188. }
  5189. if (unlikely(shutting_down && !wip))
  5190. break;
  5191. mutex_unlock(&submitting_lock);
  5192. FD_ZERO(&rfds);
  5193. FD_ZERO(&wfds);
  5194. FD_ZERO(&efds);
  5195. tv_timeout.tv_sec = -1;
  5196. // Setup cURL with select
  5197. // Need to call perform to ensure the timeout gets updated
  5198. curl_multi_perform(curlm, &n);
  5199. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5200. if (curlm_timeout_us >= 0)
  5201. {
  5202. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5203. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5204. }
  5205. // Setup waiting stratum submissions with select
  5206. for (sws = write_sws; sws; sws = sws->next)
  5207. {
  5208. struct pool *pool = sws->work->pool;
  5209. int fd = pool->sock;
  5210. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5211. continue;
  5212. FD_SET(fd, &wfds);
  5213. set_maxfd(&maxfd, fd);
  5214. }
  5215. // Setup "submit waiting" notifier with select
  5216. FD_SET(submit_waiting_notifier[0], &rfds);
  5217. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5218. // Wait for something interesting to happen :)
  5219. cgtime(&tv_now);
  5220. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5221. FD_ZERO(&rfds);
  5222. continue;
  5223. }
  5224. // Handle any stratum ready-to-write results
  5225. for (swsp = &write_sws; (sws = *swsp); ) {
  5226. struct work *work = sws->work;
  5227. struct pool *pool = work->pool;
  5228. int fd = pool->sock;
  5229. bool sessionid_match;
  5230. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5231. next_write_sws:
  5232. // TODO: Check if stale, possibly discard etc
  5233. swsp = &sws->next;
  5234. continue;
  5235. }
  5236. cg_rlock(&pool->data_lock);
  5237. // 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
  5238. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5239. sessionid_match = (!pool->swork.nonce1) || !strcmp(work->nonce1, pool->swork.nonce1);
  5240. cg_runlock(&pool->data_lock);
  5241. if (!sessionid_match)
  5242. {
  5243. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5244. submit_discard_share2("disconnect", work);
  5245. ++tsreduce;
  5246. next_write_sws_del:
  5247. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5248. FD_CLR(fd, &wfds);
  5249. // Delete sws for this submission, since we're done with it
  5250. *swsp = sws->next;
  5251. free_sws(sws);
  5252. --wip;
  5253. continue;
  5254. }
  5255. char *s = sws->s;
  5256. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5257. int sshare_id;
  5258. uint32_t nonce;
  5259. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5260. char noncehex[9];
  5261. char ntimehex[9];
  5262. sshare->work = copy_work(work);
  5263. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5264. nonce = *((uint32_t *)(work->data + 76));
  5265. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5266. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5267. mutex_lock(&sshare_lock);
  5268. /* Give the stratum share a unique id */
  5269. sshare_id =
  5270. sshare->id = swork_id++;
  5271. HASH_ADD_INT(stratum_shares, id, sshare);
  5272. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5273. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5274. mutex_unlock(&sshare_lock);
  5275. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5276. if (likely(stratum_send(pool, s, strlen(s)))) {
  5277. if (pool_tclear(pool, &pool->submit_fail))
  5278. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5279. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5280. goto next_write_sws_del;
  5281. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5282. // Undo stuff
  5283. mutex_lock(&sshare_lock);
  5284. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5285. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5286. if (sshare)
  5287. HASH_DEL(stratum_shares, sshare);
  5288. mutex_unlock(&sshare_lock);
  5289. if (sshare)
  5290. {
  5291. free_work(sshare->work);
  5292. free(sshare);
  5293. }
  5294. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5295. total_ro++;
  5296. pool->remotefail_occasions++;
  5297. if (!sshare)
  5298. goto next_write_sws_del;
  5299. goto next_write_sws;
  5300. }
  5301. }
  5302. // Handle any cURL activities
  5303. curl_multi_perform(curlm, &n);
  5304. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5305. if (cm->msg == CURLMSG_DONE)
  5306. {
  5307. bool finished;
  5308. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5309. curl_multi_remove_handle(curlm, cm->easy_handle);
  5310. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5311. if (!finished) {
  5312. if (retry_submission(sws))
  5313. curl_multi_add_handle(curlm, sws->ce->curl);
  5314. else
  5315. finished = true;
  5316. }
  5317. if (finished) {
  5318. --wip;
  5319. ++tsreduce;
  5320. struct pool *pool = sws->work->pool;
  5321. if (pool->sws_waiting_on_curl) {
  5322. pool->sws_waiting_on_curl->ce = sws->ce;
  5323. sws_has_ce(pool->sws_waiting_on_curl);
  5324. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5325. curl_multi_add_handle(curlm, sws->ce->curl);
  5326. } else {
  5327. push_curl_entry(sws->ce, sws->work->pool);
  5328. }
  5329. free_sws(sws);
  5330. }
  5331. }
  5332. }
  5333. }
  5334. assert(!write_sws);
  5335. mutex_unlock(&submitting_lock);
  5336. curl_multi_cleanup(curlm);
  5337. applog(LOG_DEBUG, "submit_work thread exiting");
  5338. return NULL;
  5339. }
  5340. /* Find the pool that currently has the highest priority */
  5341. static struct pool *priority_pool(int choice)
  5342. {
  5343. struct pool *ret = NULL;
  5344. int i;
  5345. for (i = 0; i < total_pools; i++) {
  5346. struct pool *pool = pools[i];
  5347. if (pool->prio == choice) {
  5348. ret = pool;
  5349. break;
  5350. }
  5351. }
  5352. if (unlikely(!ret)) {
  5353. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5354. return pools[choice];
  5355. }
  5356. return ret;
  5357. }
  5358. int prioritize_pools(char *param, int *pid)
  5359. {
  5360. char *ptr, *next;
  5361. int i, pr, prio = 0;
  5362. if (total_pools == 0) {
  5363. return MSG_NOPOOL;
  5364. }
  5365. if (param == NULL || *param == '\0') {
  5366. return MSG_MISPID;
  5367. }
  5368. bool pools_changed[total_pools];
  5369. int new_prio[total_pools];
  5370. for (i = 0; i < total_pools; ++i)
  5371. pools_changed[i] = false;
  5372. next = param;
  5373. while (next && *next) {
  5374. ptr = next;
  5375. next = strchr(ptr, ',');
  5376. if (next)
  5377. *(next++) = '\0';
  5378. i = atoi(ptr);
  5379. if (i < 0 || i >= total_pools) {
  5380. *pid = i;
  5381. return MSG_INVPID;
  5382. }
  5383. if (pools_changed[i]) {
  5384. *pid = i;
  5385. return MSG_DUPPID;
  5386. }
  5387. pools_changed[i] = true;
  5388. new_prio[i] = prio++;
  5389. }
  5390. // Only change them if no errors
  5391. for (i = 0; i < total_pools; i++) {
  5392. if (pools_changed[i])
  5393. pools[i]->prio = new_prio[i];
  5394. }
  5395. // In priority order, cycle through the unchanged pools and append them
  5396. for (pr = 0; pr < total_pools; pr++)
  5397. for (i = 0; i < total_pools; i++) {
  5398. if (!pools_changed[i] && pools[i]->prio == pr) {
  5399. pools[i]->prio = prio++;
  5400. pools_changed[i] = true;
  5401. break;
  5402. }
  5403. }
  5404. if (current_pool()->prio)
  5405. switch_pools(NULL);
  5406. return MSG_POOLPRIO;
  5407. }
  5408. void validate_pool_priorities(void)
  5409. {
  5410. // TODO: this should probably do some sort of logging
  5411. int i, j;
  5412. bool used[total_pools];
  5413. bool valid[total_pools];
  5414. for (i = 0; i < total_pools; i++)
  5415. used[i] = valid[i] = false;
  5416. for (i = 0; i < total_pools; i++) {
  5417. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5418. if (!used[pools[i]->prio]) {
  5419. valid[i] = true;
  5420. used[pools[i]->prio] = true;
  5421. }
  5422. }
  5423. }
  5424. for (i = 0; i < total_pools; i++) {
  5425. if (!valid[i]) {
  5426. for (j = 0; j < total_pools; j++) {
  5427. if (!used[j]) {
  5428. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5429. pools[i]->prio = j;
  5430. used[j] = true;
  5431. break;
  5432. }
  5433. }
  5434. }
  5435. }
  5436. }
  5437. static void clear_pool_work(struct pool *pool);
  5438. /* Specifies whether we can switch to this pool or not. */
  5439. static bool pool_unusable(struct pool *pool)
  5440. {
  5441. if (pool->idle)
  5442. return true;
  5443. if (pool->enabled != POOL_ENABLED)
  5444. return true;
  5445. return false;
  5446. }
  5447. void switch_pools(struct pool *selected)
  5448. {
  5449. struct pool *pool, *last_pool;
  5450. int i, pool_no, next_pool;
  5451. cg_wlock(&control_lock);
  5452. last_pool = currentpool;
  5453. pool_no = currentpool->pool_no;
  5454. /* Switch selected to pool number 0 and move the rest down */
  5455. if (selected) {
  5456. if (selected->prio != 0) {
  5457. for (i = 0; i < total_pools; i++) {
  5458. pool = pools[i];
  5459. if (pool->prio < selected->prio)
  5460. pool->prio++;
  5461. }
  5462. selected->prio = 0;
  5463. }
  5464. }
  5465. switch (pool_strategy) {
  5466. /* All of these set to the master pool */
  5467. case POOL_BALANCE:
  5468. case POOL_FAILOVER:
  5469. case POOL_LOADBALANCE:
  5470. for (i = 0; i < total_pools; i++) {
  5471. pool = priority_pool(i);
  5472. if (pool_unusable(pool))
  5473. continue;
  5474. pool_no = pool->pool_no;
  5475. break;
  5476. }
  5477. break;
  5478. /* Both of these simply increment and cycle */
  5479. case POOL_ROUNDROBIN:
  5480. case POOL_ROTATE:
  5481. if (selected && !selected->idle) {
  5482. pool_no = selected->pool_no;
  5483. break;
  5484. }
  5485. next_pool = pool_no;
  5486. /* Select the next alive pool */
  5487. for (i = 1; i < total_pools; i++) {
  5488. next_pool++;
  5489. if (next_pool >= total_pools)
  5490. next_pool = 0;
  5491. pool = pools[next_pool];
  5492. if (pool_unusable(pool))
  5493. continue;
  5494. pool_no = next_pool;
  5495. break;
  5496. }
  5497. break;
  5498. default:
  5499. break;
  5500. }
  5501. currentpool = pools[pool_no];
  5502. pool = currentpool;
  5503. cg_wunlock(&control_lock);
  5504. /* Set the lagging flag to avoid pool not providing work fast enough
  5505. * messages in failover only mode since we have to get all fresh work
  5506. * as in restart_threads */
  5507. if (opt_fail_only)
  5508. pool_tset(pool, &pool->lagging);
  5509. if (pool != last_pool)
  5510. {
  5511. pool->block_id = 0;
  5512. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5513. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5514. if (pool_localgen(pool) || opt_fail_only)
  5515. clear_pool_work(last_pool);
  5516. }
  5517. }
  5518. mutex_lock(&lp_lock);
  5519. pthread_cond_broadcast(&lp_cond);
  5520. mutex_unlock(&lp_lock);
  5521. }
  5522. static void discard_work(struct work *work)
  5523. {
  5524. if (!work->clone && !work->rolls && !work->mined) {
  5525. if (work->pool) {
  5526. work->pool->discarded_work++;
  5527. work->pool->quota_used--;
  5528. work->pool->works--;
  5529. }
  5530. total_discarded++;
  5531. applog(LOG_DEBUG, "Discarded work");
  5532. } else
  5533. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5534. free_work(work);
  5535. }
  5536. static void wake_gws(void)
  5537. {
  5538. mutex_lock(stgd_lock);
  5539. pthread_cond_signal(&gws_cond);
  5540. mutex_unlock(stgd_lock);
  5541. }
  5542. static void discard_stale(void)
  5543. {
  5544. struct work *work, *tmp;
  5545. int stale = 0;
  5546. mutex_lock(stgd_lock);
  5547. HASH_ITER(hh, staged_work, work, tmp) {
  5548. if (stale_work(work, false)) {
  5549. HASH_DEL(staged_work, work);
  5550. discard_work(work);
  5551. stale++;
  5552. staged_full = false;
  5553. }
  5554. }
  5555. pthread_cond_signal(&gws_cond);
  5556. mutex_unlock(stgd_lock);
  5557. if (stale)
  5558. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5559. }
  5560. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5561. {
  5562. bool rv;
  5563. struct timeval tv, orig;
  5564. ldiv_t d;
  5565. d = ldiv(ustime, 1000000);
  5566. tv = (struct timeval){
  5567. .tv_sec = d.quot,
  5568. .tv_usec = d.rem,
  5569. };
  5570. orig = work->tv_staged;
  5571. timersub(&orig, &tv, &work->tv_staged);
  5572. rv = stale_work(work, share);
  5573. work->tv_staged = orig;
  5574. return rv;
  5575. }
  5576. static
  5577. void pool_update_work_restart_time(struct pool * const pool)
  5578. {
  5579. pool->work_restart_time = time(NULL);
  5580. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5581. }
  5582. static void restart_threads(void)
  5583. {
  5584. struct pool *cp = current_pool();
  5585. int i;
  5586. struct thr_info *thr;
  5587. /* Artificially set the lagging flag to avoid pool not providing work
  5588. * fast enough messages after every long poll */
  5589. pool_tset(cp, &cp->lagging);
  5590. /* Discard staged work that is now stale */
  5591. discard_stale();
  5592. rd_lock(&mining_thr_lock);
  5593. for (i = 0; i < mining_threads; i++)
  5594. {
  5595. thr = mining_thr[i];
  5596. thr->work_restart = true;
  5597. }
  5598. for (i = 0; i < mining_threads; i++)
  5599. {
  5600. thr = mining_thr[i];
  5601. notifier_wake(thr->work_restart_notifier);
  5602. }
  5603. rd_unlock(&mining_thr_lock);
  5604. }
  5605. static
  5606. void blkhashstr(char *rv, const unsigned char *hash)
  5607. {
  5608. unsigned char hash_swap[32];
  5609. swap256(hash_swap, hash);
  5610. swap32tole(hash_swap, hash_swap, 32 / 4);
  5611. bin2hex(rv, hash_swap, 32);
  5612. }
  5613. static void set_curblock(char *hexstr, unsigned char *hash)
  5614. {
  5615. unsigned char hash_swap[32];
  5616. current_block_id = ((uint32_t*)hash)[0];
  5617. strcpy(current_block, hexstr);
  5618. swap256(hash_swap, hash);
  5619. swap32tole(hash_swap, hash_swap, 32 / 4);
  5620. cg_wlock(&ch_lock);
  5621. block_time = time(NULL);
  5622. __update_block_title(hash_swap);
  5623. free(current_fullhash);
  5624. current_fullhash = malloc(65);
  5625. bin2hex(current_fullhash, hash_swap, 32);
  5626. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5627. cg_wunlock(&ch_lock);
  5628. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5629. }
  5630. /* Search to see if this string is from a block that has been seen before */
  5631. static bool block_exists(char *hexstr)
  5632. {
  5633. struct block *s;
  5634. rd_lock(&blk_lock);
  5635. HASH_FIND_STR(blocks, hexstr, s);
  5636. rd_unlock(&blk_lock);
  5637. if (s)
  5638. return true;
  5639. return false;
  5640. }
  5641. /* Tests if this work is from a block that has been seen before */
  5642. static inline bool from_existing_block(struct work *work)
  5643. {
  5644. char hexstr[37];
  5645. bool ret;
  5646. bin2hex(hexstr, work->data + 8, 18);
  5647. ret = block_exists(hexstr);
  5648. return ret;
  5649. }
  5650. static int block_sort(struct block *blocka, struct block *blockb)
  5651. {
  5652. return blocka->block_no - blockb->block_no;
  5653. }
  5654. static void set_blockdiff(const struct work *work)
  5655. {
  5656. unsigned char target[32];
  5657. double diff;
  5658. uint64_t diff64;
  5659. real_block_target(target, work->data);
  5660. diff = target_diff(target);
  5661. diff64 = diff;
  5662. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5663. format_unit2(net_hashrate, sizeof(net_hashrate),
  5664. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5665. if (unlikely(current_diff != diff))
  5666. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5667. current_diff = diff;
  5668. }
  5669. static bool test_work_current(struct work *work)
  5670. {
  5671. bool ret = true;
  5672. char hexstr[65];
  5673. if (work->mandatory)
  5674. return ret;
  5675. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5676. /* Hack to work around dud work sneaking into test */
  5677. bin2hex(hexstr, work->data + 8, 18);
  5678. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5679. goto out_free;
  5680. struct pool * const pool = work->pool;
  5681. /* Search to see if this block exists yet and if not, consider it a
  5682. * new block and set the current block details to this one */
  5683. if (!block_exists(hexstr))
  5684. {
  5685. struct block *s = calloc(sizeof(struct block), 1);
  5686. int deleted_block = 0;
  5687. ret = false;
  5688. if (unlikely(!s))
  5689. quit (1, "test_work_current OOM");
  5690. strcpy(s->hash, hexstr);
  5691. s->block_no = new_blocks++;
  5692. wr_lock(&blk_lock);
  5693. /* Only keep the last hour's worth of blocks in memory since
  5694. * work from blocks before this is virtually impossible and we
  5695. * want to prevent memory usage from continually rising */
  5696. if (HASH_COUNT(blocks) > 6)
  5697. {
  5698. struct block *oldblock;
  5699. HASH_SORT(blocks, block_sort);
  5700. oldblock = blocks;
  5701. deleted_block = oldblock->block_no;
  5702. HASH_DEL(blocks, oldblock);
  5703. free(oldblock);
  5704. }
  5705. HASH_ADD_STR(blocks, hash, s);
  5706. set_blockdiff(work);
  5707. wr_unlock(&blk_lock);
  5708. pool->block_id = block_id;
  5709. pool_update_work_restart_time(pool);
  5710. if (deleted_block)
  5711. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5712. #if BLKMAKER_VERSION > 1
  5713. template_nonce = 0;
  5714. #endif
  5715. set_curblock(hexstr, &work->data[4]);
  5716. if (unlikely(new_blocks == 1))
  5717. goto out_free;
  5718. if (!work->stratum)
  5719. {
  5720. if (work->longpoll)
  5721. {
  5722. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5723. pool->pool_no);
  5724. }
  5725. else
  5726. if (have_longpoll)
  5727. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5728. else
  5729. applog(LOG_NOTICE, "New block detected on network");
  5730. }
  5731. restart_threads();
  5732. }
  5733. else
  5734. {
  5735. bool restart = false;
  5736. if (unlikely(pool->block_id != block_id))
  5737. {
  5738. bool was_active = pool->block_id != 0;
  5739. pool->block_id = block_id;
  5740. pool_update_work_restart_time(pool);
  5741. if (!work->longpoll)
  5742. update_last_work(work);
  5743. if (was_active)
  5744. {
  5745. // Pool actively changed block
  5746. if (pool == current_pool())
  5747. restart = true;
  5748. if (block_id == current_block_id)
  5749. {
  5750. // Caught up, only announce if this pool is the one in use
  5751. if (restart)
  5752. applog(LOG_NOTICE, "%s %d caught up to new block",
  5753. work->longpoll ? "Longpoll from pool" : "Pool",
  5754. pool->pool_no);
  5755. }
  5756. else
  5757. {
  5758. // Switched to a block we know, but not the latest... why?
  5759. // This might detect pools trying to double-spend or 51%,
  5760. // but let's not make any accusations until it's had time
  5761. // in the real world.
  5762. blkhashstr(hexstr, &work->data[4]);
  5763. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5764. work->longpoll ? "Longpoll from pool" : "Pool",
  5765. pool->pool_no,
  5766. hexstr);
  5767. }
  5768. }
  5769. }
  5770. if (work->longpoll)
  5771. {
  5772. struct pool * const cp = current_pool();
  5773. ++pool->work_restart_id;
  5774. if (work->tr && work->tr == pool->swork.tr)
  5775. pool->swork.work_restart_id = pool->work_restart_id;
  5776. update_last_work(work);
  5777. pool_update_work_restart_time(pool);
  5778. applog(
  5779. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5780. "Longpoll from pool %d requested work update",
  5781. pool->pool_no);
  5782. if ((!restart) && pool == cp)
  5783. restart = true;
  5784. }
  5785. if (restart)
  5786. restart_threads();
  5787. }
  5788. work->longpoll = false;
  5789. out_free:
  5790. return ret;
  5791. }
  5792. static int tv_sort(struct work *worka, struct work *workb)
  5793. {
  5794. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5795. }
  5796. static bool work_rollable(struct work *work)
  5797. {
  5798. return (!work->clone && work->rolltime);
  5799. }
  5800. static bool hash_push(struct work *work)
  5801. {
  5802. bool rc = true;
  5803. mutex_lock(stgd_lock);
  5804. if (work_rollable(work))
  5805. staged_rollable++;
  5806. if (likely(!getq->frozen)) {
  5807. HASH_ADD_INT(staged_work, id, work);
  5808. HASH_SORT(staged_work, tv_sort);
  5809. } else
  5810. rc = false;
  5811. pthread_cond_broadcast(&getq->cond);
  5812. mutex_unlock(stgd_lock);
  5813. return rc;
  5814. }
  5815. static void stage_work(struct work *work)
  5816. {
  5817. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5818. work->id, work->pool->pool_no);
  5819. work->work_restart_id = work->pool->work_restart_id;
  5820. work->pool->last_work_time = time(NULL);
  5821. cgtime(&work->pool->tv_last_work_time);
  5822. test_work_current(work);
  5823. work->pool->works++;
  5824. hash_push(work);
  5825. }
  5826. #ifdef HAVE_CURSES
  5827. int curses_int(const char *query)
  5828. {
  5829. int ret;
  5830. char *cvar;
  5831. cvar = curses_input(query);
  5832. if (unlikely(!cvar))
  5833. return -1;
  5834. ret = atoi(cvar);
  5835. free(cvar);
  5836. return ret;
  5837. }
  5838. #endif
  5839. #ifdef HAVE_CURSES
  5840. static bool input_pool(bool live);
  5841. #endif
  5842. #ifdef HAVE_CURSES
  5843. static void display_pool_summary(struct pool *pool)
  5844. {
  5845. double efficiency = 0.0;
  5846. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5847. int pool_secs;
  5848. if (curses_active_locked()) {
  5849. wlog("Pool: %s\n", pool->rpc_url);
  5850. if (pool->solved)
  5851. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5852. if (!pool->has_stratum)
  5853. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5854. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5855. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5856. wlog(" Accepted shares: %d\n", pool->accepted);
  5857. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5858. pool->rejected, pool->stale_shares,
  5859. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5860. );
  5861. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5862. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5863. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5864. wlog(" Network transfer: %s (%s)\n",
  5865. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5866. (float)pool->cgminer_pool_stats.net_bytes_received,
  5867. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5868. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5869. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5870. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5871. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5872. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5873. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5874. wlog(" Items worked on: %d\n", pool->works);
  5875. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5876. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5877. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5878. unlock_curses();
  5879. }
  5880. }
  5881. #endif
  5882. /* We can't remove the memory used for this struct pool because there may
  5883. * still be work referencing it. We just remove it from the pools list */
  5884. void remove_pool(struct pool *pool)
  5885. {
  5886. int i, last_pool = total_pools - 1;
  5887. struct pool *other;
  5888. /* Boost priority of any lower prio than this one */
  5889. for (i = 0; i < total_pools; i++) {
  5890. other = pools[i];
  5891. if (other->prio > pool->prio)
  5892. other->prio--;
  5893. }
  5894. if (pool->pool_no < last_pool) {
  5895. /* Swap the last pool for this one */
  5896. (pools[last_pool])->pool_no = pool->pool_no;
  5897. pools[pool->pool_no] = pools[last_pool];
  5898. }
  5899. /* Give it an invalid number */
  5900. pool->pool_no = total_pools;
  5901. pool->removed = true;
  5902. pool->has_stratum = false;
  5903. total_pools--;
  5904. }
  5905. /* add a mutex if this needs to be thread safe in the future */
  5906. static struct JE {
  5907. char *buf;
  5908. struct JE *next;
  5909. } *jedata = NULL;
  5910. static void json_escape_free()
  5911. {
  5912. struct JE *jeptr = jedata;
  5913. struct JE *jenext;
  5914. jedata = NULL;
  5915. while (jeptr) {
  5916. jenext = jeptr->next;
  5917. free(jeptr->buf);
  5918. free(jeptr);
  5919. jeptr = jenext;
  5920. }
  5921. }
  5922. static
  5923. char *json_escape(const char *str)
  5924. {
  5925. struct JE *jeptr;
  5926. char *buf, *ptr;
  5927. /* 2x is the max, may as well just allocate that */
  5928. ptr = buf = malloc(strlen(str) * 2 + 1);
  5929. jeptr = malloc(sizeof(*jeptr));
  5930. jeptr->buf = buf;
  5931. jeptr->next = jedata;
  5932. jedata = jeptr;
  5933. while (*str) {
  5934. if (*str == '\\' || *str == '"')
  5935. *(ptr++) = '\\';
  5936. *(ptr++) = *(str++);
  5937. }
  5938. *ptr = '\0';
  5939. return buf;
  5940. }
  5941. static
  5942. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5943. {
  5944. if (!elist)
  5945. return;
  5946. static struct string_elist *entry;
  5947. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5948. bool first = true;
  5949. DL_FOREACH(elist, entry)
  5950. {
  5951. const char * const s = entry->string;
  5952. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5953. first = false;
  5954. }
  5955. fprintf(fcfg, "\n]");
  5956. }
  5957. void write_config(FILE *fcfg)
  5958. {
  5959. int i;
  5960. /* Write pool values */
  5961. fputs("{\n\"pools\" : [", fcfg);
  5962. for(i = 0; i < total_pools; i++) {
  5963. struct pool *pool = pools[i];
  5964. if (pool->quota != 1) {
  5965. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5966. pool->quota,
  5967. json_escape(pool->rpc_url));
  5968. } else {
  5969. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5970. json_escape(pool->rpc_url));
  5971. }
  5972. if (pool->rpc_proxy)
  5973. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5974. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5975. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5976. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5977. if (pool->force_rollntime)
  5978. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5979. fprintf(fcfg, "\n\t}");
  5980. }
  5981. fputs("\n]\n", fcfg);
  5982. #ifdef HAVE_OPENCL
  5983. write_config_opencl(fcfg);
  5984. #endif
  5985. #ifdef WANT_CPUMINE
  5986. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5987. #endif
  5988. /* Simple bool and int options */
  5989. struct opt_table *opt;
  5990. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5991. char *p, *name = strdup(opt->names);
  5992. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5993. if (p[1] != '-')
  5994. continue;
  5995. if (opt->type & OPT_NOARG &&
  5996. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5997. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5998. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5999. if (opt->type & OPT_HASARG &&
  6000. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  6001. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  6002. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  6003. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  6004. opt->desc != opt_hidden &&
  6005. 0 <= *(int *)opt->u.arg)
  6006. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  6007. }
  6008. }
  6009. /* Special case options */
  6010. if (request_target_str)
  6011. {
  6012. if (request_pdiff == (long)request_pdiff)
  6013. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  6014. else
  6015. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  6016. }
  6017. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  6018. if (pool_strategy == POOL_BALANCE)
  6019. fputs(",\n\"balance\" : true", fcfg);
  6020. if (pool_strategy == POOL_LOADBALANCE)
  6021. fputs(",\n\"load-balance\" : true", fcfg);
  6022. if (pool_strategy == POOL_ROUNDROBIN)
  6023. fputs(",\n\"round-robin\" : true", fcfg);
  6024. if (pool_strategy == POOL_ROTATE)
  6025. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  6026. #if defined(unix) || defined(__APPLE__)
  6027. if (opt_stderr_cmd && *opt_stderr_cmd)
  6028. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  6029. #endif // defined(unix)
  6030. if (opt_kernel_path && *opt_kernel_path) {
  6031. char *kpath = strdup(opt_kernel_path);
  6032. if (kpath[strlen(kpath)-1] == '/')
  6033. kpath[strlen(kpath)-1] = 0;
  6034. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  6035. free(kpath);
  6036. }
  6037. if (schedstart.enable)
  6038. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  6039. if (schedstop.enable)
  6040. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  6041. if (opt_socks_proxy && *opt_socks_proxy)
  6042. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  6043. _write_config_string_elist(fcfg, "scan", scan_devices);
  6044. #ifdef USE_LIBMICROHTTPD
  6045. if (httpsrv_port != -1)
  6046. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  6047. #endif
  6048. #ifdef USE_LIBEVENT
  6049. if (stratumsrv_port != -1)
  6050. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  6051. #endif
  6052. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  6053. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  6054. if (opt_api_allow)
  6055. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  6056. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  6057. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  6058. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  6059. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  6060. if (*opt_api_mcast_des)
  6061. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  6062. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  6063. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  6064. if (opt_api_groups)
  6065. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  6066. fputs("\n}\n", fcfg);
  6067. json_escape_free();
  6068. }
  6069. void zero_bestshare(void)
  6070. {
  6071. int i;
  6072. best_diff = 0;
  6073. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  6074. for (i = 0; i < total_pools; i++) {
  6075. struct pool *pool = pools[i];
  6076. pool->best_diff = 0;
  6077. }
  6078. }
  6079. void zero_stats(void)
  6080. {
  6081. int i;
  6082. applog(LOG_DEBUG, "Zeroing stats");
  6083. cgtime(&total_tv_start);
  6084. miner_started = total_tv_start;
  6085. total_rolling = 0;
  6086. total_mhashes_done = 0;
  6087. total_getworks = 0;
  6088. total_accepted = 0;
  6089. total_rejected = 0;
  6090. hw_errors = 0;
  6091. total_stale = 0;
  6092. total_discarded = 0;
  6093. total_bytes_rcvd = total_bytes_sent = 0;
  6094. new_blocks = 0;
  6095. local_work = 0;
  6096. total_go = 0;
  6097. total_ro = 0;
  6098. total_secs = 1.0;
  6099. total_diff1 = 0;
  6100. total_bad_diff1 = 0;
  6101. found_blocks = 0;
  6102. total_diff_accepted = 0;
  6103. total_diff_rejected = 0;
  6104. total_diff_stale = 0;
  6105. #ifdef HAVE_CURSES
  6106. awidth = rwidth = swidth = hwwidth = 1;
  6107. #endif
  6108. for (i = 0; i < total_pools; i++) {
  6109. struct pool *pool = pools[i];
  6110. pool->getwork_requested = 0;
  6111. pool->accepted = 0;
  6112. pool->rejected = 0;
  6113. pool->solved = 0;
  6114. pool->getwork_requested = 0;
  6115. pool->stale_shares = 0;
  6116. pool->discarded_work = 0;
  6117. pool->getfail_occasions = 0;
  6118. pool->remotefail_occasions = 0;
  6119. pool->last_share_time = 0;
  6120. pool->diff1 = 0;
  6121. pool->diff_accepted = 0;
  6122. pool->diff_rejected = 0;
  6123. pool->diff_stale = 0;
  6124. pool->last_share_diff = 0;
  6125. pool->cgminer_stats.start_tv = total_tv_start;
  6126. pool->cgminer_stats.getwork_calls = 0;
  6127. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6128. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6129. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6130. pool->cgminer_pool_stats.getwork_calls = 0;
  6131. pool->cgminer_pool_stats.getwork_attempts = 0;
  6132. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6133. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  6134. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  6135. pool->cgminer_pool_stats.min_diff = 0;
  6136. pool->cgminer_pool_stats.max_diff = 0;
  6137. pool->cgminer_pool_stats.min_diff_count = 0;
  6138. pool->cgminer_pool_stats.max_diff_count = 0;
  6139. pool->cgminer_pool_stats.times_sent = 0;
  6140. pool->cgminer_pool_stats.bytes_sent = 0;
  6141. pool->cgminer_pool_stats.net_bytes_sent = 0;
  6142. pool->cgminer_pool_stats.times_received = 0;
  6143. pool->cgminer_pool_stats.bytes_received = 0;
  6144. pool->cgminer_pool_stats.net_bytes_received = 0;
  6145. }
  6146. zero_bestshare();
  6147. for (i = 0; i < total_devices; ++i) {
  6148. struct cgpu_info *cgpu = get_devices(i);
  6149. mutex_lock(&hash_lock);
  6150. cgpu->total_mhashes = 0;
  6151. cgpu->accepted = 0;
  6152. cgpu->rejected = 0;
  6153. cgpu->stale = 0;
  6154. cgpu->hw_errors = 0;
  6155. cgpu->utility = 0.0;
  6156. cgpu->utility_diff1 = 0;
  6157. cgpu->last_share_pool_time = 0;
  6158. cgpu->bad_diff1 = 0;
  6159. cgpu->diff1 = 0;
  6160. cgpu->diff_accepted = 0;
  6161. cgpu->diff_rejected = 0;
  6162. cgpu->diff_stale = 0;
  6163. cgpu->last_share_diff = 0;
  6164. cgpu->thread_fail_init_count = 0;
  6165. cgpu->thread_zero_hash_count = 0;
  6166. cgpu->thread_fail_queue_count = 0;
  6167. cgpu->dev_sick_idle_60_count = 0;
  6168. cgpu->dev_dead_idle_600_count = 0;
  6169. cgpu->dev_nostart_count = 0;
  6170. cgpu->dev_over_heat_count = 0;
  6171. cgpu->dev_thermal_cutoff_count = 0;
  6172. cgpu->dev_comms_error_count = 0;
  6173. cgpu->dev_throttle_count = 0;
  6174. cgpu->cgminer_stats.start_tv = total_tv_start;
  6175. cgpu->cgminer_stats.getwork_calls = 0;
  6176. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6177. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6178. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6179. mutex_unlock(&hash_lock);
  6180. }
  6181. }
  6182. #ifdef HAVE_CURSES
  6183. static
  6184. void loginput_mode(const int size)
  6185. {
  6186. clear_logwin();
  6187. loginput_size = size;
  6188. check_winsizes();
  6189. }
  6190. static void display_pools(void)
  6191. {
  6192. struct pool *pool;
  6193. int selected, i, j;
  6194. char input;
  6195. loginput_mode(7 + total_pools);
  6196. immedok(logwin, true);
  6197. updated:
  6198. for (j = 0; j < total_pools; j++) {
  6199. for (i = 0; i < total_pools; i++) {
  6200. pool = pools[i];
  6201. if (pool->prio != j)
  6202. continue;
  6203. if (pool == current_pool())
  6204. wattron(logwin, A_BOLD);
  6205. if (pool->enabled != POOL_ENABLED)
  6206. wattron(logwin, A_DIM);
  6207. wlogprint("%d: ", pool->prio);
  6208. switch (pool->enabled) {
  6209. case POOL_ENABLED:
  6210. wlogprint("Enabled ");
  6211. break;
  6212. case POOL_DISABLED:
  6213. wlogprint("Disabled ");
  6214. break;
  6215. case POOL_REJECTING:
  6216. wlogprint("Rejectin ");
  6217. break;
  6218. }
  6219. _wlogprint(pool_proto_str(pool));
  6220. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6221. pool->quota,
  6222. pool->pool_no,
  6223. pool->rpc_url, pool->rpc_user);
  6224. wattroff(logwin, A_BOLD | A_DIM);
  6225. break; //for (i = 0; i < total_pools; i++)
  6226. }
  6227. }
  6228. retry:
  6229. wlogprint("\nCurrent pool management strategy: %s\n",
  6230. strategies[pool_strategy].s);
  6231. if (pool_strategy == POOL_ROTATE)
  6232. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6233. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6234. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6235. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6236. wlogprint("Or press any other key to continue\n");
  6237. logwin_update();
  6238. input = getch();
  6239. if (!strncasecmp(&input, "a", 1)) {
  6240. if (opt_benchmark)
  6241. {
  6242. wlogprint("Cannot add pools in benchmark mode");
  6243. goto retry;
  6244. }
  6245. input_pool(true);
  6246. goto updated;
  6247. } else if (!strncasecmp(&input, "r", 1)) {
  6248. if (total_pools <= 1) {
  6249. wlogprint("Cannot remove last pool");
  6250. goto retry;
  6251. }
  6252. selected = curses_int("Select pool number");
  6253. if (selected < 0 || selected >= total_pools) {
  6254. wlogprint("Invalid selection\n");
  6255. goto retry;
  6256. }
  6257. pool = pools[selected];
  6258. if (pool == current_pool())
  6259. switch_pools(NULL);
  6260. if (pool == current_pool()) {
  6261. wlogprint("Unable to remove pool due to activity\n");
  6262. goto retry;
  6263. }
  6264. disable_pool(pool);
  6265. remove_pool(pool);
  6266. goto updated;
  6267. } else if (!strncasecmp(&input, "s", 1)) {
  6268. selected = curses_int("Select pool number");
  6269. if (selected < 0 || selected >= total_pools) {
  6270. wlogprint("Invalid selection\n");
  6271. goto retry;
  6272. }
  6273. pool = pools[selected];
  6274. enable_pool(pool);
  6275. switch_pools(pool);
  6276. goto updated;
  6277. } else if (!strncasecmp(&input, "d", 1)) {
  6278. if (enabled_pools <= 1) {
  6279. wlogprint("Cannot disable last pool");
  6280. goto retry;
  6281. }
  6282. selected = curses_int("Select pool number");
  6283. if (selected < 0 || selected >= total_pools) {
  6284. wlogprint("Invalid selection\n");
  6285. goto retry;
  6286. }
  6287. pool = pools[selected];
  6288. disable_pool(pool);
  6289. if (pool == current_pool())
  6290. switch_pools(NULL);
  6291. goto updated;
  6292. } else if (!strncasecmp(&input, "e", 1)) {
  6293. selected = curses_int("Select pool number");
  6294. if (selected < 0 || selected >= total_pools) {
  6295. wlogprint("Invalid selection\n");
  6296. goto retry;
  6297. }
  6298. pool = pools[selected];
  6299. enable_pool(pool);
  6300. if (pool->prio < current_pool()->prio)
  6301. switch_pools(pool);
  6302. goto updated;
  6303. } else if (!strncasecmp(&input, "c", 1)) {
  6304. for (i = 0; i <= TOP_STRATEGY; i++)
  6305. wlogprint("%d: %s\n", i, strategies[i].s);
  6306. selected = curses_int("Select strategy number type");
  6307. if (selected < 0 || selected > TOP_STRATEGY) {
  6308. wlogprint("Invalid selection\n");
  6309. goto retry;
  6310. }
  6311. if (selected == POOL_ROTATE) {
  6312. opt_rotate_period = curses_int("Select interval in minutes");
  6313. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6314. opt_rotate_period = 0;
  6315. wlogprint("Invalid selection\n");
  6316. goto retry;
  6317. }
  6318. }
  6319. pool_strategy = selected;
  6320. switch_pools(NULL);
  6321. goto updated;
  6322. } else if (!strncasecmp(&input, "i", 1)) {
  6323. selected = curses_int("Select pool number");
  6324. if (selected < 0 || selected >= total_pools) {
  6325. wlogprint("Invalid selection\n");
  6326. goto retry;
  6327. }
  6328. pool = pools[selected];
  6329. display_pool_summary(pool);
  6330. goto retry;
  6331. } else if (!strncasecmp(&input, "q", 1)) {
  6332. selected = curses_int("Select pool number");
  6333. if (selected < 0 || selected >= total_pools) {
  6334. wlogprint("Invalid selection\n");
  6335. goto retry;
  6336. }
  6337. pool = pools[selected];
  6338. selected = curses_int("Set quota");
  6339. if (selected < 0) {
  6340. wlogprint("Invalid negative quota\n");
  6341. goto retry;
  6342. }
  6343. pool->quota = selected;
  6344. adjust_quota_gcd();
  6345. goto updated;
  6346. } else if (!strncasecmp(&input, "f", 1)) {
  6347. opt_fail_only ^= true;
  6348. goto updated;
  6349. } else if (!strncasecmp(&input, "p", 1)) {
  6350. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6351. if (!prilist)
  6352. {
  6353. wlogprint("Not changing priorities\n");
  6354. goto retry;
  6355. }
  6356. int res = prioritize_pools(prilist, &i);
  6357. free(prilist);
  6358. switch (res) {
  6359. case MSG_NOPOOL:
  6360. wlogprint("No pools\n");
  6361. goto retry;
  6362. case MSG_MISPID:
  6363. wlogprint("Missing pool id parameter\n");
  6364. goto retry;
  6365. case MSG_INVPID:
  6366. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6367. goto retry;
  6368. case MSG_DUPPID:
  6369. wlogprint("Duplicate pool specified %d\n", i);
  6370. goto retry;
  6371. case MSG_POOLPRIO:
  6372. default:
  6373. goto updated;
  6374. }
  6375. }
  6376. immedok(logwin, false);
  6377. loginput_mode(0);
  6378. }
  6379. static const char *summary_detail_level_str(void)
  6380. {
  6381. if (opt_compact)
  6382. return "compact";
  6383. if (opt_show_procs)
  6384. return "processors";
  6385. return "devices";
  6386. }
  6387. static void display_options(void)
  6388. {
  6389. int selected;
  6390. char input;
  6391. immedok(logwin, true);
  6392. loginput_mode(12);
  6393. retry:
  6394. clear_logwin();
  6395. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6396. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6397. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6398. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6399. opt_debug_console ? "on" : "off",
  6400. want_per_device_stats? "on" : "off",
  6401. opt_quiet ? "on" : "off",
  6402. opt_log_output ? "on" : "off",
  6403. opt_protocol ? "on" : "off",
  6404. opt_worktime ? "on" : "off",
  6405. summary_detail_level_str(),
  6406. opt_log_interval,
  6407. opt_weighed_stats ? "weighed" : "absolute");
  6408. wlogprint("Select an option or any other key to return\n");
  6409. logwin_update();
  6410. input = getch();
  6411. if (!strncasecmp(&input, "q", 1)) {
  6412. opt_quiet ^= true;
  6413. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6414. goto retry;
  6415. } else if (!strncasecmp(&input, "v", 1)) {
  6416. opt_log_output ^= true;
  6417. if (opt_log_output)
  6418. opt_quiet = false;
  6419. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6420. goto retry;
  6421. } else if (!strncasecmp(&input, "n", 1)) {
  6422. opt_log_output = false;
  6423. opt_debug_console = false;
  6424. opt_quiet = false;
  6425. opt_protocol = false;
  6426. opt_compact = false;
  6427. opt_show_procs = false;
  6428. devsummaryYOffset = 0;
  6429. want_per_device_stats = false;
  6430. wlogprint("Output mode reset to normal\n");
  6431. switch_logsize();
  6432. goto retry;
  6433. } else if (!strncasecmp(&input, "d", 1)) {
  6434. opt_debug = true;
  6435. opt_debug_console ^= true;
  6436. opt_log_output = opt_debug_console;
  6437. if (opt_debug_console)
  6438. opt_quiet = false;
  6439. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6440. goto retry;
  6441. } else if (!strncasecmp(&input, "m", 1)) {
  6442. if (opt_compact)
  6443. opt_compact = false;
  6444. else
  6445. if (!opt_show_procs)
  6446. opt_show_procs = true;
  6447. else
  6448. {
  6449. opt_compact = true;
  6450. opt_show_procs = false;
  6451. devsummaryYOffset = 0;
  6452. }
  6453. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6454. switch_logsize();
  6455. goto retry;
  6456. } else if (!strncasecmp(&input, "p", 1)) {
  6457. want_per_device_stats ^= true;
  6458. opt_log_output = want_per_device_stats;
  6459. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6460. goto retry;
  6461. } else if (!strncasecmp(&input, "r", 1)) {
  6462. opt_protocol ^= true;
  6463. if (opt_protocol)
  6464. opt_quiet = false;
  6465. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6466. goto retry;
  6467. } else if (!strncasecmp(&input, "c", 1))
  6468. clear_logwin();
  6469. else if (!strncasecmp(&input, "l", 1)) {
  6470. selected = curses_int("Interval in seconds");
  6471. if (selected < 0 || selected > 9999) {
  6472. wlogprint("Invalid selection\n");
  6473. goto retry;
  6474. }
  6475. opt_log_interval = selected;
  6476. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6477. goto retry;
  6478. } else if (!strncasecmp(&input, "s", 1)) {
  6479. opt_realquiet = true;
  6480. } else if (!strncasecmp(&input, "w", 1)) {
  6481. opt_worktime ^= true;
  6482. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6483. goto retry;
  6484. } else if (!strncasecmp(&input, "t", 1)) {
  6485. opt_weighed_stats ^= true;
  6486. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6487. goto retry;
  6488. } else if (!strncasecmp(&input, "z", 1)) {
  6489. zero_stats();
  6490. goto retry;
  6491. }
  6492. immedok(logwin, false);
  6493. loginput_mode(0);
  6494. }
  6495. #endif
  6496. void default_save_file(char *filename)
  6497. {
  6498. #if defined(unix) || defined(__APPLE__)
  6499. if (getenv("HOME") && *getenv("HOME")) {
  6500. strcpy(filename, getenv("HOME"));
  6501. strcat(filename, "/");
  6502. }
  6503. else
  6504. strcpy(filename, "");
  6505. strcat(filename, ".bfgminer/");
  6506. mkdir(filename, 0777);
  6507. #else
  6508. strcpy(filename, "");
  6509. #endif
  6510. strcat(filename, def_conf);
  6511. }
  6512. #ifdef HAVE_CURSES
  6513. static void set_options(void)
  6514. {
  6515. int selected;
  6516. char input;
  6517. immedok(logwin, true);
  6518. loginput_mode(8);
  6519. retry:
  6520. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6521. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6522. "[W]rite config file\n[B]FGMiner restart\n",
  6523. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6524. wlogprint("Select an option or any other key to return\n");
  6525. logwin_update();
  6526. input = getch();
  6527. if (!strncasecmp(&input, "q", 1)) {
  6528. selected = curses_int("Extra work items to queue");
  6529. if (selected < 0 || selected > 9999) {
  6530. wlogprint("Invalid selection\n");
  6531. goto retry;
  6532. }
  6533. opt_queue = selected;
  6534. goto retry;
  6535. } else if (!strncasecmp(&input, "l", 1)) {
  6536. if (want_longpoll)
  6537. stop_longpoll();
  6538. else
  6539. start_longpoll();
  6540. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6541. goto retry;
  6542. } else if (!strncasecmp(&input, "s", 1)) {
  6543. selected = curses_int("Set scantime in seconds");
  6544. if (selected < 0 || selected > 9999) {
  6545. wlogprint("Invalid selection\n");
  6546. goto retry;
  6547. }
  6548. opt_scantime = selected;
  6549. goto retry;
  6550. } else if (!strncasecmp(&input, "e", 1)) {
  6551. selected = curses_int("Set expiry time in seconds");
  6552. if (selected < 0 || selected > 9999) {
  6553. wlogprint("Invalid selection\n");
  6554. goto retry;
  6555. }
  6556. opt_expiry = selected;
  6557. goto retry;
  6558. } else if (!strncasecmp(&input, "r", 1)) {
  6559. selected = curses_int("Retries before failing (-1 infinite)");
  6560. if (selected < -1 || selected > 9999) {
  6561. wlogprint("Invalid selection\n");
  6562. goto retry;
  6563. }
  6564. opt_retries = selected;
  6565. goto retry;
  6566. } else if (!strncasecmp(&input, "w", 1)) {
  6567. FILE *fcfg;
  6568. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6569. default_save_file(filename);
  6570. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6571. str = curses_input(prompt);
  6572. if (str) {
  6573. struct stat statbuf;
  6574. strcpy(filename, str);
  6575. free(str);
  6576. if (!stat(filename, &statbuf)) {
  6577. wlogprint("File exists, overwrite?\n");
  6578. input = getch();
  6579. if (strncasecmp(&input, "y", 1))
  6580. goto retry;
  6581. }
  6582. }
  6583. fcfg = fopen(filename, "w");
  6584. if (!fcfg) {
  6585. wlogprint("Cannot open or create file\n");
  6586. goto retry;
  6587. }
  6588. write_config(fcfg);
  6589. fclose(fcfg);
  6590. goto retry;
  6591. } else if (!strncasecmp(&input, "b", 1)) {
  6592. wlogprint("Are you sure?\n");
  6593. input = getch();
  6594. if (!strncasecmp(&input, "y", 1))
  6595. app_restart();
  6596. else
  6597. clear_logwin();
  6598. } else
  6599. clear_logwin();
  6600. loginput_mode(0);
  6601. immedok(logwin, false);
  6602. }
  6603. int scan_serial(const char *);
  6604. static
  6605. void _managetui_msg(const char *repr, const char **msg)
  6606. {
  6607. if (*msg)
  6608. {
  6609. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6610. wattron(logwin, A_BOLD);
  6611. wlogprint("%s", *msg);
  6612. wattroff(logwin, A_BOLD);
  6613. *msg = NULL;
  6614. }
  6615. logwin_update();
  6616. }
  6617. void manage_device(void)
  6618. {
  6619. char logline[256];
  6620. const char *msg = NULL;
  6621. struct cgpu_info *cgpu;
  6622. const struct device_drv *drv;
  6623. selecting_device = true;
  6624. immedok(logwin, true);
  6625. loginput_mode(12);
  6626. devchange:
  6627. if (unlikely(!total_devices))
  6628. {
  6629. clear_logwin();
  6630. wlogprint("(no devices)\n");
  6631. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6632. _managetui_msg("(none)", &msg);
  6633. int input = getch();
  6634. switch (input)
  6635. {
  6636. case '+': case '=': // add new device
  6637. goto addnew;
  6638. default:
  6639. goto out;
  6640. }
  6641. }
  6642. cgpu = devices[selected_device];
  6643. drv = cgpu->drv;
  6644. refresh_devstatus();
  6645. refresh:
  6646. clear_logwin();
  6647. wlogprint("Select processor to manage using up/down arrow keys\n");
  6648. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6649. wattron(logwin, A_BOLD);
  6650. wlogprint("%s", logline);
  6651. wattroff(logwin, A_BOLD);
  6652. wlogprint("\n");
  6653. if (cgpu->dev_manufacturer)
  6654. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6655. else
  6656. if (cgpu->dev_product)
  6657. wlogprint(" %s\n", cgpu->dev_product);
  6658. if (cgpu->dev_serial)
  6659. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6660. if (cgpu->kname)
  6661. wlogprint("Kernel: %s\n", cgpu->kname);
  6662. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6663. drv->proc_wlogprint_status(cgpu);
  6664. wlogprint("\n");
  6665. // TODO: Last share at TIMESTAMP on pool N
  6666. // TODO: Custom device info/commands
  6667. if (cgpu->deven != DEV_ENABLED)
  6668. wlogprint("[E]nable ");
  6669. if (cgpu->deven != DEV_DISABLED)
  6670. wlogprint("[D]isable ");
  6671. if (drv->identify_device)
  6672. wlogprint("[I]dentify ");
  6673. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6674. drv->proc_tui_wlogprint_choices(cgpu);
  6675. wlogprint("\n");
  6676. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6677. _managetui_msg(cgpu->proc_repr, &msg);
  6678. while (true)
  6679. {
  6680. int input = getch();
  6681. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6682. switch (input) {
  6683. case 'd': case 'D':
  6684. if (cgpu->deven == DEV_DISABLED)
  6685. msg = "Processor already disabled\n";
  6686. else
  6687. {
  6688. cgpu->deven = DEV_DISABLED;
  6689. msg = "Processor being disabled\n";
  6690. }
  6691. goto refresh;
  6692. case 'e': case 'E':
  6693. if (cgpu->deven == DEV_ENABLED)
  6694. msg = "Processor already enabled\n";
  6695. else
  6696. {
  6697. proc_enable(cgpu);
  6698. msg = "Processor being enabled\n";
  6699. }
  6700. goto refresh;
  6701. case 'i': case 'I':
  6702. if (drv->identify_device && drv->identify_device(cgpu))
  6703. msg = "Identify command sent\n";
  6704. else
  6705. goto key_default;
  6706. goto refresh;
  6707. case KEY_DOWN:
  6708. if (selected_device >= total_devices - 1)
  6709. break;
  6710. ++selected_device;
  6711. goto devchange;
  6712. case KEY_UP:
  6713. if (selected_device <= 0)
  6714. break;
  6715. --selected_device;
  6716. goto devchange;
  6717. case KEY_NPAGE:
  6718. {
  6719. if (selected_device >= total_devices - 1)
  6720. break;
  6721. struct cgpu_info *mdev = devices[selected_device]->device;
  6722. do {
  6723. ++selected_device;
  6724. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6725. goto devchange;
  6726. }
  6727. case KEY_PPAGE:
  6728. {
  6729. if (selected_device <= 0)
  6730. break;
  6731. struct cgpu_info *mdev = devices[selected_device]->device;
  6732. do {
  6733. --selected_device;
  6734. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6735. goto devchange;
  6736. }
  6737. case '/': case '?': // find device
  6738. {
  6739. static char *pattern = NULL;
  6740. char *newpattern = curses_input("Enter pattern");
  6741. if (newpattern)
  6742. {
  6743. free(pattern);
  6744. pattern = newpattern;
  6745. }
  6746. else
  6747. if (!pattern)
  6748. pattern = calloc(1, 1);
  6749. int match = cgpu_search(pattern, selected_device + 1);
  6750. if (match == -1)
  6751. {
  6752. msg = "Couldn't find device\n";
  6753. goto refresh;
  6754. }
  6755. selected_device = match;
  6756. goto devchange;
  6757. }
  6758. case '+': case '=': // add new device
  6759. {
  6760. addnew:
  6761. clear_logwin();
  6762. _wlogprint(
  6763. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6764. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6765. "For example: erupter:"
  6766. #ifdef WIN32
  6767. "\\\\.\\COM40"
  6768. #elif defined(__APPLE__)
  6769. "/dev/cu.SLAB_USBtoUART"
  6770. #else
  6771. "/dev/ttyUSB39"
  6772. #endif
  6773. "\n"
  6774. );
  6775. char *scanser = curses_input("Enter target");
  6776. if (scan_serial(scanser))
  6777. {
  6778. selected_device = total_devices - 1;
  6779. msg = "Device scan succeeded\n";
  6780. }
  6781. else
  6782. msg = "No new devices found\n";
  6783. goto devchange;
  6784. }
  6785. case 'Q': case 'q':
  6786. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6787. case '\x1b': // ESC
  6788. case KEY_ENTER:
  6789. case '\r': // Ctrl-M on Windows, with nonl
  6790. #ifdef PADENTER
  6791. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6792. #endif
  6793. case '\n':
  6794. goto out;
  6795. default:
  6796. ;
  6797. key_default:
  6798. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6799. {
  6800. msg = drv->proc_tui_handle_choice(cgpu, input);
  6801. if (msg)
  6802. goto refresh;
  6803. }
  6804. }
  6805. }
  6806. out:
  6807. selecting_device = false;
  6808. loginput_mode(0);
  6809. immedok(logwin, false);
  6810. }
  6811. void show_help(void)
  6812. {
  6813. loginput_mode(11);
  6814. // NOTE: wlogprint is a macro with a buffer limit
  6815. _wlogprint(
  6816. "LU: oldest explicit work update currently being used for new work\n"
  6817. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6818. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6819. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6820. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6821. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6822. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6823. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6824. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6825. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6826. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6827. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6828. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6829. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6830. "\n"
  6831. "devices/processors hashing (only for totals line), hottest temperature\n"
  6832. );
  6833. wlogprint(
  6834. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6835. , opt_log_interval);
  6836. _wlogprint(
  6837. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6838. "HW: hardware errors / % nonces invalid\n"
  6839. "\n"
  6840. "Press any key to clear"
  6841. );
  6842. logwin_update();
  6843. getch();
  6844. loginput_mode(0);
  6845. }
  6846. static void *input_thread(void __maybe_unused *userdata)
  6847. {
  6848. RenameThread("input");
  6849. if (!curses_active)
  6850. return NULL;
  6851. while (1) {
  6852. int input;
  6853. input = getch();
  6854. switch (input) {
  6855. case 'h': case 'H': case '?':
  6856. case KEY_F(1):
  6857. show_help();
  6858. break;
  6859. case 'q': case 'Q':
  6860. kill_work();
  6861. return NULL;
  6862. case 'd': case 'D':
  6863. display_options();
  6864. break;
  6865. case 'm': case 'M':
  6866. manage_device();
  6867. break;
  6868. case 'p': case 'P':
  6869. display_pools();
  6870. break;
  6871. case 's': case 'S':
  6872. set_options();
  6873. break;
  6874. #ifdef HAVE_CURSES
  6875. case KEY_DOWN:
  6876. {
  6877. const int visible_lines = logcursor - devcursor;
  6878. const int invisible_lines = total_lines - visible_lines;
  6879. if (devsummaryYOffset <= -invisible_lines)
  6880. break;
  6881. devsummaryYOffset -= 2;
  6882. }
  6883. case KEY_UP:
  6884. if (devsummaryYOffset == 0)
  6885. break;
  6886. ++devsummaryYOffset;
  6887. refresh_devstatus();
  6888. break;
  6889. case KEY_NPAGE:
  6890. {
  6891. const int visible_lines = logcursor - devcursor;
  6892. const int invisible_lines = total_lines - visible_lines;
  6893. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6894. devsummaryYOffset = -invisible_lines;
  6895. else
  6896. devsummaryYOffset -= visible_lines;
  6897. refresh_devstatus();
  6898. break;
  6899. }
  6900. case KEY_PPAGE:
  6901. {
  6902. const int visible_lines = logcursor - devcursor;
  6903. if (devsummaryYOffset + visible_lines >= 0)
  6904. devsummaryYOffset = 0;
  6905. else
  6906. devsummaryYOffset += visible_lines;
  6907. refresh_devstatus();
  6908. break;
  6909. }
  6910. #endif
  6911. }
  6912. if (opt_realquiet) {
  6913. disable_curses();
  6914. break;
  6915. }
  6916. }
  6917. return NULL;
  6918. }
  6919. #endif
  6920. static void *api_thread(void *userdata)
  6921. {
  6922. struct thr_info *mythr = userdata;
  6923. pthread_detach(pthread_self());
  6924. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6925. RenameThread("rpc");
  6926. api(api_thr_id);
  6927. mythr->has_pth = false;
  6928. return NULL;
  6929. }
  6930. void thread_reportin(struct thr_info *thr)
  6931. {
  6932. cgtime(&thr->last);
  6933. thr->cgpu->status = LIFE_WELL;
  6934. thr->getwork = 0;
  6935. thr->cgpu->device_last_well = time(NULL);
  6936. }
  6937. void thread_reportout(struct thr_info *thr)
  6938. {
  6939. thr->getwork = time(NULL);
  6940. }
  6941. static void hashmeter(int thr_id, struct timeval *diff,
  6942. uint64_t hashes_done)
  6943. {
  6944. char logstatusline[256];
  6945. struct timeval temp_tv_end, total_diff;
  6946. double secs;
  6947. double local_secs;
  6948. static double local_mhashes_done = 0;
  6949. double local_mhashes = (double)hashes_done / 1000000.0;
  6950. bool showlog = false;
  6951. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6952. char rejpcbuf[6];
  6953. char bnbuf[6];
  6954. struct thr_info *thr;
  6955. /* Update the last time this thread reported in */
  6956. if (thr_id >= 0) {
  6957. thr = get_thread(thr_id);
  6958. cgtime(&(thr->last));
  6959. thr->cgpu->device_last_well = time(NULL);
  6960. }
  6961. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6962. /* So we can call hashmeter from a non worker thread */
  6963. if (thr_id >= 0) {
  6964. struct cgpu_info *cgpu = thr->cgpu;
  6965. int threadobj = cgpu->threads ?: 1;
  6966. double thread_rolling = 0.0;
  6967. int i;
  6968. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6969. thr_id, hashes_done, hashes_done / 1000 / secs);
  6970. /* Rolling average for each thread and each device */
  6971. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6972. for (i = 0; i < threadobj; i++)
  6973. thread_rolling += cgpu->thr[i]->rolling;
  6974. mutex_lock(&hash_lock);
  6975. decay_time(&cgpu->rolling, thread_rolling, secs);
  6976. cgpu->total_mhashes += local_mhashes;
  6977. mutex_unlock(&hash_lock);
  6978. // If needed, output detailed, per-device stats
  6979. if (want_per_device_stats) {
  6980. struct timeval now;
  6981. struct timeval elapsed;
  6982. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6983. cgtime(&now);
  6984. timersub(&now, last_msg_tv, &elapsed);
  6985. if (opt_log_interval <= elapsed.tv_sec) {
  6986. struct cgpu_info *cgpu = thr->cgpu;
  6987. char logline[255];
  6988. *last_msg_tv = now;
  6989. get_statline(logline, sizeof(logline), cgpu);
  6990. if (!curses_active) {
  6991. printf("%s \r", logline);
  6992. fflush(stdout);
  6993. } else
  6994. applog(LOG_INFO, "%s", logline);
  6995. }
  6996. }
  6997. }
  6998. /* Totals are updated by all threads so can race without locking */
  6999. mutex_lock(&hash_lock);
  7000. cgtime(&temp_tv_end);
  7001. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  7002. total_mhashes_done += local_mhashes;
  7003. local_mhashes_done += local_mhashes;
  7004. /* Only update with opt_log_interval */
  7005. if (total_diff.tv_sec < opt_log_interval)
  7006. goto out_unlock;
  7007. showlog = true;
  7008. cgtime(&total_tv_end);
  7009. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  7010. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  7011. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  7012. timersub(&total_tv_end, &total_tv_start, &total_diff);
  7013. total_secs = (double)total_diff.tv_sec +
  7014. ((double)total_diff.tv_usec / 1000000.0);
  7015. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  7016. multi_format_unit_array2(
  7017. ((char*[]){cHr, aHr, uHr}),
  7018. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  7019. true, "h/s", H2B_SHORT,
  7020. 3,
  7021. 1e6*total_rolling,
  7022. 1e6*total_mhashes_done / total_secs,
  7023. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  7024. int ui_accepted, ui_rejected, ui_stale;
  7025. if (opt_weighed_stats)
  7026. {
  7027. ui_accepted = total_diff_accepted;
  7028. ui_rejected = total_diff_rejected;
  7029. ui_stale = total_diff_stale;
  7030. }
  7031. else
  7032. {
  7033. ui_accepted = total_accepted;
  7034. ui_rejected = total_rejected;
  7035. ui_stale = total_stale;
  7036. }
  7037. #ifdef HAVE_CURSES
  7038. if (curses_active_locked()) {
  7039. float temp = 0;
  7040. struct cgpu_info *proc, *last_working_dev = NULL;
  7041. int i, working_devs = 0, working_procs = 0;
  7042. int divx;
  7043. bool bad = false;
  7044. // Find the highest temperature of all processors
  7045. for (i = 0; i < total_devices; ++i)
  7046. {
  7047. proc = get_devices(i);
  7048. if (proc->temp > temp)
  7049. temp = proc->temp;
  7050. if (unlikely(proc->deven == DEV_DISABLED))
  7051. ; // Just need to block it off from both conditions
  7052. else
  7053. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  7054. {
  7055. if (proc->rolling > .1)
  7056. {
  7057. ++working_procs;
  7058. if (proc->device != last_working_dev)
  7059. {
  7060. ++working_devs;
  7061. last_working_dev = proc->device;
  7062. }
  7063. }
  7064. }
  7065. else
  7066. bad = true;
  7067. }
  7068. if (working_devs == working_procs)
  7069. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  7070. else
  7071. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  7072. divx = 7;
  7073. if (opt_show_procs && !opt_compact)
  7074. ++divx;
  7075. if (bad)
  7076. {
  7077. divx += sizeof(U8_BAD_START)-1;
  7078. strcpy(&statusline[divx], U8_BAD_END);
  7079. divx += sizeof(U8_BAD_END)-1;
  7080. }
  7081. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  7082. format_statline(statusline, sizeof(statusline),
  7083. cHr, aHr,
  7084. uHr,
  7085. ui_accepted,
  7086. ui_rejected,
  7087. ui_stale,
  7088. total_diff_rejected + total_diff_stale, total_diff_accepted,
  7089. hw_errors,
  7090. total_bad_diff1, total_bad_diff1 + total_diff1);
  7091. unlock_curses();
  7092. }
  7093. #endif
  7094. // Add a space
  7095. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  7096. uHr[5] = ' ';
  7097. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  7098. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  7099. snprintf(logstatusline, sizeof(logstatusline),
  7100. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  7101. want_per_device_stats ? "ALL " : "",
  7102. opt_log_interval,
  7103. cHr, aHr,
  7104. uHr,
  7105. ui_accepted,
  7106. ui_rejected,
  7107. ui_stale,
  7108. rejpcbuf,
  7109. hw_errors,
  7110. bnbuf
  7111. );
  7112. local_mhashes_done = 0;
  7113. out_unlock:
  7114. mutex_unlock(&hash_lock);
  7115. if (showlog) {
  7116. if (!curses_active) {
  7117. printf("%s \r", logstatusline);
  7118. fflush(stdout);
  7119. } else
  7120. applog(LOG_INFO, "%s", logstatusline);
  7121. }
  7122. }
  7123. void hashmeter2(struct thr_info *thr)
  7124. {
  7125. struct timeval tv_now, tv_elapsed;
  7126. timerclear(&thr->tv_hashes_done);
  7127. cgtime(&tv_now);
  7128. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  7129. /* Update the hashmeter at most 5 times per second */
  7130. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  7131. tv_elapsed.tv_sec >= opt_log_interval) {
  7132. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  7133. thr->hashes_done = 0;
  7134. thr->tv_lastupdate = tv_now;
  7135. }
  7136. }
  7137. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  7138. struct stratum_share *sshare)
  7139. {
  7140. struct work *work = sshare->work;
  7141. share_result(val, res_val, err_val, work, false, "");
  7142. }
  7143. /* Parses stratum json responses and tries to find the id that the request
  7144. * matched to and treat it accordingly. */
  7145. bool parse_stratum_response(struct pool *pool, char *s)
  7146. {
  7147. json_t *val = NULL, *err_val, *res_val, *id_val;
  7148. struct stratum_share *sshare;
  7149. json_error_t err;
  7150. bool ret = false;
  7151. int id;
  7152. val = JSON_LOADS(s, &err);
  7153. if (!val) {
  7154. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7155. goto out;
  7156. }
  7157. res_val = json_object_get(val, "result");
  7158. err_val = json_object_get(val, "error");
  7159. id_val = json_object_get(val, "id");
  7160. if (json_is_null(id_val) || !id_val) {
  7161. char *ss;
  7162. if (err_val)
  7163. ss = json_dumps(err_val, JSON_INDENT(3));
  7164. else
  7165. ss = strdup("(unknown reason)");
  7166. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7167. free(ss);
  7168. goto out;
  7169. }
  7170. if (!json_is_integer(id_val)) {
  7171. if (json_is_string(id_val)
  7172. && !strncmp(json_string_value(id_val), "txlist", 6))
  7173. {
  7174. const bool is_array = json_is_array(res_val);
  7175. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7176. is_array ? "transaction list" : "no-transaction-list response",
  7177. pool->pool_no, &json_string_value(id_val)[6]);
  7178. if (!is_array)
  7179. {
  7180. // No need to wait for a timeout
  7181. timer_unset(&pool->swork.tv_transparency);
  7182. pool_set_opaque(pool, true);
  7183. goto fishy;
  7184. }
  7185. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7186. // We only care about a transaction list for the current job id
  7187. goto fishy;
  7188. // Check that the transactions actually hash to the merkle links
  7189. {
  7190. unsigned maxtx = 1 << pool->swork.merkles;
  7191. unsigned mintx = maxtx >> 1;
  7192. --maxtx;
  7193. unsigned acttx = (unsigned)json_array_size(res_val);
  7194. if (acttx < mintx || acttx > maxtx) {
  7195. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7196. pool->pool_no, acttx, mintx, maxtx);
  7197. goto fishy;
  7198. }
  7199. // TODO: Check hashes match actual merkle links
  7200. }
  7201. pool_set_opaque(pool, false);
  7202. timer_unset(&pool->swork.tv_transparency);
  7203. fishy:
  7204. ret = true;
  7205. }
  7206. goto out;
  7207. }
  7208. id = json_integer_value(id_val);
  7209. mutex_lock(&sshare_lock);
  7210. HASH_FIND_INT(stratum_shares, &id, sshare);
  7211. if (sshare)
  7212. HASH_DEL(stratum_shares, sshare);
  7213. mutex_unlock(&sshare_lock);
  7214. if (!sshare) {
  7215. double pool_diff;
  7216. /* Since the share is untracked, we can only guess at what the
  7217. * work difficulty is based on the current pool diff. */
  7218. cg_rlock(&pool->data_lock);
  7219. pool_diff = target_diff(pool->swork.target);
  7220. cg_runlock(&pool->data_lock);
  7221. if (json_is_true(res_val)) {
  7222. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7223. /* We don't know what device this came from so we can't
  7224. * attribute the work to the relevant cgpu */
  7225. mutex_lock(&stats_lock);
  7226. total_accepted++;
  7227. pool->accepted++;
  7228. total_diff_accepted += pool_diff;
  7229. pool->diff_accepted += pool_diff;
  7230. mutex_unlock(&stats_lock);
  7231. } else {
  7232. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7233. mutex_lock(&stats_lock);
  7234. total_rejected++;
  7235. pool->rejected++;
  7236. total_diff_rejected += pool_diff;
  7237. pool->diff_rejected += pool_diff;
  7238. mutex_unlock(&stats_lock);
  7239. }
  7240. goto out;
  7241. }
  7242. else {
  7243. mutex_lock(&submitting_lock);
  7244. --total_submitting;
  7245. mutex_unlock(&submitting_lock);
  7246. }
  7247. stratum_share_result(val, res_val, err_val, sshare);
  7248. free_work(sshare->work);
  7249. free(sshare);
  7250. ret = true;
  7251. out:
  7252. if (val)
  7253. json_decref(val);
  7254. return ret;
  7255. }
  7256. static void shutdown_stratum(struct pool *pool)
  7257. {
  7258. // Shut down Stratum as if we never had it
  7259. pool->stratum_active = false;
  7260. pool->stratum_init = false;
  7261. pool->has_stratum = false;
  7262. shutdown(pool->sock, SHUT_RDWR);
  7263. free(pool->stratum_url);
  7264. if (pool->sockaddr_url == pool->stratum_url)
  7265. pool->sockaddr_url = NULL;
  7266. pool->stratum_url = NULL;
  7267. }
  7268. void clear_stratum_shares(struct pool *pool)
  7269. {
  7270. int my_mining_threads = mining_threads; // Cached outside of locking
  7271. struct stratum_share *sshare, *tmpshare;
  7272. struct work *work;
  7273. struct cgpu_info *cgpu;
  7274. double diff_cleared = 0;
  7275. double thr_diff_cleared[my_mining_threads];
  7276. int cleared = 0;
  7277. int thr_cleared[my_mining_threads];
  7278. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7279. for (int i = 0; i < my_mining_threads; ++i)
  7280. {
  7281. thr_diff_cleared[i] = 0;
  7282. thr_cleared[i] = 0;
  7283. }
  7284. mutex_lock(&sshare_lock);
  7285. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7286. work = sshare->work;
  7287. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7288. HASH_DEL(stratum_shares, sshare);
  7289. sharelog("disconnect", work);
  7290. diff_cleared += sshare->work->work_difficulty;
  7291. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7292. ++thr_cleared[work->thr_id];
  7293. free_work(sshare->work);
  7294. free(sshare);
  7295. cleared++;
  7296. }
  7297. }
  7298. mutex_unlock(&sshare_lock);
  7299. if (cleared) {
  7300. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7301. mutex_lock(&stats_lock);
  7302. pool->stale_shares += cleared;
  7303. total_stale += cleared;
  7304. pool->diff_stale += diff_cleared;
  7305. total_diff_stale += diff_cleared;
  7306. for (int i = 0; i < my_mining_threads; ++i)
  7307. if (thr_cleared[i])
  7308. {
  7309. cgpu = get_thr_cgpu(i);
  7310. cgpu->diff_stale += thr_diff_cleared[i];
  7311. cgpu->stale += thr_cleared[i];
  7312. }
  7313. mutex_unlock(&stats_lock);
  7314. mutex_lock(&submitting_lock);
  7315. total_submitting -= cleared;
  7316. mutex_unlock(&submitting_lock);
  7317. }
  7318. }
  7319. static void resubmit_stratum_shares(struct pool *pool)
  7320. {
  7321. struct stratum_share *sshare, *tmpshare;
  7322. struct work *work;
  7323. unsigned resubmitted = 0;
  7324. mutex_lock(&sshare_lock);
  7325. mutex_lock(&submitting_lock);
  7326. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7327. if (sshare->work->pool != pool)
  7328. continue;
  7329. HASH_DEL(stratum_shares, sshare);
  7330. work = sshare->work;
  7331. DL_APPEND(submit_waiting, work);
  7332. free(sshare);
  7333. ++resubmitted;
  7334. }
  7335. mutex_unlock(&submitting_lock);
  7336. mutex_unlock(&sshare_lock);
  7337. if (resubmitted) {
  7338. notifier_wake(submit_waiting_notifier);
  7339. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7340. }
  7341. }
  7342. static void clear_pool_work(struct pool *pool)
  7343. {
  7344. struct work *work, *tmp;
  7345. int cleared = 0;
  7346. mutex_lock(stgd_lock);
  7347. HASH_ITER(hh, staged_work, work, tmp) {
  7348. if (work->pool == pool) {
  7349. HASH_DEL(staged_work, work);
  7350. free_work(work);
  7351. cleared++;
  7352. staged_full = false;
  7353. }
  7354. }
  7355. mutex_unlock(stgd_lock);
  7356. }
  7357. static int cp_prio(void)
  7358. {
  7359. int prio;
  7360. cg_rlock(&control_lock);
  7361. prio = currentpool->prio;
  7362. cg_runlock(&control_lock);
  7363. return prio;
  7364. }
  7365. /* We only need to maintain a secondary pool connection when we need the
  7366. * capacity to get work from the backup pools while still on the primary */
  7367. static bool cnx_needed(struct pool *pool)
  7368. {
  7369. struct pool *cp;
  7370. if (pool->enabled != POOL_ENABLED)
  7371. return false;
  7372. /* Idle stratum pool needs something to kick it alive again */
  7373. if (pool->has_stratum && pool->idle)
  7374. return true;
  7375. /* Getwork pools without opt_fail_only need backup pools up to be able
  7376. * to leak shares */
  7377. cp = current_pool();
  7378. if (pool_actively_desired(pool, cp))
  7379. return true;
  7380. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7381. return true;
  7382. /* Keep the connection open to allow any stray shares to be submitted
  7383. * on switching pools for 2 minutes. */
  7384. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7385. return true;
  7386. /* If the pool has only just come to life and is higher priority than
  7387. * the current pool keep the connection open so we can fail back to
  7388. * it. */
  7389. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7390. return true;
  7391. if (pool_unworkable(cp))
  7392. return true;
  7393. /* We've run out of work, bring anything back to life. */
  7394. if (no_work)
  7395. return true;
  7396. return false;
  7397. }
  7398. static void wait_lpcurrent(struct pool *pool);
  7399. static void pool_resus(struct pool *pool);
  7400. static void gen_stratum_work(struct pool *pool, struct work *work);
  7401. static void stratum_resumed(struct pool *pool)
  7402. {
  7403. if (!pool->stratum_notify)
  7404. return;
  7405. if (pool_tclear(pool, &pool->idle)) {
  7406. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7407. pool_resus(pool);
  7408. }
  7409. }
  7410. static bool supports_resume(struct pool *pool)
  7411. {
  7412. bool ret;
  7413. cg_rlock(&pool->data_lock);
  7414. ret = (pool->sessionid != NULL);
  7415. cg_runlock(&pool->data_lock);
  7416. return ret;
  7417. }
  7418. /* One stratum thread per pool that has stratum waits on the socket checking
  7419. * for new messages and for the integrity of the socket connection. We reset
  7420. * the connection based on the integrity of the receive side only as the send
  7421. * side will eventually expire data it fails to send. */
  7422. static void *stratum_thread(void *userdata)
  7423. {
  7424. struct pool *pool = (struct pool *)userdata;
  7425. pthread_detach(pthread_self());
  7426. char threadname[20];
  7427. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7428. RenameThread(threadname);
  7429. srand(time(NULL) + (intptr_t)userdata);
  7430. while (42) {
  7431. struct timeval timeout;
  7432. int sel_ret;
  7433. fd_set rd;
  7434. char *s;
  7435. int sock;
  7436. if (unlikely(!pool->has_stratum))
  7437. break;
  7438. /* Check to see whether we need to maintain this connection
  7439. * indefinitely or just bring it up when we switch to this
  7440. * pool */
  7441. while (true)
  7442. {
  7443. sock = pool->sock;
  7444. if (sock == INVSOCK)
  7445. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7446. pool->pool_no);
  7447. else
  7448. if (!sock_full(pool) && !cnx_needed(pool))
  7449. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7450. pool->pool_no);
  7451. else
  7452. break;
  7453. suspend_stratum(pool);
  7454. clear_stratum_shares(pool);
  7455. clear_pool_work(pool);
  7456. wait_lpcurrent(pool);
  7457. if (!restart_stratum(pool)) {
  7458. pool_died(pool);
  7459. while (!restart_stratum(pool)) {
  7460. if (pool->removed)
  7461. goto out;
  7462. cgsleep_ms(30000);
  7463. }
  7464. }
  7465. }
  7466. FD_ZERO(&rd);
  7467. FD_SET(sock, &rd);
  7468. timeout.tv_sec = 120;
  7469. timeout.tv_usec = 0;
  7470. /* If we fail to receive any notify messages for 2 minutes we
  7471. * assume the connection has been dropped and treat this pool
  7472. * as dead */
  7473. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7474. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7475. s = NULL;
  7476. } else
  7477. s = recv_line(pool);
  7478. if (!s) {
  7479. if (!pool->has_stratum)
  7480. break;
  7481. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7482. pool->getfail_occasions++;
  7483. total_go++;
  7484. mutex_lock(&pool->stratum_lock);
  7485. pool->stratum_active = pool->stratum_notify = false;
  7486. pool->sock = INVSOCK;
  7487. mutex_unlock(&pool->stratum_lock);
  7488. /* If the socket to our stratum pool disconnects, all
  7489. * submissions need to be discarded or resent. */
  7490. if (!supports_resume(pool))
  7491. clear_stratum_shares(pool);
  7492. else
  7493. resubmit_stratum_shares(pool);
  7494. clear_pool_work(pool);
  7495. if (pool == current_pool())
  7496. restart_threads();
  7497. if (restart_stratum(pool))
  7498. continue;
  7499. shutdown_stratum(pool);
  7500. pool_died(pool);
  7501. break;
  7502. }
  7503. /* Check this pool hasn't died while being a backup pool and
  7504. * has not had its idle flag cleared */
  7505. stratum_resumed(pool);
  7506. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7507. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7508. free(s);
  7509. if (pool->swork.clean) {
  7510. struct work *work = make_work();
  7511. /* Generate a single work item to update the current
  7512. * block database */
  7513. pool->swork.clean = false;
  7514. gen_stratum_work(pool, work);
  7515. /* Try to extract block height from coinbase scriptSig */
  7516. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7517. unsigned char cb_height_sz;
  7518. cb_height_sz = bin_height[-1];
  7519. if (cb_height_sz == 3) {
  7520. // FIXME: The block number will overflow this by AD 2173
  7521. uint32_t block_id = ((uint32_t*)work->data)[1];
  7522. uint32_t height = 0;
  7523. memcpy(&height, bin_height, 3);
  7524. height = le32toh(height);
  7525. have_block_height(block_id, height);
  7526. }
  7527. pool->swork.work_restart_id =
  7528. ++pool->work_restart_id;
  7529. pool_update_work_restart_time(pool);
  7530. if (test_work_current(work)) {
  7531. /* Only accept a work update if this stratum
  7532. * connection is from the current pool */
  7533. struct pool * const cp = current_pool();
  7534. if (pool == cp)
  7535. restart_threads();
  7536. applog(
  7537. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7538. "Stratum from pool %d requested work update", pool->pool_no);
  7539. } else
  7540. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7541. free_work(work);
  7542. }
  7543. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7544. // More than 4 timmills past since requested transactions
  7545. timer_unset(&pool->swork.tv_transparency);
  7546. pool_set_opaque(pool, true);
  7547. }
  7548. }
  7549. out:
  7550. return NULL;
  7551. }
  7552. static void init_stratum_thread(struct pool *pool)
  7553. {
  7554. have_longpoll = true;
  7555. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7556. quit(1, "Failed to create stratum thread");
  7557. }
  7558. static void *longpoll_thread(void *userdata);
  7559. static bool stratum_works(struct pool *pool)
  7560. {
  7561. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7562. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7563. return false;
  7564. if (pool->stratum_active)
  7565. return true;
  7566. if (!initiate_stratum(pool))
  7567. return false;
  7568. return true;
  7569. }
  7570. static bool pool_active(struct pool *pool, bool pinging)
  7571. {
  7572. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7573. bool ret = false;
  7574. json_t *val;
  7575. CURL *curl;
  7576. int rolltime;
  7577. char *rpc_req;
  7578. struct work *work;
  7579. enum pool_protocol proto;
  7580. if (pool->stratum_init)
  7581. return pool->stratum_active;
  7582. timer_set_now(&tv_now);
  7583. if (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, &tv_now) < 60)
  7584. return true;
  7585. if (pool->idle && timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7586. return false;
  7587. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7588. /* This is the central point we activate stratum when we can */
  7589. curl = curl_easy_init();
  7590. if (unlikely(!curl)) {
  7591. applog(LOG_ERR, "CURL initialisation failed");
  7592. return false;
  7593. }
  7594. if (!(want_gbt || want_getwork))
  7595. goto nohttp;
  7596. work = make_work();
  7597. /* Probe for GBT support on first pass */
  7598. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7599. tryagain:
  7600. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7601. work->pool = pool;
  7602. if (!rpc_req)
  7603. goto out;
  7604. pool->probed = false;
  7605. cgtime(&tv_getwork);
  7606. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7607. true, false, &rolltime, pool, false);
  7608. cgtime(&tv_getwork_reply);
  7609. free(rpc_req);
  7610. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7611. * and if so, switch to that in preference to getwork if it works */
  7612. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7613. if (!pool->has_stratum) {
  7614. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7615. if (!pool->rpc_url)
  7616. pool->rpc_url = strdup(pool->stratum_url);
  7617. pool->has_stratum = true;
  7618. }
  7619. free_work(work);
  7620. if (val)
  7621. json_decref(val);
  7622. retry_stratum:
  7623. curl_easy_cleanup(curl);
  7624. /* We create the stratum thread for each pool just after
  7625. * successful authorisation. Once the init flag has been set
  7626. * we never unset it and the stratum thread is responsible for
  7627. * setting/unsetting the active flag */
  7628. bool init = pool_tset(pool, &pool->stratum_init);
  7629. if (!init) {
  7630. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7631. if (ret)
  7632. {
  7633. detect_algo = 2;
  7634. init_stratum_thread(pool);
  7635. }
  7636. else
  7637. pool_tclear(pool, &pool->stratum_init);
  7638. return ret;
  7639. }
  7640. return pool->stratum_active;
  7641. }
  7642. else if (pool->has_stratum)
  7643. shutdown_stratum(pool);
  7644. if (val) {
  7645. bool rc;
  7646. json_t *res;
  7647. res = json_object_get(val, "result");
  7648. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7649. goto badwork;
  7650. work->rolltime = rolltime;
  7651. rc = work_decode(pool, work, val);
  7652. if (rc) {
  7653. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7654. pool->pool_no, pool->rpc_url);
  7655. work->pool = pool;
  7656. copy_time(&work->tv_getwork, &tv_getwork);
  7657. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7658. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7659. calc_diff(work, 0);
  7660. update_last_work(work);
  7661. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7662. stage_work(work);
  7663. total_getworks++;
  7664. pool->getwork_requested++;
  7665. ret = true;
  7666. cgtime(&pool->tv_idle);
  7667. } else {
  7668. badwork:
  7669. json_decref(val);
  7670. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7671. pool->pool_no, pool->rpc_url);
  7672. pool->proto = proto = pool_protocol_fallback(proto);
  7673. if (PLP_NONE != proto)
  7674. goto tryagain;
  7675. free_work(work);
  7676. goto out;
  7677. }
  7678. json_decref(val);
  7679. if (proto != pool->proto) {
  7680. pool->proto = proto;
  7681. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7682. }
  7683. if (pool->lp_url)
  7684. goto out;
  7685. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7686. const struct blktmpl_longpoll_req *lp;
  7687. if (work->tr && (lp = blktmpl_get_longpoll(work->tr->tmpl))) {
  7688. // NOTE: work_decode takes care of lp id
  7689. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7690. if (!pool->lp_url)
  7691. {
  7692. ret = false;
  7693. goto out;
  7694. }
  7695. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7696. }
  7697. else
  7698. if (pool->hdr_path && want_getwork) {
  7699. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7700. if (!pool->lp_url)
  7701. {
  7702. ret = false;
  7703. goto out;
  7704. }
  7705. pool->lp_proto = PLP_GETWORK;
  7706. } else
  7707. pool->lp_url = NULL;
  7708. if (want_longpoll && !pool->lp_started) {
  7709. pool->lp_started = true;
  7710. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7711. quit(1, "Failed to create pool longpoll thread");
  7712. }
  7713. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7714. pool->proto = proto;
  7715. goto tryagain;
  7716. } else {
  7717. free_work(work);
  7718. nohttp:
  7719. /* If we failed to parse a getwork, this could be a stratum
  7720. * url without the prefix stratum+tcp:// so let's check it */
  7721. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7722. pool->has_stratum = true;
  7723. goto retry_stratum;
  7724. }
  7725. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7726. pool->pool_no, pool->rpc_url);
  7727. if (!pinging)
  7728. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7729. }
  7730. out:
  7731. curl_easy_cleanup(curl);
  7732. return ret;
  7733. }
  7734. static void pool_resus(struct pool *pool)
  7735. {
  7736. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7737. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7738. else
  7739. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7740. }
  7741. static struct work *hash_pop(void)
  7742. {
  7743. struct work *work = NULL, *tmp;
  7744. int hc;
  7745. struct timespec ts;
  7746. retry:
  7747. mutex_lock(stgd_lock);
  7748. while (!HASH_COUNT(staged_work))
  7749. {
  7750. if (unlikely(staged_full))
  7751. {
  7752. if (likely(opt_queue < 10 + mining_threads))
  7753. {
  7754. ++opt_queue;
  7755. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7756. }
  7757. else
  7758. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7759. staged_full = false; // Let it fill up before triggering an underrun again
  7760. no_work = true;
  7761. }
  7762. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7763. pthread_cond_signal(&gws_cond);
  7764. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7765. {
  7766. run_cmd(cmd_idle);
  7767. pthread_cond_signal(&gws_cond);
  7768. pthread_cond_wait(&getq->cond, stgd_lock);
  7769. }
  7770. }
  7771. no_work = false;
  7772. hc = HASH_COUNT(staged_work);
  7773. /* Find clone work if possible, to allow masters to be reused */
  7774. if (hc > staged_rollable) {
  7775. HASH_ITER(hh, staged_work, work, tmp) {
  7776. if (!work_rollable(work))
  7777. break;
  7778. }
  7779. } else
  7780. work = staged_work;
  7781. if (can_roll(work) && should_roll(work))
  7782. {
  7783. // Instead of consuming it, force it to be cloned and grab the clone
  7784. mutex_unlock(stgd_lock);
  7785. clone_available();
  7786. goto retry;
  7787. }
  7788. HASH_DEL(staged_work, work);
  7789. if (work_rollable(work))
  7790. staged_rollable--;
  7791. /* Signal the getwork scheduler to look for more work */
  7792. pthread_cond_signal(&gws_cond);
  7793. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7794. pthread_cond_signal(&getq->cond);
  7795. mutex_unlock(stgd_lock);
  7796. work->pool->last_work_time = time(NULL);
  7797. cgtime(&work->pool->tv_last_work_time);
  7798. return work;
  7799. }
  7800. /* Clones work by rolling it if possible, and returning a clone instead of the
  7801. * original work item which gets staged again to possibly be rolled again in
  7802. * the future */
  7803. static struct work *clone_work(struct work *work)
  7804. {
  7805. int mrs = mining_threads + opt_queue - total_staged();
  7806. struct work *work_clone;
  7807. bool cloned;
  7808. if (mrs < 1)
  7809. return work;
  7810. cloned = false;
  7811. work_clone = make_clone(work);
  7812. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7813. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7814. stage_work(work_clone);
  7815. roll_work(work);
  7816. work_clone = make_clone(work);
  7817. /* Roll it again to prevent duplicates should this be used
  7818. * directly later on */
  7819. roll_work(work);
  7820. cloned = true;
  7821. }
  7822. if (cloned) {
  7823. stage_work(work);
  7824. return work_clone;
  7825. }
  7826. free_work(work_clone);
  7827. return work;
  7828. }
  7829. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7830. {
  7831. unsigned char hash1[32];
  7832. sha256(data, len, hash1);
  7833. sha256(hash1, 32, hash);
  7834. }
  7835. /* PDiff 1 is a 256 bit unsigned integer of
  7836. * 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  7837. * so we use a big endian 32 bit unsigned integer positioned at the Nth byte to
  7838. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7839. static void pdiff_target_leadzero(void * const target_p, double diff)
  7840. {
  7841. uint8_t *target = target_p;
  7842. diff *= 0x100000000;
  7843. int skip = log2(diff) / 8;
  7844. if (skip)
  7845. {
  7846. if (skip > 0x1c)
  7847. skip = 0x1c;
  7848. diff /= pow(0x100, skip);
  7849. memset(target, 0, skip);
  7850. }
  7851. uint32_t n = 0xffffffff;
  7852. n = (double)n / diff;
  7853. n = htobe32(n);
  7854. memcpy(&target[skip], &n, sizeof(n));
  7855. memset(&target[skip + sizeof(n)], 0xff, 32 - (skip + sizeof(n)));
  7856. }
  7857. void set_target_to_pdiff(void * const dest_target, const double pdiff)
  7858. {
  7859. unsigned char rtarget[32];
  7860. pdiff_target_leadzero(rtarget, pdiff);
  7861. swab256(dest_target, rtarget);
  7862. if (opt_debug) {
  7863. char htarget[65];
  7864. bin2hex(htarget, rtarget, 32);
  7865. applog(LOG_DEBUG, "Generated target %s", htarget);
  7866. }
  7867. }
  7868. void set_target_to_bdiff(void * const dest_target, const double bdiff)
  7869. {
  7870. set_target_to_pdiff(dest_target, bdiff_to_pdiff(bdiff));
  7871. }
  7872. void _test_target(void * const funcp, const char * const funcname, const bool little_endian, const void * const expectp, const double diff)
  7873. {
  7874. uint8_t bufr[32], buf[32], expectr[32], expect[32];
  7875. int off;
  7876. void (*func)(void *, double) = funcp;
  7877. func(little_endian ? bufr : buf, diff);
  7878. if (little_endian)
  7879. swab256(buf, bufr);
  7880. swap32tobe(expect, expectp, 256/32);
  7881. // Fuzzy comparison: the first 32 bits set must match, and the actual target must be >= the expected
  7882. for (off = 0; off < 28 && !buf[off]; ++off)
  7883. {}
  7884. if (memcmp(&buf[off], &expect[off], 4))
  7885. {
  7886. testfail: ;
  7887. char hexbuf[65], expectbuf[65];
  7888. bin2hex(hexbuf, buf, 32);
  7889. bin2hex(expectbuf, expect, 32);
  7890. applogr(, LOG_WARNING, "%s test failed: diff %g got %s (expected %s)",
  7891. funcname, diff, hexbuf, expectbuf);
  7892. }
  7893. if (!little_endian)
  7894. swab256(bufr, buf);
  7895. swab256(expectr, expect);
  7896. if (!hash_target_check(expectr, bufr))
  7897. goto testfail;
  7898. }
  7899. #define TEST_TARGET(func, le, expect, diff) \
  7900. _test_target(func, #func, le, expect, diff)
  7901. void test_target()
  7902. {
  7903. uint32_t expect[8] = {0};
  7904. // bdiff 1 should be exactly 00000000ffff0000000006f29cfd29510a6caee84634e86a57257cf03152537f due to floating-point imprecision (pdiff1 / 1.0000152590218966)
  7905. expect[0] = 0x0000ffff;
  7906. TEST_TARGET(set_target_to_bdiff, true, expect, 1./0x10000);
  7907. expect[0] = 0;
  7908. expect[1] = 0xffff0000;
  7909. TEST_TARGET(set_target_to_bdiff, true, expect, 1);
  7910. expect[1] >>= 1;
  7911. TEST_TARGET(set_target_to_bdiff, true, expect, 2);
  7912. expect[1] >>= 3;
  7913. TEST_TARGET(set_target_to_bdiff, true, expect, 0x10);
  7914. expect[1] >>= 4;
  7915. TEST_TARGET(set_target_to_bdiff, true, expect, 0x100);
  7916. memset(&expect[1], '\xff', 28);
  7917. expect[0] = 0x0000ffff;
  7918. TEST_TARGET(set_target_to_pdiff, true, expect, 1./0x10000);
  7919. expect[0] = 0;
  7920. TEST_TARGET(set_target_to_pdiff, true, expect, 1);
  7921. expect[1] >>= 1;
  7922. TEST_TARGET(set_target_to_pdiff, true, expect, 2);
  7923. expect[1] >>= 3;
  7924. TEST_TARGET(set_target_to_pdiff, true, expect, 0x10);
  7925. expect[1] >>= 4;
  7926. TEST_TARGET(set_target_to_pdiff, true, expect, 0x100);
  7927. }
  7928. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7929. {
  7930. *dst = *src;
  7931. if (dst->tr)
  7932. tmpl_incref(dst->tr);
  7933. dst->nonce1 = maybe_strdup(src->nonce1);
  7934. dst->job_id = maybe_strdup(src->job_id);
  7935. bytes_cpy(&dst->coinbase, &src->coinbase);
  7936. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7937. }
  7938. void stratum_work_clean(struct stratum_work * const swork)
  7939. {
  7940. if (swork->tr)
  7941. tmpl_decref(swork->tr);
  7942. free(swork->nonce1);
  7943. free(swork->job_id);
  7944. bytes_free(&swork->coinbase);
  7945. bytes_free(&swork->merkle_bin);
  7946. }
  7947. bool pool_has_usable_swork(const struct pool * const pool)
  7948. {
  7949. if (opt_benchmark)
  7950. return true;
  7951. if (pool->swork.tr)
  7952. {
  7953. // GBT
  7954. struct timeval tv_now;
  7955. timer_set_now(&tv_now);
  7956. return blkmk_time_left(pool->swork.tr->tmpl, tv_now.tv_sec);
  7957. }
  7958. return pool->stratum_notify;
  7959. }
  7960. /* Generates stratum based work based on the most recent notify information
  7961. * from the pool. This will keep generating work while a pool is down so we use
  7962. * other means to detect when the pool has died in stratum_thread */
  7963. static void gen_stratum_work(struct pool *pool, struct work *work)
  7964. {
  7965. clean_work(work);
  7966. cg_wlock(&pool->data_lock);
  7967. pool->swork.data_lock_p = &pool->data_lock;
  7968. const int n2size = pool->swork.n2size;
  7969. bytes_resize(&work->nonce2, n2size);
  7970. if (pool->nonce2sz < n2size)
  7971. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, n2size - pool->nonce2sz);
  7972. memcpy(bytes_buf(&work->nonce2),
  7973. #ifdef WORDS_BIGENDIAN
  7974. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7975. &((char*)&pool->nonce2)[pool->nonce2off],
  7976. #else
  7977. &pool->nonce2,
  7978. #endif
  7979. pool->nonce2sz);
  7980. pool->nonce2++;
  7981. work->pool = pool;
  7982. work->work_restart_id = pool->swork.work_restart_id;
  7983. gen_stratum_work2(work, &pool->swork);
  7984. cgtime(&work->tv_staged);
  7985. }
  7986. void gen_stratum_work2(struct work *work, struct stratum_work *swork)
  7987. {
  7988. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7989. uint8_t *merkle_bin;
  7990. uint32_t *data32, *swap32;
  7991. int i;
  7992. /* Generate coinbase */
  7993. coinbase = bytes_buf(&swork->coinbase);
  7994. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7995. /* Downgrade to a read lock to read off the variables */
  7996. if (swork->data_lock_p)
  7997. cg_dwlock(swork->data_lock_p);
  7998. /* Generate merkle root */
  7999. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  8000. memcpy(merkle_sha, merkle_root, 32);
  8001. merkle_bin = bytes_buf(&swork->merkle_bin);
  8002. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  8003. memcpy(merkle_sha + 32, merkle_bin, 32);
  8004. gen_hash(merkle_sha, merkle_root, 64);
  8005. memcpy(merkle_sha, merkle_root, 32);
  8006. }
  8007. data32 = (uint32_t *)merkle_sha;
  8008. swap32 = (uint32_t *)merkle_root;
  8009. flip32(swap32, data32);
  8010. memcpy(&work->data[0], swork->header1, 36);
  8011. memcpy(&work->data[36], merkle_root, 32);
  8012. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  8013. memcpy(&work->data[72], swork->diffbits, 4);
  8014. memset(&work->data[76], 0, 4); // nonce
  8015. memcpy(&work->data[80], workpadding_bin, 48);
  8016. work->ntime_roll_limits = swork->ntime_roll_limits;
  8017. /* Copy parameters required for share submission */
  8018. memcpy(work->target, swork->target, sizeof(work->target));
  8019. work->job_id = maybe_strdup(swork->job_id);
  8020. work->nonce1 = maybe_strdup(swork->nonce1);
  8021. if (swork->data_lock_p)
  8022. cg_runlock(swork->data_lock_p);
  8023. if (opt_debug)
  8024. {
  8025. char header[161];
  8026. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  8027. bin2hex(header, work->data, 80);
  8028. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  8029. applog(LOG_DEBUG, "Generated stratum header %s", header);
  8030. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  8031. }
  8032. calc_midstate(work);
  8033. local_work++;
  8034. work->stratum = true;
  8035. work->blk.nonce = 0;
  8036. work->id = total_work++;
  8037. work->longpoll = false;
  8038. work->getwork_mode = GETWORK_MODE_STRATUM;
  8039. calc_diff(work, 0);
  8040. }
  8041. void request_work(struct thr_info *thr)
  8042. {
  8043. struct cgpu_info *cgpu = thr->cgpu;
  8044. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8045. /* Tell the watchdog thread this thread is waiting on getwork and
  8046. * should not be restarted */
  8047. thread_reportout(thr);
  8048. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  8049. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8050. {
  8051. if (proc->threads)
  8052. break;
  8053. thread_reportout(proc->thr[0]);
  8054. }
  8055. cgtime(&dev_stats->_get_start);
  8056. }
  8057. // FIXME: Make this non-blocking (and remove HACK above)
  8058. struct work *get_work(struct thr_info *thr)
  8059. {
  8060. const int thr_id = thr->id;
  8061. struct cgpu_info *cgpu = thr->cgpu;
  8062. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8063. struct cgminer_stats *pool_stats;
  8064. struct timeval tv_get;
  8065. struct work *work = NULL;
  8066. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  8067. while (!work) {
  8068. work = hash_pop();
  8069. if (stale_work(work, false)) {
  8070. staged_full = false; // It wasn't really full, since it was stale :(
  8071. discard_work(work);
  8072. work = NULL;
  8073. wake_gws();
  8074. }
  8075. }
  8076. last_getwork = time(NULL);
  8077. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  8078. cgpu->proc_repr, work->id, thr_id);
  8079. work->thr_id = thr_id;
  8080. thread_reportin(thr);
  8081. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  8082. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8083. {
  8084. if (proc->threads)
  8085. break;
  8086. thread_reportin(proc->thr[0]);
  8087. }
  8088. work->mined = true;
  8089. work->blk.nonce = 0;
  8090. cgtime(&tv_get);
  8091. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  8092. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  8093. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  8094. dev_stats->getwork_wait_max = tv_get;
  8095. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  8096. dev_stats->getwork_wait_min = tv_get;
  8097. ++dev_stats->getwork_calls;
  8098. pool_stats = &(work->pool->cgminer_stats);
  8099. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  8100. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  8101. pool_stats->getwork_wait_max = tv_get;
  8102. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  8103. pool_stats->getwork_wait_min = tv_get;
  8104. ++pool_stats->getwork_calls;
  8105. if (work->work_difficulty < 1)
  8106. {
  8107. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  8108. {
  8109. if (cgpu->min_nonce_diff - work->work_difficulty > 1./0x10000000)
  8110. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  8111. cgpu->proc_repr);
  8112. work->nonce_diff = cgpu->min_nonce_diff;
  8113. }
  8114. else
  8115. work->nonce_diff = work->work_difficulty;
  8116. }
  8117. else
  8118. work->nonce_diff = 1;
  8119. return work;
  8120. }
  8121. static
  8122. void _submit_work_async(struct work *work)
  8123. {
  8124. applog(LOG_DEBUG, "Pushing submit work to work thread");
  8125. if (opt_benchmark)
  8126. {
  8127. json_t * const jn = json_null();
  8128. rebuild_hash(work);
  8129. share_result(jn, jn, jn, work, false, "");
  8130. free_work(work);
  8131. return;
  8132. }
  8133. mutex_lock(&submitting_lock);
  8134. ++total_submitting;
  8135. DL_APPEND(submit_waiting, work);
  8136. mutex_unlock(&submitting_lock);
  8137. notifier_wake(submit_waiting_notifier);
  8138. }
  8139. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  8140. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  8141. {
  8142. if (tv_work_found)
  8143. copy_time(&work->tv_work_found, tv_work_found);
  8144. _submit_work_async(work);
  8145. }
  8146. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  8147. {
  8148. struct cgpu_info * const cgpu = thr->cgpu;
  8149. if (bad_nonce_p)
  8150. {
  8151. if (bad_nonce_p == UNKNOWN_NONCE)
  8152. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  8153. cgpu->proc_repr);
  8154. else
  8155. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  8156. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  8157. }
  8158. mutex_lock(&stats_lock);
  8159. hw_errors++;
  8160. ++cgpu->hw_errors;
  8161. if (bad_nonce_p)
  8162. {
  8163. total_bad_diff1 += nonce_diff;
  8164. cgpu->bad_diff1 += nonce_diff;
  8165. }
  8166. mutex_unlock(&stats_lock);
  8167. if (thr->cgpu->drv->hw_error)
  8168. thr->cgpu->drv->hw_error(thr);
  8169. }
  8170. static
  8171. bool test_hash(const void * const phash, const float diff)
  8172. {
  8173. const uint32_t * const hash = phash;
  8174. if (diff >= 1.)
  8175. // FIXME: > 1 should check more
  8176. return !hash[7];
  8177. const uint32_t Htarg = (uint32_t)(0x100000000 * diff) - 1;
  8178. const uint32_t tmp_hash7 = le32toh(hash[7]);
  8179. applog(LOG_DEBUG, "htarget %08lx hash %08lx",
  8180. (long unsigned int)Htarg,
  8181. (long unsigned int)tmp_hash7);
  8182. return (tmp_hash7 <= Htarg);
  8183. }
  8184. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  8185. {
  8186. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8187. *work_nonce = htole32(nonce);
  8188. #ifdef USE_SCRYPT
  8189. if (opt_scrypt)
  8190. scrypt_hash_data(work->hash, work->data);
  8191. else
  8192. #endif
  8193. hash_data(work->hash, work->data);
  8194. if (!test_hash(work->hash, work->nonce_diff))
  8195. return TNR_BAD;
  8196. if (checktarget && !hash_target_check_v(work->hash, work->target))
  8197. {
  8198. bool high_hash = true;
  8199. struct pool * const pool = work->pool;
  8200. if (pool->stratum_active)
  8201. {
  8202. // Some stratum pools are buggy and expect difficulty changes to be immediate retroactively, so if the target has changed, check and submit just in case
  8203. if (memcmp(pool->swork.target, work->target, sizeof(work->target)))
  8204. {
  8205. applog(LOG_DEBUG, "Stratum pool %u target has changed since work job issued, checking that too",
  8206. pool->pool_no);
  8207. if (hash_target_check_v(work->hash, pool->swork.target))
  8208. high_hash = false;
  8209. }
  8210. }
  8211. if (high_hash)
  8212. return TNR_HIGH;
  8213. }
  8214. return TNR_GOOD;
  8215. }
  8216. /* Returns true if nonce for work was a valid share */
  8217. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  8218. {
  8219. return submit_noffset_nonce(thr, work, nonce, 0);
  8220. }
  8221. /* Allows drivers to submit work items where the driver has changed the ntime
  8222. * value by noffset. Must be only used with a work protocol that does not ntime
  8223. * roll itself intrinsically to generate work (eg stratum). We do not touch
  8224. * the original work struct, but the copy of it only. */
  8225. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  8226. int noffset)
  8227. {
  8228. struct work *work = make_work();
  8229. _copy_work(work, work_in, noffset);
  8230. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8231. struct timeval tv_work_found;
  8232. enum test_nonce2_result res;
  8233. bool ret = true;
  8234. thread_reportout(thr);
  8235. cgtime(&tv_work_found);
  8236. *work_nonce = htole32(nonce);
  8237. work->thr_id = thr->id;
  8238. /* Do one last check before attempting to submit the work */
  8239. /* Side effect: sets work->data and work->hash for us */
  8240. res = test_nonce2(work, nonce);
  8241. if (unlikely(res == TNR_BAD))
  8242. {
  8243. inc_hw_errors(thr, work, nonce);
  8244. ret = false;
  8245. goto out;
  8246. }
  8247. mutex_lock(&stats_lock);
  8248. total_diff1 += work->nonce_diff;
  8249. thr ->cgpu->diff1 += work->nonce_diff;
  8250. work->pool->diff1 += work->nonce_diff;
  8251. thr->cgpu->last_device_valid_work = time(NULL);
  8252. mutex_unlock(&stats_lock);
  8253. if (noncelog_file)
  8254. noncelog(work);
  8255. if (res == TNR_HIGH)
  8256. {
  8257. // Share above target, normal
  8258. /* Check the diff of the share, even if it didn't reach the
  8259. * target, just to set the best share value if it's higher. */
  8260. share_diff(work);
  8261. goto out;
  8262. }
  8263. submit_work_async2(work, &tv_work_found);
  8264. work = NULL; // Taken by submit_work_async2
  8265. out:
  8266. if (work)
  8267. free_work(work);
  8268. thread_reportin(thr);
  8269. return ret;
  8270. }
  8271. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8272. {
  8273. if (wdiff->tv_sec > opt_scantime ||
  8274. work->blk.nonce >= 0xfffffffe - hashes ||
  8275. hashes >= 0xfffffffe ||
  8276. stale_work(work, false))
  8277. return true;
  8278. return false;
  8279. }
  8280. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8281. {
  8282. struct cgpu_info *proc = thr->cgpu;
  8283. if (proc->threads > 1)
  8284. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8285. else
  8286. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8287. }
  8288. // Called by asynchronous minerloops, when they find their processor should be disabled
  8289. void mt_disable_start(struct thr_info *mythr)
  8290. {
  8291. struct cgpu_info *cgpu = mythr->cgpu;
  8292. struct device_drv *drv = cgpu->drv;
  8293. if (drv->thread_disable)
  8294. drv->thread_disable(mythr);
  8295. hashmeter2(mythr);
  8296. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8297. mythr->rolling = mythr->cgpu->rolling = 0;
  8298. thread_reportout(mythr);
  8299. mythr->_mt_disable_called = true;
  8300. }
  8301. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8302. * the driver tells us it's full so that it may extract the work item using
  8303. * the get_queued() function which adds it to the hashtable on
  8304. * cgpu->queued_work. */
  8305. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8306. {
  8307. thread_reportout(mythr);
  8308. do {
  8309. bool need_work;
  8310. /* Do this lockless just to know if we need more unqueued work. */
  8311. need_work = (!cgpu->unqueued_work);
  8312. /* get_work is a blocking function so do it outside of lock
  8313. * to prevent deadlocks with other locks. */
  8314. if (need_work) {
  8315. struct work *work = get_work(mythr);
  8316. wr_lock(&cgpu->qlock);
  8317. /* Check we haven't grabbed work somehow between
  8318. * checking and picking up the lock. */
  8319. if (likely(!cgpu->unqueued_work))
  8320. cgpu->unqueued_work = work;
  8321. else
  8322. need_work = false;
  8323. wr_unlock(&cgpu->qlock);
  8324. if (unlikely(!need_work))
  8325. discard_work(work);
  8326. }
  8327. /* The queue_full function should be used by the driver to
  8328. * actually place work items on the physical device if it
  8329. * does have a queue. */
  8330. } while (drv->queue_full && !drv->queue_full(cgpu));
  8331. }
  8332. /* Add a work item to a cgpu's queued hashlist */
  8333. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8334. {
  8335. cgpu->queued_count++;
  8336. HASH_ADD_INT(cgpu->queued_work, id, work);
  8337. }
  8338. /* This function is for retrieving one work item from the unqueued pointer and
  8339. * adding it to the hashtable of queued work. Code using this function must be
  8340. * able to handle NULL as a return which implies there is no work available. */
  8341. struct work *get_queued(struct cgpu_info *cgpu)
  8342. {
  8343. struct work *work = NULL;
  8344. wr_lock(&cgpu->qlock);
  8345. if (cgpu->unqueued_work) {
  8346. work = cgpu->unqueued_work;
  8347. if (unlikely(stale_work(work, false))) {
  8348. discard_work(work);
  8349. work = NULL;
  8350. wake_gws();
  8351. } else
  8352. __add_queued(cgpu, work);
  8353. cgpu->unqueued_work = NULL;
  8354. }
  8355. wr_unlock(&cgpu->qlock);
  8356. return work;
  8357. }
  8358. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8359. {
  8360. wr_lock(&cgpu->qlock);
  8361. __add_queued(cgpu, work);
  8362. wr_unlock(&cgpu->qlock);
  8363. }
  8364. /* Get fresh work and add it to cgpu's queued hashlist */
  8365. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8366. {
  8367. struct work *work = get_work(thr);
  8368. add_queued(cgpu, work);
  8369. return work;
  8370. }
  8371. /* This function is for finding an already queued work item in the
  8372. * given que hashtable. Code using this function must be able
  8373. * to handle NULL as a return which implies there is no matching work.
  8374. * The calling function must lock access to the que if it is required.
  8375. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8376. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8377. {
  8378. struct work *work, *tmp, *ret = NULL;
  8379. HASH_ITER(hh, que, work, tmp) {
  8380. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8381. memcmp(work->data + offset, data, datalen) == 0) {
  8382. ret = work;
  8383. break;
  8384. }
  8385. }
  8386. return ret;
  8387. }
  8388. /* This function is for finding an already queued work item in the
  8389. * device's queued_work hashtable. Code using this function must be able
  8390. * to handle NULL as a return which implies there is no matching work.
  8391. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8392. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8393. {
  8394. struct work *ret;
  8395. rd_lock(&cgpu->qlock);
  8396. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8397. rd_unlock(&cgpu->qlock);
  8398. return ret;
  8399. }
  8400. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8401. {
  8402. struct work *work, *ret = NULL;
  8403. rd_lock(&cgpu->qlock);
  8404. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8405. if (work)
  8406. ret = copy_work(work);
  8407. rd_unlock(&cgpu->qlock);
  8408. return ret;
  8409. }
  8410. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8411. {
  8412. cgpu->queued_count--;
  8413. HASH_DEL(cgpu->queued_work, work);
  8414. }
  8415. /* This function should be used by queued device drivers when they're sure
  8416. * the work struct is no longer in use. */
  8417. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8418. {
  8419. wr_lock(&cgpu->qlock);
  8420. __work_completed(cgpu, work);
  8421. wr_unlock(&cgpu->qlock);
  8422. free_work(work);
  8423. }
  8424. /* Combines find_queued_work_bymidstate and work_completed in one function
  8425. * withOUT destroying the work so the driver must free it. */
  8426. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8427. {
  8428. struct work *work;
  8429. wr_lock(&cgpu->qlock);
  8430. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8431. if (work)
  8432. __work_completed(cgpu, work);
  8433. wr_unlock(&cgpu->qlock);
  8434. return work;
  8435. }
  8436. static void flush_queue(struct cgpu_info *cgpu)
  8437. {
  8438. struct work *work = NULL;
  8439. wr_lock(&cgpu->qlock);
  8440. work = cgpu->unqueued_work;
  8441. cgpu->unqueued_work = NULL;
  8442. wr_unlock(&cgpu->qlock);
  8443. if (work) {
  8444. free_work(work);
  8445. applog(LOG_DEBUG, "Discarded queued work item");
  8446. }
  8447. }
  8448. /* This version of hash work is for devices that are fast enough to always
  8449. * perform a full nonce range and need a queue to maintain the device busy.
  8450. * Work creation and destruction is not done from within this function
  8451. * directly. */
  8452. void hash_queued_work(struct thr_info *mythr)
  8453. {
  8454. const long cycle = opt_log_interval / 5 ? : 1;
  8455. struct timeval tv_start = {0, 0}, tv_end;
  8456. struct cgpu_info *cgpu = mythr->cgpu;
  8457. struct device_drv *drv = cgpu->drv;
  8458. const int thr_id = mythr->id;
  8459. int64_t hashes_done = 0;
  8460. if (unlikely(cgpu->deven != DEV_ENABLED))
  8461. mt_disable(mythr);
  8462. while (likely(!cgpu->shutdown)) {
  8463. struct timeval diff;
  8464. int64_t hashes;
  8465. fill_queue(mythr, cgpu, drv, thr_id);
  8466. thread_reportin(mythr);
  8467. hashes = drv->scanwork(mythr);
  8468. /* Reset the bool here in case the driver looks for it
  8469. * synchronously in the scanwork loop. */
  8470. mythr->work_restart = false;
  8471. if (unlikely(hashes == -1 )) {
  8472. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8473. cgpu->deven = DEV_DISABLED;
  8474. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8475. mt_disable(mythr);
  8476. }
  8477. hashes_done += hashes;
  8478. cgtime(&tv_end);
  8479. timersub(&tv_end, &tv_start, &diff);
  8480. if (diff.tv_sec >= cycle) {
  8481. hashmeter(thr_id, &diff, hashes_done);
  8482. hashes_done = 0;
  8483. copy_time(&tv_start, &tv_end);
  8484. }
  8485. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8486. mt_disable(mythr);
  8487. if (unlikely(mythr->work_restart)) {
  8488. flush_queue(cgpu);
  8489. if (drv->flush_work)
  8490. drv->flush_work(cgpu);
  8491. }
  8492. }
  8493. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8494. }
  8495. // Called by minerloop, when it is re-enabling a processor
  8496. void mt_disable_finish(struct thr_info *mythr)
  8497. {
  8498. struct device_drv *drv = mythr->cgpu->drv;
  8499. thread_reportin(mythr);
  8500. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8501. if (drv->thread_enable)
  8502. drv->thread_enable(mythr);
  8503. mythr->_mt_disable_called = false;
  8504. }
  8505. // Called by synchronous minerloops, when they find their processor should be disabled
  8506. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8507. void mt_disable(struct thr_info *mythr)
  8508. {
  8509. const struct cgpu_info * const cgpu = mythr->cgpu;
  8510. mt_disable_start(mythr);
  8511. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8512. do {
  8513. notifier_read(mythr->notifier);
  8514. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8515. mt_disable_finish(mythr);
  8516. }
  8517. enum {
  8518. STAT_SLEEP_INTERVAL = 1,
  8519. STAT_CTR_INTERVAL = 10000000,
  8520. FAILURE_INTERVAL = 30,
  8521. };
  8522. /* Stage another work item from the work returned in a longpoll */
  8523. 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)
  8524. {
  8525. bool rc;
  8526. work->rolltime = rolltime;
  8527. rc = work_decode(pool, work, val);
  8528. if (unlikely(!rc)) {
  8529. applog(LOG_ERR, "Could not convert longpoll data to work");
  8530. free_work(work);
  8531. return;
  8532. }
  8533. total_getworks++;
  8534. pool->getwork_requested++;
  8535. work->pool = pool;
  8536. copy_time(&work->tv_getwork, tv_lp);
  8537. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8538. calc_diff(work, 0);
  8539. if (pool->enabled == POOL_REJECTING)
  8540. work->mandatory = true;
  8541. work->longpoll = true;
  8542. work->getwork_mode = GETWORK_MODE_LP;
  8543. update_last_work(work);
  8544. /* We'll be checking this work item twice, but we already know it's
  8545. * from a new block so explicitly force the new block detection now
  8546. * rather than waiting for it to hit the stage thread. This also
  8547. * allows testwork to know whether LP discovered the block or not. */
  8548. test_work_current(work);
  8549. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8550. * the longpoll work from a pool that has been rejecting shares as a
  8551. * way to detect when the pool has recovered.
  8552. */
  8553. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8554. free_work(work);
  8555. return;
  8556. }
  8557. work = clone_work(work);
  8558. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8559. stage_work(work);
  8560. applog(LOG_DEBUG, "Converted longpoll data to work");
  8561. }
  8562. /* If we want longpoll, enable it for the chosen default pool, or, if
  8563. * the pool does not support longpoll, find the first one that does
  8564. * and use its longpoll support */
  8565. static struct pool *select_longpoll_pool(struct pool *cp)
  8566. {
  8567. int i;
  8568. if (cp->lp_url)
  8569. return cp;
  8570. for (i = 0; i < total_pools; i++) {
  8571. struct pool *pool = pools[i];
  8572. if (pool->has_stratum || pool->lp_url)
  8573. return pool;
  8574. }
  8575. return NULL;
  8576. }
  8577. /* This will make the longpoll thread wait till it's the current pool, or it
  8578. * has been flagged as rejecting, before attempting to open any connections.
  8579. */
  8580. static void wait_lpcurrent(struct pool *pool)
  8581. {
  8582. while (!cnx_needed(pool))
  8583. {
  8584. mutex_lock(&lp_lock);
  8585. pthread_cond_wait(&lp_cond, &lp_lock);
  8586. mutex_unlock(&lp_lock);
  8587. }
  8588. }
  8589. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8590. struct pool *pool = vpool;
  8591. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8592. pool->lp_socket = sock;
  8593. return sock;
  8594. }
  8595. static void *longpoll_thread(void *userdata)
  8596. {
  8597. struct pool *cp = (struct pool *)userdata;
  8598. /* This *pool is the source of the actual longpoll, not the pool we've
  8599. * tied it to */
  8600. struct timeval start, reply, end;
  8601. struct pool *pool = NULL;
  8602. char threadname[20];
  8603. CURL *curl = NULL;
  8604. int failures = 0;
  8605. char *lp_url;
  8606. int rolltime;
  8607. #ifndef HAVE_PTHREAD_CANCEL
  8608. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8609. #endif
  8610. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8611. RenameThread(threadname);
  8612. curl = curl_easy_init();
  8613. if (unlikely(!curl)) {
  8614. applog(LOG_ERR, "CURL initialisation failed");
  8615. return NULL;
  8616. }
  8617. retry_pool:
  8618. pool = select_longpoll_pool(cp);
  8619. if (!pool) {
  8620. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8621. while (!pool) {
  8622. cgsleep_ms(60000);
  8623. pool = select_longpoll_pool(cp);
  8624. }
  8625. }
  8626. if (pool->has_stratum) {
  8627. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8628. cp->rpc_url, pool->rpc_url);
  8629. goto out;
  8630. }
  8631. /* Any longpoll from any pool is enough for this to be true */
  8632. have_longpoll = true;
  8633. wait_lpcurrent(cp);
  8634. {
  8635. lp_url = pool->lp_url;
  8636. if (cp == pool)
  8637. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8638. else
  8639. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8640. }
  8641. while (42) {
  8642. json_t *val, *soval;
  8643. struct work *work = make_work();
  8644. char *lpreq;
  8645. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8646. work->pool = pool;
  8647. if (!lpreq)
  8648. {
  8649. free_work(work);
  8650. goto lpfail;
  8651. }
  8652. wait_lpcurrent(cp);
  8653. cgtime(&start);
  8654. /* Longpoll connections can be persistent for a very long time
  8655. * and any number of issues could have come up in the meantime
  8656. * so always establish a fresh connection instead of relying on
  8657. * a persistent one. */
  8658. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8659. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8660. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8661. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8662. lpreq, false, true, &rolltime, pool, false);
  8663. pool->lp_socket = CURL_SOCKET_BAD;
  8664. cgtime(&reply);
  8665. free(lpreq);
  8666. if (likely(val)) {
  8667. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8668. if (soval)
  8669. pool->submit_old = json_is_true(soval);
  8670. else
  8671. pool->submit_old = false;
  8672. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8673. failures = 0;
  8674. json_decref(val);
  8675. } else {
  8676. /* Some pools regularly drop the longpoll request so
  8677. * only see this as longpoll failure if it happens
  8678. * immediately and just restart it the rest of the
  8679. * time. */
  8680. cgtime(&end);
  8681. free_work(work);
  8682. if (end.tv_sec - start.tv_sec > 30)
  8683. continue;
  8684. if (failures == 1)
  8685. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8686. lpfail:
  8687. cgsleep_ms(30000);
  8688. }
  8689. if (pool != cp) {
  8690. pool = select_longpoll_pool(cp);
  8691. if (pool->has_stratum) {
  8692. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8693. cp->rpc_url, pool->rpc_url);
  8694. break;
  8695. }
  8696. if (unlikely(!pool))
  8697. goto retry_pool;
  8698. }
  8699. if (unlikely(pool->removed))
  8700. break;
  8701. }
  8702. out:
  8703. curl_easy_cleanup(curl);
  8704. return NULL;
  8705. }
  8706. static void stop_longpoll(void)
  8707. {
  8708. int i;
  8709. want_longpoll = false;
  8710. for (i = 0; i < total_pools; ++i)
  8711. {
  8712. struct pool *pool = pools[i];
  8713. if (unlikely(!pool->lp_started))
  8714. continue;
  8715. pool->lp_started = false;
  8716. pthread_cancel(pool->longpoll_thread);
  8717. }
  8718. have_longpoll = false;
  8719. }
  8720. static void start_longpoll(void)
  8721. {
  8722. int i;
  8723. want_longpoll = true;
  8724. for (i = 0; i < total_pools; ++i)
  8725. {
  8726. struct pool *pool = pools[i];
  8727. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8728. continue;
  8729. pool->lp_started = true;
  8730. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8731. quit(1, "Failed to create pool longpoll thread");
  8732. }
  8733. }
  8734. void reinit_device(struct cgpu_info *cgpu)
  8735. {
  8736. if (cgpu->drv->reinit_device)
  8737. cgpu->drv->reinit_device(cgpu);
  8738. }
  8739. static struct timeval rotate_tv;
  8740. /* We reap curls if they are unused for over a minute */
  8741. static void reap_curl(struct pool *pool)
  8742. {
  8743. struct curl_ent *ent, *iter;
  8744. struct timeval now;
  8745. int reaped = 0;
  8746. cgtime(&now);
  8747. mutex_lock(&pool->pool_lock);
  8748. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8749. if (pool->curls < 2)
  8750. break;
  8751. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8752. reaped++;
  8753. pool->curls--;
  8754. LL_DELETE(pool->curllist, ent);
  8755. curl_easy_cleanup(ent->curl);
  8756. free(ent);
  8757. }
  8758. }
  8759. mutex_unlock(&pool->pool_lock);
  8760. if (reaped)
  8761. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8762. }
  8763. static void *watchpool_thread(void __maybe_unused *userdata)
  8764. {
  8765. int intervals = 0;
  8766. #ifndef HAVE_PTHREAD_CANCEL
  8767. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8768. #endif
  8769. RenameThread("watchpool");
  8770. while (42) {
  8771. struct timeval now;
  8772. int i;
  8773. if (++intervals > 20)
  8774. intervals = 0;
  8775. cgtime(&now);
  8776. for (i = 0; i < total_pools; i++) {
  8777. struct pool *pool = pools[i];
  8778. if (!opt_benchmark)
  8779. reap_curl(pool);
  8780. /* Get a rolling utility per pool over 10 mins */
  8781. if (intervals > 19) {
  8782. int shares = pool->diff1 - pool->last_shares;
  8783. pool->last_shares = pool->diff1;
  8784. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8785. pool->shares = pool->utility;
  8786. }
  8787. if (pool->enabled == POOL_DISABLED)
  8788. continue;
  8789. /* Don't start testing any pools if the test threads
  8790. * from startup are still doing their first attempt. */
  8791. if (unlikely(pool->testing)) {
  8792. pthread_join(pool->test_thread, NULL);
  8793. }
  8794. /* Test pool is idle once every minute */
  8795. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8796. cgtime(&pool->tv_idle);
  8797. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8798. pool_resus(pool);
  8799. }
  8800. /* Only switch pools if the failback pool has been
  8801. * alive for more than 5 minutes (default) to prevent
  8802. * intermittently failing pools from being used. */
  8803. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8804. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  8805. if (opt_fail_switch_delay % 60)
  8806. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  8807. pool->pool_no, pool->rpc_url,
  8808. opt_fail_switch_delay,
  8809. (opt_fail_switch_delay == 1 ? "" : "s"));
  8810. else
  8811. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  8812. pool->pool_no, pool->rpc_url,
  8813. opt_fail_switch_delay / 60,
  8814. (opt_fail_switch_delay == 60 ? "" : "s"));
  8815. switch_pools(NULL);
  8816. }
  8817. }
  8818. if (current_pool()->idle)
  8819. switch_pools(NULL);
  8820. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8821. cgtime(&rotate_tv);
  8822. switch_pools(NULL);
  8823. }
  8824. cgsleep_ms(30000);
  8825. }
  8826. return NULL;
  8827. }
  8828. void mt_enable(struct thr_info *thr)
  8829. {
  8830. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8831. notifier_wake(thr->notifier);
  8832. }
  8833. void proc_enable(struct cgpu_info *cgpu)
  8834. {
  8835. int j;
  8836. cgpu->deven = DEV_ENABLED;
  8837. for (j = cgpu->threads ?: 1; j--; )
  8838. mt_enable(cgpu->thr[j]);
  8839. }
  8840. #define device_recovered(cgpu) proc_enable(cgpu)
  8841. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8842. {
  8843. struct string_elist *setstr_elist;
  8844. const char *p, *p2;
  8845. char replybuf[0x2000];
  8846. size_t L;
  8847. DL_FOREACH(opt_set_device_list, setstr_elist)
  8848. {
  8849. const char * const setstr = setstr_elist->string;
  8850. p = strchr(setstr, ':');
  8851. if (!p)
  8852. p = setstr;
  8853. {
  8854. L = p - setstr;
  8855. char pattern[L + 1];
  8856. if (L)
  8857. memcpy(pattern, setstr, L);
  8858. pattern[L] = '\0';
  8859. if (!cgpu_match(pattern, cgpu))
  8860. continue;
  8861. }
  8862. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8863. cgpu->proc_repr, __func__, setstr);
  8864. if (p[0] == ':')
  8865. ++p;
  8866. p2 = strchr(p, '=');
  8867. if (!p2)
  8868. {
  8869. L = strlen(p);
  8870. p2 = "";
  8871. }
  8872. else
  8873. {
  8874. L = p2 - p;
  8875. ++p2;
  8876. }
  8877. char opt[L + 1];
  8878. if (L)
  8879. memcpy(opt, p, L);
  8880. opt[L] = '\0';
  8881. L = strlen(p2);
  8882. char setval[L + 1];
  8883. if (L)
  8884. memcpy(setval, p2, L);
  8885. setval[L] = '\0';
  8886. enum bfg_set_device_replytype success;
  8887. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8888. switch (success)
  8889. {
  8890. case SDR_OK:
  8891. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8892. cgpu->proc_repr, setstr,
  8893. p ? ": " : "", p ?: "");
  8894. break;
  8895. case SDR_ERR:
  8896. case SDR_HELP:
  8897. case SDR_UNKNOWN:
  8898. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8899. cgpu->proc_repr, setstr, p);
  8900. break;
  8901. case SDR_AUTO:
  8902. case SDR_NOSUPP:
  8903. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8904. cgpu->proc_repr, setstr);
  8905. }
  8906. }
  8907. cgpu->already_set_defaults = true;
  8908. }
  8909. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8910. {
  8911. struct device_drv dummy_drv = *drv;
  8912. struct cgpu_info dummy_cgpu = {
  8913. .drv = &dummy_drv,
  8914. .device = &dummy_cgpu,
  8915. .device_id = -1,
  8916. .proc_id = -1,
  8917. .device_data = userp,
  8918. .device_path = devpath,
  8919. .dev_serial = serial,
  8920. };
  8921. strcpy(dummy_cgpu.proc_repr, drv->name);
  8922. switch (mode)
  8923. {
  8924. case 0:
  8925. dummy_drv.set_device = datap;
  8926. break;
  8927. case 1:
  8928. dummy_drv.set_device = NULL;
  8929. dummy_cgpu.set_device_funcs = datap;
  8930. break;
  8931. }
  8932. cgpu_set_defaults(&dummy_cgpu);
  8933. }
  8934. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8935. * the screen at regular intervals, and restarts threads if they appear to have
  8936. * died. */
  8937. #define WATCHDOG_SICK_TIME 60
  8938. #define WATCHDOG_DEAD_TIME 600
  8939. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8940. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8941. static void *watchdog_thread(void __maybe_unused *userdata)
  8942. {
  8943. const unsigned int interval = WATCHDOG_INTERVAL;
  8944. struct timeval zero_tv;
  8945. #ifndef HAVE_PTHREAD_CANCEL
  8946. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8947. #endif
  8948. RenameThread("watchdog");
  8949. memset(&zero_tv, 0, sizeof(struct timeval));
  8950. cgtime(&rotate_tv);
  8951. while (1) {
  8952. int i;
  8953. struct timeval now;
  8954. sleep(interval);
  8955. discard_stale();
  8956. hashmeter(-1, &zero_tv, 0);
  8957. #ifdef HAVE_CURSES
  8958. const int ts = total_staged();
  8959. if (curses_active_locked()) {
  8960. change_logwinsize();
  8961. curses_print_status(ts);
  8962. _refresh_devstatus(true);
  8963. touchwin(logwin);
  8964. wrefresh(logwin);
  8965. unlock_curses();
  8966. }
  8967. #endif
  8968. cgtime(&now);
  8969. if (!sched_paused && !should_run()) {
  8970. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8971. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8972. if (!schedstart.enable) {
  8973. quit(0, "Terminating execution as planned");
  8974. break;
  8975. }
  8976. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8977. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8978. sched_paused = true;
  8979. rd_lock(&mining_thr_lock);
  8980. for (i = 0; i < mining_threads; i++)
  8981. mining_thr[i]->pause = true;
  8982. rd_unlock(&mining_thr_lock);
  8983. } else if (sched_paused && should_run()) {
  8984. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8985. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8986. if (schedstop.enable)
  8987. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8988. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8989. sched_paused = false;
  8990. for (i = 0; i < mining_threads; i++) {
  8991. struct thr_info *thr;
  8992. thr = get_thread(i);
  8993. thr->pause = false;
  8994. }
  8995. for (i = 0; i < total_devices; ++i)
  8996. {
  8997. struct cgpu_info *cgpu = get_devices(i);
  8998. /* Don't touch disabled devices */
  8999. if (cgpu->deven == DEV_DISABLED)
  9000. continue;
  9001. proc_enable(cgpu);
  9002. }
  9003. }
  9004. for (i = 0; i < total_devices; ++i) {
  9005. struct cgpu_info *cgpu = get_devices(i);
  9006. if (!cgpu->disable_watchdog)
  9007. bfg_watchdog(cgpu, &now);
  9008. }
  9009. }
  9010. return NULL;
  9011. }
  9012. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  9013. {
  9014. struct thr_info *thr = cgpu->thr[0];
  9015. enum dev_enable *denable;
  9016. char *dev_str = cgpu->proc_repr;
  9017. if (likely(drv_ready(cgpu)))
  9018. {
  9019. if (unlikely(!cgpu->already_set_defaults))
  9020. cgpu_set_defaults(cgpu);
  9021. if (cgpu->drv->get_stats)
  9022. cgpu->drv->get_stats(cgpu);
  9023. }
  9024. denable = &cgpu->deven;
  9025. if (cgpu->drv->watchdog)
  9026. cgpu->drv->watchdog(cgpu, tvp_now);
  9027. /* Thread is disabled */
  9028. if (*denable == DEV_DISABLED)
  9029. return;
  9030. else
  9031. if (*denable == DEV_RECOVER_ERR) {
  9032. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  9033. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  9034. dev_str);
  9035. if (cgpu->reinit_backoff < 300)
  9036. cgpu->reinit_backoff *= 2;
  9037. device_recovered(cgpu);
  9038. }
  9039. return;
  9040. }
  9041. else
  9042. if (*denable == DEV_RECOVER) {
  9043. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  9044. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  9045. dev_str);
  9046. device_recovered(cgpu);
  9047. }
  9048. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9049. return;
  9050. }
  9051. else
  9052. if (cgpu->temp > cgpu->cutofftemp)
  9053. {
  9054. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  9055. dev_str, (int)cgpu->temp);
  9056. *denable = DEV_RECOVER;
  9057. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9058. run_cmd(cmd_idle);
  9059. }
  9060. if (thr->getwork) {
  9061. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  9062. int thrid;
  9063. bool cgpu_idle = true;
  9064. thr->rolling = 0;
  9065. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  9066. if (!cgpu->thr[thrid]->getwork)
  9067. cgpu_idle = false;
  9068. if (cgpu_idle) {
  9069. cgpu->rolling = 0;
  9070. cgpu->status = LIFE_WAIT;
  9071. }
  9072. }
  9073. return;
  9074. }
  9075. else if (cgpu->status == LIFE_WAIT)
  9076. cgpu->status = LIFE_WELL;
  9077. #ifdef WANT_CPUMINE
  9078. if (!strcmp(cgpu->drv->dname, "cpu"))
  9079. return;
  9080. #endif
  9081. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  9082. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  9083. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  9084. cgpu->status = LIFE_WELL;
  9085. cgpu->device_last_well = time(NULL);
  9086. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  9087. thr->rolling = cgpu->rolling = 0;
  9088. cgpu->status = LIFE_SICK;
  9089. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  9090. cgtime(&thr->sick);
  9091. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  9092. run_cmd(cmd_sick);
  9093. if (opt_restart && cgpu->drv->reinit_device) {
  9094. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  9095. reinit_device(cgpu);
  9096. }
  9097. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  9098. cgpu->status = LIFE_DEAD;
  9099. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  9100. cgtime(&thr->sick);
  9101. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  9102. run_cmd(cmd_dead);
  9103. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  9104. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  9105. /* Attempt to restart a GPU that's sick or dead once every minute */
  9106. cgtime(&thr->sick);
  9107. if (opt_restart)
  9108. reinit_device(cgpu);
  9109. }
  9110. }
  9111. static void log_print_status(struct cgpu_info *cgpu)
  9112. {
  9113. char logline[255];
  9114. get_statline(logline, sizeof(logline), cgpu);
  9115. applog(LOG_WARNING, "%s", logline);
  9116. }
  9117. void print_summary(void)
  9118. {
  9119. struct timeval diff;
  9120. int hours, mins, secs, i;
  9121. double utility, efficiency = 0.0;
  9122. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  9123. int pool_secs;
  9124. timersub(&total_tv_end, &total_tv_start, &diff);
  9125. hours = diff.tv_sec / 3600;
  9126. mins = (diff.tv_sec % 3600) / 60;
  9127. secs = diff.tv_sec % 60;
  9128. utility = total_accepted / total_secs * 60;
  9129. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  9130. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  9131. applog(LOG_WARNING, "Started at %s", datestamp);
  9132. if (total_pools == 1)
  9133. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  9134. #ifdef WANT_CPUMINE
  9135. if (opt_n_threads > 0)
  9136. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  9137. #endif
  9138. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  9139. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  9140. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  9141. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  9142. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  9143. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  9144. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  9145. total_rejected, total_stale,
  9146. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  9147. );
  9148. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  9149. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  9150. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  9151. applog(LOG_WARNING, "Network transfer: %s (%s)",
  9152. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9153. (float)total_bytes_rcvd,
  9154. (float)total_bytes_sent),
  9155. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9156. (float)(total_bytes_rcvd / total_secs),
  9157. (float)(total_bytes_sent / total_secs)));
  9158. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  9159. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  9160. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  9161. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  9162. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  9163. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  9164. if (total_pools > 1) {
  9165. for (i = 0; i < total_pools; i++) {
  9166. struct pool *pool = pools[i];
  9167. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  9168. if (pool->solved)
  9169. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  9170. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  9171. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  9172. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  9173. pool->rejected, pool->stale_shares,
  9174. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  9175. );
  9176. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  9177. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  9178. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  9179. applog(LOG_WARNING, " Network transfer: %s (%s)",
  9180. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9181. (float)pool->cgminer_pool_stats.net_bytes_received,
  9182. (float)pool->cgminer_pool_stats.net_bytes_sent),
  9183. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9184. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  9185. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  9186. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  9187. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  9188. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  9189. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  9190. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  9191. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  9192. }
  9193. }
  9194. if (opt_quit_summary != BQS_NONE)
  9195. {
  9196. if (opt_quit_summary == BQS_DETAILED)
  9197. include_serial_in_statline = true;
  9198. applog(LOG_WARNING, "Summary of per device statistics:\n");
  9199. for (i = 0; i < total_devices; ++i) {
  9200. struct cgpu_info *cgpu = get_devices(i);
  9201. if (!cgpu->proc_id)
  9202. {
  9203. // Device summary line
  9204. opt_show_procs = false;
  9205. log_print_status(cgpu);
  9206. opt_show_procs = true;
  9207. }
  9208. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  9209. log_print_status(cgpu);
  9210. }
  9211. }
  9212. if (opt_shares) {
  9213. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  9214. if (opt_shares > total_diff_accepted)
  9215. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  9216. }
  9217. applog(LOG_WARNING, " ");
  9218. fflush(stderr);
  9219. fflush(stdout);
  9220. }
  9221. void _bfg_clean_up(bool restarting)
  9222. {
  9223. #ifdef HAVE_OPENCL
  9224. clear_adl(nDevs);
  9225. #endif
  9226. #ifdef HAVE_LIBUSB
  9227. if (likely(have_libusb))
  9228. libusb_exit(NULL);
  9229. #endif
  9230. cgtime(&total_tv_end);
  9231. #ifdef WIN32
  9232. timeEndPeriod(1);
  9233. #endif
  9234. if (!restarting) {
  9235. /* Attempting to disable curses or print a summary during a
  9236. * restart can lead to a deadlock. */
  9237. #ifdef HAVE_CURSES
  9238. disable_curses();
  9239. #endif
  9240. if (!opt_realquiet && successful_connect)
  9241. print_summary();
  9242. }
  9243. if (opt_n_threads > 0)
  9244. free(cpus);
  9245. curl_global_cleanup();
  9246. #ifdef WIN32
  9247. WSACleanup();
  9248. #endif
  9249. }
  9250. void _quit(int status)
  9251. {
  9252. if (status) {
  9253. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9254. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9255. int *p = NULL;
  9256. // NOTE debugger can bypass with: p = &p
  9257. *p = status; // Segfault, hopefully dumping core
  9258. }
  9259. }
  9260. #if defined(unix) || defined(__APPLE__)
  9261. if (forkpid > 0) {
  9262. kill(forkpid, SIGTERM);
  9263. forkpid = 0;
  9264. }
  9265. #endif
  9266. exit(status);
  9267. }
  9268. #ifdef HAVE_CURSES
  9269. char *curses_input(const char *query)
  9270. {
  9271. char *input;
  9272. echo();
  9273. input = malloc(255);
  9274. if (!input)
  9275. quit(1, "Failed to malloc input");
  9276. leaveok(logwin, false);
  9277. wlogprint("%s:\n", query);
  9278. wgetnstr(logwin, input, 255);
  9279. if (!strlen(input))
  9280. {
  9281. free(input);
  9282. input = NULL;
  9283. }
  9284. leaveok(logwin, true);
  9285. noecho();
  9286. return input;
  9287. }
  9288. #endif
  9289. static bool pools_active = false;
  9290. static void *test_pool_thread(void *arg)
  9291. {
  9292. struct pool *pool = (struct pool *)arg;
  9293. if (pool_active(pool, false)) {
  9294. pool_tset(pool, &pool->lagging);
  9295. pool_tclear(pool, &pool->idle);
  9296. bool first_pool = false;
  9297. cg_wlock(&control_lock);
  9298. if (!pools_active) {
  9299. currentpool = pool;
  9300. if (pool->pool_no != 0)
  9301. first_pool = true;
  9302. pools_active = true;
  9303. }
  9304. cg_wunlock(&control_lock);
  9305. if (unlikely(first_pool))
  9306. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9307. else
  9308. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9309. switch_pools(NULL);
  9310. } else
  9311. pool_died(pool);
  9312. pool->testing = false;
  9313. return NULL;
  9314. }
  9315. /* Always returns true that the pool details were added unless we are not
  9316. * live, implying this is the only pool being added, so if no pools are
  9317. * active it returns false. */
  9318. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9319. {
  9320. size_t siz;
  9321. pool->rpc_url = url;
  9322. pool->rpc_user = user;
  9323. pool->rpc_pass = pass;
  9324. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9325. pool->rpc_userpass = malloc(siz);
  9326. if (!pool->rpc_userpass)
  9327. quit(1, "Failed to malloc userpass");
  9328. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9329. pool->testing = true;
  9330. pool->idle = true;
  9331. enable_pool(pool);
  9332. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9333. if (!live) {
  9334. pthread_join(pool->test_thread, NULL);
  9335. return pools_active;
  9336. }
  9337. return true;
  9338. }
  9339. #ifdef HAVE_CURSES
  9340. static bool input_pool(bool live)
  9341. {
  9342. char *url = NULL, *user = NULL, *pass = NULL;
  9343. struct pool *pool;
  9344. bool ret = false;
  9345. immedok(logwin, true);
  9346. wlogprint("Input server details.\n");
  9347. url = curses_input("URL");
  9348. if (!url)
  9349. goto out;
  9350. user = curses_input("Username");
  9351. if (!user)
  9352. goto out;
  9353. pass = curses_input("Password");
  9354. if (!pass)
  9355. pass = calloc(1, 1);
  9356. pool = add_pool();
  9357. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9358. strncmp(url, "https://", 8)) {
  9359. char *httpinput;
  9360. httpinput = malloc(256);
  9361. if (!httpinput)
  9362. quit(1, "Failed to malloc httpinput");
  9363. strcpy(httpinput, "http://");
  9364. strncat(httpinput, url, 248);
  9365. free(url);
  9366. url = httpinput;
  9367. }
  9368. ret = add_pool_details(pool, live, url, user, pass);
  9369. out:
  9370. immedok(logwin, false);
  9371. if (!ret) {
  9372. if (url)
  9373. free(url);
  9374. if (user)
  9375. free(user);
  9376. if (pass)
  9377. free(pass);
  9378. }
  9379. return ret;
  9380. }
  9381. #endif
  9382. #if defined(unix) || defined(__APPLE__)
  9383. static void fork_monitor()
  9384. {
  9385. // Make a pipe: [readFD, writeFD]
  9386. int pfd[2];
  9387. int r = pipe(pfd);
  9388. if (r < 0) {
  9389. perror("pipe - failed to create pipe for --monitor");
  9390. exit(1);
  9391. }
  9392. // Make stderr write end of pipe
  9393. fflush(stderr);
  9394. r = dup2(pfd[1], 2);
  9395. if (r < 0) {
  9396. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9397. exit(1);
  9398. }
  9399. r = close(pfd[1]);
  9400. if (r < 0) {
  9401. perror("close - failed to close write end of pipe for --monitor");
  9402. exit(1);
  9403. }
  9404. // Don't allow a dying monitor to kill the main process
  9405. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9406. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9407. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9408. perror("signal - failed to edit signal mask for --monitor");
  9409. exit(1);
  9410. }
  9411. // Fork a child process
  9412. forkpid = fork();
  9413. if (forkpid < 0) {
  9414. perror("fork - failed to fork child process for --monitor");
  9415. exit(1);
  9416. }
  9417. // Child: launch monitor command
  9418. if (0 == forkpid) {
  9419. // Make stdin read end of pipe
  9420. r = dup2(pfd[0], 0);
  9421. if (r < 0) {
  9422. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9423. exit(1);
  9424. }
  9425. close(pfd[0]);
  9426. if (r < 0) {
  9427. perror("close - in child, failed to close read end of pipe for --monitor");
  9428. exit(1);
  9429. }
  9430. // Launch user specified command
  9431. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9432. perror("execl - in child failed to exec user specified command for --monitor");
  9433. exit(1);
  9434. }
  9435. // Parent: clean up unused fds and bail
  9436. r = close(pfd[0]);
  9437. if (r < 0) {
  9438. perror("close - failed to close read end of pipe for --monitor");
  9439. exit(1);
  9440. }
  9441. }
  9442. #endif // defined(unix)
  9443. #ifdef HAVE_CURSES
  9444. #ifdef USE_UNICODE
  9445. static
  9446. wchar_t select_unicode_char(const wchar_t *opt)
  9447. {
  9448. for ( ; *opt; ++opt)
  9449. if (iswprint(*opt))
  9450. return *opt;
  9451. return '?';
  9452. }
  9453. #endif
  9454. void enable_curses(void) {
  9455. int x;
  9456. __maybe_unused int y;
  9457. lock_curses();
  9458. if (curses_active) {
  9459. unlock_curses();
  9460. return;
  9461. }
  9462. #ifdef USE_UNICODE
  9463. if (use_unicode)
  9464. {
  9465. setlocale(LC_CTYPE, "");
  9466. if (iswprint(0xb0))
  9467. have_unicode_degrees = true;
  9468. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9469. }
  9470. #endif
  9471. mainwin = initscr();
  9472. start_color();
  9473. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9474. if (ERR != use_default_colors())
  9475. default_bgcolor = -1;
  9476. #endif
  9477. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9478. {
  9479. menu_attr = COLOR_PAIR(1);
  9480. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9481. attr_bad |= COLOR_PAIR(2);
  9482. }
  9483. keypad(mainwin, true);
  9484. getmaxyx(mainwin, y, x);
  9485. statuswin = newwin(logstart, x, 0, 0);
  9486. leaveok(statuswin, true);
  9487. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9488. // We resize the window later anyway, so just start it off at 1 :)
  9489. logwin = newwin(1, 0, logcursor, 0);
  9490. idlok(logwin, true);
  9491. scrollok(logwin, true);
  9492. leaveok(logwin, true);
  9493. cbreak();
  9494. noecho();
  9495. nonl();
  9496. curses_active = true;
  9497. statusy = logstart;
  9498. unlock_curses();
  9499. }
  9500. #endif
  9501. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9502. #ifndef WANT_CPUMINE
  9503. struct device_drv cpu_drv;
  9504. struct device_drv cpu_drv = {
  9505. .name = "CPU",
  9506. };
  9507. #endif
  9508. static int cgminer_id_count = 0;
  9509. static int device_line_id_count;
  9510. void register_device(struct cgpu_info *cgpu)
  9511. {
  9512. cgpu->deven = DEV_ENABLED;
  9513. wr_lock(&devices_lock);
  9514. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9515. wr_unlock(&devices_lock);
  9516. if (!cgpu->proc_id)
  9517. cgpu->device_line_id = device_line_id_count++;
  9518. mining_threads += cgpu->threads ?: 1;
  9519. #ifdef HAVE_CURSES
  9520. adj_width(mining_threads, &dev_width);
  9521. #endif
  9522. rwlock_init(&cgpu->qlock);
  9523. cgpu->queued_work = NULL;
  9524. }
  9525. struct _cgpu_devid_counter {
  9526. char name[4];
  9527. int lastid;
  9528. UT_hash_handle hh;
  9529. };
  9530. void renumber_cgpu(struct cgpu_info *cgpu)
  9531. {
  9532. static struct _cgpu_devid_counter *devids = NULL;
  9533. struct _cgpu_devid_counter *d;
  9534. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9535. if (d)
  9536. cgpu->device_id = ++d->lastid;
  9537. else {
  9538. d = malloc(sizeof(*d));
  9539. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9540. cgpu->device_id = d->lastid = 0;
  9541. HASH_ADD_STR(devids, name, d);
  9542. }
  9543. // Build repr strings
  9544. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9545. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9546. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9547. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9548. const int lpcount = cgpu->procs;
  9549. if (lpcount > 1)
  9550. {
  9551. int ns;
  9552. struct cgpu_info *slave;
  9553. int lpdigits = 1;
  9554. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9555. ++lpdigits;
  9556. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9557. cgpu->proc_repr[5 + lpdigits] = '\0';
  9558. ns = strlen(cgpu->proc_repr_ns);
  9559. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9560. slave = cgpu;
  9561. for (int i = 1; i < lpcount; ++i)
  9562. {
  9563. slave = slave->next_proc;
  9564. strcpy(slave->proc_repr, cgpu->proc_repr);
  9565. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9566. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9567. {
  9568. slave->proc_repr_ns[ns + y] =
  9569. slave->proc_repr[5 + y] += (x % 26);
  9570. }
  9571. }
  9572. }
  9573. }
  9574. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9575. {
  9576. sha256(buffer, length, digest);
  9577. return true;
  9578. }
  9579. static
  9580. int drv_algo_check(const struct device_drv * const drv)
  9581. {
  9582. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9583. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9584. return (algos & algomatch);
  9585. }
  9586. #ifndef HAVE_PTHREAD_CANCEL
  9587. extern void setup_pthread_cancel_workaround();
  9588. extern struct sigaction pcwm_orig_term_handler;
  9589. #endif
  9590. bool bfg_need_detect_rescan;
  9591. extern void probe_device(struct lowlevel_device_info *);
  9592. static void schedule_rescan(const struct timeval *);
  9593. static
  9594. void drv_detect_all()
  9595. {
  9596. bool rescanning = false;
  9597. rescan:
  9598. bfg_need_detect_rescan = false;
  9599. #ifdef HAVE_BFG_LOWLEVEL
  9600. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9601. LL_FOREACH_SAFE(infolist, info, infotmp)
  9602. probe_device(info);
  9603. LL_FOREACH_SAFE(infolist, info, infotmp)
  9604. pthread_join(info->probe_pth, NULL);
  9605. #endif
  9606. struct driver_registration *reg, *tmp;
  9607. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9608. {
  9609. const struct device_drv * const drv = reg->drv;
  9610. if (!(drv_algo_check(drv) && drv->drv_detect))
  9611. continue;
  9612. drv->drv_detect();
  9613. }
  9614. #ifdef HAVE_BFG_LOWLEVEL
  9615. lowlevel_scan_free();
  9616. #endif
  9617. if (bfg_need_detect_rescan)
  9618. {
  9619. if (rescanning)
  9620. {
  9621. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9622. struct timeval tv_when;
  9623. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9624. schedule_rescan(&tv_when);
  9625. }
  9626. else
  9627. {
  9628. rescanning = true;
  9629. applog(LOG_DEBUG, "Device rescan requested");
  9630. goto rescan;
  9631. }
  9632. }
  9633. }
  9634. static
  9635. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9636. {
  9637. struct thr_info *thr;
  9638. int j;
  9639. struct device_drv *api = cgpu->drv;
  9640. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9641. int threadobj = cgpu->threads;
  9642. if (!threadobj)
  9643. // Create a fake thread object to handle hashmeter etc
  9644. threadobj = 1;
  9645. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9646. cgpu->thr[threadobj] = NULL;
  9647. cgpu->status = LIFE_INIT;
  9648. if (opt_devices_enabled_list)
  9649. {
  9650. struct string_elist *enablestr_elist;
  9651. cgpu->deven = DEV_DISABLED;
  9652. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9653. {
  9654. const char * const enablestr = enablestr_elist->string;
  9655. if (cgpu_match(enablestr, cgpu))
  9656. {
  9657. cgpu->deven = DEV_ENABLED;
  9658. break;
  9659. }
  9660. }
  9661. }
  9662. cgpu->max_hashes = 0;
  9663. BFGINIT(cgpu->min_nonce_diff, 1);
  9664. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9665. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9666. // Setup thread structs before starting any of the threads, in case they try to interact
  9667. for (j = 0; j < threadobj; ++j, ++*kp) {
  9668. thr = get_thread(*kp);
  9669. thr->id = *kp;
  9670. thr->cgpu = cgpu;
  9671. thr->device_thread = j;
  9672. thr->work_restart_notifier[1] = INVSOCK;
  9673. thr->mutex_request[1] = INVSOCK;
  9674. thr->_job_transition_in_progress = true;
  9675. timerclear(&thr->tv_morework);
  9676. thr->scanhash_working = true;
  9677. thr->hashes_done = 0;
  9678. timerclear(&thr->tv_hashes_done);
  9679. cgtime(&thr->tv_lastupdate);
  9680. thr->tv_poll.tv_sec = -1;
  9681. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9682. cgpu->thr[j] = thr;
  9683. }
  9684. if (!cgpu->device->threads)
  9685. notifier_init_invalid(cgpu->thr[0]->notifier);
  9686. else
  9687. if (!cgpu->threads)
  9688. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9689. else
  9690. for (j = 0; j < cgpu->threads; ++j)
  9691. {
  9692. thr = cgpu->thr[j];
  9693. notifier_init(thr->notifier);
  9694. }
  9695. }
  9696. static
  9697. void start_cgpu(struct cgpu_info *cgpu)
  9698. {
  9699. struct thr_info *thr;
  9700. int j;
  9701. for (j = 0; j < cgpu->threads; ++j) {
  9702. thr = cgpu->thr[j];
  9703. /* Enable threads for devices set not to mine but disable
  9704. * their queue in case we wish to enable them later */
  9705. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9706. continue;
  9707. thread_reportout(thr);
  9708. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9709. quit(1, "thread %d create failed", thr->id);
  9710. notifier_wake(thr->notifier);
  9711. }
  9712. if (cgpu->deven == DEV_ENABLED)
  9713. proc_enable(cgpu);
  9714. }
  9715. static
  9716. void _scan_serial(void *p)
  9717. {
  9718. const char *s = p;
  9719. struct string_elist *iter, *tmp;
  9720. struct string_elist *orig_scan_devices = scan_devices;
  9721. if (s)
  9722. {
  9723. // Make temporary scan_devices list
  9724. scan_devices = NULL;
  9725. string_elist_add("noauto", &scan_devices);
  9726. add_serial(s);
  9727. }
  9728. drv_detect_all();
  9729. if (s)
  9730. {
  9731. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9732. {
  9733. string_elist_del(&scan_devices, iter);
  9734. }
  9735. scan_devices = orig_scan_devices;
  9736. }
  9737. }
  9738. #ifdef HAVE_BFG_LOWLEVEL
  9739. static
  9740. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9741. {
  9742. if (!(false
  9743. || (info->serial && !strcasecmp(ser, info->serial))
  9744. || (info->path && !strcasecmp(ser, info->path ))
  9745. || (info->devid && !strcasecmp(ser, info->devid ))
  9746. ))
  9747. {
  9748. char *devid = devpath_to_devid(ser);
  9749. if (!devid)
  9750. return false;
  9751. const bool different = strcmp(info->devid, devid);
  9752. free(devid);
  9753. if (different)
  9754. return false;
  9755. }
  9756. return true;
  9757. }
  9758. static
  9759. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9760. {
  9761. struct driver_registration *dreg;
  9762. char dname[dnamelen];
  9763. int i;
  9764. for (i = 0; i < dnamelen; ++i)
  9765. dname[i] = tolower(_dname[i]);
  9766. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9767. if (!dreg)
  9768. {
  9769. for (i = 0; i < dnamelen; ++i)
  9770. dname[i] = toupper(_dname[i]);
  9771. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9772. if (!dreg)
  9773. return NULL;
  9774. }
  9775. if (!drv_algo_check(dreg->drv))
  9776. return NULL;
  9777. return dreg->drv;
  9778. }
  9779. static
  9780. void *probe_device_thread(void *p)
  9781. {
  9782. struct lowlevel_device_info * const infolist = p;
  9783. struct lowlevel_device_info *info = infolist;
  9784. bool request_rescan = false;
  9785. {
  9786. char threadname[5 + strlen(info->devid) + 1];
  9787. sprintf(threadname, "probe_%s", info->devid);
  9788. RenameThread(threadname);
  9789. }
  9790. // If already in use, ignore
  9791. if (bfg_claim_any(NULL, NULL, info->devid))
  9792. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9793. __func__, info->product);
  9794. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9795. struct string_elist *sd_iter, *sd_tmp;
  9796. struct driver_registration *dreg, *dreg_tmp;
  9797. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9798. {
  9799. const char * const dname = sd_iter->string;
  9800. const char * const colon = strpbrk(dname, ":@");
  9801. if (!(colon && colon != dname))
  9802. continue;
  9803. const char * const ser = &colon[1];
  9804. LL_FOREACH2(infolist, info, same_devid_next)
  9805. {
  9806. if (!_probe_device_match(info, ser))
  9807. continue;
  9808. const size_t dnamelen = (colon - dname);
  9809. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9810. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9811. continue;
  9812. if (drv->lowl_probe(info))
  9813. return NULL;
  9814. else
  9815. if (opt_hotplug)
  9816. request_rescan = true;
  9817. }
  9818. }
  9819. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9820. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9821. {
  9822. const struct device_drv * const drv = dreg->drv;
  9823. if (!drv_algo_check(drv))
  9824. continue;
  9825. // Check for "noauto" flag
  9826. // NOTE: driver-specific configuration overrides general
  9827. bool doauto = true;
  9828. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9829. {
  9830. const char * const dname = sd_iter->string;
  9831. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9832. const char *colon = strchr(dname, ':');
  9833. if (!colon)
  9834. colon = &dname[-1];
  9835. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9836. continue;
  9837. const ssize_t dnamelen = (colon - dname);
  9838. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9839. continue;
  9840. doauto = (tolower(colon[1]) == 'a');
  9841. if (dnamelen != -1)
  9842. break;
  9843. }
  9844. if (doauto && drv->lowl_match)
  9845. {
  9846. LL_FOREACH2(infolist, info, same_devid_next)
  9847. {
  9848. if (!drv->lowl_match(info))
  9849. continue;
  9850. if (drv->lowl_probe(info))
  9851. return NULL;
  9852. else
  9853. if (opt_hotplug)
  9854. bfg_need_detect_rescan = true;
  9855. }
  9856. }
  9857. }
  9858. // probe driver(s) with 'all' enabled
  9859. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9860. {
  9861. const char * const dname = sd_iter->string;
  9862. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9863. const char * const colon = strchr(dname, ':');
  9864. if (!colon)
  9865. {
  9866. LL_FOREACH2(infolist, info, same_devid_next)
  9867. {
  9868. if (
  9869. #ifdef NEED_BFG_LOWL_VCOM
  9870. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9871. #endif
  9872. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9873. {
  9874. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9875. {
  9876. const struct device_drv * const drv = dreg->drv;
  9877. if (!drv_algo_check(drv))
  9878. continue;
  9879. if (drv->lowl_probe_by_name_only)
  9880. continue;
  9881. if (!drv->lowl_probe)
  9882. continue;
  9883. if (drv->lowl_probe(info))
  9884. return NULL;
  9885. }
  9886. if (opt_hotplug)
  9887. request_rescan = true;
  9888. break;
  9889. }
  9890. }
  9891. continue;
  9892. }
  9893. if (strcasecmp(&colon[1], "all"))
  9894. continue;
  9895. const size_t dnamelen = (colon - dname);
  9896. LL_FOREACH2(infolist, info, same_devid_next)
  9897. {
  9898. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9899. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9900. continue;
  9901. if (drv->lowl_probe(info))
  9902. return NULL;
  9903. }
  9904. }
  9905. // Only actually request a rescan if we never found any cgpu
  9906. if (request_rescan)
  9907. bfg_need_detect_rescan = true;
  9908. return NULL;
  9909. }
  9910. void probe_device(struct lowlevel_device_info * const info)
  9911. {
  9912. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9913. }
  9914. #endif
  9915. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9916. {
  9917. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9918. int devcount, i, mining_threads_new = 0;
  9919. unsigned int k;
  9920. struct cgpu_info *cgpu;
  9921. struct thr_info *thr;
  9922. void *p;
  9923. mutex_lock(&mutex);
  9924. devcount = total_devices;
  9925. addfunc(arg);
  9926. if (!total_devices_new)
  9927. goto out;
  9928. wr_lock(&devices_lock);
  9929. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9930. if (unlikely(!p))
  9931. {
  9932. wr_unlock(&devices_lock);
  9933. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9934. goto out;
  9935. }
  9936. devices = p;
  9937. wr_unlock(&devices_lock);
  9938. for (i = 0; i < total_devices_new; ++i)
  9939. {
  9940. cgpu = devices_new[i];
  9941. mining_threads_new += cgpu->threads ?: 1;
  9942. }
  9943. wr_lock(&mining_thr_lock);
  9944. mining_threads_new += mining_threads;
  9945. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9946. if (unlikely(!p))
  9947. {
  9948. wr_unlock(&mining_thr_lock);
  9949. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9950. goto out;
  9951. }
  9952. mining_thr = p;
  9953. wr_unlock(&mining_thr_lock);
  9954. for (i = mining_threads; i < mining_threads_new; ++i) {
  9955. mining_thr[i] = calloc(1, sizeof(*thr));
  9956. if (!mining_thr[i])
  9957. {
  9958. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9959. for ( ; --i >= mining_threads; )
  9960. free(mining_thr[i]);
  9961. goto out;
  9962. }
  9963. }
  9964. k = mining_threads;
  9965. for (i = 0; i < total_devices_new; ++i)
  9966. {
  9967. cgpu = devices_new[i];
  9968. allocate_cgpu(cgpu, &k);
  9969. }
  9970. for (i = 0; i < total_devices_new; ++i)
  9971. {
  9972. cgpu = devices_new[i];
  9973. start_cgpu(cgpu);
  9974. register_device(cgpu);
  9975. ++total_devices;
  9976. }
  9977. #ifdef HAVE_CURSES
  9978. switch_logsize();
  9979. #endif
  9980. out:
  9981. total_devices_new = 0;
  9982. devcount = total_devices - devcount;
  9983. mutex_unlock(&mutex);
  9984. return devcount;
  9985. }
  9986. int scan_serial(const char *s)
  9987. {
  9988. return create_new_cgpus(_scan_serial, (void*)s);
  9989. }
  9990. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9991. static bool rescan_active;
  9992. static struct timeval tv_rescan;
  9993. static notifier_t rescan_notifier;
  9994. static
  9995. void *rescan_thread(__maybe_unused void *p)
  9996. {
  9997. pthread_detach(pthread_self());
  9998. RenameThread("rescan");
  9999. struct timeval tv_timeout, tv_now;
  10000. fd_set rfds;
  10001. while (true)
  10002. {
  10003. mutex_lock(&rescan_mutex);
  10004. tv_timeout = tv_rescan;
  10005. if (!timer_isset(&tv_timeout))
  10006. {
  10007. rescan_active = false;
  10008. mutex_unlock(&rescan_mutex);
  10009. break;
  10010. }
  10011. mutex_unlock(&rescan_mutex);
  10012. FD_ZERO(&rfds);
  10013. FD_SET(rescan_notifier[0], &rfds);
  10014. const int maxfd = rescan_notifier[0];
  10015. timer_set_now(&tv_now);
  10016. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  10017. notifier_read(rescan_notifier);
  10018. mutex_lock(&rescan_mutex);
  10019. if (timer_passed(&tv_rescan, NULL))
  10020. {
  10021. timer_unset(&tv_rescan);
  10022. mutex_unlock(&rescan_mutex);
  10023. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  10024. scan_serial(NULL);
  10025. }
  10026. else
  10027. mutex_unlock(&rescan_mutex);
  10028. }
  10029. return NULL;
  10030. }
  10031. static
  10032. void _schedule_rescan(const struct timeval * const tvp_when)
  10033. {
  10034. if (rescan_active)
  10035. {
  10036. if (timercmp(tvp_when, &tv_rescan, <))
  10037. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  10038. else
  10039. {
  10040. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  10041. tv_rescan = *tvp_when;
  10042. }
  10043. return;
  10044. }
  10045. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  10046. tv_rescan = *tvp_when;
  10047. rescan_active = true;
  10048. static pthread_t pth;
  10049. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  10050. applog(LOG_ERR, "Failed to start rescan thread");
  10051. }
  10052. static
  10053. void schedule_rescan(const struct timeval * const tvp_when)
  10054. {
  10055. mutex_lock(&rescan_mutex);
  10056. _schedule_rescan(tvp_when);
  10057. mutex_unlock(&rescan_mutex);
  10058. }
  10059. #ifdef HAVE_BFG_HOTPLUG
  10060. static
  10061. void hotplug_trigger()
  10062. {
  10063. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  10064. struct timeval tv_now;
  10065. timer_set_now(&tv_now);
  10066. schedule_rescan(&tv_now);
  10067. }
  10068. #endif
  10069. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  10070. static
  10071. void *hotplug_thread(__maybe_unused void *p)
  10072. {
  10073. pthread_detach(pthread_self());
  10074. RenameThread("hotplug");
  10075. struct udev * const udev = udev_new();
  10076. if (unlikely(!udev))
  10077. applogfailr(NULL, LOG_ERR, "udev_new");
  10078. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  10079. if (unlikely(!mon))
  10080. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  10081. if (unlikely(udev_monitor_enable_receiving(mon)))
  10082. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  10083. const int epfd = epoll_create(1);
  10084. if (unlikely(epfd == -1))
  10085. applogfailr(NULL, LOG_ERR, "epoll_create");
  10086. {
  10087. const int fd = udev_monitor_get_fd(mon);
  10088. struct epoll_event ev = {
  10089. .events = EPOLLIN | EPOLLPRI,
  10090. .data.fd = fd,
  10091. };
  10092. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  10093. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  10094. }
  10095. struct epoll_event ev;
  10096. int rv;
  10097. bool pending = false;
  10098. while (true)
  10099. {
  10100. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  10101. if (rv == -1)
  10102. {
  10103. if (errno == EAGAIN || errno == EINTR)
  10104. continue;
  10105. break;
  10106. }
  10107. if (!rv)
  10108. {
  10109. hotplug_trigger();
  10110. pending = false;
  10111. continue;
  10112. }
  10113. struct udev_device * const device = udev_monitor_receive_device(mon);
  10114. if (!device)
  10115. continue;
  10116. const char * const action = udev_device_get_action(device);
  10117. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  10118. if (!strcmp(action, "add"))
  10119. pending = true;
  10120. udev_device_unref(device);
  10121. }
  10122. applogfailr(NULL, LOG_ERR, "epoll_wait");
  10123. }
  10124. #elif defined(WIN32)
  10125. static UINT_PTR _hotplug_wintimer_id;
  10126. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  10127. {
  10128. KillTimer(NULL, _hotplug_wintimer_id);
  10129. _hotplug_wintimer_id = 0;
  10130. hotplug_trigger();
  10131. }
  10132. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  10133. {
  10134. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  10135. {
  10136. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  10137. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  10138. }
  10139. return DefWindowProc(hwnd, msg, wParam, lParam);
  10140. }
  10141. static
  10142. void *hotplug_thread(__maybe_unused void *p)
  10143. {
  10144. pthread_detach(pthread_self());
  10145. WNDCLASS DummyWinCls = {
  10146. .lpszClassName = "BFGDummyWinCls",
  10147. .lpfnWndProc = hotplug_win_callback,
  10148. };
  10149. ATOM a = RegisterClass(&DummyWinCls);
  10150. if (unlikely(!a))
  10151. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  10152. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  10153. if (unlikely(!hwnd))
  10154. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  10155. MSG msg;
  10156. while (GetMessage(&msg, NULL, 0, 0))
  10157. {
  10158. TranslateMessage(&msg);
  10159. DispatchMessage(&msg);
  10160. }
  10161. quit(0, "WM_QUIT received");
  10162. return NULL;
  10163. }
  10164. #endif
  10165. #ifdef HAVE_BFG_HOTPLUG
  10166. static
  10167. void hotplug_start()
  10168. {
  10169. pthread_t pth;
  10170. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  10171. applog(LOG_ERR, "Failed to start hotplug thread");
  10172. }
  10173. #endif
  10174. static void probe_pools(void)
  10175. {
  10176. int i;
  10177. for (i = 0; i < total_pools; i++) {
  10178. struct pool *pool = pools[i];
  10179. pool->testing = true;
  10180. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  10181. }
  10182. }
  10183. static void raise_fd_limits(void)
  10184. {
  10185. #ifdef HAVE_SETRLIMIT
  10186. struct rlimit fdlimit;
  10187. rlim_t old_soft_limit;
  10188. char frombuf[0x10] = "unlimited";
  10189. char hardbuf[0x10] = "unlimited";
  10190. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  10191. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  10192. old_soft_limit = fdlimit.rlim_cur;
  10193. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  10194. fdlimit.rlim_cur = FD_SETSIZE;
  10195. else
  10196. fdlimit.rlim_cur = fdlimit.rlim_max;
  10197. if (fdlimit.rlim_max != RLIM_INFINITY)
  10198. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  10199. if (old_soft_limit != RLIM_INFINITY)
  10200. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  10201. if (fdlimit.rlim_cur == old_soft_limit)
  10202. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10203. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  10204. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  10205. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10206. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10207. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10208. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10209. #else
  10210. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  10211. #endif
  10212. }
  10213. extern void bfg_init_threadlocal();
  10214. extern void stratumsrv_start();
  10215. int main(int argc, char *argv[])
  10216. {
  10217. struct sigaction handler;
  10218. struct thr_info *thr;
  10219. struct block *block;
  10220. unsigned int k;
  10221. int i;
  10222. int rearrange_pools = 0;
  10223. char *s;
  10224. #ifdef WIN32
  10225. LoadLibrary("backtrace.dll");
  10226. #endif
  10227. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  10228. bfg_init_threadlocal();
  10229. #ifndef HAVE_PTHREAD_CANCEL
  10230. setup_pthread_cancel_workaround();
  10231. #endif
  10232. bfg_init_checksums();
  10233. #ifdef WIN32
  10234. {
  10235. WSADATA wsa;
  10236. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10237. if (i)
  10238. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10239. }
  10240. #endif
  10241. /* This dangerous functions tramples random dynamically allocated
  10242. * variables so do it before anything at all */
  10243. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10244. quit(1, "Failed to curl_global_init");
  10245. initial_args = malloc(sizeof(char *) * (argc + 1));
  10246. for (i = 0; i < argc; i++)
  10247. initial_args[i] = strdup(argv[i]);
  10248. initial_args[argc] = NULL;
  10249. mutex_init(&hash_lock);
  10250. mutex_init(&console_lock);
  10251. cglock_init(&control_lock);
  10252. mutex_init(&stats_lock);
  10253. mutex_init(&sharelog_lock);
  10254. cglock_init(&ch_lock);
  10255. mutex_init(&sshare_lock);
  10256. rwlock_init(&blk_lock);
  10257. rwlock_init(&netacc_lock);
  10258. rwlock_init(&mining_thr_lock);
  10259. rwlock_init(&devices_lock);
  10260. mutex_init(&lp_lock);
  10261. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10262. quit(1, "Failed to pthread_cond_init lp_cond");
  10263. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10264. quit(1, "Failed to pthread_cond_init gws_cond");
  10265. notifier_init(submit_waiting_notifier);
  10266. timer_unset(&tv_rescan);
  10267. notifier_init(rescan_notifier);
  10268. /* Create a unique get work queue */
  10269. getq = tq_new();
  10270. if (!getq)
  10271. quit(1, "Failed to create getq");
  10272. /* We use the getq mutex as the staged lock */
  10273. stgd_lock = &getq->mutex;
  10274. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10275. #ifdef WANT_CPUMINE
  10276. init_max_name_len();
  10277. #endif
  10278. handler.sa_handler = &sighandler;
  10279. handler.sa_flags = 0;
  10280. sigemptyset(&handler.sa_mask);
  10281. #ifdef HAVE_PTHREAD_CANCEL
  10282. sigaction(SIGTERM, &handler, &termhandler);
  10283. #else
  10284. // Need to let pthread_cancel emulation handle SIGTERM first
  10285. termhandler = pcwm_orig_term_handler;
  10286. pcwm_orig_term_handler = handler;
  10287. #endif
  10288. sigaction(SIGINT, &handler, &inthandler);
  10289. #ifndef WIN32
  10290. signal(SIGPIPE, SIG_IGN);
  10291. #else
  10292. timeBeginPeriod(1);
  10293. #endif
  10294. opt_kernel_path = CGMINER_PREFIX;
  10295. cgminer_path = alloca(PATH_MAX);
  10296. s = strdup(argv[0]);
  10297. strcpy(cgminer_path, dirname(s));
  10298. free(s);
  10299. strcat(cgminer_path, "/");
  10300. #if defined(WANT_CPUMINE) && defined(WIN32)
  10301. {
  10302. char buf[32];
  10303. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10304. if (gev > 0 && gev < sizeof(buf))
  10305. {
  10306. setup_benchmark_pool();
  10307. double rate = bench_algo_stage3(atoi(buf));
  10308. // Write result to shared memory for parent
  10309. char unique_name[64];
  10310. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10311. {
  10312. HANDLE map_handle = CreateFileMapping(
  10313. INVALID_HANDLE_VALUE, // use paging file
  10314. NULL, // default security attributes
  10315. PAGE_READWRITE, // read/write access
  10316. 0, // size: high 32-bits
  10317. 4096, // size: low 32-bits
  10318. unique_name // name of map object
  10319. );
  10320. if (NULL != map_handle) {
  10321. void *shared_mem = MapViewOfFile(
  10322. map_handle, // object to map view of
  10323. FILE_MAP_WRITE, // read/write access
  10324. 0, // high offset: map from
  10325. 0, // low offset: beginning
  10326. 0 // default: map entire file
  10327. );
  10328. if (NULL != shared_mem)
  10329. CopyMemory(shared_mem, &rate, sizeof(rate));
  10330. (void)UnmapViewOfFile(shared_mem);
  10331. }
  10332. (void)CloseHandle(map_handle);
  10333. }
  10334. exit(0);
  10335. }
  10336. }
  10337. #endif
  10338. devcursor = 8;
  10339. logstart = devcursor;
  10340. logcursor = logstart;
  10341. block = calloc(sizeof(struct block), 1);
  10342. if (unlikely(!block))
  10343. quit (1, "main OOM");
  10344. for (i = 0; i < 36; i++)
  10345. strcat(block->hash, "0");
  10346. HASH_ADD_STR(blocks, hash, block);
  10347. strcpy(current_block, block->hash);
  10348. mutex_init(&submitting_lock);
  10349. #ifdef HAVE_OPENCL
  10350. opencl_early_init();
  10351. #endif
  10352. schedstart.tm.tm_sec = 1;
  10353. schedstop .tm.tm_sec = 1;
  10354. opt_register_table(opt_early_table, NULL);
  10355. opt_register_table(opt_config_table, NULL);
  10356. opt_register_table(opt_cmdline_table, NULL);
  10357. opt_early_parse(argc, argv, applog_and_exit);
  10358. if (!config_loaded)
  10359. {
  10360. load_default_config();
  10361. rearrange_pools = total_pools;
  10362. }
  10363. opt_free_table();
  10364. /* parse command line */
  10365. opt_register_table(opt_config_table,
  10366. "Options for both config file and command line");
  10367. opt_register_table(opt_cmdline_table,
  10368. "Options for command line only");
  10369. opt_parse(&argc, argv, applog_and_exit);
  10370. if (argc != 1)
  10371. quit(1, "Unexpected extra commandline arguments");
  10372. if (rearrange_pools && rearrange_pools < total_pools)
  10373. {
  10374. // Prioritise commandline pools before default-config pools
  10375. for (i = 0; i < rearrange_pools; ++i)
  10376. pools[i]->prio += rearrange_pools;
  10377. for ( ; i < total_pools; ++i)
  10378. pools[i]->prio -= rearrange_pools;
  10379. }
  10380. #ifndef HAVE_PTHREAD_CANCEL
  10381. // Can't do this any earlier, or config isn't loaded
  10382. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10383. #endif
  10384. #ifdef HAVE_PWD_H
  10385. struct passwd *user_info = NULL;
  10386. if (opt_setuid != NULL) {
  10387. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10388. quit(1, "Unable to find setuid user information");
  10389. }
  10390. }
  10391. #endif
  10392. #ifdef HAVE_CHROOT
  10393. if (chroot_dir != NULL) {
  10394. #ifdef HAVE_PWD_H
  10395. if (user_info == NULL && getuid() == 0) {
  10396. applog(LOG_WARNING, "Running as root inside chroot");
  10397. }
  10398. #endif
  10399. if (chroot(chroot_dir) != 0) {
  10400. quit(1, "Unable to chroot");
  10401. }
  10402. if (chdir("/"))
  10403. quit(1, "Unable to chdir to chroot");
  10404. }
  10405. #endif
  10406. #ifdef HAVE_PWD_H
  10407. if (user_info != NULL) {
  10408. if (setgid((*user_info).pw_gid) != 0)
  10409. quit(1, "Unable to setgid");
  10410. if (setuid((*user_info).pw_uid) != 0)
  10411. quit(1, "Unable to setuid");
  10412. }
  10413. #endif
  10414. raise_fd_limits();
  10415. if (opt_benchmark) {
  10416. while (total_pools)
  10417. remove_pool(pools[0]);
  10418. setup_benchmark_pool();
  10419. }
  10420. if (opt_unittest) {
  10421. test_cgpu_match();
  10422. test_intrange();
  10423. test_decimal_width();
  10424. test_domain_funcs();
  10425. test_target();
  10426. utf8_test();
  10427. }
  10428. #ifdef HAVE_CURSES
  10429. if (opt_realquiet || opt_display_devs)
  10430. use_curses = false;
  10431. setlocale(LC_ALL, "C");
  10432. if (use_curses)
  10433. enable_curses();
  10434. #endif
  10435. #ifdef HAVE_LIBUSB
  10436. int err = libusb_init(NULL);
  10437. if (err)
  10438. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10439. else
  10440. have_libusb = true;
  10441. #endif
  10442. applog(LOG_WARNING, "Started %s", packagename);
  10443. if (cnfbuf) {
  10444. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10445. switch (fileconf_load) {
  10446. case 0:
  10447. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10448. applog(LOG_WARNING, "Configuration file could not be used.");
  10449. break;
  10450. case -1:
  10451. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10452. if (use_curses)
  10453. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10454. break;
  10455. default:
  10456. break;
  10457. }
  10458. free(cnfbuf);
  10459. cnfbuf = NULL;
  10460. }
  10461. i = strlen(opt_kernel_path) + 2;
  10462. char __kernel_path[i];
  10463. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10464. opt_kernel_path = __kernel_path;
  10465. if (want_per_device_stats)
  10466. opt_log_output = true;
  10467. #ifdef WANT_CPUMINE
  10468. #ifdef USE_SCRYPT
  10469. if (opt_scrypt)
  10470. set_scrypt_algo(&opt_algo);
  10471. #endif
  10472. #endif
  10473. bfg_devapi_init();
  10474. drv_detect_all();
  10475. total_devices = total_devices_new;
  10476. devices = devices_new;
  10477. total_devices_new = 0;
  10478. devices_new = NULL;
  10479. if (opt_display_devs) {
  10480. int devcount = 0;
  10481. applog(LOG_ERR, "Devices detected:");
  10482. for (i = 0; i < total_devices; ++i) {
  10483. struct cgpu_info *cgpu = devices[i];
  10484. char buf[0x100];
  10485. if (cgpu->device != cgpu)
  10486. continue;
  10487. if (cgpu->name)
  10488. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10489. else
  10490. if (cgpu->dev_manufacturer)
  10491. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10492. else
  10493. if (cgpu->dev_product)
  10494. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10495. else
  10496. strcpy(buf, " Device");
  10497. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10498. if (cgpu->dev_serial)
  10499. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10500. if (cgpu->device_path)
  10501. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10502. tailsprintf(buf, sizeof(buf), ")");
  10503. _applog(LOG_NOTICE, buf);
  10504. ++devcount;
  10505. }
  10506. quit(0, "%d devices listed", devcount);
  10507. }
  10508. mining_threads = 0;
  10509. for (i = 0; i < total_devices; ++i)
  10510. register_device(devices[i]);
  10511. if (!total_devices) {
  10512. applog(LOG_WARNING, "No devices detected!");
  10513. if (use_curses)
  10514. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10515. else
  10516. applog(LOG_WARNING, "Waiting for devices");
  10517. }
  10518. if (opt_quit_summary == BQS_DEFAULT)
  10519. {
  10520. if (total_devices < 25)
  10521. opt_quit_summary = BQS_PROCS;
  10522. else
  10523. opt_quit_summary = BQS_DEVS;
  10524. }
  10525. #ifdef HAVE_CURSES
  10526. switch_logsize();
  10527. #endif
  10528. if (!total_pools) {
  10529. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10530. #ifdef HAVE_CURSES
  10531. if (!use_curses || !input_pool(false))
  10532. #endif
  10533. quit(1, "Pool setup failed");
  10534. }
  10535. for (i = 0; i < total_pools; i++) {
  10536. struct pool *pool = pools[i];
  10537. size_t siz;
  10538. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10539. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10540. if (!pool->rpc_url)
  10541. quit(1, "No URI supplied for pool %u", i);
  10542. if (!pool->rpc_userpass) {
  10543. if (!pool->rpc_user || !pool->rpc_pass)
  10544. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10545. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10546. pool->rpc_userpass = malloc(siz);
  10547. if (!pool->rpc_userpass)
  10548. quit(1, "Failed to malloc userpass");
  10549. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10550. }
  10551. }
  10552. /* Set the currentpool to pool with priority 0 */
  10553. validate_pool_priorities();
  10554. for (i = 0; i < total_pools; i++) {
  10555. struct pool *pool = pools[i];
  10556. if (!pool->prio)
  10557. currentpool = pool;
  10558. }
  10559. #ifdef HAVE_SYSLOG_H
  10560. if (use_syslog)
  10561. openlog(PACKAGE, LOG_PID, LOG_USER);
  10562. #endif
  10563. #if defined(unix) || defined(__APPLE__)
  10564. if (opt_stderr_cmd)
  10565. fork_monitor();
  10566. #endif // defined(unix)
  10567. mining_thr = calloc(mining_threads, sizeof(thr));
  10568. if (!mining_thr)
  10569. quit(1, "Failed to calloc mining_thr");
  10570. for (i = 0; i < mining_threads; i++) {
  10571. mining_thr[i] = calloc(1, sizeof(*thr));
  10572. if (!mining_thr[i])
  10573. quit(1, "Failed to calloc mining_thr[%d]", i);
  10574. }
  10575. total_control_threads = 6;
  10576. control_thr = calloc(total_control_threads, sizeof(*thr));
  10577. if (!control_thr)
  10578. quit(1, "Failed to calloc control_thr");
  10579. if (opt_benchmark)
  10580. goto begin_bench;
  10581. for (i = 0; i < total_pools; i++) {
  10582. struct pool *pool = pools[i];
  10583. enable_pool(pool);
  10584. pool->idle = true;
  10585. }
  10586. applog(LOG_NOTICE, "Probing for an alive pool");
  10587. do {
  10588. bool still_testing;
  10589. int i;
  10590. /* Look for at least one active pool before starting */
  10591. probe_pools();
  10592. do {
  10593. sleep(1);
  10594. if (pools_active)
  10595. break;
  10596. still_testing = false;
  10597. for (int i = 0; i < total_pools; ++i)
  10598. if (pools[i]->testing)
  10599. still_testing = true;
  10600. } while (still_testing);
  10601. if (!pools_active) {
  10602. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10603. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10604. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10605. for (i = 0; i < total_pools; i++) {
  10606. struct pool *pool;
  10607. pool = pools[i];
  10608. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10609. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10610. }
  10611. #ifdef HAVE_CURSES
  10612. if (use_curses) {
  10613. halfdelay(150);
  10614. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10615. if (getch() != ERR)
  10616. quit(0, "No servers could be used! Exiting.");
  10617. cbreak();
  10618. } else
  10619. #endif
  10620. quit(0, "No servers could be used! Exiting.");
  10621. }
  10622. } while (!pools_active);
  10623. #ifdef USE_SCRYPT
  10624. if (detect_algo == 1 && !opt_scrypt) {
  10625. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10626. opt_scrypt = true;
  10627. }
  10628. #endif
  10629. detect_algo = 0;
  10630. begin_bench:
  10631. total_mhashes_done = 0;
  10632. for (i = 0; i < total_devices; i++) {
  10633. struct cgpu_info *cgpu = devices[i];
  10634. cgpu->rolling = cgpu->total_mhashes = 0;
  10635. }
  10636. cgtime(&total_tv_start);
  10637. cgtime(&total_tv_end);
  10638. miner_started = total_tv_start;
  10639. time_t miner_start_ts = time(NULL);
  10640. if (schedstart.tm.tm_sec)
  10641. localtime_r(&miner_start_ts, &schedstart.tm);
  10642. if (schedstop.tm.tm_sec)
  10643. localtime_r(&miner_start_ts, &schedstop .tm);
  10644. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10645. // Initialise processors and threads
  10646. k = 0;
  10647. for (i = 0; i < total_devices; ++i) {
  10648. struct cgpu_info *cgpu = devices[i];
  10649. allocate_cgpu(cgpu, &k);
  10650. }
  10651. // Start threads
  10652. for (i = 0; i < total_devices; ++i) {
  10653. struct cgpu_info *cgpu = devices[i];
  10654. start_cgpu(cgpu);
  10655. }
  10656. #ifdef HAVE_OPENCL
  10657. for (i = 0; i < nDevs; i++)
  10658. pause_dynamic_threads(i);
  10659. #endif
  10660. #ifdef WANT_CPUMINE
  10661. if (opt_n_threads > 0)
  10662. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10663. opt_n_threads, algo_names[opt_algo]);
  10664. #endif
  10665. cgtime(&total_tv_start);
  10666. cgtime(&total_tv_end);
  10667. if (!opt_benchmark)
  10668. {
  10669. pthread_t submit_thread;
  10670. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10671. quit(1, "submit_work thread create failed");
  10672. }
  10673. watchpool_thr_id = 1;
  10674. thr = &control_thr[watchpool_thr_id];
  10675. /* start watchpool thread */
  10676. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10677. quit(1, "watchpool thread create failed");
  10678. pthread_detach(thr->pth);
  10679. watchdog_thr_id = 2;
  10680. thr = &control_thr[watchdog_thr_id];
  10681. /* start watchdog thread */
  10682. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10683. quit(1, "watchdog thread create failed");
  10684. pthread_detach(thr->pth);
  10685. #ifdef HAVE_OPENCL
  10686. /* Create reinit gpu thread */
  10687. gpur_thr_id = 3;
  10688. thr = &control_thr[gpur_thr_id];
  10689. thr->q = tq_new();
  10690. if (!thr->q)
  10691. quit(1, "tq_new failed for gpur_thr_id");
  10692. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10693. quit(1, "reinit_gpu thread create failed");
  10694. #endif
  10695. /* Create API socket thread */
  10696. api_thr_id = 4;
  10697. thr = &control_thr[api_thr_id];
  10698. if (thr_info_create(thr, NULL, api_thread, thr))
  10699. quit(1, "API thread create failed");
  10700. #ifdef USE_LIBMICROHTTPD
  10701. if (httpsrv_port != -1)
  10702. httpsrv_start(httpsrv_port);
  10703. #endif
  10704. #ifdef USE_LIBEVENT
  10705. if (stratumsrv_port != -1)
  10706. stratumsrv_start();
  10707. #endif
  10708. #ifdef HAVE_BFG_HOTPLUG
  10709. if (opt_hotplug && !opt_scrypt)
  10710. hotplug_start();
  10711. #endif
  10712. #ifdef HAVE_CURSES
  10713. /* Create curses input thread for keyboard input. Create this last so
  10714. * that we know all threads are created since this can call kill_work
  10715. * to try and shut down ll previous threads. */
  10716. input_thr_id = 5;
  10717. thr = &control_thr[input_thr_id];
  10718. if (thr_info_create(thr, NULL, input_thread, thr))
  10719. quit(1, "input thread create failed");
  10720. pthread_detach(thr->pth);
  10721. #endif
  10722. /* Just to be sure */
  10723. if (total_control_threads != 6)
  10724. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10725. /* Once everything is set up, main() becomes the getwork scheduler */
  10726. while (42) {
  10727. int ts, max_staged = opt_queue;
  10728. struct pool *pool, *cp;
  10729. bool lagging = false;
  10730. struct curl_ent *ce;
  10731. struct work *work;
  10732. cp = current_pool();
  10733. // Generally, each processor needs a new work, and all at once during work restarts
  10734. max_staged += mining_threads;
  10735. mutex_lock(stgd_lock);
  10736. ts = __total_staged();
  10737. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10738. lagging = true;
  10739. /* Wait until hash_pop tells us we need to create more work */
  10740. if (ts > max_staged) {
  10741. staged_full = true;
  10742. pthread_cond_wait(&gws_cond, stgd_lock);
  10743. ts = __total_staged();
  10744. }
  10745. mutex_unlock(stgd_lock);
  10746. if (ts > max_staged)
  10747. continue;
  10748. work = make_work();
  10749. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10750. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10751. cp->getfail_occasions++;
  10752. total_go++;
  10753. }
  10754. pool = select_pool(lagging);
  10755. retry:
  10756. if (pool->has_stratum) {
  10757. while (!pool->stratum_active || !pool->stratum_notify) {
  10758. struct pool *altpool = select_pool(true);
  10759. if (altpool == pool && pool->has_stratum)
  10760. cgsleep_ms(5000);
  10761. pool = altpool;
  10762. goto retry;
  10763. }
  10764. gen_stratum_work(pool, work);
  10765. applog(LOG_DEBUG, "Generated stratum work");
  10766. stage_work(work);
  10767. continue;
  10768. }
  10769. if (pool->last_work_copy) {
  10770. mutex_lock(&pool->last_work_lock);
  10771. struct work *last_work = pool->last_work_copy;
  10772. if (!last_work)
  10773. {}
  10774. else
  10775. if (can_roll(last_work) && should_roll(last_work)) {
  10776. struct timeval tv_now;
  10777. cgtime(&tv_now);
  10778. free_work(work);
  10779. work = make_clone(pool->last_work_copy);
  10780. mutex_unlock(&pool->last_work_lock);
  10781. roll_work(work);
  10782. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tr->tmpl, tv_now.tv_sec));
  10783. stage_work(work);
  10784. continue;
  10785. } else if (last_work->tr && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tr->tmpl) > (unsigned long)mining_threads) {
  10786. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10787. } else {
  10788. free_work(last_work);
  10789. pool->last_work_copy = NULL;
  10790. }
  10791. mutex_unlock(&pool->last_work_lock);
  10792. }
  10793. if (clone_available()) {
  10794. applog(LOG_DEBUG, "Cloned getwork work");
  10795. free_work(work);
  10796. continue;
  10797. }
  10798. if (opt_benchmark) {
  10799. get_benchmark_work(work);
  10800. applog(LOG_DEBUG, "Generated benchmark work");
  10801. stage_work(work);
  10802. continue;
  10803. }
  10804. work->pool = pool;
  10805. ce = pop_curl_entry3(pool, 2);
  10806. /* obtain new work from bitcoin via JSON-RPC */
  10807. if (!get_upstream_work(work, ce->curl)) {
  10808. struct pool *next_pool;
  10809. /* Make sure the pool just hasn't stopped serving
  10810. * requests but is up as we'll keep hammering it */
  10811. push_curl_entry(ce, pool);
  10812. ++pool->seq_getfails;
  10813. pool_died(pool);
  10814. next_pool = select_pool(!opt_fail_only);
  10815. if (pool == next_pool) {
  10816. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10817. cgsleep_ms(5000);
  10818. } else {
  10819. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10820. pool = next_pool;
  10821. }
  10822. goto retry;
  10823. }
  10824. if (ts >= max_staged)
  10825. pool_tclear(pool, &pool->lagging);
  10826. if (pool_tclear(pool, &pool->idle))
  10827. pool_resus(pool);
  10828. applog(LOG_DEBUG, "Generated getwork work");
  10829. stage_work(work);
  10830. push_curl_entry(ce, pool);
  10831. }
  10832. return 0;
  10833. }