miner.c 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <limits.h>
  22. #include <locale.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <sys/time.h>
  30. #include <time.h>
  31. #include <math.h>
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #include <signal.h>
  35. #include <wctype.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <dirent.h>
  39. #ifdef HAVE_PWD_H
  40. #include <pwd.h>
  41. #endif
  42. #ifndef WIN32
  43. #include <sys/resource.h>
  44. #include <sys/socket.h>
  45. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  46. #include <libudev.h>
  47. #include <sys/epoll.h>
  48. #define HAVE_BFG_HOTPLUG
  49. #endif
  50. #else
  51. #include <winsock2.h>
  52. #include <windows.h>
  53. #include <dbt.h>
  54. #define HAVE_BFG_HOTPLUG
  55. #endif
  56. #include <ccan/ccan/opt/opt.h>
  57. #include <jansson.h>
  58. #include <curl/curl.h>
  59. #include <libgen.h>
  60. #include <sha2.h>
  61. #include <utlist.h>
  62. #include <blkmaker.h>
  63. #include <blkmaker_jansson.h>
  64. #include <blktemplate.h>
  65. #include "compat.h"
  66. #include "deviceapi.h"
  67. #include "logging.h"
  68. #include "miner.h"
  69. #include "findnonce.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "bench_block.h"
  74. #include "scrypt.h"
  75. #ifdef USE_AVALON
  76. #include "driver-avalon.h"
  77. #endif
  78. #ifdef HAVE_BFG_LOWLEVEL
  79. #include "lowlevel.h"
  80. #endif
  81. #if defined(unix) || defined(__APPLE__)
  82. #include <errno.h>
  83. #include <fcntl.h>
  84. #include <sys/wait.h>
  85. #endif
  86. #ifdef USE_SCRYPT
  87. #include "scrypt.h"
  88. #endif
  89. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  90. # define USE_FPGA
  91. #endif
  92. enum bfg_quit_summary {
  93. BQS_DEFAULT,
  94. BQS_NONE,
  95. BQS_DEVS,
  96. BQS_PROCS,
  97. BQS_DETAILED,
  98. };
  99. struct strategies strategies[] = {
  100. { "Failover" },
  101. { "Round Robin" },
  102. { "Rotate" },
  103. { "Load Balance" },
  104. { "Balance" },
  105. };
  106. static char packagename[256];
  107. bool opt_protocol;
  108. bool opt_dev_protocol;
  109. static bool opt_benchmark;
  110. static bool want_longpoll = true;
  111. static bool want_gbt = true;
  112. static bool want_getwork = true;
  113. #if BLKMAKER_VERSION > 1
  114. struct _cbscript_t {
  115. char *data;
  116. size_t sz;
  117. };
  118. static struct _cbscript_t opt_coinbase_script;
  119. static uint32_t template_nonce;
  120. #endif
  121. #if BLKMAKER_VERSION > 0
  122. char *opt_coinbase_sig;
  123. #endif
  124. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  125. static bool include_serial_in_statline;
  126. char *request_target_str;
  127. float request_pdiff = 1.0;
  128. double request_bdiff;
  129. static bool want_stratum = true;
  130. bool have_longpoll;
  131. int opt_skip_checks;
  132. bool want_per_device_stats;
  133. bool use_syslog;
  134. bool opt_quiet_work_updates;
  135. bool opt_quiet;
  136. bool opt_realquiet;
  137. int loginput_size;
  138. bool opt_compact;
  139. bool opt_show_procs;
  140. const int opt_cutofftemp = 95;
  141. int opt_hysteresis = 3;
  142. static int opt_retries = -1;
  143. int opt_fail_pause = 5;
  144. int opt_log_interval = 20;
  145. int opt_queue = 1;
  146. int opt_scantime = 60;
  147. int opt_expiry = 120;
  148. int opt_expiry_lp = 3600;
  149. int opt_bench_algo = -1;
  150. unsigned long long global_hashrate;
  151. static bool opt_unittest = false;
  152. unsigned long global_quota_gcd = 1;
  153. time_t last_getwork;
  154. #ifdef HAVE_OPENCL
  155. int opt_dynamic_interval = 7;
  156. int nDevs;
  157. int opt_g_threads = -1;
  158. #endif
  159. #ifdef USE_SCRYPT
  160. static char detect_algo = 1;
  161. bool opt_scrypt;
  162. #else
  163. static char detect_algo;
  164. #endif
  165. bool opt_restart = true;
  166. #ifdef USE_LIBMICROHTTPD
  167. #include "httpsrv.h"
  168. int httpsrv_port = -1;
  169. #endif
  170. #ifdef USE_LIBEVENT
  171. int stratumsrv_port = -1;
  172. #endif
  173. const
  174. int rescan_delay_ms = 1000;
  175. #ifdef HAVE_BFG_HOTPLUG
  176. bool opt_hotplug = 1;
  177. const
  178. int hotplug_delay_ms = 100;
  179. #else
  180. const bool opt_hotplug;
  181. #endif
  182. struct string_elist *scan_devices;
  183. static struct string_elist *opt_set_device_list;
  184. bool opt_force_dev_init;
  185. static struct string_elist *opt_devices_enabled_list;
  186. static bool opt_display_devs;
  187. int total_devices;
  188. struct cgpu_info **devices;
  189. int total_devices_new;
  190. struct cgpu_info **devices_new;
  191. bool have_opencl;
  192. int opt_n_threads = -1;
  193. int mining_threads;
  194. int num_processors;
  195. #ifdef HAVE_CURSES
  196. bool use_curses = true;
  197. #else
  198. bool use_curses;
  199. #endif
  200. #ifdef HAVE_LIBUSB
  201. bool have_libusb;
  202. #endif
  203. static bool opt_submit_stale = true;
  204. static int opt_shares;
  205. static int opt_submit_threads = 0x40;
  206. bool opt_fail_only;
  207. bool opt_autofan;
  208. bool opt_autoengine;
  209. bool opt_noadl;
  210. char *opt_api_allow = NULL;
  211. char *opt_api_groups;
  212. char *opt_api_description = PACKAGE_STRING;
  213. int opt_api_port = 4028;
  214. bool opt_api_listen;
  215. bool opt_api_mcast;
  216. char *opt_api_mcast_addr = API_MCAST_ADDR;
  217. char *opt_api_mcast_code = API_MCAST_CODE;
  218. char *opt_api_mcast_des = "";
  219. int opt_api_mcast_port = 4028;
  220. bool opt_api_network;
  221. bool opt_delaynet;
  222. bool opt_disable_pool;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int gwsched_thr_id;
  235. static int watchpool_thr_id;
  236. static int watchdog_thr_id;
  237. #ifdef HAVE_CURSES
  238. static int input_thr_id;
  239. #endif
  240. int gpur_thr_id;
  241. static int api_thr_id;
  242. static int total_control_threads;
  243. pthread_mutex_t hash_lock;
  244. static pthread_mutex_t *stgd_lock;
  245. pthread_mutex_t console_lock;
  246. cglock_t ch_lock;
  247. static pthread_rwlock_t blk_lock;
  248. static pthread_mutex_t sshare_lock;
  249. pthread_rwlock_t netacc_lock;
  250. pthread_rwlock_t mining_thr_lock;
  251. pthread_rwlock_t devices_lock;
  252. static pthread_mutex_t lp_lock;
  253. static pthread_cond_t lp_cond;
  254. pthread_cond_t gws_cond;
  255. bool shutting_down;
  256. double total_rolling;
  257. double total_mhashes_done;
  258. static struct timeval total_tv_start, total_tv_end;
  259. static struct timeval miner_started;
  260. cglock_t control_lock;
  261. pthread_mutex_t stats_lock;
  262. static pthread_mutex_t submitting_lock;
  263. static int total_submitting;
  264. static struct work *submit_waiting;
  265. notifier_t submit_waiting_notifier;
  266. int hw_errors;
  267. int total_accepted, total_rejected;
  268. int total_getworks, total_stale, total_discarded;
  269. uint64_t total_bytes_rcvd, total_bytes_sent;
  270. double total_diff1, total_bad_diff1;
  271. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  272. static int staged_rollable;
  273. unsigned int new_blocks;
  274. unsigned int found_blocks;
  275. unsigned int local_work;
  276. unsigned int total_go, total_ro;
  277. struct pool **pools;
  278. static struct pool *currentpool = NULL;
  279. int total_pools, enabled_pools;
  280. enum pool_strategy pool_strategy = POOL_FAILOVER;
  281. int opt_rotate_period;
  282. static int total_urls, total_users, total_passes;
  283. static
  284. #ifndef HAVE_CURSES
  285. const
  286. #endif
  287. bool curses_active;
  288. #ifdef HAVE_CURSES
  289. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  290. const
  291. #endif
  292. short default_bgcolor = COLOR_BLACK;
  293. static int attr_title = A_BOLD;
  294. #endif
  295. static
  296. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  297. bool use_unicode;
  298. static
  299. bool have_unicode_degrees;
  300. static
  301. wchar_t unicode_micro = 'u';
  302. #else
  303. const bool use_unicode;
  304. static
  305. const bool have_unicode_degrees;
  306. static
  307. const char unicode_micro = 'u';
  308. #endif
  309. #ifdef HAVE_CURSES
  310. #define U8_BAD_START "\xef\x80\x81"
  311. #define U8_BAD_END "\xef\x80\x80"
  312. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  313. bool selecting_device;
  314. unsigned selected_device;
  315. #endif
  316. static char current_block[40];
  317. /* Protected by ch_lock */
  318. static char *current_hash;
  319. static uint32_t current_block_id;
  320. char *current_fullhash;
  321. static char datestamp[40];
  322. static char blocktime[32];
  323. time_t block_time;
  324. static char best_share[8] = "0";
  325. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  326. static char block_diff[8];
  327. static char net_hashrate[10];
  328. uint64_t best_diff = 0;
  329. static bool known_blkheight_current;
  330. static uint32_t known_blkheight;
  331. static uint32_t known_blkheight_blkid;
  332. static uint64_t block_subsidy;
  333. struct block {
  334. char hash[40];
  335. UT_hash_handle hh;
  336. int block_no;
  337. };
  338. static struct block *blocks = NULL;
  339. int swork_id;
  340. /* For creating a hash database of stratum shares submitted that have not had
  341. * a response yet */
  342. struct stratum_share {
  343. UT_hash_handle hh;
  344. bool block;
  345. struct work *work;
  346. int id;
  347. };
  348. static struct stratum_share *stratum_shares = NULL;
  349. char *opt_socks_proxy = NULL;
  350. static const char def_conf[] = "bfgminer.conf";
  351. static bool config_loaded;
  352. static int include_count;
  353. #define JSON_INCLUDE_CONF "include"
  354. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  355. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  356. #define JSON_MAX_DEPTH 10
  357. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  358. char *cmd_idle, *cmd_sick, *cmd_dead;
  359. #if defined(unix) || defined(__APPLE__)
  360. static char *opt_stderr_cmd = NULL;
  361. static int forkpid;
  362. #endif // defined(unix)
  363. #ifdef HAVE_CHROOT
  364. char *chroot_dir;
  365. #endif
  366. #ifdef HAVE_PWD_H
  367. char *opt_setuid;
  368. #endif
  369. struct sigaction termhandler, inthandler;
  370. struct thread_q *getq;
  371. static int total_work;
  372. static bool staged_full;
  373. struct work *staged_work = NULL;
  374. struct schedtime {
  375. bool enable;
  376. struct tm tm;
  377. };
  378. struct schedtime schedstart;
  379. struct schedtime schedstop;
  380. bool sched_paused;
  381. static bool time_before(struct tm *tm1, struct tm *tm2)
  382. {
  383. if (tm1->tm_hour < tm2->tm_hour)
  384. return true;
  385. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  386. return true;
  387. return false;
  388. }
  389. static bool should_run(void)
  390. {
  391. struct tm tm;
  392. time_t tt;
  393. bool within_range;
  394. if (!schedstart.enable && !schedstop.enable)
  395. return true;
  396. tt = time(NULL);
  397. localtime_r(&tt, &tm);
  398. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  399. if (time_before(&schedstop.tm, &schedstart.tm))
  400. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  401. else
  402. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  403. if (within_range && !schedstop.enable)
  404. /* This is a once off event with no stop time set */
  405. schedstart.enable = false;
  406. return within_range;
  407. }
  408. void get_datestamp(char *f, size_t fsiz, time_t tt)
  409. {
  410. struct tm _tm;
  411. struct tm *tm = &_tm;
  412. if (tt == INVALID_TIMESTAMP)
  413. tt = time(NULL);
  414. localtime_r(&tt, tm);
  415. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  416. tm->tm_year + 1900,
  417. tm->tm_mon + 1,
  418. tm->tm_mday,
  419. tm->tm_hour,
  420. tm->tm_min,
  421. tm->tm_sec);
  422. }
  423. static
  424. void get_timestamp(char *f, size_t fsiz, time_t tt)
  425. {
  426. struct tm _tm;
  427. struct tm *tm = &_tm;
  428. localtime_r(&tt, tm);
  429. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  430. tm->tm_hour,
  431. tm->tm_min,
  432. tm->tm_sec);
  433. }
  434. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  435. static char exit_buf[512];
  436. static void applog_and_exit(const char *fmt, ...)
  437. {
  438. va_list ap;
  439. va_start(ap, fmt);
  440. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  441. va_end(ap);
  442. _applog(LOG_ERR, exit_buf);
  443. exit(1);
  444. }
  445. char *devpath_to_devid(const char *devpath)
  446. {
  447. #ifndef WIN32
  448. struct stat my_stat;
  449. if (stat(devpath, &my_stat))
  450. return NULL;
  451. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  452. memcpy(devs, "dev_t:", 6);
  453. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  454. #else
  455. if (!strncmp(devpath, "\\\\.\\", 4))
  456. devpath += 4;
  457. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  458. return NULL;
  459. devpath += 3;
  460. char *p;
  461. strtol(devpath, &p, 10);
  462. if (p[0])
  463. return NULL;
  464. const int sz = (p - devpath);
  465. char *devs = malloc(4 + sz + 1);
  466. sprintf(devs, "com:%s", devpath);
  467. #endif
  468. return devs;
  469. }
  470. static
  471. bool devpaths_match(const char * const ap, const char * const bp)
  472. {
  473. char * const a = devpath_to_devid(ap);
  474. if (!a)
  475. return false;
  476. char * const b = devpath_to_devid(bp);
  477. bool rv = false;
  478. if (b)
  479. {
  480. rv = !strcmp(a, b);
  481. free(b);
  482. }
  483. free(a);
  484. return rv;
  485. }
  486. static
  487. int proc_letter_to_number(const char *s, const char ** const rem)
  488. {
  489. int n = 0, c;
  490. for ( ; s[0]; ++s)
  491. {
  492. if (unlikely(n > INT_MAX / 26))
  493. break;
  494. c = tolower(s[0]) - 'a';
  495. if (unlikely(c < 0 || c > 25))
  496. break;
  497. if (unlikely(INT_MAX - c < n))
  498. break;
  499. n = (n * 26) + c;
  500. }
  501. *rem = s;
  502. return n;
  503. }
  504. static
  505. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  506. {
  507. // all - matches anything
  508. // d0 - matches all processors of device 0
  509. // d0-3 - matches all processors of device 0, 1, 2, or 3
  510. // d0a - matches first processor of device 0
  511. // 0 - matches processor 0
  512. // 0-4 - matches processors 0, 1, 2, 3, or 4
  513. // ___ - matches all processors on all devices using driver/name ___
  514. // ___0 - matches all processors of 0th device using driver/name ___
  515. // ___0a - matches first processor of 0th device using driver/name ___
  516. // @* - matches device with serial or path *
  517. // @*@a - matches first processor of device with serial or path *
  518. // ___@* - matches device with serial or path * using driver/name ___
  519. if (!strcasecmp(pattern, "all"))
  520. return true;
  521. const struct device_drv * const drv = cgpu->drv;
  522. const char *p = pattern, *p2;
  523. size_t L;
  524. int n, i, c = -1;
  525. int n2;
  526. int proc_first = -1, proc_last = -1;
  527. struct cgpu_info *device;
  528. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  529. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  530. // dname or name
  531. p = &pattern[L];
  532. else
  533. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  534. // d#
  535. ++p;
  536. else
  537. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  538. // # or @
  539. {}
  540. else
  541. return false;
  542. L = p - pattern;
  543. while (isspace(p[0]))
  544. ++p;
  545. if (p[0] == '@')
  546. {
  547. // Serial/path
  548. const char * const ser = &p[1];
  549. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  550. {}
  551. p2 = (p[0] == '@') ? &p[1] : p;
  552. const size_t serlen = (p - ser);
  553. p = "";
  554. n = n2 = 0;
  555. const char * const devpath = cgpu->device_path ?: "";
  556. const char * const devser = cgpu->dev_serial ?: "";
  557. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  558. {} // Match
  559. else
  560. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  561. {} // Match
  562. else
  563. {
  564. char devpath2[serlen + 1];
  565. memcpy(devpath2, ser, serlen);
  566. devpath2[serlen] = '\0';
  567. if (!devpaths_match(devpath, ser))
  568. return false;
  569. }
  570. }
  571. else
  572. {
  573. if (isdigit(p[0]))
  574. n = strtol(p, (void*)&p2, 0);
  575. else
  576. {
  577. n = 0;
  578. p2 = p;
  579. }
  580. if (p2[0] == '-')
  581. {
  582. ++p2;
  583. if (p2[0] && isdigit(p2[0]))
  584. n2 = strtol(p2, (void*)&p2, 0);
  585. else
  586. n2 = INT_MAX;
  587. }
  588. else
  589. n2 = n;
  590. if (p == pattern)
  591. {
  592. if (!p[0])
  593. return true;
  594. if (p2 && p2[0])
  595. goto invsyntax;
  596. for (i = n; i <= n2; ++i)
  597. {
  598. if (i >= total_devices)
  599. break;
  600. if (cgpu == devices[i])
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. if (p2[0])
  607. {
  608. proc_first = proc_letter_to_number(&p2[0], &p2);
  609. if (p2[0] == '-')
  610. {
  611. ++p2;
  612. if (p2[0])
  613. proc_last = proc_letter_to_number(p2, &p2);
  614. else
  615. proc_last = INT_MAX;
  616. }
  617. else
  618. proc_last = proc_first;
  619. if (p2[0])
  620. goto invsyntax;
  621. }
  622. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  623. {
  624. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  625. (!L) ||
  626. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  627. {} // Matched name or dname
  628. else
  629. return false;
  630. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  631. return false;
  632. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  633. return false;
  634. return true;
  635. }
  636. // d#
  637. c = -1;
  638. for (i = 0; ; ++i)
  639. {
  640. if (i == total_devices)
  641. return false;
  642. if (devices[i]->device != devices[i])
  643. continue;
  644. ++c;
  645. if (c < n)
  646. continue;
  647. if (c > n2)
  648. break;
  649. for (device = devices[i]; device; device = device->next_proc)
  650. {
  651. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  652. continue;
  653. if (device == cgpu)
  654. return true;
  655. }
  656. }
  657. return false;
  658. invsyntax:
  659. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  660. return false;
  661. }
  662. #define TEST_CGPU_MATCH(pattern) \
  663. if (!cgpu_match(pattern, &cgpu)) \
  664. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  665. // END TEST_CGPU_MATCH
  666. #define TEST_CGPU_NOMATCH(pattern) \
  667. if (cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. static __maybe_unused
  671. void test_cgpu_match()
  672. {
  673. struct device_drv drv = {
  674. .dname = "test",
  675. .name = "TST",
  676. };
  677. struct cgpu_info cgpu = {
  678. .drv = &drv,
  679. .device = &cgpu,
  680. .device_id = 1,
  681. .proc_id = 1,
  682. .proc_repr = "TST 1b",
  683. }, cgpu0a = {
  684. .drv = &drv,
  685. .device = &cgpu0a,
  686. .device_id = 0,
  687. .proc_id = 0,
  688. .proc_repr = "TST 0a",
  689. }, cgpu1a = {
  690. .drv = &drv,
  691. .device = &cgpu0a,
  692. .device_id = 1,
  693. .proc_id = 0,
  694. .proc_repr = "TST 1a",
  695. };
  696. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  697. devices = devices_list;
  698. total_devices = 3;
  699. TEST_CGPU_MATCH("all")
  700. TEST_CGPU_MATCH("d1")
  701. TEST_CGPU_NOMATCH("d2")
  702. TEST_CGPU_MATCH("d0-5")
  703. TEST_CGPU_NOMATCH("d0-0")
  704. TEST_CGPU_NOMATCH("d2-5")
  705. TEST_CGPU_MATCH("d-1")
  706. TEST_CGPU_MATCH("d1-")
  707. TEST_CGPU_NOMATCH("d-0")
  708. TEST_CGPU_NOMATCH("d2-")
  709. TEST_CGPU_MATCH("2")
  710. TEST_CGPU_NOMATCH("3")
  711. TEST_CGPU_MATCH("1-2")
  712. TEST_CGPU_MATCH("2-3")
  713. TEST_CGPU_NOMATCH("1-1")
  714. TEST_CGPU_NOMATCH("3-4")
  715. TEST_CGPU_MATCH("TST")
  716. TEST_CGPU_MATCH("test")
  717. TEST_CGPU_MATCH("tst")
  718. TEST_CGPU_MATCH("TEST")
  719. TEST_CGPU_NOMATCH("TSF")
  720. TEST_CGPU_NOMATCH("TS")
  721. TEST_CGPU_NOMATCH("TSTF")
  722. TEST_CGPU_MATCH("TST1")
  723. TEST_CGPU_MATCH("test1")
  724. TEST_CGPU_MATCH("TST0-1")
  725. TEST_CGPU_MATCH("TST 1")
  726. TEST_CGPU_MATCH("TST 1-2")
  727. TEST_CGPU_MATCH("TEST 1-2")
  728. TEST_CGPU_NOMATCH("TST2")
  729. TEST_CGPU_NOMATCH("TST2-3")
  730. TEST_CGPU_NOMATCH("TST0-0")
  731. TEST_CGPU_MATCH("TST1b")
  732. TEST_CGPU_MATCH("tst1b")
  733. TEST_CGPU_NOMATCH("TST1c")
  734. TEST_CGPU_NOMATCH("TST1bb")
  735. TEST_CGPU_MATCH("TST0-1b")
  736. TEST_CGPU_NOMATCH("TST0-1c")
  737. TEST_CGPU_MATCH("TST1a-d")
  738. TEST_CGPU_NOMATCH("TST1a-a")
  739. TEST_CGPU_NOMATCH("TST1-a")
  740. TEST_CGPU_NOMATCH("TST1c-z")
  741. TEST_CGPU_NOMATCH("TST1c-")
  742. TEST_CGPU_MATCH("@")
  743. TEST_CGPU_NOMATCH("@abc")
  744. TEST_CGPU_MATCH("@@b")
  745. TEST_CGPU_NOMATCH("@@c")
  746. TEST_CGPU_MATCH("TST@")
  747. TEST_CGPU_NOMATCH("TST@abc")
  748. TEST_CGPU_MATCH("TST@@b")
  749. TEST_CGPU_NOMATCH("TST@@c")
  750. TEST_CGPU_MATCH("TST@@b-f")
  751. TEST_CGPU_NOMATCH("TST@@c-f")
  752. TEST_CGPU_NOMATCH("TST@@-a")
  753. cgpu.device_path = "/dev/test";
  754. cgpu.dev_serial = "testy";
  755. TEST_CGPU_MATCH("TST@/dev/test")
  756. TEST_CGPU_MATCH("TST@testy")
  757. TEST_CGPU_NOMATCH("TST@")
  758. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  759. TEST_CGPU_NOMATCH("TST@testy3@b")
  760. TEST_CGPU_MATCH("TST@/dev/test@b")
  761. TEST_CGPU_MATCH("TST@testy@b")
  762. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  763. TEST_CGPU_NOMATCH("TST@testy@c")
  764. cgpu.device_path = "usb:000:999";
  765. TEST_CGPU_MATCH("TST@usb:000:999")
  766. drv.dname = "test7";
  767. TEST_CGPU_MATCH("test7")
  768. TEST_CGPU_MATCH("TEST7")
  769. TEST_CGPU_NOMATCH("test&")
  770. TEST_CGPU_MATCH("test7 1-2")
  771. TEST_CGPU_MATCH("test7@testy@b")
  772. }
  773. static
  774. int cgpu_search(const char * const pattern, const int first)
  775. {
  776. int i;
  777. struct cgpu_info *cgpu;
  778. #define CHECK_CGPU_SEARCH do{ \
  779. cgpu = get_devices(i); \
  780. if (cgpu_match(pattern, cgpu)) \
  781. return i; \
  782. }while(0)
  783. for (i = first; i < total_devices; ++i)
  784. CHECK_CGPU_SEARCH;
  785. for (i = 0; i < first; ++i)
  786. CHECK_CGPU_SEARCH;
  787. #undef CHECK_CGPU_SEARCH
  788. return -1;
  789. }
  790. static pthread_mutex_t sharelog_lock;
  791. static FILE *sharelog_file = NULL;
  792. struct thr_info *get_thread(int thr_id)
  793. {
  794. struct thr_info *thr;
  795. rd_lock(&mining_thr_lock);
  796. thr = mining_thr[thr_id];
  797. rd_unlock(&mining_thr_lock);
  798. return thr;
  799. }
  800. static struct cgpu_info *get_thr_cgpu(int thr_id)
  801. {
  802. struct thr_info *thr = get_thread(thr_id);
  803. return thr->cgpu;
  804. }
  805. struct cgpu_info *get_devices(int id)
  806. {
  807. struct cgpu_info *cgpu;
  808. rd_lock(&devices_lock);
  809. cgpu = devices[id];
  810. rd_unlock(&devices_lock);
  811. return cgpu;
  812. }
  813. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  814. static FILE *noncelog_file = NULL;
  815. static
  816. void noncelog(const struct work * const work)
  817. {
  818. const int thr_id = work->thr_id;
  819. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  820. char buf[0x200], hash[65], data[161], midstate[65];
  821. int rv;
  822. size_t ret;
  823. bin2hex(hash, work->hash, 32);
  824. bin2hex(data, work->data, 80);
  825. bin2hex(midstate, work->midstate, 32);
  826. // timestamp,proc,hash,data,midstate
  827. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  828. (unsigned long)time(NULL), proc->proc_repr_ns,
  829. hash, data, midstate);
  830. if (unlikely(rv < 1))
  831. {
  832. applog(LOG_ERR, "noncelog printf error");
  833. return;
  834. }
  835. mutex_lock(&noncelog_lock);
  836. ret = fwrite(buf, rv, 1, noncelog_file);
  837. fflush(noncelog_file);
  838. mutex_unlock(&noncelog_lock);
  839. if (ret != 1)
  840. applog(LOG_ERR, "noncelog fwrite error");
  841. }
  842. static void sharelog(const char*disposition, const struct work*work)
  843. {
  844. char target[(sizeof(work->target) * 2) + 1];
  845. char hash[(sizeof(work->hash) * 2) + 1];
  846. char data[(sizeof(work->data) * 2) + 1];
  847. struct cgpu_info *cgpu;
  848. unsigned long int t;
  849. struct pool *pool;
  850. int thr_id, rv;
  851. char s[1024];
  852. size_t ret;
  853. if (!sharelog_file)
  854. return;
  855. thr_id = work->thr_id;
  856. cgpu = get_thr_cgpu(thr_id);
  857. pool = work->pool;
  858. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  859. bin2hex(target, work->target, sizeof(work->target));
  860. bin2hex(hash, work->hash, sizeof(work->hash));
  861. bin2hex(data, work->data, sizeof(work->data));
  862. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  863. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->proc_repr_ns, thr_id, hash, data);
  864. if (rv >= (int)(sizeof(s)))
  865. s[sizeof(s) - 1] = '\0';
  866. else if (rv < 0) {
  867. applog(LOG_ERR, "sharelog printf error");
  868. return;
  869. }
  870. mutex_lock(&sharelog_lock);
  871. ret = fwrite(s, rv, 1, sharelog_file);
  872. fflush(sharelog_file);
  873. mutex_unlock(&sharelog_lock);
  874. if (ret != 1)
  875. applog(LOG_ERR, "sharelog fwrite error");
  876. }
  877. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  878. /* Adjust all the pools' quota to the greatest common denominator after a pool
  879. * has been added or the quotas changed. */
  880. void adjust_quota_gcd(void)
  881. {
  882. unsigned long gcd, lowest_quota = ~0UL, quota;
  883. struct pool *pool;
  884. int i;
  885. for (i = 0; i < total_pools; i++) {
  886. pool = pools[i];
  887. quota = pool->quota;
  888. if (!quota)
  889. continue;
  890. if (quota < lowest_quota)
  891. lowest_quota = quota;
  892. }
  893. if (likely(lowest_quota < ~0UL)) {
  894. gcd = lowest_quota;
  895. for (i = 0; i < total_pools; i++) {
  896. pool = pools[i];
  897. quota = pool->quota;
  898. if (!quota)
  899. continue;
  900. while (quota % gcd)
  901. gcd--;
  902. }
  903. } else
  904. gcd = 1;
  905. for (i = 0; i < total_pools; i++) {
  906. pool = pools[i];
  907. pool->quota_used *= global_quota_gcd;
  908. pool->quota_used /= gcd;
  909. pool->quota_gcd = pool->quota / gcd;
  910. }
  911. global_quota_gcd = gcd;
  912. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  913. }
  914. /* Return value is ignored if not called from add_pool_details */
  915. struct pool *add_pool(void)
  916. {
  917. struct pool *pool;
  918. pool = calloc(sizeof(struct pool), 1);
  919. if (!pool)
  920. quit(1, "Failed to malloc pool in add_pool");
  921. pool->pool_no = pool->prio = total_pools;
  922. mutex_init(&pool->last_work_lock);
  923. mutex_init(&pool->pool_lock);
  924. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  925. quit(1, "Failed to pthread_cond_init in add_pool");
  926. cglock_init(&pool->data_lock);
  927. mutex_init(&pool->stratum_lock);
  928. timer_unset(&pool->swork.tv_transparency);
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. adjust_quota_gcd();
  935. pool->sock = INVSOCK;
  936. pool->lp_socket = CURL_SOCKET_BAD;
  937. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  938. pools[total_pools++] = pool;
  939. return pool;
  940. }
  941. /* Pool variant of test and set */
  942. static bool pool_tset(struct pool *pool, bool *var)
  943. {
  944. bool ret;
  945. mutex_lock(&pool->pool_lock);
  946. ret = *var;
  947. *var = true;
  948. mutex_unlock(&pool->pool_lock);
  949. return ret;
  950. }
  951. bool pool_tclear(struct pool *pool, bool *var)
  952. {
  953. bool ret;
  954. mutex_lock(&pool->pool_lock);
  955. ret = *var;
  956. *var = false;
  957. mutex_unlock(&pool->pool_lock);
  958. return ret;
  959. }
  960. struct pool *current_pool(void)
  961. {
  962. struct pool *pool;
  963. cg_rlock(&control_lock);
  964. pool = currentpool;
  965. cg_runlock(&control_lock);
  966. return pool;
  967. }
  968. // Copied from ccan/opt/helpers.c
  969. static char *arg_bad(const char *fmt, const char *arg)
  970. {
  971. char *str = malloc(strlen(fmt) + strlen(arg));
  972. sprintf(str, fmt, arg);
  973. return str;
  974. }
  975. static
  976. char *opt_set_floatval(const char *arg, float *f)
  977. {
  978. char *endp;
  979. errno = 0;
  980. *f = strtof(arg, &endp);
  981. if (*endp || !arg[0])
  982. return arg_bad("'%s' is not a number", arg);
  983. if (errno)
  984. return arg_bad("'%s' is out of range", arg);
  985. return NULL;
  986. }
  987. static
  988. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  989. {
  990. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  991. }
  992. char *set_int_range(const char *arg, int *i, int min, int max)
  993. {
  994. char *err = opt_set_intval(arg, i);
  995. if (err)
  996. return err;
  997. if (*i < min || *i > max)
  998. return "Value out of range";
  999. return NULL;
  1000. }
  1001. static char *set_int_0_to_9999(const char *arg, int *i)
  1002. {
  1003. return set_int_range(arg, i, 0, 9999);
  1004. }
  1005. static char *set_int_1_to_65535(const char *arg, int *i)
  1006. {
  1007. return set_int_range(arg, i, 1, 65535);
  1008. }
  1009. static char *set_int_0_to_10(const char *arg, int *i)
  1010. {
  1011. return set_int_range(arg, i, 0, 10);
  1012. }
  1013. static char *set_int_1_to_10(const char *arg, int *i)
  1014. {
  1015. return set_int_range(arg, i, 1, 10);
  1016. }
  1017. char *set_strdup(const char *arg, char **p)
  1018. {
  1019. *p = strdup((char *)arg);
  1020. return NULL;
  1021. }
  1022. #if BLKMAKER_VERSION > 1
  1023. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1024. {
  1025. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1026. if (!scriptsz)
  1027. return "Invalid address";
  1028. char *script = malloc(scriptsz);
  1029. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1030. free(script);
  1031. return "Failed to convert address to script";
  1032. }
  1033. p->data = script;
  1034. p->sz = scriptsz;
  1035. return NULL;
  1036. }
  1037. #endif
  1038. static
  1039. char *set_quit_summary(const char * const arg)
  1040. {
  1041. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1042. opt_quit_summary = BQS_NONE;
  1043. else
  1044. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1045. opt_quit_summary = BQS_DEVS;
  1046. else
  1047. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1048. opt_quit_summary = BQS_PROCS;
  1049. else
  1050. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1051. opt_quit_summary = BQS_DETAILED;
  1052. else
  1053. return "Quit summary must be one of none/devs/procs/detailed";
  1054. return NULL;
  1055. }
  1056. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1057. char *set_request_diff(const char *arg, float *p)
  1058. {
  1059. unsigned char target[32];
  1060. char *e = opt_set_floatval(arg, p);
  1061. if (e)
  1062. return e;
  1063. request_bdiff = (double)*p * 0.9999847412109375;
  1064. bdiff_target_leadzero(target, request_bdiff);
  1065. request_target_str = malloc(65);
  1066. bin2hex(request_target_str, target, 32);
  1067. return NULL;
  1068. }
  1069. #ifdef NEED_BFG_LOWL_VCOM
  1070. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1071. #ifdef WIN32
  1072. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1073. {
  1074. char dev[PATH_MAX];
  1075. char *devp = dev;
  1076. size_t bufLen = 0x100;
  1077. tryagain: ;
  1078. char buf[bufLen];
  1079. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1080. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1081. bufLen *= 2;
  1082. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1083. goto tryagain;
  1084. }
  1085. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1086. }
  1087. size_t tLen;
  1088. memcpy(devp, "\\\\.\\", 4);
  1089. devp = &devp[4];
  1090. for (char *t = buf; *t; t += tLen) {
  1091. tLen = strlen(t) + 1;
  1092. if (strncmp("COM", t, 3))
  1093. continue;
  1094. memcpy(devp, t, tLen);
  1095. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1096. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1097. }
  1098. }
  1099. #else
  1100. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1101. {
  1102. char dev[PATH_MAX];
  1103. char *devp = dev;
  1104. DIR *D;
  1105. struct dirent *de;
  1106. const char devdir[] = "/dev";
  1107. const size_t devdirlen = sizeof(devdir) - 1;
  1108. char *devpath = devp;
  1109. char *devfile = devpath + devdirlen + 1;
  1110. D = opendir(devdir);
  1111. if (!D)
  1112. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1113. memcpy(devpath, devdir, devdirlen);
  1114. devpath[devdirlen] = '/';
  1115. while ( (de = readdir(D)) ) {
  1116. if (!strncmp(de->d_name, "cu.", 3)
  1117. //don't probe Bluetooth devices - causes bus errors and segfaults
  1118. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1119. goto trydev;
  1120. if (strncmp(de->d_name, "tty", 3))
  1121. continue;
  1122. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1123. continue;
  1124. trydev:
  1125. strcpy(devfile, de->d_name);
  1126. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1127. }
  1128. closedir(D);
  1129. }
  1130. #endif
  1131. #endif
  1132. static char *add_serial(const char *arg)
  1133. {
  1134. string_elist_add(arg, &scan_devices);
  1135. return NULL;
  1136. }
  1137. static
  1138. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1139. {
  1140. string_elist_add(arg, elist);
  1141. return NULL;
  1142. }
  1143. bool get_intrange(const char *arg, int *val1, int *val2)
  1144. {
  1145. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1146. char *p, *p2;
  1147. *val1 = strtol(arg, &p, 0);
  1148. if (arg == p)
  1149. // Zero-length ending number, invalid
  1150. return false;
  1151. while (true)
  1152. {
  1153. if (!p[0])
  1154. {
  1155. *val2 = *val1;
  1156. return true;
  1157. }
  1158. if (p[0] == '-')
  1159. break;
  1160. if (!isspace(p[0]))
  1161. // Garbage, invalid
  1162. return false;
  1163. ++p;
  1164. }
  1165. p2 = &p[1];
  1166. *val2 = strtol(p2, &p, 0);
  1167. if (p2 == p)
  1168. // Zero-length ending number, invalid
  1169. return false;
  1170. while (true)
  1171. {
  1172. if (!p[0])
  1173. return true;
  1174. if (!isspace(p[0]))
  1175. // Garbage, invalid
  1176. return false;
  1177. ++p;
  1178. }
  1179. }
  1180. static
  1181. void _test_intrange(const char *s, const int v[2])
  1182. {
  1183. int a[2];
  1184. if (!get_intrange(s, &a[0], &a[1]))
  1185. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1186. for (int i = 0; i < 2; ++i)
  1187. if (unlikely(a[i] != v[i]))
  1188. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1189. }
  1190. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1191. static
  1192. void _test_intrange_fail(const char *s)
  1193. {
  1194. int a[2];
  1195. if (get_intrange(s, &a[0], &a[1]))
  1196. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1197. }
  1198. static
  1199. void test_intrange()
  1200. {
  1201. _test_intrange("-1--2", -1, -2);
  1202. _test_intrange("-1-2", -1, 2);
  1203. _test_intrange("1--2", 1, -2);
  1204. _test_intrange("1-2", 1, 2);
  1205. _test_intrange("111-222", 111, 222);
  1206. _test_intrange(" 11 - 22 ", 11, 22);
  1207. _test_intrange("+11-+22", 11, 22);
  1208. _test_intrange("-1", -1, -1);
  1209. _test_intrange_fail("all");
  1210. _test_intrange_fail("1-");
  1211. _test_intrange_fail("");
  1212. _test_intrange_fail("1-54x");
  1213. }
  1214. static char *set_devices(char *arg)
  1215. {
  1216. if (*arg) {
  1217. if (*arg == '?') {
  1218. opt_display_devs = true;
  1219. return NULL;
  1220. }
  1221. } else
  1222. return "Invalid device parameters";
  1223. string_elist_add(arg, &opt_devices_enabled_list);
  1224. return NULL;
  1225. }
  1226. static char *set_balance(enum pool_strategy *strategy)
  1227. {
  1228. *strategy = POOL_BALANCE;
  1229. return NULL;
  1230. }
  1231. static char *set_loadbalance(enum pool_strategy *strategy)
  1232. {
  1233. *strategy = POOL_LOADBALANCE;
  1234. return NULL;
  1235. }
  1236. static char *set_rotate(const char *arg, int *i)
  1237. {
  1238. pool_strategy = POOL_ROTATE;
  1239. return set_int_range(arg, i, 0, 9999);
  1240. }
  1241. static char *set_rr(enum pool_strategy *strategy)
  1242. {
  1243. *strategy = POOL_ROUNDROBIN;
  1244. return NULL;
  1245. }
  1246. /* Detect that url is for a stratum protocol either via the presence of
  1247. * stratum+tcp or by detecting a stratum server response */
  1248. bool detect_stratum(struct pool *pool, char *url)
  1249. {
  1250. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1251. return false;
  1252. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1253. pool->rpc_url = strdup(url);
  1254. pool->has_stratum = true;
  1255. pool->stratum_url = pool->sockaddr_url;
  1256. return true;
  1257. }
  1258. return false;
  1259. }
  1260. static struct pool *add_url(void)
  1261. {
  1262. total_urls++;
  1263. if (total_urls > total_pools)
  1264. add_pool();
  1265. return pools[total_urls - 1];
  1266. }
  1267. static void setup_url(struct pool *pool, char *arg)
  1268. {
  1269. if (detect_stratum(pool, arg))
  1270. return;
  1271. opt_set_charp(arg, &pool->rpc_url);
  1272. if (strncmp(arg, "http://", 7) &&
  1273. strncmp(arg, "https://", 8)) {
  1274. const size_t L = strlen(arg);
  1275. char *httpinput;
  1276. httpinput = malloc(8 + L);
  1277. if (!httpinput)
  1278. quit(1, "Failed to malloc httpinput");
  1279. sprintf(httpinput, "http://%s", arg);
  1280. pool->rpc_url = httpinput;
  1281. }
  1282. }
  1283. static char *set_url(char *arg)
  1284. {
  1285. struct pool *pool = add_url();
  1286. setup_url(pool, arg);
  1287. return NULL;
  1288. }
  1289. static char *set_quota(char *arg)
  1290. {
  1291. char *semicolon = strchr(arg, ';'), *url;
  1292. int len, qlen, quota;
  1293. struct pool *pool;
  1294. if (!semicolon)
  1295. return "No semicolon separated quota;URL pair found";
  1296. len = strlen(arg);
  1297. *semicolon = '\0';
  1298. qlen = strlen(arg);
  1299. if (!qlen)
  1300. return "No parameter for quota found";
  1301. len -= qlen + 1;
  1302. if (len < 1)
  1303. return "No parameter for URL found";
  1304. quota = atoi(arg);
  1305. if (quota < 0)
  1306. return "Invalid negative parameter for quota set";
  1307. url = arg + qlen + 1;
  1308. pool = add_url();
  1309. setup_url(pool, url);
  1310. pool->quota = quota;
  1311. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1312. adjust_quota_gcd();
  1313. return NULL;
  1314. }
  1315. static char *set_user(const char *arg)
  1316. {
  1317. struct pool *pool;
  1318. total_users++;
  1319. if (total_users > total_pools)
  1320. add_pool();
  1321. pool = pools[total_users - 1];
  1322. opt_set_charp(arg, &pool->rpc_user);
  1323. return NULL;
  1324. }
  1325. static char *set_pass(const char *arg)
  1326. {
  1327. struct pool *pool;
  1328. total_passes++;
  1329. if (total_passes > total_pools)
  1330. add_pool();
  1331. pool = pools[total_passes - 1];
  1332. opt_set_charp(arg, &pool->rpc_pass);
  1333. return NULL;
  1334. }
  1335. static char *set_userpass(const char *arg)
  1336. {
  1337. struct pool *pool;
  1338. char *updup;
  1339. if (total_users != total_passes)
  1340. return "User + pass options must be balanced before userpass";
  1341. ++total_users;
  1342. ++total_passes;
  1343. if (total_users > total_pools)
  1344. add_pool();
  1345. pool = pools[total_users - 1];
  1346. updup = strdup(arg);
  1347. opt_set_charp(arg, &pool->rpc_userpass);
  1348. pool->rpc_user = strtok(updup, ":");
  1349. if (!pool->rpc_user)
  1350. return "Failed to find : delimited user info";
  1351. pool->rpc_pass = strtok(NULL, ":");
  1352. if (!pool->rpc_pass)
  1353. pool->rpc_pass = "";
  1354. return NULL;
  1355. }
  1356. static char *set_pool_priority(const char *arg)
  1357. {
  1358. struct pool *pool;
  1359. if (!total_pools)
  1360. return "Usage of --pool-priority before pools are defined does not make sense";
  1361. pool = pools[total_pools - 1];
  1362. opt_set_intval(arg, &pool->prio);
  1363. return NULL;
  1364. }
  1365. static char *set_pool_proxy(const char *arg)
  1366. {
  1367. struct pool *pool;
  1368. if (!total_pools)
  1369. return "Usage of --pool-proxy before pools are defined does not make sense";
  1370. if (!our_curl_supports_proxy_uris())
  1371. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1372. pool = pools[total_pools - 1];
  1373. opt_set_charp(arg, &pool->rpc_proxy);
  1374. return NULL;
  1375. }
  1376. static char *set_pool_force_rollntime(const char *arg)
  1377. {
  1378. struct pool *pool;
  1379. if (!total_pools)
  1380. return "Usage of --force-rollntime before pools are defined does not make sense";
  1381. pool = pools[total_pools - 1];
  1382. opt_set_intval(arg, &pool->force_rollntime);
  1383. return NULL;
  1384. }
  1385. static char *enable_debug(bool *flag)
  1386. {
  1387. *flag = true;
  1388. opt_debug_console = true;
  1389. /* Turn on verbose output, too. */
  1390. opt_log_output = true;
  1391. return NULL;
  1392. }
  1393. static char *set_schedtime(const char *arg, struct schedtime *st)
  1394. {
  1395. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1396. {
  1397. if (strcasecmp(arg, "now"))
  1398. return "Invalid time set, should be HH:MM";
  1399. } else
  1400. schedstop.tm.tm_sec = 0;
  1401. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1402. return "Invalid time set.";
  1403. st->enable = true;
  1404. return NULL;
  1405. }
  1406. static
  1407. char *set_log_file(char *arg)
  1408. {
  1409. char *r = "";
  1410. long int i = strtol(arg, &r, 10);
  1411. int fd, stderr_fd = fileno(stderr);
  1412. if ((!*r) && i >= 0 && i <= INT_MAX)
  1413. fd = i;
  1414. else
  1415. if (!strcmp(arg, "-"))
  1416. {
  1417. fd = fileno(stdout);
  1418. if (unlikely(fd == -1))
  1419. return "Standard output missing for log-file";
  1420. }
  1421. else
  1422. {
  1423. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1424. if (unlikely(fd == -1))
  1425. return "Failed to open log-file";
  1426. }
  1427. close(stderr_fd);
  1428. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1429. return "Failed to dup2 for log-file";
  1430. close(fd);
  1431. return NULL;
  1432. }
  1433. static
  1434. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1435. {
  1436. char *r = "";
  1437. long int i = strtol(arg, &r, 10);
  1438. static char *err = NULL;
  1439. const size_t errbufsz = 0x100;
  1440. free(err);
  1441. err = NULL;
  1442. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1443. *F = fdopen((int)i, mode);
  1444. if (!*F)
  1445. {
  1446. err = malloc(errbufsz);
  1447. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1448. (int)i, purpose);
  1449. return err;
  1450. }
  1451. } else if (!strcmp(arg, "-")) {
  1452. *F = (mode[0] == 'a') ? stdout : stdin;
  1453. if (!*F)
  1454. {
  1455. err = malloc(errbufsz);
  1456. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1457. (mode[0] == 'a') ? "out" : "in", purpose);
  1458. return err;
  1459. }
  1460. } else {
  1461. *F = fopen(arg, mode);
  1462. if (!*F)
  1463. {
  1464. err = malloc(errbufsz);
  1465. snprintf(err, errbufsz, "Failed to open %s for %s",
  1466. arg, purpose);
  1467. return err;
  1468. }
  1469. }
  1470. return NULL;
  1471. }
  1472. static char *set_noncelog(char *arg)
  1473. {
  1474. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1475. }
  1476. static char *set_sharelog(char *arg)
  1477. {
  1478. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1479. }
  1480. char *set_temp_cutoff(char *arg)
  1481. {
  1482. if (strchr(arg, ','))
  1483. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1484. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1485. char buf[0x100];
  1486. snprintf(buf, sizeof(buf), "all:temp-cutoff=%s", arg);
  1487. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1488. string_elist_add(buf, &opt_set_device_list);
  1489. return NULL;
  1490. }
  1491. char *set_temp_target(char *arg)
  1492. {
  1493. if (strchr(arg, ','))
  1494. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1495. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1496. char buf[0x100];
  1497. snprintf(buf, sizeof(buf), "all:temp-target=%s", arg);
  1498. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1499. string_elist_add(buf, &opt_set_device_list);
  1500. return NULL;
  1501. }
  1502. static char *set_api_allow(const char *arg)
  1503. {
  1504. opt_set_charp(arg, &opt_api_allow);
  1505. return NULL;
  1506. }
  1507. static char *set_api_groups(const char *arg)
  1508. {
  1509. opt_set_charp(arg, &opt_api_groups);
  1510. return NULL;
  1511. }
  1512. static char *set_api_description(const char *arg)
  1513. {
  1514. opt_set_charp(arg, &opt_api_description);
  1515. return NULL;
  1516. }
  1517. static char *set_api_mcast_des(const char *arg)
  1518. {
  1519. opt_set_charp(arg, &opt_api_mcast_des);
  1520. return NULL;
  1521. }
  1522. #ifdef USE_ICARUS
  1523. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1524. static char *set_icarus_options(const char *arg)
  1525. {
  1526. if (strchr(arg, ','))
  1527. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1528. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1529. char *opts = strdup(arg), *argdup;
  1530. argdup = opts;
  1531. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1532. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1533. char buf[0x100], *saveptr, *opt;
  1534. for (int i = 0; i < 4; ++i, ++sdf)
  1535. {
  1536. opt = strtok_r(opts, ":", &saveptr);
  1537. opts = NULL;
  1538. if (!opt)
  1539. break;
  1540. if (!opt[0])
  1541. continue;
  1542. for (int j = 0; j < 4; ++j)
  1543. {
  1544. snprintf(buf, sizeof(buf), "%s:%s=%s", drivers[j], sdf->optname, opt);
  1545. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1546. string_elist_add(buf, &opt_set_device_list);
  1547. }
  1548. }
  1549. free(argdup);
  1550. return NULL;
  1551. }
  1552. static char *set_icarus_timing(const char *arg)
  1553. {
  1554. if (strchr(arg, ','))
  1555. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1556. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1557. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1558. char buf[0x100];
  1559. for (int j = 0; j < 4; ++j)
  1560. {
  1561. snprintf(buf, sizeof(buf), "%s:timing=%s", drivers[j], arg);
  1562. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1563. string_elist_add(buf, &opt_set_device_list);
  1564. }
  1565. return NULL;
  1566. }
  1567. #endif
  1568. #ifdef USE_AVALON
  1569. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1570. static char *set_avalon_options(const char *arg)
  1571. {
  1572. if (strchr(arg, ','))
  1573. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1574. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1575. char *opts = strdup(arg), *argdup;
  1576. argdup = opts;
  1577. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1578. char buf[0x100], *saveptr, *opt;
  1579. for (int i = 0; i < 5; ++i, ++sdf)
  1580. {
  1581. opt = strtok_r(opts, ":", &saveptr);
  1582. opts = NULL;
  1583. if (!opt)
  1584. break;
  1585. if (!opt[0])
  1586. continue;
  1587. snprintf(buf, sizeof(buf), "avalon:%s=%s", sdf->optname, opt);
  1588. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1589. string_elist_add(buf, &opt_set_device_list);
  1590. }
  1591. free(argdup);
  1592. return NULL;
  1593. }
  1594. #endif
  1595. #ifdef USE_KLONDIKE
  1596. static char *set_klondike_options(const char *arg)
  1597. {
  1598. char buf[0x100];
  1599. int hashclock;
  1600. double temptarget;
  1601. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1602. {
  1603. default:
  1604. return "Unrecognised --klondike-options";
  1605. case 2:
  1606. snprintf(buf, sizeof(buf), "klondike:temp-target=%lf", temptarget);
  1607. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1608. string_elist_add(buf, &opt_set_device_list);
  1609. // fallthru
  1610. case 1:
  1611. snprintf(buf, sizeof(buf), "klondike:clock=%d", hashclock);
  1612. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1613. string_elist_add(buf, &opt_set_device_list);
  1614. }
  1615. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1616. return NULL;
  1617. }
  1618. #endif
  1619. __maybe_unused
  1620. static char *set_null(const char __maybe_unused *arg)
  1621. {
  1622. return NULL;
  1623. }
  1624. /* These options are available from config file or commandline */
  1625. static struct opt_table opt_config_table[] = {
  1626. #ifdef WANT_CPUMINE
  1627. OPT_WITH_ARG("--algo",
  1628. set_algo, show_algo, &opt_algo,
  1629. "Specify sha256 implementation for CPU mining:\n"
  1630. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1631. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1632. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1633. #ifdef WANT_SSE2_4WAY
  1634. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1635. #endif
  1636. #ifdef WANT_VIA_PADLOCK
  1637. "\n\tvia\t\tVIA padlock implementation"
  1638. #endif
  1639. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1640. #ifdef WANT_CRYPTOPP_ASM32
  1641. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1642. #endif
  1643. #ifdef WANT_X8632_SSE2
  1644. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1645. #endif
  1646. #ifdef WANT_X8664_SSE2
  1647. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1648. #endif
  1649. #ifdef WANT_X8664_SSE4
  1650. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1651. #endif
  1652. #ifdef WANT_ALTIVEC_4WAY
  1653. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1654. #endif
  1655. ),
  1656. OPT_WITH_ARG("-a",
  1657. set_algo, show_algo, &opt_algo,
  1658. opt_hidden),
  1659. #endif
  1660. OPT_WITH_ARG("--api-allow",
  1661. set_api_allow, NULL, NULL,
  1662. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1663. OPT_WITH_ARG("--api-description",
  1664. set_api_description, NULL, NULL,
  1665. "Description placed in the API status header, default: BFGMiner version"),
  1666. OPT_WITH_ARG("--api-groups",
  1667. set_api_groups, NULL, NULL,
  1668. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1669. OPT_WITHOUT_ARG("--api-listen",
  1670. opt_set_bool, &opt_api_listen,
  1671. "Enable API, default: disabled"),
  1672. OPT_WITHOUT_ARG("--api-mcast",
  1673. opt_set_bool, &opt_api_mcast,
  1674. "Enable API Multicast listener, default: disabled"),
  1675. OPT_WITH_ARG("--api-mcast-addr",
  1676. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1677. "API Multicast listen address"),
  1678. OPT_WITH_ARG("--api-mcast-code",
  1679. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1680. "Code expected in the API Multicast message, don't use '-'"),
  1681. OPT_WITH_ARG("--api-mcast-des",
  1682. set_api_mcast_des, NULL, NULL,
  1683. "Description appended to the API Multicast reply, default: ''"),
  1684. OPT_WITH_ARG("--api-mcast-port",
  1685. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1686. "API Multicast listen port"),
  1687. OPT_WITHOUT_ARG("--api-network",
  1688. opt_set_bool, &opt_api_network,
  1689. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1690. OPT_WITH_ARG("--api-port",
  1691. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1692. "Port number of miner API"),
  1693. #ifdef HAVE_ADL
  1694. OPT_WITHOUT_ARG("--auto-fan",
  1695. opt_set_bool, &opt_autofan,
  1696. "Automatically adjust all GPU fan speeds to maintain a target temperature"),
  1697. OPT_WITHOUT_ARG("--auto-gpu",
  1698. opt_set_bool, &opt_autoengine,
  1699. "Automatically adjust all GPU engine clock speeds to maintain a target temperature"),
  1700. #endif
  1701. OPT_WITHOUT_ARG("--balance",
  1702. set_balance, &pool_strategy,
  1703. "Change multipool strategy from failover to even share balance"),
  1704. OPT_WITHOUT_ARG("--benchmark",
  1705. opt_set_bool, &opt_benchmark,
  1706. "Run BFGMiner in benchmark mode - produces no shares"),
  1707. #if defined(USE_BITFORCE)
  1708. OPT_WITHOUT_ARG("--bfl-range",
  1709. opt_set_bool, &opt_bfl_noncerange,
  1710. "Use nonce range on bitforce devices if supported"),
  1711. #endif
  1712. #ifdef WANT_CPUMINE
  1713. OPT_WITH_ARG("--bench-algo",
  1714. set_int_0_to_9999, opt_show_intval, &opt_bench_algo,
  1715. opt_hidden),
  1716. #endif
  1717. #ifdef HAVE_CHROOT
  1718. OPT_WITH_ARG("--chroot-dir",
  1719. opt_set_charp, NULL, &chroot_dir,
  1720. "Chroot to a directory right after startup"),
  1721. #endif
  1722. OPT_WITH_ARG("--cmd-idle",
  1723. opt_set_charp, NULL, &cmd_idle,
  1724. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1725. OPT_WITH_ARG("--cmd-sick",
  1726. opt_set_charp, NULL, &cmd_sick,
  1727. "Execute a command when a device is declared sick"),
  1728. OPT_WITH_ARG("--cmd-dead",
  1729. opt_set_charp, NULL, &cmd_dead,
  1730. "Execute a command when a device is declared dead"),
  1731. #if BLKMAKER_VERSION > 1
  1732. OPT_WITH_ARG("--coinbase-addr",
  1733. set_b58addr, NULL, &opt_coinbase_script,
  1734. "Set coinbase payout address for solo mining"),
  1735. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1736. set_b58addr, NULL, &opt_coinbase_script,
  1737. opt_hidden),
  1738. #endif
  1739. #if BLKMAKER_VERSION > 0
  1740. OPT_WITH_ARG("--coinbase-sig",
  1741. set_strdup, NULL, &opt_coinbase_sig,
  1742. "Set coinbase signature when possible"),
  1743. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1744. set_strdup, NULL, &opt_coinbase_sig,
  1745. opt_hidden),
  1746. #endif
  1747. #ifdef HAVE_CURSES
  1748. OPT_WITHOUT_ARG("--compact",
  1749. opt_set_bool, &opt_compact,
  1750. "Use compact display without per device statistics"),
  1751. #endif
  1752. #ifdef WANT_CPUMINE
  1753. OPT_WITH_ARG("--cpu-threads",
  1754. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1755. "Number of miner CPU threads"),
  1756. OPT_WITH_ARG("-t",
  1757. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1758. opt_hidden),
  1759. #endif
  1760. OPT_WITHOUT_ARG("--debug|-D",
  1761. enable_debug, &opt_debug,
  1762. "Enable debug output"),
  1763. OPT_WITHOUT_ARG("--debuglog",
  1764. opt_set_bool, &opt_debug,
  1765. "Enable debug logging"),
  1766. OPT_WITHOUT_ARG("--device-protocol-dump",
  1767. opt_set_bool, &opt_dev_protocol,
  1768. "Verbose dump of device protocol-level activities"),
  1769. OPT_WITH_ARG("--device|-d",
  1770. set_devices, NULL, NULL,
  1771. "Enable only devices matching pattern (default: all)"),
  1772. OPT_WITHOUT_ARG("--disable-rejecting",
  1773. opt_set_bool, &opt_disable_pool,
  1774. "Automatically disable pools that continually reject shares"),
  1775. #ifdef USE_LIBMICROHTTPD
  1776. OPT_WITH_ARG("--http-port",
  1777. opt_set_intval, opt_show_intval, &httpsrv_port,
  1778. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1779. #endif
  1780. OPT_WITH_ARG("--expiry",
  1781. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1782. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1783. OPT_WITH_ARG("-E",
  1784. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1785. opt_hidden),
  1786. OPT_WITH_ARG("--expiry-lp",
  1787. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1788. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1789. OPT_WITHOUT_ARG("--failover-only",
  1790. opt_set_bool, &opt_fail_only,
  1791. "Don't leak work to backup pools when primary pool is lagging"),
  1792. #ifdef USE_FPGA
  1793. OPT_WITHOUT_ARG("--force-dev-init",
  1794. opt_set_bool, &opt_force_dev_init,
  1795. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1796. #endif
  1797. #ifdef HAVE_OPENCL
  1798. OPT_WITH_ARG("--gpu-dyninterval",
  1799. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1800. "Set the refresh interval in ms for GPUs using dynamic intensity"),
  1801. OPT_WITH_ARG("--gpu-platform",
  1802. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1803. "Select OpenCL platform ID to use for GPU mining"),
  1804. OPT_WITH_ARG("--gpu-threads",
  1805. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1806. "Number of threads per GPU (1 - 10)"),
  1807. OPT_WITH_ARG("-g",
  1808. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1809. opt_hidden),
  1810. #ifdef HAVE_ADL
  1811. OPT_WITH_ARG("--gpu-engine",
  1812. set_gpu_engine, NULL, NULL,
  1813. "GPU engine (over)clock range in MHz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)"),
  1814. OPT_WITH_ARG("--gpu-fan",
  1815. set_gpu_fan, NULL, NULL,
  1816. "GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
  1817. OPT_WITH_ARG("--gpu-map",
  1818. set_gpu_map, NULL, NULL,
  1819. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1820. OPT_WITH_ARG("--gpu-memclock",
  1821. set_gpu_memclock, NULL, NULL,
  1822. "Set the GPU memory (over)clock in MHz - one value for all or separate by commas for per card"),
  1823. OPT_WITH_ARG("--gpu-memdiff",
  1824. set_gpu_memdiff, NULL, NULL,
  1825. "Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode"),
  1826. OPT_WITH_ARG("--gpu-powertune",
  1827. set_gpu_powertune, NULL, NULL,
  1828. "Set the GPU powertune percentage - one value for all or separate by commas for per card"),
  1829. OPT_WITHOUT_ARG("--gpu-reorder",
  1830. opt_set_bool, &opt_reorder,
  1831. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1832. OPT_WITH_ARG("--gpu-vddc",
  1833. set_gpu_vddc, NULL, NULL,
  1834. "Set the GPU voltage in Volts - one value for all or separate by commas for per card"),
  1835. #endif
  1836. #ifdef USE_SCRYPT
  1837. OPT_WITH_ARG("--lookup-gap",
  1838. set_lookup_gap, NULL, NULL,
  1839. "Set GPU lookup gap for scrypt mining, comma separated"),
  1840. OPT_WITH_ARG("--intensity",
  1841. set_intensity, NULL, NULL,
  1842. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1843. " -> " MAX_SCRYPT_INTENSITY_STR
  1844. ",default: d to maintain desktop interactivity)"),
  1845. #else
  1846. OPT_WITH_ARG("--intensity",
  1847. set_intensity, NULL, NULL,
  1848. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1849. " -> " MAX_SHA_INTENSITY_STR
  1850. ",default: d to maintain desktop interactivity)"),
  1851. #endif
  1852. OPT_WITH_ARG("-I",
  1853. set_intensity, NULL, NULL,
  1854. opt_hidden),
  1855. #endif
  1856. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1857. OPT_WITH_ARG("--kernel-path",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. "Specify a path to where bitstream and kernel files are"),
  1860. OPT_WITH_ARG("-K",
  1861. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1862. opt_hidden),
  1863. #endif
  1864. #ifdef HAVE_OPENCL
  1865. OPT_WITH_ARG("--kernel",
  1866. set_kernel, NULL, NULL,
  1867. "Override sha256 kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated"),
  1868. OPT_WITH_ARG("-k",
  1869. set_kernel, NULL, NULL,
  1870. opt_hidden),
  1871. #endif
  1872. #ifdef USE_ICARUS
  1873. OPT_WITH_ARG("--icarus-options",
  1874. set_icarus_options, NULL, NULL,
  1875. opt_hidden),
  1876. OPT_WITH_ARG("--icarus-timing",
  1877. set_icarus_timing, NULL, NULL,
  1878. opt_hidden),
  1879. #endif
  1880. #ifdef USE_AVALON
  1881. OPT_WITH_ARG("--avalon-options",
  1882. set_avalon_options, NULL, NULL,
  1883. opt_hidden),
  1884. #endif
  1885. #ifdef USE_KLONDIKE
  1886. OPT_WITH_ARG("--klondike-options",
  1887. set_klondike_options, NULL, NULL,
  1888. "Set klondike options clock:temptarget"),
  1889. #endif
  1890. OPT_WITHOUT_ARG("--load-balance",
  1891. set_loadbalance, &pool_strategy,
  1892. "Change multipool strategy from failover to quota based balance"),
  1893. OPT_WITH_ARG("--log|-l",
  1894. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1895. "Interval in seconds between log output"),
  1896. OPT_WITH_ARG("--log-file|-L",
  1897. set_log_file, NULL, NULL,
  1898. "Append log file for output messages"),
  1899. OPT_WITH_ARG("--logfile",
  1900. set_log_file, NULL, NULL,
  1901. opt_hidden),
  1902. OPT_WITHOUT_ARG("--log-microseconds",
  1903. opt_set_bool, &opt_log_microseconds,
  1904. "Include microseconds in log output"),
  1905. #if defined(unix) || defined(__APPLE__)
  1906. OPT_WITH_ARG("--monitor|-m",
  1907. opt_set_charp, NULL, &opt_stderr_cmd,
  1908. "Use custom pipe cmd for output messages"),
  1909. #endif // defined(unix)
  1910. OPT_WITHOUT_ARG("--net-delay",
  1911. opt_set_bool, &opt_delaynet,
  1912. "Impose small delays in networking to avoid overloading slow routers"),
  1913. OPT_WITHOUT_ARG("--no-adl",
  1914. opt_set_bool, &opt_noadl,
  1915. #ifdef HAVE_ADL
  1916. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1917. #else
  1918. opt_hidden
  1919. #endif
  1920. ),
  1921. OPT_WITHOUT_ARG("--no-gbt",
  1922. opt_set_invbool, &want_gbt,
  1923. "Disable getblocktemplate support"),
  1924. OPT_WITHOUT_ARG("--no-getwork",
  1925. opt_set_invbool, &want_getwork,
  1926. "Disable getwork support"),
  1927. OPT_WITHOUT_ARG("--no-hotplug",
  1928. #ifdef HAVE_BFG_HOTPLUG
  1929. opt_set_invbool, &opt_hotplug,
  1930. "Disable hotplug detection"
  1931. #else
  1932. set_null, &opt_hotplug,
  1933. opt_hidden
  1934. #endif
  1935. ),
  1936. OPT_WITHOUT_ARG("--no-longpoll",
  1937. opt_set_invbool, &want_longpoll,
  1938. "Disable X-Long-Polling support"),
  1939. OPT_WITHOUT_ARG("--no-pool-disable",
  1940. opt_set_invbool, &opt_disable_pool,
  1941. opt_hidden),
  1942. OPT_WITHOUT_ARG("--no-restart",
  1943. opt_set_invbool, &opt_restart,
  1944. "Do not attempt to restart devices that hang"
  1945. ),
  1946. OPT_WITHOUT_ARG("--no-show-processors",
  1947. opt_set_invbool, &opt_show_procs,
  1948. opt_hidden),
  1949. OPT_WITHOUT_ARG("--no-show-procs",
  1950. opt_set_invbool, &opt_show_procs,
  1951. opt_hidden),
  1952. OPT_WITHOUT_ARG("--no-stratum",
  1953. opt_set_invbool, &want_stratum,
  1954. "Disable Stratum detection"),
  1955. OPT_WITHOUT_ARG("--no-submit-stale",
  1956. opt_set_invbool, &opt_submit_stale,
  1957. "Don't submit shares if they are detected as stale"),
  1958. #ifdef HAVE_OPENCL
  1959. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1960. opt_set_invbool, &opt_opencl_binaries,
  1961. "Don't attempt to use or save OpenCL kernel binaries"),
  1962. #endif
  1963. OPT_WITHOUT_ARG("--no-unicode",
  1964. #ifdef USE_UNICODE
  1965. opt_set_invbool, &use_unicode,
  1966. "Don't use Unicode characters in TUI"
  1967. #else
  1968. set_null, &use_unicode,
  1969. opt_hidden
  1970. #endif
  1971. ),
  1972. OPT_WITH_ARG("--noncelog",
  1973. set_noncelog, NULL, NULL,
  1974. "Create log of all nonces found"),
  1975. OPT_WITH_ARG("--pass|-p",
  1976. set_pass, NULL, NULL,
  1977. "Password for bitcoin JSON-RPC server"),
  1978. OPT_WITHOUT_ARG("--per-device-stats",
  1979. opt_set_bool, &want_per_device_stats,
  1980. "Force verbose mode and output per-device statistics"),
  1981. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1982. set_userpass, NULL, NULL,
  1983. opt_hidden),
  1984. OPT_WITH_ARG("--pool-priority",
  1985. set_pool_priority, NULL, NULL,
  1986. "Priority for just the previous-defined pool"),
  1987. OPT_WITH_ARG("--pool-proxy|-x",
  1988. set_pool_proxy, NULL, NULL,
  1989. "Proxy URI to use for connecting to just the previous-defined pool"),
  1990. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1991. set_pool_force_rollntime, NULL, NULL,
  1992. opt_hidden),
  1993. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1994. opt_set_bool, &opt_protocol,
  1995. "Verbose dump of protocol-level activities"),
  1996. OPT_WITH_ARG("--queue|-Q",
  1997. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1998. "Minimum number of work items to have queued (0+)"),
  1999. OPT_WITHOUT_ARG("--quiet|-q",
  2000. opt_set_bool, &opt_quiet,
  2001. "Disable logging output, display status and errors"),
  2002. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2003. opt_set_bool, &opt_quiet_work_updates,
  2004. opt_hidden),
  2005. OPT_WITH_ARG("--quit-summary",
  2006. set_quit_summary, NULL, NULL,
  2007. "Summary printed when you quit: none/devs/procs/detailed"),
  2008. OPT_WITH_ARG("--quota|-U",
  2009. set_quota, NULL, NULL,
  2010. "quota;URL combination for server with load-balance strategy quotas"),
  2011. OPT_WITHOUT_ARG("--real-quiet",
  2012. opt_set_bool, &opt_realquiet,
  2013. "Disable all output"),
  2014. OPT_WITH_ARG("--request-diff",
  2015. set_request_diff, opt_show_floatval, &request_pdiff,
  2016. "Request a specific difficulty from pools"),
  2017. OPT_WITH_ARG("--retries",
  2018. opt_set_intval, opt_show_intval, &opt_retries,
  2019. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2020. OPT_WITH_ARG("--retry-pause",
  2021. set_null, NULL, NULL,
  2022. opt_hidden),
  2023. OPT_WITH_ARG("--rotate",
  2024. set_rotate, opt_show_intval, &opt_rotate_period,
  2025. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2026. OPT_WITHOUT_ARG("--round-robin",
  2027. set_rr, &pool_strategy,
  2028. "Change multipool strategy from failover to round robin on failure"),
  2029. OPT_WITH_ARG("--scan|-S",
  2030. add_serial, NULL, NULL,
  2031. "Configure how to scan for mining devices"),
  2032. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2033. add_serial, NULL, NULL,
  2034. opt_hidden),
  2035. OPT_WITH_ARG("--scan-time",
  2036. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2037. "Upper bound on time spent scanning current work, in seconds"),
  2038. OPT_WITH_ARG("-s",
  2039. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2040. opt_hidden),
  2041. OPT_WITH_ARG("--scantime",
  2042. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2043. opt_hidden),
  2044. OPT_WITH_ARG("--sched-start",
  2045. set_schedtime, NULL, &schedstart,
  2046. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2047. OPT_WITH_ARG("--sched-stop",
  2048. set_schedtime, NULL, &schedstop,
  2049. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2050. #ifdef USE_SCRYPT
  2051. OPT_WITHOUT_ARG("--scrypt",
  2052. opt_set_bool, &opt_scrypt,
  2053. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2054. #endif
  2055. OPT_WITH_ARG("--set-device",
  2056. opt_string_elist_add, NULL, &opt_set_device_list,
  2057. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2058. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2059. OPT_WITH_ARG("--shaders",
  2060. set_shaders, NULL, NULL,
  2061. "GPU shaders per card for tuning scrypt, comma separated"),
  2062. #endif
  2063. #ifdef HAVE_PWD_H
  2064. OPT_WITH_ARG("--setuid",
  2065. opt_set_charp, NULL, &opt_setuid,
  2066. "Username of an unprivileged user to run as"),
  2067. #endif
  2068. OPT_WITH_ARG("--sharelog",
  2069. set_sharelog, NULL, NULL,
  2070. "Append share log to file"),
  2071. OPT_WITH_ARG("--shares",
  2072. opt_set_intval, NULL, &opt_shares,
  2073. "Quit after mining N shares (default: unlimited)"),
  2074. OPT_WITHOUT_ARG("--show-processors",
  2075. opt_set_bool, &opt_show_procs,
  2076. "Show per processor statistics in summary"),
  2077. OPT_WITHOUT_ARG("--show-procs",
  2078. opt_set_bool, &opt_show_procs,
  2079. opt_hidden),
  2080. OPT_WITH_ARG("--skip-security-checks",
  2081. set_int_0_to_9999, NULL, &opt_skip_checks,
  2082. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2083. OPT_WITH_ARG("--socks-proxy",
  2084. opt_set_charp, NULL, &opt_socks_proxy,
  2085. "Set socks proxy (host:port)"),
  2086. #ifdef USE_LIBEVENT
  2087. OPT_WITH_ARG("--stratum-port",
  2088. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2089. "Port number to listen on for stratum miners (-1 means disabled)"),
  2090. #endif
  2091. OPT_WITHOUT_ARG("--submit-stale",
  2092. opt_set_bool, &opt_submit_stale,
  2093. opt_hidden),
  2094. OPT_WITH_ARG("--submit-threads",
  2095. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2096. "Minimum number of concurrent share submissions (default: 64)"),
  2097. #ifdef HAVE_SYSLOG_H
  2098. OPT_WITHOUT_ARG("--syslog",
  2099. opt_set_bool, &use_syslog,
  2100. "Use system log for output messages (default: standard error)"),
  2101. #endif
  2102. OPT_WITH_ARG("--temp-cutoff",
  2103. set_temp_cutoff, NULL, &opt_cutofftemp,
  2104. opt_hidden),
  2105. OPT_WITH_ARG("--temp-hysteresis",
  2106. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2107. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2108. #ifdef HAVE_ADL
  2109. OPT_WITH_ARG("--temp-overheat",
  2110. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2111. "Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  2112. #endif
  2113. OPT_WITH_ARG("--temp-target",
  2114. set_temp_target, NULL, NULL,
  2115. opt_hidden),
  2116. OPT_WITHOUT_ARG("--text-only|-T",
  2117. opt_set_invbool, &use_curses,
  2118. #ifdef HAVE_CURSES
  2119. "Disable ncurses formatted screen output"
  2120. #else
  2121. opt_hidden
  2122. #endif
  2123. ),
  2124. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2125. OPT_WITH_ARG("--thread-concurrency",
  2126. set_thread_concurrency, NULL, NULL,
  2127. "Set GPU thread concurrency for scrypt mining, comma separated"),
  2128. #endif
  2129. #ifdef USE_UNICODE
  2130. OPT_WITHOUT_ARG("--unicode",
  2131. opt_set_bool, &use_unicode,
  2132. "Use Unicode characters in TUI"),
  2133. #endif
  2134. OPT_WITH_ARG("--url|-o",
  2135. set_url, NULL, NULL,
  2136. "URL for bitcoin JSON-RPC server"),
  2137. OPT_WITH_ARG("--user|-u",
  2138. set_user, NULL, NULL,
  2139. "Username for bitcoin JSON-RPC server"),
  2140. #ifdef HAVE_OPENCL
  2141. OPT_WITH_ARG("--vectors",
  2142. set_vector, NULL, NULL,
  2143. "Override detected optimal vector (1, 2 or 4) - one value or comma separated list"),
  2144. OPT_WITH_ARG("-v",
  2145. set_vector, NULL, NULL,
  2146. opt_hidden),
  2147. #endif
  2148. OPT_WITHOUT_ARG("--verbose",
  2149. opt_set_bool, &opt_log_output,
  2150. "Log verbose output to stderr as well as status output"),
  2151. OPT_WITHOUT_ARG("--weighed-stats",
  2152. opt_set_bool, &opt_weighed_stats,
  2153. "Display statistics weighed to difficulty 1"),
  2154. #ifdef HAVE_OPENCL
  2155. OPT_WITH_ARG("--worksize",
  2156. set_worksize, NULL, NULL,
  2157. "Override detected optimal worksize - one value or comma separated list"),
  2158. OPT_WITH_ARG("-w",
  2159. set_worksize, NULL, NULL,
  2160. opt_hidden),
  2161. #endif
  2162. OPT_WITHOUT_ARG("--unittest",
  2163. opt_set_bool, &opt_unittest, opt_hidden),
  2164. OPT_WITH_ARG("--userpass|-O",
  2165. set_userpass, NULL, NULL,
  2166. "Username:Password pair for bitcoin JSON-RPC server"),
  2167. OPT_WITHOUT_ARG("--worktime",
  2168. opt_set_bool, &opt_worktime,
  2169. "Display extra work time debug information"),
  2170. OPT_WITH_ARG("--pools",
  2171. opt_set_bool, NULL, NULL, opt_hidden),
  2172. OPT_ENDTABLE
  2173. };
  2174. static char *load_config(const char *arg, void __maybe_unused *unused);
  2175. static int fileconf_load;
  2176. static char *parse_config(json_t *config, bool fileconf)
  2177. {
  2178. static char err_buf[200];
  2179. struct opt_table *opt;
  2180. json_t *val;
  2181. if (fileconf && !fileconf_load)
  2182. fileconf_load = 1;
  2183. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2184. char *p, *name, *sp;
  2185. /* We don't handle subtables. */
  2186. assert(!(opt->type & OPT_SUBTABLE));
  2187. if (!opt->names)
  2188. continue;
  2189. /* Pull apart the option name(s). */
  2190. name = strdup(opt->names);
  2191. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2192. char *err = "Invalid value";
  2193. /* Ignore short options. */
  2194. if (p[1] != '-')
  2195. continue;
  2196. val = json_object_get(config, p+2);
  2197. if (!val)
  2198. continue;
  2199. if (opt->type & OPT_HASARG) {
  2200. if (json_is_string(val)) {
  2201. err = opt->cb_arg(json_string_value(val),
  2202. opt->u.arg);
  2203. } else if (json_is_number(val)) {
  2204. char buf[256], *p, *q;
  2205. snprintf(buf, 256, "%f", json_number_value(val));
  2206. if ( (p = strchr(buf, '.')) ) {
  2207. // Trim /\.0*$/ to work properly with integer-only arguments
  2208. q = p;
  2209. while (*(++q) == '0') {}
  2210. if (*q == '\0')
  2211. *p = '\0';
  2212. }
  2213. err = opt->cb_arg(buf, opt->u.arg);
  2214. } else if (json_is_array(val)) {
  2215. int n, size = json_array_size(val);
  2216. err = NULL;
  2217. for (n = 0; n < size && !err; n++) {
  2218. if (json_is_string(json_array_get(val, n)))
  2219. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2220. else if (json_is_object(json_array_get(val, n)))
  2221. err = parse_config(json_array_get(val, n), false);
  2222. }
  2223. }
  2224. } else if (opt->type & OPT_NOARG) {
  2225. if (json_is_true(val))
  2226. err = opt->cb(opt->u.arg);
  2227. else if (json_is_boolean(val)) {
  2228. if (opt->cb == (void*)opt_set_bool)
  2229. err = opt_set_invbool(opt->u.arg);
  2230. else if (opt->cb == (void*)opt_set_invbool)
  2231. err = opt_set_bool(opt->u.arg);
  2232. }
  2233. }
  2234. if (err) {
  2235. /* Allow invalid values to be in configuration
  2236. * file, just skipping over them provided the
  2237. * JSON is still valid after that. */
  2238. if (fileconf) {
  2239. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2240. fileconf_load = -1;
  2241. } else {
  2242. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2243. p, err);
  2244. return err_buf;
  2245. }
  2246. }
  2247. }
  2248. free(name);
  2249. }
  2250. val = json_object_get(config, JSON_INCLUDE_CONF);
  2251. if (val && json_is_string(val))
  2252. return load_config(json_string_value(val), NULL);
  2253. return NULL;
  2254. }
  2255. char *cnfbuf = NULL;
  2256. static char *load_config(const char *arg, void __maybe_unused *unused)
  2257. {
  2258. json_error_t err;
  2259. json_t *config;
  2260. char *json_error;
  2261. size_t siz;
  2262. if (!cnfbuf)
  2263. cnfbuf = strdup(arg);
  2264. if (++include_count > JSON_MAX_DEPTH)
  2265. return JSON_MAX_DEPTH_ERR;
  2266. #if JANSSON_MAJOR_VERSION > 1
  2267. config = json_load_file(arg, 0, &err);
  2268. #else
  2269. config = json_load_file(arg, &err);
  2270. #endif
  2271. if (!json_is_object(config)) {
  2272. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2273. json_error = malloc(siz);
  2274. if (!json_error)
  2275. quit(1, "Malloc failure in json error");
  2276. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2277. return json_error;
  2278. }
  2279. config_loaded = true;
  2280. /* Parse the config now, so we can override it. That can keep pointers
  2281. * so don't free config object. */
  2282. return parse_config(config, true);
  2283. }
  2284. static void load_default_config(void)
  2285. {
  2286. cnfbuf = malloc(PATH_MAX);
  2287. #if defined(unix)
  2288. if (getenv("HOME") && *getenv("HOME")) {
  2289. strcpy(cnfbuf, getenv("HOME"));
  2290. strcat(cnfbuf, "/");
  2291. } else
  2292. strcpy(cnfbuf, "");
  2293. char *dirp = cnfbuf + strlen(cnfbuf);
  2294. strcpy(dirp, ".bfgminer/");
  2295. strcat(dirp, def_conf);
  2296. if (access(cnfbuf, R_OK))
  2297. // No BFGMiner config, try Cgminer's...
  2298. strcpy(dirp, ".cgminer/cgminer.conf");
  2299. #else
  2300. strcpy(cnfbuf, "");
  2301. strcat(cnfbuf, def_conf);
  2302. #endif
  2303. if (!access(cnfbuf, R_OK))
  2304. load_config(cnfbuf, NULL);
  2305. else {
  2306. free(cnfbuf);
  2307. cnfbuf = NULL;
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are available from commandline only */
  2323. static struct opt_table opt_cmdline_table[] = {
  2324. OPT_WITH_ARG("--config|-c",
  2325. load_config, NULL, NULL,
  2326. "Load a JSON-format configuration file\n"
  2327. "See example.conf for an example configuration."),
  2328. OPT_WITHOUT_ARG("--no-config",
  2329. opt_set_bool, &config_loaded,
  2330. "Inhibit loading default config file"),
  2331. OPT_WITHOUT_ARG("--help|-h",
  2332. opt_verusage_and_exit, NULL,
  2333. "Print this message"),
  2334. #ifdef HAVE_OPENCL
  2335. OPT_WITHOUT_ARG("--ndevs|-n",
  2336. print_ndevs_and_exit, &nDevs,
  2337. opt_hidden),
  2338. #endif
  2339. OPT_WITHOUT_ARG("--version|-V",
  2340. opt_version_and_exit, packagename,
  2341. "Display version and exit"),
  2342. OPT_ENDTABLE
  2343. };
  2344. static bool jobj_binary(const json_t *obj, const char *key,
  2345. void *buf, size_t buflen, bool required)
  2346. {
  2347. const char *hexstr;
  2348. json_t *tmp;
  2349. tmp = json_object_get(obj, key);
  2350. if (unlikely(!tmp)) {
  2351. if (unlikely(required))
  2352. applog(LOG_ERR, "JSON key '%s' not found", key);
  2353. return false;
  2354. }
  2355. hexstr = json_string_value(tmp);
  2356. if (unlikely(!hexstr)) {
  2357. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2358. return false;
  2359. }
  2360. if (!hex2bin(buf, hexstr, buflen))
  2361. return false;
  2362. return true;
  2363. }
  2364. static void calc_midstate(struct work *work)
  2365. {
  2366. union {
  2367. unsigned char c[64];
  2368. uint32_t i[16];
  2369. } data;
  2370. swap32yes(&data.i[0], work->data, 16);
  2371. sha256_ctx ctx;
  2372. sha256_init(&ctx);
  2373. sha256_update(&ctx, data.c, 64);
  2374. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2375. swap32tole(work->midstate, work->midstate, 8);
  2376. }
  2377. static struct work *make_work(void)
  2378. {
  2379. struct work *work = calloc(1, sizeof(struct work));
  2380. if (unlikely(!work))
  2381. quit(1, "Failed to calloc work in make_work");
  2382. cg_wlock(&control_lock);
  2383. work->id = total_work++;
  2384. cg_wunlock(&control_lock);
  2385. return work;
  2386. }
  2387. /* This is the central place all work that is about to be retired should be
  2388. * cleaned to remove any dynamically allocated arrays within the struct */
  2389. void clean_work(struct work *work)
  2390. {
  2391. free(work->job_id);
  2392. bytes_free(&work->nonce2);
  2393. free(work->nonce1);
  2394. if (work->tmpl) {
  2395. struct pool *pool = work->pool;
  2396. mutex_lock(&pool->pool_lock);
  2397. bool free_tmpl = !--*work->tmpl_refcount;
  2398. mutex_unlock(&pool->pool_lock);
  2399. if (free_tmpl) {
  2400. blktmpl_free(work->tmpl);
  2401. free(work->tmpl_refcount);
  2402. }
  2403. }
  2404. memset(work, 0, sizeof(struct work));
  2405. }
  2406. /* All dynamically allocated work structs should be freed here to not leak any
  2407. * ram from arrays allocated within the work struct */
  2408. void free_work(struct work *work)
  2409. {
  2410. clean_work(work);
  2411. free(work);
  2412. }
  2413. 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";
  2414. // Must only be called with ch_lock held!
  2415. static
  2416. void __update_block_title(const unsigned char *hash_swap)
  2417. {
  2418. if (hash_swap) {
  2419. char tmp[17];
  2420. // Only provided when the block has actually changed
  2421. free(current_hash);
  2422. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2423. bin2hex(tmp, &hash_swap[24], 8);
  2424. memset(current_hash, '.', 3);
  2425. memcpy(&current_hash[3], tmp, 17);
  2426. known_blkheight_current = false;
  2427. } else if (likely(known_blkheight_current)) {
  2428. return;
  2429. }
  2430. if (current_block_id == known_blkheight_blkid) {
  2431. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2432. if (known_blkheight < 1000000) {
  2433. memmove(&current_hash[3], &current_hash[11], 8);
  2434. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2435. }
  2436. known_blkheight_current = true;
  2437. }
  2438. }
  2439. static
  2440. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2441. {
  2442. if (known_blkheight == blkheight)
  2443. return;
  2444. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2445. cg_wlock(&ch_lock);
  2446. known_blkheight = blkheight;
  2447. known_blkheight_blkid = block_id;
  2448. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2449. if (block_id == current_block_id)
  2450. __update_block_title(NULL);
  2451. cg_wunlock(&ch_lock);
  2452. }
  2453. static
  2454. void pool_set_opaque(struct pool *pool, bool opaque)
  2455. {
  2456. if (pool->swork.opaque == opaque)
  2457. return;
  2458. pool->swork.opaque = opaque;
  2459. if (opaque)
  2460. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2461. pool->pool_no);
  2462. else
  2463. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2464. pool->pool_no);
  2465. }
  2466. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2467. {
  2468. json_t *res_val = json_object_get(val, "result");
  2469. json_t *tmp_val;
  2470. bool ret = false;
  2471. if (unlikely(detect_algo == 1)) {
  2472. json_t *tmp = json_object_get(res_val, "algorithm");
  2473. const char *v = tmp ? json_string_value(tmp) : "";
  2474. if (strncasecmp(v, "scrypt", 6))
  2475. detect_algo = 2;
  2476. }
  2477. if (work->tmpl) {
  2478. struct timeval tv_now;
  2479. cgtime(&tv_now);
  2480. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2481. if (err) {
  2482. applog(LOG_ERR, "blktmpl error: %s", err);
  2483. return false;
  2484. }
  2485. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2486. #if BLKMAKER_VERSION > 1
  2487. if (opt_coinbase_script.sz)
  2488. {
  2489. bool newcb;
  2490. #if BLKMAKER_VERSION > 2
  2491. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2492. #else
  2493. newcb = !work->tmpl->cbtxn;
  2494. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2495. #endif
  2496. if (newcb)
  2497. {
  2498. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2499. if (ae < (ssize_t)sizeof(template_nonce))
  2500. 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);
  2501. ++template_nonce;
  2502. }
  2503. }
  2504. #endif
  2505. #if BLKMAKER_VERSION > 0
  2506. {
  2507. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2508. static bool appenderr = false;
  2509. if (ae <= 0) {
  2510. if (opt_coinbase_sig) {
  2511. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2512. appenderr = true;
  2513. }
  2514. } else if (ae >= 3 || opt_coinbase_sig) {
  2515. const char *cbappend = opt_coinbase_sig;
  2516. const char full[] = PACKAGE " " VERSION;
  2517. if (!cbappend) {
  2518. if ((size_t)ae >= sizeof(full) - 1)
  2519. cbappend = full;
  2520. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2521. cbappend = PACKAGE;
  2522. else
  2523. cbappend = "BFG";
  2524. }
  2525. size_t cbappendsz = strlen(cbappend);
  2526. static bool truncatewarning = false;
  2527. if (cbappendsz <= (size_t)ae) {
  2528. if (cbappendsz < (size_t)ae)
  2529. // If we have space, include the trailing \0
  2530. ++cbappendsz;
  2531. ae = cbappendsz;
  2532. truncatewarning = false;
  2533. } else {
  2534. char *tmp = malloc(ae + 1);
  2535. memcpy(tmp, opt_coinbase_sig, ae);
  2536. tmp[ae] = '\0';
  2537. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2538. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2539. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2540. free(tmp);
  2541. truncatewarning = true;
  2542. }
  2543. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2544. if (ae <= 0) {
  2545. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2546. appenderr = true;
  2547. } else
  2548. appenderr = false;
  2549. }
  2550. }
  2551. #endif
  2552. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2553. return false;
  2554. swap32yes(work->data, work->data, 80 / 4);
  2555. memcpy(&work->data[80], workpadding_bin, 48);
  2556. const struct blktmpl_longpoll_req *lp;
  2557. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2558. free(pool->lp_id);
  2559. pool->lp_id = strdup(lp->id);
  2560. #if 0 /* This just doesn't work :( */
  2561. curl_socket_t sock = pool->lp_socket;
  2562. if (sock != CURL_SOCKET_BAD) {
  2563. pool->lp_socket = CURL_SOCKET_BAD;
  2564. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2565. shutdown(sock, SHUT_RDWR);
  2566. }
  2567. #endif
  2568. }
  2569. }
  2570. else
  2571. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2572. applog(LOG_ERR, "JSON inval data");
  2573. return false;
  2574. }
  2575. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2576. // Calculate it ourselves
  2577. applog(LOG_DEBUG, "Calculating midstate locally");
  2578. calc_midstate(work);
  2579. }
  2580. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2581. applog(LOG_ERR, "JSON inval target");
  2582. return false;
  2583. }
  2584. if (work->tmpl) {
  2585. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2586. {
  2587. int p = (sizeof(work->target) - 1) - i;
  2588. unsigned char c = work->target[i];
  2589. work->target[i] = work->target[p];
  2590. work->target[p] = c;
  2591. }
  2592. }
  2593. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2594. uint32_t blkheight = json_number_value(tmp_val);
  2595. uint32_t block_id = ((uint32_t*)work->data)[1];
  2596. have_block_height(block_id, blkheight);
  2597. }
  2598. memset(work->hash, 0, sizeof(work->hash));
  2599. cgtime(&work->tv_staged);
  2600. pool_set_opaque(pool, !work->tmpl);
  2601. ret = true;
  2602. return ret;
  2603. }
  2604. /* Returns whether the pool supports local work generation or not. */
  2605. static bool pool_localgen(struct pool *pool)
  2606. {
  2607. return (pool->last_work_copy || pool->has_stratum);
  2608. }
  2609. int dev_from_id(int thr_id)
  2610. {
  2611. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2612. return cgpu->device_id;
  2613. }
  2614. /* Create an exponentially decaying average over the opt_log_interval */
  2615. void decay_time(double *f, double fadd, double fsecs)
  2616. {
  2617. double ftotal, fprop;
  2618. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2619. ftotal = 1.0 + fprop;
  2620. *f += (fadd * fprop);
  2621. *f /= ftotal;
  2622. }
  2623. static int __total_staged(void)
  2624. {
  2625. return HASH_COUNT(staged_work);
  2626. }
  2627. static int total_staged(void)
  2628. {
  2629. int ret;
  2630. mutex_lock(stgd_lock);
  2631. ret = __total_staged();
  2632. mutex_unlock(stgd_lock);
  2633. return ret;
  2634. }
  2635. #ifdef HAVE_CURSES
  2636. WINDOW *mainwin, *statuswin, *logwin;
  2637. #endif
  2638. double total_secs = 1.0;
  2639. static char statusline[256];
  2640. /* logstart is where the log window should start */
  2641. static int devcursor, logstart, logcursor;
  2642. #ifdef HAVE_CURSES
  2643. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2644. static int statusy;
  2645. static int devsummaryYOffset;
  2646. static int total_lines;
  2647. #endif
  2648. #ifdef HAVE_OPENCL
  2649. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2650. #endif
  2651. struct cgpu_info *cpus;
  2652. bool _bfg_console_cancel_disabled;
  2653. int _bfg_console_prev_cancelstate;
  2654. #ifdef HAVE_CURSES
  2655. #define lock_curses() bfg_console_lock()
  2656. #define unlock_curses() bfg_console_unlock()
  2657. static bool curses_active_locked(void)
  2658. {
  2659. bool ret;
  2660. lock_curses();
  2661. ret = curses_active;
  2662. if (!ret)
  2663. unlock_curses();
  2664. return ret;
  2665. }
  2666. // Cancellable getch
  2667. int my_cancellable_getch(void)
  2668. {
  2669. // This only works because the macro only hits direct getch() calls
  2670. typedef int (*real_getch_t)(void);
  2671. const real_getch_t real_getch = __real_getch;
  2672. int type, rv;
  2673. bool sct;
  2674. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2675. rv = real_getch();
  2676. if (sct)
  2677. pthread_setcanceltype(type, &type);
  2678. return rv;
  2679. }
  2680. #ifdef PDCURSES
  2681. static
  2682. int bfg_wresize(WINDOW *win, int lines, int columns)
  2683. {
  2684. int rv = wresize(win, lines, columns);
  2685. int x, y;
  2686. getyx(win, y, x);
  2687. if (unlikely(y >= lines || x >= columns))
  2688. {
  2689. if (y >= lines)
  2690. y = lines - 1;
  2691. if (x >= columns)
  2692. x = columns - 1;
  2693. wmove(win, y, x);
  2694. }
  2695. return rv;
  2696. }
  2697. #else
  2698. # define bfg_wresize wresize
  2699. #endif
  2700. #endif
  2701. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2702. {
  2703. va_list ap;
  2704. size_t presz = strlen(buf);
  2705. va_start(ap, fmt);
  2706. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2707. va_end(ap);
  2708. }
  2709. double stats_elapsed(struct cgminer_stats *stats)
  2710. {
  2711. struct timeval now;
  2712. double elapsed;
  2713. if (stats->start_tv.tv_sec == 0)
  2714. elapsed = total_secs;
  2715. else {
  2716. cgtime(&now);
  2717. elapsed = tdiff(&now, &stats->start_tv);
  2718. }
  2719. if (elapsed < 1.0)
  2720. elapsed = 1.0;
  2721. return elapsed;
  2722. }
  2723. bool drv_ready(struct cgpu_info *cgpu)
  2724. {
  2725. switch (cgpu->status) {
  2726. case LIFE_INIT:
  2727. case LIFE_DEAD2:
  2728. return false;
  2729. default:
  2730. return true;
  2731. }
  2732. }
  2733. double cgpu_utility(struct cgpu_info *cgpu)
  2734. {
  2735. double dev_runtime = cgpu_runtime(cgpu);
  2736. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2737. }
  2738. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2739. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2740. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2741. }while(0)
  2742. static float
  2743. utility_to_hashrate(double utility)
  2744. {
  2745. return utility * 0x4444444;
  2746. }
  2747. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2748. static const int _unitbase = 4;
  2749. static
  2750. void pick_unit(float hashrate, unsigned char *unit)
  2751. {
  2752. unsigned char i;
  2753. if (hashrate == 0)
  2754. {
  2755. if (*unit < _unitbase)
  2756. *unit = _unitbase;
  2757. return;
  2758. }
  2759. hashrate *= 1e12;
  2760. for (i = 0; i < *unit; ++i)
  2761. hashrate /= 1e3;
  2762. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2763. while (hashrate >= 999.95)
  2764. {
  2765. hashrate /= 1e3;
  2766. if (likely(_unitchar[*unit] != '?'))
  2767. ++*unit;
  2768. }
  2769. }
  2770. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2771. enum h2bs_fmt {
  2772. H2B_NOUNIT, // "xxx.x"
  2773. H2B_SHORT, // "xxx.xMH/s"
  2774. H2B_SPACED, // "xxx.x MH/s"
  2775. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2776. };
  2777. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2778. enum bfu_floatprec {
  2779. FUP_INTEGER,
  2780. FUP_HASHES,
  2781. FUP_BTC,
  2782. FUP_DIFF,
  2783. };
  2784. static
  2785. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2786. {
  2787. char *s = buf;
  2788. unsigned char prec, i, unit;
  2789. int rv = 0;
  2790. if (unitin == -1)
  2791. {
  2792. unit = 0;
  2793. hashrate_pick_unit(hashrate, &unit);
  2794. }
  2795. else
  2796. unit = unitin;
  2797. hashrate *= 1e12;
  2798. for (i = 0; i < unit; ++i)
  2799. hashrate /= 1000;
  2800. switch (fprec)
  2801. {
  2802. case FUP_HASHES:
  2803. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2804. if (hashrate >= 99.995 || unit < 6)
  2805. prec = 1;
  2806. else
  2807. prec = 2;
  2808. _SNP("%5.*f", prec, hashrate);
  2809. break;
  2810. case FUP_INTEGER:
  2811. _SNP("%3d", (int)hashrate);
  2812. break;
  2813. case FUP_BTC:
  2814. if (hashrate >= 99.995)
  2815. prec = 0;
  2816. else
  2817. prec = 2;
  2818. _SNP("%5.*f", prec, hashrate);
  2819. break;
  2820. case FUP_DIFF:
  2821. if (unit > _unitbase)
  2822. _SNP("%.3g", hashrate);
  2823. else
  2824. _SNP("%u", (unsigned int)hashrate);
  2825. }
  2826. switch (fmt) {
  2827. case H2B_SPACED:
  2828. _SNP(" ");
  2829. case H2B_SHORT:
  2830. _SNP("%c%s", _unitchar[unit], measurement);
  2831. default:
  2832. break;
  2833. case H2B_SHORTV:
  2834. _SNP("%.1s%s", (unit == _unitbase) ? "" : &_unitchar[unit], measurement);
  2835. }
  2836. return rv;
  2837. }
  2838. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2839. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2840. static
  2841. 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)
  2842. {
  2843. unsigned char unit = 0;
  2844. bool allzero = true;
  2845. int i;
  2846. size_t delimsz = 0;
  2847. char *buf = buflist[0];
  2848. size_t bufsz = bufszlist[0];
  2849. size_t itemwidth = (floatprec ? 5 : 3);
  2850. if (!isarray)
  2851. delimsz = strlen(delim);
  2852. for (i = 0; i < count; ++i)
  2853. if (numbers[i] != 0)
  2854. {
  2855. pick_unit(numbers[i], &unit);
  2856. allzero = false;
  2857. }
  2858. if (allzero)
  2859. unit = _unitbase;
  2860. --count;
  2861. for (i = 0; i < count; ++i)
  2862. {
  2863. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2864. if (isarray)
  2865. {
  2866. buf = buflist[i + 1];
  2867. bufsz = bufszlist[i + 1];
  2868. }
  2869. else
  2870. {
  2871. buf += itemwidth;
  2872. bufsz -= itemwidth;
  2873. if (delimsz > bufsz)
  2874. delimsz = bufsz;
  2875. memcpy(buf, delim, delimsz);
  2876. buf += delimsz;
  2877. bufsz -= delimsz;
  2878. }
  2879. }
  2880. // Last entry has the unit
  2881. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2882. return buflist[0];
  2883. }
  2884. #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)
  2885. #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)
  2886. static
  2887. int percentf3(char * const buf, size_t sz, double p, const double t)
  2888. {
  2889. char *s = buf;
  2890. int rv = 0;
  2891. if (!p)
  2892. _SNP("none");
  2893. else
  2894. if (t <= p)
  2895. _SNP("100%%");
  2896. else
  2897. {
  2898. p /= t;
  2899. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2900. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2901. else
  2902. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2903. _SNP("%.1f%%", p * 100); // "9.1%"
  2904. else
  2905. _SNP("%3.0f%%", p * 100); // " 99%"
  2906. }
  2907. return rv;
  2908. }
  2909. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2910. static
  2911. void test_decimal_width()
  2912. {
  2913. // The pipe character at end of each line should perfectly line up
  2914. char printbuf[512];
  2915. char testbuf1[64];
  2916. char testbuf2[64];
  2917. char testbuf3[64];
  2918. char testbuf4[64];
  2919. double testn;
  2920. int width;
  2921. int saved;
  2922. // Hotspots around 0.1 and 0.01
  2923. saved = -1;
  2924. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2925. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2926. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2927. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2928. if (unlikely((saved != -1) && (width != saved))) {
  2929. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2930. applog(LOG_ERR, "%s", printbuf);
  2931. }
  2932. saved = width;
  2933. }
  2934. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2935. saved = -1;
  2936. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2937. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2938. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2939. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2940. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2941. if (unlikely((saved != -1) && (width != saved))) {
  2942. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2943. applog(LOG_ERR, "%s", printbuf);
  2944. }
  2945. saved = width;
  2946. }
  2947. // Hotspot around unit transition boundary in pick_unit
  2948. saved = -1;
  2949. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2950. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2951. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2952. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2953. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2954. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2955. if (unlikely((saved != -1) && (width != saved))) {
  2956. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2957. applog(LOG_ERR, "%s", printbuf);
  2958. }
  2959. saved = width;
  2960. }
  2961. }
  2962. #ifdef HAVE_CURSES
  2963. static void adj_width(int var, int *length);
  2964. #endif
  2965. #ifdef HAVE_CURSES
  2966. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2967. static
  2968. 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)
  2969. {
  2970. char rejpcbuf[6];
  2971. char bnbuf[6];
  2972. adj_width(accepted, &awidth);
  2973. adj_width(rejected, &rwidth);
  2974. adj_width(stale, &swidth);
  2975. adj_width(hwerrs, &hwwidth);
  2976. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2977. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2978. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2979. cHr, aHr, uHr,
  2980. awidth, accepted,
  2981. rwidth, rejected,
  2982. swidth, stale,
  2983. rejpcbuf,
  2984. hwwidth, hwerrs,
  2985. bnbuf
  2986. );
  2987. }
  2988. #endif
  2989. static inline
  2990. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  2991. {
  2992. if (!(use_unicode && have_unicode_degrees))
  2993. maybe_unicode = false;
  2994. if (temp && *temp > 0.)
  2995. if (maybe_unicode)
  2996. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  2997. else
  2998. snprintf(buf, bufsz, "%4.1fC", *temp);
  2999. else
  3000. {
  3001. if (temp)
  3002. snprintf(buf, bufsz, " ");
  3003. if (maybe_unicode)
  3004. tailsprintf(buf, bufsz, " ");
  3005. }
  3006. tailsprintf(buf, bufsz, " | ");
  3007. }
  3008. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3009. {
  3010. #ifndef HAVE_CURSES
  3011. assert(for_curses == false);
  3012. #endif
  3013. struct device_drv *drv = cgpu->drv;
  3014. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3015. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  3016. char rejpcbuf[6];
  3017. char bnbuf[6];
  3018. double dev_runtime;
  3019. if (!opt_show_procs)
  3020. cgpu = cgpu->device;
  3021. dev_runtime = cgpu_runtime(cgpu);
  3022. double rolling, mhashes;
  3023. int accepted, rejected, stale;
  3024. double waccepted;
  3025. double wnotaccepted;
  3026. int hwerrs;
  3027. double bad_diff1, good_diff1;
  3028. rolling = mhashes = waccepted = wnotaccepted = 0;
  3029. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3030. {
  3031. struct cgpu_info *slave = cgpu;
  3032. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3033. {
  3034. slave->utility = slave->accepted / dev_runtime * 60;
  3035. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3036. rolling += slave->rolling;
  3037. mhashes += slave->total_mhashes;
  3038. if (opt_weighed_stats)
  3039. {
  3040. accepted += slave->diff_accepted;
  3041. rejected += slave->diff_rejected;
  3042. stale += slave->diff_stale;
  3043. }
  3044. else
  3045. {
  3046. accepted += slave->accepted;
  3047. rejected += slave->rejected;
  3048. stale += slave->stale;
  3049. }
  3050. waccepted += slave->diff_accepted;
  3051. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3052. hwerrs += slave->hw_errors;
  3053. bad_diff1 += slave->bad_diff1;
  3054. good_diff1 += slave->diff1;
  3055. if (opt_show_procs)
  3056. break;
  3057. }
  3058. }
  3059. double wtotal = (waccepted + wnotaccepted);
  3060. multi_format_unit_array2(
  3061. ((char*[]){cHr, aHr, uHr}),
  3062. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  3063. true, "h/s", hashrate_style,
  3064. 3,
  3065. 1e6*rolling,
  3066. 1e6*mhashes / dev_runtime,
  3067. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3068. // Processor representation
  3069. #ifdef HAVE_CURSES
  3070. if (for_curses)
  3071. {
  3072. if (opt_show_procs)
  3073. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3074. else
  3075. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3076. }
  3077. else
  3078. #endif
  3079. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3080. if (include_serial_in_statline && cgpu->dev_serial)
  3081. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3082. if (unlikely(cgpu->status == LIFE_INIT))
  3083. {
  3084. tailsprintf(buf, bufsz, "Initializing...");
  3085. return;
  3086. }
  3087. {
  3088. const size_t bufln = strlen(buf);
  3089. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3090. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3091. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3092. else
  3093. {
  3094. float temp = cgpu->temp;
  3095. if (!opt_show_procs)
  3096. {
  3097. // Find the highest temperature of all processors
  3098. struct cgpu_info *proc = cgpu;
  3099. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3100. if (proc->temp > temp)
  3101. temp = proc->temp;
  3102. }
  3103. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3104. }
  3105. }
  3106. #ifdef HAVE_CURSES
  3107. if (for_curses)
  3108. {
  3109. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3110. const char *cHrStats;
  3111. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3112. bool all_dead = true, all_off = true, all_rdrv = true;
  3113. struct cgpu_info *proc = cgpu;
  3114. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3115. {
  3116. switch (cHrStatsI) {
  3117. default:
  3118. if (proc->status == LIFE_WAIT)
  3119. cHrStatsI = 5;
  3120. case 5:
  3121. if (proc->deven == DEV_RECOVER_ERR)
  3122. cHrStatsI = 4;
  3123. case 4:
  3124. if (proc->deven == DEV_RECOVER)
  3125. cHrStatsI = 3;
  3126. case 3:
  3127. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3128. {
  3129. cHrStatsI = 1;
  3130. all_off = false;
  3131. }
  3132. else
  3133. {
  3134. if (likely(proc->deven == DEV_ENABLED))
  3135. all_off = false;
  3136. if (proc->deven != DEV_RECOVER_DRV)
  3137. all_rdrv = false;
  3138. }
  3139. case 1:
  3140. break;
  3141. }
  3142. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3143. all_dead = false;
  3144. if (opt_show_procs)
  3145. break;
  3146. }
  3147. if (unlikely(all_dead))
  3148. cHrStatsI = 0;
  3149. else
  3150. if (unlikely(all_off))
  3151. cHrStatsI = 2;
  3152. cHrStats = cHrStatsOpt[cHrStatsI];
  3153. if (cHrStatsI == 2 && all_rdrv)
  3154. cHrStats = " RST ";
  3155. format_statline(buf, bufsz,
  3156. cHrStats,
  3157. aHr, uHr,
  3158. accepted, rejected, stale,
  3159. wnotaccepted, waccepted,
  3160. hwerrs,
  3161. bad_diff1, bad_diff1 + good_diff1);
  3162. }
  3163. else
  3164. #endif
  3165. {
  3166. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3167. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3168. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3169. opt_log_interval,
  3170. cHr, aHr, uHr,
  3171. accepted,
  3172. rejected,
  3173. stale,
  3174. rejpcbuf,
  3175. hwerrs,
  3176. bnbuf
  3177. );
  3178. }
  3179. }
  3180. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3181. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3182. static void text_print_status(int thr_id)
  3183. {
  3184. struct cgpu_info *cgpu;
  3185. char logline[256];
  3186. cgpu = get_thr_cgpu(thr_id);
  3187. if (cgpu) {
  3188. get_statline(logline, sizeof(logline), cgpu);
  3189. printf("%s\n", logline);
  3190. }
  3191. }
  3192. #ifdef HAVE_CURSES
  3193. static int attr_bad = A_BOLD;
  3194. #ifdef WIN32
  3195. #define swprintf snwprintf
  3196. #endif
  3197. static
  3198. void bfg_waddstr(WINDOW *win, const char *s)
  3199. {
  3200. const char *p = s;
  3201. int32_t w;
  3202. int wlen;
  3203. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3204. while (true)
  3205. {
  3206. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3207. {
  3208. // Printable ASCII
  3209. ++p;
  3210. }
  3211. if (p != s)
  3212. waddnstr(win, s, p - s);
  3213. w = utf8_decode(p, &wlen);
  3214. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3215. {
  3216. w = unicode_micro;
  3217. wlen = 1;
  3218. }
  3219. s = p += wlen;
  3220. switch(w)
  3221. {
  3222. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3223. case '\0':
  3224. return;
  3225. case 0xf000: // "bad" off
  3226. wattroff(win, attr_bad);
  3227. break;
  3228. case 0xf001: // "bad" on
  3229. wattron(win, attr_bad);
  3230. break;
  3231. #ifdef USE_UNICODE
  3232. case '|':
  3233. wadd_wch(win, WACS_VLINE);
  3234. break;
  3235. #endif
  3236. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3237. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3238. if (!use_unicode)
  3239. {
  3240. waddch(win, '-');
  3241. break;
  3242. }
  3243. #ifdef USE_UNICODE
  3244. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3245. break;
  3246. #endif
  3247. case 0x2022:
  3248. if (w > WCHAR_MAX || !iswprint(w))
  3249. w = '*';
  3250. default:
  3251. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3252. {
  3253. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3254. if (iswprint(REPLACEMENT_CHAR))
  3255. w = REPLACEMENT_CHAR;
  3256. else
  3257. #endif
  3258. w = '?';
  3259. }
  3260. {
  3261. #ifdef USE_UNICODE
  3262. wchar_t wbuf[0x10];
  3263. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3264. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3265. waddnwstr(win, wbuf, wbuflen);
  3266. #else
  3267. wprintw(win, "%lc", (wint_t)w);
  3268. #endif
  3269. }
  3270. }
  3271. }
  3272. }
  3273. static inline
  3274. void bfg_hline(WINDOW *win, int y)
  3275. {
  3276. int maxx, __maybe_unused maxy;
  3277. getmaxyx(win, maxy, maxx);
  3278. #ifdef USE_UNICODE
  3279. if (use_unicode)
  3280. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3281. else
  3282. #endif
  3283. mvwhline(win, y, 0, '-', maxx);
  3284. }
  3285. // Spaces until end of line, using current attributes (ie, not completely clear)
  3286. static
  3287. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3288. {
  3289. int x, maxx;
  3290. int __maybe_unused y;
  3291. getmaxyx(win, y, maxx);
  3292. getyx(win, y, x);
  3293. const int space_count = (maxx - x) - offset;
  3294. // Check for negative - terminal too narrow
  3295. if (space_count <= 0)
  3296. return;
  3297. char buf[space_count];
  3298. memset(buf, ' ', space_count);
  3299. waddnstr(win, buf, space_count);
  3300. }
  3301. static int menu_attr = A_REVERSE;
  3302. #define CURBUFSIZ 256
  3303. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3304. char tmp42[CURBUFSIZ]; \
  3305. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3306. wmove(win, y, x); \
  3307. bfg_waddstr(win, tmp42); \
  3308. } while (0)
  3309. #define cg_wprintw(win, fmt, ...) do { \
  3310. char tmp42[CURBUFSIZ]; \
  3311. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3312. bfg_waddstr(win, tmp42); \
  3313. } while (0)
  3314. /* Must be called with curses mutex lock held and curses_active */
  3315. static void curses_print_status(const int ts)
  3316. {
  3317. struct pool *pool = currentpool;
  3318. struct timeval now, tv;
  3319. float efficiency;
  3320. double income;
  3321. int logdiv;
  3322. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3323. wattron(statuswin, attr_title);
  3324. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3325. timer_set_now(&now);
  3326. {
  3327. unsigned int days, hours;
  3328. div_t d;
  3329. timersub(&now, &miner_started, &tv);
  3330. d = div(tv.tv_sec, 86400);
  3331. days = d.quot;
  3332. d = div(d.rem, 3600);
  3333. hours = d.quot;
  3334. d = div(d.rem, 60);
  3335. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3336. , days
  3337. , (days == 1) ? ' ' : 's'
  3338. , hours
  3339. , d.quot
  3340. , d.rem
  3341. );
  3342. }
  3343. bfg_wspctoeol(statuswin, 0);
  3344. wattroff(statuswin, attr_title);
  3345. wattron(statuswin, menu_attr);
  3346. wmove(statuswin, 1, 0);
  3347. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3348. bfg_wspctoeol(statuswin, 14);
  3349. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3350. wattroff(statuswin, menu_attr);
  3351. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3352. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3353. have_longpoll ? "": "out");
  3354. } else if (pool->has_stratum) {
  3355. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3356. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3357. } else {
  3358. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3359. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3360. }
  3361. wclrtoeol(statuswin);
  3362. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3363. current_hash, block_diff, net_hashrate, blocktime);
  3364. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3365. char bwstr[12], incomestr[13];
  3366. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3367. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3368. ts,
  3369. total_go + total_ro,
  3370. new_blocks,
  3371. total_submitting,
  3372. multi_format_unit2(bwstr, sizeof(bwstr),
  3373. false, "B/s", H2B_SHORT, "/", 2,
  3374. (float)(total_bytes_rcvd / total_secs),
  3375. (float)(total_bytes_sent / total_secs)),
  3376. efficiency,
  3377. incomestr,
  3378. best_share);
  3379. wclrtoeol(statuswin);
  3380. mvwaddstr(statuswin, 5, 0, " ");
  3381. bfg_waddstr(statuswin, statusline);
  3382. wclrtoeol(statuswin);
  3383. logdiv = statusy - 1;
  3384. bfg_hline(statuswin, 6);
  3385. bfg_hline(statuswin, logdiv);
  3386. #ifdef USE_UNICODE
  3387. if (use_unicode)
  3388. {
  3389. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3390. if (opt_show_procs && !opt_compact)
  3391. ++offset; // proc letter
  3392. if (have_unicode_degrees)
  3393. ++offset; // degrees symbol
  3394. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3395. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3396. offset += 24; // hashrates etc
  3397. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3398. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3399. }
  3400. #endif
  3401. }
  3402. static void adj_width(int var, int *length)
  3403. {
  3404. if ((int)(log10(var) + 1) > *length)
  3405. (*length)++;
  3406. }
  3407. static int dev_width;
  3408. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3409. {
  3410. char logline[256];
  3411. int ypos;
  3412. if (opt_compact)
  3413. return;
  3414. /* Check this isn't out of the window size */
  3415. if (opt_show_procs)
  3416. ypos = cgpu->cgminer_id;
  3417. else
  3418. {
  3419. if (cgpu->proc_id)
  3420. return;
  3421. ypos = cgpu->device_line_id;
  3422. }
  3423. ypos += devsummaryYOffset;
  3424. if (ypos < 0)
  3425. return;
  3426. ypos += devcursor - 1;
  3427. if (ypos >= statusy - 1)
  3428. return;
  3429. if (wmove(statuswin, ypos, 0) == ERR)
  3430. return;
  3431. get_statline2(logline, sizeof(logline), cgpu, true);
  3432. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3433. wattron(statuswin, A_REVERSE);
  3434. bfg_waddstr(statuswin, logline);
  3435. wattroff(statuswin, A_REVERSE);
  3436. wclrtoeol(statuswin);
  3437. }
  3438. static
  3439. void _refresh_devstatus(const bool already_have_lock) {
  3440. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3441. int i;
  3442. if (unlikely(!total_devices))
  3443. {
  3444. const int ypos = devcursor - 1;
  3445. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3446. {
  3447. wattron(statuswin, attr_bad);
  3448. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3449. wclrtoeol(statuswin);
  3450. wattroff(statuswin, attr_bad);
  3451. }
  3452. }
  3453. for (i = 0; i < total_devices; i++)
  3454. curses_print_devstatus(get_devices(i));
  3455. touchwin(statuswin);
  3456. wrefresh(statuswin);
  3457. if (!already_have_lock)
  3458. unlock_curses();
  3459. }
  3460. }
  3461. #define refresh_devstatus() _refresh_devstatus(false)
  3462. #endif
  3463. static void print_status(int thr_id)
  3464. {
  3465. if (!curses_active)
  3466. text_print_status(thr_id);
  3467. }
  3468. #ifdef HAVE_CURSES
  3469. static
  3470. bool set_statusy(int maxy)
  3471. {
  3472. if (loginput_size)
  3473. {
  3474. maxy -= loginput_size;
  3475. if (maxy < 0)
  3476. maxy = 0;
  3477. }
  3478. if (logstart < maxy)
  3479. maxy = logstart;
  3480. if (statusy == maxy)
  3481. return false;
  3482. statusy = maxy;
  3483. logcursor = statusy;
  3484. return true;
  3485. }
  3486. /* Check for window resize. Called with curses mutex locked */
  3487. static inline void change_logwinsize(void)
  3488. {
  3489. int x, y, logx, logy;
  3490. getmaxyx(mainwin, y, x);
  3491. if (x < 80 || y < 25)
  3492. return;
  3493. if (y > statusy + 2 && statusy < logstart) {
  3494. set_statusy(y - 2);
  3495. mvwin(logwin, logcursor, 0);
  3496. bfg_wresize(statuswin, statusy, x);
  3497. }
  3498. y -= logcursor;
  3499. getmaxyx(logwin, logy, logx);
  3500. /* Detect screen size change */
  3501. if (x != logx || y != logy)
  3502. bfg_wresize(logwin, y, x);
  3503. }
  3504. static void check_winsizes(void)
  3505. {
  3506. if (!use_curses)
  3507. return;
  3508. if (curses_active_locked()) {
  3509. int y, x;
  3510. x = getmaxx(statuswin);
  3511. if (set_statusy(LINES - 2))
  3512. {
  3513. erase();
  3514. bfg_wresize(statuswin, statusy, x);
  3515. getmaxyx(mainwin, y, x);
  3516. y -= logcursor;
  3517. bfg_wresize(logwin, y, x);
  3518. mvwin(logwin, logcursor, 0);
  3519. }
  3520. unlock_curses();
  3521. }
  3522. }
  3523. static int device_line_id_count;
  3524. static void switch_logsize(void)
  3525. {
  3526. if (curses_active_locked()) {
  3527. if (opt_compact) {
  3528. logstart = devcursor - 1;
  3529. logcursor = logstart + 1;
  3530. } else {
  3531. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3532. logstart = devcursor + total_lines;
  3533. logcursor = logstart;
  3534. }
  3535. unlock_curses();
  3536. }
  3537. check_winsizes();
  3538. }
  3539. /* For mandatory printing when mutex is already locked */
  3540. void _wlog(const char *str)
  3541. {
  3542. static bool newline;
  3543. size_t end = strlen(str) - 1;
  3544. if (newline)
  3545. bfg_waddstr(logwin, "\n");
  3546. if (str[end] == '\n')
  3547. {
  3548. char *s;
  3549. newline = true;
  3550. s = alloca(end + 1);
  3551. memcpy(s, str, end);
  3552. s[end] = '\0';
  3553. str = s;
  3554. }
  3555. else
  3556. newline = false;
  3557. bfg_waddstr(logwin, str);
  3558. }
  3559. /* Mandatory printing */
  3560. void _wlogprint(const char *str)
  3561. {
  3562. if (curses_active_locked()) {
  3563. _wlog(str);
  3564. unlock_curses();
  3565. }
  3566. }
  3567. #endif
  3568. #ifdef HAVE_CURSES
  3569. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3570. {
  3571. bool high_prio;
  3572. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3573. if (curses_active)
  3574. {
  3575. if (!loginput_size || high_prio) {
  3576. wlog(" %s %s\n", datetime, str);
  3577. if (high_prio) {
  3578. touchwin(logwin);
  3579. wrefresh(logwin);
  3580. }
  3581. }
  3582. return true;
  3583. }
  3584. return false;
  3585. }
  3586. void clear_logwin(void)
  3587. {
  3588. if (curses_active_locked()) {
  3589. wclear(logwin);
  3590. unlock_curses();
  3591. }
  3592. }
  3593. void logwin_update(void)
  3594. {
  3595. if (curses_active_locked()) {
  3596. touchwin(logwin);
  3597. wrefresh(logwin);
  3598. unlock_curses();
  3599. }
  3600. }
  3601. #endif
  3602. static void enable_pool(struct pool *pool)
  3603. {
  3604. if (pool->enabled != POOL_ENABLED) {
  3605. enabled_pools++;
  3606. pool->enabled = POOL_ENABLED;
  3607. }
  3608. }
  3609. #ifdef HAVE_CURSES
  3610. static void disable_pool(struct pool *pool)
  3611. {
  3612. if (pool->enabled == POOL_ENABLED)
  3613. enabled_pools--;
  3614. pool->enabled = POOL_DISABLED;
  3615. }
  3616. #endif
  3617. static void reject_pool(struct pool *pool)
  3618. {
  3619. if (pool->enabled == POOL_ENABLED)
  3620. enabled_pools--;
  3621. pool->enabled = POOL_REJECTING;
  3622. }
  3623. static uint64_t share_diff(const struct work *);
  3624. static
  3625. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3626. struct cgpu_info *cgpu;
  3627. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3628. char shrdiffdisp[16];
  3629. int tgtdiff = floor(work->work_difficulty);
  3630. char tgtdiffdisp[16];
  3631. char where[20];
  3632. cgpu = get_thr_cgpu(work->thr_id);
  3633. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3634. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3635. if (total_pools > 1)
  3636. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3637. else
  3638. where[0] = '\0';
  3639. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3640. disp,
  3641. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3642. cgpu->proc_repr,
  3643. where,
  3644. shrdiffdisp, tgtdiffdisp,
  3645. reason,
  3646. resubmit ? "(resubmit)" : "",
  3647. worktime
  3648. );
  3649. }
  3650. static bool test_work_current(struct work *);
  3651. static void _submit_work_async(struct work *);
  3652. static
  3653. void maybe_local_submit(const struct work *work)
  3654. {
  3655. #if BLKMAKER_VERSION > 3
  3656. if (unlikely(work->block && work->tmpl))
  3657. {
  3658. // This is a block with a full template (GBT)
  3659. // Regardless of the result, submit to local bitcoind(s) as well
  3660. struct work *work_cp;
  3661. char *p;
  3662. for (int i = 0; i < total_pools; ++i)
  3663. {
  3664. p = strchr(pools[i]->rpc_url, '#');
  3665. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3666. continue;
  3667. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3668. work_cp = copy_work(work);
  3669. work_cp->pool = pools[i];
  3670. work_cp->do_foreign_submit = true;
  3671. _submit_work_async(work_cp);
  3672. }
  3673. }
  3674. #endif
  3675. }
  3676. /* Theoretically threads could race when modifying accepted and
  3677. * rejected values but the chance of two submits completing at the
  3678. * same time is zero so there is no point adding extra locking */
  3679. static void
  3680. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3681. /*char *hashshow,*/ bool resubmit, char *worktime)
  3682. {
  3683. struct pool *pool = work->pool;
  3684. struct cgpu_info *cgpu;
  3685. cgpu = get_thr_cgpu(work->thr_id);
  3686. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3687. mutex_lock(&stats_lock);
  3688. cgpu->accepted++;
  3689. total_accepted++;
  3690. pool->accepted++;
  3691. cgpu->diff_accepted += work->work_difficulty;
  3692. total_diff_accepted += work->work_difficulty;
  3693. pool->diff_accepted += work->work_difficulty;
  3694. mutex_unlock(&stats_lock);
  3695. pool->seq_rejects = 0;
  3696. cgpu->last_share_pool = pool->pool_no;
  3697. cgpu->last_share_pool_time = time(NULL);
  3698. cgpu->last_share_diff = work->work_difficulty;
  3699. pool->last_share_time = cgpu->last_share_pool_time;
  3700. pool->last_share_diff = work->work_difficulty;
  3701. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3702. if (!QUIET) {
  3703. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3704. }
  3705. sharelog("accept", work);
  3706. if (opt_shares && total_diff_accepted >= opt_shares) {
  3707. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  3708. kill_work();
  3709. return;
  3710. }
  3711. /* Detect if a pool that has been temporarily disabled for
  3712. * continually rejecting shares has started accepting shares.
  3713. * This will only happen with the work returned from a
  3714. * longpoll */
  3715. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3716. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3717. enable_pool(pool);
  3718. switch_pools(NULL);
  3719. }
  3720. if (unlikely(work->block)) {
  3721. // Force moving on to this new block :)
  3722. struct work fakework;
  3723. memset(&fakework, 0, sizeof(fakework));
  3724. fakework.pool = work->pool;
  3725. // Copy block version, bits, and time from share
  3726. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3727. memcpy(&fakework.data[68], &work->data[68], 8);
  3728. // Set prevblock to winning hash (swap32'd)
  3729. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3730. test_work_current(&fakework);
  3731. }
  3732. } else {
  3733. mutex_lock(&stats_lock);
  3734. cgpu->rejected++;
  3735. total_rejected++;
  3736. pool->rejected++;
  3737. cgpu->diff_rejected += work->work_difficulty;
  3738. total_diff_rejected += work->work_difficulty;
  3739. pool->diff_rejected += work->work_difficulty;
  3740. pool->seq_rejects++;
  3741. mutex_unlock(&stats_lock);
  3742. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3743. if (!QUIET) {
  3744. char where[20];
  3745. char disposition[36] = "reject";
  3746. char reason[32];
  3747. strcpy(reason, "");
  3748. if (total_pools > 1)
  3749. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3750. else
  3751. strcpy(where, "");
  3752. if (!json_is_string(res))
  3753. res = json_object_get(val, "reject-reason");
  3754. if (res) {
  3755. const char *reasontmp = json_string_value(res);
  3756. size_t reasonLen = strlen(reasontmp);
  3757. if (reasonLen > 28)
  3758. reasonLen = 28;
  3759. reason[0] = ' '; reason[1] = '(';
  3760. memcpy(2 + reason, reasontmp, reasonLen);
  3761. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3762. memcpy(disposition + 7, reasontmp, reasonLen);
  3763. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3764. } else if (work->stratum && err && json_is_array(err)) {
  3765. json_t *reason_val = json_array_get(err, 1);
  3766. char *reason_str;
  3767. if (reason_val && json_is_string(reason_val)) {
  3768. reason_str = (char *)json_string_value(reason_val);
  3769. snprintf(reason, 31, " (%s)", reason_str);
  3770. }
  3771. }
  3772. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3773. sharelog(disposition, work);
  3774. }
  3775. /* Once we have more than a nominal amount of sequential rejects,
  3776. * at least 10 and more than 3 mins at the current utility,
  3777. * disable the pool because some pool error is likely to have
  3778. * ensued. Do not do this if we know the share just happened to
  3779. * be stale due to networking delays.
  3780. */
  3781. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3782. double utility = total_accepted / total_secs * 60;
  3783. if (pool->seq_rejects > utility * 3) {
  3784. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3785. pool->pool_no, pool->seq_rejects);
  3786. reject_pool(pool);
  3787. if (pool == current_pool())
  3788. switch_pools(NULL);
  3789. pool->seq_rejects = 0;
  3790. }
  3791. }
  3792. }
  3793. maybe_local_submit(work);
  3794. }
  3795. static char *submit_upstream_work_request(struct work *work)
  3796. {
  3797. char *hexstr = NULL;
  3798. char *s, *sd;
  3799. struct pool *pool = work->pool;
  3800. if (work->tmpl) {
  3801. json_t *req;
  3802. unsigned char data[80];
  3803. swap32yes(data, work->data, 80 / 4);
  3804. #if BLKMAKER_VERSION > 3
  3805. if (work->do_foreign_submit)
  3806. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3807. else
  3808. #endif
  3809. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3810. s = json_dumps(req, 0);
  3811. json_decref(req);
  3812. sd = malloc(161);
  3813. bin2hex(sd, data, 80);
  3814. } else {
  3815. /* build hex string */
  3816. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3817. bin2hex(hexstr, work->data, sizeof(work->data));
  3818. /* build JSON-RPC request */
  3819. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3820. s = realloc_strcat(s, hexstr);
  3821. s = realloc_strcat(s, "\" ], \"id\":1}");
  3822. free(hexstr);
  3823. sd = s;
  3824. }
  3825. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3826. if (work->tmpl)
  3827. free(sd);
  3828. else
  3829. s = realloc_strcat(s, "\n");
  3830. return s;
  3831. }
  3832. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3833. json_t *res, *err;
  3834. bool rc = false;
  3835. int thr_id = work->thr_id;
  3836. struct pool *pool = work->pool;
  3837. struct timeval tv_submit_reply;
  3838. time_t ts_submit_reply;
  3839. char worktime[200] = "";
  3840. cgtime(&tv_submit_reply);
  3841. ts_submit_reply = time(NULL);
  3842. if (unlikely(!val)) {
  3843. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3844. if (!pool_tset(pool, &pool->submit_fail)) {
  3845. total_ro++;
  3846. pool->remotefail_occasions++;
  3847. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3848. }
  3849. goto out;
  3850. } else if (pool_tclear(pool, &pool->submit_fail))
  3851. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3852. res = json_object_get(val, "result");
  3853. err = json_object_get(val, "error");
  3854. if (!QUIET) {
  3855. if (opt_worktime) {
  3856. char workclone[20];
  3857. struct tm _tm;
  3858. struct tm *tm, tm_getwork, tm_submit_reply;
  3859. tm = &_tm;
  3860. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3861. (struct timeval *)&(work->tv_getwork));
  3862. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3863. (struct timeval *)&(work->tv_getwork_reply));
  3864. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3865. (struct timeval *)&(work->tv_work_start));
  3866. double work_to_submit = tdiff(ptv_submit,
  3867. (struct timeval *)&(work->tv_work_found));
  3868. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3869. int diffplaces = 3;
  3870. localtime_r(&work->ts_getwork, tm);
  3871. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3872. localtime_r(&ts_submit_reply, tm);
  3873. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3874. if (work->clone) {
  3875. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3876. tdiff((struct timeval *)&(work->tv_cloned),
  3877. (struct timeval *)&(work->tv_getwork_reply)));
  3878. }
  3879. else
  3880. strcpy(workclone, "O");
  3881. if (work->work_difficulty < 1)
  3882. diffplaces = 6;
  3883. snprintf(worktime, sizeof(worktime),
  3884. " <-%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",
  3885. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3886. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3887. work->getwork_mode, diffplaces, work->work_difficulty,
  3888. tm_getwork.tm_hour, tm_getwork.tm_min,
  3889. tm_getwork.tm_sec, getwork_time, workclone,
  3890. getwork_to_work, work_time, work_to_submit, submit_time,
  3891. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3892. tm_submit_reply.tm_sec);
  3893. }
  3894. }
  3895. share_result(val, res, err, work, resubmit, worktime);
  3896. if (!opt_realquiet)
  3897. print_status(thr_id);
  3898. if (!want_per_device_stats) {
  3899. char logline[256];
  3900. struct cgpu_info *cgpu;
  3901. cgpu = get_thr_cgpu(thr_id);
  3902. get_statline(logline, sizeof(logline), cgpu);
  3903. applog(LOG_INFO, "%s", logline);
  3904. }
  3905. json_decref(val);
  3906. rc = true;
  3907. out:
  3908. return rc;
  3909. }
  3910. /* Specifies whether we can use this pool for work or not. */
  3911. static bool pool_unworkable(struct pool *pool)
  3912. {
  3913. if (pool->idle)
  3914. return true;
  3915. if (pool->enabled != POOL_ENABLED)
  3916. return true;
  3917. if (pool->has_stratum && !pool->stratum_active)
  3918. return true;
  3919. return false;
  3920. }
  3921. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3922. * rolling average per 10 minutes and if pools start getting more, it biases
  3923. * away from them to distribute work evenly. The share count is reset to the
  3924. * rolling average every 10 minutes to not send all work to one pool after it
  3925. * has been disabled/out for an extended period. */
  3926. static struct pool *select_balanced(struct pool *cp)
  3927. {
  3928. int i, lowest = cp->shares;
  3929. struct pool *ret = cp;
  3930. for (i = 0; i < total_pools; i++) {
  3931. struct pool *pool = pools[i];
  3932. if (pool_unworkable(pool))
  3933. continue;
  3934. if (pool->shares < lowest) {
  3935. lowest = pool->shares;
  3936. ret = pool;
  3937. }
  3938. }
  3939. ret->shares++;
  3940. return ret;
  3941. }
  3942. static bool pool_active(struct pool *, bool pinging);
  3943. static void pool_died(struct pool *);
  3944. static struct pool *priority_pool(int choice);
  3945. static bool pool_unusable(struct pool *pool);
  3946. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3947. * it has any quota left. */
  3948. static inline struct pool *select_pool(bool lagging)
  3949. {
  3950. static int rotating_pool = 0;
  3951. struct pool *pool, *cp;
  3952. bool avail = false;
  3953. int tested, i;
  3954. cp = current_pool();
  3955. retry:
  3956. if (pool_strategy == POOL_BALANCE) {
  3957. pool = select_balanced(cp);
  3958. goto out;
  3959. }
  3960. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3961. pool = cp;
  3962. goto out;
  3963. } else
  3964. pool = NULL;
  3965. for (i = 0; i < total_pools; i++) {
  3966. struct pool *tp = pools[i];
  3967. if (tp->quota_used < tp->quota_gcd) {
  3968. avail = true;
  3969. break;
  3970. }
  3971. }
  3972. /* There are no pools with quota, so reset them. */
  3973. if (!avail) {
  3974. for (i = 0; i < total_pools; i++)
  3975. pools[i]->quota_used = 0;
  3976. if (++rotating_pool >= total_pools)
  3977. rotating_pool = 0;
  3978. }
  3979. /* Try to find the first pool in the rotation that is usable */
  3980. tested = 0;
  3981. while (!pool && tested++ < total_pools) {
  3982. pool = pools[rotating_pool];
  3983. if (pool->quota_used++ < pool->quota_gcd) {
  3984. if (!pool_unworkable(pool))
  3985. break;
  3986. /* Failover-only flag for load-balance means distribute
  3987. * unused quota to priority pool 0. */
  3988. if (opt_fail_only)
  3989. priority_pool(0)->quota_used--;
  3990. }
  3991. pool = NULL;
  3992. if (++rotating_pool >= total_pools)
  3993. rotating_pool = 0;
  3994. }
  3995. /* If there are no alive pools with quota, choose according to
  3996. * priority. */
  3997. if (!pool) {
  3998. for (i = 0; i < total_pools; i++) {
  3999. struct pool *tp = priority_pool(i);
  4000. if (!pool_unusable(tp)) {
  4001. pool = tp;
  4002. break;
  4003. }
  4004. }
  4005. }
  4006. /* If still nothing is usable, use the current pool */
  4007. if (!pool)
  4008. pool = cp;
  4009. out:
  4010. if (cp != pool)
  4011. {
  4012. if (!pool_active(pool, false))
  4013. {
  4014. pool_died(pool);
  4015. goto retry;
  4016. }
  4017. pool_tclear(pool, &pool->idle);
  4018. }
  4019. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4020. return pool;
  4021. }
  4022. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4023. static const uint64_t diffone = 0xFFFF000000000000ull;
  4024. static double target_diff(const unsigned char *target)
  4025. {
  4026. double targ = 0;
  4027. signed int i;
  4028. for (i = 31; i >= 0; --i)
  4029. targ = (targ * 0x100) + target[i];
  4030. return DIFFEXACTONE / (targ ?: 1);
  4031. }
  4032. /*
  4033. * Calculate the work share difficulty
  4034. */
  4035. static void calc_diff(struct work *work, int known)
  4036. {
  4037. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4038. double difficulty;
  4039. if (!known) {
  4040. work->work_difficulty = target_diff(work->target);
  4041. } else
  4042. work->work_difficulty = known;
  4043. difficulty = work->work_difficulty;
  4044. pool_stats->last_diff = difficulty;
  4045. suffix_string((uint64_t)difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4046. if (difficulty == pool_stats->min_diff)
  4047. pool_stats->min_diff_count++;
  4048. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4049. pool_stats->min_diff = difficulty;
  4050. pool_stats->min_diff_count = 1;
  4051. }
  4052. if (difficulty == pool_stats->max_diff)
  4053. pool_stats->max_diff_count++;
  4054. else if (difficulty > pool_stats->max_diff) {
  4055. pool_stats->max_diff = difficulty;
  4056. pool_stats->max_diff_count = 1;
  4057. }
  4058. }
  4059. static void get_benchmark_work(struct work *work)
  4060. {
  4061. // Use a random work block pulled from a pool
  4062. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  4063. size_t bench_size = sizeof(*work);
  4064. size_t work_size = sizeof(bench_block);
  4065. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  4066. memset(work, 0, sizeof(*work));
  4067. memcpy(work, &bench_block, min_size);
  4068. work->mandatory = true;
  4069. work->pool = pools[0];
  4070. cgtime(&work->tv_getwork);
  4071. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4072. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4073. calc_diff(work, 0);
  4074. }
  4075. static void wake_gws(void);
  4076. static void update_last_work(struct work *work)
  4077. {
  4078. if (!work->tmpl)
  4079. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4080. return;
  4081. struct pool *pool = work->pool;
  4082. mutex_lock(&pool->last_work_lock);
  4083. if (pool->last_work_copy)
  4084. free_work(pool->last_work_copy);
  4085. pool->last_work_copy = copy_work(work);
  4086. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4087. mutex_unlock(&pool->last_work_lock);
  4088. }
  4089. static
  4090. void gbt_req_target(json_t *req)
  4091. {
  4092. json_t *j;
  4093. json_t *n;
  4094. if (!request_target_str)
  4095. return;
  4096. j = json_object_get(req, "params");
  4097. if (!j)
  4098. {
  4099. n = json_array();
  4100. if (!n)
  4101. return;
  4102. if (json_object_set_new(req, "params", n))
  4103. goto erradd;
  4104. j = n;
  4105. }
  4106. n = json_array_get(j, 0);
  4107. if (!n)
  4108. {
  4109. n = json_object();
  4110. if (!n)
  4111. return;
  4112. if (json_array_append_new(j, n))
  4113. goto erradd;
  4114. }
  4115. j = n;
  4116. n = json_string(request_target_str);
  4117. if (!n)
  4118. return;
  4119. if (json_object_set_new(j, "target", n))
  4120. goto erradd;
  4121. return;
  4122. erradd:
  4123. json_decref(n);
  4124. }
  4125. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4126. {
  4127. char *rpc_req;
  4128. clean_work(work);
  4129. switch (proto) {
  4130. case PLP_GETWORK:
  4131. work->getwork_mode = GETWORK_MODE_POOL;
  4132. return strdup(getwork_req);
  4133. case PLP_GETBLOCKTEMPLATE:
  4134. work->getwork_mode = GETWORK_MODE_GBT;
  4135. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4136. if (!work->tmpl_refcount)
  4137. return NULL;
  4138. work->tmpl = blktmpl_create();
  4139. if (!work->tmpl)
  4140. goto gbtfail2;
  4141. *work->tmpl_refcount = 1;
  4142. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4143. if (!caps)
  4144. goto gbtfail;
  4145. caps |= GBT_LONGPOLL;
  4146. #if BLKMAKER_VERSION > 1
  4147. if (opt_coinbase_script.sz)
  4148. caps |= GBT_CBVALUE;
  4149. #endif
  4150. json_t *req = blktmpl_request_jansson(caps, lpid);
  4151. if (!req)
  4152. goto gbtfail;
  4153. if (probe)
  4154. gbt_req_target(req);
  4155. rpc_req = json_dumps(req, 0);
  4156. if (!rpc_req)
  4157. goto gbtfail;
  4158. json_decref(req);
  4159. return rpc_req;
  4160. default:
  4161. return NULL;
  4162. }
  4163. return NULL;
  4164. gbtfail:
  4165. blktmpl_free(work->tmpl);
  4166. work->tmpl = NULL;
  4167. gbtfail2:
  4168. free(work->tmpl_refcount);
  4169. work->tmpl_refcount = NULL;
  4170. return NULL;
  4171. }
  4172. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4173. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4174. static const char *pool_protocol_name(enum pool_protocol proto)
  4175. {
  4176. switch (proto) {
  4177. case PLP_GETBLOCKTEMPLATE:
  4178. return "getblocktemplate";
  4179. case PLP_GETWORK:
  4180. return "getwork";
  4181. default:
  4182. return "UNKNOWN";
  4183. }
  4184. }
  4185. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4186. {
  4187. switch (proto) {
  4188. case PLP_GETBLOCKTEMPLATE:
  4189. if (want_getwork)
  4190. return PLP_GETWORK;
  4191. default:
  4192. return PLP_NONE;
  4193. }
  4194. }
  4195. static bool get_upstream_work(struct work *work, CURL *curl)
  4196. {
  4197. struct pool *pool = work->pool;
  4198. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4199. struct timeval tv_elapsed;
  4200. json_t *val = NULL;
  4201. bool rc = false;
  4202. char *url;
  4203. enum pool_protocol proto;
  4204. char *rpc_req;
  4205. if (pool->proto == PLP_NONE)
  4206. pool->proto = PLP_GETBLOCKTEMPLATE;
  4207. tryagain:
  4208. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4209. work->pool = pool;
  4210. if (!rpc_req)
  4211. return false;
  4212. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4213. url = pool->rpc_url;
  4214. cgtime(&work->tv_getwork);
  4215. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4216. false, &work->rolltime, pool, false);
  4217. pool_stats->getwork_attempts++;
  4218. free(rpc_req);
  4219. if (likely(val)) {
  4220. rc = work_decode(pool, work, val);
  4221. if (unlikely(!rc))
  4222. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4223. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4224. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4225. pool->proto = proto;
  4226. goto tryagain;
  4227. } else
  4228. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4229. cgtime(&work->tv_getwork_reply);
  4230. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4231. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4232. pool_stats->getwork_wait_rolling /= 1.63;
  4233. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4234. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4235. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4236. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4237. }
  4238. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4239. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4240. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4241. }
  4242. pool_stats->getwork_calls++;
  4243. work->pool = pool;
  4244. work->longpoll = false;
  4245. calc_diff(work, 0);
  4246. total_getworks++;
  4247. pool->getwork_requested++;
  4248. if (rc)
  4249. update_last_work(work);
  4250. if (likely(val))
  4251. json_decref(val);
  4252. return rc;
  4253. }
  4254. #ifdef HAVE_CURSES
  4255. static void disable_curses(void)
  4256. {
  4257. if (curses_active_locked()) {
  4258. use_curses = false;
  4259. curses_active = false;
  4260. leaveok(logwin, false);
  4261. leaveok(statuswin, false);
  4262. leaveok(mainwin, false);
  4263. nocbreak();
  4264. echo();
  4265. delwin(logwin);
  4266. delwin(statuswin);
  4267. delwin(mainwin);
  4268. endwin();
  4269. #ifdef WIN32
  4270. // Move the cursor to after curses output.
  4271. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4272. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4273. COORD coord;
  4274. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4275. coord.X = 0;
  4276. coord.Y = csbi.dwSize.Y - 1;
  4277. SetConsoleCursorPosition(hout, coord);
  4278. }
  4279. #endif
  4280. unlock_curses();
  4281. }
  4282. }
  4283. #endif
  4284. static void __kill_work(void)
  4285. {
  4286. struct cgpu_info *cgpu;
  4287. struct thr_info *thr;
  4288. int i;
  4289. if (!successful_connect)
  4290. return;
  4291. applog(LOG_INFO, "Received kill message");
  4292. shutting_down = true;
  4293. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4294. notifier_wake(submit_waiting_notifier);
  4295. #ifdef USE_LIBMICROHTTPD
  4296. httpsrv_stop();
  4297. #endif
  4298. applog(LOG_DEBUG, "Killing off watchpool thread");
  4299. /* Kill the watchpool thread */
  4300. thr = &control_thr[watchpool_thr_id];
  4301. thr_info_cancel(thr);
  4302. applog(LOG_DEBUG, "Killing off watchdog thread");
  4303. /* Kill the watchdog thread */
  4304. thr = &control_thr[watchdog_thr_id];
  4305. thr_info_cancel(thr);
  4306. applog(LOG_DEBUG, "Shutting down mining threads");
  4307. for (i = 0; i < mining_threads; i++) {
  4308. thr = get_thread(i);
  4309. if (!thr)
  4310. continue;
  4311. cgpu = thr->cgpu;
  4312. if (!cgpu)
  4313. continue;
  4314. if (!cgpu->threads)
  4315. continue;
  4316. cgpu->shutdown = true;
  4317. thr->work_restart = true;
  4318. notifier_wake(thr->notifier);
  4319. notifier_wake(thr->work_restart_notifier);
  4320. }
  4321. sleep(1);
  4322. applog(LOG_DEBUG, "Killing off mining threads");
  4323. /* Kill the mining threads*/
  4324. for (i = 0; i < mining_threads; i++) {
  4325. thr = get_thread(i);
  4326. if (!thr)
  4327. continue;
  4328. cgpu = thr->cgpu;
  4329. if (cgpu->threads)
  4330. {
  4331. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4332. thr_info_cancel(thr);
  4333. }
  4334. cgpu->status = LIFE_DEAD2;
  4335. }
  4336. /* Stop the others */
  4337. applog(LOG_DEBUG, "Killing off API thread");
  4338. thr = &control_thr[api_thr_id];
  4339. thr_info_cancel(thr);
  4340. }
  4341. /* This should be the common exit path */
  4342. void kill_work(void)
  4343. {
  4344. __kill_work();
  4345. quit(0, "Shutdown signal received.");
  4346. }
  4347. static
  4348. #ifdef WIN32
  4349. #ifndef _WIN64
  4350. const
  4351. #endif
  4352. #endif
  4353. char **initial_args;
  4354. void _bfg_clean_up(bool);
  4355. void app_restart(void)
  4356. {
  4357. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4358. __kill_work();
  4359. _bfg_clean_up(true);
  4360. #if defined(unix) || defined(__APPLE__)
  4361. if (forkpid > 0) {
  4362. kill(forkpid, SIGTERM);
  4363. forkpid = 0;
  4364. }
  4365. #endif
  4366. execv(initial_args[0], initial_args);
  4367. applog(LOG_WARNING, "Failed to restart application");
  4368. }
  4369. static void sighandler(int __maybe_unused sig)
  4370. {
  4371. /* Restore signal handlers so we can still quit if kill_work fails */
  4372. sigaction(SIGTERM, &termhandler, NULL);
  4373. sigaction(SIGINT, &inthandler, NULL);
  4374. kill_work();
  4375. }
  4376. static void start_longpoll(void);
  4377. static void stop_longpoll(void);
  4378. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4379. * this pool. */
  4380. static void recruit_curl(struct pool *pool)
  4381. {
  4382. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4383. if (unlikely(!ce))
  4384. quit(1, "Failed to calloc in recruit_curl");
  4385. ce->curl = curl_easy_init();
  4386. if (unlikely(!ce->curl))
  4387. quit(1, "Failed to init in recruit_curl");
  4388. LL_PREPEND(pool->curllist, ce);
  4389. pool->curls++;
  4390. }
  4391. /* Grab an available curl if there is one. If not, then recruit extra curls
  4392. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4393. * and there are already 5 curls in circulation. Limit total number to the
  4394. * number of mining threads per pool as well to prevent blasting a pool during
  4395. * network delays/outages. */
  4396. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4397. {
  4398. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4399. bool recruited = false;
  4400. struct curl_ent *ce;
  4401. mutex_lock(&pool->pool_lock);
  4402. retry:
  4403. if (!pool->curls) {
  4404. recruit_curl(pool);
  4405. recruited = true;
  4406. } else if (!pool->curllist) {
  4407. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4408. if (!blocking) {
  4409. mutex_unlock(&pool->pool_lock);
  4410. return NULL;
  4411. }
  4412. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4413. goto retry;
  4414. } else {
  4415. recruit_curl(pool);
  4416. recruited = true;
  4417. }
  4418. }
  4419. ce = pool->curllist;
  4420. LL_DELETE(pool->curllist, ce);
  4421. mutex_unlock(&pool->pool_lock);
  4422. if (recruited)
  4423. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4424. return ce;
  4425. }
  4426. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4427. {
  4428. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4429. }
  4430. __maybe_unused
  4431. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4432. {
  4433. return pop_curl_entry3(pool, 1);
  4434. }
  4435. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4436. {
  4437. mutex_lock(&pool->pool_lock);
  4438. if (!ce || !ce->curl)
  4439. quithere(1, "Attempted to add NULL");
  4440. LL_PREPEND(pool->curllist, ce);
  4441. cgtime(&ce->tv);
  4442. pthread_cond_broadcast(&pool->cr_cond);
  4443. mutex_unlock(&pool->pool_lock);
  4444. }
  4445. bool stale_work(struct work *work, bool share);
  4446. static inline bool should_roll(struct work *work)
  4447. {
  4448. struct timeval now;
  4449. time_t expiry;
  4450. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4451. return false;
  4452. if (stale_work(work, false))
  4453. return false;
  4454. if (work->rolltime > opt_scantime)
  4455. expiry = work->rolltime;
  4456. else
  4457. expiry = opt_scantime;
  4458. expiry = expiry * 2 / 3;
  4459. /* We shouldn't roll if we're unlikely to get one shares' duration
  4460. * work out of doing so */
  4461. cgtime(&now);
  4462. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4463. return false;
  4464. return true;
  4465. }
  4466. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4467. * reject blocks as invalid. */
  4468. static inline bool can_roll(struct work *work)
  4469. {
  4470. if (work->stratum)
  4471. return false;
  4472. if (!(work->pool && !work->clone))
  4473. return false;
  4474. if (work->tmpl) {
  4475. if (stale_work(work, false))
  4476. return false;
  4477. return blkmk_work_left(work->tmpl);
  4478. }
  4479. return (work->rolltime &&
  4480. work->rolls < 7000 && !stale_work(work, false));
  4481. }
  4482. static void roll_work(struct work *work)
  4483. {
  4484. if (work->tmpl) {
  4485. struct timeval tv_now;
  4486. cgtime(&tv_now);
  4487. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4488. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4489. swap32yes(work->data, work->data, 80 / 4);
  4490. calc_midstate(work);
  4491. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4492. } else {
  4493. uint32_t *work_ntime;
  4494. uint32_t ntime;
  4495. work_ntime = (uint32_t *)(work->data + 68);
  4496. ntime = be32toh(*work_ntime);
  4497. ntime++;
  4498. *work_ntime = htobe32(ntime);
  4499. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4500. }
  4501. local_work++;
  4502. work->rolls++;
  4503. work->blk.nonce = 0;
  4504. /* This is now a different work item so it needs a different ID for the
  4505. * hashtable */
  4506. work->id = total_work++;
  4507. }
  4508. /* Duplicates any dynamically allocated arrays within the work struct to
  4509. * prevent a copied work struct from freeing ram belonging to another struct */
  4510. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4511. {
  4512. int id = work->id;
  4513. clean_work(work);
  4514. memcpy(work, base_work, sizeof(struct work));
  4515. /* Keep the unique new id assigned during make_work to prevent copied
  4516. * work from having the same id. */
  4517. work->id = id;
  4518. if (base_work->job_id)
  4519. work->job_id = strdup(base_work->job_id);
  4520. if (base_work->nonce1)
  4521. work->nonce1 = strdup(base_work->nonce1);
  4522. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4523. if (base_work->tmpl) {
  4524. struct pool *pool = work->pool;
  4525. mutex_lock(&pool->pool_lock);
  4526. ++*work->tmpl_refcount;
  4527. mutex_unlock(&pool->pool_lock);
  4528. }
  4529. if (noffset)
  4530. {
  4531. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4532. uint32_t ntime = be32toh(*work_ntime);
  4533. ntime += noffset;
  4534. *work_ntime = htobe32(ntime);
  4535. }
  4536. }
  4537. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4538. * for all dynamically allocated arrays within the struct */
  4539. struct work *copy_work(const struct work *base_work)
  4540. {
  4541. struct work *work = make_work();
  4542. _copy_work(work, base_work, 0);
  4543. return work;
  4544. }
  4545. void __copy_work(struct work *work, const struct work *base_work)
  4546. {
  4547. _copy_work(work, base_work, 0);
  4548. }
  4549. static struct work *make_clone(struct work *work)
  4550. {
  4551. struct work *work_clone = copy_work(work);
  4552. work_clone->clone = true;
  4553. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4554. work_clone->longpoll = false;
  4555. work_clone->mandatory = false;
  4556. /* Make cloned work appear slightly older to bias towards keeping the
  4557. * master work item which can be further rolled */
  4558. work_clone->tv_staged.tv_sec -= 1;
  4559. return work_clone;
  4560. }
  4561. static void stage_work(struct work *work);
  4562. static bool clone_available(void)
  4563. {
  4564. struct work *work_clone = NULL, *work, *tmp;
  4565. bool cloned = false;
  4566. mutex_lock(stgd_lock);
  4567. if (!staged_rollable)
  4568. goto out_unlock;
  4569. HASH_ITER(hh, staged_work, work, tmp) {
  4570. if (can_roll(work) && should_roll(work)) {
  4571. roll_work(work);
  4572. work_clone = make_clone(work);
  4573. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4574. roll_work(work);
  4575. cloned = true;
  4576. break;
  4577. }
  4578. }
  4579. out_unlock:
  4580. mutex_unlock(stgd_lock);
  4581. if (cloned) {
  4582. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4583. stage_work(work_clone);
  4584. }
  4585. return cloned;
  4586. }
  4587. static void pool_died(struct pool *pool)
  4588. {
  4589. if (!pool_tset(pool, &pool->idle)) {
  4590. cgtime(&pool->tv_idle);
  4591. if (pool == current_pool()) {
  4592. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4593. switch_pools(NULL);
  4594. } else
  4595. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4596. }
  4597. }
  4598. bool stale_work(struct work *work, bool share)
  4599. {
  4600. unsigned work_expiry;
  4601. struct pool *pool;
  4602. uint32_t block_id;
  4603. unsigned getwork_delay;
  4604. if (opt_benchmark)
  4605. return false;
  4606. block_id = ((uint32_t*)work->data)[1];
  4607. pool = work->pool;
  4608. /* Technically the rolltime should be correct but some pools
  4609. * advertise a broken expire= that is lower than a meaningful
  4610. * scantime */
  4611. if (work->rolltime >= opt_scantime || work->tmpl)
  4612. work_expiry = work->rolltime;
  4613. else
  4614. work_expiry = opt_expiry;
  4615. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4616. if (work_expiry > max_expiry)
  4617. work_expiry = max_expiry;
  4618. if (share) {
  4619. /* If the share isn't on this pool's latest block, it's stale */
  4620. if (pool->block_id && pool->block_id != block_id)
  4621. {
  4622. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4623. return true;
  4624. }
  4625. /* If the pool doesn't want old shares, then any found in work before
  4626. * the most recent longpoll is stale */
  4627. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4628. {
  4629. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4630. return true;
  4631. }
  4632. } else {
  4633. /* If this work isn't for the latest Bitcoin block, it's stale */
  4634. /* But only care about the current pool if failover-only */
  4635. if (enabled_pools <= 1 || opt_fail_only) {
  4636. if (pool->block_id && block_id != pool->block_id)
  4637. {
  4638. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4639. return true;
  4640. }
  4641. } else {
  4642. if (block_id != current_block_id)
  4643. {
  4644. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4645. return true;
  4646. }
  4647. }
  4648. /* If the pool has asked us to restart since this work, it's stale */
  4649. if (work->work_restart_id != pool->work_restart_id)
  4650. {
  4651. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4652. return true;
  4653. }
  4654. if (pool->has_stratum && work->job_id) {
  4655. bool same_job;
  4656. if (!pool->stratum_active || !pool->stratum_notify) {
  4657. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4658. return true;
  4659. }
  4660. same_job = true;
  4661. cg_rlock(&pool->data_lock);
  4662. if (strcmp(work->job_id, pool->swork.job_id))
  4663. same_job = false;
  4664. cg_runlock(&pool->data_lock);
  4665. if (!same_job) {
  4666. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4667. return true;
  4668. }
  4669. }
  4670. /* Factor in the average getwork delay of this pool, rounding it up to
  4671. * the nearest second */
  4672. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4673. if (unlikely(work_expiry <= getwork_delay + 5))
  4674. work_expiry = 5;
  4675. else
  4676. work_expiry -= getwork_delay;
  4677. }
  4678. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4679. if (elapsed_since_staged > work_expiry) {
  4680. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4681. return true;
  4682. }
  4683. /* If the user only wants strict failover, any work from a pool other than
  4684. * the current one is always considered stale */
  4685. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4686. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4687. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4688. return true;
  4689. }
  4690. return false;
  4691. }
  4692. static uint64_t share_diff(const struct work *work)
  4693. {
  4694. uint64_t ret;
  4695. bool new_best = false;
  4696. ret = target_diff(work->hash);
  4697. cg_wlock(&control_lock);
  4698. if (unlikely(ret > best_diff)) {
  4699. new_best = true;
  4700. best_diff = ret;
  4701. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4702. }
  4703. if (unlikely(ret > work->pool->best_diff))
  4704. work->pool->best_diff = ret;
  4705. cg_wunlock(&control_lock);
  4706. if (unlikely(new_best))
  4707. applog(LOG_INFO, "New best share: %s", best_share);
  4708. return ret;
  4709. }
  4710. static void regen_hash(struct work *work)
  4711. {
  4712. hash_data(work->hash, work->data);
  4713. }
  4714. static void rebuild_hash(struct work *work)
  4715. {
  4716. if (opt_scrypt)
  4717. scrypt_regenhash(work);
  4718. else
  4719. regen_hash(work);
  4720. work->share_diff = share_diff(work);
  4721. if (unlikely(work->share_diff >= current_diff)) {
  4722. work->block = true;
  4723. work->pool->solved++;
  4724. found_blocks++;
  4725. work->mandatory = true;
  4726. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4727. }
  4728. }
  4729. static void submit_discard_share2(const char *reason, struct work *work)
  4730. {
  4731. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4732. sharelog(reason, work);
  4733. mutex_lock(&stats_lock);
  4734. ++total_stale;
  4735. ++cgpu->stale;
  4736. ++(work->pool->stale_shares);
  4737. total_diff_stale += work->work_difficulty;
  4738. cgpu->diff_stale += work->work_difficulty;
  4739. work->pool->diff_stale += work->work_difficulty;
  4740. mutex_unlock(&stats_lock);
  4741. }
  4742. static void submit_discard_share(struct work *work)
  4743. {
  4744. submit_discard_share2("discard", work);
  4745. }
  4746. struct submit_work_state {
  4747. struct work *work;
  4748. bool resubmit;
  4749. struct curl_ent *ce;
  4750. int failures;
  4751. struct timeval tv_staleexpire;
  4752. char *s;
  4753. struct timeval tv_submit;
  4754. struct submit_work_state *next;
  4755. };
  4756. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4757. {
  4758. long *p_timeout_us = userp;
  4759. const long max_ms = LONG_MAX / 1000;
  4760. if (max_ms < timeout_ms)
  4761. timeout_ms = max_ms;
  4762. *p_timeout_us = timeout_ms * 1000;
  4763. return 0;
  4764. }
  4765. static void sws_has_ce(struct submit_work_state *sws)
  4766. {
  4767. struct pool *pool = sws->work->pool;
  4768. sws->s = submit_upstream_work_request(sws->work);
  4769. cgtime(&sws->tv_submit);
  4770. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4771. }
  4772. static struct submit_work_state *begin_submission(struct work *work)
  4773. {
  4774. struct pool *pool;
  4775. struct submit_work_state *sws = NULL;
  4776. pool = work->pool;
  4777. sws = malloc(sizeof(*sws));
  4778. *sws = (struct submit_work_state){
  4779. .work = work,
  4780. };
  4781. rebuild_hash(work);
  4782. if (stale_work(work, true)) {
  4783. work->stale = true;
  4784. if (opt_submit_stale)
  4785. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4786. else if (pool->submit_old)
  4787. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4788. else {
  4789. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4790. submit_discard_share(work);
  4791. goto out;
  4792. }
  4793. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4794. }
  4795. if (work->stratum) {
  4796. char *s;
  4797. s = malloc(1024);
  4798. sws->s = s;
  4799. } else {
  4800. /* submit solution to bitcoin via JSON-RPC */
  4801. sws->ce = pop_curl_entry2(pool, false);
  4802. if (sws->ce) {
  4803. sws_has_ce(sws);
  4804. } else {
  4805. sws->next = pool->sws_waiting_on_curl;
  4806. pool->sws_waiting_on_curl = sws;
  4807. if (sws->next)
  4808. applog(LOG_DEBUG, "submit_thread queuing submission");
  4809. else
  4810. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4811. }
  4812. }
  4813. return sws;
  4814. out:
  4815. free(sws);
  4816. return NULL;
  4817. }
  4818. static bool retry_submission(struct submit_work_state *sws)
  4819. {
  4820. struct work *work = sws->work;
  4821. struct pool *pool = work->pool;
  4822. sws->resubmit = true;
  4823. if ((!work->stale) && stale_work(work, true)) {
  4824. work->stale = true;
  4825. if (opt_submit_stale)
  4826. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4827. else if (pool->submit_old)
  4828. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4829. else {
  4830. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4831. submit_discard_share(work);
  4832. return false;
  4833. }
  4834. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4835. }
  4836. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4837. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4838. submit_discard_share(work);
  4839. return false;
  4840. }
  4841. else if (work->stale) {
  4842. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4843. {
  4844. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4845. submit_discard_share(work);
  4846. return false;
  4847. }
  4848. }
  4849. /* pause, then restart work-request loop */
  4850. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4851. cgtime(&sws->tv_submit);
  4852. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4853. return true;
  4854. }
  4855. static void free_sws(struct submit_work_state *sws)
  4856. {
  4857. free(sws->s);
  4858. free_work(sws->work);
  4859. free(sws);
  4860. }
  4861. static void *submit_work_thread(__maybe_unused void *userdata)
  4862. {
  4863. int wip = 0;
  4864. CURLM *curlm;
  4865. long curlm_timeout_us = -1;
  4866. struct timeval curlm_timer;
  4867. struct submit_work_state *sws, **swsp;
  4868. struct submit_work_state *write_sws = NULL;
  4869. unsigned tsreduce = 0;
  4870. pthread_detach(pthread_self());
  4871. RenameThread("submit_work");
  4872. applog(LOG_DEBUG, "Creating extra submit work thread");
  4873. curlm = curl_multi_init();
  4874. curlm_timeout_us = -1;
  4875. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4876. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4877. fd_set rfds, wfds, efds;
  4878. int maxfd;
  4879. struct timeval tv_timeout, tv_now;
  4880. int n;
  4881. CURLMsg *cm;
  4882. FD_ZERO(&rfds);
  4883. while (1) {
  4884. mutex_lock(&submitting_lock);
  4885. total_submitting -= tsreduce;
  4886. tsreduce = 0;
  4887. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4888. notifier_read(submit_waiting_notifier);
  4889. }
  4890. // Receive any new submissions
  4891. while (submit_waiting) {
  4892. struct work *work = submit_waiting;
  4893. DL_DELETE(submit_waiting, work);
  4894. if ( (sws = begin_submission(work)) ) {
  4895. if (sws->ce)
  4896. curl_multi_add_handle(curlm, sws->ce->curl);
  4897. else if (sws->s) {
  4898. sws->next = write_sws;
  4899. write_sws = sws;
  4900. }
  4901. ++wip;
  4902. }
  4903. else {
  4904. --total_submitting;
  4905. free_work(work);
  4906. }
  4907. }
  4908. if (unlikely(shutting_down && !wip))
  4909. break;
  4910. mutex_unlock(&submitting_lock);
  4911. FD_ZERO(&rfds);
  4912. FD_ZERO(&wfds);
  4913. FD_ZERO(&efds);
  4914. tv_timeout.tv_sec = -1;
  4915. // Setup cURL with select
  4916. // Need to call perform to ensure the timeout gets updated
  4917. curl_multi_perform(curlm, &n);
  4918. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4919. if (curlm_timeout_us >= 0)
  4920. {
  4921. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4922. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4923. }
  4924. // Setup waiting stratum submissions with select
  4925. for (sws = write_sws; sws; sws = sws->next)
  4926. {
  4927. struct pool *pool = sws->work->pool;
  4928. int fd = pool->sock;
  4929. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4930. continue;
  4931. FD_SET(fd, &wfds);
  4932. set_maxfd(&maxfd, fd);
  4933. }
  4934. // Setup "submit waiting" notifier with select
  4935. FD_SET(submit_waiting_notifier[0], &rfds);
  4936. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4937. // Wait for something interesting to happen :)
  4938. cgtime(&tv_now);
  4939. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4940. FD_ZERO(&rfds);
  4941. continue;
  4942. }
  4943. // Handle any stratum ready-to-write results
  4944. for (swsp = &write_sws; (sws = *swsp); ) {
  4945. struct work *work = sws->work;
  4946. struct pool *pool = work->pool;
  4947. int fd = pool->sock;
  4948. bool sessionid_match;
  4949. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4950. next_write_sws:
  4951. // TODO: Check if stale, possibly discard etc
  4952. swsp = &sws->next;
  4953. continue;
  4954. }
  4955. cg_rlock(&pool->data_lock);
  4956. // 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
  4957. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4958. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4959. cg_runlock(&pool->data_lock);
  4960. if (!sessionid_match)
  4961. {
  4962. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4963. submit_discard_share2("disconnect", work);
  4964. ++tsreduce;
  4965. next_write_sws_del:
  4966. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4967. FD_CLR(fd, &wfds);
  4968. // Delete sws for this submission, since we're done with it
  4969. *swsp = sws->next;
  4970. free_sws(sws);
  4971. --wip;
  4972. continue;
  4973. }
  4974. char *s = sws->s;
  4975. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4976. int sshare_id;
  4977. uint32_t nonce;
  4978. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4979. char noncehex[9];
  4980. char ntimehex[9];
  4981. sshare->work = copy_work(work);
  4982. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4983. nonce = *((uint32_t *)(work->data + 76));
  4984. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  4985. bin2hex(ntimehex, (void *)&work->data[68], 4);
  4986. mutex_lock(&sshare_lock);
  4987. /* Give the stratum share a unique id */
  4988. sshare_id =
  4989. sshare->id = swork_id++;
  4990. HASH_ADD_INT(stratum_shares, id, sshare);
  4991. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  4992. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  4993. mutex_unlock(&sshare_lock);
  4994. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  4995. if (likely(stratum_send(pool, s, strlen(s)))) {
  4996. if (pool_tclear(pool, &pool->submit_fail))
  4997. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4998. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  4999. goto next_write_sws_del;
  5000. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5001. // Undo stuff
  5002. mutex_lock(&sshare_lock);
  5003. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5004. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5005. if (sshare)
  5006. HASH_DEL(stratum_shares, sshare);
  5007. mutex_unlock(&sshare_lock);
  5008. if (sshare)
  5009. {
  5010. free_work(sshare->work);
  5011. free(sshare);
  5012. }
  5013. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5014. total_ro++;
  5015. pool->remotefail_occasions++;
  5016. if (!sshare)
  5017. goto next_write_sws_del;
  5018. goto next_write_sws;
  5019. }
  5020. }
  5021. // Handle any cURL activities
  5022. curl_multi_perform(curlm, &n);
  5023. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5024. if (cm->msg == CURLMSG_DONE)
  5025. {
  5026. bool finished;
  5027. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5028. curl_multi_remove_handle(curlm, cm->easy_handle);
  5029. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5030. if (!finished) {
  5031. if (retry_submission(sws))
  5032. curl_multi_add_handle(curlm, sws->ce->curl);
  5033. else
  5034. finished = true;
  5035. }
  5036. if (finished) {
  5037. --wip;
  5038. ++tsreduce;
  5039. struct pool *pool = sws->work->pool;
  5040. if (pool->sws_waiting_on_curl) {
  5041. pool->sws_waiting_on_curl->ce = sws->ce;
  5042. sws_has_ce(pool->sws_waiting_on_curl);
  5043. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5044. curl_multi_add_handle(curlm, sws->ce->curl);
  5045. } else {
  5046. push_curl_entry(sws->ce, sws->work->pool);
  5047. }
  5048. free_sws(sws);
  5049. }
  5050. }
  5051. }
  5052. }
  5053. assert(!write_sws);
  5054. mutex_unlock(&submitting_lock);
  5055. curl_multi_cleanup(curlm);
  5056. applog(LOG_DEBUG, "submit_work thread exiting");
  5057. return NULL;
  5058. }
  5059. /* Find the pool that currently has the highest priority */
  5060. static struct pool *priority_pool(int choice)
  5061. {
  5062. struct pool *ret = NULL;
  5063. int i;
  5064. for (i = 0; i < total_pools; i++) {
  5065. struct pool *pool = pools[i];
  5066. if (pool->prio == choice) {
  5067. ret = pool;
  5068. break;
  5069. }
  5070. }
  5071. if (unlikely(!ret)) {
  5072. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5073. return pools[choice];
  5074. }
  5075. return ret;
  5076. }
  5077. int prioritize_pools(char *param, int *pid)
  5078. {
  5079. char *ptr, *next;
  5080. int i, pr, prio = 0;
  5081. if (total_pools == 0) {
  5082. return MSG_NOPOOL;
  5083. }
  5084. if (param == NULL || *param == '\0') {
  5085. return MSG_MISPID;
  5086. }
  5087. bool pools_changed[total_pools];
  5088. int new_prio[total_pools];
  5089. for (i = 0; i < total_pools; ++i)
  5090. pools_changed[i] = false;
  5091. next = param;
  5092. while (next && *next) {
  5093. ptr = next;
  5094. next = strchr(ptr, ',');
  5095. if (next)
  5096. *(next++) = '\0';
  5097. i = atoi(ptr);
  5098. if (i < 0 || i >= total_pools) {
  5099. *pid = i;
  5100. return MSG_INVPID;
  5101. }
  5102. if (pools_changed[i]) {
  5103. *pid = i;
  5104. return MSG_DUPPID;
  5105. }
  5106. pools_changed[i] = true;
  5107. new_prio[i] = prio++;
  5108. }
  5109. // Only change them if no errors
  5110. for (i = 0; i < total_pools; i++) {
  5111. if (pools_changed[i])
  5112. pools[i]->prio = new_prio[i];
  5113. }
  5114. // In priority order, cycle through the unchanged pools and append them
  5115. for (pr = 0; pr < total_pools; pr++)
  5116. for (i = 0; i < total_pools; i++) {
  5117. if (!pools_changed[i] && pools[i]->prio == pr) {
  5118. pools[i]->prio = prio++;
  5119. pools_changed[i] = true;
  5120. break;
  5121. }
  5122. }
  5123. if (current_pool()->prio)
  5124. switch_pools(NULL);
  5125. return MSG_POOLPRIO;
  5126. }
  5127. void validate_pool_priorities(void)
  5128. {
  5129. // TODO: this should probably do some sort of logging
  5130. int i, j;
  5131. bool used[total_pools];
  5132. bool valid[total_pools];
  5133. for (i = 0; i < total_pools; i++)
  5134. used[i] = valid[i] = false;
  5135. for (i = 0; i < total_pools; i++) {
  5136. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5137. if (!used[pools[i]->prio]) {
  5138. valid[i] = true;
  5139. used[pools[i]->prio] = true;
  5140. }
  5141. }
  5142. }
  5143. for (i = 0; i < total_pools; i++) {
  5144. if (!valid[i]) {
  5145. for (j = 0; j < total_pools; j++) {
  5146. if (!used[j]) {
  5147. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5148. pools[i]->prio = j;
  5149. used[j] = true;
  5150. break;
  5151. }
  5152. }
  5153. }
  5154. }
  5155. }
  5156. static void clear_pool_work(struct pool *pool);
  5157. /* Specifies whether we can switch to this pool or not. */
  5158. static bool pool_unusable(struct pool *pool)
  5159. {
  5160. if (pool->idle)
  5161. return true;
  5162. if (pool->enabled != POOL_ENABLED)
  5163. return true;
  5164. return false;
  5165. }
  5166. void switch_pools(struct pool *selected)
  5167. {
  5168. struct pool *pool, *last_pool;
  5169. int i, pool_no, next_pool;
  5170. cg_wlock(&control_lock);
  5171. last_pool = currentpool;
  5172. pool_no = currentpool->pool_no;
  5173. /* Switch selected to pool number 0 and move the rest down */
  5174. if (selected) {
  5175. if (selected->prio != 0) {
  5176. for (i = 0; i < total_pools; i++) {
  5177. pool = pools[i];
  5178. if (pool->prio < selected->prio)
  5179. pool->prio++;
  5180. }
  5181. selected->prio = 0;
  5182. }
  5183. }
  5184. switch (pool_strategy) {
  5185. /* All of these set to the master pool */
  5186. case POOL_BALANCE:
  5187. case POOL_FAILOVER:
  5188. case POOL_LOADBALANCE:
  5189. for (i = 0; i < total_pools; i++) {
  5190. pool = priority_pool(i);
  5191. if (pool_unusable(pool))
  5192. continue;
  5193. pool_no = pool->pool_no;
  5194. break;
  5195. }
  5196. break;
  5197. /* Both of these simply increment and cycle */
  5198. case POOL_ROUNDROBIN:
  5199. case POOL_ROTATE:
  5200. if (selected && !selected->idle) {
  5201. pool_no = selected->pool_no;
  5202. break;
  5203. }
  5204. next_pool = pool_no;
  5205. /* Select the next alive pool */
  5206. for (i = 1; i < total_pools; i++) {
  5207. next_pool++;
  5208. if (next_pool >= total_pools)
  5209. next_pool = 0;
  5210. pool = pools[next_pool];
  5211. if (pool_unusable(pool))
  5212. continue;
  5213. pool_no = next_pool;
  5214. break;
  5215. }
  5216. break;
  5217. default:
  5218. break;
  5219. }
  5220. currentpool = pools[pool_no];
  5221. pool = currentpool;
  5222. cg_wunlock(&control_lock);
  5223. /* Set the lagging flag to avoid pool not providing work fast enough
  5224. * messages in failover only mode since we have to get all fresh work
  5225. * as in restart_threads */
  5226. if (opt_fail_only)
  5227. pool_tset(pool, &pool->lagging);
  5228. if (pool != last_pool)
  5229. {
  5230. pool->block_id = 0;
  5231. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5232. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5233. if (pool_localgen(pool) || opt_fail_only)
  5234. clear_pool_work(last_pool);
  5235. }
  5236. }
  5237. mutex_lock(&lp_lock);
  5238. pthread_cond_broadcast(&lp_cond);
  5239. mutex_unlock(&lp_lock);
  5240. }
  5241. static void discard_work(struct work *work)
  5242. {
  5243. if (!work->clone && !work->rolls && !work->mined) {
  5244. if (work->pool) {
  5245. work->pool->discarded_work++;
  5246. work->pool->quota_used--;
  5247. work->pool->works--;
  5248. }
  5249. total_discarded++;
  5250. applog(LOG_DEBUG, "Discarded work");
  5251. } else
  5252. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5253. free_work(work);
  5254. }
  5255. static void wake_gws(void)
  5256. {
  5257. mutex_lock(stgd_lock);
  5258. pthread_cond_signal(&gws_cond);
  5259. mutex_unlock(stgd_lock);
  5260. }
  5261. static void discard_stale(void)
  5262. {
  5263. struct work *work, *tmp;
  5264. int stale = 0;
  5265. mutex_lock(stgd_lock);
  5266. HASH_ITER(hh, staged_work, work, tmp) {
  5267. if (stale_work(work, false)) {
  5268. HASH_DEL(staged_work, work);
  5269. discard_work(work);
  5270. stale++;
  5271. staged_full = false;
  5272. }
  5273. }
  5274. pthread_cond_signal(&gws_cond);
  5275. mutex_unlock(stgd_lock);
  5276. if (stale)
  5277. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5278. }
  5279. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5280. {
  5281. bool rv;
  5282. struct timeval tv, orig;
  5283. ldiv_t d;
  5284. d = ldiv(ustime, 1000000);
  5285. tv = (struct timeval){
  5286. .tv_sec = d.quot,
  5287. .tv_usec = d.rem,
  5288. };
  5289. orig = work->tv_staged;
  5290. timersub(&orig, &tv, &work->tv_staged);
  5291. rv = stale_work(work, share);
  5292. work->tv_staged = orig;
  5293. return rv;
  5294. }
  5295. static void restart_threads(void)
  5296. {
  5297. struct pool *cp = current_pool();
  5298. int i;
  5299. struct thr_info *thr;
  5300. /* Artificially set the lagging flag to avoid pool not providing work
  5301. * fast enough messages after every long poll */
  5302. pool_tset(cp, &cp->lagging);
  5303. /* Discard staged work that is now stale */
  5304. discard_stale();
  5305. rd_lock(&mining_thr_lock);
  5306. for (i = 0; i < mining_threads; i++)
  5307. {
  5308. thr = mining_thr[i];
  5309. thr->work_restart = true;
  5310. }
  5311. for (i = 0; i < mining_threads; i++)
  5312. {
  5313. thr = mining_thr[i];
  5314. notifier_wake(thr->work_restart_notifier);
  5315. }
  5316. rd_unlock(&mining_thr_lock);
  5317. }
  5318. static
  5319. void blkhashstr(char *rv, const unsigned char *hash)
  5320. {
  5321. unsigned char hash_swap[32];
  5322. swap256(hash_swap, hash);
  5323. swap32tole(hash_swap, hash_swap, 32 / 4);
  5324. bin2hex(rv, hash_swap, 32);
  5325. }
  5326. static void set_curblock(char *hexstr, unsigned char *hash)
  5327. {
  5328. unsigned char hash_swap[32];
  5329. current_block_id = ((uint32_t*)hash)[0];
  5330. strcpy(current_block, hexstr);
  5331. swap256(hash_swap, hash);
  5332. swap32tole(hash_swap, hash_swap, 32 / 4);
  5333. cg_wlock(&ch_lock);
  5334. block_time = time(NULL);
  5335. __update_block_title(hash_swap);
  5336. free(current_fullhash);
  5337. current_fullhash = malloc(65);
  5338. bin2hex(current_fullhash, hash_swap, 32);
  5339. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5340. cg_wunlock(&ch_lock);
  5341. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5342. }
  5343. /* Search to see if this string is from a block that has been seen before */
  5344. static bool block_exists(char *hexstr)
  5345. {
  5346. struct block *s;
  5347. rd_lock(&blk_lock);
  5348. HASH_FIND_STR(blocks, hexstr, s);
  5349. rd_unlock(&blk_lock);
  5350. if (s)
  5351. return true;
  5352. return false;
  5353. }
  5354. /* Tests if this work is from a block that has been seen before */
  5355. static inline bool from_existing_block(struct work *work)
  5356. {
  5357. char hexstr[37];
  5358. bool ret;
  5359. bin2hex(hexstr, work->data + 8, 18);
  5360. ret = block_exists(hexstr);
  5361. return ret;
  5362. }
  5363. static int block_sort(struct block *blocka, struct block *blockb)
  5364. {
  5365. return blocka->block_no - blockb->block_no;
  5366. }
  5367. static void set_blockdiff(const struct work *work)
  5368. {
  5369. unsigned char target[32];
  5370. double diff;
  5371. uint64_t diff64;
  5372. real_block_target(target, work->data);
  5373. diff = target_diff(target);
  5374. diff64 = diff;
  5375. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5376. format_unit2(net_hashrate, sizeof(net_hashrate),
  5377. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5378. if (unlikely(current_diff != diff))
  5379. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5380. current_diff = diff;
  5381. }
  5382. static bool test_work_current(struct work *work)
  5383. {
  5384. bool ret = true;
  5385. char hexstr[65];
  5386. if (work->mandatory)
  5387. return ret;
  5388. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5389. /* Hack to work around dud work sneaking into test */
  5390. bin2hex(hexstr, work->data + 8, 18);
  5391. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5392. goto out_free;
  5393. /* Search to see if this block exists yet and if not, consider it a
  5394. * new block and set the current block details to this one */
  5395. if (!block_exists(hexstr)) {
  5396. struct block *s = calloc(sizeof(struct block), 1);
  5397. int deleted_block = 0;
  5398. ret = false;
  5399. if (unlikely(!s))
  5400. quit (1, "test_work_current OOM");
  5401. strcpy(s->hash, hexstr);
  5402. s->block_no = new_blocks++;
  5403. wr_lock(&blk_lock);
  5404. /* Only keep the last hour's worth of blocks in memory since
  5405. * work from blocks before this is virtually impossible and we
  5406. * want to prevent memory usage from continually rising */
  5407. if (HASH_COUNT(blocks) > 6) {
  5408. struct block *oldblock;
  5409. HASH_SORT(blocks, block_sort);
  5410. oldblock = blocks;
  5411. deleted_block = oldblock->block_no;
  5412. HASH_DEL(blocks, oldblock);
  5413. free(oldblock);
  5414. }
  5415. HASH_ADD_STR(blocks, hash, s);
  5416. set_blockdiff(work);
  5417. wr_unlock(&blk_lock);
  5418. work->pool->block_id = block_id;
  5419. if (deleted_block)
  5420. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5421. #if BLKMAKER_VERSION > 1
  5422. template_nonce = 0;
  5423. #endif
  5424. set_curblock(hexstr, &work->data[4]);
  5425. if (unlikely(new_blocks == 1))
  5426. goto out_free;
  5427. if (!work->stratum) {
  5428. if (work->longpoll) {
  5429. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5430. work->pool->pool_no);
  5431. } else if (have_longpoll)
  5432. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5433. else
  5434. applog(LOG_NOTICE, "New block detected on network");
  5435. }
  5436. restart_threads();
  5437. } else {
  5438. bool restart = false;
  5439. struct pool *curpool = NULL;
  5440. if (unlikely(work->pool->block_id != block_id)) {
  5441. bool was_active = work->pool->block_id != 0;
  5442. work->pool->block_id = block_id;
  5443. if (!work->longpoll)
  5444. update_last_work(work);
  5445. if (was_active) { // Pool actively changed block
  5446. if (work->pool == (curpool = current_pool()))
  5447. restart = true;
  5448. if (block_id == current_block_id) {
  5449. // Caught up, only announce if this pool is the one in use
  5450. if (restart)
  5451. applog(LOG_NOTICE, "%s %d caught up to new block",
  5452. work->longpoll ? "Longpoll from pool" : "Pool",
  5453. work->pool->pool_no);
  5454. } else {
  5455. // Switched to a block we know, but not the latest... why?
  5456. // This might detect pools trying to double-spend or 51%,
  5457. // but let's not make any accusations until it's had time
  5458. // in the real world.
  5459. blkhashstr(hexstr, &work->data[4]);
  5460. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5461. work->longpoll ? "Longpoll from pool" : "Pool",
  5462. work->pool->pool_no,
  5463. hexstr);
  5464. }
  5465. }
  5466. }
  5467. if (work->longpoll) {
  5468. ++work->pool->work_restart_id;
  5469. update_last_work(work);
  5470. if ((!restart) && work->pool == current_pool()) {
  5471. applog(
  5472. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5473. "Longpoll from pool %d requested work update",
  5474. work->pool->pool_no);
  5475. restart = true;
  5476. }
  5477. }
  5478. if (restart)
  5479. restart_threads();
  5480. }
  5481. work->longpoll = false;
  5482. out_free:
  5483. return ret;
  5484. }
  5485. static int tv_sort(struct work *worka, struct work *workb)
  5486. {
  5487. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5488. }
  5489. static bool work_rollable(struct work *work)
  5490. {
  5491. return (!work->clone && work->rolltime);
  5492. }
  5493. static bool hash_push(struct work *work)
  5494. {
  5495. bool rc = true;
  5496. mutex_lock(stgd_lock);
  5497. if (work_rollable(work))
  5498. staged_rollable++;
  5499. if (likely(!getq->frozen)) {
  5500. HASH_ADD_INT(staged_work, id, work);
  5501. HASH_SORT(staged_work, tv_sort);
  5502. } else
  5503. rc = false;
  5504. pthread_cond_broadcast(&getq->cond);
  5505. mutex_unlock(stgd_lock);
  5506. return rc;
  5507. }
  5508. static void stage_work(struct work *work)
  5509. {
  5510. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5511. work->id, work->pool->pool_no);
  5512. work->work_restart_id = work->pool->work_restart_id;
  5513. work->pool->last_work_time = time(NULL);
  5514. cgtime(&work->pool->tv_last_work_time);
  5515. test_work_current(work);
  5516. work->pool->works++;
  5517. hash_push(work);
  5518. }
  5519. #ifdef HAVE_CURSES
  5520. int curses_int(const char *query)
  5521. {
  5522. int ret;
  5523. char *cvar;
  5524. cvar = curses_input(query);
  5525. if (unlikely(!cvar))
  5526. return -1;
  5527. ret = atoi(cvar);
  5528. free(cvar);
  5529. return ret;
  5530. }
  5531. #endif
  5532. #ifdef HAVE_CURSES
  5533. static bool input_pool(bool live);
  5534. #endif
  5535. #ifdef HAVE_CURSES
  5536. static void display_pool_summary(struct pool *pool)
  5537. {
  5538. double efficiency = 0.0;
  5539. char xfer[17], bw[19];
  5540. int pool_secs;
  5541. if (curses_active_locked()) {
  5542. wlog("Pool: %s\n", pool->rpc_url);
  5543. if (pool->solved)
  5544. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5545. if (!pool->has_stratum)
  5546. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5547. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5548. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5549. wlog(" Accepted shares: %d\n", pool->accepted);
  5550. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5551. pool->rejected, pool->stale_shares,
  5552. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5553. );
  5554. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5555. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5556. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5557. wlog(" Network transfer: %s (%s)\n",
  5558. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5559. (float)pool->cgminer_pool_stats.net_bytes_received,
  5560. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5561. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5562. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5563. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5564. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5565. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5566. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5567. wlog(" Items worked on: %d\n", pool->works);
  5568. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5569. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5570. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5571. unlock_curses();
  5572. }
  5573. }
  5574. #endif
  5575. /* We can't remove the memory used for this struct pool because there may
  5576. * still be work referencing it. We just remove it from the pools list */
  5577. void remove_pool(struct pool *pool)
  5578. {
  5579. int i, last_pool = total_pools - 1;
  5580. struct pool *other;
  5581. /* Boost priority of any lower prio than this one */
  5582. for (i = 0; i < total_pools; i++) {
  5583. other = pools[i];
  5584. if (other->prio > pool->prio)
  5585. other->prio--;
  5586. }
  5587. if (pool->pool_no < last_pool) {
  5588. /* Swap the last pool for this one */
  5589. (pools[last_pool])->pool_no = pool->pool_no;
  5590. pools[pool->pool_no] = pools[last_pool];
  5591. }
  5592. /* Give it an invalid number */
  5593. pool->pool_no = total_pools;
  5594. pool->removed = true;
  5595. pool->has_stratum = false;
  5596. total_pools--;
  5597. }
  5598. /* add a mutex if this needs to be thread safe in the future */
  5599. static struct JE {
  5600. char *buf;
  5601. struct JE *next;
  5602. } *jedata = NULL;
  5603. static void json_escape_free()
  5604. {
  5605. struct JE *jeptr = jedata;
  5606. struct JE *jenext;
  5607. jedata = NULL;
  5608. while (jeptr) {
  5609. jenext = jeptr->next;
  5610. free(jeptr->buf);
  5611. free(jeptr);
  5612. jeptr = jenext;
  5613. }
  5614. }
  5615. static
  5616. char *json_escape(const char *str)
  5617. {
  5618. struct JE *jeptr;
  5619. char *buf, *ptr;
  5620. /* 2x is the max, may as well just allocate that */
  5621. ptr = buf = malloc(strlen(str) * 2 + 1);
  5622. jeptr = malloc(sizeof(*jeptr));
  5623. jeptr->buf = buf;
  5624. jeptr->next = jedata;
  5625. jedata = jeptr;
  5626. while (*str) {
  5627. if (*str == '\\' || *str == '"')
  5628. *(ptr++) = '\\';
  5629. *(ptr++) = *(str++);
  5630. }
  5631. *ptr = '\0';
  5632. return buf;
  5633. }
  5634. static
  5635. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5636. {
  5637. if (!elist)
  5638. return;
  5639. static struct string_elist *entry;
  5640. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5641. bool first = true;
  5642. DL_FOREACH(elist, entry)
  5643. {
  5644. const char * const s = entry->string;
  5645. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5646. first = false;
  5647. }
  5648. fprintf(fcfg, "\n]");
  5649. }
  5650. void write_config(FILE *fcfg)
  5651. {
  5652. int i;
  5653. /* Write pool values */
  5654. fputs("{\n\"pools\" : [", fcfg);
  5655. for(i = 0; i < total_pools; i++) {
  5656. struct pool *pool = pools[i];
  5657. if (pool->quota != 1) {
  5658. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5659. pool->quota,
  5660. json_escape(pool->rpc_url));
  5661. } else {
  5662. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5663. json_escape(pool->rpc_url));
  5664. }
  5665. if (pool->rpc_proxy)
  5666. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5667. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5668. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5669. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5670. if (pool->force_rollntime)
  5671. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5672. fprintf(fcfg, "\n\t}");
  5673. }
  5674. fputs("\n]\n", fcfg);
  5675. #ifdef HAVE_OPENCL
  5676. if (nDevs) {
  5677. /* Write GPU device values */
  5678. fputs(",\n\"intensity\" : \"", fcfg);
  5679. for(i = 0; i < nDevs; i++)
  5680. {
  5681. if (i > 0)
  5682. fputc(',', fcfg);
  5683. if (gpus[i].dynamic)
  5684. fputc('d', fcfg);
  5685. else
  5686. fprintf(fcfg, "%d", gpus[i].intensity);
  5687. }
  5688. fputs("\",\n\"vectors\" : \"", fcfg);
  5689. for(i = 0; i < nDevs; i++)
  5690. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5691. gpus[i].vwidth);
  5692. fputs("\",\n\"worksize\" : \"", fcfg);
  5693. for(i = 0; i < nDevs; i++)
  5694. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5695. (int)gpus[i].work_size);
  5696. fputs("\",\n\"kernel\" : \"", fcfg);
  5697. for(i = 0; i < nDevs; i++) {
  5698. fprintf(fcfg, "%s", i > 0 ? "," : "");
  5699. switch (gpus[i].kernel) {
  5700. case KL_NONE: // Shouldn't happen
  5701. break;
  5702. case KL_POCLBM:
  5703. fprintf(fcfg, "poclbm");
  5704. break;
  5705. case KL_PHATK:
  5706. fprintf(fcfg, "phatk");
  5707. break;
  5708. case KL_DIAKGCN:
  5709. fprintf(fcfg, "diakgcn");
  5710. break;
  5711. case KL_DIABLO:
  5712. fprintf(fcfg, "diablo");
  5713. break;
  5714. case KL_SCRYPT:
  5715. fprintf(fcfg, "scrypt");
  5716. break;
  5717. }
  5718. }
  5719. #ifdef USE_SCRYPT
  5720. fputs("\",\n\"lookup-gap\" : \"", fcfg);
  5721. for(i = 0; i < nDevs; i++)
  5722. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5723. (int)gpus[i].opt_lg);
  5724. fputs("\",\n\"thread-concurrency\" : \"", fcfg);
  5725. for(i = 0; i < nDevs; i++)
  5726. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5727. (int)gpus[i].opt_tc);
  5728. fputs("\",\n\"shaders\" : \"", fcfg);
  5729. for(i = 0; i < nDevs; i++)
  5730. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5731. (int)gpus[i].shaders);
  5732. #endif
  5733. #ifdef HAVE_ADL
  5734. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  5735. for(i = 0; i < nDevs; i++)
  5736. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  5737. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  5738. for(i = 0; i < nDevs; i++)
  5739. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  5740. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  5741. for(i = 0; i < nDevs; i++)
  5742. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  5743. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  5744. for(i = 0; i < nDevs; i++)
  5745. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  5746. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  5747. for(i = 0; i < nDevs; i++)
  5748. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  5749. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  5750. for(i = 0; i < nDevs; i++)
  5751. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  5752. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  5753. for(i = 0; i < nDevs; i++)
  5754. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  5755. #endif
  5756. fputs("\"", fcfg);
  5757. }
  5758. #endif
  5759. #ifdef HAVE_ADL
  5760. if (opt_reorder)
  5761. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  5762. #endif
  5763. #ifdef WANT_CPUMINE
  5764. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5765. #endif
  5766. /* Simple bool and int options */
  5767. struct opt_table *opt;
  5768. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5769. char *p, *name = strdup(opt->names);
  5770. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5771. if (p[1] != '-')
  5772. continue;
  5773. if (opt->type & OPT_NOARG &&
  5774. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5775. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5776. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5777. if (opt->type & OPT_HASARG &&
  5778. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5779. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5780. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5781. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5782. opt->desc != opt_hidden &&
  5783. 0 <= *(int *)opt->u.arg)
  5784. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5785. }
  5786. }
  5787. /* Special case options */
  5788. if (request_target_str)
  5789. {
  5790. if (request_pdiff == (long)request_pdiff)
  5791. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5792. else
  5793. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5794. }
  5795. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  5796. if (pool_strategy == POOL_BALANCE)
  5797. fputs(",\n\"balance\" : true", fcfg);
  5798. if (pool_strategy == POOL_LOADBALANCE)
  5799. fputs(",\n\"load-balance\" : true", fcfg);
  5800. if (pool_strategy == POOL_ROUNDROBIN)
  5801. fputs(",\n\"round-robin\" : true", fcfg);
  5802. if (pool_strategy == POOL_ROTATE)
  5803. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5804. #if defined(unix) || defined(__APPLE__)
  5805. if (opt_stderr_cmd && *opt_stderr_cmd)
  5806. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5807. #endif // defined(unix)
  5808. if (opt_kernel_path && *opt_kernel_path) {
  5809. char *kpath = strdup(opt_kernel_path);
  5810. if (kpath[strlen(kpath)-1] == '/')
  5811. kpath[strlen(kpath)-1] = 0;
  5812. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5813. free(kpath);
  5814. }
  5815. if (schedstart.enable)
  5816. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5817. if (schedstop.enable)
  5818. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5819. if (opt_socks_proxy && *opt_socks_proxy)
  5820. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5821. _write_config_string_elist(fcfg, "scan", scan_devices);
  5822. #ifdef USE_LIBMICROHTTPD
  5823. if (httpsrv_port != -1)
  5824. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5825. #endif
  5826. #ifdef USE_LIBEVENT
  5827. if (stratumsrv_port != -1)
  5828. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5829. #endif
  5830. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5831. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5832. if (opt_api_allow)
  5833. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5834. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5835. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5836. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5837. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5838. if (*opt_api_mcast_des)
  5839. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5840. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5841. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5842. if (opt_api_groups)
  5843. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5844. fputs("\n}\n", fcfg);
  5845. json_escape_free();
  5846. }
  5847. void zero_bestshare(void)
  5848. {
  5849. int i;
  5850. best_diff = 0;
  5851. memset(best_share, 0, 8);
  5852. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5853. for (i = 0; i < total_pools; i++) {
  5854. struct pool *pool = pools[i];
  5855. pool->best_diff = 0;
  5856. }
  5857. }
  5858. void zero_stats(void)
  5859. {
  5860. int i;
  5861. applog(LOG_DEBUG, "Zeroing stats");
  5862. cgtime(&total_tv_start);
  5863. miner_started = total_tv_start;
  5864. total_rolling = 0;
  5865. total_mhashes_done = 0;
  5866. total_getworks = 0;
  5867. total_accepted = 0;
  5868. total_rejected = 0;
  5869. hw_errors = 0;
  5870. total_stale = 0;
  5871. total_discarded = 0;
  5872. total_bytes_rcvd = total_bytes_sent = 0;
  5873. new_blocks = 0;
  5874. local_work = 0;
  5875. total_go = 0;
  5876. total_ro = 0;
  5877. total_secs = 1.0;
  5878. total_diff1 = 0;
  5879. total_bad_diff1 = 0;
  5880. found_blocks = 0;
  5881. total_diff_accepted = 0;
  5882. total_diff_rejected = 0;
  5883. total_diff_stale = 0;
  5884. #ifdef HAVE_CURSES
  5885. awidth = rwidth = swidth = hwwidth = 1;
  5886. #endif
  5887. for (i = 0; i < total_pools; i++) {
  5888. struct pool *pool = pools[i];
  5889. pool->getwork_requested = 0;
  5890. pool->accepted = 0;
  5891. pool->rejected = 0;
  5892. pool->solved = 0;
  5893. pool->getwork_requested = 0;
  5894. pool->stale_shares = 0;
  5895. pool->discarded_work = 0;
  5896. pool->getfail_occasions = 0;
  5897. pool->remotefail_occasions = 0;
  5898. pool->last_share_time = 0;
  5899. pool->diff1 = 0;
  5900. pool->diff_accepted = 0;
  5901. pool->diff_rejected = 0;
  5902. pool->diff_stale = 0;
  5903. pool->last_share_diff = 0;
  5904. pool->cgminer_stats.start_tv = total_tv_start;
  5905. pool->cgminer_stats.getwork_calls = 0;
  5906. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5907. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5908. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5909. pool->cgminer_pool_stats.getwork_calls = 0;
  5910. pool->cgminer_pool_stats.getwork_attempts = 0;
  5911. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5912. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5913. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5914. pool->cgminer_pool_stats.min_diff = 0;
  5915. pool->cgminer_pool_stats.max_diff = 0;
  5916. pool->cgminer_pool_stats.min_diff_count = 0;
  5917. pool->cgminer_pool_stats.max_diff_count = 0;
  5918. pool->cgminer_pool_stats.times_sent = 0;
  5919. pool->cgminer_pool_stats.bytes_sent = 0;
  5920. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5921. pool->cgminer_pool_stats.times_received = 0;
  5922. pool->cgminer_pool_stats.bytes_received = 0;
  5923. pool->cgminer_pool_stats.net_bytes_received = 0;
  5924. }
  5925. zero_bestshare();
  5926. for (i = 0; i < total_devices; ++i) {
  5927. struct cgpu_info *cgpu = get_devices(i);
  5928. mutex_lock(&hash_lock);
  5929. cgpu->total_mhashes = 0;
  5930. cgpu->accepted = 0;
  5931. cgpu->rejected = 0;
  5932. cgpu->stale = 0;
  5933. cgpu->hw_errors = 0;
  5934. cgpu->utility = 0.0;
  5935. cgpu->utility_diff1 = 0;
  5936. cgpu->last_share_pool_time = 0;
  5937. cgpu->bad_diff1 = 0;
  5938. cgpu->diff1 = 0;
  5939. cgpu->diff_accepted = 0;
  5940. cgpu->diff_rejected = 0;
  5941. cgpu->diff_stale = 0;
  5942. cgpu->last_share_diff = 0;
  5943. cgpu->thread_fail_init_count = 0;
  5944. cgpu->thread_zero_hash_count = 0;
  5945. cgpu->thread_fail_queue_count = 0;
  5946. cgpu->dev_sick_idle_60_count = 0;
  5947. cgpu->dev_dead_idle_600_count = 0;
  5948. cgpu->dev_nostart_count = 0;
  5949. cgpu->dev_over_heat_count = 0;
  5950. cgpu->dev_thermal_cutoff_count = 0;
  5951. cgpu->dev_comms_error_count = 0;
  5952. cgpu->dev_throttle_count = 0;
  5953. cgpu->cgminer_stats.start_tv = total_tv_start;
  5954. cgpu->cgminer_stats.getwork_calls = 0;
  5955. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5956. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5957. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5958. mutex_unlock(&hash_lock);
  5959. }
  5960. }
  5961. #ifdef HAVE_CURSES
  5962. static
  5963. void loginput_mode(const int size)
  5964. {
  5965. clear_logwin();
  5966. loginput_size = size;
  5967. check_winsizes();
  5968. }
  5969. static void display_pools(void)
  5970. {
  5971. struct pool *pool;
  5972. int selected, i, j;
  5973. char input;
  5974. loginput_mode(7 + total_pools);
  5975. immedok(logwin, true);
  5976. updated:
  5977. for (j = 0; j < total_pools; j++) {
  5978. for (i = 0; i < total_pools; i++) {
  5979. pool = pools[i];
  5980. if (pool->prio != j)
  5981. continue;
  5982. if (pool == current_pool())
  5983. wattron(logwin, A_BOLD);
  5984. if (pool->enabled != POOL_ENABLED)
  5985. wattron(logwin, A_DIM);
  5986. wlogprint("%d: ", pool->prio);
  5987. switch (pool->enabled) {
  5988. case POOL_ENABLED:
  5989. wlogprint("Enabled ");
  5990. break;
  5991. case POOL_DISABLED:
  5992. wlogprint("Disabled ");
  5993. break;
  5994. case POOL_REJECTING:
  5995. wlogprint("Rejectin ");
  5996. break;
  5997. }
  5998. if (pool->idle)
  5999. wlogprint("Dead ");
  6000. else
  6001. if (pool->has_stratum)
  6002. wlogprint("Strtm");
  6003. else
  6004. if (pool->lp_url && pool->proto != pool->lp_proto)
  6005. wlogprint("Mixed");
  6006. else
  6007. switch (pool->proto) {
  6008. case PLP_GETBLOCKTEMPLATE:
  6009. wlogprint(" GBT ");
  6010. break;
  6011. case PLP_GETWORK:
  6012. wlogprint("GWork");
  6013. break;
  6014. default:
  6015. wlogprint("Alive");
  6016. }
  6017. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6018. pool->quota,
  6019. pool->pool_no,
  6020. pool->rpc_url, pool->rpc_user);
  6021. wattroff(logwin, A_BOLD | A_DIM);
  6022. break; //for (i = 0; i < total_pools; i++)
  6023. }
  6024. }
  6025. retry:
  6026. wlogprint("\nCurrent pool management strategy: %s\n",
  6027. strategies[pool_strategy].s);
  6028. if (pool_strategy == POOL_ROTATE)
  6029. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6030. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6031. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6032. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6033. wlogprint("Or press any other key to continue\n");
  6034. logwin_update();
  6035. input = getch();
  6036. if (!strncasecmp(&input, "a", 1)) {
  6037. input_pool(true);
  6038. goto updated;
  6039. } else if (!strncasecmp(&input, "r", 1)) {
  6040. if (total_pools <= 1) {
  6041. wlogprint("Cannot remove last pool");
  6042. goto retry;
  6043. }
  6044. selected = curses_int("Select pool number");
  6045. if (selected < 0 || selected >= total_pools) {
  6046. wlogprint("Invalid selection\n");
  6047. goto retry;
  6048. }
  6049. pool = pools[selected];
  6050. if (pool == current_pool())
  6051. switch_pools(NULL);
  6052. if (pool == current_pool()) {
  6053. wlogprint("Unable to remove pool due to activity\n");
  6054. goto retry;
  6055. }
  6056. disable_pool(pool);
  6057. remove_pool(pool);
  6058. goto updated;
  6059. } else if (!strncasecmp(&input, "s", 1)) {
  6060. selected = curses_int("Select pool number");
  6061. if (selected < 0 || selected >= total_pools) {
  6062. wlogprint("Invalid selection\n");
  6063. goto retry;
  6064. }
  6065. pool = pools[selected];
  6066. enable_pool(pool);
  6067. switch_pools(pool);
  6068. goto updated;
  6069. } else if (!strncasecmp(&input, "d", 1)) {
  6070. if (enabled_pools <= 1) {
  6071. wlogprint("Cannot disable last pool");
  6072. goto retry;
  6073. }
  6074. selected = curses_int("Select pool number");
  6075. if (selected < 0 || selected >= total_pools) {
  6076. wlogprint("Invalid selection\n");
  6077. goto retry;
  6078. }
  6079. pool = pools[selected];
  6080. disable_pool(pool);
  6081. if (pool == current_pool())
  6082. switch_pools(NULL);
  6083. goto updated;
  6084. } else if (!strncasecmp(&input, "e", 1)) {
  6085. selected = curses_int("Select pool number");
  6086. if (selected < 0 || selected >= total_pools) {
  6087. wlogprint("Invalid selection\n");
  6088. goto retry;
  6089. }
  6090. pool = pools[selected];
  6091. enable_pool(pool);
  6092. if (pool->prio < current_pool()->prio)
  6093. switch_pools(pool);
  6094. goto updated;
  6095. } else if (!strncasecmp(&input, "c", 1)) {
  6096. for (i = 0; i <= TOP_STRATEGY; i++)
  6097. wlogprint("%d: %s\n", i, strategies[i].s);
  6098. selected = curses_int("Select strategy number type");
  6099. if (selected < 0 || selected > TOP_STRATEGY) {
  6100. wlogprint("Invalid selection\n");
  6101. goto retry;
  6102. }
  6103. if (selected == POOL_ROTATE) {
  6104. opt_rotate_period = curses_int("Select interval in minutes");
  6105. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6106. opt_rotate_period = 0;
  6107. wlogprint("Invalid selection\n");
  6108. goto retry;
  6109. }
  6110. }
  6111. pool_strategy = selected;
  6112. switch_pools(NULL);
  6113. goto updated;
  6114. } else if (!strncasecmp(&input, "i", 1)) {
  6115. selected = curses_int("Select pool number");
  6116. if (selected < 0 || selected >= total_pools) {
  6117. wlogprint("Invalid selection\n");
  6118. goto retry;
  6119. }
  6120. pool = pools[selected];
  6121. display_pool_summary(pool);
  6122. goto retry;
  6123. } else if (!strncasecmp(&input, "q", 1)) {
  6124. selected = curses_int("Select pool number");
  6125. if (selected < 0 || selected >= total_pools) {
  6126. wlogprint("Invalid selection\n");
  6127. goto retry;
  6128. }
  6129. pool = pools[selected];
  6130. selected = curses_int("Set quota");
  6131. if (selected < 0) {
  6132. wlogprint("Invalid negative quota\n");
  6133. goto retry;
  6134. }
  6135. pool->quota = selected;
  6136. adjust_quota_gcd();
  6137. goto updated;
  6138. } else if (!strncasecmp(&input, "f", 1)) {
  6139. opt_fail_only ^= true;
  6140. goto updated;
  6141. } else if (!strncasecmp(&input, "p", 1)) {
  6142. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6143. if (!prilist)
  6144. {
  6145. wlogprint("Not changing priorities\n");
  6146. goto retry;
  6147. }
  6148. int res = prioritize_pools(prilist, &i);
  6149. free(prilist);
  6150. switch (res) {
  6151. case MSG_NOPOOL:
  6152. wlogprint("No pools\n");
  6153. goto retry;
  6154. case MSG_MISPID:
  6155. wlogprint("Missing pool id parameter\n");
  6156. goto retry;
  6157. case MSG_INVPID:
  6158. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6159. goto retry;
  6160. case MSG_DUPPID:
  6161. wlogprint("Duplicate pool specified %d\n", i);
  6162. goto retry;
  6163. case MSG_POOLPRIO:
  6164. default:
  6165. goto updated;
  6166. }
  6167. }
  6168. immedok(logwin, false);
  6169. loginput_mode(0);
  6170. }
  6171. static const char *summary_detail_level_str(void)
  6172. {
  6173. if (opt_compact)
  6174. return "compact";
  6175. if (opt_show_procs)
  6176. return "processors";
  6177. return "devices";
  6178. }
  6179. static void display_options(void)
  6180. {
  6181. int selected;
  6182. char input;
  6183. immedok(logwin, true);
  6184. loginput_mode(12);
  6185. retry:
  6186. clear_logwin();
  6187. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6188. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6189. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6190. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6191. opt_debug_console ? "on" : "off",
  6192. want_per_device_stats? "on" : "off",
  6193. opt_quiet ? "on" : "off",
  6194. opt_log_output ? "on" : "off",
  6195. opt_protocol ? "on" : "off",
  6196. opt_worktime ? "on" : "off",
  6197. summary_detail_level_str(),
  6198. opt_log_interval,
  6199. opt_weighed_stats ? "weighed" : "absolute");
  6200. wlogprint("Select an option or any other key to return\n");
  6201. logwin_update();
  6202. input = getch();
  6203. if (!strncasecmp(&input, "q", 1)) {
  6204. opt_quiet ^= true;
  6205. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6206. goto retry;
  6207. } else if (!strncasecmp(&input, "v", 1)) {
  6208. opt_log_output ^= true;
  6209. if (opt_log_output)
  6210. opt_quiet = false;
  6211. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6212. goto retry;
  6213. } else if (!strncasecmp(&input, "n", 1)) {
  6214. opt_log_output = false;
  6215. opt_debug_console = false;
  6216. opt_quiet = false;
  6217. opt_protocol = false;
  6218. opt_compact = false;
  6219. opt_show_procs = false;
  6220. devsummaryYOffset = 0;
  6221. want_per_device_stats = false;
  6222. wlogprint("Output mode reset to normal\n");
  6223. switch_logsize();
  6224. goto retry;
  6225. } else if (!strncasecmp(&input, "d", 1)) {
  6226. opt_debug = true;
  6227. opt_debug_console ^= true;
  6228. opt_log_output = opt_debug_console;
  6229. if (opt_debug_console)
  6230. opt_quiet = false;
  6231. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6232. goto retry;
  6233. } else if (!strncasecmp(&input, "m", 1)) {
  6234. if (opt_compact)
  6235. opt_compact = false;
  6236. else
  6237. if (!opt_show_procs)
  6238. opt_show_procs = true;
  6239. else
  6240. {
  6241. opt_compact = true;
  6242. opt_show_procs = false;
  6243. devsummaryYOffset = 0;
  6244. }
  6245. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6246. switch_logsize();
  6247. goto retry;
  6248. } else if (!strncasecmp(&input, "p", 1)) {
  6249. want_per_device_stats ^= true;
  6250. opt_log_output = want_per_device_stats;
  6251. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6252. goto retry;
  6253. } else if (!strncasecmp(&input, "r", 1)) {
  6254. opt_protocol ^= true;
  6255. if (opt_protocol)
  6256. opt_quiet = false;
  6257. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6258. goto retry;
  6259. } else if (!strncasecmp(&input, "c", 1))
  6260. clear_logwin();
  6261. else if (!strncasecmp(&input, "l", 1)) {
  6262. selected = curses_int("Interval in seconds");
  6263. if (selected < 0 || selected > 9999) {
  6264. wlogprint("Invalid selection\n");
  6265. goto retry;
  6266. }
  6267. opt_log_interval = selected;
  6268. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6269. goto retry;
  6270. } else if (!strncasecmp(&input, "s", 1)) {
  6271. opt_realquiet = true;
  6272. } else if (!strncasecmp(&input, "w", 1)) {
  6273. opt_worktime ^= true;
  6274. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6275. goto retry;
  6276. } else if (!strncasecmp(&input, "t", 1)) {
  6277. opt_weighed_stats ^= true;
  6278. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6279. goto retry;
  6280. } else if (!strncasecmp(&input, "z", 1)) {
  6281. zero_stats();
  6282. goto retry;
  6283. }
  6284. immedok(logwin, false);
  6285. loginput_mode(0);
  6286. }
  6287. #endif
  6288. void default_save_file(char *filename)
  6289. {
  6290. #if defined(unix) || defined(__APPLE__)
  6291. if (getenv("HOME") && *getenv("HOME")) {
  6292. strcpy(filename, getenv("HOME"));
  6293. strcat(filename, "/");
  6294. }
  6295. else
  6296. strcpy(filename, "");
  6297. strcat(filename, ".bfgminer/");
  6298. mkdir(filename, 0777);
  6299. #else
  6300. strcpy(filename, "");
  6301. #endif
  6302. strcat(filename, def_conf);
  6303. }
  6304. #ifdef HAVE_CURSES
  6305. static void set_options(void)
  6306. {
  6307. int selected;
  6308. char input;
  6309. immedok(logwin, true);
  6310. loginput_mode(8);
  6311. retry:
  6312. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6313. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6314. "[W]rite config file\n[B]FGMiner restart\n",
  6315. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6316. wlogprint("Select an option or any other key to return\n");
  6317. logwin_update();
  6318. input = getch();
  6319. if (!strncasecmp(&input, "q", 1)) {
  6320. selected = curses_int("Extra work items to queue");
  6321. if (selected < 0 || selected > 9999) {
  6322. wlogprint("Invalid selection\n");
  6323. goto retry;
  6324. }
  6325. opt_queue = selected;
  6326. goto retry;
  6327. } else if (!strncasecmp(&input, "l", 1)) {
  6328. if (want_longpoll)
  6329. stop_longpoll();
  6330. else
  6331. start_longpoll();
  6332. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6333. goto retry;
  6334. } else if (!strncasecmp(&input, "s", 1)) {
  6335. selected = curses_int("Set scantime in seconds");
  6336. if (selected < 0 || selected > 9999) {
  6337. wlogprint("Invalid selection\n");
  6338. goto retry;
  6339. }
  6340. opt_scantime = selected;
  6341. goto retry;
  6342. } else if (!strncasecmp(&input, "e", 1)) {
  6343. selected = curses_int("Set expiry time in seconds");
  6344. if (selected < 0 || selected > 9999) {
  6345. wlogprint("Invalid selection\n");
  6346. goto retry;
  6347. }
  6348. opt_expiry = selected;
  6349. goto retry;
  6350. } else if (!strncasecmp(&input, "r", 1)) {
  6351. selected = curses_int("Retries before failing (-1 infinite)");
  6352. if (selected < -1 || selected > 9999) {
  6353. wlogprint("Invalid selection\n");
  6354. goto retry;
  6355. }
  6356. opt_retries = selected;
  6357. goto retry;
  6358. } else if (!strncasecmp(&input, "w", 1)) {
  6359. FILE *fcfg;
  6360. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6361. default_save_file(filename);
  6362. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6363. str = curses_input(prompt);
  6364. if (str) {
  6365. struct stat statbuf;
  6366. strcpy(filename, str);
  6367. free(str);
  6368. if (!stat(filename, &statbuf)) {
  6369. wlogprint("File exists, overwrite?\n");
  6370. input = getch();
  6371. if (strncasecmp(&input, "y", 1))
  6372. goto retry;
  6373. }
  6374. }
  6375. fcfg = fopen(filename, "w");
  6376. if (!fcfg) {
  6377. wlogprint("Cannot open or create file\n");
  6378. goto retry;
  6379. }
  6380. write_config(fcfg);
  6381. fclose(fcfg);
  6382. goto retry;
  6383. } else if (!strncasecmp(&input, "b", 1)) {
  6384. wlogprint("Are you sure?\n");
  6385. input = getch();
  6386. if (!strncasecmp(&input, "y", 1))
  6387. app_restart();
  6388. else
  6389. clear_logwin();
  6390. } else
  6391. clear_logwin();
  6392. loginput_mode(0);
  6393. immedok(logwin, false);
  6394. }
  6395. int scan_serial(const char *);
  6396. static
  6397. void _managetui_msg(const char *repr, const char **msg)
  6398. {
  6399. if (*msg)
  6400. {
  6401. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6402. wattron(logwin, A_BOLD);
  6403. wlogprint("%s", *msg);
  6404. wattroff(logwin, A_BOLD);
  6405. *msg = NULL;
  6406. }
  6407. logwin_update();
  6408. }
  6409. void manage_device(void)
  6410. {
  6411. char logline[256];
  6412. const char *msg = NULL;
  6413. struct cgpu_info *cgpu;
  6414. const struct device_drv *drv;
  6415. selecting_device = true;
  6416. immedok(logwin, true);
  6417. loginput_mode(12);
  6418. devchange:
  6419. if (unlikely(!total_devices))
  6420. {
  6421. clear_logwin();
  6422. wlogprint("(no devices)\n");
  6423. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6424. _managetui_msg("(none)", &msg);
  6425. int input = getch();
  6426. switch (input)
  6427. {
  6428. case '+': case '=': // add new device
  6429. goto addnew;
  6430. default:
  6431. goto out;
  6432. }
  6433. }
  6434. cgpu = devices[selected_device];
  6435. drv = cgpu->drv;
  6436. refresh_devstatus();
  6437. refresh:
  6438. clear_logwin();
  6439. wlogprint("Select processor to manage using up/down arrow keys\n");
  6440. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6441. wattron(logwin, A_BOLD);
  6442. wlogprint("%s", logline);
  6443. wattroff(logwin, A_BOLD);
  6444. wlogprint("\n");
  6445. if (cgpu->dev_manufacturer)
  6446. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6447. else
  6448. if (cgpu->dev_product)
  6449. wlogprint(" %s\n", cgpu->dev_product);
  6450. if (cgpu->dev_serial)
  6451. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6452. if (cgpu->kname)
  6453. wlogprint("Kernel: %s\n", cgpu->kname);
  6454. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6455. drv->proc_wlogprint_status(cgpu);
  6456. wlogprint("\n");
  6457. // TODO: Last share at TIMESTAMP on pool N
  6458. // TODO: Custom device info/commands
  6459. if (cgpu->deven != DEV_ENABLED)
  6460. wlogprint("[E]nable ");
  6461. if (cgpu->deven != DEV_DISABLED)
  6462. wlogprint("[D]isable ");
  6463. if (drv->identify_device)
  6464. wlogprint("[I]dentify ");
  6465. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6466. drv->proc_tui_wlogprint_choices(cgpu);
  6467. wlogprint("\n");
  6468. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6469. _managetui_msg(cgpu->proc_repr, &msg);
  6470. while (true)
  6471. {
  6472. int input = getch();
  6473. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6474. switch (input) {
  6475. case 'd': case 'D':
  6476. if (cgpu->deven == DEV_DISABLED)
  6477. msg = "Processor already disabled\n";
  6478. else
  6479. {
  6480. cgpu->deven = DEV_DISABLED;
  6481. msg = "Processor being disabled\n";
  6482. }
  6483. goto refresh;
  6484. case 'e': case 'E':
  6485. if (cgpu->deven == DEV_ENABLED)
  6486. msg = "Processor already enabled\n";
  6487. else
  6488. {
  6489. proc_enable(cgpu);
  6490. msg = "Processor being enabled\n";
  6491. }
  6492. goto refresh;
  6493. case 'i': case 'I':
  6494. if (drv->identify_device && drv->identify_device(cgpu))
  6495. msg = "Identify command sent\n";
  6496. else
  6497. goto key_default;
  6498. goto refresh;
  6499. case KEY_DOWN:
  6500. if (selected_device >= total_devices - 1)
  6501. break;
  6502. ++selected_device;
  6503. goto devchange;
  6504. case KEY_UP:
  6505. if (selected_device <= 0)
  6506. break;
  6507. --selected_device;
  6508. goto devchange;
  6509. case KEY_NPAGE:
  6510. {
  6511. if (selected_device >= total_devices - 1)
  6512. break;
  6513. struct cgpu_info *mdev = devices[selected_device]->device;
  6514. do {
  6515. ++selected_device;
  6516. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6517. goto devchange;
  6518. }
  6519. case KEY_PPAGE:
  6520. {
  6521. if (selected_device <= 0)
  6522. break;
  6523. struct cgpu_info *mdev = devices[selected_device]->device;
  6524. do {
  6525. --selected_device;
  6526. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6527. goto devchange;
  6528. }
  6529. case '/': case '?': // find device
  6530. {
  6531. static char *pattern = NULL;
  6532. char *newpattern = curses_input("Enter pattern");
  6533. if (newpattern)
  6534. {
  6535. free(pattern);
  6536. pattern = newpattern;
  6537. }
  6538. else
  6539. if (!pattern)
  6540. pattern = calloc(1, 1);
  6541. int match = cgpu_search(pattern, selected_device + 1);
  6542. if (match == -1)
  6543. {
  6544. msg = "Couldn't find device\n";
  6545. goto refresh;
  6546. }
  6547. selected_device = match;
  6548. goto devchange;
  6549. }
  6550. case '+': case '=': // add new device
  6551. {
  6552. addnew:
  6553. clear_logwin();
  6554. _wlogprint(
  6555. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6556. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6557. "For example: erupter:"
  6558. #ifdef WIN32
  6559. "\\\\.\\COM40"
  6560. #elif defined(__APPLE__)
  6561. "/dev/cu.SLAB_USBtoUART"
  6562. #else
  6563. "/dev/ttyUSB39"
  6564. #endif
  6565. "\n"
  6566. );
  6567. char *scanser = curses_input("Enter target");
  6568. if (scan_serial(scanser))
  6569. {
  6570. selected_device = total_devices - 1;
  6571. msg = "Device scan succeeded\n";
  6572. }
  6573. else
  6574. msg = "No new devices found\n";
  6575. goto devchange;
  6576. }
  6577. case 'Q': case 'q':
  6578. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6579. case '\x1b': // ESC
  6580. case KEY_ENTER:
  6581. case '\r': // Ctrl-M on Windows, with nonl
  6582. #ifdef PADENTER
  6583. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6584. #endif
  6585. case '\n':
  6586. goto out;
  6587. default:
  6588. ;
  6589. key_default:
  6590. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6591. {
  6592. msg = drv->proc_tui_handle_choice(cgpu, input);
  6593. if (msg)
  6594. goto refresh;
  6595. }
  6596. }
  6597. }
  6598. out:
  6599. selecting_device = false;
  6600. loginput_mode(0);
  6601. immedok(logwin, false);
  6602. }
  6603. void show_help(void)
  6604. {
  6605. loginput_mode(10);
  6606. // NOTE: wlogprint is a macro with a buffer limit
  6607. _wlogprint(
  6608. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6609. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6610. "E: # shares * diff per 2kB bw | U: shares/minute | BS: best share ever found\n"
  6611. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6612. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6613. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6614. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6615. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6616. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6617. U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6618. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6619. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6620. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6621. "\n"
  6622. "devices/processors hashing (only for totals line), hottest temperature\n"
  6623. );
  6624. wlogprint(
  6625. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6626. , opt_log_interval);
  6627. _wlogprint(
  6628. "A: accepted shares | R: rejected+discarded(%% of total)\n"
  6629. "HW: hardware errors / %% nonces invalid\n"
  6630. "\n"
  6631. "Press any key to clear"
  6632. );
  6633. logwin_update();
  6634. getch();
  6635. loginput_mode(0);
  6636. }
  6637. static void *input_thread(void __maybe_unused *userdata)
  6638. {
  6639. RenameThread("input");
  6640. if (!curses_active)
  6641. return NULL;
  6642. while (1) {
  6643. int input;
  6644. input = getch();
  6645. switch (input) {
  6646. case 'h': case 'H': case '?':
  6647. case KEY_F(1):
  6648. show_help();
  6649. break;
  6650. case 'q': case 'Q':
  6651. kill_work();
  6652. return NULL;
  6653. case 'd': case 'D':
  6654. display_options();
  6655. break;
  6656. case 'm': case 'M':
  6657. manage_device();
  6658. break;
  6659. case 'p': case 'P':
  6660. display_pools();
  6661. break;
  6662. case 's': case 'S':
  6663. set_options();
  6664. break;
  6665. #ifdef HAVE_CURSES
  6666. case KEY_DOWN:
  6667. {
  6668. const int visible_lines = logcursor - devcursor;
  6669. const int invisible_lines = total_lines - visible_lines;
  6670. if (devsummaryYOffset <= -invisible_lines)
  6671. break;
  6672. devsummaryYOffset -= 2;
  6673. }
  6674. case KEY_UP:
  6675. if (devsummaryYOffset == 0)
  6676. break;
  6677. ++devsummaryYOffset;
  6678. refresh_devstatus();
  6679. break;
  6680. case KEY_NPAGE:
  6681. {
  6682. const int visible_lines = logcursor - devcursor;
  6683. const int invisible_lines = total_lines - visible_lines;
  6684. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6685. devsummaryYOffset = -invisible_lines;
  6686. else
  6687. devsummaryYOffset -= visible_lines;
  6688. refresh_devstatus();
  6689. break;
  6690. }
  6691. case KEY_PPAGE:
  6692. {
  6693. const int visible_lines = logcursor - devcursor;
  6694. if (devsummaryYOffset + visible_lines >= 0)
  6695. devsummaryYOffset = 0;
  6696. else
  6697. devsummaryYOffset += visible_lines;
  6698. refresh_devstatus();
  6699. break;
  6700. }
  6701. #endif
  6702. }
  6703. if (opt_realquiet) {
  6704. disable_curses();
  6705. break;
  6706. }
  6707. }
  6708. return NULL;
  6709. }
  6710. #endif
  6711. static void *api_thread(void *userdata)
  6712. {
  6713. struct thr_info *mythr = userdata;
  6714. pthread_detach(pthread_self());
  6715. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6716. RenameThread("rpc");
  6717. api(api_thr_id);
  6718. mythr->has_pth = false;
  6719. return NULL;
  6720. }
  6721. void thread_reportin(struct thr_info *thr)
  6722. {
  6723. cgtime(&thr->last);
  6724. thr->cgpu->status = LIFE_WELL;
  6725. thr->getwork = 0;
  6726. thr->cgpu->device_last_well = time(NULL);
  6727. }
  6728. void thread_reportout(struct thr_info *thr)
  6729. {
  6730. thr->getwork = time(NULL);
  6731. }
  6732. static void hashmeter(int thr_id, struct timeval *diff,
  6733. uint64_t hashes_done)
  6734. {
  6735. char logstatusline[256];
  6736. struct timeval temp_tv_end, total_diff;
  6737. double secs;
  6738. double local_secs;
  6739. static double local_mhashes_done = 0;
  6740. double local_mhashes = (double)hashes_done / 1000000.0;
  6741. bool showlog = false;
  6742. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6743. char rejpcbuf[6];
  6744. char bnbuf[6];
  6745. struct thr_info *thr;
  6746. /* Update the last time this thread reported in */
  6747. if (thr_id >= 0) {
  6748. thr = get_thread(thr_id);
  6749. cgtime(&(thr->last));
  6750. thr->cgpu->device_last_well = time(NULL);
  6751. }
  6752. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6753. /* So we can call hashmeter from a non worker thread */
  6754. if (thr_id >= 0) {
  6755. struct cgpu_info *cgpu = thr->cgpu;
  6756. int threadobj = cgpu->threads ?: 1;
  6757. double thread_rolling = 0.0;
  6758. int i;
  6759. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6760. thr_id, hashes_done, hashes_done / 1000 / secs);
  6761. /* Rolling average for each thread and each device */
  6762. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6763. for (i = 0; i < threadobj; i++)
  6764. thread_rolling += cgpu->thr[i]->rolling;
  6765. mutex_lock(&hash_lock);
  6766. decay_time(&cgpu->rolling, thread_rolling, secs);
  6767. cgpu->total_mhashes += local_mhashes;
  6768. mutex_unlock(&hash_lock);
  6769. // If needed, output detailed, per-device stats
  6770. if (want_per_device_stats) {
  6771. struct timeval now;
  6772. struct timeval elapsed;
  6773. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6774. cgtime(&now);
  6775. timersub(&now, last_msg_tv, &elapsed);
  6776. if (opt_log_interval <= elapsed.tv_sec) {
  6777. struct cgpu_info *cgpu = thr->cgpu;
  6778. char logline[255];
  6779. *last_msg_tv = now;
  6780. get_statline(logline, sizeof(logline), cgpu);
  6781. if (!curses_active) {
  6782. printf("%s \r", logline);
  6783. fflush(stdout);
  6784. } else
  6785. applog(LOG_INFO, "%s", logline);
  6786. }
  6787. }
  6788. }
  6789. /* Totals are updated by all threads so can race without locking */
  6790. mutex_lock(&hash_lock);
  6791. cgtime(&temp_tv_end);
  6792. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6793. total_mhashes_done += local_mhashes;
  6794. local_mhashes_done += local_mhashes;
  6795. /* Only update with opt_log_interval */
  6796. if (total_diff.tv_sec < opt_log_interval)
  6797. goto out_unlock;
  6798. showlog = true;
  6799. cgtime(&total_tv_end);
  6800. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6801. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6802. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6803. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6804. total_secs = (double)total_diff.tv_sec +
  6805. ((double)total_diff.tv_usec / 1000000.0);
  6806. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6807. multi_format_unit_array2(
  6808. ((char*[]){cHr, aHr, uHr}),
  6809. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6810. true, "h/s", H2B_SHORT,
  6811. 3,
  6812. 1e6*total_rolling,
  6813. 1e6*total_mhashes_done / total_secs,
  6814. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6815. int ui_accepted, ui_rejected, ui_stale;
  6816. if (opt_weighed_stats)
  6817. {
  6818. ui_accepted = total_diff_accepted;
  6819. ui_rejected = total_diff_rejected;
  6820. ui_stale = total_diff_stale;
  6821. }
  6822. else
  6823. {
  6824. ui_accepted = total_accepted;
  6825. ui_rejected = total_rejected;
  6826. ui_stale = total_stale;
  6827. }
  6828. #ifdef HAVE_CURSES
  6829. if (curses_active_locked()) {
  6830. float temp = 0;
  6831. struct cgpu_info *proc, *last_working_dev = NULL;
  6832. int i, working_devs = 0, working_procs = 0;
  6833. int divx;
  6834. bool bad = false;
  6835. // Find the highest temperature of all processors
  6836. for (i = 0; i < total_devices; ++i)
  6837. {
  6838. proc = get_devices(i);
  6839. if (proc->temp > temp)
  6840. temp = proc->temp;
  6841. if (unlikely(proc->deven == DEV_DISABLED))
  6842. ; // Just need to block it off from both conditions
  6843. else
  6844. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6845. {
  6846. if (proc->rolling > .1)
  6847. {
  6848. ++working_procs;
  6849. if (proc->device != last_working_dev)
  6850. {
  6851. ++working_devs;
  6852. last_working_dev = proc->device;
  6853. }
  6854. }
  6855. }
  6856. else
  6857. bad = true;
  6858. }
  6859. if (working_devs == working_procs)
  6860. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6861. else
  6862. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6863. divx = 7;
  6864. if (opt_show_procs && !opt_compact)
  6865. ++divx;
  6866. if (bad)
  6867. {
  6868. divx += sizeof(U8_BAD_START)-1;
  6869. strcpy(&statusline[divx], U8_BAD_END);
  6870. divx += sizeof(U8_BAD_END)-1;
  6871. }
  6872. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6873. format_statline(statusline, sizeof(statusline),
  6874. cHr, aHr,
  6875. uHr,
  6876. ui_accepted,
  6877. ui_rejected,
  6878. ui_stale,
  6879. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6880. hw_errors,
  6881. total_bad_diff1, total_bad_diff1 + total_diff1);
  6882. unlock_curses();
  6883. }
  6884. #endif
  6885. // Add a space
  6886. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6887. uHr[5] = ' ';
  6888. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6889. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6890. snprintf(logstatusline, sizeof(logstatusline),
  6891. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6892. want_per_device_stats ? "ALL " : "",
  6893. opt_log_interval,
  6894. cHr, aHr,
  6895. uHr,
  6896. ui_accepted,
  6897. ui_rejected,
  6898. ui_stale,
  6899. rejpcbuf,
  6900. hw_errors,
  6901. bnbuf
  6902. );
  6903. local_mhashes_done = 0;
  6904. out_unlock:
  6905. mutex_unlock(&hash_lock);
  6906. if (showlog) {
  6907. if (!curses_active) {
  6908. printf("%s \r", logstatusline);
  6909. fflush(stdout);
  6910. } else
  6911. applog(LOG_INFO, "%s", logstatusline);
  6912. }
  6913. }
  6914. void hashmeter2(struct thr_info *thr)
  6915. {
  6916. struct timeval tv_now, tv_elapsed;
  6917. timerclear(&thr->tv_hashes_done);
  6918. cgtime(&tv_now);
  6919. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6920. /* Update the hashmeter at most 5 times per second */
  6921. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6922. tv_elapsed.tv_sec >= opt_log_interval) {
  6923. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6924. thr->hashes_done = 0;
  6925. thr->tv_lastupdate = tv_now;
  6926. }
  6927. }
  6928. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6929. struct stratum_share *sshare)
  6930. {
  6931. struct work *work = sshare->work;
  6932. share_result(val, res_val, err_val, work, false, "");
  6933. }
  6934. /* Parses stratum json responses and tries to find the id that the request
  6935. * matched to and treat it accordingly. */
  6936. bool parse_stratum_response(struct pool *pool, char *s)
  6937. {
  6938. json_t *val = NULL, *err_val, *res_val, *id_val;
  6939. struct stratum_share *sshare;
  6940. json_error_t err;
  6941. bool ret = false;
  6942. int id;
  6943. val = JSON_LOADS(s, &err);
  6944. if (!val) {
  6945. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6946. goto out;
  6947. }
  6948. res_val = json_object_get(val, "result");
  6949. err_val = json_object_get(val, "error");
  6950. id_val = json_object_get(val, "id");
  6951. if (json_is_null(id_val) || !id_val) {
  6952. char *ss;
  6953. if (err_val)
  6954. ss = json_dumps(err_val, JSON_INDENT(3));
  6955. else
  6956. ss = strdup("(unknown reason)");
  6957. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6958. free(ss);
  6959. goto out;
  6960. }
  6961. if (!json_is_integer(id_val)) {
  6962. if (json_is_string(id_val)
  6963. && !strncmp(json_string_value(id_val), "txlist", 6))
  6964. {
  6965. const bool is_array = json_is_array(res_val);
  6966. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6967. is_array ? "transaction list" : "no-transaction-list response",
  6968. pool->pool_no, &json_string_value(id_val)[6]);
  6969. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6970. // We only care about a transaction list for the current job id
  6971. goto fishy;
  6972. // Check that the transactions actually hash to the merkle links
  6973. {
  6974. unsigned maxtx = 1 << pool->swork.merkles;
  6975. unsigned mintx = maxtx >> 1;
  6976. --maxtx;
  6977. unsigned acttx = (unsigned)json_array_size(res_val);
  6978. if (acttx < mintx || acttx > maxtx) {
  6979. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6980. pool->pool_no, acttx, mintx, maxtx);
  6981. goto fishy;
  6982. }
  6983. // TODO: Check hashes match actual merkle links
  6984. }
  6985. pool_set_opaque(pool, false);
  6986. timer_unset(&pool->swork.tv_transparency);
  6987. fishy:
  6988. ret = true;
  6989. }
  6990. goto out;
  6991. }
  6992. id = json_integer_value(id_val);
  6993. mutex_lock(&sshare_lock);
  6994. HASH_FIND_INT(stratum_shares, &id, sshare);
  6995. if (sshare)
  6996. HASH_DEL(stratum_shares, sshare);
  6997. mutex_unlock(&sshare_lock);
  6998. if (!sshare) {
  6999. double pool_diff;
  7000. /* Since the share is untracked, we can only guess at what the
  7001. * work difficulty is based on the current pool diff. */
  7002. cg_rlock(&pool->data_lock);
  7003. pool_diff = pool->swork.diff;
  7004. cg_runlock(&pool->data_lock);
  7005. if (json_is_true(res_val)) {
  7006. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7007. /* We don't know what device this came from so we can't
  7008. * attribute the work to the relevant cgpu */
  7009. mutex_lock(&stats_lock);
  7010. total_accepted++;
  7011. pool->accepted++;
  7012. total_diff_accepted += pool_diff;
  7013. pool->diff_accepted += pool_diff;
  7014. mutex_unlock(&stats_lock);
  7015. } else {
  7016. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7017. mutex_lock(&stats_lock);
  7018. total_rejected++;
  7019. pool->rejected++;
  7020. total_diff_rejected += pool_diff;
  7021. pool->diff_rejected += pool_diff;
  7022. mutex_unlock(&stats_lock);
  7023. }
  7024. goto out;
  7025. }
  7026. else {
  7027. mutex_lock(&submitting_lock);
  7028. --total_submitting;
  7029. mutex_unlock(&submitting_lock);
  7030. }
  7031. stratum_share_result(val, res_val, err_val, sshare);
  7032. free_work(sshare->work);
  7033. free(sshare);
  7034. ret = true;
  7035. out:
  7036. if (val)
  7037. json_decref(val);
  7038. return ret;
  7039. }
  7040. static void shutdown_stratum(struct pool *pool)
  7041. {
  7042. // Shut down Stratum as if we never had it
  7043. pool->stratum_active = false;
  7044. pool->stratum_init = false;
  7045. pool->has_stratum = false;
  7046. shutdown(pool->sock, SHUT_RDWR);
  7047. free(pool->stratum_url);
  7048. if (pool->sockaddr_url == pool->stratum_url)
  7049. pool->sockaddr_url = NULL;
  7050. pool->stratum_url = NULL;
  7051. }
  7052. void clear_stratum_shares(struct pool *pool)
  7053. {
  7054. int my_mining_threads = mining_threads; // Cached outside of locking
  7055. struct stratum_share *sshare, *tmpshare;
  7056. struct work *work;
  7057. struct cgpu_info *cgpu;
  7058. double diff_cleared = 0;
  7059. double thr_diff_cleared[my_mining_threads];
  7060. int cleared = 0;
  7061. int thr_cleared[my_mining_threads];
  7062. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7063. for (int i = 0; i < my_mining_threads; ++i)
  7064. {
  7065. thr_diff_cleared[i] = 0;
  7066. thr_cleared[i] = 0;
  7067. }
  7068. mutex_lock(&sshare_lock);
  7069. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7070. work = sshare->work;
  7071. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7072. HASH_DEL(stratum_shares, sshare);
  7073. sharelog("disconnect", work);
  7074. diff_cleared += sshare->work->work_difficulty;
  7075. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7076. ++thr_cleared[work->thr_id];
  7077. free_work(sshare->work);
  7078. free(sshare);
  7079. cleared++;
  7080. }
  7081. }
  7082. mutex_unlock(&sshare_lock);
  7083. if (cleared) {
  7084. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7085. mutex_lock(&stats_lock);
  7086. pool->stale_shares += cleared;
  7087. total_stale += cleared;
  7088. pool->diff_stale += diff_cleared;
  7089. total_diff_stale += diff_cleared;
  7090. for (int i = 0; i < my_mining_threads; ++i)
  7091. if (thr_cleared[i])
  7092. {
  7093. cgpu = get_thr_cgpu(i);
  7094. cgpu->diff_stale += thr_diff_cleared[i];
  7095. cgpu->stale += thr_cleared[i];
  7096. }
  7097. mutex_unlock(&stats_lock);
  7098. mutex_lock(&submitting_lock);
  7099. total_submitting -= cleared;
  7100. mutex_unlock(&submitting_lock);
  7101. }
  7102. }
  7103. static void resubmit_stratum_shares(struct pool *pool)
  7104. {
  7105. struct stratum_share *sshare, *tmpshare;
  7106. struct work *work;
  7107. unsigned resubmitted = 0;
  7108. mutex_lock(&sshare_lock);
  7109. mutex_lock(&submitting_lock);
  7110. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7111. if (sshare->work->pool != pool)
  7112. continue;
  7113. HASH_DEL(stratum_shares, sshare);
  7114. work = sshare->work;
  7115. DL_APPEND(submit_waiting, work);
  7116. free(sshare);
  7117. ++resubmitted;
  7118. }
  7119. mutex_unlock(&submitting_lock);
  7120. mutex_unlock(&sshare_lock);
  7121. if (resubmitted) {
  7122. notifier_wake(submit_waiting_notifier);
  7123. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7124. }
  7125. }
  7126. static void clear_pool_work(struct pool *pool)
  7127. {
  7128. struct work *work, *tmp;
  7129. int cleared = 0;
  7130. mutex_lock(stgd_lock);
  7131. HASH_ITER(hh, staged_work, work, tmp) {
  7132. if (work->pool == pool) {
  7133. HASH_DEL(staged_work, work);
  7134. free_work(work);
  7135. cleared++;
  7136. staged_full = false;
  7137. }
  7138. }
  7139. mutex_unlock(stgd_lock);
  7140. }
  7141. static int cp_prio(void)
  7142. {
  7143. int prio;
  7144. cg_rlock(&control_lock);
  7145. prio = currentpool->prio;
  7146. cg_runlock(&control_lock);
  7147. return prio;
  7148. }
  7149. /* We only need to maintain a secondary pool connection when we need the
  7150. * capacity to get work from the backup pools while still on the primary */
  7151. static bool cnx_needed(struct pool *pool)
  7152. {
  7153. struct pool *cp;
  7154. if (pool->enabled != POOL_ENABLED)
  7155. return false;
  7156. /* Balance strategies need all pools online */
  7157. if (pool_strategy == POOL_BALANCE)
  7158. return true;
  7159. if (pool_strategy == POOL_LOADBALANCE)
  7160. return true;
  7161. /* Idle stratum pool needs something to kick it alive again */
  7162. if (pool->has_stratum && pool->idle)
  7163. return true;
  7164. /* Getwork pools without opt_fail_only need backup pools up to be able
  7165. * to leak shares */
  7166. cp = current_pool();
  7167. if (cp == pool)
  7168. return true;
  7169. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7170. return true;
  7171. /* Keep the connection open to allow any stray shares to be submitted
  7172. * on switching pools for 2 minutes. */
  7173. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7174. return true;
  7175. /* If the pool has only just come to life and is higher priority than
  7176. * the current pool keep the connection open so we can fail back to
  7177. * it. */
  7178. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7179. return true;
  7180. if (pool_unworkable(cp))
  7181. return true;
  7182. /* We've run out of work, bring anything back to life. */
  7183. if (no_work)
  7184. return true;
  7185. return false;
  7186. }
  7187. static void wait_lpcurrent(struct pool *pool);
  7188. static void pool_resus(struct pool *pool);
  7189. static void gen_stratum_work(struct pool *pool, struct work *work);
  7190. static void stratum_resumed(struct pool *pool)
  7191. {
  7192. if (!pool->stratum_notify)
  7193. return;
  7194. if (pool_tclear(pool, &pool->idle)) {
  7195. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7196. pool_resus(pool);
  7197. }
  7198. }
  7199. static bool supports_resume(struct pool *pool)
  7200. {
  7201. bool ret;
  7202. cg_rlock(&pool->data_lock);
  7203. ret = (pool->sessionid != NULL);
  7204. cg_runlock(&pool->data_lock);
  7205. return ret;
  7206. }
  7207. /* One stratum thread per pool that has stratum waits on the socket checking
  7208. * for new messages and for the integrity of the socket connection. We reset
  7209. * the connection based on the integrity of the receive side only as the send
  7210. * side will eventually expire data it fails to send. */
  7211. static void *stratum_thread(void *userdata)
  7212. {
  7213. struct pool *pool = (struct pool *)userdata;
  7214. pthread_detach(pthread_self());
  7215. char threadname[20];
  7216. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7217. RenameThread(threadname);
  7218. srand(time(NULL) + (intptr_t)userdata);
  7219. while (42) {
  7220. struct timeval timeout;
  7221. int sel_ret;
  7222. fd_set rd;
  7223. char *s;
  7224. int sock;
  7225. if (unlikely(!pool->has_stratum))
  7226. break;
  7227. /* Check to see whether we need to maintain this connection
  7228. * indefinitely or just bring it up when we switch to this
  7229. * pool */
  7230. while (true)
  7231. {
  7232. sock = pool->sock;
  7233. if (sock == INVSOCK)
  7234. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7235. pool->pool_no);
  7236. else
  7237. if (!sock_full(pool) && !cnx_needed(pool))
  7238. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7239. pool->pool_no);
  7240. else
  7241. break;
  7242. suspend_stratum(pool);
  7243. clear_stratum_shares(pool);
  7244. clear_pool_work(pool);
  7245. wait_lpcurrent(pool);
  7246. if (!restart_stratum(pool)) {
  7247. pool_died(pool);
  7248. while (!restart_stratum(pool)) {
  7249. if (pool->removed)
  7250. goto out;
  7251. cgsleep_ms(30000);
  7252. }
  7253. }
  7254. }
  7255. FD_ZERO(&rd);
  7256. FD_SET(sock, &rd);
  7257. timeout.tv_sec = 120;
  7258. timeout.tv_usec = 0;
  7259. /* If we fail to receive any notify messages for 2 minutes we
  7260. * assume the connection has been dropped and treat this pool
  7261. * as dead */
  7262. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7263. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7264. s = NULL;
  7265. } else
  7266. s = recv_line(pool);
  7267. if (!s) {
  7268. if (!pool->has_stratum)
  7269. break;
  7270. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7271. pool->getfail_occasions++;
  7272. total_go++;
  7273. mutex_lock(&pool->stratum_lock);
  7274. pool->stratum_active = pool->stratum_notify = false;
  7275. pool->sock = INVSOCK;
  7276. mutex_unlock(&pool->stratum_lock);
  7277. /* If the socket to our stratum pool disconnects, all
  7278. * submissions need to be discarded or resent. */
  7279. if (!supports_resume(pool))
  7280. clear_stratum_shares(pool);
  7281. else
  7282. resubmit_stratum_shares(pool);
  7283. clear_pool_work(pool);
  7284. if (pool == current_pool())
  7285. restart_threads();
  7286. if (restart_stratum(pool))
  7287. continue;
  7288. shutdown_stratum(pool);
  7289. pool_died(pool);
  7290. break;
  7291. }
  7292. /* Check this pool hasn't died while being a backup pool and
  7293. * has not had its idle flag cleared */
  7294. stratum_resumed(pool);
  7295. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7296. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7297. free(s);
  7298. if (pool->swork.clean) {
  7299. struct work *work = make_work();
  7300. /* Generate a single work item to update the current
  7301. * block database */
  7302. pool->swork.clean = false;
  7303. gen_stratum_work(pool, work);
  7304. /* Try to extract block height from coinbase scriptSig */
  7305. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7306. unsigned char cb_height_sz;
  7307. cb_height_sz = bin_height[-1];
  7308. if (cb_height_sz == 3) {
  7309. // FIXME: The block number will overflow this by AD 2173
  7310. uint32_t block_id = ((uint32_t*)work->data)[1];
  7311. uint32_t height = 0;
  7312. memcpy(&height, bin_height, 3);
  7313. height = le32toh(height);
  7314. have_block_height(block_id, height);
  7315. }
  7316. ++pool->work_restart_id;
  7317. if (test_work_current(work)) {
  7318. /* Only accept a work update if this stratum
  7319. * connection is from the current pool */
  7320. if (pool == current_pool()) {
  7321. restart_threads();
  7322. applog(
  7323. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7324. "Stratum from pool %d requested work update", pool->pool_no);
  7325. }
  7326. } else
  7327. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7328. free_work(work);
  7329. }
  7330. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7331. // More than 4 timmills past since requested transactions
  7332. timer_unset(&pool->swork.tv_transparency);
  7333. pool_set_opaque(pool, true);
  7334. }
  7335. }
  7336. out:
  7337. return NULL;
  7338. }
  7339. static void init_stratum_thread(struct pool *pool)
  7340. {
  7341. have_longpoll = true;
  7342. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7343. quit(1, "Failed to create stratum thread");
  7344. }
  7345. static void *longpoll_thread(void *userdata);
  7346. static bool stratum_works(struct pool *pool)
  7347. {
  7348. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7349. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7350. return false;
  7351. if (pool->stratum_active)
  7352. return true;
  7353. if (!initiate_stratum(pool))
  7354. return false;
  7355. return true;
  7356. }
  7357. static bool pool_active(struct pool *pool, bool pinging)
  7358. {
  7359. struct timeval tv_getwork, tv_getwork_reply;
  7360. bool ret = false;
  7361. json_t *val;
  7362. CURL *curl;
  7363. int rolltime;
  7364. char *rpc_req;
  7365. struct work *work;
  7366. enum pool_protocol proto;
  7367. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7368. /* This is the central point we activate stratum when we can */
  7369. curl = curl_easy_init();
  7370. if (unlikely(!curl)) {
  7371. applog(LOG_ERR, "CURL initialisation failed");
  7372. return false;
  7373. }
  7374. if (!(want_gbt || want_getwork))
  7375. goto nohttp;
  7376. work = make_work();
  7377. /* Probe for GBT support on first pass */
  7378. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7379. tryagain:
  7380. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7381. work->pool = pool;
  7382. if (!rpc_req)
  7383. goto out;
  7384. pool->probed = false;
  7385. cgtime(&tv_getwork);
  7386. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7387. true, false, &rolltime, pool, false);
  7388. cgtime(&tv_getwork_reply);
  7389. free(rpc_req);
  7390. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7391. * and if so, switch to that in preference to getwork if it works */
  7392. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7393. if (!pool->has_stratum) {
  7394. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7395. if (!pool->rpc_url)
  7396. pool->rpc_url = strdup(pool->stratum_url);
  7397. pool->has_stratum = true;
  7398. }
  7399. free_work(work);
  7400. if (val)
  7401. json_decref(val);
  7402. retry_stratum:
  7403. curl_easy_cleanup(curl);
  7404. /* We create the stratum thread for each pool just after
  7405. * successful authorisation. Once the init flag has been set
  7406. * we never unset it and the stratum thread is responsible for
  7407. * setting/unsetting the active flag */
  7408. bool init = pool_tset(pool, &pool->stratum_init);
  7409. if (!init) {
  7410. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7411. if (ret)
  7412. {
  7413. detect_algo = 2;
  7414. init_stratum_thread(pool);
  7415. }
  7416. else
  7417. pool_tclear(pool, &pool->stratum_init);
  7418. return ret;
  7419. }
  7420. return pool->stratum_active;
  7421. }
  7422. else if (pool->has_stratum)
  7423. shutdown_stratum(pool);
  7424. if (val) {
  7425. bool rc;
  7426. json_t *res;
  7427. res = json_object_get(val, "result");
  7428. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7429. goto badwork;
  7430. work->rolltime = rolltime;
  7431. rc = work_decode(pool, work, val);
  7432. if (rc) {
  7433. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7434. pool->pool_no, pool->rpc_url);
  7435. work->pool = pool;
  7436. copy_time(&work->tv_getwork, &tv_getwork);
  7437. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7438. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7439. calc_diff(work, 0);
  7440. update_last_work(work);
  7441. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7442. stage_work(work);
  7443. total_getworks++;
  7444. pool->getwork_requested++;
  7445. ret = true;
  7446. cgtime(&pool->tv_idle);
  7447. } else {
  7448. badwork:
  7449. json_decref(val);
  7450. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7451. pool->pool_no, pool->rpc_url);
  7452. pool->proto = proto = pool_protocol_fallback(proto);
  7453. if (PLP_NONE != proto)
  7454. goto tryagain;
  7455. free_work(work);
  7456. goto out;
  7457. }
  7458. json_decref(val);
  7459. if (proto != pool->proto) {
  7460. pool->proto = proto;
  7461. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7462. }
  7463. if (pool->lp_url)
  7464. goto out;
  7465. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7466. const struct blktmpl_longpoll_req *lp;
  7467. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7468. // NOTE: work_decode takes care of lp id
  7469. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7470. if (!pool->lp_url)
  7471. {
  7472. ret = false;
  7473. goto out;
  7474. }
  7475. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7476. }
  7477. else
  7478. if (pool->hdr_path && want_getwork) {
  7479. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7480. if (!pool->lp_url)
  7481. {
  7482. ret = false;
  7483. goto out;
  7484. }
  7485. pool->lp_proto = PLP_GETWORK;
  7486. } else
  7487. pool->lp_url = NULL;
  7488. if (want_longpoll && !pool->lp_started) {
  7489. pool->lp_started = true;
  7490. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7491. quit(1, "Failed to create pool longpoll thread");
  7492. }
  7493. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7494. pool->proto = proto;
  7495. goto tryagain;
  7496. } else {
  7497. free_work(work);
  7498. nohttp:
  7499. /* If we failed to parse a getwork, this could be a stratum
  7500. * url without the prefix stratum+tcp:// so let's check it */
  7501. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7502. pool->has_stratum = true;
  7503. goto retry_stratum;
  7504. }
  7505. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7506. pool->pool_no, pool->rpc_url);
  7507. if (!pinging)
  7508. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7509. }
  7510. out:
  7511. curl_easy_cleanup(curl);
  7512. return ret;
  7513. }
  7514. static void pool_resus(struct pool *pool)
  7515. {
  7516. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7517. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7518. else
  7519. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7520. }
  7521. static struct work *hash_pop(void)
  7522. {
  7523. struct work *work = NULL, *tmp;
  7524. int hc;
  7525. struct timespec ts;
  7526. retry:
  7527. mutex_lock(stgd_lock);
  7528. while (!HASH_COUNT(staged_work))
  7529. {
  7530. if (unlikely(staged_full))
  7531. {
  7532. if (likely(opt_queue < 10 + mining_threads))
  7533. {
  7534. ++opt_queue;
  7535. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7536. }
  7537. else
  7538. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7539. staged_full = false; // Let it fill up before triggering an underrun again
  7540. no_work = true;
  7541. }
  7542. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7543. pthread_cond_signal(&gws_cond);
  7544. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7545. {
  7546. run_cmd(cmd_idle);
  7547. pthread_cond_signal(&gws_cond);
  7548. pthread_cond_wait(&getq->cond, stgd_lock);
  7549. }
  7550. }
  7551. no_work = false;
  7552. hc = HASH_COUNT(staged_work);
  7553. /* Find clone work if possible, to allow masters to be reused */
  7554. if (hc > staged_rollable) {
  7555. HASH_ITER(hh, staged_work, work, tmp) {
  7556. if (!work_rollable(work))
  7557. break;
  7558. }
  7559. } else
  7560. work = staged_work;
  7561. if (can_roll(work) && should_roll(work))
  7562. {
  7563. // Instead of consuming it, force it to be cloned and grab the clone
  7564. mutex_unlock(stgd_lock);
  7565. clone_available();
  7566. goto retry;
  7567. }
  7568. HASH_DEL(staged_work, work);
  7569. if (work_rollable(work))
  7570. staged_rollable--;
  7571. /* Signal the getwork scheduler to look for more work */
  7572. pthread_cond_signal(&gws_cond);
  7573. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7574. pthread_cond_signal(&getq->cond);
  7575. mutex_unlock(stgd_lock);
  7576. work->pool->last_work_time = time(NULL);
  7577. cgtime(&work->pool->tv_last_work_time);
  7578. return work;
  7579. }
  7580. /* Clones work by rolling it if possible, and returning a clone instead of the
  7581. * original work item which gets staged again to possibly be rolled again in
  7582. * the future */
  7583. static struct work *clone_work(struct work *work)
  7584. {
  7585. int mrs = mining_threads + opt_queue - total_staged();
  7586. struct work *work_clone;
  7587. bool cloned;
  7588. if (mrs < 1)
  7589. return work;
  7590. cloned = false;
  7591. work_clone = make_clone(work);
  7592. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7593. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7594. stage_work(work_clone);
  7595. roll_work(work);
  7596. work_clone = make_clone(work);
  7597. /* Roll it again to prevent duplicates should this be used
  7598. * directly later on */
  7599. roll_work(work);
  7600. cloned = true;
  7601. }
  7602. if (cloned) {
  7603. stage_work(work);
  7604. return work_clone;
  7605. }
  7606. free_work(work_clone);
  7607. return work;
  7608. }
  7609. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7610. {
  7611. unsigned char hash1[32];
  7612. sha256(data, len, hash1);
  7613. sha256(hash1, 32, hash);
  7614. }
  7615. /* Diff 1 is a 256 bit unsigned integer of
  7616. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7617. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7618. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7619. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7620. {
  7621. uint64_t *data64, h64;
  7622. double d64;
  7623. d64 = diffone;
  7624. d64 /= diff;
  7625. d64 = ceil(d64);
  7626. h64 = d64;
  7627. memset(target, 0, 32);
  7628. if (d64 < 18446744073709551616.0) {
  7629. unsigned char *rtarget = target;
  7630. memset(rtarget, 0, 32);
  7631. if (opt_scrypt)
  7632. data64 = (uint64_t *)(rtarget + 2);
  7633. else
  7634. data64 = (uint64_t *)(rtarget + 4);
  7635. *data64 = htobe64(h64);
  7636. } else {
  7637. /* Support for the classic all FFs just-below-1 diff */
  7638. if (opt_scrypt)
  7639. memset(&target[2], 0xff, 30);
  7640. else
  7641. memset(&target[4], 0xff, 28);
  7642. }
  7643. }
  7644. void set_target(unsigned char *dest_target, double diff)
  7645. {
  7646. unsigned char rtarget[32];
  7647. bdiff_target_leadzero(rtarget, diff);
  7648. swab256(dest_target, rtarget);
  7649. if (opt_debug) {
  7650. char htarget[65];
  7651. bin2hex(htarget, rtarget, 32);
  7652. applog(LOG_DEBUG, "Generated target %s", htarget);
  7653. }
  7654. }
  7655. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7656. {
  7657. *dst = *src;
  7658. dst->job_id = strdup(src->job_id);
  7659. bytes_cpy(&dst->coinbase, &src->coinbase);
  7660. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7661. }
  7662. void stratum_work_clean(struct stratum_work * const swork)
  7663. {
  7664. free(swork->job_id);
  7665. bytes_free(&swork->coinbase);
  7666. bytes_free(&swork->merkle_bin);
  7667. }
  7668. /* Generates stratum based work based on the most recent notify information
  7669. * from the pool. This will keep generating work while a pool is down so we use
  7670. * other means to detect when the pool has died in stratum_thread */
  7671. static void gen_stratum_work(struct pool *pool, struct work *work)
  7672. {
  7673. clean_work(work);
  7674. cg_wlock(&pool->data_lock);
  7675. pool->swork.data_lock_p = &pool->data_lock;
  7676. bytes_resize(&work->nonce2, pool->n2size);
  7677. if (pool->nonce2sz < pool->n2size)
  7678. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7679. memcpy(bytes_buf(&work->nonce2),
  7680. #ifdef WORDS_BIGENDIAN
  7681. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7682. &((char*)&pool->nonce2)[pool->nonce2off],
  7683. #else
  7684. &pool->nonce2,
  7685. #endif
  7686. pool->nonce2sz);
  7687. pool->nonce2++;
  7688. work->pool = pool;
  7689. work->work_restart_id = work->pool->work_restart_id;
  7690. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7691. cgtime(&work->tv_staged);
  7692. }
  7693. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7694. {
  7695. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7696. uint8_t *merkle_bin;
  7697. uint32_t *data32, *swap32;
  7698. int i;
  7699. /* Generate coinbase */
  7700. coinbase = bytes_buf(&swork->coinbase);
  7701. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7702. /* Downgrade to a read lock to read off the variables */
  7703. if (swork->data_lock_p)
  7704. cg_dwlock(swork->data_lock_p);
  7705. /* Generate merkle root */
  7706. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7707. memcpy(merkle_sha, merkle_root, 32);
  7708. merkle_bin = bytes_buf(&swork->merkle_bin);
  7709. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7710. memcpy(merkle_sha + 32, merkle_bin, 32);
  7711. gen_hash(merkle_sha, merkle_root, 64);
  7712. memcpy(merkle_sha, merkle_root, 32);
  7713. }
  7714. data32 = (uint32_t *)merkle_sha;
  7715. swap32 = (uint32_t *)merkle_root;
  7716. flip32(swap32, data32);
  7717. memcpy(&work->data[0], swork->header1, 36);
  7718. memcpy(&work->data[36], merkle_root, 32);
  7719. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7720. memcpy(&work->data[72], swork->diffbits, 4);
  7721. memset(&work->data[76], 0, 4); // nonce
  7722. memcpy(&work->data[80], workpadding_bin, 48);
  7723. /* Store the stratum work diff to check it still matches the pool's
  7724. * stratum diff when submitting shares */
  7725. work->sdiff = swork->diff;
  7726. /* Copy parameters required for share submission */
  7727. work->job_id = strdup(swork->job_id);
  7728. work->nonce1 = strdup(nonce1);
  7729. if (swork->data_lock_p)
  7730. cg_runlock(swork->data_lock_p);
  7731. if (opt_debug)
  7732. {
  7733. char header[161];
  7734. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7735. bin2hex(header, work->data, 80);
  7736. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7737. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7738. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7739. }
  7740. calc_midstate(work);
  7741. set_target(work->target, work->sdiff);
  7742. local_work++;
  7743. work->stratum = true;
  7744. work->blk.nonce = 0;
  7745. work->id = total_work++;
  7746. work->longpoll = false;
  7747. work->getwork_mode = GETWORK_MODE_STRATUM;
  7748. /* Nominally allow a driver to ntime roll 60 seconds */
  7749. work->drv_rolllimit = 60;
  7750. calc_diff(work, 0);
  7751. }
  7752. void request_work(struct thr_info *thr)
  7753. {
  7754. struct cgpu_info *cgpu = thr->cgpu;
  7755. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7756. /* Tell the watchdog thread this thread is waiting on getwork and
  7757. * should not be restarted */
  7758. thread_reportout(thr);
  7759. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7760. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7761. {
  7762. if (proc->threads)
  7763. break;
  7764. thread_reportout(proc->thr[0]);
  7765. }
  7766. cgtime(&dev_stats->_get_start);
  7767. }
  7768. // FIXME: Make this non-blocking (and remove HACK above)
  7769. struct work *get_work(struct thr_info *thr)
  7770. {
  7771. const int thr_id = thr->id;
  7772. struct cgpu_info *cgpu = thr->cgpu;
  7773. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7774. struct cgminer_stats *pool_stats;
  7775. struct timeval tv_get;
  7776. struct work *work = NULL;
  7777. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7778. while (!work) {
  7779. work = hash_pop();
  7780. if (stale_work(work, false)) {
  7781. staged_full = false; // It wasn't really full, since it was stale :(
  7782. discard_work(work);
  7783. work = NULL;
  7784. wake_gws();
  7785. }
  7786. }
  7787. last_getwork = time(NULL);
  7788. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7789. cgpu->proc_repr, work->id, thr_id);
  7790. work->thr_id = thr_id;
  7791. thread_reportin(thr);
  7792. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7793. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7794. {
  7795. if (proc->threads)
  7796. break;
  7797. thread_reportin(proc->thr[0]);
  7798. }
  7799. work->mined = true;
  7800. work->blk.nonce = 0;
  7801. cgtime(&tv_get);
  7802. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7803. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7804. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7805. dev_stats->getwork_wait_max = tv_get;
  7806. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7807. dev_stats->getwork_wait_min = tv_get;
  7808. ++dev_stats->getwork_calls;
  7809. pool_stats = &(work->pool->cgminer_stats);
  7810. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7811. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7812. pool_stats->getwork_wait_max = tv_get;
  7813. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7814. pool_stats->getwork_wait_min = tv_get;
  7815. ++pool_stats->getwork_calls;
  7816. if (work->work_difficulty < 1)
  7817. {
  7818. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7819. {
  7820. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7821. cgpu->proc_repr);
  7822. work->nonce_diff = cgpu->min_nonce_diff;
  7823. }
  7824. else
  7825. work->nonce_diff = work->work_difficulty;
  7826. }
  7827. else
  7828. work->nonce_diff = 1;
  7829. return work;
  7830. }
  7831. static
  7832. void _submit_work_async(struct work *work)
  7833. {
  7834. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7835. mutex_lock(&submitting_lock);
  7836. ++total_submitting;
  7837. DL_APPEND(submit_waiting, work);
  7838. mutex_unlock(&submitting_lock);
  7839. notifier_wake(submit_waiting_notifier);
  7840. }
  7841. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7842. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7843. {
  7844. if (tv_work_found)
  7845. copy_time(&work->tv_work_found, tv_work_found);
  7846. _submit_work_async(work);
  7847. }
  7848. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7849. {
  7850. struct cgpu_info * const cgpu = thr->cgpu;
  7851. if (bad_nonce_p)
  7852. {
  7853. if (bad_nonce_p == UNKNOWN_NONCE)
  7854. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7855. cgpu->proc_repr);
  7856. else
  7857. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7858. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7859. }
  7860. mutex_lock(&stats_lock);
  7861. hw_errors++;
  7862. ++cgpu->hw_errors;
  7863. if (bad_nonce_p)
  7864. {
  7865. total_bad_diff1 += nonce_diff;
  7866. cgpu->bad_diff1 += nonce_diff;
  7867. }
  7868. mutex_unlock(&stats_lock);
  7869. if (thr->cgpu->drv->hw_error)
  7870. thr->cgpu->drv->hw_error(thr);
  7871. }
  7872. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7873. {
  7874. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7875. hash_data(work->hash, work->data);
  7876. if (hash2_32[7] != 0)
  7877. return TNR_BAD;
  7878. if (!checktarget)
  7879. return TNR_GOOD;
  7880. if (!hash_target_check_v(work->hash, work->target))
  7881. return TNR_HIGH;
  7882. return TNR_GOOD;
  7883. }
  7884. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7885. {
  7886. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7887. *work_nonce = htole32(nonce);
  7888. #ifdef USE_SCRYPT
  7889. if (opt_scrypt)
  7890. // NOTE: Depends on scrypt_test return matching enum values
  7891. return scrypt_test(work->data, work->target, nonce);
  7892. #endif
  7893. return hashtest2(work, checktarget);
  7894. }
  7895. /* Returns true if nonce for work was a valid share */
  7896. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7897. {
  7898. return submit_noffset_nonce(thr, work, nonce, 0);
  7899. }
  7900. /* Allows drivers to submit work items where the driver has changed the ntime
  7901. * value by noffset. Must be only used with a work protocol that does not ntime
  7902. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7903. * the original work struct, but the copy of it only. */
  7904. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7905. int noffset)
  7906. {
  7907. struct work *work = make_work();
  7908. _copy_work(work, work_in, noffset);
  7909. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7910. struct timeval tv_work_found;
  7911. enum test_nonce2_result res;
  7912. bool ret = true;
  7913. thread_reportout(thr);
  7914. cgtime(&tv_work_found);
  7915. *work_nonce = htole32(nonce);
  7916. work->thr_id = thr->id;
  7917. /* Do one last check before attempting to submit the work */
  7918. /* Side effect: sets work->data for us */
  7919. res = test_nonce2(work, nonce);
  7920. if (unlikely(res == TNR_BAD))
  7921. {
  7922. inc_hw_errors(thr, work, nonce);
  7923. ret = false;
  7924. goto out;
  7925. }
  7926. mutex_lock(&stats_lock);
  7927. total_diff1 += work->nonce_diff;
  7928. thr ->cgpu->diff1 += work->nonce_diff;
  7929. work->pool->diff1 += work->nonce_diff;
  7930. thr->cgpu->last_device_valid_work = time(NULL);
  7931. mutex_unlock(&stats_lock);
  7932. if (noncelog_file)
  7933. noncelog(work);
  7934. if (res == TNR_HIGH)
  7935. {
  7936. // Share above target, normal
  7937. /* Check the diff of the share, even if it didn't reach the
  7938. * target, just to set the best share value if it's higher. */
  7939. share_diff(work);
  7940. goto out;
  7941. }
  7942. submit_work_async2(work, &tv_work_found);
  7943. work = NULL; // Taken by submit_work_async2
  7944. out:
  7945. if (work)
  7946. free_work(work);
  7947. thread_reportin(thr);
  7948. return ret;
  7949. }
  7950. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7951. {
  7952. if (wdiff->tv_sec > opt_scantime ||
  7953. work->blk.nonce >= MAXTHREADS - hashes ||
  7954. hashes >= 0xfffffffe ||
  7955. stale_work(work, false))
  7956. return true;
  7957. return false;
  7958. }
  7959. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7960. {
  7961. struct cgpu_info *proc = thr->cgpu;
  7962. if (proc->threads > 1)
  7963. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7964. else
  7965. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7966. }
  7967. // Called by asynchronous minerloops, when they find their processor should be disabled
  7968. void mt_disable_start(struct thr_info *mythr)
  7969. {
  7970. struct cgpu_info *cgpu = mythr->cgpu;
  7971. struct device_drv *drv = cgpu->drv;
  7972. if (drv->thread_disable)
  7973. drv->thread_disable(mythr);
  7974. hashmeter2(mythr);
  7975. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7976. mythr->rolling = mythr->cgpu->rolling = 0;
  7977. thread_reportout(mythr);
  7978. mythr->_mt_disable_called = true;
  7979. }
  7980. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7981. * the driver tells us it's full so that it may extract the work item using
  7982. * the get_queued() function which adds it to the hashtable on
  7983. * cgpu->queued_work. */
  7984. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7985. {
  7986. thread_reportout(mythr);
  7987. do {
  7988. bool need_work;
  7989. /* Do this lockless just to know if we need more unqueued work. */
  7990. need_work = (!cgpu->unqueued_work);
  7991. /* get_work is a blocking function so do it outside of lock
  7992. * to prevent deadlocks with other locks. */
  7993. if (need_work) {
  7994. struct work *work = get_work(mythr);
  7995. wr_lock(&cgpu->qlock);
  7996. /* Check we haven't grabbed work somehow between
  7997. * checking and picking up the lock. */
  7998. if (likely(!cgpu->unqueued_work))
  7999. cgpu->unqueued_work = work;
  8000. else
  8001. need_work = false;
  8002. wr_unlock(&cgpu->qlock);
  8003. if (unlikely(!need_work))
  8004. discard_work(work);
  8005. }
  8006. /* The queue_full function should be used by the driver to
  8007. * actually place work items on the physical device if it
  8008. * does have a queue. */
  8009. } while (drv->queue_full && !drv->queue_full(cgpu));
  8010. }
  8011. /* Add a work item to a cgpu's queued hashlist */
  8012. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8013. {
  8014. cgpu->queued_count++;
  8015. HASH_ADD_INT(cgpu->queued_work, id, work);
  8016. }
  8017. /* This function is for retrieving one work item from the unqueued pointer and
  8018. * adding it to the hashtable of queued work. Code using this function must be
  8019. * able to handle NULL as a return which implies there is no work available. */
  8020. struct work *get_queued(struct cgpu_info *cgpu)
  8021. {
  8022. struct work *work = NULL;
  8023. wr_lock(&cgpu->qlock);
  8024. if (cgpu->unqueued_work) {
  8025. work = cgpu->unqueued_work;
  8026. __add_queued(cgpu, work);
  8027. cgpu->unqueued_work = NULL;
  8028. }
  8029. wr_unlock(&cgpu->qlock);
  8030. return work;
  8031. }
  8032. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8033. {
  8034. wr_lock(&cgpu->qlock);
  8035. __add_queued(cgpu, work);
  8036. wr_unlock(&cgpu->qlock);
  8037. }
  8038. /* Get fresh work and add it to cgpu's queued hashlist */
  8039. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8040. {
  8041. struct work *work = get_work(thr);
  8042. add_queued(cgpu, work);
  8043. return work;
  8044. }
  8045. /* This function is for finding an already queued work item in the
  8046. * given que hashtable. Code using this function must be able
  8047. * to handle NULL as a return which implies there is no matching work.
  8048. * The calling function must lock access to the que if it is required.
  8049. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8050. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8051. {
  8052. struct work *work, *tmp, *ret = NULL;
  8053. HASH_ITER(hh, que, work, tmp) {
  8054. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8055. memcmp(work->data + offset, data, datalen) == 0) {
  8056. ret = work;
  8057. break;
  8058. }
  8059. }
  8060. return ret;
  8061. }
  8062. /* This function is for finding an already queued work item in the
  8063. * device's queued_work hashtable. Code using this function must be able
  8064. * to handle NULL as a return which implies there is no matching work.
  8065. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8066. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8067. {
  8068. struct work *ret;
  8069. rd_lock(&cgpu->qlock);
  8070. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8071. rd_unlock(&cgpu->qlock);
  8072. return ret;
  8073. }
  8074. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8075. {
  8076. struct work *work, *ret = NULL;
  8077. rd_lock(&cgpu->qlock);
  8078. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8079. if (work)
  8080. ret = copy_work(work);
  8081. rd_unlock(&cgpu->qlock);
  8082. return ret;
  8083. }
  8084. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8085. {
  8086. cgpu->queued_count--;
  8087. HASH_DEL(cgpu->queued_work, work);
  8088. }
  8089. /* This function should be used by queued device drivers when they're sure
  8090. * the work struct is no longer in use. */
  8091. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8092. {
  8093. wr_lock(&cgpu->qlock);
  8094. __work_completed(cgpu, work);
  8095. wr_unlock(&cgpu->qlock);
  8096. free_work(work);
  8097. }
  8098. /* Combines find_queued_work_bymidstate and work_completed in one function
  8099. * withOUT destroying the work so the driver must free it. */
  8100. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8101. {
  8102. struct work *work;
  8103. wr_lock(&cgpu->qlock);
  8104. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8105. if (work)
  8106. __work_completed(cgpu, work);
  8107. wr_unlock(&cgpu->qlock);
  8108. return work;
  8109. }
  8110. static void flush_queue(struct cgpu_info *cgpu)
  8111. {
  8112. struct work *work = NULL;
  8113. wr_lock(&cgpu->qlock);
  8114. work = cgpu->unqueued_work;
  8115. cgpu->unqueued_work = NULL;
  8116. wr_unlock(&cgpu->qlock);
  8117. if (work) {
  8118. free_work(work);
  8119. applog(LOG_DEBUG, "Discarded queued work item");
  8120. }
  8121. }
  8122. /* This version of hash work is for devices that are fast enough to always
  8123. * perform a full nonce range and need a queue to maintain the device busy.
  8124. * Work creation and destruction is not done from within this function
  8125. * directly. */
  8126. void hash_queued_work(struct thr_info *mythr)
  8127. {
  8128. const long cycle = opt_log_interval / 5 ? : 1;
  8129. struct timeval tv_start = {0, 0}, tv_end;
  8130. struct cgpu_info *cgpu = mythr->cgpu;
  8131. struct device_drv *drv = cgpu->drv;
  8132. const int thr_id = mythr->id;
  8133. int64_t hashes_done = 0;
  8134. if (unlikely(cgpu->deven != DEV_ENABLED))
  8135. mt_disable(mythr);
  8136. while (likely(!cgpu->shutdown)) {
  8137. struct timeval diff;
  8138. int64_t hashes;
  8139. fill_queue(mythr, cgpu, drv, thr_id);
  8140. thread_reportin(mythr);
  8141. hashes = drv->scanwork(mythr);
  8142. /* Reset the bool here in case the driver looks for it
  8143. * synchronously in the scanwork loop. */
  8144. mythr->work_restart = false;
  8145. if (unlikely(hashes == -1 )) {
  8146. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8147. cgpu->deven = DEV_DISABLED;
  8148. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8149. mt_disable(mythr);
  8150. }
  8151. hashes_done += hashes;
  8152. cgtime(&tv_end);
  8153. timersub(&tv_end, &tv_start, &diff);
  8154. if (diff.tv_sec >= cycle) {
  8155. hashmeter(thr_id, &diff, hashes_done);
  8156. hashes_done = 0;
  8157. copy_time(&tv_start, &tv_end);
  8158. }
  8159. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8160. mt_disable(mythr);
  8161. if (unlikely(mythr->work_restart)) {
  8162. flush_queue(cgpu);
  8163. if (drv->flush_work)
  8164. drv->flush_work(cgpu);
  8165. }
  8166. }
  8167. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8168. }
  8169. // Called by minerloop, when it is re-enabling a processor
  8170. void mt_disable_finish(struct thr_info *mythr)
  8171. {
  8172. struct device_drv *drv = mythr->cgpu->drv;
  8173. thread_reportin(mythr);
  8174. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8175. if (drv->thread_enable)
  8176. drv->thread_enable(mythr);
  8177. mythr->_mt_disable_called = false;
  8178. }
  8179. // Called by synchronous minerloops, when they find their processor should be disabled
  8180. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8181. void mt_disable(struct thr_info *mythr)
  8182. {
  8183. const struct cgpu_info * const cgpu = mythr->cgpu;
  8184. mt_disable_start(mythr);
  8185. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8186. do {
  8187. notifier_read(mythr->notifier);
  8188. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8189. mt_disable_finish(mythr);
  8190. }
  8191. enum {
  8192. STAT_SLEEP_INTERVAL = 1,
  8193. STAT_CTR_INTERVAL = 10000000,
  8194. FAILURE_INTERVAL = 30,
  8195. };
  8196. /* Stage another work item from the work returned in a longpoll */
  8197. 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)
  8198. {
  8199. bool rc;
  8200. work->rolltime = rolltime;
  8201. rc = work_decode(pool, work, val);
  8202. if (unlikely(!rc)) {
  8203. applog(LOG_ERR, "Could not convert longpoll data to work");
  8204. free_work(work);
  8205. return;
  8206. }
  8207. total_getworks++;
  8208. pool->getwork_requested++;
  8209. work->pool = pool;
  8210. copy_time(&work->tv_getwork, tv_lp);
  8211. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8212. calc_diff(work, 0);
  8213. if (pool->enabled == POOL_REJECTING)
  8214. work->mandatory = true;
  8215. work->longpoll = true;
  8216. work->getwork_mode = GETWORK_MODE_LP;
  8217. update_last_work(work);
  8218. /* We'll be checking this work item twice, but we already know it's
  8219. * from a new block so explicitly force the new block detection now
  8220. * rather than waiting for it to hit the stage thread. This also
  8221. * allows testwork to know whether LP discovered the block or not. */
  8222. test_work_current(work);
  8223. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8224. * the longpoll work from a pool that has been rejecting shares as a
  8225. * way to detect when the pool has recovered.
  8226. */
  8227. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8228. free_work(work);
  8229. return;
  8230. }
  8231. work = clone_work(work);
  8232. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8233. stage_work(work);
  8234. applog(LOG_DEBUG, "Converted longpoll data to work");
  8235. }
  8236. /* If we want longpoll, enable it for the chosen default pool, or, if
  8237. * the pool does not support longpoll, find the first one that does
  8238. * and use its longpoll support */
  8239. static struct pool *select_longpoll_pool(struct pool *cp)
  8240. {
  8241. int i;
  8242. if (cp->lp_url)
  8243. return cp;
  8244. for (i = 0; i < total_pools; i++) {
  8245. struct pool *pool = pools[i];
  8246. if (pool->has_stratum || pool->lp_url)
  8247. return pool;
  8248. }
  8249. return NULL;
  8250. }
  8251. /* This will make the longpoll thread wait till it's the current pool, or it
  8252. * has been flagged as rejecting, before attempting to open any connections.
  8253. */
  8254. static void wait_lpcurrent(struct pool *pool)
  8255. {
  8256. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8257. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8258. pool_strategy != POOL_BALANCE))) {
  8259. mutex_lock(&lp_lock);
  8260. pthread_cond_wait(&lp_cond, &lp_lock);
  8261. mutex_unlock(&lp_lock);
  8262. }
  8263. }
  8264. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8265. struct pool *pool = vpool;
  8266. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8267. pool->lp_socket = sock;
  8268. return sock;
  8269. }
  8270. static void *longpoll_thread(void *userdata)
  8271. {
  8272. struct pool *cp = (struct pool *)userdata;
  8273. /* This *pool is the source of the actual longpoll, not the pool we've
  8274. * tied it to */
  8275. struct timeval start, reply, end;
  8276. struct pool *pool = NULL;
  8277. char threadname[20];
  8278. CURL *curl = NULL;
  8279. int failures = 0;
  8280. char *lp_url;
  8281. int rolltime;
  8282. #ifndef HAVE_PTHREAD_CANCEL
  8283. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8284. #endif
  8285. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8286. RenameThread(threadname);
  8287. curl = curl_easy_init();
  8288. if (unlikely(!curl)) {
  8289. applog(LOG_ERR, "CURL initialisation failed");
  8290. return NULL;
  8291. }
  8292. retry_pool:
  8293. pool = select_longpoll_pool(cp);
  8294. if (!pool) {
  8295. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8296. while (!pool) {
  8297. cgsleep_ms(60000);
  8298. pool = select_longpoll_pool(cp);
  8299. }
  8300. }
  8301. if (pool->has_stratum) {
  8302. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8303. cp->rpc_url, pool->rpc_url);
  8304. goto out;
  8305. }
  8306. /* Any longpoll from any pool is enough for this to be true */
  8307. have_longpoll = true;
  8308. wait_lpcurrent(cp);
  8309. {
  8310. lp_url = pool->lp_url;
  8311. if (cp == pool)
  8312. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8313. else
  8314. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8315. }
  8316. while (42) {
  8317. json_t *val, *soval;
  8318. struct work *work = make_work();
  8319. char *lpreq;
  8320. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8321. work->pool = pool;
  8322. if (!lpreq)
  8323. {
  8324. free_work(work);
  8325. goto lpfail;
  8326. }
  8327. wait_lpcurrent(cp);
  8328. cgtime(&start);
  8329. /* Longpoll connections can be persistent for a very long time
  8330. * and any number of issues could have come up in the meantime
  8331. * so always establish a fresh connection instead of relying on
  8332. * a persistent one. */
  8333. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8334. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8335. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8336. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8337. lpreq, false, true, &rolltime, pool, false);
  8338. pool->lp_socket = CURL_SOCKET_BAD;
  8339. cgtime(&reply);
  8340. free(lpreq);
  8341. if (likely(val)) {
  8342. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8343. if (soval)
  8344. pool->submit_old = json_is_true(soval);
  8345. else
  8346. pool->submit_old = false;
  8347. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8348. failures = 0;
  8349. json_decref(val);
  8350. } else {
  8351. /* Some pools regularly drop the longpoll request so
  8352. * only see this as longpoll failure if it happens
  8353. * immediately and just restart it the rest of the
  8354. * time. */
  8355. cgtime(&end);
  8356. free_work(work);
  8357. if (end.tv_sec - start.tv_sec > 30)
  8358. continue;
  8359. if (failures == 1)
  8360. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8361. lpfail:
  8362. cgsleep_ms(30000);
  8363. }
  8364. if (pool != cp) {
  8365. pool = select_longpoll_pool(cp);
  8366. if (pool->has_stratum) {
  8367. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8368. cp->rpc_url, pool->rpc_url);
  8369. break;
  8370. }
  8371. if (unlikely(!pool))
  8372. goto retry_pool;
  8373. }
  8374. if (unlikely(pool->removed))
  8375. break;
  8376. }
  8377. out:
  8378. curl_easy_cleanup(curl);
  8379. return NULL;
  8380. }
  8381. static void stop_longpoll(void)
  8382. {
  8383. int i;
  8384. want_longpoll = false;
  8385. for (i = 0; i < total_pools; ++i)
  8386. {
  8387. struct pool *pool = pools[i];
  8388. if (unlikely(!pool->lp_started))
  8389. continue;
  8390. pool->lp_started = false;
  8391. pthread_cancel(pool->longpoll_thread);
  8392. }
  8393. have_longpoll = false;
  8394. }
  8395. static void start_longpoll(void)
  8396. {
  8397. int i;
  8398. want_longpoll = true;
  8399. for (i = 0; i < total_pools; ++i)
  8400. {
  8401. struct pool *pool = pools[i];
  8402. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8403. continue;
  8404. pool->lp_started = true;
  8405. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8406. quit(1, "Failed to create pool longpoll thread");
  8407. }
  8408. }
  8409. void reinit_device(struct cgpu_info *cgpu)
  8410. {
  8411. if (cgpu->drv->reinit_device)
  8412. cgpu->drv->reinit_device(cgpu);
  8413. }
  8414. static struct timeval rotate_tv;
  8415. /* We reap curls if they are unused for over a minute */
  8416. static void reap_curl(struct pool *pool)
  8417. {
  8418. struct curl_ent *ent, *iter;
  8419. struct timeval now;
  8420. int reaped = 0;
  8421. cgtime(&now);
  8422. mutex_lock(&pool->pool_lock);
  8423. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8424. if (pool->curls < 2)
  8425. break;
  8426. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8427. reaped++;
  8428. pool->curls--;
  8429. LL_DELETE(pool->curllist, ent);
  8430. curl_easy_cleanup(ent->curl);
  8431. free(ent);
  8432. }
  8433. }
  8434. mutex_unlock(&pool->pool_lock);
  8435. if (reaped)
  8436. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8437. }
  8438. static void *watchpool_thread(void __maybe_unused *userdata)
  8439. {
  8440. int intervals = 0;
  8441. #ifndef HAVE_PTHREAD_CANCEL
  8442. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8443. #endif
  8444. RenameThread("watchpool");
  8445. while (42) {
  8446. struct timeval now;
  8447. int i;
  8448. if (++intervals > 20)
  8449. intervals = 0;
  8450. cgtime(&now);
  8451. for (i = 0; i < total_pools; i++) {
  8452. struct pool *pool = pools[i];
  8453. if (!opt_benchmark)
  8454. reap_curl(pool);
  8455. /* Get a rolling utility per pool over 10 mins */
  8456. if (intervals > 19) {
  8457. int shares = pool->diff1 - pool->last_shares;
  8458. pool->last_shares = pool->diff1;
  8459. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8460. pool->shares = pool->utility;
  8461. }
  8462. if (pool->enabled == POOL_DISABLED)
  8463. continue;
  8464. /* Don't start testing any pools if the test threads
  8465. * from startup are still doing their first attempt. */
  8466. if (unlikely(pool->testing)) {
  8467. pthread_join(pool->test_thread, NULL);
  8468. }
  8469. /* Test pool is idle once every minute */
  8470. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8471. cgtime(&pool->tv_idle);
  8472. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8473. pool_resus(pool);
  8474. }
  8475. /* Only switch pools if the failback pool has been
  8476. * alive for more than 5 minutes to prevent
  8477. * intermittently failing pools from being used. */
  8478. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8479. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8480. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8481. pool->pool_no, pool->rpc_url);
  8482. switch_pools(NULL);
  8483. }
  8484. }
  8485. if (current_pool()->idle)
  8486. switch_pools(NULL);
  8487. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8488. cgtime(&rotate_tv);
  8489. switch_pools(NULL);
  8490. }
  8491. cgsleep_ms(30000);
  8492. }
  8493. return NULL;
  8494. }
  8495. void mt_enable(struct thr_info *thr)
  8496. {
  8497. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8498. notifier_wake(thr->notifier);
  8499. }
  8500. void proc_enable(struct cgpu_info *cgpu)
  8501. {
  8502. int j;
  8503. cgpu->deven = DEV_ENABLED;
  8504. for (j = cgpu->threads ?: 1; j--; )
  8505. mt_enable(cgpu->thr[j]);
  8506. }
  8507. #define device_recovered(cgpu) proc_enable(cgpu)
  8508. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8509. {
  8510. struct string_elist *setstr_elist;
  8511. const char *p, *p2;
  8512. char replybuf[0x2000];
  8513. size_t L;
  8514. DL_FOREACH(opt_set_device_list, setstr_elist)
  8515. {
  8516. const char * const setstr = setstr_elist->string;
  8517. p = strchr(setstr, ':');
  8518. if (!p)
  8519. p = setstr;
  8520. {
  8521. L = p - setstr;
  8522. char pattern[L + 1];
  8523. if (L)
  8524. memcpy(pattern, setstr, L);
  8525. pattern[L] = '\0';
  8526. if (!cgpu_match(pattern, cgpu))
  8527. continue;
  8528. }
  8529. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8530. cgpu->proc_repr, __func__, setstr);
  8531. if (p[0] == ':')
  8532. ++p;
  8533. p2 = strchr(p, '=');
  8534. if (!p2)
  8535. {
  8536. L = strlen(p);
  8537. p2 = "";
  8538. }
  8539. else
  8540. {
  8541. L = p2 - p;
  8542. ++p2;
  8543. }
  8544. char opt[L + 1];
  8545. if (L)
  8546. memcpy(opt, p, L);
  8547. opt[L] = '\0';
  8548. L = strlen(p2);
  8549. char setval[L + 1];
  8550. if (L)
  8551. memcpy(setval, p2, L);
  8552. setval[L] = '\0';
  8553. enum bfg_set_device_replytype success;
  8554. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8555. switch (success)
  8556. {
  8557. case SDR_OK:
  8558. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8559. cgpu->proc_repr, setstr,
  8560. p ? ": " : "", p ?: "");
  8561. break;
  8562. case SDR_ERR:
  8563. case SDR_HELP:
  8564. case SDR_UNKNOWN:
  8565. applog(LOG_WARNING, "%"PRIpreprv": Applying rule %s: %s",
  8566. cgpu->proc_repr, setstr, p);
  8567. break;
  8568. case SDR_AUTO:
  8569. case SDR_NOSUPP:
  8570. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8571. cgpu->proc_repr, setstr);
  8572. }
  8573. }
  8574. cgpu->already_set_defaults = true;
  8575. }
  8576. 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)
  8577. {
  8578. struct device_drv dummy_drv = *drv;
  8579. struct cgpu_info dummy_cgpu = {
  8580. .drv = &dummy_drv,
  8581. .device = &dummy_cgpu,
  8582. .device_id = -1,
  8583. .proc_id = -1,
  8584. .device_data = userp,
  8585. .device_path = devpath,
  8586. .dev_serial = serial,
  8587. };
  8588. strcpy(dummy_cgpu.proc_repr, drv->name);
  8589. switch (mode)
  8590. {
  8591. case 0:
  8592. dummy_drv.set_device = datap;
  8593. break;
  8594. case 1:
  8595. dummy_drv.set_device = NULL;
  8596. dummy_cgpu.set_device_funcs = datap;
  8597. break;
  8598. }
  8599. cgpu_set_defaults(&dummy_cgpu);
  8600. }
  8601. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8602. * the screen at regular intervals, and restarts threads if they appear to have
  8603. * died. */
  8604. #define WATCHDOG_SICK_TIME 60
  8605. #define WATCHDOG_DEAD_TIME 600
  8606. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8607. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8608. static void *watchdog_thread(void __maybe_unused *userdata)
  8609. {
  8610. const unsigned int interval = WATCHDOG_INTERVAL;
  8611. struct timeval zero_tv;
  8612. #ifndef HAVE_PTHREAD_CANCEL
  8613. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8614. #endif
  8615. RenameThread("watchdog");
  8616. memset(&zero_tv, 0, sizeof(struct timeval));
  8617. cgtime(&rotate_tv);
  8618. while (1) {
  8619. int i;
  8620. struct timeval now;
  8621. sleep(interval);
  8622. discard_stale();
  8623. hashmeter(-1, &zero_tv, 0);
  8624. #ifdef HAVE_CURSES
  8625. const int ts = total_staged();
  8626. if (curses_active_locked()) {
  8627. change_logwinsize();
  8628. curses_print_status(ts);
  8629. _refresh_devstatus(true);
  8630. touchwin(logwin);
  8631. wrefresh(logwin);
  8632. unlock_curses();
  8633. }
  8634. #endif
  8635. cgtime(&now);
  8636. if (!sched_paused && !should_run()) {
  8637. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8638. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8639. if (!schedstart.enable) {
  8640. quit(0, "Terminating execution as planned");
  8641. break;
  8642. }
  8643. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8644. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8645. sched_paused = true;
  8646. rd_lock(&mining_thr_lock);
  8647. for (i = 0; i < mining_threads; i++)
  8648. mining_thr[i]->pause = true;
  8649. rd_unlock(&mining_thr_lock);
  8650. } else if (sched_paused && should_run()) {
  8651. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8652. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8653. if (schedstop.enable)
  8654. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8655. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8656. sched_paused = false;
  8657. for (i = 0; i < mining_threads; i++) {
  8658. struct thr_info *thr;
  8659. thr = get_thread(i);
  8660. thr->pause = false;
  8661. }
  8662. for (i = 0; i < total_devices; ++i)
  8663. {
  8664. struct cgpu_info *cgpu = get_devices(i);
  8665. /* Don't touch disabled devices */
  8666. if (cgpu->deven == DEV_DISABLED)
  8667. continue;
  8668. proc_enable(cgpu);
  8669. }
  8670. }
  8671. for (i = 0; i < total_devices; ++i) {
  8672. struct cgpu_info *cgpu = get_devices(i);
  8673. if (!cgpu->disable_watchdog)
  8674. bfg_watchdog(cgpu, &now);
  8675. }
  8676. }
  8677. return NULL;
  8678. }
  8679. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8680. {
  8681. struct thr_info *thr = cgpu->thr[0];
  8682. enum dev_enable *denable;
  8683. char *dev_str = cgpu->proc_repr;
  8684. int gpu;
  8685. if (likely(drv_ready(cgpu)))
  8686. {
  8687. if (unlikely(!cgpu->already_set_defaults))
  8688. cgpu_set_defaults(cgpu);
  8689. if (cgpu->drv->get_stats)
  8690. cgpu->drv->get_stats(cgpu);
  8691. }
  8692. gpu = cgpu->device_id;
  8693. denable = &cgpu->deven;
  8694. #ifdef HAVE_ADL
  8695. if (adl_active && cgpu->has_adl)
  8696. gpu_autotune(gpu, denable);
  8697. if (opt_debug && cgpu->has_adl) {
  8698. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  8699. float temp = 0, vddc = 0;
  8700. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  8701. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMHz V: %.3fV A: %d%% P: %d%%",
  8702. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  8703. }
  8704. #endif
  8705. /* Thread is disabled */
  8706. if (*denable == DEV_DISABLED)
  8707. return;
  8708. else
  8709. if (*denable == DEV_RECOVER_ERR) {
  8710. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8711. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8712. dev_str);
  8713. if (cgpu->reinit_backoff < 300)
  8714. cgpu->reinit_backoff *= 2;
  8715. device_recovered(cgpu);
  8716. }
  8717. return;
  8718. }
  8719. else
  8720. if (*denable == DEV_RECOVER) {
  8721. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8722. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8723. dev_str);
  8724. device_recovered(cgpu);
  8725. }
  8726. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8727. return;
  8728. }
  8729. else
  8730. if (cgpu->temp > cgpu->cutofftemp)
  8731. {
  8732. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8733. dev_str, (int)cgpu->temp);
  8734. *denable = DEV_RECOVER;
  8735. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8736. run_cmd(cmd_idle);
  8737. }
  8738. if (thr->getwork) {
  8739. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8740. int thrid;
  8741. bool cgpu_idle = true;
  8742. thr->rolling = 0;
  8743. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8744. if (!cgpu->thr[thrid]->getwork)
  8745. cgpu_idle = false;
  8746. if (cgpu_idle) {
  8747. cgpu->rolling = 0;
  8748. cgpu->status = LIFE_WAIT;
  8749. }
  8750. }
  8751. return;
  8752. }
  8753. else if (cgpu->status == LIFE_WAIT)
  8754. cgpu->status = LIFE_WELL;
  8755. #ifdef WANT_CPUMINE
  8756. if (!strcmp(cgpu->drv->dname, "cpu"))
  8757. return;
  8758. #endif
  8759. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8760. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8761. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8762. cgpu->status = LIFE_WELL;
  8763. cgpu->device_last_well = time(NULL);
  8764. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8765. thr->rolling = cgpu->rolling = 0;
  8766. cgpu->status = LIFE_SICK;
  8767. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8768. cgtime(&thr->sick);
  8769. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8770. run_cmd(cmd_sick);
  8771. #ifdef HAVE_ADL
  8772. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8773. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  8774. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  8775. } else
  8776. #endif
  8777. if (opt_restart && cgpu->drv->reinit_device) {
  8778. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8779. reinit_device(cgpu);
  8780. }
  8781. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8782. cgpu->status = LIFE_DEAD;
  8783. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8784. cgtime(&thr->sick);
  8785. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8786. run_cmd(cmd_dead);
  8787. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8788. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8789. /* Attempt to restart a GPU that's sick or dead once every minute */
  8790. cgtime(&thr->sick);
  8791. #ifdef HAVE_ADL
  8792. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8793. /* Again do not attempt to restart a device that may have hard hung */
  8794. } else
  8795. #endif
  8796. if (opt_restart)
  8797. reinit_device(cgpu);
  8798. }
  8799. }
  8800. static void log_print_status(struct cgpu_info *cgpu)
  8801. {
  8802. char logline[255];
  8803. get_statline(logline, sizeof(logline), cgpu);
  8804. applog(LOG_WARNING, "%s", logline);
  8805. }
  8806. void print_summary(void)
  8807. {
  8808. struct timeval diff;
  8809. int hours, mins, secs, i;
  8810. double utility, efficiency = 0.0;
  8811. char xfer[17], bw[19];
  8812. int pool_secs;
  8813. timersub(&total_tv_end, &total_tv_start, &diff);
  8814. hours = diff.tv_sec / 3600;
  8815. mins = (diff.tv_sec % 3600) / 60;
  8816. secs = diff.tv_sec % 60;
  8817. utility = total_accepted / total_secs * 60;
  8818. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8819. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8820. applog(LOG_WARNING, "Started at %s", datestamp);
  8821. if (total_pools == 1)
  8822. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8823. #ifdef WANT_CPUMINE
  8824. if (opt_n_threads)
  8825. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8826. #endif
  8827. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8828. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8829. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8830. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8831. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8832. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8833. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8834. total_rejected, total_stale,
  8835. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8836. );
  8837. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8838. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8839. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8840. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8841. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8842. (float)total_bytes_rcvd,
  8843. (float)total_bytes_sent),
  8844. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8845. (float)(total_bytes_rcvd / total_secs),
  8846. (float)(total_bytes_sent / total_secs)));
  8847. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8848. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8849. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8850. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8851. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8852. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8853. if (total_pools > 1) {
  8854. for (i = 0; i < total_pools; i++) {
  8855. struct pool *pool = pools[i];
  8856. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8857. if (pool->solved)
  8858. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8859. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8860. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8861. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8862. pool->rejected, pool->stale_shares,
  8863. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8864. );
  8865. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8866. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8867. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8868. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8869. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8870. (float)pool->cgminer_pool_stats.net_bytes_received,
  8871. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8872. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8873. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8874. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8875. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8876. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8877. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8878. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8879. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8880. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8881. }
  8882. }
  8883. if (opt_quit_summary != BQS_NONE)
  8884. {
  8885. if (opt_quit_summary == BQS_DETAILED)
  8886. include_serial_in_statline = true;
  8887. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8888. for (i = 0; i < total_devices; ++i) {
  8889. struct cgpu_info *cgpu = get_devices(i);
  8890. if (!cgpu->proc_id)
  8891. {
  8892. // Device summary line
  8893. opt_show_procs = false;
  8894. log_print_status(cgpu);
  8895. opt_show_procs = true;
  8896. }
  8897. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8898. log_print_status(cgpu);
  8899. }
  8900. }
  8901. if (opt_shares) {
  8902. applog(LOG_WARNING, "Mined %.0f accepted shares of %d requested\n", total_diff_accepted, opt_shares);
  8903. if (opt_shares > total_diff_accepted)
  8904. applog(LOG_WARNING, "WARNING - Mined only %.0f shares of %d requested.", total_diff_accepted, opt_shares);
  8905. }
  8906. applog(LOG_WARNING, " ");
  8907. fflush(stderr);
  8908. fflush(stdout);
  8909. }
  8910. void _bfg_clean_up(bool restarting)
  8911. {
  8912. #ifdef HAVE_OPENCL
  8913. clear_adl(nDevs);
  8914. #endif
  8915. #ifdef HAVE_LIBUSB
  8916. if (likely(have_libusb))
  8917. libusb_exit(NULL);
  8918. #endif
  8919. cgtime(&total_tv_end);
  8920. #ifdef WIN32
  8921. timeEndPeriod(1);
  8922. #endif
  8923. if (!restarting) {
  8924. /* Attempting to disable curses or print a summary during a
  8925. * restart can lead to a deadlock. */
  8926. #ifdef HAVE_CURSES
  8927. disable_curses();
  8928. #endif
  8929. if (!opt_realquiet && successful_connect)
  8930. print_summary();
  8931. }
  8932. if (opt_n_threads)
  8933. free(cpus);
  8934. curl_global_cleanup();
  8935. #ifdef WIN32
  8936. WSACleanup();
  8937. #endif
  8938. }
  8939. void _quit(int status)
  8940. {
  8941. if (status) {
  8942. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8943. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8944. int *p = NULL;
  8945. // NOTE debugger can bypass with: p = &p
  8946. *p = status; // Segfault, hopefully dumping core
  8947. }
  8948. }
  8949. #if defined(unix) || defined(__APPLE__)
  8950. if (forkpid > 0) {
  8951. kill(forkpid, SIGTERM);
  8952. forkpid = 0;
  8953. }
  8954. #endif
  8955. exit(status);
  8956. }
  8957. #ifdef HAVE_CURSES
  8958. char *curses_input(const char *query)
  8959. {
  8960. char *input;
  8961. echo();
  8962. input = malloc(255);
  8963. if (!input)
  8964. quit(1, "Failed to malloc input");
  8965. leaveok(logwin, false);
  8966. wlogprint("%s:\n", query);
  8967. wgetnstr(logwin, input, 255);
  8968. if (!strlen(input))
  8969. {
  8970. free(input);
  8971. input = NULL;
  8972. }
  8973. leaveok(logwin, true);
  8974. noecho();
  8975. return input;
  8976. }
  8977. #endif
  8978. static bool pools_active = false;
  8979. static void *test_pool_thread(void *arg)
  8980. {
  8981. struct pool *pool = (struct pool *)arg;
  8982. if (pool_active(pool, false)) {
  8983. pool_tset(pool, &pool->lagging);
  8984. pool_tclear(pool, &pool->idle);
  8985. bool first_pool = false;
  8986. cg_wlock(&control_lock);
  8987. if (!pools_active) {
  8988. currentpool = pool;
  8989. if (pool->pool_no != 0)
  8990. first_pool = true;
  8991. pools_active = true;
  8992. }
  8993. cg_wunlock(&control_lock);
  8994. if (unlikely(first_pool))
  8995. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8996. else
  8997. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8998. switch_pools(NULL);
  8999. } else
  9000. pool_died(pool);
  9001. pool->testing = false;
  9002. return NULL;
  9003. }
  9004. /* Always returns true that the pool details were added unless we are not
  9005. * live, implying this is the only pool being added, so if no pools are
  9006. * active it returns false. */
  9007. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9008. {
  9009. size_t siz;
  9010. pool->rpc_url = url;
  9011. pool->rpc_user = user;
  9012. pool->rpc_pass = pass;
  9013. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9014. pool->rpc_userpass = malloc(siz);
  9015. if (!pool->rpc_userpass)
  9016. quit(1, "Failed to malloc userpass");
  9017. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9018. pool->testing = true;
  9019. pool->idle = true;
  9020. enable_pool(pool);
  9021. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9022. if (!live) {
  9023. pthread_join(pool->test_thread, NULL);
  9024. return pools_active;
  9025. }
  9026. return true;
  9027. }
  9028. #ifdef HAVE_CURSES
  9029. static bool input_pool(bool live)
  9030. {
  9031. char *url = NULL, *user = NULL, *pass = NULL;
  9032. struct pool *pool;
  9033. bool ret = false;
  9034. immedok(logwin, true);
  9035. wlogprint("Input server details.\n");
  9036. url = curses_input("URL");
  9037. if (!url)
  9038. goto out;
  9039. user = curses_input("Username");
  9040. if (!user)
  9041. goto out;
  9042. pass = curses_input("Password");
  9043. if (!pass)
  9044. pass = calloc(1, 1);
  9045. pool = add_pool();
  9046. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9047. strncmp(url, "https://", 8)) {
  9048. char *httpinput;
  9049. httpinput = malloc(256);
  9050. if (!httpinput)
  9051. quit(1, "Failed to malloc httpinput");
  9052. strcpy(httpinput, "http://");
  9053. strncat(httpinput, url, 248);
  9054. free(url);
  9055. url = httpinput;
  9056. }
  9057. ret = add_pool_details(pool, live, url, user, pass);
  9058. out:
  9059. immedok(logwin, false);
  9060. if (!ret) {
  9061. if (url)
  9062. free(url);
  9063. if (user)
  9064. free(user);
  9065. if (pass)
  9066. free(pass);
  9067. }
  9068. return ret;
  9069. }
  9070. #endif
  9071. #if defined(unix) || defined(__APPLE__)
  9072. static void fork_monitor()
  9073. {
  9074. // Make a pipe: [readFD, writeFD]
  9075. int pfd[2];
  9076. int r = pipe(pfd);
  9077. if (r < 0) {
  9078. perror("pipe - failed to create pipe for --monitor");
  9079. exit(1);
  9080. }
  9081. // Make stderr write end of pipe
  9082. fflush(stderr);
  9083. r = dup2(pfd[1], 2);
  9084. if (r < 0) {
  9085. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9086. exit(1);
  9087. }
  9088. r = close(pfd[1]);
  9089. if (r < 0) {
  9090. perror("close - failed to close write end of pipe for --monitor");
  9091. exit(1);
  9092. }
  9093. // Don't allow a dying monitor to kill the main process
  9094. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9095. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9096. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9097. perror("signal - failed to edit signal mask for --monitor");
  9098. exit(1);
  9099. }
  9100. // Fork a child process
  9101. forkpid = fork();
  9102. if (forkpid < 0) {
  9103. perror("fork - failed to fork child process for --monitor");
  9104. exit(1);
  9105. }
  9106. // Child: launch monitor command
  9107. if (0 == forkpid) {
  9108. // Make stdin read end of pipe
  9109. r = dup2(pfd[0], 0);
  9110. if (r < 0) {
  9111. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9112. exit(1);
  9113. }
  9114. close(pfd[0]);
  9115. if (r < 0) {
  9116. perror("close - in child, failed to close read end of pipe for --monitor");
  9117. exit(1);
  9118. }
  9119. // Launch user specified command
  9120. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9121. perror("execl - in child failed to exec user specified command for --monitor");
  9122. exit(1);
  9123. }
  9124. // Parent: clean up unused fds and bail
  9125. r = close(pfd[0]);
  9126. if (r < 0) {
  9127. perror("close - failed to close read end of pipe for --monitor");
  9128. exit(1);
  9129. }
  9130. }
  9131. #endif // defined(unix)
  9132. #ifdef HAVE_CURSES
  9133. #ifdef USE_UNICODE
  9134. static
  9135. wchar_t select_unicode_char(const wchar_t *opt)
  9136. {
  9137. for ( ; *opt; ++opt)
  9138. if (iswprint(*opt))
  9139. return *opt;
  9140. return '?';
  9141. }
  9142. #endif
  9143. void enable_curses(void) {
  9144. int x;
  9145. __maybe_unused int y;
  9146. lock_curses();
  9147. if (curses_active) {
  9148. unlock_curses();
  9149. return;
  9150. }
  9151. #ifdef USE_UNICODE
  9152. if (use_unicode)
  9153. {
  9154. setlocale(LC_CTYPE, "");
  9155. if (iswprint(0xb0))
  9156. have_unicode_degrees = true;
  9157. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9158. }
  9159. #endif
  9160. mainwin = initscr();
  9161. start_color();
  9162. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9163. if (ERR != use_default_colors())
  9164. default_bgcolor = -1;
  9165. #endif
  9166. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9167. {
  9168. menu_attr = COLOR_PAIR(1);
  9169. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9170. attr_bad |= COLOR_PAIR(2);
  9171. }
  9172. keypad(mainwin, true);
  9173. getmaxyx(mainwin, y, x);
  9174. statuswin = newwin(logstart, x, 0, 0);
  9175. leaveok(statuswin, true);
  9176. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9177. // We resize the window later anyway, so just start it off at 1 :)
  9178. logwin = newwin(1, 0, logcursor, 0);
  9179. idlok(logwin, true);
  9180. scrollok(logwin, true);
  9181. leaveok(logwin, true);
  9182. cbreak();
  9183. noecho();
  9184. nonl();
  9185. curses_active = true;
  9186. statusy = logstart;
  9187. unlock_curses();
  9188. }
  9189. #endif
  9190. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9191. #ifndef WANT_CPUMINE
  9192. struct device_drv cpu_drv;
  9193. struct device_drv cpu_drv = {
  9194. .name = "CPU",
  9195. };
  9196. #endif
  9197. static int cgminer_id_count = 0;
  9198. static int device_line_id_count;
  9199. void register_device(struct cgpu_info *cgpu)
  9200. {
  9201. cgpu->deven = DEV_ENABLED;
  9202. wr_lock(&devices_lock);
  9203. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9204. wr_unlock(&devices_lock);
  9205. if (!cgpu->proc_id)
  9206. cgpu->device_line_id = device_line_id_count++;
  9207. mining_threads += cgpu->threads ?: 1;
  9208. #ifdef HAVE_CURSES
  9209. adj_width(mining_threads, &dev_width);
  9210. #endif
  9211. rwlock_init(&cgpu->qlock);
  9212. cgpu->queued_work = NULL;
  9213. }
  9214. struct _cgpu_devid_counter {
  9215. char name[4];
  9216. int lastid;
  9217. UT_hash_handle hh;
  9218. };
  9219. void renumber_cgpu(struct cgpu_info *cgpu)
  9220. {
  9221. static struct _cgpu_devid_counter *devids = NULL;
  9222. struct _cgpu_devid_counter *d;
  9223. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9224. if (d)
  9225. cgpu->device_id = ++d->lastid;
  9226. else {
  9227. d = malloc(sizeof(*d));
  9228. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9229. cgpu->device_id = d->lastid = 0;
  9230. HASH_ADD_STR(devids, name, d);
  9231. }
  9232. }
  9233. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9234. {
  9235. sha256(buffer, length, digest);
  9236. return true;
  9237. }
  9238. #ifndef HAVE_PTHREAD_CANCEL
  9239. extern void setup_pthread_cancel_workaround();
  9240. extern struct sigaction pcwm_orig_term_handler;
  9241. #endif
  9242. bool bfg_need_detect_rescan;
  9243. extern void probe_device(struct lowlevel_device_info *);
  9244. static void schedule_rescan(const struct timeval *);
  9245. static
  9246. void drv_detect_all()
  9247. {
  9248. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9249. bool rescanning = false;
  9250. rescan:
  9251. bfg_need_detect_rescan = false;
  9252. #ifdef HAVE_BFG_LOWLEVEL
  9253. if (!opt_scrypt)
  9254. {
  9255. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9256. LL_FOREACH_SAFE(infolist, info, infotmp)
  9257. probe_device(info);
  9258. LL_FOREACH_SAFE(infolist, info, infotmp)
  9259. pthread_join(info->probe_pth, NULL);
  9260. }
  9261. #endif
  9262. struct driver_registration *reg, *tmp;
  9263. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9264. {
  9265. const struct device_drv * const drv = reg->drv;
  9266. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9267. if (0 == (algos & algomatch) || !drv->drv_detect)
  9268. continue;
  9269. drv->drv_detect();
  9270. }
  9271. #ifdef HAVE_BFG_LOWLEVEL
  9272. if (!opt_scrypt)
  9273. lowlevel_scan_free();
  9274. #endif
  9275. if (bfg_need_detect_rescan)
  9276. {
  9277. if (rescanning)
  9278. {
  9279. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9280. struct timeval tv_when;
  9281. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9282. schedule_rescan(&tv_when);
  9283. }
  9284. else
  9285. {
  9286. rescanning = true;
  9287. applog(LOG_DEBUG, "Device rescan requested");
  9288. goto rescan;
  9289. }
  9290. }
  9291. }
  9292. static
  9293. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9294. {
  9295. struct thr_info *thr;
  9296. int j;
  9297. struct device_drv *api = cgpu->drv;
  9298. if (!cgpu->devtype)
  9299. cgpu->devtype = "PGA";
  9300. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9301. int threadobj = cgpu->threads;
  9302. if (!threadobj)
  9303. // Create a fake thread object to handle hashmeter etc
  9304. threadobj = 1;
  9305. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9306. cgpu->thr[threadobj] = NULL;
  9307. cgpu->status = LIFE_INIT;
  9308. if (opt_devices_enabled_list)
  9309. {
  9310. struct string_elist *enablestr_elist;
  9311. cgpu->deven = DEV_DISABLED;
  9312. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9313. {
  9314. const char * const enablestr = enablestr_elist->string;
  9315. if (cgpu_match(enablestr, cgpu))
  9316. {
  9317. cgpu->deven = DEV_ENABLED;
  9318. break;
  9319. }
  9320. }
  9321. }
  9322. cgpu->max_hashes = 0;
  9323. BFGINIT(cgpu->min_nonce_diff, 1);
  9324. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9325. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9326. // Setup thread structs before starting any of the threads, in case they try to interact
  9327. for (j = 0; j < threadobj; ++j, ++*kp) {
  9328. thr = get_thread(*kp);
  9329. thr->id = *kp;
  9330. thr->cgpu = cgpu;
  9331. thr->device_thread = j;
  9332. thr->work_restart_notifier[1] = INVSOCK;
  9333. thr->mutex_request[1] = INVSOCK;
  9334. thr->_job_transition_in_progress = true;
  9335. timerclear(&thr->tv_morework);
  9336. thr->scanhash_working = true;
  9337. thr->hashes_done = 0;
  9338. timerclear(&thr->tv_hashes_done);
  9339. cgtime(&thr->tv_lastupdate);
  9340. thr->tv_poll.tv_sec = -1;
  9341. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9342. cgpu->thr[j] = thr;
  9343. }
  9344. if (!cgpu->device->threads)
  9345. notifier_init_invalid(cgpu->thr[0]->notifier);
  9346. else
  9347. if (!cgpu->threads)
  9348. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9349. else
  9350. for (j = 0; j < cgpu->threads; ++j)
  9351. {
  9352. thr = cgpu->thr[j];
  9353. notifier_init(thr->notifier);
  9354. }
  9355. }
  9356. static
  9357. void start_cgpu(struct cgpu_info *cgpu)
  9358. {
  9359. struct thr_info *thr;
  9360. int j;
  9361. for (j = 0; j < cgpu->threads; ++j) {
  9362. thr = cgpu->thr[j];
  9363. /* Enable threads for devices set not to mine but disable
  9364. * their queue in case we wish to enable them later */
  9365. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9366. continue;
  9367. thread_reportout(thr);
  9368. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9369. quit(1, "thread %d create failed", thr->id);
  9370. notifier_wake(thr->notifier);
  9371. }
  9372. if (cgpu->deven == DEV_ENABLED)
  9373. proc_enable(cgpu);
  9374. }
  9375. static
  9376. void _scan_serial(void *p)
  9377. {
  9378. const char *s = p;
  9379. struct string_elist *iter, *tmp;
  9380. struct string_elist *orig_scan_devices = scan_devices;
  9381. if (s)
  9382. {
  9383. // Make temporary scan_devices list
  9384. scan_devices = NULL;
  9385. string_elist_add("noauto", &scan_devices);
  9386. add_serial(s);
  9387. }
  9388. drv_detect_all();
  9389. if (s)
  9390. {
  9391. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9392. {
  9393. string_elist_del(&scan_devices, iter);
  9394. }
  9395. scan_devices = orig_scan_devices;
  9396. }
  9397. }
  9398. #ifdef HAVE_BFG_LOWLEVEL
  9399. static
  9400. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9401. {
  9402. if (!(false
  9403. || (info->serial && !strcasecmp(ser, info->serial))
  9404. || (info->path && !strcasecmp(ser, info->path ))
  9405. || (info->devid && !strcasecmp(ser, info->devid ))
  9406. ))
  9407. {
  9408. char *devid = devpath_to_devid(ser);
  9409. if (!devid)
  9410. return false;
  9411. const bool different = strcmp(info->devid, devid);
  9412. free(devid);
  9413. if (different)
  9414. return false;
  9415. }
  9416. return true;
  9417. }
  9418. static
  9419. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9420. {
  9421. struct driver_registration *dreg;
  9422. char dname[dnamelen];
  9423. int i;
  9424. for (i = 0; i < dnamelen; ++i)
  9425. dname[i] = tolower(_dname[i]);
  9426. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9427. if (!dreg)
  9428. {
  9429. for (i = 0; i < dnamelen; ++i)
  9430. dname[i] = toupper(_dname[i]);
  9431. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9432. if (!dreg)
  9433. return NULL;
  9434. }
  9435. return dreg->drv;
  9436. }
  9437. static
  9438. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9439. {
  9440. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9441. if (!(drv && drv->lowl_probe))
  9442. return false;
  9443. return drv->lowl_probe(info);
  9444. }
  9445. static
  9446. void *probe_device_thread(void *p)
  9447. {
  9448. struct lowlevel_device_info * const infolist = p;
  9449. struct lowlevel_device_info *info = infolist;
  9450. {
  9451. char threadname[5 + strlen(info->devid) + 1];
  9452. sprintf(threadname, "probe_%s", info->devid);
  9453. RenameThread(threadname);
  9454. }
  9455. // If already in use, ignore
  9456. if (bfg_claim_any(NULL, NULL, info->devid))
  9457. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9458. __func__, info->product);
  9459. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9460. struct string_elist *sd_iter, *sd_tmp;
  9461. struct driver_registration *dreg, *dreg_tmp;
  9462. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9463. {
  9464. const char * const dname = sd_iter->string;
  9465. const char * const colon = strpbrk(dname, ":@");
  9466. if (!(colon && colon != dname))
  9467. continue;
  9468. const char * const ser = &colon[1];
  9469. LL_FOREACH2(infolist, info, same_devid_next)
  9470. {
  9471. if (!_probe_device_match(info, ser))
  9472. continue;
  9473. const size_t dnamelen = (colon - dname);
  9474. if (_probe_device_internal(info, dname, dnamelen))
  9475. return NULL;
  9476. else
  9477. if (opt_hotplug)
  9478. bfg_need_detect_rescan = true;
  9479. }
  9480. }
  9481. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9482. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9483. {
  9484. const struct device_drv * const drv = dreg->drv;
  9485. // Check for "noauto" flag
  9486. // NOTE: driver-specific configuration overrides general
  9487. bool doauto = true;
  9488. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9489. {
  9490. const char * const dname = sd_iter->string;
  9491. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9492. const char *colon = strchr(dname, ':');
  9493. if (!colon)
  9494. colon = &dname[-1];
  9495. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9496. continue;
  9497. const ssize_t dnamelen = (colon - dname);
  9498. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9499. continue;
  9500. doauto = (tolower(colon[1]) == 'a');
  9501. if (dnamelen != -1)
  9502. break;
  9503. }
  9504. if (doauto && drv->lowl_match)
  9505. {
  9506. LL_FOREACH2(infolist, info, same_devid_next)
  9507. {
  9508. if (!drv->lowl_match(info))
  9509. continue;
  9510. if (drv->lowl_probe(info))
  9511. return NULL;
  9512. else
  9513. if (opt_hotplug)
  9514. bfg_need_detect_rescan = true;
  9515. }
  9516. }
  9517. }
  9518. // probe driver(s) with 'all' enabled
  9519. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9520. {
  9521. const char * const dname = sd_iter->string;
  9522. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9523. const char * const colon = strchr(dname, ':');
  9524. if (!colon)
  9525. {
  9526. LL_FOREACH2(infolist, info, same_devid_next)
  9527. {
  9528. if (
  9529. #ifdef NEED_BFG_LOWL_VCOM
  9530. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9531. #endif
  9532. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9533. {
  9534. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9535. {
  9536. const struct device_drv * const drv = dreg->drv;
  9537. if (drv->lowl_probe_by_name_only)
  9538. continue;
  9539. if (!drv->lowl_probe)
  9540. continue;
  9541. if (drv->lowl_probe(info))
  9542. return NULL;
  9543. }
  9544. if (opt_hotplug)
  9545. bfg_need_detect_rescan = true;
  9546. break;
  9547. }
  9548. }
  9549. continue;
  9550. }
  9551. if (strcasecmp(&colon[1], "all"))
  9552. continue;
  9553. const size_t dnamelen = (colon - dname);
  9554. LL_FOREACH2(infolist, info, same_devid_next)
  9555. {
  9556. if (_probe_device_internal(info, dname, dnamelen))
  9557. return NULL;
  9558. }
  9559. }
  9560. return NULL;
  9561. }
  9562. void probe_device(struct lowlevel_device_info * const info)
  9563. {
  9564. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9565. }
  9566. #endif
  9567. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9568. {
  9569. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9570. int devcount, i, mining_threads_new = 0;
  9571. unsigned int k;
  9572. struct cgpu_info *cgpu;
  9573. struct thr_info *thr;
  9574. void *p;
  9575. mutex_lock(&mutex);
  9576. devcount = total_devices;
  9577. addfunc(arg);
  9578. if (!total_devices_new)
  9579. goto out;
  9580. wr_lock(&devices_lock);
  9581. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9582. if (unlikely(!p))
  9583. {
  9584. wr_unlock(&devices_lock);
  9585. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9586. goto out;
  9587. }
  9588. devices = p;
  9589. wr_unlock(&devices_lock);
  9590. for (i = 0; i < total_devices_new; ++i)
  9591. {
  9592. cgpu = devices_new[i];
  9593. mining_threads_new += cgpu->threads ?: 1;
  9594. }
  9595. wr_lock(&mining_thr_lock);
  9596. mining_threads_new += mining_threads;
  9597. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9598. if (unlikely(!p))
  9599. {
  9600. wr_unlock(&mining_thr_lock);
  9601. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9602. goto out;
  9603. }
  9604. mining_thr = p;
  9605. wr_unlock(&mining_thr_lock);
  9606. for (i = mining_threads; i < mining_threads_new; ++i) {
  9607. mining_thr[i] = calloc(1, sizeof(*thr));
  9608. if (!mining_thr[i])
  9609. {
  9610. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9611. for ( ; --i >= mining_threads; )
  9612. free(mining_thr[i]);
  9613. goto out;
  9614. }
  9615. }
  9616. k = mining_threads;
  9617. for (i = 0; i < total_devices_new; ++i)
  9618. {
  9619. cgpu = devices_new[i];
  9620. allocate_cgpu(cgpu, &k);
  9621. }
  9622. for (i = 0; i < total_devices_new; ++i)
  9623. {
  9624. cgpu = devices_new[i];
  9625. start_cgpu(cgpu);
  9626. register_device(cgpu);
  9627. ++total_devices;
  9628. }
  9629. #ifdef HAVE_CURSES
  9630. switch_logsize();
  9631. #endif
  9632. out:
  9633. total_devices_new = 0;
  9634. devcount = total_devices - devcount;
  9635. mutex_unlock(&mutex);
  9636. return devcount;
  9637. }
  9638. int scan_serial(const char *s)
  9639. {
  9640. return create_new_cgpus(_scan_serial, (void*)s);
  9641. }
  9642. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9643. static bool rescan_active;
  9644. static struct timeval tv_rescan;
  9645. static notifier_t rescan_notifier;
  9646. static
  9647. void *rescan_thread(__maybe_unused void *p)
  9648. {
  9649. pthread_detach(pthread_self());
  9650. RenameThread("rescan");
  9651. struct timeval tv_timeout, tv_now;
  9652. fd_set rfds;
  9653. while (true)
  9654. {
  9655. mutex_lock(&rescan_mutex);
  9656. tv_timeout = tv_rescan;
  9657. if (!timer_isset(&tv_timeout))
  9658. {
  9659. rescan_active = false;
  9660. mutex_unlock(&rescan_mutex);
  9661. break;
  9662. }
  9663. mutex_unlock(&rescan_mutex);
  9664. FD_ZERO(&rfds);
  9665. FD_SET(rescan_notifier[0], &rfds);
  9666. const int maxfd = rescan_notifier[0];
  9667. timer_set_now(&tv_now);
  9668. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9669. notifier_read(rescan_notifier);
  9670. mutex_lock(&rescan_mutex);
  9671. if (timer_passed(&tv_rescan, NULL))
  9672. {
  9673. timer_unset(&tv_rescan);
  9674. mutex_unlock(&rescan_mutex);
  9675. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9676. scan_serial(NULL);
  9677. }
  9678. else
  9679. mutex_unlock(&rescan_mutex);
  9680. }
  9681. return NULL;
  9682. }
  9683. static
  9684. void _schedule_rescan(const struct timeval * const tvp_when)
  9685. {
  9686. if (rescan_active)
  9687. {
  9688. if (timercmp(tvp_when, &tv_rescan, <))
  9689. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9690. else
  9691. {
  9692. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9693. tv_rescan = *tvp_when;
  9694. }
  9695. return;
  9696. }
  9697. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9698. tv_rescan = *tvp_when;
  9699. rescan_active = true;
  9700. static pthread_t pth;
  9701. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9702. applog(LOG_ERR, "Failed to start rescan thread");
  9703. }
  9704. static
  9705. void schedule_rescan(const struct timeval * const tvp_when)
  9706. {
  9707. mutex_lock(&rescan_mutex);
  9708. _schedule_rescan(tvp_when);
  9709. mutex_unlock(&rescan_mutex);
  9710. }
  9711. #ifdef HAVE_BFG_HOTPLUG
  9712. static
  9713. void hotplug_trigger()
  9714. {
  9715. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9716. struct timeval tv_now;
  9717. timer_set_now(&tv_now);
  9718. schedule_rescan(&tv_now);
  9719. }
  9720. #endif
  9721. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9722. static
  9723. void *hotplug_thread(__maybe_unused void *p)
  9724. {
  9725. pthread_detach(pthread_self());
  9726. RenameThread("hotplug");
  9727. struct udev * const udev = udev_new();
  9728. if (unlikely(!udev))
  9729. applogfailr(NULL, LOG_ERR, "udev_new");
  9730. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9731. if (unlikely(!mon))
  9732. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9733. if (unlikely(udev_monitor_enable_receiving(mon)))
  9734. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9735. const int epfd = epoll_create(1);
  9736. if (unlikely(epfd == -1))
  9737. applogfailr(NULL, LOG_ERR, "epoll_create");
  9738. {
  9739. const int fd = udev_monitor_get_fd(mon);
  9740. struct epoll_event ev = {
  9741. .events = EPOLLIN | EPOLLPRI,
  9742. .data.fd = fd,
  9743. };
  9744. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9745. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9746. }
  9747. struct epoll_event ev;
  9748. int rv;
  9749. bool pending = false;
  9750. while (true)
  9751. {
  9752. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9753. if (rv == -1)
  9754. {
  9755. if (errno == EAGAIN || errno == EINTR)
  9756. continue;
  9757. break;
  9758. }
  9759. if (!rv)
  9760. {
  9761. hotplug_trigger();
  9762. pending = false;
  9763. continue;
  9764. }
  9765. struct udev_device * const device = udev_monitor_receive_device(mon);
  9766. if (!device)
  9767. continue;
  9768. const char * const action = udev_device_get_action(device);
  9769. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9770. if (strcmp(action, "add"))
  9771. continue;
  9772. pending = true;
  9773. }
  9774. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9775. }
  9776. #elif defined(WIN32)
  9777. static UINT_PTR _hotplug_wintimer_id;
  9778. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9779. {
  9780. KillTimer(NULL, _hotplug_wintimer_id);
  9781. _hotplug_wintimer_id = 0;
  9782. hotplug_trigger();
  9783. }
  9784. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9785. {
  9786. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9787. {
  9788. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9789. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9790. }
  9791. return DefWindowProc(hwnd, msg, wParam, lParam);
  9792. }
  9793. static
  9794. void *hotplug_thread(__maybe_unused void *p)
  9795. {
  9796. pthread_detach(pthread_self());
  9797. WNDCLASS DummyWinCls = {
  9798. .lpszClassName = "BFGDummyWinCls",
  9799. .lpfnWndProc = hotplug_win_callback,
  9800. };
  9801. ATOM a = RegisterClass(&DummyWinCls);
  9802. if (unlikely(!a))
  9803. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9804. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9805. if (unlikely(!hwnd))
  9806. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9807. MSG msg;
  9808. while (GetMessage(&msg, NULL, 0, 0))
  9809. {
  9810. TranslateMessage(&msg);
  9811. DispatchMessage(&msg);
  9812. }
  9813. quit(0, "WM_QUIT received");
  9814. return NULL;
  9815. }
  9816. #endif
  9817. #ifdef HAVE_BFG_HOTPLUG
  9818. static
  9819. void hotplug_start()
  9820. {
  9821. pthread_t pth;
  9822. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9823. applog(LOG_ERR, "Failed to start hotplug thread");
  9824. }
  9825. #endif
  9826. static void probe_pools(void)
  9827. {
  9828. int i;
  9829. for (i = 0; i < total_pools; i++) {
  9830. struct pool *pool = pools[i];
  9831. pool->testing = true;
  9832. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9833. }
  9834. }
  9835. static void raise_fd_limits(void)
  9836. {
  9837. #ifdef HAVE_SETRLIMIT
  9838. struct rlimit fdlimit;
  9839. unsigned long old_soft_limit;
  9840. char frombuf[0x10] = "unlimited";
  9841. char hardbuf[0x10] = "unlimited";
  9842. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9843. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9844. old_soft_limit = fdlimit.rlim_cur;
  9845. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9846. fdlimit.rlim_cur = FD_SETSIZE;
  9847. else
  9848. fdlimit.rlim_cur = fdlimit.rlim_max;
  9849. if (fdlimit.rlim_max != RLIM_INFINITY)
  9850. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9851. if (old_soft_limit != RLIM_INFINITY)
  9852. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9853. if (fdlimit.rlim_cur == old_soft_limit)
  9854. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9855. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9856. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9857. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9858. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9859. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9860. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9861. #else
  9862. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9863. #endif
  9864. }
  9865. extern void bfg_init_threadlocal();
  9866. extern void stratumsrv_start();
  9867. int main(int argc, char *argv[])
  9868. {
  9869. struct sigaction handler;
  9870. struct thr_info *thr;
  9871. struct block *block;
  9872. unsigned int k;
  9873. int i;
  9874. char *s;
  9875. #ifdef WIN32
  9876. LoadLibrary("backtrace.dll");
  9877. #endif
  9878. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9879. bfg_init_threadlocal();
  9880. #ifndef HAVE_PTHREAD_CANCEL
  9881. setup_pthread_cancel_workaround();
  9882. #endif
  9883. bfg_init_checksums();
  9884. #ifdef WIN32
  9885. {
  9886. WSADATA wsa;
  9887. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9888. if (i)
  9889. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9890. }
  9891. #endif
  9892. /* This dangerous functions tramples random dynamically allocated
  9893. * variables so do it before anything at all */
  9894. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9895. quit(1, "Failed to curl_global_init");
  9896. initial_args = malloc(sizeof(char *) * (argc + 1));
  9897. for (i = 0; i < argc; i++)
  9898. initial_args[i] = strdup(argv[i]);
  9899. initial_args[argc] = NULL;
  9900. mutex_init(&hash_lock);
  9901. mutex_init(&console_lock);
  9902. cglock_init(&control_lock);
  9903. mutex_init(&stats_lock);
  9904. mutex_init(&sharelog_lock);
  9905. cglock_init(&ch_lock);
  9906. mutex_init(&sshare_lock);
  9907. rwlock_init(&blk_lock);
  9908. rwlock_init(&netacc_lock);
  9909. rwlock_init(&mining_thr_lock);
  9910. rwlock_init(&devices_lock);
  9911. mutex_init(&lp_lock);
  9912. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9913. quit(1, "Failed to pthread_cond_init lp_cond");
  9914. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9915. quit(1, "Failed to pthread_cond_init gws_cond");
  9916. notifier_init(submit_waiting_notifier);
  9917. timer_unset(&tv_rescan);
  9918. notifier_init(rescan_notifier);
  9919. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9920. #ifdef WANT_CPUMINE
  9921. init_max_name_len();
  9922. #endif
  9923. handler.sa_handler = &sighandler;
  9924. handler.sa_flags = 0;
  9925. sigemptyset(&handler.sa_mask);
  9926. #ifdef HAVE_PTHREAD_CANCEL
  9927. sigaction(SIGTERM, &handler, &termhandler);
  9928. #else
  9929. // Need to let pthread_cancel emulation handle SIGTERM first
  9930. termhandler = pcwm_orig_term_handler;
  9931. pcwm_orig_term_handler = handler;
  9932. #endif
  9933. sigaction(SIGINT, &handler, &inthandler);
  9934. #ifndef WIN32
  9935. signal(SIGPIPE, SIG_IGN);
  9936. #else
  9937. timeBeginPeriod(1);
  9938. #endif
  9939. opt_kernel_path = CGMINER_PREFIX;
  9940. cgminer_path = alloca(PATH_MAX);
  9941. s = strdup(argv[0]);
  9942. strcpy(cgminer_path, dirname(s));
  9943. free(s);
  9944. strcat(cgminer_path, "/");
  9945. #ifdef WANT_CPUMINE
  9946. // Hack to make cgminer silent when called recursively on WIN32
  9947. int skip_to_bench = 0;
  9948. #if defined(WIN32)
  9949. char buf[32];
  9950. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  9951. skip_to_bench = 1;
  9952. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  9953. skip_to_bench = 1;
  9954. #endif // defined(WIN32)
  9955. #endif
  9956. devcursor = 8;
  9957. logstart = devcursor;
  9958. logcursor = logstart;
  9959. block = calloc(sizeof(struct block), 1);
  9960. if (unlikely(!block))
  9961. quit (1, "main OOM");
  9962. for (i = 0; i < 36; i++)
  9963. strcat(block->hash, "0");
  9964. HASH_ADD_STR(blocks, hash, block);
  9965. strcpy(current_block, block->hash);
  9966. mutex_init(&submitting_lock);
  9967. #ifdef HAVE_OPENCL
  9968. memset(gpus, 0, sizeof(gpus));
  9969. for (i = 0; i < MAX_GPUDEVICES; i++)
  9970. gpus[i].dynamic = true;
  9971. #endif
  9972. schedstart.tm.tm_sec = 1;
  9973. schedstop .tm.tm_sec = 1;
  9974. /* parse command line */
  9975. opt_register_table(opt_config_table,
  9976. "Options for both config file and command line");
  9977. opt_register_table(opt_cmdline_table,
  9978. "Options for command line only");
  9979. opt_parse(&argc, argv, applog_and_exit);
  9980. if (argc != 1)
  9981. quit(1, "Unexpected extra commandline arguments");
  9982. if (!config_loaded)
  9983. load_default_config();
  9984. #ifndef HAVE_PTHREAD_CANCEL
  9985. // Can't do this any earlier, or config isn't loaded
  9986. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  9987. #endif
  9988. #ifdef HAVE_PWD_H
  9989. struct passwd *user_info = NULL;
  9990. if (opt_setuid != NULL) {
  9991. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  9992. quit(1, "Unable to find setuid user information");
  9993. }
  9994. }
  9995. #endif
  9996. #ifdef HAVE_CHROOT
  9997. if (chroot_dir != NULL) {
  9998. #ifdef HAVE_PWD_H
  9999. if (user_info == NULL && getuid() == 0) {
  10000. applog(LOG_WARNING, "Running as root inside chroot");
  10001. }
  10002. #endif
  10003. if (chroot(chroot_dir) != 0) {
  10004. quit(1, "Unable to chroot");
  10005. }
  10006. if (chdir("/"))
  10007. quit(1, "Unable to chdir to chroot");
  10008. }
  10009. #endif
  10010. #ifdef HAVE_PWD_H
  10011. if (user_info != NULL) {
  10012. if (setgid((*user_info).pw_gid) != 0)
  10013. quit(1, "Unable to setgid");
  10014. if (setuid((*user_info).pw_uid) != 0)
  10015. quit(1, "Unable to setuid");
  10016. }
  10017. #endif
  10018. raise_fd_limits();
  10019. if (opt_benchmark) {
  10020. struct pool *pool;
  10021. if (opt_scrypt)
  10022. quit(1, "Cannot use benchmark mode with scrypt");
  10023. want_longpoll = false;
  10024. pool = add_pool();
  10025. pool->rpc_url = malloc(255);
  10026. strcpy(pool->rpc_url, "Benchmark");
  10027. pool->rpc_user = pool->rpc_url;
  10028. pool->rpc_pass = pool->rpc_url;
  10029. enable_pool(pool);
  10030. pool->idle = false;
  10031. successful_connect = true;
  10032. }
  10033. if (opt_unittest) {
  10034. test_cgpu_match();
  10035. test_intrange();
  10036. test_decimal_width();
  10037. utf8_test();
  10038. }
  10039. #ifdef HAVE_CURSES
  10040. if (opt_realquiet || opt_display_devs)
  10041. use_curses = false;
  10042. setlocale(LC_ALL, "C");
  10043. if (use_curses)
  10044. enable_curses();
  10045. #endif
  10046. #ifdef HAVE_LIBUSB
  10047. int err = libusb_init(NULL);
  10048. if (err)
  10049. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10050. else
  10051. have_libusb = true;
  10052. #endif
  10053. applog(LOG_WARNING, "Started %s", packagename);
  10054. if (cnfbuf) {
  10055. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10056. switch (fileconf_load) {
  10057. case 0:
  10058. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10059. applog(LOG_WARNING, "Configuration file could not be used.");
  10060. break;
  10061. case -1:
  10062. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10063. if (use_curses)
  10064. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10065. break;
  10066. default:
  10067. break;
  10068. }
  10069. free(cnfbuf);
  10070. cnfbuf = NULL;
  10071. }
  10072. i = strlen(opt_kernel_path) + 2;
  10073. char __kernel_path[i];
  10074. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10075. opt_kernel_path = __kernel_path;
  10076. if (want_per_device_stats)
  10077. opt_log_output = true;
  10078. #ifdef WANT_CPUMINE
  10079. #ifdef USE_SCRYPT
  10080. if (opt_scrypt)
  10081. set_scrypt_algo(&opt_algo);
  10082. else
  10083. #endif
  10084. if (0 <= opt_bench_algo) {
  10085. double rate = bench_algo_stage3(opt_bench_algo);
  10086. if (!skip_to_bench)
  10087. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  10088. else {
  10089. // Write result to shared memory for parent
  10090. #if defined(WIN32)
  10091. char unique_name[64];
  10092. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  10093. HANDLE map_handle = CreateFileMapping(
  10094. INVALID_HANDLE_VALUE, // use paging file
  10095. NULL, // default security attributes
  10096. PAGE_READWRITE, // read/write access
  10097. 0, // size: high 32-bits
  10098. 4096, // size: low 32-bits
  10099. unique_name // name of map object
  10100. );
  10101. if (NULL != map_handle) {
  10102. void *shared_mem = MapViewOfFile(
  10103. map_handle, // object to map view of
  10104. FILE_MAP_WRITE, // read/write access
  10105. 0, // high offset: map from
  10106. 0, // low offset: beginning
  10107. 0 // default: map entire file
  10108. );
  10109. if (NULL != shared_mem)
  10110. CopyMemory(shared_mem, &rate, sizeof(rate));
  10111. (void)UnmapViewOfFile(shared_mem);
  10112. }
  10113. (void)CloseHandle(map_handle);
  10114. }
  10115. #endif
  10116. }
  10117. exit(0);
  10118. }
  10119. #endif
  10120. bfg_devapi_init();
  10121. drv_detect_all();
  10122. total_devices = total_devices_new;
  10123. devices = devices_new;
  10124. total_devices_new = 0;
  10125. devices_new = NULL;
  10126. if (opt_display_devs) {
  10127. int devcount = 0;
  10128. applog(LOG_ERR, "Devices detected:");
  10129. for (i = 0; i < total_devices; ++i) {
  10130. struct cgpu_info *cgpu = devices[i];
  10131. char buf[0x100];
  10132. if (cgpu->device != cgpu)
  10133. continue;
  10134. if (cgpu->name)
  10135. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10136. else
  10137. if (cgpu->dev_manufacturer)
  10138. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10139. else
  10140. if (cgpu->dev_product)
  10141. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10142. else
  10143. strcpy(buf, " Device");
  10144. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10145. if (cgpu->dev_serial)
  10146. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10147. if (cgpu->device_path)
  10148. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10149. tailsprintf(buf, sizeof(buf), ")");
  10150. _applog(LOG_NOTICE, buf);
  10151. ++devcount;
  10152. }
  10153. quit(0, "%d devices listed", devcount);
  10154. }
  10155. mining_threads = 0;
  10156. for (i = 0; i < total_devices; ++i)
  10157. register_device(devices[i]);
  10158. if (!total_devices) {
  10159. applog(LOG_WARNING, "No devices detected!");
  10160. if (use_curses)
  10161. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10162. else
  10163. applog(LOG_WARNING, "Waiting for devices");
  10164. }
  10165. if (opt_quit_summary == BQS_DEFAULT)
  10166. {
  10167. if (total_devices < 25)
  10168. opt_quit_summary = BQS_PROCS;
  10169. else
  10170. opt_quit_summary = BQS_DEVS;
  10171. }
  10172. #ifdef HAVE_CURSES
  10173. switch_logsize();
  10174. #endif
  10175. if (!total_pools) {
  10176. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10177. #ifdef HAVE_CURSES
  10178. if (!use_curses || !input_pool(false))
  10179. #endif
  10180. quit(1, "Pool setup failed");
  10181. }
  10182. for (i = 0; i < total_pools; i++) {
  10183. struct pool *pool = pools[i];
  10184. size_t siz;
  10185. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10186. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10187. if (!pool->rpc_url)
  10188. quit(1, "No URI supplied for pool %u", i);
  10189. if (!pool->rpc_userpass) {
  10190. if (!pool->rpc_user || !pool->rpc_pass)
  10191. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10192. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10193. pool->rpc_userpass = malloc(siz);
  10194. if (!pool->rpc_userpass)
  10195. quit(1, "Failed to malloc userpass");
  10196. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10197. }
  10198. }
  10199. /* Set the currentpool to pool with priority 0 */
  10200. validate_pool_priorities();
  10201. for (i = 0; i < total_pools; i++) {
  10202. struct pool *pool = pools[i];
  10203. if (!pool->prio)
  10204. currentpool = pool;
  10205. }
  10206. #ifdef HAVE_SYSLOG_H
  10207. if (use_syslog)
  10208. openlog(PACKAGE, LOG_PID, LOG_USER);
  10209. #endif
  10210. #if defined(unix) || defined(__APPLE__)
  10211. if (opt_stderr_cmd)
  10212. fork_monitor();
  10213. #endif // defined(unix)
  10214. mining_thr = calloc(mining_threads, sizeof(thr));
  10215. if (!mining_thr)
  10216. quit(1, "Failed to calloc mining_thr");
  10217. for (i = 0; i < mining_threads; i++) {
  10218. mining_thr[i] = calloc(1, sizeof(*thr));
  10219. if (!mining_thr[i])
  10220. quit(1, "Failed to calloc mining_thr[%d]", i);
  10221. }
  10222. total_control_threads = 6;
  10223. control_thr = calloc(total_control_threads, sizeof(*thr));
  10224. if (!control_thr)
  10225. quit(1, "Failed to calloc control_thr");
  10226. gwsched_thr_id = 0;
  10227. /* Create a unique get work queue */
  10228. getq = tq_new();
  10229. if (!getq)
  10230. quit(1, "Failed to create getq");
  10231. /* We use the getq mutex as the staged lock */
  10232. stgd_lock = &getq->mutex;
  10233. if (opt_benchmark)
  10234. goto begin_bench;
  10235. for (i = 0; i < total_pools; i++) {
  10236. struct pool *pool = pools[i];
  10237. enable_pool(pool);
  10238. pool->idle = true;
  10239. }
  10240. applog(LOG_NOTICE, "Probing for an alive pool");
  10241. do {
  10242. bool still_testing;
  10243. int i;
  10244. /* Look for at least one active pool before starting */
  10245. probe_pools();
  10246. do {
  10247. sleep(1);
  10248. if (pools_active)
  10249. break;
  10250. still_testing = false;
  10251. for (int i = 0; i < total_pools; ++i)
  10252. if (pools[i]->testing)
  10253. still_testing = true;
  10254. } while (still_testing);
  10255. if (!pools_active) {
  10256. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10257. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10258. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10259. for (i = 0; i < total_pools; i++) {
  10260. struct pool *pool;
  10261. pool = pools[i];
  10262. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10263. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10264. }
  10265. #ifdef HAVE_CURSES
  10266. if (use_curses) {
  10267. halfdelay(150);
  10268. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10269. if (getch() != ERR)
  10270. quit(0, "No servers could be used! Exiting.");
  10271. cbreak();
  10272. } else
  10273. #endif
  10274. quit(0, "No servers could be used! Exiting.");
  10275. }
  10276. } while (!pools_active);
  10277. #ifdef USE_SCRYPT
  10278. if (detect_algo == 1 && !opt_scrypt) {
  10279. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10280. opt_scrypt = true;
  10281. }
  10282. #endif
  10283. detect_algo = 0;
  10284. begin_bench:
  10285. total_mhashes_done = 0;
  10286. for (i = 0; i < total_devices; i++) {
  10287. struct cgpu_info *cgpu = devices[i];
  10288. cgpu->rolling = cgpu->total_mhashes = 0;
  10289. }
  10290. cgtime(&total_tv_start);
  10291. cgtime(&total_tv_end);
  10292. miner_started = total_tv_start;
  10293. time_t miner_start_ts = time(NULL);
  10294. if (schedstart.tm.tm_sec)
  10295. localtime_r(&miner_start_ts, &schedstart.tm);
  10296. if (schedstop.tm.tm_sec)
  10297. localtime_r(&miner_start_ts, &schedstop .tm);
  10298. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10299. // Initialise processors and threads
  10300. k = 0;
  10301. for (i = 0; i < total_devices; ++i) {
  10302. struct cgpu_info *cgpu = devices[i];
  10303. allocate_cgpu(cgpu, &k);
  10304. }
  10305. // Start threads
  10306. for (i = 0; i < total_devices; ++i) {
  10307. struct cgpu_info *cgpu = devices[i];
  10308. start_cgpu(cgpu);
  10309. }
  10310. #ifdef HAVE_OPENCL
  10311. for (i = 0; i < nDevs; i++)
  10312. pause_dynamic_threads(i);
  10313. #endif
  10314. #ifdef WANT_CPUMINE
  10315. applog(LOG_INFO, "%d cpu miner threads started, "
  10316. "using SHA256 '%s' algorithm.",
  10317. opt_n_threads,
  10318. algo_names[opt_algo]);
  10319. #endif
  10320. cgtime(&total_tv_start);
  10321. cgtime(&total_tv_end);
  10322. {
  10323. pthread_t submit_thread;
  10324. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10325. quit(1, "submit_work thread create failed");
  10326. }
  10327. watchpool_thr_id = 1;
  10328. thr = &control_thr[watchpool_thr_id];
  10329. /* start watchpool thread */
  10330. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10331. quit(1, "watchpool thread create failed");
  10332. pthread_detach(thr->pth);
  10333. watchdog_thr_id = 2;
  10334. thr = &control_thr[watchdog_thr_id];
  10335. /* start watchdog thread */
  10336. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10337. quit(1, "watchdog thread create failed");
  10338. pthread_detach(thr->pth);
  10339. #ifdef HAVE_OPENCL
  10340. /* Create reinit gpu thread */
  10341. gpur_thr_id = 3;
  10342. thr = &control_thr[gpur_thr_id];
  10343. thr->q = tq_new();
  10344. if (!thr->q)
  10345. quit(1, "tq_new failed for gpur_thr_id");
  10346. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10347. quit(1, "reinit_gpu thread create failed");
  10348. #endif
  10349. /* Create API socket thread */
  10350. api_thr_id = 4;
  10351. thr = &control_thr[api_thr_id];
  10352. if (thr_info_create(thr, NULL, api_thread, thr))
  10353. quit(1, "API thread create failed");
  10354. #ifdef USE_LIBMICROHTTPD
  10355. if (httpsrv_port != -1)
  10356. httpsrv_start(httpsrv_port);
  10357. #endif
  10358. #ifdef USE_LIBEVENT
  10359. if (stratumsrv_port != -1)
  10360. stratumsrv_start();
  10361. #endif
  10362. #ifdef HAVE_BFG_HOTPLUG
  10363. if (opt_hotplug && !opt_scrypt)
  10364. hotplug_start();
  10365. #endif
  10366. #ifdef HAVE_CURSES
  10367. /* Create curses input thread for keyboard input. Create this last so
  10368. * that we know all threads are created since this can call kill_work
  10369. * to try and shut down ll previous threads. */
  10370. input_thr_id = 5;
  10371. thr = &control_thr[input_thr_id];
  10372. if (thr_info_create(thr, NULL, input_thread, thr))
  10373. quit(1, "input thread create failed");
  10374. pthread_detach(thr->pth);
  10375. #endif
  10376. /* Just to be sure */
  10377. if (total_control_threads != 6)
  10378. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10379. /* Once everything is set up, main() becomes the getwork scheduler */
  10380. while (42) {
  10381. int ts, max_staged = opt_queue;
  10382. struct pool *pool, *cp;
  10383. bool lagging = false;
  10384. struct curl_ent *ce;
  10385. struct work *work;
  10386. cp = current_pool();
  10387. // Generally, each processor needs a new work, and all at once during work restarts
  10388. max_staged += mining_threads;
  10389. mutex_lock(stgd_lock);
  10390. ts = __total_staged();
  10391. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10392. lagging = true;
  10393. /* Wait until hash_pop tells us we need to create more work */
  10394. if (ts > max_staged) {
  10395. staged_full = true;
  10396. pthread_cond_wait(&gws_cond, stgd_lock);
  10397. ts = __total_staged();
  10398. }
  10399. mutex_unlock(stgd_lock);
  10400. if (ts > max_staged)
  10401. continue;
  10402. work = make_work();
  10403. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10404. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10405. cp->getfail_occasions++;
  10406. total_go++;
  10407. }
  10408. pool = select_pool(lagging);
  10409. retry:
  10410. if (pool->has_stratum) {
  10411. while (!pool->stratum_active || !pool->stratum_notify) {
  10412. struct pool *altpool = select_pool(true);
  10413. if (altpool == pool && pool->has_stratum)
  10414. cgsleep_ms(5000);
  10415. pool = altpool;
  10416. goto retry;
  10417. }
  10418. gen_stratum_work(pool, work);
  10419. applog(LOG_DEBUG, "Generated stratum work");
  10420. stage_work(work);
  10421. continue;
  10422. }
  10423. if (pool->last_work_copy) {
  10424. mutex_lock(&pool->last_work_lock);
  10425. struct work *last_work = pool->last_work_copy;
  10426. if (!last_work)
  10427. {}
  10428. else
  10429. if (can_roll(last_work) && should_roll(last_work)) {
  10430. struct timeval tv_now;
  10431. cgtime(&tv_now);
  10432. free_work(work);
  10433. work = make_clone(pool->last_work_copy);
  10434. mutex_unlock(&pool->last_work_lock);
  10435. roll_work(work);
  10436. 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));
  10437. stage_work(work);
  10438. continue;
  10439. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10440. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10441. } else {
  10442. free_work(last_work);
  10443. pool->last_work_copy = NULL;
  10444. }
  10445. mutex_unlock(&pool->last_work_lock);
  10446. }
  10447. if (clone_available()) {
  10448. applog(LOG_DEBUG, "Cloned getwork work");
  10449. free_work(work);
  10450. continue;
  10451. }
  10452. if (opt_benchmark) {
  10453. get_benchmark_work(work);
  10454. applog(LOG_DEBUG, "Generated benchmark work");
  10455. stage_work(work);
  10456. continue;
  10457. }
  10458. work->pool = pool;
  10459. ce = pop_curl_entry3(pool, 2);
  10460. /* obtain new work from bitcoin via JSON-RPC */
  10461. if (!get_upstream_work(work, ce->curl)) {
  10462. struct pool *next_pool;
  10463. /* Make sure the pool just hasn't stopped serving
  10464. * requests but is up as we'll keep hammering it */
  10465. push_curl_entry(ce, pool);
  10466. ++pool->seq_getfails;
  10467. pool_died(pool);
  10468. next_pool = select_pool(!opt_fail_only);
  10469. if (pool == next_pool) {
  10470. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10471. cgsleep_ms(5000);
  10472. } else {
  10473. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10474. pool = next_pool;
  10475. }
  10476. goto retry;
  10477. }
  10478. if (ts >= max_staged)
  10479. pool_tclear(pool, &pool->lagging);
  10480. if (pool_tclear(pool, &pool->idle))
  10481. pool_resus(pool);
  10482. applog(LOG_DEBUG, "Generated getwork work");
  10483. stage_work(work);
  10484. push_curl_entry(ce, pool);
  10485. }
  10486. return 0;
  10487. }