miner.c 317 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #ifdef USE_AVALON
  75. #include "driver-avalon.h"
  76. #endif
  77. #ifdef HAVE_BFG_LOWLEVEL
  78. #include "lowlevel.h"
  79. #endif
  80. #if defined(unix) || defined(__APPLE__)
  81. #include <errno.h>
  82. #include <fcntl.h>
  83. #include <sys/wait.h>
  84. #endif
  85. #ifdef USE_SCRYPT
  86. #include "scrypt.h"
  87. #endif
  88. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  89. # define USE_FPGA
  90. #endif
  91. enum bfg_quit_summary {
  92. BQS_DEFAULT,
  93. BQS_NONE,
  94. BQS_DEVS,
  95. BQS_PROCS,
  96. BQS_DETAILED,
  97. };
  98. struct strategies strategies[] = {
  99. { "Failover" },
  100. { "Round Robin" },
  101. { "Rotate" },
  102. { "Load Balance" },
  103. { "Balance" },
  104. };
  105. static char packagename[256];
  106. bool opt_protocol;
  107. bool opt_dev_protocol;
  108. static bool opt_benchmark;
  109. static bool want_longpoll = true;
  110. static bool want_gbt = true;
  111. static bool want_getwork = true;
  112. #if BLKMAKER_VERSION > 1
  113. struct _cbscript_t {
  114. char *data;
  115. size_t sz;
  116. };
  117. static struct _cbscript_t opt_coinbase_script;
  118. static uint32_t template_nonce;
  119. #endif
  120. #if BLKMAKER_VERSION > 0
  121. char *opt_coinbase_sig;
  122. #endif
  123. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  124. static bool include_serial_in_statline;
  125. char *request_target_str;
  126. float request_pdiff = 1.0;
  127. double request_bdiff;
  128. static bool want_stratum = true;
  129. bool have_longpoll;
  130. int opt_skip_checks;
  131. bool want_per_device_stats;
  132. bool use_syslog;
  133. bool opt_quiet_work_updates = true;
  134. bool opt_quiet;
  135. bool opt_realquiet;
  136. int loginput_size;
  137. bool opt_compact;
  138. bool opt_show_procs;
  139. const int opt_cutofftemp = 95;
  140. int opt_hysteresis = 3;
  141. static int opt_retries = -1;
  142. int opt_fail_pause = 5;
  143. int opt_log_interval = 20;
  144. int opt_queue = 1;
  145. int opt_scantime = 60;
  146. int opt_expiry = 120;
  147. int opt_expiry_lp = 3600;
  148. unsigned long long global_hashrate;
  149. static bool opt_unittest = false;
  150. unsigned long global_quota_gcd = 1;
  151. time_t last_getwork;
  152. #ifdef HAVE_OPENCL
  153. int opt_dynamic_interval = 7;
  154. int nDevs;
  155. int opt_g_threads = -1;
  156. #endif
  157. #ifdef USE_SCRYPT
  158. static char detect_algo = 1;
  159. bool opt_scrypt;
  160. #else
  161. static char detect_algo;
  162. #endif
  163. bool opt_restart = true;
  164. #ifdef USE_LIBMICROHTTPD
  165. #include "httpsrv.h"
  166. int httpsrv_port = -1;
  167. #endif
  168. #ifdef USE_LIBEVENT
  169. int stratumsrv_port = -1;
  170. #endif
  171. const
  172. int rescan_delay_ms = 1000;
  173. #ifdef HAVE_BFG_HOTPLUG
  174. bool opt_hotplug = 1;
  175. const
  176. int hotplug_delay_ms = 100;
  177. #else
  178. const bool opt_hotplug;
  179. #endif
  180. struct string_elist *scan_devices;
  181. static struct string_elist *opt_set_device_list;
  182. bool opt_force_dev_init;
  183. static struct string_elist *opt_devices_enabled_list;
  184. static bool opt_display_devs;
  185. int total_devices;
  186. struct cgpu_info **devices;
  187. int total_devices_new;
  188. struct cgpu_info **devices_new;
  189. bool have_opencl;
  190. int opt_n_threads = -1;
  191. int mining_threads;
  192. int num_processors;
  193. #ifdef HAVE_CURSES
  194. bool use_curses = true;
  195. #else
  196. bool use_curses;
  197. #endif
  198. #ifdef HAVE_LIBUSB
  199. bool have_libusb;
  200. #endif
  201. static bool opt_submit_stale = true;
  202. static float opt_shares;
  203. static int opt_submit_threads = 0x40;
  204. bool opt_fail_only;
  205. int opt_fail_switch_delay = 300;
  206. bool opt_autofan;
  207. bool opt_autoengine;
  208. bool opt_noadl;
  209. char *opt_api_allow = NULL;
  210. char *opt_api_groups;
  211. char *opt_api_description = PACKAGE_STRING;
  212. int opt_api_port = 4028;
  213. bool opt_api_listen;
  214. bool opt_api_mcast;
  215. char *opt_api_mcast_addr = API_MCAST_ADDR;
  216. char *opt_api_mcast_code = API_MCAST_CODE;
  217. char *opt_api_mcast_des = "";
  218. int opt_api_mcast_port = 4028;
  219. bool opt_api_network;
  220. bool opt_delaynet;
  221. bool opt_disable_pool;
  222. bool opt_disable_client_reconnect = false;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int watchpool_thr_id;
  235. static int watchdog_thr_id;
  236. #ifdef HAVE_CURSES
  237. static int input_thr_id;
  238. #endif
  239. int gpur_thr_id;
  240. static int api_thr_id;
  241. static int total_control_threads;
  242. pthread_mutex_t hash_lock;
  243. static pthread_mutex_t *stgd_lock;
  244. pthread_mutex_t console_lock;
  245. cglock_t ch_lock;
  246. static pthread_rwlock_t blk_lock;
  247. static pthread_mutex_t sshare_lock;
  248. pthread_rwlock_t netacc_lock;
  249. pthread_rwlock_t mining_thr_lock;
  250. pthread_rwlock_t devices_lock;
  251. static pthread_mutex_t lp_lock;
  252. static pthread_cond_t lp_cond;
  253. pthread_cond_t gws_cond;
  254. bool shutting_down;
  255. double total_rolling;
  256. double total_mhashes_done;
  257. static struct timeval total_tv_start, total_tv_end;
  258. static struct timeval miner_started;
  259. cglock_t control_lock;
  260. pthread_mutex_t stats_lock;
  261. static pthread_mutex_t submitting_lock;
  262. static int total_submitting;
  263. static struct work *submit_waiting;
  264. notifier_t submit_waiting_notifier;
  265. int hw_errors;
  266. int total_accepted, total_rejected;
  267. int total_getworks, total_stale, total_discarded;
  268. uint64_t total_bytes_rcvd, total_bytes_sent;
  269. double total_diff1, total_bad_diff1;
  270. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  271. static int staged_rollable;
  272. unsigned int new_blocks;
  273. unsigned int found_blocks;
  274. unsigned int local_work;
  275. unsigned int total_go, total_ro;
  276. struct pool **pools;
  277. static struct pool *currentpool = NULL;
  278. int total_pools, enabled_pools;
  279. enum pool_strategy pool_strategy = POOL_FAILOVER;
  280. int opt_rotate_period;
  281. static int total_urls, total_users, total_passes;
  282. static
  283. #ifndef HAVE_CURSES
  284. const
  285. #endif
  286. bool curses_active;
  287. #ifdef HAVE_CURSES
  288. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  289. const
  290. #endif
  291. short default_bgcolor = COLOR_BLACK;
  292. static int attr_title = A_BOLD;
  293. #endif
  294. static
  295. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  296. bool use_unicode;
  297. static
  298. bool have_unicode_degrees;
  299. static
  300. wchar_t unicode_micro = 'u';
  301. #else
  302. const bool use_unicode;
  303. static
  304. const bool have_unicode_degrees;
  305. static
  306. const char unicode_micro = 'u';
  307. #endif
  308. #ifdef HAVE_CURSES
  309. #define U8_BAD_START "\xef\x80\x81"
  310. #define U8_BAD_END "\xef\x80\x80"
  311. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  312. bool selecting_device;
  313. unsigned selected_device;
  314. #endif
  315. static char current_block[40];
  316. /* Protected by ch_lock */
  317. static char *current_hash;
  318. static uint32_t current_block_id;
  319. char *current_fullhash;
  320. static char datestamp[40];
  321. static char blocktime[32];
  322. time_t block_time;
  323. static char best_share[ALLOC_H2B_SHORTV] = "0";
  324. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  325. static char block_diff[ALLOC_H2B_SHORTV];
  326. static char net_hashrate[ALLOC_H2B_SHORT];
  327. double best_diff = 0;
  328. static bool known_blkheight_current;
  329. static uint32_t known_blkheight;
  330. static uint32_t known_blkheight_blkid;
  331. static uint64_t block_subsidy;
  332. struct block {
  333. char hash[40];
  334. UT_hash_handle hh;
  335. int block_no;
  336. };
  337. static struct block *blocks = NULL;
  338. int swork_id;
  339. /* For creating a hash database of stratum shares submitted that have not had
  340. * a response yet */
  341. struct stratum_share {
  342. UT_hash_handle hh;
  343. bool block;
  344. struct work *work;
  345. int id;
  346. };
  347. static struct stratum_share *stratum_shares = NULL;
  348. char *opt_socks_proxy = NULL;
  349. static const char def_conf[] = "bfgminer.conf";
  350. static bool config_loaded;
  351. static int include_count;
  352. #define JSON_INCLUDE_CONF "include"
  353. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  354. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  355. #define JSON_MAX_DEPTH 10
  356. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  357. char *cmd_idle, *cmd_sick, *cmd_dead;
  358. #if defined(unix) || defined(__APPLE__)
  359. static char *opt_stderr_cmd = NULL;
  360. static int forkpid;
  361. #endif // defined(unix)
  362. #ifdef HAVE_CHROOT
  363. char *chroot_dir;
  364. #endif
  365. #ifdef HAVE_PWD_H
  366. char *opt_setuid;
  367. #endif
  368. struct sigaction termhandler, inthandler;
  369. struct thread_q *getq;
  370. static int total_work;
  371. static bool staged_full;
  372. struct work *staged_work = NULL;
  373. struct schedtime {
  374. bool enable;
  375. struct tm tm;
  376. };
  377. struct schedtime schedstart;
  378. struct schedtime schedstop;
  379. bool sched_paused;
  380. static bool time_before(struct tm *tm1, struct tm *tm2)
  381. {
  382. if (tm1->tm_hour < tm2->tm_hour)
  383. return true;
  384. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  385. return true;
  386. return false;
  387. }
  388. static bool should_run(void)
  389. {
  390. struct tm tm;
  391. time_t tt;
  392. bool within_range;
  393. if (!schedstart.enable && !schedstop.enable)
  394. return true;
  395. tt = time(NULL);
  396. localtime_r(&tt, &tm);
  397. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  398. if (time_before(&schedstop.tm, &schedstart.tm))
  399. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  400. else
  401. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  402. if (within_range && !schedstop.enable)
  403. /* This is a once off event with no stop time set */
  404. schedstart.enable = false;
  405. return within_range;
  406. }
  407. void get_datestamp(char *f, size_t fsiz, time_t tt)
  408. {
  409. struct tm _tm;
  410. struct tm *tm = &_tm;
  411. if (tt == INVALID_TIMESTAMP)
  412. tt = time(NULL);
  413. localtime_r(&tt, tm);
  414. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  415. tm->tm_year + 1900,
  416. tm->tm_mon + 1,
  417. tm->tm_mday,
  418. tm->tm_hour,
  419. tm->tm_min,
  420. tm->tm_sec);
  421. }
  422. static
  423. void get_timestamp(char *f, size_t fsiz, time_t tt)
  424. {
  425. struct tm _tm;
  426. struct tm *tm = &_tm;
  427. localtime_r(&tt, tm);
  428. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  429. tm->tm_hour,
  430. tm->tm_min,
  431. tm->tm_sec);
  432. }
  433. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  434. static char exit_buf[512];
  435. static void applog_and_exit(const char *fmt, ...)
  436. {
  437. va_list ap;
  438. va_start(ap, fmt);
  439. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  440. va_end(ap);
  441. _applog(LOG_ERR, exit_buf);
  442. exit(1);
  443. }
  444. char *devpath_to_devid(const char *devpath)
  445. {
  446. #ifndef WIN32
  447. struct stat my_stat;
  448. if (stat(devpath, &my_stat))
  449. return NULL;
  450. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  451. memcpy(devs, "dev_t:", 6);
  452. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  453. #else
  454. if (!strncmp(devpath, "\\\\.\\", 4))
  455. devpath += 4;
  456. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  457. return NULL;
  458. devpath += 3;
  459. char *p;
  460. strtol(devpath, &p, 10);
  461. if (p[0])
  462. return NULL;
  463. const int sz = (p - devpath);
  464. char *devs = malloc(4 + sz + 1);
  465. sprintf(devs, "com:%s", devpath);
  466. #endif
  467. return devs;
  468. }
  469. static
  470. bool devpaths_match(const char * const ap, const char * const bp)
  471. {
  472. char * const a = devpath_to_devid(ap);
  473. if (!a)
  474. return false;
  475. char * const b = devpath_to_devid(bp);
  476. bool rv = false;
  477. if (b)
  478. {
  479. rv = !strcmp(a, b);
  480. free(b);
  481. }
  482. free(a);
  483. return rv;
  484. }
  485. static
  486. int proc_letter_to_number(const char *s, const char ** const rem)
  487. {
  488. int n = 0, c;
  489. for ( ; s[0]; ++s)
  490. {
  491. if (unlikely(n > INT_MAX / 26))
  492. break;
  493. c = tolower(s[0]) - 'a';
  494. if (unlikely(c < 0 || c > 25))
  495. break;
  496. if (unlikely(INT_MAX - c < n))
  497. break;
  498. n = (n * 26) + c;
  499. }
  500. *rem = s;
  501. return n;
  502. }
  503. static
  504. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  505. {
  506. // all - matches anything
  507. // d0 - matches all processors of device 0
  508. // d0-3 - matches all processors of device 0, 1, 2, or 3
  509. // d0a - matches first processor of device 0
  510. // 0 - matches processor 0
  511. // 0-4 - matches processors 0, 1, 2, 3, or 4
  512. // ___ - matches all processors on all devices using driver/name ___
  513. // ___0 - matches all processors of 0th device using driver/name ___
  514. // ___0a - matches first processor of 0th device using driver/name ___
  515. // @* - matches device with serial or path *
  516. // @*@a - matches first processor of device with serial or path *
  517. // ___@* - matches device with serial or path * using driver/name ___
  518. if (!strcasecmp(pattern, "all"))
  519. return true;
  520. const struct device_drv * const drv = cgpu->drv;
  521. const char *p = pattern, *p2;
  522. size_t L;
  523. int n, i, c = -1;
  524. int n2;
  525. int proc_first = -1, proc_last = -1;
  526. struct cgpu_info *device;
  527. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  528. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  529. // dname or name
  530. p = &pattern[L];
  531. else
  532. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  533. // d#
  534. ++p;
  535. else
  536. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  537. // # or @
  538. {}
  539. else
  540. return false;
  541. L = p - pattern;
  542. while (isspace(p[0]))
  543. ++p;
  544. if (p[0] == '@')
  545. {
  546. // Serial/path
  547. const char * const ser = &p[1];
  548. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  549. {}
  550. p2 = (p[0] == '@') ? &p[1] : p;
  551. const size_t serlen = (p - ser);
  552. p = "";
  553. n = n2 = 0;
  554. const char * const devpath = cgpu->device_path ?: "";
  555. const char * const devser = cgpu->dev_serial ?: "";
  556. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  557. {} // Match
  558. else
  559. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  560. {} // Match
  561. else
  562. {
  563. char devpath2[serlen + 1];
  564. memcpy(devpath2, ser, serlen);
  565. devpath2[serlen] = '\0';
  566. if (!devpaths_match(devpath, ser))
  567. return false;
  568. }
  569. }
  570. else
  571. {
  572. if (isdigit(p[0]))
  573. n = strtol(p, (void*)&p2, 0);
  574. else
  575. {
  576. n = 0;
  577. p2 = p;
  578. }
  579. if (p2[0] == '-')
  580. {
  581. ++p2;
  582. if (p2[0] && isdigit(p2[0]))
  583. n2 = strtol(p2, (void*)&p2, 0);
  584. else
  585. n2 = INT_MAX;
  586. }
  587. else
  588. n2 = n;
  589. if (p == pattern)
  590. {
  591. if (!p[0])
  592. return true;
  593. if (p2 && p2[0])
  594. goto invsyntax;
  595. for (i = n; i <= n2; ++i)
  596. {
  597. if (i >= total_devices)
  598. break;
  599. if (cgpu == devices[i])
  600. return true;
  601. }
  602. return false;
  603. }
  604. }
  605. if (p2[0])
  606. {
  607. proc_first = proc_letter_to_number(&p2[0], &p2);
  608. if (p2[0] == '-')
  609. {
  610. ++p2;
  611. if (p2[0])
  612. proc_last = proc_letter_to_number(p2, &p2);
  613. else
  614. proc_last = INT_MAX;
  615. }
  616. else
  617. proc_last = proc_first;
  618. if (p2[0])
  619. goto invsyntax;
  620. }
  621. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  622. {
  623. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  624. (!L) ||
  625. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  626. {} // Matched name or dname
  627. else
  628. return false;
  629. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  630. return false;
  631. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  632. return false;
  633. return true;
  634. }
  635. // d#
  636. c = -1;
  637. for (i = 0; ; ++i)
  638. {
  639. if (i == total_devices)
  640. return false;
  641. if (devices[i]->device != devices[i])
  642. continue;
  643. ++c;
  644. if (c < n)
  645. continue;
  646. if (c > n2)
  647. break;
  648. for (device = devices[i]; device; device = device->next_proc)
  649. {
  650. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  651. continue;
  652. if (device == cgpu)
  653. return true;
  654. }
  655. }
  656. return false;
  657. invsyntax:
  658. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  659. return false;
  660. }
  661. #define TEST_CGPU_MATCH(pattern) \
  662. if (!cgpu_match(pattern, &cgpu)) \
  663. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  664. // END TEST_CGPU_MATCH
  665. #define TEST_CGPU_NOMATCH(pattern) \
  666. if (cgpu_match(pattern, &cgpu)) \
  667. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  668. // END TEST_CGPU_MATCH
  669. static __maybe_unused
  670. void test_cgpu_match()
  671. {
  672. struct device_drv drv = {
  673. .dname = "test",
  674. .name = "TST",
  675. };
  676. struct cgpu_info cgpu = {
  677. .drv = &drv,
  678. .device = &cgpu,
  679. .device_id = 1,
  680. .proc_id = 1,
  681. .proc_repr = "TST 1b",
  682. }, cgpu0a = {
  683. .drv = &drv,
  684. .device = &cgpu0a,
  685. .device_id = 0,
  686. .proc_id = 0,
  687. .proc_repr = "TST 0a",
  688. }, cgpu1a = {
  689. .drv = &drv,
  690. .device = &cgpu0a,
  691. .device_id = 1,
  692. .proc_id = 0,
  693. .proc_repr = "TST 1a",
  694. };
  695. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  696. devices = devices_list;
  697. total_devices = 3;
  698. TEST_CGPU_MATCH("all")
  699. TEST_CGPU_MATCH("d1")
  700. TEST_CGPU_NOMATCH("d2")
  701. TEST_CGPU_MATCH("d0-5")
  702. TEST_CGPU_NOMATCH("d0-0")
  703. TEST_CGPU_NOMATCH("d2-5")
  704. TEST_CGPU_MATCH("d-1")
  705. TEST_CGPU_MATCH("d1-")
  706. TEST_CGPU_NOMATCH("d-0")
  707. TEST_CGPU_NOMATCH("d2-")
  708. TEST_CGPU_MATCH("2")
  709. TEST_CGPU_NOMATCH("3")
  710. TEST_CGPU_MATCH("1-2")
  711. TEST_CGPU_MATCH("2-3")
  712. TEST_CGPU_NOMATCH("1-1")
  713. TEST_CGPU_NOMATCH("3-4")
  714. TEST_CGPU_MATCH("TST")
  715. TEST_CGPU_MATCH("test")
  716. TEST_CGPU_MATCH("tst")
  717. TEST_CGPU_MATCH("TEST")
  718. TEST_CGPU_NOMATCH("TSF")
  719. TEST_CGPU_NOMATCH("TS")
  720. TEST_CGPU_NOMATCH("TSTF")
  721. TEST_CGPU_MATCH("TST1")
  722. TEST_CGPU_MATCH("test1")
  723. TEST_CGPU_MATCH("TST0-1")
  724. TEST_CGPU_MATCH("TST 1")
  725. TEST_CGPU_MATCH("TST 1-2")
  726. TEST_CGPU_MATCH("TEST 1-2")
  727. TEST_CGPU_NOMATCH("TST2")
  728. TEST_CGPU_NOMATCH("TST2-3")
  729. TEST_CGPU_NOMATCH("TST0-0")
  730. TEST_CGPU_MATCH("TST1b")
  731. TEST_CGPU_MATCH("tst1b")
  732. TEST_CGPU_NOMATCH("TST1c")
  733. TEST_CGPU_NOMATCH("TST1bb")
  734. TEST_CGPU_MATCH("TST0-1b")
  735. TEST_CGPU_NOMATCH("TST0-1c")
  736. TEST_CGPU_MATCH("TST1a-d")
  737. TEST_CGPU_NOMATCH("TST1a-a")
  738. TEST_CGPU_NOMATCH("TST1-a")
  739. TEST_CGPU_NOMATCH("TST1c-z")
  740. TEST_CGPU_NOMATCH("TST1c-")
  741. TEST_CGPU_MATCH("@")
  742. TEST_CGPU_NOMATCH("@abc")
  743. TEST_CGPU_MATCH("@@b")
  744. TEST_CGPU_NOMATCH("@@c")
  745. TEST_CGPU_MATCH("TST@")
  746. TEST_CGPU_NOMATCH("TST@abc")
  747. TEST_CGPU_MATCH("TST@@b")
  748. TEST_CGPU_NOMATCH("TST@@c")
  749. TEST_CGPU_MATCH("TST@@b-f")
  750. TEST_CGPU_NOMATCH("TST@@c-f")
  751. TEST_CGPU_NOMATCH("TST@@-a")
  752. cgpu.device_path = "/dev/test";
  753. cgpu.dev_serial = "testy";
  754. TEST_CGPU_MATCH("TST@/dev/test")
  755. TEST_CGPU_MATCH("TST@testy")
  756. TEST_CGPU_NOMATCH("TST@")
  757. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  758. TEST_CGPU_NOMATCH("TST@testy3@b")
  759. TEST_CGPU_MATCH("TST@/dev/test@b")
  760. TEST_CGPU_MATCH("TST@testy@b")
  761. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  762. TEST_CGPU_NOMATCH("TST@testy@c")
  763. cgpu.device_path = "usb:000:999";
  764. TEST_CGPU_MATCH("TST@usb:000:999")
  765. drv.dname = "test7";
  766. TEST_CGPU_MATCH("test7")
  767. TEST_CGPU_MATCH("TEST7")
  768. TEST_CGPU_NOMATCH("test&")
  769. TEST_CGPU_MATCH("test7 1-2")
  770. TEST_CGPU_MATCH("test7@testy@b")
  771. }
  772. static
  773. int cgpu_search(const char * const pattern, const int first)
  774. {
  775. int i;
  776. struct cgpu_info *cgpu;
  777. #define CHECK_CGPU_SEARCH do{ \
  778. cgpu = get_devices(i); \
  779. if (cgpu_match(pattern, cgpu)) \
  780. return i; \
  781. }while(0)
  782. for (i = first; i < total_devices; ++i)
  783. CHECK_CGPU_SEARCH;
  784. for (i = 0; i < first; ++i)
  785. CHECK_CGPU_SEARCH;
  786. #undef CHECK_CGPU_SEARCH
  787. return -1;
  788. }
  789. static pthread_mutex_t sharelog_lock;
  790. static FILE *sharelog_file = NULL;
  791. struct thr_info *get_thread(int thr_id)
  792. {
  793. struct thr_info *thr;
  794. rd_lock(&mining_thr_lock);
  795. thr = mining_thr[thr_id];
  796. rd_unlock(&mining_thr_lock);
  797. return thr;
  798. }
  799. static struct cgpu_info *get_thr_cgpu(int thr_id)
  800. {
  801. struct thr_info *thr = get_thread(thr_id);
  802. return thr->cgpu;
  803. }
  804. struct cgpu_info *get_devices(int id)
  805. {
  806. struct cgpu_info *cgpu;
  807. rd_lock(&devices_lock);
  808. cgpu = devices[id];
  809. rd_unlock(&devices_lock);
  810. return cgpu;
  811. }
  812. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  813. static FILE *noncelog_file = NULL;
  814. static
  815. void noncelog(const struct work * const work)
  816. {
  817. const int thr_id = work->thr_id;
  818. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  819. char buf[0x200], hash[65], data[161], midstate[65];
  820. int rv;
  821. size_t ret;
  822. bin2hex(hash, work->hash, 32);
  823. bin2hex(data, work->data, 80);
  824. bin2hex(midstate, work->midstate, 32);
  825. // timestamp,proc,hash,data,midstate
  826. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  827. (unsigned long)time(NULL), proc->proc_repr_ns,
  828. hash, data, midstate);
  829. if (unlikely(rv < 1))
  830. {
  831. applog(LOG_ERR, "noncelog printf error");
  832. return;
  833. }
  834. mutex_lock(&noncelog_lock);
  835. ret = fwrite(buf, rv, 1, noncelog_file);
  836. fflush(noncelog_file);
  837. mutex_unlock(&noncelog_lock);
  838. if (ret != 1)
  839. applog(LOG_ERR, "noncelog fwrite error");
  840. }
  841. static void sharelog(const char*disposition, const struct work*work)
  842. {
  843. char target[(sizeof(work->target) * 2) + 1];
  844. char hash[(sizeof(work->hash) * 2) + 1];
  845. char data[(sizeof(work->data) * 2) + 1];
  846. struct cgpu_info *cgpu;
  847. unsigned long int t;
  848. struct pool *pool;
  849. int thr_id, rv;
  850. char s[1024];
  851. size_t ret;
  852. if (!sharelog_file)
  853. return;
  854. thr_id = work->thr_id;
  855. cgpu = get_thr_cgpu(thr_id);
  856. pool = work->pool;
  857. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  858. bin2hex(target, work->target, sizeof(work->target));
  859. bin2hex(hash, work->hash, sizeof(work->hash));
  860. bin2hex(data, work->data, sizeof(work->data));
  861. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  862. rv = snprintf(s, sizeof(s), "%lu,%s,%s,%s,%s,%u,%s,%s\n", t, disposition, target, pool->rpc_url, cgpu->proc_repr_ns, thr_id, hash, data);
  863. if (rv >= (int)(sizeof(s)))
  864. s[sizeof(s) - 1] = '\0';
  865. else if (rv < 0) {
  866. applog(LOG_ERR, "sharelog printf error");
  867. return;
  868. }
  869. mutex_lock(&sharelog_lock);
  870. ret = fwrite(s, rv, 1, sharelog_file);
  871. fflush(sharelog_file);
  872. mutex_unlock(&sharelog_lock);
  873. if (ret != 1)
  874. applog(LOG_ERR, "sharelog fwrite error");
  875. }
  876. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  877. /* Adjust all the pools' quota to the greatest common denominator after a pool
  878. * has been added or the quotas changed. */
  879. void adjust_quota_gcd(void)
  880. {
  881. unsigned long gcd, lowest_quota = ~0UL, quota;
  882. struct pool *pool;
  883. int i;
  884. for (i = 0; i < total_pools; i++) {
  885. pool = pools[i];
  886. quota = pool->quota;
  887. if (!quota)
  888. continue;
  889. if (quota < lowest_quota)
  890. lowest_quota = quota;
  891. }
  892. if (likely(lowest_quota < ~0UL)) {
  893. gcd = lowest_quota;
  894. for (i = 0; i < total_pools; i++) {
  895. pool = pools[i];
  896. quota = pool->quota;
  897. if (!quota)
  898. continue;
  899. while (quota % gcd)
  900. gcd--;
  901. }
  902. } else
  903. gcd = 1;
  904. for (i = 0; i < total_pools; i++) {
  905. pool = pools[i];
  906. pool->quota_used *= global_quota_gcd;
  907. pool->quota_used /= gcd;
  908. pool->quota_gcd = pool->quota / gcd;
  909. }
  910. global_quota_gcd = gcd;
  911. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  912. }
  913. /* Return value is ignored if not called from add_pool_details */
  914. struct pool *add_pool(void)
  915. {
  916. struct pool *pool;
  917. pool = calloc(sizeof(struct pool), 1);
  918. if (!pool)
  919. quit(1, "Failed to malloc pool in add_pool");
  920. pool->pool_no = pool->prio = total_pools;
  921. mutex_init(&pool->last_work_lock);
  922. mutex_init(&pool->pool_lock);
  923. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  924. quit(1, "Failed to pthread_cond_init in add_pool");
  925. cglock_init(&pool->data_lock);
  926. mutex_init(&pool->stratum_lock);
  927. timer_unset(&pool->swork.tv_transparency);
  928. pool->swork.pool = pool;
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. pool->sock = INVSOCK;
  935. pool->lp_socket = CURL_SOCKET_BAD;
  936. if (opt_benchmark)
  937. {
  938. // Don't add to pools array, but immediately remove it
  939. remove_pool(pool);
  940. return pool;
  941. }
  942. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  943. pools[total_pools++] = pool;
  944. adjust_quota_gcd();
  945. return pool;
  946. }
  947. /* Pool variant of test and set */
  948. static bool pool_tset(struct pool *pool, bool *var)
  949. {
  950. bool ret;
  951. mutex_lock(&pool->pool_lock);
  952. ret = *var;
  953. *var = true;
  954. mutex_unlock(&pool->pool_lock);
  955. return ret;
  956. }
  957. bool pool_tclear(struct pool *pool, bool *var)
  958. {
  959. bool ret;
  960. mutex_lock(&pool->pool_lock);
  961. ret = *var;
  962. *var = false;
  963. mutex_unlock(&pool->pool_lock);
  964. return ret;
  965. }
  966. struct pool *current_pool(void)
  967. {
  968. struct pool *pool;
  969. cg_rlock(&control_lock);
  970. pool = currentpool;
  971. cg_runlock(&control_lock);
  972. return pool;
  973. }
  974. // Copied from ccan/opt/helpers.c
  975. static char *arg_bad(const char *fmt, const char *arg)
  976. {
  977. char *str = malloc(strlen(fmt) + strlen(arg));
  978. sprintf(str, fmt, arg);
  979. return str;
  980. }
  981. static
  982. char *opt_set_floatval(const char *arg, float *f)
  983. {
  984. char *endp;
  985. errno = 0;
  986. *f = strtof(arg, &endp);
  987. if (*endp || !arg[0])
  988. return arg_bad("'%s' is not a number", arg);
  989. if (errno)
  990. return arg_bad("'%s' is out of range", arg);
  991. return NULL;
  992. }
  993. static
  994. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  995. {
  996. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  997. }
  998. static
  999. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  1000. {
  1001. return opt_set_bool(b);
  1002. }
  1003. char *set_int_range(const char *arg, int *i, int min, int max)
  1004. {
  1005. char *err = opt_set_intval(arg, i);
  1006. if (err)
  1007. return err;
  1008. if (*i < min || *i > max)
  1009. return "Value out of range";
  1010. return NULL;
  1011. }
  1012. static char *set_int_0_to_9999(const char *arg, int *i)
  1013. {
  1014. return set_int_range(arg, i, 0, 9999);
  1015. }
  1016. static char *set_int_1_to_65535(const char *arg, int *i)
  1017. {
  1018. return set_int_range(arg, i, 1, 65535);
  1019. }
  1020. static char *set_int_0_to_10(const char *arg, int *i)
  1021. {
  1022. return set_int_range(arg, i, 0, 10);
  1023. }
  1024. static char *set_int_1_to_10(const char *arg, int *i)
  1025. {
  1026. return set_int_range(arg, i, 1, 10);
  1027. }
  1028. char *set_strdup(const char *arg, char **p)
  1029. {
  1030. *p = strdup((char *)arg);
  1031. return NULL;
  1032. }
  1033. #if BLKMAKER_VERSION > 1
  1034. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1035. {
  1036. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1037. if (!scriptsz)
  1038. return "Invalid address";
  1039. char *script = malloc(scriptsz);
  1040. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1041. free(script);
  1042. return "Failed to convert address to script";
  1043. }
  1044. p->data = script;
  1045. p->sz = scriptsz;
  1046. return NULL;
  1047. }
  1048. #endif
  1049. static
  1050. char *set_quit_summary(const char * const arg)
  1051. {
  1052. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1053. opt_quit_summary = BQS_NONE;
  1054. else
  1055. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1056. opt_quit_summary = BQS_DEVS;
  1057. else
  1058. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1059. opt_quit_summary = BQS_PROCS;
  1060. else
  1061. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1062. opt_quit_summary = BQS_DETAILED;
  1063. else
  1064. return "Quit summary must be one of none/devs/procs/detailed";
  1065. return NULL;
  1066. }
  1067. static void pdiff_target_leadzero(void *, double);
  1068. char *set_request_diff(const char *arg, float *p)
  1069. {
  1070. unsigned char target[32];
  1071. char *e = opt_set_floatval(arg, p);
  1072. if (e)
  1073. return e;
  1074. request_bdiff = (double)*p * 0.9999847412109375;
  1075. pdiff_target_leadzero(target, *p);
  1076. request_target_str = malloc(65);
  1077. bin2hex(request_target_str, target, 32);
  1078. return NULL;
  1079. }
  1080. #ifdef NEED_BFG_LOWL_VCOM
  1081. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1082. #ifdef WIN32
  1083. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1084. {
  1085. char dev[PATH_MAX];
  1086. char *devp = dev;
  1087. size_t bufLen = 0x100;
  1088. tryagain: ;
  1089. char buf[bufLen];
  1090. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1091. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1092. bufLen *= 2;
  1093. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1094. goto tryagain;
  1095. }
  1096. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1097. }
  1098. size_t tLen;
  1099. memcpy(devp, "\\\\.\\", 4);
  1100. devp = &devp[4];
  1101. for (char *t = buf; *t; t += tLen) {
  1102. tLen = strlen(t) + 1;
  1103. if (strncmp("COM", t, 3))
  1104. continue;
  1105. memcpy(devp, t, tLen);
  1106. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1107. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1108. }
  1109. }
  1110. #else
  1111. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1112. {
  1113. char dev[PATH_MAX];
  1114. char *devp = dev;
  1115. DIR *D;
  1116. struct dirent *de;
  1117. const char devdir[] = "/dev";
  1118. const size_t devdirlen = sizeof(devdir) - 1;
  1119. char *devpath = devp;
  1120. char *devfile = devpath + devdirlen + 1;
  1121. D = opendir(devdir);
  1122. if (!D)
  1123. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1124. memcpy(devpath, devdir, devdirlen);
  1125. devpath[devdirlen] = '/';
  1126. while ( (de = readdir(D)) ) {
  1127. if (!strncmp(de->d_name, "cu.", 3)
  1128. //don't probe Bluetooth devices - causes bus errors and segfaults
  1129. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1130. goto trydev;
  1131. if (strncmp(de->d_name, "tty", 3))
  1132. continue;
  1133. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1134. continue;
  1135. trydev:
  1136. strcpy(devfile, de->d_name);
  1137. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1138. }
  1139. closedir(D);
  1140. }
  1141. #endif
  1142. #endif
  1143. static char *add_serial(const char *arg)
  1144. {
  1145. string_elist_add(arg, &scan_devices);
  1146. return NULL;
  1147. }
  1148. static
  1149. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1150. {
  1151. string_elist_add(arg, elist);
  1152. return NULL;
  1153. }
  1154. bool get_intrange(const char *arg, int *val1, int *val2)
  1155. {
  1156. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1157. char *p, *p2;
  1158. *val1 = strtol(arg, &p, 0);
  1159. if (arg == p)
  1160. // Zero-length ending number, invalid
  1161. return false;
  1162. while (true)
  1163. {
  1164. if (!p[0])
  1165. {
  1166. *val2 = *val1;
  1167. return true;
  1168. }
  1169. if (p[0] == '-')
  1170. break;
  1171. if (!isspace(p[0]))
  1172. // Garbage, invalid
  1173. return false;
  1174. ++p;
  1175. }
  1176. p2 = &p[1];
  1177. *val2 = strtol(p2, &p, 0);
  1178. if (p2 == p)
  1179. // Zero-length ending number, invalid
  1180. return false;
  1181. while (true)
  1182. {
  1183. if (!p[0])
  1184. return true;
  1185. if (!isspace(p[0]))
  1186. // Garbage, invalid
  1187. return false;
  1188. ++p;
  1189. }
  1190. }
  1191. static
  1192. void _test_intrange(const char *s, const int v[2])
  1193. {
  1194. int a[2];
  1195. if (!get_intrange(s, &a[0], &a[1]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1197. for (int i = 0; i < 2; ++i)
  1198. if (unlikely(a[i] != v[i]))
  1199. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1200. }
  1201. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1202. static
  1203. void _test_intrange_fail(const char *s)
  1204. {
  1205. int a[2];
  1206. if (get_intrange(s, &a[0], &a[1]))
  1207. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1208. }
  1209. static
  1210. void test_intrange()
  1211. {
  1212. _test_intrange("-1--2", -1, -2);
  1213. _test_intrange("-1-2", -1, 2);
  1214. _test_intrange("1--2", 1, -2);
  1215. _test_intrange("1-2", 1, 2);
  1216. _test_intrange("111-222", 111, 222);
  1217. _test_intrange(" 11 - 22 ", 11, 22);
  1218. _test_intrange("+11-+22", 11, 22);
  1219. _test_intrange("-1", -1, -1);
  1220. _test_intrange_fail("all");
  1221. _test_intrange_fail("1-");
  1222. _test_intrange_fail("");
  1223. _test_intrange_fail("1-54x");
  1224. }
  1225. static char *set_devices(char *arg)
  1226. {
  1227. if (*arg) {
  1228. if (*arg == '?') {
  1229. opt_display_devs = true;
  1230. return NULL;
  1231. }
  1232. } else
  1233. return "Invalid device parameters";
  1234. string_elist_add(arg, &opt_devices_enabled_list);
  1235. return NULL;
  1236. }
  1237. static char *set_balance(enum pool_strategy *strategy)
  1238. {
  1239. *strategy = POOL_BALANCE;
  1240. return NULL;
  1241. }
  1242. static char *set_loadbalance(enum pool_strategy *strategy)
  1243. {
  1244. *strategy = POOL_LOADBALANCE;
  1245. return NULL;
  1246. }
  1247. static char *set_rotate(const char *arg, int *i)
  1248. {
  1249. pool_strategy = POOL_ROTATE;
  1250. return set_int_range(arg, i, 0, 9999);
  1251. }
  1252. static char *set_rr(enum pool_strategy *strategy)
  1253. {
  1254. *strategy = POOL_ROUNDROBIN;
  1255. return NULL;
  1256. }
  1257. /* Detect that url is for a stratum protocol either via the presence of
  1258. * stratum+tcp or by detecting a stratum server response */
  1259. bool detect_stratum(struct pool *pool, char *url)
  1260. {
  1261. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1262. return false;
  1263. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1264. pool->rpc_url = strdup(url);
  1265. pool->has_stratum = true;
  1266. pool->stratum_url = pool->sockaddr_url;
  1267. return true;
  1268. }
  1269. return false;
  1270. }
  1271. static struct pool *add_url(void)
  1272. {
  1273. total_urls++;
  1274. if (total_urls > total_pools)
  1275. add_pool();
  1276. return pools[total_urls - 1];
  1277. }
  1278. static void setup_url(struct pool *pool, char *arg)
  1279. {
  1280. if (detect_stratum(pool, arg))
  1281. return;
  1282. opt_set_charp(arg, &pool->rpc_url);
  1283. if (strncmp(arg, "http://", 7) &&
  1284. strncmp(arg, "https://", 8)) {
  1285. const size_t L = strlen(arg);
  1286. char *httpinput;
  1287. httpinput = malloc(8 + L);
  1288. if (!httpinput)
  1289. quit(1, "Failed to malloc httpinput");
  1290. sprintf(httpinput, "http://%s", arg);
  1291. pool->rpc_url = httpinput;
  1292. }
  1293. }
  1294. static char *set_url(char *arg)
  1295. {
  1296. struct pool *pool = add_url();
  1297. setup_url(pool, arg);
  1298. return NULL;
  1299. }
  1300. static char *set_quota(char *arg)
  1301. {
  1302. char *semicolon = strchr(arg, ';'), *url;
  1303. int len, qlen, quota;
  1304. struct pool *pool;
  1305. if (!semicolon)
  1306. return "No semicolon separated quota;URL pair found";
  1307. len = strlen(arg);
  1308. *semicolon = '\0';
  1309. qlen = strlen(arg);
  1310. if (!qlen)
  1311. return "No parameter for quota found";
  1312. len -= qlen + 1;
  1313. if (len < 1)
  1314. return "No parameter for URL found";
  1315. quota = atoi(arg);
  1316. if (quota < 0)
  1317. return "Invalid negative parameter for quota set";
  1318. url = arg + qlen + 1;
  1319. pool = add_url();
  1320. setup_url(pool, url);
  1321. pool->quota = quota;
  1322. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1323. adjust_quota_gcd();
  1324. return NULL;
  1325. }
  1326. static char *set_user(const char *arg)
  1327. {
  1328. struct pool *pool;
  1329. total_users++;
  1330. if (total_users > total_pools)
  1331. add_pool();
  1332. pool = pools[total_users - 1];
  1333. opt_set_charp(arg, &pool->rpc_user);
  1334. return NULL;
  1335. }
  1336. static char *set_pass(const char *arg)
  1337. {
  1338. struct pool *pool;
  1339. total_passes++;
  1340. if (total_passes > total_pools)
  1341. add_pool();
  1342. pool = pools[total_passes - 1];
  1343. opt_set_charp(arg, &pool->rpc_pass);
  1344. return NULL;
  1345. }
  1346. static char *set_userpass(const char *arg)
  1347. {
  1348. struct pool *pool;
  1349. char *updup;
  1350. if (total_users != total_passes)
  1351. return "User + pass options must be balanced before userpass";
  1352. ++total_users;
  1353. ++total_passes;
  1354. if (total_users > total_pools)
  1355. add_pool();
  1356. pool = pools[total_users - 1];
  1357. updup = strdup(arg);
  1358. opt_set_charp(arg, &pool->rpc_userpass);
  1359. pool->rpc_user = strtok(updup, ":");
  1360. if (!pool->rpc_user)
  1361. return "Failed to find : delimited user info";
  1362. pool->rpc_pass = strtok(NULL, ":");
  1363. if (!pool->rpc_pass)
  1364. pool->rpc_pass = "";
  1365. return NULL;
  1366. }
  1367. static char *set_pool_priority(const char *arg)
  1368. {
  1369. struct pool *pool;
  1370. if (!total_pools)
  1371. return "Usage of --pool-priority before pools are defined does not make sense";
  1372. pool = pools[total_pools - 1];
  1373. opt_set_intval(arg, &pool->prio);
  1374. return NULL;
  1375. }
  1376. static char *set_pool_proxy(const char *arg)
  1377. {
  1378. struct pool *pool;
  1379. if (!total_pools)
  1380. return "Usage of --pool-proxy before pools are defined does not make sense";
  1381. if (!our_curl_supports_proxy_uris())
  1382. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1383. pool = pools[total_pools - 1];
  1384. opt_set_charp(arg, &pool->rpc_proxy);
  1385. return NULL;
  1386. }
  1387. static char *set_pool_force_rollntime(const char *arg)
  1388. {
  1389. struct pool *pool;
  1390. if (!total_pools)
  1391. return "Usage of --force-rollntime before pools are defined does not make sense";
  1392. pool = pools[total_pools - 1];
  1393. opt_set_intval(arg, &pool->force_rollntime);
  1394. return NULL;
  1395. }
  1396. static char *enable_debug(bool *flag)
  1397. {
  1398. *flag = true;
  1399. opt_debug_console = true;
  1400. /* Turn on verbose output, too. */
  1401. opt_log_output = true;
  1402. return NULL;
  1403. }
  1404. static char *set_schedtime(const char *arg, struct schedtime *st)
  1405. {
  1406. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1407. {
  1408. if (strcasecmp(arg, "now"))
  1409. return "Invalid time set, should be HH:MM";
  1410. } else
  1411. schedstop.tm.tm_sec = 0;
  1412. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1413. return "Invalid time set.";
  1414. st->enable = true;
  1415. return NULL;
  1416. }
  1417. static
  1418. char *set_log_file(char *arg)
  1419. {
  1420. char *r = "";
  1421. long int i = strtol(arg, &r, 10);
  1422. int fd, stderr_fd = fileno(stderr);
  1423. if ((!*r) && i >= 0 && i <= INT_MAX)
  1424. fd = i;
  1425. else
  1426. if (!strcmp(arg, "-"))
  1427. {
  1428. fd = fileno(stdout);
  1429. if (unlikely(fd == -1))
  1430. return "Standard output missing for log-file";
  1431. }
  1432. else
  1433. {
  1434. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1435. if (unlikely(fd == -1))
  1436. return "Failed to open log-file";
  1437. }
  1438. close(stderr_fd);
  1439. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1440. return "Failed to dup2 for log-file";
  1441. close(fd);
  1442. return NULL;
  1443. }
  1444. static
  1445. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1446. {
  1447. char *r = "";
  1448. long int i = strtol(arg, &r, 10);
  1449. static char *err = NULL;
  1450. const size_t errbufsz = 0x100;
  1451. free(err);
  1452. err = NULL;
  1453. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1454. *F = fdopen((int)i, mode);
  1455. if (!*F)
  1456. {
  1457. err = malloc(errbufsz);
  1458. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1459. (int)i, purpose);
  1460. return err;
  1461. }
  1462. } else if (!strcmp(arg, "-")) {
  1463. *F = (mode[0] == 'a') ? stdout : stdin;
  1464. if (!*F)
  1465. {
  1466. err = malloc(errbufsz);
  1467. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1468. (mode[0] == 'a') ? "out" : "in", purpose);
  1469. return err;
  1470. }
  1471. } else {
  1472. *F = fopen(arg, mode);
  1473. if (!*F)
  1474. {
  1475. err = malloc(errbufsz);
  1476. snprintf(err, errbufsz, "Failed to open %s for %s",
  1477. arg, purpose);
  1478. return err;
  1479. }
  1480. }
  1481. return NULL;
  1482. }
  1483. static char *set_noncelog(char *arg)
  1484. {
  1485. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1486. }
  1487. static char *set_sharelog(char *arg)
  1488. {
  1489. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1490. }
  1491. static
  1492. void _add_set_device_option(const char * const func, const char * const buf)
  1493. {
  1494. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1495. string_elist_add(buf, &opt_set_device_list);
  1496. }
  1497. #define add_set_device_option(...) do{ \
  1498. char _tmp1718[0x100]; \
  1499. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1500. _add_set_device_option(__func__, _tmp1718); \
  1501. }while(0)
  1502. char *set_temp_cutoff(char *arg)
  1503. {
  1504. if (strchr(arg, ','))
  1505. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1506. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1507. add_set_device_option("all:temp-cutoff=%s", arg);
  1508. return NULL;
  1509. }
  1510. char *set_temp_target(char *arg)
  1511. {
  1512. if (strchr(arg, ','))
  1513. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1514. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1515. add_set_device_option("all:temp-target=%s", arg);
  1516. return NULL;
  1517. }
  1518. #ifdef HAVE_OPENCL
  1519. static
  1520. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1521. {
  1522. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1523. add_set_device_option("OCL:binary=no");
  1524. return NULL;
  1525. }
  1526. #endif
  1527. static
  1528. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1529. {
  1530. opt_disable_client_reconnect = true;
  1531. want_stratum = false;
  1532. return NULL;
  1533. }
  1534. static char *set_api_allow(const char *arg)
  1535. {
  1536. opt_set_charp(arg, &opt_api_allow);
  1537. return NULL;
  1538. }
  1539. static char *set_api_groups(const char *arg)
  1540. {
  1541. opt_set_charp(arg, &opt_api_groups);
  1542. return NULL;
  1543. }
  1544. static char *set_api_description(const char *arg)
  1545. {
  1546. opt_set_charp(arg, &opt_api_description);
  1547. return NULL;
  1548. }
  1549. static char *set_api_mcast_des(const char *arg)
  1550. {
  1551. opt_set_charp(arg, &opt_api_mcast_des);
  1552. return NULL;
  1553. }
  1554. #ifdef USE_ICARUS
  1555. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1556. static char *set_icarus_options(const char *arg)
  1557. {
  1558. if (strchr(arg, ','))
  1559. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1560. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1561. char *opts = strdup(arg), *argdup;
  1562. argdup = opts;
  1563. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1564. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1565. char *saveptr, *opt;
  1566. for (int i = 0; i < 4; ++i, ++sdf)
  1567. {
  1568. opt = strtok_r(opts, ":", &saveptr);
  1569. opts = NULL;
  1570. if (!opt)
  1571. break;
  1572. if (!opt[0])
  1573. continue;
  1574. for (int j = 0; j < 4; ++j)
  1575. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1576. }
  1577. free(argdup);
  1578. return NULL;
  1579. }
  1580. static char *set_icarus_timing(const char *arg)
  1581. {
  1582. if (strchr(arg, ','))
  1583. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1584. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1585. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1586. for (int j = 0; j < 4; ++j)
  1587. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1588. return NULL;
  1589. }
  1590. #endif
  1591. #ifdef USE_AVALON
  1592. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1593. static char *set_avalon_options(const char *arg)
  1594. {
  1595. if (strchr(arg, ','))
  1596. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1597. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1598. char *opts = strdup(arg), *argdup;
  1599. argdup = opts;
  1600. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1601. char *saveptr, *opt;
  1602. for (int i = 0; i < 5; ++i, ++sdf)
  1603. {
  1604. opt = strtok_r(opts, ":", &saveptr);
  1605. opts = NULL;
  1606. if (!opt)
  1607. break;
  1608. if (!opt[0])
  1609. continue;
  1610. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1611. }
  1612. free(argdup);
  1613. return NULL;
  1614. }
  1615. #endif
  1616. #ifdef USE_KLONDIKE
  1617. static char *set_klondike_options(const char *arg)
  1618. {
  1619. int hashclock;
  1620. double temptarget;
  1621. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1622. {
  1623. default:
  1624. return "Unrecognised --klondike-options";
  1625. case 2:
  1626. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1627. // fallthru
  1628. case 1:
  1629. add_set_device_option("klondike:clock=%d", hashclock);
  1630. }
  1631. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1632. return NULL;
  1633. }
  1634. #endif
  1635. __maybe_unused
  1636. static char *set_null(const char __maybe_unused *arg)
  1637. {
  1638. return NULL;
  1639. }
  1640. /* These options are available from config file or commandline */
  1641. static struct opt_table opt_config_table[] = {
  1642. #ifdef WANT_CPUMINE
  1643. OPT_WITH_ARG("--algo",
  1644. set_algo, show_algo, &opt_algo,
  1645. "Specify sha256 implementation for CPU mining:\n"
  1646. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1647. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1648. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1649. #ifdef WANT_SSE2_4WAY
  1650. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1651. #endif
  1652. #ifdef WANT_VIA_PADLOCK
  1653. "\n\tvia\t\tVIA padlock implementation"
  1654. #endif
  1655. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1656. #ifdef WANT_CRYPTOPP_ASM32
  1657. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1658. #endif
  1659. #ifdef WANT_X8632_SSE2
  1660. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1661. #endif
  1662. #ifdef WANT_X8664_SSE2
  1663. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1664. #endif
  1665. #ifdef WANT_X8664_SSE4
  1666. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1667. #endif
  1668. #ifdef WANT_ALTIVEC_4WAY
  1669. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1670. #endif
  1671. ),
  1672. OPT_WITH_ARG("-a",
  1673. set_algo, show_algo, &opt_algo,
  1674. opt_hidden),
  1675. #endif
  1676. OPT_WITH_ARG("--api-allow",
  1677. set_api_allow, NULL, NULL,
  1678. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1679. OPT_WITH_ARG("--api-description",
  1680. set_api_description, NULL, NULL,
  1681. "Description placed in the API status header, default: BFGMiner version"),
  1682. OPT_WITH_ARG("--api-groups",
  1683. set_api_groups, NULL, NULL,
  1684. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1685. OPT_WITHOUT_ARG("--api-listen",
  1686. opt_set_bool, &opt_api_listen,
  1687. "Enable API, default: disabled"),
  1688. OPT_WITHOUT_ARG("--api-mcast",
  1689. opt_set_bool, &opt_api_mcast,
  1690. "Enable API Multicast listener, default: disabled"),
  1691. OPT_WITH_ARG("--api-mcast-addr",
  1692. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1693. "API Multicast listen address"),
  1694. OPT_WITH_ARG("--api-mcast-code",
  1695. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1696. "Code expected in the API Multicast message, don't use '-'"),
  1697. OPT_WITH_ARG("--api-mcast-des",
  1698. set_api_mcast_des, NULL, NULL,
  1699. "Description appended to the API Multicast reply, default: ''"),
  1700. OPT_WITH_ARG("--api-mcast-port",
  1701. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1702. "API Multicast listen port"),
  1703. OPT_WITHOUT_ARG("--api-network",
  1704. opt_set_bool, &opt_api_network,
  1705. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1706. OPT_WITH_ARG("--api-port",
  1707. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1708. "Port number of miner API"),
  1709. #ifdef HAVE_ADL
  1710. OPT_WITHOUT_ARG("--auto-fan",
  1711. opt_set_bool, &opt_autofan,
  1712. opt_hidden),
  1713. OPT_WITHOUT_ARG("--auto-gpu",
  1714. opt_set_bool, &opt_autoengine,
  1715. opt_hidden),
  1716. #endif
  1717. OPT_WITHOUT_ARG("--balance",
  1718. set_balance, &pool_strategy,
  1719. "Change multipool strategy from failover to even share balance"),
  1720. OPT_WITHOUT_ARG("--benchmark",
  1721. opt_set_bool, &opt_benchmark,
  1722. "Run BFGMiner in benchmark mode - produces no shares"),
  1723. #if defined(USE_BITFORCE)
  1724. OPT_WITHOUT_ARG("--bfl-range",
  1725. opt_set_bool, &opt_bfl_noncerange,
  1726. "Use nonce range on bitforce devices if supported"),
  1727. #endif
  1728. #ifdef HAVE_CHROOT
  1729. OPT_WITH_ARG("--chroot-dir",
  1730. opt_set_charp, NULL, &chroot_dir,
  1731. "Chroot to a directory right after startup"),
  1732. #endif
  1733. OPT_WITH_ARG("--cmd-idle",
  1734. opt_set_charp, NULL, &cmd_idle,
  1735. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1736. OPT_WITH_ARG("--cmd-sick",
  1737. opt_set_charp, NULL, &cmd_sick,
  1738. "Execute a command when a device is declared sick"),
  1739. OPT_WITH_ARG("--cmd-dead",
  1740. opt_set_charp, NULL, &cmd_dead,
  1741. "Execute a command when a device is declared dead"),
  1742. #if BLKMAKER_VERSION > 1
  1743. OPT_WITH_ARG("--coinbase-addr",
  1744. set_b58addr, NULL, &opt_coinbase_script,
  1745. "Set coinbase payout address for solo mining"),
  1746. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1747. set_b58addr, NULL, &opt_coinbase_script,
  1748. opt_hidden),
  1749. #endif
  1750. #if BLKMAKER_VERSION > 0
  1751. OPT_WITH_ARG("--coinbase-sig",
  1752. set_strdup, NULL, &opt_coinbase_sig,
  1753. "Set coinbase signature when possible"),
  1754. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1755. set_strdup, NULL, &opt_coinbase_sig,
  1756. opt_hidden),
  1757. #endif
  1758. #ifdef HAVE_CURSES
  1759. OPT_WITHOUT_ARG("--compact",
  1760. opt_set_bool, &opt_compact,
  1761. "Use compact display without per device statistics"),
  1762. #endif
  1763. #ifdef WANT_CPUMINE
  1764. OPT_WITH_ARG("--cpu-threads",
  1765. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1766. "Number of miner CPU threads"),
  1767. OPT_WITH_ARG("-t",
  1768. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1769. opt_hidden),
  1770. #endif
  1771. OPT_WITHOUT_ARG("--debug|-D",
  1772. enable_debug, &opt_debug,
  1773. "Enable debug output"),
  1774. OPT_WITHOUT_ARG("--debuglog",
  1775. opt_set_bool, &opt_debug,
  1776. "Enable debug logging"),
  1777. OPT_WITHOUT_ARG("--device-protocol-dump",
  1778. opt_set_bool, &opt_dev_protocol,
  1779. "Verbose dump of device protocol-level activities"),
  1780. OPT_WITH_ARG("--device|-d",
  1781. set_devices, NULL, NULL,
  1782. "Enable only devices matching pattern (default: all)"),
  1783. OPT_WITHOUT_ARG("--disable-rejecting",
  1784. opt_set_bool, &opt_disable_pool,
  1785. "Automatically disable pools that continually reject shares"),
  1786. #ifdef USE_LIBMICROHTTPD
  1787. OPT_WITH_ARG("--http-port",
  1788. opt_set_intval, opt_show_intval, &httpsrv_port,
  1789. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1790. #endif
  1791. OPT_WITH_ARG("--expiry",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1793. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1794. OPT_WITH_ARG("-E",
  1795. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1796. opt_hidden),
  1797. OPT_WITH_ARG("--expiry-lp",
  1798. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1799. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1800. OPT_WITHOUT_ARG("--failover-only",
  1801. opt_set_bool, &opt_fail_only,
  1802. "Don't leak work to backup pools when primary pool is lagging"),
  1803. OPT_WITH_ARG("--failover-switch-delay",
  1804. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1805. "Delay in seconds before switching back to a failed pool"),
  1806. #ifdef USE_FPGA
  1807. OPT_WITHOUT_ARG("--force-dev-init",
  1808. opt_set_bool, &opt_force_dev_init,
  1809. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1810. #endif
  1811. #ifdef HAVE_OPENCL
  1812. OPT_WITH_ARG("--gpu-dyninterval",
  1813. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1814. opt_hidden),
  1815. OPT_WITH_ARG("--gpu-platform",
  1816. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1817. "Select OpenCL platform ID to use for GPU mining"),
  1818. OPT_WITH_ARG("--gpu-threads|-g",
  1819. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1820. opt_hidden),
  1821. #ifdef HAVE_ADL
  1822. OPT_WITH_ARG("--gpu-engine",
  1823. set_gpu_engine, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITH_ARG("--gpu-fan",
  1826. set_gpu_fan, NULL, NULL,
  1827. opt_hidden),
  1828. OPT_WITH_ARG("--gpu-map",
  1829. set_gpu_map, NULL, NULL,
  1830. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1831. OPT_WITH_ARG("--gpu-memclock",
  1832. set_gpu_memclock, NULL, NULL,
  1833. opt_hidden),
  1834. OPT_WITH_ARG("--gpu-memdiff",
  1835. set_gpu_memdiff, NULL, NULL,
  1836. opt_hidden),
  1837. OPT_WITH_ARG("--gpu-powertune",
  1838. set_gpu_powertune, NULL, NULL,
  1839. opt_hidden),
  1840. OPT_WITHOUT_ARG("--gpu-reorder",
  1841. opt_set_bool, &opt_reorder,
  1842. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1843. OPT_WITH_ARG("--gpu-vddc",
  1844. set_gpu_vddc, NULL, NULL,
  1845. opt_hidden),
  1846. #endif
  1847. #ifdef USE_SCRYPT
  1848. OPT_WITH_ARG("--lookup-gap",
  1849. set_lookup_gap, NULL, NULL,
  1850. opt_hidden),
  1851. #endif
  1852. OPT_WITH_ARG("--intensity|-I",
  1853. set_intensity, NULL, NULL,
  1854. opt_hidden),
  1855. #endif
  1856. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1857. OPT_WITH_ARG("--kernel-path",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. "Specify a path to where bitstream and kernel files are"),
  1860. OPT_WITH_ARG("-K",
  1861. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1862. opt_hidden),
  1863. #endif
  1864. #ifdef HAVE_OPENCL
  1865. OPT_WITH_ARG("--kernel|-k",
  1866. set_kernel, NULL, NULL,
  1867. opt_hidden),
  1868. #endif
  1869. #ifdef USE_ICARUS
  1870. OPT_WITH_ARG("--icarus-options",
  1871. set_icarus_options, NULL, NULL,
  1872. opt_hidden),
  1873. OPT_WITH_ARG("--icarus-timing",
  1874. set_icarus_timing, NULL, NULL,
  1875. opt_hidden),
  1876. #endif
  1877. #ifdef USE_AVALON
  1878. OPT_WITH_ARG("--avalon-options",
  1879. set_avalon_options, NULL, NULL,
  1880. opt_hidden),
  1881. #endif
  1882. #ifdef USE_KLONDIKE
  1883. OPT_WITH_ARG("--klondike-options",
  1884. set_klondike_options, NULL, NULL,
  1885. "Set klondike options clock:temptarget"),
  1886. #endif
  1887. OPT_WITHOUT_ARG("--load-balance",
  1888. set_loadbalance, &pool_strategy,
  1889. "Change multipool strategy from failover to quota based balance"),
  1890. OPT_WITH_ARG("--log|-l",
  1891. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1892. "Interval in seconds between log output"),
  1893. OPT_WITH_ARG("--log-file|-L",
  1894. set_log_file, NULL, NULL,
  1895. "Append log file for output messages"),
  1896. OPT_WITH_ARG("--logfile",
  1897. set_log_file, NULL, NULL,
  1898. opt_hidden),
  1899. OPT_WITHOUT_ARG("--log-microseconds",
  1900. opt_set_bool, &opt_log_microseconds,
  1901. "Include microseconds in log output"),
  1902. #if defined(unix) || defined(__APPLE__)
  1903. OPT_WITH_ARG("--monitor|-m",
  1904. opt_set_charp, NULL, &opt_stderr_cmd,
  1905. "Use custom pipe cmd for output messages"),
  1906. #endif // defined(unix)
  1907. OPT_WITHOUT_ARG("--net-delay",
  1908. opt_set_bool, &opt_delaynet,
  1909. "Impose small delays in networking to avoid overloading slow routers"),
  1910. OPT_WITHOUT_ARG("--no-adl",
  1911. opt_set_bool, &opt_noadl,
  1912. #ifdef HAVE_ADL
  1913. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1914. #else
  1915. opt_hidden
  1916. #endif
  1917. ),
  1918. OPT_WITHOUT_ARG("--no-gbt",
  1919. opt_set_invbool, &want_gbt,
  1920. "Disable getblocktemplate support"),
  1921. OPT_WITHOUT_ARG("--no-getwork",
  1922. opt_set_invbool, &want_getwork,
  1923. "Disable getwork support"),
  1924. OPT_WITHOUT_ARG("--no-hotplug",
  1925. #ifdef HAVE_BFG_HOTPLUG
  1926. opt_set_invbool, &opt_hotplug,
  1927. "Disable hotplug detection"
  1928. #else
  1929. set_null, &opt_hotplug,
  1930. opt_hidden
  1931. #endif
  1932. ),
  1933. OPT_WITHOUT_ARG("--no-longpoll",
  1934. opt_set_invbool, &want_longpoll,
  1935. "Disable X-Long-Polling support"),
  1936. OPT_WITHOUT_ARG("--no-pool-disable",
  1937. opt_set_invbool, &opt_disable_pool,
  1938. opt_hidden),
  1939. OPT_WITHOUT_ARG("--no-client-reconnect",
  1940. opt_set_invbool, &opt_disable_client_reconnect,
  1941. opt_hidden),
  1942. OPT_WITHOUT_ARG("--no-pool-redirect",
  1943. disable_pool_redirect, NULL,
  1944. "Ignore pool requests to redirect to another server"),
  1945. OPT_WITHOUT_ARG("--no-restart",
  1946. opt_set_invbool, &opt_restart,
  1947. "Do not attempt to restart devices that hang"
  1948. ),
  1949. OPT_WITHOUT_ARG("--no-show-processors",
  1950. opt_set_invbool, &opt_show_procs,
  1951. opt_hidden),
  1952. OPT_WITHOUT_ARG("--no-show-procs",
  1953. opt_set_invbool, &opt_show_procs,
  1954. opt_hidden),
  1955. OPT_WITHOUT_ARG("--no-stratum",
  1956. opt_set_invbool, &want_stratum,
  1957. "Disable Stratum detection"),
  1958. OPT_WITHOUT_ARG("--no-submit-stale",
  1959. opt_set_invbool, &opt_submit_stale,
  1960. "Don't submit shares if they are detected as stale"),
  1961. #ifdef HAVE_OPENCL
  1962. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1963. set_no_opencl_binaries, NULL,
  1964. opt_hidden),
  1965. #endif
  1966. OPT_WITHOUT_ARG("--no-unicode",
  1967. #ifdef USE_UNICODE
  1968. opt_set_invbool, &use_unicode,
  1969. "Don't use Unicode characters in TUI"
  1970. #else
  1971. set_null, &use_unicode,
  1972. opt_hidden
  1973. #endif
  1974. ),
  1975. OPT_WITH_ARG("--noncelog",
  1976. set_noncelog, NULL, NULL,
  1977. "Create log of all nonces found"),
  1978. OPT_WITH_ARG("--pass|-p",
  1979. set_pass, NULL, NULL,
  1980. "Password for bitcoin JSON-RPC server"),
  1981. OPT_WITHOUT_ARG("--per-device-stats",
  1982. opt_set_bool, &want_per_device_stats,
  1983. "Force verbose mode and output per-device statistics"),
  1984. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1985. set_userpass, NULL, NULL,
  1986. opt_hidden),
  1987. OPT_WITH_ARG("--pool-priority",
  1988. set_pool_priority, NULL, NULL,
  1989. "Priority for just the previous-defined pool"),
  1990. OPT_WITH_ARG("--pool-proxy|-x",
  1991. set_pool_proxy, NULL, NULL,
  1992. "Proxy URI to use for connecting to just the previous-defined pool"),
  1993. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1994. set_pool_force_rollntime, NULL, NULL,
  1995. opt_hidden),
  1996. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1997. opt_set_bool, &opt_protocol,
  1998. "Verbose dump of protocol-level activities"),
  1999. OPT_WITH_ARG("--queue|-Q",
  2000. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2001. "Minimum number of work items to have queued (0+)"),
  2002. OPT_WITHOUT_ARG("--quiet|-q",
  2003. opt_set_bool, &opt_quiet,
  2004. "Disable logging output, display status and errors"),
  2005. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2006. opt_set_bool, &opt_quiet_work_updates,
  2007. opt_hidden),
  2008. OPT_WITH_ARG("--quit-summary",
  2009. set_quit_summary, NULL, NULL,
  2010. "Summary printed when you quit: none/devs/procs/detailed"),
  2011. OPT_WITH_ARG("--quota|-U",
  2012. set_quota, NULL, NULL,
  2013. "quota;URL combination for server with load-balance strategy quotas"),
  2014. OPT_WITHOUT_ARG("--real-quiet",
  2015. opt_set_bool, &opt_realquiet,
  2016. "Disable all output"),
  2017. OPT_WITH_ARG("--request-diff",
  2018. set_request_diff, opt_show_floatval, &request_pdiff,
  2019. "Request a specific difficulty from pools"),
  2020. OPT_WITH_ARG("--retries",
  2021. opt_set_intval, opt_show_intval, &opt_retries,
  2022. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2023. OPT_WITH_ARG("--retry-pause",
  2024. set_null, NULL, NULL,
  2025. opt_hidden),
  2026. OPT_WITH_ARG("--rotate",
  2027. set_rotate, opt_show_intval, &opt_rotate_period,
  2028. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2029. OPT_WITHOUT_ARG("--round-robin",
  2030. set_rr, &pool_strategy,
  2031. "Change multipool strategy from failover to round robin on failure"),
  2032. OPT_WITH_ARG("--scan|-S",
  2033. add_serial, NULL, NULL,
  2034. "Configure how to scan for mining devices"),
  2035. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2036. add_serial, NULL, NULL,
  2037. opt_hidden),
  2038. OPT_WITH_ARG("--scan-time",
  2039. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2040. "Upper bound on time spent scanning current work, in seconds"),
  2041. OPT_WITH_ARG("-s",
  2042. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2043. opt_hidden),
  2044. OPT_WITH_ARG("--scantime",
  2045. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2046. opt_hidden),
  2047. OPT_WITH_ARG("--sched-start",
  2048. set_schedtime, NULL, &schedstart,
  2049. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2050. OPT_WITH_ARG("--sched-stop",
  2051. set_schedtime, NULL, &schedstop,
  2052. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2053. #ifdef USE_SCRYPT
  2054. OPT_WITHOUT_ARG("--scrypt",
  2055. opt_set_bool, &opt_scrypt,
  2056. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2057. #endif
  2058. OPT_WITH_ARG("--set-device|--set",
  2059. opt_string_elist_add, NULL, &opt_set_device_list,
  2060. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2061. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2062. OPT_WITH_ARG("--shaders",
  2063. set_shaders, NULL, NULL,
  2064. opt_hidden),
  2065. #endif
  2066. #ifdef HAVE_PWD_H
  2067. OPT_WITH_ARG("--setuid",
  2068. opt_set_charp, NULL, &opt_setuid,
  2069. "Username of an unprivileged user to run as"),
  2070. #endif
  2071. OPT_WITH_ARG("--sharelog",
  2072. set_sharelog, NULL, NULL,
  2073. "Append share log to file"),
  2074. OPT_WITH_ARG("--shares",
  2075. opt_set_floatval, NULL, &opt_shares,
  2076. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2077. OPT_WITHOUT_ARG("--show-processors",
  2078. opt_set_bool, &opt_show_procs,
  2079. "Show per processor statistics in summary"),
  2080. OPT_WITHOUT_ARG("--show-procs",
  2081. opt_set_bool, &opt_show_procs,
  2082. opt_hidden),
  2083. OPT_WITH_ARG("--skip-security-checks",
  2084. set_int_0_to_9999, NULL, &opt_skip_checks,
  2085. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2086. OPT_WITH_ARG("--socks-proxy",
  2087. opt_set_charp, NULL, &opt_socks_proxy,
  2088. "Set socks proxy (host:port)"),
  2089. #ifdef USE_LIBEVENT
  2090. OPT_WITH_ARG("--stratum-port",
  2091. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2092. "Port number to listen on for stratum miners (-1 means disabled)"),
  2093. #endif
  2094. OPT_WITHOUT_ARG("--submit-stale",
  2095. opt_set_bool, &opt_submit_stale,
  2096. opt_hidden),
  2097. OPT_WITH_ARG("--submit-threads",
  2098. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2099. "Minimum number of concurrent share submissions (default: 64)"),
  2100. #ifdef HAVE_SYSLOG_H
  2101. OPT_WITHOUT_ARG("--syslog",
  2102. opt_set_bool, &use_syslog,
  2103. "Use system log for output messages (default: standard error)"),
  2104. #endif
  2105. OPT_WITH_ARG("--temp-cutoff",
  2106. set_temp_cutoff, NULL, &opt_cutofftemp,
  2107. opt_hidden),
  2108. OPT_WITH_ARG("--temp-hysteresis",
  2109. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2110. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2111. #ifdef HAVE_ADL
  2112. OPT_WITH_ARG("--temp-overheat",
  2113. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2114. opt_hidden),
  2115. #endif
  2116. OPT_WITH_ARG("--temp-target",
  2117. set_temp_target, NULL, NULL,
  2118. opt_hidden),
  2119. OPT_WITHOUT_ARG("--text-only|-T",
  2120. opt_set_invbool, &use_curses,
  2121. #ifdef HAVE_CURSES
  2122. "Disable ncurses formatted screen output"
  2123. #else
  2124. opt_hidden
  2125. #endif
  2126. ),
  2127. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2128. OPT_WITH_ARG("--thread-concurrency",
  2129. set_thread_concurrency, NULL, NULL,
  2130. opt_hidden),
  2131. #endif
  2132. #ifdef USE_UNICODE
  2133. OPT_WITHOUT_ARG("--unicode",
  2134. opt_set_bool, &use_unicode,
  2135. "Use Unicode characters in TUI"),
  2136. #endif
  2137. OPT_WITH_ARG("--url|-o",
  2138. set_url, NULL, NULL,
  2139. "URL for bitcoin JSON-RPC server"),
  2140. OPT_WITH_ARG("--user|-u",
  2141. set_user, NULL, NULL,
  2142. "Username for bitcoin JSON-RPC server"),
  2143. #ifdef HAVE_OPENCL
  2144. OPT_WITH_ARG("--vectors|-v",
  2145. set_vector, NULL, NULL,
  2146. opt_hidden),
  2147. #endif
  2148. OPT_WITHOUT_ARG("--verbose",
  2149. opt_set_bool, &opt_log_output,
  2150. "Log verbose output to stderr as well as status output"),
  2151. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2152. opt_set_invbool, &opt_quiet_work_updates,
  2153. opt_hidden),
  2154. OPT_WITHOUT_ARG("--weighed-stats",
  2155. opt_set_bool, &opt_weighed_stats,
  2156. "Display statistics weighed to difficulty 1"),
  2157. #ifdef HAVE_OPENCL
  2158. OPT_WITH_ARG("--worksize|-w",
  2159. set_worksize, NULL, NULL,
  2160. opt_hidden),
  2161. #endif
  2162. OPT_WITHOUT_ARG("--unittest",
  2163. opt_set_bool, &opt_unittest, opt_hidden),
  2164. OPT_WITH_ARG("--userpass|-O",
  2165. set_userpass, NULL, NULL,
  2166. "Username:Password pair for bitcoin JSON-RPC server"),
  2167. OPT_WITHOUT_ARG("--worktime",
  2168. opt_set_bool, &opt_worktime,
  2169. "Display extra work time debug information"),
  2170. OPT_WITH_ARG("--pools",
  2171. opt_set_bool, NULL, NULL, opt_hidden),
  2172. OPT_ENDTABLE
  2173. };
  2174. static char *load_config(const char *arg, void __maybe_unused *unused);
  2175. static int fileconf_load;
  2176. static char *parse_config(json_t *config, bool fileconf)
  2177. {
  2178. static char err_buf[200];
  2179. struct opt_table *opt;
  2180. json_t *val;
  2181. if (fileconf && !fileconf_load)
  2182. fileconf_load = 1;
  2183. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2184. char *p, *name, *sp;
  2185. /* We don't handle subtables. */
  2186. assert(!(opt->type & OPT_SUBTABLE));
  2187. if (!opt->names)
  2188. continue;
  2189. /* Pull apart the option name(s). */
  2190. name = strdup(opt->names);
  2191. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2192. char *err = "Invalid value";
  2193. /* Ignore short options. */
  2194. if (p[1] != '-')
  2195. continue;
  2196. val = json_object_get(config, p+2);
  2197. if (!val)
  2198. continue;
  2199. if (opt->type & OPT_HASARG) {
  2200. if (json_is_string(val)) {
  2201. err = opt->cb_arg(json_string_value(val),
  2202. opt->u.arg);
  2203. } else if (json_is_number(val)) {
  2204. char buf[256], *p, *q;
  2205. snprintf(buf, 256, "%f", json_number_value(val));
  2206. if ( (p = strchr(buf, '.')) ) {
  2207. // Trim /\.0*$/ to work properly with integer-only arguments
  2208. q = p;
  2209. while (*(++q) == '0') {}
  2210. if (*q == '\0')
  2211. *p = '\0';
  2212. }
  2213. err = opt->cb_arg(buf, opt->u.arg);
  2214. } else if (json_is_array(val)) {
  2215. int n, size = json_array_size(val);
  2216. err = NULL;
  2217. for (n = 0; n < size && !err; n++) {
  2218. if (json_is_string(json_array_get(val, n)))
  2219. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2220. else if (json_is_object(json_array_get(val, n)))
  2221. err = parse_config(json_array_get(val, n), false);
  2222. }
  2223. }
  2224. } else if (opt->type & OPT_NOARG) {
  2225. if (json_is_true(val))
  2226. err = opt->cb(opt->u.arg);
  2227. else if (json_is_boolean(val)) {
  2228. if (opt->cb == (void*)opt_set_bool)
  2229. err = opt_set_invbool(opt->u.arg);
  2230. else if (opt->cb == (void*)opt_set_invbool)
  2231. err = opt_set_bool(opt->u.arg);
  2232. }
  2233. }
  2234. if (err) {
  2235. /* Allow invalid values to be in configuration
  2236. * file, just skipping over them provided the
  2237. * JSON is still valid after that. */
  2238. if (fileconf) {
  2239. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2240. fileconf_load = -1;
  2241. } else {
  2242. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2243. p, err);
  2244. return err_buf;
  2245. }
  2246. }
  2247. }
  2248. free(name);
  2249. }
  2250. val = json_object_get(config, JSON_INCLUDE_CONF);
  2251. if (val && json_is_string(val))
  2252. return load_config(json_string_value(val), NULL);
  2253. return NULL;
  2254. }
  2255. char *cnfbuf = NULL;
  2256. static char *load_config(const char *arg, void __maybe_unused *unused)
  2257. {
  2258. json_error_t err;
  2259. json_t *config;
  2260. char *json_error;
  2261. size_t siz;
  2262. if (!cnfbuf)
  2263. cnfbuf = strdup(arg);
  2264. if (++include_count > JSON_MAX_DEPTH)
  2265. return JSON_MAX_DEPTH_ERR;
  2266. #if JANSSON_MAJOR_VERSION > 1
  2267. config = json_load_file(arg, 0, &err);
  2268. #else
  2269. config = json_load_file(arg, &err);
  2270. #endif
  2271. if (!json_is_object(config)) {
  2272. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2273. json_error = malloc(siz);
  2274. if (!json_error)
  2275. quit(1, "Malloc failure in json error");
  2276. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2277. return json_error;
  2278. }
  2279. config_loaded = true;
  2280. /* Parse the config now, so we can override it. That can keep pointers
  2281. * so don't free config object. */
  2282. return parse_config(config, true);
  2283. }
  2284. static void load_default_config(void)
  2285. {
  2286. cnfbuf = malloc(PATH_MAX);
  2287. #if defined(unix)
  2288. if (getenv("HOME") && *getenv("HOME")) {
  2289. strcpy(cnfbuf, getenv("HOME"));
  2290. strcat(cnfbuf, "/");
  2291. } else
  2292. strcpy(cnfbuf, "");
  2293. char *dirp = cnfbuf + strlen(cnfbuf);
  2294. strcpy(dirp, ".bfgminer/");
  2295. strcat(dirp, def_conf);
  2296. if (access(cnfbuf, R_OK))
  2297. // No BFGMiner config, try Cgminer's...
  2298. strcpy(dirp, ".cgminer/cgminer.conf");
  2299. #else
  2300. strcpy(cnfbuf, "");
  2301. strcat(cnfbuf, def_conf);
  2302. #endif
  2303. if (!access(cnfbuf, R_OK))
  2304. load_config(cnfbuf, NULL);
  2305. else {
  2306. free(cnfbuf);
  2307. cnfbuf = NULL;
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are parsed before anything else */
  2323. static struct opt_table opt_early_table[] = {
  2324. OPT_EARLY_WITH_ARG("--config|-c",
  2325. set_bool_ignore_arg, NULL, &config_loaded,
  2326. opt_hidden),
  2327. OPT_EARLY_WITHOUT_ARG("--no-config",
  2328. opt_set_bool, &config_loaded,
  2329. "Inhibit loading default config file"),
  2330. OPT_ENDTABLE
  2331. };
  2332. /* These options are available from commandline only */
  2333. static struct opt_table opt_cmdline_table[] = {
  2334. OPT_WITH_ARG("--config|-c",
  2335. load_config, NULL, NULL,
  2336. "Load a JSON-format configuration file\n"
  2337. "See example.conf for an example configuration."),
  2338. OPT_EARLY_WITHOUT_ARG("--no-config",
  2339. opt_set_bool, &config_loaded,
  2340. "Inhibit loading default config file"),
  2341. OPT_WITHOUT_ARG("--help|-h",
  2342. opt_verusage_and_exit, NULL,
  2343. "Print this message"),
  2344. #ifdef HAVE_OPENCL
  2345. OPT_WITHOUT_ARG("--ndevs|-n",
  2346. print_ndevs_and_exit, &nDevs,
  2347. opt_hidden),
  2348. #endif
  2349. OPT_WITHOUT_ARG("--version|-V",
  2350. opt_version_and_exit, packagename,
  2351. "Display version and exit"),
  2352. OPT_ENDTABLE
  2353. };
  2354. static bool jobj_binary(const json_t *obj, const char *key,
  2355. void *buf, size_t buflen, bool required)
  2356. {
  2357. const char *hexstr;
  2358. json_t *tmp;
  2359. tmp = json_object_get(obj, key);
  2360. if (unlikely(!tmp)) {
  2361. if (unlikely(required))
  2362. applog(LOG_ERR, "JSON key '%s' not found", key);
  2363. return false;
  2364. }
  2365. hexstr = json_string_value(tmp);
  2366. if (unlikely(!hexstr)) {
  2367. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2368. return false;
  2369. }
  2370. if (!hex2bin(buf, hexstr, buflen))
  2371. return false;
  2372. return true;
  2373. }
  2374. static void calc_midstate(struct work *work)
  2375. {
  2376. union {
  2377. unsigned char c[64];
  2378. uint32_t i[16];
  2379. } data;
  2380. swap32yes(&data.i[0], work->data, 16);
  2381. sha256_ctx ctx;
  2382. sha256_init(&ctx);
  2383. sha256_update(&ctx, data.c, 64);
  2384. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2385. swap32tole(work->midstate, work->midstate, 8);
  2386. }
  2387. static
  2388. struct bfg_tmpl_ref *tmpl_makeref(blktemplate_t * const tmpl)
  2389. {
  2390. struct bfg_tmpl_ref * const tr = malloc(sizeof(*tr));
  2391. *tr = (struct bfg_tmpl_ref){
  2392. .tmpl = tmpl,
  2393. .refcount = 1,
  2394. };
  2395. mutex_init(&tr->mutex);
  2396. return tr;
  2397. }
  2398. static
  2399. void tmpl_incref(struct bfg_tmpl_ref * const tr)
  2400. {
  2401. mutex_lock(&tr->mutex);
  2402. ++tr->refcount;
  2403. mutex_unlock(&tr->mutex);
  2404. }
  2405. void tmpl_decref(struct bfg_tmpl_ref * const tr)
  2406. {
  2407. mutex_lock(&tr->mutex);
  2408. bool free_tmpl = !--tr->refcount;
  2409. mutex_unlock(&tr->mutex);
  2410. if (free_tmpl)
  2411. {
  2412. blktmpl_free(tr->tmpl);
  2413. mutex_destroy(&tr->mutex);
  2414. free(tr);
  2415. }
  2416. }
  2417. static struct work *make_work(void)
  2418. {
  2419. struct work *work = calloc(1, sizeof(struct work));
  2420. if (unlikely(!work))
  2421. quit(1, "Failed to calloc work in make_work");
  2422. cg_wlock(&control_lock);
  2423. work->id = total_work++;
  2424. cg_wunlock(&control_lock);
  2425. return work;
  2426. }
  2427. /* This is the central place all work that is about to be retired should be
  2428. * cleaned to remove any dynamically allocated arrays within the struct */
  2429. void clean_work(struct work *work)
  2430. {
  2431. free(work->job_id);
  2432. bytes_free(&work->nonce2);
  2433. free(work->nonce1);
  2434. if (work->device_data_free_func)
  2435. work->device_data_free_func(work);
  2436. if (work->tr)
  2437. tmpl_decref(work->tr);
  2438. memset(work, 0, sizeof(struct work));
  2439. }
  2440. /* All dynamically allocated work structs should be freed here to not leak any
  2441. * ram from arrays allocated within the work struct */
  2442. void free_work(struct work *work)
  2443. {
  2444. clean_work(work);
  2445. free(work);
  2446. }
  2447. static const char *workpadding_bin = "\0\0\0\x80\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x80\x02\0\0";
  2448. // Must only be called with ch_lock held!
  2449. static
  2450. void __update_block_title(const unsigned char *hash_swap)
  2451. {
  2452. if (hash_swap) {
  2453. char tmp[17];
  2454. // Only provided when the block has actually changed
  2455. free(current_hash);
  2456. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2457. bin2hex(tmp, &hash_swap[24], 8);
  2458. memset(current_hash, '.', 3);
  2459. memcpy(&current_hash[3], tmp, 17);
  2460. known_blkheight_current = false;
  2461. } else if (likely(known_blkheight_current)) {
  2462. return;
  2463. }
  2464. if (current_block_id == known_blkheight_blkid) {
  2465. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2466. if (known_blkheight < 1000000) {
  2467. memmove(&current_hash[3], &current_hash[11], 8);
  2468. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2469. }
  2470. known_blkheight_current = true;
  2471. }
  2472. }
  2473. static
  2474. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2475. {
  2476. if (known_blkheight == blkheight)
  2477. return;
  2478. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2479. cg_wlock(&ch_lock);
  2480. known_blkheight = blkheight;
  2481. known_blkheight_blkid = block_id;
  2482. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2483. if (block_id == current_block_id)
  2484. __update_block_title(NULL);
  2485. cg_wunlock(&ch_lock);
  2486. }
  2487. static
  2488. void pool_set_opaque(struct pool *pool, bool opaque)
  2489. {
  2490. if (pool->swork.opaque == opaque)
  2491. return;
  2492. pool->swork.opaque = opaque;
  2493. if (opaque)
  2494. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2495. pool->pool_no);
  2496. else
  2497. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2498. pool->pool_no);
  2499. }
  2500. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2501. {
  2502. const char *p = strchr(pool->rpc_url, '#');
  2503. if (unlikely(p && strstr(&p[1], "redirect")))
  2504. return true;
  2505. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2506. }
  2507. void set_simple_ntime_roll_limit(struct ntime_roll_limits * const nrl, const uint32_t ntime_base, const int ntime_roll)
  2508. {
  2509. *nrl = (struct ntime_roll_limits){
  2510. .min = ntime_base,
  2511. .max = ntime_base + ntime_roll,
  2512. .minoff = -ntime_roll,
  2513. .maxoff = ntime_roll,
  2514. };
  2515. }
  2516. void work_set_simple_ntime_roll_limit(struct work * const work, const int ntime_roll)
  2517. {
  2518. set_simple_ntime_roll_limit(&work->ntime_roll_limits, upk_u32be(work->data, 0x44), ntime_roll);
  2519. }
  2520. static double target_diff(const unsigned char *);
  2521. #define GBT_XNONCESZ (sizeof(uint32_t))
  2522. #if BLKMAKER_VERSION > 4
  2523. #define blkmk_append_coinbase_safe(tmpl, append, appendsz) \
  2524. blkmk_append_coinbase_safe2(tmpl, append, appendsz, GBT_XNONCESZ, false)
  2525. #endif
  2526. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2527. {
  2528. json_t *res_val = json_object_get(val, "result");
  2529. json_t *tmp_val;
  2530. bool ret = false;
  2531. struct timeval tv_now;
  2532. if (unlikely(detect_algo == 1)) {
  2533. json_t *tmp = json_object_get(res_val, "algorithm");
  2534. const char *v = tmp ? json_string_value(tmp) : "";
  2535. if (strncasecmp(v, "scrypt", 6))
  2536. detect_algo = 2;
  2537. }
  2538. timer_set_now(&tv_now);
  2539. if (work->tr)
  2540. {
  2541. blktemplate_t * const tmpl = work->tr->tmpl;
  2542. const char *err = blktmpl_add_jansson(tmpl, res_val, tv_now.tv_sec);
  2543. if (err) {
  2544. applog(LOG_ERR, "blktmpl error: %s", err);
  2545. return false;
  2546. }
  2547. work->rolltime = blkmk_time_left(tmpl, tv_now.tv_sec);
  2548. #if BLKMAKER_VERSION > 1
  2549. if (opt_coinbase_script.sz)
  2550. {
  2551. bool newcb;
  2552. #if BLKMAKER_VERSION > 2
  2553. blkmk_init_generation2(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2554. #else
  2555. newcb = !tmpl->cbtxn;
  2556. blkmk_init_generation(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2557. #endif
  2558. if (newcb)
  2559. {
  2560. ssize_t ae = blkmk_append_coinbase_safe(tmpl, &template_nonce, sizeof(template_nonce));
  2561. if (ae < (ssize_t)sizeof(template_nonce))
  2562. 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);
  2563. ++template_nonce;
  2564. }
  2565. }
  2566. #endif
  2567. #if BLKMAKER_VERSION > 0
  2568. {
  2569. ssize_t ae = blkmk_append_coinbase_safe(tmpl, opt_coinbase_sig, 101);
  2570. static bool appenderr = false;
  2571. if (ae <= 0) {
  2572. if (opt_coinbase_sig) {
  2573. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2574. appenderr = true;
  2575. }
  2576. } else if (ae >= 3 || opt_coinbase_sig) {
  2577. const char *cbappend = opt_coinbase_sig;
  2578. const char full[] = PACKAGE " " VERSION;
  2579. if (!cbappend) {
  2580. if ((size_t)ae >= sizeof(full) - 1)
  2581. cbappend = full;
  2582. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2583. cbappend = PACKAGE;
  2584. else
  2585. cbappend = "BFG";
  2586. }
  2587. size_t cbappendsz = strlen(cbappend);
  2588. static bool truncatewarning = false;
  2589. if (cbappendsz <= (size_t)ae) {
  2590. if (cbappendsz < (size_t)ae)
  2591. // If we have space, include the trailing \0
  2592. ++cbappendsz;
  2593. ae = cbappendsz;
  2594. truncatewarning = false;
  2595. } else {
  2596. char *tmp = malloc(ae + 1);
  2597. memcpy(tmp, opt_coinbase_sig, ae);
  2598. tmp[ae] = '\0';
  2599. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2600. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2601. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2602. free(tmp);
  2603. truncatewarning = true;
  2604. }
  2605. ae = blkmk_append_coinbase_safe(tmpl, cbappend, ae);
  2606. if (ae <= 0) {
  2607. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2608. appenderr = true;
  2609. } else
  2610. appenderr = false;
  2611. }
  2612. }
  2613. #endif
  2614. if (blkmk_get_data(tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2615. return false;
  2616. swap32yes(work->data, work->data, 80 / 4);
  2617. memcpy(&work->data[80], workpadding_bin, 48);
  2618. work->ntime_roll_limits = (struct ntime_roll_limits){
  2619. .min = tmpl->mintime,
  2620. .max = tmpl->maxtime,
  2621. .minoff = tmpl->mintimeoff,
  2622. .maxoff = tmpl->maxtimeoff,
  2623. };
  2624. const struct blktmpl_longpoll_req *lp;
  2625. if ((lp = blktmpl_get_longpoll(tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2626. free(pool->lp_id);
  2627. pool->lp_id = strdup(lp->id);
  2628. #if 0 /* This just doesn't work :( */
  2629. curl_socket_t sock = pool->lp_socket;
  2630. if (sock != CURL_SOCKET_BAD) {
  2631. pool->lp_socket = CURL_SOCKET_BAD;
  2632. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2633. shutdown(sock, SHUT_RDWR);
  2634. }
  2635. #endif
  2636. }
  2637. }
  2638. else
  2639. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2640. applog(LOG_ERR, "JSON inval data");
  2641. return false;
  2642. }
  2643. else
  2644. work_set_simple_ntime_roll_limit(work, 0);
  2645. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2646. // Calculate it ourselves
  2647. applog(LOG_DEBUG, "Calculating midstate locally");
  2648. calc_midstate(work);
  2649. }
  2650. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2651. applog(LOG_ERR, "JSON inval target");
  2652. return false;
  2653. }
  2654. if (work->tr)
  2655. {
  2656. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2657. {
  2658. int p = (sizeof(work->target) - 1) - i;
  2659. unsigned char c = work->target[i];
  2660. work->target[i] = work->target[p];
  2661. work->target[p] = c;
  2662. }
  2663. }
  2664. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2665. uint32_t blkheight = json_number_value(tmp_val);
  2666. uint32_t block_id = ((uint32_t*)work->data)[1];
  2667. have_block_height(block_id, blkheight);
  2668. }
  2669. memset(work->hash, 0, sizeof(work->hash));
  2670. work->tv_staged = tv_now;
  2671. #if BLKMAKER_VERSION > 4
  2672. if (work->tr)
  2673. {
  2674. blktemplate_t * const tmpl = work->tr->tmpl;
  2675. uint8_t buf[80];
  2676. int16_t expire;
  2677. uint8_t *cbtxn;
  2678. size_t cbtxnsz;
  2679. size_t cbextranonceoffset;
  2680. int branchcount;
  2681. libblkmaker_hash_t *branches;
  2682. if (blkmk_get_mdata(tmpl, buf, sizeof(buf), tv_now.tv_sec, &expire, &cbtxn, &cbtxnsz, &cbextranonceoffset, &branchcount, &branches, GBT_XNONCESZ, false))
  2683. {
  2684. struct stratum_work * const swork = &pool->swork;
  2685. const size_t branchdatasz = branchcount * 0x20;
  2686. cg_wlock(&pool->data_lock);
  2687. swork->tr = work->tr;
  2688. bytes_assimilate_raw(&swork->coinbase, cbtxn, cbtxnsz, cbtxnsz);
  2689. swork->nonce2_offset = cbextranonceoffset;
  2690. bytes_assimilate_raw(&swork->merkle_bin, branches, branchdatasz, branchdatasz);
  2691. swork->merkles = branchcount;
  2692. memcpy(swork->header1, &buf[0], 36);
  2693. swork->ntime = le32toh(*(uint32_t *)(&buf[68]));
  2694. swork->tv_received = tv_now;
  2695. memcpy(swork->diffbits, &buf[72], 4);
  2696. memcpy(swork->target, work->target, sizeof(swork->target));
  2697. free(swork->job_id);
  2698. swork->job_id = NULL;
  2699. swork->clean = true;
  2700. swork->work_restart_id = pool->work_restart_id;
  2701. // FIXME: Do something with expire
  2702. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  2703. pool->nonce2 = 0;
  2704. cg_wunlock(&pool->data_lock);
  2705. }
  2706. else
  2707. applog(LOG_DEBUG, "blkmk_get_mdata failed for pool %u", pool->pool_no);
  2708. }
  2709. #endif // BLKMAKER_VERSION > 4
  2710. pool_set_opaque(pool, !work->tr);
  2711. ret = true;
  2712. return ret;
  2713. }
  2714. /* Returns whether the pool supports local work generation or not. */
  2715. static bool pool_localgen(struct pool *pool)
  2716. {
  2717. return (pool->last_work_copy || pool->has_stratum);
  2718. }
  2719. int dev_from_id(int thr_id)
  2720. {
  2721. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2722. return cgpu->device_id;
  2723. }
  2724. /* Create an exponentially decaying average over the opt_log_interval */
  2725. void decay_time(double *f, double fadd, double fsecs)
  2726. {
  2727. double ftotal, fprop;
  2728. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2729. ftotal = 1.0 + fprop;
  2730. *f += (fadd * fprop);
  2731. *f /= ftotal;
  2732. }
  2733. static int __total_staged(void)
  2734. {
  2735. return HASH_COUNT(staged_work);
  2736. }
  2737. static int total_staged(void)
  2738. {
  2739. int ret;
  2740. mutex_lock(stgd_lock);
  2741. ret = __total_staged();
  2742. mutex_unlock(stgd_lock);
  2743. return ret;
  2744. }
  2745. #ifdef HAVE_CURSES
  2746. WINDOW *mainwin, *statuswin, *logwin;
  2747. #endif
  2748. double total_secs = 1.0;
  2749. static char statusline[256];
  2750. /* logstart is where the log window should start */
  2751. static int devcursor, logstart, logcursor;
  2752. #ifdef HAVE_CURSES
  2753. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2754. static int statusy;
  2755. static int devsummaryYOffset;
  2756. static int total_lines;
  2757. #endif
  2758. #ifdef HAVE_OPENCL
  2759. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2760. #endif
  2761. struct cgpu_info *cpus;
  2762. bool _bfg_console_cancel_disabled;
  2763. int _bfg_console_prev_cancelstate;
  2764. #ifdef HAVE_CURSES
  2765. #define lock_curses() bfg_console_lock()
  2766. #define unlock_curses() bfg_console_unlock()
  2767. static bool curses_active_locked(void)
  2768. {
  2769. bool ret;
  2770. lock_curses();
  2771. ret = curses_active;
  2772. if (!ret)
  2773. unlock_curses();
  2774. return ret;
  2775. }
  2776. // Cancellable getch
  2777. int my_cancellable_getch(void)
  2778. {
  2779. // This only works because the macro only hits direct getch() calls
  2780. typedef int (*real_getch_t)(void);
  2781. const real_getch_t real_getch = __real_getch;
  2782. int type, rv;
  2783. bool sct;
  2784. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2785. rv = real_getch();
  2786. if (sct)
  2787. pthread_setcanceltype(type, &type);
  2788. return rv;
  2789. }
  2790. #ifdef PDCURSES
  2791. static
  2792. int bfg_wresize(WINDOW *win, int lines, int columns)
  2793. {
  2794. int rv = wresize(win, lines, columns);
  2795. int x, y;
  2796. getyx(win, y, x);
  2797. if (unlikely(y >= lines || x >= columns))
  2798. {
  2799. if (y >= lines)
  2800. y = lines - 1;
  2801. if (x >= columns)
  2802. x = columns - 1;
  2803. wmove(win, y, x);
  2804. }
  2805. return rv;
  2806. }
  2807. #else
  2808. # define bfg_wresize wresize
  2809. #endif
  2810. #endif
  2811. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2812. {
  2813. va_list ap;
  2814. size_t presz = strlen(buf);
  2815. va_start(ap, fmt);
  2816. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2817. va_end(ap);
  2818. }
  2819. double stats_elapsed(struct cgminer_stats *stats)
  2820. {
  2821. struct timeval now;
  2822. double elapsed;
  2823. if (stats->start_tv.tv_sec == 0)
  2824. elapsed = total_secs;
  2825. else {
  2826. cgtime(&now);
  2827. elapsed = tdiff(&now, &stats->start_tv);
  2828. }
  2829. if (elapsed < 1.0)
  2830. elapsed = 1.0;
  2831. return elapsed;
  2832. }
  2833. bool drv_ready(struct cgpu_info *cgpu)
  2834. {
  2835. switch (cgpu->status) {
  2836. case LIFE_INIT:
  2837. case LIFE_DEAD2:
  2838. return false;
  2839. default:
  2840. return true;
  2841. }
  2842. }
  2843. double cgpu_utility(struct cgpu_info *cgpu)
  2844. {
  2845. double dev_runtime = cgpu_runtime(cgpu);
  2846. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2847. }
  2848. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2849. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2850. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2851. }while(0)
  2852. static float
  2853. utility_to_hashrate(double utility)
  2854. {
  2855. return utility * 0x4444444;
  2856. }
  2857. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2858. static const int _unitbase = 4;
  2859. static
  2860. void pick_unit(float hashrate, unsigned char *unit)
  2861. {
  2862. unsigned char i;
  2863. if (hashrate == 0)
  2864. {
  2865. if (*unit < _unitbase)
  2866. *unit = _unitbase;
  2867. return;
  2868. }
  2869. hashrate *= 1e12;
  2870. for (i = 0; i < *unit; ++i)
  2871. hashrate /= 1e3;
  2872. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2873. while (hashrate >= 999.95)
  2874. {
  2875. hashrate /= 1e3;
  2876. if (likely(_unitchar[*unit] != '?'))
  2877. ++*unit;
  2878. }
  2879. }
  2880. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2881. enum h2bs_fmt {
  2882. H2B_NOUNIT, // "xxx.x"
  2883. H2B_SHORT, // "xxx.xMH/s"
  2884. H2B_SPACED, // "xxx.x MH/s"
  2885. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2886. };
  2887. enum bfu_floatprec {
  2888. FUP_INTEGER,
  2889. FUP_HASHES,
  2890. FUP_BTC,
  2891. FUP_DIFF,
  2892. };
  2893. static
  2894. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2895. {
  2896. char *s = buf;
  2897. unsigned char prec, i, unit;
  2898. int rv = 0;
  2899. if (unitin == -1)
  2900. {
  2901. unit = 0;
  2902. hashrate_pick_unit(hashrate, &unit);
  2903. }
  2904. else
  2905. unit = unitin;
  2906. hashrate *= 1e12;
  2907. for (i = 0; i < unit; ++i)
  2908. hashrate /= 1000;
  2909. switch (fprec)
  2910. {
  2911. case FUP_HASHES:
  2912. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2913. if (hashrate >= 99.995 || unit < 6)
  2914. prec = 1;
  2915. else
  2916. prec = 2;
  2917. _SNP("%5.*f", prec, hashrate);
  2918. break;
  2919. case FUP_INTEGER:
  2920. _SNP("%3d", (int)hashrate);
  2921. break;
  2922. case FUP_BTC:
  2923. if (hashrate >= 99.995)
  2924. prec = 0;
  2925. else
  2926. prec = 2;
  2927. _SNP("%5.*f", prec, hashrate);
  2928. break;
  2929. case FUP_DIFF:
  2930. if (unit > _unitbase)
  2931. _SNP("%.3g", hashrate);
  2932. else
  2933. _SNP("%u", (unsigned int)hashrate);
  2934. }
  2935. if (fmt != H2B_NOUNIT)
  2936. {
  2937. char uc[3] = {_unitchar[unit], '\0'};
  2938. switch (fmt) {
  2939. case H2B_SPACED:
  2940. _SNP(" ");
  2941. default:
  2942. break;
  2943. case H2B_SHORTV:
  2944. if (isspace(uc[0]))
  2945. uc[0] = '\0';
  2946. }
  2947. if (uc[0] == '\xb5')
  2948. // Convert to UTF-8
  2949. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2950. _SNP("%s%s", uc, measurement);
  2951. }
  2952. return rv;
  2953. }
  2954. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2955. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2956. static
  2957. 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)
  2958. {
  2959. unsigned char unit = 0;
  2960. bool allzero = true;
  2961. int i;
  2962. size_t delimsz = 0;
  2963. char *buf = buflist[0];
  2964. size_t bufsz = bufszlist[0];
  2965. size_t itemwidth = (floatprec ? 5 : 3);
  2966. if (!isarray)
  2967. delimsz = strlen(delim);
  2968. for (i = 0; i < count; ++i)
  2969. if (numbers[i] != 0)
  2970. {
  2971. pick_unit(numbers[i], &unit);
  2972. allzero = false;
  2973. }
  2974. if (allzero)
  2975. unit = _unitbase;
  2976. --count;
  2977. for (i = 0; i < count; ++i)
  2978. {
  2979. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2980. if (isarray)
  2981. {
  2982. buf = buflist[i + 1];
  2983. bufsz = bufszlist[i + 1];
  2984. }
  2985. else
  2986. {
  2987. buf += itemwidth;
  2988. bufsz -= itemwidth;
  2989. if (delimsz > bufsz)
  2990. delimsz = bufsz;
  2991. memcpy(buf, delim, delimsz);
  2992. buf += delimsz;
  2993. bufsz -= delimsz;
  2994. }
  2995. }
  2996. // Last entry has the unit
  2997. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2998. return buflist[0];
  2999. }
  3000. #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)
  3001. #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)
  3002. static
  3003. int percentf3(char * const buf, size_t sz, double p, const double t)
  3004. {
  3005. char *s = buf;
  3006. int rv = 0;
  3007. if (!p)
  3008. _SNP("none");
  3009. else
  3010. if (t <= p)
  3011. _SNP("100%%");
  3012. else
  3013. {
  3014. p /= t;
  3015. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  3016. _SNP(".%02.0f%%", p * 10000); // ".01%"
  3017. else
  3018. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  3019. _SNP("%.1f%%", p * 100); // "9.1%"
  3020. else
  3021. _SNP("%3.0f%%", p * 100); // " 99%"
  3022. }
  3023. return rv;
  3024. }
  3025. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  3026. static
  3027. void test_decimal_width()
  3028. {
  3029. // The pipe character at end of each line should perfectly line up
  3030. char printbuf[512];
  3031. char testbuf1[64];
  3032. char testbuf2[64];
  3033. char testbuf3[64];
  3034. char testbuf4[64];
  3035. double testn;
  3036. int width;
  3037. int saved;
  3038. // Hotspots around 0.1 and 0.01
  3039. saved = -1;
  3040. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  3041. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  3042. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  3043. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  3044. if (unlikely((saved != -1) && (width != saved))) {
  3045. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  3046. applog(LOG_ERR, "%s", printbuf);
  3047. }
  3048. saved = width;
  3049. }
  3050. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  3051. saved = -1;
  3052. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  3053. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3054. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3055. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3056. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  3057. width = utf8_strlen(printbuf);
  3058. if (unlikely((saved != -1) && (width != saved))) {
  3059. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  3060. applog(LOG_ERR, "%s", printbuf);
  3061. }
  3062. saved = width;
  3063. }
  3064. // Hotspot around unit transition boundary in pick_unit
  3065. saved = -1;
  3066. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  3067. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3068. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3069. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3070. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  3071. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  3072. width = utf8_strlen(printbuf);
  3073. if (unlikely((saved != -1) && (width != saved))) {
  3074. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  3075. applog(LOG_ERR, "%s", printbuf);
  3076. }
  3077. saved = width;
  3078. }
  3079. }
  3080. #ifdef HAVE_CURSES
  3081. static void adj_width(int var, int *length);
  3082. #endif
  3083. #ifdef HAVE_CURSES
  3084. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  3085. static
  3086. 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)
  3087. {
  3088. char rejpcbuf[6];
  3089. char bnbuf[6];
  3090. adj_width(accepted, &awidth);
  3091. adj_width(rejected, &rwidth);
  3092. adj_width(stale, &swidth);
  3093. adj_width(hwerrs, &hwwidth);
  3094. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3095. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3096. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3097. cHr, aHr, uHr,
  3098. awidth, accepted,
  3099. rwidth, rejected,
  3100. swidth, stale,
  3101. rejpcbuf,
  3102. hwwidth, hwerrs,
  3103. bnbuf
  3104. );
  3105. }
  3106. static
  3107. const char *pool_proto_str(const struct pool * const pool)
  3108. {
  3109. if (pool->idle)
  3110. return "Dead ";
  3111. if (pool->has_stratum)
  3112. return "Strtm";
  3113. if (pool->lp_url && pool->proto != pool->lp_proto)
  3114. return "Mixed";
  3115. switch (pool->proto)
  3116. {
  3117. case PLP_GETBLOCKTEMPLATE:
  3118. return " GBT ";
  3119. case PLP_GETWORK:
  3120. return "GWork";
  3121. default:
  3122. return "Alive";
  3123. }
  3124. }
  3125. #endif
  3126. static inline
  3127. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3128. {
  3129. if (!(use_unicode && have_unicode_degrees))
  3130. maybe_unicode = false;
  3131. if (temp && *temp > 0.)
  3132. if (maybe_unicode)
  3133. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3134. else
  3135. snprintf(buf, bufsz, "%4.1fC", *temp);
  3136. else
  3137. {
  3138. if (temp)
  3139. snprintf(buf, bufsz, " ");
  3140. if (maybe_unicode)
  3141. tailsprintf(buf, bufsz, " ");
  3142. }
  3143. tailsprintf(buf, bufsz, " | ");
  3144. }
  3145. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3146. {
  3147. #ifndef HAVE_CURSES
  3148. assert(for_curses == false);
  3149. #endif
  3150. struct device_drv *drv = cgpu->drv;
  3151. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3152. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3153. char rejpcbuf[6];
  3154. char bnbuf[6];
  3155. double dev_runtime;
  3156. if (!opt_show_procs)
  3157. cgpu = cgpu->device;
  3158. dev_runtime = cgpu_runtime(cgpu);
  3159. double rolling, mhashes;
  3160. int accepted, rejected, stale;
  3161. double waccepted;
  3162. double wnotaccepted;
  3163. int hwerrs;
  3164. double bad_diff1, good_diff1;
  3165. rolling = mhashes = waccepted = wnotaccepted = 0;
  3166. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3167. {
  3168. struct cgpu_info *slave = cgpu;
  3169. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3170. {
  3171. slave->utility = slave->accepted / dev_runtime * 60;
  3172. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3173. rolling += slave->rolling;
  3174. mhashes += slave->total_mhashes;
  3175. if (opt_weighed_stats)
  3176. {
  3177. accepted += slave->diff_accepted;
  3178. rejected += slave->diff_rejected;
  3179. stale += slave->diff_stale;
  3180. }
  3181. else
  3182. {
  3183. accepted += slave->accepted;
  3184. rejected += slave->rejected;
  3185. stale += slave->stale;
  3186. }
  3187. waccepted += slave->diff_accepted;
  3188. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3189. hwerrs += slave->hw_errors;
  3190. bad_diff1 += slave->bad_diff1;
  3191. good_diff1 += slave->diff1;
  3192. if (opt_show_procs)
  3193. break;
  3194. }
  3195. }
  3196. double wtotal = (waccepted + wnotaccepted);
  3197. multi_format_unit_array2(
  3198. ((char*[]){cHr, aHr, uHr}),
  3199. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3200. true, "h/s", hashrate_style,
  3201. 3,
  3202. 1e6*rolling,
  3203. 1e6*mhashes / dev_runtime,
  3204. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3205. // Processor representation
  3206. #ifdef HAVE_CURSES
  3207. if (for_curses)
  3208. {
  3209. if (opt_show_procs)
  3210. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3211. else
  3212. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3213. }
  3214. else
  3215. #endif
  3216. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3217. if (include_serial_in_statline && cgpu->dev_serial)
  3218. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3219. if (unlikely(cgpu->status == LIFE_INIT))
  3220. {
  3221. tailsprintf(buf, bufsz, "Initializing...");
  3222. return;
  3223. }
  3224. {
  3225. const size_t bufln = strlen(buf);
  3226. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3227. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3228. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3229. else
  3230. {
  3231. float temp = cgpu->temp;
  3232. if (!opt_show_procs)
  3233. {
  3234. // Find the highest temperature of all processors
  3235. struct cgpu_info *proc = cgpu;
  3236. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3237. if (proc->temp > temp)
  3238. temp = proc->temp;
  3239. }
  3240. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3241. }
  3242. }
  3243. #ifdef HAVE_CURSES
  3244. if (for_curses)
  3245. {
  3246. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3247. const char *cHrStats;
  3248. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3249. bool all_dead = true, all_off = true, all_rdrv = true;
  3250. struct cgpu_info *proc = cgpu;
  3251. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3252. {
  3253. switch (cHrStatsI) {
  3254. default:
  3255. if (proc->status == LIFE_WAIT)
  3256. cHrStatsI = 5;
  3257. case 5:
  3258. if (proc->deven == DEV_RECOVER_ERR)
  3259. cHrStatsI = 4;
  3260. case 4:
  3261. if (proc->deven == DEV_RECOVER)
  3262. cHrStatsI = 3;
  3263. case 3:
  3264. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3265. {
  3266. cHrStatsI = 1;
  3267. all_off = false;
  3268. }
  3269. else
  3270. {
  3271. if (likely(proc->deven == DEV_ENABLED))
  3272. all_off = false;
  3273. if (proc->deven != DEV_RECOVER_DRV)
  3274. all_rdrv = false;
  3275. }
  3276. case 1:
  3277. break;
  3278. }
  3279. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3280. all_dead = false;
  3281. if (opt_show_procs)
  3282. break;
  3283. }
  3284. if (unlikely(all_dead))
  3285. cHrStatsI = 0;
  3286. else
  3287. if (unlikely(all_off))
  3288. cHrStatsI = 2;
  3289. cHrStats = cHrStatsOpt[cHrStatsI];
  3290. if (cHrStatsI == 2 && all_rdrv)
  3291. cHrStats = " RST ";
  3292. format_statline(buf, bufsz,
  3293. cHrStats,
  3294. aHr, uHr,
  3295. accepted, rejected, stale,
  3296. wnotaccepted, waccepted,
  3297. hwerrs,
  3298. bad_diff1, bad_diff1 + good_diff1);
  3299. }
  3300. else
  3301. #endif
  3302. {
  3303. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3304. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3305. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3306. opt_log_interval,
  3307. cHr, aHr, uHr,
  3308. accepted,
  3309. rejected,
  3310. stale,
  3311. rejpcbuf,
  3312. hwerrs,
  3313. bnbuf
  3314. );
  3315. }
  3316. }
  3317. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3318. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3319. static void text_print_status(int thr_id)
  3320. {
  3321. struct cgpu_info *cgpu;
  3322. char logline[256];
  3323. cgpu = get_thr_cgpu(thr_id);
  3324. if (cgpu) {
  3325. get_statline(logline, sizeof(logline), cgpu);
  3326. printf("%s\n", logline);
  3327. }
  3328. }
  3329. #ifdef HAVE_CURSES
  3330. static int attr_bad = A_BOLD;
  3331. #ifdef WIN32
  3332. #define swprintf snwprintf
  3333. #endif
  3334. static
  3335. void bfg_waddstr(WINDOW *win, const char *s)
  3336. {
  3337. const char *p = s;
  3338. int32_t w;
  3339. int wlen;
  3340. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3341. while (true)
  3342. {
  3343. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3344. {
  3345. // Printable ASCII
  3346. ++p;
  3347. }
  3348. if (p != s)
  3349. waddnstr(win, s, p - s);
  3350. w = utf8_decode(p, &wlen);
  3351. s = p += wlen;
  3352. switch(w)
  3353. {
  3354. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3355. case '\0':
  3356. return;
  3357. case 0xb5: // micro symbol
  3358. w = unicode_micro;
  3359. goto default_addch;
  3360. case 0xf000: // "bad" off
  3361. wattroff(win, attr_bad);
  3362. break;
  3363. case 0xf001: // "bad" on
  3364. wattron(win, attr_bad);
  3365. break;
  3366. #ifdef USE_UNICODE
  3367. case '|':
  3368. wadd_wch(win, WACS_VLINE);
  3369. break;
  3370. #endif
  3371. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3372. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3373. if (!use_unicode)
  3374. {
  3375. waddch(win, '-');
  3376. break;
  3377. }
  3378. #ifdef USE_UNICODE
  3379. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3380. break;
  3381. #endif
  3382. case 0x2022:
  3383. if (w > WCHAR_MAX || !iswprint(w))
  3384. w = '*';
  3385. default:
  3386. default_addch:
  3387. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3388. {
  3389. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3390. if (iswprint(REPLACEMENT_CHAR))
  3391. w = REPLACEMENT_CHAR;
  3392. else
  3393. #endif
  3394. w = '?';
  3395. }
  3396. {
  3397. #ifdef USE_UNICODE
  3398. wchar_t wbuf[0x10];
  3399. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3400. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3401. waddnwstr(win, wbuf, wbuflen);
  3402. #else
  3403. wprintw(win, "%lc", (wint_t)w);
  3404. #endif
  3405. }
  3406. }
  3407. }
  3408. }
  3409. static inline
  3410. void bfg_hline(WINDOW *win, int y)
  3411. {
  3412. int maxx, __maybe_unused maxy;
  3413. getmaxyx(win, maxy, maxx);
  3414. #ifdef USE_UNICODE
  3415. if (use_unicode)
  3416. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3417. else
  3418. #endif
  3419. mvwhline(win, y, 0, '-', maxx);
  3420. }
  3421. // Spaces until end of line, using current attributes (ie, not completely clear)
  3422. static
  3423. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3424. {
  3425. int x, maxx;
  3426. int __maybe_unused y;
  3427. getmaxyx(win, y, maxx);
  3428. getyx(win, y, x);
  3429. const int space_count = (maxx - x) - offset;
  3430. // Check for negative - terminal too narrow
  3431. if (space_count <= 0)
  3432. return;
  3433. char buf[space_count];
  3434. memset(buf, ' ', space_count);
  3435. waddnstr(win, buf, space_count);
  3436. }
  3437. static int menu_attr = A_REVERSE;
  3438. #define CURBUFSIZ 256
  3439. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3440. char tmp42[CURBUFSIZ]; \
  3441. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3442. wmove(win, y, x); \
  3443. bfg_waddstr(win, tmp42); \
  3444. } while (0)
  3445. #define cg_wprintw(win, fmt, ...) do { \
  3446. char tmp42[CURBUFSIZ]; \
  3447. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3448. bfg_waddstr(win, tmp42); \
  3449. } while (0)
  3450. static bool pool_unworkable(const struct pool *);
  3451. /* Must be called with curses mutex lock held and curses_active */
  3452. static void curses_print_status(const int ts)
  3453. {
  3454. struct pool *pool = currentpool;
  3455. struct timeval now, tv;
  3456. float efficiency;
  3457. double income;
  3458. int logdiv;
  3459. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3460. wattron(statuswin, attr_title);
  3461. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3462. timer_set_now(&now);
  3463. {
  3464. unsigned int days, hours;
  3465. div_t d;
  3466. timersub(&now, &miner_started, &tv);
  3467. d = div(tv.tv_sec, 86400);
  3468. days = d.quot;
  3469. d = div(d.rem, 3600);
  3470. hours = d.quot;
  3471. d = div(d.rem, 60);
  3472. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3473. , days
  3474. , (days == 1) ? ' ' : 's'
  3475. , hours
  3476. , d.quot
  3477. , d.rem
  3478. );
  3479. }
  3480. bfg_wspctoeol(statuswin, 0);
  3481. wattroff(statuswin, attr_title);
  3482. wattron(statuswin, menu_attr);
  3483. wmove(statuswin, 1, 0);
  3484. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3485. bfg_wspctoeol(statuswin, 14);
  3486. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3487. wattroff(statuswin, menu_attr);
  3488. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3489. char poolinfo[20], poolinfo2[20];
  3490. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3491. double lowdiff = DBL_MAX, highdiff = -1;
  3492. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3493. time_t oldest_work_restart = time(NULL) + 1;
  3494. struct pool *oldest_work_restart_pool = pools[0];
  3495. for (int i = 0; i < total_pools; ++i)
  3496. {
  3497. if (pool_unworkable(pools[i]))
  3498. continue;
  3499. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3500. pool = pools[i];
  3501. ++workable_pools;
  3502. if (poolinfooff < sizeof(poolinfo))
  3503. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3504. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3505. if (pool_stats->last_diff < lowdiff)
  3506. {
  3507. lowdiff = pool_stats->last_diff;
  3508. lowdiff_pool = pool;
  3509. }
  3510. if (pool_stats->last_diff > highdiff)
  3511. {
  3512. highdiff = pool_stats->last_diff;
  3513. highdiff_pool = pool;
  3514. }
  3515. if (oldest_work_restart >= pool->work_restart_time)
  3516. {
  3517. oldest_work_restart = pool->work_restart_time;
  3518. oldest_work_restart_pool = pool;
  3519. }
  3520. }
  3521. if (workable_pools == 1)
  3522. goto one_workable_pool;
  3523. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3524. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3525. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3526. else
  3527. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3528. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3529. poolinfo2,
  3530. lowdiff_pool->diff,
  3531. (lowdiff == highdiff) ? "" : "-",
  3532. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3533. have_longpoll ? '+' : '-',
  3534. oldest_work_restart_pool->work_restart_timestamp);
  3535. }
  3536. else
  3537. {
  3538. one_workable_pool: ;
  3539. char pooladdr[19];
  3540. {
  3541. const char *rawaddr = pool->sockaddr_url;
  3542. BFGINIT(rawaddr, pool->rpc_url);
  3543. size_t pooladdrlen = strlen(rawaddr);
  3544. if (pooladdrlen > 20)
  3545. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3546. else
  3547. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3548. }
  3549. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3550. pool->pool_no, pooladdr, pool->diff,
  3551. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3552. pool->work_restart_timestamp,
  3553. pool->rpc_user);
  3554. }
  3555. wclrtoeol(statuswin);
  3556. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3557. current_hash, block_diff, net_hashrate, blocktime);
  3558. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3559. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3560. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3561. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3562. ts,
  3563. total_go + total_ro,
  3564. new_blocks,
  3565. total_submitting,
  3566. multi_format_unit2(bwstr, sizeof(bwstr),
  3567. false, "B/s", H2B_SHORT, "/", 2,
  3568. (float)(total_bytes_rcvd / total_secs),
  3569. (float)(total_bytes_sent / total_secs)),
  3570. efficiency,
  3571. incomestr,
  3572. best_share);
  3573. wclrtoeol(statuswin);
  3574. mvwaddstr(statuswin, 5, 0, " ");
  3575. bfg_waddstr(statuswin, statusline);
  3576. wclrtoeol(statuswin);
  3577. logdiv = statusy - 1;
  3578. bfg_hline(statuswin, 6);
  3579. bfg_hline(statuswin, logdiv);
  3580. #ifdef USE_UNICODE
  3581. if (use_unicode)
  3582. {
  3583. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3584. if (opt_show_procs && !opt_compact)
  3585. ++offset; // proc letter
  3586. if (have_unicode_degrees)
  3587. ++offset; // degrees symbol
  3588. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3589. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3590. offset += 24; // hashrates etc
  3591. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3592. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3593. }
  3594. #endif
  3595. }
  3596. static void adj_width(int var, int *length)
  3597. {
  3598. if ((int)(log10(var) + 1) > *length)
  3599. (*length)++;
  3600. }
  3601. static int dev_width;
  3602. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3603. {
  3604. char logline[256];
  3605. int ypos;
  3606. if (opt_compact)
  3607. return;
  3608. /* Check this isn't out of the window size */
  3609. if (opt_show_procs)
  3610. ypos = cgpu->cgminer_id;
  3611. else
  3612. {
  3613. if (cgpu->proc_id)
  3614. return;
  3615. ypos = cgpu->device_line_id;
  3616. }
  3617. ypos += devsummaryYOffset;
  3618. if (ypos < 0)
  3619. return;
  3620. ypos += devcursor - 1;
  3621. if (ypos >= statusy - 1)
  3622. return;
  3623. if (wmove(statuswin, ypos, 0) == ERR)
  3624. return;
  3625. get_statline2(logline, sizeof(logline), cgpu, true);
  3626. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3627. wattron(statuswin, A_REVERSE);
  3628. bfg_waddstr(statuswin, logline);
  3629. wattroff(statuswin, A_REVERSE);
  3630. wclrtoeol(statuswin);
  3631. }
  3632. static
  3633. void _refresh_devstatus(const bool already_have_lock) {
  3634. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3635. int i;
  3636. if (unlikely(!total_devices))
  3637. {
  3638. const int ypos = devcursor - 1;
  3639. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3640. {
  3641. wattron(statuswin, attr_bad);
  3642. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3643. wclrtoeol(statuswin);
  3644. wattroff(statuswin, attr_bad);
  3645. }
  3646. }
  3647. for (i = 0; i < total_devices; i++)
  3648. curses_print_devstatus(get_devices(i));
  3649. touchwin(statuswin);
  3650. wrefresh(statuswin);
  3651. if (!already_have_lock)
  3652. unlock_curses();
  3653. }
  3654. }
  3655. #define refresh_devstatus() _refresh_devstatus(false)
  3656. #endif
  3657. static void print_status(int thr_id)
  3658. {
  3659. if (!curses_active)
  3660. text_print_status(thr_id);
  3661. }
  3662. #ifdef HAVE_CURSES
  3663. static
  3664. bool set_statusy(int maxy)
  3665. {
  3666. if (loginput_size)
  3667. {
  3668. maxy -= loginput_size;
  3669. if (maxy < 0)
  3670. maxy = 0;
  3671. }
  3672. if (logstart < maxy)
  3673. maxy = logstart;
  3674. if (statusy == maxy)
  3675. return false;
  3676. statusy = maxy;
  3677. logcursor = statusy;
  3678. return true;
  3679. }
  3680. /* Check for window resize. Called with curses mutex locked */
  3681. static inline void change_logwinsize(void)
  3682. {
  3683. int x, y, logx, logy;
  3684. getmaxyx(mainwin, y, x);
  3685. if (x < 80 || y < 25)
  3686. return;
  3687. if (y > statusy + 2 && statusy < logstart) {
  3688. set_statusy(y - 2);
  3689. mvwin(logwin, logcursor, 0);
  3690. bfg_wresize(statuswin, statusy, x);
  3691. }
  3692. y -= logcursor;
  3693. getmaxyx(logwin, logy, logx);
  3694. /* Detect screen size change */
  3695. if (x != logx || y != logy)
  3696. bfg_wresize(logwin, y, x);
  3697. }
  3698. static void check_winsizes(void)
  3699. {
  3700. if (!use_curses)
  3701. return;
  3702. if (curses_active_locked()) {
  3703. int y, x;
  3704. x = getmaxx(statuswin);
  3705. if (set_statusy(LINES - 2))
  3706. {
  3707. erase();
  3708. bfg_wresize(statuswin, statusy, x);
  3709. getmaxyx(mainwin, y, x);
  3710. y -= logcursor;
  3711. bfg_wresize(logwin, y, x);
  3712. mvwin(logwin, logcursor, 0);
  3713. }
  3714. unlock_curses();
  3715. }
  3716. }
  3717. static int device_line_id_count;
  3718. static void switch_logsize(void)
  3719. {
  3720. if (curses_active_locked()) {
  3721. if (opt_compact) {
  3722. logstart = devcursor - 1;
  3723. logcursor = logstart + 1;
  3724. } else {
  3725. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3726. logstart = devcursor + total_lines;
  3727. logcursor = logstart;
  3728. }
  3729. unlock_curses();
  3730. }
  3731. check_winsizes();
  3732. }
  3733. /* For mandatory printing when mutex is already locked */
  3734. void _wlog(const char *str)
  3735. {
  3736. static bool newline;
  3737. size_t end = strlen(str) - 1;
  3738. if (newline)
  3739. bfg_waddstr(logwin, "\n");
  3740. if (str[end] == '\n')
  3741. {
  3742. char *s;
  3743. newline = true;
  3744. s = alloca(end + 1);
  3745. memcpy(s, str, end);
  3746. s[end] = '\0';
  3747. str = s;
  3748. }
  3749. else
  3750. newline = false;
  3751. bfg_waddstr(logwin, str);
  3752. }
  3753. /* Mandatory printing */
  3754. void _wlogprint(const char *str)
  3755. {
  3756. if (curses_active_locked()) {
  3757. _wlog(str);
  3758. unlock_curses();
  3759. }
  3760. }
  3761. #endif
  3762. #ifdef HAVE_CURSES
  3763. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3764. {
  3765. bool high_prio;
  3766. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3767. if (curses_active)
  3768. {
  3769. if (!loginput_size || high_prio) {
  3770. wlog(" %s %s\n", datetime, str);
  3771. if (high_prio) {
  3772. touchwin(logwin);
  3773. wrefresh(logwin);
  3774. }
  3775. }
  3776. return true;
  3777. }
  3778. return false;
  3779. }
  3780. void clear_logwin(void)
  3781. {
  3782. if (curses_active_locked()) {
  3783. wclear(logwin);
  3784. unlock_curses();
  3785. }
  3786. }
  3787. void logwin_update(void)
  3788. {
  3789. if (curses_active_locked()) {
  3790. touchwin(logwin);
  3791. wrefresh(logwin);
  3792. unlock_curses();
  3793. }
  3794. }
  3795. #endif
  3796. static void enable_pool(struct pool *pool)
  3797. {
  3798. if (pool->enabled != POOL_ENABLED) {
  3799. enabled_pools++;
  3800. pool->enabled = POOL_ENABLED;
  3801. }
  3802. }
  3803. #ifdef HAVE_CURSES
  3804. static void disable_pool(struct pool *pool)
  3805. {
  3806. if (pool->enabled == POOL_ENABLED)
  3807. enabled_pools--;
  3808. pool->enabled = POOL_DISABLED;
  3809. }
  3810. #endif
  3811. static void reject_pool(struct pool *pool)
  3812. {
  3813. if (pool->enabled == POOL_ENABLED)
  3814. enabled_pools--;
  3815. pool->enabled = POOL_REJECTING;
  3816. }
  3817. static double share_diff(const struct work *);
  3818. static
  3819. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3820. struct cgpu_info *cgpu;
  3821. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3822. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3823. const double tgtdiff = work->work_difficulty;
  3824. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3825. char where[20];
  3826. cgpu = get_thr_cgpu(work->thr_id);
  3827. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3828. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3829. if (total_pools > 1)
  3830. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3831. else
  3832. where[0] = '\0';
  3833. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3834. disp,
  3835. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3836. cgpu->proc_repr,
  3837. where,
  3838. shrdiffdisp, tgtdiffdisp,
  3839. reason,
  3840. resubmit ? "(resubmit)" : "",
  3841. worktime
  3842. );
  3843. }
  3844. static bool test_work_current(struct work *);
  3845. static void _submit_work_async(struct work *);
  3846. static
  3847. void maybe_local_submit(const struct work *work)
  3848. {
  3849. #if BLKMAKER_VERSION > 3
  3850. if (unlikely(work->block && work->tr))
  3851. {
  3852. // This is a block with a full template (GBT)
  3853. // Regardless of the result, submit to local bitcoind(s) as well
  3854. struct work *work_cp;
  3855. char *p;
  3856. for (int i = 0; i < total_pools; ++i)
  3857. {
  3858. p = strchr(pools[i]->rpc_url, '#');
  3859. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3860. continue;
  3861. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3862. work_cp = copy_work(work);
  3863. work_cp->pool = pools[i];
  3864. work_cp->do_foreign_submit = true;
  3865. _submit_work_async(work_cp);
  3866. }
  3867. }
  3868. #endif
  3869. }
  3870. /* Theoretically threads could race when modifying accepted and
  3871. * rejected values but the chance of two submits completing at the
  3872. * same time is zero so there is no point adding extra locking */
  3873. static void
  3874. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3875. /*char *hashshow,*/ bool resubmit, char *worktime)
  3876. {
  3877. struct pool *pool = work->pool;
  3878. struct cgpu_info *cgpu;
  3879. cgpu = get_thr_cgpu(work->thr_id);
  3880. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3881. mutex_lock(&stats_lock);
  3882. cgpu->accepted++;
  3883. total_accepted++;
  3884. pool->accepted++;
  3885. cgpu->diff_accepted += work->work_difficulty;
  3886. total_diff_accepted += work->work_difficulty;
  3887. pool->diff_accepted += work->work_difficulty;
  3888. mutex_unlock(&stats_lock);
  3889. pool->seq_rejects = 0;
  3890. cgpu->last_share_pool = pool->pool_no;
  3891. cgpu->last_share_pool_time = time(NULL);
  3892. cgpu->last_share_diff = work->work_difficulty;
  3893. pool->last_share_time = cgpu->last_share_pool_time;
  3894. pool->last_share_diff = work->work_difficulty;
  3895. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3896. if (!QUIET) {
  3897. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3898. }
  3899. sharelog("accept", work);
  3900. if (opt_shares && total_diff_accepted >= opt_shares) {
  3901. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3902. kill_work();
  3903. return;
  3904. }
  3905. /* Detect if a pool that has been temporarily disabled for
  3906. * continually rejecting shares has started accepting shares.
  3907. * This will only happen with the work returned from a
  3908. * longpoll */
  3909. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3910. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3911. enable_pool(pool);
  3912. switch_pools(NULL);
  3913. }
  3914. if (unlikely(work->block)) {
  3915. // Force moving on to this new block :)
  3916. struct work fakework;
  3917. memset(&fakework, 0, sizeof(fakework));
  3918. fakework.pool = work->pool;
  3919. // Copy block version, bits, and time from share
  3920. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3921. memcpy(&fakework.data[68], &work->data[68], 8);
  3922. // Set prevblock to winning hash (swap32'd)
  3923. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3924. test_work_current(&fakework);
  3925. }
  3926. } else {
  3927. mutex_lock(&stats_lock);
  3928. cgpu->rejected++;
  3929. total_rejected++;
  3930. pool->rejected++;
  3931. cgpu->diff_rejected += work->work_difficulty;
  3932. total_diff_rejected += work->work_difficulty;
  3933. pool->diff_rejected += work->work_difficulty;
  3934. pool->seq_rejects++;
  3935. mutex_unlock(&stats_lock);
  3936. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3937. if (!QUIET) {
  3938. char where[20];
  3939. char disposition[36] = "reject";
  3940. char reason[32];
  3941. strcpy(reason, "");
  3942. if (total_pools > 1)
  3943. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3944. else
  3945. strcpy(where, "");
  3946. if (!json_is_string(res))
  3947. res = json_object_get(val, "reject-reason");
  3948. if (res) {
  3949. const char *reasontmp = json_string_value(res);
  3950. size_t reasonLen = strlen(reasontmp);
  3951. if (reasonLen > 28)
  3952. reasonLen = 28;
  3953. reason[0] = ' '; reason[1] = '(';
  3954. memcpy(2 + reason, reasontmp, reasonLen);
  3955. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3956. memcpy(disposition + 7, reasontmp, reasonLen);
  3957. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3958. } else if (work->stratum && err && json_is_array(err)) {
  3959. json_t *reason_val = json_array_get(err, 1);
  3960. char *reason_str;
  3961. if (reason_val && json_is_string(reason_val)) {
  3962. reason_str = (char *)json_string_value(reason_val);
  3963. snprintf(reason, 31, " (%s)", reason_str);
  3964. }
  3965. }
  3966. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3967. sharelog(disposition, work);
  3968. }
  3969. /* Once we have more than a nominal amount of sequential rejects,
  3970. * at least 10 and more than 3 mins at the current utility,
  3971. * disable the pool because some pool error is likely to have
  3972. * ensued. Do not do this if we know the share just happened to
  3973. * be stale due to networking delays.
  3974. */
  3975. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3976. double utility = total_accepted / total_secs * 60;
  3977. if (pool->seq_rejects > utility * 3) {
  3978. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3979. pool->pool_no, pool->seq_rejects);
  3980. reject_pool(pool);
  3981. if (pool == current_pool())
  3982. switch_pools(NULL);
  3983. pool->seq_rejects = 0;
  3984. }
  3985. }
  3986. }
  3987. maybe_local_submit(work);
  3988. }
  3989. static char *submit_upstream_work_request(struct work *work)
  3990. {
  3991. char *hexstr = NULL;
  3992. char *s, *sd;
  3993. struct pool *pool = work->pool;
  3994. if (work->tr)
  3995. {
  3996. blktemplate_t * const tmpl = work->tr->tmpl;
  3997. json_t *req;
  3998. unsigned char data[80];
  3999. swap32yes(data, work->data, 80 / 4);
  4000. #if BLKMAKER_VERSION > 3
  4001. if (work->do_foreign_submit)
  4002. req = blkmk_submit_foreign_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4003. else
  4004. #endif
  4005. req = blkmk_submit_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4006. s = json_dumps(req, 0);
  4007. json_decref(req);
  4008. sd = malloc(161);
  4009. bin2hex(sd, data, 80);
  4010. } else {
  4011. /* build hex string */
  4012. hexstr = malloc((sizeof(work->data) * 2) + 1);
  4013. bin2hex(hexstr, work->data, sizeof(work->data));
  4014. /* build JSON-RPC request */
  4015. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  4016. s = realloc_strcat(s, hexstr);
  4017. s = realloc_strcat(s, "\" ], \"id\":1}");
  4018. free(hexstr);
  4019. sd = s;
  4020. }
  4021. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  4022. if (work->tr)
  4023. free(sd);
  4024. else
  4025. s = realloc_strcat(s, "\n");
  4026. return s;
  4027. }
  4028. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  4029. json_t *res, *err;
  4030. bool rc = false;
  4031. int thr_id = work->thr_id;
  4032. struct pool *pool = work->pool;
  4033. struct timeval tv_submit_reply;
  4034. time_t ts_submit_reply;
  4035. char worktime[200] = "";
  4036. cgtime(&tv_submit_reply);
  4037. ts_submit_reply = time(NULL);
  4038. if (unlikely(!val)) {
  4039. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  4040. if (!pool_tset(pool, &pool->submit_fail)) {
  4041. total_ro++;
  4042. pool->remotefail_occasions++;
  4043. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  4044. }
  4045. goto out;
  4046. } else if (pool_tclear(pool, &pool->submit_fail))
  4047. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4048. res = json_object_get(val, "result");
  4049. err = json_object_get(val, "error");
  4050. if (!QUIET) {
  4051. if (opt_worktime) {
  4052. char workclone[20];
  4053. struct tm _tm;
  4054. struct tm *tm, tm_getwork, tm_submit_reply;
  4055. tm = &_tm;
  4056. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  4057. (struct timeval *)&(work->tv_getwork));
  4058. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  4059. (struct timeval *)&(work->tv_getwork_reply));
  4060. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  4061. (struct timeval *)&(work->tv_work_start));
  4062. double work_to_submit = tdiff(ptv_submit,
  4063. (struct timeval *)&(work->tv_work_found));
  4064. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  4065. int diffplaces = 3;
  4066. localtime_r(&work->ts_getwork, tm);
  4067. memcpy(&tm_getwork, tm, sizeof(struct tm));
  4068. localtime_r(&ts_submit_reply, tm);
  4069. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  4070. if (work->clone) {
  4071. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  4072. tdiff((struct timeval *)&(work->tv_cloned),
  4073. (struct timeval *)&(work->tv_getwork_reply)));
  4074. }
  4075. else
  4076. strcpy(workclone, "O");
  4077. if (work->work_difficulty < 1)
  4078. diffplaces = 6;
  4079. snprintf(worktime, sizeof(worktime),
  4080. " <-%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",
  4081. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  4082. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  4083. work->getwork_mode, diffplaces, work->work_difficulty,
  4084. tm_getwork.tm_hour, tm_getwork.tm_min,
  4085. tm_getwork.tm_sec, getwork_time, workclone,
  4086. getwork_to_work, work_time, work_to_submit, submit_time,
  4087. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  4088. tm_submit_reply.tm_sec);
  4089. }
  4090. }
  4091. share_result(val, res, err, work, resubmit, worktime);
  4092. if (!opt_realquiet)
  4093. print_status(thr_id);
  4094. if (!want_per_device_stats) {
  4095. char logline[256];
  4096. struct cgpu_info *cgpu;
  4097. cgpu = get_thr_cgpu(thr_id);
  4098. get_statline(logline, sizeof(logline), cgpu);
  4099. applog(LOG_INFO, "%s", logline);
  4100. }
  4101. json_decref(val);
  4102. rc = true;
  4103. out:
  4104. return rc;
  4105. }
  4106. /* Specifies whether we can use this pool for work or not. */
  4107. static bool pool_unworkable(const struct pool * const pool)
  4108. {
  4109. if (pool->idle)
  4110. return true;
  4111. if (pool->enabled != POOL_ENABLED)
  4112. return true;
  4113. if (pool->has_stratum && !pool->stratum_active)
  4114. return true;
  4115. return false;
  4116. }
  4117. static
  4118. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4119. {
  4120. if (pool->enabled != POOL_ENABLED)
  4121. return false;
  4122. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4123. return true;
  4124. if (!cp)
  4125. cp = current_pool();
  4126. return (pool == cp);
  4127. }
  4128. static
  4129. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4130. {
  4131. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4132. }
  4133. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4134. * rolling average per 10 minutes and if pools start getting more, it biases
  4135. * away from them to distribute work evenly. The share count is reset to the
  4136. * rolling average every 10 minutes to not send all work to one pool after it
  4137. * has been disabled/out for an extended period. */
  4138. static struct pool *select_balanced(struct pool *cp)
  4139. {
  4140. int i, lowest = cp->shares;
  4141. struct pool *ret = cp;
  4142. for (i = 0; i < total_pools; i++) {
  4143. struct pool *pool = pools[i];
  4144. if (pool_unworkable(pool))
  4145. continue;
  4146. if (pool->shares < lowest) {
  4147. lowest = pool->shares;
  4148. ret = pool;
  4149. }
  4150. }
  4151. ret->shares++;
  4152. return ret;
  4153. }
  4154. static bool pool_active(struct pool *, bool pinging);
  4155. static void pool_died(struct pool *);
  4156. static struct pool *priority_pool(int choice);
  4157. static bool pool_unusable(struct pool *pool);
  4158. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4159. * it has any quota left. */
  4160. static inline struct pool *select_pool(bool lagging)
  4161. {
  4162. static int rotating_pool = 0;
  4163. struct pool *pool, *cp;
  4164. bool avail = false;
  4165. int tested, i;
  4166. cp = current_pool();
  4167. retry:
  4168. if (pool_strategy == POOL_BALANCE) {
  4169. pool = select_balanced(cp);
  4170. goto out;
  4171. }
  4172. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4173. pool = cp;
  4174. goto out;
  4175. } else
  4176. pool = NULL;
  4177. for (i = 0; i < total_pools; i++) {
  4178. struct pool *tp = pools[i];
  4179. if (tp->quota_used < tp->quota_gcd) {
  4180. avail = true;
  4181. break;
  4182. }
  4183. }
  4184. /* There are no pools with quota, so reset them. */
  4185. if (!avail) {
  4186. for (i = 0; i < total_pools; i++)
  4187. pools[i]->quota_used = 0;
  4188. if (++rotating_pool >= total_pools)
  4189. rotating_pool = 0;
  4190. }
  4191. /* Try to find the first pool in the rotation that is usable */
  4192. tested = 0;
  4193. while (!pool && tested++ < total_pools) {
  4194. pool = pools[rotating_pool];
  4195. if (pool->quota_used++ < pool->quota_gcd) {
  4196. if (!pool_unworkable(pool))
  4197. break;
  4198. /* Failover-only flag for load-balance means distribute
  4199. * unused quota to priority pool 0. */
  4200. if (opt_fail_only)
  4201. priority_pool(0)->quota_used--;
  4202. }
  4203. pool = NULL;
  4204. if (++rotating_pool >= total_pools)
  4205. rotating_pool = 0;
  4206. }
  4207. /* If there are no alive pools with quota, choose according to
  4208. * priority. */
  4209. if (!pool) {
  4210. for (i = 0; i < total_pools; i++) {
  4211. struct pool *tp = priority_pool(i);
  4212. if (!pool_unusable(tp)) {
  4213. pool = tp;
  4214. break;
  4215. }
  4216. }
  4217. }
  4218. /* If still nothing is usable, use the current pool */
  4219. if (!pool)
  4220. pool = cp;
  4221. out:
  4222. if (!pool_actively_in_use(pool, cp))
  4223. {
  4224. if (!pool_active(pool, false))
  4225. {
  4226. pool_died(pool);
  4227. goto retry;
  4228. }
  4229. pool_tclear(pool, &pool->idle);
  4230. }
  4231. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4232. return pool;
  4233. }
  4234. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4235. static const uint64_t diffone = 0xFFFF000000000000ull;
  4236. static double target_diff(const unsigned char *target)
  4237. {
  4238. double targ = 0;
  4239. signed int i;
  4240. for (i = 31; i >= 0; --i)
  4241. targ = (targ * 0x100) + target[i];
  4242. return DIFFEXACTONE / (targ ?: 1);
  4243. }
  4244. /*
  4245. * Calculate the work share difficulty
  4246. */
  4247. static void calc_diff(struct work *work, int known)
  4248. {
  4249. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4250. double difficulty;
  4251. if (!known) {
  4252. work->work_difficulty = target_diff(work->target);
  4253. } else
  4254. work->work_difficulty = known;
  4255. difficulty = work->work_difficulty;
  4256. pool_stats->last_diff = difficulty;
  4257. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4258. if (difficulty == pool_stats->min_diff)
  4259. pool_stats->min_diff_count++;
  4260. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4261. pool_stats->min_diff = difficulty;
  4262. pool_stats->min_diff_count = 1;
  4263. }
  4264. if (difficulty == pool_stats->max_diff)
  4265. pool_stats->max_diff_count++;
  4266. else if (difficulty > pool_stats->max_diff) {
  4267. pool_stats->max_diff = difficulty;
  4268. pool_stats->max_diff_count = 1;
  4269. }
  4270. }
  4271. static
  4272. void setup_benchmark_pool()
  4273. {
  4274. struct pool *pool;
  4275. want_longpoll = false;
  4276. // Temporarily disable opt_benchmark to avoid auto-removal
  4277. opt_benchmark = false;
  4278. pool = add_pool();
  4279. opt_benchmark = true;
  4280. pool->rpc_url = malloc(255);
  4281. strcpy(pool->rpc_url, "Benchmark");
  4282. pool->rpc_user = pool->rpc_url;
  4283. pool->rpc_pass = pool->rpc_url;
  4284. enable_pool(pool);
  4285. pool->idle = false;
  4286. successful_connect = true;
  4287. {
  4288. struct stratum_work * const swork = &pool->swork;
  4289. const int branchcount = 15; // 1 MB block
  4290. const size_t branchdatasz = branchcount * 0x20;
  4291. const size_t coinbase_sz = 6 * 1024;
  4292. bytes_resize(&swork->coinbase, coinbase_sz);
  4293. memset(bytes_buf(&swork->coinbase), '\xff', coinbase_sz);
  4294. swork->nonce2_offset = 0;
  4295. bytes_resize(&swork->merkle_bin, branchdatasz);
  4296. memset(bytes_buf(&swork->merkle_bin), '\xff', branchdatasz);
  4297. swork->merkles = branchcount;
  4298. memset(swork->header1, '\xff', 36);
  4299. swork->ntime = 0x7fffffff;
  4300. timer_unset(&swork->tv_received);
  4301. memset(swork->diffbits, '\0', 4);
  4302. set_target_to_pdiff(swork->target, 1.0);
  4303. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  4304. pool->nonce2 = 0;
  4305. }
  4306. }
  4307. void get_benchmark_work(struct work *work)
  4308. {
  4309. static uint32_t blkhdr[20];
  4310. for (int i = 18; i >= 0; --i)
  4311. if (++blkhdr[i])
  4312. break;
  4313. memcpy(&work->data[ 0], blkhdr, 80);
  4314. memcpy(&work->data[80], workpadding_bin, 48);
  4315. calc_midstate(work);
  4316. set_target_to_pdiff(work->target, 1.0);
  4317. work->mandatory = true;
  4318. work->pool = pools[0];
  4319. cgtime(&work->tv_getwork);
  4320. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4321. copy_time(&work->tv_staged, &work->tv_getwork);
  4322. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4323. calc_diff(work, 0);
  4324. work_set_simple_ntime_roll_limit(work, 60);
  4325. }
  4326. static void wake_gws(void);
  4327. static void update_last_work(struct work *work)
  4328. {
  4329. if (!work->tr)
  4330. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4331. return;
  4332. struct pool *pool = work->pool;
  4333. mutex_lock(&pool->last_work_lock);
  4334. if (pool->last_work_copy)
  4335. free_work(pool->last_work_copy);
  4336. pool->last_work_copy = copy_work(work);
  4337. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4338. mutex_unlock(&pool->last_work_lock);
  4339. }
  4340. static
  4341. void gbt_req_target(json_t *req)
  4342. {
  4343. json_t *j;
  4344. json_t *n;
  4345. if (!request_target_str)
  4346. return;
  4347. j = json_object_get(req, "params");
  4348. if (!j)
  4349. {
  4350. n = json_array();
  4351. if (!n)
  4352. return;
  4353. if (json_object_set_new(req, "params", n))
  4354. goto erradd;
  4355. j = n;
  4356. }
  4357. n = json_array_get(j, 0);
  4358. if (!n)
  4359. {
  4360. n = json_object();
  4361. if (!n)
  4362. return;
  4363. if (json_array_append_new(j, n))
  4364. goto erradd;
  4365. }
  4366. j = n;
  4367. n = json_string(request_target_str);
  4368. if (!n)
  4369. return;
  4370. if (json_object_set_new(j, "target", n))
  4371. goto erradd;
  4372. return;
  4373. erradd:
  4374. json_decref(n);
  4375. }
  4376. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4377. {
  4378. char *rpc_req;
  4379. clean_work(work);
  4380. switch (proto) {
  4381. case PLP_GETWORK:
  4382. work->getwork_mode = GETWORK_MODE_POOL;
  4383. return strdup(getwork_req);
  4384. case PLP_GETBLOCKTEMPLATE:
  4385. work->getwork_mode = GETWORK_MODE_GBT;
  4386. blktemplate_t * const tmpl = blktmpl_create();
  4387. if (!tmpl)
  4388. goto gbtfail2;
  4389. work->tr = tmpl_makeref(tmpl);
  4390. gbt_capabilities_t caps = blktmpl_addcaps(tmpl);
  4391. if (!caps)
  4392. goto gbtfail;
  4393. caps |= GBT_LONGPOLL;
  4394. #if BLKMAKER_VERSION > 1
  4395. if (opt_coinbase_script.sz)
  4396. caps |= GBT_CBVALUE;
  4397. #endif
  4398. json_t *req = blktmpl_request_jansson(caps, lpid);
  4399. if (!req)
  4400. goto gbtfail;
  4401. if (probe)
  4402. gbt_req_target(req);
  4403. rpc_req = json_dumps(req, 0);
  4404. if (!rpc_req)
  4405. goto gbtfail;
  4406. json_decref(req);
  4407. return rpc_req;
  4408. default:
  4409. return NULL;
  4410. }
  4411. return NULL;
  4412. gbtfail:
  4413. tmpl_decref(work->tr);
  4414. work->tr = NULL;
  4415. gbtfail2:
  4416. return NULL;
  4417. }
  4418. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4419. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4420. static const char *pool_protocol_name(enum pool_protocol proto)
  4421. {
  4422. switch (proto) {
  4423. case PLP_GETBLOCKTEMPLATE:
  4424. return "getblocktemplate";
  4425. case PLP_GETWORK:
  4426. return "getwork";
  4427. default:
  4428. return "UNKNOWN";
  4429. }
  4430. }
  4431. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4432. {
  4433. switch (proto) {
  4434. case PLP_GETBLOCKTEMPLATE:
  4435. if (want_getwork)
  4436. return PLP_GETWORK;
  4437. default:
  4438. return PLP_NONE;
  4439. }
  4440. }
  4441. static bool get_upstream_work(struct work *work, CURL *curl)
  4442. {
  4443. struct pool *pool = work->pool;
  4444. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4445. struct timeval tv_elapsed;
  4446. json_t *val = NULL;
  4447. bool rc = false;
  4448. char *url;
  4449. enum pool_protocol proto;
  4450. char *rpc_req;
  4451. if (pool->proto == PLP_NONE)
  4452. pool->proto = PLP_GETBLOCKTEMPLATE;
  4453. tryagain:
  4454. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4455. work->pool = pool;
  4456. if (!rpc_req)
  4457. return false;
  4458. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4459. url = pool->rpc_url;
  4460. cgtime(&work->tv_getwork);
  4461. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4462. false, &work->rolltime, pool, false);
  4463. pool_stats->getwork_attempts++;
  4464. free(rpc_req);
  4465. if (likely(val)) {
  4466. rc = work_decode(pool, work, val);
  4467. if (unlikely(!rc))
  4468. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4469. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4470. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4471. pool->proto = proto;
  4472. goto tryagain;
  4473. } else
  4474. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4475. cgtime(&work->tv_getwork_reply);
  4476. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4477. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4478. pool_stats->getwork_wait_rolling /= 1.63;
  4479. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4480. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4481. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4482. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4483. }
  4484. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4485. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4486. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4487. }
  4488. pool_stats->getwork_calls++;
  4489. work->pool = pool;
  4490. work->longpoll = false;
  4491. calc_diff(work, 0);
  4492. total_getworks++;
  4493. pool->getwork_requested++;
  4494. if (rc)
  4495. update_last_work(work);
  4496. if (likely(val))
  4497. json_decref(val);
  4498. return rc;
  4499. }
  4500. #ifdef HAVE_CURSES
  4501. static void disable_curses(void)
  4502. {
  4503. if (curses_active_locked()) {
  4504. use_curses = false;
  4505. curses_active = false;
  4506. leaveok(logwin, false);
  4507. leaveok(statuswin, false);
  4508. leaveok(mainwin, false);
  4509. nocbreak();
  4510. echo();
  4511. delwin(logwin);
  4512. delwin(statuswin);
  4513. delwin(mainwin);
  4514. endwin();
  4515. #ifdef WIN32
  4516. // Move the cursor to after curses output.
  4517. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4518. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4519. COORD coord;
  4520. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4521. coord.X = 0;
  4522. coord.Y = csbi.dwSize.Y - 1;
  4523. SetConsoleCursorPosition(hout, coord);
  4524. }
  4525. #endif
  4526. unlock_curses();
  4527. }
  4528. }
  4529. #endif
  4530. static void __kill_work(void)
  4531. {
  4532. struct cgpu_info *cgpu;
  4533. struct thr_info *thr;
  4534. int i;
  4535. if (!successful_connect)
  4536. return;
  4537. applog(LOG_INFO, "Received kill message");
  4538. shutting_down = true;
  4539. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4540. notifier_wake(submit_waiting_notifier);
  4541. #ifdef USE_LIBMICROHTTPD
  4542. httpsrv_stop();
  4543. #endif
  4544. applog(LOG_DEBUG, "Killing off watchpool thread");
  4545. /* Kill the watchpool thread */
  4546. thr = &control_thr[watchpool_thr_id];
  4547. thr_info_cancel(thr);
  4548. applog(LOG_DEBUG, "Killing off watchdog thread");
  4549. /* Kill the watchdog thread */
  4550. thr = &control_thr[watchdog_thr_id];
  4551. thr_info_cancel(thr);
  4552. applog(LOG_DEBUG, "Shutting down mining threads");
  4553. for (i = 0; i < mining_threads; i++) {
  4554. thr = get_thread(i);
  4555. if (!thr)
  4556. continue;
  4557. cgpu = thr->cgpu;
  4558. if (!cgpu)
  4559. continue;
  4560. if (!cgpu->threads)
  4561. continue;
  4562. cgpu->shutdown = true;
  4563. thr->work_restart = true;
  4564. notifier_wake(thr->notifier);
  4565. notifier_wake(thr->work_restart_notifier);
  4566. }
  4567. sleep(1);
  4568. applog(LOG_DEBUG, "Killing off mining threads");
  4569. /* Kill the mining threads*/
  4570. for (i = 0; i < mining_threads; i++) {
  4571. thr = get_thread(i);
  4572. if (!thr)
  4573. continue;
  4574. cgpu = thr->cgpu;
  4575. if (cgpu->threads)
  4576. {
  4577. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4578. thr_info_cancel(thr);
  4579. }
  4580. cgpu->status = LIFE_DEAD2;
  4581. }
  4582. /* Stop the others */
  4583. applog(LOG_DEBUG, "Killing off API thread");
  4584. thr = &control_thr[api_thr_id];
  4585. thr_info_cancel(thr);
  4586. }
  4587. /* This should be the common exit path */
  4588. void kill_work(void)
  4589. {
  4590. __kill_work();
  4591. quit(0, "Shutdown signal received.");
  4592. }
  4593. static
  4594. #ifdef WIN32
  4595. #ifndef _WIN64
  4596. const
  4597. #endif
  4598. #endif
  4599. char **initial_args;
  4600. void _bfg_clean_up(bool);
  4601. void app_restart(void)
  4602. {
  4603. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4604. __kill_work();
  4605. _bfg_clean_up(true);
  4606. #if defined(unix) || defined(__APPLE__)
  4607. if (forkpid > 0) {
  4608. kill(forkpid, SIGTERM);
  4609. forkpid = 0;
  4610. }
  4611. #endif
  4612. execv(initial_args[0], initial_args);
  4613. applog(LOG_WARNING, "Failed to restart application");
  4614. }
  4615. static void sighandler(int __maybe_unused sig)
  4616. {
  4617. /* Restore signal handlers so we can still quit if kill_work fails */
  4618. sigaction(SIGTERM, &termhandler, NULL);
  4619. sigaction(SIGINT, &inthandler, NULL);
  4620. kill_work();
  4621. }
  4622. static void start_longpoll(void);
  4623. static void stop_longpoll(void);
  4624. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4625. * this pool. */
  4626. static void recruit_curl(struct pool *pool)
  4627. {
  4628. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4629. if (unlikely(!ce))
  4630. quit(1, "Failed to calloc in recruit_curl");
  4631. ce->curl = curl_easy_init();
  4632. if (unlikely(!ce->curl))
  4633. quit(1, "Failed to init in recruit_curl");
  4634. LL_PREPEND(pool->curllist, ce);
  4635. pool->curls++;
  4636. }
  4637. /* Grab an available curl if there is one. If not, then recruit extra curls
  4638. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4639. * and there are already 5 curls in circulation. Limit total number to the
  4640. * number of mining threads per pool as well to prevent blasting a pool during
  4641. * network delays/outages. */
  4642. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4643. {
  4644. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4645. bool recruited = false;
  4646. struct curl_ent *ce;
  4647. mutex_lock(&pool->pool_lock);
  4648. retry:
  4649. if (!pool->curls) {
  4650. recruit_curl(pool);
  4651. recruited = true;
  4652. } else if (!pool->curllist) {
  4653. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4654. if (!blocking) {
  4655. mutex_unlock(&pool->pool_lock);
  4656. return NULL;
  4657. }
  4658. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4659. goto retry;
  4660. } else {
  4661. recruit_curl(pool);
  4662. recruited = true;
  4663. }
  4664. }
  4665. ce = pool->curllist;
  4666. LL_DELETE(pool->curllist, ce);
  4667. mutex_unlock(&pool->pool_lock);
  4668. if (recruited)
  4669. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4670. return ce;
  4671. }
  4672. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4673. {
  4674. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4675. }
  4676. __maybe_unused
  4677. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4678. {
  4679. return pop_curl_entry3(pool, 1);
  4680. }
  4681. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4682. {
  4683. mutex_lock(&pool->pool_lock);
  4684. if (!ce || !ce->curl)
  4685. quithere(1, "Attempted to add NULL");
  4686. LL_PREPEND(pool->curllist, ce);
  4687. cgtime(&ce->tv);
  4688. pthread_cond_broadcast(&pool->cr_cond);
  4689. mutex_unlock(&pool->pool_lock);
  4690. }
  4691. bool stale_work(struct work *work, bool share);
  4692. static inline bool should_roll(struct work *work)
  4693. {
  4694. struct timeval now;
  4695. time_t expiry;
  4696. if (!pool_actively_in_use(work->pool, NULL))
  4697. return false;
  4698. if (stale_work(work, false))
  4699. return false;
  4700. if (work->rolltime > opt_scantime)
  4701. expiry = work->rolltime;
  4702. else
  4703. expiry = opt_scantime;
  4704. expiry = expiry * 2 / 3;
  4705. /* We shouldn't roll if we're unlikely to get one shares' duration
  4706. * work out of doing so */
  4707. cgtime(&now);
  4708. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4709. return false;
  4710. return true;
  4711. }
  4712. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4713. * reject blocks as invalid. */
  4714. static inline bool can_roll(struct work *work)
  4715. {
  4716. if (work->stratum)
  4717. return false;
  4718. if (!(work->pool && !work->clone))
  4719. return false;
  4720. if (work->tr)
  4721. {
  4722. if (stale_work(work, false))
  4723. return false;
  4724. return blkmk_work_left(work->tr->tmpl);
  4725. }
  4726. return (work->rolltime &&
  4727. work->rolls < 7000 && !stale_work(work, false));
  4728. }
  4729. static void roll_work(struct work *work)
  4730. {
  4731. if (work->tr)
  4732. {
  4733. struct timeval tv_now;
  4734. cgtime(&tv_now);
  4735. if (blkmk_get_data(work->tr->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4736. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4737. swap32yes(work->data, work->data, 80 / 4);
  4738. calc_midstate(work);
  4739. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4740. } else {
  4741. uint32_t *work_ntime;
  4742. uint32_t ntime;
  4743. work_ntime = (uint32_t *)(work->data + 68);
  4744. ntime = be32toh(*work_ntime);
  4745. ntime++;
  4746. *work_ntime = htobe32(ntime);
  4747. work_set_simple_ntime_roll_limit(work, 0);
  4748. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4749. }
  4750. local_work++;
  4751. work->rolls++;
  4752. work->blk.nonce = 0;
  4753. /* This is now a different work item so it needs a different ID for the
  4754. * hashtable */
  4755. work->id = total_work++;
  4756. }
  4757. /* Duplicates any dynamically allocated arrays within the work struct to
  4758. * prevent a copied work struct from freeing ram belonging to another struct */
  4759. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4760. {
  4761. int id = work->id;
  4762. clean_work(work);
  4763. memcpy(work, base_work, sizeof(struct work));
  4764. /* Keep the unique new id assigned during make_work to prevent copied
  4765. * work from having the same id. */
  4766. work->id = id;
  4767. if (base_work->job_id)
  4768. work->job_id = strdup(base_work->job_id);
  4769. if (base_work->nonce1)
  4770. work->nonce1 = strdup(base_work->nonce1);
  4771. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4772. if (base_work->tr)
  4773. tmpl_incref(base_work->tr);
  4774. if (noffset)
  4775. {
  4776. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4777. uint32_t ntime = be32toh(*work_ntime);
  4778. ntime += noffset;
  4779. *work_ntime = htobe32(ntime);
  4780. }
  4781. if (work->device_data_dup_func)
  4782. work->device_data = work->device_data_dup_func(work);
  4783. }
  4784. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4785. * for all dynamically allocated arrays within the struct */
  4786. struct work *copy_work(const struct work *base_work)
  4787. {
  4788. struct work *work = make_work();
  4789. _copy_work(work, base_work, 0);
  4790. return work;
  4791. }
  4792. void __copy_work(struct work *work, const struct work *base_work)
  4793. {
  4794. _copy_work(work, base_work, 0);
  4795. }
  4796. static struct work *make_clone(struct work *work)
  4797. {
  4798. struct work *work_clone = copy_work(work);
  4799. work_clone->clone = true;
  4800. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4801. work_clone->longpoll = false;
  4802. work_clone->mandatory = false;
  4803. /* Make cloned work appear slightly older to bias towards keeping the
  4804. * master work item which can be further rolled */
  4805. work_clone->tv_staged.tv_sec -= 1;
  4806. return work_clone;
  4807. }
  4808. static void stage_work(struct work *work);
  4809. static bool clone_available(void)
  4810. {
  4811. struct work *work_clone = NULL, *work, *tmp;
  4812. bool cloned = false;
  4813. mutex_lock(stgd_lock);
  4814. if (!staged_rollable)
  4815. goto out_unlock;
  4816. HASH_ITER(hh, staged_work, work, tmp) {
  4817. if (can_roll(work) && should_roll(work)) {
  4818. roll_work(work);
  4819. work_clone = make_clone(work);
  4820. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4821. roll_work(work);
  4822. cloned = true;
  4823. break;
  4824. }
  4825. }
  4826. out_unlock:
  4827. mutex_unlock(stgd_lock);
  4828. if (cloned) {
  4829. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4830. stage_work(work_clone);
  4831. }
  4832. return cloned;
  4833. }
  4834. static void pool_died(struct pool *pool)
  4835. {
  4836. if (!pool_tset(pool, &pool->idle)) {
  4837. cgtime(&pool->tv_idle);
  4838. if (pool == current_pool()) {
  4839. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4840. switch_pools(NULL);
  4841. } else
  4842. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4843. }
  4844. }
  4845. bool stale_work(struct work *work, bool share)
  4846. {
  4847. unsigned work_expiry;
  4848. struct pool *pool;
  4849. uint32_t block_id;
  4850. unsigned getwork_delay;
  4851. if (opt_benchmark)
  4852. return false;
  4853. block_id = ((uint32_t*)work->data)[1];
  4854. pool = work->pool;
  4855. /* Technically the rolltime should be correct but some pools
  4856. * advertise a broken expire= that is lower than a meaningful
  4857. * scantime */
  4858. if (work->rolltime >= opt_scantime || work->tr)
  4859. work_expiry = work->rolltime;
  4860. else
  4861. work_expiry = opt_expiry;
  4862. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4863. if (work_expiry > max_expiry)
  4864. work_expiry = max_expiry;
  4865. if (share) {
  4866. /* If the share isn't on this pool's latest block, it's stale */
  4867. if (pool->block_id && pool->block_id != block_id)
  4868. {
  4869. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4870. return true;
  4871. }
  4872. /* If the pool doesn't want old shares, then any found in work before
  4873. * the most recent longpoll is stale */
  4874. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4875. {
  4876. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4877. return true;
  4878. }
  4879. } else {
  4880. /* If this work isn't for the latest Bitcoin block, it's stale */
  4881. /* But only care about the current pool if failover-only */
  4882. if (enabled_pools <= 1 || opt_fail_only) {
  4883. if (pool->block_id && block_id != pool->block_id)
  4884. {
  4885. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4886. return true;
  4887. }
  4888. } else {
  4889. if (block_id != current_block_id)
  4890. {
  4891. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4892. return true;
  4893. }
  4894. }
  4895. /* If the pool has asked us to restart since this work, it's stale */
  4896. if (work->work_restart_id != pool->work_restart_id)
  4897. {
  4898. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4899. return true;
  4900. }
  4901. if (pool->has_stratum && work->job_id) {
  4902. bool same_job;
  4903. if (!pool->stratum_active || !pool->stratum_notify) {
  4904. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4905. return true;
  4906. }
  4907. same_job = true;
  4908. cg_rlock(&pool->data_lock);
  4909. if (strcmp(work->job_id, pool->swork.job_id))
  4910. same_job = false;
  4911. cg_runlock(&pool->data_lock);
  4912. if (!same_job) {
  4913. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4914. return true;
  4915. }
  4916. }
  4917. /* Factor in the average getwork delay of this pool, rounding it up to
  4918. * the nearest second */
  4919. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4920. if (unlikely(work_expiry <= getwork_delay + 5))
  4921. work_expiry = 5;
  4922. else
  4923. work_expiry -= getwork_delay;
  4924. }
  4925. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4926. if (elapsed_since_staged > work_expiry) {
  4927. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4928. return true;
  4929. }
  4930. /* If the user only wants strict failover, any work from a pool other than
  4931. * the current one is always considered stale */
  4932. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4933. {
  4934. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4935. return true;
  4936. }
  4937. return false;
  4938. }
  4939. static double share_diff(const struct work *work)
  4940. {
  4941. double ret;
  4942. bool new_best = false;
  4943. ret = target_diff(work->hash);
  4944. cg_wlock(&control_lock);
  4945. if (unlikely(ret > best_diff)) {
  4946. new_best = true;
  4947. best_diff = ret;
  4948. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4949. }
  4950. if (unlikely(ret > work->pool->best_diff))
  4951. work->pool->best_diff = ret;
  4952. cg_wunlock(&control_lock);
  4953. if (unlikely(new_best))
  4954. applog(LOG_INFO, "New best share: %s", best_share);
  4955. return ret;
  4956. }
  4957. static void regen_hash(struct work *work)
  4958. {
  4959. hash_data(work->hash, work->data);
  4960. }
  4961. static void rebuild_hash(struct work *work)
  4962. {
  4963. if (opt_scrypt)
  4964. scrypt_regenhash(work);
  4965. else
  4966. regen_hash(work);
  4967. work->share_diff = share_diff(work);
  4968. if (unlikely(work->share_diff >= current_diff)) {
  4969. work->block = true;
  4970. work->pool->solved++;
  4971. found_blocks++;
  4972. work->mandatory = true;
  4973. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4974. }
  4975. }
  4976. static void submit_discard_share2(const char *reason, struct work *work)
  4977. {
  4978. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4979. sharelog(reason, work);
  4980. mutex_lock(&stats_lock);
  4981. ++total_stale;
  4982. ++cgpu->stale;
  4983. ++(work->pool->stale_shares);
  4984. total_diff_stale += work->work_difficulty;
  4985. cgpu->diff_stale += work->work_difficulty;
  4986. work->pool->diff_stale += work->work_difficulty;
  4987. mutex_unlock(&stats_lock);
  4988. }
  4989. static void submit_discard_share(struct work *work)
  4990. {
  4991. submit_discard_share2("discard", work);
  4992. }
  4993. struct submit_work_state {
  4994. struct work *work;
  4995. bool resubmit;
  4996. struct curl_ent *ce;
  4997. int failures;
  4998. struct timeval tv_staleexpire;
  4999. char *s;
  5000. struct timeval tv_submit;
  5001. struct submit_work_state *next;
  5002. };
  5003. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  5004. {
  5005. long *p_timeout_us = userp;
  5006. const long max_ms = LONG_MAX / 1000;
  5007. if (max_ms < timeout_ms)
  5008. timeout_ms = max_ms;
  5009. *p_timeout_us = timeout_ms * 1000;
  5010. return 0;
  5011. }
  5012. static void sws_has_ce(struct submit_work_state *sws)
  5013. {
  5014. struct pool *pool = sws->work->pool;
  5015. sws->s = submit_upstream_work_request(sws->work);
  5016. cgtime(&sws->tv_submit);
  5017. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5018. }
  5019. static struct submit_work_state *begin_submission(struct work *work)
  5020. {
  5021. struct pool *pool;
  5022. struct submit_work_state *sws = NULL;
  5023. pool = work->pool;
  5024. sws = malloc(sizeof(*sws));
  5025. *sws = (struct submit_work_state){
  5026. .work = work,
  5027. };
  5028. rebuild_hash(work);
  5029. if (stale_work(work, true)) {
  5030. work->stale = true;
  5031. if (opt_submit_stale)
  5032. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  5033. else if (pool->submit_old)
  5034. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  5035. else {
  5036. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  5037. submit_discard_share(work);
  5038. goto out;
  5039. }
  5040. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5041. }
  5042. if (work->stratum) {
  5043. char *s;
  5044. s = malloc(1024);
  5045. sws->s = s;
  5046. } else {
  5047. /* submit solution to bitcoin via JSON-RPC */
  5048. sws->ce = pop_curl_entry2(pool, false);
  5049. if (sws->ce) {
  5050. sws_has_ce(sws);
  5051. } else {
  5052. sws->next = pool->sws_waiting_on_curl;
  5053. pool->sws_waiting_on_curl = sws;
  5054. if (sws->next)
  5055. applog(LOG_DEBUG, "submit_thread queuing submission");
  5056. else
  5057. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  5058. }
  5059. }
  5060. return sws;
  5061. out:
  5062. free(sws);
  5063. return NULL;
  5064. }
  5065. static bool retry_submission(struct submit_work_state *sws)
  5066. {
  5067. struct work *work = sws->work;
  5068. struct pool *pool = work->pool;
  5069. sws->resubmit = true;
  5070. if ((!work->stale) && stale_work(work, true)) {
  5071. work->stale = true;
  5072. if (opt_submit_stale)
  5073. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  5074. else if (pool->submit_old)
  5075. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  5076. else {
  5077. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  5078. submit_discard_share(work);
  5079. return false;
  5080. }
  5081. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5082. }
  5083. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  5084. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  5085. submit_discard_share(work);
  5086. return false;
  5087. }
  5088. else if (work->stale) {
  5089. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  5090. {
  5091. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  5092. submit_discard_share(work);
  5093. return false;
  5094. }
  5095. }
  5096. /* pause, then restart work-request loop */
  5097. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  5098. cgtime(&sws->tv_submit);
  5099. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5100. return true;
  5101. }
  5102. static void free_sws(struct submit_work_state *sws)
  5103. {
  5104. free(sws->s);
  5105. free_work(sws->work);
  5106. free(sws);
  5107. }
  5108. static void *submit_work_thread(__maybe_unused void *userdata)
  5109. {
  5110. int wip = 0;
  5111. CURLM *curlm;
  5112. long curlm_timeout_us = -1;
  5113. struct timeval curlm_timer;
  5114. struct submit_work_state *sws, **swsp;
  5115. struct submit_work_state *write_sws = NULL;
  5116. unsigned tsreduce = 0;
  5117. pthread_detach(pthread_self());
  5118. RenameThread("submit_work");
  5119. applog(LOG_DEBUG, "Creating extra submit work thread");
  5120. curlm = curl_multi_init();
  5121. curlm_timeout_us = -1;
  5122. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5123. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5124. fd_set rfds, wfds, efds;
  5125. int maxfd;
  5126. struct timeval tv_timeout, tv_now;
  5127. int n;
  5128. CURLMsg *cm;
  5129. FD_ZERO(&rfds);
  5130. while (1) {
  5131. mutex_lock(&submitting_lock);
  5132. total_submitting -= tsreduce;
  5133. tsreduce = 0;
  5134. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5135. notifier_read(submit_waiting_notifier);
  5136. }
  5137. // Receive any new submissions
  5138. while (submit_waiting) {
  5139. struct work *work = submit_waiting;
  5140. DL_DELETE(submit_waiting, work);
  5141. if ( (sws = begin_submission(work)) ) {
  5142. if (sws->ce)
  5143. curl_multi_add_handle(curlm, sws->ce->curl);
  5144. else if (sws->s) {
  5145. sws->next = write_sws;
  5146. write_sws = sws;
  5147. }
  5148. ++wip;
  5149. }
  5150. else {
  5151. --total_submitting;
  5152. free_work(work);
  5153. }
  5154. }
  5155. if (unlikely(shutting_down && !wip))
  5156. break;
  5157. mutex_unlock(&submitting_lock);
  5158. FD_ZERO(&rfds);
  5159. FD_ZERO(&wfds);
  5160. FD_ZERO(&efds);
  5161. tv_timeout.tv_sec = -1;
  5162. // Setup cURL with select
  5163. // Need to call perform to ensure the timeout gets updated
  5164. curl_multi_perform(curlm, &n);
  5165. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5166. if (curlm_timeout_us >= 0)
  5167. {
  5168. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5169. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5170. }
  5171. // Setup waiting stratum submissions with select
  5172. for (sws = write_sws; sws; sws = sws->next)
  5173. {
  5174. struct pool *pool = sws->work->pool;
  5175. int fd = pool->sock;
  5176. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5177. continue;
  5178. FD_SET(fd, &wfds);
  5179. set_maxfd(&maxfd, fd);
  5180. }
  5181. // Setup "submit waiting" notifier with select
  5182. FD_SET(submit_waiting_notifier[0], &rfds);
  5183. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5184. // Wait for something interesting to happen :)
  5185. cgtime(&tv_now);
  5186. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5187. FD_ZERO(&rfds);
  5188. continue;
  5189. }
  5190. // Handle any stratum ready-to-write results
  5191. for (swsp = &write_sws; (sws = *swsp); ) {
  5192. struct work *work = sws->work;
  5193. struct pool *pool = work->pool;
  5194. int fd = pool->sock;
  5195. bool sessionid_match;
  5196. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5197. next_write_sws:
  5198. // TODO: Check if stale, possibly discard etc
  5199. swsp = &sws->next;
  5200. continue;
  5201. }
  5202. cg_rlock(&pool->data_lock);
  5203. // 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
  5204. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5205. sessionid_match = (!pool->swork.nonce1) || !strcmp(work->nonce1, pool->swork.nonce1);
  5206. cg_runlock(&pool->data_lock);
  5207. if (!sessionid_match)
  5208. {
  5209. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5210. submit_discard_share2("disconnect", work);
  5211. ++tsreduce;
  5212. next_write_sws_del:
  5213. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5214. FD_CLR(fd, &wfds);
  5215. // Delete sws for this submission, since we're done with it
  5216. *swsp = sws->next;
  5217. free_sws(sws);
  5218. --wip;
  5219. continue;
  5220. }
  5221. char *s = sws->s;
  5222. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5223. int sshare_id;
  5224. uint32_t nonce;
  5225. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5226. char noncehex[9];
  5227. char ntimehex[9];
  5228. sshare->work = copy_work(work);
  5229. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5230. nonce = *((uint32_t *)(work->data + 76));
  5231. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5232. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5233. mutex_lock(&sshare_lock);
  5234. /* Give the stratum share a unique id */
  5235. sshare_id =
  5236. sshare->id = swork_id++;
  5237. HASH_ADD_INT(stratum_shares, id, sshare);
  5238. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5239. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5240. mutex_unlock(&sshare_lock);
  5241. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5242. if (likely(stratum_send(pool, s, strlen(s)))) {
  5243. if (pool_tclear(pool, &pool->submit_fail))
  5244. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5245. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5246. goto next_write_sws_del;
  5247. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5248. // Undo stuff
  5249. mutex_lock(&sshare_lock);
  5250. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5251. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5252. if (sshare)
  5253. HASH_DEL(stratum_shares, sshare);
  5254. mutex_unlock(&sshare_lock);
  5255. if (sshare)
  5256. {
  5257. free_work(sshare->work);
  5258. free(sshare);
  5259. }
  5260. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5261. total_ro++;
  5262. pool->remotefail_occasions++;
  5263. if (!sshare)
  5264. goto next_write_sws_del;
  5265. goto next_write_sws;
  5266. }
  5267. }
  5268. // Handle any cURL activities
  5269. curl_multi_perform(curlm, &n);
  5270. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5271. if (cm->msg == CURLMSG_DONE)
  5272. {
  5273. bool finished;
  5274. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5275. curl_multi_remove_handle(curlm, cm->easy_handle);
  5276. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5277. if (!finished) {
  5278. if (retry_submission(sws))
  5279. curl_multi_add_handle(curlm, sws->ce->curl);
  5280. else
  5281. finished = true;
  5282. }
  5283. if (finished) {
  5284. --wip;
  5285. ++tsreduce;
  5286. struct pool *pool = sws->work->pool;
  5287. if (pool->sws_waiting_on_curl) {
  5288. pool->sws_waiting_on_curl->ce = sws->ce;
  5289. sws_has_ce(pool->sws_waiting_on_curl);
  5290. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5291. curl_multi_add_handle(curlm, sws->ce->curl);
  5292. } else {
  5293. push_curl_entry(sws->ce, sws->work->pool);
  5294. }
  5295. free_sws(sws);
  5296. }
  5297. }
  5298. }
  5299. }
  5300. assert(!write_sws);
  5301. mutex_unlock(&submitting_lock);
  5302. curl_multi_cleanup(curlm);
  5303. applog(LOG_DEBUG, "submit_work thread exiting");
  5304. return NULL;
  5305. }
  5306. /* Find the pool that currently has the highest priority */
  5307. static struct pool *priority_pool(int choice)
  5308. {
  5309. struct pool *ret = NULL;
  5310. int i;
  5311. for (i = 0; i < total_pools; i++) {
  5312. struct pool *pool = pools[i];
  5313. if (pool->prio == choice) {
  5314. ret = pool;
  5315. break;
  5316. }
  5317. }
  5318. if (unlikely(!ret)) {
  5319. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5320. return pools[choice];
  5321. }
  5322. return ret;
  5323. }
  5324. int prioritize_pools(char *param, int *pid)
  5325. {
  5326. char *ptr, *next;
  5327. int i, pr, prio = 0;
  5328. if (total_pools == 0) {
  5329. return MSG_NOPOOL;
  5330. }
  5331. if (param == NULL || *param == '\0') {
  5332. return MSG_MISPID;
  5333. }
  5334. bool pools_changed[total_pools];
  5335. int new_prio[total_pools];
  5336. for (i = 0; i < total_pools; ++i)
  5337. pools_changed[i] = false;
  5338. next = param;
  5339. while (next && *next) {
  5340. ptr = next;
  5341. next = strchr(ptr, ',');
  5342. if (next)
  5343. *(next++) = '\0';
  5344. i = atoi(ptr);
  5345. if (i < 0 || i >= total_pools) {
  5346. *pid = i;
  5347. return MSG_INVPID;
  5348. }
  5349. if (pools_changed[i]) {
  5350. *pid = i;
  5351. return MSG_DUPPID;
  5352. }
  5353. pools_changed[i] = true;
  5354. new_prio[i] = prio++;
  5355. }
  5356. // Only change them if no errors
  5357. for (i = 0; i < total_pools; i++) {
  5358. if (pools_changed[i])
  5359. pools[i]->prio = new_prio[i];
  5360. }
  5361. // In priority order, cycle through the unchanged pools and append them
  5362. for (pr = 0; pr < total_pools; pr++)
  5363. for (i = 0; i < total_pools; i++) {
  5364. if (!pools_changed[i] && pools[i]->prio == pr) {
  5365. pools[i]->prio = prio++;
  5366. pools_changed[i] = true;
  5367. break;
  5368. }
  5369. }
  5370. if (current_pool()->prio)
  5371. switch_pools(NULL);
  5372. return MSG_POOLPRIO;
  5373. }
  5374. void validate_pool_priorities(void)
  5375. {
  5376. // TODO: this should probably do some sort of logging
  5377. int i, j;
  5378. bool used[total_pools];
  5379. bool valid[total_pools];
  5380. for (i = 0; i < total_pools; i++)
  5381. used[i] = valid[i] = false;
  5382. for (i = 0; i < total_pools; i++) {
  5383. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5384. if (!used[pools[i]->prio]) {
  5385. valid[i] = true;
  5386. used[pools[i]->prio] = true;
  5387. }
  5388. }
  5389. }
  5390. for (i = 0; i < total_pools; i++) {
  5391. if (!valid[i]) {
  5392. for (j = 0; j < total_pools; j++) {
  5393. if (!used[j]) {
  5394. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5395. pools[i]->prio = j;
  5396. used[j] = true;
  5397. break;
  5398. }
  5399. }
  5400. }
  5401. }
  5402. }
  5403. static void clear_pool_work(struct pool *pool);
  5404. /* Specifies whether we can switch to this pool or not. */
  5405. static bool pool_unusable(struct pool *pool)
  5406. {
  5407. if (pool->idle)
  5408. return true;
  5409. if (pool->enabled != POOL_ENABLED)
  5410. return true;
  5411. return false;
  5412. }
  5413. void switch_pools(struct pool *selected)
  5414. {
  5415. struct pool *pool, *last_pool;
  5416. int i, pool_no, next_pool;
  5417. cg_wlock(&control_lock);
  5418. last_pool = currentpool;
  5419. pool_no = currentpool->pool_no;
  5420. /* Switch selected to pool number 0 and move the rest down */
  5421. if (selected) {
  5422. if (selected->prio != 0) {
  5423. for (i = 0; i < total_pools; i++) {
  5424. pool = pools[i];
  5425. if (pool->prio < selected->prio)
  5426. pool->prio++;
  5427. }
  5428. selected->prio = 0;
  5429. }
  5430. }
  5431. switch (pool_strategy) {
  5432. /* All of these set to the master pool */
  5433. case POOL_BALANCE:
  5434. case POOL_FAILOVER:
  5435. case POOL_LOADBALANCE:
  5436. for (i = 0; i < total_pools; i++) {
  5437. pool = priority_pool(i);
  5438. if (pool_unusable(pool))
  5439. continue;
  5440. pool_no = pool->pool_no;
  5441. break;
  5442. }
  5443. break;
  5444. /* Both of these simply increment and cycle */
  5445. case POOL_ROUNDROBIN:
  5446. case POOL_ROTATE:
  5447. if (selected && !selected->idle) {
  5448. pool_no = selected->pool_no;
  5449. break;
  5450. }
  5451. next_pool = pool_no;
  5452. /* Select the next alive pool */
  5453. for (i = 1; i < total_pools; i++) {
  5454. next_pool++;
  5455. if (next_pool >= total_pools)
  5456. next_pool = 0;
  5457. pool = pools[next_pool];
  5458. if (pool_unusable(pool))
  5459. continue;
  5460. pool_no = next_pool;
  5461. break;
  5462. }
  5463. break;
  5464. default:
  5465. break;
  5466. }
  5467. currentpool = pools[pool_no];
  5468. pool = currentpool;
  5469. cg_wunlock(&control_lock);
  5470. /* Set the lagging flag to avoid pool not providing work fast enough
  5471. * messages in failover only mode since we have to get all fresh work
  5472. * as in restart_threads */
  5473. if (opt_fail_only)
  5474. pool_tset(pool, &pool->lagging);
  5475. if (pool != last_pool)
  5476. {
  5477. pool->block_id = 0;
  5478. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5479. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5480. if (pool_localgen(pool) || opt_fail_only)
  5481. clear_pool_work(last_pool);
  5482. }
  5483. }
  5484. mutex_lock(&lp_lock);
  5485. pthread_cond_broadcast(&lp_cond);
  5486. mutex_unlock(&lp_lock);
  5487. }
  5488. static void discard_work(struct work *work)
  5489. {
  5490. if (!work->clone && !work->rolls && !work->mined) {
  5491. if (work->pool) {
  5492. work->pool->discarded_work++;
  5493. work->pool->quota_used--;
  5494. work->pool->works--;
  5495. }
  5496. total_discarded++;
  5497. applog(LOG_DEBUG, "Discarded work");
  5498. } else
  5499. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5500. free_work(work);
  5501. }
  5502. static void wake_gws(void)
  5503. {
  5504. mutex_lock(stgd_lock);
  5505. pthread_cond_signal(&gws_cond);
  5506. mutex_unlock(stgd_lock);
  5507. }
  5508. static void discard_stale(void)
  5509. {
  5510. struct work *work, *tmp;
  5511. int stale = 0;
  5512. mutex_lock(stgd_lock);
  5513. HASH_ITER(hh, staged_work, work, tmp) {
  5514. if (stale_work(work, false)) {
  5515. HASH_DEL(staged_work, work);
  5516. discard_work(work);
  5517. stale++;
  5518. staged_full = false;
  5519. }
  5520. }
  5521. pthread_cond_signal(&gws_cond);
  5522. mutex_unlock(stgd_lock);
  5523. if (stale)
  5524. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5525. }
  5526. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5527. {
  5528. bool rv;
  5529. struct timeval tv, orig;
  5530. ldiv_t d;
  5531. d = ldiv(ustime, 1000000);
  5532. tv = (struct timeval){
  5533. .tv_sec = d.quot,
  5534. .tv_usec = d.rem,
  5535. };
  5536. orig = work->tv_staged;
  5537. timersub(&orig, &tv, &work->tv_staged);
  5538. rv = stale_work(work, share);
  5539. work->tv_staged = orig;
  5540. return rv;
  5541. }
  5542. static
  5543. void pool_update_work_restart_time(struct pool * const pool)
  5544. {
  5545. pool->work_restart_time = time(NULL);
  5546. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5547. }
  5548. static void restart_threads(void)
  5549. {
  5550. struct pool *cp = current_pool();
  5551. int i;
  5552. struct thr_info *thr;
  5553. /* Artificially set the lagging flag to avoid pool not providing work
  5554. * fast enough messages after every long poll */
  5555. pool_tset(cp, &cp->lagging);
  5556. /* Discard staged work that is now stale */
  5557. discard_stale();
  5558. rd_lock(&mining_thr_lock);
  5559. for (i = 0; i < mining_threads; i++)
  5560. {
  5561. thr = mining_thr[i];
  5562. thr->work_restart = true;
  5563. }
  5564. for (i = 0; i < mining_threads; i++)
  5565. {
  5566. thr = mining_thr[i];
  5567. notifier_wake(thr->work_restart_notifier);
  5568. }
  5569. rd_unlock(&mining_thr_lock);
  5570. }
  5571. static
  5572. void blkhashstr(char *rv, const unsigned char *hash)
  5573. {
  5574. unsigned char hash_swap[32];
  5575. swap256(hash_swap, hash);
  5576. swap32tole(hash_swap, hash_swap, 32 / 4);
  5577. bin2hex(rv, hash_swap, 32);
  5578. }
  5579. static void set_curblock(char *hexstr, unsigned char *hash)
  5580. {
  5581. unsigned char hash_swap[32];
  5582. current_block_id = ((uint32_t*)hash)[0];
  5583. strcpy(current_block, hexstr);
  5584. swap256(hash_swap, hash);
  5585. swap32tole(hash_swap, hash_swap, 32 / 4);
  5586. cg_wlock(&ch_lock);
  5587. block_time = time(NULL);
  5588. __update_block_title(hash_swap);
  5589. free(current_fullhash);
  5590. current_fullhash = malloc(65);
  5591. bin2hex(current_fullhash, hash_swap, 32);
  5592. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5593. cg_wunlock(&ch_lock);
  5594. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5595. }
  5596. /* Search to see if this string is from a block that has been seen before */
  5597. static bool block_exists(char *hexstr)
  5598. {
  5599. struct block *s;
  5600. rd_lock(&blk_lock);
  5601. HASH_FIND_STR(blocks, hexstr, s);
  5602. rd_unlock(&blk_lock);
  5603. if (s)
  5604. return true;
  5605. return false;
  5606. }
  5607. /* Tests if this work is from a block that has been seen before */
  5608. static inline bool from_existing_block(struct work *work)
  5609. {
  5610. char hexstr[37];
  5611. bool ret;
  5612. bin2hex(hexstr, work->data + 8, 18);
  5613. ret = block_exists(hexstr);
  5614. return ret;
  5615. }
  5616. static int block_sort(struct block *blocka, struct block *blockb)
  5617. {
  5618. return blocka->block_no - blockb->block_no;
  5619. }
  5620. static void set_blockdiff(const struct work *work)
  5621. {
  5622. unsigned char target[32];
  5623. double diff;
  5624. uint64_t diff64;
  5625. real_block_target(target, work->data);
  5626. diff = target_diff(target);
  5627. diff64 = diff;
  5628. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5629. format_unit2(net_hashrate, sizeof(net_hashrate),
  5630. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5631. if (unlikely(current_diff != diff))
  5632. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5633. current_diff = diff;
  5634. }
  5635. static bool test_work_current(struct work *work)
  5636. {
  5637. bool ret = true;
  5638. char hexstr[65];
  5639. if (work->mandatory)
  5640. return ret;
  5641. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5642. /* Hack to work around dud work sneaking into test */
  5643. bin2hex(hexstr, work->data + 8, 18);
  5644. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5645. goto out_free;
  5646. struct pool * const pool = work->pool;
  5647. /* Search to see if this block exists yet and if not, consider it a
  5648. * new block and set the current block details to this one */
  5649. if (!block_exists(hexstr))
  5650. {
  5651. struct block *s = calloc(sizeof(struct block), 1);
  5652. int deleted_block = 0;
  5653. ret = false;
  5654. if (unlikely(!s))
  5655. quit (1, "test_work_current OOM");
  5656. strcpy(s->hash, hexstr);
  5657. s->block_no = new_blocks++;
  5658. wr_lock(&blk_lock);
  5659. /* Only keep the last hour's worth of blocks in memory since
  5660. * work from blocks before this is virtually impossible and we
  5661. * want to prevent memory usage from continually rising */
  5662. if (HASH_COUNT(blocks) > 6)
  5663. {
  5664. struct block *oldblock;
  5665. HASH_SORT(blocks, block_sort);
  5666. oldblock = blocks;
  5667. deleted_block = oldblock->block_no;
  5668. HASH_DEL(blocks, oldblock);
  5669. free(oldblock);
  5670. }
  5671. HASH_ADD_STR(blocks, hash, s);
  5672. set_blockdiff(work);
  5673. wr_unlock(&blk_lock);
  5674. pool->block_id = block_id;
  5675. pool_update_work_restart_time(pool);
  5676. if (deleted_block)
  5677. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5678. #if BLKMAKER_VERSION > 1
  5679. template_nonce = 0;
  5680. #endif
  5681. set_curblock(hexstr, &work->data[4]);
  5682. if (unlikely(new_blocks == 1))
  5683. goto out_free;
  5684. if (!work->stratum)
  5685. {
  5686. if (work->longpoll)
  5687. {
  5688. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5689. pool->pool_no);
  5690. }
  5691. else
  5692. if (have_longpoll)
  5693. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5694. else
  5695. applog(LOG_NOTICE, "New block detected on network");
  5696. }
  5697. restart_threads();
  5698. }
  5699. else
  5700. {
  5701. bool restart = false;
  5702. if (unlikely(pool->block_id != block_id))
  5703. {
  5704. bool was_active = pool->block_id != 0;
  5705. pool->block_id = block_id;
  5706. pool_update_work_restart_time(pool);
  5707. if (!work->longpoll)
  5708. update_last_work(work);
  5709. if (was_active)
  5710. {
  5711. // Pool actively changed block
  5712. if (pool == current_pool())
  5713. restart = true;
  5714. if (block_id == current_block_id)
  5715. {
  5716. // Caught up, only announce if this pool is the one in use
  5717. if (restart)
  5718. applog(LOG_NOTICE, "%s %d caught up to new block",
  5719. work->longpoll ? "Longpoll from pool" : "Pool",
  5720. pool->pool_no);
  5721. }
  5722. else
  5723. {
  5724. // Switched to a block we know, but not the latest... why?
  5725. // This might detect pools trying to double-spend or 51%,
  5726. // but let's not make any accusations until it's had time
  5727. // in the real world.
  5728. blkhashstr(hexstr, &work->data[4]);
  5729. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5730. work->longpoll ? "Longpoll from pool" : "Pool",
  5731. pool->pool_no,
  5732. hexstr);
  5733. }
  5734. }
  5735. }
  5736. if (work->longpoll)
  5737. {
  5738. struct pool * const cp = current_pool();
  5739. ++pool->work_restart_id;
  5740. if (work->tr && work->tr == pool->swork.tr)
  5741. pool->swork.work_restart_id = pool->work_restart_id;
  5742. update_last_work(work);
  5743. pool_update_work_restart_time(pool);
  5744. applog(
  5745. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5746. "Longpoll from pool %d requested work update",
  5747. pool->pool_no);
  5748. if ((!restart) && pool == cp)
  5749. restart = true;
  5750. }
  5751. if (restart)
  5752. restart_threads();
  5753. }
  5754. work->longpoll = false;
  5755. out_free:
  5756. return ret;
  5757. }
  5758. static int tv_sort(struct work *worka, struct work *workb)
  5759. {
  5760. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5761. }
  5762. static bool work_rollable(struct work *work)
  5763. {
  5764. return (!work->clone && work->rolltime);
  5765. }
  5766. static bool hash_push(struct work *work)
  5767. {
  5768. bool rc = true;
  5769. mutex_lock(stgd_lock);
  5770. if (work_rollable(work))
  5771. staged_rollable++;
  5772. if (likely(!getq->frozen)) {
  5773. HASH_ADD_INT(staged_work, id, work);
  5774. HASH_SORT(staged_work, tv_sort);
  5775. } else
  5776. rc = false;
  5777. pthread_cond_broadcast(&getq->cond);
  5778. mutex_unlock(stgd_lock);
  5779. return rc;
  5780. }
  5781. static void stage_work(struct work *work)
  5782. {
  5783. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5784. work->id, work->pool->pool_no);
  5785. work->work_restart_id = work->pool->work_restart_id;
  5786. work->pool->last_work_time = time(NULL);
  5787. cgtime(&work->pool->tv_last_work_time);
  5788. test_work_current(work);
  5789. work->pool->works++;
  5790. hash_push(work);
  5791. }
  5792. #ifdef HAVE_CURSES
  5793. int curses_int(const char *query)
  5794. {
  5795. int ret;
  5796. char *cvar;
  5797. cvar = curses_input(query);
  5798. if (unlikely(!cvar))
  5799. return -1;
  5800. ret = atoi(cvar);
  5801. free(cvar);
  5802. return ret;
  5803. }
  5804. #endif
  5805. #ifdef HAVE_CURSES
  5806. static bool input_pool(bool live);
  5807. #endif
  5808. #ifdef HAVE_CURSES
  5809. static void display_pool_summary(struct pool *pool)
  5810. {
  5811. double efficiency = 0.0;
  5812. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5813. int pool_secs;
  5814. if (curses_active_locked()) {
  5815. wlog("Pool: %s\n", pool->rpc_url);
  5816. if (pool->solved)
  5817. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5818. if (!pool->has_stratum)
  5819. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5820. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5821. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5822. wlog(" Accepted shares: %d\n", pool->accepted);
  5823. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5824. pool->rejected, pool->stale_shares,
  5825. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5826. );
  5827. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5828. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5829. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5830. wlog(" Network transfer: %s (%s)\n",
  5831. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5832. (float)pool->cgminer_pool_stats.net_bytes_received,
  5833. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5834. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5835. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5836. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5837. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5838. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5839. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5840. wlog(" Items worked on: %d\n", pool->works);
  5841. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5842. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5843. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5844. unlock_curses();
  5845. }
  5846. }
  5847. #endif
  5848. /* We can't remove the memory used for this struct pool because there may
  5849. * still be work referencing it. We just remove it from the pools list */
  5850. void remove_pool(struct pool *pool)
  5851. {
  5852. int i, last_pool = total_pools - 1;
  5853. struct pool *other;
  5854. /* Boost priority of any lower prio than this one */
  5855. for (i = 0; i < total_pools; i++) {
  5856. other = pools[i];
  5857. if (other->prio > pool->prio)
  5858. other->prio--;
  5859. }
  5860. if (pool->pool_no < last_pool) {
  5861. /* Swap the last pool for this one */
  5862. (pools[last_pool])->pool_no = pool->pool_no;
  5863. pools[pool->pool_no] = pools[last_pool];
  5864. }
  5865. /* Give it an invalid number */
  5866. pool->pool_no = total_pools;
  5867. pool->removed = true;
  5868. pool->has_stratum = false;
  5869. total_pools--;
  5870. }
  5871. /* add a mutex if this needs to be thread safe in the future */
  5872. static struct JE {
  5873. char *buf;
  5874. struct JE *next;
  5875. } *jedata = NULL;
  5876. static void json_escape_free()
  5877. {
  5878. struct JE *jeptr = jedata;
  5879. struct JE *jenext;
  5880. jedata = NULL;
  5881. while (jeptr) {
  5882. jenext = jeptr->next;
  5883. free(jeptr->buf);
  5884. free(jeptr);
  5885. jeptr = jenext;
  5886. }
  5887. }
  5888. static
  5889. char *json_escape(const char *str)
  5890. {
  5891. struct JE *jeptr;
  5892. char *buf, *ptr;
  5893. /* 2x is the max, may as well just allocate that */
  5894. ptr = buf = malloc(strlen(str) * 2 + 1);
  5895. jeptr = malloc(sizeof(*jeptr));
  5896. jeptr->buf = buf;
  5897. jeptr->next = jedata;
  5898. jedata = jeptr;
  5899. while (*str) {
  5900. if (*str == '\\' || *str == '"')
  5901. *(ptr++) = '\\';
  5902. *(ptr++) = *(str++);
  5903. }
  5904. *ptr = '\0';
  5905. return buf;
  5906. }
  5907. static
  5908. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5909. {
  5910. if (!elist)
  5911. return;
  5912. static struct string_elist *entry;
  5913. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5914. bool first = true;
  5915. DL_FOREACH(elist, entry)
  5916. {
  5917. const char * const s = entry->string;
  5918. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5919. first = false;
  5920. }
  5921. fprintf(fcfg, "\n]");
  5922. }
  5923. void write_config(FILE *fcfg)
  5924. {
  5925. int i;
  5926. /* Write pool values */
  5927. fputs("{\n\"pools\" : [", fcfg);
  5928. for(i = 0; i < total_pools; i++) {
  5929. struct pool *pool = pools[i];
  5930. if (pool->quota != 1) {
  5931. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5932. pool->quota,
  5933. json_escape(pool->rpc_url));
  5934. } else {
  5935. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5936. json_escape(pool->rpc_url));
  5937. }
  5938. if (pool->rpc_proxy)
  5939. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5940. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5941. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5942. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5943. if (pool->force_rollntime)
  5944. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5945. fprintf(fcfg, "\n\t}");
  5946. }
  5947. fputs("\n]\n", fcfg);
  5948. #ifdef HAVE_OPENCL
  5949. write_config_opencl(fcfg);
  5950. #endif
  5951. #ifdef WANT_CPUMINE
  5952. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5953. #endif
  5954. /* Simple bool and int options */
  5955. struct opt_table *opt;
  5956. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5957. char *p, *name = strdup(opt->names);
  5958. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5959. if (p[1] != '-')
  5960. continue;
  5961. if (opt->type & OPT_NOARG &&
  5962. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5963. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5964. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5965. if (opt->type & OPT_HASARG &&
  5966. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5967. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5968. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5969. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5970. opt->desc != opt_hidden &&
  5971. 0 <= *(int *)opt->u.arg)
  5972. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5973. }
  5974. }
  5975. /* Special case options */
  5976. if (request_target_str)
  5977. {
  5978. if (request_pdiff == (long)request_pdiff)
  5979. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5980. else
  5981. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5982. }
  5983. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5984. if (pool_strategy == POOL_BALANCE)
  5985. fputs(",\n\"balance\" : true", fcfg);
  5986. if (pool_strategy == POOL_LOADBALANCE)
  5987. fputs(",\n\"load-balance\" : true", fcfg);
  5988. if (pool_strategy == POOL_ROUNDROBIN)
  5989. fputs(",\n\"round-robin\" : true", fcfg);
  5990. if (pool_strategy == POOL_ROTATE)
  5991. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5992. #if defined(unix) || defined(__APPLE__)
  5993. if (opt_stderr_cmd && *opt_stderr_cmd)
  5994. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5995. #endif // defined(unix)
  5996. if (opt_kernel_path && *opt_kernel_path) {
  5997. char *kpath = strdup(opt_kernel_path);
  5998. if (kpath[strlen(kpath)-1] == '/')
  5999. kpath[strlen(kpath)-1] = 0;
  6000. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  6001. free(kpath);
  6002. }
  6003. if (schedstart.enable)
  6004. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  6005. if (schedstop.enable)
  6006. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  6007. if (opt_socks_proxy && *opt_socks_proxy)
  6008. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  6009. _write_config_string_elist(fcfg, "scan", scan_devices);
  6010. #ifdef USE_LIBMICROHTTPD
  6011. if (httpsrv_port != -1)
  6012. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  6013. #endif
  6014. #ifdef USE_LIBEVENT
  6015. if (stratumsrv_port != -1)
  6016. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  6017. #endif
  6018. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  6019. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  6020. if (opt_api_allow)
  6021. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  6022. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  6023. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  6024. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  6025. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  6026. if (*opt_api_mcast_des)
  6027. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  6028. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  6029. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  6030. if (opt_api_groups)
  6031. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  6032. fputs("\n}\n", fcfg);
  6033. json_escape_free();
  6034. }
  6035. void zero_bestshare(void)
  6036. {
  6037. int i;
  6038. best_diff = 0;
  6039. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  6040. for (i = 0; i < total_pools; i++) {
  6041. struct pool *pool = pools[i];
  6042. pool->best_diff = 0;
  6043. }
  6044. }
  6045. void zero_stats(void)
  6046. {
  6047. int i;
  6048. applog(LOG_DEBUG, "Zeroing stats");
  6049. cgtime(&total_tv_start);
  6050. miner_started = total_tv_start;
  6051. total_rolling = 0;
  6052. total_mhashes_done = 0;
  6053. total_getworks = 0;
  6054. total_accepted = 0;
  6055. total_rejected = 0;
  6056. hw_errors = 0;
  6057. total_stale = 0;
  6058. total_discarded = 0;
  6059. total_bytes_rcvd = total_bytes_sent = 0;
  6060. new_blocks = 0;
  6061. local_work = 0;
  6062. total_go = 0;
  6063. total_ro = 0;
  6064. total_secs = 1.0;
  6065. total_diff1 = 0;
  6066. total_bad_diff1 = 0;
  6067. found_blocks = 0;
  6068. total_diff_accepted = 0;
  6069. total_diff_rejected = 0;
  6070. total_diff_stale = 0;
  6071. #ifdef HAVE_CURSES
  6072. awidth = rwidth = swidth = hwwidth = 1;
  6073. #endif
  6074. for (i = 0; i < total_pools; i++) {
  6075. struct pool *pool = pools[i];
  6076. pool->getwork_requested = 0;
  6077. pool->accepted = 0;
  6078. pool->rejected = 0;
  6079. pool->solved = 0;
  6080. pool->getwork_requested = 0;
  6081. pool->stale_shares = 0;
  6082. pool->discarded_work = 0;
  6083. pool->getfail_occasions = 0;
  6084. pool->remotefail_occasions = 0;
  6085. pool->last_share_time = 0;
  6086. pool->diff1 = 0;
  6087. pool->diff_accepted = 0;
  6088. pool->diff_rejected = 0;
  6089. pool->diff_stale = 0;
  6090. pool->last_share_diff = 0;
  6091. pool->cgminer_stats.start_tv = total_tv_start;
  6092. pool->cgminer_stats.getwork_calls = 0;
  6093. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6094. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6095. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6096. pool->cgminer_pool_stats.getwork_calls = 0;
  6097. pool->cgminer_pool_stats.getwork_attempts = 0;
  6098. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6099. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  6100. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  6101. pool->cgminer_pool_stats.min_diff = 0;
  6102. pool->cgminer_pool_stats.max_diff = 0;
  6103. pool->cgminer_pool_stats.min_diff_count = 0;
  6104. pool->cgminer_pool_stats.max_diff_count = 0;
  6105. pool->cgminer_pool_stats.times_sent = 0;
  6106. pool->cgminer_pool_stats.bytes_sent = 0;
  6107. pool->cgminer_pool_stats.net_bytes_sent = 0;
  6108. pool->cgminer_pool_stats.times_received = 0;
  6109. pool->cgminer_pool_stats.bytes_received = 0;
  6110. pool->cgminer_pool_stats.net_bytes_received = 0;
  6111. }
  6112. zero_bestshare();
  6113. for (i = 0; i < total_devices; ++i) {
  6114. struct cgpu_info *cgpu = get_devices(i);
  6115. mutex_lock(&hash_lock);
  6116. cgpu->total_mhashes = 0;
  6117. cgpu->accepted = 0;
  6118. cgpu->rejected = 0;
  6119. cgpu->stale = 0;
  6120. cgpu->hw_errors = 0;
  6121. cgpu->utility = 0.0;
  6122. cgpu->utility_diff1 = 0;
  6123. cgpu->last_share_pool_time = 0;
  6124. cgpu->bad_diff1 = 0;
  6125. cgpu->diff1 = 0;
  6126. cgpu->diff_accepted = 0;
  6127. cgpu->diff_rejected = 0;
  6128. cgpu->diff_stale = 0;
  6129. cgpu->last_share_diff = 0;
  6130. cgpu->thread_fail_init_count = 0;
  6131. cgpu->thread_zero_hash_count = 0;
  6132. cgpu->thread_fail_queue_count = 0;
  6133. cgpu->dev_sick_idle_60_count = 0;
  6134. cgpu->dev_dead_idle_600_count = 0;
  6135. cgpu->dev_nostart_count = 0;
  6136. cgpu->dev_over_heat_count = 0;
  6137. cgpu->dev_thermal_cutoff_count = 0;
  6138. cgpu->dev_comms_error_count = 0;
  6139. cgpu->dev_throttle_count = 0;
  6140. cgpu->cgminer_stats.start_tv = total_tv_start;
  6141. cgpu->cgminer_stats.getwork_calls = 0;
  6142. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6143. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6144. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6145. mutex_unlock(&hash_lock);
  6146. }
  6147. }
  6148. #ifdef HAVE_CURSES
  6149. static
  6150. void loginput_mode(const int size)
  6151. {
  6152. clear_logwin();
  6153. loginput_size = size;
  6154. check_winsizes();
  6155. }
  6156. static void display_pools(void)
  6157. {
  6158. struct pool *pool;
  6159. int selected, i, j;
  6160. char input;
  6161. loginput_mode(7 + total_pools);
  6162. immedok(logwin, true);
  6163. updated:
  6164. for (j = 0; j < total_pools; j++) {
  6165. for (i = 0; i < total_pools; i++) {
  6166. pool = pools[i];
  6167. if (pool->prio != j)
  6168. continue;
  6169. if (pool == current_pool())
  6170. wattron(logwin, A_BOLD);
  6171. if (pool->enabled != POOL_ENABLED)
  6172. wattron(logwin, A_DIM);
  6173. wlogprint("%d: ", pool->prio);
  6174. switch (pool->enabled) {
  6175. case POOL_ENABLED:
  6176. wlogprint("Enabled ");
  6177. break;
  6178. case POOL_DISABLED:
  6179. wlogprint("Disabled ");
  6180. break;
  6181. case POOL_REJECTING:
  6182. wlogprint("Rejectin ");
  6183. break;
  6184. }
  6185. _wlogprint(pool_proto_str(pool));
  6186. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6187. pool->quota,
  6188. pool->pool_no,
  6189. pool->rpc_url, pool->rpc_user);
  6190. wattroff(logwin, A_BOLD | A_DIM);
  6191. break; //for (i = 0; i < total_pools; i++)
  6192. }
  6193. }
  6194. retry:
  6195. wlogprint("\nCurrent pool management strategy: %s\n",
  6196. strategies[pool_strategy].s);
  6197. if (pool_strategy == POOL_ROTATE)
  6198. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6199. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6200. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6201. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6202. wlogprint("Or press any other key to continue\n");
  6203. logwin_update();
  6204. input = getch();
  6205. if (!strncasecmp(&input, "a", 1)) {
  6206. if (opt_benchmark)
  6207. {
  6208. wlogprint("Cannot add pools in benchmark mode");
  6209. goto retry;
  6210. }
  6211. input_pool(true);
  6212. goto updated;
  6213. } else if (!strncasecmp(&input, "r", 1)) {
  6214. if (total_pools <= 1) {
  6215. wlogprint("Cannot remove last pool");
  6216. goto retry;
  6217. }
  6218. selected = curses_int("Select pool number");
  6219. if (selected < 0 || selected >= total_pools) {
  6220. wlogprint("Invalid selection\n");
  6221. goto retry;
  6222. }
  6223. pool = pools[selected];
  6224. if (pool == current_pool())
  6225. switch_pools(NULL);
  6226. if (pool == current_pool()) {
  6227. wlogprint("Unable to remove pool due to activity\n");
  6228. goto retry;
  6229. }
  6230. disable_pool(pool);
  6231. remove_pool(pool);
  6232. goto updated;
  6233. } else if (!strncasecmp(&input, "s", 1)) {
  6234. selected = curses_int("Select pool number");
  6235. if (selected < 0 || selected >= total_pools) {
  6236. wlogprint("Invalid selection\n");
  6237. goto retry;
  6238. }
  6239. pool = pools[selected];
  6240. enable_pool(pool);
  6241. switch_pools(pool);
  6242. goto updated;
  6243. } else if (!strncasecmp(&input, "d", 1)) {
  6244. if (enabled_pools <= 1) {
  6245. wlogprint("Cannot disable last pool");
  6246. goto retry;
  6247. }
  6248. selected = curses_int("Select pool number");
  6249. if (selected < 0 || selected >= total_pools) {
  6250. wlogprint("Invalid selection\n");
  6251. goto retry;
  6252. }
  6253. pool = pools[selected];
  6254. disable_pool(pool);
  6255. if (pool == current_pool())
  6256. switch_pools(NULL);
  6257. goto updated;
  6258. } else if (!strncasecmp(&input, "e", 1)) {
  6259. selected = curses_int("Select pool number");
  6260. if (selected < 0 || selected >= total_pools) {
  6261. wlogprint("Invalid selection\n");
  6262. goto retry;
  6263. }
  6264. pool = pools[selected];
  6265. enable_pool(pool);
  6266. if (pool->prio < current_pool()->prio)
  6267. switch_pools(pool);
  6268. goto updated;
  6269. } else if (!strncasecmp(&input, "c", 1)) {
  6270. for (i = 0; i <= TOP_STRATEGY; i++)
  6271. wlogprint("%d: %s\n", i, strategies[i].s);
  6272. selected = curses_int("Select strategy number type");
  6273. if (selected < 0 || selected > TOP_STRATEGY) {
  6274. wlogprint("Invalid selection\n");
  6275. goto retry;
  6276. }
  6277. if (selected == POOL_ROTATE) {
  6278. opt_rotate_period = curses_int("Select interval in minutes");
  6279. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6280. opt_rotate_period = 0;
  6281. wlogprint("Invalid selection\n");
  6282. goto retry;
  6283. }
  6284. }
  6285. pool_strategy = selected;
  6286. switch_pools(NULL);
  6287. goto updated;
  6288. } else if (!strncasecmp(&input, "i", 1)) {
  6289. selected = curses_int("Select pool number");
  6290. if (selected < 0 || selected >= total_pools) {
  6291. wlogprint("Invalid selection\n");
  6292. goto retry;
  6293. }
  6294. pool = pools[selected];
  6295. display_pool_summary(pool);
  6296. goto retry;
  6297. } else if (!strncasecmp(&input, "q", 1)) {
  6298. selected = curses_int("Select pool number");
  6299. if (selected < 0 || selected >= total_pools) {
  6300. wlogprint("Invalid selection\n");
  6301. goto retry;
  6302. }
  6303. pool = pools[selected];
  6304. selected = curses_int("Set quota");
  6305. if (selected < 0) {
  6306. wlogprint("Invalid negative quota\n");
  6307. goto retry;
  6308. }
  6309. pool->quota = selected;
  6310. adjust_quota_gcd();
  6311. goto updated;
  6312. } else if (!strncasecmp(&input, "f", 1)) {
  6313. opt_fail_only ^= true;
  6314. goto updated;
  6315. } else if (!strncasecmp(&input, "p", 1)) {
  6316. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6317. if (!prilist)
  6318. {
  6319. wlogprint("Not changing priorities\n");
  6320. goto retry;
  6321. }
  6322. int res = prioritize_pools(prilist, &i);
  6323. free(prilist);
  6324. switch (res) {
  6325. case MSG_NOPOOL:
  6326. wlogprint("No pools\n");
  6327. goto retry;
  6328. case MSG_MISPID:
  6329. wlogprint("Missing pool id parameter\n");
  6330. goto retry;
  6331. case MSG_INVPID:
  6332. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6333. goto retry;
  6334. case MSG_DUPPID:
  6335. wlogprint("Duplicate pool specified %d\n", i);
  6336. goto retry;
  6337. case MSG_POOLPRIO:
  6338. default:
  6339. goto updated;
  6340. }
  6341. }
  6342. immedok(logwin, false);
  6343. loginput_mode(0);
  6344. }
  6345. static const char *summary_detail_level_str(void)
  6346. {
  6347. if (opt_compact)
  6348. return "compact";
  6349. if (opt_show_procs)
  6350. return "processors";
  6351. return "devices";
  6352. }
  6353. static void display_options(void)
  6354. {
  6355. int selected;
  6356. char input;
  6357. immedok(logwin, true);
  6358. loginput_mode(12);
  6359. retry:
  6360. clear_logwin();
  6361. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6362. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6363. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6364. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6365. opt_debug_console ? "on" : "off",
  6366. want_per_device_stats? "on" : "off",
  6367. opt_quiet ? "on" : "off",
  6368. opt_log_output ? "on" : "off",
  6369. opt_protocol ? "on" : "off",
  6370. opt_worktime ? "on" : "off",
  6371. summary_detail_level_str(),
  6372. opt_log_interval,
  6373. opt_weighed_stats ? "weighed" : "absolute");
  6374. wlogprint("Select an option or any other key to return\n");
  6375. logwin_update();
  6376. input = getch();
  6377. if (!strncasecmp(&input, "q", 1)) {
  6378. opt_quiet ^= true;
  6379. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6380. goto retry;
  6381. } else if (!strncasecmp(&input, "v", 1)) {
  6382. opt_log_output ^= true;
  6383. if (opt_log_output)
  6384. opt_quiet = false;
  6385. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6386. goto retry;
  6387. } else if (!strncasecmp(&input, "n", 1)) {
  6388. opt_log_output = false;
  6389. opt_debug_console = false;
  6390. opt_quiet = false;
  6391. opt_protocol = false;
  6392. opt_compact = false;
  6393. opt_show_procs = false;
  6394. devsummaryYOffset = 0;
  6395. want_per_device_stats = false;
  6396. wlogprint("Output mode reset to normal\n");
  6397. switch_logsize();
  6398. goto retry;
  6399. } else if (!strncasecmp(&input, "d", 1)) {
  6400. opt_debug = true;
  6401. opt_debug_console ^= true;
  6402. opt_log_output = opt_debug_console;
  6403. if (opt_debug_console)
  6404. opt_quiet = false;
  6405. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6406. goto retry;
  6407. } else if (!strncasecmp(&input, "m", 1)) {
  6408. if (opt_compact)
  6409. opt_compact = false;
  6410. else
  6411. if (!opt_show_procs)
  6412. opt_show_procs = true;
  6413. else
  6414. {
  6415. opt_compact = true;
  6416. opt_show_procs = false;
  6417. devsummaryYOffset = 0;
  6418. }
  6419. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6420. switch_logsize();
  6421. goto retry;
  6422. } else if (!strncasecmp(&input, "p", 1)) {
  6423. want_per_device_stats ^= true;
  6424. opt_log_output = want_per_device_stats;
  6425. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6426. goto retry;
  6427. } else if (!strncasecmp(&input, "r", 1)) {
  6428. opt_protocol ^= true;
  6429. if (opt_protocol)
  6430. opt_quiet = false;
  6431. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6432. goto retry;
  6433. } else if (!strncasecmp(&input, "c", 1))
  6434. clear_logwin();
  6435. else if (!strncasecmp(&input, "l", 1)) {
  6436. selected = curses_int("Interval in seconds");
  6437. if (selected < 0 || selected > 9999) {
  6438. wlogprint("Invalid selection\n");
  6439. goto retry;
  6440. }
  6441. opt_log_interval = selected;
  6442. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6443. goto retry;
  6444. } else if (!strncasecmp(&input, "s", 1)) {
  6445. opt_realquiet = true;
  6446. } else if (!strncasecmp(&input, "w", 1)) {
  6447. opt_worktime ^= true;
  6448. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6449. goto retry;
  6450. } else if (!strncasecmp(&input, "t", 1)) {
  6451. opt_weighed_stats ^= true;
  6452. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6453. goto retry;
  6454. } else if (!strncasecmp(&input, "z", 1)) {
  6455. zero_stats();
  6456. goto retry;
  6457. }
  6458. immedok(logwin, false);
  6459. loginput_mode(0);
  6460. }
  6461. #endif
  6462. void default_save_file(char *filename)
  6463. {
  6464. #if defined(unix) || defined(__APPLE__)
  6465. if (getenv("HOME") && *getenv("HOME")) {
  6466. strcpy(filename, getenv("HOME"));
  6467. strcat(filename, "/");
  6468. }
  6469. else
  6470. strcpy(filename, "");
  6471. strcat(filename, ".bfgminer/");
  6472. mkdir(filename, 0777);
  6473. #else
  6474. strcpy(filename, "");
  6475. #endif
  6476. strcat(filename, def_conf);
  6477. }
  6478. #ifdef HAVE_CURSES
  6479. static void set_options(void)
  6480. {
  6481. int selected;
  6482. char input;
  6483. immedok(logwin, true);
  6484. loginput_mode(8);
  6485. retry:
  6486. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6487. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6488. "[W]rite config file\n[B]FGMiner restart\n",
  6489. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6490. wlogprint("Select an option or any other key to return\n");
  6491. logwin_update();
  6492. input = getch();
  6493. if (!strncasecmp(&input, "q", 1)) {
  6494. selected = curses_int("Extra work items to queue");
  6495. if (selected < 0 || selected > 9999) {
  6496. wlogprint("Invalid selection\n");
  6497. goto retry;
  6498. }
  6499. opt_queue = selected;
  6500. goto retry;
  6501. } else if (!strncasecmp(&input, "l", 1)) {
  6502. if (want_longpoll)
  6503. stop_longpoll();
  6504. else
  6505. start_longpoll();
  6506. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6507. goto retry;
  6508. } else if (!strncasecmp(&input, "s", 1)) {
  6509. selected = curses_int("Set scantime in seconds");
  6510. if (selected < 0 || selected > 9999) {
  6511. wlogprint("Invalid selection\n");
  6512. goto retry;
  6513. }
  6514. opt_scantime = selected;
  6515. goto retry;
  6516. } else if (!strncasecmp(&input, "e", 1)) {
  6517. selected = curses_int("Set expiry time in seconds");
  6518. if (selected < 0 || selected > 9999) {
  6519. wlogprint("Invalid selection\n");
  6520. goto retry;
  6521. }
  6522. opt_expiry = selected;
  6523. goto retry;
  6524. } else if (!strncasecmp(&input, "r", 1)) {
  6525. selected = curses_int("Retries before failing (-1 infinite)");
  6526. if (selected < -1 || selected > 9999) {
  6527. wlogprint("Invalid selection\n");
  6528. goto retry;
  6529. }
  6530. opt_retries = selected;
  6531. goto retry;
  6532. } else if (!strncasecmp(&input, "w", 1)) {
  6533. FILE *fcfg;
  6534. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6535. default_save_file(filename);
  6536. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6537. str = curses_input(prompt);
  6538. if (str) {
  6539. struct stat statbuf;
  6540. strcpy(filename, str);
  6541. free(str);
  6542. if (!stat(filename, &statbuf)) {
  6543. wlogprint("File exists, overwrite?\n");
  6544. input = getch();
  6545. if (strncasecmp(&input, "y", 1))
  6546. goto retry;
  6547. }
  6548. }
  6549. fcfg = fopen(filename, "w");
  6550. if (!fcfg) {
  6551. wlogprint("Cannot open or create file\n");
  6552. goto retry;
  6553. }
  6554. write_config(fcfg);
  6555. fclose(fcfg);
  6556. goto retry;
  6557. } else if (!strncasecmp(&input, "b", 1)) {
  6558. wlogprint("Are you sure?\n");
  6559. input = getch();
  6560. if (!strncasecmp(&input, "y", 1))
  6561. app_restart();
  6562. else
  6563. clear_logwin();
  6564. } else
  6565. clear_logwin();
  6566. loginput_mode(0);
  6567. immedok(logwin, false);
  6568. }
  6569. int scan_serial(const char *);
  6570. static
  6571. void _managetui_msg(const char *repr, const char **msg)
  6572. {
  6573. if (*msg)
  6574. {
  6575. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6576. wattron(logwin, A_BOLD);
  6577. wlogprint("%s", *msg);
  6578. wattroff(logwin, A_BOLD);
  6579. *msg = NULL;
  6580. }
  6581. logwin_update();
  6582. }
  6583. void manage_device(void)
  6584. {
  6585. char logline[256];
  6586. const char *msg = NULL;
  6587. struct cgpu_info *cgpu;
  6588. const struct device_drv *drv;
  6589. selecting_device = true;
  6590. immedok(logwin, true);
  6591. loginput_mode(12);
  6592. devchange:
  6593. if (unlikely(!total_devices))
  6594. {
  6595. clear_logwin();
  6596. wlogprint("(no devices)\n");
  6597. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6598. _managetui_msg("(none)", &msg);
  6599. int input = getch();
  6600. switch (input)
  6601. {
  6602. case '+': case '=': // add new device
  6603. goto addnew;
  6604. default:
  6605. goto out;
  6606. }
  6607. }
  6608. cgpu = devices[selected_device];
  6609. drv = cgpu->drv;
  6610. refresh_devstatus();
  6611. refresh:
  6612. clear_logwin();
  6613. wlogprint("Select processor to manage using up/down arrow keys\n");
  6614. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6615. wattron(logwin, A_BOLD);
  6616. wlogprint("%s", logline);
  6617. wattroff(logwin, A_BOLD);
  6618. wlogprint("\n");
  6619. if (cgpu->dev_manufacturer)
  6620. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6621. else
  6622. if (cgpu->dev_product)
  6623. wlogprint(" %s\n", cgpu->dev_product);
  6624. if (cgpu->dev_serial)
  6625. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6626. if (cgpu->kname)
  6627. wlogprint("Kernel: %s\n", cgpu->kname);
  6628. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6629. drv->proc_wlogprint_status(cgpu);
  6630. wlogprint("\n");
  6631. // TODO: Last share at TIMESTAMP on pool N
  6632. // TODO: Custom device info/commands
  6633. if (cgpu->deven != DEV_ENABLED)
  6634. wlogprint("[E]nable ");
  6635. if (cgpu->deven != DEV_DISABLED)
  6636. wlogprint("[D]isable ");
  6637. if (drv->identify_device)
  6638. wlogprint("[I]dentify ");
  6639. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6640. drv->proc_tui_wlogprint_choices(cgpu);
  6641. wlogprint("\n");
  6642. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6643. _managetui_msg(cgpu->proc_repr, &msg);
  6644. while (true)
  6645. {
  6646. int input = getch();
  6647. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6648. switch (input) {
  6649. case 'd': case 'D':
  6650. if (cgpu->deven == DEV_DISABLED)
  6651. msg = "Processor already disabled\n";
  6652. else
  6653. {
  6654. cgpu->deven = DEV_DISABLED;
  6655. msg = "Processor being disabled\n";
  6656. }
  6657. goto refresh;
  6658. case 'e': case 'E':
  6659. if (cgpu->deven == DEV_ENABLED)
  6660. msg = "Processor already enabled\n";
  6661. else
  6662. {
  6663. proc_enable(cgpu);
  6664. msg = "Processor being enabled\n";
  6665. }
  6666. goto refresh;
  6667. case 'i': case 'I':
  6668. if (drv->identify_device && drv->identify_device(cgpu))
  6669. msg = "Identify command sent\n";
  6670. else
  6671. goto key_default;
  6672. goto refresh;
  6673. case KEY_DOWN:
  6674. if (selected_device >= total_devices - 1)
  6675. break;
  6676. ++selected_device;
  6677. goto devchange;
  6678. case KEY_UP:
  6679. if (selected_device <= 0)
  6680. break;
  6681. --selected_device;
  6682. goto devchange;
  6683. case KEY_NPAGE:
  6684. {
  6685. if (selected_device >= total_devices - 1)
  6686. break;
  6687. struct cgpu_info *mdev = devices[selected_device]->device;
  6688. do {
  6689. ++selected_device;
  6690. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6691. goto devchange;
  6692. }
  6693. case KEY_PPAGE:
  6694. {
  6695. if (selected_device <= 0)
  6696. break;
  6697. struct cgpu_info *mdev = devices[selected_device]->device;
  6698. do {
  6699. --selected_device;
  6700. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6701. goto devchange;
  6702. }
  6703. case '/': case '?': // find device
  6704. {
  6705. static char *pattern = NULL;
  6706. char *newpattern = curses_input("Enter pattern");
  6707. if (newpattern)
  6708. {
  6709. free(pattern);
  6710. pattern = newpattern;
  6711. }
  6712. else
  6713. if (!pattern)
  6714. pattern = calloc(1, 1);
  6715. int match = cgpu_search(pattern, selected_device + 1);
  6716. if (match == -1)
  6717. {
  6718. msg = "Couldn't find device\n";
  6719. goto refresh;
  6720. }
  6721. selected_device = match;
  6722. goto devchange;
  6723. }
  6724. case '+': case '=': // add new device
  6725. {
  6726. addnew:
  6727. clear_logwin();
  6728. _wlogprint(
  6729. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6730. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6731. "For example: erupter:"
  6732. #ifdef WIN32
  6733. "\\\\.\\COM40"
  6734. #elif defined(__APPLE__)
  6735. "/dev/cu.SLAB_USBtoUART"
  6736. #else
  6737. "/dev/ttyUSB39"
  6738. #endif
  6739. "\n"
  6740. );
  6741. char *scanser = curses_input("Enter target");
  6742. if (scan_serial(scanser))
  6743. {
  6744. selected_device = total_devices - 1;
  6745. msg = "Device scan succeeded\n";
  6746. }
  6747. else
  6748. msg = "No new devices found\n";
  6749. goto devchange;
  6750. }
  6751. case 'Q': case 'q':
  6752. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6753. case '\x1b': // ESC
  6754. case KEY_ENTER:
  6755. case '\r': // Ctrl-M on Windows, with nonl
  6756. #ifdef PADENTER
  6757. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6758. #endif
  6759. case '\n':
  6760. goto out;
  6761. default:
  6762. ;
  6763. key_default:
  6764. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6765. {
  6766. msg = drv->proc_tui_handle_choice(cgpu, input);
  6767. if (msg)
  6768. goto refresh;
  6769. }
  6770. }
  6771. }
  6772. out:
  6773. selecting_device = false;
  6774. loginput_mode(0);
  6775. immedok(logwin, false);
  6776. }
  6777. void show_help(void)
  6778. {
  6779. loginput_mode(11);
  6780. // NOTE: wlogprint is a macro with a buffer limit
  6781. _wlogprint(
  6782. "LU: oldest explicit work update currently being used for new work\n"
  6783. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6784. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6785. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6786. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6787. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6788. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6789. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6790. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6791. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6792. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6793. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6794. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6795. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6796. "\n"
  6797. "devices/processors hashing (only for totals line), hottest temperature\n"
  6798. );
  6799. wlogprint(
  6800. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6801. , opt_log_interval);
  6802. _wlogprint(
  6803. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6804. "HW: hardware errors / % nonces invalid\n"
  6805. "\n"
  6806. "Press any key to clear"
  6807. );
  6808. logwin_update();
  6809. getch();
  6810. loginput_mode(0);
  6811. }
  6812. static void *input_thread(void __maybe_unused *userdata)
  6813. {
  6814. RenameThread("input");
  6815. if (!curses_active)
  6816. return NULL;
  6817. while (1) {
  6818. int input;
  6819. input = getch();
  6820. switch (input) {
  6821. case 'h': case 'H': case '?':
  6822. case KEY_F(1):
  6823. show_help();
  6824. break;
  6825. case 'q': case 'Q':
  6826. kill_work();
  6827. return NULL;
  6828. case 'd': case 'D':
  6829. display_options();
  6830. break;
  6831. case 'm': case 'M':
  6832. manage_device();
  6833. break;
  6834. case 'p': case 'P':
  6835. display_pools();
  6836. break;
  6837. case 's': case 'S':
  6838. set_options();
  6839. break;
  6840. #ifdef HAVE_CURSES
  6841. case KEY_DOWN:
  6842. {
  6843. const int visible_lines = logcursor - devcursor;
  6844. const int invisible_lines = total_lines - visible_lines;
  6845. if (devsummaryYOffset <= -invisible_lines)
  6846. break;
  6847. devsummaryYOffset -= 2;
  6848. }
  6849. case KEY_UP:
  6850. if (devsummaryYOffset == 0)
  6851. break;
  6852. ++devsummaryYOffset;
  6853. refresh_devstatus();
  6854. break;
  6855. case KEY_NPAGE:
  6856. {
  6857. const int visible_lines = logcursor - devcursor;
  6858. const int invisible_lines = total_lines - visible_lines;
  6859. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6860. devsummaryYOffset = -invisible_lines;
  6861. else
  6862. devsummaryYOffset -= visible_lines;
  6863. refresh_devstatus();
  6864. break;
  6865. }
  6866. case KEY_PPAGE:
  6867. {
  6868. const int visible_lines = logcursor - devcursor;
  6869. if (devsummaryYOffset + visible_lines >= 0)
  6870. devsummaryYOffset = 0;
  6871. else
  6872. devsummaryYOffset += visible_lines;
  6873. refresh_devstatus();
  6874. break;
  6875. }
  6876. #endif
  6877. }
  6878. if (opt_realquiet) {
  6879. disable_curses();
  6880. break;
  6881. }
  6882. }
  6883. return NULL;
  6884. }
  6885. #endif
  6886. static void *api_thread(void *userdata)
  6887. {
  6888. struct thr_info *mythr = userdata;
  6889. pthread_detach(pthread_self());
  6890. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6891. RenameThread("rpc");
  6892. api(api_thr_id);
  6893. mythr->has_pth = false;
  6894. return NULL;
  6895. }
  6896. void thread_reportin(struct thr_info *thr)
  6897. {
  6898. cgtime(&thr->last);
  6899. thr->cgpu->status = LIFE_WELL;
  6900. thr->getwork = 0;
  6901. thr->cgpu->device_last_well = time(NULL);
  6902. }
  6903. void thread_reportout(struct thr_info *thr)
  6904. {
  6905. thr->getwork = time(NULL);
  6906. }
  6907. static void hashmeter(int thr_id, struct timeval *diff,
  6908. uint64_t hashes_done)
  6909. {
  6910. char logstatusline[256];
  6911. struct timeval temp_tv_end, total_diff;
  6912. double secs;
  6913. double local_secs;
  6914. static double local_mhashes_done = 0;
  6915. double local_mhashes = (double)hashes_done / 1000000.0;
  6916. bool showlog = false;
  6917. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6918. char rejpcbuf[6];
  6919. char bnbuf[6];
  6920. struct thr_info *thr;
  6921. /* Update the last time this thread reported in */
  6922. if (thr_id >= 0) {
  6923. thr = get_thread(thr_id);
  6924. cgtime(&(thr->last));
  6925. thr->cgpu->device_last_well = time(NULL);
  6926. }
  6927. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6928. /* So we can call hashmeter from a non worker thread */
  6929. if (thr_id >= 0) {
  6930. struct cgpu_info *cgpu = thr->cgpu;
  6931. int threadobj = cgpu->threads ?: 1;
  6932. double thread_rolling = 0.0;
  6933. int i;
  6934. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6935. thr_id, hashes_done, hashes_done / 1000 / secs);
  6936. /* Rolling average for each thread and each device */
  6937. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6938. for (i = 0; i < threadobj; i++)
  6939. thread_rolling += cgpu->thr[i]->rolling;
  6940. mutex_lock(&hash_lock);
  6941. decay_time(&cgpu->rolling, thread_rolling, secs);
  6942. cgpu->total_mhashes += local_mhashes;
  6943. mutex_unlock(&hash_lock);
  6944. // If needed, output detailed, per-device stats
  6945. if (want_per_device_stats) {
  6946. struct timeval now;
  6947. struct timeval elapsed;
  6948. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6949. cgtime(&now);
  6950. timersub(&now, last_msg_tv, &elapsed);
  6951. if (opt_log_interval <= elapsed.tv_sec) {
  6952. struct cgpu_info *cgpu = thr->cgpu;
  6953. char logline[255];
  6954. *last_msg_tv = now;
  6955. get_statline(logline, sizeof(logline), cgpu);
  6956. if (!curses_active) {
  6957. printf("%s \r", logline);
  6958. fflush(stdout);
  6959. } else
  6960. applog(LOG_INFO, "%s", logline);
  6961. }
  6962. }
  6963. }
  6964. /* Totals are updated by all threads so can race without locking */
  6965. mutex_lock(&hash_lock);
  6966. cgtime(&temp_tv_end);
  6967. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6968. total_mhashes_done += local_mhashes;
  6969. local_mhashes_done += local_mhashes;
  6970. /* Only update with opt_log_interval */
  6971. if (total_diff.tv_sec < opt_log_interval)
  6972. goto out_unlock;
  6973. showlog = true;
  6974. cgtime(&total_tv_end);
  6975. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6976. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6977. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6978. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6979. total_secs = (double)total_diff.tv_sec +
  6980. ((double)total_diff.tv_usec / 1000000.0);
  6981. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6982. multi_format_unit_array2(
  6983. ((char*[]){cHr, aHr, uHr}),
  6984. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  6985. true, "h/s", H2B_SHORT,
  6986. 3,
  6987. 1e6*total_rolling,
  6988. 1e6*total_mhashes_done / total_secs,
  6989. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6990. int ui_accepted, ui_rejected, ui_stale;
  6991. if (opt_weighed_stats)
  6992. {
  6993. ui_accepted = total_diff_accepted;
  6994. ui_rejected = total_diff_rejected;
  6995. ui_stale = total_diff_stale;
  6996. }
  6997. else
  6998. {
  6999. ui_accepted = total_accepted;
  7000. ui_rejected = total_rejected;
  7001. ui_stale = total_stale;
  7002. }
  7003. #ifdef HAVE_CURSES
  7004. if (curses_active_locked()) {
  7005. float temp = 0;
  7006. struct cgpu_info *proc, *last_working_dev = NULL;
  7007. int i, working_devs = 0, working_procs = 0;
  7008. int divx;
  7009. bool bad = false;
  7010. // Find the highest temperature of all processors
  7011. for (i = 0; i < total_devices; ++i)
  7012. {
  7013. proc = get_devices(i);
  7014. if (proc->temp > temp)
  7015. temp = proc->temp;
  7016. if (unlikely(proc->deven == DEV_DISABLED))
  7017. ; // Just need to block it off from both conditions
  7018. else
  7019. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  7020. {
  7021. if (proc->rolling > .1)
  7022. {
  7023. ++working_procs;
  7024. if (proc->device != last_working_dev)
  7025. {
  7026. ++working_devs;
  7027. last_working_dev = proc->device;
  7028. }
  7029. }
  7030. }
  7031. else
  7032. bad = true;
  7033. }
  7034. if (working_devs == working_procs)
  7035. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  7036. else
  7037. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  7038. divx = 7;
  7039. if (opt_show_procs && !opt_compact)
  7040. ++divx;
  7041. if (bad)
  7042. {
  7043. divx += sizeof(U8_BAD_START)-1;
  7044. strcpy(&statusline[divx], U8_BAD_END);
  7045. divx += sizeof(U8_BAD_END)-1;
  7046. }
  7047. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  7048. format_statline(statusline, sizeof(statusline),
  7049. cHr, aHr,
  7050. uHr,
  7051. ui_accepted,
  7052. ui_rejected,
  7053. ui_stale,
  7054. total_diff_rejected + total_diff_stale, total_diff_accepted,
  7055. hw_errors,
  7056. total_bad_diff1, total_bad_diff1 + total_diff1);
  7057. unlock_curses();
  7058. }
  7059. #endif
  7060. // Add a space
  7061. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  7062. uHr[5] = ' ';
  7063. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  7064. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  7065. snprintf(logstatusline, sizeof(logstatusline),
  7066. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  7067. want_per_device_stats ? "ALL " : "",
  7068. opt_log_interval,
  7069. cHr, aHr,
  7070. uHr,
  7071. ui_accepted,
  7072. ui_rejected,
  7073. ui_stale,
  7074. rejpcbuf,
  7075. hw_errors,
  7076. bnbuf
  7077. );
  7078. local_mhashes_done = 0;
  7079. out_unlock:
  7080. mutex_unlock(&hash_lock);
  7081. if (showlog) {
  7082. if (!curses_active) {
  7083. printf("%s \r", logstatusline);
  7084. fflush(stdout);
  7085. } else
  7086. applog(LOG_INFO, "%s", logstatusline);
  7087. }
  7088. }
  7089. void hashmeter2(struct thr_info *thr)
  7090. {
  7091. struct timeval tv_now, tv_elapsed;
  7092. timerclear(&thr->tv_hashes_done);
  7093. cgtime(&tv_now);
  7094. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  7095. /* Update the hashmeter at most 5 times per second */
  7096. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  7097. tv_elapsed.tv_sec >= opt_log_interval) {
  7098. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  7099. thr->hashes_done = 0;
  7100. thr->tv_lastupdate = tv_now;
  7101. }
  7102. }
  7103. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  7104. struct stratum_share *sshare)
  7105. {
  7106. struct work *work = sshare->work;
  7107. share_result(val, res_val, err_val, work, false, "");
  7108. }
  7109. /* Parses stratum json responses and tries to find the id that the request
  7110. * matched to and treat it accordingly. */
  7111. bool parse_stratum_response(struct pool *pool, char *s)
  7112. {
  7113. json_t *val = NULL, *err_val, *res_val, *id_val;
  7114. struct stratum_share *sshare;
  7115. json_error_t err;
  7116. bool ret = false;
  7117. int id;
  7118. val = JSON_LOADS(s, &err);
  7119. if (!val) {
  7120. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7121. goto out;
  7122. }
  7123. res_val = json_object_get(val, "result");
  7124. err_val = json_object_get(val, "error");
  7125. id_val = json_object_get(val, "id");
  7126. if (json_is_null(id_val) || !id_val) {
  7127. char *ss;
  7128. if (err_val)
  7129. ss = json_dumps(err_val, JSON_INDENT(3));
  7130. else
  7131. ss = strdup("(unknown reason)");
  7132. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7133. free(ss);
  7134. goto out;
  7135. }
  7136. if (!json_is_integer(id_val)) {
  7137. if (json_is_string(id_val)
  7138. && !strncmp(json_string_value(id_val), "txlist", 6))
  7139. {
  7140. const bool is_array = json_is_array(res_val);
  7141. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7142. is_array ? "transaction list" : "no-transaction-list response",
  7143. pool->pool_no, &json_string_value(id_val)[6]);
  7144. if (!is_array)
  7145. {
  7146. // No need to wait for a timeout
  7147. timer_unset(&pool->swork.tv_transparency);
  7148. pool_set_opaque(pool, true);
  7149. goto fishy;
  7150. }
  7151. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7152. // We only care about a transaction list for the current job id
  7153. goto fishy;
  7154. // Check that the transactions actually hash to the merkle links
  7155. {
  7156. unsigned maxtx = 1 << pool->swork.merkles;
  7157. unsigned mintx = maxtx >> 1;
  7158. --maxtx;
  7159. unsigned acttx = (unsigned)json_array_size(res_val);
  7160. if (acttx < mintx || acttx > maxtx) {
  7161. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7162. pool->pool_no, acttx, mintx, maxtx);
  7163. goto fishy;
  7164. }
  7165. // TODO: Check hashes match actual merkle links
  7166. }
  7167. pool_set_opaque(pool, false);
  7168. timer_unset(&pool->swork.tv_transparency);
  7169. fishy:
  7170. ret = true;
  7171. }
  7172. goto out;
  7173. }
  7174. id = json_integer_value(id_val);
  7175. mutex_lock(&sshare_lock);
  7176. HASH_FIND_INT(stratum_shares, &id, sshare);
  7177. if (sshare)
  7178. HASH_DEL(stratum_shares, sshare);
  7179. mutex_unlock(&sshare_lock);
  7180. if (!sshare) {
  7181. double pool_diff;
  7182. /* Since the share is untracked, we can only guess at what the
  7183. * work difficulty is based on the current pool diff. */
  7184. cg_rlock(&pool->data_lock);
  7185. pool_diff = target_diff(pool->swork.target);
  7186. cg_runlock(&pool->data_lock);
  7187. if (json_is_true(res_val)) {
  7188. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7189. /* We don't know what device this came from so we can't
  7190. * attribute the work to the relevant cgpu */
  7191. mutex_lock(&stats_lock);
  7192. total_accepted++;
  7193. pool->accepted++;
  7194. total_diff_accepted += pool_diff;
  7195. pool->diff_accepted += pool_diff;
  7196. mutex_unlock(&stats_lock);
  7197. } else {
  7198. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7199. mutex_lock(&stats_lock);
  7200. total_rejected++;
  7201. pool->rejected++;
  7202. total_diff_rejected += pool_diff;
  7203. pool->diff_rejected += pool_diff;
  7204. mutex_unlock(&stats_lock);
  7205. }
  7206. goto out;
  7207. }
  7208. else {
  7209. mutex_lock(&submitting_lock);
  7210. --total_submitting;
  7211. mutex_unlock(&submitting_lock);
  7212. }
  7213. stratum_share_result(val, res_val, err_val, sshare);
  7214. free_work(sshare->work);
  7215. free(sshare);
  7216. ret = true;
  7217. out:
  7218. if (val)
  7219. json_decref(val);
  7220. return ret;
  7221. }
  7222. static void shutdown_stratum(struct pool *pool)
  7223. {
  7224. // Shut down Stratum as if we never had it
  7225. pool->stratum_active = false;
  7226. pool->stratum_init = false;
  7227. pool->has_stratum = false;
  7228. shutdown(pool->sock, SHUT_RDWR);
  7229. free(pool->stratum_url);
  7230. if (pool->sockaddr_url == pool->stratum_url)
  7231. pool->sockaddr_url = NULL;
  7232. pool->stratum_url = NULL;
  7233. }
  7234. void clear_stratum_shares(struct pool *pool)
  7235. {
  7236. int my_mining_threads = mining_threads; // Cached outside of locking
  7237. struct stratum_share *sshare, *tmpshare;
  7238. struct work *work;
  7239. struct cgpu_info *cgpu;
  7240. double diff_cleared = 0;
  7241. double thr_diff_cleared[my_mining_threads];
  7242. int cleared = 0;
  7243. int thr_cleared[my_mining_threads];
  7244. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7245. for (int i = 0; i < my_mining_threads; ++i)
  7246. {
  7247. thr_diff_cleared[i] = 0;
  7248. thr_cleared[i] = 0;
  7249. }
  7250. mutex_lock(&sshare_lock);
  7251. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7252. work = sshare->work;
  7253. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7254. HASH_DEL(stratum_shares, sshare);
  7255. sharelog("disconnect", work);
  7256. diff_cleared += sshare->work->work_difficulty;
  7257. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7258. ++thr_cleared[work->thr_id];
  7259. free_work(sshare->work);
  7260. free(sshare);
  7261. cleared++;
  7262. }
  7263. }
  7264. mutex_unlock(&sshare_lock);
  7265. if (cleared) {
  7266. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7267. mutex_lock(&stats_lock);
  7268. pool->stale_shares += cleared;
  7269. total_stale += cleared;
  7270. pool->diff_stale += diff_cleared;
  7271. total_diff_stale += diff_cleared;
  7272. for (int i = 0; i < my_mining_threads; ++i)
  7273. if (thr_cleared[i])
  7274. {
  7275. cgpu = get_thr_cgpu(i);
  7276. cgpu->diff_stale += thr_diff_cleared[i];
  7277. cgpu->stale += thr_cleared[i];
  7278. }
  7279. mutex_unlock(&stats_lock);
  7280. mutex_lock(&submitting_lock);
  7281. total_submitting -= cleared;
  7282. mutex_unlock(&submitting_lock);
  7283. }
  7284. }
  7285. static void resubmit_stratum_shares(struct pool *pool)
  7286. {
  7287. struct stratum_share *sshare, *tmpshare;
  7288. struct work *work;
  7289. unsigned resubmitted = 0;
  7290. mutex_lock(&sshare_lock);
  7291. mutex_lock(&submitting_lock);
  7292. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7293. if (sshare->work->pool != pool)
  7294. continue;
  7295. HASH_DEL(stratum_shares, sshare);
  7296. work = sshare->work;
  7297. DL_APPEND(submit_waiting, work);
  7298. free(sshare);
  7299. ++resubmitted;
  7300. }
  7301. mutex_unlock(&submitting_lock);
  7302. mutex_unlock(&sshare_lock);
  7303. if (resubmitted) {
  7304. notifier_wake(submit_waiting_notifier);
  7305. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7306. }
  7307. }
  7308. static void clear_pool_work(struct pool *pool)
  7309. {
  7310. struct work *work, *tmp;
  7311. int cleared = 0;
  7312. mutex_lock(stgd_lock);
  7313. HASH_ITER(hh, staged_work, work, tmp) {
  7314. if (work->pool == pool) {
  7315. HASH_DEL(staged_work, work);
  7316. free_work(work);
  7317. cleared++;
  7318. staged_full = false;
  7319. }
  7320. }
  7321. mutex_unlock(stgd_lock);
  7322. }
  7323. static int cp_prio(void)
  7324. {
  7325. int prio;
  7326. cg_rlock(&control_lock);
  7327. prio = currentpool->prio;
  7328. cg_runlock(&control_lock);
  7329. return prio;
  7330. }
  7331. /* We only need to maintain a secondary pool connection when we need the
  7332. * capacity to get work from the backup pools while still on the primary */
  7333. static bool cnx_needed(struct pool *pool)
  7334. {
  7335. struct pool *cp;
  7336. if (pool->enabled != POOL_ENABLED)
  7337. return false;
  7338. /* Idle stratum pool needs something to kick it alive again */
  7339. if (pool->has_stratum && pool->idle)
  7340. return true;
  7341. /* Getwork pools without opt_fail_only need backup pools up to be able
  7342. * to leak shares */
  7343. cp = current_pool();
  7344. if (pool_actively_desired(pool, cp))
  7345. return true;
  7346. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7347. return true;
  7348. /* Keep the connection open to allow any stray shares to be submitted
  7349. * on switching pools for 2 minutes. */
  7350. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7351. return true;
  7352. /* If the pool has only just come to life and is higher priority than
  7353. * the current pool keep the connection open so we can fail back to
  7354. * it. */
  7355. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7356. return true;
  7357. if (pool_unworkable(cp))
  7358. return true;
  7359. /* We've run out of work, bring anything back to life. */
  7360. if (no_work)
  7361. return true;
  7362. return false;
  7363. }
  7364. static void wait_lpcurrent(struct pool *pool);
  7365. static void pool_resus(struct pool *pool);
  7366. static void gen_stratum_work(struct pool *pool, struct work *work);
  7367. static void stratum_resumed(struct pool *pool)
  7368. {
  7369. if (!pool->stratum_notify)
  7370. return;
  7371. if (pool_tclear(pool, &pool->idle)) {
  7372. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7373. pool_resus(pool);
  7374. }
  7375. }
  7376. static bool supports_resume(struct pool *pool)
  7377. {
  7378. bool ret;
  7379. cg_rlock(&pool->data_lock);
  7380. ret = (pool->sessionid != NULL);
  7381. cg_runlock(&pool->data_lock);
  7382. return ret;
  7383. }
  7384. /* One stratum thread per pool that has stratum waits on the socket checking
  7385. * for new messages and for the integrity of the socket connection. We reset
  7386. * the connection based on the integrity of the receive side only as the send
  7387. * side will eventually expire data it fails to send. */
  7388. static void *stratum_thread(void *userdata)
  7389. {
  7390. struct pool *pool = (struct pool *)userdata;
  7391. pthread_detach(pthread_self());
  7392. char threadname[20];
  7393. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7394. RenameThread(threadname);
  7395. srand(time(NULL) + (intptr_t)userdata);
  7396. while (42) {
  7397. struct timeval timeout;
  7398. int sel_ret;
  7399. fd_set rd;
  7400. char *s;
  7401. int sock;
  7402. if (unlikely(!pool->has_stratum))
  7403. break;
  7404. /* Check to see whether we need to maintain this connection
  7405. * indefinitely or just bring it up when we switch to this
  7406. * pool */
  7407. while (true)
  7408. {
  7409. sock = pool->sock;
  7410. if (sock == INVSOCK)
  7411. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7412. pool->pool_no);
  7413. else
  7414. if (!sock_full(pool) && !cnx_needed(pool))
  7415. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7416. pool->pool_no);
  7417. else
  7418. break;
  7419. suspend_stratum(pool);
  7420. clear_stratum_shares(pool);
  7421. clear_pool_work(pool);
  7422. wait_lpcurrent(pool);
  7423. if (!restart_stratum(pool)) {
  7424. pool_died(pool);
  7425. while (!restart_stratum(pool)) {
  7426. if (pool->removed)
  7427. goto out;
  7428. cgsleep_ms(30000);
  7429. }
  7430. }
  7431. }
  7432. FD_ZERO(&rd);
  7433. FD_SET(sock, &rd);
  7434. timeout.tv_sec = 120;
  7435. timeout.tv_usec = 0;
  7436. /* If we fail to receive any notify messages for 2 minutes we
  7437. * assume the connection has been dropped and treat this pool
  7438. * as dead */
  7439. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7440. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7441. s = NULL;
  7442. } else
  7443. s = recv_line(pool);
  7444. if (!s) {
  7445. if (!pool->has_stratum)
  7446. break;
  7447. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7448. pool->getfail_occasions++;
  7449. total_go++;
  7450. mutex_lock(&pool->stratum_lock);
  7451. pool->stratum_active = pool->stratum_notify = false;
  7452. pool->sock = INVSOCK;
  7453. mutex_unlock(&pool->stratum_lock);
  7454. /* If the socket to our stratum pool disconnects, all
  7455. * submissions need to be discarded or resent. */
  7456. if (!supports_resume(pool))
  7457. clear_stratum_shares(pool);
  7458. else
  7459. resubmit_stratum_shares(pool);
  7460. clear_pool_work(pool);
  7461. if (pool == current_pool())
  7462. restart_threads();
  7463. if (restart_stratum(pool))
  7464. continue;
  7465. shutdown_stratum(pool);
  7466. pool_died(pool);
  7467. break;
  7468. }
  7469. /* Check this pool hasn't died while being a backup pool and
  7470. * has not had its idle flag cleared */
  7471. stratum_resumed(pool);
  7472. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7473. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7474. free(s);
  7475. if (pool->swork.clean) {
  7476. struct work *work = make_work();
  7477. /* Generate a single work item to update the current
  7478. * block database */
  7479. pool->swork.clean = false;
  7480. gen_stratum_work(pool, work);
  7481. /* Try to extract block height from coinbase scriptSig */
  7482. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7483. unsigned char cb_height_sz;
  7484. cb_height_sz = bin_height[-1];
  7485. if (cb_height_sz == 3) {
  7486. // FIXME: The block number will overflow this by AD 2173
  7487. uint32_t block_id = ((uint32_t*)work->data)[1];
  7488. uint32_t height = 0;
  7489. memcpy(&height, bin_height, 3);
  7490. height = le32toh(height);
  7491. have_block_height(block_id, height);
  7492. }
  7493. pool->swork.work_restart_id =
  7494. ++pool->work_restart_id;
  7495. pool_update_work_restart_time(pool);
  7496. if (test_work_current(work)) {
  7497. /* Only accept a work update if this stratum
  7498. * connection is from the current pool */
  7499. struct pool * const cp = current_pool();
  7500. if (pool == cp)
  7501. restart_threads();
  7502. applog(
  7503. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7504. "Stratum from pool %d requested work update", pool->pool_no);
  7505. } else
  7506. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7507. free_work(work);
  7508. }
  7509. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7510. // More than 4 timmills past since requested transactions
  7511. timer_unset(&pool->swork.tv_transparency);
  7512. pool_set_opaque(pool, true);
  7513. }
  7514. }
  7515. out:
  7516. return NULL;
  7517. }
  7518. static void init_stratum_thread(struct pool *pool)
  7519. {
  7520. have_longpoll = true;
  7521. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7522. quit(1, "Failed to create stratum thread");
  7523. }
  7524. static void *longpoll_thread(void *userdata);
  7525. static bool stratum_works(struct pool *pool)
  7526. {
  7527. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7528. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7529. return false;
  7530. if (pool->stratum_active)
  7531. return true;
  7532. if (!initiate_stratum(pool))
  7533. return false;
  7534. return true;
  7535. }
  7536. static bool pool_active(struct pool *pool, bool pinging)
  7537. {
  7538. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7539. bool ret = false;
  7540. json_t *val;
  7541. CURL *curl;
  7542. int rolltime;
  7543. char *rpc_req;
  7544. struct work *work;
  7545. enum pool_protocol proto;
  7546. if (pool->stratum_init)
  7547. return pool->stratum_active;
  7548. timer_set_now(&tv_now);
  7549. if (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, &tv_now) < 60)
  7550. return true;
  7551. if (pool->idle && timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7552. return false;
  7553. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7554. /* This is the central point we activate stratum when we can */
  7555. curl = curl_easy_init();
  7556. if (unlikely(!curl)) {
  7557. applog(LOG_ERR, "CURL initialisation failed");
  7558. return false;
  7559. }
  7560. if (!(want_gbt || want_getwork))
  7561. goto nohttp;
  7562. work = make_work();
  7563. /* Probe for GBT support on first pass */
  7564. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7565. tryagain:
  7566. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7567. work->pool = pool;
  7568. if (!rpc_req)
  7569. goto out;
  7570. pool->probed = false;
  7571. cgtime(&tv_getwork);
  7572. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7573. true, false, &rolltime, pool, false);
  7574. cgtime(&tv_getwork_reply);
  7575. free(rpc_req);
  7576. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7577. * and if so, switch to that in preference to getwork if it works */
  7578. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7579. if (!pool->has_stratum) {
  7580. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7581. if (!pool->rpc_url)
  7582. pool->rpc_url = strdup(pool->stratum_url);
  7583. pool->has_stratum = true;
  7584. }
  7585. free_work(work);
  7586. if (val)
  7587. json_decref(val);
  7588. retry_stratum:
  7589. curl_easy_cleanup(curl);
  7590. /* We create the stratum thread for each pool just after
  7591. * successful authorisation. Once the init flag has been set
  7592. * we never unset it and the stratum thread is responsible for
  7593. * setting/unsetting the active flag */
  7594. bool init = pool_tset(pool, &pool->stratum_init);
  7595. if (!init) {
  7596. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7597. if (ret)
  7598. {
  7599. detect_algo = 2;
  7600. init_stratum_thread(pool);
  7601. }
  7602. else
  7603. pool_tclear(pool, &pool->stratum_init);
  7604. return ret;
  7605. }
  7606. return pool->stratum_active;
  7607. }
  7608. else if (pool->has_stratum)
  7609. shutdown_stratum(pool);
  7610. if (val) {
  7611. bool rc;
  7612. json_t *res;
  7613. res = json_object_get(val, "result");
  7614. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7615. goto badwork;
  7616. work->rolltime = rolltime;
  7617. rc = work_decode(pool, work, val);
  7618. if (rc) {
  7619. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7620. pool->pool_no, pool->rpc_url);
  7621. work->pool = pool;
  7622. copy_time(&work->tv_getwork, &tv_getwork);
  7623. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7624. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7625. calc_diff(work, 0);
  7626. update_last_work(work);
  7627. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7628. stage_work(work);
  7629. total_getworks++;
  7630. pool->getwork_requested++;
  7631. ret = true;
  7632. cgtime(&pool->tv_idle);
  7633. } else {
  7634. badwork:
  7635. json_decref(val);
  7636. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7637. pool->pool_no, pool->rpc_url);
  7638. pool->proto = proto = pool_protocol_fallback(proto);
  7639. if (PLP_NONE != proto)
  7640. goto tryagain;
  7641. free_work(work);
  7642. goto out;
  7643. }
  7644. json_decref(val);
  7645. if (proto != pool->proto) {
  7646. pool->proto = proto;
  7647. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7648. }
  7649. if (pool->lp_url)
  7650. goto out;
  7651. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7652. const struct blktmpl_longpoll_req *lp;
  7653. if (work->tr && (lp = blktmpl_get_longpoll(work->tr->tmpl))) {
  7654. // NOTE: work_decode takes care of lp id
  7655. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7656. if (!pool->lp_url)
  7657. {
  7658. ret = false;
  7659. goto out;
  7660. }
  7661. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7662. }
  7663. else
  7664. if (pool->hdr_path && want_getwork) {
  7665. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7666. if (!pool->lp_url)
  7667. {
  7668. ret = false;
  7669. goto out;
  7670. }
  7671. pool->lp_proto = PLP_GETWORK;
  7672. } else
  7673. pool->lp_url = NULL;
  7674. if (want_longpoll && !pool->lp_started) {
  7675. pool->lp_started = true;
  7676. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7677. quit(1, "Failed to create pool longpoll thread");
  7678. }
  7679. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7680. pool->proto = proto;
  7681. goto tryagain;
  7682. } else {
  7683. free_work(work);
  7684. nohttp:
  7685. /* If we failed to parse a getwork, this could be a stratum
  7686. * url without the prefix stratum+tcp:// so let's check it */
  7687. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7688. pool->has_stratum = true;
  7689. goto retry_stratum;
  7690. }
  7691. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7692. pool->pool_no, pool->rpc_url);
  7693. if (!pinging)
  7694. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7695. }
  7696. out:
  7697. curl_easy_cleanup(curl);
  7698. return ret;
  7699. }
  7700. static void pool_resus(struct pool *pool)
  7701. {
  7702. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7703. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7704. else
  7705. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7706. }
  7707. static struct work *hash_pop(void)
  7708. {
  7709. struct work *work = NULL, *tmp;
  7710. int hc;
  7711. struct timespec ts;
  7712. retry:
  7713. mutex_lock(stgd_lock);
  7714. while (!HASH_COUNT(staged_work))
  7715. {
  7716. if (unlikely(staged_full))
  7717. {
  7718. if (likely(opt_queue < 10 + mining_threads))
  7719. {
  7720. ++opt_queue;
  7721. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7722. }
  7723. else
  7724. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7725. staged_full = false; // Let it fill up before triggering an underrun again
  7726. no_work = true;
  7727. }
  7728. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7729. pthread_cond_signal(&gws_cond);
  7730. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7731. {
  7732. run_cmd(cmd_idle);
  7733. pthread_cond_signal(&gws_cond);
  7734. pthread_cond_wait(&getq->cond, stgd_lock);
  7735. }
  7736. }
  7737. no_work = false;
  7738. hc = HASH_COUNT(staged_work);
  7739. /* Find clone work if possible, to allow masters to be reused */
  7740. if (hc > staged_rollable) {
  7741. HASH_ITER(hh, staged_work, work, tmp) {
  7742. if (!work_rollable(work))
  7743. break;
  7744. }
  7745. } else
  7746. work = staged_work;
  7747. if (can_roll(work) && should_roll(work))
  7748. {
  7749. // Instead of consuming it, force it to be cloned and grab the clone
  7750. mutex_unlock(stgd_lock);
  7751. clone_available();
  7752. goto retry;
  7753. }
  7754. HASH_DEL(staged_work, work);
  7755. if (work_rollable(work))
  7756. staged_rollable--;
  7757. /* Signal the getwork scheduler to look for more work */
  7758. pthread_cond_signal(&gws_cond);
  7759. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7760. pthread_cond_signal(&getq->cond);
  7761. mutex_unlock(stgd_lock);
  7762. work->pool->last_work_time = time(NULL);
  7763. cgtime(&work->pool->tv_last_work_time);
  7764. return work;
  7765. }
  7766. /* Clones work by rolling it if possible, and returning a clone instead of the
  7767. * original work item which gets staged again to possibly be rolled again in
  7768. * the future */
  7769. static struct work *clone_work(struct work *work)
  7770. {
  7771. int mrs = mining_threads + opt_queue - total_staged();
  7772. struct work *work_clone;
  7773. bool cloned;
  7774. if (mrs < 1)
  7775. return work;
  7776. cloned = false;
  7777. work_clone = make_clone(work);
  7778. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7779. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7780. stage_work(work_clone);
  7781. roll_work(work);
  7782. work_clone = make_clone(work);
  7783. /* Roll it again to prevent duplicates should this be used
  7784. * directly later on */
  7785. roll_work(work);
  7786. cloned = true;
  7787. }
  7788. if (cloned) {
  7789. stage_work(work);
  7790. return work_clone;
  7791. }
  7792. free_work(work_clone);
  7793. return work;
  7794. }
  7795. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7796. {
  7797. unsigned char hash1[32];
  7798. sha256(data, len, hash1);
  7799. sha256(hash1, 32, hash);
  7800. }
  7801. /* PDiff 1 is a 256 bit unsigned integer of
  7802. * 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  7803. * so we use a big endian 32 bit unsigned integer positioned at the Nth byte to
  7804. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7805. static void pdiff_target_leadzero(void * const target_p, double diff)
  7806. {
  7807. uint8_t *target = target_p;
  7808. diff *= 0x100000000;
  7809. int skip = log2(diff) / 8;
  7810. if (skip)
  7811. {
  7812. if (skip > 0x1c)
  7813. skip = 0x1c;
  7814. diff /= pow(0x100, skip);
  7815. memset(target, 0, skip);
  7816. }
  7817. uint32_t n = 0xffffffff;
  7818. n = (double)n / diff;
  7819. n = htobe32(n);
  7820. memcpy(&target[skip], &n, sizeof(n));
  7821. memset(&target[skip + sizeof(n)], 0xff, 32 - (skip + sizeof(n)));
  7822. }
  7823. void set_target_to_pdiff(void * const dest_target, const double pdiff)
  7824. {
  7825. unsigned char rtarget[32];
  7826. pdiff_target_leadzero(rtarget, pdiff);
  7827. swab256(dest_target, rtarget);
  7828. if (opt_debug) {
  7829. char htarget[65];
  7830. bin2hex(htarget, rtarget, 32);
  7831. applog(LOG_DEBUG, "Generated target %s", htarget);
  7832. }
  7833. }
  7834. void set_target_to_bdiff(void * const dest_target, const double bdiff)
  7835. {
  7836. set_target_to_pdiff(dest_target, bdiff_to_pdiff(bdiff));
  7837. }
  7838. void _test_target(void * const funcp, const char * const funcname, const bool little_endian, const void * const expectp, const double diff)
  7839. {
  7840. uint8_t bufr[32], buf[32], expectr[32], expect[32];
  7841. int off;
  7842. void (*func)(void *, double) = funcp;
  7843. func(little_endian ? bufr : buf, diff);
  7844. if (little_endian)
  7845. swab256(buf, bufr);
  7846. swap32tobe(expect, expectp, 256/32);
  7847. // Fuzzy comparison: the first 32 bits set must match, and the actual target must be >= the expected
  7848. for (off = 0; off < 28 && !buf[off]; ++off)
  7849. {}
  7850. if (memcmp(&buf[off], &expect[off], 4))
  7851. {
  7852. testfail: ;
  7853. char hexbuf[65], expectbuf[65];
  7854. bin2hex(hexbuf, buf, 32);
  7855. bin2hex(expectbuf, expect, 32);
  7856. applogr(, LOG_WARNING, "%s test failed: diff %g got %s (expected %s)",
  7857. funcname, diff, hexbuf, expectbuf);
  7858. }
  7859. if (!little_endian)
  7860. swab256(bufr, buf);
  7861. swab256(expectr, expect);
  7862. if (!hash_target_check(expectr, bufr))
  7863. goto testfail;
  7864. }
  7865. #define TEST_TARGET(func, le, expect, diff) \
  7866. _test_target(func, #func, le, expect, diff)
  7867. void test_target()
  7868. {
  7869. uint32_t expect[8] = {0};
  7870. // bdiff 1 should be exactly 00000000ffff0000000006f29cfd29510a6caee84634e86a57257cf03152537f due to floating-point imprecision (pdiff1 / 1.0000152590218966)
  7871. expect[0] = 0x0000ffff;
  7872. TEST_TARGET(set_target_to_bdiff, true, expect, 1./0x10000);
  7873. expect[0] = 0;
  7874. expect[1] = 0xffff0000;
  7875. TEST_TARGET(set_target_to_bdiff, true, expect, 1);
  7876. expect[1] >>= 1;
  7877. TEST_TARGET(set_target_to_bdiff, true, expect, 2);
  7878. expect[1] >>= 3;
  7879. TEST_TARGET(set_target_to_bdiff, true, expect, 0x10);
  7880. expect[1] >>= 4;
  7881. TEST_TARGET(set_target_to_bdiff, true, expect, 0x100);
  7882. memset(&expect[1], '\xff', 28);
  7883. expect[0] = 0x0000ffff;
  7884. TEST_TARGET(set_target_to_pdiff, true, expect, 1./0x10000);
  7885. expect[0] = 0;
  7886. TEST_TARGET(set_target_to_pdiff, true, expect, 1);
  7887. expect[1] >>= 1;
  7888. TEST_TARGET(set_target_to_pdiff, true, expect, 2);
  7889. expect[1] >>= 3;
  7890. TEST_TARGET(set_target_to_pdiff, true, expect, 0x10);
  7891. expect[1] >>= 4;
  7892. TEST_TARGET(set_target_to_pdiff, true, expect, 0x100);
  7893. }
  7894. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7895. {
  7896. *dst = *src;
  7897. if (dst->tr)
  7898. tmpl_incref(dst->tr);
  7899. dst->nonce1 = maybe_strdup(src->nonce1);
  7900. dst->job_id = maybe_strdup(src->job_id);
  7901. bytes_cpy(&dst->coinbase, &src->coinbase);
  7902. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7903. }
  7904. void stratum_work_clean(struct stratum_work * const swork)
  7905. {
  7906. if (swork->tr)
  7907. tmpl_decref(swork->tr);
  7908. free(swork->nonce1);
  7909. free(swork->job_id);
  7910. bytes_free(&swork->coinbase);
  7911. bytes_free(&swork->merkle_bin);
  7912. }
  7913. bool pool_has_usable_swork(const struct pool * const pool)
  7914. {
  7915. if (opt_benchmark)
  7916. return true;
  7917. if (pool->swork.tr)
  7918. {
  7919. // GBT
  7920. struct timeval tv_now;
  7921. timer_set_now(&tv_now);
  7922. return blkmk_time_left(pool->swork.tr->tmpl, tv_now.tv_sec);
  7923. }
  7924. return pool->stratum_notify;
  7925. }
  7926. /* Generates stratum based work based on the most recent notify information
  7927. * from the pool. This will keep generating work while a pool is down so we use
  7928. * other means to detect when the pool has died in stratum_thread */
  7929. static void gen_stratum_work(struct pool *pool, struct work *work)
  7930. {
  7931. clean_work(work);
  7932. cg_wlock(&pool->data_lock);
  7933. pool->swork.data_lock_p = &pool->data_lock;
  7934. const int n2size = pool->swork.n2size;
  7935. bytes_resize(&work->nonce2, n2size);
  7936. if (pool->nonce2sz < n2size)
  7937. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, n2size - pool->nonce2sz);
  7938. memcpy(bytes_buf(&work->nonce2),
  7939. #ifdef WORDS_BIGENDIAN
  7940. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7941. &((char*)&pool->nonce2)[pool->nonce2off],
  7942. #else
  7943. &pool->nonce2,
  7944. #endif
  7945. pool->nonce2sz);
  7946. pool->nonce2++;
  7947. work->pool = pool;
  7948. work->work_restart_id = pool->swork.work_restart_id;
  7949. gen_stratum_work2(work, &pool->swork);
  7950. cgtime(&work->tv_staged);
  7951. }
  7952. void gen_stratum_work2(struct work *work, struct stratum_work *swork)
  7953. {
  7954. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7955. uint8_t *merkle_bin;
  7956. uint32_t *data32, *swap32;
  7957. int i;
  7958. /* Generate coinbase */
  7959. coinbase = bytes_buf(&swork->coinbase);
  7960. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7961. /* Downgrade to a read lock to read off the variables */
  7962. if (swork->data_lock_p)
  7963. cg_dwlock(swork->data_lock_p);
  7964. /* Generate merkle root */
  7965. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7966. memcpy(merkle_sha, merkle_root, 32);
  7967. merkle_bin = bytes_buf(&swork->merkle_bin);
  7968. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7969. memcpy(merkle_sha + 32, merkle_bin, 32);
  7970. gen_hash(merkle_sha, merkle_root, 64);
  7971. memcpy(merkle_sha, merkle_root, 32);
  7972. }
  7973. data32 = (uint32_t *)merkle_sha;
  7974. swap32 = (uint32_t *)merkle_root;
  7975. flip32(swap32, data32);
  7976. memcpy(&work->data[0], swork->header1, 36);
  7977. memcpy(&work->data[36], merkle_root, 32);
  7978. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7979. memcpy(&work->data[72], swork->diffbits, 4);
  7980. memset(&work->data[76], 0, 4); // nonce
  7981. memcpy(&work->data[80], workpadding_bin, 48);
  7982. work->ntime_roll_limits = swork->ntime_roll_limits;
  7983. /* Copy parameters required for share submission */
  7984. memcpy(work->target, swork->target, sizeof(work->target));
  7985. work->job_id = maybe_strdup(swork->job_id);
  7986. work->nonce1 = maybe_strdup(swork->nonce1);
  7987. if (swork->data_lock_p)
  7988. cg_runlock(swork->data_lock_p);
  7989. if (opt_debug)
  7990. {
  7991. char header[161];
  7992. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7993. bin2hex(header, work->data, 80);
  7994. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7995. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7996. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7997. }
  7998. calc_midstate(work);
  7999. local_work++;
  8000. work->stratum = true;
  8001. work->blk.nonce = 0;
  8002. work->id = total_work++;
  8003. work->longpoll = false;
  8004. work->getwork_mode = GETWORK_MODE_STRATUM;
  8005. calc_diff(work, 0);
  8006. }
  8007. void request_work(struct thr_info *thr)
  8008. {
  8009. struct cgpu_info *cgpu = thr->cgpu;
  8010. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8011. /* Tell the watchdog thread this thread is waiting on getwork and
  8012. * should not be restarted */
  8013. thread_reportout(thr);
  8014. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  8015. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8016. {
  8017. if (proc->threads)
  8018. break;
  8019. thread_reportout(proc->thr[0]);
  8020. }
  8021. cgtime(&dev_stats->_get_start);
  8022. }
  8023. // FIXME: Make this non-blocking (and remove HACK above)
  8024. struct work *get_work(struct thr_info *thr)
  8025. {
  8026. const int thr_id = thr->id;
  8027. struct cgpu_info *cgpu = thr->cgpu;
  8028. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8029. struct cgminer_stats *pool_stats;
  8030. struct timeval tv_get;
  8031. struct work *work = NULL;
  8032. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  8033. while (!work) {
  8034. work = hash_pop();
  8035. if (stale_work(work, false)) {
  8036. staged_full = false; // It wasn't really full, since it was stale :(
  8037. discard_work(work);
  8038. work = NULL;
  8039. wake_gws();
  8040. }
  8041. }
  8042. last_getwork = time(NULL);
  8043. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  8044. cgpu->proc_repr, work->id, thr_id);
  8045. work->thr_id = thr_id;
  8046. thread_reportin(thr);
  8047. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  8048. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8049. {
  8050. if (proc->threads)
  8051. break;
  8052. thread_reportin(proc->thr[0]);
  8053. }
  8054. work->mined = true;
  8055. work->blk.nonce = 0;
  8056. cgtime(&tv_get);
  8057. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  8058. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  8059. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  8060. dev_stats->getwork_wait_max = tv_get;
  8061. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  8062. dev_stats->getwork_wait_min = tv_get;
  8063. ++dev_stats->getwork_calls;
  8064. pool_stats = &(work->pool->cgminer_stats);
  8065. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  8066. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  8067. pool_stats->getwork_wait_max = tv_get;
  8068. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  8069. pool_stats->getwork_wait_min = tv_get;
  8070. ++pool_stats->getwork_calls;
  8071. if (work->work_difficulty < 1)
  8072. {
  8073. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  8074. {
  8075. if (cgpu->min_nonce_diff - work->work_difficulty > 1./0x10000000)
  8076. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  8077. cgpu->proc_repr);
  8078. work->nonce_diff = cgpu->min_nonce_diff;
  8079. }
  8080. else
  8081. work->nonce_diff = work->work_difficulty;
  8082. }
  8083. else
  8084. work->nonce_diff = 1;
  8085. return work;
  8086. }
  8087. static
  8088. void _submit_work_async(struct work *work)
  8089. {
  8090. applog(LOG_DEBUG, "Pushing submit work to work thread");
  8091. if (opt_benchmark)
  8092. {
  8093. json_t * const jn = json_null();
  8094. rebuild_hash(work);
  8095. share_result(jn, jn, jn, work, false, "");
  8096. free_work(work);
  8097. return;
  8098. }
  8099. mutex_lock(&submitting_lock);
  8100. ++total_submitting;
  8101. DL_APPEND(submit_waiting, work);
  8102. mutex_unlock(&submitting_lock);
  8103. notifier_wake(submit_waiting_notifier);
  8104. }
  8105. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  8106. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  8107. {
  8108. if (tv_work_found)
  8109. copy_time(&work->tv_work_found, tv_work_found);
  8110. _submit_work_async(work);
  8111. }
  8112. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  8113. {
  8114. struct cgpu_info * const cgpu = thr->cgpu;
  8115. if (bad_nonce_p)
  8116. {
  8117. if (bad_nonce_p == UNKNOWN_NONCE)
  8118. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  8119. cgpu->proc_repr);
  8120. else
  8121. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  8122. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  8123. }
  8124. mutex_lock(&stats_lock);
  8125. hw_errors++;
  8126. ++cgpu->hw_errors;
  8127. if (bad_nonce_p)
  8128. {
  8129. total_bad_diff1 += nonce_diff;
  8130. cgpu->bad_diff1 += nonce_diff;
  8131. }
  8132. mutex_unlock(&stats_lock);
  8133. if (thr->cgpu->drv->hw_error)
  8134. thr->cgpu->drv->hw_error(thr);
  8135. }
  8136. static
  8137. bool test_hash(const void * const phash, const float diff)
  8138. {
  8139. const uint32_t * const hash = phash;
  8140. if (diff >= 1.)
  8141. // FIXME: > 1 should check more
  8142. return !hash[7];
  8143. const uint32_t Htarg = (uint32_t)(0x100000000 * diff) - 1;
  8144. const uint32_t tmp_hash7 = le32toh(hash[7]);
  8145. applog(LOG_DEBUG, "htarget %08lx hash %08lx",
  8146. (long unsigned int)Htarg,
  8147. (long unsigned int)tmp_hash7);
  8148. return (tmp_hash7 <= Htarg);
  8149. }
  8150. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  8151. {
  8152. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8153. *work_nonce = htole32(nonce);
  8154. #ifdef USE_SCRYPT
  8155. if (opt_scrypt)
  8156. scrypt_hash_data(work->hash, work->data);
  8157. else
  8158. #endif
  8159. hash_data(work->hash, work->data);
  8160. if (!test_hash(work->hash, work->nonce_diff))
  8161. return TNR_BAD;
  8162. if (checktarget && !hash_target_check_v(work->hash, work->target))
  8163. {
  8164. bool high_hash = true;
  8165. struct pool * const pool = work->pool;
  8166. if (pool->stratum_active)
  8167. {
  8168. // Some stratum pools are buggy and expect difficulty changes to be immediate retroactively, so if the target has changed, check and submit just in case
  8169. if (memcmp(pool->swork.target, work->target, sizeof(work->target)))
  8170. {
  8171. applog(LOG_DEBUG, "Stratum pool %u target has changed since work job issued, checking that too",
  8172. pool->pool_no);
  8173. if (hash_target_check_v(work->hash, pool->swork.target))
  8174. high_hash = false;
  8175. }
  8176. }
  8177. if (high_hash)
  8178. return TNR_HIGH;
  8179. }
  8180. return TNR_GOOD;
  8181. }
  8182. /* Returns true if nonce for work was a valid share */
  8183. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  8184. {
  8185. return submit_noffset_nonce(thr, work, nonce, 0);
  8186. }
  8187. /* Allows drivers to submit work items where the driver has changed the ntime
  8188. * value by noffset. Must be only used with a work protocol that does not ntime
  8189. * roll itself intrinsically to generate work (eg stratum). We do not touch
  8190. * the original work struct, but the copy of it only. */
  8191. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  8192. int noffset)
  8193. {
  8194. struct work *work = make_work();
  8195. _copy_work(work, work_in, noffset);
  8196. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8197. struct timeval tv_work_found;
  8198. enum test_nonce2_result res;
  8199. bool ret = true;
  8200. thread_reportout(thr);
  8201. cgtime(&tv_work_found);
  8202. *work_nonce = htole32(nonce);
  8203. work->thr_id = thr->id;
  8204. /* Do one last check before attempting to submit the work */
  8205. /* Side effect: sets work->data and work->hash for us */
  8206. res = test_nonce2(work, nonce);
  8207. if (unlikely(res == TNR_BAD))
  8208. {
  8209. inc_hw_errors(thr, work, nonce);
  8210. ret = false;
  8211. goto out;
  8212. }
  8213. mutex_lock(&stats_lock);
  8214. total_diff1 += work->nonce_diff;
  8215. thr ->cgpu->diff1 += work->nonce_diff;
  8216. work->pool->diff1 += work->nonce_diff;
  8217. thr->cgpu->last_device_valid_work = time(NULL);
  8218. mutex_unlock(&stats_lock);
  8219. if (noncelog_file)
  8220. noncelog(work);
  8221. if (res == TNR_HIGH)
  8222. {
  8223. // Share above target, normal
  8224. /* Check the diff of the share, even if it didn't reach the
  8225. * target, just to set the best share value if it's higher. */
  8226. share_diff(work);
  8227. goto out;
  8228. }
  8229. submit_work_async2(work, &tv_work_found);
  8230. work = NULL; // Taken by submit_work_async2
  8231. out:
  8232. if (work)
  8233. free_work(work);
  8234. thread_reportin(thr);
  8235. return ret;
  8236. }
  8237. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8238. {
  8239. if (wdiff->tv_sec > opt_scantime ||
  8240. work->blk.nonce >= 0xfffffffe - hashes ||
  8241. hashes >= 0xfffffffe ||
  8242. stale_work(work, false))
  8243. return true;
  8244. return false;
  8245. }
  8246. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8247. {
  8248. struct cgpu_info *proc = thr->cgpu;
  8249. if (proc->threads > 1)
  8250. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8251. else
  8252. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8253. }
  8254. // Called by asynchronous minerloops, when they find their processor should be disabled
  8255. void mt_disable_start(struct thr_info *mythr)
  8256. {
  8257. struct cgpu_info *cgpu = mythr->cgpu;
  8258. struct device_drv *drv = cgpu->drv;
  8259. if (drv->thread_disable)
  8260. drv->thread_disable(mythr);
  8261. hashmeter2(mythr);
  8262. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8263. mythr->rolling = mythr->cgpu->rolling = 0;
  8264. thread_reportout(mythr);
  8265. mythr->_mt_disable_called = true;
  8266. }
  8267. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8268. * the driver tells us it's full so that it may extract the work item using
  8269. * the get_queued() function which adds it to the hashtable on
  8270. * cgpu->queued_work. */
  8271. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8272. {
  8273. thread_reportout(mythr);
  8274. do {
  8275. bool need_work;
  8276. /* Do this lockless just to know if we need more unqueued work. */
  8277. need_work = (!cgpu->unqueued_work);
  8278. /* get_work is a blocking function so do it outside of lock
  8279. * to prevent deadlocks with other locks. */
  8280. if (need_work) {
  8281. struct work *work = get_work(mythr);
  8282. wr_lock(&cgpu->qlock);
  8283. /* Check we haven't grabbed work somehow between
  8284. * checking and picking up the lock. */
  8285. if (likely(!cgpu->unqueued_work))
  8286. cgpu->unqueued_work = work;
  8287. else
  8288. need_work = false;
  8289. wr_unlock(&cgpu->qlock);
  8290. if (unlikely(!need_work))
  8291. discard_work(work);
  8292. }
  8293. /* The queue_full function should be used by the driver to
  8294. * actually place work items on the physical device if it
  8295. * does have a queue. */
  8296. } while (drv->queue_full && !drv->queue_full(cgpu));
  8297. }
  8298. /* Add a work item to a cgpu's queued hashlist */
  8299. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8300. {
  8301. cgpu->queued_count++;
  8302. HASH_ADD_INT(cgpu->queued_work, id, work);
  8303. }
  8304. /* This function is for retrieving one work item from the unqueued pointer and
  8305. * adding it to the hashtable of queued work. Code using this function must be
  8306. * able to handle NULL as a return which implies there is no work available. */
  8307. struct work *get_queued(struct cgpu_info *cgpu)
  8308. {
  8309. struct work *work = NULL;
  8310. wr_lock(&cgpu->qlock);
  8311. if (cgpu->unqueued_work) {
  8312. work = cgpu->unqueued_work;
  8313. if (unlikely(stale_work(work, false))) {
  8314. discard_work(work);
  8315. work = NULL;
  8316. wake_gws();
  8317. } else
  8318. __add_queued(cgpu, work);
  8319. cgpu->unqueued_work = NULL;
  8320. }
  8321. wr_unlock(&cgpu->qlock);
  8322. return work;
  8323. }
  8324. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8325. {
  8326. wr_lock(&cgpu->qlock);
  8327. __add_queued(cgpu, work);
  8328. wr_unlock(&cgpu->qlock);
  8329. }
  8330. /* Get fresh work and add it to cgpu's queued hashlist */
  8331. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8332. {
  8333. struct work *work = get_work(thr);
  8334. add_queued(cgpu, work);
  8335. return work;
  8336. }
  8337. /* This function is for finding an already queued work item in the
  8338. * given que hashtable. Code using this function must be able
  8339. * to handle NULL as a return which implies there is no matching work.
  8340. * The calling function must lock access to the que if it is required.
  8341. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8342. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8343. {
  8344. struct work *work, *tmp, *ret = NULL;
  8345. HASH_ITER(hh, que, work, tmp) {
  8346. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8347. memcmp(work->data + offset, data, datalen) == 0) {
  8348. ret = work;
  8349. break;
  8350. }
  8351. }
  8352. return ret;
  8353. }
  8354. /* This function is for finding an already queued work item in the
  8355. * device's queued_work hashtable. Code using this function must be able
  8356. * to handle NULL as a return which implies there is no matching work.
  8357. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8358. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8359. {
  8360. struct work *ret;
  8361. rd_lock(&cgpu->qlock);
  8362. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8363. rd_unlock(&cgpu->qlock);
  8364. return ret;
  8365. }
  8366. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8367. {
  8368. struct work *work, *ret = NULL;
  8369. rd_lock(&cgpu->qlock);
  8370. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8371. if (work)
  8372. ret = copy_work(work);
  8373. rd_unlock(&cgpu->qlock);
  8374. return ret;
  8375. }
  8376. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8377. {
  8378. cgpu->queued_count--;
  8379. HASH_DEL(cgpu->queued_work, work);
  8380. }
  8381. /* This function should be used by queued device drivers when they're sure
  8382. * the work struct is no longer in use. */
  8383. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8384. {
  8385. wr_lock(&cgpu->qlock);
  8386. __work_completed(cgpu, work);
  8387. wr_unlock(&cgpu->qlock);
  8388. free_work(work);
  8389. }
  8390. /* Combines find_queued_work_bymidstate and work_completed in one function
  8391. * withOUT destroying the work so the driver must free it. */
  8392. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8393. {
  8394. struct work *work;
  8395. wr_lock(&cgpu->qlock);
  8396. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8397. if (work)
  8398. __work_completed(cgpu, work);
  8399. wr_unlock(&cgpu->qlock);
  8400. return work;
  8401. }
  8402. static void flush_queue(struct cgpu_info *cgpu)
  8403. {
  8404. struct work *work = NULL;
  8405. wr_lock(&cgpu->qlock);
  8406. work = cgpu->unqueued_work;
  8407. cgpu->unqueued_work = NULL;
  8408. wr_unlock(&cgpu->qlock);
  8409. if (work) {
  8410. free_work(work);
  8411. applog(LOG_DEBUG, "Discarded queued work item");
  8412. }
  8413. }
  8414. /* This version of hash work is for devices that are fast enough to always
  8415. * perform a full nonce range and need a queue to maintain the device busy.
  8416. * Work creation and destruction is not done from within this function
  8417. * directly. */
  8418. void hash_queued_work(struct thr_info *mythr)
  8419. {
  8420. const long cycle = opt_log_interval / 5 ? : 1;
  8421. struct timeval tv_start = {0, 0}, tv_end;
  8422. struct cgpu_info *cgpu = mythr->cgpu;
  8423. struct device_drv *drv = cgpu->drv;
  8424. const int thr_id = mythr->id;
  8425. int64_t hashes_done = 0;
  8426. if (unlikely(cgpu->deven != DEV_ENABLED))
  8427. mt_disable(mythr);
  8428. while (likely(!cgpu->shutdown)) {
  8429. struct timeval diff;
  8430. int64_t hashes;
  8431. fill_queue(mythr, cgpu, drv, thr_id);
  8432. thread_reportin(mythr);
  8433. hashes = drv->scanwork(mythr);
  8434. /* Reset the bool here in case the driver looks for it
  8435. * synchronously in the scanwork loop. */
  8436. mythr->work_restart = false;
  8437. if (unlikely(hashes == -1 )) {
  8438. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8439. cgpu->deven = DEV_DISABLED;
  8440. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8441. mt_disable(mythr);
  8442. }
  8443. hashes_done += hashes;
  8444. cgtime(&tv_end);
  8445. timersub(&tv_end, &tv_start, &diff);
  8446. if (diff.tv_sec >= cycle) {
  8447. hashmeter(thr_id, &diff, hashes_done);
  8448. hashes_done = 0;
  8449. copy_time(&tv_start, &tv_end);
  8450. }
  8451. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8452. mt_disable(mythr);
  8453. if (unlikely(mythr->work_restart)) {
  8454. flush_queue(cgpu);
  8455. if (drv->flush_work)
  8456. drv->flush_work(cgpu);
  8457. }
  8458. }
  8459. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8460. }
  8461. // Called by minerloop, when it is re-enabling a processor
  8462. void mt_disable_finish(struct thr_info *mythr)
  8463. {
  8464. struct device_drv *drv = mythr->cgpu->drv;
  8465. thread_reportin(mythr);
  8466. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8467. if (drv->thread_enable)
  8468. drv->thread_enable(mythr);
  8469. mythr->_mt_disable_called = false;
  8470. }
  8471. // Called by synchronous minerloops, when they find their processor should be disabled
  8472. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8473. void mt_disable(struct thr_info *mythr)
  8474. {
  8475. const struct cgpu_info * const cgpu = mythr->cgpu;
  8476. mt_disable_start(mythr);
  8477. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8478. do {
  8479. notifier_read(mythr->notifier);
  8480. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8481. mt_disable_finish(mythr);
  8482. }
  8483. enum {
  8484. STAT_SLEEP_INTERVAL = 1,
  8485. STAT_CTR_INTERVAL = 10000000,
  8486. FAILURE_INTERVAL = 30,
  8487. };
  8488. /* Stage another work item from the work returned in a longpoll */
  8489. 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)
  8490. {
  8491. bool rc;
  8492. work->rolltime = rolltime;
  8493. rc = work_decode(pool, work, val);
  8494. if (unlikely(!rc)) {
  8495. applog(LOG_ERR, "Could not convert longpoll data to work");
  8496. free_work(work);
  8497. return;
  8498. }
  8499. total_getworks++;
  8500. pool->getwork_requested++;
  8501. work->pool = pool;
  8502. copy_time(&work->tv_getwork, tv_lp);
  8503. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8504. calc_diff(work, 0);
  8505. if (pool->enabled == POOL_REJECTING)
  8506. work->mandatory = true;
  8507. work->longpoll = true;
  8508. work->getwork_mode = GETWORK_MODE_LP;
  8509. update_last_work(work);
  8510. /* We'll be checking this work item twice, but we already know it's
  8511. * from a new block so explicitly force the new block detection now
  8512. * rather than waiting for it to hit the stage thread. This also
  8513. * allows testwork to know whether LP discovered the block or not. */
  8514. test_work_current(work);
  8515. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8516. * the longpoll work from a pool that has been rejecting shares as a
  8517. * way to detect when the pool has recovered.
  8518. */
  8519. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8520. free_work(work);
  8521. return;
  8522. }
  8523. work = clone_work(work);
  8524. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8525. stage_work(work);
  8526. applog(LOG_DEBUG, "Converted longpoll data to work");
  8527. }
  8528. /* If we want longpoll, enable it for the chosen default pool, or, if
  8529. * the pool does not support longpoll, find the first one that does
  8530. * and use its longpoll support */
  8531. static struct pool *select_longpoll_pool(struct pool *cp)
  8532. {
  8533. int i;
  8534. if (cp->lp_url)
  8535. return cp;
  8536. for (i = 0; i < total_pools; i++) {
  8537. struct pool *pool = pools[i];
  8538. if (pool->has_stratum || pool->lp_url)
  8539. return pool;
  8540. }
  8541. return NULL;
  8542. }
  8543. /* This will make the longpoll thread wait till it's the current pool, or it
  8544. * has been flagged as rejecting, before attempting to open any connections.
  8545. */
  8546. static void wait_lpcurrent(struct pool *pool)
  8547. {
  8548. while (!cnx_needed(pool))
  8549. {
  8550. mutex_lock(&lp_lock);
  8551. pthread_cond_wait(&lp_cond, &lp_lock);
  8552. mutex_unlock(&lp_lock);
  8553. }
  8554. }
  8555. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8556. struct pool *pool = vpool;
  8557. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8558. pool->lp_socket = sock;
  8559. return sock;
  8560. }
  8561. static void *longpoll_thread(void *userdata)
  8562. {
  8563. struct pool *cp = (struct pool *)userdata;
  8564. /* This *pool is the source of the actual longpoll, not the pool we've
  8565. * tied it to */
  8566. struct timeval start, reply, end;
  8567. struct pool *pool = NULL;
  8568. char threadname[20];
  8569. CURL *curl = NULL;
  8570. int failures = 0;
  8571. char *lp_url;
  8572. int rolltime;
  8573. #ifndef HAVE_PTHREAD_CANCEL
  8574. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8575. #endif
  8576. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8577. RenameThread(threadname);
  8578. curl = curl_easy_init();
  8579. if (unlikely(!curl)) {
  8580. applog(LOG_ERR, "CURL initialisation failed");
  8581. return NULL;
  8582. }
  8583. retry_pool:
  8584. pool = select_longpoll_pool(cp);
  8585. if (!pool) {
  8586. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8587. while (!pool) {
  8588. cgsleep_ms(60000);
  8589. pool = select_longpoll_pool(cp);
  8590. }
  8591. }
  8592. if (pool->has_stratum) {
  8593. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8594. cp->rpc_url, pool->rpc_url);
  8595. goto out;
  8596. }
  8597. /* Any longpoll from any pool is enough for this to be true */
  8598. have_longpoll = true;
  8599. wait_lpcurrent(cp);
  8600. {
  8601. lp_url = pool->lp_url;
  8602. if (cp == pool)
  8603. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8604. else
  8605. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8606. }
  8607. while (42) {
  8608. json_t *val, *soval;
  8609. struct work *work = make_work();
  8610. char *lpreq;
  8611. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8612. work->pool = pool;
  8613. if (!lpreq)
  8614. {
  8615. free_work(work);
  8616. goto lpfail;
  8617. }
  8618. wait_lpcurrent(cp);
  8619. cgtime(&start);
  8620. /* Longpoll connections can be persistent for a very long time
  8621. * and any number of issues could have come up in the meantime
  8622. * so always establish a fresh connection instead of relying on
  8623. * a persistent one. */
  8624. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8625. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8626. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8627. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8628. lpreq, false, true, &rolltime, pool, false);
  8629. pool->lp_socket = CURL_SOCKET_BAD;
  8630. cgtime(&reply);
  8631. free(lpreq);
  8632. if (likely(val)) {
  8633. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8634. if (soval)
  8635. pool->submit_old = json_is_true(soval);
  8636. else
  8637. pool->submit_old = false;
  8638. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8639. failures = 0;
  8640. json_decref(val);
  8641. } else {
  8642. /* Some pools regularly drop the longpoll request so
  8643. * only see this as longpoll failure if it happens
  8644. * immediately and just restart it the rest of the
  8645. * time. */
  8646. cgtime(&end);
  8647. free_work(work);
  8648. if (end.tv_sec - start.tv_sec > 30)
  8649. continue;
  8650. if (failures == 1)
  8651. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8652. lpfail:
  8653. cgsleep_ms(30000);
  8654. }
  8655. if (pool != cp) {
  8656. pool = select_longpoll_pool(cp);
  8657. if (pool->has_stratum) {
  8658. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8659. cp->rpc_url, pool->rpc_url);
  8660. break;
  8661. }
  8662. if (unlikely(!pool))
  8663. goto retry_pool;
  8664. }
  8665. if (unlikely(pool->removed))
  8666. break;
  8667. }
  8668. out:
  8669. curl_easy_cleanup(curl);
  8670. return NULL;
  8671. }
  8672. static void stop_longpoll(void)
  8673. {
  8674. int i;
  8675. want_longpoll = false;
  8676. for (i = 0; i < total_pools; ++i)
  8677. {
  8678. struct pool *pool = pools[i];
  8679. if (unlikely(!pool->lp_started))
  8680. continue;
  8681. pool->lp_started = false;
  8682. pthread_cancel(pool->longpoll_thread);
  8683. }
  8684. have_longpoll = false;
  8685. }
  8686. static void start_longpoll(void)
  8687. {
  8688. int i;
  8689. want_longpoll = true;
  8690. for (i = 0; i < total_pools; ++i)
  8691. {
  8692. struct pool *pool = pools[i];
  8693. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8694. continue;
  8695. pool->lp_started = true;
  8696. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8697. quit(1, "Failed to create pool longpoll thread");
  8698. }
  8699. }
  8700. void reinit_device(struct cgpu_info *cgpu)
  8701. {
  8702. if (cgpu->drv->reinit_device)
  8703. cgpu->drv->reinit_device(cgpu);
  8704. }
  8705. static struct timeval rotate_tv;
  8706. /* We reap curls if they are unused for over a minute */
  8707. static void reap_curl(struct pool *pool)
  8708. {
  8709. struct curl_ent *ent, *iter;
  8710. struct timeval now;
  8711. int reaped = 0;
  8712. cgtime(&now);
  8713. mutex_lock(&pool->pool_lock);
  8714. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8715. if (pool->curls < 2)
  8716. break;
  8717. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8718. reaped++;
  8719. pool->curls--;
  8720. LL_DELETE(pool->curllist, ent);
  8721. curl_easy_cleanup(ent->curl);
  8722. free(ent);
  8723. }
  8724. }
  8725. mutex_unlock(&pool->pool_lock);
  8726. if (reaped)
  8727. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8728. }
  8729. static void *watchpool_thread(void __maybe_unused *userdata)
  8730. {
  8731. int intervals = 0;
  8732. #ifndef HAVE_PTHREAD_CANCEL
  8733. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8734. #endif
  8735. RenameThread("watchpool");
  8736. while (42) {
  8737. struct timeval now;
  8738. int i;
  8739. if (++intervals > 20)
  8740. intervals = 0;
  8741. cgtime(&now);
  8742. for (i = 0; i < total_pools; i++) {
  8743. struct pool *pool = pools[i];
  8744. if (!opt_benchmark)
  8745. reap_curl(pool);
  8746. /* Get a rolling utility per pool over 10 mins */
  8747. if (intervals > 19) {
  8748. int shares = pool->diff1 - pool->last_shares;
  8749. pool->last_shares = pool->diff1;
  8750. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8751. pool->shares = pool->utility;
  8752. }
  8753. if (pool->enabled == POOL_DISABLED)
  8754. continue;
  8755. /* Don't start testing any pools if the test threads
  8756. * from startup are still doing their first attempt. */
  8757. if (unlikely(pool->testing)) {
  8758. pthread_join(pool->test_thread, NULL);
  8759. }
  8760. /* Test pool is idle once every minute */
  8761. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8762. cgtime(&pool->tv_idle);
  8763. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8764. pool_resus(pool);
  8765. }
  8766. /* Only switch pools if the failback pool has been
  8767. * alive for more than 5 minutes (default) to prevent
  8768. * intermittently failing pools from being used. */
  8769. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8770. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  8771. if (opt_fail_switch_delay % 60)
  8772. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  8773. pool->pool_no, pool->rpc_url,
  8774. opt_fail_switch_delay,
  8775. (opt_fail_switch_delay == 1 ? "" : "s"));
  8776. else
  8777. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  8778. pool->pool_no, pool->rpc_url,
  8779. opt_fail_switch_delay / 60,
  8780. (opt_fail_switch_delay == 60 ? "" : "s"));
  8781. switch_pools(NULL);
  8782. }
  8783. }
  8784. if (current_pool()->idle)
  8785. switch_pools(NULL);
  8786. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8787. cgtime(&rotate_tv);
  8788. switch_pools(NULL);
  8789. }
  8790. cgsleep_ms(30000);
  8791. }
  8792. return NULL;
  8793. }
  8794. void mt_enable(struct thr_info *thr)
  8795. {
  8796. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8797. notifier_wake(thr->notifier);
  8798. }
  8799. void proc_enable(struct cgpu_info *cgpu)
  8800. {
  8801. int j;
  8802. cgpu->deven = DEV_ENABLED;
  8803. for (j = cgpu->threads ?: 1; j--; )
  8804. mt_enable(cgpu->thr[j]);
  8805. }
  8806. #define device_recovered(cgpu) proc_enable(cgpu)
  8807. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8808. {
  8809. struct string_elist *setstr_elist;
  8810. const char *p, *p2;
  8811. char replybuf[0x2000];
  8812. size_t L;
  8813. DL_FOREACH(opt_set_device_list, setstr_elist)
  8814. {
  8815. const char * const setstr = setstr_elist->string;
  8816. p = strchr(setstr, ':');
  8817. if (!p)
  8818. p = setstr;
  8819. {
  8820. L = p - setstr;
  8821. char pattern[L + 1];
  8822. if (L)
  8823. memcpy(pattern, setstr, L);
  8824. pattern[L] = '\0';
  8825. if (!cgpu_match(pattern, cgpu))
  8826. continue;
  8827. }
  8828. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8829. cgpu->proc_repr, __func__, setstr);
  8830. if (p[0] == ':')
  8831. ++p;
  8832. p2 = strchr(p, '=');
  8833. if (!p2)
  8834. {
  8835. L = strlen(p);
  8836. p2 = "";
  8837. }
  8838. else
  8839. {
  8840. L = p2 - p;
  8841. ++p2;
  8842. }
  8843. char opt[L + 1];
  8844. if (L)
  8845. memcpy(opt, p, L);
  8846. opt[L] = '\0';
  8847. L = strlen(p2);
  8848. char setval[L + 1];
  8849. if (L)
  8850. memcpy(setval, p2, L);
  8851. setval[L] = '\0';
  8852. enum bfg_set_device_replytype success;
  8853. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8854. switch (success)
  8855. {
  8856. case SDR_OK:
  8857. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8858. cgpu->proc_repr, setstr,
  8859. p ? ": " : "", p ?: "");
  8860. break;
  8861. case SDR_ERR:
  8862. case SDR_HELP:
  8863. case SDR_UNKNOWN:
  8864. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8865. cgpu->proc_repr, setstr, p);
  8866. break;
  8867. case SDR_AUTO:
  8868. case SDR_NOSUPP:
  8869. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8870. cgpu->proc_repr, setstr);
  8871. }
  8872. }
  8873. cgpu->already_set_defaults = true;
  8874. }
  8875. 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)
  8876. {
  8877. struct device_drv dummy_drv = *drv;
  8878. struct cgpu_info dummy_cgpu = {
  8879. .drv = &dummy_drv,
  8880. .device = &dummy_cgpu,
  8881. .device_id = -1,
  8882. .proc_id = -1,
  8883. .device_data = userp,
  8884. .device_path = devpath,
  8885. .dev_serial = serial,
  8886. };
  8887. strcpy(dummy_cgpu.proc_repr, drv->name);
  8888. switch (mode)
  8889. {
  8890. case 0:
  8891. dummy_drv.set_device = datap;
  8892. break;
  8893. case 1:
  8894. dummy_drv.set_device = NULL;
  8895. dummy_cgpu.set_device_funcs = datap;
  8896. break;
  8897. }
  8898. cgpu_set_defaults(&dummy_cgpu);
  8899. }
  8900. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8901. * the screen at regular intervals, and restarts threads if they appear to have
  8902. * died. */
  8903. #define WATCHDOG_SICK_TIME 60
  8904. #define WATCHDOG_DEAD_TIME 600
  8905. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8906. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8907. static void *watchdog_thread(void __maybe_unused *userdata)
  8908. {
  8909. const unsigned int interval = WATCHDOG_INTERVAL;
  8910. struct timeval zero_tv;
  8911. #ifndef HAVE_PTHREAD_CANCEL
  8912. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8913. #endif
  8914. RenameThread("watchdog");
  8915. memset(&zero_tv, 0, sizeof(struct timeval));
  8916. cgtime(&rotate_tv);
  8917. while (1) {
  8918. int i;
  8919. struct timeval now;
  8920. sleep(interval);
  8921. discard_stale();
  8922. hashmeter(-1, &zero_tv, 0);
  8923. #ifdef HAVE_CURSES
  8924. const int ts = total_staged();
  8925. if (curses_active_locked()) {
  8926. change_logwinsize();
  8927. curses_print_status(ts);
  8928. _refresh_devstatus(true);
  8929. touchwin(logwin);
  8930. wrefresh(logwin);
  8931. unlock_curses();
  8932. }
  8933. #endif
  8934. cgtime(&now);
  8935. if (!sched_paused && !should_run()) {
  8936. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8937. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8938. if (!schedstart.enable) {
  8939. quit(0, "Terminating execution as planned");
  8940. break;
  8941. }
  8942. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8943. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8944. sched_paused = true;
  8945. rd_lock(&mining_thr_lock);
  8946. for (i = 0; i < mining_threads; i++)
  8947. mining_thr[i]->pause = true;
  8948. rd_unlock(&mining_thr_lock);
  8949. } else if (sched_paused && should_run()) {
  8950. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8951. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8952. if (schedstop.enable)
  8953. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8954. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8955. sched_paused = false;
  8956. for (i = 0; i < mining_threads; i++) {
  8957. struct thr_info *thr;
  8958. thr = get_thread(i);
  8959. thr->pause = false;
  8960. }
  8961. for (i = 0; i < total_devices; ++i)
  8962. {
  8963. struct cgpu_info *cgpu = get_devices(i);
  8964. /* Don't touch disabled devices */
  8965. if (cgpu->deven == DEV_DISABLED)
  8966. continue;
  8967. proc_enable(cgpu);
  8968. }
  8969. }
  8970. for (i = 0; i < total_devices; ++i) {
  8971. struct cgpu_info *cgpu = get_devices(i);
  8972. if (!cgpu->disable_watchdog)
  8973. bfg_watchdog(cgpu, &now);
  8974. }
  8975. }
  8976. return NULL;
  8977. }
  8978. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8979. {
  8980. struct thr_info *thr = cgpu->thr[0];
  8981. enum dev_enable *denable;
  8982. char *dev_str = cgpu->proc_repr;
  8983. if (likely(drv_ready(cgpu)))
  8984. {
  8985. if (unlikely(!cgpu->already_set_defaults))
  8986. cgpu_set_defaults(cgpu);
  8987. if (cgpu->drv->get_stats)
  8988. cgpu->drv->get_stats(cgpu);
  8989. }
  8990. denable = &cgpu->deven;
  8991. if (cgpu->drv->watchdog)
  8992. cgpu->drv->watchdog(cgpu, tvp_now);
  8993. /* Thread is disabled */
  8994. if (*denable == DEV_DISABLED)
  8995. return;
  8996. else
  8997. if (*denable == DEV_RECOVER_ERR) {
  8998. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8999. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  9000. dev_str);
  9001. if (cgpu->reinit_backoff < 300)
  9002. cgpu->reinit_backoff *= 2;
  9003. device_recovered(cgpu);
  9004. }
  9005. return;
  9006. }
  9007. else
  9008. if (*denable == DEV_RECOVER) {
  9009. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  9010. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  9011. dev_str);
  9012. device_recovered(cgpu);
  9013. }
  9014. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9015. return;
  9016. }
  9017. else
  9018. if (cgpu->temp > cgpu->cutofftemp)
  9019. {
  9020. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  9021. dev_str, (int)cgpu->temp);
  9022. *denable = DEV_RECOVER;
  9023. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9024. run_cmd(cmd_idle);
  9025. }
  9026. if (thr->getwork) {
  9027. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  9028. int thrid;
  9029. bool cgpu_idle = true;
  9030. thr->rolling = 0;
  9031. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  9032. if (!cgpu->thr[thrid]->getwork)
  9033. cgpu_idle = false;
  9034. if (cgpu_idle) {
  9035. cgpu->rolling = 0;
  9036. cgpu->status = LIFE_WAIT;
  9037. }
  9038. }
  9039. return;
  9040. }
  9041. else if (cgpu->status == LIFE_WAIT)
  9042. cgpu->status = LIFE_WELL;
  9043. #ifdef WANT_CPUMINE
  9044. if (!strcmp(cgpu->drv->dname, "cpu"))
  9045. return;
  9046. #endif
  9047. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  9048. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  9049. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  9050. cgpu->status = LIFE_WELL;
  9051. cgpu->device_last_well = time(NULL);
  9052. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  9053. thr->rolling = cgpu->rolling = 0;
  9054. cgpu->status = LIFE_SICK;
  9055. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  9056. cgtime(&thr->sick);
  9057. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  9058. run_cmd(cmd_sick);
  9059. if (opt_restart && cgpu->drv->reinit_device) {
  9060. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  9061. reinit_device(cgpu);
  9062. }
  9063. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  9064. cgpu->status = LIFE_DEAD;
  9065. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  9066. cgtime(&thr->sick);
  9067. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  9068. run_cmd(cmd_dead);
  9069. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  9070. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  9071. /* Attempt to restart a GPU that's sick or dead once every minute */
  9072. cgtime(&thr->sick);
  9073. if (opt_restart)
  9074. reinit_device(cgpu);
  9075. }
  9076. }
  9077. static void log_print_status(struct cgpu_info *cgpu)
  9078. {
  9079. char logline[255];
  9080. get_statline(logline, sizeof(logline), cgpu);
  9081. applog(LOG_WARNING, "%s", logline);
  9082. }
  9083. void print_summary(void)
  9084. {
  9085. struct timeval diff;
  9086. int hours, mins, secs, i;
  9087. double utility, efficiency = 0.0;
  9088. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  9089. int pool_secs;
  9090. timersub(&total_tv_end, &total_tv_start, &diff);
  9091. hours = diff.tv_sec / 3600;
  9092. mins = (diff.tv_sec % 3600) / 60;
  9093. secs = diff.tv_sec % 60;
  9094. utility = total_accepted / total_secs * 60;
  9095. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  9096. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  9097. applog(LOG_WARNING, "Started at %s", datestamp);
  9098. if (total_pools == 1)
  9099. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  9100. #ifdef WANT_CPUMINE
  9101. if (opt_n_threads > 0)
  9102. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  9103. #endif
  9104. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  9105. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  9106. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  9107. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  9108. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  9109. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  9110. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  9111. total_rejected, total_stale,
  9112. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  9113. );
  9114. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  9115. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  9116. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  9117. applog(LOG_WARNING, "Network transfer: %s (%s)",
  9118. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9119. (float)total_bytes_rcvd,
  9120. (float)total_bytes_sent),
  9121. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9122. (float)(total_bytes_rcvd / total_secs),
  9123. (float)(total_bytes_sent / total_secs)));
  9124. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  9125. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  9126. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  9127. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  9128. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  9129. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  9130. if (total_pools > 1) {
  9131. for (i = 0; i < total_pools; i++) {
  9132. struct pool *pool = pools[i];
  9133. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  9134. if (pool->solved)
  9135. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  9136. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  9137. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  9138. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  9139. pool->rejected, pool->stale_shares,
  9140. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  9141. );
  9142. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  9143. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  9144. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  9145. applog(LOG_WARNING, " Network transfer: %s (%s)",
  9146. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9147. (float)pool->cgminer_pool_stats.net_bytes_received,
  9148. (float)pool->cgminer_pool_stats.net_bytes_sent),
  9149. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9150. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  9151. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  9152. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  9153. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  9154. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  9155. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  9156. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  9157. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  9158. }
  9159. }
  9160. if (opt_quit_summary != BQS_NONE)
  9161. {
  9162. if (opt_quit_summary == BQS_DETAILED)
  9163. include_serial_in_statline = true;
  9164. applog(LOG_WARNING, "Summary of per device statistics:\n");
  9165. for (i = 0; i < total_devices; ++i) {
  9166. struct cgpu_info *cgpu = get_devices(i);
  9167. if (!cgpu->proc_id)
  9168. {
  9169. // Device summary line
  9170. opt_show_procs = false;
  9171. log_print_status(cgpu);
  9172. opt_show_procs = true;
  9173. }
  9174. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  9175. log_print_status(cgpu);
  9176. }
  9177. }
  9178. if (opt_shares) {
  9179. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  9180. if (opt_shares > total_diff_accepted)
  9181. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  9182. }
  9183. applog(LOG_WARNING, " ");
  9184. fflush(stderr);
  9185. fflush(stdout);
  9186. }
  9187. void _bfg_clean_up(bool restarting)
  9188. {
  9189. #ifdef HAVE_OPENCL
  9190. clear_adl(nDevs);
  9191. #endif
  9192. #ifdef HAVE_LIBUSB
  9193. if (likely(have_libusb))
  9194. libusb_exit(NULL);
  9195. #endif
  9196. cgtime(&total_tv_end);
  9197. #ifdef WIN32
  9198. timeEndPeriod(1);
  9199. #endif
  9200. if (!restarting) {
  9201. /* Attempting to disable curses or print a summary during a
  9202. * restart can lead to a deadlock. */
  9203. #ifdef HAVE_CURSES
  9204. disable_curses();
  9205. #endif
  9206. if (!opt_realquiet && successful_connect)
  9207. print_summary();
  9208. }
  9209. if (opt_n_threads > 0)
  9210. free(cpus);
  9211. curl_global_cleanup();
  9212. #ifdef WIN32
  9213. WSACleanup();
  9214. #endif
  9215. }
  9216. void _quit(int status)
  9217. {
  9218. if (status) {
  9219. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9220. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9221. int *p = NULL;
  9222. // NOTE debugger can bypass with: p = &p
  9223. *p = status; // Segfault, hopefully dumping core
  9224. }
  9225. }
  9226. #if defined(unix) || defined(__APPLE__)
  9227. if (forkpid > 0) {
  9228. kill(forkpid, SIGTERM);
  9229. forkpid = 0;
  9230. }
  9231. #endif
  9232. exit(status);
  9233. }
  9234. #ifdef HAVE_CURSES
  9235. char *curses_input(const char *query)
  9236. {
  9237. char *input;
  9238. echo();
  9239. input = malloc(255);
  9240. if (!input)
  9241. quit(1, "Failed to malloc input");
  9242. leaveok(logwin, false);
  9243. wlogprint("%s:\n", query);
  9244. wgetnstr(logwin, input, 255);
  9245. if (!strlen(input))
  9246. {
  9247. free(input);
  9248. input = NULL;
  9249. }
  9250. leaveok(logwin, true);
  9251. noecho();
  9252. return input;
  9253. }
  9254. #endif
  9255. static bool pools_active = false;
  9256. static void *test_pool_thread(void *arg)
  9257. {
  9258. struct pool *pool = (struct pool *)arg;
  9259. if (pool_active(pool, false)) {
  9260. pool_tset(pool, &pool->lagging);
  9261. pool_tclear(pool, &pool->idle);
  9262. bool first_pool = false;
  9263. cg_wlock(&control_lock);
  9264. if (!pools_active) {
  9265. currentpool = pool;
  9266. if (pool->pool_no != 0)
  9267. first_pool = true;
  9268. pools_active = true;
  9269. }
  9270. cg_wunlock(&control_lock);
  9271. if (unlikely(first_pool))
  9272. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9273. else
  9274. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9275. switch_pools(NULL);
  9276. } else
  9277. pool_died(pool);
  9278. pool->testing = false;
  9279. return NULL;
  9280. }
  9281. /* Always returns true that the pool details were added unless we are not
  9282. * live, implying this is the only pool being added, so if no pools are
  9283. * active it returns false. */
  9284. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9285. {
  9286. size_t siz;
  9287. pool->rpc_url = url;
  9288. pool->rpc_user = user;
  9289. pool->rpc_pass = pass;
  9290. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9291. pool->rpc_userpass = malloc(siz);
  9292. if (!pool->rpc_userpass)
  9293. quit(1, "Failed to malloc userpass");
  9294. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9295. pool->testing = true;
  9296. pool->idle = true;
  9297. enable_pool(pool);
  9298. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9299. if (!live) {
  9300. pthread_join(pool->test_thread, NULL);
  9301. return pools_active;
  9302. }
  9303. return true;
  9304. }
  9305. #ifdef HAVE_CURSES
  9306. static bool input_pool(bool live)
  9307. {
  9308. char *url = NULL, *user = NULL, *pass = NULL;
  9309. struct pool *pool;
  9310. bool ret = false;
  9311. immedok(logwin, true);
  9312. wlogprint("Input server details.\n");
  9313. url = curses_input("URL");
  9314. if (!url)
  9315. goto out;
  9316. user = curses_input("Username");
  9317. if (!user)
  9318. goto out;
  9319. pass = curses_input("Password");
  9320. if (!pass)
  9321. pass = calloc(1, 1);
  9322. pool = add_pool();
  9323. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9324. strncmp(url, "https://", 8)) {
  9325. char *httpinput;
  9326. httpinput = malloc(256);
  9327. if (!httpinput)
  9328. quit(1, "Failed to malloc httpinput");
  9329. strcpy(httpinput, "http://");
  9330. strncat(httpinput, url, 248);
  9331. free(url);
  9332. url = httpinput;
  9333. }
  9334. ret = add_pool_details(pool, live, url, user, pass);
  9335. out:
  9336. immedok(logwin, false);
  9337. if (!ret) {
  9338. if (url)
  9339. free(url);
  9340. if (user)
  9341. free(user);
  9342. if (pass)
  9343. free(pass);
  9344. }
  9345. return ret;
  9346. }
  9347. #endif
  9348. #if defined(unix) || defined(__APPLE__)
  9349. static void fork_monitor()
  9350. {
  9351. // Make a pipe: [readFD, writeFD]
  9352. int pfd[2];
  9353. int r = pipe(pfd);
  9354. if (r < 0) {
  9355. perror("pipe - failed to create pipe for --monitor");
  9356. exit(1);
  9357. }
  9358. // Make stderr write end of pipe
  9359. fflush(stderr);
  9360. r = dup2(pfd[1], 2);
  9361. if (r < 0) {
  9362. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9363. exit(1);
  9364. }
  9365. r = close(pfd[1]);
  9366. if (r < 0) {
  9367. perror("close - failed to close write end of pipe for --monitor");
  9368. exit(1);
  9369. }
  9370. // Don't allow a dying monitor to kill the main process
  9371. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9372. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9373. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9374. perror("signal - failed to edit signal mask for --monitor");
  9375. exit(1);
  9376. }
  9377. // Fork a child process
  9378. forkpid = fork();
  9379. if (forkpid < 0) {
  9380. perror("fork - failed to fork child process for --monitor");
  9381. exit(1);
  9382. }
  9383. // Child: launch monitor command
  9384. if (0 == forkpid) {
  9385. // Make stdin read end of pipe
  9386. r = dup2(pfd[0], 0);
  9387. if (r < 0) {
  9388. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9389. exit(1);
  9390. }
  9391. close(pfd[0]);
  9392. if (r < 0) {
  9393. perror("close - in child, failed to close read end of pipe for --monitor");
  9394. exit(1);
  9395. }
  9396. // Launch user specified command
  9397. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9398. perror("execl - in child failed to exec user specified command for --monitor");
  9399. exit(1);
  9400. }
  9401. // Parent: clean up unused fds and bail
  9402. r = close(pfd[0]);
  9403. if (r < 0) {
  9404. perror("close - failed to close read end of pipe for --monitor");
  9405. exit(1);
  9406. }
  9407. }
  9408. #endif // defined(unix)
  9409. #ifdef HAVE_CURSES
  9410. #ifdef USE_UNICODE
  9411. static
  9412. wchar_t select_unicode_char(const wchar_t *opt)
  9413. {
  9414. for ( ; *opt; ++opt)
  9415. if (iswprint(*opt))
  9416. return *opt;
  9417. return '?';
  9418. }
  9419. #endif
  9420. void enable_curses(void) {
  9421. int x;
  9422. __maybe_unused int y;
  9423. lock_curses();
  9424. if (curses_active) {
  9425. unlock_curses();
  9426. return;
  9427. }
  9428. #ifdef USE_UNICODE
  9429. if (use_unicode)
  9430. {
  9431. setlocale(LC_CTYPE, "");
  9432. if (iswprint(0xb0))
  9433. have_unicode_degrees = true;
  9434. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9435. }
  9436. #endif
  9437. mainwin = initscr();
  9438. start_color();
  9439. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9440. if (ERR != use_default_colors())
  9441. default_bgcolor = -1;
  9442. #endif
  9443. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9444. {
  9445. menu_attr = COLOR_PAIR(1);
  9446. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9447. attr_bad |= COLOR_PAIR(2);
  9448. }
  9449. keypad(mainwin, true);
  9450. getmaxyx(mainwin, y, x);
  9451. statuswin = newwin(logstart, x, 0, 0);
  9452. leaveok(statuswin, true);
  9453. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9454. // We resize the window later anyway, so just start it off at 1 :)
  9455. logwin = newwin(1, 0, logcursor, 0);
  9456. idlok(logwin, true);
  9457. scrollok(logwin, true);
  9458. leaveok(logwin, true);
  9459. cbreak();
  9460. noecho();
  9461. nonl();
  9462. curses_active = true;
  9463. statusy = logstart;
  9464. unlock_curses();
  9465. }
  9466. #endif
  9467. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9468. #ifndef WANT_CPUMINE
  9469. struct device_drv cpu_drv;
  9470. struct device_drv cpu_drv = {
  9471. .name = "CPU",
  9472. };
  9473. #endif
  9474. static int cgminer_id_count = 0;
  9475. static int device_line_id_count;
  9476. void register_device(struct cgpu_info *cgpu)
  9477. {
  9478. cgpu->deven = DEV_ENABLED;
  9479. wr_lock(&devices_lock);
  9480. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9481. wr_unlock(&devices_lock);
  9482. if (!cgpu->proc_id)
  9483. cgpu->device_line_id = device_line_id_count++;
  9484. mining_threads += cgpu->threads ?: 1;
  9485. #ifdef HAVE_CURSES
  9486. adj_width(mining_threads, &dev_width);
  9487. #endif
  9488. rwlock_init(&cgpu->qlock);
  9489. cgpu->queued_work = NULL;
  9490. }
  9491. struct _cgpu_devid_counter {
  9492. char name[4];
  9493. int lastid;
  9494. UT_hash_handle hh;
  9495. };
  9496. void renumber_cgpu(struct cgpu_info *cgpu)
  9497. {
  9498. static struct _cgpu_devid_counter *devids = NULL;
  9499. struct _cgpu_devid_counter *d;
  9500. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9501. if (d)
  9502. cgpu->device_id = ++d->lastid;
  9503. else {
  9504. d = malloc(sizeof(*d));
  9505. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9506. cgpu->device_id = d->lastid = 0;
  9507. HASH_ADD_STR(devids, name, d);
  9508. }
  9509. // Build repr strings
  9510. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9511. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9512. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9513. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9514. const int lpcount = cgpu->procs;
  9515. if (lpcount > 1)
  9516. {
  9517. int ns;
  9518. struct cgpu_info *slave;
  9519. int lpdigits = 1;
  9520. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9521. ++lpdigits;
  9522. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9523. cgpu->proc_repr[5 + lpdigits] = '\0';
  9524. ns = strlen(cgpu->proc_repr_ns);
  9525. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9526. slave = cgpu;
  9527. for (int i = 1; i < lpcount; ++i)
  9528. {
  9529. slave = slave->next_proc;
  9530. strcpy(slave->proc_repr, cgpu->proc_repr);
  9531. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9532. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9533. {
  9534. slave->proc_repr_ns[ns + y] =
  9535. slave->proc_repr[5 + y] += (x % 26);
  9536. }
  9537. }
  9538. }
  9539. }
  9540. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9541. {
  9542. sha256(buffer, length, digest);
  9543. return true;
  9544. }
  9545. static
  9546. int drv_algo_check(const struct device_drv * const drv)
  9547. {
  9548. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9549. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9550. return (algos & algomatch);
  9551. }
  9552. #ifndef HAVE_PTHREAD_CANCEL
  9553. extern void setup_pthread_cancel_workaround();
  9554. extern struct sigaction pcwm_orig_term_handler;
  9555. #endif
  9556. bool bfg_need_detect_rescan;
  9557. extern void probe_device(struct lowlevel_device_info *);
  9558. static void schedule_rescan(const struct timeval *);
  9559. static
  9560. void drv_detect_all()
  9561. {
  9562. bool rescanning = false;
  9563. rescan:
  9564. bfg_need_detect_rescan = false;
  9565. #ifdef HAVE_BFG_LOWLEVEL
  9566. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9567. LL_FOREACH_SAFE(infolist, info, infotmp)
  9568. probe_device(info);
  9569. LL_FOREACH_SAFE(infolist, info, infotmp)
  9570. pthread_join(info->probe_pth, NULL);
  9571. #endif
  9572. struct driver_registration *reg, *tmp;
  9573. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9574. {
  9575. const struct device_drv * const drv = reg->drv;
  9576. if (!(drv_algo_check(drv) && drv->drv_detect))
  9577. continue;
  9578. drv->drv_detect();
  9579. }
  9580. #ifdef HAVE_BFG_LOWLEVEL
  9581. lowlevel_scan_free();
  9582. #endif
  9583. if (bfg_need_detect_rescan)
  9584. {
  9585. if (rescanning)
  9586. {
  9587. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9588. struct timeval tv_when;
  9589. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9590. schedule_rescan(&tv_when);
  9591. }
  9592. else
  9593. {
  9594. rescanning = true;
  9595. applog(LOG_DEBUG, "Device rescan requested");
  9596. goto rescan;
  9597. }
  9598. }
  9599. }
  9600. static
  9601. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9602. {
  9603. struct thr_info *thr;
  9604. int j;
  9605. struct device_drv *api = cgpu->drv;
  9606. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9607. int threadobj = cgpu->threads;
  9608. if (!threadobj)
  9609. // Create a fake thread object to handle hashmeter etc
  9610. threadobj = 1;
  9611. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9612. cgpu->thr[threadobj] = NULL;
  9613. cgpu->status = LIFE_INIT;
  9614. if (opt_devices_enabled_list)
  9615. {
  9616. struct string_elist *enablestr_elist;
  9617. cgpu->deven = DEV_DISABLED;
  9618. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9619. {
  9620. const char * const enablestr = enablestr_elist->string;
  9621. if (cgpu_match(enablestr, cgpu))
  9622. {
  9623. cgpu->deven = DEV_ENABLED;
  9624. break;
  9625. }
  9626. }
  9627. }
  9628. cgpu->max_hashes = 0;
  9629. BFGINIT(cgpu->min_nonce_diff, 1);
  9630. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9631. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9632. // Setup thread structs before starting any of the threads, in case they try to interact
  9633. for (j = 0; j < threadobj; ++j, ++*kp) {
  9634. thr = get_thread(*kp);
  9635. thr->id = *kp;
  9636. thr->cgpu = cgpu;
  9637. thr->device_thread = j;
  9638. thr->work_restart_notifier[1] = INVSOCK;
  9639. thr->mutex_request[1] = INVSOCK;
  9640. thr->_job_transition_in_progress = true;
  9641. timerclear(&thr->tv_morework);
  9642. thr->scanhash_working = true;
  9643. thr->hashes_done = 0;
  9644. timerclear(&thr->tv_hashes_done);
  9645. cgtime(&thr->tv_lastupdate);
  9646. thr->tv_poll.tv_sec = -1;
  9647. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9648. cgpu->thr[j] = thr;
  9649. }
  9650. if (!cgpu->device->threads)
  9651. notifier_init_invalid(cgpu->thr[0]->notifier);
  9652. else
  9653. if (!cgpu->threads)
  9654. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9655. else
  9656. for (j = 0; j < cgpu->threads; ++j)
  9657. {
  9658. thr = cgpu->thr[j];
  9659. notifier_init(thr->notifier);
  9660. }
  9661. }
  9662. static
  9663. void start_cgpu(struct cgpu_info *cgpu)
  9664. {
  9665. struct thr_info *thr;
  9666. int j;
  9667. for (j = 0; j < cgpu->threads; ++j) {
  9668. thr = cgpu->thr[j];
  9669. /* Enable threads for devices set not to mine but disable
  9670. * their queue in case we wish to enable them later */
  9671. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9672. continue;
  9673. thread_reportout(thr);
  9674. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9675. quit(1, "thread %d create failed", thr->id);
  9676. notifier_wake(thr->notifier);
  9677. }
  9678. if (cgpu->deven == DEV_ENABLED)
  9679. proc_enable(cgpu);
  9680. }
  9681. static
  9682. void _scan_serial(void *p)
  9683. {
  9684. const char *s = p;
  9685. struct string_elist *iter, *tmp;
  9686. struct string_elist *orig_scan_devices = scan_devices;
  9687. if (s)
  9688. {
  9689. // Make temporary scan_devices list
  9690. scan_devices = NULL;
  9691. string_elist_add("noauto", &scan_devices);
  9692. add_serial(s);
  9693. }
  9694. drv_detect_all();
  9695. if (s)
  9696. {
  9697. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9698. {
  9699. string_elist_del(&scan_devices, iter);
  9700. }
  9701. scan_devices = orig_scan_devices;
  9702. }
  9703. }
  9704. #ifdef HAVE_BFG_LOWLEVEL
  9705. static
  9706. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9707. {
  9708. if (!(false
  9709. || (info->serial && !strcasecmp(ser, info->serial))
  9710. || (info->path && !strcasecmp(ser, info->path ))
  9711. || (info->devid && !strcasecmp(ser, info->devid ))
  9712. ))
  9713. {
  9714. char *devid = devpath_to_devid(ser);
  9715. if (!devid)
  9716. return false;
  9717. const bool different = strcmp(info->devid, devid);
  9718. free(devid);
  9719. if (different)
  9720. return false;
  9721. }
  9722. return true;
  9723. }
  9724. static
  9725. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9726. {
  9727. struct driver_registration *dreg;
  9728. char dname[dnamelen];
  9729. int i;
  9730. for (i = 0; i < dnamelen; ++i)
  9731. dname[i] = tolower(_dname[i]);
  9732. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9733. if (!dreg)
  9734. {
  9735. for (i = 0; i < dnamelen; ++i)
  9736. dname[i] = toupper(_dname[i]);
  9737. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9738. if (!dreg)
  9739. return NULL;
  9740. }
  9741. if (!drv_algo_check(dreg->drv))
  9742. return NULL;
  9743. return dreg->drv;
  9744. }
  9745. static
  9746. void *probe_device_thread(void *p)
  9747. {
  9748. struct lowlevel_device_info * const infolist = p;
  9749. struct lowlevel_device_info *info = infolist;
  9750. bool request_rescan = false;
  9751. {
  9752. char threadname[5 + strlen(info->devid) + 1];
  9753. sprintf(threadname, "probe_%s", info->devid);
  9754. RenameThread(threadname);
  9755. }
  9756. // If already in use, ignore
  9757. if (bfg_claim_any(NULL, NULL, info->devid))
  9758. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9759. __func__, info->product);
  9760. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9761. struct string_elist *sd_iter, *sd_tmp;
  9762. struct driver_registration *dreg, *dreg_tmp;
  9763. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9764. {
  9765. const char * const dname = sd_iter->string;
  9766. const char * const colon = strpbrk(dname, ":@");
  9767. if (!(colon && colon != dname))
  9768. continue;
  9769. const char * const ser = &colon[1];
  9770. LL_FOREACH2(infolist, info, same_devid_next)
  9771. {
  9772. if (!_probe_device_match(info, ser))
  9773. continue;
  9774. const size_t dnamelen = (colon - dname);
  9775. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9776. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9777. continue;
  9778. if (drv->lowl_probe(info))
  9779. return NULL;
  9780. else
  9781. if (opt_hotplug)
  9782. request_rescan = true;
  9783. }
  9784. }
  9785. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9786. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9787. {
  9788. const struct device_drv * const drv = dreg->drv;
  9789. if (!drv_algo_check(drv))
  9790. continue;
  9791. // Check for "noauto" flag
  9792. // NOTE: driver-specific configuration overrides general
  9793. bool doauto = true;
  9794. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9795. {
  9796. const char * const dname = sd_iter->string;
  9797. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9798. const char *colon = strchr(dname, ':');
  9799. if (!colon)
  9800. colon = &dname[-1];
  9801. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9802. continue;
  9803. const ssize_t dnamelen = (colon - dname);
  9804. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9805. continue;
  9806. doauto = (tolower(colon[1]) == 'a');
  9807. if (dnamelen != -1)
  9808. break;
  9809. }
  9810. if (doauto && drv->lowl_match)
  9811. {
  9812. LL_FOREACH2(infolist, info, same_devid_next)
  9813. {
  9814. if (!drv->lowl_match(info))
  9815. continue;
  9816. if (drv->lowl_probe(info))
  9817. return NULL;
  9818. else
  9819. if (opt_hotplug)
  9820. bfg_need_detect_rescan = true;
  9821. }
  9822. }
  9823. }
  9824. // probe driver(s) with 'all' enabled
  9825. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9826. {
  9827. const char * const dname = sd_iter->string;
  9828. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9829. const char * const colon = strchr(dname, ':');
  9830. if (!colon)
  9831. {
  9832. LL_FOREACH2(infolist, info, same_devid_next)
  9833. {
  9834. if (
  9835. #ifdef NEED_BFG_LOWL_VCOM
  9836. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9837. #endif
  9838. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9839. {
  9840. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9841. {
  9842. const struct device_drv * const drv = dreg->drv;
  9843. if (!drv_algo_check(drv))
  9844. continue;
  9845. if (drv->lowl_probe_by_name_only)
  9846. continue;
  9847. if (!drv->lowl_probe)
  9848. continue;
  9849. if (drv->lowl_probe(info))
  9850. return NULL;
  9851. }
  9852. if (opt_hotplug)
  9853. request_rescan = true;
  9854. break;
  9855. }
  9856. }
  9857. continue;
  9858. }
  9859. if (strcasecmp(&colon[1], "all"))
  9860. continue;
  9861. const size_t dnamelen = (colon - dname);
  9862. LL_FOREACH2(infolist, info, same_devid_next)
  9863. {
  9864. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9865. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9866. continue;
  9867. if (drv->lowl_probe(info))
  9868. return NULL;
  9869. }
  9870. }
  9871. // Only actually request a rescan if we never found any cgpu
  9872. if (request_rescan)
  9873. bfg_need_detect_rescan = true;
  9874. return NULL;
  9875. }
  9876. void probe_device(struct lowlevel_device_info * const info)
  9877. {
  9878. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9879. }
  9880. #endif
  9881. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9882. {
  9883. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9884. int devcount, i, mining_threads_new = 0;
  9885. unsigned int k;
  9886. struct cgpu_info *cgpu;
  9887. struct thr_info *thr;
  9888. void *p;
  9889. mutex_lock(&mutex);
  9890. devcount = total_devices;
  9891. addfunc(arg);
  9892. if (!total_devices_new)
  9893. goto out;
  9894. wr_lock(&devices_lock);
  9895. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9896. if (unlikely(!p))
  9897. {
  9898. wr_unlock(&devices_lock);
  9899. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9900. goto out;
  9901. }
  9902. devices = p;
  9903. wr_unlock(&devices_lock);
  9904. for (i = 0; i < total_devices_new; ++i)
  9905. {
  9906. cgpu = devices_new[i];
  9907. mining_threads_new += cgpu->threads ?: 1;
  9908. }
  9909. wr_lock(&mining_thr_lock);
  9910. mining_threads_new += mining_threads;
  9911. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9912. if (unlikely(!p))
  9913. {
  9914. wr_unlock(&mining_thr_lock);
  9915. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9916. goto out;
  9917. }
  9918. mining_thr = p;
  9919. wr_unlock(&mining_thr_lock);
  9920. for (i = mining_threads; i < mining_threads_new; ++i) {
  9921. mining_thr[i] = calloc(1, sizeof(*thr));
  9922. if (!mining_thr[i])
  9923. {
  9924. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9925. for ( ; --i >= mining_threads; )
  9926. free(mining_thr[i]);
  9927. goto out;
  9928. }
  9929. }
  9930. k = mining_threads;
  9931. for (i = 0; i < total_devices_new; ++i)
  9932. {
  9933. cgpu = devices_new[i];
  9934. allocate_cgpu(cgpu, &k);
  9935. }
  9936. for (i = 0; i < total_devices_new; ++i)
  9937. {
  9938. cgpu = devices_new[i];
  9939. start_cgpu(cgpu);
  9940. register_device(cgpu);
  9941. ++total_devices;
  9942. }
  9943. #ifdef HAVE_CURSES
  9944. switch_logsize();
  9945. #endif
  9946. out:
  9947. total_devices_new = 0;
  9948. devcount = total_devices - devcount;
  9949. mutex_unlock(&mutex);
  9950. return devcount;
  9951. }
  9952. int scan_serial(const char *s)
  9953. {
  9954. return create_new_cgpus(_scan_serial, (void*)s);
  9955. }
  9956. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9957. static bool rescan_active;
  9958. static struct timeval tv_rescan;
  9959. static notifier_t rescan_notifier;
  9960. static
  9961. void *rescan_thread(__maybe_unused void *p)
  9962. {
  9963. pthread_detach(pthread_self());
  9964. RenameThread("rescan");
  9965. struct timeval tv_timeout, tv_now;
  9966. fd_set rfds;
  9967. while (true)
  9968. {
  9969. mutex_lock(&rescan_mutex);
  9970. tv_timeout = tv_rescan;
  9971. if (!timer_isset(&tv_timeout))
  9972. {
  9973. rescan_active = false;
  9974. mutex_unlock(&rescan_mutex);
  9975. break;
  9976. }
  9977. mutex_unlock(&rescan_mutex);
  9978. FD_ZERO(&rfds);
  9979. FD_SET(rescan_notifier[0], &rfds);
  9980. const int maxfd = rescan_notifier[0];
  9981. timer_set_now(&tv_now);
  9982. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9983. notifier_read(rescan_notifier);
  9984. mutex_lock(&rescan_mutex);
  9985. if (timer_passed(&tv_rescan, NULL))
  9986. {
  9987. timer_unset(&tv_rescan);
  9988. mutex_unlock(&rescan_mutex);
  9989. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9990. scan_serial(NULL);
  9991. }
  9992. else
  9993. mutex_unlock(&rescan_mutex);
  9994. }
  9995. return NULL;
  9996. }
  9997. static
  9998. void _schedule_rescan(const struct timeval * const tvp_when)
  9999. {
  10000. if (rescan_active)
  10001. {
  10002. if (timercmp(tvp_when, &tv_rescan, <))
  10003. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  10004. else
  10005. {
  10006. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  10007. tv_rescan = *tvp_when;
  10008. }
  10009. return;
  10010. }
  10011. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  10012. tv_rescan = *tvp_when;
  10013. rescan_active = true;
  10014. static pthread_t pth;
  10015. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  10016. applog(LOG_ERR, "Failed to start rescan thread");
  10017. }
  10018. static
  10019. void schedule_rescan(const struct timeval * const tvp_when)
  10020. {
  10021. mutex_lock(&rescan_mutex);
  10022. _schedule_rescan(tvp_when);
  10023. mutex_unlock(&rescan_mutex);
  10024. }
  10025. #ifdef HAVE_BFG_HOTPLUG
  10026. static
  10027. void hotplug_trigger()
  10028. {
  10029. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  10030. struct timeval tv_now;
  10031. timer_set_now(&tv_now);
  10032. schedule_rescan(&tv_now);
  10033. }
  10034. #endif
  10035. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  10036. static
  10037. void *hotplug_thread(__maybe_unused void *p)
  10038. {
  10039. pthread_detach(pthread_self());
  10040. RenameThread("hotplug");
  10041. struct udev * const udev = udev_new();
  10042. if (unlikely(!udev))
  10043. applogfailr(NULL, LOG_ERR, "udev_new");
  10044. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  10045. if (unlikely(!mon))
  10046. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  10047. if (unlikely(udev_monitor_enable_receiving(mon)))
  10048. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  10049. const int epfd = epoll_create(1);
  10050. if (unlikely(epfd == -1))
  10051. applogfailr(NULL, LOG_ERR, "epoll_create");
  10052. {
  10053. const int fd = udev_monitor_get_fd(mon);
  10054. struct epoll_event ev = {
  10055. .events = EPOLLIN | EPOLLPRI,
  10056. .data.fd = fd,
  10057. };
  10058. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  10059. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  10060. }
  10061. struct epoll_event ev;
  10062. int rv;
  10063. bool pending = false;
  10064. while (true)
  10065. {
  10066. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  10067. if (rv == -1)
  10068. {
  10069. if (errno == EAGAIN || errno == EINTR)
  10070. continue;
  10071. break;
  10072. }
  10073. if (!rv)
  10074. {
  10075. hotplug_trigger();
  10076. pending = false;
  10077. continue;
  10078. }
  10079. struct udev_device * const device = udev_monitor_receive_device(mon);
  10080. if (!device)
  10081. continue;
  10082. const char * const action = udev_device_get_action(device);
  10083. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  10084. if (!strcmp(action, "add"))
  10085. pending = true;
  10086. udev_device_unref(device);
  10087. }
  10088. applogfailr(NULL, LOG_ERR, "epoll_wait");
  10089. }
  10090. #elif defined(WIN32)
  10091. static UINT_PTR _hotplug_wintimer_id;
  10092. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  10093. {
  10094. KillTimer(NULL, _hotplug_wintimer_id);
  10095. _hotplug_wintimer_id = 0;
  10096. hotplug_trigger();
  10097. }
  10098. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  10099. {
  10100. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  10101. {
  10102. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  10103. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  10104. }
  10105. return DefWindowProc(hwnd, msg, wParam, lParam);
  10106. }
  10107. static
  10108. void *hotplug_thread(__maybe_unused void *p)
  10109. {
  10110. pthread_detach(pthread_self());
  10111. WNDCLASS DummyWinCls = {
  10112. .lpszClassName = "BFGDummyWinCls",
  10113. .lpfnWndProc = hotplug_win_callback,
  10114. };
  10115. ATOM a = RegisterClass(&DummyWinCls);
  10116. if (unlikely(!a))
  10117. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  10118. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  10119. if (unlikely(!hwnd))
  10120. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  10121. MSG msg;
  10122. while (GetMessage(&msg, NULL, 0, 0))
  10123. {
  10124. TranslateMessage(&msg);
  10125. DispatchMessage(&msg);
  10126. }
  10127. quit(0, "WM_QUIT received");
  10128. return NULL;
  10129. }
  10130. #endif
  10131. #ifdef HAVE_BFG_HOTPLUG
  10132. static
  10133. void hotplug_start()
  10134. {
  10135. pthread_t pth;
  10136. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  10137. applog(LOG_ERR, "Failed to start hotplug thread");
  10138. }
  10139. #endif
  10140. static void probe_pools(void)
  10141. {
  10142. int i;
  10143. for (i = 0; i < total_pools; i++) {
  10144. struct pool *pool = pools[i];
  10145. pool->testing = true;
  10146. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  10147. }
  10148. }
  10149. static void raise_fd_limits(void)
  10150. {
  10151. #ifdef HAVE_SETRLIMIT
  10152. struct rlimit fdlimit;
  10153. rlim_t old_soft_limit;
  10154. char frombuf[0x10] = "unlimited";
  10155. char hardbuf[0x10] = "unlimited";
  10156. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  10157. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  10158. old_soft_limit = fdlimit.rlim_cur;
  10159. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  10160. fdlimit.rlim_cur = FD_SETSIZE;
  10161. else
  10162. fdlimit.rlim_cur = fdlimit.rlim_max;
  10163. if (fdlimit.rlim_max != RLIM_INFINITY)
  10164. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  10165. if (old_soft_limit != RLIM_INFINITY)
  10166. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  10167. if (fdlimit.rlim_cur == old_soft_limit)
  10168. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10169. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  10170. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  10171. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10172. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10173. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10174. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10175. #else
  10176. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  10177. #endif
  10178. }
  10179. extern void bfg_init_threadlocal();
  10180. extern void stratumsrv_start();
  10181. int main(int argc, char *argv[])
  10182. {
  10183. struct sigaction handler;
  10184. struct thr_info *thr;
  10185. struct block *block;
  10186. unsigned int k;
  10187. int i;
  10188. int rearrange_pools = 0;
  10189. char *s;
  10190. #ifdef WIN32
  10191. LoadLibrary("backtrace.dll");
  10192. #endif
  10193. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  10194. bfg_init_threadlocal();
  10195. #ifndef HAVE_PTHREAD_CANCEL
  10196. setup_pthread_cancel_workaround();
  10197. #endif
  10198. bfg_init_checksums();
  10199. #ifdef WIN32
  10200. {
  10201. WSADATA wsa;
  10202. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10203. if (i)
  10204. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10205. }
  10206. #endif
  10207. /* This dangerous functions tramples random dynamically allocated
  10208. * variables so do it before anything at all */
  10209. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10210. quit(1, "Failed to curl_global_init");
  10211. initial_args = malloc(sizeof(char *) * (argc + 1));
  10212. for (i = 0; i < argc; i++)
  10213. initial_args[i] = strdup(argv[i]);
  10214. initial_args[argc] = NULL;
  10215. mutex_init(&hash_lock);
  10216. mutex_init(&console_lock);
  10217. cglock_init(&control_lock);
  10218. mutex_init(&stats_lock);
  10219. mutex_init(&sharelog_lock);
  10220. cglock_init(&ch_lock);
  10221. mutex_init(&sshare_lock);
  10222. rwlock_init(&blk_lock);
  10223. rwlock_init(&netacc_lock);
  10224. rwlock_init(&mining_thr_lock);
  10225. rwlock_init(&devices_lock);
  10226. mutex_init(&lp_lock);
  10227. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10228. quit(1, "Failed to pthread_cond_init lp_cond");
  10229. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10230. quit(1, "Failed to pthread_cond_init gws_cond");
  10231. notifier_init(submit_waiting_notifier);
  10232. timer_unset(&tv_rescan);
  10233. notifier_init(rescan_notifier);
  10234. /* Create a unique get work queue */
  10235. getq = tq_new();
  10236. if (!getq)
  10237. quit(1, "Failed to create getq");
  10238. /* We use the getq mutex as the staged lock */
  10239. stgd_lock = &getq->mutex;
  10240. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10241. #ifdef WANT_CPUMINE
  10242. init_max_name_len();
  10243. #endif
  10244. handler.sa_handler = &sighandler;
  10245. handler.sa_flags = 0;
  10246. sigemptyset(&handler.sa_mask);
  10247. #ifdef HAVE_PTHREAD_CANCEL
  10248. sigaction(SIGTERM, &handler, &termhandler);
  10249. #else
  10250. // Need to let pthread_cancel emulation handle SIGTERM first
  10251. termhandler = pcwm_orig_term_handler;
  10252. pcwm_orig_term_handler = handler;
  10253. #endif
  10254. sigaction(SIGINT, &handler, &inthandler);
  10255. #ifndef WIN32
  10256. signal(SIGPIPE, SIG_IGN);
  10257. #else
  10258. timeBeginPeriod(1);
  10259. #endif
  10260. opt_kernel_path = CGMINER_PREFIX;
  10261. cgminer_path = alloca(PATH_MAX);
  10262. s = strdup(argv[0]);
  10263. strcpy(cgminer_path, dirname(s));
  10264. free(s);
  10265. strcat(cgminer_path, "/");
  10266. #if defined(WANT_CPUMINE) && defined(WIN32)
  10267. {
  10268. char buf[32];
  10269. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10270. if (gev > 0 && gev < sizeof(buf))
  10271. {
  10272. setup_benchmark_pool();
  10273. double rate = bench_algo_stage3(atoi(buf));
  10274. // Write result to shared memory for parent
  10275. char unique_name[64];
  10276. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10277. {
  10278. HANDLE map_handle = CreateFileMapping(
  10279. INVALID_HANDLE_VALUE, // use paging file
  10280. NULL, // default security attributes
  10281. PAGE_READWRITE, // read/write access
  10282. 0, // size: high 32-bits
  10283. 4096, // size: low 32-bits
  10284. unique_name // name of map object
  10285. );
  10286. if (NULL != map_handle) {
  10287. void *shared_mem = MapViewOfFile(
  10288. map_handle, // object to map view of
  10289. FILE_MAP_WRITE, // read/write access
  10290. 0, // high offset: map from
  10291. 0, // low offset: beginning
  10292. 0 // default: map entire file
  10293. );
  10294. if (NULL != shared_mem)
  10295. CopyMemory(shared_mem, &rate, sizeof(rate));
  10296. (void)UnmapViewOfFile(shared_mem);
  10297. }
  10298. (void)CloseHandle(map_handle);
  10299. }
  10300. exit(0);
  10301. }
  10302. }
  10303. #endif
  10304. devcursor = 8;
  10305. logstart = devcursor;
  10306. logcursor = logstart;
  10307. block = calloc(sizeof(struct block), 1);
  10308. if (unlikely(!block))
  10309. quit (1, "main OOM");
  10310. for (i = 0; i < 36; i++)
  10311. strcat(block->hash, "0");
  10312. HASH_ADD_STR(blocks, hash, block);
  10313. strcpy(current_block, block->hash);
  10314. mutex_init(&submitting_lock);
  10315. #ifdef HAVE_OPENCL
  10316. opencl_early_init();
  10317. #endif
  10318. schedstart.tm.tm_sec = 1;
  10319. schedstop .tm.tm_sec = 1;
  10320. opt_register_table(opt_early_table, NULL);
  10321. opt_register_table(opt_config_table, NULL);
  10322. opt_register_table(opt_cmdline_table, NULL);
  10323. opt_early_parse(argc, argv, applog_and_exit);
  10324. if (!config_loaded)
  10325. {
  10326. load_default_config();
  10327. rearrange_pools = total_pools;
  10328. }
  10329. opt_free_table();
  10330. /* parse command line */
  10331. opt_register_table(opt_config_table,
  10332. "Options for both config file and command line");
  10333. opt_register_table(opt_cmdline_table,
  10334. "Options for command line only");
  10335. opt_parse(&argc, argv, applog_and_exit);
  10336. if (argc != 1)
  10337. quit(1, "Unexpected extra commandline arguments");
  10338. if (rearrange_pools && rearrange_pools < total_pools)
  10339. {
  10340. // Prioritise commandline pools before default-config pools
  10341. for (i = 0; i < rearrange_pools; ++i)
  10342. pools[i]->prio += rearrange_pools;
  10343. for ( ; i < total_pools; ++i)
  10344. pools[i]->prio -= rearrange_pools;
  10345. }
  10346. #ifndef HAVE_PTHREAD_CANCEL
  10347. // Can't do this any earlier, or config isn't loaded
  10348. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10349. #endif
  10350. #ifdef HAVE_PWD_H
  10351. struct passwd *user_info = NULL;
  10352. if (opt_setuid != NULL) {
  10353. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10354. quit(1, "Unable to find setuid user information");
  10355. }
  10356. }
  10357. #endif
  10358. #ifdef HAVE_CHROOT
  10359. if (chroot_dir != NULL) {
  10360. #ifdef HAVE_PWD_H
  10361. if (user_info == NULL && getuid() == 0) {
  10362. applog(LOG_WARNING, "Running as root inside chroot");
  10363. }
  10364. #endif
  10365. if (chroot(chroot_dir) != 0) {
  10366. quit(1, "Unable to chroot");
  10367. }
  10368. if (chdir("/"))
  10369. quit(1, "Unable to chdir to chroot");
  10370. }
  10371. #endif
  10372. #ifdef HAVE_PWD_H
  10373. if (user_info != NULL) {
  10374. if (setgid((*user_info).pw_gid) != 0)
  10375. quit(1, "Unable to setgid");
  10376. if (setuid((*user_info).pw_uid) != 0)
  10377. quit(1, "Unable to setuid");
  10378. }
  10379. #endif
  10380. raise_fd_limits();
  10381. if (opt_benchmark) {
  10382. while (total_pools)
  10383. remove_pool(pools[0]);
  10384. setup_benchmark_pool();
  10385. }
  10386. if (opt_unittest) {
  10387. test_cgpu_match();
  10388. test_intrange();
  10389. test_decimal_width();
  10390. test_domain_funcs();
  10391. test_target();
  10392. utf8_test();
  10393. }
  10394. #ifdef HAVE_CURSES
  10395. if (opt_realquiet || opt_display_devs)
  10396. use_curses = false;
  10397. setlocale(LC_ALL, "C");
  10398. if (use_curses)
  10399. enable_curses();
  10400. #endif
  10401. #ifdef HAVE_LIBUSB
  10402. int err = libusb_init(NULL);
  10403. if (err)
  10404. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10405. else
  10406. have_libusb = true;
  10407. #endif
  10408. applog(LOG_WARNING, "Started %s", packagename);
  10409. if (cnfbuf) {
  10410. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10411. switch (fileconf_load) {
  10412. case 0:
  10413. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10414. applog(LOG_WARNING, "Configuration file could not be used.");
  10415. break;
  10416. case -1:
  10417. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10418. if (use_curses)
  10419. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10420. break;
  10421. default:
  10422. break;
  10423. }
  10424. free(cnfbuf);
  10425. cnfbuf = NULL;
  10426. }
  10427. i = strlen(opt_kernel_path) + 2;
  10428. char __kernel_path[i];
  10429. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10430. opt_kernel_path = __kernel_path;
  10431. if (want_per_device_stats)
  10432. opt_log_output = true;
  10433. #ifdef WANT_CPUMINE
  10434. #ifdef USE_SCRYPT
  10435. if (opt_scrypt)
  10436. set_scrypt_algo(&opt_algo);
  10437. #endif
  10438. #endif
  10439. bfg_devapi_init();
  10440. drv_detect_all();
  10441. total_devices = total_devices_new;
  10442. devices = devices_new;
  10443. total_devices_new = 0;
  10444. devices_new = NULL;
  10445. if (opt_display_devs) {
  10446. int devcount = 0;
  10447. applog(LOG_ERR, "Devices detected:");
  10448. for (i = 0; i < total_devices; ++i) {
  10449. struct cgpu_info *cgpu = devices[i];
  10450. char buf[0x100];
  10451. if (cgpu->device != cgpu)
  10452. continue;
  10453. if (cgpu->name)
  10454. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10455. else
  10456. if (cgpu->dev_manufacturer)
  10457. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10458. else
  10459. if (cgpu->dev_product)
  10460. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10461. else
  10462. strcpy(buf, " Device");
  10463. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10464. if (cgpu->dev_serial)
  10465. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10466. if (cgpu->device_path)
  10467. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10468. tailsprintf(buf, sizeof(buf), ")");
  10469. _applog(LOG_NOTICE, buf);
  10470. ++devcount;
  10471. }
  10472. quit(0, "%d devices listed", devcount);
  10473. }
  10474. mining_threads = 0;
  10475. for (i = 0; i < total_devices; ++i)
  10476. register_device(devices[i]);
  10477. if (!total_devices) {
  10478. applog(LOG_WARNING, "No devices detected!");
  10479. if (use_curses)
  10480. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10481. else
  10482. applog(LOG_WARNING, "Waiting for devices");
  10483. }
  10484. if (opt_quit_summary == BQS_DEFAULT)
  10485. {
  10486. if (total_devices < 25)
  10487. opt_quit_summary = BQS_PROCS;
  10488. else
  10489. opt_quit_summary = BQS_DEVS;
  10490. }
  10491. #ifdef HAVE_CURSES
  10492. switch_logsize();
  10493. #endif
  10494. if (!total_pools) {
  10495. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10496. #ifdef HAVE_CURSES
  10497. if (!use_curses || !input_pool(false))
  10498. #endif
  10499. quit(1, "Pool setup failed");
  10500. }
  10501. for (i = 0; i < total_pools; i++) {
  10502. struct pool *pool = pools[i];
  10503. size_t siz;
  10504. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10505. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10506. if (!pool->rpc_url)
  10507. quit(1, "No URI supplied for pool %u", i);
  10508. if (!pool->rpc_userpass) {
  10509. if (!pool->rpc_user || !pool->rpc_pass)
  10510. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10511. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10512. pool->rpc_userpass = malloc(siz);
  10513. if (!pool->rpc_userpass)
  10514. quit(1, "Failed to malloc userpass");
  10515. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10516. }
  10517. }
  10518. /* Set the currentpool to pool with priority 0 */
  10519. validate_pool_priorities();
  10520. for (i = 0; i < total_pools; i++) {
  10521. struct pool *pool = pools[i];
  10522. if (!pool->prio)
  10523. currentpool = pool;
  10524. }
  10525. #ifdef HAVE_SYSLOG_H
  10526. if (use_syslog)
  10527. openlog(PACKAGE, LOG_PID, LOG_USER);
  10528. #endif
  10529. #if defined(unix) || defined(__APPLE__)
  10530. if (opt_stderr_cmd)
  10531. fork_monitor();
  10532. #endif // defined(unix)
  10533. mining_thr = calloc(mining_threads, sizeof(thr));
  10534. if (!mining_thr)
  10535. quit(1, "Failed to calloc mining_thr");
  10536. for (i = 0; i < mining_threads; i++) {
  10537. mining_thr[i] = calloc(1, sizeof(*thr));
  10538. if (!mining_thr[i])
  10539. quit(1, "Failed to calloc mining_thr[%d]", i);
  10540. }
  10541. total_control_threads = 6;
  10542. control_thr = calloc(total_control_threads, sizeof(*thr));
  10543. if (!control_thr)
  10544. quit(1, "Failed to calloc control_thr");
  10545. if (opt_benchmark)
  10546. goto begin_bench;
  10547. for (i = 0; i < total_pools; i++) {
  10548. struct pool *pool = pools[i];
  10549. enable_pool(pool);
  10550. pool->idle = true;
  10551. }
  10552. applog(LOG_NOTICE, "Probing for an alive pool");
  10553. do {
  10554. bool still_testing;
  10555. int i;
  10556. /* Look for at least one active pool before starting */
  10557. probe_pools();
  10558. do {
  10559. sleep(1);
  10560. if (pools_active)
  10561. break;
  10562. still_testing = false;
  10563. for (int i = 0; i < total_pools; ++i)
  10564. if (pools[i]->testing)
  10565. still_testing = true;
  10566. } while (still_testing);
  10567. if (!pools_active) {
  10568. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10569. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10570. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10571. for (i = 0; i < total_pools; i++) {
  10572. struct pool *pool;
  10573. pool = pools[i];
  10574. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10575. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10576. }
  10577. #ifdef HAVE_CURSES
  10578. if (use_curses) {
  10579. halfdelay(150);
  10580. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10581. if (getch() != ERR)
  10582. quit(0, "No servers could be used! Exiting.");
  10583. cbreak();
  10584. } else
  10585. #endif
  10586. quit(0, "No servers could be used! Exiting.");
  10587. }
  10588. } while (!pools_active);
  10589. #ifdef USE_SCRYPT
  10590. if (detect_algo == 1 && !opt_scrypt) {
  10591. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10592. opt_scrypt = true;
  10593. }
  10594. #endif
  10595. detect_algo = 0;
  10596. begin_bench:
  10597. total_mhashes_done = 0;
  10598. for (i = 0; i < total_devices; i++) {
  10599. struct cgpu_info *cgpu = devices[i];
  10600. cgpu->rolling = cgpu->total_mhashes = 0;
  10601. }
  10602. cgtime(&total_tv_start);
  10603. cgtime(&total_tv_end);
  10604. miner_started = total_tv_start;
  10605. time_t miner_start_ts = time(NULL);
  10606. if (schedstart.tm.tm_sec)
  10607. localtime_r(&miner_start_ts, &schedstart.tm);
  10608. if (schedstop.tm.tm_sec)
  10609. localtime_r(&miner_start_ts, &schedstop .tm);
  10610. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10611. // Initialise processors and threads
  10612. k = 0;
  10613. for (i = 0; i < total_devices; ++i) {
  10614. struct cgpu_info *cgpu = devices[i];
  10615. allocate_cgpu(cgpu, &k);
  10616. }
  10617. // Start threads
  10618. for (i = 0; i < total_devices; ++i) {
  10619. struct cgpu_info *cgpu = devices[i];
  10620. start_cgpu(cgpu);
  10621. }
  10622. #ifdef HAVE_OPENCL
  10623. for (i = 0; i < nDevs; i++)
  10624. pause_dynamic_threads(i);
  10625. #endif
  10626. #ifdef WANT_CPUMINE
  10627. if (opt_n_threads > 0)
  10628. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10629. opt_n_threads, algo_names[opt_algo]);
  10630. #endif
  10631. cgtime(&total_tv_start);
  10632. cgtime(&total_tv_end);
  10633. if (!opt_benchmark)
  10634. {
  10635. pthread_t submit_thread;
  10636. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10637. quit(1, "submit_work thread create failed");
  10638. }
  10639. watchpool_thr_id = 1;
  10640. thr = &control_thr[watchpool_thr_id];
  10641. /* start watchpool thread */
  10642. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10643. quit(1, "watchpool thread create failed");
  10644. pthread_detach(thr->pth);
  10645. watchdog_thr_id = 2;
  10646. thr = &control_thr[watchdog_thr_id];
  10647. /* start watchdog thread */
  10648. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10649. quit(1, "watchdog thread create failed");
  10650. pthread_detach(thr->pth);
  10651. #ifdef HAVE_OPENCL
  10652. /* Create reinit gpu thread */
  10653. gpur_thr_id = 3;
  10654. thr = &control_thr[gpur_thr_id];
  10655. thr->q = tq_new();
  10656. if (!thr->q)
  10657. quit(1, "tq_new failed for gpur_thr_id");
  10658. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10659. quit(1, "reinit_gpu thread create failed");
  10660. #endif
  10661. /* Create API socket thread */
  10662. api_thr_id = 4;
  10663. thr = &control_thr[api_thr_id];
  10664. if (thr_info_create(thr, NULL, api_thread, thr))
  10665. quit(1, "API thread create failed");
  10666. #ifdef USE_LIBMICROHTTPD
  10667. if (httpsrv_port != -1)
  10668. httpsrv_start(httpsrv_port);
  10669. #endif
  10670. #ifdef USE_LIBEVENT
  10671. if (stratumsrv_port != -1)
  10672. stratumsrv_start();
  10673. #endif
  10674. #ifdef HAVE_BFG_HOTPLUG
  10675. if (opt_hotplug && !opt_scrypt)
  10676. hotplug_start();
  10677. #endif
  10678. #ifdef HAVE_CURSES
  10679. /* Create curses input thread for keyboard input. Create this last so
  10680. * that we know all threads are created since this can call kill_work
  10681. * to try and shut down ll previous threads. */
  10682. input_thr_id = 5;
  10683. thr = &control_thr[input_thr_id];
  10684. if (thr_info_create(thr, NULL, input_thread, thr))
  10685. quit(1, "input thread create failed");
  10686. pthread_detach(thr->pth);
  10687. #endif
  10688. /* Just to be sure */
  10689. if (total_control_threads != 6)
  10690. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10691. /* Once everything is set up, main() becomes the getwork scheduler */
  10692. while (42) {
  10693. int ts, max_staged = opt_queue;
  10694. struct pool *pool, *cp;
  10695. bool lagging = false;
  10696. struct curl_ent *ce;
  10697. struct work *work;
  10698. cp = current_pool();
  10699. // Generally, each processor needs a new work, and all at once during work restarts
  10700. max_staged += mining_threads;
  10701. mutex_lock(stgd_lock);
  10702. ts = __total_staged();
  10703. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10704. lagging = true;
  10705. /* Wait until hash_pop tells us we need to create more work */
  10706. if (ts > max_staged) {
  10707. staged_full = true;
  10708. pthread_cond_wait(&gws_cond, stgd_lock);
  10709. ts = __total_staged();
  10710. }
  10711. mutex_unlock(stgd_lock);
  10712. if (ts > max_staged)
  10713. continue;
  10714. work = make_work();
  10715. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10716. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10717. cp->getfail_occasions++;
  10718. total_go++;
  10719. }
  10720. pool = select_pool(lagging);
  10721. retry:
  10722. if (pool->has_stratum) {
  10723. while (!pool->stratum_active || !pool->stratum_notify) {
  10724. struct pool *altpool = select_pool(true);
  10725. if (altpool == pool && pool->has_stratum)
  10726. cgsleep_ms(5000);
  10727. pool = altpool;
  10728. goto retry;
  10729. }
  10730. gen_stratum_work(pool, work);
  10731. applog(LOG_DEBUG, "Generated stratum work");
  10732. stage_work(work);
  10733. continue;
  10734. }
  10735. if (pool->last_work_copy) {
  10736. mutex_lock(&pool->last_work_lock);
  10737. struct work *last_work = pool->last_work_copy;
  10738. if (!last_work)
  10739. {}
  10740. else
  10741. if (can_roll(last_work) && should_roll(last_work)) {
  10742. struct timeval tv_now;
  10743. cgtime(&tv_now);
  10744. free_work(work);
  10745. work = make_clone(pool->last_work_copy);
  10746. mutex_unlock(&pool->last_work_lock);
  10747. roll_work(work);
  10748. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tr->tmpl, tv_now.tv_sec));
  10749. stage_work(work);
  10750. continue;
  10751. } else if (last_work->tr && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tr->tmpl) > (unsigned long)mining_threads) {
  10752. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10753. } else {
  10754. free_work(last_work);
  10755. pool->last_work_copy = NULL;
  10756. }
  10757. mutex_unlock(&pool->last_work_lock);
  10758. }
  10759. if (clone_available()) {
  10760. applog(LOG_DEBUG, "Cloned getwork work");
  10761. free_work(work);
  10762. continue;
  10763. }
  10764. if (opt_benchmark) {
  10765. get_benchmark_work(work);
  10766. applog(LOG_DEBUG, "Generated benchmark work");
  10767. stage_work(work);
  10768. continue;
  10769. }
  10770. work->pool = pool;
  10771. ce = pop_curl_entry3(pool, 2);
  10772. /* obtain new work from bitcoin via JSON-RPC */
  10773. if (!get_upstream_work(work, ce->curl)) {
  10774. struct pool *next_pool;
  10775. /* Make sure the pool just hasn't stopped serving
  10776. * requests but is up as we'll keep hammering it */
  10777. push_curl_entry(ce, pool);
  10778. ++pool->seq_getfails;
  10779. pool_died(pool);
  10780. next_pool = select_pool(!opt_fail_only);
  10781. if (pool == next_pool) {
  10782. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10783. cgsleep_ms(5000);
  10784. } else {
  10785. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10786. pool = next_pool;
  10787. }
  10788. goto retry;
  10789. }
  10790. if (ts >= max_staged)
  10791. pool_tclear(pool, &pool->lagging);
  10792. if (pool_tclear(pool, &pool->idle))
  10793. pool_resus(pool);
  10794. applog(LOG_DEBUG, "Generated getwork work");
  10795. stage_work(work);
  10796. push_curl_entry(ce, pool);
  10797. }
  10798. return 0;
  10799. }