miner.c 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #ifdef USE_AVALON
  75. #include "driver-avalon.h"
  76. #endif
  77. #ifdef HAVE_BFG_LOWLEVEL
  78. #include "lowlevel.h"
  79. #endif
  80. #if defined(unix) || defined(__APPLE__)
  81. #include <errno.h>
  82. #include <fcntl.h>
  83. #include <sys/wait.h>
  84. #endif
  85. #ifdef USE_SCRYPT
  86. #include "scrypt.h"
  87. #endif
  88. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  89. # define USE_FPGA
  90. #endif
  91. enum bfg_quit_summary {
  92. BQS_DEFAULT,
  93. BQS_NONE,
  94. BQS_DEVS,
  95. BQS_PROCS,
  96. BQS_DETAILED,
  97. };
  98. struct strategies strategies[] = {
  99. { "Failover" },
  100. { "Round Robin" },
  101. { "Rotate" },
  102. { "Load Balance" },
  103. { "Balance" },
  104. };
  105. static char packagename[256];
  106. bool opt_protocol;
  107. bool opt_dev_protocol;
  108. static bool opt_benchmark;
  109. static bool want_longpoll = true;
  110. static bool want_gbt = true;
  111. static bool want_getwork = true;
  112. #if BLKMAKER_VERSION > 1
  113. struct _cbscript_t {
  114. char *data;
  115. size_t sz;
  116. };
  117. static struct _cbscript_t opt_coinbase_script;
  118. static uint32_t template_nonce;
  119. #endif
  120. #if BLKMAKER_VERSION > 0
  121. char *opt_coinbase_sig;
  122. #endif
  123. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  124. static bool include_serial_in_statline;
  125. char *request_target_str;
  126. float request_pdiff = 1.0;
  127. double request_bdiff;
  128. static bool want_stratum = true;
  129. bool have_longpoll;
  130. int opt_skip_checks;
  131. bool want_per_device_stats;
  132. bool use_syslog;
  133. bool opt_quiet_work_updates = true;
  134. bool opt_quiet;
  135. bool opt_realquiet;
  136. int loginput_size;
  137. bool opt_compact;
  138. bool opt_show_procs;
  139. const int opt_cutofftemp = 95;
  140. int opt_hysteresis = 3;
  141. static int opt_retries = -1;
  142. int opt_fail_pause = 5;
  143. int opt_log_interval = 20;
  144. int opt_queue = 1;
  145. int opt_scantime = 60;
  146. int opt_expiry = 120;
  147. int opt_expiry_lp = 3600;
  148. unsigned long long global_hashrate;
  149. static bool opt_unittest = false;
  150. unsigned long global_quota_gcd = 1;
  151. time_t last_getwork;
  152. #ifdef HAVE_OPENCL
  153. int opt_dynamic_interval = 7;
  154. int nDevs;
  155. int opt_g_threads = -1;
  156. #endif
  157. #ifdef USE_SCRYPT
  158. static char detect_algo = 1;
  159. bool opt_scrypt;
  160. #else
  161. static char detect_algo;
  162. #endif
  163. bool opt_restart = true;
  164. #ifdef USE_LIBMICROHTTPD
  165. #include "httpsrv.h"
  166. int httpsrv_port = -1;
  167. #endif
  168. #ifdef USE_LIBEVENT
  169. int stratumsrv_port = -1;
  170. #endif
  171. const
  172. int rescan_delay_ms = 1000;
  173. #ifdef HAVE_BFG_HOTPLUG
  174. bool opt_hotplug = 1;
  175. const
  176. int hotplug_delay_ms = 100;
  177. #else
  178. const bool opt_hotplug;
  179. #endif
  180. struct string_elist *scan_devices;
  181. static struct string_elist *opt_set_device_list;
  182. bool opt_force_dev_init;
  183. static struct string_elist *opt_devices_enabled_list;
  184. static bool opt_display_devs;
  185. int total_devices;
  186. struct cgpu_info **devices;
  187. int total_devices_new;
  188. struct cgpu_info **devices_new;
  189. bool have_opencl;
  190. int opt_n_threads = -1;
  191. int mining_threads;
  192. int num_processors;
  193. #ifdef HAVE_CURSES
  194. bool use_curses = true;
  195. #else
  196. bool use_curses;
  197. #endif
  198. #ifdef HAVE_LIBUSB
  199. bool have_libusb;
  200. #endif
  201. static bool opt_submit_stale = true;
  202. static float opt_shares;
  203. static int opt_submit_threads = 0x40;
  204. bool opt_fail_only;
  205. bool opt_autofan;
  206. bool opt_autoengine;
  207. bool opt_noadl;
  208. char *opt_api_allow = NULL;
  209. char *opt_api_groups;
  210. char *opt_api_description = PACKAGE_STRING;
  211. int opt_api_port = 4028;
  212. bool opt_api_listen;
  213. bool opt_api_mcast;
  214. char *opt_api_mcast_addr = API_MCAST_ADDR;
  215. char *opt_api_mcast_code = API_MCAST_CODE;
  216. char *opt_api_mcast_des = "";
  217. int opt_api_mcast_port = 4028;
  218. bool opt_api_network;
  219. bool opt_delaynet;
  220. bool opt_disable_pool;
  221. bool opt_disable_client_reconnect = false;
  222. static bool no_work;
  223. bool opt_worktime;
  224. bool opt_weighed_stats;
  225. char *opt_kernel_path;
  226. char *cgminer_path;
  227. #if defined(USE_BITFORCE)
  228. bool opt_bfl_noncerange;
  229. #endif
  230. #define QUIET (opt_quiet || opt_realquiet)
  231. struct thr_info *control_thr;
  232. struct thr_info **mining_thr;
  233. static int gwsched_thr_id;
  234. static int watchpool_thr_id;
  235. static int watchdog_thr_id;
  236. #ifdef HAVE_CURSES
  237. static int input_thr_id;
  238. #endif
  239. int gpur_thr_id;
  240. static int api_thr_id;
  241. static int total_control_threads;
  242. pthread_mutex_t hash_lock;
  243. static pthread_mutex_t *stgd_lock;
  244. pthread_mutex_t console_lock;
  245. cglock_t ch_lock;
  246. static pthread_rwlock_t blk_lock;
  247. static pthread_mutex_t sshare_lock;
  248. pthread_rwlock_t netacc_lock;
  249. pthread_rwlock_t mining_thr_lock;
  250. pthread_rwlock_t devices_lock;
  251. static pthread_mutex_t lp_lock;
  252. static pthread_cond_t lp_cond;
  253. pthread_cond_t gws_cond;
  254. bool shutting_down;
  255. double total_rolling;
  256. double total_mhashes_done;
  257. static struct timeval total_tv_start, total_tv_end;
  258. static struct timeval miner_started;
  259. cglock_t control_lock;
  260. pthread_mutex_t stats_lock;
  261. static pthread_mutex_t submitting_lock;
  262. static int total_submitting;
  263. static struct work *submit_waiting;
  264. notifier_t submit_waiting_notifier;
  265. int hw_errors;
  266. int total_accepted, total_rejected;
  267. int total_getworks, total_stale, total_discarded;
  268. uint64_t total_bytes_rcvd, total_bytes_sent;
  269. double total_diff1, total_bad_diff1;
  270. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  271. static int staged_rollable;
  272. unsigned int new_blocks;
  273. unsigned int found_blocks;
  274. unsigned int local_work;
  275. unsigned int total_go, total_ro;
  276. struct pool **pools;
  277. static struct pool *currentpool = NULL;
  278. int total_pools, enabled_pools;
  279. enum pool_strategy pool_strategy = POOL_FAILOVER;
  280. int opt_rotate_period;
  281. static int total_urls, total_users, total_passes;
  282. static
  283. #ifndef HAVE_CURSES
  284. const
  285. #endif
  286. bool curses_active;
  287. #ifdef HAVE_CURSES
  288. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  289. const
  290. #endif
  291. short default_bgcolor = COLOR_BLACK;
  292. static int attr_title = A_BOLD;
  293. #endif
  294. static
  295. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  296. bool use_unicode;
  297. static
  298. bool have_unicode_degrees;
  299. static
  300. wchar_t unicode_micro = 'u';
  301. #else
  302. const bool use_unicode;
  303. static
  304. const bool have_unicode_degrees;
  305. static
  306. const char unicode_micro = 'u';
  307. #endif
  308. #ifdef HAVE_CURSES
  309. #define U8_BAD_START "\xef\x80\x81"
  310. #define U8_BAD_END "\xef\x80\x80"
  311. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  312. bool selecting_device;
  313. unsigned selected_device;
  314. #endif
  315. static char current_block[40];
  316. /* Protected by ch_lock */
  317. static char *current_hash;
  318. static uint32_t current_block_id;
  319. char *current_fullhash;
  320. static char datestamp[40];
  321. static char blocktime[32];
  322. time_t block_time;
  323. static char best_share[ALLOC_H2B_SHORTV] = "0";
  324. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  325. static char block_diff[ALLOC_H2B_SHORTV];
  326. static char net_hashrate[ALLOC_H2B_SHORT];
  327. double best_diff = 0;
  328. static bool known_blkheight_current;
  329. static uint32_t known_blkheight;
  330. static uint32_t known_blkheight_blkid;
  331. static uint64_t block_subsidy;
  332. struct block {
  333. char hash[40];
  334. UT_hash_handle hh;
  335. int block_no;
  336. };
  337. static struct block *blocks = NULL;
  338. int swork_id;
  339. /* For creating a hash database of stratum shares submitted that have not had
  340. * a response yet */
  341. struct stratum_share {
  342. UT_hash_handle hh;
  343. bool block;
  344. struct work *work;
  345. int id;
  346. };
  347. static struct stratum_share *stratum_shares = NULL;
  348. char *opt_socks_proxy = NULL;
  349. static const char def_conf[] = "bfgminer.conf";
  350. static bool config_loaded;
  351. static int include_count;
  352. #define JSON_INCLUDE_CONF "include"
  353. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  354. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  355. #define JSON_MAX_DEPTH 10
  356. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  357. char *cmd_idle, *cmd_sick, *cmd_dead;
  358. #if defined(unix) || defined(__APPLE__)
  359. static char *opt_stderr_cmd = NULL;
  360. static int forkpid;
  361. #endif // defined(unix)
  362. #ifdef HAVE_CHROOT
  363. char *chroot_dir;
  364. #endif
  365. #ifdef HAVE_PWD_H
  366. char *opt_setuid;
  367. #endif
  368. struct sigaction termhandler, inthandler;
  369. struct thread_q *getq;
  370. static int total_work;
  371. static bool staged_full;
  372. struct work *staged_work = NULL;
  373. struct schedtime {
  374. bool enable;
  375. struct tm tm;
  376. };
  377. struct schedtime schedstart;
  378. struct schedtime schedstop;
  379. bool sched_paused;
  380. static bool time_before(struct tm *tm1, struct tm *tm2)
  381. {
  382. if (tm1->tm_hour < tm2->tm_hour)
  383. return true;
  384. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  385. return true;
  386. return false;
  387. }
  388. static bool should_run(void)
  389. {
  390. struct tm tm;
  391. time_t tt;
  392. bool within_range;
  393. if (!schedstart.enable && !schedstop.enable)
  394. return true;
  395. tt = time(NULL);
  396. localtime_r(&tt, &tm);
  397. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  398. if (time_before(&schedstop.tm, &schedstart.tm))
  399. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  400. else
  401. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  402. if (within_range && !schedstop.enable)
  403. /* This is a once off event with no stop time set */
  404. schedstart.enable = false;
  405. return within_range;
  406. }
  407. void get_datestamp(char *f, size_t fsiz, time_t tt)
  408. {
  409. struct tm _tm;
  410. struct tm *tm = &_tm;
  411. if (tt == INVALID_TIMESTAMP)
  412. tt = time(NULL);
  413. localtime_r(&tt, tm);
  414. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  415. tm->tm_year + 1900,
  416. tm->tm_mon + 1,
  417. tm->tm_mday,
  418. tm->tm_hour,
  419. tm->tm_min,
  420. tm->tm_sec);
  421. }
  422. static
  423. void get_timestamp(char *f, size_t fsiz, time_t tt)
  424. {
  425. struct tm _tm;
  426. struct tm *tm = &_tm;
  427. localtime_r(&tt, tm);
  428. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  429. tm->tm_hour,
  430. tm->tm_min,
  431. tm->tm_sec);
  432. }
  433. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  434. static char exit_buf[512];
  435. static void applog_and_exit(const char *fmt, ...)
  436. {
  437. va_list ap;
  438. va_start(ap, fmt);
  439. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  440. va_end(ap);
  441. _applog(LOG_ERR, exit_buf);
  442. exit(1);
  443. }
  444. char *devpath_to_devid(const char *devpath)
  445. {
  446. #ifndef WIN32
  447. struct stat my_stat;
  448. if (stat(devpath, &my_stat))
  449. return NULL;
  450. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  451. memcpy(devs, "dev_t:", 6);
  452. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  453. #else
  454. if (!strncmp(devpath, "\\\\.\\", 4))
  455. devpath += 4;
  456. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  457. return NULL;
  458. devpath += 3;
  459. char *p;
  460. strtol(devpath, &p, 10);
  461. if (p[0])
  462. return NULL;
  463. const int sz = (p - devpath);
  464. char *devs = malloc(4 + sz + 1);
  465. sprintf(devs, "com:%s", devpath);
  466. #endif
  467. return devs;
  468. }
  469. static
  470. bool devpaths_match(const char * const ap, const char * const bp)
  471. {
  472. char * const a = devpath_to_devid(ap);
  473. if (!a)
  474. return false;
  475. char * const b = devpath_to_devid(bp);
  476. bool rv = false;
  477. if (b)
  478. {
  479. rv = !strcmp(a, b);
  480. free(b);
  481. }
  482. free(a);
  483. return rv;
  484. }
  485. static
  486. int proc_letter_to_number(const char *s, const char ** const rem)
  487. {
  488. int n = 0, c;
  489. for ( ; s[0]; ++s)
  490. {
  491. if (unlikely(n > INT_MAX / 26))
  492. break;
  493. c = tolower(s[0]) - 'a';
  494. if (unlikely(c < 0 || c > 25))
  495. break;
  496. if (unlikely(INT_MAX - c < n))
  497. break;
  498. n = (n * 26) + c;
  499. }
  500. *rem = s;
  501. return n;
  502. }
  503. static
  504. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  505. {
  506. // all - matches anything
  507. // d0 - matches all processors of device 0
  508. // d0-3 - matches all processors of device 0, 1, 2, or 3
  509. // d0a - matches first processor of device 0
  510. // 0 - matches processor 0
  511. // 0-4 - matches processors 0, 1, 2, 3, or 4
  512. // ___ - matches all processors on all devices using driver/name ___
  513. // ___0 - matches all processors of 0th device using driver/name ___
  514. // ___0a - matches first processor of 0th device using driver/name ___
  515. // @* - matches device with serial or path *
  516. // @*@a - matches first processor of device with serial or path *
  517. // ___@* - matches device with serial or path * using driver/name ___
  518. if (!strcasecmp(pattern, "all"))
  519. return true;
  520. const struct device_drv * const drv = cgpu->drv;
  521. const char *p = pattern, *p2;
  522. size_t L;
  523. int n, i, c = -1;
  524. int n2;
  525. int proc_first = -1, proc_last = -1;
  526. struct cgpu_info *device;
  527. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  528. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  529. // dname or name
  530. p = &pattern[L];
  531. else
  532. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  533. // d#
  534. ++p;
  535. else
  536. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  537. // # or @
  538. {}
  539. else
  540. return false;
  541. L = p - pattern;
  542. while (isspace(p[0]))
  543. ++p;
  544. if (p[0] == '@')
  545. {
  546. // Serial/path
  547. const char * const ser = &p[1];
  548. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  549. {}
  550. p2 = (p[0] == '@') ? &p[1] : p;
  551. const size_t serlen = (p - ser);
  552. p = "";
  553. n = n2 = 0;
  554. const char * const devpath = cgpu->device_path ?: "";
  555. const char * const devser = cgpu->dev_serial ?: "";
  556. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  557. {} // Match
  558. else
  559. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  560. {} // Match
  561. else
  562. {
  563. char devpath2[serlen + 1];
  564. memcpy(devpath2, ser, serlen);
  565. devpath2[serlen] = '\0';
  566. if (!devpaths_match(devpath, ser))
  567. return false;
  568. }
  569. }
  570. else
  571. {
  572. if (isdigit(p[0]))
  573. n = strtol(p, (void*)&p2, 0);
  574. else
  575. {
  576. n = 0;
  577. p2 = p;
  578. }
  579. if (p2[0] == '-')
  580. {
  581. ++p2;
  582. if (p2[0] && isdigit(p2[0]))
  583. n2 = strtol(p2, (void*)&p2, 0);
  584. else
  585. n2 = INT_MAX;
  586. }
  587. else
  588. n2 = n;
  589. if (p == pattern)
  590. {
  591. if (!p[0])
  592. return true;
  593. if (p2 && p2[0])
  594. goto invsyntax;
  595. for (i = n; i <= n2; ++i)
  596. {
  597. if (i >= total_devices)
  598. break;
  599. if (cgpu == devices[i])
  600. return true;
  601. }
  602. return false;
  603. }
  604. }
  605. if (p2[0])
  606. {
  607. proc_first = proc_letter_to_number(&p2[0], &p2);
  608. if (p2[0] == '-')
  609. {
  610. ++p2;
  611. if (p2[0])
  612. proc_last = proc_letter_to_number(p2, &p2);
  613. else
  614. proc_last = INT_MAX;
  615. }
  616. else
  617. proc_last = proc_first;
  618. if (p2[0])
  619. goto invsyntax;
  620. }
  621. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  622. {
  623. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  624. (!L) ||
  625. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  626. {} // Matched name or dname
  627. else
  628. return false;
  629. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  630. return false;
  631. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  632. return false;
  633. return true;
  634. }
  635. // d#
  636. c = -1;
  637. for (i = 0; ; ++i)
  638. {
  639. if (i == total_devices)
  640. return false;
  641. if (devices[i]->device != devices[i])
  642. continue;
  643. ++c;
  644. if (c < n)
  645. continue;
  646. if (c > n2)
  647. break;
  648. for (device = devices[i]; device; device = device->next_proc)
  649. {
  650. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  651. continue;
  652. if (device == cgpu)
  653. return true;
  654. }
  655. }
  656. return false;
  657. invsyntax:
  658. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  659. return false;
  660. }
  661. #define TEST_CGPU_MATCH(pattern) \
  662. if (!cgpu_match(pattern, &cgpu)) \
  663. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  664. // END TEST_CGPU_MATCH
  665. #define TEST_CGPU_NOMATCH(pattern) \
  666. if (cgpu_match(pattern, &cgpu)) \
  667. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  668. // END TEST_CGPU_MATCH
  669. static __maybe_unused
  670. void test_cgpu_match()
  671. {
  672. struct device_drv drv = {
  673. .dname = "test",
  674. .name = "TST",
  675. };
  676. struct cgpu_info cgpu = {
  677. .drv = &drv,
  678. .device = &cgpu,
  679. .device_id = 1,
  680. .proc_id = 1,
  681. .proc_repr = "TST 1b",
  682. }, cgpu0a = {
  683. .drv = &drv,
  684. .device = &cgpu0a,
  685. .device_id = 0,
  686. .proc_id = 0,
  687. .proc_repr = "TST 0a",
  688. }, cgpu1a = {
  689. .drv = &drv,
  690. .device = &cgpu0a,
  691. .device_id = 1,
  692. .proc_id = 0,
  693. .proc_repr = "TST 1a",
  694. };
  695. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  696. devices = devices_list;
  697. total_devices = 3;
  698. TEST_CGPU_MATCH("all")
  699. TEST_CGPU_MATCH("d1")
  700. TEST_CGPU_NOMATCH("d2")
  701. TEST_CGPU_MATCH("d0-5")
  702. TEST_CGPU_NOMATCH("d0-0")
  703. TEST_CGPU_NOMATCH("d2-5")
  704. TEST_CGPU_MATCH("d-1")
  705. TEST_CGPU_MATCH("d1-")
  706. TEST_CGPU_NOMATCH("d-0")
  707. TEST_CGPU_NOMATCH("d2-")
  708. TEST_CGPU_MATCH("2")
  709. TEST_CGPU_NOMATCH("3")
  710. TEST_CGPU_MATCH("1-2")
  711. TEST_CGPU_MATCH("2-3")
  712. TEST_CGPU_NOMATCH("1-1")
  713. TEST_CGPU_NOMATCH("3-4")
  714. TEST_CGPU_MATCH("TST")
  715. TEST_CGPU_MATCH("test")
  716. TEST_CGPU_MATCH("tst")
  717. TEST_CGPU_MATCH("TEST")
  718. TEST_CGPU_NOMATCH("TSF")
  719. TEST_CGPU_NOMATCH("TS")
  720. TEST_CGPU_NOMATCH("TSTF")
  721. TEST_CGPU_MATCH("TST1")
  722. TEST_CGPU_MATCH("test1")
  723. TEST_CGPU_MATCH("TST0-1")
  724. TEST_CGPU_MATCH("TST 1")
  725. TEST_CGPU_MATCH("TST 1-2")
  726. TEST_CGPU_MATCH("TEST 1-2")
  727. TEST_CGPU_NOMATCH("TST2")
  728. TEST_CGPU_NOMATCH("TST2-3")
  729. TEST_CGPU_NOMATCH("TST0-0")
  730. TEST_CGPU_MATCH("TST1b")
  731. TEST_CGPU_MATCH("tst1b")
  732. TEST_CGPU_NOMATCH("TST1c")
  733. TEST_CGPU_NOMATCH("TST1bb")
  734. TEST_CGPU_MATCH("TST0-1b")
  735. TEST_CGPU_NOMATCH("TST0-1c")
  736. TEST_CGPU_MATCH("TST1a-d")
  737. TEST_CGPU_NOMATCH("TST1a-a")
  738. TEST_CGPU_NOMATCH("TST1-a")
  739. TEST_CGPU_NOMATCH("TST1c-z")
  740. TEST_CGPU_NOMATCH("TST1c-")
  741. TEST_CGPU_MATCH("@")
  742. TEST_CGPU_NOMATCH("@abc")
  743. TEST_CGPU_MATCH("@@b")
  744. TEST_CGPU_NOMATCH("@@c")
  745. TEST_CGPU_MATCH("TST@")
  746. TEST_CGPU_NOMATCH("TST@abc")
  747. TEST_CGPU_MATCH("TST@@b")
  748. TEST_CGPU_NOMATCH("TST@@c")
  749. TEST_CGPU_MATCH("TST@@b-f")
  750. TEST_CGPU_NOMATCH("TST@@c-f")
  751. TEST_CGPU_NOMATCH("TST@@-a")
  752. cgpu.device_path = "/dev/test";
  753. cgpu.dev_serial = "testy";
  754. TEST_CGPU_MATCH("TST@/dev/test")
  755. TEST_CGPU_MATCH("TST@testy")
  756. TEST_CGPU_NOMATCH("TST@")
  757. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  758. TEST_CGPU_NOMATCH("TST@testy3@b")
  759. TEST_CGPU_MATCH("TST@/dev/test@b")
  760. TEST_CGPU_MATCH("TST@testy@b")
  761. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  762. TEST_CGPU_NOMATCH("TST@testy@c")
  763. cgpu.device_path = "usb:000:999";
  764. TEST_CGPU_MATCH("TST@usb:000:999")
  765. drv.dname = "test7";
  766. TEST_CGPU_MATCH("test7")
  767. TEST_CGPU_MATCH("TEST7")
  768. TEST_CGPU_NOMATCH("test&")
  769. TEST_CGPU_MATCH("test7 1-2")
  770. TEST_CGPU_MATCH("test7@testy@b")
  771. }
  772. static
  773. int cgpu_search(const char * const pattern, const int first)
  774. {
  775. int i;
  776. struct cgpu_info *cgpu;
  777. #define CHECK_CGPU_SEARCH do{ \
  778. cgpu = get_devices(i); \
  779. if (cgpu_match(pattern, cgpu)) \
  780. return i; \
  781. }while(0)
  782. for (i = first; i < total_devices; ++i)
  783. CHECK_CGPU_SEARCH;
  784. for (i = 0; i < first; ++i)
  785. CHECK_CGPU_SEARCH;
  786. #undef CHECK_CGPU_SEARCH
  787. return -1;
  788. }
  789. static pthread_mutex_t sharelog_lock;
  790. static FILE *sharelog_file = NULL;
  791. struct thr_info *get_thread(int thr_id)
  792. {
  793. struct thr_info *thr;
  794. rd_lock(&mining_thr_lock);
  795. thr = mining_thr[thr_id];
  796. rd_unlock(&mining_thr_lock);
  797. return thr;
  798. }
  799. static struct cgpu_info *get_thr_cgpu(int thr_id)
  800. {
  801. struct thr_info *thr = get_thread(thr_id);
  802. return thr->cgpu;
  803. }
  804. struct cgpu_info *get_devices(int id)
  805. {
  806. struct cgpu_info *cgpu;
  807. rd_lock(&devices_lock);
  808. cgpu = devices[id];
  809. rd_unlock(&devices_lock);
  810. return cgpu;
  811. }
  812. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  813. static FILE *noncelog_file = NULL;
  814. static
  815. void noncelog(const struct work * const work)
  816. {
  817. const int thr_id = work->thr_id;
  818. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  819. char buf[0x200], hash[65], data[161], midstate[65];
  820. int rv;
  821. size_t ret;
  822. bin2hex(hash, work->hash, 32);
  823. bin2hex(data, work->data, 80);
  824. bin2hex(midstate, work->midstate, 32);
  825. // timestamp,proc,hash,data,midstate
  826. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  827. (unsigned long)time(NULL), proc->proc_repr_ns,
  828. hash, data, midstate);
  829. if (unlikely(rv < 1))
  830. {
  831. applog(LOG_ERR, "noncelog printf error");
  832. return;
  833. }
  834. mutex_lock(&noncelog_lock);
  835. ret = fwrite(buf, rv, 1, noncelog_file);
  836. fflush(noncelog_file);
  837. mutex_unlock(&noncelog_lock);
  838. if (ret != 1)
  839. applog(LOG_ERR, "noncelog fwrite error");
  840. }
  841. static void sharelog(const char*disposition, const struct work*work)
  842. {
  843. char target[(sizeof(work->target) * 2) + 1];
  844. char hash[(sizeof(work->hash) * 2) + 1];
  845. char data[(sizeof(work->data) * 2) + 1];
  846. struct cgpu_info *cgpu;
  847. unsigned long int t;
  848. struct pool *pool;
  849. int thr_id, rv;
  850. char s[1024];
  851. size_t ret;
  852. if (!sharelog_file)
  853. return;
  854. thr_id = work->thr_id;
  855. cgpu = get_thr_cgpu(thr_id);
  856. pool = work->pool;
  857. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  858. bin2hex(target, work->target, sizeof(work->target));
  859. bin2hex(hash, work->hash, sizeof(work->hash));
  860. bin2hex(data, work->data, sizeof(work->data));
  861. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  862. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->proc_repr_ns, thr_id, hash, data);
  863. if (rv >= (int)(sizeof(s)))
  864. s[sizeof(s) - 1] = '\0';
  865. else if (rv < 0) {
  866. applog(LOG_ERR, "sharelog printf error");
  867. return;
  868. }
  869. mutex_lock(&sharelog_lock);
  870. ret = fwrite(s, rv, 1, sharelog_file);
  871. fflush(sharelog_file);
  872. mutex_unlock(&sharelog_lock);
  873. if (ret != 1)
  874. applog(LOG_ERR, "sharelog fwrite error");
  875. }
  876. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  877. /* Adjust all the pools' quota to the greatest common denominator after a pool
  878. * has been added or the quotas changed. */
  879. void adjust_quota_gcd(void)
  880. {
  881. unsigned long gcd, lowest_quota = ~0UL, quota;
  882. struct pool *pool;
  883. int i;
  884. for (i = 0; i < total_pools; i++) {
  885. pool = pools[i];
  886. quota = pool->quota;
  887. if (!quota)
  888. continue;
  889. if (quota < lowest_quota)
  890. lowest_quota = quota;
  891. }
  892. if (likely(lowest_quota < ~0UL)) {
  893. gcd = lowest_quota;
  894. for (i = 0; i < total_pools; i++) {
  895. pool = pools[i];
  896. quota = pool->quota;
  897. if (!quota)
  898. continue;
  899. while (quota % gcd)
  900. gcd--;
  901. }
  902. } else
  903. gcd = 1;
  904. for (i = 0; i < total_pools; i++) {
  905. pool = pools[i];
  906. pool->quota_used *= global_quota_gcd;
  907. pool->quota_used /= gcd;
  908. pool->quota_gcd = pool->quota / gcd;
  909. }
  910. global_quota_gcd = gcd;
  911. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  912. }
  913. /* Return value is ignored if not called from add_pool_details */
  914. struct pool *add_pool(void)
  915. {
  916. struct pool *pool;
  917. pool = calloc(sizeof(struct pool), 1);
  918. if (!pool)
  919. quit(1, "Failed to malloc pool in add_pool");
  920. pool->pool_no = pool->prio = total_pools;
  921. mutex_init(&pool->last_work_lock);
  922. mutex_init(&pool->pool_lock);
  923. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  924. quit(1, "Failed to pthread_cond_init in add_pool");
  925. cglock_init(&pool->data_lock);
  926. mutex_init(&pool->stratum_lock);
  927. timer_unset(&pool->swork.tv_transparency);
  928. /* Make sure the pool doesn't think we've been idle since time 0 */
  929. pool->tv_idle.tv_sec = ~0UL;
  930. cgtime(&pool->cgminer_stats.start_tv);
  931. pool->rpc_proxy = NULL;
  932. pool->quota = 1;
  933. pool->sock = INVSOCK;
  934. pool->lp_socket = CURL_SOCKET_BAD;
  935. if (opt_benchmark)
  936. {
  937. // Don't add to pools array, but immediately remove it
  938. remove_pool(pool);
  939. return pool;
  940. }
  941. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  942. pools[total_pools++] = pool;
  943. adjust_quota_gcd();
  944. return pool;
  945. }
  946. /* Pool variant of test and set */
  947. static bool pool_tset(struct pool *pool, bool *var)
  948. {
  949. bool ret;
  950. mutex_lock(&pool->pool_lock);
  951. ret = *var;
  952. *var = true;
  953. mutex_unlock(&pool->pool_lock);
  954. return ret;
  955. }
  956. bool pool_tclear(struct pool *pool, bool *var)
  957. {
  958. bool ret;
  959. mutex_lock(&pool->pool_lock);
  960. ret = *var;
  961. *var = false;
  962. mutex_unlock(&pool->pool_lock);
  963. return ret;
  964. }
  965. struct pool *current_pool(void)
  966. {
  967. struct pool *pool;
  968. cg_rlock(&control_lock);
  969. pool = currentpool;
  970. cg_runlock(&control_lock);
  971. return pool;
  972. }
  973. // Copied from ccan/opt/helpers.c
  974. static char *arg_bad(const char *fmt, const char *arg)
  975. {
  976. char *str = malloc(strlen(fmt) + strlen(arg));
  977. sprintf(str, fmt, arg);
  978. return str;
  979. }
  980. static
  981. char *opt_set_floatval(const char *arg, float *f)
  982. {
  983. char *endp;
  984. errno = 0;
  985. *f = strtof(arg, &endp);
  986. if (*endp || !arg[0])
  987. return arg_bad("'%s' is not a number", arg);
  988. if (errno)
  989. return arg_bad("'%s' is out of range", arg);
  990. return NULL;
  991. }
  992. static
  993. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  994. {
  995. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  996. }
  997. static
  998. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  999. {
  1000. return opt_set_bool(b);
  1001. }
  1002. char *set_int_range(const char *arg, int *i, int min, int max)
  1003. {
  1004. char *err = opt_set_intval(arg, i);
  1005. if (err)
  1006. return err;
  1007. if (*i < min || *i > max)
  1008. return "Value out of range";
  1009. return NULL;
  1010. }
  1011. static char *set_int_0_to_9999(const char *arg, int *i)
  1012. {
  1013. return set_int_range(arg, i, 0, 9999);
  1014. }
  1015. static char *set_int_1_to_65535(const char *arg, int *i)
  1016. {
  1017. return set_int_range(arg, i, 1, 65535);
  1018. }
  1019. static char *set_int_0_to_10(const char *arg, int *i)
  1020. {
  1021. return set_int_range(arg, i, 0, 10);
  1022. }
  1023. static char *set_int_1_to_10(const char *arg, int *i)
  1024. {
  1025. return set_int_range(arg, i, 1, 10);
  1026. }
  1027. char *set_strdup(const char *arg, char **p)
  1028. {
  1029. *p = strdup((char *)arg);
  1030. return NULL;
  1031. }
  1032. #if BLKMAKER_VERSION > 1
  1033. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1034. {
  1035. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1036. if (!scriptsz)
  1037. return "Invalid address";
  1038. char *script = malloc(scriptsz);
  1039. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1040. free(script);
  1041. return "Failed to convert address to script";
  1042. }
  1043. p->data = script;
  1044. p->sz = scriptsz;
  1045. return NULL;
  1046. }
  1047. #endif
  1048. static
  1049. char *set_quit_summary(const char * const arg)
  1050. {
  1051. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1052. opt_quit_summary = BQS_NONE;
  1053. else
  1054. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1055. opt_quit_summary = BQS_DEVS;
  1056. else
  1057. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1058. opt_quit_summary = BQS_PROCS;
  1059. else
  1060. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1061. opt_quit_summary = BQS_DETAILED;
  1062. else
  1063. return "Quit summary must be one of none/devs/procs/detailed";
  1064. return NULL;
  1065. }
  1066. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1067. char *set_request_diff(const char *arg, float *p)
  1068. {
  1069. unsigned char target[32];
  1070. char *e = opt_set_floatval(arg, p);
  1071. if (e)
  1072. return e;
  1073. request_bdiff = (double)*p * 0.9999847412109375;
  1074. bdiff_target_leadzero(target, request_bdiff);
  1075. request_target_str = malloc(65);
  1076. bin2hex(request_target_str, target, 32);
  1077. return NULL;
  1078. }
  1079. #ifdef NEED_BFG_LOWL_VCOM
  1080. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1081. #ifdef WIN32
  1082. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1083. {
  1084. char dev[PATH_MAX];
  1085. char *devp = dev;
  1086. size_t bufLen = 0x100;
  1087. tryagain: ;
  1088. char buf[bufLen];
  1089. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1090. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1091. bufLen *= 2;
  1092. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1093. goto tryagain;
  1094. }
  1095. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1096. }
  1097. size_t tLen;
  1098. memcpy(devp, "\\\\.\\", 4);
  1099. devp = &devp[4];
  1100. for (char *t = buf; *t; t += tLen) {
  1101. tLen = strlen(t) + 1;
  1102. if (strncmp("COM", t, 3))
  1103. continue;
  1104. memcpy(devp, t, tLen);
  1105. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1106. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1107. }
  1108. }
  1109. #else
  1110. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1111. {
  1112. char dev[PATH_MAX];
  1113. char *devp = dev;
  1114. DIR *D;
  1115. struct dirent *de;
  1116. const char devdir[] = "/dev";
  1117. const size_t devdirlen = sizeof(devdir) - 1;
  1118. char *devpath = devp;
  1119. char *devfile = devpath + devdirlen + 1;
  1120. D = opendir(devdir);
  1121. if (!D)
  1122. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1123. memcpy(devpath, devdir, devdirlen);
  1124. devpath[devdirlen] = '/';
  1125. while ( (de = readdir(D)) ) {
  1126. if (!strncmp(de->d_name, "cu.", 3)
  1127. //don't probe Bluetooth devices - causes bus errors and segfaults
  1128. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1129. goto trydev;
  1130. if (strncmp(de->d_name, "tty", 3))
  1131. continue;
  1132. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1133. continue;
  1134. trydev:
  1135. strcpy(devfile, de->d_name);
  1136. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1137. }
  1138. closedir(D);
  1139. }
  1140. #endif
  1141. #endif
  1142. static char *add_serial(const char *arg)
  1143. {
  1144. string_elist_add(arg, &scan_devices);
  1145. return NULL;
  1146. }
  1147. static
  1148. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1149. {
  1150. string_elist_add(arg, elist);
  1151. return NULL;
  1152. }
  1153. bool get_intrange(const char *arg, int *val1, int *val2)
  1154. {
  1155. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1156. char *p, *p2;
  1157. *val1 = strtol(arg, &p, 0);
  1158. if (arg == p)
  1159. // Zero-length ending number, invalid
  1160. return false;
  1161. while (true)
  1162. {
  1163. if (!p[0])
  1164. {
  1165. *val2 = *val1;
  1166. return true;
  1167. }
  1168. if (p[0] == '-')
  1169. break;
  1170. if (!isspace(p[0]))
  1171. // Garbage, invalid
  1172. return false;
  1173. ++p;
  1174. }
  1175. p2 = &p[1];
  1176. *val2 = strtol(p2, &p, 0);
  1177. if (p2 == p)
  1178. // Zero-length ending number, invalid
  1179. return false;
  1180. while (true)
  1181. {
  1182. if (!p[0])
  1183. return true;
  1184. if (!isspace(p[0]))
  1185. // Garbage, invalid
  1186. return false;
  1187. ++p;
  1188. }
  1189. }
  1190. static
  1191. void _test_intrange(const char *s, const int v[2])
  1192. {
  1193. int a[2];
  1194. if (!get_intrange(s, &a[0], &a[1]))
  1195. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1196. for (int i = 0; i < 2; ++i)
  1197. if (unlikely(a[i] != v[i]))
  1198. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1199. }
  1200. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1201. static
  1202. void _test_intrange_fail(const char *s)
  1203. {
  1204. int a[2];
  1205. if (get_intrange(s, &a[0], &a[1]))
  1206. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1207. }
  1208. static
  1209. void test_intrange()
  1210. {
  1211. _test_intrange("-1--2", -1, -2);
  1212. _test_intrange("-1-2", -1, 2);
  1213. _test_intrange("1--2", 1, -2);
  1214. _test_intrange("1-2", 1, 2);
  1215. _test_intrange("111-222", 111, 222);
  1216. _test_intrange(" 11 - 22 ", 11, 22);
  1217. _test_intrange("+11-+22", 11, 22);
  1218. _test_intrange("-1", -1, -1);
  1219. _test_intrange_fail("all");
  1220. _test_intrange_fail("1-");
  1221. _test_intrange_fail("");
  1222. _test_intrange_fail("1-54x");
  1223. }
  1224. static char *set_devices(char *arg)
  1225. {
  1226. if (*arg) {
  1227. if (*arg == '?') {
  1228. opt_display_devs = true;
  1229. return NULL;
  1230. }
  1231. } else
  1232. return "Invalid device parameters";
  1233. string_elist_add(arg, &opt_devices_enabled_list);
  1234. return NULL;
  1235. }
  1236. static char *set_balance(enum pool_strategy *strategy)
  1237. {
  1238. *strategy = POOL_BALANCE;
  1239. return NULL;
  1240. }
  1241. static char *set_loadbalance(enum pool_strategy *strategy)
  1242. {
  1243. *strategy = POOL_LOADBALANCE;
  1244. return NULL;
  1245. }
  1246. static char *set_rotate(const char *arg, int *i)
  1247. {
  1248. pool_strategy = POOL_ROTATE;
  1249. return set_int_range(arg, i, 0, 9999);
  1250. }
  1251. static char *set_rr(enum pool_strategy *strategy)
  1252. {
  1253. *strategy = POOL_ROUNDROBIN;
  1254. return NULL;
  1255. }
  1256. /* Detect that url is for a stratum protocol either via the presence of
  1257. * stratum+tcp or by detecting a stratum server response */
  1258. bool detect_stratum(struct pool *pool, char *url)
  1259. {
  1260. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1261. return false;
  1262. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1263. pool->rpc_url = strdup(url);
  1264. pool->has_stratum = true;
  1265. pool->stratum_url = pool->sockaddr_url;
  1266. return true;
  1267. }
  1268. return false;
  1269. }
  1270. static struct pool *add_url(void)
  1271. {
  1272. total_urls++;
  1273. if (total_urls > total_pools)
  1274. add_pool();
  1275. return pools[total_urls - 1];
  1276. }
  1277. static void setup_url(struct pool *pool, char *arg)
  1278. {
  1279. if (detect_stratum(pool, arg))
  1280. return;
  1281. opt_set_charp(arg, &pool->rpc_url);
  1282. if (strncmp(arg, "http://", 7) &&
  1283. strncmp(arg, "https://", 8)) {
  1284. const size_t L = strlen(arg);
  1285. char *httpinput;
  1286. httpinput = malloc(8 + L);
  1287. if (!httpinput)
  1288. quit(1, "Failed to malloc httpinput");
  1289. sprintf(httpinput, "http://%s", arg);
  1290. pool->rpc_url = httpinput;
  1291. }
  1292. }
  1293. static char *set_url(char *arg)
  1294. {
  1295. struct pool *pool = add_url();
  1296. setup_url(pool, arg);
  1297. return NULL;
  1298. }
  1299. static char *set_quota(char *arg)
  1300. {
  1301. char *semicolon = strchr(arg, ';'), *url;
  1302. int len, qlen, quota;
  1303. struct pool *pool;
  1304. if (!semicolon)
  1305. return "No semicolon separated quota;URL pair found";
  1306. len = strlen(arg);
  1307. *semicolon = '\0';
  1308. qlen = strlen(arg);
  1309. if (!qlen)
  1310. return "No parameter for quota found";
  1311. len -= qlen + 1;
  1312. if (len < 1)
  1313. return "No parameter for URL found";
  1314. quota = atoi(arg);
  1315. if (quota < 0)
  1316. return "Invalid negative parameter for quota set";
  1317. url = arg + qlen + 1;
  1318. pool = add_url();
  1319. setup_url(pool, url);
  1320. pool->quota = quota;
  1321. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1322. adjust_quota_gcd();
  1323. return NULL;
  1324. }
  1325. static char *set_user(const char *arg)
  1326. {
  1327. struct pool *pool;
  1328. total_users++;
  1329. if (total_users > total_pools)
  1330. add_pool();
  1331. pool = pools[total_users - 1];
  1332. opt_set_charp(arg, &pool->rpc_user);
  1333. return NULL;
  1334. }
  1335. static char *set_pass(const char *arg)
  1336. {
  1337. struct pool *pool;
  1338. total_passes++;
  1339. if (total_passes > total_pools)
  1340. add_pool();
  1341. pool = pools[total_passes - 1];
  1342. opt_set_charp(arg, &pool->rpc_pass);
  1343. return NULL;
  1344. }
  1345. static char *set_userpass(const char *arg)
  1346. {
  1347. struct pool *pool;
  1348. char *updup;
  1349. if (total_users != total_passes)
  1350. return "User + pass options must be balanced before userpass";
  1351. ++total_users;
  1352. ++total_passes;
  1353. if (total_users > total_pools)
  1354. add_pool();
  1355. pool = pools[total_users - 1];
  1356. updup = strdup(arg);
  1357. opt_set_charp(arg, &pool->rpc_userpass);
  1358. pool->rpc_user = strtok(updup, ":");
  1359. if (!pool->rpc_user)
  1360. return "Failed to find : delimited user info";
  1361. pool->rpc_pass = strtok(NULL, ":");
  1362. if (!pool->rpc_pass)
  1363. pool->rpc_pass = "";
  1364. return NULL;
  1365. }
  1366. static char *set_pool_priority(const char *arg)
  1367. {
  1368. struct pool *pool;
  1369. if (!total_pools)
  1370. return "Usage of --pool-priority before pools are defined does not make sense";
  1371. pool = pools[total_pools - 1];
  1372. opt_set_intval(arg, &pool->prio);
  1373. return NULL;
  1374. }
  1375. static char *set_pool_proxy(const char *arg)
  1376. {
  1377. struct pool *pool;
  1378. if (!total_pools)
  1379. return "Usage of --pool-proxy before pools are defined does not make sense";
  1380. if (!our_curl_supports_proxy_uris())
  1381. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1382. pool = pools[total_pools - 1];
  1383. opt_set_charp(arg, &pool->rpc_proxy);
  1384. return NULL;
  1385. }
  1386. static char *set_pool_force_rollntime(const char *arg)
  1387. {
  1388. struct pool *pool;
  1389. if (!total_pools)
  1390. return "Usage of --force-rollntime before pools are defined does not make sense";
  1391. pool = pools[total_pools - 1];
  1392. opt_set_intval(arg, &pool->force_rollntime);
  1393. return NULL;
  1394. }
  1395. static char *enable_debug(bool *flag)
  1396. {
  1397. *flag = true;
  1398. opt_debug_console = true;
  1399. /* Turn on verbose output, too. */
  1400. opt_log_output = true;
  1401. return NULL;
  1402. }
  1403. static char *set_schedtime(const char *arg, struct schedtime *st)
  1404. {
  1405. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1406. {
  1407. if (strcasecmp(arg, "now"))
  1408. return "Invalid time set, should be HH:MM";
  1409. } else
  1410. schedstop.tm.tm_sec = 0;
  1411. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1412. return "Invalid time set.";
  1413. st->enable = true;
  1414. return NULL;
  1415. }
  1416. static
  1417. char *set_log_file(char *arg)
  1418. {
  1419. char *r = "";
  1420. long int i = strtol(arg, &r, 10);
  1421. int fd, stderr_fd = fileno(stderr);
  1422. if ((!*r) && i >= 0 && i <= INT_MAX)
  1423. fd = i;
  1424. else
  1425. if (!strcmp(arg, "-"))
  1426. {
  1427. fd = fileno(stdout);
  1428. if (unlikely(fd == -1))
  1429. return "Standard output missing for log-file";
  1430. }
  1431. else
  1432. {
  1433. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1434. if (unlikely(fd == -1))
  1435. return "Failed to open log-file";
  1436. }
  1437. close(stderr_fd);
  1438. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1439. return "Failed to dup2 for log-file";
  1440. close(fd);
  1441. return NULL;
  1442. }
  1443. static
  1444. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1445. {
  1446. char *r = "";
  1447. long int i = strtol(arg, &r, 10);
  1448. static char *err = NULL;
  1449. const size_t errbufsz = 0x100;
  1450. free(err);
  1451. err = NULL;
  1452. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1453. *F = fdopen((int)i, mode);
  1454. if (!*F)
  1455. {
  1456. err = malloc(errbufsz);
  1457. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1458. (int)i, purpose);
  1459. return err;
  1460. }
  1461. } else if (!strcmp(arg, "-")) {
  1462. *F = (mode[0] == 'a') ? stdout : stdin;
  1463. if (!*F)
  1464. {
  1465. err = malloc(errbufsz);
  1466. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1467. (mode[0] == 'a') ? "out" : "in", purpose);
  1468. return err;
  1469. }
  1470. } else {
  1471. *F = fopen(arg, mode);
  1472. if (!*F)
  1473. {
  1474. err = malloc(errbufsz);
  1475. snprintf(err, errbufsz, "Failed to open %s for %s",
  1476. arg, purpose);
  1477. return err;
  1478. }
  1479. }
  1480. return NULL;
  1481. }
  1482. static char *set_noncelog(char *arg)
  1483. {
  1484. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1485. }
  1486. static char *set_sharelog(char *arg)
  1487. {
  1488. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1489. }
  1490. static
  1491. void _add_set_device_option(const char * const func, const char * const buf)
  1492. {
  1493. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1494. string_elist_add(buf, &opt_set_device_list);
  1495. }
  1496. #define add_set_device_option(...) do{ \
  1497. char _tmp1718[0x100]; \
  1498. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1499. _add_set_device_option(__func__, _tmp1718); \
  1500. }while(0)
  1501. char *set_temp_cutoff(char *arg)
  1502. {
  1503. if (strchr(arg, ','))
  1504. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1505. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1506. add_set_device_option("all:temp-cutoff=%s", arg);
  1507. return NULL;
  1508. }
  1509. char *set_temp_target(char *arg)
  1510. {
  1511. if (strchr(arg, ','))
  1512. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1513. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1514. add_set_device_option("all:temp-target=%s", arg);
  1515. return NULL;
  1516. }
  1517. #ifdef HAVE_OPENCL
  1518. static
  1519. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1520. {
  1521. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1522. add_set_device_option("OCL:binary=no");
  1523. return NULL;
  1524. }
  1525. #endif
  1526. static
  1527. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1528. {
  1529. opt_disable_client_reconnect = true;
  1530. want_stratum = false;
  1531. return NULL;
  1532. }
  1533. static char *set_api_allow(const char *arg)
  1534. {
  1535. opt_set_charp(arg, &opt_api_allow);
  1536. return NULL;
  1537. }
  1538. static char *set_api_groups(const char *arg)
  1539. {
  1540. opt_set_charp(arg, &opt_api_groups);
  1541. return NULL;
  1542. }
  1543. static char *set_api_description(const char *arg)
  1544. {
  1545. opt_set_charp(arg, &opt_api_description);
  1546. return NULL;
  1547. }
  1548. static char *set_api_mcast_des(const char *arg)
  1549. {
  1550. opt_set_charp(arg, &opt_api_mcast_des);
  1551. return NULL;
  1552. }
  1553. #ifdef USE_ICARUS
  1554. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1555. static char *set_icarus_options(const char *arg)
  1556. {
  1557. if (strchr(arg, ','))
  1558. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1559. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1560. char *opts = strdup(arg), *argdup;
  1561. argdup = opts;
  1562. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1563. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1564. char *saveptr, *opt;
  1565. for (int i = 0; i < 4; ++i, ++sdf)
  1566. {
  1567. opt = strtok_r(opts, ":", &saveptr);
  1568. opts = NULL;
  1569. if (!opt)
  1570. break;
  1571. if (!opt[0])
  1572. continue;
  1573. for (int j = 0; j < 4; ++j)
  1574. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1575. }
  1576. free(argdup);
  1577. return NULL;
  1578. }
  1579. static char *set_icarus_timing(const char *arg)
  1580. {
  1581. if (strchr(arg, ','))
  1582. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1583. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1584. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1585. for (int j = 0; j < 4; ++j)
  1586. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1587. return NULL;
  1588. }
  1589. #endif
  1590. #ifdef USE_AVALON
  1591. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1592. static char *set_avalon_options(const char *arg)
  1593. {
  1594. if (strchr(arg, ','))
  1595. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1596. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1597. char *opts = strdup(arg), *argdup;
  1598. argdup = opts;
  1599. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1600. char *saveptr, *opt;
  1601. for (int i = 0; i < 5; ++i, ++sdf)
  1602. {
  1603. opt = strtok_r(opts, ":", &saveptr);
  1604. opts = NULL;
  1605. if (!opt)
  1606. break;
  1607. if (!opt[0])
  1608. continue;
  1609. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1610. }
  1611. free(argdup);
  1612. return NULL;
  1613. }
  1614. #endif
  1615. #ifdef USE_KLONDIKE
  1616. static char *set_klondike_options(const char *arg)
  1617. {
  1618. int hashclock;
  1619. double temptarget;
  1620. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1621. {
  1622. default:
  1623. return "Unrecognised --klondike-options";
  1624. case 2:
  1625. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1626. // fallthru
  1627. case 1:
  1628. add_set_device_option("klondike:clock=%d", hashclock);
  1629. }
  1630. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1631. return NULL;
  1632. }
  1633. #endif
  1634. __maybe_unused
  1635. static char *set_null(const char __maybe_unused *arg)
  1636. {
  1637. return NULL;
  1638. }
  1639. /* These options are available from config file or commandline */
  1640. static struct opt_table opt_config_table[] = {
  1641. #ifdef WANT_CPUMINE
  1642. OPT_WITH_ARG("--algo",
  1643. set_algo, show_algo, &opt_algo,
  1644. "Specify sha256 implementation for CPU mining:\n"
  1645. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1646. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1647. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1648. #ifdef WANT_SSE2_4WAY
  1649. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1650. #endif
  1651. #ifdef WANT_VIA_PADLOCK
  1652. "\n\tvia\t\tVIA padlock implementation"
  1653. #endif
  1654. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1655. #ifdef WANT_CRYPTOPP_ASM32
  1656. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1657. #endif
  1658. #ifdef WANT_X8632_SSE2
  1659. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1660. #endif
  1661. #ifdef WANT_X8664_SSE2
  1662. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1663. #endif
  1664. #ifdef WANT_X8664_SSE4
  1665. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1666. #endif
  1667. #ifdef WANT_ALTIVEC_4WAY
  1668. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1669. #endif
  1670. ),
  1671. OPT_WITH_ARG("-a",
  1672. set_algo, show_algo, &opt_algo,
  1673. opt_hidden),
  1674. #endif
  1675. OPT_WITH_ARG("--api-allow",
  1676. set_api_allow, NULL, NULL,
  1677. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1678. OPT_WITH_ARG("--api-description",
  1679. set_api_description, NULL, NULL,
  1680. "Description placed in the API status header, default: BFGMiner version"),
  1681. OPT_WITH_ARG("--api-groups",
  1682. set_api_groups, NULL, NULL,
  1683. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1684. OPT_WITHOUT_ARG("--api-listen",
  1685. opt_set_bool, &opt_api_listen,
  1686. "Enable API, default: disabled"),
  1687. OPT_WITHOUT_ARG("--api-mcast",
  1688. opt_set_bool, &opt_api_mcast,
  1689. "Enable API Multicast listener, default: disabled"),
  1690. OPT_WITH_ARG("--api-mcast-addr",
  1691. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1692. "API Multicast listen address"),
  1693. OPT_WITH_ARG("--api-mcast-code",
  1694. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1695. "Code expected in the API Multicast message, don't use '-'"),
  1696. OPT_WITH_ARG("--api-mcast-des",
  1697. set_api_mcast_des, NULL, NULL,
  1698. "Description appended to the API Multicast reply, default: ''"),
  1699. OPT_WITH_ARG("--api-mcast-port",
  1700. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1701. "API Multicast listen port"),
  1702. OPT_WITHOUT_ARG("--api-network",
  1703. opt_set_bool, &opt_api_network,
  1704. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1705. OPT_WITH_ARG("--api-port",
  1706. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1707. "Port number of miner API"),
  1708. #ifdef HAVE_ADL
  1709. OPT_WITHOUT_ARG("--auto-fan",
  1710. opt_set_bool, &opt_autofan,
  1711. opt_hidden),
  1712. OPT_WITHOUT_ARG("--auto-gpu",
  1713. opt_set_bool, &opt_autoengine,
  1714. opt_hidden),
  1715. #endif
  1716. OPT_WITHOUT_ARG("--balance",
  1717. set_balance, &pool_strategy,
  1718. "Change multipool strategy from failover to even share balance"),
  1719. OPT_WITHOUT_ARG("--benchmark",
  1720. opt_set_bool, &opt_benchmark,
  1721. "Run BFGMiner in benchmark mode - produces no shares"),
  1722. #if defined(USE_BITFORCE)
  1723. OPT_WITHOUT_ARG("--bfl-range",
  1724. opt_set_bool, &opt_bfl_noncerange,
  1725. "Use nonce range on bitforce devices if supported"),
  1726. #endif
  1727. #ifdef HAVE_CHROOT
  1728. OPT_WITH_ARG("--chroot-dir",
  1729. opt_set_charp, NULL, &chroot_dir,
  1730. "Chroot to a directory right after startup"),
  1731. #endif
  1732. OPT_WITH_ARG("--cmd-idle",
  1733. opt_set_charp, NULL, &cmd_idle,
  1734. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1735. OPT_WITH_ARG("--cmd-sick",
  1736. opt_set_charp, NULL, &cmd_sick,
  1737. "Execute a command when a device is declared sick"),
  1738. OPT_WITH_ARG("--cmd-dead",
  1739. opt_set_charp, NULL, &cmd_dead,
  1740. "Execute a command when a device is declared dead"),
  1741. #if BLKMAKER_VERSION > 1
  1742. OPT_WITH_ARG("--coinbase-addr",
  1743. set_b58addr, NULL, &opt_coinbase_script,
  1744. "Set coinbase payout address for solo mining"),
  1745. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1746. set_b58addr, NULL, &opt_coinbase_script,
  1747. opt_hidden),
  1748. #endif
  1749. #if BLKMAKER_VERSION > 0
  1750. OPT_WITH_ARG("--coinbase-sig",
  1751. set_strdup, NULL, &opt_coinbase_sig,
  1752. "Set coinbase signature when possible"),
  1753. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1754. set_strdup, NULL, &opt_coinbase_sig,
  1755. opt_hidden),
  1756. #endif
  1757. #ifdef HAVE_CURSES
  1758. OPT_WITHOUT_ARG("--compact",
  1759. opt_set_bool, &opt_compact,
  1760. "Use compact display without per device statistics"),
  1761. #endif
  1762. #ifdef WANT_CPUMINE
  1763. OPT_WITH_ARG("--cpu-threads",
  1764. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1765. "Number of miner CPU threads"),
  1766. OPT_WITH_ARG("-t",
  1767. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1768. opt_hidden),
  1769. #endif
  1770. OPT_WITHOUT_ARG("--debug|-D",
  1771. enable_debug, &opt_debug,
  1772. "Enable debug output"),
  1773. OPT_WITHOUT_ARG("--debuglog",
  1774. opt_set_bool, &opt_debug,
  1775. "Enable debug logging"),
  1776. OPT_WITHOUT_ARG("--device-protocol-dump",
  1777. opt_set_bool, &opt_dev_protocol,
  1778. "Verbose dump of device protocol-level activities"),
  1779. OPT_WITH_ARG("--device|-d",
  1780. set_devices, NULL, NULL,
  1781. "Enable only devices matching pattern (default: all)"),
  1782. OPT_WITHOUT_ARG("--disable-rejecting",
  1783. opt_set_bool, &opt_disable_pool,
  1784. "Automatically disable pools that continually reject shares"),
  1785. #ifdef USE_LIBMICROHTTPD
  1786. OPT_WITH_ARG("--http-port",
  1787. opt_set_intval, opt_show_intval, &httpsrv_port,
  1788. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1789. #endif
  1790. OPT_WITH_ARG("--expiry",
  1791. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1792. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1793. OPT_WITH_ARG("-E",
  1794. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1795. opt_hidden),
  1796. OPT_WITH_ARG("--expiry-lp",
  1797. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1798. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1799. OPT_WITHOUT_ARG("--failover-only",
  1800. opt_set_bool, &opt_fail_only,
  1801. "Don't leak work to backup pools when primary pool is lagging"),
  1802. #ifdef USE_FPGA
  1803. OPT_WITHOUT_ARG("--force-dev-init",
  1804. opt_set_bool, &opt_force_dev_init,
  1805. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1806. #endif
  1807. #ifdef HAVE_OPENCL
  1808. OPT_WITH_ARG("--gpu-dyninterval",
  1809. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1810. opt_hidden),
  1811. OPT_WITH_ARG("--gpu-platform",
  1812. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1813. "Select OpenCL platform ID to use for GPU mining"),
  1814. OPT_WITH_ARG("--gpu-threads|-g",
  1815. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1816. opt_hidden),
  1817. #ifdef HAVE_ADL
  1818. OPT_WITH_ARG("--gpu-engine",
  1819. set_gpu_engine, NULL, NULL,
  1820. opt_hidden),
  1821. OPT_WITH_ARG("--gpu-fan",
  1822. set_gpu_fan, NULL, NULL,
  1823. opt_hidden),
  1824. OPT_WITH_ARG("--gpu-map",
  1825. set_gpu_map, NULL, NULL,
  1826. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1827. OPT_WITH_ARG("--gpu-memclock",
  1828. set_gpu_memclock, NULL, NULL,
  1829. opt_hidden),
  1830. OPT_WITH_ARG("--gpu-memdiff",
  1831. set_gpu_memdiff, NULL, NULL,
  1832. opt_hidden),
  1833. OPT_WITH_ARG("--gpu-powertune",
  1834. set_gpu_powertune, NULL, NULL,
  1835. opt_hidden),
  1836. OPT_WITHOUT_ARG("--gpu-reorder",
  1837. opt_set_bool, &opt_reorder,
  1838. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1839. OPT_WITH_ARG("--gpu-vddc",
  1840. set_gpu_vddc, NULL, NULL,
  1841. opt_hidden),
  1842. #endif
  1843. #ifdef USE_SCRYPT
  1844. OPT_WITH_ARG("--lookup-gap",
  1845. set_lookup_gap, NULL, NULL,
  1846. opt_hidden),
  1847. #endif
  1848. OPT_WITH_ARG("--intensity|-I",
  1849. set_intensity, NULL, NULL,
  1850. opt_hidden),
  1851. #endif
  1852. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1853. OPT_WITH_ARG("--kernel-path",
  1854. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1855. "Specify a path to where bitstream and kernel files are"),
  1856. OPT_WITH_ARG("-K",
  1857. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1858. opt_hidden),
  1859. #endif
  1860. #ifdef HAVE_OPENCL
  1861. OPT_WITH_ARG("--kernel|-k",
  1862. set_kernel, NULL, NULL,
  1863. opt_hidden),
  1864. #endif
  1865. #ifdef USE_ICARUS
  1866. OPT_WITH_ARG("--icarus-options",
  1867. set_icarus_options, NULL, NULL,
  1868. opt_hidden),
  1869. OPT_WITH_ARG("--icarus-timing",
  1870. set_icarus_timing, NULL, NULL,
  1871. opt_hidden),
  1872. #endif
  1873. #ifdef USE_AVALON
  1874. OPT_WITH_ARG("--avalon-options",
  1875. set_avalon_options, NULL, NULL,
  1876. opt_hidden),
  1877. #endif
  1878. #ifdef USE_KLONDIKE
  1879. OPT_WITH_ARG("--klondike-options",
  1880. set_klondike_options, NULL, NULL,
  1881. "Set klondike options clock:temptarget"),
  1882. #endif
  1883. OPT_WITHOUT_ARG("--load-balance",
  1884. set_loadbalance, &pool_strategy,
  1885. "Change multipool strategy from failover to quota based balance"),
  1886. OPT_WITH_ARG("--log|-l",
  1887. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1888. "Interval in seconds between log output"),
  1889. OPT_WITH_ARG("--log-file|-L",
  1890. set_log_file, NULL, NULL,
  1891. "Append log file for output messages"),
  1892. OPT_WITH_ARG("--logfile",
  1893. set_log_file, NULL, NULL,
  1894. opt_hidden),
  1895. OPT_WITHOUT_ARG("--log-microseconds",
  1896. opt_set_bool, &opt_log_microseconds,
  1897. "Include microseconds in log output"),
  1898. #if defined(unix) || defined(__APPLE__)
  1899. OPT_WITH_ARG("--monitor|-m",
  1900. opt_set_charp, NULL, &opt_stderr_cmd,
  1901. "Use custom pipe cmd for output messages"),
  1902. #endif // defined(unix)
  1903. OPT_WITHOUT_ARG("--net-delay",
  1904. opt_set_bool, &opt_delaynet,
  1905. "Impose small delays in networking to avoid overloading slow routers"),
  1906. OPT_WITHOUT_ARG("--no-adl",
  1907. opt_set_bool, &opt_noadl,
  1908. #ifdef HAVE_ADL
  1909. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1910. #else
  1911. opt_hidden
  1912. #endif
  1913. ),
  1914. OPT_WITHOUT_ARG("--no-gbt",
  1915. opt_set_invbool, &want_gbt,
  1916. "Disable getblocktemplate support"),
  1917. OPT_WITHOUT_ARG("--no-getwork",
  1918. opt_set_invbool, &want_getwork,
  1919. "Disable getwork support"),
  1920. OPT_WITHOUT_ARG("--no-hotplug",
  1921. #ifdef HAVE_BFG_HOTPLUG
  1922. opt_set_invbool, &opt_hotplug,
  1923. "Disable hotplug detection"
  1924. #else
  1925. set_null, &opt_hotplug,
  1926. opt_hidden
  1927. #endif
  1928. ),
  1929. OPT_WITHOUT_ARG("--no-longpoll",
  1930. opt_set_invbool, &want_longpoll,
  1931. "Disable X-Long-Polling support"),
  1932. OPT_WITHOUT_ARG("--no-pool-disable",
  1933. opt_set_invbool, &opt_disable_pool,
  1934. opt_hidden),
  1935. OPT_WITHOUT_ARG("--no-client-reconnect",
  1936. opt_set_invbool, &opt_disable_client_reconnect,
  1937. opt_hidden),
  1938. OPT_WITHOUT_ARG("--no-pool-redirect",
  1939. disable_pool_redirect, NULL,
  1940. "Ignore pool requests to redirect to another server"),
  1941. OPT_WITHOUT_ARG("--no-restart",
  1942. opt_set_invbool, &opt_restart,
  1943. "Do not attempt to restart devices that hang"
  1944. ),
  1945. OPT_WITHOUT_ARG("--no-show-processors",
  1946. opt_set_invbool, &opt_show_procs,
  1947. opt_hidden),
  1948. OPT_WITHOUT_ARG("--no-show-procs",
  1949. opt_set_invbool, &opt_show_procs,
  1950. opt_hidden),
  1951. OPT_WITHOUT_ARG("--no-stratum",
  1952. opt_set_invbool, &want_stratum,
  1953. "Disable Stratum detection"),
  1954. OPT_WITHOUT_ARG("--no-submit-stale",
  1955. opt_set_invbool, &opt_submit_stale,
  1956. "Don't submit shares if they are detected as stale"),
  1957. #ifdef HAVE_OPENCL
  1958. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1959. set_no_opencl_binaries, NULL,
  1960. opt_hidden),
  1961. #endif
  1962. OPT_WITHOUT_ARG("--no-unicode",
  1963. #ifdef USE_UNICODE
  1964. opt_set_invbool, &use_unicode,
  1965. "Don't use Unicode characters in TUI"
  1966. #else
  1967. set_null, &use_unicode,
  1968. opt_hidden
  1969. #endif
  1970. ),
  1971. OPT_WITH_ARG("--noncelog",
  1972. set_noncelog, NULL, NULL,
  1973. "Create log of all nonces found"),
  1974. OPT_WITH_ARG("--pass|-p",
  1975. set_pass, NULL, NULL,
  1976. "Password for bitcoin JSON-RPC server"),
  1977. OPT_WITHOUT_ARG("--per-device-stats",
  1978. opt_set_bool, &want_per_device_stats,
  1979. "Force verbose mode and output per-device statistics"),
  1980. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1981. set_userpass, NULL, NULL,
  1982. opt_hidden),
  1983. OPT_WITH_ARG("--pool-priority",
  1984. set_pool_priority, NULL, NULL,
  1985. "Priority for just the previous-defined pool"),
  1986. OPT_WITH_ARG("--pool-proxy|-x",
  1987. set_pool_proxy, NULL, NULL,
  1988. "Proxy URI to use for connecting to just the previous-defined pool"),
  1989. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1990. set_pool_force_rollntime, NULL, NULL,
  1991. opt_hidden),
  1992. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1993. opt_set_bool, &opt_protocol,
  1994. "Verbose dump of protocol-level activities"),
  1995. OPT_WITH_ARG("--queue|-Q",
  1996. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1997. "Minimum number of work items to have queued (0+)"),
  1998. OPT_WITHOUT_ARG("--quiet|-q",
  1999. opt_set_bool, &opt_quiet,
  2000. "Disable logging output, display status and errors"),
  2001. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2002. opt_set_bool, &opt_quiet_work_updates,
  2003. opt_hidden),
  2004. OPT_WITH_ARG("--quit-summary",
  2005. set_quit_summary, NULL, NULL,
  2006. "Summary printed when you quit: none/devs/procs/detailed"),
  2007. OPT_WITH_ARG("--quota|-U",
  2008. set_quota, NULL, NULL,
  2009. "quota;URL combination for server with load-balance strategy quotas"),
  2010. OPT_WITHOUT_ARG("--real-quiet",
  2011. opt_set_bool, &opt_realquiet,
  2012. "Disable all output"),
  2013. OPT_WITH_ARG("--request-diff",
  2014. set_request_diff, opt_show_floatval, &request_pdiff,
  2015. "Request a specific difficulty from pools"),
  2016. OPT_WITH_ARG("--retries",
  2017. opt_set_intval, opt_show_intval, &opt_retries,
  2018. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2019. OPT_WITH_ARG("--retry-pause",
  2020. set_null, NULL, NULL,
  2021. opt_hidden),
  2022. OPT_WITH_ARG("--rotate",
  2023. set_rotate, opt_show_intval, &opt_rotate_period,
  2024. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2025. OPT_WITHOUT_ARG("--round-robin",
  2026. set_rr, &pool_strategy,
  2027. "Change multipool strategy from failover to round robin on failure"),
  2028. OPT_WITH_ARG("--scan|-S",
  2029. add_serial, NULL, NULL,
  2030. "Configure how to scan for mining devices"),
  2031. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2032. add_serial, NULL, NULL,
  2033. opt_hidden),
  2034. OPT_WITH_ARG("--scan-time",
  2035. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2036. "Upper bound on time spent scanning current work, in seconds"),
  2037. OPT_WITH_ARG("-s",
  2038. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2039. opt_hidden),
  2040. OPT_WITH_ARG("--scantime",
  2041. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2042. opt_hidden),
  2043. OPT_WITH_ARG("--sched-start",
  2044. set_schedtime, NULL, &schedstart,
  2045. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2046. OPT_WITH_ARG("--sched-stop",
  2047. set_schedtime, NULL, &schedstop,
  2048. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2049. #ifdef USE_SCRYPT
  2050. OPT_WITHOUT_ARG("--scrypt",
  2051. opt_set_bool, &opt_scrypt,
  2052. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2053. #endif
  2054. OPT_WITH_ARG("--set-device|--set",
  2055. opt_string_elist_add, NULL, &opt_set_device_list,
  2056. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2057. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2058. OPT_WITH_ARG("--shaders",
  2059. set_shaders, NULL, NULL,
  2060. opt_hidden),
  2061. #endif
  2062. #ifdef HAVE_PWD_H
  2063. OPT_WITH_ARG("--setuid",
  2064. opt_set_charp, NULL, &opt_setuid,
  2065. "Username of an unprivileged user to run as"),
  2066. #endif
  2067. OPT_WITH_ARG("--sharelog",
  2068. set_sharelog, NULL, NULL,
  2069. "Append share log to file"),
  2070. OPT_WITH_ARG("--shares",
  2071. opt_set_floatval, NULL, &opt_shares,
  2072. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2073. OPT_WITHOUT_ARG("--show-processors",
  2074. opt_set_bool, &opt_show_procs,
  2075. "Show per processor statistics in summary"),
  2076. OPT_WITHOUT_ARG("--show-procs",
  2077. opt_set_bool, &opt_show_procs,
  2078. opt_hidden),
  2079. OPT_WITH_ARG("--skip-security-checks",
  2080. set_int_0_to_9999, NULL, &opt_skip_checks,
  2081. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2082. OPT_WITH_ARG("--socks-proxy",
  2083. opt_set_charp, NULL, &opt_socks_proxy,
  2084. "Set socks proxy (host:port)"),
  2085. #ifdef USE_LIBEVENT
  2086. OPT_WITH_ARG("--stratum-port",
  2087. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2088. "Port number to listen on for stratum miners (-1 means disabled)"),
  2089. #endif
  2090. OPT_WITHOUT_ARG("--submit-stale",
  2091. opt_set_bool, &opt_submit_stale,
  2092. opt_hidden),
  2093. OPT_WITH_ARG("--submit-threads",
  2094. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2095. "Minimum number of concurrent share submissions (default: 64)"),
  2096. #ifdef HAVE_SYSLOG_H
  2097. OPT_WITHOUT_ARG("--syslog",
  2098. opt_set_bool, &use_syslog,
  2099. "Use system log for output messages (default: standard error)"),
  2100. #endif
  2101. OPT_WITH_ARG("--temp-cutoff",
  2102. set_temp_cutoff, NULL, &opt_cutofftemp,
  2103. opt_hidden),
  2104. OPT_WITH_ARG("--temp-hysteresis",
  2105. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2106. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2107. #ifdef HAVE_ADL
  2108. OPT_WITH_ARG("--temp-overheat",
  2109. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2110. opt_hidden),
  2111. #endif
  2112. OPT_WITH_ARG("--temp-target",
  2113. set_temp_target, NULL, NULL,
  2114. opt_hidden),
  2115. OPT_WITHOUT_ARG("--text-only|-T",
  2116. opt_set_invbool, &use_curses,
  2117. #ifdef HAVE_CURSES
  2118. "Disable ncurses formatted screen output"
  2119. #else
  2120. opt_hidden
  2121. #endif
  2122. ),
  2123. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2124. OPT_WITH_ARG("--thread-concurrency",
  2125. set_thread_concurrency, NULL, NULL,
  2126. opt_hidden),
  2127. #endif
  2128. #ifdef USE_UNICODE
  2129. OPT_WITHOUT_ARG("--unicode",
  2130. opt_set_bool, &use_unicode,
  2131. "Use Unicode characters in TUI"),
  2132. #endif
  2133. OPT_WITH_ARG("--url|-o",
  2134. set_url, NULL, NULL,
  2135. "URL for bitcoin JSON-RPC server"),
  2136. OPT_WITH_ARG("--user|-u",
  2137. set_user, NULL, NULL,
  2138. "Username for bitcoin JSON-RPC server"),
  2139. #ifdef HAVE_OPENCL
  2140. OPT_WITH_ARG("--vectors|-v",
  2141. set_vector, NULL, NULL,
  2142. opt_hidden),
  2143. #endif
  2144. OPT_WITHOUT_ARG("--verbose",
  2145. opt_set_bool, &opt_log_output,
  2146. "Log verbose output to stderr as well as status output"),
  2147. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2148. opt_set_invbool, &opt_quiet_work_updates,
  2149. opt_hidden),
  2150. OPT_WITHOUT_ARG("--weighed-stats",
  2151. opt_set_bool, &opt_weighed_stats,
  2152. "Display statistics weighed to difficulty 1"),
  2153. #ifdef HAVE_OPENCL
  2154. OPT_WITH_ARG("--worksize|-w",
  2155. set_worksize, NULL, NULL,
  2156. opt_hidden),
  2157. #endif
  2158. OPT_WITHOUT_ARG("--unittest",
  2159. opt_set_bool, &opt_unittest, opt_hidden),
  2160. OPT_WITH_ARG("--userpass|-O",
  2161. set_userpass, NULL, NULL,
  2162. "Username:Password pair for bitcoin JSON-RPC server"),
  2163. OPT_WITHOUT_ARG("--worktime",
  2164. opt_set_bool, &opt_worktime,
  2165. "Display extra work time debug information"),
  2166. OPT_WITH_ARG("--pools",
  2167. opt_set_bool, NULL, NULL, opt_hidden),
  2168. OPT_ENDTABLE
  2169. };
  2170. static char *load_config(const char *arg, void __maybe_unused *unused);
  2171. static int fileconf_load;
  2172. static char *parse_config(json_t *config, bool fileconf)
  2173. {
  2174. static char err_buf[200];
  2175. struct opt_table *opt;
  2176. json_t *val;
  2177. if (fileconf && !fileconf_load)
  2178. fileconf_load = 1;
  2179. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2180. char *p, *name, *sp;
  2181. /* We don't handle subtables. */
  2182. assert(!(opt->type & OPT_SUBTABLE));
  2183. if (!opt->names)
  2184. continue;
  2185. /* Pull apart the option name(s). */
  2186. name = strdup(opt->names);
  2187. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2188. char *err = "Invalid value";
  2189. /* Ignore short options. */
  2190. if (p[1] != '-')
  2191. continue;
  2192. val = json_object_get(config, p+2);
  2193. if (!val)
  2194. continue;
  2195. if (opt->type & OPT_HASARG) {
  2196. if (json_is_string(val)) {
  2197. err = opt->cb_arg(json_string_value(val),
  2198. opt->u.arg);
  2199. } else if (json_is_number(val)) {
  2200. char buf[256], *p, *q;
  2201. snprintf(buf, 256, "%f", json_number_value(val));
  2202. if ( (p = strchr(buf, '.')) ) {
  2203. // Trim /\.0*$/ to work properly with integer-only arguments
  2204. q = p;
  2205. while (*(++q) == '0') {}
  2206. if (*q == '\0')
  2207. *p = '\0';
  2208. }
  2209. err = opt->cb_arg(buf, opt->u.arg);
  2210. } else if (json_is_array(val)) {
  2211. int n, size = json_array_size(val);
  2212. err = NULL;
  2213. for (n = 0; n < size && !err; n++) {
  2214. if (json_is_string(json_array_get(val, n)))
  2215. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2216. else if (json_is_object(json_array_get(val, n)))
  2217. err = parse_config(json_array_get(val, n), false);
  2218. }
  2219. }
  2220. } else if (opt->type & OPT_NOARG) {
  2221. if (json_is_true(val))
  2222. err = opt->cb(opt->u.arg);
  2223. else if (json_is_boolean(val)) {
  2224. if (opt->cb == (void*)opt_set_bool)
  2225. err = opt_set_invbool(opt->u.arg);
  2226. else if (opt->cb == (void*)opt_set_invbool)
  2227. err = opt_set_bool(opt->u.arg);
  2228. }
  2229. }
  2230. if (err) {
  2231. /* Allow invalid values to be in configuration
  2232. * file, just skipping over them provided the
  2233. * JSON is still valid after that. */
  2234. if (fileconf) {
  2235. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2236. fileconf_load = -1;
  2237. } else {
  2238. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2239. p, err);
  2240. return err_buf;
  2241. }
  2242. }
  2243. }
  2244. free(name);
  2245. }
  2246. val = json_object_get(config, JSON_INCLUDE_CONF);
  2247. if (val && json_is_string(val))
  2248. return load_config(json_string_value(val), NULL);
  2249. return NULL;
  2250. }
  2251. char *cnfbuf = NULL;
  2252. static char *load_config(const char *arg, void __maybe_unused *unused)
  2253. {
  2254. json_error_t err;
  2255. json_t *config;
  2256. char *json_error;
  2257. size_t siz;
  2258. if (!cnfbuf)
  2259. cnfbuf = strdup(arg);
  2260. if (++include_count > JSON_MAX_DEPTH)
  2261. return JSON_MAX_DEPTH_ERR;
  2262. #if JANSSON_MAJOR_VERSION > 1
  2263. config = json_load_file(arg, 0, &err);
  2264. #else
  2265. config = json_load_file(arg, &err);
  2266. #endif
  2267. if (!json_is_object(config)) {
  2268. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2269. json_error = malloc(siz);
  2270. if (!json_error)
  2271. quit(1, "Malloc failure in json error");
  2272. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2273. return json_error;
  2274. }
  2275. config_loaded = true;
  2276. /* Parse the config now, so we can override it. That can keep pointers
  2277. * so don't free config object. */
  2278. return parse_config(config, true);
  2279. }
  2280. static void load_default_config(void)
  2281. {
  2282. cnfbuf = malloc(PATH_MAX);
  2283. #if defined(unix)
  2284. if (getenv("HOME") && *getenv("HOME")) {
  2285. strcpy(cnfbuf, getenv("HOME"));
  2286. strcat(cnfbuf, "/");
  2287. } else
  2288. strcpy(cnfbuf, "");
  2289. char *dirp = cnfbuf + strlen(cnfbuf);
  2290. strcpy(dirp, ".bfgminer/");
  2291. strcat(dirp, def_conf);
  2292. if (access(cnfbuf, R_OK))
  2293. // No BFGMiner config, try Cgminer's...
  2294. strcpy(dirp, ".cgminer/cgminer.conf");
  2295. #else
  2296. strcpy(cnfbuf, "");
  2297. strcat(cnfbuf, def_conf);
  2298. #endif
  2299. if (!access(cnfbuf, R_OK))
  2300. load_config(cnfbuf, NULL);
  2301. else {
  2302. free(cnfbuf);
  2303. cnfbuf = NULL;
  2304. }
  2305. }
  2306. extern const char *opt_argv0;
  2307. static char *opt_verusage_and_exit(const char *extra)
  2308. {
  2309. puts(packagename);
  2310. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2311. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2312. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2313. printf(" Options:%s\n", BFG_OPTLIST);
  2314. printf("%s", opt_usage(opt_argv0, extra));
  2315. fflush(stdout);
  2316. exit(0);
  2317. }
  2318. /* These options are parsed before anything else */
  2319. static struct opt_table opt_early_table[] = {
  2320. OPT_EARLY_WITH_ARG("--config|-c",
  2321. set_bool_ignore_arg, NULL, &config_loaded,
  2322. opt_hidden),
  2323. OPT_EARLY_WITHOUT_ARG("--no-config",
  2324. opt_set_bool, &config_loaded,
  2325. "Inhibit loading default config file"),
  2326. OPT_ENDTABLE
  2327. };
  2328. /* These options are available from commandline only */
  2329. static struct opt_table opt_cmdline_table[] = {
  2330. OPT_WITH_ARG("--config|-c",
  2331. load_config, NULL, NULL,
  2332. "Load a JSON-format configuration file\n"
  2333. "See example.conf for an example configuration."),
  2334. OPT_EARLY_WITHOUT_ARG("--no-config",
  2335. opt_set_bool, &config_loaded,
  2336. "Inhibit loading default config file"),
  2337. OPT_WITHOUT_ARG("--help|-h",
  2338. opt_verusage_and_exit, NULL,
  2339. "Print this message"),
  2340. #ifdef HAVE_OPENCL
  2341. OPT_WITHOUT_ARG("--ndevs|-n",
  2342. print_ndevs_and_exit, &nDevs,
  2343. opt_hidden),
  2344. #endif
  2345. OPT_WITHOUT_ARG("--version|-V",
  2346. opt_version_and_exit, packagename,
  2347. "Display version and exit"),
  2348. OPT_ENDTABLE
  2349. };
  2350. static bool jobj_binary(const json_t *obj, const char *key,
  2351. void *buf, size_t buflen, bool required)
  2352. {
  2353. const char *hexstr;
  2354. json_t *tmp;
  2355. tmp = json_object_get(obj, key);
  2356. if (unlikely(!tmp)) {
  2357. if (unlikely(required))
  2358. applog(LOG_ERR, "JSON key '%s' not found", key);
  2359. return false;
  2360. }
  2361. hexstr = json_string_value(tmp);
  2362. if (unlikely(!hexstr)) {
  2363. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2364. return false;
  2365. }
  2366. if (!hex2bin(buf, hexstr, buflen))
  2367. return false;
  2368. return true;
  2369. }
  2370. static void calc_midstate(struct work *work)
  2371. {
  2372. union {
  2373. unsigned char c[64];
  2374. uint32_t i[16];
  2375. } data;
  2376. swap32yes(&data.i[0], work->data, 16);
  2377. sha256_ctx ctx;
  2378. sha256_init(&ctx);
  2379. sha256_update(&ctx, data.c, 64);
  2380. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2381. swap32tole(work->midstate, work->midstate, 8);
  2382. }
  2383. static struct work *make_work(void)
  2384. {
  2385. struct work *work = calloc(1, sizeof(struct work));
  2386. if (unlikely(!work))
  2387. quit(1, "Failed to calloc work in make_work");
  2388. cg_wlock(&control_lock);
  2389. work->id = total_work++;
  2390. cg_wunlock(&control_lock);
  2391. return work;
  2392. }
  2393. /* This is the central place all work that is about to be retired should be
  2394. * cleaned to remove any dynamically allocated arrays within the struct */
  2395. void clean_work(struct work *work)
  2396. {
  2397. free(work->job_id);
  2398. bytes_free(&work->nonce2);
  2399. free(work->nonce1);
  2400. if (work->device_data_free_func)
  2401. work->device_data_free_func(work);
  2402. if (work->tmpl) {
  2403. struct pool *pool = work->pool;
  2404. mutex_lock(&pool->pool_lock);
  2405. bool free_tmpl = !--*work->tmpl_refcount;
  2406. mutex_unlock(&pool->pool_lock);
  2407. if (free_tmpl) {
  2408. blktmpl_free(work->tmpl);
  2409. free(work->tmpl_refcount);
  2410. }
  2411. }
  2412. memset(work, 0, sizeof(struct work));
  2413. }
  2414. /* All dynamically allocated work structs should be freed here to not leak any
  2415. * ram from arrays allocated within the work struct */
  2416. void free_work(struct work *work)
  2417. {
  2418. clean_work(work);
  2419. free(work);
  2420. }
  2421. 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";
  2422. // Must only be called with ch_lock held!
  2423. static
  2424. void __update_block_title(const unsigned char *hash_swap)
  2425. {
  2426. if (hash_swap) {
  2427. char tmp[17];
  2428. // Only provided when the block has actually changed
  2429. free(current_hash);
  2430. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2431. bin2hex(tmp, &hash_swap[24], 8);
  2432. memset(current_hash, '.', 3);
  2433. memcpy(&current_hash[3], tmp, 17);
  2434. known_blkheight_current = false;
  2435. } else if (likely(known_blkheight_current)) {
  2436. return;
  2437. }
  2438. if (current_block_id == known_blkheight_blkid) {
  2439. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2440. if (known_blkheight < 1000000) {
  2441. memmove(&current_hash[3], &current_hash[11], 8);
  2442. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2443. }
  2444. known_blkheight_current = true;
  2445. }
  2446. }
  2447. static
  2448. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2449. {
  2450. if (known_blkheight == blkheight)
  2451. return;
  2452. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2453. cg_wlock(&ch_lock);
  2454. known_blkheight = blkheight;
  2455. known_blkheight_blkid = block_id;
  2456. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2457. if (block_id == current_block_id)
  2458. __update_block_title(NULL);
  2459. cg_wunlock(&ch_lock);
  2460. }
  2461. static
  2462. void pool_set_opaque(struct pool *pool, bool opaque)
  2463. {
  2464. if (pool->swork.opaque == opaque)
  2465. return;
  2466. pool->swork.opaque = opaque;
  2467. if (opaque)
  2468. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2469. pool->pool_no);
  2470. else
  2471. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2472. pool->pool_no);
  2473. }
  2474. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2475. {
  2476. json_t *res_val = json_object_get(val, "result");
  2477. json_t *tmp_val;
  2478. bool ret = false;
  2479. if (unlikely(detect_algo == 1)) {
  2480. json_t *tmp = json_object_get(res_val, "algorithm");
  2481. const char *v = tmp ? json_string_value(tmp) : "";
  2482. if (strncasecmp(v, "scrypt", 6))
  2483. detect_algo = 2;
  2484. }
  2485. if (work->tmpl) {
  2486. struct timeval tv_now;
  2487. cgtime(&tv_now);
  2488. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2489. if (err) {
  2490. applog(LOG_ERR, "blktmpl error: %s", err);
  2491. return false;
  2492. }
  2493. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2494. #if BLKMAKER_VERSION > 1
  2495. if (opt_coinbase_script.sz)
  2496. {
  2497. bool newcb;
  2498. #if BLKMAKER_VERSION > 2
  2499. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2500. #else
  2501. newcb = !work->tmpl->cbtxn;
  2502. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2503. #endif
  2504. if (newcb)
  2505. {
  2506. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2507. if (ae < (ssize_t)sizeof(template_nonce))
  2508. 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);
  2509. ++template_nonce;
  2510. }
  2511. }
  2512. #endif
  2513. #if BLKMAKER_VERSION > 0
  2514. {
  2515. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2516. static bool appenderr = false;
  2517. if (ae <= 0) {
  2518. if (opt_coinbase_sig) {
  2519. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2520. appenderr = true;
  2521. }
  2522. } else if (ae >= 3 || opt_coinbase_sig) {
  2523. const char *cbappend = opt_coinbase_sig;
  2524. const char full[] = PACKAGE " " VERSION;
  2525. if (!cbappend) {
  2526. if ((size_t)ae >= sizeof(full) - 1)
  2527. cbappend = full;
  2528. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2529. cbappend = PACKAGE;
  2530. else
  2531. cbappend = "BFG";
  2532. }
  2533. size_t cbappendsz = strlen(cbappend);
  2534. static bool truncatewarning = false;
  2535. if (cbappendsz <= (size_t)ae) {
  2536. if (cbappendsz < (size_t)ae)
  2537. // If we have space, include the trailing \0
  2538. ++cbappendsz;
  2539. ae = cbappendsz;
  2540. truncatewarning = false;
  2541. } else {
  2542. char *tmp = malloc(ae + 1);
  2543. memcpy(tmp, opt_coinbase_sig, ae);
  2544. tmp[ae] = '\0';
  2545. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2546. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2547. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2548. free(tmp);
  2549. truncatewarning = true;
  2550. }
  2551. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2552. if (ae <= 0) {
  2553. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2554. appenderr = true;
  2555. } else
  2556. appenderr = false;
  2557. }
  2558. }
  2559. #endif
  2560. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2561. return false;
  2562. swap32yes(work->data, work->data, 80 / 4);
  2563. memcpy(&work->data[80], workpadding_bin, 48);
  2564. const struct blktmpl_longpoll_req *lp;
  2565. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2566. free(pool->lp_id);
  2567. pool->lp_id = strdup(lp->id);
  2568. #if 0 /* This just doesn't work :( */
  2569. curl_socket_t sock = pool->lp_socket;
  2570. if (sock != CURL_SOCKET_BAD) {
  2571. pool->lp_socket = CURL_SOCKET_BAD;
  2572. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2573. shutdown(sock, SHUT_RDWR);
  2574. }
  2575. #endif
  2576. }
  2577. }
  2578. else
  2579. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2580. applog(LOG_ERR, "JSON inval data");
  2581. return false;
  2582. }
  2583. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2584. // Calculate it ourselves
  2585. applog(LOG_DEBUG, "Calculating midstate locally");
  2586. calc_midstate(work);
  2587. }
  2588. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2589. applog(LOG_ERR, "JSON inval target");
  2590. return false;
  2591. }
  2592. if (work->tmpl) {
  2593. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2594. {
  2595. int p = (sizeof(work->target) - 1) - i;
  2596. unsigned char c = work->target[i];
  2597. work->target[i] = work->target[p];
  2598. work->target[p] = c;
  2599. }
  2600. }
  2601. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2602. uint32_t blkheight = json_number_value(tmp_val);
  2603. uint32_t block_id = ((uint32_t*)work->data)[1];
  2604. have_block_height(block_id, blkheight);
  2605. }
  2606. memset(work->hash, 0, sizeof(work->hash));
  2607. cgtime(&work->tv_staged);
  2608. pool_set_opaque(pool, !work->tmpl);
  2609. ret = true;
  2610. return ret;
  2611. }
  2612. /* Returns whether the pool supports local work generation or not. */
  2613. static bool pool_localgen(struct pool *pool)
  2614. {
  2615. return (pool->last_work_copy || pool->has_stratum);
  2616. }
  2617. int dev_from_id(int thr_id)
  2618. {
  2619. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2620. return cgpu->device_id;
  2621. }
  2622. /* Create an exponentially decaying average over the opt_log_interval */
  2623. void decay_time(double *f, double fadd, double fsecs)
  2624. {
  2625. double ftotal, fprop;
  2626. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2627. ftotal = 1.0 + fprop;
  2628. *f += (fadd * fprop);
  2629. *f /= ftotal;
  2630. }
  2631. static int __total_staged(void)
  2632. {
  2633. return HASH_COUNT(staged_work);
  2634. }
  2635. static int total_staged(void)
  2636. {
  2637. int ret;
  2638. mutex_lock(stgd_lock);
  2639. ret = __total_staged();
  2640. mutex_unlock(stgd_lock);
  2641. return ret;
  2642. }
  2643. #ifdef HAVE_CURSES
  2644. WINDOW *mainwin, *statuswin, *logwin;
  2645. #endif
  2646. double total_secs = 1.0;
  2647. static char statusline[256];
  2648. /* logstart is where the log window should start */
  2649. static int devcursor, logstart, logcursor;
  2650. #ifdef HAVE_CURSES
  2651. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2652. static int statusy;
  2653. static int devsummaryYOffset;
  2654. static int total_lines;
  2655. #endif
  2656. #ifdef HAVE_OPENCL
  2657. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2658. #endif
  2659. struct cgpu_info *cpus;
  2660. bool _bfg_console_cancel_disabled;
  2661. int _bfg_console_prev_cancelstate;
  2662. #ifdef HAVE_CURSES
  2663. #define lock_curses() bfg_console_lock()
  2664. #define unlock_curses() bfg_console_unlock()
  2665. static bool curses_active_locked(void)
  2666. {
  2667. bool ret;
  2668. lock_curses();
  2669. ret = curses_active;
  2670. if (!ret)
  2671. unlock_curses();
  2672. return ret;
  2673. }
  2674. // Cancellable getch
  2675. int my_cancellable_getch(void)
  2676. {
  2677. // This only works because the macro only hits direct getch() calls
  2678. typedef int (*real_getch_t)(void);
  2679. const real_getch_t real_getch = __real_getch;
  2680. int type, rv;
  2681. bool sct;
  2682. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2683. rv = real_getch();
  2684. if (sct)
  2685. pthread_setcanceltype(type, &type);
  2686. return rv;
  2687. }
  2688. #ifdef PDCURSES
  2689. static
  2690. int bfg_wresize(WINDOW *win, int lines, int columns)
  2691. {
  2692. int rv = wresize(win, lines, columns);
  2693. int x, y;
  2694. getyx(win, y, x);
  2695. if (unlikely(y >= lines || x >= columns))
  2696. {
  2697. if (y >= lines)
  2698. y = lines - 1;
  2699. if (x >= columns)
  2700. x = columns - 1;
  2701. wmove(win, y, x);
  2702. }
  2703. return rv;
  2704. }
  2705. #else
  2706. # define bfg_wresize wresize
  2707. #endif
  2708. #endif
  2709. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2710. {
  2711. va_list ap;
  2712. size_t presz = strlen(buf);
  2713. va_start(ap, fmt);
  2714. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2715. va_end(ap);
  2716. }
  2717. double stats_elapsed(struct cgminer_stats *stats)
  2718. {
  2719. struct timeval now;
  2720. double elapsed;
  2721. if (stats->start_tv.tv_sec == 0)
  2722. elapsed = total_secs;
  2723. else {
  2724. cgtime(&now);
  2725. elapsed = tdiff(&now, &stats->start_tv);
  2726. }
  2727. if (elapsed < 1.0)
  2728. elapsed = 1.0;
  2729. return elapsed;
  2730. }
  2731. bool drv_ready(struct cgpu_info *cgpu)
  2732. {
  2733. switch (cgpu->status) {
  2734. case LIFE_INIT:
  2735. case LIFE_DEAD2:
  2736. return false;
  2737. default:
  2738. return true;
  2739. }
  2740. }
  2741. double cgpu_utility(struct cgpu_info *cgpu)
  2742. {
  2743. double dev_runtime = cgpu_runtime(cgpu);
  2744. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2745. }
  2746. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2747. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2748. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2749. }while(0)
  2750. static float
  2751. utility_to_hashrate(double utility)
  2752. {
  2753. return utility * 0x4444444;
  2754. }
  2755. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2756. static const int _unitbase = 4;
  2757. static
  2758. void pick_unit(float hashrate, unsigned char *unit)
  2759. {
  2760. unsigned char i;
  2761. if (hashrate == 0)
  2762. {
  2763. if (*unit < _unitbase)
  2764. *unit = _unitbase;
  2765. return;
  2766. }
  2767. hashrate *= 1e12;
  2768. for (i = 0; i < *unit; ++i)
  2769. hashrate /= 1e3;
  2770. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2771. while (hashrate >= 999.95)
  2772. {
  2773. hashrate /= 1e3;
  2774. if (likely(_unitchar[*unit] != '?'))
  2775. ++*unit;
  2776. }
  2777. }
  2778. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2779. enum h2bs_fmt {
  2780. H2B_NOUNIT, // "xxx.x"
  2781. H2B_SHORT, // "xxx.xMH/s"
  2782. H2B_SPACED, // "xxx.x MH/s"
  2783. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2784. };
  2785. enum bfu_floatprec {
  2786. FUP_INTEGER,
  2787. FUP_HASHES,
  2788. FUP_BTC,
  2789. FUP_DIFF,
  2790. };
  2791. static
  2792. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2793. {
  2794. char *s = buf;
  2795. unsigned char prec, i, unit;
  2796. int rv = 0;
  2797. if (unitin == -1)
  2798. {
  2799. unit = 0;
  2800. hashrate_pick_unit(hashrate, &unit);
  2801. }
  2802. else
  2803. unit = unitin;
  2804. hashrate *= 1e12;
  2805. for (i = 0; i < unit; ++i)
  2806. hashrate /= 1000;
  2807. switch (fprec)
  2808. {
  2809. case FUP_HASHES:
  2810. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2811. if (hashrate >= 99.995 || unit < 6)
  2812. prec = 1;
  2813. else
  2814. prec = 2;
  2815. _SNP("%5.*f", prec, hashrate);
  2816. break;
  2817. case FUP_INTEGER:
  2818. _SNP("%3d", (int)hashrate);
  2819. break;
  2820. case FUP_BTC:
  2821. if (hashrate >= 99.995)
  2822. prec = 0;
  2823. else
  2824. prec = 2;
  2825. _SNP("%5.*f", prec, hashrate);
  2826. break;
  2827. case FUP_DIFF:
  2828. if (unit > _unitbase)
  2829. _SNP("%.3g", hashrate);
  2830. else
  2831. _SNP("%u", (unsigned int)hashrate);
  2832. }
  2833. if (fmt != H2B_NOUNIT)
  2834. {
  2835. char uc[3] = {_unitchar[unit], '\0'};
  2836. switch (fmt) {
  2837. case H2B_SPACED:
  2838. _SNP(" ");
  2839. default:
  2840. break;
  2841. case H2B_SHORTV:
  2842. if (isspace(uc[0]))
  2843. uc[0] = '\0';
  2844. }
  2845. if (uc[0] == '\xb5')
  2846. // Convert to UTF-8
  2847. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2848. _SNP("%s%s", uc, measurement);
  2849. }
  2850. return rv;
  2851. }
  2852. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2853. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2854. static
  2855. 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)
  2856. {
  2857. unsigned char unit = 0;
  2858. bool allzero = true;
  2859. int i;
  2860. size_t delimsz = 0;
  2861. char *buf = buflist[0];
  2862. size_t bufsz = bufszlist[0];
  2863. size_t itemwidth = (floatprec ? 5 : 3);
  2864. if (!isarray)
  2865. delimsz = strlen(delim);
  2866. for (i = 0; i < count; ++i)
  2867. if (numbers[i] != 0)
  2868. {
  2869. pick_unit(numbers[i], &unit);
  2870. allzero = false;
  2871. }
  2872. if (allzero)
  2873. unit = _unitbase;
  2874. --count;
  2875. for (i = 0; i < count; ++i)
  2876. {
  2877. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2878. if (isarray)
  2879. {
  2880. buf = buflist[i + 1];
  2881. bufsz = bufszlist[i + 1];
  2882. }
  2883. else
  2884. {
  2885. buf += itemwidth;
  2886. bufsz -= itemwidth;
  2887. if (delimsz > bufsz)
  2888. delimsz = bufsz;
  2889. memcpy(buf, delim, delimsz);
  2890. buf += delimsz;
  2891. bufsz -= delimsz;
  2892. }
  2893. }
  2894. // Last entry has the unit
  2895. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2896. return buflist[0];
  2897. }
  2898. #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)
  2899. #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)
  2900. static
  2901. int percentf3(char * const buf, size_t sz, double p, const double t)
  2902. {
  2903. char *s = buf;
  2904. int rv = 0;
  2905. if (!p)
  2906. _SNP("none");
  2907. else
  2908. if (t <= p)
  2909. _SNP("100%%");
  2910. else
  2911. {
  2912. p /= t;
  2913. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2914. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2915. else
  2916. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2917. _SNP("%.1f%%", p * 100); // "9.1%"
  2918. else
  2919. _SNP("%3.0f%%", p * 100); // " 99%"
  2920. }
  2921. return rv;
  2922. }
  2923. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2924. static
  2925. void test_decimal_width()
  2926. {
  2927. // The pipe character at end of each line should perfectly line up
  2928. char printbuf[512];
  2929. char testbuf1[64];
  2930. char testbuf2[64];
  2931. char testbuf3[64];
  2932. char testbuf4[64];
  2933. double testn;
  2934. int width;
  2935. int saved;
  2936. // Hotspots around 0.1 and 0.01
  2937. saved = -1;
  2938. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2939. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2940. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2941. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2942. if (unlikely((saved != -1) && (width != saved))) {
  2943. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2944. applog(LOG_ERR, "%s", printbuf);
  2945. }
  2946. saved = width;
  2947. }
  2948. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2949. saved = -1;
  2950. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2951. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2952. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2953. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2954. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2955. width = utf8_strlen(printbuf);
  2956. if (unlikely((saved != -1) && (width != saved))) {
  2957. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2958. applog(LOG_ERR, "%s", printbuf);
  2959. }
  2960. saved = width;
  2961. }
  2962. // Hotspot around unit transition boundary in pick_unit
  2963. saved = -1;
  2964. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2965. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2966. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2967. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2968. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2969. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2970. width = utf8_strlen(printbuf);
  2971. if (unlikely((saved != -1) && (width != saved))) {
  2972. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2973. applog(LOG_ERR, "%s", printbuf);
  2974. }
  2975. saved = width;
  2976. }
  2977. }
  2978. #ifdef HAVE_CURSES
  2979. static void adj_width(int var, int *length);
  2980. #endif
  2981. #ifdef HAVE_CURSES
  2982. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2983. static
  2984. 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)
  2985. {
  2986. char rejpcbuf[6];
  2987. char bnbuf[6];
  2988. adj_width(accepted, &awidth);
  2989. adj_width(rejected, &rwidth);
  2990. adj_width(stale, &swidth);
  2991. adj_width(hwerrs, &hwwidth);
  2992. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2993. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2994. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2995. cHr, aHr, uHr,
  2996. awidth, accepted,
  2997. rwidth, rejected,
  2998. swidth, stale,
  2999. rejpcbuf,
  3000. hwwidth, hwerrs,
  3001. bnbuf
  3002. );
  3003. }
  3004. static
  3005. const char *pool_proto_str(const struct pool * const pool)
  3006. {
  3007. if (pool->idle)
  3008. return "Dead ";
  3009. if (pool->has_stratum)
  3010. return "Strtm";
  3011. if (pool->lp_url && pool->proto != pool->lp_proto)
  3012. return "Mixed";
  3013. switch (pool->proto)
  3014. {
  3015. case PLP_GETBLOCKTEMPLATE:
  3016. return " GBT ";
  3017. case PLP_GETWORK:
  3018. return "GWork";
  3019. default:
  3020. return "Alive";
  3021. }
  3022. }
  3023. #endif
  3024. static inline
  3025. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3026. {
  3027. if (!(use_unicode && have_unicode_degrees))
  3028. maybe_unicode = false;
  3029. if (temp && *temp > 0.)
  3030. if (maybe_unicode)
  3031. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3032. else
  3033. snprintf(buf, bufsz, "%4.1fC", *temp);
  3034. else
  3035. {
  3036. if (temp)
  3037. snprintf(buf, bufsz, " ");
  3038. if (maybe_unicode)
  3039. tailsprintf(buf, bufsz, " ");
  3040. }
  3041. tailsprintf(buf, bufsz, " | ");
  3042. }
  3043. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3044. {
  3045. #ifndef HAVE_CURSES
  3046. assert(for_curses == false);
  3047. #endif
  3048. struct device_drv *drv = cgpu->drv;
  3049. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3050. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3051. char rejpcbuf[6];
  3052. char bnbuf[6];
  3053. double dev_runtime;
  3054. if (!opt_show_procs)
  3055. cgpu = cgpu->device;
  3056. dev_runtime = cgpu_runtime(cgpu);
  3057. double rolling, mhashes;
  3058. int accepted, rejected, stale;
  3059. double waccepted;
  3060. double wnotaccepted;
  3061. int hwerrs;
  3062. double bad_diff1, good_diff1;
  3063. rolling = mhashes = waccepted = wnotaccepted = 0;
  3064. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3065. {
  3066. struct cgpu_info *slave = cgpu;
  3067. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3068. {
  3069. slave->utility = slave->accepted / dev_runtime * 60;
  3070. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3071. rolling += slave->rolling;
  3072. mhashes += slave->total_mhashes;
  3073. if (opt_weighed_stats)
  3074. {
  3075. accepted += slave->diff_accepted;
  3076. rejected += slave->diff_rejected;
  3077. stale += slave->diff_stale;
  3078. }
  3079. else
  3080. {
  3081. accepted += slave->accepted;
  3082. rejected += slave->rejected;
  3083. stale += slave->stale;
  3084. }
  3085. waccepted += slave->diff_accepted;
  3086. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3087. hwerrs += slave->hw_errors;
  3088. bad_diff1 += slave->bad_diff1;
  3089. good_diff1 += slave->diff1;
  3090. if (opt_show_procs)
  3091. break;
  3092. }
  3093. }
  3094. double wtotal = (waccepted + wnotaccepted);
  3095. multi_format_unit_array2(
  3096. ((char*[]){cHr, aHr, uHr}),
  3097. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3098. true, "h/s", hashrate_style,
  3099. 3,
  3100. 1e6*rolling,
  3101. 1e6*mhashes / dev_runtime,
  3102. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3103. // Processor representation
  3104. #ifdef HAVE_CURSES
  3105. if (for_curses)
  3106. {
  3107. if (opt_show_procs)
  3108. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3109. else
  3110. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3111. }
  3112. else
  3113. #endif
  3114. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3115. if (include_serial_in_statline && cgpu->dev_serial)
  3116. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3117. if (unlikely(cgpu->status == LIFE_INIT))
  3118. {
  3119. tailsprintf(buf, bufsz, "Initializing...");
  3120. return;
  3121. }
  3122. {
  3123. const size_t bufln = strlen(buf);
  3124. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3125. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3126. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3127. else
  3128. {
  3129. float temp = cgpu->temp;
  3130. if (!opt_show_procs)
  3131. {
  3132. // Find the highest temperature of all processors
  3133. struct cgpu_info *proc = cgpu;
  3134. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3135. if (proc->temp > temp)
  3136. temp = proc->temp;
  3137. }
  3138. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3139. }
  3140. }
  3141. #ifdef HAVE_CURSES
  3142. if (for_curses)
  3143. {
  3144. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3145. const char *cHrStats;
  3146. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3147. bool all_dead = true, all_off = true, all_rdrv = true;
  3148. struct cgpu_info *proc = cgpu;
  3149. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3150. {
  3151. switch (cHrStatsI) {
  3152. default:
  3153. if (proc->status == LIFE_WAIT)
  3154. cHrStatsI = 5;
  3155. case 5:
  3156. if (proc->deven == DEV_RECOVER_ERR)
  3157. cHrStatsI = 4;
  3158. case 4:
  3159. if (proc->deven == DEV_RECOVER)
  3160. cHrStatsI = 3;
  3161. case 3:
  3162. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3163. {
  3164. cHrStatsI = 1;
  3165. all_off = false;
  3166. }
  3167. else
  3168. {
  3169. if (likely(proc->deven == DEV_ENABLED))
  3170. all_off = false;
  3171. if (proc->deven != DEV_RECOVER_DRV)
  3172. all_rdrv = false;
  3173. }
  3174. case 1:
  3175. break;
  3176. }
  3177. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3178. all_dead = false;
  3179. if (opt_show_procs)
  3180. break;
  3181. }
  3182. if (unlikely(all_dead))
  3183. cHrStatsI = 0;
  3184. else
  3185. if (unlikely(all_off))
  3186. cHrStatsI = 2;
  3187. cHrStats = cHrStatsOpt[cHrStatsI];
  3188. if (cHrStatsI == 2 && all_rdrv)
  3189. cHrStats = " RST ";
  3190. format_statline(buf, bufsz,
  3191. cHrStats,
  3192. aHr, uHr,
  3193. accepted, rejected, stale,
  3194. wnotaccepted, waccepted,
  3195. hwerrs,
  3196. bad_diff1, bad_diff1 + good_diff1);
  3197. }
  3198. else
  3199. #endif
  3200. {
  3201. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3202. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3203. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3204. opt_log_interval,
  3205. cHr, aHr, uHr,
  3206. accepted,
  3207. rejected,
  3208. stale,
  3209. rejpcbuf,
  3210. hwerrs,
  3211. bnbuf
  3212. );
  3213. }
  3214. }
  3215. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3216. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3217. static void text_print_status(int thr_id)
  3218. {
  3219. struct cgpu_info *cgpu;
  3220. char logline[256];
  3221. cgpu = get_thr_cgpu(thr_id);
  3222. if (cgpu) {
  3223. get_statline(logline, sizeof(logline), cgpu);
  3224. printf("%s\n", logline);
  3225. }
  3226. }
  3227. #ifdef HAVE_CURSES
  3228. static int attr_bad = A_BOLD;
  3229. #ifdef WIN32
  3230. #define swprintf snwprintf
  3231. #endif
  3232. static
  3233. void bfg_waddstr(WINDOW *win, const char *s)
  3234. {
  3235. const char *p = s;
  3236. int32_t w;
  3237. int wlen;
  3238. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3239. while (true)
  3240. {
  3241. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3242. {
  3243. // Printable ASCII
  3244. ++p;
  3245. }
  3246. if (p != s)
  3247. waddnstr(win, s, p - s);
  3248. w = utf8_decode(p, &wlen);
  3249. s = p += wlen;
  3250. switch(w)
  3251. {
  3252. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3253. case '\0':
  3254. return;
  3255. case 0xb5: // micro symbol
  3256. w = unicode_micro;
  3257. goto default_addch;
  3258. case 0xf000: // "bad" off
  3259. wattroff(win, attr_bad);
  3260. break;
  3261. case 0xf001: // "bad" on
  3262. wattron(win, attr_bad);
  3263. break;
  3264. #ifdef USE_UNICODE
  3265. case '|':
  3266. wadd_wch(win, WACS_VLINE);
  3267. break;
  3268. #endif
  3269. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3270. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3271. if (!use_unicode)
  3272. {
  3273. waddch(win, '-');
  3274. break;
  3275. }
  3276. #ifdef USE_UNICODE
  3277. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3278. break;
  3279. #endif
  3280. case 0x2022:
  3281. if (w > WCHAR_MAX || !iswprint(w))
  3282. w = '*';
  3283. default:
  3284. default_addch:
  3285. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3286. {
  3287. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3288. if (iswprint(REPLACEMENT_CHAR))
  3289. w = REPLACEMENT_CHAR;
  3290. else
  3291. #endif
  3292. w = '?';
  3293. }
  3294. {
  3295. #ifdef USE_UNICODE
  3296. wchar_t wbuf[0x10];
  3297. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3298. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3299. waddnwstr(win, wbuf, wbuflen);
  3300. #else
  3301. wprintw(win, "%lc", (wint_t)w);
  3302. #endif
  3303. }
  3304. }
  3305. }
  3306. }
  3307. static inline
  3308. void bfg_hline(WINDOW *win, int y)
  3309. {
  3310. int maxx, __maybe_unused maxy;
  3311. getmaxyx(win, maxy, maxx);
  3312. #ifdef USE_UNICODE
  3313. if (use_unicode)
  3314. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3315. else
  3316. #endif
  3317. mvwhline(win, y, 0, '-', maxx);
  3318. }
  3319. // Spaces until end of line, using current attributes (ie, not completely clear)
  3320. static
  3321. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3322. {
  3323. int x, maxx;
  3324. int __maybe_unused y;
  3325. getmaxyx(win, y, maxx);
  3326. getyx(win, y, x);
  3327. const int space_count = (maxx - x) - offset;
  3328. // Check for negative - terminal too narrow
  3329. if (space_count <= 0)
  3330. return;
  3331. char buf[space_count];
  3332. memset(buf, ' ', space_count);
  3333. waddnstr(win, buf, space_count);
  3334. }
  3335. static int menu_attr = A_REVERSE;
  3336. #define CURBUFSIZ 256
  3337. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3338. char tmp42[CURBUFSIZ]; \
  3339. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3340. wmove(win, y, x); \
  3341. bfg_waddstr(win, tmp42); \
  3342. } while (0)
  3343. #define cg_wprintw(win, fmt, ...) do { \
  3344. char tmp42[CURBUFSIZ]; \
  3345. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3346. bfg_waddstr(win, tmp42); \
  3347. } while (0)
  3348. static bool pool_unworkable(const struct pool *);
  3349. /* Must be called with curses mutex lock held and curses_active */
  3350. static void curses_print_status(const int ts)
  3351. {
  3352. struct pool *pool = currentpool;
  3353. struct timeval now, tv;
  3354. float efficiency;
  3355. double income;
  3356. int logdiv;
  3357. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3358. wattron(statuswin, attr_title);
  3359. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3360. timer_set_now(&now);
  3361. {
  3362. unsigned int days, hours;
  3363. div_t d;
  3364. timersub(&now, &miner_started, &tv);
  3365. d = div(tv.tv_sec, 86400);
  3366. days = d.quot;
  3367. d = div(d.rem, 3600);
  3368. hours = d.quot;
  3369. d = div(d.rem, 60);
  3370. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3371. , days
  3372. , (days == 1) ? ' ' : 's'
  3373. , hours
  3374. , d.quot
  3375. , d.rem
  3376. );
  3377. }
  3378. bfg_wspctoeol(statuswin, 0);
  3379. wattroff(statuswin, attr_title);
  3380. wattron(statuswin, menu_attr);
  3381. wmove(statuswin, 1, 0);
  3382. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3383. bfg_wspctoeol(statuswin, 14);
  3384. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3385. wattroff(statuswin, menu_attr);
  3386. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3387. char poolinfo[20], poolinfo2[20];
  3388. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3389. double lowdiff = DBL_MAX, highdiff = -1;
  3390. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3391. time_t oldest_work_restart = time(NULL) + 1;
  3392. struct pool *oldest_work_restart_pool = pools[0];
  3393. for (int i = 0; i < total_pools; ++i)
  3394. {
  3395. if (pool_unworkable(pools[i]))
  3396. continue;
  3397. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3398. pool = pools[i];
  3399. ++workable_pools;
  3400. if (poolinfooff < sizeof(poolinfo))
  3401. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3402. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3403. if (pool_stats->last_diff < lowdiff)
  3404. {
  3405. lowdiff = pool_stats->last_diff;
  3406. lowdiff_pool = pool;
  3407. }
  3408. if (pool_stats->last_diff > highdiff)
  3409. {
  3410. highdiff = pool_stats->last_diff;
  3411. highdiff_pool = pool;
  3412. }
  3413. if (oldest_work_restart >= pool->work_restart_time)
  3414. {
  3415. oldest_work_restart = pool->work_restart_time;
  3416. oldest_work_restart_pool = pool;
  3417. }
  3418. }
  3419. if (workable_pools == 1)
  3420. goto one_workable_pool;
  3421. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3422. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3423. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", sizeof(poolinfo2) - poolinfo2off - 5, poolinfo);
  3424. else
  3425. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", poolinfooff - 1, poolinfo, sizeof(poolinfo2), "");
  3426. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3427. poolinfo2,
  3428. lowdiff_pool->diff,
  3429. (lowdiff == highdiff) ? "" : "-",
  3430. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3431. have_longpoll ? '+' : '-',
  3432. oldest_work_restart_pool->work_restart_timestamp);
  3433. }
  3434. else
  3435. {
  3436. one_workable_pool: ;
  3437. char pooladdr[19];
  3438. {
  3439. const char *rawaddr = pool->sockaddr_url;
  3440. BFGINIT(rawaddr, pool->rpc_url);
  3441. size_t pooladdrlen = strlen(rawaddr);
  3442. if (pooladdrlen > 20)
  3443. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3444. else
  3445. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(sizeof(pooladdr) - 1), rawaddr);
  3446. }
  3447. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3448. pool->pool_no, pooladdr, pool->diff,
  3449. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3450. pool->work_restart_timestamp,
  3451. pool->rpc_user);
  3452. }
  3453. wclrtoeol(statuswin);
  3454. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3455. current_hash, block_diff, net_hashrate, blocktime);
  3456. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3457. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3458. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3459. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3460. ts,
  3461. total_go + total_ro,
  3462. new_blocks,
  3463. total_submitting,
  3464. multi_format_unit2(bwstr, sizeof(bwstr),
  3465. false, "B/s", H2B_SHORT, "/", 2,
  3466. (float)(total_bytes_rcvd / total_secs),
  3467. (float)(total_bytes_sent / total_secs)),
  3468. efficiency,
  3469. incomestr,
  3470. best_share);
  3471. wclrtoeol(statuswin);
  3472. mvwaddstr(statuswin, 5, 0, " ");
  3473. bfg_waddstr(statuswin, statusline);
  3474. wclrtoeol(statuswin);
  3475. logdiv = statusy - 1;
  3476. bfg_hline(statuswin, 6);
  3477. bfg_hline(statuswin, logdiv);
  3478. #ifdef USE_UNICODE
  3479. if (use_unicode)
  3480. {
  3481. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3482. if (opt_show_procs && !opt_compact)
  3483. ++offset; // proc letter
  3484. if (have_unicode_degrees)
  3485. ++offset; // degrees symbol
  3486. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3487. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3488. offset += 24; // hashrates etc
  3489. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3490. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3491. }
  3492. #endif
  3493. }
  3494. static void adj_width(int var, int *length)
  3495. {
  3496. if ((int)(log10(var) + 1) > *length)
  3497. (*length)++;
  3498. }
  3499. static int dev_width;
  3500. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3501. {
  3502. char logline[256];
  3503. int ypos;
  3504. if (opt_compact)
  3505. return;
  3506. /* Check this isn't out of the window size */
  3507. if (opt_show_procs)
  3508. ypos = cgpu->cgminer_id;
  3509. else
  3510. {
  3511. if (cgpu->proc_id)
  3512. return;
  3513. ypos = cgpu->device_line_id;
  3514. }
  3515. ypos += devsummaryYOffset;
  3516. if (ypos < 0)
  3517. return;
  3518. ypos += devcursor - 1;
  3519. if (ypos >= statusy - 1)
  3520. return;
  3521. if (wmove(statuswin, ypos, 0) == ERR)
  3522. return;
  3523. get_statline2(logline, sizeof(logline), cgpu, true);
  3524. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3525. wattron(statuswin, A_REVERSE);
  3526. bfg_waddstr(statuswin, logline);
  3527. wattroff(statuswin, A_REVERSE);
  3528. wclrtoeol(statuswin);
  3529. }
  3530. static
  3531. void _refresh_devstatus(const bool already_have_lock) {
  3532. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3533. int i;
  3534. if (unlikely(!total_devices))
  3535. {
  3536. const int ypos = devcursor - 1;
  3537. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3538. {
  3539. wattron(statuswin, attr_bad);
  3540. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3541. wclrtoeol(statuswin);
  3542. wattroff(statuswin, attr_bad);
  3543. }
  3544. }
  3545. for (i = 0; i < total_devices; i++)
  3546. curses_print_devstatus(get_devices(i));
  3547. touchwin(statuswin);
  3548. wrefresh(statuswin);
  3549. if (!already_have_lock)
  3550. unlock_curses();
  3551. }
  3552. }
  3553. #define refresh_devstatus() _refresh_devstatus(false)
  3554. #endif
  3555. static void print_status(int thr_id)
  3556. {
  3557. if (!curses_active)
  3558. text_print_status(thr_id);
  3559. }
  3560. #ifdef HAVE_CURSES
  3561. static
  3562. bool set_statusy(int maxy)
  3563. {
  3564. if (loginput_size)
  3565. {
  3566. maxy -= loginput_size;
  3567. if (maxy < 0)
  3568. maxy = 0;
  3569. }
  3570. if (logstart < maxy)
  3571. maxy = logstart;
  3572. if (statusy == maxy)
  3573. return false;
  3574. statusy = maxy;
  3575. logcursor = statusy;
  3576. return true;
  3577. }
  3578. /* Check for window resize. Called with curses mutex locked */
  3579. static inline void change_logwinsize(void)
  3580. {
  3581. int x, y, logx, logy;
  3582. getmaxyx(mainwin, y, x);
  3583. if (x < 80 || y < 25)
  3584. return;
  3585. if (y > statusy + 2 && statusy < logstart) {
  3586. set_statusy(y - 2);
  3587. mvwin(logwin, logcursor, 0);
  3588. bfg_wresize(statuswin, statusy, x);
  3589. }
  3590. y -= logcursor;
  3591. getmaxyx(logwin, logy, logx);
  3592. /* Detect screen size change */
  3593. if (x != logx || y != logy)
  3594. bfg_wresize(logwin, y, x);
  3595. }
  3596. static void check_winsizes(void)
  3597. {
  3598. if (!use_curses)
  3599. return;
  3600. if (curses_active_locked()) {
  3601. int y, x;
  3602. x = getmaxx(statuswin);
  3603. if (set_statusy(LINES - 2))
  3604. {
  3605. erase();
  3606. bfg_wresize(statuswin, statusy, x);
  3607. getmaxyx(mainwin, y, x);
  3608. y -= logcursor;
  3609. bfg_wresize(logwin, y, x);
  3610. mvwin(logwin, logcursor, 0);
  3611. }
  3612. unlock_curses();
  3613. }
  3614. }
  3615. static int device_line_id_count;
  3616. static void switch_logsize(void)
  3617. {
  3618. if (curses_active_locked()) {
  3619. if (opt_compact) {
  3620. logstart = devcursor - 1;
  3621. logcursor = logstart + 1;
  3622. } else {
  3623. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3624. logstart = devcursor + total_lines;
  3625. logcursor = logstart;
  3626. }
  3627. unlock_curses();
  3628. }
  3629. check_winsizes();
  3630. }
  3631. /* For mandatory printing when mutex is already locked */
  3632. void _wlog(const char *str)
  3633. {
  3634. static bool newline;
  3635. size_t end = strlen(str) - 1;
  3636. if (newline)
  3637. bfg_waddstr(logwin, "\n");
  3638. if (str[end] == '\n')
  3639. {
  3640. char *s;
  3641. newline = true;
  3642. s = alloca(end + 1);
  3643. memcpy(s, str, end);
  3644. s[end] = '\0';
  3645. str = s;
  3646. }
  3647. else
  3648. newline = false;
  3649. bfg_waddstr(logwin, str);
  3650. }
  3651. /* Mandatory printing */
  3652. void _wlogprint(const char *str)
  3653. {
  3654. if (curses_active_locked()) {
  3655. _wlog(str);
  3656. unlock_curses();
  3657. }
  3658. }
  3659. #endif
  3660. #ifdef HAVE_CURSES
  3661. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3662. {
  3663. bool high_prio;
  3664. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3665. if (curses_active)
  3666. {
  3667. if (!loginput_size || high_prio) {
  3668. wlog(" %s %s\n", datetime, str);
  3669. if (high_prio) {
  3670. touchwin(logwin);
  3671. wrefresh(logwin);
  3672. }
  3673. }
  3674. return true;
  3675. }
  3676. return false;
  3677. }
  3678. void clear_logwin(void)
  3679. {
  3680. if (curses_active_locked()) {
  3681. wclear(logwin);
  3682. unlock_curses();
  3683. }
  3684. }
  3685. void logwin_update(void)
  3686. {
  3687. if (curses_active_locked()) {
  3688. touchwin(logwin);
  3689. wrefresh(logwin);
  3690. unlock_curses();
  3691. }
  3692. }
  3693. #endif
  3694. static void enable_pool(struct pool *pool)
  3695. {
  3696. if (pool->enabled != POOL_ENABLED) {
  3697. enabled_pools++;
  3698. pool->enabled = POOL_ENABLED;
  3699. }
  3700. }
  3701. #ifdef HAVE_CURSES
  3702. static void disable_pool(struct pool *pool)
  3703. {
  3704. if (pool->enabled == POOL_ENABLED)
  3705. enabled_pools--;
  3706. pool->enabled = POOL_DISABLED;
  3707. }
  3708. #endif
  3709. static void reject_pool(struct pool *pool)
  3710. {
  3711. if (pool->enabled == POOL_ENABLED)
  3712. enabled_pools--;
  3713. pool->enabled = POOL_REJECTING;
  3714. }
  3715. static double share_diff(const struct work *);
  3716. static
  3717. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3718. struct cgpu_info *cgpu;
  3719. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3720. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3721. const double tgtdiff = work->work_difficulty;
  3722. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3723. char where[20];
  3724. cgpu = get_thr_cgpu(work->thr_id);
  3725. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3726. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3727. if (total_pools > 1)
  3728. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3729. else
  3730. where[0] = '\0';
  3731. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3732. disp,
  3733. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3734. cgpu->proc_repr,
  3735. where,
  3736. shrdiffdisp, tgtdiffdisp,
  3737. reason,
  3738. resubmit ? "(resubmit)" : "",
  3739. worktime
  3740. );
  3741. }
  3742. static bool test_work_current(struct work *);
  3743. static void _submit_work_async(struct work *);
  3744. static
  3745. void maybe_local_submit(const struct work *work)
  3746. {
  3747. #if BLKMAKER_VERSION > 3
  3748. if (unlikely(work->block && work->tmpl))
  3749. {
  3750. // This is a block with a full template (GBT)
  3751. // Regardless of the result, submit to local bitcoind(s) as well
  3752. struct work *work_cp;
  3753. char *p;
  3754. for (int i = 0; i < total_pools; ++i)
  3755. {
  3756. p = strchr(pools[i]->rpc_url, '#');
  3757. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3758. continue;
  3759. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3760. work_cp = copy_work(work);
  3761. work_cp->pool = pools[i];
  3762. work_cp->do_foreign_submit = true;
  3763. _submit_work_async(work_cp);
  3764. }
  3765. }
  3766. #endif
  3767. }
  3768. /* Theoretically threads could race when modifying accepted and
  3769. * rejected values but the chance of two submits completing at the
  3770. * same time is zero so there is no point adding extra locking */
  3771. static void
  3772. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3773. /*char *hashshow,*/ bool resubmit, char *worktime)
  3774. {
  3775. struct pool *pool = work->pool;
  3776. struct cgpu_info *cgpu;
  3777. cgpu = get_thr_cgpu(work->thr_id);
  3778. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3779. mutex_lock(&stats_lock);
  3780. cgpu->accepted++;
  3781. total_accepted++;
  3782. pool->accepted++;
  3783. cgpu->diff_accepted += work->work_difficulty;
  3784. total_diff_accepted += work->work_difficulty;
  3785. pool->diff_accepted += work->work_difficulty;
  3786. mutex_unlock(&stats_lock);
  3787. pool->seq_rejects = 0;
  3788. cgpu->last_share_pool = pool->pool_no;
  3789. cgpu->last_share_pool_time = time(NULL);
  3790. cgpu->last_share_diff = work->work_difficulty;
  3791. pool->last_share_time = cgpu->last_share_pool_time;
  3792. pool->last_share_diff = work->work_difficulty;
  3793. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3794. if (!QUIET) {
  3795. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3796. }
  3797. sharelog("accept", work);
  3798. if (opt_shares && total_diff_accepted >= opt_shares) {
  3799. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3800. kill_work();
  3801. return;
  3802. }
  3803. /* Detect if a pool that has been temporarily disabled for
  3804. * continually rejecting shares has started accepting shares.
  3805. * This will only happen with the work returned from a
  3806. * longpoll */
  3807. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3808. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3809. enable_pool(pool);
  3810. switch_pools(NULL);
  3811. }
  3812. if (unlikely(work->block)) {
  3813. // Force moving on to this new block :)
  3814. struct work fakework;
  3815. memset(&fakework, 0, sizeof(fakework));
  3816. fakework.pool = work->pool;
  3817. // Copy block version, bits, and time from share
  3818. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3819. memcpy(&fakework.data[68], &work->data[68], 8);
  3820. // Set prevblock to winning hash (swap32'd)
  3821. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3822. test_work_current(&fakework);
  3823. }
  3824. } else {
  3825. mutex_lock(&stats_lock);
  3826. cgpu->rejected++;
  3827. total_rejected++;
  3828. pool->rejected++;
  3829. cgpu->diff_rejected += work->work_difficulty;
  3830. total_diff_rejected += work->work_difficulty;
  3831. pool->diff_rejected += work->work_difficulty;
  3832. pool->seq_rejects++;
  3833. mutex_unlock(&stats_lock);
  3834. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3835. if (!QUIET) {
  3836. char where[20];
  3837. char disposition[36] = "reject";
  3838. char reason[32];
  3839. strcpy(reason, "");
  3840. if (total_pools > 1)
  3841. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3842. else
  3843. strcpy(where, "");
  3844. if (!json_is_string(res))
  3845. res = json_object_get(val, "reject-reason");
  3846. if (res) {
  3847. const char *reasontmp = json_string_value(res);
  3848. size_t reasonLen = strlen(reasontmp);
  3849. if (reasonLen > 28)
  3850. reasonLen = 28;
  3851. reason[0] = ' '; reason[1] = '(';
  3852. memcpy(2 + reason, reasontmp, reasonLen);
  3853. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3854. memcpy(disposition + 7, reasontmp, reasonLen);
  3855. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3856. } else if (work->stratum && err && json_is_array(err)) {
  3857. json_t *reason_val = json_array_get(err, 1);
  3858. char *reason_str;
  3859. if (reason_val && json_is_string(reason_val)) {
  3860. reason_str = (char *)json_string_value(reason_val);
  3861. snprintf(reason, 31, " (%s)", reason_str);
  3862. }
  3863. }
  3864. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3865. sharelog(disposition, work);
  3866. }
  3867. /* Once we have more than a nominal amount of sequential rejects,
  3868. * at least 10 and more than 3 mins at the current utility,
  3869. * disable the pool because some pool error is likely to have
  3870. * ensued. Do not do this if we know the share just happened to
  3871. * be stale due to networking delays.
  3872. */
  3873. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3874. double utility = total_accepted / total_secs * 60;
  3875. if (pool->seq_rejects > utility * 3) {
  3876. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3877. pool->pool_no, pool->seq_rejects);
  3878. reject_pool(pool);
  3879. if (pool == current_pool())
  3880. switch_pools(NULL);
  3881. pool->seq_rejects = 0;
  3882. }
  3883. }
  3884. }
  3885. maybe_local_submit(work);
  3886. }
  3887. static char *submit_upstream_work_request(struct work *work)
  3888. {
  3889. char *hexstr = NULL;
  3890. char *s, *sd;
  3891. struct pool *pool = work->pool;
  3892. if (work->tmpl) {
  3893. json_t *req;
  3894. unsigned char data[80];
  3895. swap32yes(data, work->data, 80 / 4);
  3896. #if BLKMAKER_VERSION > 3
  3897. if (work->do_foreign_submit)
  3898. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3899. else
  3900. #endif
  3901. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3902. s = json_dumps(req, 0);
  3903. json_decref(req);
  3904. sd = malloc(161);
  3905. bin2hex(sd, data, 80);
  3906. } else {
  3907. /* build hex string */
  3908. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3909. bin2hex(hexstr, work->data, sizeof(work->data));
  3910. /* build JSON-RPC request */
  3911. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3912. s = realloc_strcat(s, hexstr);
  3913. s = realloc_strcat(s, "\" ], \"id\":1}");
  3914. free(hexstr);
  3915. sd = s;
  3916. }
  3917. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3918. if (work->tmpl)
  3919. free(sd);
  3920. else
  3921. s = realloc_strcat(s, "\n");
  3922. return s;
  3923. }
  3924. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3925. json_t *res, *err;
  3926. bool rc = false;
  3927. int thr_id = work->thr_id;
  3928. struct pool *pool = work->pool;
  3929. struct timeval tv_submit_reply;
  3930. time_t ts_submit_reply;
  3931. char worktime[200] = "";
  3932. cgtime(&tv_submit_reply);
  3933. ts_submit_reply = time(NULL);
  3934. if (unlikely(!val)) {
  3935. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3936. if (!pool_tset(pool, &pool->submit_fail)) {
  3937. total_ro++;
  3938. pool->remotefail_occasions++;
  3939. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3940. }
  3941. goto out;
  3942. } else if (pool_tclear(pool, &pool->submit_fail))
  3943. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3944. res = json_object_get(val, "result");
  3945. err = json_object_get(val, "error");
  3946. if (!QUIET) {
  3947. if (opt_worktime) {
  3948. char workclone[20];
  3949. struct tm _tm;
  3950. struct tm *tm, tm_getwork, tm_submit_reply;
  3951. tm = &_tm;
  3952. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3953. (struct timeval *)&(work->tv_getwork));
  3954. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3955. (struct timeval *)&(work->tv_getwork_reply));
  3956. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3957. (struct timeval *)&(work->tv_work_start));
  3958. double work_to_submit = tdiff(ptv_submit,
  3959. (struct timeval *)&(work->tv_work_found));
  3960. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3961. int diffplaces = 3;
  3962. localtime_r(&work->ts_getwork, tm);
  3963. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3964. localtime_r(&ts_submit_reply, tm);
  3965. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3966. if (work->clone) {
  3967. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3968. tdiff((struct timeval *)&(work->tv_cloned),
  3969. (struct timeval *)&(work->tv_getwork_reply)));
  3970. }
  3971. else
  3972. strcpy(workclone, "O");
  3973. if (work->work_difficulty < 1)
  3974. diffplaces = 6;
  3975. snprintf(worktime, sizeof(worktime),
  3976. " <-%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",
  3977. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3978. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3979. work->getwork_mode, diffplaces, work->work_difficulty,
  3980. tm_getwork.tm_hour, tm_getwork.tm_min,
  3981. tm_getwork.tm_sec, getwork_time, workclone,
  3982. getwork_to_work, work_time, work_to_submit, submit_time,
  3983. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3984. tm_submit_reply.tm_sec);
  3985. }
  3986. }
  3987. share_result(val, res, err, work, resubmit, worktime);
  3988. if (!opt_realquiet)
  3989. print_status(thr_id);
  3990. if (!want_per_device_stats) {
  3991. char logline[256];
  3992. struct cgpu_info *cgpu;
  3993. cgpu = get_thr_cgpu(thr_id);
  3994. get_statline(logline, sizeof(logline), cgpu);
  3995. applog(LOG_INFO, "%s", logline);
  3996. }
  3997. json_decref(val);
  3998. rc = true;
  3999. out:
  4000. return rc;
  4001. }
  4002. /* Specifies whether we can use this pool for work or not. */
  4003. static bool pool_unworkable(const struct pool * const pool)
  4004. {
  4005. if (pool->idle)
  4006. return true;
  4007. if (pool->enabled != POOL_ENABLED)
  4008. return true;
  4009. if (pool->has_stratum && !pool->stratum_active)
  4010. return true;
  4011. return false;
  4012. }
  4013. static
  4014. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4015. {
  4016. if (pool->enabled != POOL_ENABLED)
  4017. return false;
  4018. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4019. return true;
  4020. if (!cp)
  4021. cp = current_pool();
  4022. return (pool == cp);
  4023. }
  4024. static
  4025. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4026. {
  4027. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4028. }
  4029. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4030. * rolling average per 10 minutes and if pools start getting more, it biases
  4031. * away from them to distribute work evenly. The share count is reset to the
  4032. * rolling average every 10 minutes to not send all work to one pool after it
  4033. * has been disabled/out for an extended period. */
  4034. static struct pool *select_balanced(struct pool *cp)
  4035. {
  4036. int i, lowest = cp->shares;
  4037. struct pool *ret = cp;
  4038. for (i = 0; i < total_pools; i++) {
  4039. struct pool *pool = pools[i];
  4040. if (pool_unworkable(pool))
  4041. continue;
  4042. if (pool->shares < lowest) {
  4043. lowest = pool->shares;
  4044. ret = pool;
  4045. }
  4046. }
  4047. ret->shares++;
  4048. return ret;
  4049. }
  4050. static bool pool_active(struct pool *, bool pinging);
  4051. static void pool_died(struct pool *);
  4052. static struct pool *priority_pool(int choice);
  4053. static bool pool_unusable(struct pool *pool);
  4054. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4055. * it has any quota left. */
  4056. static inline struct pool *select_pool(bool lagging)
  4057. {
  4058. static int rotating_pool = 0;
  4059. struct pool *pool, *cp;
  4060. bool avail = false;
  4061. int tested, i;
  4062. cp = current_pool();
  4063. retry:
  4064. if (pool_strategy == POOL_BALANCE) {
  4065. pool = select_balanced(cp);
  4066. goto out;
  4067. }
  4068. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4069. pool = cp;
  4070. goto out;
  4071. } else
  4072. pool = NULL;
  4073. for (i = 0; i < total_pools; i++) {
  4074. struct pool *tp = pools[i];
  4075. if (tp->quota_used < tp->quota_gcd) {
  4076. avail = true;
  4077. break;
  4078. }
  4079. }
  4080. /* There are no pools with quota, so reset them. */
  4081. if (!avail) {
  4082. for (i = 0; i < total_pools; i++)
  4083. pools[i]->quota_used = 0;
  4084. if (++rotating_pool >= total_pools)
  4085. rotating_pool = 0;
  4086. }
  4087. /* Try to find the first pool in the rotation that is usable */
  4088. tested = 0;
  4089. while (!pool && tested++ < total_pools) {
  4090. pool = pools[rotating_pool];
  4091. if (pool->quota_used++ < pool->quota_gcd) {
  4092. if (!pool_unworkable(pool))
  4093. break;
  4094. /* Failover-only flag for load-balance means distribute
  4095. * unused quota to priority pool 0. */
  4096. if (opt_fail_only)
  4097. priority_pool(0)->quota_used--;
  4098. }
  4099. pool = NULL;
  4100. if (++rotating_pool >= total_pools)
  4101. rotating_pool = 0;
  4102. }
  4103. /* If there are no alive pools with quota, choose according to
  4104. * priority. */
  4105. if (!pool) {
  4106. for (i = 0; i < total_pools; i++) {
  4107. struct pool *tp = priority_pool(i);
  4108. if (!pool_unusable(tp)) {
  4109. pool = tp;
  4110. break;
  4111. }
  4112. }
  4113. }
  4114. /* If still nothing is usable, use the current pool */
  4115. if (!pool)
  4116. pool = cp;
  4117. out:
  4118. if (!pool_actively_in_use(pool, cp))
  4119. {
  4120. if (!pool_active(pool, false))
  4121. {
  4122. pool_died(pool);
  4123. goto retry;
  4124. }
  4125. pool_tclear(pool, &pool->idle);
  4126. }
  4127. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4128. return pool;
  4129. }
  4130. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4131. static const uint64_t diffone = 0xFFFF000000000000ull;
  4132. static double target_diff(const unsigned char *target)
  4133. {
  4134. double targ = 0;
  4135. signed int i;
  4136. for (i = 31; i >= 0; --i)
  4137. targ = (targ * 0x100) + target[i];
  4138. return DIFFEXACTONE / (targ ?: 1);
  4139. }
  4140. /*
  4141. * Calculate the work share difficulty
  4142. */
  4143. static void calc_diff(struct work *work, int known)
  4144. {
  4145. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4146. double difficulty;
  4147. if (!known) {
  4148. work->work_difficulty = target_diff(work->target);
  4149. } else
  4150. work->work_difficulty = known;
  4151. difficulty = work->work_difficulty;
  4152. pool_stats->last_diff = difficulty;
  4153. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4154. if (difficulty == pool_stats->min_diff)
  4155. pool_stats->min_diff_count++;
  4156. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4157. pool_stats->min_diff = difficulty;
  4158. pool_stats->min_diff_count = 1;
  4159. }
  4160. if (difficulty == pool_stats->max_diff)
  4161. pool_stats->max_diff_count++;
  4162. else if (difficulty > pool_stats->max_diff) {
  4163. pool_stats->max_diff = difficulty;
  4164. pool_stats->max_diff_count = 1;
  4165. }
  4166. }
  4167. static
  4168. void setup_benchmark_pool()
  4169. {
  4170. struct pool *pool;
  4171. want_longpoll = false;
  4172. // Temporarily disable opt_benchmark to avoid auto-removal
  4173. opt_benchmark = false;
  4174. pool = add_pool();
  4175. opt_benchmark = true;
  4176. pool->rpc_url = malloc(255);
  4177. strcpy(pool->rpc_url, "Benchmark");
  4178. pool->rpc_user = pool->rpc_url;
  4179. pool->rpc_pass = pool->rpc_url;
  4180. enable_pool(pool);
  4181. pool->idle = false;
  4182. successful_connect = true;
  4183. }
  4184. void get_benchmark_work(struct work *work)
  4185. {
  4186. static uint32_t blkhdr[20];
  4187. for (int i = 18; i >= 0; --i)
  4188. if (++blkhdr[i])
  4189. break;
  4190. memcpy(&work->data[ 0], blkhdr, 80);
  4191. memcpy(&work->data[80], workpadding_bin, 48);
  4192. calc_midstate(work);
  4193. set_target(work->target, 1.0);
  4194. work->mandatory = true;
  4195. work->pool = pools[0];
  4196. cgtime(&work->tv_getwork);
  4197. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4198. copy_time(&work->tv_staged, &work->tv_getwork);
  4199. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4200. calc_diff(work, 0);
  4201. }
  4202. static void wake_gws(void);
  4203. static void update_last_work(struct work *work)
  4204. {
  4205. if (!work->tmpl)
  4206. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4207. return;
  4208. struct pool *pool = work->pool;
  4209. mutex_lock(&pool->last_work_lock);
  4210. if (pool->last_work_copy)
  4211. free_work(pool->last_work_copy);
  4212. pool->last_work_copy = copy_work(work);
  4213. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4214. mutex_unlock(&pool->last_work_lock);
  4215. }
  4216. static
  4217. void gbt_req_target(json_t *req)
  4218. {
  4219. json_t *j;
  4220. json_t *n;
  4221. if (!request_target_str)
  4222. return;
  4223. j = json_object_get(req, "params");
  4224. if (!j)
  4225. {
  4226. n = json_array();
  4227. if (!n)
  4228. return;
  4229. if (json_object_set_new(req, "params", n))
  4230. goto erradd;
  4231. j = n;
  4232. }
  4233. n = json_array_get(j, 0);
  4234. if (!n)
  4235. {
  4236. n = json_object();
  4237. if (!n)
  4238. return;
  4239. if (json_array_append_new(j, n))
  4240. goto erradd;
  4241. }
  4242. j = n;
  4243. n = json_string(request_target_str);
  4244. if (!n)
  4245. return;
  4246. if (json_object_set_new(j, "target", n))
  4247. goto erradd;
  4248. return;
  4249. erradd:
  4250. json_decref(n);
  4251. }
  4252. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4253. {
  4254. char *rpc_req;
  4255. clean_work(work);
  4256. switch (proto) {
  4257. case PLP_GETWORK:
  4258. work->getwork_mode = GETWORK_MODE_POOL;
  4259. return strdup(getwork_req);
  4260. case PLP_GETBLOCKTEMPLATE:
  4261. work->getwork_mode = GETWORK_MODE_GBT;
  4262. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4263. if (!work->tmpl_refcount)
  4264. return NULL;
  4265. work->tmpl = blktmpl_create();
  4266. if (!work->tmpl)
  4267. goto gbtfail2;
  4268. *work->tmpl_refcount = 1;
  4269. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4270. if (!caps)
  4271. goto gbtfail;
  4272. caps |= GBT_LONGPOLL;
  4273. #if BLKMAKER_VERSION > 1
  4274. if (opt_coinbase_script.sz)
  4275. caps |= GBT_CBVALUE;
  4276. #endif
  4277. json_t *req = blktmpl_request_jansson(caps, lpid);
  4278. if (!req)
  4279. goto gbtfail;
  4280. if (probe)
  4281. gbt_req_target(req);
  4282. rpc_req = json_dumps(req, 0);
  4283. if (!rpc_req)
  4284. goto gbtfail;
  4285. json_decref(req);
  4286. return rpc_req;
  4287. default:
  4288. return NULL;
  4289. }
  4290. return NULL;
  4291. gbtfail:
  4292. blktmpl_free(work->tmpl);
  4293. work->tmpl = NULL;
  4294. gbtfail2:
  4295. free(work->tmpl_refcount);
  4296. work->tmpl_refcount = NULL;
  4297. return NULL;
  4298. }
  4299. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4300. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4301. static const char *pool_protocol_name(enum pool_protocol proto)
  4302. {
  4303. switch (proto) {
  4304. case PLP_GETBLOCKTEMPLATE:
  4305. return "getblocktemplate";
  4306. case PLP_GETWORK:
  4307. return "getwork";
  4308. default:
  4309. return "UNKNOWN";
  4310. }
  4311. }
  4312. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4313. {
  4314. switch (proto) {
  4315. case PLP_GETBLOCKTEMPLATE:
  4316. if (want_getwork)
  4317. return PLP_GETWORK;
  4318. default:
  4319. return PLP_NONE;
  4320. }
  4321. }
  4322. static bool get_upstream_work(struct work *work, CURL *curl)
  4323. {
  4324. struct pool *pool = work->pool;
  4325. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4326. struct timeval tv_elapsed;
  4327. json_t *val = NULL;
  4328. bool rc = false;
  4329. char *url;
  4330. enum pool_protocol proto;
  4331. char *rpc_req;
  4332. if (pool->proto == PLP_NONE)
  4333. pool->proto = PLP_GETBLOCKTEMPLATE;
  4334. tryagain:
  4335. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4336. work->pool = pool;
  4337. if (!rpc_req)
  4338. return false;
  4339. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4340. url = pool->rpc_url;
  4341. cgtime(&work->tv_getwork);
  4342. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4343. false, &work->rolltime, pool, false);
  4344. pool_stats->getwork_attempts++;
  4345. free(rpc_req);
  4346. if (likely(val)) {
  4347. rc = work_decode(pool, work, val);
  4348. if (unlikely(!rc))
  4349. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4350. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4351. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4352. pool->proto = proto;
  4353. goto tryagain;
  4354. } else
  4355. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4356. cgtime(&work->tv_getwork_reply);
  4357. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4358. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4359. pool_stats->getwork_wait_rolling /= 1.63;
  4360. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4361. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4362. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4363. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4364. }
  4365. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4366. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4367. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4368. }
  4369. pool_stats->getwork_calls++;
  4370. work->pool = pool;
  4371. work->longpoll = false;
  4372. calc_diff(work, 0);
  4373. total_getworks++;
  4374. pool->getwork_requested++;
  4375. if (rc)
  4376. update_last_work(work);
  4377. if (likely(val))
  4378. json_decref(val);
  4379. return rc;
  4380. }
  4381. #ifdef HAVE_CURSES
  4382. static void disable_curses(void)
  4383. {
  4384. if (curses_active_locked()) {
  4385. use_curses = false;
  4386. curses_active = false;
  4387. leaveok(logwin, false);
  4388. leaveok(statuswin, false);
  4389. leaveok(mainwin, false);
  4390. nocbreak();
  4391. echo();
  4392. delwin(logwin);
  4393. delwin(statuswin);
  4394. delwin(mainwin);
  4395. endwin();
  4396. #ifdef WIN32
  4397. // Move the cursor to after curses output.
  4398. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4399. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4400. COORD coord;
  4401. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4402. coord.X = 0;
  4403. coord.Y = csbi.dwSize.Y - 1;
  4404. SetConsoleCursorPosition(hout, coord);
  4405. }
  4406. #endif
  4407. unlock_curses();
  4408. }
  4409. }
  4410. #endif
  4411. static void __kill_work(void)
  4412. {
  4413. struct cgpu_info *cgpu;
  4414. struct thr_info *thr;
  4415. int i;
  4416. if (!successful_connect)
  4417. return;
  4418. applog(LOG_INFO, "Received kill message");
  4419. shutting_down = true;
  4420. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4421. notifier_wake(submit_waiting_notifier);
  4422. #ifdef USE_LIBMICROHTTPD
  4423. httpsrv_stop();
  4424. #endif
  4425. applog(LOG_DEBUG, "Killing off watchpool thread");
  4426. /* Kill the watchpool thread */
  4427. thr = &control_thr[watchpool_thr_id];
  4428. thr_info_cancel(thr);
  4429. applog(LOG_DEBUG, "Killing off watchdog thread");
  4430. /* Kill the watchdog thread */
  4431. thr = &control_thr[watchdog_thr_id];
  4432. thr_info_cancel(thr);
  4433. applog(LOG_DEBUG, "Shutting down mining threads");
  4434. for (i = 0; i < mining_threads; i++) {
  4435. thr = get_thread(i);
  4436. if (!thr)
  4437. continue;
  4438. cgpu = thr->cgpu;
  4439. if (!cgpu)
  4440. continue;
  4441. if (!cgpu->threads)
  4442. continue;
  4443. cgpu->shutdown = true;
  4444. thr->work_restart = true;
  4445. notifier_wake(thr->notifier);
  4446. notifier_wake(thr->work_restart_notifier);
  4447. }
  4448. sleep(1);
  4449. applog(LOG_DEBUG, "Killing off mining threads");
  4450. /* Kill the mining threads*/
  4451. for (i = 0; i < mining_threads; i++) {
  4452. thr = get_thread(i);
  4453. if (!thr)
  4454. continue;
  4455. cgpu = thr->cgpu;
  4456. if (cgpu->threads)
  4457. {
  4458. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4459. thr_info_cancel(thr);
  4460. }
  4461. cgpu->status = LIFE_DEAD2;
  4462. }
  4463. /* Stop the others */
  4464. applog(LOG_DEBUG, "Killing off API thread");
  4465. thr = &control_thr[api_thr_id];
  4466. thr_info_cancel(thr);
  4467. }
  4468. /* This should be the common exit path */
  4469. void kill_work(void)
  4470. {
  4471. __kill_work();
  4472. quit(0, "Shutdown signal received.");
  4473. }
  4474. static
  4475. #ifdef WIN32
  4476. #ifndef _WIN64
  4477. const
  4478. #endif
  4479. #endif
  4480. char **initial_args;
  4481. void _bfg_clean_up(bool);
  4482. void app_restart(void)
  4483. {
  4484. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4485. __kill_work();
  4486. _bfg_clean_up(true);
  4487. #if defined(unix) || defined(__APPLE__)
  4488. if (forkpid > 0) {
  4489. kill(forkpid, SIGTERM);
  4490. forkpid = 0;
  4491. }
  4492. #endif
  4493. execv(initial_args[0], initial_args);
  4494. applog(LOG_WARNING, "Failed to restart application");
  4495. }
  4496. static void sighandler(int __maybe_unused sig)
  4497. {
  4498. /* Restore signal handlers so we can still quit if kill_work fails */
  4499. sigaction(SIGTERM, &termhandler, NULL);
  4500. sigaction(SIGINT, &inthandler, NULL);
  4501. kill_work();
  4502. }
  4503. static void start_longpoll(void);
  4504. static void stop_longpoll(void);
  4505. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4506. * this pool. */
  4507. static void recruit_curl(struct pool *pool)
  4508. {
  4509. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4510. if (unlikely(!ce))
  4511. quit(1, "Failed to calloc in recruit_curl");
  4512. ce->curl = curl_easy_init();
  4513. if (unlikely(!ce->curl))
  4514. quit(1, "Failed to init in recruit_curl");
  4515. LL_PREPEND(pool->curllist, ce);
  4516. pool->curls++;
  4517. }
  4518. /* Grab an available curl if there is one. If not, then recruit extra curls
  4519. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4520. * and there are already 5 curls in circulation. Limit total number to the
  4521. * number of mining threads per pool as well to prevent blasting a pool during
  4522. * network delays/outages. */
  4523. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4524. {
  4525. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4526. bool recruited = false;
  4527. struct curl_ent *ce;
  4528. mutex_lock(&pool->pool_lock);
  4529. retry:
  4530. if (!pool->curls) {
  4531. recruit_curl(pool);
  4532. recruited = true;
  4533. } else if (!pool->curllist) {
  4534. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4535. if (!blocking) {
  4536. mutex_unlock(&pool->pool_lock);
  4537. return NULL;
  4538. }
  4539. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4540. goto retry;
  4541. } else {
  4542. recruit_curl(pool);
  4543. recruited = true;
  4544. }
  4545. }
  4546. ce = pool->curllist;
  4547. LL_DELETE(pool->curllist, ce);
  4548. mutex_unlock(&pool->pool_lock);
  4549. if (recruited)
  4550. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4551. return ce;
  4552. }
  4553. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4554. {
  4555. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4556. }
  4557. __maybe_unused
  4558. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4559. {
  4560. return pop_curl_entry3(pool, 1);
  4561. }
  4562. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4563. {
  4564. mutex_lock(&pool->pool_lock);
  4565. if (!ce || !ce->curl)
  4566. quithere(1, "Attempted to add NULL");
  4567. LL_PREPEND(pool->curllist, ce);
  4568. cgtime(&ce->tv);
  4569. pthread_cond_broadcast(&pool->cr_cond);
  4570. mutex_unlock(&pool->pool_lock);
  4571. }
  4572. bool stale_work(struct work *work, bool share);
  4573. static inline bool should_roll(struct work *work)
  4574. {
  4575. struct timeval now;
  4576. time_t expiry;
  4577. if (!pool_actively_in_use(work->pool, NULL))
  4578. return false;
  4579. if (stale_work(work, false))
  4580. return false;
  4581. if (work->rolltime > opt_scantime)
  4582. expiry = work->rolltime;
  4583. else
  4584. expiry = opt_scantime;
  4585. expiry = expiry * 2 / 3;
  4586. /* We shouldn't roll if we're unlikely to get one shares' duration
  4587. * work out of doing so */
  4588. cgtime(&now);
  4589. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4590. return false;
  4591. return true;
  4592. }
  4593. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4594. * reject blocks as invalid. */
  4595. static inline bool can_roll(struct work *work)
  4596. {
  4597. if (work->stratum)
  4598. return false;
  4599. if (!(work->pool && !work->clone))
  4600. return false;
  4601. if (work->tmpl) {
  4602. if (stale_work(work, false))
  4603. return false;
  4604. return blkmk_work_left(work->tmpl);
  4605. }
  4606. return (work->rolltime &&
  4607. work->rolls < 7000 && !stale_work(work, false));
  4608. }
  4609. static void roll_work(struct work *work)
  4610. {
  4611. if (work->tmpl) {
  4612. struct timeval tv_now;
  4613. cgtime(&tv_now);
  4614. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4615. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4616. swap32yes(work->data, work->data, 80 / 4);
  4617. calc_midstate(work);
  4618. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4619. } else {
  4620. uint32_t *work_ntime;
  4621. uint32_t ntime;
  4622. work_ntime = (uint32_t *)(work->data + 68);
  4623. ntime = be32toh(*work_ntime);
  4624. ntime++;
  4625. *work_ntime = htobe32(ntime);
  4626. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4627. }
  4628. local_work++;
  4629. work->rolls++;
  4630. work->blk.nonce = 0;
  4631. /* This is now a different work item so it needs a different ID for the
  4632. * hashtable */
  4633. work->id = total_work++;
  4634. }
  4635. /* Duplicates any dynamically allocated arrays within the work struct to
  4636. * prevent a copied work struct from freeing ram belonging to another struct */
  4637. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4638. {
  4639. int id = work->id;
  4640. clean_work(work);
  4641. memcpy(work, base_work, sizeof(struct work));
  4642. /* Keep the unique new id assigned during make_work to prevent copied
  4643. * work from having the same id. */
  4644. work->id = id;
  4645. if (base_work->job_id)
  4646. work->job_id = strdup(base_work->job_id);
  4647. if (base_work->nonce1)
  4648. work->nonce1 = strdup(base_work->nonce1);
  4649. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4650. if (base_work->tmpl) {
  4651. struct pool *pool = work->pool;
  4652. mutex_lock(&pool->pool_lock);
  4653. ++*work->tmpl_refcount;
  4654. mutex_unlock(&pool->pool_lock);
  4655. }
  4656. if (noffset)
  4657. {
  4658. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4659. uint32_t ntime = be32toh(*work_ntime);
  4660. ntime += noffset;
  4661. *work_ntime = htobe32(ntime);
  4662. }
  4663. if (work->device_data_dup_func)
  4664. work->device_data = work->device_data_dup_func(work);
  4665. }
  4666. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4667. * for all dynamically allocated arrays within the struct */
  4668. struct work *copy_work(const struct work *base_work)
  4669. {
  4670. struct work *work = make_work();
  4671. _copy_work(work, base_work, 0);
  4672. return work;
  4673. }
  4674. void __copy_work(struct work *work, const struct work *base_work)
  4675. {
  4676. _copy_work(work, base_work, 0);
  4677. }
  4678. static struct work *make_clone(struct work *work)
  4679. {
  4680. struct work *work_clone = copy_work(work);
  4681. work_clone->clone = true;
  4682. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4683. work_clone->longpoll = false;
  4684. work_clone->mandatory = false;
  4685. /* Make cloned work appear slightly older to bias towards keeping the
  4686. * master work item which can be further rolled */
  4687. work_clone->tv_staged.tv_sec -= 1;
  4688. return work_clone;
  4689. }
  4690. static void stage_work(struct work *work);
  4691. static bool clone_available(void)
  4692. {
  4693. struct work *work_clone = NULL, *work, *tmp;
  4694. bool cloned = false;
  4695. mutex_lock(stgd_lock);
  4696. if (!staged_rollable)
  4697. goto out_unlock;
  4698. HASH_ITER(hh, staged_work, work, tmp) {
  4699. if (can_roll(work) && should_roll(work)) {
  4700. roll_work(work);
  4701. work_clone = make_clone(work);
  4702. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4703. roll_work(work);
  4704. cloned = true;
  4705. break;
  4706. }
  4707. }
  4708. out_unlock:
  4709. mutex_unlock(stgd_lock);
  4710. if (cloned) {
  4711. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4712. stage_work(work_clone);
  4713. }
  4714. return cloned;
  4715. }
  4716. static void pool_died(struct pool *pool)
  4717. {
  4718. if (!pool_tset(pool, &pool->idle)) {
  4719. cgtime(&pool->tv_idle);
  4720. if (pool == current_pool()) {
  4721. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4722. switch_pools(NULL);
  4723. } else
  4724. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4725. }
  4726. }
  4727. bool stale_work(struct work *work, bool share)
  4728. {
  4729. unsigned work_expiry;
  4730. struct pool *pool;
  4731. uint32_t block_id;
  4732. unsigned getwork_delay;
  4733. if (opt_benchmark)
  4734. return false;
  4735. block_id = ((uint32_t*)work->data)[1];
  4736. pool = work->pool;
  4737. /* Technically the rolltime should be correct but some pools
  4738. * advertise a broken expire= that is lower than a meaningful
  4739. * scantime */
  4740. if (work->rolltime >= opt_scantime || work->tmpl)
  4741. work_expiry = work->rolltime;
  4742. else
  4743. work_expiry = opt_expiry;
  4744. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4745. if (work_expiry > max_expiry)
  4746. work_expiry = max_expiry;
  4747. if (share) {
  4748. /* If the share isn't on this pool's latest block, it's stale */
  4749. if (pool->block_id && pool->block_id != block_id)
  4750. {
  4751. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4752. return true;
  4753. }
  4754. /* If the pool doesn't want old shares, then any found in work before
  4755. * the most recent longpoll is stale */
  4756. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4757. {
  4758. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4759. return true;
  4760. }
  4761. } else {
  4762. /* If this work isn't for the latest Bitcoin block, it's stale */
  4763. /* But only care about the current pool if failover-only */
  4764. if (enabled_pools <= 1 || opt_fail_only) {
  4765. if (pool->block_id && block_id != pool->block_id)
  4766. {
  4767. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4768. return true;
  4769. }
  4770. } else {
  4771. if (block_id != current_block_id)
  4772. {
  4773. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4774. return true;
  4775. }
  4776. }
  4777. /* If the pool has asked us to restart since this work, it's stale */
  4778. if (work->work_restart_id != pool->work_restart_id)
  4779. {
  4780. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4781. return true;
  4782. }
  4783. if (pool->has_stratum && work->job_id) {
  4784. bool same_job;
  4785. if (!pool->stratum_active || !pool->stratum_notify) {
  4786. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4787. return true;
  4788. }
  4789. same_job = true;
  4790. cg_rlock(&pool->data_lock);
  4791. if (strcmp(work->job_id, pool->swork.job_id))
  4792. same_job = false;
  4793. cg_runlock(&pool->data_lock);
  4794. if (!same_job) {
  4795. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4796. return true;
  4797. }
  4798. }
  4799. /* Factor in the average getwork delay of this pool, rounding it up to
  4800. * the nearest second */
  4801. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4802. if (unlikely(work_expiry <= getwork_delay + 5))
  4803. work_expiry = 5;
  4804. else
  4805. work_expiry -= getwork_delay;
  4806. }
  4807. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4808. if (elapsed_since_staged > work_expiry) {
  4809. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4810. return true;
  4811. }
  4812. /* If the user only wants strict failover, any work from a pool other than
  4813. * the current one is always considered stale */
  4814. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4815. {
  4816. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4817. return true;
  4818. }
  4819. return false;
  4820. }
  4821. static double share_diff(const struct work *work)
  4822. {
  4823. double ret;
  4824. bool new_best = false;
  4825. ret = target_diff(work->hash);
  4826. cg_wlock(&control_lock);
  4827. if (unlikely(ret > best_diff)) {
  4828. new_best = true;
  4829. best_diff = ret;
  4830. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4831. }
  4832. if (unlikely(ret > work->pool->best_diff))
  4833. work->pool->best_diff = ret;
  4834. cg_wunlock(&control_lock);
  4835. if (unlikely(new_best))
  4836. applog(LOG_INFO, "New best share: %s", best_share);
  4837. return ret;
  4838. }
  4839. static void regen_hash(struct work *work)
  4840. {
  4841. hash_data(work->hash, work->data);
  4842. }
  4843. static void rebuild_hash(struct work *work)
  4844. {
  4845. if (opt_scrypt)
  4846. scrypt_regenhash(work);
  4847. else
  4848. regen_hash(work);
  4849. work->share_diff = share_diff(work);
  4850. if (unlikely(work->share_diff >= current_diff)) {
  4851. work->block = true;
  4852. work->pool->solved++;
  4853. found_blocks++;
  4854. work->mandatory = true;
  4855. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4856. }
  4857. }
  4858. static void submit_discard_share2(const char *reason, struct work *work)
  4859. {
  4860. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4861. sharelog(reason, work);
  4862. mutex_lock(&stats_lock);
  4863. ++total_stale;
  4864. ++cgpu->stale;
  4865. ++(work->pool->stale_shares);
  4866. total_diff_stale += work->work_difficulty;
  4867. cgpu->diff_stale += work->work_difficulty;
  4868. work->pool->diff_stale += work->work_difficulty;
  4869. mutex_unlock(&stats_lock);
  4870. }
  4871. static void submit_discard_share(struct work *work)
  4872. {
  4873. submit_discard_share2("discard", work);
  4874. }
  4875. struct submit_work_state {
  4876. struct work *work;
  4877. bool resubmit;
  4878. struct curl_ent *ce;
  4879. int failures;
  4880. struct timeval tv_staleexpire;
  4881. char *s;
  4882. struct timeval tv_submit;
  4883. struct submit_work_state *next;
  4884. };
  4885. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4886. {
  4887. long *p_timeout_us = userp;
  4888. const long max_ms = LONG_MAX / 1000;
  4889. if (max_ms < timeout_ms)
  4890. timeout_ms = max_ms;
  4891. *p_timeout_us = timeout_ms * 1000;
  4892. return 0;
  4893. }
  4894. static void sws_has_ce(struct submit_work_state *sws)
  4895. {
  4896. struct pool *pool = sws->work->pool;
  4897. sws->s = submit_upstream_work_request(sws->work);
  4898. cgtime(&sws->tv_submit);
  4899. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4900. }
  4901. static struct submit_work_state *begin_submission(struct work *work)
  4902. {
  4903. struct pool *pool;
  4904. struct submit_work_state *sws = NULL;
  4905. pool = work->pool;
  4906. sws = malloc(sizeof(*sws));
  4907. *sws = (struct submit_work_state){
  4908. .work = work,
  4909. };
  4910. rebuild_hash(work);
  4911. if (stale_work(work, true)) {
  4912. work->stale = true;
  4913. if (opt_submit_stale)
  4914. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4915. else if (pool->submit_old)
  4916. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4917. else {
  4918. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4919. submit_discard_share(work);
  4920. goto out;
  4921. }
  4922. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4923. }
  4924. if (work->stratum) {
  4925. char *s;
  4926. s = malloc(1024);
  4927. sws->s = s;
  4928. } else {
  4929. /* submit solution to bitcoin via JSON-RPC */
  4930. sws->ce = pop_curl_entry2(pool, false);
  4931. if (sws->ce) {
  4932. sws_has_ce(sws);
  4933. } else {
  4934. sws->next = pool->sws_waiting_on_curl;
  4935. pool->sws_waiting_on_curl = sws;
  4936. if (sws->next)
  4937. applog(LOG_DEBUG, "submit_thread queuing submission");
  4938. else
  4939. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4940. }
  4941. }
  4942. return sws;
  4943. out:
  4944. free(sws);
  4945. return NULL;
  4946. }
  4947. static bool retry_submission(struct submit_work_state *sws)
  4948. {
  4949. struct work *work = sws->work;
  4950. struct pool *pool = work->pool;
  4951. sws->resubmit = true;
  4952. if ((!work->stale) && stale_work(work, true)) {
  4953. work->stale = true;
  4954. if (opt_submit_stale)
  4955. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4956. else if (pool->submit_old)
  4957. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4958. else {
  4959. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4960. submit_discard_share(work);
  4961. return false;
  4962. }
  4963. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4964. }
  4965. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4966. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4967. submit_discard_share(work);
  4968. return false;
  4969. }
  4970. else if (work->stale) {
  4971. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4972. {
  4973. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4974. submit_discard_share(work);
  4975. return false;
  4976. }
  4977. }
  4978. /* pause, then restart work-request loop */
  4979. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4980. cgtime(&sws->tv_submit);
  4981. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4982. return true;
  4983. }
  4984. static void free_sws(struct submit_work_state *sws)
  4985. {
  4986. free(sws->s);
  4987. free_work(sws->work);
  4988. free(sws);
  4989. }
  4990. static void *submit_work_thread(__maybe_unused void *userdata)
  4991. {
  4992. int wip = 0;
  4993. CURLM *curlm;
  4994. long curlm_timeout_us = -1;
  4995. struct timeval curlm_timer;
  4996. struct submit_work_state *sws, **swsp;
  4997. struct submit_work_state *write_sws = NULL;
  4998. unsigned tsreduce = 0;
  4999. pthread_detach(pthread_self());
  5000. RenameThread("submit_work");
  5001. applog(LOG_DEBUG, "Creating extra submit work thread");
  5002. curlm = curl_multi_init();
  5003. curlm_timeout_us = -1;
  5004. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5005. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5006. fd_set rfds, wfds, efds;
  5007. int maxfd;
  5008. struct timeval tv_timeout, tv_now;
  5009. int n;
  5010. CURLMsg *cm;
  5011. FD_ZERO(&rfds);
  5012. while (1) {
  5013. mutex_lock(&submitting_lock);
  5014. total_submitting -= tsreduce;
  5015. tsreduce = 0;
  5016. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5017. notifier_read(submit_waiting_notifier);
  5018. }
  5019. // Receive any new submissions
  5020. while (submit_waiting) {
  5021. struct work *work = submit_waiting;
  5022. DL_DELETE(submit_waiting, work);
  5023. if ( (sws = begin_submission(work)) ) {
  5024. if (sws->ce)
  5025. curl_multi_add_handle(curlm, sws->ce->curl);
  5026. else if (sws->s) {
  5027. sws->next = write_sws;
  5028. write_sws = sws;
  5029. }
  5030. ++wip;
  5031. }
  5032. else {
  5033. --total_submitting;
  5034. free_work(work);
  5035. }
  5036. }
  5037. if (unlikely(shutting_down && !wip))
  5038. break;
  5039. mutex_unlock(&submitting_lock);
  5040. FD_ZERO(&rfds);
  5041. FD_ZERO(&wfds);
  5042. FD_ZERO(&efds);
  5043. tv_timeout.tv_sec = -1;
  5044. // Setup cURL with select
  5045. // Need to call perform to ensure the timeout gets updated
  5046. curl_multi_perform(curlm, &n);
  5047. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5048. if (curlm_timeout_us >= 0)
  5049. {
  5050. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5051. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5052. }
  5053. // Setup waiting stratum submissions with select
  5054. for (sws = write_sws; sws; sws = sws->next)
  5055. {
  5056. struct pool *pool = sws->work->pool;
  5057. int fd = pool->sock;
  5058. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5059. continue;
  5060. FD_SET(fd, &wfds);
  5061. set_maxfd(&maxfd, fd);
  5062. }
  5063. // Setup "submit waiting" notifier with select
  5064. FD_SET(submit_waiting_notifier[0], &rfds);
  5065. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5066. // Wait for something interesting to happen :)
  5067. cgtime(&tv_now);
  5068. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5069. FD_ZERO(&rfds);
  5070. continue;
  5071. }
  5072. // Handle any stratum ready-to-write results
  5073. for (swsp = &write_sws; (sws = *swsp); ) {
  5074. struct work *work = sws->work;
  5075. struct pool *pool = work->pool;
  5076. int fd = pool->sock;
  5077. bool sessionid_match;
  5078. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5079. next_write_sws:
  5080. // TODO: Check if stale, possibly discard etc
  5081. swsp = &sws->next;
  5082. continue;
  5083. }
  5084. cg_rlock(&pool->data_lock);
  5085. // 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
  5086. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5087. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  5088. cg_runlock(&pool->data_lock);
  5089. if (!sessionid_match)
  5090. {
  5091. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5092. submit_discard_share2("disconnect", work);
  5093. ++tsreduce;
  5094. next_write_sws_del:
  5095. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5096. FD_CLR(fd, &wfds);
  5097. // Delete sws for this submission, since we're done with it
  5098. *swsp = sws->next;
  5099. free_sws(sws);
  5100. --wip;
  5101. continue;
  5102. }
  5103. char *s = sws->s;
  5104. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5105. int sshare_id;
  5106. uint32_t nonce;
  5107. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5108. char noncehex[9];
  5109. char ntimehex[9];
  5110. sshare->work = copy_work(work);
  5111. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5112. nonce = *((uint32_t *)(work->data + 76));
  5113. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5114. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5115. mutex_lock(&sshare_lock);
  5116. /* Give the stratum share a unique id */
  5117. sshare_id =
  5118. sshare->id = swork_id++;
  5119. HASH_ADD_INT(stratum_shares, id, sshare);
  5120. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5121. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5122. mutex_unlock(&sshare_lock);
  5123. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5124. if (likely(stratum_send(pool, s, strlen(s)))) {
  5125. if (pool_tclear(pool, &pool->submit_fail))
  5126. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5127. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5128. goto next_write_sws_del;
  5129. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5130. // Undo stuff
  5131. mutex_lock(&sshare_lock);
  5132. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5133. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5134. if (sshare)
  5135. HASH_DEL(stratum_shares, sshare);
  5136. mutex_unlock(&sshare_lock);
  5137. if (sshare)
  5138. {
  5139. free_work(sshare->work);
  5140. free(sshare);
  5141. }
  5142. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5143. total_ro++;
  5144. pool->remotefail_occasions++;
  5145. if (!sshare)
  5146. goto next_write_sws_del;
  5147. goto next_write_sws;
  5148. }
  5149. }
  5150. // Handle any cURL activities
  5151. curl_multi_perform(curlm, &n);
  5152. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5153. if (cm->msg == CURLMSG_DONE)
  5154. {
  5155. bool finished;
  5156. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5157. curl_multi_remove_handle(curlm, cm->easy_handle);
  5158. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5159. if (!finished) {
  5160. if (retry_submission(sws))
  5161. curl_multi_add_handle(curlm, sws->ce->curl);
  5162. else
  5163. finished = true;
  5164. }
  5165. if (finished) {
  5166. --wip;
  5167. ++tsreduce;
  5168. struct pool *pool = sws->work->pool;
  5169. if (pool->sws_waiting_on_curl) {
  5170. pool->sws_waiting_on_curl->ce = sws->ce;
  5171. sws_has_ce(pool->sws_waiting_on_curl);
  5172. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5173. curl_multi_add_handle(curlm, sws->ce->curl);
  5174. } else {
  5175. push_curl_entry(sws->ce, sws->work->pool);
  5176. }
  5177. free_sws(sws);
  5178. }
  5179. }
  5180. }
  5181. }
  5182. assert(!write_sws);
  5183. mutex_unlock(&submitting_lock);
  5184. curl_multi_cleanup(curlm);
  5185. applog(LOG_DEBUG, "submit_work thread exiting");
  5186. return NULL;
  5187. }
  5188. /* Find the pool that currently has the highest priority */
  5189. static struct pool *priority_pool(int choice)
  5190. {
  5191. struct pool *ret = NULL;
  5192. int i;
  5193. for (i = 0; i < total_pools; i++) {
  5194. struct pool *pool = pools[i];
  5195. if (pool->prio == choice) {
  5196. ret = pool;
  5197. break;
  5198. }
  5199. }
  5200. if (unlikely(!ret)) {
  5201. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5202. return pools[choice];
  5203. }
  5204. return ret;
  5205. }
  5206. int prioritize_pools(char *param, int *pid)
  5207. {
  5208. char *ptr, *next;
  5209. int i, pr, prio = 0;
  5210. if (total_pools == 0) {
  5211. return MSG_NOPOOL;
  5212. }
  5213. if (param == NULL || *param == '\0') {
  5214. return MSG_MISPID;
  5215. }
  5216. bool pools_changed[total_pools];
  5217. int new_prio[total_pools];
  5218. for (i = 0; i < total_pools; ++i)
  5219. pools_changed[i] = false;
  5220. next = param;
  5221. while (next && *next) {
  5222. ptr = next;
  5223. next = strchr(ptr, ',');
  5224. if (next)
  5225. *(next++) = '\0';
  5226. i = atoi(ptr);
  5227. if (i < 0 || i >= total_pools) {
  5228. *pid = i;
  5229. return MSG_INVPID;
  5230. }
  5231. if (pools_changed[i]) {
  5232. *pid = i;
  5233. return MSG_DUPPID;
  5234. }
  5235. pools_changed[i] = true;
  5236. new_prio[i] = prio++;
  5237. }
  5238. // Only change them if no errors
  5239. for (i = 0; i < total_pools; i++) {
  5240. if (pools_changed[i])
  5241. pools[i]->prio = new_prio[i];
  5242. }
  5243. // In priority order, cycle through the unchanged pools and append them
  5244. for (pr = 0; pr < total_pools; pr++)
  5245. for (i = 0; i < total_pools; i++) {
  5246. if (!pools_changed[i] && pools[i]->prio == pr) {
  5247. pools[i]->prio = prio++;
  5248. pools_changed[i] = true;
  5249. break;
  5250. }
  5251. }
  5252. if (current_pool()->prio)
  5253. switch_pools(NULL);
  5254. return MSG_POOLPRIO;
  5255. }
  5256. void validate_pool_priorities(void)
  5257. {
  5258. // TODO: this should probably do some sort of logging
  5259. int i, j;
  5260. bool used[total_pools];
  5261. bool valid[total_pools];
  5262. for (i = 0; i < total_pools; i++)
  5263. used[i] = valid[i] = false;
  5264. for (i = 0; i < total_pools; i++) {
  5265. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5266. if (!used[pools[i]->prio]) {
  5267. valid[i] = true;
  5268. used[pools[i]->prio] = true;
  5269. }
  5270. }
  5271. }
  5272. for (i = 0; i < total_pools; i++) {
  5273. if (!valid[i]) {
  5274. for (j = 0; j < total_pools; j++) {
  5275. if (!used[j]) {
  5276. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5277. pools[i]->prio = j;
  5278. used[j] = true;
  5279. break;
  5280. }
  5281. }
  5282. }
  5283. }
  5284. }
  5285. static void clear_pool_work(struct pool *pool);
  5286. /* Specifies whether we can switch to this pool or not. */
  5287. static bool pool_unusable(struct pool *pool)
  5288. {
  5289. if (pool->idle)
  5290. return true;
  5291. if (pool->enabled != POOL_ENABLED)
  5292. return true;
  5293. return false;
  5294. }
  5295. void switch_pools(struct pool *selected)
  5296. {
  5297. struct pool *pool, *last_pool;
  5298. int i, pool_no, next_pool;
  5299. cg_wlock(&control_lock);
  5300. last_pool = currentpool;
  5301. pool_no = currentpool->pool_no;
  5302. /* Switch selected to pool number 0 and move the rest down */
  5303. if (selected) {
  5304. if (selected->prio != 0) {
  5305. for (i = 0; i < total_pools; i++) {
  5306. pool = pools[i];
  5307. if (pool->prio < selected->prio)
  5308. pool->prio++;
  5309. }
  5310. selected->prio = 0;
  5311. }
  5312. }
  5313. switch (pool_strategy) {
  5314. /* All of these set to the master pool */
  5315. case POOL_BALANCE:
  5316. case POOL_FAILOVER:
  5317. case POOL_LOADBALANCE:
  5318. for (i = 0; i < total_pools; i++) {
  5319. pool = priority_pool(i);
  5320. if (pool_unusable(pool))
  5321. continue;
  5322. pool_no = pool->pool_no;
  5323. break;
  5324. }
  5325. break;
  5326. /* Both of these simply increment and cycle */
  5327. case POOL_ROUNDROBIN:
  5328. case POOL_ROTATE:
  5329. if (selected && !selected->idle) {
  5330. pool_no = selected->pool_no;
  5331. break;
  5332. }
  5333. next_pool = pool_no;
  5334. /* Select the next alive pool */
  5335. for (i = 1; i < total_pools; i++) {
  5336. next_pool++;
  5337. if (next_pool >= total_pools)
  5338. next_pool = 0;
  5339. pool = pools[next_pool];
  5340. if (pool_unusable(pool))
  5341. continue;
  5342. pool_no = next_pool;
  5343. break;
  5344. }
  5345. break;
  5346. default:
  5347. break;
  5348. }
  5349. currentpool = pools[pool_no];
  5350. pool = currentpool;
  5351. cg_wunlock(&control_lock);
  5352. /* Set the lagging flag to avoid pool not providing work fast enough
  5353. * messages in failover only mode since we have to get all fresh work
  5354. * as in restart_threads */
  5355. if (opt_fail_only)
  5356. pool_tset(pool, &pool->lagging);
  5357. if (pool != last_pool)
  5358. {
  5359. pool->block_id = 0;
  5360. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5361. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5362. if (pool_localgen(pool) || opt_fail_only)
  5363. clear_pool_work(last_pool);
  5364. }
  5365. }
  5366. mutex_lock(&lp_lock);
  5367. pthread_cond_broadcast(&lp_cond);
  5368. mutex_unlock(&lp_lock);
  5369. }
  5370. static void discard_work(struct work *work)
  5371. {
  5372. if (!work->clone && !work->rolls && !work->mined) {
  5373. if (work->pool) {
  5374. work->pool->discarded_work++;
  5375. work->pool->quota_used--;
  5376. work->pool->works--;
  5377. }
  5378. total_discarded++;
  5379. applog(LOG_DEBUG, "Discarded work");
  5380. } else
  5381. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5382. free_work(work);
  5383. }
  5384. static void wake_gws(void)
  5385. {
  5386. mutex_lock(stgd_lock);
  5387. pthread_cond_signal(&gws_cond);
  5388. mutex_unlock(stgd_lock);
  5389. }
  5390. static void discard_stale(void)
  5391. {
  5392. struct work *work, *tmp;
  5393. int stale = 0;
  5394. mutex_lock(stgd_lock);
  5395. HASH_ITER(hh, staged_work, work, tmp) {
  5396. if (stale_work(work, false)) {
  5397. HASH_DEL(staged_work, work);
  5398. discard_work(work);
  5399. stale++;
  5400. staged_full = false;
  5401. }
  5402. }
  5403. pthread_cond_signal(&gws_cond);
  5404. mutex_unlock(stgd_lock);
  5405. if (stale)
  5406. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5407. }
  5408. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5409. {
  5410. bool rv;
  5411. struct timeval tv, orig;
  5412. ldiv_t d;
  5413. d = ldiv(ustime, 1000000);
  5414. tv = (struct timeval){
  5415. .tv_sec = d.quot,
  5416. .tv_usec = d.rem,
  5417. };
  5418. orig = work->tv_staged;
  5419. timersub(&orig, &tv, &work->tv_staged);
  5420. rv = stale_work(work, share);
  5421. work->tv_staged = orig;
  5422. return rv;
  5423. }
  5424. static
  5425. void pool_update_work_restart_time(struct pool * const pool)
  5426. {
  5427. pool->work_restart_time = time(NULL);
  5428. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5429. }
  5430. static void restart_threads(void)
  5431. {
  5432. struct pool *cp = current_pool();
  5433. int i;
  5434. struct thr_info *thr;
  5435. /* Artificially set the lagging flag to avoid pool not providing work
  5436. * fast enough messages after every long poll */
  5437. pool_tset(cp, &cp->lagging);
  5438. /* Discard staged work that is now stale */
  5439. discard_stale();
  5440. rd_lock(&mining_thr_lock);
  5441. for (i = 0; i < mining_threads; i++)
  5442. {
  5443. thr = mining_thr[i];
  5444. thr->work_restart = true;
  5445. }
  5446. for (i = 0; i < mining_threads; i++)
  5447. {
  5448. thr = mining_thr[i];
  5449. notifier_wake(thr->work_restart_notifier);
  5450. }
  5451. rd_unlock(&mining_thr_lock);
  5452. }
  5453. static
  5454. void blkhashstr(char *rv, const unsigned char *hash)
  5455. {
  5456. unsigned char hash_swap[32];
  5457. swap256(hash_swap, hash);
  5458. swap32tole(hash_swap, hash_swap, 32 / 4);
  5459. bin2hex(rv, hash_swap, 32);
  5460. }
  5461. static void set_curblock(char *hexstr, unsigned char *hash)
  5462. {
  5463. unsigned char hash_swap[32];
  5464. current_block_id = ((uint32_t*)hash)[0];
  5465. strcpy(current_block, hexstr);
  5466. swap256(hash_swap, hash);
  5467. swap32tole(hash_swap, hash_swap, 32 / 4);
  5468. cg_wlock(&ch_lock);
  5469. block_time = time(NULL);
  5470. __update_block_title(hash_swap);
  5471. free(current_fullhash);
  5472. current_fullhash = malloc(65);
  5473. bin2hex(current_fullhash, hash_swap, 32);
  5474. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5475. cg_wunlock(&ch_lock);
  5476. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5477. }
  5478. /* Search to see if this string is from a block that has been seen before */
  5479. static bool block_exists(char *hexstr)
  5480. {
  5481. struct block *s;
  5482. rd_lock(&blk_lock);
  5483. HASH_FIND_STR(blocks, hexstr, s);
  5484. rd_unlock(&blk_lock);
  5485. if (s)
  5486. return true;
  5487. return false;
  5488. }
  5489. /* Tests if this work is from a block that has been seen before */
  5490. static inline bool from_existing_block(struct work *work)
  5491. {
  5492. char hexstr[37];
  5493. bool ret;
  5494. bin2hex(hexstr, work->data + 8, 18);
  5495. ret = block_exists(hexstr);
  5496. return ret;
  5497. }
  5498. static int block_sort(struct block *blocka, struct block *blockb)
  5499. {
  5500. return blocka->block_no - blockb->block_no;
  5501. }
  5502. static void set_blockdiff(const struct work *work)
  5503. {
  5504. unsigned char target[32];
  5505. double diff;
  5506. uint64_t diff64;
  5507. real_block_target(target, work->data);
  5508. diff = target_diff(target);
  5509. diff64 = diff;
  5510. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5511. format_unit2(net_hashrate, sizeof(net_hashrate),
  5512. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5513. if (unlikely(current_diff != diff))
  5514. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5515. current_diff = diff;
  5516. }
  5517. static bool test_work_current(struct work *work)
  5518. {
  5519. bool ret = true;
  5520. char hexstr[65];
  5521. if (work->mandatory)
  5522. return ret;
  5523. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5524. /* Hack to work around dud work sneaking into test */
  5525. bin2hex(hexstr, work->data + 8, 18);
  5526. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5527. goto out_free;
  5528. struct pool * const pool = work->pool;
  5529. /* Search to see if this block exists yet and if not, consider it a
  5530. * new block and set the current block details to this one */
  5531. if (!block_exists(hexstr))
  5532. {
  5533. struct block *s = calloc(sizeof(struct block), 1);
  5534. int deleted_block = 0;
  5535. ret = false;
  5536. if (unlikely(!s))
  5537. quit (1, "test_work_current OOM");
  5538. strcpy(s->hash, hexstr);
  5539. s->block_no = new_blocks++;
  5540. wr_lock(&blk_lock);
  5541. /* Only keep the last hour's worth of blocks in memory since
  5542. * work from blocks before this is virtually impossible and we
  5543. * want to prevent memory usage from continually rising */
  5544. if (HASH_COUNT(blocks) > 6)
  5545. {
  5546. struct block *oldblock;
  5547. HASH_SORT(blocks, block_sort);
  5548. oldblock = blocks;
  5549. deleted_block = oldblock->block_no;
  5550. HASH_DEL(blocks, oldblock);
  5551. free(oldblock);
  5552. }
  5553. HASH_ADD_STR(blocks, hash, s);
  5554. set_blockdiff(work);
  5555. wr_unlock(&blk_lock);
  5556. pool->block_id = block_id;
  5557. pool_update_work_restart_time(pool);
  5558. if (deleted_block)
  5559. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5560. #if BLKMAKER_VERSION > 1
  5561. template_nonce = 0;
  5562. #endif
  5563. set_curblock(hexstr, &work->data[4]);
  5564. if (unlikely(new_blocks == 1))
  5565. goto out_free;
  5566. if (!work->stratum)
  5567. {
  5568. if (work->longpoll)
  5569. {
  5570. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5571. pool->pool_no);
  5572. }
  5573. else
  5574. if (have_longpoll)
  5575. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5576. else
  5577. applog(LOG_NOTICE, "New block detected on network");
  5578. }
  5579. restart_threads();
  5580. }
  5581. else
  5582. {
  5583. bool restart = false;
  5584. if (unlikely(pool->block_id != block_id))
  5585. {
  5586. bool was_active = pool->block_id != 0;
  5587. pool->block_id = block_id;
  5588. pool_update_work_restart_time(pool);
  5589. if (!work->longpoll)
  5590. update_last_work(work);
  5591. if (was_active)
  5592. {
  5593. // Pool actively changed block
  5594. if (pool == current_pool())
  5595. restart = true;
  5596. if (block_id == current_block_id)
  5597. {
  5598. // Caught up, only announce if this pool is the one in use
  5599. if (restart)
  5600. applog(LOG_NOTICE, "%s %d caught up to new block",
  5601. work->longpoll ? "Longpoll from pool" : "Pool",
  5602. pool->pool_no);
  5603. }
  5604. else
  5605. {
  5606. // Switched to a block we know, but not the latest... why?
  5607. // This might detect pools trying to double-spend or 51%,
  5608. // but let's not make any accusations until it's had time
  5609. // in the real world.
  5610. blkhashstr(hexstr, &work->data[4]);
  5611. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5612. work->longpoll ? "Longpoll from pool" : "Pool",
  5613. pool->pool_no,
  5614. hexstr);
  5615. }
  5616. }
  5617. }
  5618. if (work->longpoll)
  5619. {
  5620. struct pool * const cp = current_pool();
  5621. ++pool->work_restart_id;
  5622. update_last_work(work);
  5623. pool_update_work_restart_time(pool);
  5624. applog(
  5625. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5626. "Longpoll from pool %d requested work update",
  5627. pool->pool_no);
  5628. if ((!restart) && pool == cp)
  5629. restart = true;
  5630. }
  5631. if (restart)
  5632. restart_threads();
  5633. }
  5634. work->longpoll = false;
  5635. out_free:
  5636. return ret;
  5637. }
  5638. static int tv_sort(struct work *worka, struct work *workb)
  5639. {
  5640. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5641. }
  5642. static bool work_rollable(struct work *work)
  5643. {
  5644. return (!work->clone && work->rolltime);
  5645. }
  5646. static bool hash_push(struct work *work)
  5647. {
  5648. bool rc = true;
  5649. mutex_lock(stgd_lock);
  5650. if (work_rollable(work))
  5651. staged_rollable++;
  5652. if (likely(!getq->frozen)) {
  5653. HASH_ADD_INT(staged_work, id, work);
  5654. HASH_SORT(staged_work, tv_sort);
  5655. } else
  5656. rc = false;
  5657. pthread_cond_broadcast(&getq->cond);
  5658. mutex_unlock(stgd_lock);
  5659. return rc;
  5660. }
  5661. static void stage_work(struct work *work)
  5662. {
  5663. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5664. work->id, work->pool->pool_no);
  5665. work->work_restart_id = work->pool->work_restart_id;
  5666. work->pool->last_work_time = time(NULL);
  5667. cgtime(&work->pool->tv_last_work_time);
  5668. test_work_current(work);
  5669. work->pool->works++;
  5670. hash_push(work);
  5671. }
  5672. #ifdef HAVE_CURSES
  5673. int curses_int(const char *query)
  5674. {
  5675. int ret;
  5676. char *cvar;
  5677. cvar = curses_input(query);
  5678. if (unlikely(!cvar))
  5679. return -1;
  5680. ret = atoi(cvar);
  5681. free(cvar);
  5682. return ret;
  5683. }
  5684. #endif
  5685. #ifdef HAVE_CURSES
  5686. static bool input_pool(bool live);
  5687. #endif
  5688. #ifdef HAVE_CURSES
  5689. static void display_pool_summary(struct pool *pool)
  5690. {
  5691. double efficiency = 0.0;
  5692. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5693. int pool_secs;
  5694. if (curses_active_locked()) {
  5695. wlog("Pool: %s\n", pool->rpc_url);
  5696. if (pool->solved)
  5697. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5698. if (!pool->has_stratum)
  5699. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5700. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5701. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5702. wlog(" Accepted shares: %d\n", pool->accepted);
  5703. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5704. pool->rejected, pool->stale_shares,
  5705. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5706. );
  5707. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5708. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5709. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5710. wlog(" Network transfer: %s (%s)\n",
  5711. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5712. (float)pool->cgminer_pool_stats.net_bytes_received,
  5713. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5714. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5715. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5716. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5717. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5718. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5719. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5720. wlog(" Items worked on: %d\n", pool->works);
  5721. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5722. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5723. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5724. unlock_curses();
  5725. }
  5726. }
  5727. #endif
  5728. /* We can't remove the memory used for this struct pool because there may
  5729. * still be work referencing it. We just remove it from the pools list */
  5730. void remove_pool(struct pool *pool)
  5731. {
  5732. int i, last_pool = total_pools - 1;
  5733. struct pool *other;
  5734. /* Boost priority of any lower prio than this one */
  5735. for (i = 0; i < total_pools; i++) {
  5736. other = pools[i];
  5737. if (other->prio > pool->prio)
  5738. other->prio--;
  5739. }
  5740. if (pool->pool_no < last_pool) {
  5741. /* Swap the last pool for this one */
  5742. (pools[last_pool])->pool_no = pool->pool_no;
  5743. pools[pool->pool_no] = pools[last_pool];
  5744. }
  5745. /* Give it an invalid number */
  5746. pool->pool_no = total_pools;
  5747. pool->removed = true;
  5748. pool->has_stratum = false;
  5749. total_pools--;
  5750. }
  5751. /* add a mutex if this needs to be thread safe in the future */
  5752. static struct JE {
  5753. char *buf;
  5754. struct JE *next;
  5755. } *jedata = NULL;
  5756. static void json_escape_free()
  5757. {
  5758. struct JE *jeptr = jedata;
  5759. struct JE *jenext;
  5760. jedata = NULL;
  5761. while (jeptr) {
  5762. jenext = jeptr->next;
  5763. free(jeptr->buf);
  5764. free(jeptr);
  5765. jeptr = jenext;
  5766. }
  5767. }
  5768. static
  5769. char *json_escape(const char *str)
  5770. {
  5771. struct JE *jeptr;
  5772. char *buf, *ptr;
  5773. /* 2x is the max, may as well just allocate that */
  5774. ptr = buf = malloc(strlen(str) * 2 + 1);
  5775. jeptr = malloc(sizeof(*jeptr));
  5776. jeptr->buf = buf;
  5777. jeptr->next = jedata;
  5778. jedata = jeptr;
  5779. while (*str) {
  5780. if (*str == '\\' || *str == '"')
  5781. *(ptr++) = '\\';
  5782. *(ptr++) = *(str++);
  5783. }
  5784. *ptr = '\0';
  5785. return buf;
  5786. }
  5787. static
  5788. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5789. {
  5790. if (!elist)
  5791. return;
  5792. static struct string_elist *entry;
  5793. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5794. bool first = true;
  5795. DL_FOREACH(elist, entry)
  5796. {
  5797. const char * const s = entry->string;
  5798. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5799. first = false;
  5800. }
  5801. fprintf(fcfg, "\n]");
  5802. }
  5803. void write_config(FILE *fcfg)
  5804. {
  5805. int i;
  5806. /* Write pool values */
  5807. fputs("{\n\"pools\" : [", fcfg);
  5808. for(i = 0; i < total_pools; i++) {
  5809. struct pool *pool = pools[i];
  5810. if (pool->quota != 1) {
  5811. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5812. pool->quota,
  5813. json_escape(pool->rpc_url));
  5814. } else {
  5815. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5816. json_escape(pool->rpc_url));
  5817. }
  5818. if (pool->rpc_proxy)
  5819. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5820. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5821. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5822. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5823. if (pool->force_rollntime)
  5824. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5825. fprintf(fcfg, "\n\t}");
  5826. }
  5827. fputs("\n]\n", fcfg);
  5828. #ifdef HAVE_OPENCL
  5829. write_config_opencl(fcfg);
  5830. #endif
  5831. #ifdef WANT_CPUMINE
  5832. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5833. #endif
  5834. /* Simple bool and int options */
  5835. struct opt_table *opt;
  5836. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5837. char *p, *name = strdup(opt->names);
  5838. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5839. if (p[1] != '-')
  5840. continue;
  5841. if (opt->type & OPT_NOARG &&
  5842. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5843. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5844. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5845. if (opt->type & OPT_HASARG &&
  5846. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5847. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5848. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5849. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5850. opt->desc != opt_hidden &&
  5851. 0 <= *(int *)opt->u.arg)
  5852. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5853. }
  5854. }
  5855. /* Special case options */
  5856. if (request_target_str)
  5857. {
  5858. if (request_pdiff == (long)request_pdiff)
  5859. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5860. else
  5861. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5862. }
  5863. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5864. if (pool_strategy == POOL_BALANCE)
  5865. fputs(",\n\"balance\" : true", fcfg);
  5866. if (pool_strategy == POOL_LOADBALANCE)
  5867. fputs(",\n\"load-balance\" : true", fcfg);
  5868. if (pool_strategy == POOL_ROUNDROBIN)
  5869. fputs(",\n\"round-robin\" : true", fcfg);
  5870. if (pool_strategy == POOL_ROTATE)
  5871. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5872. #if defined(unix) || defined(__APPLE__)
  5873. if (opt_stderr_cmd && *opt_stderr_cmd)
  5874. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5875. #endif // defined(unix)
  5876. if (opt_kernel_path && *opt_kernel_path) {
  5877. char *kpath = strdup(opt_kernel_path);
  5878. if (kpath[strlen(kpath)-1] == '/')
  5879. kpath[strlen(kpath)-1] = 0;
  5880. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5881. free(kpath);
  5882. }
  5883. if (schedstart.enable)
  5884. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5885. if (schedstop.enable)
  5886. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5887. if (opt_socks_proxy && *opt_socks_proxy)
  5888. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5889. _write_config_string_elist(fcfg, "scan", scan_devices);
  5890. #ifdef USE_LIBMICROHTTPD
  5891. if (httpsrv_port != -1)
  5892. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5893. #endif
  5894. #ifdef USE_LIBEVENT
  5895. if (stratumsrv_port != -1)
  5896. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5897. #endif
  5898. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5899. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5900. if (opt_api_allow)
  5901. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5902. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5903. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5904. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5905. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5906. if (*opt_api_mcast_des)
  5907. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5908. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5909. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5910. if (opt_api_groups)
  5911. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5912. fputs("\n}\n", fcfg);
  5913. json_escape_free();
  5914. }
  5915. void zero_bestshare(void)
  5916. {
  5917. int i;
  5918. best_diff = 0;
  5919. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5920. for (i = 0; i < total_pools; i++) {
  5921. struct pool *pool = pools[i];
  5922. pool->best_diff = 0;
  5923. }
  5924. }
  5925. void zero_stats(void)
  5926. {
  5927. int i;
  5928. applog(LOG_DEBUG, "Zeroing stats");
  5929. cgtime(&total_tv_start);
  5930. miner_started = total_tv_start;
  5931. total_rolling = 0;
  5932. total_mhashes_done = 0;
  5933. total_getworks = 0;
  5934. total_accepted = 0;
  5935. total_rejected = 0;
  5936. hw_errors = 0;
  5937. total_stale = 0;
  5938. total_discarded = 0;
  5939. total_bytes_rcvd = total_bytes_sent = 0;
  5940. new_blocks = 0;
  5941. local_work = 0;
  5942. total_go = 0;
  5943. total_ro = 0;
  5944. total_secs = 1.0;
  5945. total_diff1 = 0;
  5946. total_bad_diff1 = 0;
  5947. found_blocks = 0;
  5948. total_diff_accepted = 0;
  5949. total_diff_rejected = 0;
  5950. total_diff_stale = 0;
  5951. #ifdef HAVE_CURSES
  5952. awidth = rwidth = swidth = hwwidth = 1;
  5953. #endif
  5954. for (i = 0; i < total_pools; i++) {
  5955. struct pool *pool = pools[i];
  5956. pool->getwork_requested = 0;
  5957. pool->accepted = 0;
  5958. pool->rejected = 0;
  5959. pool->solved = 0;
  5960. pool->getwork_requested = 0;
  5961. pool->stale_shares = 0;
  5962. pool->discarded_work = 0;
  5963. pool->getfail_occasions = 0;
  5964. pool->remotefail_occasions = 0;
  5965. pool->last_share_time = 0;
  5966. pool->diff1 = 0;
  5967. pool->diff_accepted = 0;
  5968. pool->diff_rejected = 0;
  5969. pool->diff_stale = 0;
  5970. pool->last_share_diff = 0;
  5971. pool->cgminer_stats.start_tv = total_tv_start;
  5972. pool->cgminer_stats.getwork_calls = 0;
  5973. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5974. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5975. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5976. pool->cgminer_pool_stats.getwork_calls = 0;
  5977. pool->cgminer_pool_stats.getwork_attempts = 0;
  5978. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5979. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5980. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5981. pool->cgminer_pool_stats.min_diff = 0;
  5982. pool->cgminer_pool_stats.max_diff = 0;
  5983. pool->cgminer_pool_stats.min_diff_count = 0;
  5984. pool->cgminer_pool_stats.max_diff_count = 0;
  5985. pool->cgminer_pool_stats.times_sent = 0;
  5986. pool->cgminer_pool_stats.bytes_sent = 0;
  5987. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5988. pool->cgminer_pool_stats.times_received = 0;
  5989. pool->cgminer_pool_stats.bytes_received = 0;
  5990. pool->cgminer_pool_stats.net_bytes_received = 0;
  5991. }
  5992. zero_bestshare();
  5993. for (i = 0; i < total_devices; ++i) {
  5994. struct cgpu_info *cgpu = get_devices(i);
  5995. mutex_lock(&hash_lock);
  5996. cgpu->total_mhashes = 0;
  5997. cgpu->accepted = 0;
  5998. cgpu->rejected = 0;
  5999. cgpu->stale = 0;
  6000. cgpu->hw_errors = 0;
  6001. cgpu->utility = 0.0;
  6002. cgpu->utility_diff1 = 0;
  6003. cgpu->last_share_pool_time = 0;
  6004. cgpu->bad_diff1 = 0;
  6005. cgpu->diff1 = 0;
  6006. cgpu->diff_accepted = 0;
  6007. cgpu->diff_rejected = 0;
  6008. cgpu->diff_stale = 0;
  6009. cgpu->last_share_diff = 0;
  6010. cgpu->thread_fail_init_count = 0;
  6011. cgpu->thread_zero_hash_count = 0;
  6012. cgpu->thread_fail_queue_count = 0;
  6013. cgpu->dev_sick_idle_60_count = 0;
  6014. cgpu->dev_dead_idle_600_count = 0;
  6015. cgpu->dev_nostart_count = 0;
  6016. cgpu->dev_over_heat_count = 0;
  6017. cgpu->dev_thermal_cutoff_count = 0;
  6018. cgpu->dev_comms_error_count = 0;
  6019. cgpu->dev_throttle_count = 0;
  6020. cgpu->cgminer_stats.start_tv = total_tv_start;
  6021. cgpu->cgminer_stats.getwork_calls = 0;
  6022. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6023. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6024. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6025. mutex_unlock(&hash_lock);
  6026. }
  6027. }
  6028. #ifdef HAVE_CURSES
  6029. static
  6030. void loginput_mode(const int size)
  6031. {
  6032. clear_logwin();
  6033. loginput_size = size;
  6034. check_winsizes();
  6035. }
  6036. static void display_pools(void)
  6037. {
  6038. struct pool *pool;
  6039. int selected, i, j;
  6040. char input;
  6041. loginput_mode(7 + total_pools);
  6042. immedok(logwin, true);
  6043. updated:
  6044. for (j = 0; j < total_pools; j++) {
  6045. for (i = 0; i < total_pools; i++) {
  6046. pool = pools[i];
  6047. if (pool->prio != j)
  6048. continue;
  6049. if (pool == current_pool())
  6050. wattron(logwin, A_BOLD);
  6051. if (pool->enabled != POOL_ENABLED)
  6052. wattron(logwin, A_DIM);
  6053. wlogprint("%d: ", pool->prio);
  6054. switch (pool->enabled) {
  6055. case POOL_ENABLED:
  6056. wlogprint("Enabled ");
  6057. break;
  6058. case POOL_DISABLED:
  6059. wlogprint("Disabled ");
  6060. break;
  6061. case POOL_REJECTING:
  6062. wlogprint("Rejectin ");
  6063. break;
  6064. }
  6065. _wlogprint(pool_proto_str(pool));
  6066. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6067. pool->quota,
  6068. pool->pool_no,
  6069. pool->rpc_url, pool->rpc_user);
  6070. wattroff(logwin, A_BOLD | A_DIM);
  6071. break; //for (i = 0; i < total_pools; i++)
  6072. }
  6073. }
  6074. retry:
  6075. wlogprint("\nCurrent pool management strategy: %s\n",
  6076. strategies[pool_strategy].s);
  6077. if (pool_strategy == POOL_ROTATE)
  6078. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6079. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6080. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6081. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6082. wlogprint("Or press any other key to continue\n");
  6083. logwin_update();
  6084. input = getch();
  6085. if (!strncasecmp(&input, "a", 1)) {
  6086. if (opt_benchmark)
  6087. {
  6088. wlogprint("Cannot add pools in benchmark mode");
  6089. goto retry;
  6090. }
  6091. input_pool(true);
  6092. goto updated;
  6093. } else if (!strncasecmp(&input, "r", 1)) {
  6094. if (total_pools <= 1) {
  6095. wlogprint("Cannot remove last pool");
  6096. goto retry;
  6097. }
  6098. selected = curses_int("Select pool number");
  6099. if (selected < 0 || selected >= total_pools) {
  6100. wlogprint("Invalid selection\n");
  6101. goto retry;
  6102. }
  6103. pool = pools[selected];
  6104. if (pool == current_pool())
  6105. switch_pools(NULL);
  6106. if (pool == current_pool()) {
  6107. wlogprint("Unable to remove pool due to activity\n");
  6108. goto retry;
  6109. }
  6110. disable_pool(pool);
  6111. remove_pool(pool);
  6112. goto updated;
  6113. } else if (!strncasecmp(&input, "s", 1)) {
  6114. selected = curses_int("Select pool number");
  6115. if (selected < 0 || selected >= total_pools) {
  6116. wlogprint("Invalid selection\n");
  6117. goto retry;
  6118. }
  6119. pool = pools[selected];
  6120. enable_pool(pool);
  6121. switch_pools(pool);
  6122. goto updated;
  6123. } else if (!strncasecmp(&input, "d", 1)) {
  6124. if (enabled_pools <= 1) {
  6125. wlogprint("Cannot disable last pool");
  6126. goto retry;
  6127. }
  6128. selected = curses_int("Select pool number");
  6129. if (selected < 0 || selected >= total_pools) {
  6130. wlogprint("Invalid selection\n");
  6131. goto retry;
  6132. }
  6133. pool = pools[selected];
  6134. disable_pool(pool);
  6135. if (pool == current_pool())
  6136. switch_pools(NULL);
  6137. goto updated;
  6138. } else if (!strncasecmp(&input, "e", 1)) {
  6139. selected = curses_int("Select pool number");
  6140. if (selected < 0 || selected >= total_pools) {
  6141. wlogprint("Invalid selection\n");
  6142. goto retry;
  6143. }
  6144. pool = pools[selected];
  6145. enable_pool(pool);
  6146. if (pool->prio < current_pool()->prio)
  6147. switch_pools(pool);
  6148. goto updated;
  6149. } else if (!strncasecmp(&input, "c", 1)) {
  6150. for (i = 0; i <= TOP_STRATEGY; i++)
  6151. wlogprint("%d: %s\n", i, strategies[i].s);
  6152. selected = curses_int("Select strategy number type");
  6153. if (selected < 0 || selected > TOP_STRATEGY) {
  6154. wlogprint("Invalid selection\n");
  6155. goto retry;
  6156. }
  6157. if (selected == POOL_ROTATE) {
  6158. opt_rotate_period = curses_int("Select interval in minutes");
  6159. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6160. opt_rotate_period = 0;
  6161. wlogprint("Invalid selection\n");
  6162. goto retry;
  6163. }
  6164. }
  6165. pool_strategy = selected;
  6166. switch_pools(NULL);
  6167. goto updated;
  6168. } else if (!strncasecmp(&input, "i", 1)) {
  6169. selected = curses_int("Select pool number");
  6170. if (selected < 0 || selected >= total_pools) {
  6171. wlogprint("Invalid selection\n");
  6172. goto retry;
  6173. }
  6174. pool = pools[selected];
  6175. display_pool_summary(pool);
  6176. goto retry;
  6177. } else if (!strncasecmp(&input, "q", 1)) {
  6178. selected = curses_int("Select pool number");
  6179. if (selected < 0 || selected >= total_pools) {
  6180. wlogprint("Invalid selection\n");
  6181. goto retry;
  6182. }
  6183. pool = pools[selected];
  6184. selected = curses_int("Set quota");
  6185. if (selected < 0) {
  6186. wlogprint("Invalid negative quota\n");
  6187. goto retry;
  6188. }
  6189. pool->quota = selected;
  6190. adjust_quota_gcd();
  6191. goto updated;
  6192. } else if (!strncasecmp(&input, "f", 1)) {
  6193. opt_fail_only ^= true;
  6194. goto updated;
  6195. } else if (!strncasecmp(&input, "p", 1)) {
  6196. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6197. if (!prilist)
  6198. {
  6199. wlogprint("Not changing priorities\n");
  6200. goto retry;
  6201. }
  6202. int res = prioritize_pools(prilist, &i);
  6203. free(prilist);
  6204. switch (res) {
  6205. case MSG_NOPOOL:
  6206. wlogprint("No pools\n");
  6207. goto retry;
  6208. case MSG_MISPID:
  6209. wlogprint("Missing pool id parameter\n");
  6210. goto retry;
  6211. case MSG_INVPID:
  6212. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6213. goto retry;
  6214. case MSG_DUPPID:
  6215. wlogprint("Duplicate pool specified %d\n", i);
  6216. goto retry;
  6217. case MSG_POOLPRIO:
  6218. default:
  6219. goto updated;
  6220. }
  6221. }
  6222. immedok(logwin, false);
  6223. loginput_mode(0);
  6224. }
  6225. static const char *summary_detail_level_str(void)
  6226. {
  6227. if (opt_compact)
  6228. return "compact";
  6229. if (opt_show_procs)
  6230. return "processors";
  6231. return "devices";
  6232. }
  6233. static void display_options(void)
  6234. {
  6235. int selected;
  6236. char input;
  6237. immedok(logwin, true);
  6238. loginput_mode(12);
  6239. retry:
  6240. clear_logwin();
  6241. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6242. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6243. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6244. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6245. opt_debug_console ? "on" : "off",
  6246. want_per_device_stats? "on" : "off",
  6247. opt_quiet ? "on" : "off",
  6248. opt_log_output ? "on" : "off",
  6249. opt_protocol ? "on" : "off",
  6250. opt_worktime ? "on" : "off",
  6251. summary_detail_level_str(),
  6252. opt_log_interval,
  6253. opt_weighed_stats ? "weighed" : "absolute");
  6254. wlogprint("Select an option or any other key to return\n");
  6255. logwin_update();
  6256. input = getch();
  6257. if (!strncasecmp(&input, "q", 1)) {
  6258. opt_quiet ^= true;
  6259. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6260. goto retry;
  6261. } else if (!strncasecmp(&input, "v", 1)) {
  6262. opt_log_output ^= true;
  6263. if (opt_log_output)
  6264. opt_quiet = false;
  6265. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6266. goto retry;
  6267. } else if (!strncasecmp(&input, "n", 1)) {
  6268. opt_log_output = false;
  6269. opt_debug_console = false;
  6270. opt_quiet = false;
  6271. opt_protocol = false;
  6272. opt_compact = false;
  6273. opt_show_procs = false;
  6274. devsummaryYOffset = 0;
  6275. want_per_device_stats = false;
  6276. wlogprint("Output mode reset to normal\n");
  6277. switch_logsize();
  6278. goto retry;
  6279. } else if (!strncasecmp(&input, "d", 1)) {
  6280. opt_debug = true;
  6281. opt_debug_console ^= true;
  6282. opt_log_output = opt_debug_console;
  6283. if (opt_debug_console)
  6284. opt_quiet = false;
  6285. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6286. goto retry;
  6287. } else if (!strncasecmp(&input, "m", 1)) {
  6288. if (opt_compact)
  6289. opt_compact = false;
  6290. else
  6291. if (!opt_show_procs)
  6292. opt_show_procs = true;
  6293. else
  6294. {
  6295. opt_compact = true;
  6296. opt_show_procs = false;
  6297. devsummaryYOffset = 0;
  6298. }
  6299. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6300. switch_logsize();
  6301. goto retry;
  6302. } else if (!strncasecmp(&input, "p", 1)) {
  6303. want_per_device_stats ^= true;
  6304. opt_log_output = want_per_device_stats;
  6305. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6306. goto retry;
  6307. } else if (!strncasecmp(&input, "r", 1)) {
  6308. opt_protocol ^= true;
  6309. if (opt_protocol)
  6310. opt_quiet = false;
  6311. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6312. goto retry;
  6313. } else if (!strncasecmp(&input, "c", 1))
  6314. clear_logwin();
  6315. else if (!strncasecmp(&input, "l", 1)) {
  6316. selected = curses_int("Interval in seconds");
  6317. if (selected < 0 || selected > 9999) {
  6318. wlogprint("Invalid selection\n");
  6319. goto retry;
  6320. }
  6321. opt_log_interval = selected;
  6322. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6323. goto retry;
  6324. } else if (!strncasecmp(&input, "s", 1)) {
  6325. opt_realquiet = true;
  6326. } else if (!strncasecmp(&input, "w", 1)) {
  6327. opt_worktime ^= true;
  6328. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6329. goto retry;
  6330. } else if (!strncasecmp(&input, "t", 1)) {
  6331. opt_weighed_stats ^= true;
  6332. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6333. goto retry;
  6334. } else if (!strncasecmp(&input, "z", 1)) {
  6335. zero_stats();
  6336. goto retry;
  6337. }
  6338. immedok(logwin, false);
  6339. loginput_mode(0);
  6340. }
  6341. #endif
  6342. void default_save_file(char *filename)
  6343. {
  6344. #if defined(unix) || defined(__APPLE__)
  6345. if (getenv("HOME") && *getenv("HOME")) {
  6346. strcpy(filename, getenv("HOME"));
  6347. strcat(filename, "/");
  6348. }
  6349. else
  6350. strcpy(filename, "");
  6351. strcat(filename, ".bfgminer/");
  6352. mkdir(filename, 0777);
  6353. #else
  6354. strcpy(filename, "");
  6355. #endif
  6356. strcat(filename, def_conf);
  6357. }
  6358. #ifdef HAVE_CURSES
  6359. static void set_options(void)
  6360. {
  6361. int selected;
  6362. char input;
  6363. immedok(logwin, true);
  6364. loginput_mode(8);
  6365. retry:
  6366. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6367. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6368. "[W]rite config file\n[B]FGMiner restart\n",
  6369. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6370. wlogprint("Select an option or any other key to return\n");
  6371. logwin_update();
  6372. input = getch();
  6373. if (!strncasecmp(&input, "q", 1)) {
  6374. selected = curses_int("Extra work items to queue");
  6375. if (selected < 0 || selected > 9999) {
  6376. wlogprint("Invalid selection\n");
  6377. goto retry;
  6378. }
  6379. opt_queue = selected;
  6380. goto retry;
  6381. } else if (!strncasecmp(&input, "l", 1)) {
  6382. if (want_longpoll)
  6383. stop_longpoll();
  6384. else
  6385. start_longpoll();
  6386. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6387. goto retry;
  6388. } else if (!strncasecmp(&input, "s", 1)) {
  6389. selected = curses_int("Set scantime in seconds");
  6390. if (selected < 0 || selected > 9999) {
  6391. wlogprint("Invalid selection\n");
  6392. goto retry;
  6393. }
  6394. opt_scantime = selected;
  6395. goto retry;
  6396. } else if (!strncasecmp(&input, "e", 1)) {
  6397. selected = curses_int("Set expiry time in seconds");
  6398. if (selected < 0 || selected > 9999) {
  6399. wlogprint("Invalid selection\n");
  6400. goto retry;
  6401. }
  6402. opt_expiry = selected;
  6403. goto retry;
  6404. } else if (!strncasecmp(&input, "r", 1)) {
  6405. selected = curses_int("Retries before failing (-1 infinite)");
  6406. if (selected < -1 || selected > 9999) {
  6407. wlogprint("Invalid selection\n");
  6408. goto retry;
  6409. }
  6410. opt_retries = selected;
  6411. goto retry;
  6412. } else if (!strncasecmp(&input, "w", 1)) {
  6413. FILE *fcfg;
  6414. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6415. default_save_file(filename);
  6416. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6417. str = curses_input(prompt);
  6418. if (str) {
  6419. struct stat statbuf;
  6420. strcpy(filename, str);
  6421. free(str);
  6422. if (!stat(filename, &statbuf)) {
  6423. wlogprint("File exists, overwrite?\n");
  6424. input = getch();
  6425. if (strncasecmp(&input, "y", 1))
  6426. goto retry;
  6427. }
  6428. }
  6429. fcfg = fopen(filename, "w");
  6430. if (!fcfg) {
  6431. wlogprint("Cannot open or create file\n");
  6432. goto retry;
  6433. }
  6434. write_config(fcfg);
  6435. fclose(fcfg);
  6436. goto retry;
  6437. } else if (!strncasecmp(&input, "b", 1)) {
  6438. wlogprint("Are you sure?\n");
  6439. input = getch();
  6440. if (!strncasecmp(&input, "y", 1))
  6441. app_restart();
  6442. else
  6443. clear_logwin();
  6444. } else
  6445. clear_logwin();
  6446. loginput_mode(0);
  6447. immedok(logwin, false);
  6448. }
  6449. int scan_serial(const char *);
  6450. static
  6451. void _managetui_msg(const char *repr, const char **msg)
  6452. {
  6453. if (*msg)
  6454. {
  6455. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6456. wattron(logwin, A_BOLD);
  6457. wlogprint("%s", *msg);
  6458. wattroff(logwin, A_BOLD);
  6459. *msg = NULL;
  6460. }
  6461. logwin_update();
  6462. }
  6463. void manage_device(void)
  6464. {
  6465. char logline[256];
  6466. const char *msg = NULL;
  6467. struct cgpu_info *cgpu;
  6468. const struct device_drv *drv;
  6469. selecting_device = true;
  6470. immedok(logwin, true);
  6471. loginput_mode(12);
  6472. devchange:
  6473. if (unlikely(!total_devices))
  6474. {
  6475. clear_logwin();
  6476. wlogprint("(no devices)\n");
  6477. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6478. _managetui_msg("(none)", &msg);
  6479. int input = getch();
  6480. switch (input)
  6481. {
  6482. case '+': case '=': // add new device
  6483. goto addnew;
  6484. default:
  6485. goto out;
  6486. }
  6487. }
  6488. cgpu = devices[selected_device];
  6489. drv = cgpu->drv;
  6490. refresh_devstatus();
  6491. refresh:
  6492. clear_logwin();
  6493. wlogprint("Select processor to manage using up/down arrow keys\n");
  6494. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6495. wattron(logwin, A_BOLD);
  6496. wlogprint("%s", logline);
  6497. wattroff(logwin, A_BOLD);
  6498. wlogprint("\n");
  6499. if (cgpu->dev_manufacturer)
  6500. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6501. else
  6502. if (cgpu->dev_product)
  6503. wlogprint(" %s\n", cgpu->dev_product);
  6504. if (cgpu->dev_serial)
  6505. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6506. if (cgpu->kname)
  6507. wlogprint("Kernel: %s\n", cgpu->kname);
  6508. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6509. drv->proc_wlogprint_status(cgpu);
  6510. wlogprint("\n");
  6511. // TODO: Last share at TIMESTAMP on pool N
  6512. // TODO: Custom device info/commands
  6513. if (cgpu->deven != DEV_ENABLED)
  6514. wlogprint("[E]nable ");
  6515. if (cgpu->deven != DEV_DISABLED)
  6516. wlogprint("[D]isable ");
  6517. if (drv->identify_device)
  6518. wlogprint("[I]dentify ");
  6519. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6520. drv->proc_tui_wlogprint_choices(cgpu);
  6521. wlogprint("\n");
  6522. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6523. _managetui_msg(cgpu->proc_repr, &msg);
  6524. while (true)
  6525. {
  6526. int input = getch();
  6527. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6528. switch (input) {
  6529. case 'd': case 'D':
  6530. if (cgpu->deven == DEV_DISABLED)
  6531. msg = "Processor already disabled\n";
  6532. else
  6533. {
  6534. cgpu->deven = DEV_DISABLED;
  6535. msg = "Processor being disabled\n";
  6536. }
  6537. goto refresh;
  6538. case 'e': case 'E':
  6539. if (cgpu->deven == DEV_ENABLED)
  6540. msg = "Processor already enabled\n";
  6541. else
  6542. {
  6543. proc_enable(cgpu);
  6544. msg = "Processor being enabled\n";
  6545. }
  6546. goto refresh;
  6547. case 'i': case 'I':
  6548. if (drv->identify_device && drv->identify_device(cgpu))
  6549. msg = "Identify command sent\n";
  6550. else
  6551. goto key_default;
  6552. goto refresh;
  6553. case KEY_DOWN:
  6554. if (selected_device >= total_devices - 1)
  6555. break;
  6556. ++selected_device;
  6557. goto devchange;
  6558. case KEY_UP:
  6559. if (selected_device <= 0)
  6560. break;
  6561. --selected_device;
  6562. goto devchange;
  6563. case KEY_NPAGE:
  6564. {
  6565. if (selected_device >= total_devices - 1)
  6566. break;
  6567. struct cgpu_info *mdev = devices[selected_device]->device;
  6568. do {
  6569. ++selected_device;
  6570. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6571. goto devchange;
  6572. }
  6573. case KEY_PPAGE:
  6574. {
  6575. if (selected_device <= 0)
  6576. break;
  6577. struct cgpu_info *mdev = devices[selected_device]->device;
  6578. do {
  6579. --selected_device;
  6580. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6581. goto devchange;
  6582. }
  6583. case '/': case '?': // find device
  6584. {
  6585. static char *pattern = NULL;
  6586. char *newpattern = curses_input("Enter pattern");
  6587. if (newpattern)
  6588. {
  6589. free(pattern);
  6590. pattern = newpattern;
  6591. }
  6592. else
  6593. if (!pattern)
  6594. pattern = calloc(1, 1);
  6595. int match = cgpu_search(pattern, selected_device + 1);
  6596. if (match == -1)
  6597. {
  6598. msg = "Couldn't find device\n";
  6599. goto refresh;
  6600. }
  6601. selected_device = match;
  6602. goto devchange;
  6603. }
  6604. case '+': case '=': // add new device
  6605. {
  6606. addnew:
  6607. clear_logwin();
  6608. _wlogprint(
  6609. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6610. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6611. "For example: erupter:"
  6612. #ifdef WIN32
  6613. "\\\\.\\COM40"
  6614. #elif defined(__APPLE__)
  6615. "/dev/cu.SLAB_USBtoUART"
  6616. #else
  6617. "/dev/ttyUSB39"
  6618. #endif
  6619. "\n"
  6620. );
  6621. char *scanser = curses_input("Enter target");
  6622. if (scan_serial(scanser))
  6623. {
  6624. selected_device = total_devices - 1;
  6625. msg = "Device scan succeeded\n";
  6626. }
  6627. else
  6628. msg = "No new devices found\n";
  6629. goto devchange;
  6630. }
  6631. case 'Q': case 'q':
  6632. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6633. case '\x1b': // ESC
  6634. case KEY_ENTER:
  6635. case '\r': // Ctrl-M on Windows, with nonl
  6636. #ifdef PADENTER
  6637. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6638. #endif
  6639. case '\n':
  6640. goto out;
  6641. default:
  6642. ;
  6643. key_default:
  6644. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6645. {
  6646. msg = drv->proc_tui_handle_choice(cgpu, input);
  6647. if (msg)
  6648. goto refresh;
  6649. }
  6650. }
  6651. }
  6652. out:
  6653. selecting_device = false;
  6654. loginput_mode(0);
  6655. immedok(logwin, false);
  6656. }
  6657. void show_help(void)
  6658. {
  6659. loginput_mode(11);
  6660. // NOTE: wlogprint is a macro with a buffer limit
  6661. _wlogprint(
  6662. "LU: oldest explicit work update currently being used for new work\n"
  6663. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6664. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6665. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6666. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6667. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6668. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6669. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6670. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6671. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6672. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6673. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6674. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6675. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6676. "\n"
  6677. "devices/processors hashing (only for totals line), hottest temperature\n"
  6678. );
  6679. wlogprint(
  6680. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6681. , opt_log_interval);
  6682. _wlogprint(
  6683. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6684. "HW: hardware errors / % nonces invalid\n"
  6685. "\n"
  6686. "Press any key to clear"
  6687. );
  6688. logwin_update();
  6689. getch();
  6690. loginput_mode(0);
  6691. }
  6692. static void *input_thread(void __maybe_unused *userdata)
  6693. {
  6694. RenameThread("input");
  6695. if (!curses_active)
  6696. return NULL;
  6697. while (1) {
  6698. int input;
  6699. input = getch();
  6700. switch (input) {
  6701. case 'h': case 'H': case '?':
  6702. case KEY_F(1):
  6703. show_help();
  6704. break;
  6705. case 'q': case 'Q':
  6706. kill_work();
  6707. return NULL;
  6708. case 'd': case 'D':
  6709. display_options();
  6710. break;
  6711. case 'm': case 'M':
  6712. manage_device();
  6713. break;
  6714. case 'p': case 'P':
  6715. display_pools();
  6716. break;
  6717. case 's': case 'S':
  6718. set_options();
  6719. break;
  6720. #ifdef HAVE_CURSES
  6721. case KEY_DOWN:
  6722. {
  6723. const int visible_lines = logcursor - devcursor;
  6724. const int invisible_lines = total_lines - visible_lines;
  6725. if (devsummaryYOffset <= -invisible_lines)
  6726. break;
  6727. devsummaryYOffset -= 2;
  6728. }
  6729. case KEY_UP:
  6730. if (devsummaryYOffset == 0)
  6731. break;
  6732. ++devsummaryYOffset;
  6733. refresh_devstatus();
  6734. break;
  6735. case KEY_NPAGE:
  6736. {
  6737. const int visible_lines = logcursor - devcursor;
  6738. const int invisible_lines = total_lines - visible_lines;
  6739. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6740. devsummaryYOffset = -invisible_lines;
  6741. else
  6742. devsummaryYOffset -= visible_lines;
  6743. refresh_devstatus();
  6744. break;
  6745. }
  6746. case KEY_PPAGE:
  6747. {
  6748. const int visible_lines = logcursor - devcursor;
  6749. if (devsummaryYOffset + visible_lines >= 0)
  6750. devsummaryYOffset = 0;
  6751. else
  6752. devsummaryYOffset += visible_lines;
  6753. refresh_devstatus();
  6754. break;
  6755. }
  6756. #endif
  6757. }
  6758. if (opt_realquiet) {
  6759. disable_curses();
  6760. break;
  6761. }
  6762. }
  6763. return NULL;
  6764. }
  6765. #endif
  6766. static void *api_thread(void *userdata)
  6767. {
  6768. struct thr_info *mythr = userdata;
  6769. pthread_detach(pthread_self());
  6770. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6771. RenameThread("rpc");
  6772. api(api_thr_id);
  6773. mythr->has_pth = false;
  6774. return NULL;
  6775. }
  6776. void thread_reportin(struct thr_info *thr)
  6777. {
  6778. cgtime(&thr->last);
  6779. thr->cgpu->status = LIFE_WELL;
  6780. thr->getwork = 0;
  6781. thr->cgpu->device_last_well = time(NULL);
  6782. }
  6783. void thread_reportout(struct thr_info *thr)
  6784. {
  6785. thr->getwork = time(NULL);
  6786. }
  6787. static void hashmeter(int thr_id, struct timeval *diff,
  6788. uint64_t hashes_done)
  6789. {
  6790. char logstatusline[256];
  6791. struct timeval temp_tv_end, total_diff;
  6792. double secs;
  6793. double local_secs;
  6794. static double local_mhashes_done = 0;
  6795. double local_mhashes = (double)hashes_done / 1000000.0;
  6796. bool showlog = false;
  6797. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6798. char rejpcbuf[6];
  6799. char bnbuf[6];
  6800. struct thr_info *thr;
  6801. /* Update the last time this thread reported in */
  6802. if (thr_id >= 0) {
  6803. thr = get_thread(thr_id);
  6804. cgtime(&(thr->last));
  6805. thr->cgpu->device_last_well = time(NULL);
  6806. }
  6807. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6808. /* So we can call hashmeter from a non worker thread */
  6809. if (thr_id >= 0) {
  6810. struct cgpu_info *cgpu = thr->cgpu;
  6811. int threadobj = cgpu->threads ?: 1;
  6812. double thread_rolling = 0.0;
  6813. int i;
  6814. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6815. thr_id, hashes_done, hashes_done / 1000 / secs);
  6816. /* Rolling average for each thread and each device */
  6817. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6818. for (i = 0; i < threadobj; i++)
  6819. thread_rolling += cgpu->thr[i]->rolling;
  6820. mutex_lock(&hash_lock);
  6821. decay_time(&cgpu->rolling, thread_rolling, secs);
  6822. cgpu->total_mhashes += local_mhashes;
  6823. mutex_unlock(&hash_lock);
  6824. // If needed, output detailed, per-device stats
  6825. if (want_per_device_stats) {
  6826. struct timeval now;
  6827. struct timeval elapsed;
  6828. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6829. cgtime(&now);
  6830. timersub(&now, last_msg_tv, &elapsed);
  6831. if (opt_log_interval <= elapsed.tv_sec) {
  6832. struct cgpu_info *cgpu = thr->cgpu;
  6833. char logline[255];
  6834. *last_msg_tv = now;
  6835. get_statline(logline, sizeof(logline), cgpu);
  6836. if (!curses_active) {
  6837. printf("%s \r", logline);
  6838. fflush(stdout);
  6839. } else
  6840. applog(LOG_INFO, "%s", logline);
  6841. }
  6842. }
  6843. }
  6844. /* Totals are updated by all threads so can race without locking */
  6845. mutex_lock(&hash_lock);
  6846. cgtime(&temp_tv_end);
  6847. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6848. total_mhashes_done += local_mhashes;
  6849. local_mhashes_done += local_mhashes;
  6850. /* Only update with opt_log_interval */
  6851. if (total_diff.tv_sec < opt_log_interval)
  6852. goto out_unlock;
  6853. showlog = true;
  6854. cgtime(&total_tv_end);
  6855. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6856. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6857. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6858. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6859. total_secs = (double)total_diff.tv_sec +
  6860. ((double)total_diff.tv_usec / 1000000.0);
  6861. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6862. multi_format_unit_array2(
  6863. ((char*[]){cHr, aHr, uHr}),
  6864. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  6865. true, "h/s", H2B_SHORT,
  6866. 3,
  6867. 1e6*total_rolling,
  6868. 1e6*total_mhashes_done / total_secs,
  6869. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6870. int ui_accepted, ui_rejected, ui_stale;
  6871. if (opt_weighed_stats)
  6872. {
  6873. ui_accepted = total_diff_accepted;
  6874. ui_rejected = total_diff_rejected;
  6875. ui_stale = total_diff_stale;
  6876. }
  6877. else
  6878. {
  6879. ui_accepted = total_accepted;
  6880. ui_rejected = total_rejected;
  6881. ui_stale = total_stale;
  6882. }
  6883. #ifdef HAVE_CURSES
  6884. if (curses_active_locked()) {
  6885. float temp = 0;
  6886. struct cgpu_info *proc, *last_working_dev = NULL;
  6887. int i, working_devs = 0, working_procs = 0;
  6888. int divx;
  6889. bool bad = false;
  6890. // Find the highest temperature of all processors
  6891. for (i = 0; i < total_devices; ++i)
  6892. {
  6893. proc = get_devices(i);
  6894. if (proc->temp > temp)
  6895. temp = proc->temp;
  6896. if (unlikely(proc->deven == DEV_DISABLED))
  6897. ; // Just need to block it off from both conditions
  6898. else
  6899. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6900. {
  6901. if (proc->rolling > .1)
  6902. {
  6903. ++working_procs;
  6904. if (proc->device != last_working_dev)
  6905. {
  6906. ++working_devs;
  6907. last_working_dev = proc->device;
  6908. }
  6909. }
  6910. }
  6911. else
  6912. bad = true;
  6913. }
  6914. if (working_devs == working_procs)
  6915. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6916. else
  6917. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6918. divx = 7;
  6919. if (opt_show_procs && !opt_compact)
  6920. ++divx;
  6921. if (bad)
  6922. {
  6923. divx += sizeof(U8_BAD_START)-1;
  6924. strcpy(&statusline[divx], U8_BAD_END);
  6925. divx += sizeof(U8_BAD_END)-1;
  6926. }
  6927. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6928. format_statline(statusline, sizeof(statusline),
  6929. cHr, aHr,
  6930. uHr,
  6931. ui_accepted,
  6932. ui_rejected,
  6933. ui_stale,
  6934. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6935. hw_errors,
  6936. total_bad_diff1, total_bad_diff1 + total_diff1);
  6937. unlock_curses();
  6938. }
  6939. #endif
  6940. // Add a space
  6941. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6942. uHr[5] = ' ';
  6943. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6944. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6945. snprintf(logstatusline, sizeof(logstatusline),
  6946. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6947. want_per_device_stats ? "ALL " : "",
  6948. opt_log_interval,
  6949. cHr, aHr,
  6950. uHr,
  6951. ui_accepted,
  6952. ui_rejected,
  6953. ui_stale,
  6954. rejpcbuf,
  6955. hw_errors,
  6956. bnbuf
  6957. );
  6958. local_mhashes_done = 0;
  6959. out_unlock:
  6960. mutex_unlock(&hash_lock);
  6961. if (showlog) {
  6962. if (!curses_active) {
  6963. printf("%s \r", logstatusline);
  6964. fflush(stdout);
  6965. } else
  6966. applog(LOG_INFO, "%s", logstatusline);
  6967. }
  6968. }
  6969. void hashmeter2(struct thr_info *thr)
  6970. {
  6971. struct timeval tv_now, tv_elapsed;
  6972. timerclear(&thr->tv_hashes_done);
  6973. cgtime(&tv_now);
  6974. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6975. /* Update the hashmeter at most 5 times per second */
  6976. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6977. tv_elapsed.tv_sec >= opt_log_interval) {
  6978. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6979. thr->hashes_done = 0;
  6980. thr->tv_lastupdate = tv_now;
  6981. }
  6982. }
  6983. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6984. struct stratum_share *sshare)
  6985. {
  6986. struct work *work = sshare->work;
  6987. share_result(val, res_val, err_val, work, false, "");
  6988. }
  6989. /* Parses stratum json responses and tries to find the id that the request
  6990. * matched to and treat it accordingly. */
  6991. bool parse_stratum_response(struct pool *pool, char *s)
  6992. {
  6993. json_t *val = NULL, *err_val, *res_val, *id_val;
  6994. struct stratum_share *sshare;
  6995. json_error_t err;
  6996. bool ret = false;
  6997. int id;
  6998. val = JSON_LOADS(s, &err);
  6999. if (!val) {
  7000. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7001. goto out;
  7002. }
  7003. res_val = json_object_get(val, "result");
  7004. err_val = json_object_get(val, "error");
  7005. id_val = json_object_get(val, "id");
  7006. if (json_is_null(id_val) || !id_val) {
  7007. char *ss;
  7008. if (err_val)
  7009. ss = json_dumps(err_val, JSON_INDENT(3));
  7010. else
  7011. ss = strdup("(unknown reason)");
  7012. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7013. free(ss);
  7014. goto out;
  7015. }
  7016. if (!json_is_integer(id_val)) {
  7017. if (json_is_string(id_val)
  7018. && !strncmp(json_string_value(id_val), "txlist", 6))
  7019. {
  7020. const bool is_array = json_is_array(res_val);
  7021. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7022. is_array ? "transaction list" : "no-transaction-list response",
  7023. pool->pool_no, &json_string_value(id_val)[6]);
  7024. if (!is_array)
  7025. {
  7026. // No need to wait for a timeout
  7027. timer_unset(&pool->swork.tv_transparency);
  7028. pool_set_opaque(pool, true);
  7029. goto fishy;
  7030. }
  7031. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7032. // We only care about a transaction list for the current job id
  7033. goto fishy;
  7034. // Check that the transactions actually hash to the merkle links
  7035. {
  7036. unsigned maxtx = 1 << pool->swork.merkles;
  7037. unsigned mintx = maxtx >> 1;
  7038. --maxtx;
  7039. unsigned acttx = (unsigned)json_array_size(res_val);
  7040. if (acttx < mintx || acttx > maxtx) {
  7041. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7042. pool->pool_no, acttx, mintx, maxtx);
  7043. goto fishy;
  7044. }
  7045. // TODO: Check hashes match actual merkle links
  7046. }
  7047. pool_set_opaque(pool, false);
  7048. timer_unset(&pool->swork.tv_transparency);
  7049. fishy:
  7050. ret = true;
  7051. }
  7052. goto out;
  7053. }
  7054. id = json_integer_value(id_val);
  7055. mutex_lock(&sshare_lock);
  7056. HASH_FIND_INT(stratum_shares, &id, sshare);
  7057. if (sshare)
  7058. HASH_DEL(stratum_shares, sshare);
  7059. mutex_unlock(&sshare_lock);
  7060. if (!sshare) {
  7061. double pool_diff;
  7062. /* Since the share is untracked, we can only guess at what the
  7063. * work difficulty is based on the current pool diff. */
  7064. cg_rlock(&pool->data_lock);
  7065. pool_diff = pool->swork.diff;
  7066. cg_runlock(&pool->data_lock);
  7067. if (json_is_true(res_val)) {
  7068. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7069. /* We don't know what device this came from so we can't
  7070. * attribute the work to the relevant cgpu */
  7071. mutex_lock(&stats_lock);
  7072. total_accepted++;
  7073. pool->accepted++;
  7074. total_diff_accepted += pool_diff;
  7075. pool->diff_accepted += pool_diff;
  7076. mutex_unlock(&stats_lock);
  7077. } else {
  7078. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7079. mutex_lock(&stats_lock);
  7080. total_rejected++;
  7081. pool->rejected++;
  7082. total_diff_rejected += pool_diff;
  7083. pool->diff_rejected += pool_diff;
  7084. mutex_unlock(&stats_lock);
  7085. }
  7086. goto out;
  7087. }
  7088. else {
  7089. mutex_lock(&submitting_lock);
  7090. --total_submitting;
  7091. mutex_unlock(&submitting_lock);
  7092. }
  7093. stratum_share_result(val, res_val, err_val, sshare);
  7094. free_work(sshare->work);
  7095. free(sshare);
  7096. ret = true;
  7097. out:
  7098. if (val)
  7099. json_decref(val);
  7100. return ret;
  7101. }
  7102. static void shutdown_stratum(struct pool *pool)
  7103. {
  7104. // Shut down Stratum as if we never had it
  7105. pool->stratum_active = false;
  7106. pool->stratum_init = false;
  7107. pool->has_stratum = false;
  7108. shutdown(pool->sock, SHUT_RDWR);
  7109. free(pool->stratum_url);
  7110. if (pool->sockaddr_url == pool->stratum_url)
  7111. pool->sockaddr_url = NULL;
  7112. pool->stratum_url = NULL;
  7113. }
  7114. void clear_stratum_shares(struct pool *pool)
  7115. {
  7116. int my_mining_threads = mining_threads; // Cached outside of locking
  7117. struct stratum_share *sshare, *tmpshare;
  7118. struct work *work;
  7119. struct cgpu_info *cgpu;
  7120. double diff_cleared = 0;
  7121. double thr_diff_cleared[my_mining_threads];
  7122. int cleared = 0;
  7123. int thr_cleared[my_mining_threads];
  7124. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7125. for (int i = 0; i < my_mining_threads; ++i)
  7126. {
  7127. thr_diff_cleared[i] = 0;
  7128. thr_cleared[i] = 0;
  7129. }
  7130. mutex_lock(&sshare_lock);
  7131. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7132. work = sshare->work;
  7133. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7134. HASH_DEL(stratum_shares, sshare);
  7135. sharelog("disconnect", work);
  7136. diff_cleared += sshare->work->work_difficulty;
  7137. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7138. ++thr_cleared[work->thr_id];
  7139. free_work(sshare->work);
  7140. free(sshare);
  7141. cleared++;
  7142. }
  7143. }
  7144. mutex_unlock(&sshare_lock);
  7145. if (cleared) {
  7146. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7147. mutex_lock(&stats_lock);
  7148. pool->stale_shares += cleared;
  7149. total_stale += cleared;
  7150. pool->diff_stale += diff_cleared;
  7151. total_diff_stale += diff_cleared;
  7152. for (int i = 0; i < my_mining_threads; ++i)
  7153. if (thr_cleared[i])
  7154. {
  7155. cgpu = get_thr_cgpu(i);
  7156. cgpu->diff_stale += thr_diff_cleared[i];
  7157. cgpu->stale += thr_cleared[i];
  7158. }
  7159. mutex_unlock(&stats_lock);
  7160. mutex_lock(&submitting_lock);
  7161. total_submitting -= cleared;
  7162. mutex_unlock(&submitting_lock);
  7163. }
  7164. }
  7165. static void resubmit_stratum_shares(struct pool *pool)
  7166. {
  7167. struct stratum_share *sshare, *tmpshare;
  7168. struct work *work;
  7169. unsigned resubmitted = 0;
  7170. mutex_lock(&sshare_lock);
  7171. mutex_lock(&submitting_lock);
  7172. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7173. if (sshare->work->pool != pool)
  7174. continue;
  7175. HASH_DEL(stratum_shares, sshare);
  7176. work = sshare->work;
  7177. DL_APPEND(submit_waiting, work);
  7178. free(sshare);
  7179. ++resubmitted;
  7180. }
  7181. mutex_unlock(&submitting_lock);
  7182. mutex_unlock(&sshare_lock);
  7183. if (resubmitted) {
  7184. notifier_wake(submit_waiting_notifier);
  7185. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7186. }
  7187. }
  7188. static void clear_pool_work(struct pool *pool)
  7189. {
  7190. struct work *work, *tmp;
  7191. int cleared = 0;
  7192. mutex_lock(stgd_lock);
  7193. HASH_ITER(hh, staged_work, work, tmp) {
  7194. if (work->pool == pool) {
  7195. HASH_DEL(staged_work, work);
  7196. free_work(work);
  7197. cleared++;
  7198. staged_full = false;
  7199. }
  7200. }
  7201. mutex_unlock(stgd_lock);
  7202. }
  7203. static int cp_prio(void)
  7204. {
  7205. int prio;
  7206. cg_rlock(&control_lock);
  7207. prio = currentpool->prio;
  7208. cg_runlock(&control_lock);
  7209. return prio;
  7210. }
  7211. /* We only need to maintain a secondary pool connection when we need the
  7212. * capacity to get work from the backup pools while still on the primary */
  7213. static bool cnx_needed(struct pool *pool)
  7214. {
  7215. struct pool *cp;
  7216. if (pool->enabled != POOL_ENABLED)
  7217. return false;
  7218. /* Idle stratum pool needs something to kick it alive again */
  7219. if (pool->has_stratum && pool->idle)
  7220. return true;
  7221. /* Getwork pools without opt_fail_only need backup pools up to be able
  7222. * to leak shares */
  7223. cp = current_pool();
  7224. if (pool_actively_desired(pool, cp))
  7225. return true;
  7226. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7227. return true;
  7228. /* Keep the connection open to allow any stray shares to be submitted
  7229. * on switching pools for 2 minutes. */
  7230. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7231. return true;
  7232. /* If the pool has only just come to life and is higher priority than
  7233. * the current pool keep the connection open so we can fail back to
  7234. * it. */
  7235. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7236. return true;
  7237. if (pool_unworkable(cp))
  7238. return true;
  7239. /* We've run out of work, bring anything back to life. */
  7240. if (no_work)
  7241. return true;
  7242. return false;
  7243. }
  7244. static void wait_lpcurrent(struct pool *pool);
  7245. static void pool_resus(struct pool *pool);
  7246. static void gen_stratum_work(struct pool *pool, struct work *work);
  7247. static void stratum_resumed(struct pool *pool)
  7248. {
  7249. if (!pool->stratum_notify)
  7250. return;
  7251. if (pool_tclear(pool, &pool->idle)) {
  7252. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7253. pool_resus(pool);
  7254. }
  7255. }
  7256. static bool supports_resume(struct pool *pool)
  7257. {
  7258. bool ret;
  7259. cg_rlock(&pool->data_lock);
  7260. ret = (pool->sessionid != NULL);
  7261. cg_runlock(&pool->data_lock);
  7262. return ret;
  7263. }
  7264. /* One stratum thread per pool that has stratum waits on the socket checking
  7265. * for new messages and for the integrity of the socket connection. We reset
  7266. * the connection based on the integrity of the receive side only as the send
  7267. * side will eventually expire data it fails to send. */
  7268. static void *stratum_thread(void *userdata)
  7269. {
  7270. struct pool *pool = (struct pool *)userdata;
  7271. pthread_detach(pthread_self());
  7272. char threadname[20];
  7273. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7274. RenameThread(threadname);
  7275. srand(time(NULL) + (intptr_t)userdata);
  7276. while (42) {
  7277. struct timeval timeout;
  7278. int sel_ret;
  7279. fd_set rd;
  7280. char *s;
  7281. int sock;
  7282. if (unlikely(!pool->has_stratum))
  7283. break;
  7284. /* Check to see whether we need to maintain this connection
  7285. * indefinitely or just bring it up when we switch to this
  7286. * pool */
  7287. while (true)
  7288. {
  7289. sock = pool->sock;
  7290. if (sock == INVSOCK)
  7291. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7292. pool->pool_no);
  7293. else
  7294. if (!sock_full(pool) && !cnx_needed(pool))
  7295. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7296. pool->pool_no);
  7297. else
  7298. break;
  7299. suspend_stratum(pool);
  7300. clear_stratum_shares(pool);
  7301. clear_pool_work(pool);
  7302. wait_lpcurrent(pool);
  7303. if (!restart_stratum(pool)) {
  7304. pool_died(pool);
  7305. while (!restart_stratum(pool)) {
  7306. if (pool->removed)
  7307. goto out;
  7308. cgsleep_ms(30000);
  7309. }
  7310. }
  7311. }
  7312. FD_ZERO(&rd);
  7313. FD_SET(sock, &rd);
  7314. timeout.tv_sec = 120;
  7315. timeout.tv_usec = 0;
  7316. /* If we fail to receive any notify messages for 2 minutes we
  7317. * assume the connection has been dropped and treat this pool
  7318. * as dead */
  7319. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7320. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7321. s = NULL;
  7322. } else
  7323. s = recv_line(pool);
  7324. if (!s) {
  7325. if (!pool->has_stratum)
  7326. break;
  7327. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7328. pool->getfail_occasions++;
  7329. total_go++;
  7330. mutex_lock(&pool->stratum_lock);
  7331. pool->stratum_active = pool->stratum_notify = false;
  7332. pool->sock = INVSOCK;
  7333. mutex_unlock(&pool->stratum_lock);
  7334. /* If the socket to our stratum pool disconnects, all
  7335. * submissions need to be discarded or resent. */
  7336. if (!supports_resume(pool))
  7337. clear_stratum_shares(pool);
  7338. else
  7339. resubmit_stratum_shares(pool);
  7340. clear_pool_work(pool);
  7341. if (pool == current_pool())
  7342. restart_threads();
  7343. if (restart_stratum(pool))
  7344. continue;
  7345. shutdown_stratum(pool);
  7346. pool_died(pool);
  7347. break;
  7348. }
  7349. /* Check this pool hasn't died while being a backup pool and
  7350. * has not had its idle flag cleared */
  7351. stratum_resumed(pool);
  7352. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7353. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7354. free(s);
  7355. if (pool->swork.clean) {
  7356. struct work *work = make_work();
  7357. /* Generate a single work item to update the current
  7358. * block database */
  7359. pool->swork.clean = false;
  7360. gen_stratum_work(pool, work);
  7361. /* Try to extract block height from coinbase scriptSig */
  7362. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7363. unsigned char cb_height_sz;
  7364. cb_height_sz = bin_height[-1];
  7365. if (cb_height_sz == 3) {
  7366. // FIXME: The block number will overflow this by AD 2173
  7367. uint32_t block_id = ((uint32_t*)work->data)[1];
  7368. uint32_t height = 0;
  7369. memcpy(&height, bin_height, 3);
  7370. height = le32toh(height);
  7371. have_block_height(block_id, height);
  7372. }
  7373. ++pool->work_restart_id;
  7374. pool_update_work_restart_time(pool);
  7375. if (test_work_current(work)) {
  7376. /* Only accept a work update if this stratum
  7377. * connection is from the current pool */
  7378. struct pool * const cp = current_pool();
  7379. if (pool == cp)
  7380. restart_threads();
  7381. applog(
  7382. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7383. "Stratum from pool %d requested work update", pool->pool_no);
  7384. } else
  7385. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7386. free_work(work);
  7387. }
  7388. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7389. // More than 4 timmills past since requested transactions
  7390. timer_unset(&pool->swork.tv_transparency);
  7391. pool_set_opaque(pool, true);
  7392. }
  7393. }
  7394. out:
  7395. return NULL;
  7396. }
  7397. static void init_stratum_thread(struct pool *pool)
  7398. {
  7399. have_longpoll = true;
  7400. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7401. quit(1, "Failed to create stratum thread");
  7402. }
  7403. static void *longpoll_thread(void *userdata);
  7404. static bool stratum_works(struct pool *pool)
  7405. {
  7406. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7407. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7408. return false;
  7409. if (pool->stratum_active)
  7410. return true;
  7411. if (!initiate_stratum(pool))
  7412. return false;
  7413. return true;
  7414. }
  7415. static bool pool_active(struct pool *pool, bool pinging)
  7416. {
  7417. struct timeval tv_getwork, tv_getwork_reply;
  7418. bool ret = false;
  7419. json_t *val;
  7420. CURL *curl;
  7421. int rolltime;
  7422. char *rpc_req;
  7423. struct work *work;
  7424. enum pool_protocol proto;
  7425. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7426. /* This is the central point we activate stratum when we can */
  7427. curl = curl_easy_init();
  7428. if (unlikely(!curl)) {
  7429. applog(LOG_ERR, "CURL initialisation failed");
  7430. return false;
  7431. }
  7432. if (!(want_gbt || want_getwork))
  7433. goto nohttp;
  7434. work = make_work();
  7435. /* Probe for GBT support on first pass */
  7436. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7437. tryagain:
  7438. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7439. work->pool = pool;
  7440. if (!rpc_req)
  7441. goto out;
  7442. pool->probed = false;
  7443. cgtime(&tv_getwork);
  7444. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7445. true, false, &rolltime, pool, false);
  7446. cgtime(&tv_getwork_reply);
  7447. free(rpc_req);
  7448. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7449. * and if so, switch to that in preference to getwork if it works */
  7450. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7451. if (!pool->has_stratum) {
  7452. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7453. if (!pool->rpc_url)
  7454. pool->rpc_url = strdup(pool->stratum_url);
  7455. pool->has_stratum = true;
  7456. }
  7457. free_work(work);
  7458. if (val)
  7459. json_decref(val);
  7460. retry_stratum:
  7461. curl_easy_cleanup(curl);
  7462. /* We create the stratum thread for each pool just after
  7463. * successful authorisation. Once the init flag has been set
  7464. * we never unset it and the stratum thread is responsible for
  7465. * setting/unsetting the active flag */
  7466. bool init = pool_tset(pool, &pool->stratum_init);
  7467. if (!init) {
  7468. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7469. if (ret)
  7470. {
  7471. detect_algo = 2;
  7472. init_stratum_thread(pool);
  7473. }
  7474. else
  7475. pool_tclear(pool, &pool->stratum_init);
  7476. return ret;
  7477. }
  7478. return pool->stratum_active;
  7479. }
  7480. else if (pool->has_stratum)
  7481. shutdown_stratum(pool);
  7482. if (val) {
  7483. bool rc;
  7484. json_t *res;
  7485. res = json_object_get(val, "result");
  7486. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7487. goto badwork;
  7488. work->rolltime = rolltime;
  7489. rc = work_decode(pool, work, val);
  7490. if (rc) {
  7491. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7492. pool->pool_no, pool->rpc_url);
  7493. work->pool = pool;
  7494. copy_time(&work->tv_getwork, &tv_getwork);
  7495. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7496. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7497. calc_diff(work, 0);
  7498. update_last_work(work);
  7499. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7500. stage_work(work);
  7501. total_getworks++;
  7502. pool->getwork_requested++;
  7503. ret = true;
  7504. cgtime(&pool->tv_idle);
  7505. } else {
  7506. badwork:
  7507. json_decref(val);
  7508. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7509. pool->pool_no, pool->rpc_url);
  7510. pool->proto = proto = pool_protocol_fallback(proto);
  7511. if (PLP_NONE != proto)
  7512. goto tryagain;
  7513. free_work(work);
  7514. goto out;
  7515. }
  7516. json_decref(val);
  7517. if (proto != pool->proto) {
  7518. pool->proto = proto;
  7519. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7520. }
  7521. if (pool->lp_url)
  7522. goto out;
  7523. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7524. const struct blktmpl_longpoll_req *lp;
  7525. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7526. // NOTE: work_decode takes care of lp id
  7527. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7528. if (!pool->lp_url)
  7529. {
  7530. ret = false;
  7531. goto out;
  7532. }
  7533. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7534. }
  7535. else
  7536. if (pool->hdr_path && want_getwork) {
  7537. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7538. if (!pool->lp_url)
  7539. {
  7540. ret = false;
  7541. goto out;
  7542. }
  7543. pool->lp_proto = PLP_GETWORK;
  7544. } else
  7545. pool->lp_url = NULL;
  7546. if (want_longpoll && !pool->lp_started) {
  7547. pool->lp_started = true;
  7548. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7549. quit(1, "Failed to create pool longpoll thread");
  7550. }
  7551. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7552. pool->proto = proto;
  7553. goto tryagain;
  7554. } else {
  7555. free_work(work);
  7556. nohttp:
  7557. /* If we failed to parse a getwork, this could be a stratum
  7558. * url without the prefix stratum+tcp:// so let's check it */
  7559. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7560. pool->has_stratum = true;
  7561. goto retry_stratum;
  7562. }
  7563. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7564. pool->pool_no, pool->rpc_url);
  7565. if (!pinging)
  7566. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7567. }
  7568. out:
  7569. curl_easy_cleanup(curl);
  7570. return ret;
  7571. }
  7572. static void pool_resus(struct pool *pool)
  7573. {
  7574. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7575. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7576. else
  7577. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7578. }
  7579. static struct work *hash_pop(void)
  7580. {
  7581. struct work *work = NULL, *tmp;
  7582. int hc;
  7583. struct timespec ts;
  7584. retry:
  7585. mutex_lock(stgd_lock);
  7586. while (!HASH_COUNT(staged_work))
  7587. {
  7588. if (unlikely(staged_full))
  7589. {
  7590. if (likely(opt_queue < 10 + mining_threads))
  7591. {
  7592. ++opt_queue;
  7593. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7594. }
  7595. else
  7596. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7597. staged_full = false; // Let it fill up before triggering an underrun again
  7598. no_work = true;
  7599. }
  7600. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7601. pthread_cond_signal(&gws_cond);
  7602. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7603. {
  7604. run_cmd(cmd_idle);
  7605. pthread_cond_signal(&gws_cond);
  7606. pthread_cond_wait(&getq->cond, stgd_lock);
  7607. }
  7608. }
  7609. no_work = false;
  7610. hc = HASH_COUNT(staged_work);
  7611. /* Find clone work if possible, to allow masters to be reused */
  7612. if (hc > staged_rollable) {
  7613. HASH_ITER(hh, staged_work, work, tmp) {
  7614. if (!work_rollable(work))
  7615. break;
  7616. }
  7617. } else
  7618. work = staged_work;
  7619. if (can_roll(work) && should_roll(work))
  7620. {
  7621. // Instead of consuming it, force it to be cloned and grab the clone
  7622. mutex_unlock(stgd_lock);
  7623. clone_available();
  7624. goto retry;
  7625. }
  7626. HASH_DEL(staged_work, work);
  7627. if (work_rollable(work))
  7628. staged_rollable--;
  7629. /* Signal the getwork scheduler to look for more work */
  7630. pthread_cond_signal(&gws_cond);
  7631. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7632. pthread_cond_signal(&getq->cond);
  7633. mutex_unlock(stgd_lock);
  7634. work->pool->last_work_time = time(NULL);
  7635. cgtime(&work->pool->tv_last_work_time);
  7636. return work;
  7637. }
  7638. /* Clones work by rolling it if possible, and returning a clone instead of the
  7639. * original work item which gets staged again to possibly be rolled again in
  7640. * the future */
  7641. static struct work *clone_work(struct work *work)
  7642. {
  7643. int mrs = mining_threads + opt_queue - total_staged();
  7644. struct work *work_clone;
  7645. bool cloned;
  7646. if (mrs < 1)
  7647. return work;
  7648. cloned = false;
  7649. work_clone = make_clone(work);
  7650. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7651. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7652. stage_work(work_clone);
  7653. roll_work(work);
  7654. work_clone = make_clone(work);
  7655. /* Roll it again to prevent duplicates should this be used
  7656. * directly later on */
  7657. roll_work(work);
  7658. cloned = true;
  7659. }
  7660. if (cloned) {
  7661. stage_work(work);
  7662. return work_clone;
  7663. }
  7664. free_work(work_clone);
  7665. return work;
  7666. }
  7667. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7668. {
  7669. unsigned char hash1[32];
  7670. sha256(data, len, hash1);
  7671. sha256(hash1, 32, hash);
  7672. }
  7673. /* Diff 1 is a 256 bit unsigned integer of
  7674. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7675. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7676. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7677. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7678. {
  7679. uint64_t *data64, h64;
  7680. double d64;
  7681. d64 = diffone;
  7682. d64 /= diff;
  7683. d64 = ceil(d64);
  7684. h64 = d64;
  7685. memset(target, 0, 32);
  7686. if (d64 < 18446744073709551616.0) {
  7687. unsigned char *rtarget = target;
  7688. memset(rtarget, 0, 32);
  7689. if (opt_scrypt)
  7690. data64 = (uint64_t *)(rtarget + 2);
  7691. else
  7692. data64 = (uint64_t *)(rtarget + 4);
  7693. *data64 = htobe64(h64);
  7694. } else {
  7695. /* Support for the classic all FFs just-below-1 diff */
  7696. if (opt_scrypt)
  7697. memset(&target[2], 0xff, 30);
  7698. else
  7699. memset(&target[4], 0xff, 28);
  7700. }
  7701. }
  7702. void set_target(unsigned char *dest_target, double diff)
  7703. {
  7704. unsigned char rtarget[32];
  7705. bdiff_target_leadzero(rtarget, diff);
  7706. swab256(dest_target, rtarget);
  7707. if (opt_debug) {
  7708. char htarget[65];
  7709. bin2hex(htarget, rtarget, 32);
  7710. applog(LOG_DEBUG, "Generated target %s", htarget);
  7711. }
  7712. }
  7713. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7714. {
  7715. *dst = *src;
  7716. dst->job_id = strdup(src->job_id);
  7717. bytes_cpy(&dst->coinbase, &src->coinbase);
  7718. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7719. }
  7720. void stratum_work_clean(struct stratum_work * const swork)
  7721. {
  7722. free(swork->job_id);
  7723. bytes_free(&swork->coinbase);
  7724. bytes_free(&swork->merkle_bin);
  7725. }
  7726. /* Generates stratum based work based on the most recent notify information
  7727. * from the pool. This will keep generating work while a pool is down so we use
  7728. * other means to detect when the pool has died in stratum_thread */
  7729. static void gen_stratum_work(struct pool *pool, struct work *work)
  7730. {
  7731. clean_work(work);
  7732. cg_wlock(&pool->data_lock);
  7733. pool->swork.data_lock_p = &pool->data_lock;
  7734. bytes_resize(&work->nonce2, pool->n2size);
  7735. if (pool->nonce2sz < pool->n2size)
  7736. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7737. memcpy(bytes_buf(&work->nonce2),
  7738. #ifdef WORDS_BIGENDIAN
  7739. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7740. &((char*)&pool->nonce2)[pool->nonce2off],
  7741. #else
  7742. &pool->nonce2,
  7743. #endif
  7744. pool->nonce2sz);
  7745. pool->nonce2++;
  7746. work->pool = pool;
  7747. work->work_restart_id = work->pool->work_restart_id;
  7748. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7749. cgtime(&work->tv_staged);
  7750. }
  7751. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7752. {
  7753. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7754. uint8_t *merkle_bin;
  7755. uint32_t *data32, *swap32;
  7756. int i;
  7757. /* Generate coinbase */
  7758. coinbase = bytes_buf(&swork->coinbase);
  7759. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7760. /* Downgrade to a read lock to read off the variables */
  7761. if (swork->data_lock_p)
  7762. cg_dwlock(swork->data_lock_p);
  7763. /* Generate merkle root */
  7764. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7765. memcpy(merkle_sha, merkle_root, 32);
  7766. merkle_bin = bytes_buf(&swork->merkle_bin);
  7767. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7768. memcpy(merkle_sha + 32, merkle_bin, 32);
  7769. gen_hash(merkle_sha, merkle_root, 64);
  7770. memcpy(merkle_sha, merkle_root, 32);
  7771. }
  7772. data32 = (uint32_t *)merkle_sha;
  7773. swap32 = (uint32_t *)merkle_root;
  7774. flip32(swap32, data32);
  7775. memcpy(&work->data[0], swork->header1, 36);
  7776. memcpy(&work->data[36], merkle_root, 32);
  7777. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7778. memcpy(&work->data[72], swork->diffbits, 4);
  7779. memset(&work->data[76], 0, 4); // nonce
  7780. memcpy(&work->data[80], workpadding_bin, 48);
  7781. /* Store the stratum work diff to check it still matches the pool's
  7782. * stratum diff when submitting shares */
  7783. work->sdiff = swork->diff;
  7784. /* Copy parameters required for share submission */
  7785. work->job_id = strdup(swork->job_id);
  7786. work->nonce1 = strdup(nonce1);
  7787. if (swork->data_lock_p)
  7788. cg_runlock(swork->data_lock_p);
  7789. if (opt_debug)
  7790. {
  7791. char header[161];
  7792. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7793. bin2hex(header, work->data, 80);
  7794. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7795. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7796. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7797. }
  7798. calc_midstate(work);
  7799. set_target(work->target, work->sdiff);
  7800. local_work++;
  7801. work->stratum = true;
  7802. work->blk.nonce = 0;
  7803. work->id = total_work++;
  7804. work->longpoll = false;
  7805. work->getwork_mode = GETWORK_MODE_STRATUM;
  7806. /* Nominally allow a driver to ntime roll 60 seconds */
  7807. work->drv_rolllimit = 60;
  7808. calc_diff(work, 0);
  7809. }
  7810. void request_work(struct thr_info *thr)
  7811. {
  7812. struct cgpu_info *cgpu = thr->cgpu;
  7813. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7814. /* Tell the watchdog thread this thread is waiting on getwork and
  7815. * should not be restarted */
  7816. thread_reportout(thr);
  7817. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7818. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7819. {
  7820. if (proc->threads)
  7821. break;
  7822. thread_reportout(proc->thr[0]);
  7823. }
  7824. cgtime(&dev_stats->_get_start);
  7825. }
  7826. // FIXME: Make this non-blocking (and remove HACK above)
  7827. struct work *get_work(struct thr_info *thr)
  7828. {
  7829. const int thr_id = thr->id;
  7830. struct cgpu_info *cgpu = thr->cgpu;
  7831. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7832. struct cgminer_stats *pool_stats;
  7833. struct timeval tv_get;
  7834. struct work *work = NULL;
  7835. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7836. while (!work) {
  7837. work = hash_pop();
  7838. if (stale_work(work, false)) {
  7839. staged_full = false; // It wasn't really full, since it was stale :(
  7840. discard_work(work);
  7841. work = NULL;
  7842. wake_gws();
  7843. }
  7844. }
  7845. last_getwork = time(NULL);
  7846. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7847. cgpu->proc_repr, work->id, thr_id);
  7848. work->thr_id = thr_id;
  7849. thread_reportin(thr);
  7850. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7851. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7852. {
  7853. if (proc->threads)
  7854. break;
  7855. thread_reportin(proc->thr[0]);
  7856. }
  7857. work->mined = true;
  7858. work->blk.nonce = 0;
  7859. cgtime(&tv_get);
  7860. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7861. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7862. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7863. dev_stats->getwork_wait_max = tv_get;
  7864. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7865. dev_stats->getwork_wait_min = tv_get;
  7866. ++dev_stats->getwork_calls;
  7867. pool_stats = &(work->pool->cgminer_stats);
  7868. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7869. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7870. pool_stats->getwork_wait_max = tv_get;
  7871. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7872. pool_stats->getwork_wait_min = tv_get;
  7873. ++pool_stats->getwork_calls;
  7874. if (work->work_difficulty < 1)
  7875. {
  7876. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7877. {
  7878. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7879. cgpu->proc_repr);
  7880. work->nonce_diff = cgpu->min_nonce_diff;
  7881. }
  7882. else
  7883. work->nonce_diff = work->work_difficulty;
  7884. }
  7885. else
  7886. work->nonce_diff = 1;
  7887. return work;
  7888. }
  7889. static
  7890. void _submit_work_async(struct work *work)
  7891. {
  7892. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7893. if (opt_benchmark)
  7894. {
  7895. json_t * const jn = json_null();
  7896. rebuild_hash(work);
  7897. share_result(jn, jn, jn, work, false, "");
  7898. free_work(work);
  7899. return;
  7900. }
  7901. mutex_lock(&submitting_lock);
  7902. ++total_submitting;
  7903. DL_APPEND(submit_waiting, work);
  7904. mutex_unlock(&submitting_lock);
  7905. notifier_wake(submit_waiting_notifier);
  7906. }
  7907. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7908. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7909. {
  7910. if (tv_work_found)
  7911. copy_time(&work->tv_work_found, tv_work_found);
  7912. _submit_work_async(work);
  7913. }
  7914. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7915. {
  7916. struct cgpu_info * const cgpu = thr->cgpu;
  7917. if (bad_nonce_p)
  7918. {
  7919. if (bad_nonce_p == UNKNOWN_NONCE)
  7920. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7921. cgpu->proc_repr);
  7922. else
  7923. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7924. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7925. }
  7926. mutex_lock(&stats_lock);
  7927. hw_errors++;
  7928. ++cgpu->hw_errors;
  7929. if (bad_nonce_p)
  7930. {
  7931. total_bad_diff1 += nonce_diff;
  7932. cgpu->bad_diff1 += nonce_diff;
  7933. }
  7934. mutex_unlock(&stats_lock);
  7935. if (thr->cgpu->drv->hw_error)
  7936. thr->cgpu->drv->hw_error(thr);
  7937. }
  7938. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7939. {
  7940. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7941. hash_data(work->hash, work->data);
  7942. if (hash2_32[7] != 0)
  7943. return TNR_BAD;
  7944. if (!checktarget)
  7945. return TNR_GOOD;
  7946. if (!hash_target_check_v(work->hash, work->target))
  7947. return TNR_HIGH;
  7948. return TNR_GOOD;
  7949. }
  7950. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7951. {
  7952. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7953. *work_nonce = htole32(nonce);
  7954. #ifdef USE_SCRYPT
  7955. if (opt_scrypt)
  7956. // NOTE: Depends on scrypt_test return matching enum values
  7957. return scrypt_test(work->data, work->target, nonce);
  7958. #endif
  7959. return hashtest2(work, checktarget);
  7960. }
  7961. /* Returns true if nonce for work was a valid share */
  7962. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7963. {
  7964. return submit_noffset_nonce(thr, work, nonce, 0);
  7965. }
  7966. /* Allows drivers to submit work items where the driver has changed the ntime
  7967. * value by noffset. Must be only used with a work protocol that does not ntime
  7968. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7969. * the original work struct, but the copy of it only. */
  7970. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7971. int noffset)
  7972. {
  7973. struct work *work = make_work();
  7974. _copy_work(work, work_in, noffset);
  7975. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7976. struct timeval tv_work_found;
  7977. enum test_nonce2_result res;
  7978. bool ret = true;
  7979. thread_reportout(thr);
  7980. cgtime(&tv_work_found);
  7981. *work_nonce = htole32(nonce);
  7982. work->thr_id = thr->id;
  7983. /* Do one last check before attempting to submit the work */
  7984. /* Side effect: sets work->data for us */
  7985. res = test_nonce2(work, nonce);
  7986. if (unlikely(res == TNR_BAD))
  7987. {
  7988. inc_hw_errors(thr, work, nonce);
  7989. ret = false;
  7990. goto out;
  7991. }
  7992. mutex_lock(&stats_lock);
  7993. total_diff1 += work->nonce_diff;
  7994. thr ->cgpu->diff1 += work->nonce_diff;
  7995. work->pool->diff1 += work->nonce_diff;
  7996. thr->cgpu->last_device_valid_work = time(NULL);
  7997. mutex_unlock(&stats_lock);
  7998. if (noncelog_file)
  7999. noncelog(work);
  8000. if (res == TNR_HIGH)
  8001. {
  8002. // Share above target, normal
  8003. /* Check the diff of the share, even if it didn't reach the
  8004. * target, just to set the best share value if it's higher. */
  8005. share_diff(work);
  8006. goto out;
  8007. }
  8008. submit_work_async2(work, &tv_work_found);
  8009. work = NULL; // Taken by submit_work_async2
  8010. out:
  8011. if (work)
  8012. free_work(work);
  8013. thread_reportin(thr);
  8014. return ret;
  8015. }
  8016. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8017. {
  8018. if (wdiff->tv_sec > opt_scantime ||
  8019. work->blk.nonce >= 0xfffffffe - hashes ||
  8020. hashes >= 0xfffffffe ||
  8021. stale_work(work, false))
  8022. return true;
  8023. return false;
  8024. }
  8025. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8026. {
  8027. struct cgpu_info *proc = thr->cgpu;
  8028. if (proc->threads > 1)
  8029. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8030. else
  8031. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8032. }
  8033. // Called by asynchronous minerloops, when they find their processor should be disabled
  8034. void mt_disable_start(struct thr_info *mythr)
  8035. {
  8036. struct cgpu_info *cgpu = mythr->cgpu;
  8037. struct device_drv *drv = cgpu->drv;
  8038. if (drv->thread_disable)
  8039. drv->thread_disable(mythr);
  8040. hashmeter2(mythr);
  8041. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8042. mythr->rolling = mythr->cgpu->rolling = 0;
  8043. thread_reportout(mythr);
  8044. mythr->_mt_disable_called = true;
  8045. }
  8046. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8047. * the driver tells us it's full so that it may extract the work item using
  8048. * the get_queued() function which adds it to the hashtable on
  8049. * cgpu->queued_work. */
  8050. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8051. {
  8052. thread_reportout(mythr);
  8053. do {
  8054. bool need_work;
  8055. /* Do this lockless just to know if we need more unqueued work. */
  8056. need_work = (!cgpu->unqueued_work);
  8057. /* get_work is a blocking function so do it outside of lock
  8058. * to prevent deadlocks with other locks. */
  8059. if (need_work) {
  8060. struct work *work = get_work(mythr);
  8061. wr_lock(&cgpu->qlock);
  8062. /* Check we haven't grabbed work somehow between
  8063. * checking and picking up the lock. */
  8064. if (likely(!cgpu->unqueued_work))
  8065. cgpu->unqueued_work = work;
  8066. else
  8067. need_work = false;
  8068. wr_unlock(&cgpu->qlock);
  8069. if (unlikely(!need_work))
  8070. discard_work(work);
  8071. }
  8072. /* The queue_full function should be used by the driver to
  8073. * actually place work items on the physical device if it
  8074. * does have a queue. */
  8075. } while (drv->queue_full && !drv->queue_full(cgpu));
  8076. }
  8077. /* Add a work item to a cgpu's queued hashlist */
  8078. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8079. {
  8080. cgpu->queued_count++;
  8081. HASH_ADD_INT(cgpu->queued_work, id, work);
  8082. }
  8083. /* This function is for retrieving one work item from the unqueued pointer and
  8084. * adding it to the hashtable of queued work. Code using this function must be
  8085. * able to handle NULL as a return which implies there is no work available. */
  8086. struct work *get_queued(struct cgpu_info *cgpu)
  8087. {
  8088. struct work *work = NULL;
  8089. wr_lock(&cgpu->qlock);
  8090. if (cgpu->unqueued_work) {
  8091. work = cgpu->unqueued_work;
  8092. if (unlikely(stale_work(work, false))) {
  8093. discard_work(work);
  8094. work = NULL;
  8095. wake_gws();
  8096. } else
  8097. __add_queued(cgpu, work);
  8098. cgpu->unqueued_work = NULL;
  8099. }
  8100. wr_unlock(&cgpu->qlock);
  8101. return work;
  8102. }
  8103. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8104. {
  8105. wr_lock(&cgpu->qlock);
  8106. __add_queued(cgpu, work);
  8107. wr_unlock(&cgpu->qlock);
  8108. }
  8109. /* Get fresh work and add it to cgpu's queued hashlist */
  8110. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8111. {
  8112. struct work *work = get_work(thr);
  8113. add_queued(cgpu, work);
  8114. return work;
  8115. }
  8116. /* This function is for finding an already queued work item in the
  8117. * given que hashtable. Code using this function must be able
  8118. * to handle NULL as a return which implies there is no matching work.
  8119. * The calling function must lock access to the que if it is required.
  8120. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8121. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8122. {
  8123. struct work *work, *tmp, *ret = NULL;
  8124. HASH_ITER(hh, que, work, tmp) {
  8125. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8126. memcmp(work->data + offset, data, datalen) == 0) {
  8127. ret = work;
  8128. break;
  8129. }
  8130. }
  8131. return ret;
  8132. }
  8133. /* This function is for finding an already queued work item in the
  8134. * device's queued_work hashtable. Code using this function must be able
  8135. * to handle NULL as a return which implies there is no matching work.
  8136. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8137. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8138. {
  8139. struct work *ret;
  8140. rd_lock(&cgpu->qlock);
  8141. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8142. rd_unlock(&cgpu->qlock);
  8143. return ret;
  8144. }
  8145. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8146. {
  8147. struct work *work, *ret = NULL;
  8148. rd_lock(&cgpu->qlock);
  8149. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8150. if (work)
  8151. ret = copy_work(work);
  8152. rd_unlock(&cgpu->qlock);
  8153. return ret;
  8154. }
  8155. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8156. {
  8157. cgpu->queued_count--;
  8158. HASH_DEL(cgpu->queued_work, work);
  8159. }
  8160. /* This function should be used by queued device drivers when they're sure
  8161. * the work struct is no longer in use. */
  8162. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8163. {
  8164. wr_lock(&cgpu->qlock);
  8165. __work_completed(cgpu, work);
  8166. wr_unlock(&cgpu->qlock);
  8167. free_work(work);
  8168. }
  8169. /* Combines find_queued_work_bymidstate and work_completed in one function
  8170. * withOUT destroying the work so the driver must free it. */
  8171. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8172. {
  8173. struct work *work;
  8174. wr_lock(&cgpu->qlock);
  8175. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8176. if (work)
  8177. __work_completed(cgpu, work);
  8178. wr_unlock(&cgpu->qlock);
  8179. return work;
  8180. }
  8181. static void flush_queue(struct cgpu_info *cgpu)
  8182. {
  8183. struct work *work = NULL;
  8184. wr_lock(&cgpu->qlock);
  8185. work = cgpu->unqueued_work;
  8186. cgpu->unqueued_work = NULL;
  8187. wr_unlock(&cgpu->qlock);
  8188. if (work) {
  8189. free_work(work);
  8190. applog(LOG_DEBUG, "Discarded queued work item");
  8191. }
  8192. }
  8193. /* This version of hash work is for devices that are fast enough to always
  8194. * perform a full nonce range and need a queue to maintain the device busy.
  8195. * Work creation and destruction is not done from within this function
  8196. * directly. */
  8197. void hash_queued_work(struct thr_info *mythr)
  8198. {
  8199. const long cycle = opt_log_interval / 5 ? : 1;
  8200. struct timeval tv_start = {0, 0}, tv_end;
  8201. struct cgpu_info *cgpu = mythr->cgpu;
  8202. struct device_drv *drv = cgpu->drv;
  8203. const int thr_id = mythr->id;
  8204. int64_t hashes_done = 0;
  8205. if (unlikely(cgpu->deven != DEV_ENABLED))
  8206. mt_disable(mythr);
  8207. while (likely(!cgpu->shutdown)) {
  8208. struct timeval diff;
  8209. int64_t hashes;
  8210. fill_queue(mythr, cgpu, drv, thr_id);
  8211. thread_reportin(mythr);
  8212. hashes = drv->scanwork(mythr);
  8213. /* Reset the bool here in case the driver looks for it
  8214. * synchronously in the scanwork loop. */
  8215. mythr->work_restart = false;
  8216. if (unlikely(hashes == -1 )) {
  8217. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8218. cgpu->deven = DEV_DISABLED;
  8219. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8220. mt_disable(mythr);
  8221. }
  8222. hashes_done += hashes;
  8223. cgtime(&tv_end);
  8224. timersub(&tv_end, &tv_start, &diff);
  8225. if (diff.tv_sec >= cycle) {
  8226. hashmeter(thr_id, &diff, hashes_done);
  8227. hashes_done = 0;
  8228. copy_time(&tv_start, &tv_end);
  8229. }
  8230. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8231. mt_disable(mythr);
  8232. if (unlikely(mythr->work_restart)) {
  8233. flush_queue(cgpu);
  8234. if (drv->flush_work)
  8235. drv->flush_work(cgpu);
  8236. }
  8237. }
  8238. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8239. }
  8240. // Called by minerloop, when it is re-enabling a processor
  8241. void mt_disable_finish(struct thr_info *mythr)
  8242. {
  8243. struct device_drv *drv = mythr->cgpu->drv;
  8244. thread_reportin(mythr);
  8245. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8246. if (drv->thread_enable)
  8247. drv->thread_enable(mythr);
  8248. mythr->_mt_disable_called = false;
  8249. }
  8250. // Called by synchronous minerloops, when they find their processor should be disabled
  8251. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8252. void mt_disable(struct thr_info *mythr)
  8253. {
  8254. const struct cgpu_info * const cgpu = mythr->cgpu;
  8255. mt_disable_start(mythr);
  8256. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8257. do {
  8258. notifier_read(mythr->notifier);
  8259. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8260. mt_disable_finish(mythr);
  8261. }
  8262. enum {
  8263. STAT_SLEEP_INTERVAL = 1,
  8264. STAT_CTR_INTERVAL = 10000000,
  8265. FAILURE_INTERVAL = 30,
  8266. };
  8267. /* Stage another work item from the work returned in a longpoll */
  8268. 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)
  8269. {
  8270. bool rc;
  8271. work->rolltime = rolltime;
  8272. rc = work_decode(pool, work, val);
  8273. if (unlikely(!rc)) {
  8274. applog(LOG_ERR, "Could not convert longpoll data to work");
  8275. free_work(work);
  8276. return;
  8277. }
  8278. total_getworks++;
  8279. pool->getwork_requested++;
  8280. work->pool = pool;
  8281. copy_time(&work->tv_getwork, tv_lp);
  8282. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8283. calc_diff(work, 0);
  8284. if (pool->enabled == POOL_REJECTING)
  8285. work->mandatory = true;
  8286. work->longpoll = true;
  8287. work->getwork_mode = GETWORK_MODE_LP;
  8288. update_last_work(work);
  8289. /* We'll be checking this work item twice, but we already know it's
  8290. * from a new block so explicitly force the new block detection now
  8291. * rather than waiting for it to hit the stage thread. This also
  8292. * allows testwork to know whether LP discovered the block or not. */
  8293. test_work_current(work);
  8294. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8295. * the longpoll work from a pool that has been rejecting shares as a
  8296. * way to detect when the pool has recovered.
  8297. */
  8298. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8299. free_work(work);
  8300. return;
  8301. }
  8302. work = clone_work(work);
  8303. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8304. stage_work(work);
  8305. applog(LOG_DEBUG, "Converted longpoll data to work");
  8306. }
  8307. /* If we want longpoll, enable it for the chosen default pool, or, if
  8308. * the pool does not support longpoll, find the first one that does
  8309. * and use its longpoll support */
  8310. static struct pool *select_longpoll_pool(struct pool *cp)
  8311. {
  8312. int i;
  8313. if (cp->lp_url)
  8314. return cp;
  8315. for (i = 0; i < total_pools; i++) {
  8316. struct pool *pool = pools[i];
  8317. if (pool->has_stratum || pool->lp_url)
  8318. return pool;
  8319. }
  8320. return NULL;
  8321. }
  8322. /* This will make the longpoll thread wait till it's the current pool, or it
  8323. * has been flagged as rejecting, before attempting to open any connections.
  8324. */
  8325. static void wait_lpcurrent(struct pool *pool)
  8326. {
  8327. while (!cnx_needed(pool))
  8328. {
  8329. mutex_lock(&lp_lock);
  8330. pthread_cond_wait(&lp_cond, &lp_lock);
  8331. mutex_unlock(&lp_lock);
  8332. }
  8333. }
  8334. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8335. struct pool *pool = vpool;
  8336. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8337. pool->lp_socket = sock;
  8338. return sock;
  8339. }
  8340. static void *longpoll_thread(void *userdata)
  8341. {
  8342. struct pool *cp = (struct pool *)userdata;
  8343. /* This *pool is the source of the actual longpoll, not the pool we've
  8344. * tied it to */
  8345. struct timeval start, reply, end;
  8346. struct pool *pool = NULL;
  8347. char threadname[20];
  8348. CURL *curl = NULL;
  8349. int failures = 0;
  8350. char *lp_url;
  8351. int rolltime;
  8352. #ifndef HAVE_PTHREAD_CANCEL
  8353. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8354. #endif
  8355. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8356. RenameThread(threadname);
  8357. curl = curl_easy_init();
  8358. if (unlikely(!curl)) {
  8359. applog(LOG_ERR, "CURL initialisation failed");
  8360. return NULL;
  8361. }
  8362. retry_pool:
  8363. pool = select_longpoll_pool(cp);
  8364. if (!pool) {
  8365. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8366. while (!pool) {
  8367. cgsleep_ms(60000);
  8368. pool = select_longpoll_pool(cp);
  8369. }
  8370. }
  8371. if (pool->has_stratum) {
  8372. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8373. cp->rpc_url, pool->rpc_url);
  8374. goto out;
  8375. }
  8376. /* Any longpoll from any pool is enough for this to be true */
  8377. have_longpoll = true;
  8378. wait_lpcurrent(cp);
  8379. {
  8380. lp_url = pool->lp_url;
  8381. if (cp == pool)
  8382. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8383. else
  8384. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8385. }
  8386. while (42) {
  8387. json_t *val, *soval;
  8388. struct work *work = make_work();
  8389. char *lpreq;
  8390. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8391. work->pool = pool;
  8392. if (!lpreq)
  8393. {
  8394. free_work(work);
  8395. goto lpfail;
  8396. }
  8397. wait_lpcurrent(cp);
  8398. cgtime(&start);
  8399. /* Longpoll connections can be persistent for a very long time
  8400. * and any number of issues could have come up in the meantime
  8401. * so always establish a fresh connection instead of relying on
  8402. * a persistent one. */
  8403. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8404. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8405. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8406. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8407. lpreq, false, true, &rolltime, pool, false);
  8408. pool->lp_socket = CURL_SOCKET_BAD;
  8409. cgtime(&reply);
  8410. free(lpreq);
  8411. if (likely(val)) {
  8412. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8413. if (soval)
  8414. pool->submit_old = json_is_true(soval);
  8415. else
  8416. pool->submit_old = false;
  8417. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8418. failures = 0;
  8419. json_decref(val);
  8420. } else {
  8421. /* Some pools regularly drop the longpoll request so
  8422. * only see this as longpoll failure if it happens
  8423. * immediately and just restart it the rest of the
  8424. * time. */
  8425. cgtime(&end);
  8426. free_work(work);
  8427. if (end.tv_sec - start.tv_sec > 30)
  8428. continue;
  8429. if (failures == 1)
  8430. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8431. lpfail:
  8432. cgsleep_ms(30000);
  8433. }
  8434. if (pool != cp) {
  8435. pool = select_longpoll_pool(cp);
  8436. if (pool->has_stratum) {
  8437. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8438. cp->rpc_url, pool->rpc_url);
  8439. break;
  8440. }
  8441. if (unlikely(!pool))
  8442. goto retry_pool;
  8443. }
  8444. if (unlikely(pool->removed))
  8445. break;
  8446. }
  8447. out:
  8448. curl_easy_cleanup(curl);
  8449. return NULL;
  8450. }
  8451. static void stop_longpoll(void)
  8452. {
  8453. int i;
  8454. want_longpoll = false;
  8455. for (i = 0; i < total_pools; ++i)
  8456. {
  8457. struct pool *pool = pools[i];
  8458. if (unlikely(!pool->lp_started))
  8459. continue;
  8460. pool->lp_started = false;
  8461. pthread_cancel(pool->longpoll_thread);
  8462. }
  8463. have_longpoll = false;
  8464. }
  8465. static void start_longpoll(void)
  8466. {
  8467. int i;
  8468. want_longpoll = true;
  8469. for (i = 0; i < total_pools; ++i)
  8470. {
  8471. struct pool *pool = pools[i];
  8472. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8473. continue;
  8474. pool->lp_started = true;
  8475. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8476. quit(1, "Failed to create pool longpoll thread");
  8477. }
  8478. }
  8479. void reinit_device(struct cgpu_info *cgpu)
  8480. {
  8481. if (cgpu->drv->reinit_device)
  8482. cgpu->drv->reinit_device(cgpu);
  8483. }
  8484. static struct timeval rotate_tv;
  8485. /* We reap curls if they are unused for over a minute */
  8486. static void reap_curl(struct pool *pool)
  8487. {
  8488. struct curl_ent *ent, *iter;
  8489. struct timeval now;
  8490. int reaped = 0;
  8491. cgtime(&now);
  8492. mutex_lock(&pool->pool_lock);
  8493. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8494. if (pool->curls < 2)
  8495. break;
  8496. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8497. reaped++;
  8498. pool->curls--;
  8499. LL_DELETE(pool->curllist, ent);
  8500. curl_easy_cleanup(ent->curl);
  8501. free(ent);
  8502. }
  8503. }
  8504. mutex_unlock(&pool->pool_lock);
  8505. if (reaped)
  8506. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8507. }
  8508. static void *watchpool_thread(void __maybe_unused *userdata)
  8509. {
  8510. int intervals = 0;
  8511. #ifndef HAVE_PTHREAD_CANCEL
  8512. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8513. #endif
  8514. RenameThread("watchpool");
  8515. while (42) {
  8516. struct timeval now;
  8517. int i;
  8518. if (++intervals > 20)
  8519. intervals = 0;
  8520. cgtime(&now);
  8521. for (i = 0; i < total_pools; i++) {
  8522. struct pool *pool = pools[i];
  8523. if (!opt_benchmark)
  8524. reap_curl(pool);
  8525. /* Get a rolling utility per pool over 10 mins */
  8526. if (intervals > 19) {
  8527. int shares = pool->diff1 - pool->last_shares;
  8528. pool->last_shares = pool->diff1;
  8529. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8530. pool->shares = pool->utility;
  8531. }
  8532. if (pool->enabled == POOL_DISABLED)
  8533. continue;
  8534. /* Don't start testing any pools if the test threads
  8535. * from startup are still doing their first attempt. */
  8536. if (unlikely(pool->testing)) {
  8537. pthread_join(pool->test_thread, NULL);
  8538. }
  8539. /* Test pool is idle once every minute */
  8540. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8541. cgtime(&pool->tv_idle);
  8542. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8543. pool_resus(pool);
  8544. }
  8545. /* Only switch pools if the failback pool has been
  8546. * alive for more than 5 minutes to prevent
  8547. * intermittently failing pools from being used. */
  8548. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8549. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8550. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8551. pool->pool_no, pool->rpc_url);
  8552. switch_pools(NULL);
  8553. }
  8554. }
  8555. if (current_pool()->idle)
  8556. switch_pools(NULL);
  8557. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8558. cgtime(&rotate_tv);
  8559. switch_pools(NULL);
  8560. }
  8561. cgsleep_ms(30000);
  8562. }
  8563. return NULL;
  8564. }
  8565. void mt_enable(struct thr_info *thr)
  8566. {
  8567. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8568. notifier_wake(thr->notifier);
  8569. }
  8570. void proc_enable(struct cgpu_info *cgpu)
  8571. {
  8572. int j;
  8573. cgpu->deven = DEV_ENABLED;
  8574. for (j = cgpu->threads ?: 1; j--; )
  8575. mt_enable(cgpu->thr[j]);
  8576. }
  8577. #define device_recovered(cgpu) proc_enable(cgpu)
  8578. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8579. {
  8580. struct string_elist *setstr_elist;
  8581. const char *p, *p2;
  8582. char replybuf[0x2000];
  8583. size_t L;
  8584. DL_FOREACH(opt_set_device_list, setstr_elist)
  8585. {
  8586. const char * const setstr = setstr_elist->string;
  8587. p = strchr(setstr, ':');
  8588. if (!p)
  8589. p = setstr;
  8590. {
  8591. L = p - setstr;
  8592. char pattern[L + 1];
  8593. if (L)
  8594. memcpy(pattern, setstr, L);
  8595. pattern[L] = '\0';
  8596. if (!cgpu_match(pattern, cgpu))
  8597. continue;
  8598. }
  8599. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8600. cgpu->proc_repr, __func__, setstr);
  8601. if (p[0] == ':')
  8602. ++p;
  8603. p2 = strchr(p, '=');
  8604. if (!p2)
  8605. {
  8606. L = strlen(p);
  8607. p2 = "";
  8608. }
  8609. else
  8610. {
  8611. L = p2 - p;
  8612. ++p2;
  8613. }
  8614. char opt[L + 1];
  8615. if (L)
  8616. memcpy(opt, p, L);
  8617. opt[L] = '\0';
  8618. L = strlen(p2);
  8619. char setval[L + 1];
  8620. if (L)
  8621. memcpy(setval, p2, L);
  8622. setval[L] = '\0';
  8623. enum bfg_set_device_replytype success;
  8624. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8625. switch (success)
  8626. {
  8627. case SDR_OK:
  8628. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8629. cgpu->proc_repr, setstr,
  8630. p ? ": " : "", p ?: "");
  8631. break;
  8632. case SDR_ERR:
  8633. case SDR_HELP:
  8634. case SDR_UNKNOWN:
  8635. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8636. cgpu->proc_repr, setstr, p);
  8637. break;
  8638. case SDR_AUTO:
  8639. case SDR_NOSUPP:
  8640. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8641. cgpu->proc_repr, setstr);
  8642. }
  8643. }
  8644. cgpu->already_set_defaults = true;
  8645. }
  8646. 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)
  8647. {
  8648. struct device_drv dummy_drv = *drv;
  8649. struct cgpu_info dummy_cgpu = {
  8650. .drv = &dummy_drv,
  8651. .device = &dummy_cgpu,
  8652. .device_id = -1,
  8653. .proc_id = -1,
  8654. .device_data = userp,
  8655. .device_path = devpath,
  8656. .dev_serial = serial,
  8657. };
  8658. strcpy(dummy_cgpu.proc_repr, drv->name);
  8659. switch (mode)
  8660. {
  8661. case 0:
  8662. dummy_drv.set_device = datap;
  8663. break;
  8664. case 1:
  8665. dummy_drv.set_device = NULL;
  8666. dummy_cgpu.set_device_funcs = datap;
  8667. break;
  8668. }
  8669. cgpu_set_defaults(&dummy_cgpu);
  8670. }
  8671. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8672. * the screen at regular intervals, and restarts threads if they appear to have
  8673. * died. */
  8674. #define WATCHDOG_SICK_TIME 60
  8675. #define WATCHDOG_DEAD_TIME 600
  8676. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8677. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8678. static void *watchdog_thread(void __maybe_unused *userdata)
  8679. {
  8680. const unsigned int interval = WATCHDOG_INTERVAL;
  8681. struct timeval zero_tv;
  8682. #ifndef HAVE_PTHREAD_CANCEL
  8683. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8684. #endif
  8685. RenameThread("watchdog");
  8686. memset(&zero_tv, 0, sizeof(struct timeval));
  8687. cgtime(&rotate_tv);
  8688. while (1) {
  8689. int i;
  8690. struct timeval now;
  8691. sleep(interval);
  8692. discard_stale();
  8693. hashmeter(-1, &zero_tv, 0);
  8694. #ifdef HAVE_CURSES
  8695. const int ts = total_staged();
  8696. if (curses_active_locked()) {
  8697. change_logwinsize();
  8698. curses_print_status(ts);
  8699. _refresh_devstatus(true);
  8700. touchwin(logwin);
  8701. wrefresh(logwin);
  8702. unlock_curses();
  8703. }
  8704. #endif
  8705. cgtime(&now);
  8706. if (!sched_paused && !should_run()) {
  8707. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8708. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8709. if (!schedstart.enable) {
  8710. quit(0, "Terminating execution as planned");
  8711. break;
  8712. }
  8713. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8714. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8715. sched_paused = true;
  8716. rd_lock(&mining_thr_lock);
  8717. for (i = 0; i < mining_threads; i++)
  8718. mining_thr[i]->pause = true;
  8719. rd_unlock(&mining_thr_lock);
  8720. } else if (sched_paused && should_run()) {
  8721. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8722. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8723. if (schedstop.enable)
  8724. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8725. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8726. sched_paused = false;
  8727. for (i = 0; i < mining_threads; i++) {
  8728. struct thr_info *thr;
  8729. thr = get_thread(i);
  8730. thr->pause = false;
  8731. }
  8732. for (i = 0; i < total_devices; ++i)
  8733. {
  8734. struct cgpu_info *cgpu = get_devices(i);
  8735. /* Don't touch disabled devices */
  8736. if (cgpu->deven == DEV_DISABLED)
  8737. continue;
  8738. proc_enable(cgpu);
  8739. }
  8740. }
  8741. for (i = 0; i < total_devices; ++i) {
  8742. struct cgpu_info *cgpu = get_devices(i);
  8743. if (!cgpu->disable_watchdog)
  8744. bfg_watchdog(cgpu, &now);
  8745. }
  8746. }
  8747. return NULL;
  8748. }
  8749. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8750. {
  8751. struct thr_info *thr = cgpu->thr[0];
  8752. enum dev_enable *denable;
  8753. char *dev_str = cgpu->proc_repr;
  8754. if (likely(drv_ready(cgpu)))
  8755. {
  8756. if (unlikely(!cgpu->already_set_defaults))
  8757. cgpu_set_defaults(cgpu);
  8758. if (cgpu->drv->get_stats)
  8759. cgpu->drv->get_stats(cgpu);
  8760. }
  8761. denable = &cgpu->deven;
  8762. if (cgpu->drv->watchdog)
  8763. cgpu->drv->watchdog(cgpu, tvp_now);
  8764. /* Thread is disabled */
  8765. if (*denable == DEV_DISABLED)
  8766. return;
  8767. else
  8768. if (*denable == DEV_RECOVER_ERR) {
  8769. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8770. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8771. dev_str);
  8772. if (cgpu->reinit_backoff < 300)
  8773. cgpu->reinit_backoff *= 2;
  8774. device_recovered(cgpu);
  8775. }
  8776. return;
  8777. }
  8778. else
  8779. if (*denable == DEV_RECOVER) {
  8780. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8781. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8782. dev_str);
  8783. device_recovered(cgpu);
  8784. }
  8785. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8786. return;
  8787. }
  8788. else
  8789. if (cgpu->temp > cgpu->cutofftemp)
  8790. {
  8791. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8792. dev_str, (int)cgpu->temp);
  8793. *denable = DEV_RECOVER;
  8794. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8795. run_cmd(cmd_idle);
  8796. }
  8797. if (thr->getwork) {
  8798. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8799. int thrid;
  8800. bool cgpu_idle = true;
  8801. thr->rolling = 0;
  8802. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8803. if (!cgpu->thr[thrid]->getwork)
  8804. cgpu_idle = false;
  8805. if (cgpu_idle) {
  8806. cgpu->rolling = 0;
  8807. cgpu->status = LIFE_WAIT;
  8808. }
  8809. }
  8810. return;
  8811. }
  8812. else if (cgpu->status == LIFE_WAIT)
  8813. cgpu->status = LIFE_WELL;
  8814. #ifdef WANT_CPUMINE
  8815. if (!strcmp(cgpu->drv->dname, "cpu"))
  8816. return;
  8817. #endif
  8818. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8819. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8820. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8821. cgpu->status = LIFE_WELL;
  8822. cgpu->device_last_well = time(NULL);
  8823. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8824. thr->rolling = cgpu->rolling = 0;
  8825. cgpu->status = LIFE_SICK;
  8826. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8827. cgtime(&thr->sick);
  8828. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8829. run_cmd(cmd_sick);
  8830. if (opt_restart && cgpu->drv->reinit_device) {
  8831. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8832. reinit_device(cgpu);
  8833. }
  8834. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8835. cgpu->status = LIFE_DEAD;
  8836. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8837. cgtime(&thr->sick);
  8838. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8839. run_cmd(cmd_dead);
  8840. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8841. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8842. /* Attempt to restart a GPU that's sick or dead once every minute */
  8843. cgtime(&thr->sick);
  8844. if (opt_restart)
  8845. reinit_device(cgpu);
  8846. }
  8847. }
  8848. static void log_print_status(struct cgpu_info *cgpu)
  8849. {
  8850. char logline[255];
  8851. get_statline(logline, sizeof(logline), cgpu);
  8852. applog(LOG_WARNING, "%s", logline);
  8853. }
  8854. void print_summary(void)
  8855. {
  8856. struct timeval diff;
  8857. int hours, mins, secs, i;
  8858. double utility, efficiency = 0.0;
  8859. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  8860. int pool_secs;
  8861. timersub(&total_tv_end, &total_tv_start, &diff);
  8862. hours = diff.tv_sec / 3600;
  8863. mins = (diff.tv_sec % 3600) / 60;
  8864. secs = diff.tv_sec % 60;
  8865. utility = total_accepted / total_secs * 60;
  8866. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8867. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8868. applog(LOG_WARNING, "Started at %s", datestamp);
  8869. if (total_pools == 1)
  8870. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8871. #ifdef WANT_CPUMINE
  8872. if (opt_n_threads)
  8873. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8874. #endif
  8875. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8876. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8877. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8878. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8879. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8880. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8881. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8882. total_rejected, total_stale,
  8883. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8884. );
  8885. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8886. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8887. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8888. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8889. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8890. (float)total_bytes_rcvd,
  8891. (float)total_bytes_sent),
  8892. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8893. (float)(total_bytes_rcvd / total_secs),
  8894. (float)(total_bytes_sent / total_secs)));
  8895. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8896. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8897. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8898. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8899. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8900. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8901. if (total_pools > 1) {
  8902. for (i = 0; i < total_pools; i++) {
  8903. struct pool *pool = pools[i];
  8904. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8905. if (pool->solved)
  8906. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8907. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8908. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8909. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8910. pool->rejected, pool->stale_shares,
  8911. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8912. );
  8913. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8914. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8915. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8916. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8917. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8918. (float)pool->cgminer_pool_stats.net_bytes_received,
  8919. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8920. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8921. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8922. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8923. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8924. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8925. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8926. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8927. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8928. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8929. }
  8930. }
  8931. if (opt_quit_summary != BQS_NONE)
  8932. {
  8933. if (opt_quit_summary == BQS_DETAILED)
  8934. include_serial_in_statline = true;
  8935. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8936. for (i = 0; i < total_devices; ++i) {
  8937. struct cgpu_info *cgpu = get_devices(i);
  8938. if (!cgpu->proc_id)
  8939. {
  8940. // Device summary line
  8941. opt_show_procs = false;
  8942. log_print_status(cgpu);
  8943. opt_show_procs = true;
  8944. }
  8945. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8946. log_print_status(cgpu);
  8947. }
  8948. }
  8949. if (opt_shares) {
  8950. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  8951. if (opt_shares > total_diff_accepted)
  8952. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  8953. }
  8954. applog(LOG_WARNING, " ");
  8955. fflush(stderr);
  8956. fflush(stdout);
  8957. }
  8958. void _bfg_clean_up(bool restarting)
  8959. {
  8960. #ifdef HAVE_OPENCL
  8961. clear_adl(nDevs);
  8962. #endif
  8963. #ifdef HAVE_LIBUSB
  8964. if (likely(have_libusb))
  8965. libusb_exit(NULL);
  8966. #endif
  8967. cgtime(&total_tv_end);
  8968. #ifdef WIN32
  8969. timeEndPeriod(1);
  8970. #endif
  8971. if (!restarting) {
  8972. /* Attempting to disable curses or print a summary during a
  8973. * restart can lead to a deadlock. */
  8974. #ifdef HAVE_CURSES
  8975. disable_curses();
  8976. #endif
  8977. if (!opt_realquiet && successful_connect)
  8978. print_summary();
  8979. }
  8980. if (opt_n_threads)
  8981. free(cpus);
  8982. curl_global_cleanup();
  8983. #ifdef WIN32
  8984. WSACleanup();
  8985. #endif
  8986. }
  8987. void _quit(int status)
  8988. {
  8989. if (status) {
  8990. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8991. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8992. int *p = NULL;
  8993. // NOTE debugger can bypass with: p = &p
  8994. *p = status; // Segfault, hopefully dumping core
  8995. }
  8996. }
  8997. #if defined(unix) || defined(__APPLE__)
  8998. if (forkpid > 0) {
  8999. kill(forkpid, SIGTERM);
  9000. forkpid = 0;
  9001. }
  9002. #endif
  9003. exit(status);
  9004. }
  9005. #ifdef HAVE_CURSES
  9006. char *curses_input(const char *query)
  9007. {
  9008. char *input;
  9009. echo();
  9010. input = malloc(255);
  9011. if (!input)
  9012. quit(1, "Failed to malloc input");
  9013. leaveok(logwin, false);
  9014. wlogprint("%s:\n", query);
  9015. wgetnstr(logwin, input, 255);
  9016. if (!strlen(input))
  9017. {
  9018. free(input);
  9019. input = NULL;
  9020. }
  9021. leaveok(logwin, true);
  9022. noecho();
  9023. return input;
  9024. }
  9025. #endif
  9026. static bool pools_active = false;
  9027. static void *test_pool_thread(void *arg)
  9028. {
  9029. struct pool *pool = (struct pool *)arg;
  9030. if (pool_active(pool, false)) {
  9031. pool_tset(pool, &pool->lagging);
  9032. pool_tclear(pool, &pool->idle);
  9033. bool first_pool = false;
  9034. cg_wlock(&control_lock);
  9035. if (!pools_active) {
  9036. currentpool = pool;
  9037. if (pool->pool_no != 0)
  9038. first_pool = true;
  9039. pools_active = true;
  9040. }
  9041. cg_wunlock(&control_lock);
  9042. if (unlikely(first_pool))
  9043. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9044. else
  9045. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9046. switch_pools(NULL);
  9047. } else
  9048. pool_died(pool);
  9049. pool->testing = false;
  9050. return NULL;
  9051. }
  9052. /* Always returns true that the pool details were added unless we are not
  9053. * live, implying this is the only pool being added, so if no pools are
  9054. * active it returns false. */
  9055. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9056. {
  9057. size_t siz;
  9058. pool->rpc_url = url;
  9059. pool->rpc_user = user;
  9060. pool->rpc_pass = pass;
  9061. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9062. pool->rpc_userpass = malloc(siz);
  9063. if (!pool->rpc_userpass)
  9064. quit(1, "Failed to malloc userpass");
  9065. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9066. pool->testing = true;
  9067. pool->idle = true;
  9068. enable_pool(pool);
  9069. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9070. if (!live) {
  9071. pthread_join(pool->test_thread, NULL);
  9072. return pools_active;
  9073. }
  9074. return true;
  9075. }
  9076. #ifdef HAVE_CURSES
  9077. static bool input_pool(bool live)
  9078. {
  9079. char *url = NULL, *user = NULL, *pass = NULL;
  9080. struct pool *pool;
  9081. bool ret = false;
  9082. immedok(logwin, true);
  9083. wlogprint("Input server details.\n");
  9084. url = curses_input("URL");
  9085. if (!url)
  9086. goto out;
  9087. user = curses_input("Username");
  9088. if (!user)
  9089. goto out;
  9090. pass = curses_input("Password");
  9091. if (!pass)
  9092. pass = calloc(1, 1);
  9093. pool = add_pool();
  9094. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9095. strncmp(url, "https://", 8)) {
  9096. char *httpinput;
  9097. httpinput = malloc(256);
  9098. if (!httpinput)
  9099. quit(1, "Failed to malloc httpinput");
  9100. strcpy(httpinput, "http://");
  9101. strncat(httpinput, url, 248);
  9102. free(url);
  9103. url = httpinput;
  9104. }
  9105. ret = add_pool_details(pool, live, url, user, pass);
  9106. out:
  9107. immedok(logwin, false);
  9108. if (!ret) {
  9109. if (url)
  9110. free(url);
  9111. if (user)
  9112. free(user);
  9113. if (pass)
  9114. free(pass);
  9115. }
  9116. return ret;
  9117. }
  9118. #endif
  9119. #if defined(unix) || defined(__APPLE__)
  9120. static void fork_monitor()
  9121. {
  9122. // Make a pipe: [readFD, writeFD]
  9123. int pfd[2];
  9124. int r = pipe(pfd);
  9125. if (r < 0) {
  9126. perror("pipe - failed to create pipe for --monitor");
  9127. exit(1);
  9128. }
  9129. // Make stderr write end of pipe
  9130. fflush(stderr);
  9131. r = dup2(pfd[1], 2);
  9132. if (r < 0) {
  9133. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9134. exit(1);
  9135. }
  9136. r = close(pfd[1]);
  9137. if (r < 0) {
  9138. perror("close - failed to close write end of pipe for --monitor");
  9139. exit(1);
  9140. }
  9141. // Don't allow a dying monitor to kill the main process
  9142. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9143. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9144. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9145. perror("signal - failed to edit signal mask for --monitor");
  9146. exit(1);
  9147. }
  9148. // Fork a child process
  9149. forkpid = fork();
  9150. if (forkpid < 0) {
  9151. perror("fork - failed to fork child process for --monitor");
  9152. exit(1);
  9153. }
  9154. // Child: launch monitor command
  9155. if (0 == forkpid) {
  9156. // Make stdin read end of pipe
  9157. r = dup2(pfd[0], 0);
  9158. if (r < 0) {
  9159. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9160. exit(1);
  9161. }
  9162. close(pfd[0]);
  9163. if (r < 0) {
  9164. perror("close - in child, failed to close read end of pipe for --monitor");
  9165. exit(1);
  9166. }
  9167. // Launch user specified command
  9168. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9169. perror("execl - in child failed to exec user specified command for --monitor");
  9170. exit(1);
  9171. }
  9172. // Parent: clean up unused fds and bail
  9173. r = close(pfd[0]);
  9174. if (r < 0) {
  9175. perror("close - failed to close read end of pipe for --monitor");
  9176. exit(1);
  9177. }
  9178. }
  9179. #endif // defined(unix)
  9180. #ifdef HAVE_CURSES
  9181. #ifdef USE_UNICODE
  9182. static
  9183. wchar_t select_unicode_char(const wchar_t *opt)
  9184. {
  9185. for ( ; *opt; ++opt)
  9186. if (iswprint(*opt))
  9187. return *opt;
  9188. return '?';
  9189. }
  9190. #endif
  9191. void enable_curses(void) {
  9192. int x;
  9193. __maybe_unused int y;
  9194. lock_curses();
  9195. if (curses_active) {
  9196. unlock_curses();
  9197. return;
  9198. }
  9199. #ifdef USE_UNICODE
  9200. if (use_unicode)
  9201. {
  9202. setlocale(LC_CTYPE, "");
  9203. if (iswprint(0xb0))
  9204. have_unicode_degrees = true;
  9205. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9206. }
  9207. #endif
  9208. mainwin = initscr();
  9209. start_color();
  9210. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9211. if (ERR != use_default_colors())
  9212. default_bgcolor = -1;
  9213. #endif
  9214. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9215. {
  9216. menu_attr = COLOR_PAIR(1);
  9217. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9218. attr_bad |= COLOR_PAIR(2);
  9219. }
  9220. keypad(mainwin, true);
  9221. getmaxyx(mainwin, y, x);
  9222. statuswin = newwin(logstart, x, 0, 0);
  9223. leaveok(statuswin, true);
  9224. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9225. // We resize the window later anyway, so just start it off at 1 :)
  9226. logwin = newwin(1, 0, logcursor, 0);
  9227. idlok(logwin, true);
  9228. scrollok(logwin, true);
  9229. leaveok(logwin, true);
  9230. cbreak();
  9231. noecho();
  9232. nonl();
  9233. curses_active = true;
  9234. statusy = logstart;
  9235. unlock_curses();
  9236. }
  9237. #endif
  9238. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9239. #ifndef WANT_CPUMINE
  9240. struct device_drv cpu_drv;
  9241. struct device_drv cpu_drv = {
  9242. .name = "CPU",
  9243. };
  9244. #endif
  9245. static int cgminer_id_count = 0;
  9246. static int device_line_id_count;
  9247. void register_device(struct cgpu_info *cgpu)
  9248. {
  9249. cgpu->deven = DEV_ENABLED;
  9250. wr_lock(&devices_lock);
  9251. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9252. wr_unlock(&devices_lock);
  9253. if (!cgpu->proc_id)
  9254. cgpu->device_line_id = device_line_id_count++;
  9255. mining_threads += cgpu->threads ?: 1;
  9256. #ifdef HAVE_CURSES
  9257. adj_width(mining_threads, &dev_width);
  9258. #endif
  9259. rwlock_init(&cgpu->qlock);
  9260. cgpu->queued_work = NULL;
  9261. }
  9262. struct _cgpu_devid_counter {
  9263. char name[4];
  9264. int lastid;
  9265. UT_hash_handle hh;
  9266. };
  9267. void renumber_cgpu(struct cgpu_info *cgpu)
  9268. {
  9269. static struct _cgpu_devid_counter *devids = NULL;
  9270. struct _cgpu_devid_counter *d;
  9271. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9272. if (d)
  9273. cgpu->device_id = ++d->lastid;
  9274. else {
  9275. d = malloc(sizeof(*d));
  9276. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9277. cgpu->device_id = d->lastid = 0;
  9278. HASH_ADD_STR(devids, name, d);
  9279. }
  9280. // Build repr strings
  9281. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9282. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9283. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9284. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9285. const int lpcount = cgpu->procs;
  9286. if (lpcount > 1)
  9287. {
  9288. int ns;
  9289. struct cgpu_info *slave;
  9290. int lpdigits = 1;
  9291. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9292. ++lpdigits;
  9293. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9294. cgpu->proc_repr[5 + lpdigits] = '\0';
  9295. ns = strlen(cgpu->proc_repr_ns);
  9296. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9297. slave = cgpu;
  9298. for (int i = 1; i < lpcount; ++i)
  9299. {
  9300. slave = slave->next_proc;
  9301. strcpy(slave->proc_repr, cgpu->proc_repr);
  9302. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9303. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9304. {
  9305. slave->proc_repr_ns[ns + y] =
  9306. slave->proc_repr[5 + y] += (x % 26);
  9307. }
  9308. }
  9309. }
  9310. }
  9311. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9312. {
  9313. sha256(buffer, length, digest);
  9314. return true;
  9315. }
  9316. static
  9317. int drv_algo_check(const struct device_drv * const drv)
  9318. {
  9319. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9320. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9321. return (algos & algomatch);
  9322. }
  9323. #ifndef HAVE_PTHREAD_CANCEL
  9324. extern void setup_pthread_cancel_workaround();
  9325. extern struct sigaction pcwm_orig_term_handler;
  9326. #endif
  9327. bool bfg_need_detect_rescan;
  9328. extern void probe_device(struct lowlevel_device_info *);
  9329. static void schedule_rescan(const struct timeval *);
  9330. static
  9331. void drv_detect_all()
  9332. {
  9333. bool rescanning = false;
  9334. rescan:
  9335. bfg_need_detect_rescan = false;
  9336. #ifdef HAVE_BFG_LOWLEVEL
  9337. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9338. LL_FOREACH_SAFE(infolist, info, infotmp)
  9339. probe_device(info);
  9340. LL_FOREACH_SAFE(infolist, info, infotmp)
  9341. pthread_join(info->probe_pth, NULL);
  9342. #endif
  9343. struct driver_registration *reg, *tmp;
  9344. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9345. {
  9346. const struct device_drv * const drv = reg->drv;
  9347. if (!(drv_algo_check(drv) && drv->drv_detect))
  9348. continue;
  9349. drv->drv_detect();
  9350. }
  9351. #ifdef HAVE_BFG_LOWLEVEL
  9352. lowlevel_scan_free();
  9353. #endif
  9354. if (bfg_need_detect_rescan)
  9355. {
  9356. if (rescanning)
  9357. {
  9358. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9359. struct timeval tv_when;
  9360. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9361. schedule_rescan(&tv_when);
  9362. }
  9363. else
  9364. {
  9365. rescanning = true;
  9366. applog(LOG_DEBUG, "Device rescan requested");
  9367. goto rescan;
  9368. }
  9369. }
  9370. }
  9371. static
  9372. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9373. {
  9374. struct thr_info *thr;
  9375. int j;
  9376. struct device_drv *api = cgpu->drv;
  9377. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9378. int threadobj = cgpu->threads;
  9379. if (!threadobj)
  9380. // Create a fake thread object to handle hashmeter etc
  9381. threadobj = 1;
  9382. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9383. cgpu->thr[threadobj] = NULL;
  9384. cgpu->status = LIFE_INIT;
  9385. if (opt_devices_enabled_list)
  9386. {
  9387. struct string_elist *enablestr_elist;
  9388. cgpu->deven = DEV_DISABLED;
  9389. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9390. {
  9391. const char * const enablestr = enablestr_elist->string;
  9392. if (cgpu_match(enablestr, cgpu))
  9393. {
  9394. cgpu->deven = DEV_ENABLED;
  9395. break;
  9396. }
  9397. }
  9398. }
  9399. cgpu->max_hashes = 0;
  9400. BFGINIT(cgpu->min_nonce_diff, 1);
  9401. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9402. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9403. // Setup thread structs before starting any of the threads, in case they try to interact
  9404. for (j = 0; j < threadobj; ++j, ++*kp) {
  9405. thr = get_thread(*kp);
  9406. thr->id = *kp;
  9407. thr->cgpu = cgpu;
  9408. thr->device_thread = j;
  9409. thr->work_restart_notifier[1] = INVSOCK;
  9410. thr->mutex_request[1] = INVSOCK;
  9411. thr->_job_transition_in_progress = true;
  9412. timerclear(&thr->tv_morework);
  9413. thr->scanhash_working = true;
  9414. thr->hashes_done = 0;
  9415. timerclear(&thr->tv_hashes_done);
  9416. cgtime(&thr->tv_lastupdate);
  9417. thr->tv_poll.tv_sec = -1;
  9418. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9419. cgpu->thr[j] = thr;
  9420. }
  9421. if (!cgpu->device->threads)
  9422. notifier_init_invalid(cgpu->thr[0]->notifier);
  9423. else
  9424. if (!cgpu->threads)
  9425. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9426. else
  9427. for (j = 0; j < cgpu->threads; ++j)
  9428. {
  9429. thr = cgpu->thr[j];
  9430. notifier_init(thr->notifier);
  9431. }
  9432. }
  9433. static
  9434. void start_cgpu(struct cgpu_info *cgpu)
  9435. {
  9436. struct thr_info *thr;
  9437. int j;
  9438. for (j = 0; j < cgpu->threads; ++j) {
  9439. thr = cgpu->thr[j];
  9440. /* Enable threads for devices set not to mine but disable
  9441. * their queue in case we wish to enable them later */
  9442. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9443. continue;
  9444. thread_reportout(thr);
  9445. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9446. quit(1, "thread %d create failed", thr->id);
  9447. notifier_wake(thr->notifier);
  9448. }
  9449. if (cgpu->deven == DEV_ENABLED)
  9450. proc_enable(cgpu);
  9451. }
  9452. static
  9453. void _scan_serial(void *p)
  9454. {
  9455. const char *s = p;
  9456. struct string_elist *iter, *tmp;
  9457. struct string_elist *orig_scan_devices = scan_devices;
  9458. if (s)
  9459. {
  9460. // Make temporary scan_devices list
  9461. scan_devices = NULL;
  9462. string_elist_add("noauto", &scan_devices);
  9463. add_serial(s);
  9464. }
  9465. drv_detect_all();
  9466. if (s)
  9467. {
  9468. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9469. {
  9470. string_elist_del(&scan_devices, iter);
  9471. }
  9472. scan_devices = orig_scan_devices;
  9473. }
  9474. }
  9475. #ifdef HAVE_BFG_LOWLEVEL
  9476. static
  9477. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9478. {
  9479. if (!(false
  9480. || (info->serial && !strcasecmp(ser, info->serial))
  9481. || (info->path && !strcasecmp(ser, info->path ))
  9482. || (info->devid && !strcasecmp(ser, info->devid ))
  9483. ))
  9484. {
  9485. char *devid = devpath_to_devid(ser);
  9486. if (!devid)
  9487. return false;
  9488. const bool different = strcmp(info->devid, devid);
  9489. free(devid);
  9490. if (different)
  9491. return false;
  9492. }
  9493. return true;
  9494. }
  9495. static
  9496. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9497. {
  9498. struct driver_registration *dreg;
  9499. char dname[dnamelen];
  9500. int i;
  9501. for (i = 0; i < dnamelen; ++i)
  9502. dname[i] = tolower(_dname[i]);
  9503. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9504. if (!dreg)
  9505. {
  9506. for (i = 0; i < dnamelen; ++i)
  9507. dname[i] = toupper(_dname[i]);
  9508. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9509. if (!dreg)
  9510. return NULL;
  9511. }
  9512. if (!drv_algo_check(dreg->drv))
  9513. return NULL;
  9514. return dreg->drv;
  9515. }
  9516. static
  9517. void *probe_device_thread(void *p)
  9518. {
  9519. struct lowlevel_device_info * const infolist = p;
  9520. struct lowlevel_device_info *info = infolist;
  9521. bool request_rescan = false;
  9522. {
  9523. char threadname[5 + strlen(info->devid) + 1];
  9524. sprintf(threadname, "probe_%s", info->devid);
  9525. RenameThread(threadname);
  9526. }
  9527. // If already in use, ignore
  9528. if (bfg_claim_any(NULL, NULL, info->devid))
  9529. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9530. __func__, info->product);
  9531. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9532. struct string_elist *sd_iter, *sd_tmp;
  9533. struct driver_registration *dreg, *dreg_tmp;
  9534. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9535. {
  9536. const char * const dname = sd_iter->string;
  9537. const char * const colon = strpbrk(dname, ":@");
  9538. if (!(colon && colon != dname))
  9539. continue;
  9540. const char * const ser = &colon[1];
  9541. LL_FOREACH2(infolist, info, same_devid_next)
  9542. {
  9543. if (!_probe_device_match(info, ser))
  9544. continue;
  9545. const size_t dnamelen = (colon - dname);
  9546. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9547. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9548. continue;
  9549. if (drv->lowl_probe(info))
  9550. return NULL;
  9551. else
  9552. if (opt_hotplug)
  9553. request_rescan = true;
  9554. }
  9555. }
  9556. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9557. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9558. {
  9559. const struct device_drv * const drv = dreg->drv;
  9560. if (!drv_algo_check(drv))
  9561. continue;
  9562. // Check for "noauto" flag
  9563. // NOTE: driver-specific configuration overrides general
  9564. bool doauto = true;
  9565. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9566. {
  9567. const char * const dname = sd_iter->string;
  9568. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9569. const char *colon = strchr(dname, ':');
  9570. if (!colon)
  9571. colon = &dname[-1];
  9572. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9573. continue;
  9574. const ssize_t dnamelen = (colon - dname);
  9575. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9576. continue;
  9577. doauto = (tolower(colon[1]) == 'a');
  9578. if (dnamelen != -1)
  9579. break;
  9580. }
  9581. if (doauto && drv->lowl_match)
  9582. {
  9583. LL_FOREACH2(infolist, info, same_devid_next)
  9584. {
  9585. if (!drv->lowl_match(info))
  9586. continue;
  9587. if (drv->lowl_probe(info))
  9588. return NULL;
  9589. else
  9590. if (opt_hotplug)
  9591. bfg_need_detect_rescan = true;
  9592. }
  9593. }
  9594. }
  9595. // probe driver(s) with 'all' enabled
  9596. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9597. {
  9598. const char * const dname = sd_iter->string;
  9599. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9600. const char * const colon = strchr(dname, ':');
  9601. if (!colon)
  9602. {
  9603. LL_FOREACH2(infolist, info, same_devid_next)
  9604. {
  9605. if (
  9606. #ifdef NEED_BFG_LOWL_VCOM
  9607. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9608. #endif
  9609. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9610. {
  9611. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9612. {
  9613. const struct device_drv * const drv = dreg->drv;
  9614. if (!drv_algo_check(drv))
  9615. continue;
  9616. if (drv->lowl_probe_by_name_only)
  9617. continue;
  9618. if (!drv->lowl_probe)
  9619. continue;
  9620. if (drv->lowl_probe(info))
  9621. return NULL;
  9622. }
  9623. if (opt_hotplug)
  9624. request_rescan = true;
  9625. break;
  9626. }
  9627. }
  9628. continue;
  9629. }
  9630. if (strcasecmp(&colon[1], "all"))
  9631. continue;
  9632. const size_t dnamelen = (colon - dname);
  9633. LL_FOREACH2(infolist, info, same_devid_next)
  9634. {
  9635. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9636. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9637. continue;
  9638. if (drv->lowl_probe(info))
  9639. return NULL;
  9640. }
  9641. }
  9642. // Only actually request a rescan if we never found any cgpu
  9643. if (request_rescan)
  9644. bfg_need_detect_rescan = true;
  9645. return NULL;
  9646. }
  9647. void probe_device(struct lowlevel_device_info * const info)
  9648. {
  9649. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9650. }
  9651. #endif
  9652. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9653. {
  9654. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9655. int devcount, i, mining_threads_new = 0;
  9656. unsigned int k;
  9657. struct cgpu_info *cgpu;
  9658. struct thr_info *thr;
  9659. void *p;
  9660. mutex_lock(&mutex);
  9661. devcount = total_devices;
  9662. addfunc(arg);
  9663. if (!total_devices_new)
  9664. goto out;
  9665. wr_lock(&devices_lock);
  9666. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9667. if (unlikely(!p))
  9668. {
  9669. wr_unlock(&devices_lock);
  9670. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9671. goto out;
  9672. }
  9673. devices = p;
  9674. wr_unlock(&devices_lock);
  9675. for (i = 0; i < total_devices_new; ++i)
  9676. {
  9677. cgpu = devices_new[i];
  9678. mining_threads_new += cgpu->threads ?: 1;
  9679. }
  9680. wr_lock(&mining_thr_lock);
  9681. mining_threads_new += mining_threads;
  9682. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9683. if (unlikely(!p))
  9684. {
  9685. wr_unlock(&mining_thr_lock);
  9686. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9687. goto out;
  9688. }
  9689. mining_thr = p;
  9690. wr_unlock(&mining_thr_lock);
  9691. for (i = mining_threads; i < mining_threads_new; ++i) {
  9692. mining_thr[i] = calloc(1, sizeof(*thr));
  9693. if (!mining_thr[i])
  9694. {
  9695. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9696. for ( ; --i >= mining_threads; )
  9697. free(mining_thr[i]);
  9698. goto out;
  9699. }
  9700. }
  9701. k = mining_threads;
  9702. for (i = 0; i < total_devices_new; ++i)
  9703. {
  9704. cgpu = devices_new[i];
  9705. allocate_cgpu(cgpu, &k);
  9706. }
  9707. for (i = 0; i < total_devices_new; ++i)
  9708. {
  9709. cgpu = devices_new[i];
  9710. start_cgpu(cgpu);
  9711. register_device(cgpu);
  9712. ++total_devices;
  9713. }
  9714. #ifdef HAVE_CURSES
  9715. switch_logsize();
  9716. #endif
  9717. out:
  9718. total_devices_new = 0;
  9719. devcount = total_devices - devcount;
  9720. mutex_unlock(&mutex);
  9721. return devcount;
  9722. }
  9723. int scan_serial(const char *s)
  9724. {
  9725. return create_new_cgpus(_scan_serial, (void*)s);
  9726. }
  9727. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9728. static bool rescan_active;
  9729. static struct timeval tv_rescan;
  9730. static notifier_t rescan_notifier;
  9731. static
  9732. void *rescan_thread(__maybe_unused void *p)
  9733. {
  9734. pthread_detach(pthread_self());
  9735. RenameThread("rescan");
  9736. struct timeval tv_timeout, tv_now;
  9737. fd_set rfds;
  9738. while (true)
  9739. {
  9740. mutex_lock(&rescan_mutex);
  9741. tv_timeout = tv_rescan;
  9742. if (!timer_isset(&tv_timeout))
  9743. {
  9744. rescan_active = false;
  9745. mutex_unlock(&rescan_mutex);
  9746. break;
  9747. }
  9748. mutex_unlock(&rescan_mutex);
  9749. FD_ZERO(&rfds);
  9750. FD_SET(rescan_notifier[0], &rfds);
  9751. const int maxfd = rescan_notifier[0];
  9752. timer_set_now(&tv_now);
  9753. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9754. notifier_read(rescan_notifier);
  9755. mutex_lock(&rescan_mutex);
  9756. if (timer_passed(&tv_rescan, NULL))
  9757. {
  9758. timer_unset(&tv_rescan);
  9759. mutex_unlock(&rescan_mutex);
  9760. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9761. scan_serial(NULL);
  9762. }
  9763. else
  9764. mutex_unlock(&rescan_mutex);
  9765. }
  9766. return NULL;
  9767. }
  9768. static
  9769. void _schedule_rescan(const struct timeval * const tvp_when)
  9770. {
  9771. if (rescan_active)
  9772. {
  9773. if (timercmp(tvp_when, &tv_rescan, <))
  9774. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9775. else
  9776. {
  9777. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9778. tv_rescan = *tvp_when;
  9779. }
  9780. return;
  9781. }
  9782. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9783. tv_rescan = *tvp_when;
  9784. rescan_active = true;
  9785. static pthread_t pth;
  9786. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9787. applog(LOG_ERR, "Failed to start rescan thread");
  9788. }
  9789. static
  9790. void schedule_rescan(const struct timeval * const tvp_when)
  9791. {
  9792. mutex_lock(&rescan_mutex);
  9793. _schedule_rescan(tvp_when);
  9794. mutex_unlock(&rescan_mutex);
  9795. }
  9796. #ifdef HAVE_BFG_HOTPLUG
  9797. static
  9798. void hotplug_trigger()
  9799. {
  9800. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9801. struct timeval tv_now;
  9802. timer_set_now(&tv_now);
  9803. schedule_rescan(&tv_now);
  9804. }
  9805. #endif
  9806. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9807. static
  9808. void *hotplug_thread(__maybe_unused void *p)
  9809. {
  9810. pthread_detach(pthread_self());
  9811. RenameThread("hotplug");
  9812. struct udev * const udev = udev_new();
  9813. if (unlikely(!udev))
  9814. applogfailr(NULL, LOG_ERR, "udev_new");
  9815. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9816. if (unlikely(!mon))
  9817. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9818. if (unlikely(udev_monitor_enable_receiving(mon)))
  9819. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9820. const int epfd = epoll_create(1);
  9821. if (unlikely(epfd == -1))
  9822. applogfailr(NULL, LOG_ERR, "epoll_create");
  9823. {
  9824. const int fd = udev_monitor_get_fd(mon);
  9825. struct epoll_event ev = {
  9826. .events = EPOLLIN | EPOLLPRI,
  9827. .data.fd = fd,
  9828. };
  9829. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9830. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9831. }
  9832. struct epoll_event ev;
  9833. int rv;
  9834. bool pending = false;
  9835. while (true)
  9836. {
  9837. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9838. if (rv == -1)
  9839. {
  9840. if (errno == EAGAIN || errno == EINTR)
  9841. continue;
  9842. break;
  9843. }
  9844. if (!rv)
  9845. {
  9846. hotplug_trigger();
  9847. pending = false;
  9848. continue;
  9849. }
  9850. struct udev_device * const device = udev_monitor_receive_device(mon);
  9851. if (!device)
  9852. continue;
  9853. const char * const action = udev_device_get_action(device);
  9854. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9855. if (strcmp(action, "add"))
  9856. continue;
  9857. pending = true;
  9858. }
  9859. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9860. }
  9861. #elif defined(WIN32)
  9862. static UINT_PTR _hotplug_wintimer_id;
  9863. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9864. {
  9865. KillTimer(NULL, _hotplug_wintimer_id);
  9866. _hotplug_wintimer_id = 0;
  9867. hotplug_trigger();
  9868. }
  9869. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9870. {
  9871. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9872. {
  9873. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9874. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9875. }
  9876. return DefWindowProc(hwnd, msg, wParam, lParam);
  9877. }
  9878. static
  9879. void *hotplug_thread(__maybe_unused void *p)
  9880. {
  9881. pthread_detach(pthread_self());
  9882. WNDCLASS DummyWinCls = {
  9883. .lpszClassName = "BFGDummyWinCls",
  9884. .lpfnWndProc = hotplug_win_callback,
  9885. };
  9886. ATOM a = RegisterClass(&DummyWinCls);
  9887. if (unlikely(!a))
  9888. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9889. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9890. if (unlikely(!hwnd))
  9891. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9892. MSG msg;
  9893. while (GetMessage(&msg, NULL, 0, 0))
  9894. {
  9895. TranslateMessage(&msg);
  9896. DispatchMessage(&msg);
  9897. }
  9898. quit(0, "WM_QUIT received");
  9899. return NULL;
  9900. }
  9901. #endif
  9902. #ifdef HAVE_BFG_HOTPLUG
  9903. static
  9904. void hotplug_start()
  9905. {
  9906. pthread_t pth;
  9907. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9908. applog(LOG_ERR, "Failed to start hotplug thread");
  9909. }
  9910. #endif
  9911. static void probe_pools(void)
  9912. {
  9913. int i;
  9914. for (i = 0; i < total_pools; i++) {
  9915. struct pool *pool = pools[i];
  9916. pool->testing = true;
  9917. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9918. }
  9919. }
  9920. static void raise_fd_limits(void)
  9921. {
  9922. #ifdef HAVE_SETRLIMIT
  9923. struct rlimit fdlimit;
  9924. unsigned long old_soft_limit;
  9925. char frombuf[0x10] = "unlimited";
  9926. char hardbuf[0x10] = "unlimited";
  9927. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9928. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9929. old_soft_limit = fdlimit.rlim_cur;
  9930. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9931. fdlimit.rlim_cur = FD_SETSIZE;
  9932. else
  9933. fdlimit.rlim_cur = fdlimit.rlim_max;
  9934. if (fdlimit.rlim_max != RLIM_INFINITY)
  9935. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9936. if (old_soft_limit != RLIM_INFINITY)
  9937. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9938. if (fdlimit.rlim_cur == old_soft_limit)
  9939. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9940. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9941. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9942. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9943. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9944. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9945. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9946. #else
  9947. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9948. #endif
  9949. }
  9950. extern void bfg_init_threadlocal();
  9951. extern void stratumsrv_start();
  9952. int main(int argc, char *argv[])
  9953. {
  9954. struct sigaction handler;
  9955. struct thr_info *thr;
  9956. struct block *block;
  9957. unsigned int k;
  9958. int i;
  9959. int rearrange_pools = 0;
  9960. char *s;
  9961. #ifdef WIN32
  9962. LoadLibrary("backtrace.dll");
  9963. #endif
  9964. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9965. bfg_init_threadlocal();
  9966. #ifndef HAVE_PTHREAD_CANCEL
  9967. setup_pthread_cancel_workaround();
  9968. #endif
  9969. bfg_init_checksums();
  9970. #ifdef WIN32
  9971. {
  9972. WSADATA wsa;
  9973. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9974. if (i)
  9975. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9976. }
  9977. #endif
  9978. /* This dangerous functions tramples random dynamically allocated
  9979. * variables so do it before anything at all */
  9980. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9981. quit(1, "Failed to curl_global_init");
  9982. initial_args = malloc(sizeof(char *) * (argc + 1));
  9983. for (i = 0; i < argc; i++)
  9984. initial_args[i] = strdup(argv[i]);
  9985. initial_args[argc] = NULL;
  9986. mutex_init(&hash_lock);
  9987. mutex_init(&console_lock);
  9988. cglock_init(&control_lock);
  9989. mutex_init(&stats_lock);
  9990. mutex_init(&sharelog_lock);
  9991. cglock_init(&ch_lock);
  9992. mutex_init(&sshare_lock);
  9993. rwlock_init(&blk_lock);
  9994. rwlock_init(&netacc_lock);
  9995. rwlock_init(&mining_thr_lock);
  9996. rwlock_init(&devices_lock);
  9997. mutex_init(&lp_lock);
  9998. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9999. quit(1, "Failed to pthread_cond_init lp_cond");
  10000. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10001. quit(1, "Failed to pthread_cond_init gws_cond");
  10002. notifier_init(submit_waiting_notifier);
  10003. timer_unset(&tv_rescan);
  10004. notifier_init(rescan_notifier);
  10005. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10006. #ifdef WANT_CPUMINE
  10007. init_max_name_len();
  10008. #endif
  10009. handler.sa_handler = &sighandler;
  10010. handler.sa_flags = 0;
  10011. sigemptyset(&handler.sa_mask);
  10012. #ifdef HAVE_PTHREAD_CANCEL
  10013. sigaction(SIGTERM, &handler, &termhandler);
  10014. #else
  10015. // Need to let pthread_cancel emulation handle SIGTERM first
  10016. termhandler = pcwm_orig_term_handler;
  10017. pcwm_orig_term_handler = handler;
  10018. #endif
  10019. sigaction(SIGINT, &handler, &inthandler);
  10020. #ifndef WIN32
  10021. signal(SIGPIPE, SIG_IGN);
  10022. #else
  10023. timeBeginPeriod(1);
  10024. #endif
  10025. opt_kernel_path = CGMINER_PREFIX;
  10026. cgminer_path = alloca(PATH_MAX);
  10027. s = strdup(argv[0]);
  10028. strcpy(cgminer_path, dirname(s));
  10029. free(s);
  10030. strcat(cgminer_path, "/");
  10031. #if defined(WANT_CPUMINE) && defined(WIN32)
  10032. {
  10033. char buf[32];
  10034. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10035. if (gev > 0 && gev < sizeof(buf))
  10036. {
  10037. setup_benchmark_pool();
  10038. double rate = bench_algo_stage3(atoi(buf));
  10039. // Write result to shared memory for parent
  10040. char unique_name[64];
  10041. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10042. {
  10043. HANDLE map_handle = CreateFileMapping(
  10044. INVALID_HANDLE_VALUE, // use paging file
  10045. NULL, // default security attributes
  10046. PAGE_READWRITE, // read/write access
  10047. 0, // size: high 32-bits
  10048. 4096, // size: low 32-bits
  10049. unique_name // name of map object
  10050. );
  10051. if (NULL != map_handle) {
  10052. void *shared_mem = MapViewOfFile(
  10053. map_handle, // object to map view of
  10054. FILE_MAP_WRITE, // read/write access
  10055. 0, // high offset: map from
  10056. 0, // low offset: beginning
  10057. 0 // default: map entire file
  10058. );
  10059. if (NULL != shared_mem)
  10060. CopyMemory(shared_mem, &rate, sizeof(rate));
  10061. (void)UnmapViewOfFile(shared_mem);
  10062. }
  10063. (void)CloseHandle(map_handle);
  10064. }
  10065. exit(0);
  10066. }
  10067. }
  10068. #endif
  10069. devcursor = 8;
  10070. logstart = devcursor;
  10071. logcursor = logstart;
  10072. block = calloc(sizeof(struct block), 1);
  10073. if (unlikely(!block))
  10074. quit (1, "main OOM");
  10075. for (i = 0; i < 36; i++)
  10076. strcat(block->hash, "0");
  10077. HASH_ADD_STR(blocks, hash, block);
  10078. strcpy(current_block, block->hash);
  10079. mutex_init(&submitting_lock);
  10080. #ifdef HAVE_OPENCL
  10081. opencl_early_init();
  10082. #endif
  10083. schedstart.tm.tm_sec = 1;
  10084. schedstop .tm.tm_sec = 1;
  10085. opt_register_table(opt_early_table, NULL);
  10086. opt_register_table(opt_config_table, NULL);
  10087. opt_register_table(opt_cmdline_table, NULL);
  10088. opt_early_parse(argc, argv, applog_and_exit);
  10089. if (!config_loaded)
  10090. {
  10091. load_default_config();
  10092. rearrange_pools = total_pools;
  10093. }
  10094. opt_free_table();
  10095. /* parse command line */
  10096. opt_register_table(opt_config_table,
  10097. "Options for both config file and command line");
  10098. opt_register_table(opt_cmdline_table,
  10099. "Options for command line only");
  10100. opt_parse(&argc, argv, applog_and_exit);
  10101. if (argc != 1)
  10102. quit(1, "Unexpected extra commandline arguments");
  10103. if (rearrange_pools && rearrange_pools < total_pools)
  10104. {
  10105. // Prioritise commandline pools before default-config pools
  10106. for (i = 0; i < rearrange_pools; ++i)
  10107. pools[i]->prio += rearrange_pools;
  10108. for ( ; i < total_pools; ++i)
  10109. pools[i]->prio -= rearrange_pools;
  10110. }
  10111. #ifndef HAVE_PTHREAD_CANCEL
  10112. // Can't do this any earlier, or config isn't loaded
  10113. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10114. #endif
  10115. #ifdef HAVE_PWD_H
  10116. struct passwd *user_info = NULL;
  10117. if (opt_setuid != NULL) {
  10118. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10119. quit(1, "Unable to find setuid user information");
  10120. }
  10121. }
  10122. #endif
  10123. #ifdef HAVE_CHROOT
  10124. if (chroot_dir != NULL) {
  10125. #ifdef HAVE_PWD_H
  10126. if (user_info == NULL && getuid() == 0) {
  10127. applog(LOG_WARNING, "Running as root inside chroot");
  10128. }
  10129. #endif
  10130. if (chroot(chroot_dir) != 0) {
  10131. quit(1, "Unable to chroot");
  10132. }
  10133. if (chdir("/"))
  10134. quit(1, "Unable to chdir to chroot");
  10135. }
  10136. #endif
  10137. #ifdef HAVE_PWD_H
  10138. if (user_info != NULL) {
  10139. if (setgid((*user_info).pw_gid) != 0)
  10140. quit(1, "Unable to setgid");
  10141. if (setuid((*user_info).pw_uid) != 0)
  10142. quit(1, "Unable to setuid");
  10143. }
  10144. #endif
  10145. raise_fd_limits();
  10146. if (opt_benchmark) {
  10147. while (total_pools)
  10148. remove_pool(pools[0]);
  10149. setup_benchmark_pool();
  10150. }
  10151. if (opt_unittest) {
  10152. test_cgpu_match();
  10153. test_intrange();
  10154. test_decimal_width();
  10155. utf8_test();
  10156. }
  10157. #ifdef HAVE_CURSES
  10158. if (opt_realquiet || opt_display_devs)
  10159. use_curses = false;
  10160. setlocale(LC_ALL, "C");
  10161. if (use_curses)
  10162. enable_curses();
  10163. #endif
  10164. #ifdef HAVE_LIBUSB
  10165. int err = libusb_init(NULL);
  10166. if (err)
  10167. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10168. else
  10169. have_libusb = true;
  10170. #endif
  10171. applog(LOG_WARNING, "Started %s", packagename);
  10172. if (cnfbuf) {
  10173. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10174. switch (fileconf_load) {
  10175. case 0:
  10176. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10177. applog(LOG_WARNING, "Configuration file could not be used.");
  10178. break;
  10179. case -1:
  10180. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10181. if (use_curses)
  10182. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10183. break;
  10184. default:
  10185. break;
  10186. }
  10187. free(cnfbuf);
  10188. cnfbuf = NULL;
  10189. }
  10190. i = strlen(opt_kernel_path) + 2;
  10191. char __kernel_path[i];
  10192. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10193. opt_kernel_path = __kernel_path;
  10194. if (want_per_device_stats)
  10195. opt_log_output = true;
  10196. #ifdef WANT_CPUMINE
  10197. #ifdef USE_SCRYPT
  10198. if (opt_scrypt)
  10199. set_scrypt_algo(&opt_algo);
  10200. #endif
  10201. #endif
  10202. bfg_devapi_init();
  10203. drv_detect_all();
  10204. total_devices = total_devices_new;
  10205. devices = devices_new;
  10206. total_devices_new = 0;
  10207. devices_new = NULL;
  10208. if (opt_display_devs) {
  10209. int devcount = 0;
  10210. applog(LOG_ERR, "Devices detected:");
  10211. for (i = 0; i < total_devices; ++i) {
  10212. struct cgpu_info *cgpu = devices[i];
  10213. char buf[0x100];
  10214. if (cgpu->device != cgpu)
  10215. continue;
  10216. if (cgpu->name)
  10217. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10218. else
  10219. if (cgpu->dev_manufacturer)
  10220. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10221. else
  10222. if (cgpu->dev_product)
  10223. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10224. else
  10225. strcpy(buf, " Device");
  10226. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10227. if (cgpu->dev_serial)
  10228. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10229. if (cgpu->device_path)
  10230. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10231. tailsprintf(buf, sizeof(buf), ")");
  10232. _applog(LOG_NOTICE, buf);
  10233. ++devcount;
  10234. }
  10235. quit(0, "%d devices listed", devcount);
  10236. }
  10237. mining_threads = 0;
  10238. for (i = 0; i < total_devices; ++i)
  10239. register_device(devices[i]);
  10240. if (!total_devices) {
  10241. applog(LOG_WARNING, "No devices detected!");
  10242. if (use_curses)
  10243. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10244. else
  10245. applog(LOG_WARNING, "Waiting for devices");
  10246. }
  10247. if (opt_quit_summary == BQS_DEFAULT)
  10248. {
  10249. if (total_devices < 25)
  10250. opt_quit_summary = BQS_PROCS;
  10251. else
  10252. opt_quit_summary = BQS_DEVS;
  10253. }
  10254. #ifdef HAVE_CURSES
  10255. switch_logsize();
  10256. #endif
  10257. if (!total_pools) {
  10258. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10259. #ifdef HAVE_CURSES
  10260. if (!use_curses || !input_pool(false))
  10261. #endif
  10262. quit(1, "Pool setup failed");
  10263. }
  10264. for (i = 0; i < total_pools; i++) {
  10265. struct pool *pool = pools[i];
  10266. size_t siz;
  10267. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10268. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10269. if (!pool->rpc_url)
  10270. quit(1, "No URI supplied for pool %u", i);
  10271. if (!pool->rpc_userpass) {
  10272. if (!pool->rpc_user || !pool->rpc_pass)
  10273. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10274. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10275. pool->rpc_userpass = malloc(siz);
  10276. if (!pool->rpc_userpass)
  10277. quit(1, "Failed to malloc userpass");
  10278. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10279. }
  10280. }
  10281. /* Set the currentpool to pool with priority 0 */
  10282. validate_pool_priorities();
  10283. for (i = 0; i < total_pools; i++) {
  10284. struct pool *pool = pools[i];
  10285. if (!pool->prio)
  10286. currentpool = pool;
  10287. }
  10288. #ifdef HAVE_SYSLOG_H
  10289. if (use_syslog)
  10290. openlog(PACKAGE, LOG_PID, LOG_USER);
  10291. #endif
  10292. #if defined(unix) || defined(__APPLE__)
  10293. if (opt_stderr_cmd)
  10294. fork_monitor();
  10295. #endif // defined(unix)
  10296. mining_thr = calloc(mining_threads, sizeof(thr));
  10297. if (!mining_thr)
  10298. quit(1, "Failed to calloc mining_thr");
  10299. for (i = 0; i < mining_threads; i++) {
  10300. mining_thr[i] = calloc(1, sizeof(*thr));
  10301. if (!mining_thr[i])
  10302. quit(1, "Failed to calloc mining_thr[%d]", i);
  10303. }
  10304. total_control_threads = 6;
  10305. control_thr = calloc(total_control_threads, sizeof(*thr));
  10306. if (!control_thr)
  10307. quit(1, "Failed to calloc control_thr");
  10308. gwsched_thr_id = 0;
  10309. /* Create a unique get work queue */
  10310. getq = tq_new();
  10311. if (!getq)
  10312. quit(1, "Failed to create getq");
  10313. /* We use the getq mutex as the staged lock */
  10314. stgd_lock = &getq->mutex;
  10315. if (opt_benchmark)
  10316. goto begin_bench;
  10317. for (i = 0; i < total_pools; i++) {
  10318. struct pool *pool = pools[i];
  10319. enable_pool(pool);
  10320. pool->idle = true;
  10321. }
  10322. applog(LOG_NOTICE, "Probing for an alive pool");
  10323. do {
  10324. bool still_testing;
  10325. int i;
  10326. /* Look for at least one active pool before starting */
  10327. probe_pools();
  10328. do {
  10329. sleep(1);
  10330. if (pools_active)
  10331. break;
  10332. still_testing = false;
  10333. for (int i = 0; i < total_pools; ++i)
  10334. if (pools[i]->testing)
  10335. still_testing = true;
  10336. } while (still_testing);
  10337. if (!pools_active) {
  10338. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10339. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10340. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10341. for (i = 0; i < total_pools; i++) {
  10342. struct pool *pool;
  10343. pool = pools[i];
  10344. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10345. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10346. }
  10347. #ifdef HAVE_CURSES
  10348. if (use_curses) {
  10349. halfdelay(150);
  10350. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10351. if (getch() != ERR)
  10352. quit(0, "No servers could be used! Exiting.");
  10353. cbreak();
  10354. } else
  10355. #endif
  10356. quit(0, "No servers could be used! Exiting.");
  10357. }
  10358. } while (!pools_active);
  10359. #ifdef USE_SCRYPT
  10360. if (detect_algo == 1 && !opt_scrypt) {
  10361. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10362. opt_scrypt = true;
  10363. }
  10364. #endif
  10365. detect_algo = 0;
  10366. begin_bench:
  10367. total_mhashes_done = 0;
  10368. for (i = 0; i < total_devices; i++) {
  10369. struct cgpu_info *cgpu = devices[i];
  10370. cgpu->rolling = cgpu->total_mhashes = 0;
  10371. }
  10372. cgtime(&total_tv_start);
  10373. cgtime(&total_tv_end);
  10374. miner_started = total_tv_start;
  10375. time_t miner_start_ts = time(NULL);
  10376. if (schedstart.tm.tm_sec)
  10377. localtime_r(&miner_start_ts, &schedstart.tm);
  10378. if (schedstop.tm.tm_sec)
  10379. localtime_r(&miner_start_ts, &schedstop .tm);
  10380. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10381. // Initialise processors and threads
  10382. k = 0;
  10383. for (i = 0; i < total_devices; ++i) {
  10384. struct cgpu_info *cgpu = devices[i];
  10385. allocate_cgpu(cgpu, &k);
  10386. }
  10387. // Start threads
  10388. for (i = 0; i < total_devices; ++i) {
  10389. struct cgpu_info *cgpu = devices[i];
  10390. start_cgpu(cgpu);
  10391. }
  10392. #ifdef HAVE_OPENCL
  10393. for (i = 0; i < nDevs; i++)
  10394. pause_dynamic_threads(i);
  10395. #endif
  10396. #ifdef WANT_CPUMINE
  10397. applog(LOG_INFO, "%d cpu miner threads started, "
  10398. "using SHA256 '%s' algorithm.",
  10399. opt_n_threads,
  10400. algo_names[opt_algo]);
  10401. #endif
  10402. cgtime(&total_tv_start);
  10403. cgtime(&total_tv_end);
  10404. if (!opt_benchmark)
  10405. {
  10406. pthread_t submit_thread;
  10407. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10408. quit(1, "submit_work thread create failed");
  10409. }
  10410. watchpool_thr_id = 1;
  10411. thr = &control_thr[watchpool_thr_id];
  10412. /* start watchpool thread */
  10413. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10414. quit(1, "watchpool thread create failed");
  10415. pthread_detach(thr->pth);
  10416. watchdog_thr_id = 2;
  10417. thr = &control_thr[watchdog_thr_id];
  10418. /* start watchdog thread */
  10419. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10420. quit(1, "watchdog thread create failed");
  10421. pthread_detach(thr->pth);
  10422. #ifdef HAVE_OPENCL
  10423. /* Create reinit gpu thread */
  10424. gpur_thr_id = 3;
  10425. thr = &control_thr[gpur_thr_id];
  10426. thr->q = tq_new();
  10427. if (!thr->q)
  10428. quit(1, "tq_new failed for gpur_thr_id");
  10429. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10430. quit(1, "reinit_gpu thread create failed");
  10431. #endif
  10432. /* Create API socket thread */
  10433. api_thr_id = 4;
  10434. thr = &control_thr[api_thr_id];
  10435. if (thr_info_create(thr, NULL, api_thread, thr))
  10436. quit(1, "API thread create failed");
  10437. #ifdef USE_LIBMICROHTTPD
  10438. if (httpsrv_port != -1)
  10439. httpsrv_start(httpsrv_port);
  10440. #endif
  10441. #ifdef USE_LIBEVENT
  10442. if (stratumsrv_port != -1)
  10443. stratumsrv_start();
  10444. #endif
  10445. #ifdef HAVE_BFG_HOTPLUG
  10446. if (opt_hotplug && !opt_scrypt)
  10447. hotplug_start();
  10448. #endif
  10449. #ifdef HAVE_CURSES
  10450. /* Create curses input thread for keyboard input. Create this last so
  10451. * that we know all threads are created since this can call kill_work
  10452. * to try and shut down ll previous threads. */
  10453. input_thr_id = 5;
  10454. thr = &control_thr[input_thr_id];
  10455. if (thr_info_create(thr, NULL, input_thread, thr))
  10456. quit(1, "input thread create failed");
  10457. pthread_detach(thr->pth);
  10458. #endif
  10459. /* Just to be sure */
  10460. if (total_control_threads != 6)
  10461. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10462. /* Once everything is set up, main() becomes the getwork scheduler */
  10463. while (42) {
  10464. int ts, max_staged = opt_queue;
  10465. struct pool *pool, *cp;
  10466. bool lagging = false;
  10467. struct curl_ent *ce;
  10468. struct work *work;
  10469. cp = current_pool();
  10470. // Generally, each processor needs a new work, and all at once during work restarts
  10471. max_staged += mining_threads;
  10472. mutex_lock(stgd_lock);
  10473. ts = __total_staged();
  10474. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10475. lagging = true;
  10476. /* Wait until hash_pop tells us we need to create more work */
  10477. if (ts > max_staged) {
  10478. staged_full = true;
  10479. pthread_cond_wait(&gws_cond, stgd_lock);
  10480. ts = __total_staged();
  10481. }
  10482. mutex_unlock(stgd_lock);
  10483. if (ts > max_staged)
  10484. continue;
  10485. work = make_work();
  10486. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10487. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10488. cp->getfail_occasions++;
  10489. total_go++;
  10490. }
  10491. pool = select_pool(lagging);
  10492. retry:
  10493. if (pool->has_stratum) {
  10494. while (!pool->stratum_active || !pool->stratum_notify) {
  10495. struct pool *altpool = select_pool(true);
  10496. if (altpool == pool && pool->has_stratum)
  10497. cgsleep_ms(5000);
  10498. pool = altpool;
  10499. goto retry;
  10500. }
  10501. gen_stratum_work(pool, work);
  10502. applog(LOG_DEBUG, "Generated stratum work");
  10503. stage_work(work);
  10504. continue;
  10505. }
  10506. if (pool->last_work_copy) {
  10507. mutex_lock(&pool->last_work_lock);
  10508. struct work *last_work = pool->last_work_copy;
  10509. if (!last_work)
  10510. {}
  10511. else
  10512. if (can_roll(last_work) && should_roll(last_work)) {
  10513. struct timeval tv_now;
  10514. cgtime(&tv_now);
  10515. free_work(work);
  10516. work = make_clone(pool->last_work_copy);
  10517. mutex_unlock(&pool->last_work_lock);
  10518. roll_work(work);
  10519. 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));
  10520. stage_work(work);
  10521. continue;
  10522. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10523. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10524. } else {
  10525. free_work(last_work);
  10526. pool->last_work_copy = NULL;
  10527. }
  10528. mutex_unlock(&pool->last_work_lock);
  10529. }
  10530. if (clone_available()) {
  10531. applog(LOG_DEBUG, "Cloned getwork work");
  10532. free_work(work);
  10533. continue;
  10534. }
  10535. if (opt_benchmark) {
  10536. get_benchmark_work(work);
  10537. applog(LOG_DEBUG, "Generated benchmark work");
  10538. stage_work(work);
  10539. continue;
  10540. }
  10541. work->pool = pool;
  10542. ce = pop_curl_entry3(pool, 2);
  10543. /* obtain new work from bitcoin via JSON-RPC */
  10544. if (!get_upstream_work(work, ce->curl)) {
  10545. struct pool *next_pool;
  10546. /* Make sure the pool just hasn't stopped serving
  10547. * requests but is up as we'll keep hammering it */
  10548. push_curl_entry(ce, pool);
  10549. ++pool->seq_getfails;
  10550. pool_died(pool);
  10551. next_pool = select_pool(!opt_fail_only);
  10552. if (pool == next_pool) {
  10553. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10554. cgsleep_ms(5000);
  10555. } else {
  10556. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10557. pool = next_pool;
  10558. }
  10559. goto retry;
  10560. }
  10561. if (ts >= max_staged)
  10562. pool_tclear(pool, &pool->lagging);
  10563. if (pool_tclear(pool, &pool->idle))
  10564. pool_resus(pool);
  10565. applog(LOG_DEBUG, "Generated getwork work");
  10566. stage_work(work);
  10567. push_curl_entry(ce, pool);
  10568. }
  10569. return 0;
  10570. }