miner.c 307 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <limits.h>
  22. #include <locale.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <sys/time.h>
  30. #include <time.h>
  31. #include <math.h>
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #include <signal.h>
  35. #include <wctype.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <dirent.h>
  39. #ifdef HAVE_PWD_H
  40. #include <pwd.h>
  41. #endif
  42. #ifndef WIN32
  43. #include <sys/resource.h>
  44. #include <sys/socket.h>
  45. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  46. #include <libudev.h>
  47. #include <sys/epoll.h>
  48. #define HAVE_BFG_HOTPLUG
  49. #endif
  50. #else
  51. #include <winsock2.h>
  52. #include <windows.h>
  53. #include <dbt.h>
  54. #define HAVE_BFG_HOTPLUG
  55. #endif
  56. #include <ccan/opt/opt.h>
  57. #include <jansson.h>
  58. #include <curl/curl.h>
  59. #include <libgen.h>
  60. #include <sha2.h>
  61. #include <utlist.h>
  62. #include <blkmaker.h>
  63. #include <blkmaker_jansson.h>
  64. #include <blktemplate.h>
  65. #include "compat.h"
  66. #include "deviceapi.h"
  67. #include "logging.h"
  68. #include "miner.h"
  69. #include "findnonce.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "bench_block.h"
  74. #include "scrypt.h"
  75. #ifdef USE_AVALON
  76. #include "driver-avalon.h"
  77. #endif
  78. #ifdef HAVE_BFG_LOWLEVEL
  79. #include "lowlevel.h"
  80. #endif
  81. #if defined(unix) || defined(__APPLE__)
  82. #include <errno.h>
  83. #include <fcntl.h>
  84. #include <sys/wait.h>
  85. #endif
  86. #ifdef USE_SCRYPT
  87. #include "scrypt.h"
  88. #endif
  89. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  90. # define USE_FPGA
  91. #endif
  92. enum bfg_quit_summary {
  93. BQS_DEFAULT,
  94. BQS_NONE,
  95. BQS_DEVS,
  96. BQS_PROCS,
  97. BQS_DETAILED,
  98. };
  99. struct strategies strategies[] = {
  100. { "Failover" },
  101. { "Round Robin" },
  102. { "Rotate" },
  103. { "Load Balance" },
  104. { "Balance" },
  105. };
  106. static char packagename[256];
  107. bool opt_protocol;
  108. bool opt_dev_protocol;
  109. static bool opt_benchmark;
  110. static bool want_longpoll = true;
  111. static bool want_gbt = true;
  112. static bool want_getwork = true;
  113. #if BLKMAKER_VERSION > 1
  114. struct _cbscript_t {
  115. char *data;
  116. size_t sz;
  117. };
  118. static struct _cbscript_t opt_coinbase_script;
  119. static uint32_t template_nonce;
  120. #endif
  121. #if BLKMAKER_VERSION > 0
  122. char *opt_coinbase_sig;
  123. #endif
  124. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  125. static bool include_serial_in_statline;
  126. char *request_target_str;
  127. float request_pdiff = 1.0;
  128. double request_bdiff;
  129. static bool want_stratum = true;
  130. bool have_longpoll;
  131. int opt_skip_checks;
  132. bool want_per_device_stats;
  133. bool use_syslog;
  134. bool opt_quiet_work_updates;
  135. bool opt_quiet;
  136. bool opt_realquiet;
  137. int loginput_size;
  138. bool opt_compact;
  139. bool opt_show_procs;
  140. const int opt_cutofftemp = 95;
  141. int opt_hysteresis = 3;
  142. static int opt_retries = -1;
  143. int opt_fail_pause = 5;
  144. int opt_log_interval = 5;
  145. int opt_queue = 1;
  146. int opt_scantime = 60;
  147. int opt_expiry = 120;
  148. int opt_expiry_lp = 3600;
  149. int opt_bench_algo = -1;
  150. unsigned long long global_hashrate;
  151. static bool opt_unittest = false;
  152. unsigned long global_quota_gcd = 1;
  153. time_t last_getwork;
  154. #ifdef HAVE_OPENCL
  155. int opt_dynamic_interval = 7;
  156. int nDevs;
  157. int opt_g_threads = -1;
  158. #endif
  159. #ifdef USE_SCRYPT
  160. static char detect_algo = 1;
  161. bool opt_scrypt;
  162. #else
  163. static char detect_algo;
  164. #endif
  165. bool opt_restart = true;
  166. #ifdef USE_LIBMICROHTTPD
  167. #include "httpsrv.h"
  168. int httpsrv_port = -1;
  169. #endif
  170. #ifdef USE_LIBEVENT
  171. int stratumsrv_port = -1;
  172. #endif
  173. const
  174. int rescan_delay_ms = 1000;
  175. #ifdef HAVE_BFG_HOTPLUG
  176. bool opt_hotplug = 1;
  177. const
  178. int hotplug_delay_ms = 100;
  179. #else
  180. const bool opt_hotplug;
  181. #endif
  182. struct string_elist *scan_devices;
  183. static struct string_elist *opt_set_device_list;
  184. bool opt_force_dev_init;
  185. static struct string_elist *opt_devices_enabled_list;
  186. static bool opt_display_devs;
  187. int total_devices;
  188. struct cgpu_info **devices;
  189. int total_devices_new;
  190. struct cgpu_info **devices_new;
  191. bool have_opencl;
  192. int opt_n_threads = -1;
  193. int mining_threads;
  194. int num_processors;
  195. #ifdef HAVE_CURSES
  196. bool use_curses = true;
  197. #else
  198. bool use_curses;
  199. #endif
  200. #ifdef HAVE_LIBUSB
  201. bool have_libusb;
  202. #endif
  203. static bool opt_submit_stale = true;
  204. static int opt_shares;
  205. static int opt_submit_threads = 0x40;
  206. bool opt_fail_only;
  207. bool opt_autofan;
  208. bool opt_autoengine;
  209. bool opt_noadl;
  210. char *opt_api_allow = NULL;
  211. char *opt_api_groups;
  212. char *opt_api_description = PACKAGE_STRING;
  213. int opt_api_port = 4028;
  214. bool opt_api_listen;
  215. bool opt_api_mcast;
  216. char *opt_api_mcast_addr = API_MCAST_ADDR;
  217. char *opt_api_mcast_code = API_MCAST_CODE;
  218. char *opt_api_mcast_des = "";
  219. int opt_api_mcast_port = 4028;
  220. bool opt_api_network;
  221. bool opt_delaynet;
  222. bool opt_disable_pool;
  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 gwsched_thr_id;
  235. static int watchpool_thr_id;
  236. static int watchdog_thr_id;
  237. #ifdef HAVE_CURSES
  238. static int input_thr_id;
  239. #endif
  240. int gpur_thr_id;
  241. static int api_thr_id;
  242. static int total_control_threads;
  243. pthread_mutex_t hash_lock;
  244. static pthread_mutex_t *stgd_lock;
  245. pthread_mutex_t console_lock;
  246. cglock_t ch_lock;
  247. static pthread_rwlock_t blk_lock;
  248. static pthread_mutex_t sshare_lock;
  249. pthread_rwlock_t netacc_lock;
  250. pthread_rwlock_t mining_thr_lock;
  251. pthread_rwlock_t devices_lock;
  252. static pthread_mutex_t lp_lock;
  253. static pthread_cond_t lp_cond;
  254. pthread_cond_t gws_cond;
  255. bool shutting_down;
  256. double total_rolling;
  257. double total_mhashes_done;
  258. static struct timeval total_tv_start, total_tv_end;
  259. static struct timeval miner_started;
  260. cglock_t control_lock;
  261. pthread_mutex_t stats_lock;
  262. static pthread_mutex_t submitting_lock;
  263. static int total_submitting;
  264. static struct work *submit_waiting;
  265. notifier_t submit_waiting_notifier;
  266. int hw_errors;
  267. int total_accepted, total_rejected;
  268. int total_getworks, total_stale, total_discarded;
  269. uint64_t total_bytes_rcvd, total_bytes_sent;
  270. double total_diff1, total_bad_diff1;
  271. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  272. static int staged_rollable;
  273. unsigned int new_blocks;
  274. unsigned int found_blocks;
  275. unsigned int local_work;
  276. unsigned int total_go, total_ro;
  277. struct pool **pools;
  278. static struct pool *currentpool = NULL;
  279. int total_pools, enabled_pools;
  280. enum pool_strategy pool_strategy = POOL_FAILOVER;
  281. int opt_rotate_period;
  282. static int total_urls, total_users, total_passes;
  283. static
  284. #ifndef HAVE_CURSES
  285. const
  286. #endif
  287. bool curses_active;
  288. #ifdef HAVE_CURSES
  289. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  290. const
  291. #endif
  292. short default_bgcolor = COLOR_BLACK;
  293. static int attr_title = A_BOLD;
  294. #endif
  295. static
  296. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  297. bool use_unicode;
  298. static
  299. bool have_unicode_degrees;
  300. static
  301. wchar_t unicode_micro = 'u';
  302. #else
  303. const bool use_unicode;
  304. static
  305. const bool have_unicode_degrees;
  306. static
  307. const char unicode_micro = 'u';
  308. #endif
  309. #ifdef HAVE_CURSES
  310. #define U8_BAD_START "\xef\x80\x81"
  311. #define U8_BAD_END "\xef\x80\x80"
  312. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  313. bool selecting_device;
  314. unsigned selected_device;
  315. #endif
  316. static char current_block[40];
  317. /* Protected by ch_lock */
  318. static char *current_hash;
  319. static uint32_t current_block_id;
  320. char *current_fullhash;
  321. static char datestamp[40];
  322. static char blocktime[32];
  323. time_t block_time;
  324. static char best_share[8] = "0";
  325. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  326. static char block_diff[8];
  327. static char net_hashrate[10];
  328. uint64_t best_diff = 0;
  329. static bool known_blkheight_current;
  330. static uint32_t known_blkheight;
  331. static uint32_t known_blkheight_blkid;
  332. static uint64_t block_subsidy;
  333. struct block {
  334. char hash[40];
  335. UT_hash_handle hh;
  336. int block_no;
  337. };
  338. static struct block *blocks = NULL;
  339. int swork_id;
  340. /* For creating a hash database of stratum shares submitted that have not had
  341. * a response yet */
  342. struct stratum_share {
  343. UT_hash_handle hh;
  344. bool block;
  345. struct work *work;
  346. int id;
  347. };
  348. static struct stratum_share *stratum_shares = NULL;
  349. char *opt_socks_proxy = NULL;
  350. static const char def_conf[] = "bfgminer.conf";
  351. static bool config_loaded;
  352. static int include_count;
  353. #define JSON_INCLUDE_CONF "include"
  354. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  355. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  356. #define JSON_MAX_DEPTH 10
  357. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  358. char *cmd_idle, *cmd_sick, *cmd_dead;
  359. #if defined(unix) || defined(__APPLE__)
  360. static char *opt_stderr_cmd = NULL;
  361. static int forkpid;
  362. #endif // defined(unix)
  363. #ifdef HAVE_CHROOT
  364. char *chroot_dir;
  365. #endif
  366. #ifdef HAVE_PWD_H
  367. char *opt_setuid;
  368. #endif
  369. struct sigaction termhandler, inthandler;
  370. struct thread_q *getq;
  371. static int total_work;
  372. static bool staged_full;
  373. struct work *staged_work = NULL;
  374. struct schedtime {
  375. bool enable;
  376. struct tm tm;
  377. };
  378. struct schedtime schedstart;
  379. struct schedtime schedstop;
  380. bool sched_paused;
  381. static bool time_before(struct tm *tm1, struct tm *tm2)
  382. {
  383. if (tm1->tm_hour < tm2->tm_hour)
  384. return true;
  385. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  386. return true;
  387. return false;
  388. }
  389. static bool should_run(void)
  390. {
  391. struct tm tm;
  392. time_t tt;
  393. bool within_range;
  394. if (!schedstart.enable && !schedstop.enable)
  395. return true;
  396. tt = time(NULL);
  397. localtime_r(&tt, &tm);
  398. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  399. if (time_before(&schedstop.tm, &schedstart.tm))
  400. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  401. else
  402. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  403. if (within_range && !schedstop.enable)
  404. /* This is a once off event with no stop time set */
  405. schedstart.enable = false;
  406. return within_range;
  407. }
  408. void get_datestamp(char *f, size_t fsiz, time_t tt)
  409. {
  410. struct tm _tm;
  411. struct tm *tm = &_tm;
  412. if (tt == INVALID_TIMESTAMP)
  413. tt = time(NULL);
  414. localtime_r(&tt, tm);
  415. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  416. tm->tm_year + 1900,
  417. tm->tm_mon + 1,
  418. tm->tm_mday,
  419. tm->tm_hour,
  420. tm->tm_min,
  421. tm->tm_sec);
  422. }
  423. static
  424. void get_timestamp(char *f, size_t fsiz, time_t tt)
  425. {
  426. struct tm _tm;
  427. struct tm *tm = &_tm;
  428. localtime_r(&tt, tm);
  429. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  430. tm->tm_hour,
  431. tm->tm_min,
  432. tm->tm_sec);
  433. }
  434. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  435. static char exit_buf[512];
  436. static void applog_and_exit(const char *fmt, ...)
  437. {
  438. va_list ap;
  439. va_start(ap, fmt);
  440. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  441. va_end(ap);
  442. _applog(LOG_ERR, exit_buf);
  443. exit(1);
  444. }
  445. char *devpath_to_devid(const char *devpath)
  446. {
  447. #ifndef WIN32
  448. struct stat my_stat;
  449. if (stat(devpath, &my_stat))
  450. return NULL;
  451. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  452. memcpy(devs, "dev_t:", 6);
  453. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  454. #else
  455. if (!strncmp(devpath, "\\\\.\\", 4))
  456. devpath += 4;
  457. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  458. return NULL;
  459. devpath += 3;
  460. char *p;
  461. strtol(devpath, &p, 10);
  462. if (p[0])
  463. return NULL;
  464. const int sz = (p - devpath);
  465. char *devs = malloc(4 + sz + 1);
  466. sprintf(devs, "com:%s", devpath);
  467. #endif
  468. return devs;
  469. }
  470. static
  471. bool devpaths_match(const char * const ap, const char * const bp)
  472. {
  473. char * const a = devpath_to_devid(ap);
  474. if (!a)
  475. return false;
  476. char * const b = devpath_to_devid(bp);
  477. bool rv = false;
  478. if (b)
  479. {
  480. rv = !strcmp(a, b);
  481. free(b);
  482. }
  483. free(a);
  484. return rv;
  485. }
  486. static
  487. int proc_letter_to_number(const char *s, const char ** const rem)
  488. {
  489. int n = 0, c;
  490. for ( ; s[0]; ++s)
  491. {
  492. if (unlikely(n > INT_MAX / 26))
  493. break;
  494. c = tolower(s[0]) - 'a';
  495. if (unlikely(c < 0 || c > 25))
  496. break;
  497. if (unlikely(INT_MAX - c < n))
  498. break;
  499. n = (n * 26) + c;
  500. }
  501. *rem = s;
  502. return n;
  503. }
  504. static
  505. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  506. {
  507. // all - matches anything
  508. // d0 - matches all processors of device 0
  509. // d0-3 - matches all processors of device 0, 1, 2, or 3
  510. // d0a - matches first processor of device 0
  511. // 0 - matches processor 0
  512. // 0-4 - matches processors 0, 1, 2, 3, or 4
  513. // ___ - matches all processors on all devices using driver/name ___
  514. // ___0 - matches all processors of 0th device using driver/name ___
  515. // ___0a - matches first processor of 0th device using driver/name ___
  516. // @* - matches device with serial or path *
  517. // @*@a - matches first processor of device with serial or path *
  518. // ___@* - matches device with serial or path * using driver/name ___
  519. if (!strcasecmp(pattern, "all"))
  520. return true;
  521. const struct device_drv * const drv = cgpu->drv;
  522. const char *p = pattern, *p2;
  523. size_t L;
  524. int n, i, c = -1;
  525. int n2;
  526. int proc_first = -1, proc_last = -1;
  527. struct cgpu_info *device;
  528. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  529. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  530. // dname or name
  531. p = &pattern[L];
  532. else
  533. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  534. // d#
  535. ++p;
  536. else
  537. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  538. // # or @
  539. {}
  540. else
  541. return false;
  542. L = p - pattern;
  543. while (isspace(p[0]))
  544. ++p;
  545. if (p[0] == '@')
  546. {
  547. // Serial/path
  548. const char * const ser = &p[1];
  549. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  550. {}
  551. p2 = (p[0] == '@') ? &p[1] : p;
  552. const size_t serlen = (p - ser);
  553. p = "";
  554. n = n2 = 0;
  555. const char * const devpath = cgpu->device_path ?: "";
  556. const char * const devser = cgpu->dev_serial ?: "";
  557. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  558. {} // Match
  559. else
  560. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  561. {} // Match
  562. else
  563. {
  564. char devpath2[serlen + 1];
  565. memcpy(devpath2, ser, serlen);
  566. devpath2[serlen] = '\0';
  567. if (!devpaths_match(devpath, ser))
  568. return false;
  569. }
  570. }
  571. else
  572. {
  573. if (isdigit(p[0]))
  574. n = strtol(p, (void*)&p2, 0);
  575. else
  576. {
  577. n = 0;
  578. p2 = p;
  579. }
  580. if (p2[0] == '-')
  581. {
  582. ++p2;
  583. if (p2[0] && isdigit(p2[0]))
  584. n2 = strtol(p2, (void*)&p2, 0);
  585. else
  586. n2 = INT_MAX;
  587. }
  588. else
  589. n2 = n;
  590. if (p == pattern)
  591. {
  592. if (!p[0])
  593. return true;
  594. if (p2 && p2[0])
  595. goto invsyntax;
  596. for (i = n; i <= n2; ++i)
  597. {
  598. if (i >= total_devices)
  599. break;
  600. if (cgpu == devices[i])
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. if (p2[0])
  607. {
  608. proc_first = proc_letter_to_number(&p2[0], &p2);
  609. if (p2[0] == '-')
  610. {
  611. ++p2;
  612. if (p2[0])
  613. proc_last = proc_letter_to_number(p2, &p2);
  614. else
  615. proc_last = INT_MAX;
  616. }
  617. else
  618. proc_last = proc_first;
  619. if (p2[0])
  620. goto invsyntax;
  621. }
  622. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  623. {
  624. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  625. (!L) ||
  626. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  627. {} // Matched name or dname
  628. else
  629. return false;
  630. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  631. return false;
  632. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  633. return false;
  634. return true;
  635. }
  636. // d#
  637. c = -1;
  638. for (i = 0; ; ++i)
  639. {
  640. if (i == total_devices)
  641. return false;
  642. if (devices[i]->device != devices[i])
  643. continue;
  644. ++c;
  645. if (c < n)
  646. continue;
  647. if (c > n2)
  648. break;
  649. for (device = devices[i]; device; device = device->next_proc)
  650. {
  651. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  652. continue;
  653. if (device == cgpu)
  654. return true;
  655. }
  656. }
  657. return false;
  658. invsyntax:
  659. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  660. return false;
  661. }
  662. #define TEST_CGPU_MATCH(pattern) \
  663. if (!cgpu_match(pattern, &cgpu)) \
  664. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  665. // END TEST_CGPU_MATCH
  666. #define TEST_CGPU_NOMATCH(pattern) \
  667. if (cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. static __maybe_unused
  671. void test_cgpu_match()
  672. {
  673. struct device_drv drv = {
  674. .dname = "test",
  675. .name = "TST",
  676. };
  677. struct cgpu_info cgpu = {
  678. .drv = &drv,
  679. .device = &cgpu,
  680. .device_id = 1,
  681. .proc_id = 1,
  682. .proc_repr = "TST 1b",
  683. }, cgpu0a = {
  684. .drv = &drv,
  685. .device = &cgpu0a,
  686. .device_id = 0,
  687. .proc_id = 0,
  688. .proc_repr = "TST 0a",
  689. }, cgpu1a = {
  690. .drv = &drv,
  691. .device = &cgpu0a,
  692. .device_id = 1,
  693. .proc_id = 0,
  694. .proc_repr = "TST 1a",
  695. };
  696. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  697. devices = devices_list;
  698. total_devices = 3;
  699. TEST_CGPU_MATCH("all")
  700. TEST_CGPU_MATCH("d1")
  701. TEST_CGPU_NOMATCH("d2")
  702. TEST_CGPU_MATCH("d0-5")
  703. TEST_CGPU_NOMATCH("d0-0")
  704. TEST_CGPU_NOMATCH("d2-5")
  705. TEST_CGPU_MATCH("d-1")
  706. TEST_CGPU_MATCH("d1-")
  707. TEST_CGPU_NOMATCH("d-0")
  708. TEST_CGPU_NOMATCH("d2-")
  709. TEST_CGPU_MATCH("2")
  710. TEST_CGPU_NOMATCH("3")
  711. TEST_CGPU_MATCH("1-2")
  712. TEST_CGPU_MATCH("2-3")
  713. TEST_CGPU_NOMATCH("1-1")
  714. TEST_CGPU_NOMATCH("3-4")
  715. TEST_CGPU_MATCH("TST")
  716. TEST_CGPU_MATCH("test")
  717. TEST_CGPU_MATCH("tst")
  718. TEST_CGPU_MATCH("TEST")
  719. TEST_CGPU_NOMATCH("TSF")
  720. TEST_CGPU_NOMATCH("TS")
  721. TEST_CGPU_NOMATCH("TSTF")
  722. TEST_CGPU_MATCH("TST1")
  723. TEST_CGPU_MATCH("test1")
  724. TEST_CGPU_MATCH("TST0-1")
  725. TEST_CGPU_MATCH("TST 1")
  726. TEST_CGPU_MATCH("TST 1-2")
  727. TEST_CGPU_MATCH("TEST 1-2")
  728. TEST_CGPU_NOMATCH("TST2")
  729. TEST_CGPU_NOMATCH("TST2-3")
  730. TEST_CGPU_NOMATCH("TST0-0")
  731. TEST_CGPU_MATCH("TST1b")
  732. TEST_CGPU_MATCH("tst1b")
  733. TEST_CGPU_NOMATCH("TST1c")
  734. TEST_CGPU_NOMATCH("TST1bb")
  735. TEST_CGPU_MATCH("TST0-1b")
  736. TEST_CGPU_NOMATCH("TST0-1c")
  737. TEST_CGPU_MATCH("TST1a-d")
  738. TEST_CGPU_NOMATCH("TST1a-a")
  739. TEST_CGPU_NOMATCH("TST1-a")
  740. TEST_CGPU_NOMATCH("TST1c-z")
  741. TEST_CGPU_NOMATCH("TST1c-")
  742. TEST_CGPU_MATCH("@")
  743. TEST_CGPU_NOMATCH("@abc")
  744. TEST_CGPU_MATCH("@@b")
  745. TEST_CGPU_NOMATCH("@@c")
  746. TEST_CGPU_MATCH("TST@")
  747. TEST_CGPU_NOMATCH("TST@abc")
  748. TEST_CGPU_MATCH("TST@@b")
  749. TEST_CGPU_NOMATCH("TST@@c")
  750. TEST_CGPU_MATCH("TST@@b-f")
  751. TEST_CGPU_NOMATCH("TST@@c-f")
  752. TEST_CGPU_NOMATCH("TST@@-a")
  753. cgpu.device_path = "/dev/test";
  754. cgpu.dev_serial = "testy";
  755. TEST_CGPU_MATCH("TST@/dev/test")
  756. TEST_CGPU_MATCH("TST@testy")
  757. TEST_CGPU_NOMATCH("TST@")
  758. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  759. TEST_CGPU_NOMATCH("TST@testy3@b")
  760. TEST_CGPU_MATCH("TST@/dev/test@b")
  761. TEST_CGPU_MATCH("TST@testy@b")
  762. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  763. TEST_CGPU_NOMATCH("TST@testy@c")
  764. cgpu.device_path = "usb:000:999";
  765. TEST_CGPU_MATCH("TST@usb:000:999")
  766. drv.dname = "test7";
  767. TEST_CGPU_MATCH("test7")
  768. TEST_CGPU_MATCH("TEST7")
  769. TEST_CGPU_NOMATCH("test&")
  770. TEST_CGPU_MATCH("test7 1-2")
  771. TEST_CGPU_MATCH("test7@testy@b")
  772. }
  773. static
  774. int cgpu_search(const char * const pattern, const int first)
  775. {
  776. int i;
  777. struct cgpu_info *cgpu;
  778. #define CHECK_CGPU_SEARCH do{ \
  779. cgpu = get_devices(i); \
  780. if (cgpu_match(pattern, cgpu)) \
  781. return i; \
  782. }while(0)
  783. for (i = first; i < total_devices; ++i)
  784. CHECK_CGPU_SEARCH;
  785. for (i = 0; i < first; ++i)
  786. CHECK_CGPU_SEARCH;
  787. #undef CHECK_CGPU_SEARCH
  788. return -1;
  789. }
  790. static pthread_mutex_t sharelog_lock;
  791. static FILE *sharelog_file = NULL;
  792. struct thr_info *get_thread(int thr_id)
  793. {
  794. struct thr_info *thr;
  795. rd_lock(&mining_thr_lock);
  796. thr = mining_thr[thr_id];
  797. rd_unlock(&mining_thr_lock);
  798. return thr;
  799. }
  800. static struct cgpu_info *get_thr_cgpu(int thr_id)
  801. {
  802. struct thr_info *thr = get_thread(thr_id);
  803. return thr->cgpu;
  804. }
  805. struct cgpu_info *get_devices(int id)
  806. {
  807. struct cgpu_info *cgpu;
  808. rd_lock(&devices_lock);
  809. cgpu = devices[id];
  810. rd_unlock(&devices_lock);
  811. return cgpu;
  812. }
  813. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  814. static FILE *noncelog_file = NULL;
  815. static
  816. void noncelog(const struct work * const work)
  817. {
  818. const int thr_id = work->thr_id;
  819. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  820. char buf[0x200], hash[65], data[161], midstate[65];
  821. int rv;
  822. size_t ret;
  823. bin2hex(hash, work->hash, 32);
  824. bin2hex(data, work->data, 80);
  825. bin2hex(midstate, work->midstate, 32);
  826. // timestamp,proc,hash,data,midstate
  827. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  828. (unsigned long)time(NULL), proc->proc_repr_ns,
  829. hash, data, midstate);
  830. if (unlikely(rv < 1))
  831. {
  832. applog(LOG_ERR, "noncelog printf error");
  833. return;
  834. }
  835. mutex_lock(&noncelog_lock);
  836. ret = fwrite(buf, rv, 1, noncelog_file);
  837. fflush(noncelog_file);
  838. mutex_unlock(&noncelog_lock);
  839. if (ret != 1)
  840. applog(LOG_ERR, "noncelog fwrite error");
  841. }
  842. static void sharelog(const char*disposition, const struct work*work)
  843. {
  844. char target[(sizeof(work->target) * 2) + 1];
  845. char hash[(sizeof(work->hash) * 2) + 1];
  846. char data[(sizeof(work->data) * 2) + 1];
  847. struct cgpu_info *cgpu;
  848. unsigned long int t;
  849. struct pool *pool;
  850. int thr_id, rv;
  851. char s[1024];
  852. size_t ret;
  853. if (!sharelog_file)
  854. return;
  855. thr_id = work->thr_id;
  856. cgpu = get_thr_cgpu(thr_id);
  857. pool = work->pool;
  858. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  859. bin2hex(target, work->target, sizeof(work->target));
  860. bin2hex(hash, work->hash, sizeof(work->hash));
  861. bin2hex(data, work->data, sizeof(work->data));
  862. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  863. 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);
  864. if (rv >= (int)(sizeof(s)))
  865. s[sizeof(s) - 1] = '\0';
  866. else if (rv < 0) {
  867. applog(LOG_ERR, "sharelog printf error");
  868. return;
  869. }
  870. mutex_lock(&sharelog_lock);
  871. ret = fwrite(s, rv, 1, sharelog_file);
  872. fflush(sharelog_file);
  873. mutex_unlock(&sharelog_lock);
  874. if (ret != 1)
  875. applog(LOG_ERR, "sharelog fwrite error");
  876. }
  877. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  878. /* Adjust all the pools' quota to the greatest common denominator after a pool
  879. * has been added or the quotas changed. */
  880. void adjust_quota_gcd(void)
  881. {
  882. unsigned long gcd, lowest_quota = ~0UL, quota;
  883. struct pool *pool;
  884. int i;
  885. for (i = 0; i < total_pools; i++) {
  886. pool = pools[i];
  887. quota = pool->quota;
  888. if (!quota)
  889. continue;
  890. if (quota < lowest_quota)
  891. lowest_quota = quota;
  892. }
  893. if (likely(lowest_quota < ~0UL)) {
  894. gcd = lowest_quota;
  895. for (i = 0; i < total_pools; i++) {
  896. pool = pools[i];
  897. quota = pool->quota;
  898. if (!quota)
  899. continue;
  900. while (quota % gcd)
  901. gcd--;
  902. }
  903. } else
  904. gcd = 1;
  905. for (i = 0; i < total_pools; i++) {
  906. pool = pools[i];
  907. pool->quota_used *= global_quota_gcd;
  908. pool->quota_used /= gcd;
  909. pool->quota_gcd = pool->quota / gcd;
  910. }
  911. global_quota_gcd = gcd;
  912. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  913. }
  914. /* Return value is ignored if not called from add_pool_details */
  915. struct pool *add_pool(void)
  916. {
  917. struct pool *pool;
  918. pool = calloc(sizeof(struct pool), 1);
  919. if (!pool)
  920. quit(1, "Failed to malloc pool in add_pool");
  921. pool->pool_no = pool->prio = total_pools;
  922. mutex_init(&pool->last_work_lock);
  923. mutex_init(&pool->pool_lock);
  924. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  925. quit(1, "Failed to pthread_cond_init in add_pool");
  926. cglock_init(&pool->data_lock);
  927. mutex_init(&pool->stratum_lock);
  928. timer_unset(&pool->swork.tv_transparency);
  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. adjust_quota_gcd();
  935. pool->sock = INVSOCK;
  936. pool->lp_socket = CURL_SOCKET_BAD;
  937. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  938. pools[total_pools++] = pool;
  939. return pool;
  940. }
  941. /* Pool variant of test and set */
  942. static bool pool_tset(struct pool *pool, bool *var)
  943. {
  944. bool ret;
  945. mutex_lock(&pool->pool_lock);
  946. ret = *var;
  947. *var = true;
  948. mutex_unlock(&pool->pool_lock);
  949. return ret;
  950. }
  951. bool pool_tclear(struct pool *pool, bool *var)
  952. {
  953. bool ret;
  954. mutex_lock(&pool->pool_lock);
  955. ret = *var;
  956. *var = false;
  957. mutex_unlock(&pool->pool_lock);
  958. return ret;
  959. }
  960. struct pool *current_pool(void)
  961. {
  962. struct pool *pool;
  963. cg_rlock(&control_lock);
  964. pool = currentpool;
  965. cg_runlock(&control_lock);
  966. return pool;
  967. }
  968. char *set_int_range(const char *arg, int *i, int min, int max)
  969. {
  970. char *err = opt_set_intval(arg, i);
  971. if (err)
  972. return err;
  973. if (*i < min || *i > max)
  974. return "Value out of range";
  975. return NULL;
  976. }
  977. static char *set_int_0_to_9999(const char *arg, int *i)
  978. {
  979. return set_int_range(arg, i, 0, 9999);
  980. }
  981. static char *set_int_1_to_65535(const char *arg, int *i)
  982. {
  983. return set_int_range(arg, i, 1, 65535);
  984. }
  985. static char *set_int_0_to_10(const char *arg, int *i)
  986. {
  987. return set_int_range(arg, i, 0, 10);
  988. }
  989. static char *set_int_1_to_10(const char *arg, int *i)
  990. {
  991. return set_int_range(arg, i, 1, 10);
  992. }
  993. char *set_strdup(const char *arg, char **p)
  994. {
  995. *p = strdup((char *)arg);
  996. return NULL;
  997. }
  998. #if BLKMAKER_VERSION > 1
  999. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1000. {
  1001. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1002. if (!scriptsz)
  1003. return "Invalid address";
  1004. char *script = malloc(scriptsz);
  1005. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1006. free(script);
  1007. return "Failed to convert address to script";
  1008. }
  1009. p->data = script;
  1010. p->sz = scriptsz;
  1011. return NULL;
  1012. }
  1013. #endif
  1014. static
  1015. char *set_quit_summary(const char * const arg)
  1016. {
  1017. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1018. opt_quit_summary = BQS_NONE;
  1019. else
  1020. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1021. opt_quit_summary = BQS_DEVS;
  1022. else
  1023. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1024. opt_quit_summary = BQS_PROCS;
  1025. else
  1026. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1027. opt_quit_summary = BQS_DETAILED;
  1028. else
  1029. return "Quit summary must be one of none/devs/procs/detailed";
  1030. return NULL;
  1031. }
  1032. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1033. char *set_request_diff(const char *arg, float *p)
  1034. {
  1035. unsigned char target[32];
  1036. char *e = opt_set_floatval(arg, p);
  1037. if (e)
  1038. return e;
  1039. request_bdiff = (double)*p * 0.9999847412109375;
  1040. bdiff_target_leadzero(target, request_bdiff);
  1041. request_target_str = malloc(65);
  1042. bin2hex(request_target_str, target, 32);
  1043. return NULL;
  1044. }
  1045. #ifdef NEED_BFG_LOWL_VCOM
  1046. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1047. #ifdef WIN32
  1048. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1049. {
  1050. char dev[PATH_MAX];
  1051. char *devp = dev;
  1052. size_t bufLen = 0x100;
  1053. tryagain: ;
  1054. char buf[bufLen];
  1055. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1056. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1057. bufLen *= 2;
  1058. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1059. goto tryagain;
  1060. }
  1061. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1062. }
  1063. size_t tLen;
  1064. memcpy(devp, "\\\\.\\", 4);
  1065. devp = &devp[4];
  1066. for (char *t = buf; *t; t += tLen) {
  1067. tLen = strlen(t) + 1;
  1068. if (strncmp("COM", t, 3))
  1069. continue;
  1070. memcpy(devp, t, tLen);
  1071. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1072. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1073. }
  1074. }
  1075. #else
  1076. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1077. {
  1078. char dev[PATH_MAX];
  1079. char *devp = dev;
  1080. DIR *D;
  1081. struct dirent *de;
  1082. const char devdir[] = "/dev";
  1083. const size_t devdirlen = sizeof(devdir) - 1;
  1084. char *devpath = devp;
  1085. char *devfile = devpath + devdirlen + 1;
  1086. D = opendir(devdir);
  1087. if (!D)
  1088. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1089. memcpy(devpath, devdir, devdirlen);
  1090. devpath[devdirlen] = '/';
  1091. while ( (de = readdir(D)) ) {
  1092. if (!strncmp(de->d_name, "cu.", 3)
  1093. //don't probe Bluetooth devices - causes bus errors and segfaults
  1094. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1095. goto trydev;
  1096. if (strncmp(de->d_name, "tty", 3))
  1097. continue;
  1098. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1099. continue;
  1100. trydev:
  1101. strcpy(devfile, de->d_name);
  1102. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1103. }
  1104. closedir(D);
  1105. }
  1106. #endif
  1107. #endif
  1108. static char *add_serial(const char *arg)
  1109. {
  1110. string_elist_add(arg, &scan_devices);
  1111. return NULL;
  1112. }
  1113. static
  1114. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1115. {
  1116. string_elist_add(arg, elist);
  1117. return NULL;
  1118. }
  1119. bool get_intrange(const char *arg, int *val1, int *val2)
  1120. {
  1121. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1122. char *p, *p2;
  1123. *val1 = strtol(arg, &p, 0);
  1124. if (arg == p)
  1125. // Zero-length ending number, invalid
  1126. return false;
  1127. while (true)
  1128. {
  1129. if (!p[0])
  1130. {
  1131. *val2 = *val1;
  1132. return true;
  1133. }
  1134. if (p[0] == '-')
  1135. break;
  1136. if (!isspace(p[0]))
  1137. // Garbage, invalid
  1138. return false;
  1139. ++p;
  1140. }
  1141. p2 = &p[1];
  1142. *val2 = strtol(p2, &p, 0);
  1143. if (p2 == p)
  1144. // Zero-length ending number, invalid
  1145. return false;
  1146. while (true)
  1147. {
  1148. if (!p[0])
  1149. return true;
  1150. if (!isspace(p[0]))
  1151. // Garbage, invalid
  1152. return false;
  1153. ++p;
  1154. }
  1155. }
  1156. static
  1157. void _test_intrange(const char *s, const int v[2])
  1158. {
  1159. int a[2];
  1160. if (!get_intrange(s, &a[0], &a[1]))
  1161. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1162. for (int i = 0; i < 2; ++i)
  1163. if (unlikely(a[i] != v[i]))
  1164. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1165. }
  1166. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1167. static
  1168. void _test_intrange_fail(const char *s)
  1169. {
  1170. int a[2];
  1171. if (get_intrange(s, &a[0], &a[1]))
  1172. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1173. }
  1174. static
  1175. void test_intrange()
  1176. {
  1177. _test_intrange("-1--2", -1, -2);
  1178. _test_intrange("-1-2", -1, 2);
  1179. _test_intrange("1--2", 1, -2);
  1180. _test_intrange("1-2", 1, 2);
  1181. _test_intrange("111-222", 111, 222);
  1182. _test_intrange(" 11 - 22 ", 11, 22);
  1183. _test_intrange("+11-+22", 11, 22);
  1184. _test_intrange("-1", -1, -1);
  1185. _test_intrange_fail("all");
  1186. _test_intrange_fail("1-");
  1187. _test_intrange_fail("");
  1188. _test_intrange_fail("1-54x");
  1189. }
  1190. static char *set_devices(char *arg)
  1191. {
  1192. if (*arg) {
  1193. if (*arg == '?') {
  1194. opt_display_devs = true;
  1195. return NULL;
  1196. }
  1197. } else
  1198. return "Invalid device parameters";
  1199. string_elist_add(arg, &opt_devices_enabled_list);
  1200. return NULL;
  1201. }
  1202. static char *set_balance(enum pool_strategy *strategy)
  1203. {
  1204. *strategy = POOL_BALANCE;
  1205. return NULL;
  1206. }
  1207. static char *set_loadbalance(enum pool_strategy *strategy)
  1208. {
  1209. *strategy = POOL_LOADBALANCE;
  1210. return NULL;
  1211. }
  1212. static char *set_rotate(const char *arg, int *i)
  1213. {
  1214. pool_strategy = POOL_ROTATE;
  1215. return set_int_range(arg, i, 0, 9999);
  1216. }
  1217. static char *set_rr(enum pool_strategy *strategy)
  1218. {
  1219. *strategy = POOL_ROUNDROBIN;
  1220. return NULL;
  1221. }
  1222. /* Detect that url is for a stratum protocol either via the presence of
  1223. * stratum+tcp or by detecting a stratum server response */
  1224. bool detect_stratum(struct pool *pool, char *url)
  1225. {
  1226. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1227. return false;
  1228. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1229. pool->rpc_url = strdup(url);
  1230. pool->has_stratum = true;
  1231. pool->stratum_url = pool->sockaddr_url;
  1232. return true;
  1233. }
  1234. return false;
  1235. }
  1236. static struct pool *add_url(void)
  1237. {
  1238. total_urls++;
  1239. if (total_urls > total_pools)
  1240. add_pool();
  1241. return pools[total_urls - 1];
  1242. }
  1243. static void setup_url(struct pool *pool, char *arg)
  1244. {
  1245. if (detect_stratum(pool, arg))
  1246. return;
  1247. opt_set_charp(arg, &pool->rpc_url);
  1248. if (strncmp(arg, "http://", 7) &&
  1249. strncmp(arg, "https://", 8)) {
  1250. const size_t L = strlen(arg);
  1251. char *httpinput;
  1252. httpinput = malloc(8 + L);
  1253. if (!httpinput)
  1254. quit(1, "Failed to malloc httpinput");
  1255. sprintf(httpinput, "http://%s", arg);
  1256. pool->rpc_url = httpinput;
  1257. }
  1258. }
  1259. static char *set_url(char *arg)
  1260. {
  1261. struct pool *pool = add_url();
  1262. setup_url(pool, arg);
  1263. return NULL;
  1264. }
  1265. static char *set_quota(char *arg)
  1266. {
  1267. char *semicolon = strchr(arg, ';'), *url;
  1268. int len, qlen, quota;
  1269. struct pool *pool;
  1270. if (!semicolon)
  1271. return "No semicolon separated quota;URL pair found";
  1272. len = strlen(arg);
  1273. *semicolon = '\0';
  1274. qlen = strlen(arg);
  1275. if (!qlen)
  1276. return "No parameter for quota found";
  1277. len -= qlen + 1;
  1278. if (len < 1)
  1279. return "No parameter for URL found";
  1280. quota = atoi(arg);
  1281. if (quota < 0)
  1282. return "Invalid negative parameter for quota set";
  1283. url = arg + qlen + 1;
  1284. pool = add_url();
  1285. setup_url(pool, url);
  1286. pool->quota = quota;
  1287. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1288. adjust_quota_gcd();
  1289. return NULL;
  1290. }
  1291. static char *set_user(const char *arg)
  1292. {
  1293. struct pool *pool;
  1294. total_users++;
  1295. if (total_users > total_pools)
  1296. add_pool();
  1297. pool = pools[total_users - 1];
  1298. opt_set_charp(arg, &pool->rpc_user);
  1299. return NULL;
  1300. }
  1301. static char *set_pass(const char *arg)
  1302. {
  1303. struct pool *pool;
  1304. total_passes++;
  1305. if (total_passes > total_pools)
  1306. add_pool();
  1307. pool = pools[total_passes - 1];
  1308. opt_set_charp(arg, &pool->rpc_pass);
  1309. return NULL;
  1310. }
  1311. static char *set_userpass(const char *arg)
  1312. {
  1313. struct pool *pool;
  1314. char *updup;
  1315. if (total_users != total_passes)
  1316. return "User + pass options must be balanced before userpass";
  1317. ++total_users;
  1318. ++total_passes;
  1319. if (total_users > total_pools)
  1320. add_pool();
  1321. pool = pools[total_users - 1];
  1322. updup = strdup(arg);
  1323. opt_set_charp(arg, &pool->rpc_userpass);
  1324. pool->rpc_user = strtok(updup, ":");
  1325. if (!pool->rpc_user)
  1326. return "Failed to find : delimited user info";
  1327. pool->rpc_pass = strtok(NULL, ":");
  1328. if (!pool->rpc_pass)
  1329. pool->rpc_pass = "";
  1330. return NULL;
  1331. }
  1332. static char *set_pool_priority(const char *arg)
  1333. {
  1334. struct pool *pool;
  1335. if (!total_pools)
  1336. return "Usage of --pool-priority before pools are defined does not make sense";
  1337. pool = pools[total_pools - 1];
  1338. opt_set_intval(arg, &pool->prio);
  1339. return NULL;
  1340. }
  1341. static char *set_pool_proxy(const char *arg)
  1342. {
  1343. struct pool *pool;
  1344. if (!total_pools)
  1345. return "Usage of --pool-proxy before pools are defined does not make sense";
  1346. if (!our_curl_supports_proxy_uris())
  1347. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1348. pool = pools[total_pools - 1];
  1349. opt_set_charp(arg, &pool->rpc_proxy);
  1350. return NULL;
  1351. }
  1352. static char *set_pool_force_rollntime(const char *arg)
  1353. {
  1354. struct pool *pool;
  1355. if (!total_pools)
  1356. return "Usage of --force-rollntime before pools are defined does not make sense";
  1357. pool = pools[total_pools - 1];
  1358. opt_set_intval(arg, &pool->force_rollntime);
  1359. return NULL;
  1360. }
  1361. static char *enable_debug(bool *flag)
  1362. {
  1363. *flag = true;
  1364. opt_debug_console = true;
  1365. /* Turn on verbose output, too. */
  1366. opt_log_output = true;
  1367. return NULL;
  1368. }
  1369. static char *set_schedtime(const char *arg, struct schedtime *st)
  1370. {
  1371. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1372. {
  1373. if (strcasecmp(arg, "now"))
  1374. return "Invalid time set, should be HH:MM";
  1375. } else
  1376. schedstop.tm.tm_sec = 0;
  1377. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1378. return "Invalid time set.";
  1379. st->enable = true;
  1380. return NULL;
  1381. }
  1382. static
  1383. char *set_log_file(char *arg)
  1384. {
  1385. char *r = "";
  1386. long int i = strtol(arg, &r, 10);
  1387. int fd, stderr_fd = fileno(stderr);
  1388. if ((!*r) && i >= 0 && i <= INT_MAX)
  1389. fd = i;
  1390. else
  1391. if (!strcmp(arg, "-"))
  1392. {
  1393. fd = fileno(stdout);
  1394. if (unlikely(fd == -1))
  1395. return "Standard output missing for log-file";
  1396. }
  1397. else
  1398. {
  1399. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1400. if (unlikely(fd == -1))
  1401. return "Failed to open log-file";
  1402. }
  1403. close(stderr_fd);
  1404. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1405. return "Failed to dup2 for log-file";
  1406. close(fd);
  1407. return NULL;
  1408. }
  1409. static
  1410. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1411. {
  1412. char *r = "";
  1413. long int i = strtol(arg, &r, 10);
  1414. static char *err = NULL;
  1415. const size_t errbufsz = 0x100;
  1416. free(err);
  1417. err = NULL;
  1418. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1419. *F = fdopen((int)i, mode);
  1420. if (!*F)
  1421. {
  1422. err = malloc(errbufsz);
  1423. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1424. (int)i, purpose);
  1425. return err;
  1426. }
  1427. } else if (!strcmp(arg, "-")) {
  1428. *F = (mode[0] == 'a') ? stdout : stdin;
  1429. if (!*F)
  1430. {
  1431. err = malloc(errbufsz);
  1432. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1433. (mode[0] == 'a') ? "out" : "in", purpose);
  1434. return err;
  1435. }
  1436. } else {
  1437. *F = fopen(arg, mode);
  1438. if (!*F)
  1439. {
  1440. err = malloc(errbufsz);
  1441. snprintf(err, errbufsz, "Failed to open %s for %s",
  1442. arg, purpose);
  1443. return err;
  1444. }
  1445. }
  1446. return NULL;
  1447. }
  1448. static char *set_noncelog(char *arg)
  1449. {
  1450. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1451. }
  1452. static char *set_sharelog(char *arg)
  1453. {
  1454. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1455. }
  1456. char *set_temp_cutoff(char *arg)
  1457. {
  1458. if (strchr(arg, ','))
  1459. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1460. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1461. char buf[0x100];
  1462. snprintf(buf, sizeof(buf), "all:temp-cutoff=%s", arg);
  1463. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1464. string_elist_add(buf, &opt_set_device_list);
  1465. return NULL;
  1466. }
  1467. char *set_temp_target(char *arg)
  1468. {
  1469. if (strchr(arg, ','))
  1470. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1471. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1472. char buf[0x100];
  1473. snprintf(buf, sizeof(buf), "all:temp-target=%s", arg);
  1474. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1475. string_elist_add(buf, &opt_set_device_list);
  1476. return NULL;
  1477. }
  1478. static char *set_api_allow(const char *arg)
  1479. {
  1480. opt_set_charp(arg, &opt_api_allow);
  1481. return NULL;
  1482. }
  1483. static char *set_api_groups(const char *arg)
  1484. {
  1485. opt_set_charp(arg, &opt_api_groups);
  1486. return NULL;
  1487. }
  1488. static char *set_api_description(const char *arg)
  1489. {
  1490. opt_set_charp(arg, &opt_api_description);
  1491. return NULL;
  1492. }
  1493. static char *set_api_mcast_des(const char *arg)
  1494. {
  1495. opt_set_charp(arg, &opt_api_mcast_des);
  1496. return NULL;
  1497. }
  1498. #ifdef USE_ICARUS
  1499. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1500. static char *set_icarus_options(const char *arg)
  1501. {
  1502. if (strchr(arg, ','))
  1503. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1504. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1505. char *opts = strdup(arg), *argdup;
  1506. argdup = opts;
  1507. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1508. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1509. char buf[0x100], *saveptr, *opt;
  1510. for (int i = 0; i < 4; ++i, ++sdf)
  1511. {
  1512. opt = strtok_r(opts, ":", &saveptr);
  1513. opts = NULL;
  1514. if (!opt)
  1515. break;
  1516. if (!opt[0])
  1517. continue;
  1518. for (int j = 0; j < 4; ++j)
  1519. {
  1520. snprintf(buf, sizeof(buf), "%s:%s=%s", drivers[j], sdf->optname, opt);
  1521. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1522. string_elist_add(buf, &opt_set_device_list);
  1523. }
  1524. }
  1525. free(argdup);
  1526. return NULL;
  1527. }
  1528. static char *set_icarus_timing(const char *arg)
  1529. {
  1530. if (strchr(arg, ','))
  1531. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1532. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1533. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1534. char buf[0x100];
  1535. for (int j = 0; j < 4; ++j)
  1536. {
  1537. snprintf(buf, sizeof(buf), "%s:timing=%s", drivers[j], arg);
  1538. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1539. string_elist_add(buf, &opt_set_device_list);
  1540. }
  1541. return NULL;
  1542. }
  1543. #endif
  1544. #ifdef USE_AVALON
  1545. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1546. static char *set_avalon_options(const char *arg)
  1547. {
  1548. if (strchr(arg, ','))
  1549. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1550. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1551. char *opts = strdup(arg), *argdup;
  1552. argdup = opts;
  1553. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1554. char buf[0x100], *saveptr, *opt;
  1555. for (int i = 0; i < 5; ++i, ++sdf)
  1556. {
  1557. opt = strtok_r(opts, ":", &saveptr);
  1558. opts = NULL;
  1559. if (!opt)
  1560. break;
  1561. if (!opt[0])
  1562. continue;
  1563. snprintf(buf, sizeof(buf), "avalon:%s=%s", sdf->optname, opt);
  1564. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1565. string_elist_add(buf, &opt_set_device_list);
  1566. }
  1567. free(argdup);
  1568. return NULL;
  1569. }
  1570. #endif
  1571. #ifdef USE_KLONDIKE
  1572. static char *set_klondike_options(const char *arg)
  1573. {
  1574. char buf[0x100];
  1575. int hashclock;
  1576. double temptarget;
  1577. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1578. {
  1579. default:
  1580. return "Unrecognised --klondike-options";
  1581. case 2:
  1582. snprintf(buf, sizeof(buf), "klondike:temp-target=%lf", temptarget);
  1583. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1584. string_elist_add(buf, &opt_set_device_list);
  1585. // fallthru
  1586. case 1:
  1587. snprintf(buf, sizeof(buf), "klondike:clock=%d", hashclock);
  1588. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1589. string_elist_add(buf, &opt_set_device_list);
  1590. }
  1591. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1592. return NULL;
  1593. }
  1594. #endif
  1595. __maybe_unused
  1596. static char *set_null(const char __maybe_unused *arg)
  1597. {
  1598. return NULL;
  1599. }
  1600. /* These options are available from config file or commandline */
  1601. static struct opt_table opt_config_table[] = {
  1602. #ifdef WANT_CPUMINE
  1603. OPT_WITH_ARG("--algo|-a",
  1604. set_algo, show_algo, &opt_algo,
  1605. "Specify sha256 implementation for CPU mining:\n"
  1606. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1607. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1608. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1609. #ifdef WANT_SSE2_4WAY
  1610. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1611. #endif
  1612. #ifdef WANT_VIA_PADLOCK
  1613. "\n\tvia\t\tVIA padlock implementation"
  1614. #endif
  1615. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1616. #ifdef WANT_CRYPTOPP_ASM32
  1617. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1618. #endif
  1619. #ifdef WANT_X8632_SSE2
  1620. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1621. #endif
  1622. #ifdef WANT_X8664_SSE2
  1623. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1624. #endif
  1625. #ifdef WANT_X8664_SSE4
  1626. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1627. #endif
  1628. #ifdef WANT_ALTIVEC_4WAY
  1629. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1630. #endif
  1631. ),
  1632. #endif
  1633. OPT_WITH_ARG("--api-allow",
  1634. set_api_allow, NULL, NULL,
  1635. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1636. OPT_WITH_ARG("--api-description",
  1637. set_api_description, NULL, NULL,
  1638. "Description placed in the API status header, default: BFGMiner version"),
  1639. OPT_WITH_ARG("--api-groups",
  1640. set_api_groups, NULL, NULL,
  1641. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1642. OPT_WITHOUT_ARG("--api-listen",
  1643. opt_set_bool, &opt_api_listen,
  1644. "Enable API, default: disabled"),
  1645. OPT_WITHOUT_ARG("--api-mcast",
  1646. opt_set_bool, &opt_api_mcast,
  1647. "Enable API Multicast listener, default: disabled"),
  1648. OPT_WITH_ARG("--api-mcast-addr",
  1649. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1650. "API Multicast listen address"),
  1651. OPT_WITH_ARG("--api-mcast-code",
  1652. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1653. "Code expected in the API Multicast message, don't use '-'"),
  1654. OPT_WITH_ARG("--api-mcast-des",
  1655. set_api_mcast_des, NULL, NULL,
  1656. "Description appended to the API Multicast reply, default: ''"),
  1657. OPT_WITH_ARG("--api-mcast-port",
  1658. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1659. "API Multicast listen port"),
  1660. OPT_WITHOUT_ARG("--api-network",
  1661. opt_set_bool, &opt_api_network,
  1662. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1663. OPT_WITH_ARG("--api-port",
  1664. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1665. "Port number of miner API"),
  1666. #ifdef HAVE_ADL
  1667. OPT_WITHOUT_ARG("--auto-fan",
  1668. opt_set_bool, &opt_autofan,
  1669. "Automatically adjust all GPU fan speeds to maintain a target temperature"),
  1670. OPT_WITHOUT_ARG("--auto-gpu",
  1671. opt_set_bool, &opt_autoengine,
  1672. "Automatically adjust all GPU engine clock speeds to maintain a target temperature"),
  1673. #endif
  1674. OPT_WITHOUT_ARG("--balance",
  1675. set_balance, &pool_strategy,
  1676. "Change multipool strategy from failover to even share balance"),
  1677. OPT_WITHOUT_ARG("--benchmark",
  1678. opt_set_bool, &opt_benchmark,
  1679. "Run BFGMiner in benchmark mode - produces no shares"),
  1680. #if defined(USE_BITFORCE)
  1681. OPT_WITHOUT_ARG("--bfl-range",
  1682. opt_set_bool, &opt_bfl_noncerange,
  1683. "Use nonce range on bitforce devices if supported"),
  1684. #endif
  1685. #ifdef WANT_CPUMINE
  1686. OPT_WITH_ARG("--bench-algo|-b",
  1687. set_int_0_to_9999, opt_show_intval, &opt_bench_algo,
  1688. opt_hidden),
  1689. #endif
  1690. #ifdef HAVE_CHROOT
  1691. OPT_WITH_ARG("--chroot-dir",
  1692. opt_set_charp, NULL, &chroot_dir,
  1693. "Chroot to a directory right after startup"),
  1694. #endif
  1695. OPT_WITH_ARG("--cmd-idle",
  1696. opt_set_charp, NULL, &cmd_idle,
  1697. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1698. OPT_WITH_ARG("--cmd-sick",
  1699. opt_set_charp, NULL, &cmd_sick,
  1700. "Execute a command when a device is declared sick"),
  1701. OPT_WITH_ARG("--cmd-dead",
  1702. opt_set_charp, NULL, &cmd_dead,
  1703. "Execute a command when a device is declared dead"),
  1704. #if BLKMAKER_VERSION > 1
  1705. OPT_WITH_ARG("--coinbase-addr",
  1706. set_b58addr, NULL, &opt_coinbase_script,
  1707. "Set coinbase payout address for solo mining"),
  1708. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1709. set_b58addr, NULL, &opt_coinbase_script,
  1710. opt_hidden),
  1711. #endif
  1712. #if BLKMAKER_VERSION > 0
  1713. OPT_WITH_ARG("--coinbase-sig",
  1714. set_strdup, NULL, &opt_coinbase_sig,
  1715. "Set coinbase signature when possible"),
  1716. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1717. set_strdup, NULL, &opt_coinbase_sig,
  1718. opt_hidden),
  1719. #endif
  1720. #ifdef HAVE_CURSES
  1721. OPT_WITHOUT_ARG("--compact",
  1722. opt_set_bool, &opt_compact,
  1723. "Use compact display without per device statistics"),
  1724. #endif
  1725. #ifdef WANT_CPUMINE
  1726. OPT_WITH_ARG("--cpu-threads|-t",
  1727. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1728. "Number of miner CPU threads"),
  1729. #endif
  1730. OPT_WITHOUT_ARG("--debug|-D",
  1731. enable_debug, &opt_debug,
  1732. "Enable debug output"),
  1733. OPT_WITHOUT_ARG("--debuglog",
  1734. opt_set_bool, &opt_debug,
  1735. "Enable debug logging"),
  1736. OPT_WITHOUT_ARG("--device-protocol-dump",
  1737. opt_set_bool, &opt_dev_protocol,
  1738. "Verbose dump of device protocol-level activities"),
  1739. OPT_WITH_ARG("--device|-d",
  1740. set_devices, NULL, NULL,
  1741. "Enable only devices matching pattern (default: all)"),
  1742. OPT_WITHOUT_ARG("--disable-rejecting",
  1743. opt_set_bool, &opt_disable_pool,
  1744. "Automatically disable pools that continually reject shares"),
  1745. #ifdef USE_LIBMICROHTTPD
  1746. OPT_WITH_ARG("--http-port",
  1747. opt_set_intval, opt_show_intval, &httpsrv_port,
  1748. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1749. #endif
  1750. #if defined(WANT_CPUMINE) && (defined(HAVE_OPENCL) || defined(USE_FPGA))
  1751. OPT_WITHOUT_ARG("--enable-cpu|-C",
  1752. opt_set_bool, &opt_usecpu,
  1753. opt_hidden),
  1754. #endif
  1755. OPT_WITH_ARG("--expiry|-E",
  1756. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1757. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1758. OPT_WITH_ARG("--expiry-lp",
  1759. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1760. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1761. OPT_WITHOUT_ARG("--failover-only",
  1762. opt_set_bool, &opt_fail_only,
  1763. "Don't leak work to backup pools when primary pool is lagging"),
  1764. #ifdef USE_FPGA
  1765. OPT_WITHOUT_ARG("--force-dev-init",
  1766. opt_set_bool, &opt_force_dev_init,
  1767. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1768. #endif
  1769. #ifdef HAVE_OPENCL
  1770. OPT_WITH_ARG("--gpu-dyninterval",
  1771. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1772. "Set the refresh interval in ms for GPUs using dynamic intensity"),
  1773. OPT_WITH_ARG("--gpu-platform",
  1774. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1775. "Select OpenCL platform ID to use for GPU mining"),
  1776. OPT_WITH_ARG("--gpu-threads|-g",
  1777. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1778. "Number of threads per GPU (1 - 10)"),
  1779. #ifdef HAVE_ADL
  1780. OPT_WITH_ARG("--gpu-engine",
  1781. set_gpu_engine, NULL, NULL,
  1782. "GPU engine (over)clock range in MHz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)"),
  1783. OPT_WITH_ARG("--gpu-fan",
  1784. set_gpu_fan, NULL, NULL,
  1785. "GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
  1786. OPT_WITH_ARG("--gpu-map",
  1787. set_gpu_map, NULL, NULL,
  1788. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1789. OPT_WITH_ARG("--gpu-memclock",
  1790. set_gpu_memclock, NULL, NULL,
  1791. "Set the GPU memory (over)clock in MHz - one value for all or separate by commas for per card"),
  1792. OPT_WITH_ARG("--gpu-memdiff",
  1793. set_gpu_memdiff, NULL, NULL,
  1794. "Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode"),
  1795. OPT_WITH_ARG("--gpu-powertune",
  1796. set_gpu_powertune, NULL, NULL,
  1797. "Set the GPU powertune percentage - one value for all or separate by commas for per card"),
  1798. OPT_WITHOUT_ARG("--gpu-reorder",
  1799. opt_set_bool, &opt_reorder,
  1800. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1801. OPT_WITH_ARG("--gpu-vddc",
  1802. set_gpu_vddc, NULL, NULL,
  1803. "Set the GPU voltage in Volts - one value for all or separate by commas for per card"),
  1804. #endif
  1805. #ifdef USE_SCRYPT
  1806. OPT_WITH_ARG("--lookup-gap",
  1807. set_lookup_gap, NULL, NULL,
  1808. "Set GPU lookup gap for scrypt mining, comma separated"),
  1809. OPT_WITH_ARG("--intensity|-I",
  1810. set_intensity, NULL, NULL,
  1811. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1812. " -> " MAX_SCRYPT_INTENSITY_STR
  1813. ",default: d to maintain desktop interactivity)"),
  1814. #else
  1815. OPT_WITH_ARG("--intensity|-I",
  1816. set_intensity, NULL, NULL,
  1817. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1818. " -> " MAX_SHA_INTENSITY_STR
  1819. ",default: d to maintain desktop interactivity)"),
  1820. #endif
  1821. #endif
  1822. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1823. OPT_WITH_ARG("--kernel-path|-K",
  1824. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1825. "Specify a path to where bitstream and kernel files are"),
  1826. #endif
  1827. #ifdef HAVE_OPENCL
  1828. OPT_WITH_ARG("--kernel|-k",
  1829. set_kernel, NULL, NULL,
  1830. "Override sha256 kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated"),
  1831. #endif
  1832. #ifdef USE_ICARUS
  1833. OPT_WITH_ARG("--icarus-options",
  1834. set_icarus_options, NULL, NULL,
  1835. opt_hidden),
  1836. OPT_WITH_ARG("--icarus-timing",
  1837. set_icarus_timing, NULL, NULL,
  1838. opt_hidden),
  1839. #endif
  1840. #ifdef USE_AVALON
  1841. OPT_WITH_ARG("--avalon-options",
  1842. set_avalon_options, NULL, NULL,
  1843. opt_hidden),
  1844. #endif
  1845. #ifdef USE_KLONDIKE
  1846. OPT_WITH_ARG("--klondike-options",
  1847. set_klondike_options, NULL, NULL,
  1848. "Set klondike options clock:temptarget"),
  1849. #endif
  1850. OPT_WITHOUT_ARG("--load-balance",
  1851. set_loadbalance, &pool_strategy,
  1852. "Change multipool strategy from failover to quota based balance"),
  1853. OPT_WITH_ARG("--log|-l",
  1854. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1855. "Interval in seconds between log output"),
  1856. OPT_WITH_ARG("--log-file|-L",
  1857. set_log_file, NULL, NULL,
  1858. "Append log file for output messages"),
  1859. OPT_WITH_ARG("--logfile",
  1860. set_log_file, NULL, NULL,
  1861. opt_hidden),
  1862. OPT_WITHOUT_ARG("--log-microseconds",
  1863. opt_set_bool, &opt_log_microseconds,
  1864. "Include microseconds in log output"),
  1865. #if defined(unix) || defined(__APPLE__)
  1866. OPT_WITH_ARG("--monitor|-m",
  1867. opt_set_charp, NULL, &opt_stderr_cmd,
  1868. "Use custom pipe cmd for output messages"),
  1869. #endif // defined(unix)
  1870. OPT_WITHOUT_ARG("--net-delay",
  1871. opt_set_bool, &opt_delaynet,
  1872. "Impose small delays in networking to avoid overloading slow routers"),
  1873. OPT_WITHOUT_ARG("--no-adl",
  1874. opt_set_bool, &opt_noadl,
  1875. #ifdef HAVE_ADL
  1876. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1877. #else
  1878. opt_hidden
  1879. #endif
  1880. ),
  1881. OPT_WITHOUT_ARG("--no-gbt",
  1882. opt_set_invbool, &want_gbt,
  1883. "Disable getblocktemplate support"),
  1884. OPT_WITHOUT_ARG("--no-getwork",
  1885. opt_set_invbool, &want_getwork,
  1886. "Disable getwork support"),
  1887. OPT_WITHOUT_ARG("--no-hotplug",
  1888. #ifdef HAVE_BFG_HOTPLUG
  1889. opt_set_invbool, &opt_hotplug,
  1890. "Disable hotplug detection"
  1891. #else
  1892. set_null, &opt_hotplug,
  1893. opt_hidden
  1894. #endif
  1895. ),
  1896. OPT_WITHOUT_ARG("--no-longpoll",
  1897. opt_set_invbool, &want_longpoll,
  1898. "Disable X-Long-Polling support"),
  1899. OPT_WITHOUT_ARG("--no-pool-disable",
  1900. opt_set_invbool, &opt_disable_pool,
  1901. opt_hidden),
  1902. OPT_WITHOUT_ARG("--no-restart",
  1903. opt_set_invbool, &opt_restart,
  1904. "Do not attempt to restart devices that hang"
  1905. ),
  1906. OPT_WITHOUT_ARG("--no-show-processors",
  1907. opt_set_invbool, &opt_show_procs,
  1908. opt_hidden),
  1909. OPT_WITHOUT_ARG("--no-show-procs",
  1910. opt_set_invbool, &opt_show_procs,
  1911. opt_hidden),
  1912. OPT_WITHOUT_ARG("--no-stratum",
  1913. opt_set_invbool, &want_stratum,
  1914. "Disable Stratum detection"),
  1915. OPT_WITHOUT_ARG("--no-submit-stale",
  1916. opt_set_invbool, &opt_submit_stale,
  1917. "Don't submit shares if they are detected as stale"),
  1918. #ifdef HAVE_OPENCL
  1919. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1920. opt_set_invbool, &opt_opencl_binaries,
  1921. "Don't attempt to use or save OpenCL kernel binaries"),
  1922. #endif
  1923. OPT_WITHOUT_ARG("--no-unicode",
  1924. #ifdef USE_UNICODE
  1925. opt_set_invbool, &use_unicode,
  1926. "Don't use Unicode characters in TUI"
  1927. #else
  1928. set_null, &use_unicode,
  1929. opt_hidden
  1930. #endif
  1931. ),
  1932. OPT_WITH_ARG("--noncelog",
  1933. set_noncelog, NULL, NULL,
  1934. "Create log of all nonces found"),
  1935. OPT_WITH_ARG("--pass|-p",
  1936. set_pass, NULL, NULL,
  1937. "Password for bitcoin JSON-RPC server"),
  1938. OPT_WITHOUT_ARG("--per-device-stats",
  1939. opt_set_bool, &want_per_device_stats,
  1940. "Force verbose mode and output per-device statistics"),
  1941. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1942. set_userpass, NULL, NULL,
  1943. opt_hidden),
  1944. OPT_WITH_ARG("--pool-priority",
  1945. set_pool_priority, NULL, NULL,
  1946. "Priority for just the previous-defined pool"),
  1947. OPT_WITH_ARG("--pool-proxy|-x",
  1948. set_pool_proxy, NULL, NULL,
  1949. "Proxy URI to use for connecting to just the previous-defined pool"),
  1950. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1951. set_pool_force_rollntime, NULL, NULL,
  1952. opt_hidden),
  1953. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1954. opt_set_bool, &opt_protocol,
  1955. "Verbose dump of protocol-level activities"),
  1956. OPT_WITH_ARG("--queue|-Q",
  1957. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1958. "Minimum number of work items to have queued (0+)"),
  1959. OPT_WITHOUT_ARG("--quiet|-q",
  1960. opt_set_bool, &opt_quiet,
  1961. "Disable logging output, display status and errors"),
  1962. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  1963. opt_set_bool, &opt_quiet_work_updates,
  1964. opt_hidden),
  1965. OPT_WITH_ARG("--quit-summary",
  1966. set_quit_summary, NULL, NULL,
  1967. "Summary printed when you quit: none/devs/procs/detailed"),
  1968. OPT_WITH_ARG("--quota|-U",
  1969. set_quota, NULL, NULL,
  1970. "quota;URL combination for server with load-balance strategy quotas"),
  1971. OPT_WITHOUT_ARG("--real-quiet",
  1972. opt_set_bool, &opt_realquiet,
  1973. "Disable all output"),
  1974. OPT_WITH_ARG("--request-diff",
  1975. set_request_diff, opt_show_floatval, &request_pdiff,
  1976. "Request a specific difficulty from pools"),
  1977. OPT_WITH_ARG("--retries",
  1978. opt_set_intval, opt_show_intval, &opt_retries,
  1979. "Number of times to retry failed submissions before giving up (-1 means never)"),
  1980. OPT_WITH_ARG("--retry-pause",
  1981. set_null, NULL, NULL,
  1982. opt_hidden),
  1983. OPT_WITH_ARG("--rotate",
  1984. set_rotate, opt_show_intval, &opt_rotate_period,
  1985. "Change multipool strategy from failover to regularly rotate at N minutes"),
  1986. OPT_WITHOUT_ARG("--round-robin",
  1987. set_rr, &pool_strategy,
  1988. "Change multipool strategy from failover to round robin on failure"),
  1989. OPT_WITH_ARG("--scan|-S",
  1990. add_serial, NULL, NULL,
  1991. "Configure how to scan for mining devices"),
  1992. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  1993. add_serial, NULL, NULL,
  1994. opt_hidden),
  1995. OPT_WITH_ARG("--scan-time|-s",
  1996. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  1997. "Upper bound on time spent scanning current work, in seconds"),
  1998. OPT_WITH_ARG("--scantime",
  1999. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2000. opt_hidden),
  2001. OPT_WITH_ARG("--sched-start",
  2002. set_schedtime, NULL, &schedstart,
  2003. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2004. OPT_WITH_ARG("--sched-stop",
  2005. set_schedtime, NULL, &schedstop,
  2006. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2007. #ifdef USE_SCRYPT
  2008. OPT_WITHOUT_ARG("--scrypt",
  2009. opt_set_bool, &opt_scrypt,
  2010. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2011. #endif
  2012. OPT_WITH_ARG("--set-device",
  2013. opt_string_elist_add, NULL, &opt_set_device_list,
  2014. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2015. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2016. OPT_WITH_ARG("--shaders",
  2017. set_shaders, NULL, NULL,
  2018. "GPU shaders per card for tuning scrypt, comma separated"),
  2019. #endif
  2020. #ifdef HAVE_PWD_H
  2021. OPT_WITH_ARG("--setuid",
  2022. opt_set_charp, NULL, &opt_setuid,
  2023. "Username of an unprivileged user to run as"),
  2024. #endif
  2025. OPT_WITH_ARG("--sharelog",
  2026. set_sharelog, NULL, NULL,
  2027. "Append share log to file"),
  2028. OPT_WITH_ARG("--shares",
  2029. opt_set_intval, NULL, &opt_shares,
  2030. "Quit after mining N shares (default: unlimited)"),
  2031. OPT_WITHOUT_ARG("--show-processors",
  2032. opt_set_bool, &opt_show_procs,
  2033. "Show per processor statistics in summary"),
  2034. OPT_WITHOUT_ARG("--show-procs",
  2035. opt_set_bool, &opt_show_procs,
  2036. opt_hidden),
  2037. OPT_WITH_ARG("--skip-security-checks",
  2038. set_int_0_to_9999, NULL, &opt_skip_checks,
  2039. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2040. OPT_WITH_ARG("--socks-proxy",
  2041. opt_set_charp, NULL, &opt_socks_proxy,
  2042. "Set socks proxy (host:port)"),
  2043. #ifdef USE_LIBEVENT
  2044. OPT_WITH_ARG("--stratum-port",
  2045. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2046. "Port number to listen on for stratum miners (-1 means disabled)"),
  2047. #endif
  2048. OPT_WITHOUT_ARG("--submit-stale",
  2049. opt_set_bool, &opt_submit_stale,
  2050. opt_hidden),
  2051. OPT_WITH_ARG("--submit-threads",
  2052. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2053. "Minimum number of concurrent share submissions (default: 64)"),
  2054. #ifdef HAVE_SYSLOG_H
  2055. OPT_WITHOUT_ARG("--syslog",
  2056. opt_set_bool, &use_syslog,
  2057. "Use system log for output messages (default: standard error)"),
  2058. #endif
  2059. OPT_WITH_ARG("--temp-cutoff",
  2060. set_temp_cutoff, NULL, &opt_cutofftemp,
  2061. opt_hidden),
  2062. OPT_WITH_ARG("--temp-hysteresis",
  2063. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2064. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2065. #ifdef HAVE_ADL
  2066. OPT_WITH_ARG("--temp-overheat",
  2067. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2068. "Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  2069. #endif
  2070. OPT_WITH_ARG("--temp-target",
  2071. set_temp_target, NULL, NULL,
  2072. opt_hidden),
  2073. OPT_WITHOUT_ARG("--text-only|-T",
  2074. opt_set_invbool, &use_curses,
  2075. #ifdef HAVE_CURSES
  2076. "Disable ncurses formatted screen output"
  2077. #else
  2078. opt_hidden
  2079. #endif
  2080. ),
  2081. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2082. OPT_WITH_ARG("--thread-concurrency",
  2083. set_thread_concurrency, NULL, NULL,
  2084. "Set GPU thread concurrency for scrypt mining, comma separated"),
  2085. #endif
  2086. #ifdef USE_UNICODE
  2087. OPT_WITHOUT_ARG("--unicode",
  2088. opt_set_bool, &use_unicode,
  2089. "Use Unicode characters in TUI"),
  2090. #endif
  2091. OPT_WITH_ARG("--url|-o",
  2092. set_url, NULL, NULL,
  2093. "URL for bitcoin JSON-RPC server"),
  2094. OPT_WITH_ARG("--user|-u",
  2095. set_user, NULL, NULL,
  2096. "Username for bitcoin JSON-RPC server"),
  2097. #ifdef HAVE_OPENCL
  2098. OPT_WITH_ARG("--vectors|-v",
  2099. set_vector, NULL, NULL,
  2100. "Override detected optimal vector (1, 2 or 4) - one value or comma separated list"),
  2101. #endif
  2102. OPT_WITHOUT_ARG("--verbose",
  2103. opt_set_bool, &opt_log_output,
  2104. "Log verbose output to stderr as well as status output"),
  2105. OPT_WITHOUT_ARG("--weighed-stats",
  2106. opt_set_bool, &opt_weighed_stats,
  2107. "Display statistics weighed to difficulty 1"),
  2108. #ifdef HAVE_OPENCL
  2109. OPT_WITH_ARG("--worksize|-w",
  2110. set_worksize, NULL, NULL,
  2111. "Override detected optimal worksize - one value or comma separated list"),
  2112. #endif
  2113. OPT_WITHOUT_ARG("--unittest",
  2114. opt_set_bool, &opt_unittest, opt_hidden),
  2115. OPT_WITH_ARG("--userpass|-O",
  2116. set_userpass, NULL, NULL,
  2117. "Username:Password pair for bitcoin JSON-RPC server"),
  2118. OPT_WITHOUT_ARG("--worktime",
  2119. opt_set_bool, &opt_worktime,
  2120. "Display extra work time debug information"),
  2121. OPT_WITH_ARG("--pools",
  2122. opt_set_bool, NULL, NULL, opt_hidden),
  2123. OPT_ENDTABLE
  2124. };
  2125. static char *load_config(const char *arg, void __maybe_unused *unused);
  2126. static int fileconf_load;
  2127. static char *parse_config(json_t *config, bool fileconf)
  2128. {
  2129. static char err_buf[200];
  2130. struct opt_table *opt;
  2131. json_t *val;
  2132. if (fileconf && !fileconf_load)
  2133. fileconf_load = 1;
  2134. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2135. char *p, *name, *sp;
  2136. /* We don't handle subtables. */
  2137. assert(!(opt->type & OPT_SUBTABLE));
  2138. if (!opt->names)
  2139. continue;
  2140. /* Pull apart the option name(s). */
  2141. name = strdup(opt->names);
  2142. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2143. char *err = "Invalid value";
  2144. /* Ignore short options. */
  2145. if (p[1] != '-')
  2146. continue;
  2147. val = json_object_get(config, p+2);
  2148. if (!val)
  2149. continue;
  2150. if (opt->type & OPT_HASARG) {
  2151. if (json_is_string(val)) {
  2152. err = opt->cb_arg(json_string_value(val),
  2153. opt->u.arg);
  2154. } else if (json_is_number(val)) {
  2155. char buf[256], *p, *q;
  2156. snprintf(buf, 256, "%f", json_number_value(val));
  2157. if ( (p = strchr(buf, '.')) ) {
  2158. // Trim /\.0*$/ to work properly with integer-only arguments
  2159. q = p;
  2160. while (*(++q) == '0') {}
  2161. if (*q == '\0')
  2162. *p = '\0';
  2163. }
  2164. err = opt->cb_arg(buf, opt->u.arg);
  2165. } else if (json_is_array(val)) {
  2166. int n, size = json_array_size(val);
  2167. err = NULL;
  2168. for (n = 0; n < size && !err; n++) {
  2169. if (json_is_string(json_array_get(val, n)))
  2170. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2171. else if (json_is_object(json_array_get(val, n)))
  2172. err = parse_config(json_array_get(val, n), false);
  2173. }
  2174. }
  2175. } else if (opt->type & OPT_NOARG) {
  2176. if (json_is_true(val))
  2177. err = opt->cb(opt->u.arg);
  2178. else if (json_is_boolean(val)) {
  2179. if (opt->cb == (void*)opt_set_bool)
  2180. err = opt_set_invbool(opt->u.arg);
  2181. else if (opt->cb == (void*)opt_set_invbool)
  2182. err = opt_set_bool(opt->u.arg);
  2183. }
  2184. }
  2185. if (err) {
  2186. /* Allow invalid values to be in configuration
  2187. * file, just skipping over them provided the
  2188. * JSON is still valid after that. */
  2189. if (fileconf) {
  2190. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2191. fileconf_load = -1;
  2192. } else {
  2193. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2194. p, err);
  2195. return err_buf;
  2196. }
  2197. }
  2198. }
  2199. free(name);
  2200. }
  2201. val = json_object_get(config, JSON_INCLUDE_CONF);
  2202. if (val && json_is_string(val))
  2203. return load_config(json_string_value(val), NULL);
  2204. return NULL;
  2205. }
  2206. char *cnfbuf = NULL;
  2207. static char *load_config(const char *arg, void __maybe_unused *unused)
  2208. {
  2209. json_error_t err;
  2210. json_t *config;
  2211. char *json_error;
  2212. size_t siz;
  2213. if (!cnfbuf)
  2214. cnfbuf = strdup(arg);
  2215. if (++include_count > JSON_MAX_DEPTH)
  2216. return JSON_MAX_DEPTH_ERR;
  2217. #if JANSSON_MAJOR_VERSION > 1
  2218. config = json_load_file(arg, 0, &err);
  2219. #else
  2220. config = json_load_file(arg, &err);
  2221. #endif
  2222. if (!json_is_object(config)) {
  2223. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2224. json_error = malloc(siz);
  2225. if (!json_error)
  2226. quit(1, "Malloc failure in json error");
  2227. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2228. return json_error;
  2229. }
  2230. config_loaded = true;
  2231. /* Parse the config now, so we can override it. That can keep pointers
  2232. * so don't free config object. */
  2233. return parse_config(config, true);
  2234. }
  2235. static void load_default_config(void)
  2236. {
  2237. cnfbuf = malloc(PATH_MAX);
  2238. #if defined(unix)
  2239. if (getenv("HOME") && *getenv("HOME")) {
  2240. strcpy(cnfbuf, getenv("HOME"));
  2241. strcat(cnfbuf, "/");
  2242. } else
  2243. strcpy(cnfbuf, "");
  2244. char *dirp = cnfbuf + strlen(cnfbuf);
  2245. strcpy(dirp, ".bfgminer/");
  2246. strcat(dirp, def_conf);
  2247. if (access(cnfbuf, R_OK))
  2248. // No BFGMiner config, try Cgminer's...
  2249. strcpy(dirp, ".cgminer/cgminer.conf");
  2250. #else
  2251. strcpy(cnfbuf, "");
  2252. strcat(cnfbuf, def_conf);
  2253. #endif
  2254. if (!access(cnfbuf, R_OK))
  2255. load_config(cnfbuf, NULL);
  2256. else {
  2257. free(cnfbuf);
  2258. cnfbuf = NULL;
  2259. }
  2260. }
  2261. extern const char *opt_argv0;
  2262. static char *opt_verusage_and_exit(const char *extra)
  2263. {
  2264. puts(packagename);
  2265. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2266. printf(" Algoritms:%s\n", BFG_ALGOLIST);
  2267. printf(" Options:%s\n", BFG_OPTLIST);
  2268. printf("%s", opt_usage(opt_argv0, extra));
  2269. fflush(stdout);
  2270. exit(0);
  2271. }
  2272. /* These options are available from commandline only */
  2273. static struct opt_table opt_cmdline_table[] = {
  2274. OPT_WITH_ARG("--config|-c",
  2275. load_config, NULL, NULL,
  2276. "Load a JSON-format configuration file\n"
  2277. "See example.conf for an example configuration."),
  2278. OPT_WITHOUT_ARG("--help|-h",
  2279. opt_verusage_and_exit, NULL,
  2280. "Print this message"),
  2281. #ifdef HAVE_OPENCL
  2282. OPT_WITHOUT_ARG("--ndevs|-n",
  2283. print_ndevs_and_exit, &nDevs,
  2284. opt_hidden),
  2285. #endif
  2286. OPT_WITHOUT_ARG("--version|-V",
  2287. opt_version_and_exit, packagename,
  2288. "Display version and exit"),
  2289. OPT_ENDTABLE
  2290. };
  2291. static bool jobj_binary(const json_t *obj, const char *key,
  2292. void *buf, size_t buflen, bool required)
  2293. {
  2294. const char *hexstr;
  2295. json_t *tmp;
  2296. tmp = json_object_get(obj, key);
  2297. if (unlikely(!tmp)) {
  2298. if (unlikely(required))
  2299. applog(LOG_ERR, "JSON key '%s' not found", key);
  2300. return false;
  2301. }
  2302. hexstr = json_string_value(tmp);
  2303. if (unlikely(!hexstr)) {
  2304. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2305. return false;
  2306. }
  2307. if (!hex2bin(buf, hexstr, buflen))
  2308. return false;
  2309. return true;
  2310. }
  2311. static void calc_midstate(struct work *work)
  2312. {
  2313. union {
  2314. unsigned char c[64];
  2315. uint32_t i[16];
  2316. } data;
  2317. swap32yes(&data.i[0], work->data, 16);
  2318. sha256_ctx ctx;
  2319. sha256_init(&ctx);
  2320. sha256_update(&ctx, data.c, 64);
  2321. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2322. swap32tole(work->midstate, work->midstate, 8);
  2323. }
  2324. static struct work *make_work(void)
  2325. {
  2326. struct work *work = calloc(1, sizeof(struct work));
  2327. if (unlikely(!work))
  2328. quit(1, "Failed to calloc work in make_work");
  2329. cg_wlock(&control_lock);
  2330. work->id = total_work++;
  2331. cg_wunlock(&control_lock);
  2332. return work;
  2333. }
  2334. /* This is the central place all work that is about to be retired should be
  2335. * cleaned to remove any dynamically allocated arrays within the struct */
  2336. void clean_work(struct work *work)
  2337. {
  2338. free(work->job_id);
  2339. bytes_free(&work->nonce2);
  2340. free(work->nonce1);
  2341. if (work->tmpl) {
  2342. struct pool *pool = work->pool;
  2343. mutex_lock(&pool->pool_lock);
  2344. bool free_tmpl = !--*work->tmpl_refcount;
  2345. mutex_unlock(&pool->pool_lock);
  2346. if (free_tmpl) {
  2347. blktmpl_free(work->tmpl);
  2348. free(work->tmpl_refcount);
  2349. }
  2350. }
  2351. memset(work, 0, sizeof(struct work));
  2352. }
  2353. /* All dynamically allocated work structs should be freed here to not leak any
  2354. * ram from arrays allocated within the work struct */
  2355. void free_work(struct work *work)
  2356. {
  2357. clean_work(work);
  2358. free(work);
  2359. }
  2360. 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";
  2361. // Must only be called with ch_lock held!
  2362. static
  2363. void __update_block_title(const unsigned char *hash_swap)
  2364. {
  2365. if (hash_swap) {
  2366. char tmp[17];
  2367. // Only provided when the block has actually changed
  2368. free(current_hash);
  2369. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2370. bin2hex(tmp, &hash_swap[24], 8);
  2371. memset(current_hash, '.', 3);
  2372. memcpy(&current_hash[3], tmp, 17);
  2373. known_blkheight_current = false;
  2374. } else if (likely(known_blkheight_current)) {
  2375. return;
  2376. }
  2377. if (current_block_id == known_blkheight_blkid) {
  2378. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2379. if (known_blkheight < 1000000) {
  2380. memmove(&current_hash[3], &current_hash[11], 8);
  2381. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2382. }
  2383. known_blkheight_current = true;
  2384. }
  2385. }
  2386. static
  2387. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2388. {
  2389. if (known_blkheight == blkheight)
  2390. return;
  2391. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2392. cg_wlock(&ch_lock);
  2393. known_blkheight = blkheight;
  2394. known_blkheight_blkid = block_id;
  2395. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2396. if (block_id == current_block_id)
  2397. __update_block_title(NULL);
  2398. cg_wunlock(&ch_lock);
  2399. }
  2400. static
  2401. void pool_set_opaque(struct pool *pool, bool opaque)
  2402. {
  2403. if (pool->swork.opaque == opaque)
  2404. return;
  2405. pool->swork.opaque = opaque;
  2406. if (opaque)
  2407. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2408. pool->pool_no);
  2409. else
  2410. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2411. pool->pool_no);
  2412. }
  2413. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2414. {
  2415. json_t *res_val = json_object_get(val, "result");
  2416. json_t *tmp_val;
  2417. bool ret = false;
  2418. if (unlikely(detect_algo == 1)) {
  2419. json_t *tmp = json_object_get(res_val, "algorithm");
  2420. const char *v = tmp ? json_string_value(tmp) : "";
  2421. if (strncasecmp(v, "scrypt", 6))
  2422. detect_algo = 2;
  2423. }
  2424. if (work->tmpl) {
  2425. struct timeval tv_now;
  2426. cgtime(&tv_now);
  2427. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2428. if (err) {
  2429. applog(LOG_ERR, "blktmpl error: %s", err);
  2430. return false;
  2431. }
  2432. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2433. #if BLKMAKER_VERSION > 1
  2434. if (opt_coinbase_script.sz)
  2435. {
  2436. bool newcb;
  2437. #if BLKMAKER_VERSION > 2
  2438. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2439. #else
  2440. newcb = !work->tmpl->cbtxn;
  2441. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2442. #endif
  2443. if (newcb)
  2444. {
  2445. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2446. if (ae < (ssize_t)sizeof(template_nonce))
  2447. 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);
  2448. ++template_nonce;
  2449. }
  2450. }
  2451. #endif
  2452. #if BLKMAKER_VERSION > 0
  2453. {
  2454. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2455. static bool appenderr = false;
  2456. if (ae <= 0) {
  2457. if (opt_coinbase_sig) {
  2458. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2459. appenderr = true;
  2460. }
  2461. } else if (ae >= 3 || opt_coinbase_sig) {
  2462. const char *cbappend = opt_coinbase_sig;
  2463. const char full[] = PACKAGE " " VERSION;
  2464. if (!cbappend) {
  2465. if ((size_t)ae >= sizeof(full) - 1)
  2466. cbappend = full;
  2467. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2468. cbappend = PACKAGE;
  2469. else
  2470. cbappend = "BFG";
  2471. }
  2472. size_t cbappendsz = strlen(cbappend);
  2473. static bool truncatewarning = false;
  2474. if (cbappendsz <= (size_t)ae) {
  2475. if (cbappendsz < (size_t)ae)
  2476. // If we have space, include the trailing \0
  2477. ++cbappendsz;
  2478. ae = cbappendsz;
  2479. truncatewarning = false;
  2480. } else {
  2481. char *tmp = malloc(ae + 1);
  2482. memcpy(tmp, opt_coinbase_sig, ae);
  2483. tmp[ae] = '\0';
  2484. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2485. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2486. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2487. free(tmp);
  2488. truncatewarning = true;
  2489. }
  2490. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2491. if (ae <= 0) {
  2492. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2493. appenderr = true;
  2494. } else
  2495. appenderr = false;
  2496. }
  2497. }
  2498. #endif
  2499. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2500. return false;
  2501. swap32yes(work->data, work->data, 80 / 4);
  2502. memcpy(&work->data[80], workpadding_bin, 48);
  2503. const struct blktmpl_longpoll_req *lp;
  2504. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2505. free(pool->lp_id);
  2506. pool->lp_id = strdup(lp->id);
  2507. #if 0 /* This just doesn't work :( */
  2508. curl_socket_t sock = pool->lp_socket;
  2509. if (sock != CURL_SOCKET_BAD) {
  2510. pool->lp_socket = CURL_SOCKET_BAD;
  2511. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2512. shutdown(sock, SHUT_RDWR);
  2513. }
  2514. #endif
  2515. }
  2516. }
  2517. else
  2518. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2519. applog(LOG_ERR, "JSON inval data");
  2520. return false;
  2521. }
  2522. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2523. // Calculate it ourselves
  2524. applog(LOG_DEBUG, "Calculating midstate locally");
  2525. calc_midstate(work);
  2526. }
  2527. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2528. applog(LOG_ERR, "JSON inval target");
  2529. return false;
  2530. }
  2531. if (work->tmpl) {
  2532. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2533. {
  2534. int p = (sizeof(work->target) - 1) - i;
  2535. unsigned char c = work->target[i];
  2536. work->target[i] = work->target[p];
  2537. work->target[p] = c;
  2538. }
  2539. }
  2540. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2541. uint32_t blkheight = json_number_value(tmp_val);
  2542. uint32_t block_id = ((uint32_t*)work->data)[1];
  2543. have_block_height(block_id, blkheight);
  2544. }
  2545. memset(work->hash, 0, sizeof(work->hash));
  2546. cgtime(&work->tv_staged);
  2547. pool_set_opaque(pool, !work->tmpl);
  2548. ret = true;
  2549. return ret;
  2550. }
  2551. /* Returns whether the pool supports local work generation or not. */
  2552. static bool pool_localgen(struct pool *pool)
  2553. {
  2554. return (pool->last_work_copy || pool->has_stratum);
  2555. }
  2556. int dev_from_id(int thr_id)
  2557. {
  2558. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2559. return cgpu->device_id;
  2560. }
  2561. /* Create an exponentially decaying average over the opt_log_interval */
  2562. void decay_time(double *f, double fadd, double fsecs)
  2563. {
  2564. double ftotal, fprop;
  2565. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2566. ftotal = 1.0 + fprop;
  2567. *f += (fadd * fprop);
  2568. *f /= ftotal;
  2569. }
  2570. static int __total_staged(void)
  2571. {
  2572. return HASH_COUNT(staged_work);
  2573. }
  2574. static int total_staged(void)
  2575. {
  2576. int ret;
  2577. mutex_lock(stgd_lock);
  2578. ret = __total_staged();
  2579. mutex_unlock(stgd_lock);
  2580. return ret;
  2581. }
  2582. #ifdef HAVE_CURSES
  2583. WINDOW *mainwin, *statuswin, *logwin;
  2584. #endif
  2585. double total_secs = 1.0;
  2586. static char statusline[256];
  2587. /* logstart is where the log window should start */
  2588. static int devcursor, logstart, logcursor;
  2589. #ifdef HAVE_CURSES
  2590. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2591. static int statusy;
  2592. static int devsummaryYOffset;
  2593. static int total_lines;
  2594. #endif
  2595. #ifdef HAVE_OPENCL
  2596. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2597. #endif
  2598. struct cgpu_info *cpus;
  2599. bool _bfg_console_cancel_disabled;
  2600. int _bfg_console_prev_cancelstate;
  2601. #ifdef HAVE_CURSES
  2602. #define lock_curses() bfg_console_lock()
  2603. #define unlock_curses() bfg_console_unlock()
  2604. static bool curses_active_locked(void)
  2605. {
  2606. bool ret;
  2607. lock_curses();
  2608. ret = curses_active;
  2609. if (!ret)
  2610. unlock_curses();
  2611. return ret;
  2612. }
  2613. // Cancellable getch
  2614. int my_cancellable_getch(void)
  2615. {
  2616. // This only works because the macro only hits direct getch() calls
  2617. typedef int (*real_getch_t)(void);
  2618. const real_getch_t real_getch = __real_getch;
  2619. int type, rv;
  2620. bool sct;
  2621. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2622. rv = real_getch();
  2623. if (sct)
  2624. pthread_setcanceltype(type, &type);
  2625. return rv;
  2626. }
  2627. #ifdef PDCURSES
  2628. static
  2629. int bfg_wresize(WINDOW *win, int lines, int columns)
  2630. {
  2631. int rv = wresize(win, lines, columns);
  2632. int x, y;
  2633. getyx(win, y, x);
  2634. if (unlikely(y >= lines || x >= columns))
  2635. {
  2636. if (y >= lines)
  2637. y = lines - 1;
  2638. if (x >= columns)
  2639. x = columns - 1;
  2640. wmove(win, y, x);
  2641. }
  2642. return rv;
  2643. }
  2644. #else
  2645. # define bfg_wresize wresize
  2646. #endif
  2647. #endif
  2648. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2649. {
  2650. va_list ap;
  2651. size_t presz = strlen(buf);
  2652. va_start(ap, fmt);
  2653. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2654. va_end(ap);
  2655. }
  2656. double stats_elapsed(struct cgminer_stats *stats)
  2657. {
  2658. struct timeval now;
  2659. double elapsed;
  2660. if (stats->start_tv.tv_sec == 0)
  2661. elapsed = total_secs;
  2662. else {
  2663. cgtime(&now);
  2664. elapsed = tdiff(&now, &stats->start_tv);
  2665. }
  2666. if (elapsed < 1.0)
  2667. elapsed = 1.0;
  2668. return elapsed;
  2669. }
  2670. bool drv_ready(struct cgpu_info *cgpu)
  2671. {
  2672. switch (cgpu->status) {
  2673. case LIFE_INIT:
  2674. case LIFE_DEAD2:
  2675. return false;
  2676. default:
  2677. return true;
  2678. }
  2679. }
  2680. double cgpu_utility(struct cgpu_info *cgpu)
  2681. {
  2682. double dev_runtime = cgpu_runtime(cgpu);
  2683. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2684. }
  2685. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2686. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2687. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2688. }while(0)
  2689. static float
  2690. utility_to_hashrate(double utility)
  2691. {
  2692. return utility * 0x4444444;
  2693. }
  2694. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2695. static const int _unitbase = 4;
  2696. static
  2697. void pick_unit(float hashrate, unsigned char *unit)
  2698. {
  2699. unsigned char i;
  2700. if (hashrate == 0)
  2701. {
  2702. if (*unit < _unitbase)
  2703. *unit = _unitbase;
  2704. return;
  2705. }
  2706. hashrate *= 1e12;
  2707. for (i = 0; i < *unit; ++i)
  2708. hashrate /= 1e3;
  2709. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2710. while (hashrate >= 999.95)
  2711. {
  2712. hashrate /= 1e3;
  2713. if (likely(_unitchar[*unit] != '?'))
  2714. ++*unit;
  2715. }
  2716. }
  2717. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2718. enum h2bs_fmt {
  2719. H2B_NOUNIT, // "xxx.x"
  2720. H2B_SHORT, // "xxx.xMH/s"
  2721. H2B_SPACED, // "xxx.x MH/s"
  2722. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2723. };
  2724. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2725. enum bfu_floatprec {
  2726. FUP_INTEGER,
  2727. FUP_HASHES,
  2728. FUP_BTC,
  2729. FUP_DIFF,
  2730. };
  2731. static
  2732. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2733. {
  2734. char *s = buf;
  2735. unsigned char prec, i, unit;
  2736. int rv = 0;
  2737. if (unitin == -1)
  2738. {
  2739. unit = 0;
  2740. hashrate_pick_unit(hashrate, &unit);
  2741. }
  2742. else
  2743. unit = unitin;
  2744. hashrate *= 1e12;
  2745. for (i = 0; i < unit; ++i)
  2746. hashrate /= 1000;
  2747. switch (fprec)
  2748. {
  2749. case FUP_HASHES:
  2750. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2751. if (hashrate >= 99.995 || unit < 6)
  2752. prec = 1;
  2753. else
  2754. prec = 2;
  2755. _SNP("%5.*f", prec, hashrate);
  2756. break;
  2757. case FUP_INTEGER:
  2758. _SNP("%3d", (int)hashrate);
  2759. break;
  2760. case FUP_BTC:
  2761. if (hashrate >= 99.995)
  2762. prec = 0;
  2763. else
  2764. prec = 2;
  2765. _SNP("%5.*f", prec, hashrate);
  2766. break;
  2767. case FUP_DIFF:
  2768. if (unit > _unitbase)
  2769. _SNP("%.3g", hashrate);
  2770. else
  2771. _SNP("%u", (unsigned int)hashrate);
  2772. }
  2773. switch (fmt) {
  2774. case H2B_SPACED:
  2775. _SNP(" ");
  2776. case H2B_SHORT:
  2777. _SNP("%c%s", _unitchar[unit], measurement);
  2778. default:
  2779. break;
  2780. case H2B_SHORTV:
  2781. _SNP("%.1s%s", (unit == _unitbase) ? "" : &_unitchar[unit], measurement);
  2782. }
  2783. return rv;
  2784. }
  2785. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2786. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2787. static
  2788. 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)
  2789. {
  2790. unsigned char unit = 0;
  2791. bool allzero = true;
  2792. int i;
  2793. size_t delimsz = 0;
  2794. char *buf = buflist[0];
  2795. size_t bufsz = bufszlist[0];
  2796. size_t itemwidth = (floatprec ? 5 : 3);
  2797. if (!isarray)
  2798. delimsz = strlen(delim);
  2799. for (i = 0; i < count; ++i)
  2800. if (numbers[i] != 0)
  2801. {
  2802. pick_unit(numbers[i], &unit);
  2803. allzero = false;
  2804. }
  2805. if (allzero)
  2806. unit = _unitbase;
  2807. --count;
  2808. for (i = 0; i < count; ++i)
  2809. {
  2810. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2811. if (isarray)
  2812. {
  2813. buf = buflist[i + 1];
  2814. bufsz = bufszlist[i + 1];
  2815. }
  2816. else
  2817. {
  2818. buf += itemwidth;
  2819. bufsz -= itemwidth;
  2820. if (delimsz > bufsz)
  2821. delimsz = bufsz;
  2822. memcpy(buf, delim, delimsz);
  2823. buf += delimsz;
  2824. bufsz -= delimsz;
  2825. }
  2826. }
  2827. // Last entry has the unit
  2828. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2829. return buflist[0];
  2830. }
  2831. #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)
  2832. #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)
  2833. static
  2834. int percentf3(char * const buf, size_t sz, double p, const double t)
  2835. {
  2836. char *s = buf;
  2837. int rv = 0;
  2838. if (!p)
  2839. _SNP("none");
  2840. else
  2841. if (t <= p)
  2842. _SNP("100%%");
  2843. else
  2844. {
  2845. p /= t;
  2846. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2847. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2848. else
  2849. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2850. _SNP("%.1f%%", p * 100); // "9.1%"
  2851. else
  2852. _SNP("%3.0f%%", p * 100); // " 99%"
  2853. }
  2854. return rv;
  2855. }
  2856. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2857. static
  2858. void test_decimal_width()
  2859. {
  2860. // The pipe character at end of each line should perfectly line up
  2861. char printbuf[512];
  2862. char testbuf1[64];
  2863. char testbuf2[64];
  2864. char testbuf3[64];
  2865. char testbuf4[64];
  2866. double testn;
  2867. int width;
  2868. int saved;
  2869. // Hotspots around 0.1 and 0.01
  2870. saved = -1;
  2871. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2872. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2873. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2874. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2875. if (unlikely((saved != -1) && (width != saved))) {
  2876. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2877. applog(LOG_ERR, "%s", printbuf);
  2878. }
  2879. saved = width;
  2880. }
  2881. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2882. saved = -1;
  2883. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2884. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2885. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2886. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2887. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2888. if (unlikely((saved != -1) && (width != saved))) {
  2889. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2890. applog(LOG_ERR, "%s", printbuf);
  2891. }
  2892. saved = width;
  2893. }
  2894. // Hotspot around unit transition boundary in pick_unit
  2895. saved = -1;
  2896. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2897. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2898. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2899. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2900. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2901. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2902. if (unlikely((saved != -1) && (width != saved))) {
  2903. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2904. applog(LOG_ERR, "%s", printbuf);
  2905. }
  2906. saved = width;
  2907. }
  2908. }
  2909. #ifdef HAVE_CURSES
  2910. static void adj_width(int var, int *length);
  2911. #endif
  2912. #ifdef HAVE_CURSES
  2913. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2914. static
  2915. 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)
  2916. {
  2917. char rejpcbuf[6];
  2918. char bnbuf[6];
  2919. adj_width(accepted, &awidth);
  2920. adj_width(rejected, &rwidth);
  2921. adj_width(stale, &swidth);
  2922. adj_width(hwerrs, &hwwidth);
  2923. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2924. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2925. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2926. cHr, aHr, uHr,
  2927. awidth, accepted,
  2928. rwidth, rejected,
  2929. swidth, stale,
  2930. rejpcbuf,
  2931. hwwidth, hwerrs,
  2932. bnbuf
  2933. );
  2934. }
  2935. #endif
  2936. static inline
  2937. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  2938. {
  2939. if (!(use_unicode && have_unicode_degrees))
  2940. maybe_unicode = false;
  2941. if (temp && *temp > 0.)
  2942. if (maybe_unicode)
  2943. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  2944. else
  2945. snprintf(buf, bufsz, "%4.1fC", *temp);
  2946. else
  2947. {
  2948. if (temp)
  2949. snprintf(buf, bufsz, " ");
  2950. if (maybe_unicode)
  2951. tailsprintf(buf, bufsz, " ");
  2952. }
  2953. tailsprintf(buf, bufsz, " | ");
  2954. }
  2955. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  2956. {
  2957. #ifndef HAVE_CURSES
  2958. assert(for_curses == false);
  2959. #endif
  2960. struct device_drv *drv = cgpu->drv;
  2961. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  2962. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  2963. char rejpcbuf[6];
  2964. char bnbuf[6];
  2965. double dev_runtime;
  2966. if (!opt_show_procs)
  2967. cgpu = cgpu->device;
  2968. dev_runtime = cgpu_runtime(cgpu);
  2969. double rolling, mhashes;
  2970. int accepted, rejected, stale;
  2971. double waccepted;
  2972. double wnotaccepted;
  2973. int hwerrs;
  2974. double bad_diff1, good_diff1;
  2975. rolling = mhashes = waccepted = wnotaccepted = 0;
  2976. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  2977. {
  2978. struct cgpu_info *slave = cgpu;
  2979. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  2980. {
  2981. slave->utility = slave->accepted / dev_runtime * 60;
  2982. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  2983. rolling += slave->rolling;
  2984. mhashes += slave->total_mhashes;
  2985. if (opt_weighed_stats)
  2986. {
  2987. accepted += slave->diff_accepted;
  2988. rejected += slave->diff_rejected;
  2989. stale += slave->diff_stale;
  2990. }
  2991. else
  2992. {
  2993. accepted += slave->accepted;
  2994. rejected += slave->rejected;
  2995. stale += slave->stale;
  2996. }
  2997. waccepted += slave->diff_accepted;
  2998. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  2999. hwerrs += slave->hw_errors;
  3000. bad_diff1 += slave->bad_diff1;
  3001. good_diff1 += slave->diff1;
  3002. if (opt_show_procs)
  3003. break;
  3004. }
  3005. }
  3006. double wtotal = (waccepted + wnotaccepted);
  3007. multi_format_unit_array2(
  3008. ((char*[]){cHr, aHr, uHr}),
  3009. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  3010. true, "h/s", hashrate_style,
  3011. 3,
  3012. 1e6*rolling,
  3013. 1e6*mhashes / dev_runtime,
  3014. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3015. // Processor representation
  3016. #ifdef HAVE_CURSES
  3017. if (for_curses)
  3018. {
  3019. if (opt_show_procs)
  3020. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3021. else
  3022. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3023. }
  3024. else
  3025. #endif
  3026. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3027. if (include_serial_in_statline && cgpu->dev_serial)
  3028. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3029. if (unlikely(cgpu->status == LIFE_INIT))
  3030. {
  3031. tailsprintf(buf, bufsz, "Initializing...");
  3032. return;
  3033. }
  3034. {
  3035. const size_t bufln = strlen(buf);
  3036. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3037. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3038. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3039. else
  3040. {
  3041. float temp = cgpu->temp;
  3042. if (!opt_show_procs)
  3043. {
  3044. // Find the highest temperature of all processors
  3045. struct cgpu_info *proc = cgpu;
  3046. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3047. if (proc->temp > temp)
  3048. temp = proc->temp;
  3049. }
  3050. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3051. }
  3052. }
  3053. #ifdef HAVE_CURSES
  3054. if (for_curses)
  3055. {
  3056. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3057. const char *cHrStats;
  3058. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3059. bool all_dead = true, all_off = true, all_rdrv = true;
  3060. struct cgpu_info *proc = cgpu;
  3061. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3062. {
  3063. switch (cHrStatsI) {
  3064. default:
  3065. if (proc->status == LIFE_WAIT)
  3066. cHrStatsI = 5;
  3067. case 5:
  3068. if (proc->deven == DEV_RECOVER_ERR)
  3069. cHrStatsI = 4;
  3070. case 4:
  3071. if (proc->deven == DEV_RECOVER)
  3072. cHrStatsI = 3;
  3073. case 3:
  3074. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3075. {
  3076. cHrStatsI = 1;
  3077. all_off = false;
  3078. }
  3079. else
  3080. {
  3081. if (likely(proc->deven == DEV_ENABLED))
  3082. all_off = false;
  3083. if (proc->deven != DEV_RECOVER_DRV)
  3084. all_rdrv = false;
  3085. }
  3086. case 1:
  3087. break;
  3088. }
  3089. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3090. all_dead = false;
  3091. if (opt_show_procs)
  3092. break;
  3093. }
  3094. if (unlikely(all_dead))
  3095. cHrStatsI = 0;
  3096. else
  3097. if (unlikely(all_off))
  3098. cHrStatsI = 2;
  3099. cHrStats = cHrStatsOpt[cHrStatsI];
  3100. if (cHrStatsI == 2 && all_rdrv)
  3101. cHrStats = " RST ";
  3102. format_statline(buf, bufsz,
  3103. cHrStats,
  3104. aHr, uHr,
  3105. accepted, rejected, stale,
  3106. wnotaccepted, waccepted,
  3107. hwerrs,
  3108. bad_diff1, bad_diff1 + good_diff1);
  3109. }
  3110. else
  3111. #endif
  3112. {
  3113. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3114. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3115. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3116. opt_log_interval,
  3117. cHr, aHr, uHr,
  3118. accepted,
  3119. rejected,
  3120. stale,
  3121. rejpcbuf,
  3122. hwerrs,
  3123. bnbuf
  3124. );
  3125. }
  3126. }
  3127. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3128. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3129. static void text_print_status(int thr_id)
  3130. {
  3131. struct cgpu_info *cgpu;
  3132. char logline[256];
  3133. cgpu = get_thr_cgpu(thr_id);
  3134. if (cgpu) {
  3135. get_statline(logline, sizeof(logline), cgpu);
  3136. printf("%s\n", logline);
  3137. }
  3138. }
  3139. #ifdef HAVE_CURSES
  3140. static int attr_bad = A_BOLD;
  3141. #ifdef WIN32
  3142. #define swprintf snwprintf
  3143. #endif
  3144. static
  3145. void bfg_waddstr(WINDOW *win, const char *s)
  3146. {
  3147. const char *p = s;
  3148. int32_t w;
  3149. int wlen;
  3150. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3151. while (true)
  3152. {
  3153. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3154. {
  3155. // Printable ASCII
  3156. ++p;
  3157. }
  3158. if (p != s)
  3159. waddnstr(win, s, p - s);
  3160. w = utf8_decode(p, &wlen);
  3161. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3162. {
  3163. w = unicode_micro;
  3164. wlen = 1;
  3165. }
  3166. s = p += wlen;
  3167. switch(w)
  3168. {
  3169. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3170. case '\0':
  3171. return;
  3172. case 0xf000: // "bad" off
  3173. wattroff(win, attr_bad);
  3174. break;
  3175. case 0xf001: // "bad" on
  3176. wattron(win, attr_bad);
  3177. break;
  3178. #ifdef USE_UNICODE
  3179. case '|':
  3180. wadd_wch(win, WACS_VLINE);
  3181. break;
  3182. #endif
  3183. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3184. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3185. if (!use_unicode)
  3186. {
  3187. waddch(win, '-');
  3188. break;
  3189. }
  3190. #ifdef USE_UNICODE
  3191. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3192. break;
  3193. #endif
  3194. case 0x2022:
  3195. if (w > WCHAR_MAX || !iswprint(w))
  3196. w = '*';
  3197. default:
  3198. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3199. {
  3200. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3201. if (iswprint(REPLACEMENT_CHAR))
  3202. w = REPLACEMENT_CHAR;
  3203. else
  3204. #endif
  3205. w = '?';
  3206. }
  3207. {
  3208. #ifdef USE_UNICODE
  3209. wchar_t wbuf[0x10];
  3210. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3211. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3212. waddnwstr(win, wbuf, wbuflen);
  3213. #else
  3214. wprintw(win, "%lc", (wint_t)w);
  3215. #endif
  3216. }
  3217. }
  3218. }
  3219. }
  3220. static inline
  3221. void bfg_hline(WINDOW *win, int y)
  3222. {
  3223. int maxx, __maybe_unused maxy;
  3224. getmaxyx(win, maxy, maxx);
  3225. #ifdef USE_UNICODE
  3226. if (use_unicode)
  3227. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3228. else
  3229. #endif
  3230. mvwhline(win, y, 0, '-', maxx);
  3231. }
  3232. // Spaces until end of line, using current attributes (ie, not completely clear)
  3233. static
  3234. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3235. {
  3236. int x, maxx;
  3237. int __maybe_unused y;
  3238. getmaxyx(win, y, maxx);
  3239. getyx(win, y, x);
  3240. const int space_count = (maxx - x) - offset;
  3241. // Check for negative - terminal too narrow
  3242. if (space_count <= 0)
  3243. return;
  3244. char buf[space_count];
  3245. memset(buf, ' ', space_count);
  3246. waddnstr(win, buf, space_count);
  3247. }
  3248. static int menu_attr = A_REVERSE;
  3249. #define CURBUFSIZ 256
  3250. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3251. char tmp42[CURBUFSIZ]; \
  3252. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3253. wmove(win, y, x); \
  3254. bfg_waddstr(win, tmp42); \
  3255. } while (0)
  3256. #define cg_wprintw(win, fmt, ...) do { \
  3257. char tmp42[CURBUFSIZ]; \
  3258. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3259. bfg_waddstr(win, tmp42); \
  3260. } while (0)
  3261. /* Must be called with curses mutex lock held and curses_active */
  3262. static void curses_print_status(const int ts)
  3263. {
  3264. struct pool *pool = currentpool;
  3265. struct timeval now, tv;
  3266. float efficiency;
  3267. double income;
  3268. int logdiv;
  3269. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3270. wattron(statuswin, attr_title);
  3271. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3272. timer_set_now(&now);
  3273. {
  3274. unsigned int days, hours;
  3275. div_t d;
  3276. timersub(&now, &miner_started, &tv);
  3277. d = div(tv.tv_sec, 86400);
  3278. days = d.quot;
  3279. d = div(d.rem, 3600);
  3280. hours = d.quot;
  3281. d = div(d.rem, 60);
  3282. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3283. , days
  3284. , (days == 1) ? ' ' : 's'
  3285. , hours
  3286. , d.quot
  3287. , d.rem
  3288. );
  3289. }
  3290. bfg_wspctoeol(statuswin, 0);
  3291. wattroff(statuswin, attr_title);
  3292. wattron(statuswin, menu_attr);
  3293. wmove(statuswin, 1, 0);
  3294. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3295. bfg_wspctoeol(statuswin, 14);
  3296. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3297. wattroff(statuswin, menu_attr);
  3298. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3299. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3300. have_longpoll ? "": "out");
  3301. } else if (pool->has_stratum) {
  3302. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3303. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3304. } else {
  3305. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3306. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3307. }
  3308. wclrtoeol(statuswin);
  3309. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3310. current_hash, block_diff, net_hashrate, blocktime);
  3311. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3312. char bwstr[12], incomestr[13];
  3313. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3314. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3315. ts,
  3316. total_go + total_ro,
  3317. new_blocks,
  3318. total_submitting,
  3319. multi_format_unit2(bwstr, sizeof(bwstr),
  3320. false, "B/s", H2B_SHORT, "/", 2,
  3321. (float)(total_bytes_rcvd / total_secs),
  3322. (float)(total_bytes_sent / total_secs)),
  3323. efficiency,
  3324. incomestr,
  3325. best_share);
  3326. wclrtoeol(statuswin);
  3327. mvwaddstr(statuswin, 5, 0, " ");
  3328. bfg_waddstr(statuswin, statusline);
  3329. wclrtoeol(statuswin);
  3330. logdiv = statusy - 1;
  3331. bfg_hline(statuswin, 6);
  3332. bfg_hline(statuswin, logdiv);
  3333. #ifdef USE_UNICODE
  3334. if (use_unicode)
  3335. {
  3336. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3337. if (opt_show_procs && !opt_compact)
  3338. ++offset; // proc letter
  3339. if (have_unicode_degrees)
  3340. ++offset; // degrees symbol
  3341. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3342. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3343. offset += 24; // hashrates etc
  3344. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3345. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3346. }
  3347. #endif
  3348. }
  3349. static void adj_width(int var, int *length)
  3350. {
  3351. if ((int)(log10(var) + 1) > *length)
  3352. (*length)++;
  3353. }
  3354. static int dev_width;
  3355. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3356. {
  3357. char logline[256];
  3358. int ypos;
  3359. if (opt_compact)
  3360. return;
  3361. /* Check this isn't out of the window size */
  3362. if (opt_show_procs)
  3363. ypos = cgpu->cgminer_id;
  3364. else
  3365. {
  3366. if (cgpu->proc_id)
  3367. return;
  3368. ypos = cgpu->device_line_id;
  3369. }
  3370. ypos += devsummaryYOffset;
  3371. if (ypos < 0)
  3372. return;
  3373. ypos += devcursor - 1;
  3374. if (ypos >= statusy - 1)
  3375. return;
  3376. if (wmove(statuswin, ypos, 0) == ERR)
  3377. return;
  3378. get_statline2(logline, sizeof(logline), cgpu, true);
  3379. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3380. wattron(statuswin, A_REVERSE);
  3381. bfg_waddstr(statuswin, logline);
  3382. wattroff(statuswin, A_REVERSE);
  3383. wclrtoeol(statuswin);
  3384. }
  3385. static
  3386. void _refresh_devstatus(const bool already_have_lock) {
  3387. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3388. int i;
  3389. if (unlikely(!total_devices))
  3390. {
  3391. const int ypos = devcursor - 1;
  3392. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3393. {
  3394. wattron(statuswin, attr_bad);
  3395. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3396. wclrtoeol(statuswin);
  3397. wattroff(statuswin, attr_bad);
  3398. }
  3399. }
  3400. for (i = 0; i < total_devices; i++)
  3401. curses_print_devstatus(get_devices(i));
  3402. touchwin(statuswin);
  3403. wrefresh(statuswin);
  3404. if (!already_have_lock)
  3405. unlock_curses();
  3406. }
  3407. }
  3408. #define refresh_devstatus() _refresh_devstatus(false)
  3409. #endif
  3410. static void print_status(int thr_id)
  3411. {
  3412. if (!curses_active)
  3413. text_print_status(thr_id);
  3414. }
  3415. #ifdef HAVE_CURSES
  3416. static
  3417. bool set_statusy(int maxy)
  3418. {
  3419. if (loginput_size)
  3420. {
  3421. maxy -= loginput_size;
  3422. if (maxy < 0)
  3423. maxy = 0;
  3424. }
  3425. if (logstart < maxy)
  3426. maxy = logstart;
  3427. if (statusy == maxy)
  3428. return false;
  3429. statusy = maxy;
  3430. logcursor = statusy;
  3431. return true;
  3432. }
  3433. /* Check for window resize. Called with curses mutex locked */
  3434. static inline void change_logwinsize(void)
  3435. {
  3436. int x, y, logx, logy;
  3437. getmaxyx(mainwin, y, x);
  3438. if (x < 80 || y < 25)
  3439. return;
  3440. if (y > statusy + 2 && statusy < logstart) {
  3441. set_statusy(y - 2);
  3442. mvwin(logwin, logcursor, 0);
  3443. bfg_wresize(statuswin, statusy, x);
  3444. }
  3445. y -= logcursor;
  3446. getmaxyx(logwin, logy, logx);
  3447. /* Detect screen size change */
  3448. if (x != logx || y != logy)
  3449. bfg_wresize(logwin, y, x);
  3450. }
  3451. static void check_winsizes(void)
  3452. {
  3453. if (!use_curses)
  3454. return;
  3455. if (curses_active_locked()) {
  3456. int y, x;
  3457. x = getmaxx(statuswin);
  3458. if (set_statusy(LINES - 2))
  3459. {
  3460. erase();
  3461. bfg_wresize(statuswin, statusy, x);
  3462. getmaxyx(mainwin, y, x);
  3463. y -= logcursor;
  3464. bfg_wresize(logwin, y, x);
  3465. mvwin(logwin, logcursor, 0);
  3466. }
  3467. unlock_curses();
  3468. }
  3469. }
  3470. static int device_line_id_count;
  3471. static void switch_logsize(void)
  3472. {
  3473. if (curses_active_locked()) {
  3474. if (opt_compact) {
  3475. logstart = devcursor - 1;
  3476. logcursor = logstart + 1;
  3477. } else {
  3478. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3479. logstart = devcursor + total_lines;
  3480. logcursor = logstart;
  3481. }
  3482. unlock_curses();
  3483. }
  3484. check_winsizes();
  3485. }
  3486. /* For mandatory printing when mutex is already locked */
  3487. void _wlog(const char *str)
  3488. {
  3489. static bool newline;
  3490. size_t end = strlen(str) - 1;
  3491. if (newline)
  3492. bfg_waddstr(logwin, "\n");
  3493. if (str[end] == '\n')
  3494. {
  3495. char *s;
  3496. newline = true;
  3497. s = alloca(end + 1);
  3498. memcpy(s, str, end);
  3499. s[end] = '\0';
  3500. str = s;
  3501. }
  3502. else
  3503. newline = false;
  3504. bfg_waddstr(logwin, str);
  3505. }
  3506. /* Mandatory printing */
  3507. void _wlogprint(const char *str)
  3508. {
  3509. if (curses_active_locked()) {
  3510. _wlog(str);
  3511. unlock_curses();
  3512. }
  3513. }
  3514. #endif
  3515. #ifdef HAVE_CURSES
  3516. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3517. {
  3518. bool high_prio;
  3519. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3520. if (curses_active)
  3521. {
  3522. if (!loginput_size || high_prio) {
  3523. wlog(" %s %s\n", datetime, str);
  3524. if (high_prio) {
  3525. touchwin(logwin);
  3526. wrefresh(logwin);
  3527. }
  3528. }
  3529. return true;
  3530. }
  3531. return false;
  3532. }
  3533. void clear_logwin(void)
  3534. {
  3535. if (curses_active_locked()) {
  3536. wclear(logwin);
  3537. unlock_curses();
  3538. }
  3539. }
  3540. void logwin_update(void)
  3541. {
  3542. if (curses_active_locked()) {
  3543. touchwin(logwin);
  3544. wrefresh(logwin);
  3545. unlock_curses();
  3546. }
  3547. }
  3548. #endif
  3549. static void enable_pool(struct pool *pool)
  3550. {
  3551. if (pool->enabled != POOL_ENABLED) {
  3552. enabled_pools++;
  3553. pool->enabled = POOL_ENABLED;
  3554. }
  3555. }
  3556. #ifdef HAVE_CURSES
  3557. static void disable_pool(struct pool *pool)
  3558. {
  3559. if (pool->enabled == POOL_ENABLED)
  3560. enabled_pools--;
  3561. pool->enabled = POOL_DISABLED;
  3562. }
  3563. #endif
  3564. static void reject_pool(struct pool *pool)
  3565. {
  3566. if (pool->enabled == POOL_ENABLED)
  3567. enabled_pools--;
  3568. pool->enabled = POOL_REJECTING;
  3569. }
  3570. static uint64_t share_diff(const struct work *);
  3571. static
  3572. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3573. struct cgpu_info *cgpu;
  3574. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3575. char shrdiffdisp[16];
  3576. int tgtdiff = floor(work->work_difficulty);
  3577. char tgtdiffdisp[16];
  3578. char where[20];
  3579. cgpu = get_thr_cgpu(work->thr_id);
  3580. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3581. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3582. if (total_pools > 1)
  3583. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3584. else
  3585. where[0] = '\0';
  3586. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3587. disp,
  3588. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3589. cgpu->proc_repr,
  3590. where,
  3591. shrdiffdisp, tgtdiffdisp,
  3592. reason,
  3593. resubmit ? "(resubmit)" : "",
  3594. worktime
  3595. );
  3596. }
  3597. static bool test_work_current(struct work *);
  3598. static void _submit_work_async(struct work *);
  3599. static
  3600. void maybe_local_submit(const struct work *work)
  3601. {
  3602. #if BLKMAKER_VERSION > 3
  3603. if (unlikely(work->block && work->tmpl))
  3604. {
  3605. // This is a block with a full template (GBT)
  3606. // Regardless of the result, submit to local bitcoind(s) as well
  3607. struct work *work_cp;
  3608. char *p;
  3609. for (int i = 0; i < total_pools; ++i)
  3610. {
  3611. p = strchr(pools[i]->rpc_url, '#');
  3612. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3613. continue;
  3614. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3615. work_cp = copy_work(work);
  3616. work_cp->pool = pools[i];
  3617. work_cp->do_foreign_submit = true;
  3618. _submit_work_async(work_cp);
  3619. }
  3620. }
  3621. #endif
  3622. }
  3623. /* Theoretically threads could race when modifying accepted and
  3624. * rejected values but the chance of two submits completing at the
  3625. * same time is zero so there is no point adding extra locking */
  3626. static void
  3627. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3628. /*char *hashshow,*/ bool resubmit, char *worktime)
  3629. {
  3630. struct pool *pool = work->pool;
  3631. struct cgpu_info *cgpu;
  3632. cgpu = get_thr_cgpu(work->thr_id);
  3633. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3634. mutex_lock(&stats_lock);
  3635. cgpu->accepted++;
  3636. total_accepted++;
  3637. pool->accepted++;
  3638. cgpu->diff_accepted += work->work_difficulty;
  3639. total_diff_accepted += work->work_difficulty;
  3640. pool->diff_accepted += work->work_difficulty;
  3641. mutex_unlock(&stats_lock);
  3642. pool->seq_rejects = 0;
  3643. cgpu->last_share_pool = pool->pool_no;
  3644. cgpu->last_share_pool_time = time(NULL);
  3645. cgpu->last_share_diff = work->work_difficulty;
  3646. pool->last_share_time = cgpu->last_share_pool_time;
  3647. pool->last_share_diff = work->work_difficulty;
  3648. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3649. if (!QUIET) {
  3650. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3651. }
  3652. sharelog("accept", work);
  3653. if (opt_shares && total_diff_accepted >= opt_shares) {
  3654. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  3655. kill_work();
  3656. return;
  3657. }
  3658. /* Detect if a pool that has been temporarily disabled for
  3659. * continually rejecting shares has started accepting shares.
  3660. * This will only happen with the work returned from a
  3661. * longpoll */
  3662. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3663. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3664. enable_pool(pool);
  3665. switch_pools(NULL);
  3666. }
  3667. if (unlikely(work->block)) {
  3668. // Force moving on to this new block :)
  3669. struct work fakework;
  3670. memset(&fakework, 0, sizeof(fakework));
  3671. fakework.pool = work->pool;
  3672. // Copy block version, bits, and time from share
  3673. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3674. memcpy(&fakework.data[68], &work->data[68], 8);
  3675. // Set prevblock to winning hash (swap32'd)
  3676. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3677. test_work_current(&fakework);
  3678. }
  3679. } else {
  3680. mutex_lock(&stats_lock);
  3681. cgpu->rejected++;
  3682. total_rejected++;
  3683. pool->rejected++;
  3684. cgpu->diff_rejected += work->work_difficulty;
  3685. total_diff_rejected += work->work_difficulty;
  3686. pool->diff_rejected += work->work_difficulty;
  3687. pool->seq_rejects++;
  3688. mutex_unlock(&stats_lock);
  3689. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3690. if (!QUIET) {
  3691. char where[20];
  3692. char disposition[36] = "reject";
  3693. char reason[32];
  3694. strcpy(reason, "");
  3695. if (total_pools > 1)
  3696. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3697. else
  3698. strcpy(where, "");
  3699. if (!json_is_string(res))
  3700. res = json_object_get(val, "reject-reason");
  3701. if (res) {
  3702. const char *reasontmp = json_string_value(res);
  3703. size_t reasonLen = strlen(reasontmp);
  3704. if (reasonLen > 28)
  3705. reasonLen = 28;
  3706. reason[0] = ' '; reason[1] = '(';
  3707. memcpy(2 + reason, reasontmp, reasonLen);
  3708. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3709. memcpy(disposition + 7, reasontmp, reasonLen);
  3710. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3711. } else if (work->stratum && err && json_is_array(err)) {
  3712. json_t *reason_val = json_array_get(err, 1);
  3713. char *reason_str;
  3714. if (reason_val && json_is_string(reason_val)) {
  3715. reason_str = (char *)json_string_value(reason_val);
  3716. snprintf(reason, 31, " (%s)", reason_str);
  3717. }
  3718. }
  3719. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3720. sharelog(disposition, work);
  3721. }
  3722. /* Once we have more than a nominal amount of sequential rejects,
  3723. * at least 10 and more than 3 mins at the current utility,
  3724. * disable the pool because some pool error is likely to have
  3725. * ensued. Do not do this if we know the share just happened to
  3726. * be stale due to networking delays.
  3727. */
  3728. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3729. double utility = total_accepted / total_secs * 60;
  3730. if (pool->seq_rejects > utility * 3) {
  3731. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3732. pool->pool_no, pool->seq_rejects);
  3733. reject_pool(pool);
  3734. if (pool == current_pool())
  3735. switch_pools(NULL);
  3736. pool->seq_rejects = 0;
  3737. }
  3738. }
  3739. }
  3740. maybe_local_submit(work);
  3741. }
  3742. static char *submit_upstream_work_request(struct work *work)
  3743. {
  3744. char *hexstr = NULL;
  3745. char *s, *sd;
  3746. struct pool *pool = work->pool;
  3747. if (work->tmpl) {
  3748. json_t *req;
  3749. unsigned char data[80];
  3750. swap32yes(data, work->data, 80 / 4);
  3751. #if BLKMAKER_VERSION > 3
  3752. if (work->do_foreign_submit)
  3753. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3754. else
  3755. #endif
  3756. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3757. s = json_dumps(req, 0);
  3758. json_decref(req);
  3759. sd = malloc(161);
  3760. bin2hex(sd, data, 80);
  3761. } else {
  3762. /* build hex string */
  3763. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3764. bin2hex(hexstr, work->data, sizeof(work->data));
  3765. /* build JSON-RPC request */
  3766. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3767. s = realloc_strcat(s, hexstr);
  3768. s = realloc_strcat(s, "\" ], \"id\":1}");
  3769. free(hexstr);
  3770. sd = s;
  3771. }
  3772. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3773. if (work->tmpl)
  3774. free(sd);
  3775. else
  3776. s = realloc_strcat(s, "\n");
  3777. return s;
  3778. }
  3779. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3780. json_t *res, *err;
  3781. bool rc = false;
  3782. int thr_id = work->thr_id;
  3783. struct pool *pool = work->pool;
  3784. struct timeval tv_submit_reply;
  3785. time_t ts_submit_reply;
  3786. char worktime[200] = "";
  3787. cgtime(&tv_submit_reply);
  3788. ts_submit_reply = time(NULL);
  3789. if (unlikely(!val)) {
  3790. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3791. if (!pool_tset(pool, &pool->submit_fail)) {
  3792. total_ro++;
  3793. pool->remotefail_occasions++;
  3794. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3795. }
  3796. goto out;
  3797. } else if (pool_tclear(pool, &pool->submit_fail))
  3798. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3799. res = json_object_get(val, "result");
  3800. err = json_object_get(val, "error");
  3801. if (!QUIET) {
  3802. if (opt_worktime) {
  3803. char workclone[20];
  3804. struct tm _tm;
  3805. struct tm *tm, tm_getwork, tm_submit_reply;
  3806. tm = &_tm;
  3807. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3808. (struct timeval *)&(work->tv_getwork));
  3809. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3810. (struct timeval *)&(work->tv_getwork_reply));
  3811. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3812. (struct timeval *)&(work->tv_work_start));
  3813. double work_to_submit = tdiff(ptv_submit,
  3814. (struct timeval *)&(work->tv_work_found));
  3815. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3816. int diffplaces = 3;
  3817. localtime_r(&work->ts_getwork, tm);
  3818. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3819. localtime_r(&ts_submit_reply, tm);
  3820. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3821. if (work->clone) {
  3822. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3823. tdiff((struct timeval *)&(work->tv_cloned),
  3824. (struct timeval *)&(work->tv_getwork_reply)));
  3825. }
  3826. else
  3827. strcpy(workclone, "O");
  3828. if (work->work_difficulty < 1)
  3829. diffplaces = 6;
  3830. snprintf(worktime, sizeof(worktime),
  3831. " <-%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",
  3832. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3833. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3834. work->getwork_mode, diffplaces, work->work_difficulty,
  3835. tm_getwork.tm_hour, tm_getwork.tm_min,
  3836. tm_getwork.tm_sec, getwork_time, workclone,
  3837. getwork_to_work, work_time, work_to_submit, submit_time,
  3838. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3839. tm_submit_reply.tm_sec);
  3840. }
  3841. }
  3842. share_result(val, res, err, work, resubmit, worktime);
  3843. if (!opt_realquiet)
  3844. print_status(thr_id);
  3845. if (!want_per_device_stats) {
  3846. char logline[256];
  3847. struct cgpu_info *cgpu;
  3848. cgpu = get_thr_cgpu(thr_id);
  3849. get_statline(logline, sizeof(logline), cgpu);
  3850. applog(LOG_INFO, "%s", logline);
  3851. }
  3852. json_decref(val);
  3853. rc = true;
  3854. out:
  3855. return rc;
  3856. }
  3857. /* Specifies whether we can use this pool for work or not. */
  3858. static bool pool_unworkable(struct pool *pool)
  3859. {
  3860. if (pool->idle)
  3861. return true;
  3862. if (pool->enabled != POOL_ENABLED)
  3863. return true;
  3864. if (pool->has_stratum && !pool->stratum_active)
  3865. return true;
  3866. return false;
  3867. }
  3868. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3869. * rolling average per 10 minutes and if pools start getting more, it biases
  3870. * away from them to distribute work evenly. The share count is reset to the
  3871. * rolling average every 10 minutes to not send all work to one pool after it
  3872. * has been disabled/out for an extended period. */
  3873. static struct pool *select_balanced(struct pool *cp)
  3874. {
  3875. int i, lowest = cp->shares;
  3876. struct pool *ret = cp;
  3877. for (i = 0; i < total_pools; i++) {
  3878. struct pool *pool = pools[i];
  3879. if (pool_unworkable(pool))
  3880. continue;
  3881. if (pool->shares < lowest) {
  3882. lowest = pool->shares;
  3883. ret = pool;
  3884. }
  3885. }
  3886. ret->shares++;
  3887. return ret;
  3888. }
  3889. static bool pool_active(struct pool *, bool pinging);
  3890. static void pool_died(struct pool *);
  3891. static struct pool *priority_pool(int choice);
  3892. static bool pool_unusable(struct pool *pool);
  3893. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3894. * it has any quota left. */
  3895. static inline struct pool *select_pool(bool lagging)
  3896. {
  3897. static int rotating_pool = 0;
  3898. struct pool *pool, *cp;
  3899. bool avail = false;
  3900. int tested, i;
  3901. cp = current_pool();
  3902. retry:
  3903. if (pool_strategy == POOL_BALANCE) {
  3904. pool = select_balanced(cp);
  3905. goto out;
  3906. }
  3907. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3908. pool = cp;
  3909. goto out;
  3910. } else
  3911. pool = NULL;
  3912. for (i = 0; i < total_pools; i++) {
  3913. struct pool *tp = pools[i];
  3914. if (tp->quota_used < tp->quota_gcd) {
  3915. avail = true;
  3916. break;
  3917. }
  3918. }
  3919. /* There are no pools with quota, so reset them. */
  3920. if (!avail) {
  3921. for (i = 0; i < total_pools; i++)
  3922. pools[i]->quota_used = 0;
  3923. if (++rotating_pool >= total_pools)
  3924. rotating_pool = 0;
  3925. }
  3926. /* Try to find the first pool in the rotation that is usable */
  3927. tested = 0;
  3928. while (!pool && tested++ < total_pools) {
  3929. pool = pools[rotating_pool];
  3930. if (pool->quota_used++ < pool->quota_gcd) {
  3931. if (!pool_unworkable(pool))
  3932. break;
  3933. /* Failover-only flag for load-balance means distribute
  3934. * unused quota to priority pool 0. */
  3935. if (opt_fail_only)
  3936. priority_pool(0)->quota_used--;
  3937. }
  3938. pool = NULL;
  3939. if (++rotating_pool >= total_pools)
  3940. rotating_pool = 0;
  3941. }
  3942. /* If there are no alive pools with quota, choose according to
  3943. * priority. */
  3944. if (!pool) {
  3945. for (i = 0; i < total_pools; i++) {
  3946. struct pool *tp = priority_pool(i);
  3947. if (!pool_unusable(tp)) {
  3948. pool = tp;
  3949. break;
  3950. }
  3951. }
  3952. }
  3953. /* If still nothing is usable, use the current pool */
  3954. if (!pool)
  3955. pool = cp;
  3956. out:
  3957. if (cp != pool)
  3958. {
  3959. if (!pool_active(pool, false))
  3960. {
  3961. pool_died(pool);
  3962. goto retry;
  3963. }
  3964. pool_tclear(pool, &pool->idle);
  3965. }
  3966. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  3967. return pool;
  3968. }
  3969. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  3970. static const uint64_t diffone = 0xFFFF000000000000ull;
  3971. static double target_diff(const unsigned char *target)
  3972. {
  3973. double targ = 0;
  3974. signed int i;
  3975. for (i = 31; i >= 0; --i)
  3976. targ = (targ * 0x100) + target[i];
  3977. return DIFFEXACTONE / (targ ?: 1);
  3978. }
  3979. /*
  3980. * Calculate the work share difficulty
  3981. */
  3982. static void calc_diff(struct work *work, int known)
  3983. {
  3984. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  3985. double difficulty;
  3986. if (!known) {
  3987. work->work_difficulty = target_diff(work->target);
  3988. } else
  3989. work->work_difficulty = known;
  3990. difficulty = work->work_difficulty;
  3991. pool_stats->last_diff = difficulty;
  3992. suffix_string((uint64_t)difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  3993. if (difficulty == pool_stats->min_diff)
  3994. pool_stats->min_diff_count++;
  3995. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  3996. pool_stats->min_diff = difficulty;
  3997. pool_stats->min_diff_count = 1;
  3998. }
  3999. if (difficulty == pool_stats->max_diff)
  4000. pool_stats->max_diff_count++;
  4001. else if (difficulty > pool_stats->max_diff) {
  4002. pool_stats->max_diff = difficulty;
  4003. pool_stats->max_diff_count = 1;
  4004. }
  4005. }
  4006. static void get_benchmark_work(struct work *work)
  4007. {
  4008. // Use a random work block pulled from a pool
  4009. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  4010. size_t bench_size = sizeof(*work);
  4011. size_t work_size = sizeof(bench_block);
  4012. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  4013. memset(work, 0, sizeof(*work));
  4014. memcpy(work, &bench_block, min_size);
  4015. work->mandatory = true;
  4016. work->pool = pools[0];
  4017. cgtime(&work->tv_getwork);
  4018. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4019. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4020. calc_diff(work, 0);
  4021. }
  4022. static void wake_gws(void);
  4023. static void update_last_work(struct work *work)
  4024. {
  4025. if (!work->tmpl)
  4026. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4027. return;
  4028. struct pool *pool = work->pool;
  4029. mutex_lock(&pool->last_work_lock);
  4030. if (pool->last_work_copy)
  4031. free_work(pool->last_work_copy);
  4032. pool->last_work_copy = copy_work(work);
  4033. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4034. mutex_unlock(&pool->last_work_lock);
  4035. }
  4036. static
  4037. void gbt_req_target(json_t *req)
  4038. {
  4039. json_t *j;
  4040. json_t *n;
  4041. if (!request_target_str)
  4042. return;
  4043. j = json_object_get(req, "params");
  4044. if (!j)
  4045. {
  4046. n = json_array();
  4047. if (!n)
  4048. return;
  4049. if (json_object_set_new(req, "params", n))
  4050. goto erradd;
  4051. j = n;
  4052. }
  4053. n = json_array_get(j, 0);
  4054. if (!n)
  4055. {
  4056. n = json_object();
  4057. if (!n)
  4058. return;
  4059. if (json_array_append_new(j, n))
  4060. goto erradd;
  4061. }
  4062. j = n;
  4063. n = json_string(request_target_str);
  4064. if (!n)
  4065. return;
  4066. if (json_object_set_new(j, "target", n))
  4067. goto erradd;
  4068. return;
  4069. erradd:
  4070. json_decref(n);
  4071. }
  4072. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4073. {
  4074. char *rpc_req;
  4075. clean_work(work);
  4076. switch (proto) {
  4077. case PLP_GETWORK:
  4078. work->getwork_mode = GETWORK_MODE_POOL;
  4079. return strdup(getwork_req);
  4080. case PLP_GETBLOCKTEMPLATE:
  4081. work->getwork_mode = GETWORK_MODE_GBT;
  4082. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4083. if (!work->tmpl_refcount)
  4084. return NULL;
  4085. work->tmpl = blktmpl_create();
  4086. if (!work->tmpl)
  4087. goto gbtfail2;
  4088. *work->tmpl_refcount = 1;
  4089. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4090. if (!caps)
  4091. goto gbtfail;
  4092. caps |= GBT_LONGPOLL;
  4093. #if BLKMAKER_VERSION > 1
  4094. if (opt_coinbase_script.sz)
  4095. caps |= GBT_CBVALUE;
  4096. #endif
  4097. json_t *req = blktmpl_request_jansson(caps, lpid);
  4098. if (!req)
  4099. goto gbtfail;
  4100. if (probe)
  4101. gbt_req_target(req);
  4102. rpc_req = json_dumps(req, 0);
  4103. if (!rpc_req)
  4104. goto gbtfail;
  4105. json_decref(req);
  4106. return rpc_req;
  4107. default:
  4108. return NULL;
  4109. }
  4110. return NULL;
  4111. gbtfail:
  4112. blktmpl_free(work->tmpl);
  4113. work->tmpl = NULL;
  4114. gbtfail2:
  4115. free(work->tmpl_refcount);
  4116. work->tmpl_refcount = NULL;
  4117. return NULL;
  4118. }
  4119. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4120. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4121. static const char *pool_protocol_name(enum pool_protocol proto)
  4122. {
  4123. switch (proto) {
  4124. case PLP_GETBLOCKTEMPLATE:
  4125. return "getblocktemplate";
  4126. case PLP_GETWORK:
  4127. return "getwork";
  4128. default:
  4129. return "UNKNOWN";
  4130. }
  4131. }
  4132. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4133. {
  4134. switch (proto) {
  4135. case PLP_GETBLOCKTEMPLATE:
  4136. if (want_getwork)
  4137. return PLP_GETWORK;
  4138. default:
  4139. return PLP_NONE;
  4140. }
  4141. }
  4142. static bool get_upstream_work(struct work *work, CURL *curl)
  4143. {
  4144. struct pool *pool = work->pool;
  4145. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4146. struct timeval tv_elapsed;
  4147. json_t *val = NULL;
  4148. bool rc = false;
  4149. char *url;
  4150. enum pool_protocol proto;
  4151. char *rpc_req;
  4152. if (pool->proto == PLP_NONE)
  4153. pool->proto = PLP_GETBLOCKTEMPLATE;
  4154. tryagain:
  4155. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4156. work->pool = pool;
  4157. if (!rpc_req)
  4158. return false;
  4159. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4160. url = pool->rpc_url;
  4161. cgtime(&work->tv_getwork);
  4162. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4163. false, &work->rolltime, pool, false);
  4164. pool_stats->getwork_attempts++;
  4165. free(rpc_req);
  4166. if (likely(val)) {
  4167. rc = work_decode(pool, work, val);
  4168. if (unlikely(!rc))
  4169. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4170. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4171. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4172. pool->proto = proto;
  4173. goto tryagain;
  4174. } else
  4175. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4176. cgtime(&work->tv_getwork_reply);
  4177. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4178. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4179. pool_stats->getwork_wait_rolling /= 1.63;
  4180. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4181. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4182. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4183. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4184. }
  4185. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4186. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4187. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4188. }
  4189. pool_stats->getwork_calls++;
  4190. work->pool = pool;
  4191. work->longpoll = false;
  4192. calc_diff(work, 0);
  4193. total_getworks++;
  4194. pool->getwork_requested++;
  4195. if (rc)
  4196. update_last_work(work);
  4197. if (likely(val))
  4198. json_decref(val);
  4199. return rc;
  4200. }
  4201. #ifdef HAVE_CURSES
  4202. static void disable_curses(void)
  4203. {
  4204. if (curses_active_locked()) {
  4205. use_curses = false;
  4206. curses_active = false;
  4207. leaveok(logwin, false);
  4208. leaveok(statuswin, false);
  4209. leaveok(mainwin, false);
  4210. nocbreak();
  4211. echo();
  4212. delwin(logwin);
  4213. delwin(statuswin);
  4214. delwin(mainwin);
  4215. endwin();
  4216. #ifdef WIN32
  4217. // Move the cursor to after curses output.
  4218. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4219. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4220. COORD coord;
  4221. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4222. coord.X = 0;
  4223. coord.Y = csbi.dwSize.Y - 1;
  4224. SetConsoleCursorPosition(hout, coord);
  4225. }
  4226. #endif
  4227. unlock_curses();
  4228. }
  4229. }
  4230. #endif
  4231. static void __kill_work(void)
  4232. {
  4233. struct cgpu_info *cgpu;
  4234. struct thr_info *thr;
  4235. int i;
  4236. if (!successful_connect)
  4237. return;
  4238. applog(LOG_INFO, "Received kill message");
  4239. shutting_down = true;
  4240. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4241. notifier_wake(submit_waiting_notifier);
  4242. #ifdef USE_LIBMICROHTTPD
  4243. httpsrv_stop();
  4244. #endif
  4245. applog(LOG_DEBUG, "Killing off watchpool thread");
  4246. /* Kill the watchpool thread */
  4247. thr = &control_thr[watchpool_thr_id];
  4248. thr_info_cancel(thr);
  4249. applog(LOG_DEBUG, "Killing off watchdog thread");
  4250. /* Kill the watchdog thread */
  4251. thr = &control_thr[watchdog_thr_id];
  4252. thr_info_cancel(thr);
  4253. applog(LOG_DEBUG, "Shutting down mining threads");
  4254. for (i = 0; i < mining_threads; i++) {
  4255. thr = get_thread(i);
  4256. if (!thr)
  4257. continue;
  4258. cgpu = thr->cgpu;
  4259. if (!cgpu)
  4260. continue;
  4261. if (!cgpu->threads)
  4262. continue;
  4263. cgpu->shutdown = true;
  4264. thr->work_restart = true;
  4265. notifier_wake(thr->notifier);
  4266. notifier_wake(thr->work_restart_notifier);
  4267. }
  4268. sleep(1);
  4269. applog(LOG_DEBUG, "Killing off mining threads");
  4270. /* Kill the mining threads*/
  4271. for (i = 0; i < mining_threads; i++) {
  4272. thr = get_thread(i);
  4273. if (!thr)
  4274. continue;
  4275. cgpu = thr->cgpu;
  4276. if (cgpu->threads)
  4277. {
  4278. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4279. thr_info_cancel(thr);
  4280. }
  4281. cgpu->status = LIFE_DEAD2;
  4282. }
  4283. /* Stop the others */
  4284. applog(LOG_DEBUG, "Killing off API thread");
  4285. thr = &control_thr[api_thr_id];
  4286. thr_info_cancel(thr);
  4287. }
  4288. /* This should be the common exit path */
  4289. void kill_work(void)
  4290. {
  4291. __kill_work();
  4292. quit(0, "Shutdown signal received.");
  4293. }
  4294. static
  4295. #ifdef WIN32
  4296. #ifndef _WIN64
  4297. const
  4298. #endif
  4299. #endif
  4300. char **initial_args;
  4301. void _bfg_clean_up(bool);
  4302. void app_restart(void)
  4303. {
  4304. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4305. __kill_work();
  4306. _bfg_clean_up(true);
  4307. #if defined(unix) || defined(__APPLE__)
  4308. if (forkpid > 0) {
  4309. kill(forkpid, SIGTERM);
  4310. forkpid = 0;
  4311. }
  4312. #endif
  4313. execv(initial_args[0], initial_args);
  4314. applog(LOG_WARNING, "Failed to restart application");
  4315. }
  4316. static void sighandler(int __maybe_unused sig)
  4317. {
  4318. /* Restore signal handlers so we can still quit if kill_work fails */
  4319. sigaction(SIGTERM, &termhandler, NULL);
  4320. sigaction(SIGINT, &inthandler, NULL);
  4321. kill_work();
  4322. }
  4323. static void start_longpoll(void);
  4324. static void stop_longpoll(void);
  4325. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4326. * this pool. */
  4327. static void recruit_curl(struct pool *pool)
  4328. {
  4329. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4330. if (unlikely(!ce))
  4331. quit(1, "Failed to calloc in recruit_curl");
  4332. ce->curl = curl_easy_init();
  4333. if (unlikely(!ce->curl))
  4334. quit(1, "Failed to init in recruit_curl");
  4335. LL_PREPEND(pool->curllist, ce);
  4336. pool->curls++;
  4337. }
  4338. /* Grab an available curl if there is one. If not, then recruit extra curls
  4339. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4340. * and there are already 5 curls in circulation. Limit total number to the
  4341. * number of mining threads per pool as well to prevent blasting a pool during
  4342. * network delays/outages. */
  4343. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4344. {
  4345. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4346. bool recruited = false;
  4347. struct curl_ent *ce;
  4348. mutex_lock(&pool->pool_lock);
  4349. retry:
  4350. if (!pool->curls) {
  4351. recruit_curl(pool);
  4352. recruited = true;
  4353. } else if (!pool->curllist) {
  4354. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4355. if (!blocking) {
  4356. mutex_unlock(&pool->pool_lock);
  4357. return NULL;
  4358. }
  4359. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4360. goto retry;
  4361. } else {
  4362. recruit_curl(pool);
  4363. recruited = true;
  4364. }
  4365. }
  4366. ce = pool->curllist;
  4367. LL_DELETE(pool->curllist, ce);
  4368. mutex_unlock(&pool->pool_lock);
  4369. if (recruited)
  4370. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4371. return ce;
  4372. }
  4373. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4374. {
  4375. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4376. }
  4377. __maybe_unused
  4378. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4379. {
  4380. return pop_curl_entry3(pool, 1);
  4381. }
  4382. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4383. {
  4384. mutex_lock(&pool->pool_lock);
  4385. if (!ce || !ce->curl)
  4386. quithere(1, "Attempted to add NULL");
  4387. LL_PREPEND(pool->curllist, ce);
  4388. cgtime(&ce->tv);
  4389. pthread_cond_broadcast(&pool->cr_cond);
  4390. mutex_unlock(&pool->pool_lock);
  4391. }
  4392. bool stale_work(struct work *work, bool share);
  4393. static inline bool should_roll(struct work *work)
  4394. {
  4395. struct timeval now;
  4396. time_t expiry;
  4397. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4398. return false;
  4399. if (stale_work(work, false))
  4400. return false;
  4401. if (work->rolltime > opt_scantime)
  4402. expiry = work->rolltime;
  4403. else
  4404. expiry = opt_scantime;
  4405. expiry = expiry * 2 / 3;
  4406. /* We shouldn't roll if we're unlikely to get one shares' duration
  4407. * work out of doing so */
  4408. cgtime(&now);
  4409. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4410. return false;
  4411. return true;
  4412. }
  4413. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4414. * reject blocks as invalid. */
  4415. static inline bool can_roll(struct work *work)
  4416. {
  4417. if (work->stratum)
  4418. return false;
  4419. if (!(work->pool && !work->clone))
  4420. return false;
  4421. if (work->tmpl) {
  4422. if (stale_work(work, false))
  4423. return false;
  4424. return blkmk_work_left(work->tmpl);
  4425. }
  4426. return (work->rolltime &&
  4427. work->rolls < 7000 && !stale_work(work, false));
  4428. }
  4429. static void roll_work(struct work *work)
  4430. {
  4431. if (work->tmpl) {
  4432. struct timeval tv_now;
  4433. cgtime(&tv_now);
  4434. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4435. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4436. swap32yes(work->data, work->data, 80 / 4);
  4437. calc_midstate(work);
  4438. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4439. } else {
  4440. uint32_t *work_ntime;
  4441. uint32_t ntime;
  4442. work_ntime = (uint32_t *)(work->data + 68);
  4443. ntime = be32toh(*work_ntime);
  4444. ntime++;
  4445. *work_ntime = htobe32(ntime);
  4446. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4447. }
  4448. local_work++;
  4449. work->rolls++;
  4450. work->blk.nonce = 0;
  4451. /* This is now a different work item so it needs a different ID for the
  4452. * hashtable */
  4453. work->id = total_work++;
  4454. }
  4455. /* Duplicates any dynamically allocated arrays within the work struct to
  4456. * prevent a copied work struct from freeing ram belonging to another struct */
  4457. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4458. {
  4459. int id = work->id;
  4460. clean_work(work);
  4461. memcpy(work, base_work, sizeof(struct work));
  4462. /* Keep the unique new id assigned during make_work to prevent copied
  4463. * work from having the same id. */
  4464. work->id = id;
  4465. if (base_work->job_id)
  4466. work->job_id = strdup(base_work->job_id);
  4467. if (base_work->nonce1)
  4468. work->nonce1 = strdup(base_work->nonce1);
  4469. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4470. if (base_work->tmpl) {
  4471. struct pool *pool = work->pool;
  4472. mutex_lock(&pool->pool_lock);
  4473. ++*work->tmpl_refcount;
  4474. mutex_unlock(&pool->pool_lock);
  4475. }
  4476. if (noffset)
  4477. {
  4478. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4479. uint32_t ntime = be32toh(*work_ntime);
  4480. ntime += noffset;
  4481. *work_ntime = htobe32(ntime);
  4482. }
  4483. }
  4484. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4485. * for all dynamically allocated arrays within the struct */
  4486. struct work *copy_work(const struct work *base_work)
  4487. {
  4488. struct work *work = make_work();
  4489. _copy_work(work, base_work, 0);
  4490. return work;
  4491. }
  4492. void __copy_work(struct work *work, const struct work *base_work)
  4493. {
  4494. _copy_work(work, base_work, 0);
  4495. }
  4496. static struct work *make_clone(struct work *work)
  4497. {
  4498. struct work *work_clone = copy_work(work);
  4499. work_clone->clone = true;
  4500. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4501. work_clone->longpoll = false;
  4502. work_clone->mandatory = false;
  4503. /* Make cloned work appear slightly older to bias towards keeping the
  4504. * master work item which can be further rolled */
  4505. work_clone->tv_staged.tv_sec -= 1;
  4506. return work_clone;
  4507. }
  4508. static void stage_work(struct work *work);
  4509. static bool clone_available(void)
  4510. {
  4511. struct work *work_clone = NULL, *work, *tmp;
  4512. bool cloned = false;
  4513. mutex_lock(stgd_lock);
  4514. if (!staged_rollable)
  4515. goto out_unlock;
  4516. HASH_ITER(hh, staged_work, work, tmp) {
  4517. if (can_roll(work) && should_roll(work)) {
  4518. roll_work(work);
  4519. work_clone = make_clone(work);
  4520. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4521. roll_work(work);
  4522. cloned = true;
  4523. break;
  4524. }
  4525. }
  4526. out_unlock:
  4527. mutex_unlock(stgd_lock);
  4528. if (cloned) {
  4529. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4530. stage_work(work_clone);
  4531. }
  4532. return cloned;
  4533. }
  4534. static void pool_died(struct pool *pool)
  4535. {
  4536. if (!pool_tset(pool, &pool->idle)) {
  4537. cgtime(&pool->tv_idle);
  4538. if (pool == current_pool()) {
  4539. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4540. switch_pools(NULL);
  4541. } else
  4542. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4543. }
  4544. }
  4545. bool stale_work(struct work *work, bool share)
  4546. {
  4547. unsigned work_expiry;
  4548. struct pool *pool;
  4549. uint32_t block_id;
  4550. unsigned getwork_delay;
  4551. if (opt_benchmark)
  4552. return false;
  4553. block_id = ((uint32_t*)work->data)[1];
  4554. pool = work->pool;
  4555. /* Technically the rolltime should be correct but some pools
  4556. * advertise a broken expire= that is lower than a meaningful
  4557. * scantime */
  4558. if (work->rolltime >= opt_scantime || work->tmpl)
  4559. work_expiry = work->rolltime;
  4560. else
  4561. work_expiry = opt_expiry;
  4562. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4563. if (work_expiry > max_expiry)
  4564. work_expiry = max_expiry;
  4565. if (share) {
  4566. /* If the share isn't on this pool's latest block, it's stale */
  4567. if (pool->block_id && pool->block_id != block_id)
  4568. {
  4569. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4570. return true;
  4571. }
  4572. /* If the pool doesn't want old shares, then any found in work before
  4573. * the most recent longpoll is stale */
  4574. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4575. {
  4576. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4577. return true;
  4578. }
  4579. } else {
  4580. /* If this work isn't for the latest Bitcoin block, it's stale */
  4581. /* But only care about the current pool if failover-only */
  4582. if (enabled_pools <= 1 || opt_fail_only) {
  4583. if (pool->block_id && block_id != pool->block_id)
  4584. {
  4585. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4586. return true;
  4587. }
  4588. } else {
  4589. if (block_id != current_block_id)
  4590. {
  4591. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4592. return true;
  4593. }
  4594. }
  4595. /* If the pool has asked us to restart since this work, it's stale */
  4596. if (work->work_restart_id != pool->work_restart_id)
  4597. {
  4598. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4599. return true;
  4600. }
  4601. if (pool->has_stratum && work->job_id) {
  4602. bool same_job;
  4603. if (!pool->stratum_active || !pool->stratum_notify) {
  4604. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4605. return true;
  4606. }
  4607. same_job = true;
  4608. cg_rlock(&pool->data_lock);
  4609. if (strcmp(work->job_id, pool->swork.job_id))
  4610. same_job = false;
  4611. cg_runlock(&pool->data_lock);
  4612. if (!same_job) {
  4613. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4614. return true;
  4615. }
  4616. }
  4617. /* Factor in the average getwork delay of this pool, rounding it up to
  4618. * the nearest second */
  4619. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4620. if (unlikely(work_expiry <= getwork_delay + 5))
  4621. work_expiry = 5;
  4622. else
  4623. work_expiry -= getwork_delay;
  4624. }
  4625. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4626. if (elapsed_since_staged > work_expiry) {
  4627. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4628. return true;
  4629. }
  4630. /* If the user only wants strict failover, any work from a pool other than
  4631. * the current one is always considered stale */
  4632. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4633. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4634. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4635. return true;
  4636. }
  4637. return false;
  4638. }
  4639. static uint64_t share_diff(const struct work *work)
  4640. {
  4641. uint64_t ret;
  4642. bool new_best = false;
  4643. ret = target_diff(work->hash);
  4644. cg_wlock(&control_lock);
  4645. if (unlikely(ret > best_diff)) {
  4646. new_best = true;
  4647. best_diff = ret;
  4648. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4649. }
  4650. if (unlikely(ret > work->pool->best_diff))
  4651. work->pool->best_diff = ret;
  4652. cg_wunlock(&control_lock);
  4653. if (unlikely(new_best))
  4654. applog(LOG_INFO, "New best share: %s", best_share);
  4655. return ret;
  4656. }
  4657. static void regen_hash(struct work *work)
  4658. {
  4659. hash_data(work->hash, work->data);
  4660. }
  4661. static void rebuild_hash(struct work *work)
  4662. {
  4663. if (opt_scrypt)
  4664. scrypt_regenhash(work);
  4665. else
  4666. regen_hash(work);
  4667. work->share_diff = share_diff(work);
  4668. if (unlikely(work->share_diff >= current_diff)) {
  4669. work->block = true;
  4670. work->pool->solved++;
  4671. found_blocks++;
  4672. work->mandatory = true;
  4673. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4674. }
  4675. }
  4676. static void submit_discard_share2(const char *reason, struct work *work)
  4677. {
  4678. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4679. sharelog(reason, work);
  4680. mutex_lock(&stats_lock);
  4681. ++total_stale;
  4682. ++cgpu->stale;
  4683. ++(work->pool->stale_shares);
  4684. total_diff_stale += work->work_difficulty;
  4685. cgpu->diff_stale += work->work_difficulty;
  4686. work->pool->diff_stale += work->work_difficulty;
  4687. mutex_unlock(&stats_lock);
  4688. }
  4689. static void submit_discard_share(struct work *work)
  4690. {
  4691. submit_discard_share2("discard", work);
  4692. }
  4693. struct submit_work_state {
  4694. struct work *work;
  4695. bool resubmit;
  4696. struct curl_ent *ce;
  4697. int failures;
  4698. struct timeval tv_staleexpire;
  4699. char *s;
  4700. struct timeval tv_submit;
  4701. struct submit_work_state *next;
  4702. };
  4703. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4704. {
  4705. long *p_timeout_us = userp;
  4706. const long max_ms = LONG_MAX / 1000;
  4707. if (max_ms < timeout_ms)
  4708. timeout_ms = max_ms;
  4709. *p_timeout_us = timeout_ms * 1000;
  4710. return 0;
  4711. }
  4712. static void sws_has_ce(struct submit_work_state *sws)
  4713. {
  4714. struct pool *pool = sws->work->pool;
  4715. sws->s = submit_upstream_work_request(sws->work);
  4716. cgtime(&sws->tv_submit);
  4717. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4718. }
  4719. static struct submit_work_state *begin_submission(struct work *work)
  4720. {
  4721. struct pool *pool;
  4722. struct submit_work_state *sws = NULL;
  4723. pool = work->pool;
  4724. sws = malloc(sizeof(*sws));
  4725. *sws = (struct submit_work_state){
  4726. .work = work,
  4727. };
  4728. rebuild_hash(work);
  4729. if (stale_work(work, true)) {
  4730. work->stale = true;
  4731. if (opt_submit_stale)
  4732. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4733. else if (pool->submit_old)
  4734. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4735. else {
  4736. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4737. submit_discard_share(work);
  4738. goto out;
  4739. }
  4740. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4741. }
  4742. if (work->stratum) {
  4743. char *s;
  4744. s = malloc(1024);
  4745. sws->s = s;
  4746. } else {
  4747. /* submit solution to bitcoin via JSON-RPC */
  4748. sws->ce = pop_curl_entry2(pool, false);
  4749. if (sws->ce) {
  4750. sws_has_ce(sws);
  4751. } else {
  4752. sws->next = pool->sws_waiting_on_curl;
  4753. pool->sws_waiting_on_curl = sws;
  4754. if (sws->next)
  4755. applog(LOG_DEBUG, "submit_thread queuing submission");
  4756. else
  4757. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4758. }
  4759. }
  4760. return sws;
  4761. out:
  4762. free(sws);
  4763. return NULL;
  4764. }
  4765. static bool retry_submission(struct submit_work_state *sws)
  4766. {
  4767. struct work *work = sws->work;
  4768. struct pool *pool = work->pool;
  4769. sws->resubmit = true;
  4770. if ((!work->stale) && stale_work(work, true)) {
  4771. work->stale = true;
  4772. if (opt_submit_stale)
  4773. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4774. else if (pool->submit_old)
  4775. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4776. else {
  4777. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4778. submit_discard_share(work);
  4779. return false;
  4780. }
  4781. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4782. }
  4783. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4784. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4785. submit_discard_share(work);
  4786. return false;
  4787. }
  4788. else if (work->stale) {
  4789. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4790. {
  4791. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4792. submit_discard_share(work);
  4793. return false;
  4794. }
  4795. }
  4796. /* pause, then restart work-request loop */
  4797. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4798. cgtime(&sws->tv_submit);
  4799. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4800. return true;
  4801. }
  4802. static void free_sws(struct submit_work_state *sws)
  4803. {
  4804. free(sws->s);
  4805. free_work(sws->work);
  4806. free(sws);
  4807. }
  4808. static void *submit_work_thread(__maybe_unused void *userdata)
  4809. {
  4810. int wip = 0;
  4811. CURLM *curlm;
  4812. long curlm_timeout_us = -1;
  4813. struct timeval curlm_timer;
  4814. struct submit_work_state *sws, **swsp;
  4815. struct submit_work_state *write_sws = NULL;
  4816. unsigned tsreduce = 0;
  4817. pthread_detach(pthread_self());
  4818. RenameThread("submit_work");
  4819. applog(LOG_DEBUG, "Creating extra submit work thread");
  4820. curlm = curl_multi_init();
  4821. curlm_timeout_us = -1;
  4822. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4823. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4824. fd_set rfds, wfds, efds;
  4825. int maxfd;
  4826. struct timeval tv_timeout, tv_now;
  4827. int n;
  4828. CURLMsg *cm;
  4829. FD_ZERO(&rfds);
  4830. while (1) {
  4831. mutex_lock(&submitting_lock);
  4832. total_submitting -= tsreduce;
  4833. tsreduce = 0;
  4834. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4835. notifier_read(submit_waiting_notifier);
  4836. }
  4837. // Receive any new submissions
  4838. while (submit_waiting) {
  4839. struct work *work = submit_waiting;
  4840. DL_DELETE(submit_waiting, work);
  4841. if ( (sws = begin_submission(work)) ) {
  4842. if (sws->ce)
  4843. curl_multi_add_handle(curlm, sws->ce->curl);
  4844. else if (sws->s) {
  4845. sws->next = write_sws;
  4846. write_sws = sws;
  4847. }
  4848. ++wip;
  4849. }
  4850. else {
  4851. --total_submitting;
  4852. free_work(work);
  4853. }
  4854. }
  4855. if (unlikely(shutting_down && !wip))
  4856. break;
  4857. mutex_unlock(&submitting_lock);
  4858. FD_ZERO(&rfds);
  4859. FD_ZERO(&wfds);
  4860. FD_ZERO(&efds);
  4861. tv_timeout.tv_sec = -1;
  4862. // Setup cURL with select
  4863. // Need to call perform to ensure the timeout gets updated
  4864. curl_multi_perform(curlm, &n);
  4865. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4866. if (curlm_timeout_us >= 0)
  4867. {
  4868. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4869. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4870. }
  4871. // Setup waiting stratum submissions with select
  4872. for (sws = write_sws; sws; sws = sws->next)
  4873. {
  4874. struct pool *pool = sws->work->pool;
  4875. int fd = pool->sock;
  4876. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4877. continue;
  4878. FD_SET(fd, &wfds);
  4879. set_maxfd(&maxfd, fd);
  4880. }
  4881. // Setup "submit waiting" notifier with select
  4882. FD_SET(submit_waiting_notifier[0], &rfds);
  4883. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4884. // Wait for something interesting to happen :)
  4885. cgtime(&tv_now);
  4886. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4887. FD_ZERO(&rfds);
  4888. continue;
  4889. }
  4890. // Handle any stratum ready-to-write results
  4891. for (swsp = &write_sws; (sws = *swsp); ) {
  4892. struct work *work = sws->work;
  4893. struct pool *pool = work->pool;
  4894. int fd = pool->sock;
  4895. bool sessionid_match;
  4896. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4897. next_write_sws:
  4898. // TODO: Check if stale, possibly discard etc
  4899. swsp = &sws->next;
  4900. continue;
  4901. }
  4902. cg_rlock(&pool->data_lock);
  4903. // 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
  4904. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4905. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4906. cg_runlock(&pool->data_lock);
  4907. if (!sessionid_match)
  4908. {
  4909. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4910. submit_discard_share2("disconnect", work);
  4911. ++tsreduce;
  4912. next_write_sws_del:
  4913. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4914. FD_CLR(fd, &wfds);
  4915. // Delete sws for this submission, since we're done with it
  4916. *swsp = sws->next;
  4917. free_sws(sws);
  4918. --wip;
  4919. continue;
  4920. }
  4921. char *s = sws->s;
  4922. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4923. int sshare_id;
  4924. uint32_t nonce;
  4925. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4926. char noncehex[9];
  4927. char ntimehex[9];
  4928. sshare->work = copy_work(work);
  4929. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4930. nonce = *((uint32_t *)(work->data + 76));
  4931. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  4932. bin2hex(ntimehex, (void *)&work->data[68], 4);
  4933. mutex_lock(&sshare_lock);
  4934. /* Give the stratum share a unique id */
  4935. sshare_id =
  4936. sshare->id = swork_id++;
  4937. HASH_ADD_INT(stratum_shares, id, sshare);
  4938. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  4939. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  4940. mutex_unlock(&sshare_lock);
  4941. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  4942. if (likely(stratum_send(pool, s, strlen(s)))) {
  4943. if (pool_tclear(pool, &pool->submit_fail))
  4944. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4945. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  4946. goto next_write_sws_del;
  4947. } else if (!pool_tset(pool, &pool->submit_fail)) {
  4948. // Undo stuff
  4949. mutex_lock(&sshare_lock);
  4950. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  4951. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  4952. if (sshare)
  4953. HASH_DEL(stratum_shares, sshare);
  4954. mutex_unlock(&sshare_lock);
  4955. if (sshare)
  4956. {
  4957. free_work(sshare->work);
  4958. free(sshare);
  4959. }
  4960. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  4961. total_ro++;
  4962. pool->remotefail_occasions++;
  4963. if (!sshare)
  4964. goto next_write_sws_del;
  4965. goto next_write_sws;
  4966. }
  4967. }
  4968. // Handle any cURL activities
  4969. curl_multi_perform(curlm, &n);
  4970. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  4971. if (cm->msg == CURLMSG_DONE)
  4972. {
  4973. bool finished;
  4974. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  4975. curl_multi_remove_handle(curlm, cm->easy_handle);
  4976. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  4977. if (!finished) {
  4978. if (retry_submission(sws))
  4979. curl_multi_add_handle(curlm, sws->ce->curl);
  4980. else
  4981. finished = true;
  4982. }
  4983. if (finished) {
  4984. --wip;
  4985. ++tsreduce;
  4986. struct pool *pool = sws->work->pool;
  4987. if (pool->sws_waiting_on_curl) {
  4988. pool->sws_waiting_on_curl->ce = sws->ce;
  4989. sws_has_ce(pool->sws_waiting_on_curl);
  4990. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  4991. curl_multi_add_handle(curlm, sws->ce->curl);
  4992. } else {
  4993. push_curl_entry(sws->ce, sws->work->pool);
  4994. }
  4995. free_sws(sws);
  4996. }
  4997. }
  4998. }
  4999. }
  5000. assert(!write_sws);
  5001. mutex_unlock(&submitting_lock);
  5002. curl_multi_cleanup(curlm);
  5003. applog(LOG_DEBUG, "submit_work thread exiting");
  5004. return NULL;
  5005. }
  5006. /* Find the pool that currently has the highest priority */
  5007. static struct pool *priority_pool(int choice)
  5008. {
  5009. struct pool *ret = NULL;
  5010. int i;
  5011. for (i = 0; i < total_pools; i++) {
  5012. struct pool *pool = pools[i];
  5013. if (pool->prio == choice) {
  5014. ret = pool;
  5015. break;
  5016. }
  5017. }
  5018. if (unlikely(!ret)) {
  5019. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5020. return pools[choice];
  5021. }
  5022. return ret;
  5023. }
  5024. int prioritize_pools(char *param, int *pid)
  5025. {
  5026. char *ptr, *next;
  5027. int i, pr, prio = 0;
  5028. if (total_pools == 0) {
  5029. return MSG_NOPOOL;
  5030. }
  5031. if (param == NULL || *param == '\0') {
  5032. return MSG_MISPID;
  5033. }
  5034. bool pools_changed[total_pools];
  5035. int new_prio[total_pools];
  5036. for (i = 0; i < total_pools; ++i)
  5037. pools_changed[i] = false;
  5038. next = param;
  5039. while (next && *next) {
  5040. ptr = next;
  5041. next = strchr(ptr, ',');
  5042. if (next)
  5043. *(next++) = '\0';
  5044. i = atoi(ptr);
  5045. if (i < 0 || i >= total_pools) {
  5046. *pid = i;
  5047. return MSG_INVPID;
  5048. }
  5049. if (pools_changed[i]) {
  5050. *pid = i;
  5051. return MSG_DUPPID;
  5052. }
  5053. pools_changed[i] = true;
  5054. new_prio[i] = prio++;
  5055. }
  5056. // Only change them if no errors
  5057. for (i = 0; i < total_pools; i++) {
  5058. if (pools_changed[i])
  5059. pools[i]->prio = new_prio[i];
  5060. }
  5061. // In priority order, cycle through the unchanged pools and append them
  5062. for (pr = 0; pr < total_pools; pr++)
  5063. for (i = 0; i < total_pools; i++) {
  5064. if (!pools_changed[i] && pools[i]->prio == pr) {
  5065. pools[i]->prio = prio++;
  5066. pools_changed[i] = true;
  5067. break;
  5068. }
  5069. }
  5070. if (current_pool()->prio)
  5071. switch_pools(NULL);
  5072. return MSG_POOLPRIO;
  5073. }
  5074. void validate_pool_priorities(void)
  5075. {
  5076. // TODO: this should probably do some sort of logging
  5077. int i, j;
  5078. bool used[total_pools];
  5079. bool valid[total_pools];
  5080. for (i = 0; i < total_pools; i++)
  5081. used[i] = valid[i] = false;
  5082. for (i = 0; i < total_pools; i++) {
  5083. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5084. if (!used[pools[i]->prio]) {
  5085. valid[i] = true;
  5086. used[pools[i]->prio] = true;
  5087. }
  5088. }
  5089. }
  5090. for (i = 0; i < total_pools; i++) {
  5091. if (!valid[i]) {
  5092. for (j = 0; j < total_pools; j++) {
  5093. if (!used[j]) {
  5094. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5095. pools[i]->prio = j;
  5096. used[j] = true;
  5097. break;
  5098. }
  5099. }
  5100. }
  5101. }
  5102. }
  5103. static void clear_pool_work(struct pool *pool);
  5104. /* Specifies whether we can switch to this pool or not. */
  5105. static bool pool_unusable(struct pool *pool)
  5106. {
  5107. if (pool->idle)
  5108. return true;
  5109. if (pool->enabled != POOL_ENABLED)
  5110. return true;
  5111. return false;
  5112. }
  5113. void switch_pools(struct pool *selected)
  5114. {
  5115. struct pool *pool, *last_pool;
  5116. int i, pool_no, next_pool;
  5117. cg_wlock(&control_lock);
  5118. last_pool = currentpool;
  5119. pool_no = currentpool->pool_no;
  5120. /* Switch selected to pool number 0 and move the rest down */
  5121. if (selected) {
  5122. if (selected->prio != 0) {
  5123. for (i = 0; i < total_pools; i++) {
  5124. pool = pools[i];
  5125. if (pool->prio < selected->prio)
  5126. pool->prio++;
  5127. }
  5128. selected->prio = 0;
  5129. }
  5130. }
  5131. switch (pool_strategy) {
  5132. /* All of these set to the master pool */
  5133. case POOL_BALANCE:
  5134. case POOL_FAILOVER:
  5135. case POOL_LOADBALANCE:
  5136. for (i = 0; i < total_pools; i++) {
  5137. pool = priority_pool(i);
  5138. if (pool_unusable(pool))
  5139. continue;
  5140. pool_no = pool->pool_no;
  5141. break;
  5142. }
  5143. break;
  5144. /* Both of these simply increment and cycle */
  5145. case POOL_ROUNDROBIN:
  5146. case POOL_ROTATE:
  5147. if (selected && !selected->idle) {
  5148. pool_no = selected->pool_no;
  5149. break;
  5150. }
  5151. next_pool = pool_no;
  5152. /* Select the next alive pool */
  5153. for (i = 1; i < total_pools; i++) {
  5154. next_pool++;
  5155. if (next_pool >= total_pools)
  5156. next_pool = 0;
  5157. pool = pools[next_pool];
  5158. if (pool_unusable(pool))
  5159. continue;
  5160. pool_no = next_pool;
  5161. break;
  5162. }
  5163. break;
  5164. default:
  5165. break;
  5166. }
  5167. currentpool = pools[pool_no];
  5168. pool = currentpool;
  5169. cg_wunlock(&control_lock);
  5170. /* Set the lagging flag to avoid pool not providing work fast enough
  5171. * messages in failover only mode since we have to get all fresh work
  5172. * as in restart_threads */
  5173. if (opt_fail_only)
  5174. pool_tset(pool, &pool->lagging);
  5175. if (pool != last_pool)
  5176. {
  5177. pool->block_id = 0;
  5178. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5179. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5180. if (pool_localgen(pool) || opt_fail_only)
  5181. clear_pool_work(last_pool);
  5182. }
  5183. }
  5184. mutex_lock(&lp_lock);
  5185. pthread_cond_broadcast(&lp_cond);
  5186. mutex_unlock(&lp_lock);
  5187. }
  5188. static void discard_work(struct work *work)
  5189. {
  5190. if (!work->clone && !work->rolls && !work->mined) {
  5191. if (work->pool) {
  5192. work->pool->discarded_work++;
  5193. work->pool->quota_used--;
  5194. work->pool->works--;
  5195. }
  5196. total_discarded++;
  5197. applog(LOG_DEBUG, "Discarded work");
  5198. } else
  5199. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5200. free_work(work);
  5201. }
  5202. static void wake_gws(void)
  5203. {
  5204. mutex_lock(stgd_lock);
  5205. pthread_cond_signal(&gws_cond);
  5206. mutex_unlock(stgd_lock);
  5207. }
  5208. static void discard_stale(void)
  5209. {
  5210. struct work *work, *tmp;
  5211. int stale = 0;
  5212. mutex_lock(stgd_lock);
  5213. HASH_ITER(hh, staged_work, work, tmp) {
  5214. if (stale_work(work, false)) {
  5215. HASH_DEL(staged_work, work);
  5216. discard_work(work);
  5217. stale++;
  5218. staged_full = false;
  5219. }
  5220. }
  5221. pthread_cond_signal(&gws_cond);
  5222. mutex_unlock(stgd_lock);
  5223. if (stale)
  5224. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5225. }
  5226. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5227. {
  5228. bool rv;
  5229. struct timeval tv, orig;
  5230. ldiv_t d;
  5231. d = ldiv(ustime, 1000000);
  5232. tv = (struct timeval){
  5233. .tv_sec = d.quot,
  5234. .tv_usec = d.rem,
  5235. };
  5236. orig = work->tv_staged;
  5237. timersub(&orig, &tv, &work->tv_staged);
  5238. rv = stale_work(work, share);
  5239. work->tv_staged = orig;
  5240. return rv;
  5241. }
  5242. static void restart_threads(void)
  5243. {
  5244. struct pool *cp = current_pool();
  5245. int i;
  5246. struct thr_info *thr;
  5247. /* Artificially set the lagging flag to avoid pool not providing work
  5248. * fast enough messages after every long poll */
  5249. pool_tset(cp, &cp->lagging);
  5250. /* Discard staged work that is now stale */
  5251. discard_stale();
  5252. rd_lock(&mining_thr_lock);
  5253. for (i = 0; i < mining_threads; i++)
  5254. {
  5255. thr = mining_thr[i];
  5256. thr->work_restart = true;
  5257. }
  5258. for (i = 0; i < mining_threads; i++)
  5259. {
  5260. thr = mining_thr[i];
  5261. notifier_wake(thr->work_restart_notifier);
  5262. }
  5263. rd_unlock(&mining_thr_lock);
  5264. }
  5265. static
  5266. void blkhashstr(char *rv, const unsigned char *hash)
  5267. {
  5268. unsigned char hash_swap[32];
  5269. swap256(hash_swap, hash);
  5270. swap32tole(hash_swap, hash_swap, 32 / 4);
  5271. bin2hex(rv, hash_swap, 32);
  5272. }
  5273. static void set_curblock(char *hexstr, unsigned char *hash)
  5274. {
  5275. unsigned char hash_swap[32];
  5276. current_block_id = ((uint32_t*)hash)[0];
  5277. strcpy(current_block, hexstr);
  5278. swap256(hash_swap, hash);
  5279. swap32tole(hash_swap, hash_swap, 32 / 4);
  5280. cg_wlock(&ch_lock);
  5281. block_time = time(NULL);
  5282. __update_block_title(hash_swap);
  5283. free(current_fullhash);
  5284. current_fullhash = malloc(65);
  5285. bin2hex(current_fullhash, hash_swap, 32);
  5286. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5287. cg_wunlock(&ch_lock);
  5288. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5289. }
  5290. /* Search to see if this string is from a block that has been seen before */
  5291. static bool block_exists(char *hexstr)
  5292. {
  5293. struct block *s;
  5294. rd_lock(&blk_lock);
  5295. HASH_FIND_STR(blocks, hexstr, s);
  5296. rd_unlock(&blk_lock);
  5297. if (s)
  5298. return true;
  5299. return false;
  5300. }
  5301. /* Tests if this work is from a block that has been seen before */
  5302. static inline bool from_existing_block(struct work *work)
  5303. {
  5304. char hexstr[37];
  5305. bool ret;
  5306. bin2hex(hexstr, work->data + 8, 18);
  5307. ret = block_exists(hexstr);
  5308. return ret;
  5309. }
  5310. static int block_sort(struct block *blocka, struct block *blockb)
  5311. {
  5312. return blocka->block_no - blockb->block_no;
  5313. }
  5314. static void set_blockdiff(const struct work *work)
  5315. {
  5316. unsigned char target[32];
  5317. double diff;
  5318. uint64_t diff64;
  5319. real_block_target(target, work->data);
  5320. diff = target_diff(target);
  5321. diff64 = diff;
  5322. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5323. format_unit2(net_hashrate, sizeof(net_hashrate),
  5324. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5325. if (unlikely(current_diff != diff))
  5326. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5327. current_diff = diff;
  5328. }
  5329. static bool test_work_current(struct work *work)
  5330. {
  5331. bool ret = true;
  5332. char hexstr[65];
  5333. if (work->mandatory)
  5334. return ret;
  5335. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5336. /* Hack to work around dud work sneaking into test */
  5337. bin2hex(hexstr, work->data + 8, 18);
  5338. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5339. goto out_free;
  5340. /* Search to see if this block exists yet and if not, consider it a
  5341. * new block and set the current block details to this one */
  5342. if (!block_exists(hexstr)) {
  5343. struct block *s = calloc(sizeof(struct block), 1);
  5344. int deleted_block = 0;
  5345. ret = false;
  5346. if (unlikely(!s))
  5347. quit (1, "test_work_current OOM");
  5348. strcpy(s->hash, hexstr);
  5349. s->block_no = new_blocks++;
  5350. wr_lock(&blk_lock);
  5351. /* Only keep the last hour's worth of blocks in memory since
  5352. * work from blocks before this is virtually impossible and we
  5353. * want to prevent memory usage from continually rising */
  5354. if (HASH_COUNT(blocks) > 6) {
  5355. struct block *oldblock;
  5356. HASH_SORT(blocks, block_sort);
  5357. oldblock = blocks;
  5358. deleted_block = oldblock->block_no;
  5359. HASH_DEL(blocks, oldblock);
  5360. free(oldblock);
  5361. }
  5362. HASH_ADD_STR(blocks, hash, s);
  5363. set_blockdiff(work);
  5364. wr_unlock(&blk_lock);
  5365. work->pool->block_id = block_id;
  5366. if (deleted_block)
  5367. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5368. #if BLKMAKER_VERSION > 1
  5369. template_nonce = 0;
  5370. #endif
  5371. set_curblock(hexstr, &work->data[4]);
  5372. if (unlikely(new_blocks == 1))
  5373. goto out_free;
  5374. if (!work->stratum) {
  5375. if (work->longpoll) {
  5376. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5377. work->pool->pool_no);
  5378. } else if (have_longpoll)
  5379. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5380. else
  5381. applog(LOG_NOTICE, "New block detected on network");
  5382. }
  5383. restart_threads();
  5384. } else {
  5385. bool restart = false;
  5386. struct pool *curpool = NULL;
  5387. if (unlikely(work->pool->block_id != block_id)) {
  5388. bool was_active = work->pool->block_id != 0;
  5389. work->pool->block_id = block_id;
  5390. if (!work->longpoll)
  5391. update_last_work(work);
  5392. if (was_active) { // Pool actively changed block
  5393. if (work->pool == (curpool = current_pool()))
  5394. restart = true;
  5395. if (block_id == current_block_id) {
  5396. // Caught up, only announce if this pool is the one in use
  5397. if (restart)
  5398. applog(LOG_NOTICE, "%s %d caught up to new block",
  5399. work->longpoll ? "Longpoll from pool" : "Pool",
  5400. work->pool->pool_no);
  5401. } else {
  5402. // Switched to a block we know, but not the latest... why?
  5403. // This might detect pools trying to double-spend or 51%,
  5404. // but let's not make any accusations until it's had time
  5405. // in the real world.
  5406. blkhashstr(hexstr, &work->data[4]);
  5407. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5408. work->longpoll ? "Longpoll from pool" : "Pool",
  5409. work->pool->pool_no,
  5410. hexstr);
  5411. }
  5412. }
  5413. }
  5414. if (work->longpoll) {
  5415. ++work->pool->work_restart_id;
  5416. update_last_work(work);
  5417. if ((!restart) && work->pool == current_pool()) {
  5418. applog(
  5419. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5420. "Longpoll from pool %d requested work update",
  5421. work->pool->pool_no);
  5422. restart = true;
  5423. }
  5424. }
  5425. if (restart)
  5426. restart_threads();
  5427. }
  5428. work->longpoll = false;
  5429. out_free:
  5430. return ret;
  5431. }
  5432. static int tv_sort(struct work *worka, struct work *workb)
  5433. {
  5434. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5435. }
  5436. static bool work_rollable(struct work *work)
  5437. {
  5438. return (!work->clone && work->rolltime);
  5439. }
  5440. static bool hash_push(struct work *work)
  5441. {
  5442. bool rc = true;
  5443. mutex_lock(stgd_lock);
  5444. if (work_rollable(work))
  5445. staged_rollable++;
  5446. if (likely(!getq->frozen)) {
  5447. HASH_ADD_INT(staged_work, id, work);
  5448. HASH_SORT(staged_work, tv_sort);
  5449. } else
  5450. rc = false;
  5451. pthread_cond_broadcast(&getq->cond);
  5452. mutex_unlock(stgd_lock);
  5453. return rc;
  5454. }
  5455. static void stage_work(struct work *work)
  5456. {
  5457. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5458. work->id, work->pool->pool_no);
  5459. work->work_restart_id = work->pool->work_restart_id;
  5460. work->pool->last_work_time = time(NULL);
  5461. cgtime(&work->pool->tv_last_work_time);
  5462. test_work_current(work);
  5463. work->pool->works++;
  5464. hash_push(work);
  5465. }
  5466. #ifdef HAVE_CURSES
  5467. int curses_int(const char *query)
  5468. {
  5469. int ret;
  5470. char *cvar;
  5471. cvar = curses_input(query);
  5472. if (unlikely(!cvar))
  5473. return -1;
  5474. ret = atoi(cvar);
  5475. free(cvar);
  5476. return ret;
  5477. }
  5478. #endif
  5479. #ifdef HAVE_CURSES
  5480. static bool input_pool(bool live);
  5481. #endif
  5482. #ifdef HAVE_CURSES
  5483. static void display_pool_summary(struct pool *pool)
  5484. {
  5485. double efficiency = 0.0;
  5486. char xfer[17], bw[19];
  5487. int pool_secs;
  5488. if (curses_active_locked()) {
  5489. wlog("Pool: %s\n", pool->rpc_url);
  5490. if (pool->solved)
  5491. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5492. if (!pool->has_stratum)
  5493. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5494. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5495. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5496. wlog(" Accepted shares: %d\n", pool->accepted);
  5497. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5498. pool->rejected, pool->stale_shares,
  5499. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5500. );
  5501. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5502. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5503. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5504. wlog(" Network transfer: %s (%s)\n",
  5505. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5506. (float)pool->cgminer_pool_stats.net_bytes_received,
  5507. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5508. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5509. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5510. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5511. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5512. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5513. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5514. wlog(" Items worked on: %d\n", pool->works);
  5515. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5516. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5517. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5518. unlock_curses();
  5519. }
  5520. }
  5521. #endif
  5522. /* We can't remove the memory used for this struct pool because there may
  5523. * still be work referencing it. We just remove it from the pools list */
  5524. void remove_pool(struct pool *pool)
  5525. {
  5526. int i, last_pool = total_pools - 1;
  5527. struct pool *other;
  5528. /* Boost priority of any lower prio than this one */
  5529. for (i = 0; i < total_pools; i++) {
  5530. other = pools[i];
  5531. if (other->prio > pool->prio)
  5532. other->prio--;
  5533. }
  5534. if (pool->pool_no < last_pool) {
  5535. /* Swap the last pool for this one */
  5536. (pools[last_pool])->pool_no = pool->pool_no;
  5537. pools[pool->pool_no] = pools[last_pool];
  5538. }
  5539. /* Give it an invalid number */
  5540. pool->pool_no = total_pools;
  5541. pool->removed = true;
  5542. pool->has_stratum = false;
  5543. total_pools--;
  5544. }
  5545. /* add a mutex if this needs to be thread safe in the future */
  5546. static struct JE {
  5547. char *buf;
  5548. struct JE *next;
  5549. } *jedata = NULL;
  5550. static void json_escape_free()
  5551. {
  5552. struct JE *jeptr = jedata;
  5553. struct JE *jenext;
  5554. jedata = NULL;
  5555. while (jeptr) {
  5556. jenext = jeptr->next;
  5557. free(jeptr->buf);
  5558. free(jeptr);
  5559. jeptr = jenext;
  5560. }
  5561. }
  5562. static
  5563. char *json_escape(const char *str)
  5564. {
  5565. struct JE *jeptr;
  5566. char *buf, *ptr;
  5567. /* 2x is the max, may as well just allocate that */
  5568. ptr = buf = malloc(strlen(str) * 2 + 1);
  5569. jeptr = malloc(sizeof(*jeptr));
  5570. jeptr->buf = buf;
  5571. jeptr->next = jedata;
  5572. jedata = jeptr;
  5573. while (*str) {
  5574. if (*str == '\\' || *str == '"')
  5575. *(ptr++) = '\\';
  5576. *(ptr++) = *(str++);
  5577. }
  5578. *ptr = '\0';
  5579. return buf;
  5580. }
  5581. static
  5582. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5583. {
  5584. if (!elist)
  5585. return;
  5586. static struct string_elist *entry;
  5587. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5588. bool first = true;
  5589. DL_FOREACH(elist, entry)
  5590. {
  5591. const char * const s = entry->string;
  5592. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5593. first = false;
  5594. }
  5595. fprintf(fcfg, "\n]");
  5596. }
  5597. void write_config(FILE *fcfg)
  5598. {
  5599. int i;
  5600. /* Write pool values */
  5601. fputs("{\n\"pools\" : [", fcfg);
  5602. for(i = 0; i < total_pools; i++) {
  5603. struct pool *pool = pools[i];
  5604. if (pool->quota != 1) {
  5605. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5606. pool->quota,
  5607. json_escape(pool->rpc_url));
  5608. } else {
  5609. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5610. json_escape(pool->rpc_url));
  5611. }
  5612. if (pool->rpc_proxy)
  5613. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5614. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5615. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5616. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5617. if (pool->force_rollntime)
  5618. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5619. fprintf(fcfg, "\n\t}");
  5620. }
  5621. fputs("\n]\n", fcfg);
  5622. #ifdef HAVE_OPENCL
  5623. if (nDevs) {
  5624. /* Write GPU device values */
  5625. fputs(",\n\"intensity\" : \"", fcfg);
  5626. for(i = 0; i < nDevs; i++)
  5627. {
  5628. if (i > 0)
  5629. fputc(',', fcfg);
  5630. if (gpus[i].dynamic)
  5631. fputc('d', fcfg);
  5632. else
  5633. fprintf(fcfg, "%d", gpus[i].intensity);
  5634. }
  5635. fputs("\",\n\"vectors\" : \"", fcfg);
  5636. for(i = 0; i < nDevs; i++)
  5637. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5638. gpus[i].vwidth);
  5639. fputs("\",\n\"worksize\" : \"", fcfg);
  5640. for(i = 0; i < nDevs; i++)
  5641. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5642. (int)gpus[i].work_size);
  5643. fputs("\",\n\"kernel\" : \"", fcfg);
  5644. for(i = 0; i < nDevs; i++) {
  5645. fprintf(fcfg, "%s", i > 0 ? "," : "");
  5646. switch (gpus[i].kernel) {
  5647. case KL_NONE: // Shouldn't happen
  5648. break;
  5649. case KL_POCLBM:
  5650. fprintf(fcfg, "poclbm");
  5651. break;
  5652. case KL_PHATK:
  5653. fprintf(fcfg, "phatk");
  5654. break;
  5655. case KL_DIAKGCN:
  5656. fprintf(fcfg, "diakgcn");
  5657. break;
  5658. case KL_DIABLO:
  5659. fprintf(fcfg, "diablo");
  5660. break;
  5661. case KL_SCRYPT:
  5662. fprintf(fcfg, "scrypt");
  5663. break;
  5664. }
  5665. }
  5666. #ifdef USE_SCRYPT
  5667. fputs("\",\n\"lookup-gap\" : \"", fcfg);
  5668. for(i = 0; i < nDevs; i++)
  5669. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5670. (int)gpus[i].opt_lg);
  5671. fputs("\",\n\"thread-concurrency\" : \"", fcfg);
  5672. for(i = 0; i < nDevs; i++)
  5673. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5674. (int)gpus[i].opt_tc);
  5675. fputs("\",\n\"shaders\" : \"", fcfg);
  5676. for(i = 0; i < nDevs; i++)
  5677. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5678. (int)gpus[i].shaders);
  5679. #endif
  5680. #ifdef HAVE_ADL
  5681. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  5682. for(i = 0; i < nDevs; i++)
  5683. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  5684. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  5685. for(i = 0; i < nDevs; i++)
  5686. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  5687. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  5688. for(i = 0; i < nDevs; i++)
  5689. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  5690. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  5691. for(i = 0; i < nDevs; i++)
  5692. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  5693. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  5694. for(i = 0; i < nDevs; i++)
  5695. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  5696. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  5697. for(i = 0; i < nDevs; i++)
  5698. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  5699. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  5700. for(i = 0; i < nDevs; i++)
  5701. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  5702. #endif
  5703. fputs("\"", fcfg);
  5704. }
  5705. #endif
  5706. #ifdef HAVE_ADL
  5707. if (opt_reorder)
  5708. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  5709. #endif
  5710. #ifdef WANT_CPUMINE
  5711. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5712. #endif
  5713. /* Simple bool and int options */
  5714. struct opt_table *opt;
  5715. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5716. char *p, *name = strdup(opt->names);
  5717. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5718. if (p[1] != '-')
  5719. continue;
  5720. if (opt->type & OPT_NOARG &&
  5721. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5722. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5723. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5724. if (opt->type & OPT_HASARG &&
  5725. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5726. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5727. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5728. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5729. opt->desc != opt_hidden &&
  5730. 0 <= *(int *)opt->u.arg)
  5731. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5732. }
  5733. }
  5734. /* Special case options */
  5735. if (request_target_str)
  5736. {
  5737. if (request_pdiff == (long)request_pdiff)
  5738. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5739. else
  5740. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5741. }
  5742. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  5743. if (pool_strategy == POOL_BALANCE)
  5744. fputs(",\n\"balance\" : true", fcfg);
  5745. if (pool_strategy == POOL_LOADBALANCE)
  5746. fputs(",\n\"load-balance\" : true", fcfg);
  5747. if (pool_strategy == POOL_ROUNDROBIN)
  5748. fputs(",\n\"round-robin\" : true", fcfg);
  5749. if (pool_strategy == POOL_ROTATE)
  5750. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5751. #if defined(unix) || defined(__APPLE__)
  5752. if (opt_stderr_cmd && *opt_stderr_cmd)
  5753. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5754. #endif // defined(unix)
  5755. if (opt_kernel_path && *opt_kernel_path) {
  5756. char *kpath = strdup(opt_kernel_path);
  5757. if (kpath[strlen(kpath)-1] == '/')
  5758. kpath[strlen(kpath)-1] = 0;
  5759. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5760. free(kpath);
  5761. }
  5762. if (schedstart.enable)
  5763. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5764. if (schedstop.enable)
  5765. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5766. if (opt_socks_proxy && *opt_socks_proxy)
  5767. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5768. _write_config_string_elist(fcfg, "scan", scan_devices);
  5769. #ifdef USE_LIBMICROHTTPD
  5770. if (httpsrv_port != -1)
  5771. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5772. #endif
  5773. #ifdef USE_LIBEVENT
  5774. if (stratumsrv_port != -1)
  5775. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5776. #endif
  5777. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5778. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5779. if (opt_api_allow)
  5780. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5781. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5782. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5783. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5784. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5785. if (*opt_api_mcast_des)
  5786. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5787. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5788. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5789. if (opt_api_groups)
  5790. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5791. fputs("\n}\n", fcfg);
  5792. json_escape_free();
  5793. }
  5794. void zero_bestshare(void)
  5795. {
  5796. int i;
  5797. best_diff = 0;
  5798. memset(best_share, 0, 8);
  5799. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5800. for (i = 0; i < total_pools; i++) {
  5801. struct pool *pool = pools[i];
  5802. pool->best_diff = 0;
  5803. }
  5804. }
  5805. void zero_stats(void)
  5806. {
  5807. int i;
  5808. applog(LOG_DEBUG, "Zeroing stats");
  5809. cgtime(&total_tv_start);
  5810. miner_started = total_tv_start;
  5811. total_rolling = 0;
  5812. total_mhashes_done = 0;
  5813. total_getworks = 0;
  5814. total_accepted = 0;
  5815. total_rejected = 0;
  5816. hw_errors = 0;
  5817. total_stale = 0;
  5818. total_discarded = 0;
  5819. total_bytes_rcvd = total_bytes_sent = 0;
  5820. new_blocks = 0;
  5821. local_work = 0;
  5822. total_go = 0;
  5823. total_ro = 0;
  5824. total_secs = 1.0;
  5825. total_diff1 = 0;
  5826. total_bad_diff1 = 0;
  5827. found_blocks = 0;
  5828. total_diff_accepted = 0;
  5829. total_diff_rejected = 0;
  5830. total_diff_stale = 0;
  5831. #ifdef HAVE_CURSES
  5832. awidth = rwidth = swidth = hwwidth = 1;
  5833. #endif
  5834. for (i = 0; i < total_pools; i++) {
  5835. struct pool *pool = pools[i];
  5836. pool->getwork_requested = 0;
  5837. pool->accepted = 0;
  5838. pool->rejected = 0;
  5839. pool->solved = 0;
  5840. pool->getwork_requested = 0;
  5841. pool->stale_shares = 0;
  5842. pool->discarded_work = 0;
  5843. pool->getfail_occasions = 0;
  5844. pool->remotefail_occasions = 0;
  5845. pool->last_share_time = 0;
  5846. pool->diff1 = 0;
  5847. pool->diff_accepted = 0;
  5848. pool->diff_rejected = 0;
  5849. pool->diff_stale = 0;
  5850. pool->last_share_diff = 0;
  5851. pool->cgminer_stats.start_tv = total_tv_start;
  5852. pool->cgminer_stats.getwork_calls = 0;
  5853. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5854. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5855. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5856. pool->cgminer_pool_stats.getwork_calls = 0;
  5857. pool->cgminer_pool_stats.getwork_attempts = 0;
  5858. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5859. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5860. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5861. pool->cgminer_pool_stats.min_diff = 0;
  5862. pool->cgminer_pool_stats.max_diff = 0;
  5863. pool->cgminer_pool_stats.min_diff_count = 0;
  5864. pool->cgminer_pool_stats.max_diff_count = 0;
  5865. pool->cgminer_pool_stats.times_sent = 0;
  5866. pool->cgminer_pool_stats.bytes_sent = 0;
  5867. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5868. pool->cgminer_pool_stats.times_received = 0;
  5869. pool->cgminer_pool_stats.bytes_received = 0;
  5870. pool->cgminer_pool_stats.net_bytes_received = 0;
  5871. }
  5872. zero_bestshare();
  5873. for (i = 0; i < total_devices; ++i) {
  5874. struct cgpu_info *cgpu = get_devices(i);
  5875. mutex_lock(&hash_lock);
  5876. cgpu->total_mhashes = 0;
  5877. cgpu->accepted = 0;
  5878. cgpu->rejected = 0;
  5879. cgpu->stale = 0;
  5880. cgpu->hw_errors = 0;
  5881. cgpu->utility = 0.0;
  5882. cgpu->utility_diff1 = 0;
  5883. cgpu->last_share_pool_time = 0;
  5884. cgpu->bad_diff1 = 0;
  5885. cgpu->diff1 = 0;
  5886. cgpu->diff_accepted = 0;
  5887. cgpu->diff_rejected = 0;
  5888. cgpu->diff_stale = 0;
  5889. cgpu->last_share_diff = 0;
  5890. cgpu->thread_fail_init_count = 0;
  5891. cgpu->thread_zero_hash_count = 0;
  5892. cgpu->thread_fail_queue_count = 0;
  5893. cgpu->dev_sick_idle_60_count = 0;
  5894. cgpu->dev_dead_idle_600_count = 0;
  5895. cgpu->dev_nostart_count = 0;
  5896. cgpu->dev_over_heat_count = 0;
  5897. cgpu->dev_thermal_cutoff_count = 0;
  5898. cgpu->dev_comms_error_count = 0;
  5899. cgpu->dev_throttle_count = 0;
  5900. cgpu->cgminer_stats.start_tv = total_tv_start;
  5901. cgpu->cgminer_stats.getwork_calls = 0;
  5902. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5903. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5904. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5905. mutex_unlock(&hash_lock);
  5906. }
  5907. }
  5908. #ifdef HAVE_CURSES
  5909. static
  5910. void loginput_mode(const int size)
  5911. {
  5912. clear_logwin();
  5913. loginput_size = size;
  5914. check_winsizes();
  5915. }
  5916. static void display_pools(void)
  5917. {
  5918. struct pool *pool;
  5919. int selected, i, j;
  5920. char input;
  5921. loginput_mode(7 + total_pools);
  5922. immedok(logwin, true);
  5923. updated:
  5924. for (j = 0; j < total_pools; j++) {
  5925. for (i = 0; i < total_pools; i++) {
  5926. pool = pools[i];
  5927. if (pool->prio != j)
  5928. continue;
  5929. if (pool == current_pool())
  5930. wattron(logwin, A_BOLD);
  5931. if (pool->enabled != POOL_ENABLED)
  5932. wattron(logwin, A_DIM);
  5933. wlogprint("%d: ", pool->prio);
  5934. switch (pool->enabled) {
  5935. case POOL_ENABLED:
  5936. wlogprint("Enabled ");
  5937. break;
  5938. case POOL_DISABLED:
  5939. wlogprint("Disabled ");
  5940. break;
  5941. case POOL_REJECTING:
  5942. wlogprint("Rejectin ");
  5943. break;
  5944. }
  5945. if (pool->idle)
  5946. wlogprint("Dead ");
  5947. else
  5948. if (pool->has_stratum)
  5949. wlogprint("Strtm");
  5950. else
  5951. if (pool->lp_url && pool->proto != pool->lp_proto)
  5952. wlogprint("Mixed");
  5953. else
  5954. switch (pool->proto) {
  5955. case PLP_GETBLOCKTEMPLATE:
  5956. wlogprint(" GBT ");
  5957. break;
  5958. case PLP_GETWORK:
  5959. wlogprint("GWork");
  5960. break;
  5961. default:
  5962. wlogprint("Alive");
  5963. }
  5964. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  5965. pool->quota,
  5966. pool->pool_no,
  5967. pool->rpc_url, pool->rpc_user);
  5968. wattroff(logwin, A_BOLD | A_DIM);
  5969. break; //for (i = 0; i < total_pools; i++)
  5970. }
  5971. }
  5972. retry:
  5973. wlogprint("\nCurrent pool management strategy: %s\n",
  5974. strategies[pool_strategy].s);
  5975. if (pool_strategy == POOL_ROTATE)
  5976. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  5977. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  5978. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  5979. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  5980. wlogprint("Or press any other key to continue\n");
  5981. logwin_update();
  5982. input = getch();
  5983. if (!strncasecmp(&input, "a", 1)) {
  5984. input_pool(true);
  5985. goto updated;
  5986. } else if (!strncasecmp(&input, "r", 1)) {
  5987. if (total_pools <= 1) {
  5988. wlogprint("Cannot remove last pool");
  5989. goto retry;
  5990. }
  5991. selected = curses_int("Select pool number");
  5992. if (selected < 0 || selected >= total_pools) {
  5993. wlogprint("Invalid selection\n");
  5994. goto retry;
  5995. }
  5996. pool = pools[selected];
  5997. if (pool == current_pool())
  5998. switch_pools(NULL);
  5999. if (pool == current_pool()) {
  6000. wlogprint("Unable to remove pool due to activity\n");
  6001. goto retry;
  6002. }
  6003. disable_pool(pool);
  6004. remove_pool(pool);
  6005. goto updated;
  6006. } else if (!strncasecmp(&input, "s", 1)) {
  6007. selected = curses_int("Select pool number");
  6008. if (selected < 0 || selected >= total_pools) {
  6009. wlogprint("Invalid selection\n");
  6010. goto retry;
  6011. }
  6012. pool = pools[selected];
  6013. enable_pool(pool);
  6014. switch_pools(pool);
  6015. goto updated;
  6016. } else if (!strncasecmp(&input, "d", 1)) {
  6017. if (enabled_pools <= 1) {
  6018. wlogprint("Cannot disable last pool");
  6019. goto retry;
  6020. }
  6021. selected = curses_int("Select pool number");
  6022. if (selected < 0 || selected >= total_pools) {
  6023. wlogprint("Invalid selection\n");
  6024. goto retry;
  6025. }
  6026. pool = pools[selected];
  6027. disable_pool(pool);
  6028. if (pool == current_pool())
  6029. switch_pools(NULL);
  6030. goto updated;
  6031. } else if (!strncasecmp(&input, "e", 1)) {
  6032. selected = curses_int("Select pool number");
  6033. if (selected < 0 || selected >= total_pools) {
  6034. wlogprint("Invalid selection\n");
  6035. goto retry;
  6036. }
  6037. pool = pools[selected];
  6038. enable_pool(pool);
  6039. if (pool->prio < current_pool()->prio)
  6040. switch_pools(pool);
  6041. goto updated;
  6042. } else if (!strncasecmp(&input, "c", 1)) {
  6043. for (i = 0; i <= TOP_STRATEGY; i++)
  6044. wlogprint("%d: %s\n", i, strategies[i].s);
  6045. selected = curses_int("Select strategy number type");
  6046. if (selected < 0 || selected > TOP_STRATEGY) {
  6047. wlogprint("Invalid selection\n");
  6048. goto retry;
  6049. }
  6050. if (selected == POOL_ROTATE) {
  6051. opt_rotate_period = curses_int("Select interval in minutes");
  6052. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6053. opt_rotate_period = 0;
  6054. wlogprint("Invalid selection\n");
  6055. goto retry;
  6056. }
  6057. }
  6058. pool_strategy = selected;
  6059. switch_pools(NULL);
  6060. goto updated;
  6061. } else if (!strncasecmp(&input, "i", 1)) {
  6062. selected = curses_int("Select pool number");
  6063. if (selected < 0 || selected >= total_pools) {
  6064. wlogprint("Invalid selection\n");
  6065. goto retry;
  6066. }
  6067. pool = pools[selected];
  6068. display_pool_summary(pool);
  6069. goto retry;
  6070. } else if (!strncasecmp(&input, "q", 1)) {
  6071. selected = curses_int("Select pool number");
  6072. if (selected < 0 || selected >= total_pools) {
  6073. wlogprint("Invalid selection\n");
  6074. goto retry;
  6075. }
  6076. pool = pools[selected];
  6077. selected = curses_int("Set quota");
  6078. if (selected < 0) {
  6079. wlogprint("Invalid negative quota\n");
  6080. goto retry;
  6081. }
  6082. pool->quota = selected;
  6083. adjust_quota_gcd();
  6084. goto updated;
  6085. } else if (!strncasecmp(&input, "f", 1)) {
  6086. opt_fail_only ^= true;
  6087. goto updated;
  6088. } else if (!strncasecmp(&input, "p", 1)) {
  6089. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6090. if (!prilist)
  6091. {
  6092. wlogprint("Not changing priorities\n");
  6093. goto retry;
  6094. }
  6095. int res = prioritize_pools(prilist, &i);
  6096. free(prilist);
  6097. switch (res) {
  6098. case MSG_NOPOOL:
  6099. wlogprint("No pools\n");
  6100. goto retry;
  6101. case MSG_MISPID:
  6102. wlogprint("Missing pool id parameter\n");
  6103. goto retry;
  6104. case MSG_INVPID:
  6105. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6106. goto retry;
  6107. case MSG_DUPPID:
  6108. wlogprint("Duplicate pool specified %d\n", i);
  6109. goto retry;
  6110. case MSG_POOLPRIO:
  6111. default:
  6112. goto updated;
  6113. }
  6114. }
  6115. immedok(logwin, false);
  6116. loginput_mode(0);
  6117. }
  6118. static const char *summary_detail_level_str(void)
  6119. {
  6120. if (opt_compact)
  6121. return "compact";
  6122. if (opt_show_procs)
  6123. return "processors";
  6124. return "devices";
  6125. }
  6126. static void display_options(void)
  6127. {
  6128. int selected;
  6129. char input;
  6130. immedok(logwin, true);
  6131. loginput_mode(12);
  6132. retry:
  6133. clear_logwin();
  6134. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6135. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6136. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6137. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6138. opt_debug_console ? "on" : "off",
  6139. want_per_device_stats? "on" : "off",
  6140. opt_quiet ? "on" : "off",
  6141. opt_log_output ? "on" : "off",
  6142. opt_protocol ? "on" : "off",
  6143. opt_worktime ? "on" : "off",
  6144. summary_detail_level_str(),
  6145. opt_log_interval,
  6146. opt_weighed_stats ? "weighed" : "absolute");
  6147. wlogprint("Select an option or any other key to return\n");
  6148. logwin_update();
  6149. input = getch();
  6150. if (!strncasecmp(&input, "q", 1)) {
  6151. opt_quiet ^= true;
  6152. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6153. goto retry;
  6154. } else if (!strncasecmp(&input, "v", 1)) {
  6155. opt_log_output ^= true;
  6156. if (opt_log_output)
  6157. opt_quiet = false;
  6158. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6159. goto retry;
  6160. } else if (!strncasecmp(&input, "n", 1)) {
  6161. opt_log_output = false;
  6162. opt_debug_console = false;
  6163. opt_quiet = false;
  6164. opt_protocol = false;
  6165. opt_compact = false;
  6166. opt_show_procs = false;
  6167. devsummaryYOffset = 0;
  6168. want_per_device_stats = false;
  6169. wlogprint("Output mode reset to normal\n");
  6170. switch_logsize();
  6171. goto retry;
  6172. } else if (!strncasecmp(&input, "d", 1)) {
  6173. opt_debug = true;
  6174. opt_debug_console ^= true;
  6175. opt_log_output = opt_debug_console;
  6176. if (opt_debug_console)
  6177. opt_quiet = false;
  6178. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6179. goto retry;
  6180. } else if (!strncasecmp(&input, "m", 1)) {
  6181. if (opt_compact)
  6182. opt_compact = false;
  6183. else
  6184. if (!opt_show_procs)
  6185. opt_show_procs = true;
  6186. else
  6187. {
  6188. opt_compact = true;
  6189. opt_show_procs = false;
  6190. devsummaryYOffset = 0;
  6191. }
  6192. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6193. switch_logsize();
  6194. goto retry;
  6195. } else if (!strncasecmp(&input, "p", 1)) {
  6196. want_per_device_stats ^= true;
  6197. opt_log_output = want_per_device_stats;
  6198. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6199. goto retry;
  6200. } else if (!strncasecmp(&input, "r", 1)) {
  6201. opt_protocol ^= true;
  6202. if (opt_protocol)
  6203. opt_quiet = false;
  6204. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6205. goto retry;
  6206. } else if (!strncasecmp(&input, "c", 1))
  6207. clear_logwin();
  6208. else if (!strncasecmp(&input, "l", 1)) {
  6209. selected = curses_int("Interval in seconds");
  6210. if (selected < 0 || selected > 9999) {
  6211. wlogprint("Invalid selection\n");
  6212. goto retry;
  6213. }
  6214. opt_log_interval = selected;
  6215. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6216. goto retry;
  6217. } else if (!strncasecmp(&input, "s", 1)) {
  6218. opt_realquiet = true;
  6219. } else if (!strncasecmp(&input, "w", 1)) {
  6220. opt_worktime ^= true;
  6221. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6222. goto retry;
  6223. } else if (!strncasecmp(&input, "t", 1)) {
  6224. opt_weighed_stats ^= true;
  6225. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6226. goto retry;
  6227. } else if (!strncasecmp(&input, "z", 1)) {
  6228. zero_stats();
  6229. goto retry;
  6230. }
  6231. immedok(logwin, false);
  6232. loginput_mode(0);
  6233. }
  6234. #endif
  6235. void default_save_file(char *filename)
  6236. {
  6237. #if defined(unix) || defined(__APPLE__)
  6238. if (getenv("HOME") && *getenv("HOME")) {
  6239. strcpy(filename, getenv("HOME"));
  6240. strcat(filename, "/");
  6241. }
  6242. else
  6243. strcpy(filename, "");
  6244. strcat(filename, ".bfgminer/");
  6245. mkdir(filename, 0777);
  6246. #else
  6247. strcpy(filename, "");
  6248. #endif
  6249. strcat(filename, def_conf);
  6250. }
  6251. #ifdef HAVE_CURSES
  6252. static void set_options(void)
  6253. {
  6254. int selected;
  6255. char input;
  6256. immedok(logwin, true);
  6257. loginput_mode(8);
  6258. retry:
  6259. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6260. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6261. "[W]rite config file\n[B]FGMiner restart\n",
  6262. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6263. wlogprint("Select an option or any other key to return\n");
  6264. logwin_update();
  6265. input = getch();
  6266. if (!strncasecmp(&input, "q", 1)) {
  6267. selected = curses_int("Extra work items to queue");
  6268. if (selected < 0 || selected > 9999) {
  6269. wlogprint("Invalid selection\n");
  6270. goto retry;
  6271. }
  6272. opt_queue = selected;
  6273. goto retry;
  6274. } else if (!strncasecmp(&input, "l", 1)) {
  6275. if (want_longpoll)
  6276. stop_longpoll();
  6277. else
  6278. start_longpoll();
  6279. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6280. goto retry;
  6281. } else if (!strncasecmp(&input, "s", 1)) {
  6282. selected = curses_int("Set scantime in seconds");
  6283. if (selected < 0 || selected > 9999) {
  6284. wlogprint("Invalid selection\n");
  6285. goto retry;
  6286. }
  6287. opt_scantime = selected;
  6288. goto retry;
  6289. } else if (!strncasecmp(&input, "e", 1)) {
  6290. selected = curses_int("Set expiry time in seconds");
  6291. if (selected < 0 || selected > 9999) {
  6292. wlogprint("Invalid selection\n");
  6293. goto retry;
  6294. }
  6295. opt_expiry = selected;
  6296. goto retry;
  6297. } else if (!strncasecmp(&input, "r", 1)) {
  6298. selected = curses_int("Retries before failing (-1 infinite)");
  6299. if (selected < -1 || selected > 9999) {
  6300. wlogprint("Invalid selection\n");
  6301. goto retry;
  6302. }
  6303. opt_retries = selected;
  6304. goto retry;
  6305. } else if (!strncasecmp(&input, "w", 1)) {
  6306. FILE *fcfg;
  6307. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6308. default_save_file(filename);
  6309. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6310. str = curses_input(prompt);
  6311. if (str) {
  6312. struct stat statbuf;
  6313. strcpy(filename, str);
  6314. free(str);
  6315. if (!stat(filename, &statbuf)) {
  6316. wlogprint("File exists, overwrite?\n");
  6317. input = getch();
  6318. if (strncasecmp(&input, "y", 1))
  6319. goto retry;
  6320. }
  6321. }
  6322. fcfg = fopen(filename, "w");
  6323. if (!fcfg) {
  6324. wlogprint("Cannot open or create file\n");
  6325. goto retry;
  6326. }
  6327. write_config(fcfg);
  6328. fclose(fcfg);
  6329. goto retry;
  6330. } else if (!strncasecmp(&input, "b", 1)) {
  6331. wlogprint("Are you sure?\n");
  6332. input = getch();
  6333. if (!strncasecmp(&input, "y", 1))
  6334. app_restart();
  6335. else
  6336. clear_logwin();
  6337. } else
  6338. clear_logwin();
  6339. loginput_mode(0);
  6340. immedok(logwin, false);
  6341. }
  6342. int scan_serial(const char *);
  6343. static
  6344. void _managetui_msg(const char *repr, const char **msg)
  6345. {
  6346. if (*msg)
  6347. {
  6348. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6349. wattron(logwin, A_BOLD);
  6350. wlogprint("%s", *msg);
  6351. wattroff(logwin, A_BOLD);
  6352. *msg = NULL;
  6353. }
  6354. logwin_update();
  6355. }
  6356. void manage_device(void)
  6357. {
  6358. char logline[256];
  6359. const char *msg = NULL;
  6360. struct cgpu_info *cgpu;
  6361. const struct device_drv *drv;
  6362. selecting_device = true;
  6363. immedok(logwin, true);
  6364. loginput_mode(12);
  6365. devchange:
  6366. if (unlikely(!total_devices))
  6367. {
  6368. clear_logwin();
  6369. wlogprint("(no devices)\n");
  6370. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6371. _managetui_msg("(none)", &msg);
  6372. int input = getch();
  6373. switch (input)
  6374. {
  6375. case '+': case '=': // add new device
  6376. goto addnew;
  6377. default:
  6378. goto out;
  6379. }
  6380. }
  6381. cgpu = devices[selected_device];
  6382. drv = cgpu->drv;
  6383. refresh_devstatus();
  6384. refresh:
  6385. clear_logwin();
  6386. wlogprint("Select processor to manage using up/down arrow keys\n");
  6387. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6388. wattron(logwin, A_BOLD);
  6389. wlogprint("%s", logline);
  6390. wattroff(logwin, A_BOLD);
  6391. wlogprint("\n");
  6392. if (cgpu->dev_manufacturer)
  6393. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6394. else
  6395. if (cgpu->dev_product)
  6396. wlogprint(" %s\n", cgpu->dev_product);
  6397. if (cgpu->dev_serial)
  6398. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6399. if (cgpu->kname)
  6400. wlogprint("Kernel: %s\n", cgpu->kname);
  6401. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6402. drv->proc_wlogprint_status(cgpu);
  6403. wlogprint("\n");
  6404. // TODO: Last share at TIMESTAMP on pool N
  6405. // TODO: Custom device info/commands
  6406. if (cgpu->deven != DEV_ENABLED)
  6407. wlogprint("[E]nable ");
  6408. if (cgpu->deven != DEV_DISABLED)
  6409. wlogprint("[D]isable ");
  6410. if (drv->identify_device)
  6411. wlogprint("[I]dentify ");
  6412. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6413. drv->proc_tui_wlogprint_choices(cgpu);
  6414. wlogprint("\n");
  6415. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6416. _managetui_msg(cgpu->proc_repr, &msg);
  6417. while (true)
  6418. {
  6419. int input = getch();
  6420. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6421. switch (input) {
  6422. case 'd': case 'D':
  6423. if (cgpu->deven == DEV_DISABLED)
  6424. msg = "Processor already disabled\n";
  6425. else
  6426. {
  6427. cgpu->deven = DEV_DISABLED;
  6428. msg = "Processor being disabled\n";
  6429. }
  6430. goto refresh;
  6431. case 'e': case 'E':
  6432. if (cgpu->deven == DEV_ENABLED)
  6433. msg = "Processor already enabled\n";
  6434. else
  6435. {
  6436. proc_enable(cgpu);
  6437. msg = "Processor being enabled\n";
  6438. }
  6439. goto refresh;
  6440. case 'i': case 'I':
  6441. if (drv->identify_device && drv->identify_device(cgpu))
  6442. msg = "Identify command sent\n";
  6443. else
  6444. goto key_default;
  6445. goto refresh;
  6446. case KEY_DOWN:
  6447. if (selected_device >= total_devices - 1)
  6448. break;
  6449. ++selected_device;
  6450. goto devchange;
  6451. case KEY_UP:
  6452. if (selected_device <= 0)
  6453. break;
  6454. --selected_device;
  6455. goto devchange;
  6456. case KEY_NPAGE:
  6457. {
  6458. if (selected_device >= total_devices - 1)
  6459. break;
  6460. struct cgpu_info *mdev = devices[selected_device]->device;
  6461. do {
  6462. ++selected_device;
  6463. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6464. goto devchange;
  6465. }
  6466. case KEY_PPAGE:
  6467. {
  6468. if (selected_device <= 0)
  6469. break;
  6470. struct cgpu_info *mdev = devices[selected_device]->device;
  6471. do {
  6472. --selected_device;
  6473. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6474. goto devchange;
  6475. }
  6476. case '/': case '?': // find device
  6477. {
  6478. static char *pattern = NULL;
  6479. char *newpattern = curses_input("Enter pattern");
  6480. if (newpattern)
  6481. {
  6482. free(pattern);
  6483. pattern = newpattern;
  6484. }
  6485. else
  6486. if (!pattern)
  6487. pattern = calloc(1, 1);
  6488. int match = cgpu_search(pattern, selected_device + 1);
  6489. if (match == -1)
  6490. {
  6491. msg = "Couldn't find device\n";
  6492. goto refresh;
  6493. }
  6494. selected_device = match;
  6495. goto devchange;
  6496. }
  6497. case '+': case '=': // add new device
  6498. {
  6499. addnew:
  6500. clear_logwin();
  6501. _wlogprint(
  6502. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6503. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6504. "For example: erupter:"
  6505. #ifdef WIN32
  6506. "\\\\.\\COM40"
  6507. #elif defined(__APPLE__)
  6508. "/dev/cu.SLAB_USBtoUART"
  6509. #else
  6510. "/dev/ttyUSB39"
  6511. #endif
  6512. "\n"
  6513. );
  6514. char *scanser = curses_input("Enter target");
  6515. if (scan_serial(scanser))
  6516. {
  6517. selected_device = total_devices - 1;
  6518. msg = "Device scan succeeded\n";
  6519. }
  6520. else
  6521. msg = "No new devices found\n";
  6522. goto devchange;
  6523. }
  6524. case 'Q': case 'q':
  6525. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6526. case '\x1b': // ESC
  6527. case KEY_ENTER:
  6528. case '\r': // Ctrl-M on Windows, with nonl
  6529. #ifdef PADENTER
  6530. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6531. #endif
  6532. case '\n':
  6533. goto out;
  6534. default:
  6535. ;
  6536. key_default:
  6537. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6538. {
  6539. msg = drv->proc_tui_handle_choice(cgpu, input);
  6540. if (msg)
  6541. goto refresh;
  6542. }
  6543. }
  6544. }
  6545. out:
  6546. selecting_device = false;
  6547. loginput_mode(0);
  6548. immedok(logwin, false);
  6549. }
  6550. void show_help(void)
  6551. {
  6552. loginput_mode(10);
  6553. // NOTE: wlogprint is a macro with a buffer limit
  6554. _wlogprint(
  6555. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6556. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6557. "E: # shares * diff per 2kB bw | U: shares/minute | BS: best share ever found\n"
  6558. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6559. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6560. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6561. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6562. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6563. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6564. U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6565. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6566. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6567. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6568. "\n"
  6569. "devices/processors hashing (only for totals line), hottest temperature\n"
  6570. );
  6571. wlogprint(
  6572. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6573. , opt_log_interval);
  6574. _wlogprint(
  6575. "A: accepted shares | R: rejected+discarded(%% of total)\n"
  6576. "HW: hardware errors / %% nonces invalid\n"
  6577. "\n"
  6578. "Press any key to clear"
  6579. );
  6580. logwin_update();
  6581. getch();
  6582. loginput_mode(0);
  6583. }
  6584. static void *input_thread(void __maybe_unused *userdata)
  6585. {
  6586. RenameThread("input");
  6587. if (!curses_active)
  6588. return NULL;
  6589. while (1) {
  6590. int input;
  6591. input = getch();
  6592. switch (input) {
  6593. case 'h': case 'H': case '?':
  6594. case KEY_F(1):
  6595. show_help();
  6596. break;
  6597. case 'q': case 'Q':
  6598. kill_work();
  6599. return NULL;
  6600. case 'd': case 'D':
  6601. display_options();
  6602. break;
  6603. case 'm': case 'M':
  6604. manage_device();
  6605. break;
  6606. case 'p': case 'P':
  6607. display_pools();
  6608. break;
  6609. case 's': case 'S':
  6610. set_options();
  6611. break;
  6612. #ifdef HAVE_CURSES
  6613. case KEY_DOWN:
  6614. {
  6615. const int visible_lines = logcursor - devcursor;
  6616. const int invisible_lines = total_lines - visible_lines;
  6617. if (devsummaryYOffset <= -invisible_lines)
  6618. break;
  6619. devsummaryYOffset -= 2;
  6620. }
  6621. case KEY_UP:
  6622. if (devsummaryYOffset == 0)
  6623. break;
  6624. ++devsummaryYOffset;
  6625. refresh_devstatus();
  6626. break;
  6627. case KEY_NPAGE:
  6628. {
  6629. const int visible_lines = logcursor - devcursor;
  6630. const int invisible_lines = total_lines - visible_lines;
  6631. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6632. devsummaryYOffset = -invisible_lines;
  6633. else
  6634. devsummaryYOffset -= visible_lines;
  6635. refresh_devstatus();
  6636. break;
  6637. }
  6638. case KEY_PPAGE:
  6639. {
  6640. const int visible_lines = logcursor - devcursor;
  6641. if (devsummaryYOffset + visible_lines >= 0)
  6642. devsummaryYOffset = 0;
  6643. else
  6644. devsummaryYOffset += visible_lines;
  6645. refresh_devstatus();
  6646. break;
  6647. }
  6648. #endif
  6649. }
  6650. if (opt_realquiet) {
  6651. disable_curses();
  6652. break;
  6653. }
  6654. }
  6655. return NULL;
  6656. }
  6657. #endif
  6658. static void *api_thread(void *userdata)
  6659. {
  6660. struct thr_info *mythr = userdata;
  6661. pthread_detach(pthread_self());
  6662. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6663. RenameThread("rpc");
  6664. api(api_thr_id);
  6665. mythr->has_pth = false;
  6666. return NULL;
  6667. }
  6668. void thread_reportin(struct thr_info *thr)
  6669. {
  6670. cgtime(&thr->last);
  6671. thr->cgpu->status = LIFE_WELL;
  6672. thr->getwork = 0;
  6673. thr->cgpu->device_last_well = time(NULL);
  6674. }
  6675. void thread_reportout(struct thr_info *thr)
  6676. {
  6677. thr->getwork = time(NULL);
  6678. }
  6679. static void hashmeter(int thr_id, struct timeval *diff,
  6680. uint64_t hashes_done)
  6681. {
  6682. char logstatusline[256];
  6683. struct timeval temp_tv_end, total_diff;
  6684. double secs;
  6685. double local_secs;
  6686. static double local_mhashes_done = 0;
  6687. double local_mhashes = (double)hashes_done / 1000000.0;
  6688. bool showlog = false;
  6689. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6690. char rejpcbuf[6];
  6691. char bnbuf[6];
  6692. struct thr_info *thr;
  6693. /* Update the last time this thread reported in */
  6694. if (thr_id >= 0) {
  6695. thr = get_thread(thr_id);
  6696. cgtime(&(thr->last));
  6697. thr->cgpu->device_last_well = time(NULL);
  6698. }
  6699. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6700. /* So we can call hashmeter from a non worker thread */
  6701. if (thr_id >= 0) {
  6702. struct cgpu_info *cgpu = thr->cgpu;
  6703. int threadobj = cgpu->threads ?: 1;
  6704. double thread_rolling = 0.0;
  6705. int i;
  6706. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6707. thr_id, hashes_done, hashes_done / 1000 / secs);
  6708. /* Rolling average for each thread and each device */
  6709. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6710. for (i = 0; i < threadobj; i++)
  6711. thread_rolling += cgpu->thr[i]->rolling;
  6712. mutex_lock(&hash_lock);
  6713. decay_time(&cgpu->rolling, thread_rolling, secs);
  6714. cgpu->total_mhashes += local_mhashes;
  6715. mutex_unlock(&hash_lock);
  6716. // If needed, output detailed, per-device stats
  6717. if (want_per_device_stats) {
  6718. struct timeval now;
  6719. struct timeval elapsed;
  6720. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6721. cgtime(&now);
  6722. timersub(&now, last_msg_tv, &elapsed);
  6723. if (opt_log_interval <= elapsed.tv_sec) {
  6724. struct cgpu_info *cgpu = thr->cgpu;
  6725. char logline[255];
  6726. *last_msg_tv = now;
  6727. get_statline(logline, sizeof(logline), cgpu);
  6728. if (!curses_active) {
  6729. printf("%s \r", logline);
  6730. fflush(stdout);
  6731. } else
  6732. applog(LOG_INFO, "%s", logline);
  6733. }
  6734. }
  6735. }
  6736. /* Totals are updated by all threads so can race without locking */
  6737. mutex_lock(&hash_lock);
  6738. cgtime(&temp_tv_end);
  6739. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6740. total_mhashes_done += local_mhashes;
  6741. local_mhashes_done += local_mhashes;
  6742. /* Only update with opt_log_interval */
  6743. if (total_diff.tv_sec < opt_log_interval)
  6744. goto out_unlock;
  6745. showlog = true;
  6746. cgtime(&total_tv_end);
  6747. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6748. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6749. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6750. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6751. total_secs = (double)total_diff.tv_sec +
  6752. ((double)total_diff.tv_usec / 1000000.0);
  6753. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6754. multi_format_unit_array2(
  6755. ((char*[]){cHr, aHr, uHr}),
  6756. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6757. true, "h/s", H2B_SHORT,
  6758. 3,
  6759. 1e6*total_rolling,
  6760. 1e6*total_mhashes_done / total_secs,
  6761. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6762. int ui_accepted, ui_rejected, ui_stale;
  6763. if (opt_weighed_stats)
  6764. {
  6765. ui_accepted = total_diff_accepted;
  6766. ui_rejected = total_diff_rejected;
  6767. ui_stale = total_diff_stale;
  6768. }
  6769. else
  6770. {
  6771. ui_accepted = total_accepted;
  6772. ui_rejected = total_rejected;
  6773. ui_stale = total_stale;
  6774. }
  6775. #ifdef HAVE_CURSES
  6776. if (curses_active_locked()) {
  6777. float temp = 0;
  6778. struct cgpu_info *proc, *last_working_dev = NULL;
  6779. int i, working_devs = 0, working_procs = 0;
  6780. int divx;
  6781. bool bad = false;
  6782. // Find the highest temperature of all processors
  6783. for (i = 0; i < total_devices; ++i)
  6784. {
  6785. proc = get_devices(i);
  6786. if (proc->temp > temp)
  6787. temp = proc->temp;
  6788. if (unlikely(proc->deven == DEV_DISABLED))
  6789. ; // Just need to block it off from both conditions
  6790. else
  6791. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6792. {
  6793. if (proc->rolling > .1)
  6794. {
  6795. ++working_procs;
  6796. if (proc->device != last_working_dev)
  6797. {
  6798. ++working_devs;
  6799. last_working_dev = proc->device;
  6800. }
  6801. }
  6802. }
  6803. else
  6804. bad = true;
  6805. }
  6806. if (working_devs == working_procs)
  6807. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6808. else
  6809. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6810. divx = 7;
  6811. if (opt_show_procs && !opt_compact)
  6812. ++divx;
  6813. if (bad)
  6814. {
  6815. divx += sizeof(U8_BAD_START)-1;
  6816. strcpy(&statusline[divx], U8_BAD_END);
  6817. divx += sizeof(U8_BAD_END)-1;
  6818. }
  6819. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6820. format_statline(statusline, sizeof(statusline),
  6821. cHr, aHr,
  6822. uHr,
  6823. ui_accepted,
  6824. ui_rejected,
  6825. ui_stale,
  6826. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6827. hw_errors,
  6828. total_bad_diff1, total_bad_diff1 + total_diff1);
  6829. unlock_curses();
  6830. }
  6831. #endif
  6832. // Add a space
  6833. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6834. uHr[5] = ' ';
  6835. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6836. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6837. snprintf(logstatusline, sizeof(logstatusline),
  6838. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6839. want_per_device_stats ? "ALL " : "",
  6840. opt_log_interval,
  6841. cHr, aHr,
  6842. uHr,
  6843. ui_accepted,
  6844. ui_rejected,
  6845. ui_stale,
  6846. rejpcbuf,
  6847. hw_errors,
  6848. bnbuf
  6849. );
  6850. local_mhashes_done = 0;
  6851. out_unlock:
  6852. mutex_unlock(&hash_lock);
  6853. if (showlog) {
  6854. if (!curses_active) {
  6855. printf("%s \r", logstatusline);
  6856. fflush(stdout);
  6857. } else
  6858. applog(LOG_INFO, "%s", logstatusline);
  6859. }
  6860. }
  6861. void hashmeter2(struct thr_info *thr)
  6862. {
  6863. struct timeval tv_now, tv_elapsed;
  6864. timerclear(&thr->tv_hashes_done);
  6865. cgtime(&tv_now);
  6866. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6867. /* Update the hashmeter at most 5 times per second */
  6868. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6869. tv_elapsed.tv_sec >= opt_log_interval) {
  6870. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6871. thr->hashes_done = 0;
  6872. thr->tv_lastupdate = tv_now;
  6873. }
  6874. }
  6875. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6876. struct stratum_share *sshare)
  6877. {
  6878. struct work *work = sshare->work;
  6879. share_result(val, res_val, err_val, work, false, "");
  6880. }
  6881. /* Parses stratum json responses and tries to find the id that the request
  6882. * matched to and treat it accordingly. */
  6883. bool parse_stratum_response(struct pool *pool, char *s)
  6884. {
  6885. json_t *val = NULL, *err_val, *res_val, *id_val;
  6886. struct stratum_share *sshare;
  6887. json_error_t err;
  6888. bool ret = false;
  6889. int id;
  6890. val = JSON_LOADS(s, &err);
  6891. if (!val) {
  6892. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6893. goto out;
  6894. }
  6895. res_val = json_object_get(val, "result");
  6896. err_val = json_object_get(val, "error");
  6897. id_val = json_object_get(val, "id");
  6898. if (json_is_null(id_val) || !id_val) {
  6899. char *ss;
  6900. if (err_val)
  6901. ss = json_dumps(err_val, JSON_INDENT(3));
  6902. else
  6903. ss = strdup("(unknown reason)");
  6904. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6905. free(ss);
  6906. goto out;
  6907. }
  6908. if (!json_is_integer(id_val)) {
  6909. if (json_is_string(id_val)
  6910. && !strncmp(json_string_value(id_val), "txlist", 6))
  6911. {
  6912. const bool is_array = json_is_array(res_val);
  6913. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6914. is_array ? "transaction list" : "no-transaction-list response",
  6915. pool->pool_no, &json_string_value(id_val)[6]);
  6916. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6917. // We only care about a transaction list for the current job id
  6918. goto fishy;
  6919. // Check that the transactions actually hash to the merkle links
  6920. {
  6921. unsigned maxtx = 1 << pool->swork.merkles;
  6922. unsigned mintx = maxtx >> 1;
  6923. --maxtx;
  6924. unsigned acttx = (unsigned)json_array_size(res_val);
  6925. if (acttx < mintx || acttx > maxtx) {
  6926. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6927. pool->pool_no, acttx, mintx, maxtx);
  6928. goto fishy;
  6929. }
  6930. // TODO: Check hashes match actual merkle links
  6931. }
  6932. pool_set_opaque(pool, false);
  6933. timer_unset(&pool->swork.tv_transparency);
  6934. fishy:
  6935. ret = true;
  6936. }
  6937. goto out;
  6938. }
  6939. id = json_integer_value(id_val);
  6940. mutex_lock(&sshare_lock);
  6941. HASH_FIND_INT(stratum_shares, &id, sshare);
  6942. if (sshare)
  6943. HASH_DEL(stratum_shares, sshare);
  6944. mutex_unlock(&sshare_lock);
  6945. if (!sshare) {
  6946. double pool_diff;
  6947. /* Since the share is untracked, we can only guess at what the
  6948. * work difficulty is based on the current pool diff. */
  6949. cg_rlock(&pool->data_lock);
  6950. pool_diff = pool->swork.diff;
  6951. cg_runlock(&pool->data_lock);
  6952. if (json_is_true(res_val)) {
  6953. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  6954. /* We don't know what device this came from so we can't
  6955. * attribute the work to the relevant cgpu */
  6956. mutex_lock(&stats_lock);
  6957. total_accepted++;
  6958. pool->accepted++;
  6959. total_diff_accepted += pool_diff;
  6960. pool->diff_accepted += pool_diff;
  6961. mutex_unlock(&stats_lock);
  6962. } else {
  6963. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  6964. mutex_lock(&stats_lock);
  6965. total_rejected++;
  6966. pool->rejected++;
  6967. total_diff_rejected += pool_diff;
  6968. pool->diff_rejected += pool_diff;
  6969. mutex_unlock(&stats_lock);
  6970. }
  6971. goto out;
  6972. }
  6973. else {
  6974. mutex_lock(&submitting_lock);
  6975. --total_submitting;
  6976. mutex_unlock(&submitting_lock);
  6977. }
  6978. stratum_share_result(val, res_val, err_val, sshare);
  6979. free_work(sshare->work);
  6980. free(sshare);
  6981. ret = true;
  6982. out:
  6983. if (val)
  6984. json_decref(val);
  6985. return ret;
  6986. }
  6987. static void shutdown_stratum(struct pool *pool)
  6988. {
  6989. // Shut down Stratum as if we never had it
  6990. pool->stratum_active = false;
  6991. pool->stratum_init = false;
  6992. pool->has_stratum = false;
  6993. shutdown(pool->sock, SHUT_RDWR);
  6994. free(pool->stratum_url);
  6995. if (pool->sockaddr_url == pool->stratum_url)
  6996. pool->sockaddr_url = NULL;
  6997. pool->stratum_url = NULL;
  6998. }
  6999. void clear_stratum_shares(struct pool *pool)
  7000. {
  7001. int my_mining_threads = mining_threads; // Cached outside of locking
  7002. struct stratum_share *sshare, *tmpshare;
  7003. struct work *work;
  7004. struct cgpu_info *cgpu;
  7005. double diff_cleared = 0;
  7006. double thr_diff_cleared[my_mining_threads];
  7007. int cleared = 0;
  7008. int thr_cleared[my_mining_threads];
  7009. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7010. for (int i = 0; i < my_mining_threads; ++i)
  7011. {
  7012. thr_diff_cleared[i] = 0;
  7013. thr_cleared[i] = 0;
  7014. }
  7015. mutex_lock(&sshare_lock);
  7016. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7017. work = sshare->work;
  7018. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7019. HASH_DEL(stratum_shares, sshare);
  7020. sharelog("disconnect", work);
  7021. diff_cleared += sshare->work->work_difficulty;
  7022. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7023. ++thr_cleared[work->thr_id];
  7024. free_work(sshare->work);
  7025. free(sshare);
  7026. cleared++;
  7027. }
  7028. }
  7029. mutex_unlock(&sshare_lock);
  7030. if (cleared) {
  7031. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7032. mutex_lock(&stats_lock);
  7033. pool->stale_shares += cleared;
  7034. total_stale += cleared;
  7035. pool->diff_stale += diff_cleared;
  7036. total_diff_stale += diff_cleared;
  7037. for (int i = 0; i < my_mining_threads; ++i)
  7038. if (thr_cleared[i])
  7039. {
  7040. cgpu = get_thr_cgpu(i);
  7041. cgpu->diff_stale += thr_diff_cleared[i];
  7042. cgpu->stale += thr_cleared[i];
  7043. }
  7044. mutex_unlock(&stats_lock);
  7045. mutex_lock(&submitting_lock);
  7046. total_submitting -= cleared;
  7047. mutex_unlock(&submitting_lock);
  7048. }
  7049. }
  7050. static void resubmit_stratum_shares(struct pool *pool)
  7051. {
  7052. struct stratum_share *sshare, *tmpshare;
  7053. struct work *work;
  7054. unsigned resubmitted = 0;
  7055. mutex_lock(&sshare_lock);
  7056. mutex_lock(&submitting_lock);
  7057. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7058. if (sshare->work->pool != pool)
  7059. continue;
  7060. HASH_DEL(stratum_shares, sshare);
  7061. work = sshare->work;
  7062. DL_APPEND(submit_waiting, work);
  7063. free(sshare);
  7064. ++resubmitted;
  7065. }
  7066. mutex_unlock(&submitting_lock);
  7067. mutex_unlock(&sshare_lock);
  7068. if (resubmitted) {
  7069. notifier_wake(submit_waiting_notifier);
  7070. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7071. }
  7072. }
  7073. static void clear_pool_work(struct pool *pool)
  7074. {
  7075. struct work *work, *tmp;
  7076. int cleared = 0;
  7077. mutex_lock(stgd_lock);
  7078. HASH_ITER(hh, staged_work, work, tmp) {
  7079. if (work->pool == pool) {
  7080. HASH_DEL(staged_work, work);
  7081. free_work(work);
  7082. cleared++;
  7083. staged_full = false;
  7084. }
  7085. }
  7086. mutex_unlock(stgd_lock);
  7087. }
  7088. static int cp_prio(void)
  7089. {
  7090. int prio;
  7091. cg_rlock(&control_lock);
  7092. prio = currentpool->prio;
  7093. cg_runlock(&control_lock);
  7094. return prio;
  7095. }
  7096. /* We only need to maintain a secondary pool connection when we need the
  7097. * capacity to get work from the backup pools while still on the primary */
  7098. static bool cnx_needed(struct pool *pool)
  7099. {
  7100. struct pool *cp;
  7101. if (pool->enabled != POOL_ENABLED)
  7102. return false;
  7103. /* Balance strategies need all pools online */
  7104. if (pool_strategy == POOL_BALANCE)
  7105. return true;
  7106. if (pool_strategy == POOL_LOADBALANCE)
  7107. return true;
  7108. /* Idle stratum pool needs something to kick it alive again */
  7109. if (pool->has_stratum && pool->idle)
  7110. return true;
  7111. /* Getwork pools without opt_fail_only need backup pools up to be able
  7112. * to leak shares */
  7113. cp = current_pool();
  7114. if (cp == pool)
  7115. return true;
  7116. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7117. return true;
  7118. /* Keep the connection open to allow any stray shares to be submitted
  7119. * on switching pools for 2 minutes. */
  7120. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7121. return true;
  7122. /* If the pool has only just come to life and is higher priority than
  7123. * the current pool keep the connection open so we can fail back to
  7124. * it. */
  7125. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7126. return true;
  7127. if (pool_unworkable(cp))
  7128. return true;
  7129. /* We've run out of work, bring anything back to life. */
  7130. if (no_work)
  7131. return true;
  7132. return false;
  7133. }
  7134. static void wait_lpcurrent(struct pool *pool);
  7135. static void pool_resus(struct pool *pool);
  7136. static void gen_stratum_work(struct pool *pool, struct work *work);
  7137. static void stratum_resumed(struct pool *pool)
  7138. {
  7139. if (!pool->stratum_notify)
  7140. return;
  7141. if (pool_tclear(pool, &pool->idle)) {
  7142. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7143. pool_resus(pool);
  7144. }
  7145. }
  7146. static bool supports_resume(struct pool *pool)
  7147. {
  7148. bool ret;
  7149. cg_rlock(&pool->data_lock);
  7150. ret = (pool->sessionid != NULL);
  7151. cg_runlock(&pool->data_lock);
  7152. return ret;
  7153. }
  7154. /* One stratum thread per pool that has stratum waits on the socket checking
  7155. * for new messages and for the integrity of the socket connection. We reset
  7156. * the connection based on the integrity of the receive side only as the send
  7157. * side will eventually expire data it fails to send. */
  7158. static void *stratum_thread(void *userdata)
  7159. {
  7160. struct pool *pool = (struct pool *)userdata;
  7161. pthread_detach(pthread_self());
  7162. char threadname[20];
  7163. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7164. RenameThread(threadname);
  7165. srand(time(NULL) + (intptr_t)userdata);
  7166. while (42) {
  7167. struct timeval timeout;
  7168. int sel_ret;
  7169. fd_set rd;
  7170. char *s;
  7171. int sock;
  7172. if (unlikely(!pool->has_stratum))
  7173. break;
  7174. /* Check to see whether we need to maintain this connection
  7175. * indefinitely or just bring it up when we switch to this
  7176. * pool */
  7177. while (true)
  7178. {
  7179. sock = pool->sock;
  7180. if (sock == INVSOCK)
  7181. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7182. pool->pool_no);
  7183. else
  7184. if (!sock_full(pool) && !cnx_needed(pool))
  7185. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7186. pool->pool_no);
  7187. else
  7188. break;
  7189. suspend_stratum(pool);
  7190. clear_stratum_shares(pool);
  7191. clear_pool_work(pool);
  7192. wait_lpcurrent(pool);
  7193. if (!restart_stratum(pool)) {
  7194. pool_died(pool);
  7195. while (!restart_stratum(pool)) {
  7196. if (pool->removed)
  7197. goto out;
  7198. cgsleep_ms(30000);
  7199. }
  7200. }
  7201. }
  7202. FD_ZERO(&rd);
  7203. FD_SET(sock, &rd);
  7204. timeout.tv_sec = 120;
  7205. timeout.tv_usec = 0;
  7206. /* If we fail to receive any notify messages for 2 minutes we
  7207. * assume the connection has been dropped and treat this pool
  7208. * as dead */
  7209. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7210. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7211. s = NULL;
  7212. } else
  7213. s = recv_line(pool);
  7214. if (!s) {
  7215. if (!pool->has_stratum)
  7216. break;
  7217. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7218. pool->getfail_occasions++;
  7219. total_go++;
  7220. mutex_lock(&pool->stratum_lock);
  7221. pool->stratum_active = pool->stratum_notify = false;
  7222. pool->sock = INVSOCK;
  7223. mutex_unlock(&pool->stratum_lock);
  7224. /* If the socket to our stratum pool disconnects, all
  7225. * submissions need to be discarded or resent. */
  7226. if (!supports_resume(pool))
  7227. clear_stratum_shares(pool);
  7228. else
  7229. resubmit_stratum_shares(pool);
  7230. clear_pool_work(pool);
  7231. if (pool == current_pool())
  7232. restart_threads();
  7233. if (restart_stratum(pool))
  7234. continue;
  7235. shutdown_stratum(pool);
  7236. pool_died(pool);
  7237. break;
  7238. }
  7239. /* Check this pool hasn't died while being a backup pool and
  7240. * has not had its idle flag cleared */
  7241. stratum_resumed(pool);
  7242. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7243. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7244. free(s);
  7245. if (pool->swork.clean) {
  7246. struct work *work = make_work();
  7247. /* Generate a single work item to update the current
  7248. * block database */
  7249. pool->swork.clean = false;
  7250. gen_stratum_work(pool, work);
  7251. /* Try to extract block height from coinbase scriptSig */
  7252. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7253. unsigned char cb_height_sz;
  7254. cb_height_sz = bin_height[-1];
  7255. if (cb_height_sz == 3) {
  7256. // FIXME: The block number will overflow this by AD 2173
  7257. uint32_t block_id = ((uint32_t*)work->data)[1];
  7258. uint32_t height = 0;
  7259. memcpy(&height, bin_height, 3);
  7260. height = le32toh(height);
  7261. have_block_height(block_id, height);
  7262. }
  7263. ++pool->work_restart_id;
  7264. if (test_work_current(work)) {
  7265. /* Only accept a work update if this stratum
  7266. * connection is from the current pool */
  7267. if (pool == current_pool()) {
  7268. restart_threads();
  7269. applog(
  7270. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7271. "Stratum from pool %d requested work update", pool->pool_no);
  7272. }
  7273. } else
  7274. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7275. free_work(work);
  7276. }
  7277. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7278. // More than 4 timmills past since requested transactions
  7279. timer_unset(&pool->swork.tv_transparency);
  7280. pool_set_opaque(pool, true);
  7281. }
  7282. }
  7283. out:
  7284. return NULL;
  7285. }
  7286. static void init_stratum_thread(struct pool *pool)
  7287. {
  7288. have_longpoll = true;
  7289. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7290. quit(1, "Failed to create stratum thread");
  7291. }
  7292. static void *longpoll_thread(void *userdata);
  7293. static bool stratum_works(struct pool *pool)
  7294. {
  7295. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7296. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7297. return false;
  7298. if (pool->stratum_active)
  7299. return true;
  7300. if (!initiate_stratum(pool))
  7301. return false;
  7302. return true;
  7303. }
  7304. static bool pool_active(struct pool *pool, bool pinging)
  7305. {
  7306. struct timeval tv_getwork, tv_getwork_reply;
  7307. bool ret = false;
  7308. json_t *val;
  7309. CURL *curl;
  7310. int rolltime;
  7311. char *rpc_req;
  7312. struct work *work;
  7313. enum pool_protocol proto;
  7314. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7315. /* This is the central point we activate stratum when we can */
  7316. curl = curl_easy_init();
  7317. if (unlikely(!curl)) {
  7318. applog(LOG_ERR, "CURL initialisation failed");
  7319. return false;
  7320. }
  7321. if (!(want_gbt || want_getwork))
  7322. goto nohttp;
  7323. work = make_work();
  7324. /* Probe for GBT support on first pass */
  7325. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7326. tryagain:
  7327. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7328. work->pool = pool;
  7329. if (!rpc_req)
  7330. goto out;
  7331. pool->probed = false;
  7332. cgtime(&tv_getwork);
  7333. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7334. true, false, &rolltime, pool, false);
  7335. cgtime(&tv_getwork_reply);
  7336. free(rpc_req);
  7337. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7338. * and if so, switch to that in preference to getwork if it works */
  7339. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7340. if (!pool->has_stratum) {
  7341. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7342. if (!pool->rpc_url)
  7343. pool->rpc_url = strdup(pool->stratum_url);
  7344. pool->has_stratum = true;
  7345. }
  7346. free_work(work);
  7347. if (val)
  7348. json_decref(val);
  7349. retry_stratum:
  7350. curl_easy_cleanup(curl);
  7351. /* We create the stratum thread for each pool just after
  7352. * successful authorisation. Once the init flag has been set
  7353. * we never unset it and the stratum thread is responsible for
  7354. * setting/unsetting the active flag */
  7355. bool init = pool_tset(pool, &pool->stratum_init);
  7356. if (!init) {
  7357. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7358. if (ret)
  7359. {
  7360. detect_algo = 2;
  7361. init_stratum_thread(pool);
  7362. }
  7363. else
  7364. pool_tclear(pool, &pool->stratum_init);
  7365. return ret;
  7366. }
  7367. return pool->stratum_active;
  7368. }
  7369. else if (pool->has_stratum)
  7370. shutdown_stratum(pool);
  7371. if (val) {
  7372. bool rc;
  7373. json_t *res;
  7374. res = json_object_get(val, "result");
  7375. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7376. goto badwork;
  7377. work->rolltime = rolltime;
  7378. rc = work_decode(pool, work, val);
  7379. if (rc) {
  7380. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7381. pool->pool_no, pool->rpc_url);
  7382. work->pool = pool;
  7383. copy_time(&work->tv_getwork, &tv_getwork);
  7384. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7385. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7386. calc_diff(work, 0);
  7387. update_last_work(work);
  7388. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7389. stage_work(work);
  7390. total_getworks++;
  7391. pool->getwork_requested++;
  7392. ret = true;
  7393. cgtime(&pool->tv_idle);
  7394. } else {
  7395. badwork:
  7396. json_decref(val);
  7397. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7398. pool->pool_no, pool->rpc_url);
  7399. pool->proto = proto = pool_protocol_fallback(proto);
  7400. if (PLP_NONE != proto)
  7401. goto tryagain;
  7402. free_work(work);
  7403. goto out;
  7404. }
  7405. json_decref(val);
  7406. if (proto != pool->proto) {
  7407. pool->proto = proto;
  7408. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7409. }
  7410. if (pool->lp_url)
  7411. goto out;
  7412. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7413. const struct blktmpl_longpoll_req *lp;
  7414. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7415. // NOTE: work_decode takes care of lp id
  7416. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7417. if (!pool->lp_url)
  7418. {
  7419. ret = false;
  7420. goto out;
  7421. }
  7422. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7423. }
  7424. else
  7425. if (pool->hdr_path && want_getwork) {
  7426. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7427. if (!pool->lp_url)
  7428. {
  7429. ret = false;
  7430. goto out;
  7431. }
  7432. pool->lp_proto = PLP_GETWORK;
  7433. } else
  7434. pool->lp_url = NULL;
  7435. if (want_longpoll && !pool->lp_started) {
  7436. pool->lp_started = true;
  7437. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7438. quit(1, "Failed to create pool longpoll thread");
  7439. }
  7440. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7441. pool->proto = proto;
  7442. goto tryagain;
  7443. } else {
  7444. free_work(work);
  7445. nohttp:
  7446. /* If we failed to parse a getwork, this could be a stratum
  7447. * url without the prefix stratum+tcp:// so let's check it */
  7448. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7449. pool->has_stratum = true;
  7450. goto retry_stratum;
  7451. }
  7452. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7453. pool->pool_no, pool->rpc_url);
  7454. if (!pinging)
  7455. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7456. }
  7457. out:
  7458. curl_easy_cleanup(curl);
  7459. return ret;
  7460. }
  7461. static void pool_resus(struct pool *pool)
  7462. {
  7463. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7464. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7465. else
  7466. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7467. }
  7468. static struct work *hash_pop(void)
  7469. {
  7470. struct work *work = NULL, *tmp;
  7471. int hc;
  7472. struct timespec ts;
  7473. retry:
  7474. mutex_lock(stgd_lock);
  7475. while (!HASH_COUNT(staged_work))
  7476. {
  7477. if (unlikely(staged_full))
  7478. {
  7479. if (likely(opt_queue < 10 + mining_threads))
  7480. {
  7481. ++opt_queue;
  7482. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7483. }
  7484. else
  7485. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7486. staged_full = false; // Let it fill up before triggering an underrun again
  7487. no_work = true;
  7488. }
  7489. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7490. pthread_cond_signal(&gws_cond);
  7491. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7492. {
  7493. run_cmd(cmd_idle);
  7494. pthread_cond_signal(&gws_cond);
  7495. pthread_cond_wait(&getq->cond, stgd_lock);
  7496. }
  7497. }
  7498. no_work = false;
  7499. hc = HASH_COUNT(staged_work);
  7500. /* Find clone work if possible, to allow masters to be reused */
  7501. if (hc > staged_rollable) {
  7502. HASH_ITER(hh, staged_work, work, tmp) {
  7503. if (!work_rollable(work))
  7504. break;
  7505. }
  7506. } else
  7507. work = staged_work;
  7508. if (can_roll(work) && should_roll(work))
  7509. {
  7510. // Instead of consuming it, force it to be cloned and grab the clone
  7511. mutex_unlock(stgd_lock);
  7512. clone_available();
  7513. goto retry;
  7514. }
  7515. HASH_DEL(staged_work, work);
  7516. if (work_rollable(work))
  7517. staged_rollable--;
  7518. /* Signal the getwork scheduler to look for more work */
  7519. pthread_cond_signal(&gws_cond);
  7520. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7521. pthread_cond_signal(&getq->cond);
  7522. mutex_unlock(stgd_lock);
  7523. work->pool->last_work_time = time(NULL);
  7524. cgtime(&work->pool->tv_last_work_time);
  7525. return work;
  7526. }
  7527. /* Clones work by rolling it if possible, and returning a clone instead of the
  7528. * original work item which gets staged again to possibly be rolled again in
  7529. * the future */
  7530. static struct work *clone_work(struct work *work)
  7531. {
  7532. int mrs = mining_threads + opt_queue - total_staged();
  7533. struct work *work_clone;
  7534. bool cloned;
  7535. if (mrs < 1)
  7536. return work;
  7537. cloned = false;
  7538. work_clone = make_clone(work);
  7539. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7540. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7541. stage_work(work_clone);
  7542. roll_work(work);
  7543. work_clone = make_clone(work);
  7544. /* Roll it again to prevent duplicates should this be used
  7545. * directly later on */
  7546. roll_work(work);
  7547. cloned = true;
  7548. }
  7549. if (cloned) {
  7550. stage_work(work);
  7551. return work_clone;
  7552. }
  7553. free_work(work_clone);
  7554. return work;
  7555. }
  7556. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7557. {
  7558. unsigned char hash1[32];
  7559. sha256(data, len, hash1);
  7560. sha256(hash1, 32, hash);
  7561. }
  7562. /* Diff 1 is a 256 bit unsigned integer of
  7563. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7564. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7565. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7566. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7567. {
  7568. uint64_t *data64, h64;
  7569. double d64;
  7570. d64 = diffone;
  7571. d64 /= diff;
  7572. d64 = ceil(d64);
  7573. h64 = d64;
  7574. memset(target, 0, 32);
  7575. if (d64 < 18446744073709551616.0) {
  7576. unsigned char *rtarget = target;
  7577. memset(rtarget, 0, 32);
  7578. if (opt_scrypt)
  7579. data64 = (uint64_t *)(rtarget + 2);
  7580. else
  7581. data64 = (uint64_t *)(rtarget + 4);
  7582. *data64 = htobe64(h64);
  7583. } else {
  7584. /* Support for the classic all FFs just-below-1 diff */
  7585. if (opt_scrypt)
  7586. memset(&target[2], 0xff, 30);
  7587. else
  7588. memset(&target[4], 0xff, 28);
  7589. }
  7590. }
  7591. void set_target(unsigned char *dest_target, double diff)
  7592. {
  7593. unsigned char rtarget[32];
  7594. bdiff_target_leadzero(rtarget, diff);
  7595. swab256(dest_target, rtarget);
  7596. if (opt_debug) {
  7597. char htarget[65];
  7598. bin2hex(htarget, rtarget, 32);
  7599. applog(LOG_DEBUG, "Generated target %s", htarget);
  7600. }
  7601. }
  7602. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7603. {
  7604. *dst = *src;
  7605. dst->job_id = strdup(src->job_id);
  7606. bytes_cpy(&dst->coinbase, &src->coinbase);
  7607. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7608. }
  7609. void stratum_work_clean(struct stratum_work * const swork)
  7610. {
  7611. free(swork->job_id);
  7612. bytes_free(&swork->coinbase);
  7613. bytes_free(&swork->merkle_bin);
  7614. }
  7615. /* Generates stratum based work based on the most recent notify information
  7616. * from the pool. This will keep generating work while a pool is down so we use
  7617. * other means to detect when the pool has died in stratum_thread */
  7618. static void gen_stratum_work(struct pool *pool, struct work *work)
  7619. {
  7620. clean_work(work);
  7621. cg_wlock(&pool->data_lock);
  7622. pool->swork.data_lock_p = &pool->data_lock;
  7623. bytes_resize(&work->nonce2, pool->n2size);
  7624. if (pool->nonce2sz < pool->n2size)
  7625. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7626. memcpy(bytes_buf(&work->nonce2),
  7627. #ifdef WORDS_BIGENDIAN
  7628. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7629. &((char*)&pool->nonce2)[pool->nonce2off],
  7630. #else
  7631. &pool->nonce2,
  7632. #endif
  7633. pool->nonce2sz);
  7634. pool->nonce2++;
  7635. work->pool = pool;
  7636. work->work_restart_id = work->pool->work_restart_id;
  7637. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7638. cgtime(&work->tv_staged);
  7639. }
  7640. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7641. {
  7642. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7643. uint8_t *merkle_bin;
  7644. uint32_t *data32, *swap32;
  7645. int i;
  7646. /* Generate coinbase */
  7647. coinbase = bytes_buf(&swork->coinbase);
  7648. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7649. /* Downgrade to a read lock to read off the variables */
  7650. if (swork->data_lock_p)
  7651. cg_dwlock(swork->data_lock_p);
  7652. /* Generate merkle root */
  7653. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7654. memcpy(merkle_sha, merkle_root, 32);
  7655. merkle_bin = bytes_buf(&swork->merkle_bin);
  7656. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7657. memcpy(merkle_sha + 32, merkle_bin, 32);
  7658. gen_hash(merkle_sha, merkle_root, 64);
  7659. memcpy(merkle_sha, merkle_root, 32);
  7660. }
  7661. data32 = (uint32_t *)merkle_sha;
  7662. swap32 = (uint32_t *)merkle_root;
  7663. flip32(swap32, data32);
  7664. memcpy(&work->data[0], swork->header1, 36);
  7665. memcpy(&work->data[36], merkle_root, 32);
  7666. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7667. memcpy(&work->data[72], swork->diffbits, 4);
  7668. memset(&work->data[76], 0, 4); // nonce
  7669. memcpy(&work->data[80], workpadding_bin, 48);
  7670. /* Store the stratum work diff to check it still matches the pool's
  7671. * stratum diff when submitting shares */
  7672. work->sdiff = swork->diff;
  7673. /* Copy parameters required for share submission */
  7674. work->job_id = strdup(swork->job_id);
  7675. work->nonce1 = strdup(nonce1);
  7676. if (swork->data_lock_p)
  7677. cg_runlock(swork->data_lock_p);
  7678. if (opt_debug)
  7679. {
  7680. char header[161];
  7681. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7682. bin2hex(header, work->data, 80);
  7683. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7684. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7685. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7686. }
  7687. calc_midstate(work);
  7688. set_target(work->target, work->sdiff);
  7689. local_work++;
  7690. work->stratum = true;
  7691. work->blk.nonce = 0;
  7692. work->id = total_work++;
  7693. work->longpoll = false;
  7694. work->getwork_mode = GETWORK_MODE_STRATUM;
  7695. /* Nominally allow a driver to ntime roll 60 seconds */
  7696. work->drv_rolllimit = 60;
  7697. calc_diff(work, 0);
  7698. }
  7699. void request_work(struct thr_info *thr)
  7700. {
  7701. struct cgpu_info *cgpu = thr->cgpu;
  7702. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7703. /* Tell the watchdog thread this thread is waiting on getwork and
  7704. * should not be restarted */
  7705. thread_reportout(thr);
  7706. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7707. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7708. {
  7709. if (proc->threads)
  7710. break;
  7711. thread_reportout(proc->thr[0]);
  7712. }
  7713. cgtime(&dev_stats->_get_start);
  7714. }
  7715. // FIXME: Make this non-blocking (and remove HACK above)
  7716. struct work *get_work(struct thr_info *thr)
  7717. {
  7718. const int thr_id = thr->id;
  7719. struct cgpu_info *cgpu = thr->cgpu;
  7720. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7721. struct cgminer_stats *pool_stats;
  7722. struct timeval tv_get;
  7723. struct work *work = NULL;
  7724. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7725. while (!work) {
  7726. work = hash_pop();
  7727. if (stale_work(work, false)) {
  7728. staged_full = false; // It wasn't really full, since it was stale :(
  7729. discard_work(work);
  7730. work = NULL;
  7731. wake_gws();
  7732. }
  7733. }
  7734. last_getwork = time(NULL);
  7735. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7736. cgpu->proc_repr, work->id, thr_id);
  7737. work->thr_id = thr_id;
  7738. thread_reportin(thr);
  7739. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7740. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7741. {
  7742. if (proc->threads)
  7743. break;
  7744. thread_reportin(proc->thr[0]);
  7745. }
  7746. work->mined = true;
  7747. work->blk.nonce = 0;
  7748. cgtime(&tv_get);
  7749. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7750. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7751. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7752. dev_stats->getwork_wait_max = tv_get;
  7753. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7754. dev_stats->getwork_wait_min = tv_get;
  7755. ++dev_stats->getwork_calls;
  7756. pool_stats = &(work->pool->cgminer_stats);
  7757. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7758. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7759. pool_stats->getwork_wait_max = tv_get;
  7760. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7761. pool_stats->getwork_wait_min = tv_get;
  7762. ++pool_stats->getwork_calls;
  7763. if (work->work_difficulty < 1)
  7764. {
  7765. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7766. {
  7767. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7768. cgpu->proc_repr);
  7769. work->nonce_diff = cgpu->min_nonce_diff;
  7770. }
  7771. else
  7772. work->nonce_diff = work->work_difficulty;
  7773. }
  7774. else
  7775. work->nonce_diff = 1;
  7776. return work;
  7777. }
  7778. static
  7779. void _submit_work_async(struct work *work)
  7780. {
  7781. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7782. mutex_lock(&submitting_lock);
  7783. ++total_submitting;
  7784. DL_APPEND(submit_waiting, work);
  7785. mutex_unlock(&submitting_lock);
  7786. notifier_wake(submit_waiting_notifier);
  7787. }
  7788. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7789. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7790. {
  7791. if (tv_work_found)
  7792. copy_time(&work->tv_work_found, tv_work_found);
  7793. _submit_work_async(work);
  7794. }
  7795. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7796. {
  7797. struct cgpu_info * const cgpu = thr->cgpu;
  7798. if (bad_nonce_p)
  7799. {
  7800. if (bad_nonce_p == UNKNOWN_NONCE)
  7801. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7802. cgpu->proc_repr);
  7803. else
  7804. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7805. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7806. }
  7807. mutex_lock(&stats_lock);
  7808. hw_errors++;
  7809. ++cgpu->hw_errors;
  7810. if (bad_nonce_p)
  7811. {
  7812. total_bad_diff1 += nonce_diff;
  7813. cgpu->bad_diff1 += nonce_diff;
  7814. }
  7815. mutex_unlock(&stats_lock);
  7816. if (thr->cgpu->drv->hw_error)
  7817. thr->cgpu->drv->hw_error(thr);
  7818. }
  7819. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7820. {
  7821. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7822. hash_data(work->hash, work->data);
  7823. if (hash2_32[7] != 0)
  7824. return TNR_BAD;
  7825. if (!checktarget)
  7826. return TNR_GOOD;
  7827. if (!hash_target_check_v(work->hash, work->target))
  7828. return TNR_HIGH;
  7829. return TNR_GOOD;
  7830. }
  7831. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7832. {
  7833. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7834. *work_nonce = htole32(nonce);
  7835. #ifdef USE_SCRYPT
  7836. if (opt_scrypt)
  7837. // NOTE: Depends on scrypt_test return matching enum values
  7838. return scrypt_test(work->data, work->target, nonce);
  7839. #endif
  7840. return hashtest2(work, checktarget);
  7841. }
  7842. /* Returns true if nonce for work was a valid share */
  7843. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7844. {
  7845. return submit_noffset_nonce(thr, work, nonce, 0);
  7846. }
  7847. /* Allows drivers to submit work items where the driver has changed the ntime
  7848. * value by noffset. Must be only used with a work protocol that does not ntime
  7849. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7850. * the original work struct, but the copy of it only. */
  7851. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7852. int noffset)
  7853. {
  7854. struct work *work = make_work();
  7855. _copy_work(work, work_in, noffset);
  7856. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7857. struct timeval tv_work_found;
  7858. enum test_nonce2_result res;
  7859. bool ret = true;
  7860. thread_reportout(thr);
  7861. cgtime(&tv_work_found);
  7862. *work_nonce = htole32(nonce);
  7863. work->thr_id = thr->id;
  7864. /* Do one last check before attempting to submit the work */
  7865. /* Side effect: sets work->data for us */
  7866. res = test_nonce2(work, nonce);
  7867. if (unlikely(res == TNR_BAD))
  7868. {
  7869. inc_hw_errors(thr, work, nonce);
  7870. ret = false;
  7871. goto out;
  7872. }
  7873. mutex_lock(&stats_lock);
  7874. total_diff1 += work->nonce_diff;
  7875. thr ->cgpu->diff1 += work->nonce_diff;
  7876. work->pool->diff1 += work->nonce_diff;
  7877. thr->cgpu->last_device_valid_work = time(NULL);
  7878. mutex_unlock(&stats_lock);
  7879. if (noncelog_file)
  7880. noncelog(work);
  7881. if (res == TNR_HIGH)
  7882. {
  7883. // Share above target, normal
  7884. /* Check the diff of the share, even if it didn't reach the
  7885. * target, just to set the best share value if it's higher. */
  7886. share_diff(work);
  7887. goto out;
  7888. }
  7889. submit_work_async2(work, &tv_work_found);
  7890. work = NULL; // Taken by submit_work_async2
  7891. out:
  7892. if (work)
  7893. free_work(work);
  7894. thread_reportin(thr);
  7895. return ret;
  7896. }
  7897. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7898. {
  7899. if (wdiff->tv_sec > opt_scantime ||
  7900. work->blk.nonce >= MAXTHREADS - hashes ||
  7901. hashes >= 0xfffffffe ||
  7902. stale_work(work, false))
  7903. return true;
  7904. return false;
  7905. }
  7906. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7907. {
  7908. struct cgpu_info *proc = thr->cgpu;
  7909. if (proc->threads > 1)
  7910. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7911. else
  7912. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7913. }
  7914. // Called by asynchronous minerloops, when they find their processor should be disabled
  7915. void mt_disable_start(struct thr_info *mythr)
  7916. {
  7917. struct cgpu_info *cgpu = mythr->cgpu;
  7918. struct device_drv *drv = cgpu->drv;
  7919. if (drv->thread_disable)
  7920. drv->thread_disable(mythr);
  7921. hashmeter2(mythr);
  7922. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7923. mythr->rolling = mythr->cgpu->rolling = 0;
  7924. thread_reportout(mythr);
  7925. mythr->_mt_disable_called = true;
  7926. }
  7927. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7928. * the driver tells us it's full so that it may extract the work item using
  7929. * the get_queued() function which adds it to the hashtable on
  7930. * cgpu->queued_work. */
  7931. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7932. {
  7933. thread_reportout(mythr);
  7934. do {
  7935. bool need_work;
  7936. /* Do this lockless just to know if we need more unqueued work. */
  7937. need_work = (!cgpu->unqueued_work);
  7938. /* get_work is a blocking function so do it outside of lock
  7939. * to prevent deadlocks with other locks. */
  7940. if (need_work) {
  7941. struct work *work = get_work(mythr);
  7942. wr_lock(&cgpu->qlock);
  7943. /* Check we haven't grabbed work somehow between
  7944. * checking and picking up the lock. */
  7945. if (likely(!cgpu->unqueued_work))
  7946. cgpu->unqueued_work = work;
  7947. else
  7948. need_work = false;
  7949. wr_unlock(&cgpu->qlock);
  7950. if (unlikely(!need_work))
  7951. discard_work(work);
  7952. }
  7953. /* The queue_full function should be used by the driver to
  7954. * actually place work items on the physical device if it
  7955. * does have a queue. */
  7956. } while (drv->queue_full && !drv->queue_full(cgpu));
  7957. }
  7958. /* Add a work item to a cgpu's queued hashlist */
  7959. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  7960. {
  7961. cgpu->queued_count++;
  7962. HASH_ADD_INT(cgpu->queued_work, id, work);
  7963. }
  7964. /* This function is for retrieving one work item from the unqueued pointer and
  7965. * adding it to the hashtable of queued work. Code using this function must be
  7966. * able to handle NULL as a return which implies there is no work available. */
  7967. struct work *get_queued(struct cgpu_info *cgpu)
  7968. {
  7969. struct work *work = NULL;
  7970. wr_lock(&cgpu->qlock);
  7971. if (cgpu->unqueued_work) {
  7972. work = cgpu->unqueued_work;
  7973. __add_queued(cgpu, work);
  7974. cgpu->unqueued_work = NULL;
  7975. }
  7976. wr_unlock(&cgpu->qlock);
  7977. return work;
  7978. }
  7979. void add_queued(struct cgpu_info *cgpu, struct work *work)
  7980. {
  7981. wr_lock(&cgpu->qlock);
  7982. __add_queued(cgpu, work);
  7983. wr_unlock(&cgpu->qlock);
  7984. }
  7985. /* Get fresh work and add it to cgpu's queued hashlist */
  7986. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  7987. {
  7988. struct work *work = get_work(thr);
  7989. add_queued(cgpu, work);
  7990. return work;
  7991. }
  7992. /* This function is for finding an already queued work item in the
  7993. * given que hashtable. Code using this function must be able
  7994. * to handle NULL as a return which implies there is no matching work.
  7995. * The calling function must lock access to the que if it is required.
  7996. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7997. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7998. {
  7999. struct work *work, *tmp, *ret = NULL;
  8000. HASH_ITER(hh, que, work, tmp) {
  8001. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8002. memcmp(work->data + offset, data, datalen) == 0) {
  8003. ret = work;
  8004. break;
  8005. }
  8006. }
  8007. return ret;
  8008. }
  8009. /* This function is for finding an already queued work item in the
  8010. * device's queued_work hashtable. Code using this function must be able
  8011. * to handle NULL as a return which implies there is no matching work.
  8012. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8013. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8014. {
  8015. struct work *ret;
  8016. rd_lock(&cgpu->qlock);
  8017. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8018. rd_unlock(&cgpu->qlock);
  8019. return ret;
  8020. }
  8021. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8022. {
  8023. struct work *work, *ret = NULL;
  8024. rd_lock(&cgpu->qlock);
  8025. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8026. if (work)
  8027. ret = copy_work(work);
  8028. rd_unlock(&cgpu->qlock);
  8029. return ret;
  8030. }
  8031. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8032. {
  8033. cgpu->queued_count--;
  8034. HASH_DEL(cgpu->queued_work, work);
  8035. }
  8036. /* This function should be used by queued device drivers when they're sure
  8037. * the work struct is no longer in use. */
  8038. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8039. {
  8040. wr_lock(&cgpu->qlock);
  8041. __work_completed(cgpu, work);
  8042. wr_unlock(&cgpu->qlock);
  8043. free_work(work);
  8044. }
  8045. /* Combines find_queued_work_bymidstate and work_completed in one function
  8046. * withOUT destroying the work so the driver must free it. */
  8047. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8048. {
  8049. struct work *work;
  8050. wr_lock(&cgpu->qlock);
  8051. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8052. if (work)
  8053. __work_completed(cgpu, work);
  8054. wr_unlock(&cgpu->qlock);
  8055. return work;
  8056. }
  8057. static void flush_queue(struct cgpu_info *cgpu)
  8058. {
  8059. struct work *work = NULL;
  8060. wr_lock(&cgpu->qlock);
  8061. work = cgpu->unqueued_work;
  8062. cgpu->unqueued_work = NULL;
  8063. wr_unlock(&cgpu->qlock);
  8064. if (work) {
  8065. free_work(work);
  8066. applog(LOG_DEBUG, "Discarded queued work item");
  8067. }
  8068. }
  8069. /* This version of hash work is for devices that are fast enough to always
  8070. * perform a full nonce range and need a queue to maintain the device busy.
  8071. * Work creation and destruction is not done from within this function
  8072. * directly. */
  8073. void hash_queued_work(struct thr_info *mythr)
  8074. {
  8075. const long cycle = opt_log_interval / 5 ? : 1;
  8076. struct timeval tv_start = {0, 0}, tv_end;
  8077. struct cgpu_info *cgpu = mythr->cgpu;
  8078. struct device_drv *drv = cgpu->drv;
  8079. const int thr_id = mythr->id;
  8080. int64_t hashes_done = 0;
  8081. if (unlikely(cgpu->deven != DEV_ENABLED))
  8082. mt_disable(mythr);
  8083. while (likely(!cgpu->shutdown)) {
  8084. struct timeval diff;
  8085. int64_t hashes;
  8086. fill_queue(mythr, cgpu, drv, thr_id);
  8087. thread_reportin(mythr);
  8088. hashes = drv->scanwork(mythr);
  8089. /* Reset the bool here in case the driver looks for it
  8090. * synchronously in the scanwork loop. */
  8091. mythr->work_restart = false;
  8092. if (unlikely(hashes == -1 )) {
  8093. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8094. cgpu->deven = DEV_DISABLED;
  8095. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8096. mt_disable(mythr);
  8097. }
  8098. hashes_done += hashes;
  8099. cgtime(&tv_end);
  8100. timersub(&tv_end, &tv_start, &diff);
  8101. if (diff.tv_sec >= cycle) {
  8102. hashmeter(thr_id, &diff, hashes_done);
  8103. hashes_done = 0;
  8104. copy_time(&tv_start, &tv_end);
  8105. }
  8106. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8107. mt_disable(mythr);
  8108. if (unlikely(mythr->work_restart)) {
  8109. flush_queue(cgpu);
  8110. if (drv->flush_work)
  8111. drv->flush_work(cgpu);
  8112. }
  8113. }
  8114. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8115. }
  8116. // Called by minerloop, when it is re-enabling a processor
  8117. void mt_disable_finish(struct thr_info *mythr)
  8118. {
  8119. struct device_drv *drv = mythr->cgpu->drv;
  8120. thread_reportin(mythr);
  8121. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8122. if (drv->thread_enable)
  8123. drv->thread_enable(mythr);
  8124. mythr->_mt_disable_called = false;
  8125. }
  8126. // Called by synchronous minerloops, when they find their processor should be disabled
  8127. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8128. void mt_disable(struct thr_info *mythr)
  8129. {
  8130. const struct cgpu_info * const cgpu = mythr->cgpu;
  8131. mt_disable_start(mythr);
  8132. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8133. do {
  8134. notifier_read(mythr->notifier);
  8135. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8136. mt_disable_finish(mythr);
  8137. }
  8138. enum {
  8139. STAT_SLEEP_INTERVAL = 1,
  8140. STAT_CTR_INTERVAL = 10000000,
  8141. FAILURE_INTERVAL = 30,
  8142. };
  8143. /* Stage another work item from the work returned in a longpoll */
  8144. 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)
  8145. {
  8146. bool rc;
  8147. work->rolltime = rolltime;
  8148. rc = work_decode(pool, work, val);
  8149. if (unlikely(!rc)) {
  8150. applog(LOG_ERR, "Could not convert longpoll data to work");
  8151. free_work(work);
  8152. return;
  8153. }
  8154. total_getworks++;
  8155. pool->getwork_requested++;
  8156. work->pool = pool;
  8157. copy_time(&work->tv_getwork, tv_lp);
  8158. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8159. calc_diff(work, 0);
  8160. if (pool->enabled == POOL_REJECTING)
  8161. work->mandatory = true;
  8162. work->longpoll = true;
  8163. work->getwork_mode = GETWORK_MODE_LP;
  8164. update_last_work(work);
  8165. /* We'll be checking this work item twice, but we already know it's
  8166. * from a new block so explicitly force the new block detection now
  8167. * rather than waiting for it to hit the stage thread. This also
  8168. * allows testwork to know whether LP discovered the block or not. */
  8169. test_work_current(work);
  8170. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8171. * the longpoll work from a pool that has been rejecting shares as a
  8172. * way to detect when the pool has recovered.
  8173. */
  8174. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8175. free_work(work);
  8176. return;
  8177. }
  8178. work = clone_work(work);
  8179. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8180. stage_work(work);
  8181. applog(LOG_DEBUG, "Converted longpoll data to work");
  8182. }
  8183. /* If we want longpoll, enable it for the chosen default pool, or, if
  8184. * the pool does not support longpoll, find the first one that does
  8185. * and use its longpoll support */
  8186. static struct pool *select_longpoll_pool(struct pool *cp)
  8187. {
  8188. int i;
  8189. if (cp->lp_url)
  8190. return cp;
  8191. for (i = 0; i < total_pools; i++) {
  8192. struct pool *pool = pools[i];
  8193. if (pool->has_stratum || pool->lp_url)
  8194. return pool;
  8195. }
  8196. return NULL;
  8197. }
  8198. /* This will make the longpoll thread wait till it's the current pool, or it
  8199. * has been flagged as rejecting, before attempting to open any connections.
  8200. */
  8201. static void wait_lpcurrent(struct pool *pool)
  8202. {
  8203. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8204. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8205. pool_strategy != POOL_BALANCE))) {
  8206. mutex_lock(&lp_lock);
  8207. pthread_cond_wait(&lp_cond, &lp_lock);
  8208. mutex_unlock(&lp_lock);
  8209. }
  8210. }
  8211. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8212. struct pool *pool = vpool;
  8213. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8214. pool->lp_socket = sock;
  8215. return sock;
  8216. }
  8217. static void *longpoll_thread(void *userdata)
  8218. {
  8219. struct pool *cp = (struct pool *)userdata;
  8220. /* This *pool is the source of the actual longpoll, not the pool we've
  8221. * tied it to */
  8222. struct timeval start, reply, end;
  8223. struct pool *pool = NULL;
  8224. char threadname[20];
  8225. CURL *curl = NULL;
  8226. int failures = 0;
  8227. char *lp_url;
  8228. int rolltime;
  8229. #ifndef HAVE_PTHREAD_CANCEL
  8230. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8231. #endif
  8232. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8233. RenameThread(threadname);
  8234. curl = curl_easy_init();
  8235. if (unlikely(!curl)) {
  8236. applog(LOG_ERR, "CURL initialisation failed");
  8237. return NULL;
  8238. }
  8239. retry_pool:
  8240. pool = select_longpoll_pool(cp);
  8241. if (!pool) {
  8242. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8243. while (!pool) {
  8244. cgsleep_ms(60000);
  8245. pool = select_longpoll_pool(cp);
  8246. }
  8247. }
  8248. if (pool->has_stratum) {
  8249. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8250. cp->rpc_url, pool->rpc_url);
  8251. goto out;
  8252. }
  8253. /* Any longpoll from any pool is enough for this to be true */
  8254. have_longpoll = true;
  8255. wait_lpcurrent(cp);
  8256. {
  8257. lp_url = pool->lp_url;
  8258. if (cp == pool)
  8259. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8260. else
  8261. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8262. }
  8263. while (42) {
  8264. json_t *val, *soval;
  8265. struct work *work = make_work();
  8266. char *lpreq;
  8267. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8268. work->pool = pool;
  8269. if (!lpreq)
  8270. {
  8271. free_work(work);
  8272. goto lpfail;
  8273. }
  8274. wait_lpcurrent(cp);
  8275. cgtime(&start);
  8276. /* Longpoll connections can be persistent for a very long time
  8277. * and any number of issues could have come up in the meantime
  8278. * so always establish a fresh connection instead of relying on
  8279. * a persistent one. */
  8280. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8281. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8282. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8283. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8284. lpreq, false, true, &rolltime, pool, false);
  8285. pool->lp_socket = CURL_SOCKET_BAD;
  8286. cgtime(&reply);
  8287. free(lpreq);
  8288. if (likely(val)) {
  8289. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8290. if (soval)
  8291. pool->submit_old = json_is_true(soval);
  8292. else
  8293. pool->submit_old = false;
  8294. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8295. failures = 0;
  8296. json_decref(val);
  8297. } else {
  8298. /* Some pools regularly drop the longpoll request so
  8299. * only see this as longpoll failure if it happens
  8300. * immediately and just restart it the rest of the
  8301. * time. */
  8302. cgtime(&end);
  8303. free_work(work);
  8304. if (end.tv_sec - start.tv_sec > 30)
  8305. continue;
  8306. if (failures == 1)
  8307. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8308. lpfail:
  8309. cgsleep_ms(30000);
  8310. }
  8311. if (pool != cp) {
  8312. pool = select_longpoll_pool(cp);
  8313. if (pool->has_stratum) {
  8314. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8315. cp->rpc_url, pool->rpc_url);
  8316. break;
  8317. }
  8318. if (unlikely(!pool))
  8319. goto retry_pool;
  8320. }
  8321. if (unlikely(pool->removed))
  8322. break;
  8323. }
  8324. out:
  8325. curl_easy_cleanup(curl);
  8326. return NULL;
  8327. }
  8328. static void stop_longpoll(void)
  8329. {
  8330. int i;
  8331. want_longpoll = false;
  8332. for (i = 0; i < total_pools; ++i)
  8333. {
  8334. struct pool *pool = pools[i];
  8335. if (unlikely(!pool->lp_started))
  8336. continue;
  8337. pool->lp_started = false;
  8338. pthread_cancel(pool->longpoll_thread);
  8339. }
  8340. have_longpoll = false;
  8341. }
  8342. static void start_longpoll(void)
  8343. {
  8344. int i;
  8345. want_longpoll = true;
  8346. for (i = 0; i < total_pools; ++i)
  8347. {
  8348. struct pool *pool = pools[i];
  8349. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8350. continue;
  8351. pool->lp_started = true;
  8352. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8353. quit(1, "Failed to create pool longpoll thread");
  8354. }
  8355. }
  8356. void reinit_device(struct cgpu_info *cgpu)
  8357. {
  8358. if (cgpu->drv->reinit_device)
  8359. cgpu->drv->reinit_device(cgpu);
  8360. }
  8361. static struct timeval rotate_tv;
  8362. /* We reap curls if they are unused for over a minute */
  8363. static void reap_curl(struct pool *pool)
  8364. {
  8365. struct curl_ent *ent, *iter;
  8366. struct timeval now;
  8367. int reaped = 0;
  8368. cgtime(&now);
  8369. mutex_lock(&pool->pool_lock);
  8370. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8371. if (pool->curls < 2)
  8372. break;
  8373. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8374. reaped++;
  8375. pool->curls--;
  8376. LL_DELETE(pool->curllist, ent);
  8377. curl_easy_cleanup(ent->curl);
  8378. free(ent);
  8379. }
  8380. }
  8381. mutex_unlock(&pool->pool_lock);
  8382. if (reaped)
  8383. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8384. }
  8385. static void *watchpool_thread(void __maybe_unused *userdata)
  8386. {
  8387. int intervals = 0;
  8388. #ifndef HAVE_PTHREAD_CANCEL
  8389. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8390. #endif
  8391. RenameThread("watchpool");
  8392. while (42) {
  8393. struct timeval now;
  8394. int i;
  8395. if (++intervals > 20)
  8396. intervals = 0;
  8397. cgtime(&now);
  8398. for (i = 0; i < total_pools; i++) {
  8399. struct pool *pool = pools[i];
  8400. if (!opt_benchmark)
  8401. reap_curl(pool);
  8402. /* Get a rolling utility per pool over 10 mins */
  8403. if (intervals > 19) {
  8404. int shares = pool->diff1 - pool->last_shares;
  8405. pool->last_shares = pool->diff1;
  8406. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8407. pool->shares = pool->utility;
  8408. }
  8409. if (pool->enabled == POOL_DISABLED)
  8410. continue;
  8411. /* Don't start testing any pools if the test threads
  8412. * from startup are still doing their first attempt. */
  8413. if (unlikely(pool->testing)) {
  8414. pthread_join(pool->test_thread, NULL);
  8415. }
  8416. /* Test pool is idle once every minute */
  8417. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8418. cgtime(&pool->tv_idle);
  8419. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8420. pool_resus(pool);
  8421. }
  8422. /* Only switch pools if the failback pool has been
  8423. * alive for more than 5 minutes to prevent
  8424. * intermittently failing pools from being used. */
  8425. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8426. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8427. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8428. pool->pool_no, pool->rpc_url);
  8429. switch_pools(NULL);
  8430. }
  8431. }
  8432. if (current_pool()->idle)
  8433. switch_pools(NULL);
  8434. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8435. cgtime(&rotate_tv);
  8436. switch_pools(NULL);
  8437. }
  8438. cgsleep_ms(30000);
  8439. }
  8440. return NULL;
  8441. }
  8442. void mt_enable(struct thr_info *thr)
  8443. {
  8444. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8445. notifier_wake(thr->notifier);
  8446. }
  8447. void proc_enable(struct cgpu_info *cgpu)
  8448. {
  8449. int j;
  8450. cgpu->deven = DEV_ENABLED;
  8451. for (j = cgpu->threads ?: 1; j--; )
  8452. mt_enable(cgpu->thr[j]);
  8453. }
  8454. #define device_recovered(cgpu) proc_enable(cgpu)
  8455. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8456. {
  8457. struct string_elist *setstr_elist;
  8458. const char *p, *p2;
  8459. char replybuf[0x2000];
  8460. size_t L;
  8461. DL_FOREACH(opt_set_device_list, setstr_elist)
  8462. {
  8463. const char * const setstr = setstr_elist->string;
  8464. p = strchr(setstr, ':');
  8465. if (!p)
  8466. p = setstr;
  8467. {
  8468. L = p - setstr;
  8469. char pattern[L + 1];
  8470. if (L)
  8471. memcpy(pattern, setstr, L);
  8472. pattern[L] = '\0';
  8473. if (!cgpu_match(pattern, cgpu))
  8474. continue;
  8475. }
  8476. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8477. cgpu->proc_repr, __func__, setstr);
  8478. if (p[0] == ':')
  8479. ++p;
  8480. p2 = strchr(p, '=');
  8481. if (!p2)
  8482. {
  8483. L = strlen(p);
  8484. p2 = "";
  8485. }
  8486. else
  8487. {
  8488. L = p2 - p;
  8489. ++p2;
  8490. }
  8491. char opt[L + 1];
  8492. if (L)
  8493. memcpy(opt, p, L);
  8494. opt[L] = '\0';
  8495. L = strlen(p2);
  8496. char setval[L + 1];
  8497. if (L)
  8498. memcpy(setval, p2, L);
  8499. setval[L] = '\0';
  8500. enum bfg_set_device_replytype success;
  8501. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8502. switch (success)
  8503. {
  8504. case SDR_OK:
  8505. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8506. cgpu->proc_repr, setstr,
  8507. p ? ": " : "", p ?: "");
  8508. break;
  8509. case SDR_ERR:
  8510. case SDR_HELP:
  8511. case SDR_UNKNOWN:
  8512. applog(LOG_WARNING, "%"PRIpreprv": Applying rule %s: %s",
  8513. cgpu->proc_repr, setstr, p);
  8514. break;
  8515. case SDR_AUTO:
  8516. case SDR_NOSUPP:
  8517. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8518. cgpu->proc_repr, setstr);
  8519. }
  8520. }
  8521. cgpu->already_set_defaults = true;
  8522. }
  8523. 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)
  8524. {
  8525. struct device_drv dummy_drv = *drv;
  8526. struct cgpu_info dummy_cgpu = {
  8527. .drv = &dummy_drv,
  8528. .device = &dummy_cgpu,
  8529. .device_id = -1,
  8530. .proc_id = -1,
  8531. .device_data = userp,
  8532. .device_path = devpath,
  8533. .dev_serial = serial,
  8534. };
  8535. strcpy(dummy_cgpu.proc_repr, drv->name);
  8536. switch (mode)
  8537. {
  8538. case 0:
  8539. dummy_drv.set_device = datap;
  8540. break;
  8541. case 1:
  8542. dummy_drv.set_device = NULL;
  8543. dummy_cgpu.set_device_funcs = datap;
  8544. break;
  8545. }
  8546. cgpu_set_defaults(&dummy_cgpu);
  8547. }
  8548. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8549. * the screen at regular intervals, and restarts threads if they appear to have
  8550. * died. */
  8551. #define WATCHDOG_SICK_TIME 60
  8552. #define WATCHDOG_DEAD_TIME 600
  8553. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8554. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8555. static void *watchdog_thread(void __maybe_unused *userdata)
  8556. {
  8557. const unsigned int interval = WATCHDOG_INTERVAL;
  8558. struct timeval zero_tv;
  8559. #ifndef HAVE_PTHREAD_CANCEL
  8560. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8561. #endif
  8562. RenameThread("watchdog");
  8563. memset(&zero_tv, 0, sizeof(struct timeval));
  8564. cgtime(&rotate_tv);
  8565. while (1) {
  8566. int i;
  8567. struct timeval now;
  8568. sleep(interval);
  8569. discard_stale();
  8570. hashmeter(-1, &zero_tv, 0);
  8571. #ifdef HAVE_CURSES
  8572. const int ts = total_staged();
  8573. if (curses_active_locked()) {
  8574. change_logwinsize();
  8575. curses_print_status(ts);
  8576. _refresh_devstatus(true);
  8577. touchwin(logwin);
  8578. wrefresh(logwin);
  8579. unlock_curses();
  8580. }
  8581. #endif
  8582. cgtime(&now);
  8583. if (!sched_paused && !should_run()) {
  8584. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8585. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8586. if (!schedstart.enable) {
  8587. quit(0, "Terminating execution as planned");
  8588. break;
  8589. }
  8590. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8591. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8592. sched_paused = true;
  8593. rd_lock(&mining_thr_lock);
  8594. for (i = 0; i < mining_threads; i++)
  8595. mining_thr[i]->pause = true;
  8596. rd_unlock(&mining_thr_lock);
  8597. } else if (sched_paused && should_run()) {
  8598. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8599. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8600. if (schedstop.enable)
  8601. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8602. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8603. sched_paused = false;
  8604. for (i = 0; i < mining_threads; i++) {
  8605. struct thr_info *thr;
  8606. thr = get_thread(i);
  8607. thr->pause = false;
  8608. }
  8609. for (i = 0; i < total_devices; ++i)
  8610. {
  8611. struct cgpu_info *cgpu = get_devices(i);
  8612. /* Don't touch disabled devices */
  8613. if (cgpu->deven == DEV_DISABLED)
  8614. continue;
  8615. proc_enable(cgpu);
  8616. }
  8617. }
  8618. for (i = 0; i < total_devices; ++i) {
  8619. struct cgpu_info *cgpu = get_devices(i);
  8620. if (!cgpu->disable_watchdog)
  8621. bfg_watchdog(cgpu, &now);
  8622. }
  8623. }
  8624. return NULL;
  8625. }
  8626. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8627. {
  8628. struct thr_info *thr = cgpu->thr[0];
  8629. enum dev_enable *denable;
  8630. char *dev_str = cgpu->proc_repr;
  8631. int gpu;
  8632. if (likely(drv_ready(cgpu)))
  8633. {
  8634. if (unlikely(!cgpu->already_set_defaults))
  8635. cgpu_set_defaults(cgpu);
  8636. if (cgpu->drv->get_stats)
  8637. cgpu->drv->get_stats(cgpu);
  8638. }
  8639. gpu = cgpu->device_id;
  8640. denable = &cgpu->deven;
  8641. #ifdef HAVE_ADL
  8642. if (adl_active && cgpu->has_adl)
  8643. gpu_autotune(gpu, denable);
  8644. if (opt_debug && cgpu->has_adl) {
  8645. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  8646. float temp = 0, vddc = 0;
  8647. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  8648. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMHz V: %.3fV A: %d%% P: %d%%",
  8649. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  8650. }
  8651. #endif
  8652. /* Thread is disabled */
  8653. if (*denable == DEV_DISABLED)
  8654. return;
  8655. else
  8656. if (*denable == DEV_RECOVER_ERR) {
  8657. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8658. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8659. dev_str);
  8660. if (cgpu->reinit_backoff < 300)
  8661. cgpu->reinit_backoff *= 2;
  8662. device_recovered(cgpu);
  8663. }
  8664. return;
  8665. }
  8666. else
  8667. if (*denable == DEV_RECOVER) {
  8668. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8669. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8670. dev_str);
  8671. device_recovered(cgpu);
  8672. }
  8673. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8674. return;
  8675. }
  8676. else
  8677. if (cgpu->temp > cgpu->cutofftemp)
  8678. {
  8679. applog(LOG_WARNING, "%s hit thermal cutoff limit, disabling!",
  8680. dev_str);
  8681. *denable = DEV_RECOVER;
  8682. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8683. run_cmd(cmd_idle);
  8684. }
  8685. if (thr->getwork) {
  8686. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8687. int thrid;
  8688. bool cgpu_idle = true;
  8689. thr->rolling = 0;
  8690. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8691. if (!cgpu->thr[thrid]->getwork)
  8692. cgpu_idle = false;
  8693. if (cgpu_idle) {
  8694. cgpu->rolling = 0;
  8695. cgpu->status = LIFE_WAIT;
  8696. }
  8697. }
  8698. return;
  8699. }
  8700. else if (cgpu->status == LIFE_WAIT)
  8701. cgpu->status = LIFE_WELL;
  8702. #ifdef WANT_CPUMINE
  8703. if (!strcmp(cgpu->drv->dname, "cpu"))
  8704. return;
  8705. #endif
  8706. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8707. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8708. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8709. cgpu->status = LIFE_WELL;
  8710. cgpu->device_last_well = time(NULL);
  8711. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8712. thr->rolling = cgpu->rolling = 0;
  8713. cgpu->status = LIFE_SICK;
  8714. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8715. cgtime(&thr->sick);
  8716. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8717. run_cmd(cmd_sick);
  8718. #ifdef HAVE_ADL
  8719. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8720. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  8721. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  8722. } else
  8723. #endif
  8724. if (opt_restart && cgpu->drv->reinit_device) {
  8725. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8726. reinit_device(cgpu);
  8727. }
  8728. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8729. cgpu->status = LIFE_DEAD;
  8730. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8731. cgtime(&thr->sick);
  8732. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8733. run_cmd(cmd_dead);
  8734. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8735. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8736. /* Attempt to restart a GPU that's sick or dead once every minute */
  8737. cgtime(&thr->sick);
  8738. #ifdef HAVE_ADL
  8739. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8740. /* Again do not attempt to restart a device that may have hard hung */
  8741. } else
  8742. #endif
  8743. if (opt_restart)
  8744. reinit_device(cgpu);
  8745. }
  8746. }
  8747. static void log_print_status(struct cgpu_info *cgpu)
  8748. {
  8749. char logline[255];
  8750. get_statline(logline, sizeof(logline), cgpu);
  8751. applog(LOG_WARNING, "%s", logline);
  8752. }
  8753. void print_summary(void)
  8754. {
  8755. struct timeval diff;
  8756. int hours, mins, secs, i;
  8757. double utility, efficiency = 0.0;
  8758. char xfer[17], bw[19];
  8759. int pool_secs;
  8760. timersub(&total_tv_end, &total_tv_start, &diff);
  8761. hours = diff.tv_sec / 3600;
  8762. mins = (diff.tv_sec % 3600) / 60;
  8763. secs = diff.tv_sec % 60;
  8764. utility = total_accepted / total_secs * 60;
  8765. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8766. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8767. applog(LOG_WARNING, "Started at %s", datestamp);
  8768. if (total_pools == 1)
  8769. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8770. #ifdef WANT_CPUMINE
  8771. if (opt_n_threads)
  8772. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8773. #endif
  8774. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8775. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8776. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8777. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8778. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8779. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8780. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8781. total_rejected, total_stale,
  8782. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8783. );
  8784. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8785. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8786. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8787. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8788. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8789. (float)total_bytes_rcvd,
  8790. (float)total_bytes_sent),
  8791. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8792. (float)(total_bytes_rcvd / total_secs),
  8793. (float)(total_bytes_sent / total_secs)));
  8794. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8795. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8796. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8797. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8798. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8799. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8800. if (total_pools > 1) {
  8801. for (i = 0; i < total_pools; i++) {
  8802. struct pool *pool = pools[i];
  8803. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8804. if (pool->solved)
  8805. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8806. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8807. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8808. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8809. pool->rejected, pool->stale_shares,
  8810. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8811. );
  8812. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8813. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8814. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8815. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8816. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8817. (float)pool->cgminer_pool_stats.net_bytes_received,
  8818. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8819. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8820. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8821. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8822. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8823. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8824. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8825. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8826. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8827. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8828. }
  8829. }
  8830. if (opt_quit_summary != BQS_NONE)
  8831. {
  8832. if (opt_quit_summary == BQS_DETAILED)
  8833. include_serial_in_statline = true;
  8834. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8835. for (i = 0; i < total_devices; ++i) {
  8836. struct cgpu_info *cgpu = get_devices(i);
  8837. if (!cgpu->proc_id)
  8838. {
  8839. // Device summary line
  8840. opt_show_procs = false;
  8841. log_print_status(cgpu);
  8842. opt_show_procs = true;
  8843. }
  8844. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8845. log_print_status(cgpu);
  8846. }
  8847. }
  8848. if (opt_shares) {
  8849. applog(LOG_WARNING, "Mined %.0f accepted shares of %d requested\n", total_diff_accepted, opt_shares);
  8850. if (opt_shares > total_diff_accepted)
  8851. applog(LOG_WARNING, "WARNING - Mined only %.0f shares of %d requested.", total_diff_accepted, opt_shares);
  8852. }
  8853. applog(LOG_WARNING, " ");
  8854. fflush(stderr);
  8855. fflush(stdout);
  8856. }
  8857. void _bfg_clean_up(bool restarting)
  8858. {
  8859. #ifdef HAVE_OPENCL
  8860. clear_adl(nDevs);
  8861. #endif
  8862. #ifdef HAVE_LIBUSB
  8863. if (likely(have_libusb))
  8864. libusb_exit(NULL);
  8865. #endif
  8866. cgtime(&total_tv_end);
  8867. #ifdef WIN32
  8868. timeEndPeriod(1);
  8869. #endif
  8870. if (!restarting) {
  8871. /* Attempting to disable curses or print a summary during a
  8872. * restart can lead to a deadlock. */
  8873. #ifdef HAVE_CURSES
  8874. disable_curses();
  8875. #endif
  8876. if (!opt_realquiet && successful_connect)
  8877. print_summary();
  8878. }
  8879. if (opt_n_threads)
  8880. free(cpus);
  8881. curl_global_cleanup();
  8882. #ifdef WIN32
  8883. WSACleanup();
  8884. #endif
  8885. }
  8886. void _quit(int status)
  8887. {
  8888. if (status) {
  8889. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8890. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8891. int *p = NULL;
  8892. // NOTE debugger can bypass with: p = &p
  8893. *p = status; // Segfault, hopefully dumping core
  8894. }
  8895. }
  8896. #if defined(unix) || defined(__APPLE__)
  8897. if (forkpid > 0) {
  8898. kill(forkpid, SIGTERM);
  8899. forkpid = 0;
  8900. }
  8901. #endif
  8902. exit(status);
  8903. }
  8904. #ifdef HAVE_CURSES
  8905. char *curses_input(const char *query)
  8906. {
  8907. char *input;
  8908. echo();
  8909. input = malloc(255);
  8910. if (!input)
  8911. quit(1, "Failed to malloc input");
  8912. leaveok(logwin, false);
  8913. wlogprint("%s:\n", query);
  8914. wgetnstr(logwin, input, 255);
  8915. if (!strlen(input))
  8916. {
  8917. free(input);
  8918. input = NULL;
  8919. }
  8920. leaveok(logwin, true);
  8921. noecho();
  8922. return input;
  8923. }
  8924. #endif
  8925. static bool pools_active = false;
  8926. static void *test_pool_thread(void *arg)
  8927. {
  8928. struct pool *pool = (struct pool *)arg;
  8929. if (pool_active(pool, false)) {
  8930. pool_tset(pool, &pool->lagging);
  8931. pool_tclear(pool, &pool->idle);
  8932. bool first_pool = false;
  8933. cg_wlock(&control_lock);
  8934. if (!pools_active) {
  8935. currentpool = pool;
  8936. if (pool->pool_no != 0)
  8937. first_pool = true;
  8938. pools_active = true;
  8939. }
  8940. cg_wunlock(&control_lock);
  8941. if (unlikely(first_pool))
  8942. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8943. else
  8944. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8945. switch_pools(NULL);
  8946. } else
  8947. pool_died(pool);
  8948. pool->testing = false;
  8949. return NULL;
  8950. }
  8951. /* Always returns true that the pool details were added unless we are not
  8952. * live, implying this is the only pool being added, so if no pools are
  8953. * active it returns false. */
  8954. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  8955. {
  8956. size_t siz;
  8957. pool->rpc_url = url;
  8958. pool->rpc_user = user;
  8959. pool->rpc_pass = pass;
  8960. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  8961. pool->rpc_userpass = malloc(siz);
  8962. if (!pool->rpc_userpass)
  8963. quit(1, "Failed to malloc userpass");
  8964. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  8965. pool->testing = true;
  8966. pool->idle = true;
  8967. enable_pool(pool);
  8968. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  8969. if (!live) {
  8970. pthread_join(pool->test_thread, NULL);
  8971. return pools_active;
  8972. }
  8973. return true;
  8974. }
  8975. #ifdef HAVE_CURSES
  8976. static bool input_pool(bool live)
  8977. {
  8978. char *url = NULL, *user = NULL, *pass = NULL;
  8979. struct pool *pool;
  8980. bool ret = false;
  8981. immedok(logwin, true);
  8982. wlogprint("Input server details.\n");
  8983. url = curses_input("URL");
  8984. if (!url)
  8985. goto out;
  8986. user = curses_input("Username");
  8987. if (!user)
  8988. goto out;
  8989. pass = curses_input("Password");
  8990. if (!pass)
  8991. pass = calloc(1, 1);
  8992. pool = add_pool();
  8993. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  8994. strncmp(url, "https://", 8)) {
  8995. char *httpinput;
  8996. httpinput = malloc(256);
  8997. if (!httpinput)
  8998. quit(1, "Failed to malloc httpinput");
  8999. strcpy(httpinput, "http://");
  9000. strncat(httpinput, url, 248);
  9001. free(url);
  9002. url = httpinput;
  9003. }
  9004. ret = add_pool_details(pool, live, url, user, pass);
  9005. out:
  9006. immedok(logwin, false);
  9007. if (!ret) {
  9008. if (url)
  9009. free(url);
  9010. if (user)
  9011. free(user);
  9012. if (pass)
  9013. free(pass);
  9014. }
  9015. return ret;
  9016. }
  9017. #endif
  9018. #if defined(unix) || defined(__APPLE__)
  9019. static void fork_monitor()
  9020. {
  9021. // Make a pipe: [readFD, writeFD]
  9022. int pfd[2];
  9023. int r = pipe(pfd);
  9024. if (r < 0) {
  9025. perror("pipe - failed to create pipe for --monitor");
  9026. exit(1);
  9027. }
  9028. // Make stderr write end of pipe
  9029. fflush(stderr);
  9030. r = dup2(pfd[1], 2);
  9031. if (r < 0) {
  9032. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9033. exit(1);
  9034. }
  9035. r = close(pfd[1]);
  9036. if (r < 0) {
  9037. perror("close - failed to close write end of pipe for --monitor");
  9038. exit(1);
  9039. }
  9040. // Don't allow a dying monitor to kill the main process
  9041. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9042. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9043. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9044. perror("signal - failed to edit signal mask for --monitor");
  9045. exit(1);
  9046. }
  9047. // Fork a child process
  9048. forkpid = fork();
  9049. if (forkpid < 0) {
  9050. perror("fork - failed to fork child process for --monitor");
  9051. exit(1);
  9052. }
  9053. // Child: launch monitor command
  9054. if (0 == forkpid) {
  9055. // Make stdin read end of pipe
  9056. r = dup2(pfd[0], 0);
  9057. if (r < 0) {
  9058. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9059. exit(1);
  9060. }
  9061. close(pfd[0]);
  9062. if (r < 0) {
  9063. perror("close - in child, failed to close read end of pipe for --monitor");
  9064. exit(1);
  9065. }
  9066. // Launch user specified command
  9067. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9068. perror("execl - in child failed to exec user specified command for --monitor");
  9069. exit(1);
  9070. }
  9071. // Parent: clean up unused fds and bail
  9072. r = close(pfd[0]);
  9073. if (r < 0) {
  9074. perror("close - failed to close read end of pipe for --monitor");
  9075. exit(1);
  9076. }
  9077. }
  9078. #endif // defined(unix)
  9079. #ifdef HAVE_CURSES
  9080. #ifdef USE_UNICODE
  9081. static
  9082. wchar_t select_unicode_char(const wchar_t *opt)
  9083. {
  9084. for ( ; *opt; ++opt)
  9085. if (iswprint(*opt))
  9086. return *opt;
  9087. return '?';
  9088. }
  9089. #endif
  9090. void enable_curses(void) {
  9091. int x;
  9092. __maybe_unused int y;
  9093. lock_curses();
  9094. if (curses_active) {
  9095. unlock_curses();
  9096. return;
  9097. }
  9098. #ifdef USE_UNICODE
  9099. if (use_unicode)
  9100. {
  9101. setlocale(LC_CTYPE, "");
  9102. if (iswprint(0xb0))
  9103. have_unicode_degrees = true;
  9104. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9105. }
  9106. #endif
  9107. mainwin = initscr();
  9108. start_color();
  9109. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9110. if (ERR != use_default_colors())
  9111. default_bgcolor = -1;
  9112. #endif
  9113. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9114. {
  9115. menu_attr = COLOR_PAIR(1);
  9116. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9117. attr_bad |= COLOR_PAIR(2);
  9118. }
  9119. keypad(mainwin, true);
  9120. getmaxyx(mainwin, y, x);
  9121. statuswin = newwin(logstart, x, 0, 0);
  9122. leaveok(statuswin, true);
  9123. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9124. // We resize the window later anyway, so just start it off at 1 :)
  9125. logwin = newwin(1, 0, logcursor, 0);
  9126. idlok(logwin, true);
  9127. scrollok(logwin, true);
  9128. leaveok(logwin, true);
  9129. cbreak();
  9130. noecho();
  9131. nonl();
  9132. curses_active = true;
  9133. statusy = logstart;
  9134. unlock_curses();
  9135. }
  9136. #endif
  9137. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9138. #ifndef WANT_CPUMINE
  9139. struct device_drv cpu_drv;
  9140. struct device_drv cpu_drv = {
  9141. .name = "CPU",
  9142. };
  9143. #endif
  9144. static int cgminer_id_count = 0;
  9145. static int device_line_id_count;
  9146. void register_device(struct cgpu_info *cgpu)
  9147. {
  9148. cgpu->deven = DEV_ENABLED;
  9149. wr_lock(&devices_lock);
  9150. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9151. wr_unlock(&devices_lock);
  9152. if (!cgpu->proc_id)
  9153. cgpu->device_line_id = device_line_id_count++;
  9154. mining_threads += cgpu->threads ?: 1;
  9155. #ifdef HAVE_CURSES
  9156. adj_width(mining_threads, &dev_width);
  9157. #endif
  9158. rwlock_init(&cgpu->qlock);
  9159. cgpu->queued_work = NULL;
  9160. }
  9161. struct _cgpu_devid_counter {
  9162. char name[4];
  9163. int lastid;
  9164. UT_hash_handle hh;
  9165. };
  9166. void renumber_cgpu(struct cgpu_info *cgpu)
  9167. {
  9168. static struct _cgpu_devid_counter *devids = NULL;
  9169. struct _cgpu_devid_counter *d;
  9170. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9171. if (d)
  9172. cgpu->device_id = ++d->lastid;
  9173. else {
  9174. d = malloc(sizeof(*d));
  9175. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9176. cgpu->device_id = d->lastid = 0;
  9177. HASH_ADD_STR(devids, name, d);
  9178. }
  9179. }
  9180. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9181. {
  9182. sha256(buffer, length, digest);
  9183. return true;
  9184. }
  9185. #ifndef HAVE_PTHREAD_CANCEL
  9186. extern void setup_pthread_cancel_workaround();
  9187. extern struct sigaction pcwm_orig_term_handler;
  9188. #endif
  9189. bool bfg_need_detect_rescan;
  9190. extern void probe_device(struct lowlevel_device_info *);
  9191. static void schedule_rescan(const struct timeval *);
  9192. static
  9193. void drv_detect_all()
  9194. {
  9195. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9196. bool rescanning = false;
  9197. rescan:
  9198. bfg_need_detect_rescan = false;
  9199. #ifdef HAVE_BFG_LOWLEVEL
  9200. if (!opt_scrypt)
  9201. {
  9202. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9203. LL_FOREACH_SAFE(infolist, info, infotmp)
  9204. probe_device(info);
  9205. LL_FOREACH_SAFE(infolist, info, infotmp)
  9206. pthread_join(info->probe_pth, NULL);
  9207. }
  9208. #endif
  9209. struct driver_registration *reg, *tmp;
  9210. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9211. {
  9212. const struct device_drv * const drv = reg->drv;
  9213. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9214. if (0 == (algos & algomatch) || !drv->drv_detect)
  9215. continue;
  9216. drv->drv_detect();
  9217. }
  9218. #ifdef HAVE_BFG_LOWLEVEL
  9219. if (!opt_scrypt)
  9220. lowlevel_scan_free();
  9221. #endif
  9222. if (bfg_need_detect_rescan)
  9223. {
  9224. if (rescanning)
  9225. {
  9226. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9227. struct timeval tv_when;
  9228. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9229. schedule_rescan(&tv_when);
  9230. }
  9231. else
  9232. {
  9233. rescanning = true;
  9234. applog(LOG_DEBUG, "Device rescan requested");
  9235. goto rescan;
  9236. }
  9237. }
  9238. }
  9239. static
  9240. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9241. {
  9242. struct thr_info *thr;
  9243. int j;
  9244. struct device_drv *api = cgpu->drv;
  9245. if (!cgpu->devtype)
  9246. cgpu->devtype = "PGA";
  9247. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9248. int threadobj = cgpu->threads;
  9249. if (!threadobj)
  9250. // Create a fake thread object to handle hashmeter etc
  9251. threadobj = 1;
  9252. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9253. cgpu->thr[threadobj] = NULL;
  9254. cgpu->status = LIFE_INIT;
  9255. if (opt_devices_enabled_list)
  9256. {
  9257. struct string_elist *enablestr_elist;
  9258. cgpu->deven = DEV_DISABLED;
  9259. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9260. {
  9261. const char * const enablestr = enablestr_elist->string;
  9262. if (cgpu_match(enablestr, cgpu))
  9263. {
  9264. cgpu->deven = DEV_ENABLED;
  9265. break;
  9266. }
  9267. }
  9268. }
  9269. cgpu->max_hashes = 0;
  9270. BFGINIT(cgpu->min_nonce_diff, 1);
  9271. // Setup thread structs before starting any of the threads, in case they try to interact
  9272. for (j = 0; j < threadobj; ++j, ++*kp) {
  9273. thr = get_thread(*kp);
  9274. thr->id = *kp;
  9275. thr->cgpu = cgpu;
  9276. thr->device_thread = j;
  9277. thr->work_restart_notifier[1] = INVSOCK;
  9278. thr->mutex_request[1] = INVSOCK;
  9279. thr->_job_transition_in_progress = true;
  9280. timerclear(&thr->tv_morework);
  9281. thr->scanhash_working = true;
  9282. thr->hashes_done = 0;
  9283. timerclear(&thr->tv_hashes_done);
  9284. cgtime(&thr->tv_lastupdate);
  9285. thr->tv_poll.tv_sec = -1;
  9286. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9287. cgpu->thr[j] = thr;
  9288. }
  9289. if (!cgpu->device->threads)
  9290. notifier_init_invalid(cgpu->thr[0]->notifier);
  9291. else
  9292. if (!cgpu->threads)
  9293. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9294. else
  9295. for (j = 0; j < cgpu->threads; ++j)
  9296. {
  9297. thr = cgpu->thr[j];
  9298. notifier_init(thr->notifier);
  9299. }
  9300. }
  9301. static
  9302. void start_cgpu(struct cgpu_info *cgpu)
  9303. {
  9304. struct thr_info *thr;
  9305. int j;
  9306. for (j = 0; j < cgpu->threads; ++j) {
  9307. thr = cgpu->thr[j];
  9308. /* Enable threads for devices set not to mine but disable
  9309. * their queue in case we wish to enable them later */
  9310. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9311. continue;
  9312. thread_reportout(thr);
  9313. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9314. quit(1, "thread %d create failed", thr->id);
  9315. notifier_wake(thr->notifier);
  9316. }
  9317. if (cgpu->deven == DEV_ENABLED)
  9318. proc_enable(cgpu);
  9319. }
  9320. static
  9321. void _scan_serial(void *p)
  9322. {
  9323. const char *s = p;
  9324. struct string_elist *iter, *tmp;
  9325. struct string_elist *orig_scan_devices = scan_devices;
  9326. if (s)
  9327. {
  9328. // Make temporary scan_devices list
  9329. scan_devices = NULL;
  9330. string_elist_add("noauto", &scan_devices);
  9331. add_serial(s);
  9332. }
  9333. drv_detect_all();
  9334. if (s)
  9335. {
  9336. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9337. {
  9338. string_elist_del(&scan_devices, iter);
  9339. }
  9340. scan_devices = orig_scan_devices;
  9341. }
  9342. }
  9343. #ifdef HAVE_BFG_LOWLEVEL
  9344. static
  9345. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9346. {
  9347. if (!(false
  9348. || (info->serial && !strcasecmp(ser, info->serial))
  9349. || (info->path && !strcasecmp(ser, info->path ))
  9350. || (info->devid && !strcasecmp(ser, info->devid ))
  9351. ))
  9352. {
  9353. char *devid = devpath_to_devid(ser);
  9354. if (!devid)
  9355. return false;
  9356. const bool different = strcmp(info->devid, devid);
  9357. free(devid);
  9358. if (different)
  9359. return false;
  9360. }
  9361. return true;
  9362. }
  9363. static
  9364. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9365. {
  9366. struct driver_registration *dreg;
  9367. char dname[dnamelen];
  9368. int i;
  9369. for (i = 0; i < dnamelen; ++i)
  9370. dname[i] = tolower(_dname[i]);
  9371. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9372. if (!dreg)
  9373. {
  9374. for (i = 0; i < dnamelen; ++i)
  9375. dname[i] = toupper(_dname[i]);
  9376. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9377. if (!dreg)
  9378. return NULL;
  9379. }
  9380. return dreg->drv;
  9381. }
  9382. static
  9383. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9384. {
  9385. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9386. if (!(drv && drv->lowl_probe))
  9387. return false;
  9388. return drv->lowl_probe(info);
  9389. }
  9390. static
  9391. void *probe_device_thread(void *p)
  9392. {
  9393. struct lowlevel_device_info * const infolist = p;
  9394. struct lowlevel_device_info *info = infolist;
  9395. {
  9396. char threadname[5 + strlen(info->devid) + 1];
  9397. sprintf(threadname, "probe_%s", info->devid);
  9398. RenameThread(threadname);
  9399. }
  9400. // If already in use, ignore
  9401. if (bfg_claim_any(NULL, NULL, info->devid))
  9402. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9403. __func__, info->product);
  9404. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9405. struct string_elist *sd_iter, *sd_tmp;
  9406. struct driver_registration *dreg, *dreg_tmp;
  9407. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9408. {
  9409. const char * const dname = sd_iter->string;
  9410. const char * const colon = strpbrk(dname, ":@");
  9411. if (!(colon && colon != dname))
  9412. continue;
  9413. const char * const ser = &colon[1];
  9414. LL_FOREACH2(infolist, info, same_devid_next)
  9415. {
  9416. if (!_probe_device_match(info, ser))
  9417. continue;
  9418. const size_t dnamelen = (colon - dname);
  9419. if (_probe_device_internal(info, dname, dnamelen))
  9420. return NULL;
  9421. else
  9422. bfg_need_detect_rescan = true;
  9423. }
  9424. }
  9425. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9426. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9427. {
  9428. const struct device_drv * const drv = dreg->drv;
  9429. // Check for "noauto" flag
  9430. // NOTE: driver-specific configuration overrides general
  9431. bool doauto = true;
  9432. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9433. {
  9434. const char * const dname = sd_iter->string;
  9435. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9436. const char *colon = strchr(dname, ':');
  9437. if (!colon)
  9438. colon = &dname[-1];
  9439. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9440. continue;
  9441. const ssize_t dnamelen = (colon - dname);
  9442. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9443. continue;
  9444. doauto = (tolower(colon[1]) == 'a');
  9445. if (dnamelen != -1)
  9446. break;
  9447. }
  9448. if (doauto && drv->lowl_match)
  9449. {
  9450. LL_FOREACH2(infolist, info, same_devid_next)
  9451. {
  9452. if (!drv->lowl_match(info))
  9453. continue;
  9454. if (drv->lowl_probe(info))
  9455. return NULL;
  9456. else
  9457. bfg_need_detect_rescan = true;
  9458. }
  9459. }
  9460. }
  9461. // probe driver(s) with 'all' enabled
  9462. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9463. {
  9464. const char * const dname = sd_iter->string;
  9465. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9466. const char * const colon = strchr(dname, ':');
  9467. if (!colon)
  9468. {
  9469. LL_FOREACH2(infolist, info, same_devid_next)
  9470. {
  9471. if (
  9472. #ifdef NEED_BFG_LOWL_VCOM
  9473. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9474. #endif
  9475. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9476. {
  9477. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9478. {
  9479. const struct device_drv * const drv = dreg->drv;
  9480. if (drv->lowl_probe_by_name_only)
  9481. continue;
  9482. if (!drv->lowl_probe)
  9483. continue;
  9484. if (drv->lowl_probe(info))
  9485. return NULL;
  9486. }
  9487. bfg_need_detect_rescan = true;
  9488. break;
  9489. }
  9490. }
  9491. continue;
  9492. }
  9493. if (strcasecmp(&colon[1], "all"))
  9494. continue;
  9495. const size_t dnamelen = (colon - dname);
  9496. LL_FOREACH2(infolist, info, same_devid_next)
  9497. {
  9498. if (_probe_device_internal(info, dname, dnamelen))
  9499. return NULL;
  9500. }
  9501. }
  9502. return NULL;
  9503. }
  9504. void probe_device(struct lowlevel_device_info * const info)
  9505. {
  9506. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9507. }
  9508. #endif
  9509. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9510. {
  9511. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9512. int devcount, i, mining_threads_new = 0;
  9513. unsigned int k;
  9514. struct cgpu_info *cgpu;
  9515. struct thr_info *thr;
  9516. void *p;
  9517. mutex_lock(&mutex);
  9518. devcount = total_devices;
  9519. addfunc(arg);
  9520. if (!total_devices_new)
  9521. goto out;
  9522. wr_lock(&devices_lock);
  9523. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9524. if (unlikely(!p))
  9525. {
  9526. wr_unlock(&devices_lock);
  9527. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9528. goto out;
  9529. }
  9530. devices = p;
  9531. wr_unlock(&devices_lock);
  9532. for (i = 0; i < total_devices_new; ++i)
  9533. {
  9534. cgpu = devices_new[i];
  9535. mining_threads_new += cgpu->threads ?: 1;
  9536. }
  9537. wr_lock(&mining_thr_lock);
  9538. mining_threads_new += mining_threads;
  9539. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9540. if (unlikely(!p))
  9541. {
  9542. wr_unlock(&mining_thr_lock);
  9543. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9544. goto out;
  9545. }
  9546. mining_thr = p;
  9547. wr_unlock(&mining_thr_lock);
  9548. for (i = mining_threads; i < mining_threads_new; ++i) {
  9549. mining_thr[i] = calloc(1, sizeof(*thr));
  9550. if (!mining_thr[i])
  9551. {
  9552. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9553. for ( ; --i >= mining_threads; )
  9554. free(mining_thr[i]);
  9555. goto out;
  9556. }
  9557. }
  9558. k = mining_threads;
  9559. for (i = 0; i < total_devices_new; ++i)
  9560. {
  9561. cgpu = devices_new[i];
  9562. allocate_cgpu(cgpu, &k);
  9563. }
  9564. for (i = 0; i < total_devices_new; ++i)
  9565. {
  9566. cgpu = devices_new[i];
  9567. start_cgpu(cgpu);
  9568. register_device(cgpu);
  9569. ++total_devices;
  9570. }
  9571. #ifdef HAVE_CURSES
  9572. switch_logsize();
  9573. #endif
  9574. out:
  9575. total_devices_new = 0;
  9576. devcount = total_devices - devcount;
  9577. mutex_unlock(&mutex);
  9578. return devcount;
  9579. }
  9580. int scan_serial(const char *s)
  9581. {
  9582. return create_new_cgpus(_scan_serial, (void*)s);
  9583. }
  9584. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9585. static bool rescan_active;
  9586. static struct timeval tv_rescan;
  9587. static notifier_t rescan_notifier;
  9588. static
  9589. void *rescan_thread(__maybe_unused void *p)
  9590. {
  9591. pthread_detach(pthread_self());
  9592. RenameThread("rescan");
  9593. struct timeval tv_timeout, tv_now;
  9594. fd_set rfds;
  9595. while (true)
  9596. {
  9597. mutex_lock(&rescan_mutex);
  9598. tv_timeout = tv_rescan;
  9599. if (!timer_isset(&tv_timeout))
  9600. {
  9601. rescan_active = false;
  9602. mutex_unlock(&rescan_mutex);
  9603. break;
  9604. }
  9605. mutex_unlock(&rescan_mutex);
  9606. FD_ZERO(&rfds);
  9607. FD_SET(rescan_notifier[0], &rfds);
  9608. const int maxfd = rescan_notifier[0];
  9609. timer_set_now(&tv_now);
  9610. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9611. notifier_read(rescan_notifier);
  9612. mutex_lock(&rescan_mutex);
  9613. if (timer_passed(&tv_rescan, NULL))
  9614. {
  9615. timer_unset(&tv_rescan);
  9616. mutex_unlock(&rescan_mutex);
  9617. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9618. scan_serial(NULL);
  9619. }
  9620. else
  9621. mutex_unlock(&rescan_mutex);
  9622. }
  9623. return NULL;
  9624. }
  9625. static
  9626. void _schedule_rescan(const struct timeval * const tvp_when)
  9627. {
  9628. if (rescan_active)
  9629. {
  9630. if (timercmp(tvp_when, &tv_rescan, <))
  9631. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9632. else
  9633. {
  9634. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9635. tv_rescan = *tvp_when;
  9636. }
  9637. return;
  9638. }
  9639. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9640. tv_rescan = *tvp_when;
  9641. rescan_active = true;
  9642. static pthread_t pth;
  9643. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9644. applog(LOG_ERR, "Failed to start rescan thread");
  9645. }
  9646. static
  9647. void schedule_rescan(const struct timeval * const tvp_when)
  9648. {
  9649. mutex_lock(&rescan_mutex);
  9650. _schedule_rescan(tvp_when);
  9651. mutex_unlock(&rescan_mutex);
  9652. }
  9653. #ifdef HAVE_BFG_HOTPLUG
  9654. static
  9655. void hotplug_trigger()
  9656. {
  9657. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9658. struct timeval tv_now;
  9659. timer_set_now(&tv_now);
  9660. schedule_rescan(&tv_now);
  9661. }
  9662. #endif
  9663. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9664. static
  9665. void *hotplug_thread(__maybe_unused void *p)
  9666. {
  9667. pthread_detach(pthread_self());
  9668. RenameThread("hotplug");
  9669. struct udev * const udev = udev_new();
  9670. if (unlikely(!udev))
  9671. applogfailr(NULL, LOG_ERR, "udev_new");
  9672. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9673. if (unlikely(!mon))
  9674. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9675. if (unlikely(udev_monitor_enable_receiving(mon)))
  9676. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9677. const int epfd = epoll_create(1);
  9678. if (unlikely(epfd == -1))
  9679. applogfailr(NULL, LOG_ERR, "epoll_create");
  9680. {
  9681. const int fd = udev_monitor_get_fd(mon);
  9682. struct epoll_event ev = {
  9683. .events = EPOLLIN | EPOLLPRI,
  9684. .data.fd = fd,
  9685. };
  9686. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9687. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9688. }
  9689. struct epoll_event ev;
  9690. int rv;
  9691. bool pending = false;
  9692. while (true)
  9693. {
  9694. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9695. if (rv == -1)
  9696. {
  9697. if (errno == EAGAIN || errno == EINTR)
  9698. continue;
  9699. break;
  9700. }
  9701. if (!rv)
  9702. {
  9703. hotplug_trigger();
  9704. pending = false;
  9705. continue;
  9706. }
  9707. struct udev_device * const device = udev_monitor_receive_device(mon);
  9708. if (!device)
  9709. continue;
  9710. const char * const action = udev_device_get_action(device);
  9711. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9712. if (strcmp(action, "add"))
  9713. continue;
  9714. pending = true;
  9715. }
  9716. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9717. }
  9718. #elif defined(WIN32)
  9719. static UINT_PTR _hotplug_wintimer_id;
  9720. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9721. {
  9722. KillTimer(NULL, _hotplug_wintimer_id);
  9723. _hotplug_wintimer_id = 0;
  9724. hotplug_trigger();
  9725. }
  9726. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9727. {
  9728. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9729. {
  9730. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9731. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9732. }
  9733. return DefWindowProc(hwnd, msg, wParam, lParam);
  9734. }
  9735. static
  9736. void *hotplug_thread(__maybe_unused void *p)
  9737. {
  9738. pthread_detach(pthread_self());
  9739. WNDCLASS DummyWinCls = {
  9740. .lpszClassName = "BFGDummyWinCls",
  9741. .lpfnWndProc = hotplug_win_callback,
  9742. };
  9743. ATOM a = RegisterClass(&DummyWinCls);
  9744. if (unlikely(!a))
  9745. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9746. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9747. if (unlikely(!hwnd))
  9748. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9749. MSG msg;
  9750. while (GetMessage(&msg, NULL, 0, 0))
  9751. {
  9752. TranslateMessage(&msg);
  9753. DispatchMessage(&msg);
  9754. }
  9755. quit(0, "WM_QUIT received");
  9756. return NULL;
  9757. }
  9758. #endif
  9759. #ifdef HAVE_BFG_HOTPLUG
  9760. static
  9761. void hotplug_start()
  9762. {
  9763. pthread_t pth;
  9764. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9765. applog(LOG_ERR, "Failed to start hotplug thread");
  9766. }
  9767. #endif
  9768. static void probe_pools(void)
  9769. {
  9770. int i;
  9771. for (i = 0; i < total_pools; i++) {
  9772. struct pool *pool = pools[i];
  9773. pool->testing = true;
  9774. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9775. }
  9776. }
  9777. static void raise_fd_limits(void)
  9778. {
  9779. #ifdef HAVE_SETRLIMIT
  9780. struct rlimit fdlimit;
  9781. unsigned long old_soft_limit;
  9782. char frombuf[0x10] = "unlimited";
  9783. char hardbuf[0x10] = "unlimited";
  9784. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9785. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9786. old_soft_limit = fdlimit.rlim_cur;
  9787. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9788. fdlimit.rlim_cur = FD_SETSIZE;
  9789. else
  9790. fdlimit.rlim_cur = fdlimit.rlim_max;
  9791. if (fdlimit.rlim_max != RLIM_INFINITY)
  9792. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9793. if (old_soft_limit != RLIM_INFINITY)
  9794. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9795. if (fdlimit.rlim_cur == old_soft_limit)
  9796. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9797. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9798. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9799. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9800. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9801. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9802. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9803. #else
  9804. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9805. #endif
  9806. }
  9807. extern void bfg_init_threadlocal();
  9808. extern void stratumsrv_start();
  9809. int main(int argc, char *argv[])
  9810. {
  9811. struct sigaction handler;
  9812. struct thr_info *thr;
  9813. struct block *block;
  9814. unsigned int k;
  9815. int i;
  9816. char *s;
  9817. #ifdef WIN32
  9818. LoadLibrary("backtrace.dll");
  9819. #endif
  9820. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9821. bfg_init_threadlocal();
  9822. #ifndef HAVE_PTHREAD_CANCEL
  9823. setup_pthread_cancel_workaround();
  9824. #endif
  9825. bfg_init_checksums();
  9826. #ifdef WIN32
  9827. {
  9828. WSADATA wsa;
  9829. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9830. if (i)
  9831. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9832. }
  9833. #endif
  9834. /* This dangerous functions tramples random dynamically allocated
  9835. * variables so do it before anything at all */
  9836. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9837. quit(1, "Failed to curl_global_init");
  9838. initial_args = malloc(sizeof(char *) * (argc + 1));
  9839. for (i = 0; i < argc; i++)
  9840. initial_args[i] = strdup(argv[i]);
  9841. initial_args[argc] = NULL;
  9842. mutex_init(&hash_lock);
  9843. mutex_init(&console_lock);
  9844. cglock_init(&control_lock);
  9845. mutex_init(&stats_lock);
  9846. mutex_init(&sharelog_lock);
  9847. cglock_init(&ch_lock);
  9848. mutex_init(&sshare_lock);
  9849. rwlock_init(&blk_lock);
  9850. rwlock_init(&netacc_lock);
  9851. rwlock_init(&mining_thr_lock);
  9852. rwlock_init(&devices_lock);
  9853. mutex_init(&lp_lock);
  9854. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9855. quit(1, "Failed to pthread_cond_init lp_cond");
  9856. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9857. quit(1, "Failed to pthread_cond_init gws_cond");
  9858. notifier_init(submit_waiting_notifier);
  9859. timer_unset(&tv_rescan);
  9860. notifier_init(rescan_notifier);
  9861. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9862. #ifdef WANT_CPUMINE
  9863. init_max_name_len();
  9864. #endif
  9865. handler.sa_handler = &sighandler;
  9866. handler.sa_flags = 0;
  9867. sigemptyset(&handler.sa_mask);
  9868. #ifdef HAVE_PTHREAD_CANCEL
  9869. sigaction(SIGTERM, &handler, &termhandler);
  9870. #else
  9871. // Need to let pthread_cancel emulation handle SIGTERM first
  9872. termhandler = pcwm_orig_term_handler;
  9873. pcwm_orig_term_handler = handler;
  9874. #endif
  9875. sigaction(SIGINT, &handler, &inthandler);
  9876. #ifndef WIN32
  9877. signal(SIGPIPE, SIG_IGN);
  9878. #else
  9879. timeBeginPeriod(1);
  9880. #endif
  9881. opt_kernel_path = CGMINER_PREFIX;
  9882. cgminer_path = alloca(PATH_MAX);
  9883. s = strdup(argv[0]);
  9884. strcpy(cgminer_path, dirname(s));
  9885. free(s);
  9886. strcat(cgminer_path, "/");
  9887. #ifdef WANT_CPUMINE
  9888. // Hack to make cgminer silent when called recursively on WIN32
  9889. int skip_to_bench = 0;
  9890. #if defined(WIN32)
  9891. char buf[32];
  9892. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  9893. skip_to_bench = 1;
  9894. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  9895. skip_to_bench = 1;
  9896. #endif // defined(WIN32)
  9897. #endif
  9898. devcursor = 8;
  9899. logstart = devcursor;
  9900. logcursor = logstart;
  9901. block = calloc(sizeof(struct block), 1);
  9902. if (unlikely(!block))
  9903. quit (1, "main OOM");
  9904. for (i = 0; i < 36; i++)
  9905. strcat(block->hash, "0");
  9906. HASH_ADD_STR(blocks, hash, block);
  9907. strcpy(current_block, block->hash);
  9908. mutex_init(&submitting_lock);
  9909. #ifdef HAVE_OPENCL
  9910. memset(gpus, 0, sizeof(gpus));
  9911. for (i = 0; i < MAX_GPUDEVICES; i++)
  9912. gpus[i].dynamic = true;
  9913. #endif
  9914. schedstart.tm.tm_sec = 1;
  9915. schedstop .tm.tm_sec = 1;
  9916. /* parse command line */
  9917. opt_register_table(opt_config_table,
  9918. "Options for both config file and command line");
  9919. opt_register_table(opt_cmdline_table,
  9920. "Options for command line only");
  9921. opt_parse(&argc, argv, applog_and_exit);
  9922. if (argc != 1)
  9923. quit(1, "Unexpected extra commandline arguments");
  9924. if (!config_loaded)
  9925. load_default_config();
  9926. #ifndef HAVE_PTHREAD_CANCEL
  9927. // Can't do this any earlier, or config isn't loaded
  9928. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  9929. #endif
  9930. #ifdef HAVE_PWD_H
  9931. struct passwd *user_info = NULL;
  9932. if (opt_setuid != NULL) {
  9933. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  9934. quit(1, "Unable to find setuid user information");
  9935. }
  9936. }
  9937. #endif
  9938. #ifdef HAVE_CHROOT
  9939. if (chroot_dir != NULL) {
  9940. #ifdef HAVE_PWD_H
  9941. if (user_info == NULL && getuid() == 0) {
  9942. applog(LOG_WARNING, "Running as root inside chroot");
  9943. }
  9944. #endif
  9945. if (chroot(chroot_dir) != 0) {
  9946. quit(1, "Unable to chroot");
  9947. }
  9948. if (chdir("/"))
  9949. quit(1, "Unable to chdir to chroot");
  9950. }
  9951. #endif
  9952. #ifdef HAVE_PWD_H
  9953. if (user_info != NULL) {
  9954. if (setgid((*user_info).pw_gid) != 0)
  9955. quit(1, "Unable to setgid");
  9956. if (setuid((*user_info).pw_uid) != 0)
  9957. quit(1, "Unable to setuid");
  9958. }
  9959. #endif
  9960. raise_fd_limits();
  9961. if (opt_benchmark) {
  9962. struct pool *pool;
  9963. if (opt_scrypt)
  9964. quit(1, "Cannot use benchmark mode with scrypt");
  9965. want_longpoll = false;
  9966. pool = add_pool();
  9967. pool->rpc_url = malloc(255);
  9968. strcpy(pool->rpc_url, "Benchmark");
  9969. pool->rpc_user = pool->rpc_url;
  9970. pool->rpc_pass = pool->rpc_url;
  9971. enable_pool(pool);
  9972. pool->idle = false;
  9973. successful_connect = true;
  9974. }
  9975. if (opt_unittest) {
  9976. test_cgpu_match();
  9977. test_intrange();
  9978. test_decimal_width();
  9979. utf8_test();
  9980. }
  9981. #ifdef HAVE_CURSES
  9982. if (opt_realquiet || opt_display_devs)
  9983. use_curses = false;
  9984. setlocale(LC_ALL, "C");
  9985. if (use_curses)
  9986. enable_curses();
  9987. #endif
  9988. #ifdef HAVE_LIBUSB
  9989. int err = libusb_init(NULL);
  9990. if (err)
  9991. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  9992. else
  9993. have_libusb = true;
  9994. #endif
  9995. applog(LOG_WARNING, "Started %s", packagename);
  9996. if (cnfbuf) {
  9997. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  9998. switch (fileconf_load) {
  9999. case 0:
  10000. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10001. applog(LOG_WARNING, "Configuration file could not be used.");
  10002. break;
  10003. case -1:
  10004. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10005. if (use_curses)
  10006. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10007. break;
  10008. default:
  10009. break;
  10010. }
  10011. free(cnfbuf);
  10012. cnfbuf = NULL;
  10013. }
  10014. i = strlen(opt_kernel_path) + 2;
  10015. char __kernel_path[i];
  10016. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10017. opt_kernel_path = __kernel_path;
  10018. if (want_per_device_stats)
  10019. opt_log_output = true;
  10020. #ifdef WANT_CPUMINE
  10021. #ifdef USE_SCRYPT
  10022. if (opt_scrypt)
  10023. set_scrypt_algo(&opt_algo);
  10024. else
  10025. #endif
  10026. if (0 <= opt_bench_algo) {
  10027. double rate = bench_algo_stage3(opt_bench_algo);
  10028. if (!skip_to_bench)
  10029. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  10030. else {
  10031. // Write result to shared memory for parent
  10032. #if defined(WIN32)
  10033. char unique_name[64];
  10034. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  10035. HANDLE map_handle = CreateFileMapping(
  10036. INVALID_HANDLE_VALUE, // use paging file
  10037. NULL, // default security attributes
  10038. PAGE_READWRITE, // read/write access
  10039. 0, // size: high 32-bits
  10040. 4096, // size: low 32-bits
  10041. unique_name // name of map object
  10042. );
  10043. if (NULL != map_handle) {
  10044. void *shared_mem = MapViewOfFile(
  10045. map_handle, // object to map view of
  10046. FILE_MAP_WRITE, // read/write access
  10047. 0, // high offset: map from
  10048. 0, // low offset: beginning
  10049. 0 // default: map entire file
  10050. );
  10051. if (NULL != shared_mem)
  10052. CopyMemory(shared_mem, &rate, sizeof(rate));
  10053. (void)UnmapViewOfFile(shared_mem);
  10054. }
  10055. (void)CloseHandle(map_handle);
  10056. }
  10057. #endif
  10058. }
  10059. exit(0);
  10060. }
  10061. #endif
  10062. bfg_devapi_init();
  10063. drv_detect_all();
  10064. total_devices = total_devices_new;
  10065. devices = devices_new;
  10066. total_devices_new = 0;
  10067. devices_new = NULL;
  10068. if (opt_display_devs) {
  10069. int devcount = 0;
  10070. applog(LOG_ERR, "Devices detected:");
  10071. for (i = 0; i < total_devices; ++i) {
  10072. struct cgpu_info *cgpu = devices[i];
  10073. char buf[0x100];
  10074. if (cgpu->device != cgpu)
  10075. continue;
  10076. if (cgpu->name)
  10077. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10078. else
  10079. if (cgpu->dev_manufacturer)
  10080. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10081. else
  10082. if (cgpu->dev_product)
  10083. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10084. else
  10085. strcpy(buf, " Device");
  10086. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10087. if (cgpu->dev_serial)
  10088. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10089. if (cgpu->device_path)
  10090. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10091. tailsprintf(buf, sizeof(buf), ")");
  10092. _applog(LOG_NOTICE, buf);
  10093. ++devcount;
  10094. }
  10095. quit(0, "%d devices listed", devcount);
  10096. }
  10097. mining_threads = 0;
  10098. for (i = 0; i < total_devices; ++i)
  10099. register_device(devices[i]);
  10100. if (!total_devices) {
  10101. applog(LOG_WARNING, "No devices detected!");
  10102. if (use_curses)
  10103. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10104. else
  10105. applog(LOG_WARNING, "Waiting for devices");
  10106. }
  10107. if (opt_quit_summary == BQS_DEFAULT)
  10108. opt_quit_summary = BQS_PROCS;
  10109. #ifdef HAVE_CURSES
  10110. switch_logsize();
  10111. #endif
  10112. if (!total_pools) {
  10113. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10114. #ifdef HAVE_CURSES
  10115. if (!use_curses || !input_pool(false))
  10116. #endif
  10117. quit(1, "Pool setup failed");
  10118. }
  10119. for (i = 0; i < total_pools; i++) {
  10120. struct pool *pool = pools[i];
  10121. size_t siz;
  10122. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10123. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10124. if (!pool->rpc_url)
  10125. quit(1, "No URI supplied for pool %u", i);
  10126. if (!pool->rpc_userpass) {
  10127. if (!pool->rpc_user || !pool->rpc_pass)
  10128. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10129. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10130. pool->rpc_userpass = malloc(siz);
  10131. if (!pool->rpc_userpass)
  10132. quit(1, "Failed to malloc userpass");
  10133. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10134. }
  10135. }
  10136. /* Set the currentpool to pool with priority 0 */
  10137. validate_pool_priorities();
  10138. for (i = 0; i < total_pools; i++) {
  10139. struct pool *pool = pools[i];
  10140. if (!pool->prio)
  10141. currentpool = pool;
  10142. }
  10143. #ifdef HAVE_SYSLOG_H
  10144. if (use_syslog)
  10145. openlog(PACKAGE, LOG_PID, LOG_USER);
  10146. #endif
  10147. #if defined(unix) || defined(__APPLE__)
  10148. if (opt_stderr_cmd)
  10149. fork_monitor();
  10150. #endif // defined(unix)
  10151. mining_thr = calloc(mining_threads, sizeof(thr));
  10152. if (!mining_thr)
  10153. quit(1, "Failed to calloc mining_thr");
  10154. for (i = 0; i < mining_threads; i++) {
  10155. mining_thr[i] = calloc(1, sizeof(*thr));
  10156. if (!mining_thr[i])
  10157. quit(1, "Failed to calloc mining_thr[%d]", i);
  10158. }
  10159. total_control_threads = 6;
  10160. control_thr = calloc(total_control_threads, sizeof(*thr));
  10161. if (!control_thr)
  10162. quit(1, "Failed to calloc control_thr");
  10163. gwsched_thr_id = 0;
  10164. /* Create a unique get work queue */
  10165. getq = tq_new();
  10166. if (!getq)
  10167. quit(1, "Failed to create getq");
  10168. /* We use the getq mutex as the staged lock */
  10169. stgd_lock = &getq->mutex;
  10170. if (opt_benchmark)
  10171. goto begin_bench;
  10172. for (i = 0; i < total_pools; i++) {
  10173. struct pool *pool = pools[i];
  10174. enable_pool(pool);
  10175. pool->idle = true;
  10176. }
  10177. applog(LOG_NOTICE, "Probing for an alive pool");
  10178. do {
  10179. bool still_testing;
  10180. int i;
  10181. /* Look for at least one active pool before starting */
  10182. probe_pools();
  10183. do {
  10184. sleep(1);
  10185. if (pools_active)
  10186. break;
  10187. still_testing = false;
  10188. for (int i = 0; i < total_pools; ++i)
  10189. if (pools[i]->testing)
  10190. still_testing = true;
  10191. } while (still_testing);
  10192. if (!pools_active) {
  10193. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10194. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10195. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10196. for (i = 0; i < total_pools; i++) {
  10197. struct pool *pool;
  10198. pool = pools[i];
  10199. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10200. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10201. }
  10202. #ifdef HAVE_CURSES
  10203. if (use_curses) {
  10204. halfdelay(150);
  10205. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10206. if (getch() != ERR)
  10207. quit(0, "No servers could be used! Exiting.");
  10208. cbreak();
  10209. } else
  10210. #endif
  10211. quit(0, "No servers could be used! Exiting.");
  10212. }
  10213. } while (!pools_active);
  10214. #ifdef USE_SCRYPT
  10215. if (detect_algo == 1 && !opt_scrypt) {
  10216. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10217. opt_scrypt = true;
  10218. }
  10219. #endif
  10220. detect_algo = 0;
  10221. begin_bench:
  10222. total_mhashes_done = 0;
  10223. for (i = 0; i < total_devices; i++) {
  10224. struct cgpu_info *cgpu = devices[i];
  10225. cgpu->rolling = cgpu->total_mhashes = 0;
  10226. }
  10227. cgtime(&total_tv_start);
  10228. cgtime(&total_tv_end);
  10229. miner_started = total_tv_start;
  10230. time_t miner_start_ts = time(NULL);
  10231. if (schedstart.tm.tm_sec)
  10232. localtime_r(&miner_start_ts, &schedstart.tm);
  10233. if (schedstop.tm.tm_sec)
  10234. localtime_r(&miner_start_ts, &schedstop .tm);
  10235. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10236. // Initialise processors and threads
  10237. k = 0;
  10238. for (i = 0; i < total_devices; ++i) {
  10239. struct cgpu_info *cgpu = devices[i];
  10240. allocate_cgpu(cgpu, &k);
  10241. }
  10242. // Start threads
  10243. for (i = 0; i < total_devices; ++i) {
  10244. struct cgpu_info *cgpu = devices[i];
  10245. start_cgpu(cgpu);
  10246. }
  10247. #ifdef HAVE_OPENCL
  10248. for (i = 0; i < nDevs; i++)
  10249. pause_dynamic_threads(i);
  10250. #endif
  10251. #ifdef WANT_CPUMINE
  10252. applog(LOG_INFO, "%d cpu miner threads started, "
  10253. "using SHA256 '%s' algorithm.",
  10254. opt_n_threads,
  10255. algo_names[opt_algo]);
  10256. #endif
  10257. cgtime(&total_tv_start);
  10258. cgtime(&total_tv_end);
  10259. {
  10260. pthread_t submit_thread;
  10261. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10262. quit(1, "submit_work thread create failed");
  10263. }
  10264. watchpool_thr_id = 1;
  10265. thr = &control_thr[watchpool_thr_id];
  10266. /* start watchpool thread */
  10267. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10268. quit(1, "watchpool thread create failed");
  10269. pthread_detach(thr->pth);
  10270. watchdog_thr_id = 2;
  10271. thr = &control_thr[watchdog_thr_id];
  10272. /* start watchdog thread */
  10273. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10274. quit(1, "watchdog thread create failed");
  10275. pthread_detach(thr->pth);
  10276. #ifdef HAVE_OPENCL
  10277. /* Create reinit gpu thread */
  10278. gpur_thr_id = 3;
  10279. thr = &control_thr[gpur_thr_id];
  10280. thr->q = tq_new();
  10281. if (!thr->q)
  10282. quit(1, "tq_new failed for gpur_thr_id");
  10283. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10284. quit(1, "reinit_gpu thread create failed");
  10285. #endif
  10286. /* Create API socket thread */
  10287. api_thr_id = 4;
  10288. thr = &control_thr[api_thr_id];
  10289. if (thr_info_create(thr, NULL, api_thread, thr))
  10290. quit(1, "API thread create failed");
  10291. #ifdef USE_LIBMICROHTTPD
  10292. if (httpsrv_port != -1)
  10293. httpsrv_start(httpsrv_port);
  10294. #endif
  10295. #ifdef USE_LIBEVENT
  10296. if (stratumsrv_port != -1)
  10297. stratumsrv_start();
  10298. #endif
  10299. #ifdef HAVE_BFG_HOTPLUG
  10300. if (opt_hotplug && !opt_scrypt)
  10301. hotplug_start();
  10302. #endif
  10303. #ifdef HAVE_CURSES
  10304. /* Create curses input thread for keyboard input. Create this last so
  10305. * that we know all threads are created since this can call kill_work
  10306. * to try and shut down ll previous threads. */
  10307. input_thr_id = 5;
  10308. thr = &control_thr[input_thr_id];
  10309. if (thr_info_create(thr, NULL, input_thread, thr))
  10310. quit(1, "input thread create failed");
  10311. pthread_detach(thr->pth);
  10312. #endif
  10313. /* Just to be sure */
  10314. if (total_control_threads != 6)
  10315. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10316. /* Once everything is set up, main() becomes the getwork scheduler */
  10317. while (42) {
  10318. int ts, max_staged = opt_queue;
  10319. struct pool *pool, *cp;
  10320. bool lagging = false;
  10321. struct curl_ent *ce;
  10322. struct work *work;
  10323. cp = current_pool();
  10324. /* If the primary pool is a getwork pool and cannot roll work,
  10325. * try to stage one extra work per mining thread */
  10326. if (!pool_localgen(cp) && !staged_rollable)
  10327. max_staged += mining_threads;
  10328. mutex_lock(stgd_lock);
  10329. ts = __total_staged();
  10330. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10331. lagging = true;
  10332. /* Wait until hash_pop tells us we need to create more work */
  10333. if (ts > max_staged) {
  10334. staged_full = true;
  10335. pthread_cond_wait(&gws_cond, stgd_lock);
  10336. ts = __total_staged();
  10337. }
  10338. mutex_unlock(stgd_lock);
  10339. if (ts > max_staged)
  10340. continue;
  10341. work = make_work();
  10342. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10343. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10344. cp->getfail_occasions++;
  10345. total_go++;
  10346. }
  10347. pool = select_pool(lagging);
  10348. retry:
  10349. if (pool->has_stratum) {
  10350. while (!pool->stratum_active || !pool->stratum_notify) {
  10351. struct pool *altpool = select_pool(true);
  10352. if (altpool == pool && pool->has_stratum)
  10353. cgsleep_ms(5000);
  10354. pool = altpool;
  10355. goto retry;
  10356. }
  10357. gen_stratum_work(pool, work);
  10358. applog(LOG_DEBUG, "Generated stratum work");
  10359. stage_work(work);
  10360. continue;
  10361. }
  10362. if (pool->last_work_copy) {
  10363. mutex_lock(&pool->last_work_lock);
  10364. struct work *last_work = pool->last_work_copy;
  10365. if (!last_work)
  10366. {}
  10367. else
  10368. if (can_roll(last_work) && should_roll(last_work)) {
  10369. struct timeval tv_now;
  10370. cgtime(&tv_now);
  10371. free_work(work);
  10372. work = make_clone(pool->last_work_copy);
  10373. mutex_unlock(&pool->last_work_lock);
  10374. roll_work(work);
  10375. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tmpl, tv_now.tv_sec));
  10376. stage_work(work);
  10377. continue;
  10378. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10379. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10380. } else {
  10381. free_work(last_work);
  10382. pool->last_work_copy = NULL;
  10383. }
  10384. mutex_unlock(&pool->last_work_lock);
  10385. }
  10386. if (clone_available()) {
  10387. applog(LOG_DEBUG, "Cloned getwork work");
  10388. free_work(work);
  10389. continue;
  10390. }
  10391. if (opt_benchmark) {
  10392. get_benchmark_work(work);
  10393. applog(LOG_DEBUG, "Generated benchmark work");
  10394. stage_work(work);
  10395. continue;
  10396. }
  10397. work->pool = pool;
  10398. ce = pop_curl_entry3(pool, 2);
  10399. /* obtain new work from bitcoin via JSON-RPC */
  10400. if (!get_upstream_work(work, ce->curl)) {
  10401. struct pool *next_pool;
  10402. /* Make sure the pool just hasn't stopped serving
  10403. * requests but is up as we'll keep hammering it */
  10404. push_curl_entry(ce, pool);
  10405. ++pool->seq_getfails;
  10406. pool_died(pool);
  10407. next_pool = select_pool(!opt_fail_only);
  10408. if (pool == next_pool) {
  10409. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10410. cgsleep_ms(5000);
  10411. } else {
  10412. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10413. pool = next_pool;
  10414. }
  10415. goto retry;
  10416. }
  10417. if (ts >= max_staged)
  10418. pool_tclear(pool, &pool->lagging);
  10419. if (pool_tclear(pool, &pool->idle))
  10420. pool_resus(pool);
  10421. applog(LOG_DEBUG, "Generated getwork work");
  10422. stage_work(work);
  10423. push_curl_entry(ce, pool);
  10424. }
  10425. return 0;
  10426. }