miner.c 298 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <limits.h>
  22. #include <locale.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <sys/time.h>
  30. #include <time.h>
  31. #include <math.h>
  32. #include <stdarg.h>
  33. #include <assert.h>
  34. #include <signal.h>
  35. #include <wctype.h>
  36. #include <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <dirent.h>
  39. #ifdef HAVE_PWD_H
  40. #include <pwd.h>
  41. #endif
  42. #ifndef WIN32
  43. #include <sys/resource.h>
  44. #include <sys/socket.h>
  45. #else
  46. #include <winsock2.h>
  47. #include <windows.h>
  48. #endif
  49. #include <ccan/opt/opt.h>
  50. #include <jansson.h>
  51. #include <curl/curl.h>
  52. #include <libgen.h>
  53. #include <sha2.h>
  54. #include <utlist.h>
  55. #include <blkmaker.h>
  56. #include <blkmaker_jansson.h>
  57. #include <blktemplate.h>
  58. #include "compat.h"
  59. #include "deviceapi.h"
  60. #include "logging.h"
  61. #include "miner.h"
  62. #include "findnonce.h"
  63. #include "adl.h"
  64. #include "driver-cpu.h"
  65. #include "driver-opencl.h"
  66. #include "bench_block.h"
  67. #include "scrypt.h"
  68. #ifdef USE_AVALON
  69. #include "driver-avalon.h"
  70. #endif
  71. #ifdef HAVE_BFG_LOWLEVEL
  72. #include "lowlevel.h"
  73. #endif
  74. #if defined(unix) || defined(__APPLE__)
  75. #include <errno.h>
  76. #include <fcntl.h>
  77. #include <sys/wait.h>
  78. #endif
  79. #ifdef USE_SCRYPT
  80. #include "scrypt.h"
  81. #endif
  82. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  83. # define USE_FPGA
  84. #endif
  85. struct strategies strategies[] = {
  86. { "Failover" },
  87. { "Round Robin" },
  88. { "Rotate" },
  89. { "Load Balance" },
  90. { "Balance" },
  91. };
  92. static char packagename[256];
  93. bool opt_protocol;
  94. bool opt_dev_protocol;
  95. static bool opt_benchmark;
  96. static bool want_longpoll = true;
  97. static bool want_gbt = true;
  98. static bool want_getwork = true;
  99. #if BLKMAKER_VERSION > 1
  100. struct _cbscript_t {
  101. char *data;
  102. size_t sz;
  103. };
  104. static struct _cbscript_t opt_coinbase_script;
  105. static uint32_t template_nonce;
  106. #endif
  107. #if BLKMAKER_VERSION > 0
  108. char *opt_coinbase_sig;
  109. #endif
  110. char *request_target_str;
  111. float request_pdiff = 1.0;
  112. double request_bdiff;
  113. static bool want_stratum = true;
  114. bool have_longpoll;
  115. int opt_skip_checks;
  116. bool want_per_device_stats;
  117. bool use_syslog;
  118. bool opt_quiet_work_updates;
  119. bool opt_quiet;
  120. bool opt_realquiet;
  121. bool opt_loginput;
  122. bool opt_compact;
  123. bool opt_show_procs;
  124. const int opt_cutofftemp = 95;
  125. int opt_hysteresis = 3;
  126. static int opt_retries = -1;
  127. int opt_fail_pause = 5;
  128. int opt_log_interval = 5;
  129. int opt_queue = 1;
  130. int opt_scantime = 60;
  131. int opt_expiry = 120;
  132. int opt_expiry_lp = 3600;
  133. int opt_bench_algo = -1;
  134. unsigned long long global_hashrate;
  135. static bool opt_unittest = false;
  136. unsigned long global_quota_gcd = 1;
  137. #ifdef HAVE_OPENCL
  138. int opt_dynamic_interval = 7;
  139. int nDevs;
  140. int opt_g_threads = -1;
  141. #endif
  142. #ifdef USE_SCRYPT
  143. static char detect_algo = 1;
  144. bool opt_scrypt;
  145. #else
  146. static char detect_algo;
  147. #endif
  148. bool opt_restart = true;
  149. #ifdef USE_LIBMICROHTTPD
  150. #include "httpsrv.h"
  151. int httpsrv_port = -1;
  152. #endif
  153. #ifdef USE_LIBEVENT
  154. int stratumsrv_port = -1;
  155. #endif
  156. struct string_elist *scan_devices;
  157. static struct string_elist *opt_set_device_list;
  158. bool opt_force_dev_init;
  159. static struct string_elist *opt_devices_enabled_list;
  160. static bool opt_display_devs;
  161. int total_devices;
  162. struct cgpu_info **devices;
  163. int total_devices_new;
  164. struct cgpu_info **devices_new;
  165. bool have_opencl;
  166. int opt_n_threads = -1;
  167. int mining_threads;
  168. int num_processors;
  169. #ifdef HAVE_CURSES
  170. bool use_curses = true;
  171. #else
  172. bool use_curses;
  173. #endif
  174. #ifdef HAVE_LIBUSB
  175. bool have_libusb;
  176. #endif
  177. static bool opt_submit_stale = true;
  178. static int opt_shares;
  179. static int opt_submit_threads = 0x40;
  180. bool opt_fail_only;
  181. bool opt_autofan;
  182. bool opt_autoengine;
  183. bool opt_noadl;
  184. char *opt_api_allow = NULL;
  185. char *opt_api_groups;
  186. char *opt_api_description = PACKAGE_STRING;
  187. int opt_api_port = 4028;
  188. bool opt_api_listen;
  189. bool opt_api_mcast;
  190. char *opt_api_mcast_addr = API_MCAST_ADDR;
  191. char *opt_api_mcast_code = API_MCAST_CODE;
  192. char *opt_api_mcast_des = "";
  193. int opt_api_mcast_port = 4028;
  194. bool opt_api_network;
  195. bool opt_delaynet;
  196. bool opt_disable_pool;
  197. static bool no_work;
  198. char *opt_icarus_options = NULL;
  199. char *opt_icarus_timing = NULL;
  200. bool opt_worktime;
  201. #ifdef USE_AVALON
  202. char *opt_avalon_options = NULL;
  203. #endif
  204. #ifdef USE_KLONDIKE
  205. char *opt_klondike_options = NULL;
  206. #endif
  207. char *opt_kernel_path;
  208. char *cgminer_path;
  209. #if defined(USE_BITFORCE)
  210. bool opt_bfl_noncerange;
  211. #endif
  212. #define QUIET (opt_quiet || opt_realquiet)
  213. struct thr_info *control_thr;
  214. struct thr_info **mining_thr;
  215. static int gwsched_thr_id;
  216. static int watchpool_thr_id;
  217. static int watchdog_thr_id;
  218. #ifdef HAVE_CURSES
  219. static int input_thr_id;
  220. #endif
  221. int gpur_thr_id;
  222. static int api_thr_id;
  223. static int total_control_threads;
  224. pthread_mutex_t hash_lock;
  225. static pthread_mutex_t *stgd_lock;
  226. pthread_mutex_t console_lock;
  227. cglock_t ch_lock;
  228. static pthread_rwlock_t blk_lock;
  229. static pthread_mutex_t sshare_lock;
  230. pthread_rwlock_t netacc_lock;
  231. pthread_rwlock_t mining_thr_lock;
  232. pthread_rwlock_t devices_lock;
  233. static pthread_mutex_t lp_lock;
  234. static pthread_cond_t lp_cond;
  235. pthread_cond_t gws_cond;
  236. bool shutting_down;
  237. double total_rolling;
  238. double total_mhashes_done;
  239. static struct timeval total_tv_start, total_tv_end;
  240. static struct timeval miner_started;
  241. cglock_t control_lock;
  242. pthread_mutex_t stats_lock;
  243. static pthread_mutex_t submitting_lock;
  244. static int total_submitting;
  245. static struct work *submit_waiting;
  246. notifier_t submit_waiting_notifier;
  247. int hw_errors;
  248. int total_accepted, total_rejected, total_diff1;
  249. int total_bad_nonces;
  250. int total_getworks, total_stale, total_discarded;
  251. uint64_t total_bytes_rcvd, total_bytes_sent;
  252. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  253. static int staged_rollable;
  254. unsigned int new_blocks;
  255. unsigned int found_blocks;
  256. unsigned int local_work;
  257. unsigned int total_go, total_ro;
  258. struct pool **pools;
  259. static struct pool *currentpool = NULL;
  260. int total_pools, enabled_pools;
  261. enum pool_strategy pool_strategy = POOL_FAILOVER;
  262. int opt_rotate_period;
  263. static int total_urls, total_users, total_passes;
  264. static
  265. #ifndef HAVE_CURSES
  266. const
  267. #endif
  268. bool curses_active;
  269. #ifdef HAVE_CURSES
  270. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  271. const
  272. #endif
  273. short default_bgcolor = COLOR_BLACK;
  274. #endif
  275. static
  276. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  277. bool use_unicode;
  278. static
  279. bool have_unicode_degrees;
  280. static
  281. wchar_t unicode_micro = 'u';
  282. #else
  283. const bool use_unicode;
  284. static
  285. const bool have_unicode_degrees;
  286. static
  287. const char unicode_micro = 'u';
  288. #endif
  289. #ifdef HAVE_CURSES
  290. #define U8_BAD_START "\xef\x80\x81"
  291. #define U8_BAD_END "\xef\x80\x80"
  292. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  293. bool selecting_device;
  294. unsigned selected_device;
  295. #endif
  296. static char current_block[40];
  297. /* Protected by ch_lock */
  298. static char *current_hash;
  299. static uint32_t current_block_id;
  300. char *current_fullhash;
  301. static char datestamp[40];
  302. static char blocktime[32];
  303. time_t block_time;
  304. static char best_share[8] = "0";
  305. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  306. static char block_diff[8];
  307. static char net_hashrate[10];
  308. uint64_t best_diff = 0;
  309. static bool known_blkheight_current;
  310. static uint32_t known_blkheight;
  311. static uint32_t known_blkheight_blkid;
  312. static uint64_t block_subsidy;
  313. struct block {
  314. char hash[40];
  315. UT_hash_handle hh;
  316. int block_no;
  317. };
  318. static struct block *blocks = NULL;
  319. int swork_id;
  320. /* For creating a hash database of stratum shares submitted that have not had
  321. * a response yet */
  322. struct stratum_share {
  323. UT_hash_handle hh;
  324. bool block;
  325. struct work *work;
  326. int id;
  327. };
  328. static struct stratum_share *stratum_shares = NULL;
  329. char *opt_socks_proxy = NULL;
  330. static const char def_conf[] = "bfgminer.conf";
  331. static bool config_loaded;
  332. static int include_count;
  333. #define JSON_INCLUDE_CONF "include"
  334. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  335. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  336. #define JSON_MAX_DEPTH 10
  337. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  338. char *cmd_idle, *cmd_sick, *cmd_dead;
  339. #if defined(unix) || defined(__APPLE__)
  340. static char *opt_stderr_cmd = NULL;
  341. static int forkpid;
  342. #endif // defined(unix)
  343. #ifdef HAVE_CHROOT
  344. char *chroot_dir;
  345. #endif
  346. #ifdef HAVE_PWD_H
  347. char *opt_setuid;
  348. #endif
  349. struct sigaction termhandler, inthandler;
  350. struct thread_q *getq;
  351. static int total_work;
  352. static bool staged_full;
  353. struct work *staged_work = NULL;
  354. struct schedtime {
  355. bool enable;
  356. struct tm tm;
  357. };
  358. struct schedtime schedstart;
  359. struct schedtime schedstop;
  360. bool sched_paused;
  361. static bool time_before(struct tm *tm1, struct tm *tm2)
  362. {
  363. if (tm1->tm_hour < tm2->tm_hour)
  364. return true;
  365. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  366. return true;
  367. return false;
  368. }
  369. static bool should_run(void)
  370. {
  371. struct tm tm;
  372. time_t tt;
  373. bool within_range;
  374. if (!schedstart.enable && !schedstop.enable)
  375. return true;
  376. tt = time(NULL);
  377. localtime_r(&tt, &tm);
  378. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  379. if (time_before(&schedstop.tm, &schedstart.tm))
  380. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  381. else
  382. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  383. if (within_range && !schedstop.enable)
  384. /* This is a once off event with no stop time set */
  385. schedstart.enable = false;
  386. return within_range;
  387. }
  388. void get_datestamp(char *f, size_t fsiz, time_t tt)
  389. {
  390. struct tm _tm;
  391. struct tm *tm = &_tm;
  392. if (tt == INVALID_TIMESTAMP)
  393. tt = time(NULL);
  394. localtime_r(&tt, tm);
  395. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  396. tm->tm_year + 1900,
  397. tm->tm_mon + 1,
  398. tm->tm_mday,
  399. tm->tm_hour,
  400. tm->tm_min,
  401. tm->tm_sec);
  402. }
  403. static
  404. void get_timestamp(char *f, size_t fsiz, time_t tt)
  405. {
  406. struct tm _tm;
  407. struct tm *tm = &_tm;
  408. localtime_r(&tt, tm);
  409. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  410. tm->tm_hour,
  411. tm->tm_min,
  412. tm->tm_sec);
  413. }
  414. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  415. static char exit_buf[512];
  416. static void applog_and_exit(const char *fmt, ...)
  417. {
  418. va_list ap;
  419. va_start(ap, fmt);
  420. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  421. va_end(ap);
  422. _applog(LOG_ERR, exit_buf);
  423. exit(1);
  424. }
  425. char *devpath_to_devid(const char *devpath)
  426. {
  427. #ifndef WIN32
  428. struct stat my_stat;
  429. if (stat(devpath, &my_stat))
  430. return NULL;
  431. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  432. memcpy(devs, "dev_t:", 6);
  433. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  434. #else
  435. if (!strncmp(devpath, "\\\\.\\", 4))
  436. devpath += 4;
  437. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  438. return NULL;
  439. devpath += 3;
  440. char *p;
  441. strtol(devpath, &p, 10);
  442. if (p[0])
  443. return NULL;
  444. const int sz = (p - devpath);
  445. char *devs = malloc(4 + sz + 1);
  446. sprintf(devs, "com:%s", devpath);
  447. #endif
  448. return devs;
  449. }
  450. static
  451. bool devpaths_match(const char * const ap, const char * const bp)
  452. {
  453. char * const a = devpath_to_devid(ap);
  454. if (!a)
  455. return false;
  456. char * const b = devpath_to_devid(bp);
  457. bool rv = false;
  458. if (b)
  459. {
  460. rv = !strcmp(a, b);
  461. free(b);
  462. }
  463. free(a);
  464. return rv;
  465. }
  466. static
  467. int proc_letter_to_number(const char *s, const char ** const rem)
  468. {
  469. int n = 0, c;
  470. for ( ; s[0]; ++s)
  471. {
  472. if (unlikely(n > INT_MAX / 26))
  473. break;
  474. c = tolower(s[0]) - 'a';
  475. if (unlikely(c < 0 || c > 25))
  476. break;
  477. if (unlikely(INT_MAX - c < n))
  478. break;
  479. n = (n * 26) + c;
  480. }
  481. *rem = s;
  482. return n;
  483. }
  484. static
  485. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  486. {
  487. // all - matches anything
  488. // d0 - matches all processors of device 0
  489. // d0-3 - matches all processors of device 0, 1, 2, or 3
  490. // d0a - matches first processor of device 0
  491. // 0 - matches processor 0
  492. // 0-4 - matches processors 0, 1, 2, 3, or 4
  493. // ___ - matches all processors on all devices using driver/name ___
  494. // ___0 - matches all processors of 0th device using driver/name ___
  495. // ___0a - matches first processor of 0th device using driver/name ___
  496. // @* - matches device with serial or path *
  497. // @*@a - matches first processor of device with serial or path *
  498. // ___@* - matches device with serial or path * using driver/name ___
  499. if (!strcasecmp(pattern, "all"))
  500. return true;
  501. const struct device_drv * const drv = cgpu->drv;
  502. const char *p = pattern, *p2;
  503. size_t L;
  504. int n, i, c = -1;
  505. int n2;
  506. int proc_first = -1, proc_last = -1;
  507. struct cgpu_info *device;
  508. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  509. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  510. // dname or name
  511. p = &pattern[L];
  512. else
  513. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  514. // d#
  515. ++p;
  516. else
  517. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  518. // # or @
  519. {}
  520. else
  521. return false;
  522. L = p - pattern;
  523. while (isspace(p[0]))
  524. ++p;
  525. if (p[0] == '@')
  526. {
  527. // Serial/path
  528. const char * const ser = &p[1];
  529. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  530. {}
  531. p2 = (p[0] == '@') ? &p[1] : p;
  532. const size_t serlen = (p - ser);
  533. p = "";
  534. n = n2 = 0;
  535. const char * const devpath = cgpu->device_path ?: "";
  536. const char * const devser = cgpu->dev_serial ?: "";
  537. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  538. {} // Match
  539. else
  540. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  541. {} // Match
  542. else
  543. {
  544. char devpath2[serlen + 1];
  545. memcpy(devpath2, ser, serlen);
  546. devpath2[serlen] = '\0';
  547. if (!devpaths_match(devpath, ser))
  548. return false;
  549. }
  550. }
  551. else
  552. {
  553. if (isdigit(p[0]))
  554. n = strtol(p, (void*)&p2, 0);
  555. else
  556. {
  557. n = 0;
  558. p2 = p;
  559. }
  560. if (p2[0] == '-')
  561. {
  562. ++p2;
  563. if (p2[0] && isdigit(p2[0]))
  564. n2 = strtol(p2, (void*)&p2, 0);
  565. else
  566. n2 = INT_MAX;
  567. }
  568. else
  569. n2 = n;
  570. if (p == pattern)
  571. {
  572. if (!p[0])
  573. return true;
  574. if (p2 && p2[0])
  575. goto invsyntax;
  576. for (i = n; i <= n2; ++i)
  577. {
  578. if (i >= total_devices)
  579. break;
  580. if (cgpu == devices[i])
  581. return true;
  582. }
  583. return false;
  584. }
  585. }
  586. if (p2[0])
  587. {
  588. proc_first = proc_letter_to_number(&p2[0], &p2);
  589. if (p2[0] == '-')
  590. {
  591. ++p2;
  592. if (p2[0])
  593. proc_last = proc_letter_to_number(p2, &p2);
  594. else
  595. proc_last = INT_MAX;
  596. }
  597. else
  598. proc_last = proc_first;
  599. if (p2[0])
  600. goto invsyntax;
  601. }
  602. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  603. {
  604. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  605. (!L) ||
  606. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  607. {} // Matched name or dname
  608. else
  609. return false;
  610. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  611. return false;
  612. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  613. return false;
  614. return true;
  615. }
  616. // d#
  617. c = -1;
  618. for (i = 0; ; ++i)
  619. {
  620. if (i == total_devices)
  621. return false;
  622. if (devices[i]->device != devices[i])
  623. continue;
  624. ++c;
  625. if (c < n)
  626. continue;
  627. if (c > n2)
  628. break;
  629. for (device = devices[i]; device; device = device->next_proc)
  630. {
  631. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  632. continue;
  633. if (device == cgpu)
  634. return true;
  635. }
  636. }
  637. return false;
  638. invsyntax:
  639. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  640. return false;
  641. }
  642. #define TEST_CGPU_MATCH(pattern) \
  643. if (!cgpu_match(pattern, &cgpu)) \
  644. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  645. // END TEST_CGPU_MATCH
  646. #define TEST_CGPU_NOMATCH(pattern) \
  647. if (cgpu_match(pattern, &cgpu)) \
  648. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  649. // END TEST_CGPU_MATCH
  650. static __maybe_unused
  651. void test_cgpu_match()
  652. {
  653. struct device_drv drv = {
  654. .dname = "test",
  655. .name = "TST",
  656. };
  657. struct cgpu_info cgpu = {
  658. .drv = &drv,
  659. .device = &cgpu,
  660. .device_id = 1,
  661. .proc_id = 1,
  662. .proc_repr = "TST 1b",
  663. }, cgpu0a = {
  664. .drv = &drv,
  665. .device = &cgpu0a,
  666. .device_id = 0,
  667. .proc_id = 0,
  668. .proc_repr = "TST 0a",
  669. }, cgpu1a = {
  670. .drv = &drv,
  671. .device = &cgpu0a,
  672. .device_id = 1,
  673. .proc_id = 0,
  674. .proc_repr = "TST 1a",
  675. };
  676. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  677. devices = devices_list;
  678. total_devices = 3;
  679. TEST_CGPU_MATCH("all")
  680. TEST_CGPU_MATCH("d1")
  681. TEST_CGPU_NOMATCH("d2")
  682. TEST_CGPU_MATCH("d0-5")
  683. TEST_CGPU_NOMATCH("d0-0")
  684. TEST_CGPU_NOMATCH("d2-5")
  685. TEST_CGPU_MATCH("d-1")
  686. TEST_CGPU_MATCH("d1-")
  687. TEST_CGPU_NOMATCH("d-0")
  688. TEST_CGPU_NOMATCH("d2-")
  689. TEST_CGPU_MATCH("2")
  690. TEST_CGPU_NOMATCH("3")
  691. TEST_CGPU_MATCH("1-2")
  692. TEST_CGPU_MATCH("2-3")
  693. TEST_CGPU_NOMATCH("1-1")
  694. TEST_CGPU_NOMATCH("3-4")
  695. TEST_CGPU_MATCH("TST")
  696. TEST_CGPU_MATCH("test")
  697. TEST_CGPU_MATCH("tst")
  698. TEST_CGPU_MATCH("TEST")
  699. TEST_CGPU_NOMATCH("TSF")
  700. TEST_CGPU_NOMATCH("TS")
  701. TEST_CGPU_NOMATCH("TSTF")
  702. TEST_CGPU_MATCH("TST1")
  703. TEST_CGPU_MATCH("test1")
  704. TEST_CGPU_MATCH("TST0-1")
  705. TEST_CGPU_MATCH("TST 1")
  706. TEST_CGPU_MATCH("TST 1-2")
  707. TEST_CGPU_MATCH("TEST 1-2")
  708. TEST_CGPU_NOMATCH("TST2")
  709. TEST_CGPU_NOMATCH("TST2-3")
  710. TEST_CGPU_NOMATCH("TST0-0")
  711. TEST_CGPU_MATCH("TST1b")
  712. TEST_CGPU_MATCH("tst1b")
  713. TEST_CGPU_NOMATCH("TST1c")
  714. TEST_CGPU_NOMATCH("TST1bb")
  715. TEST_CGPU_MATCH("TST0-1b")
  716. TEST_CGPU_NOMATCH("TST0-1c")
  717. TEST_CGPU_MATCH("TST1a-d")
  718. TEST_CGPU_NOMATCH("TST1a-a")
  719. TEST_CGPU_NOMATCH("TST1-a")
  720. TEST_CGPU_NOMATCH("TST1c-z")
  721. TEST_CGPU_NOMATCH("TST1c-")
  722. TEST_CGPU_MATCH("@")
  723. TEST_CGPU_NOMATCH("@abc")
  724. TEST_CGPU_MATCH("@@b")
  725. TEST_CGPU_NOMATCH("@@c")
  726. TEST_CGPU_MATCH("TST@")
  727. TEST_CGPU_NOMATCH("TST@abc")
  728. TEST_CGPU_MATCH("TST@@b")
  729. TEST_CGPU_NOMATCH("TST@@c")
  730. TEST_CGPU_MATCH("TST@@b-f")
  731. TEST_CGPU_NOMATCH("TST@@c-f")
  732. TEST_CGPU_NOMATCH("TST@@-a")
  733. cgpu.device_path = "/dev/test";
  734. cgpu.dev_serial = "testy";
  735. TEST_CGPU_MATCH("TST@/dev/test")
  736. TEST_CGPU_MATCH("TST@testy")
  737. TEST_CGPU_NOMATCH("TST@")
  738. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  739. TEST_CGPU_NOMATCH("TST@testy3@b")
  740. TEST_CGPU_MATCH("TST@/dev/test@b")
  741. TEST_CGPU_MATCH("TST@testy@b")
  742. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  743. TEST_CGPU_NOMATCH("TST@testy@c")
  744. drv.dname = "test7";
  745. TEST_CGPU_MATCH("test7")
  746. TEST_CGPU_MATCH("TEST7")
  747. TEST_CGPU_NOMATCH("test&")
  748. TEST_CGPU_MATCH("test7 1-2")
  749. TEST_CGPU_MATCH("test7@testy@b")
  750. }
  751. static
  752. int cgpu_search(const char * const pattern, const int first)
  753. {
  754. int i;
  755. struct cgpu_info *cgpu;
  756. #define CHECK_CGPU_SEARCH do{ \
  757. cgpu = get_devices(i); \
  758. if (cgpu_match(pattern, cgpu)) \
  759. return i; \
  760. }while(0)
  761. for (i = first; i < total_devices; ++i)
  762. CHECK_CGPU_SEARCH;
  763. for (i = 0; i < first; ++i)
  764. CHECK_CGPU_SEARCH;
  765. #undef CHECK_CGPU_SEARCH
  766. return -1;
  767. }
  768. static pthread_mutex_t sharelog_lock;
  769. static FILE *sharelog_file = NULL;
  770. struct thr_info *get_thread(int thr_id)
  771. {
  772. struct thr_info *thr;
  773. rd_lock(&mining_thr_lock);
  774. thr = mining_thr[thr_id];
  775. rd_unlock(&mining_thr_lock);
  776. return thr;
  777. }
  778. static struct cgpu_info *get_thr_cgpu(int thr_id)
  779. {
  780. struct thr_info *thr = get_thread(thr_id);
  781. return thr->cgpu;
  782. }
  783. struct cgpu_info *get_devices(int id)
  784. {
  785. struct cgpu_info *cgpu;
  786. rd_lock(&devices_lock);
  787. cgpu = devices[id];
  788. rd_unlock(&devices_lock);
  789. return cgpu;
  790. }
  791. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  792. static FILE *noncelog_file = NULL;
  793. static
  794. void noncelog(const struct work * const work)
  795. {
  796. const int thr_id = work->thr_id;
  797. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  798. char buf[0x200], hash[65], data[161], midstate[65];
  799. int rv;
  800. size_t ret;
  801. bin2hex(hash, work->hash, 32);
  802. bin2hex(data, work->data, 80);
  803. bin2hex(midstate, work->midstate, 32);
  804. // timestamp,proc,hash,data,midstate
  805. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  806. (unsigned long)time(NULL), proc->proc_repr_ns,
  807. hash, data, midstate);
  808. if (unlikely(rv < 1))
  809. {
  810. applog(LOG_ERR, "noncelog printf error");
  811. return;
  812. }
  813. mutex_lock(&noncelog_lock);
  814. ret = fwrite(buf, rv, 1, noncelog_file);
  815. fflush(noncelog_file);
  816. mutex_unlock(&noncelog_lock);
  817. if (ret != 1)
  818. applog(LOG_ERR, "noncelog fwrite error");
  819. }
  820. static void sharelog(const char*disposition, const struct work*work)
  821. {
  822. char target[(sizeof(work->target) * 2) + 1];
  823. char hash[(sizeof(work->hash) * 2) + 1];
  824. char data[(sizeof(work->data) * 2) + 1];
  825. struct cgpu_info *cgpu;
  826. unsigned long int t;
  827. struct pool *pool;
  828. int thr_id, rv;
  829. char s[1024];
  830. size_t ret;
  831. if (!sharelog_file)
  832. return;
  833. thr_id = work->thr_id;
  834. cgpu = get_thr_cgpu(thr_id);
  835. pool = work->pool;
  836. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  837. bin2hex(target, work->target, sizeof(work->target));
  838. bin2hex(hash, work->hash, sizeof(work->hash));
  839. bin2hex(data, work->data, sizeof(work->data));
  840. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  841. 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);
  842. if (rv >= (int)(sizeof(s)))
  843. s[sizeof(s) - 1] = '\0';
  844. else if (rv < 0) {
  845. applog(LOG_ERR, "sharelog printf error");
  846. return;
  847. }
  848. mutex_lock(&sharelog_lock);
  849. ret = fwrite(s, rv, 1, sharelog_file);
  850. fflush(sharelog_file);
  851. mutex_unlock(&sharelog_lock);
  852. if (ret != 1)
  853. applog(LOG_ERR, "sharelog fwrite error");
  854. }
  855. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  856. /* Adjust all the pools' quota to the greatest common denominator after a pool
  857. * has been added or the quotas changed. */
  858. void adjust_quota_gcd(void)
  859. {
  860. unsigned long gcd, lowest_quota = ~0UL, quota;
  861. struct pool *pool;
  862. int i;
  863. for (i = 0; i < total_pools; i++) {
  864. pool = pools[i];
  865. quota = pool->quota;
  866. if (!quota)
  867. continue;
  868. if (quota < lowest_quota)
  869. lowest_quota = quota;
  870. }
  871. if (likely(lowest_quota < ~0UL)) {
  872. gcd = lowest_quota;
  873. for (i = 0; i < total_pools; i++) {
  874. pool = pools[i];
  875. quota = pool->quota;
  876. if (!quota)
  877. continue;
  878. while (quota % gcd)
  879. gcd--;
  880. }
  881. } else
  882. gcd = 1;
  883. for (i = 0; i < total_pools; i++) {
  884. pool = pools[i];
  885. pool->quota_used *= global_quota_gcd;
  886. pool->quota_used /= gcd;
  887. pool->quota_gcd = pool->quota / gcd;
  888. }
  889. global_quota_gcd = gcd;
  890. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  891. }
  892. /* Return value is ignored if not called from add_pool_details */
  893. struct pool *add_pool(void)
  894. {
  895. struct pool *pool;
  896. pool = calloc(sizeof(struct pool), 1);
  897. if (!pool)
  898. quit(1, "Failed to malloc pool in add_pool");
  899. pool->pool_no = pool->prio = total_pools;
  900. mutex_init(&pool->last_work_lock);
  901. mutex_init(&pool->pool_lock);
  902. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  903. quit(1, "Failed to pthread_cond_init in add_pool");
  904. cglock_init(&pool->data_lock);
  905. mutex_init(&pool->stratum_lock);
  906. timer_unset(&pool->swork.tv_transparency);
  907. /* Make sure the pool doesn't think we've been idle since time 0 */
  908. pool->tv_idle.tv_sec = ~0UL;
  909. cgtime(&pool->cgminer_stats.start_tv);
  910. pool->rpc_proxy = NULL;
  911. pool->quota = 1;
  912. adjust_quota_gcd();
  913. pool->sock = INVSOCK;
  914. pool->lp_socket = CURL_SOCKET_BAD;
  915. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  916. pools[total_pools++] = pool;
  917. return pool;
  918. }
  919. /* Pool variant of test and set */
  920. static bool pool_tset(struct pool *pool, bool *var)
  921. {
  922. bool ret;
  923. mutex_lock(&pool->pool_lock);
  924. ret = *var;
  925. *var = true;
  926. mutex_unlock(&pool->pool_lock);
  927. return ret;
  928. }
  929. bool pool_tclear(struct pool *pool, bool *var)
  930. {
  931. bool ret;
  932. mutex_lock(&pool->pool_lock);
  933. ret = *var;
  934. *var = false;
  935. mutex_unlock(&pool->pool_lock);
  936. return ret;
  937. }
  938. struct pool *current_pool(void)
  939. {
  940. struct pool *pool;
  941. cg_rlock(&control_lock);
  942. pool = currentpool;
  943. cg_runlock(&control_lock);
  944. return pool;
  945. }
  946. char *set_int_range(const char *arg, int *i, int min, int max)
  947. {
  948. char *err = opt_set_intval(arg, i);
  949. if (err)
  950. return err;
  951. if (*i < min || *i > max)
  952. return "Value out of range";
  953. return NULL;
  954. }
  955. static char *set_int_0_to_9999(const char *arg, int *i)
  956. {
  957. return set_int_range(arg, i, 0, 9999);
  958. }
  959. static char *set_int_1_to_65535(const char *arg, int *i)
  960. {
  961. return set_int_range(arg, i, 1, 65535);
  962. }
  963. static char *set_int_0_to_10(const char *arg, int *i)
  964. {
  965. return set_int_range(arg, i, 0, 10);
  966. }
  967. static char *set_int_1_to_10(const char *arg, int *i)
  968. {
  969. return set_int_range(arg, i, 1, 10);
  970. }
  971. char *set_strdup(const char *arg, char **p)
  972. {
  973. *p = strdup((char *)arg);
  974. return NULL;
  975. }
  976. #if BLKMAKER_VERSION > 1
  977. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  978. {
  979. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  980. if (!scriptsz)
  981. return "Invalid address";
  982. char *script = malloc(scriptsz);
  983. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  984. free(script);
  985. return "Failed to convert address to script";
  986. }
  987. p->data = script;
  988. p->sz = scriptsz;
  989. return NULL;
  990. }
  991. #endif
  992. static void bdiff_target_leadzero(unsigned char *target, double diff);
  993. char *set_request_diff(const char *arg, float *p)
  994. {
  995. unsigned char target[32];
  996. char *e = opt_set_floatval(arg, p);
  997. if (e)
  998. return e;
  999. request_bdiff = (double)*p * 0.9999847412109375;
  1000. bdiff_target_leadzero(target, request_bdiff);
  1001. request_target_str = malloc(65);
  1002. bin2hex(request_target_str, target, 32);
  1003. return NULL;
  1004. }
  1005. #ifdef NEED_BFG_LOWL_VCOM
  1006. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1007. #ifdef WIN32
  1008. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1009. {
  1010. char dev[PATH_MAX];
  1011. char *devp = dev;
  1012. size_t bufLen = 0x100;
  1013. tryagain: ;
  1014. char buf[bufLen];
  1015. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1016. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1017. bufLen *= 2;
  1018. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1019. goto tryagain;
  1020. }
  1021. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1022. }
  1023. size_t tLen;
  1024. memcpy(devp, "\\\\.\\", 4);
  1025. devp = &devp[4];
  1026. for (char *t = buf; *t; t += tLen) {
  1027. tLen = strlen(t) + 1;
  1028. if (strncmp("COM", t, 3))
  1029. continue;
  1030. memcpy(devp, t, tLen);
  1031. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1032. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1033. }
  1034. }
  1035. #else
  1036. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1037. {
  1038. char dev[PATH_MAX];
  1039. char *devp = dev;
  1040. DIR *D;
  1041. struct dirent *de;
  1042. const char devdir[] = "/dev";
  1043. const size_t devdirlen = sizeof(devdir) - 1;
  1044. char *devpath = devp;
  1045. char *devfile = devpath + devdirlen + 1;
  1046. D = opendir(devdir);
  1047. if (!D)
  1048. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1049. memcpy(devpath, devdir, devdirlen);
  1050. devpath[devdirlen] = '/';
  1051. while ( (de = readdir(D)) ) {
  1052. if (!strncmp(de->d_name, "cu.", 3))
  1053. goto trydev;
  1054. if (strncmp(de->d_name, "tty", 3))
  1055. continue;
  1056. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1057. continue;
  1058. trydev:
  1059. strcpy(devfile, de->d_name);
  1060. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1061. }
  1062. closedir(D);
  1063. }
  1064. #endif
  1065. #endif
  1066. static char *add_serial(const char *arg)
  1067. {
  1068. string_elist_add(arg, &scan_devices);
  1069. return NULL;
  1070. }
  1071. static
  1072. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1073. {
  1074. string_elist_add(arg, elist);
  1075. return NULL;
  1076. }
  1077. bool get_intrange(const char *arg, int *val1, int *val2)
  1078. {
  1079. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1080. char *p, *p2;
  1081. *val1 = strtol(arg, &p, 0);
  1082. if (arg == p)
  1083. // Zero-length ending number, invalid
  1084. return false;
  1085. while (true)
  1086. {
  1087. if (!p[0])
  1088. {
  1089. *val2 = *val1;
  1090. return true;
  1091. }
  1092. if (p[0] == '-')
  1093. break;
  1094. if (!isspace(p[0]))
  1095. // Garbage, invalid
  1096. return false;
  1097. ++p;
  1098. }
  1099. p2 = &p[1];
  1100. *val2 = strtol(p2, &p, 0);
  1101. if (p2 == p)
  1102. // Zero-length ending number, invalid
  1103. return false;
  1104. while (true)
  1105. {
  1106. if (!p[0])
  1107. return true;
  1108. if (!isspace(p[0]))
  1109. // Garbage, invalid
  1110. return false;
  1111. ++p;
  1112. }
  1113. }
  1114. static
  1115. void _test_intrange(const char *s, const int v[2])
  1116. {
  1117. int a[2];
  1118. if (!get_intrange(s, &a[0], &a[1]))
  1119. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1120. for (int i = 0; i < 2; ++i)
  1121. if (unlikely(a[i] != v[i]))
  1122. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1123. }
  1124. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1125. static
  1126. void _test_intrange_fail(const char *s)
  1127. {
  1128. int a[2];
  1129. if (get_intrange(s, &a[0], &a[1]))
  1130. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1131. }
  1132. static
  1133. void test_intrange()
  1134. {
  1135. _test_intrange("-1--2", -1, -2);
  1136. _test_intrange("-1-2", -1, 2);
  1137. _test_intrange("1--2", 1, -2);
  1138. _test_intrange("1-2", 1, 2);
  1139. _test_intrange("111-222", 111, 222);
  1140. _test_intrange(" 11 - 22 ", 11, 22);
  1141. _test_intrange("+11-+22", 11, 22);
  1142. _test_intrange("-1", -1, -1);
  1143. _test_intrange_fail("all");
  1144. _test_intrange_fail("1-");
  1145. _test_intrange_fail("");
  1146. _test_intrange_fail("1-54x");
  1147. }
  1148. static char *set_devices(char *arg)
  1149. {
  1150. if (*arg) {
  1151. if (*arg == '?') {
  1152. opt_display_devs = true;
  1153. return NULL;
  1154. }
  1155. } else
  1156. return "Invalid device parameters";
  1157. string_elist_add(arg, &opt_devices_enabled_list);
  1158. return NULL;
  1159. }
  1160. static char *set_balance(enum pool_strategy *strategy)
  1161. {
  1162. *strategy = POOL_BALANCE;
  1163. return NULL;
  1164. }
  1165. static char *set_loadbalance(enum pool_strategy *strategy)
  1166. {
  1167. *strategy = POOL_LOADBALANCE;
  1168. return NULL;
  1169. }
  1170. static char *set_rotate(const char *arg, int *i)
  1171. {
  1172. pool_strategy = POOL_ROTATE;
  1173. return set_int_range(arg, i, 0, 9999);
  1174. }
  1175. static char *set_rr(enum pool_strategy *strategy)
  1176. {
  1177. *strategy = POOL_ROUNDROBIN;
  1178. return NULL;
  1179. }
  1180. /* Detect that url is for a stratum protocol either via the presence of
  1181. * stratum+tcp or by detecting a stratum server response */
  1182. bool detect_stratum(struct pool *pool, char *url)
  1183. {
  1184. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1185. return false;
  1186. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1187. pool->rpc_url = strdup(url);
  1188. pool->has_stratum = true;
  1189. pool->stratum_url = pool->sockaddr_url;
  1190. return true;
  1191. }
  1192. return false;
  1193. }
  1194. static struct pool *add_url(void)
  1195. {
  1196. total_urls++;
  1197. if (total_urls > total_pools)
  1198. add_pool();
  1199. return pools[total_urls - 1];
  1200. }
  1201. static void setup_url(struct pool *pool, char *arg)
  1202. {
  1203. if (detect_stratum(pool, arg))
  1204. return;
  1205. opt_set_charp(arg, &pool->rpc_url);
  1206. if (strncmp(arg, "http://", 7) &&
  1207. strncmp(arg, "https://", 8)) {
  1208. char *httpinput;
  1209. httpinput = malloc(255);
  1210. if (!httpinput)
  1211. quit(1, "Failed to malloc httpinput");
  1212. strcpy(httpinput, "http://");
  1213. strncat(httpinput, arg, 248);
  1214. pool->rpc_url = httpinput;
  1215. }
  1216. }
  1217. static char *set_url(char *arg)
  1218. {
  1219. struct pool *pool = add_url();
  1220. setup_url(pool, arg);
  1221. return NULL;
  1222. }
  1223. static char *set_quota(char *arg)
  1224. {
  1225. char *semicolon = strchr(arg, ';'), *url;
  1226. int len, qlen, quota;
  1227. struct pool *pool;
  1228. if (!semicolon)
  1229. return "No semicolon separated quota;URL pair found";
  1230. len = strlen(arg);
  1231. *semicolon = '\0';
  1232. qlen = strlen(arg);
  1233. if (!qlen)
  1234. return "No parameter for quota found";
  1235. len -= qlen + 1;
  1236. if (len < 1)
  1237. return "No parameter for URL found";
  1238. quota = atoi(arg);
  1239. if (quota < 0)
  1240. return "Invalid negative parameter for quota set";
  1241. url = arg + qlen + 1;
  1242. pool = add_url();
  1243. setup_url(pool, url);
  1244. pool->quota = quota;
  1245. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1246. adjust_quota_gcd();
  1247. return NULL;
  1248. }
  1249. static char *set_user(const char *arg)
  1250. {
  1251. struct pool *pool;
  1252. total_users++;
  1253. if (total_users > total_pools)
  1254. add_pool();
  1255. pool = pools[total_users - 1];
  1256. opt_set_charp(arg, &pool->rpc_user);
  1257. return NULL;
  1258. }
  1259. static char *set_pass(const char *arg)
  1260. {
  1261. struct pool *pool;
  1262. total_passes++;
  1263. if (total_passes > total_pools)
  1264. add_pool();
  1265. pool = pools[total_passes - 1];
  1266. opt_set_charp(arg, &pool->rpc_pass);
  1267. return NULL;
  1268. }
  1269. static char *set_userpass(const char *arg)
  1270. {
  1271. struct pool *pool;
  1272. char *updup;
  1273. if (total_users != total_passes)
  1274. return "User + pass options must be balanced before userpass";
  1275. ++total_users;
  1276. ++total_passes;
  1277. if (total_users > total_pools)
  1278. add_pool();
  1279. pool = pools[total_users - 1];
  1280. updup = strdup(arg);
  1281. opt_set_charp(arg, &pool->rpc_userpass);
  1282. pool->rpc_user = strtok(updup, ":");
  1283. if (!pool->rpc_user)
  1284. return "Failed to find : delimited user info";
  1285. pool->rpc_pass = strtok(NULL, ":");
  1286. if (!pool->rpc_pass)
  1287. pool->rpc_pass = "";
  1288. return NULL;
  1289. }
  1290. static char *set_pool_priority(const char *arg)
  1291. {
  1292. struct pool *pool;
  1293. if (!total_pools)
  1294. return "Usage of --pool-priority before pools are defined does not make sense";
  1295. pool = pools[total_pools - 1];
  1296. opt_set_intval(arg, &pool->prio);
  1297. return NULL;
  1298. }
  1299. static char *set_pool_proxy(const char *arg)
  1300. {
  1301. struct pool *pool;
  1302. if (!total_pools)
  1303. return "Usage of --pool-proxy before pools are defined does not make sense";
  1304. if (!our_curl_supports_proxy_uris())
  1305. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1306. pool = pools[total_pools - 1];
  1307. opt_set_charp(arg, &pool->rpc_proxy);
  1308. return NULL;
  1309. }
  1310. static char *set_pool_force_rollntime(const char *arg)
  1311. {
  1312. struct pool *pool;
  1313. if (!total_pools)
  1314. return "Usage of --force-rollntime before pools are defined does not make sense";
  1315. pool = pools[total_pools - 1];
  1316. opt_set_intval(arg, &pool->force_rollntime);
  1317. return NULL;
  1318. }
  1319. static char *enable_debug(bool *flag)
  1320. {
  1321. *flag = true;
  1322. opt_debug_console = true;
  1323. /* Turn on verbose output, too. */
  1324. opt_log_output = true;
  1325. return NULL;
  1326. }
  1327. static char *set_schedtime(const char *arg, struct schedtime *st)
  1328. {
  1329. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1330. {
  1331. if (strcasecmp(arg, "now"))
  1332. return "Invalid time set, should be HH:MM";
  1333. } else
  1334. schedstop.tm.tm_sec = 0;
  1335. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1336. return "Invalid time set.";
  1337. st->enable = true;
  1338. return NULL;
  1339. }
  1340. static
  1341. char *set_log_file(char *arg)
  1342. {
  1343. char *r = "";
  1344. long int i = strtol(arg, &r, 10);
  1345. int fd, stderr_fd = fileno(stderr);
  1346. if ((!*r) && i >= 0 && i <= INT_MAX)
  1347. fd = i;
  1348. else
  1349. if (!strcmp(arg, "-"))
  1350. {
  1351. fd = fileno(stdout);
  1352. if (unlikely(fd == -1))
  1353. return "Standard output missing for log-file";
  1354. }
  1355. else
  1356. {
  1357. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1358. if (unlikely(fd == -1))
  1359. return "Failed to open log-file";
  1360. }
  1361. close(stderr_fd);
  1362. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1363. return "Failed to dup2 for log-file";
  1364. close(fd);
  1365. return NULL;
  1366. }
  1367. static
  1368. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1369. {
  1370. char *r = "";
  1371. long int i = strtol(arg, &r, 10);
  1372. static char *err = NULL;
  1373. const size_t errbufsz = 0x100;
  1374. free(err);
  1375. err = NULL;
  1376. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1377. *F = fdopen((int)i, mode);
  1378. if (!*F)
  1379. {
  1380. err = malloc(errbufsz);
  1381. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1382. (int)i, purpose);
  1383. return err;
  1384. }
  1385. } else if (!strcmp(arg, "-")) {
  1386. *F = (mode[0] == 'a') ? stdout : stdin;
  1387. if (!*F)
  1388. {
  1389. err = malloc(errbufsz);
  1390. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1391. (mode[0] == 'a') ? "out" : "in", purpose);
  1392. return err;
  1393. }
  1394. } else {
  1395. *F = fopen(arg, mode);
  1396. if (!*F)
  1397. {
  1398. err = malloc(errbufsz);
  1399. snprintf(err, errbufsz, "Failed to open %s for %s",
  1400. arg, purpose);
  1401. return err;
  1402. }
  1403. }
  1404. return NULL;
  1405. }
  1406. static char *set_noncelog(char *arg)
  1407. {
  1408. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1409. }
  1410. static char *set_sharelog(char *arg)
  1411. {
  1412. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1413. }
  1414. static char *temp_cutoff_str = "";
  1415. static char *temp_target_str = "";
  1416. char *set_temp_cutoff(char *arg)
  1417. {
  1418. int val;
  1419. if (!(arg && arg[0]))
  1420. return "Invalid parameters for set temp cutoff";
  1421. val = atoi(arg);
  1422. if (val < 0 || val > 200)
  1423. return "Invalid value passed to set temp cutoff";
  1424. temp_cutoff_str = arg;
  1425. return NULL;
  1426. }
  1427. char *set_temp_target(char *arg)
  1428. {
  1429. int val;
  1430. if (!(arg && arg[0]))
  1431. return "Invalid parameters for set temp target";
  1432. val = atoi(arg);
  1433. if (val < 0 || val > 200)
  1434. return "Invalid value passed to set temp target";
  1435. temp_target_str = arg;
  1436. return NULL;
  1437. }
  1438. // For a single element string, this always returns the number (for all calls)
  1439. // For multi-element strings, it returns each element as a number in order, and 0 when there are no more
  1440. static int temp_strtok(char *base, char **n)
  1441. {
  1442. char *i = *n;
  1443. char *p = strchr(i, ',');
  1444. if (p) {
  1445. p[0] = '\0';
  1446. *n = &p[1];
  1447. }
  1448. else
  1449. if (base != i)
  1450. *n = strchr(i, '\0');
  1451. return atoi(i);
  1452. }
  1453. static void load_temp_config_cgpu(struct cgpu_info *cgpu, char **cutoff_np, char **target_np)
  1454. {
  1455. int target_off, val;
  1456. // cutoff default may be specified by driver during probe; otherwise, opt_cutofftemp (const)
  1457. if (!cgpu->cutofftemp)
  1458. cgpu->cutofftemp = opt_cutofftemp;
  1459. // target default may be specified by driver, and is moved with offset; otherwise, offset minus 6
  1460. if (cgpu->targettemp)
  1461. target_off = cgpu->targettemp - cgpu->cutofftemp;
  1462. else
  1463. target_off = -6;
  1464. cgpu->cutofftemp_default = cgpu->cutofftemp;
  1465. val = temp_strtok(temp_cutoff_str, cutoff_np);
  1466. if (val < 0 || val > 200)
  1467. quit(1, "Invalid value passed to set temp cutoff");
  1468. if (val)
  1469. cgpu->cutofftemp = val;
  1470. cgpu->targettemp_default = cgpu->cutofftemp + target_off;
  1471. val = temp_strtok(temp_target_str, target_np);
  1472. if (val < 0 || val > 200)
  1473. quit(1, "Invalid value passed to set temp target");
  1474. if (val)
  1475. cgpu->targettemp = val;
  1476. else
  1477. cgpu->targettemp = cgpu->cutofftemp + target_off;
  1478. applog(LOG_DEBUG, "%"PRIprepr": Set temperature config: target=%d cutoff=%d",
  1479. cgpu->proc_repr,
  1480. cgpu->targettemp, cgpu->cutofftemp);
  1481. }
  1482. static void load_temp_config()
  1483. {
  1484. int i;
  1485. char *cutoff_n, *target_n;
  1486. struct cgpu_info *cgpu;
  1487. cutoff_n = temp_cutoff_str;
  1488. target_n = temp_target_str;
  1489. for (i = 0; i < total_devices; ++i) {
  1490. cgpu = get_devices(i);
  1491. load_temp_config_cgpu(cgpu, &cutoff_n, &target_n);
  1492. }
  1493. if (cutoff_n != temp_cutoff_str && cutoff_n[0])
  1494. quit(1, "Too many values passed to set temp cutoff");
  1495. if (target_n != temp_target_str && target_n[0])
  1496. quit(1, "Too many values passed to set temp target");
  1497. }
  1498. static char *set_api_allow(const char *arg)
  1499. {
  1500. opt_set_charp(arg, &opt_api_allow);
  1501. return NULL;
  1502. }
  1503. static char *set_api_groups(const char *arg)
  1504. {
  1505. opt_set_charp(arg, &opt_api_groups);
  1506. return NULL;
  1507. }
  1508. static char *set_api_description(const char *arg)
  1509. {
  1510. opt_set_charp(arg, &opt_api_description);
  1511. return NULL;
  1512. }
  1513. static char *set_api_mcast_des(const char *arg)
  1514. {
  1515. opt_set_charp(arg, &opt_api_mcast_des);
  1516. return NULL;
  1517. }
  1518. #ifdef USE_ICARUS
  1519. static char *set_icarus_options(const char *arg)
  1520. {
  1521. opt_set_charp(arg, &opt_icarus_options);
  1522. return NULL;
  1523. }
  1524. static char *set_icarus_timing(const char *arg)
  1525. {
  1526. opt_set_charp(arg, &opt_icarus_timing);
  1527. return NULL;
  1528. }
  1529. #endif
  1530. #ifdef USE_AVALON
  1531. static char *set_avalon_options(const char *arg)
  1532. {
  1533. opt_set_charp(arg, &opt_avalon_options);
  1534. return NULL;
  1535. }
  1536. #endif
  1537. #ifdef USE_KLONDIKE
  1538. static char *set_klondike_options(const char *arg)
  1539. {
  1540. opt_set_charp(arg, &opt_klondike_options);
  1541. return NULL;
  1542. }
  1543. #endif
  1544. __maybe_unused
  1545. static char *set_null(const char __maybe_unused *arg)
  1546. {
  1547. return NULL;
  1548. }
  1549. /* These options are available from config file or commandline */
  1550. static struct opt_table opt_config_table[] = {
  1551. #ifdef WANT_CPUMINE
  1552. OPT_WITH_ARG("--algo|-a",
  1553. set_algo, show_algo, &opt_algo,
  1554. "Specify sha256 implementation for CPU mining:\n"
  1555. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1556. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1557. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1558. #ifdef WANT_SSE2_4WAY
  1559. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1560. #endif
  1561. #ifdef WANT_VIA_PADLOCK
  1562. "\n\tvia\t\tVIA padlock implementation"
  1563. #endif
  1564. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1565. #ifdef WANT_CRYPTOPP_ASM32
  1566. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1567. #endif
  1568. #ifdef WANT_X8632_SSE2
  1569. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1570. #endif
  1571. #ifdef WANT_X8664_SSE2
  1572. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1573. #endif
  1574. #ifdef WANT_X8664_SSE4
  1575. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1576. #endif
  1577. #ifdef WANT_ALTIVEC_4WAY
  1578. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1579. #endif
  1580. ),
  1581. #endif
  1582. OPT_WITH_ARG("--api-allow",
  1583. set_api_allow, NULL, NULL,
  1584. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1585. OPT_WITH_ARG("--api-description",
  1586. set_api_description, NULL, NULL,
  1587. "Description placed in the API status header, default: BFGMiner version"),
  1588. OPT_WITH_ARG("--api-groups",
  1589. set_api_groups, NULL, NULL,
  1590. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1591. OPT_WITHOUT_ARG("--api-listen",
  1592. opt_set_bool, &opt_api_listen,
  1593. "Enable API, default: disabled"),
  1594. OPT_WITHOUT_ARG("--api-mcast",
  1595. opt_set_bool, &opt_api_mcast,
  1596. "Enable API Multicast listener, default: disabled"),
  1597. OPT_WITH_ARG("--api-mcast-addr",
  1598. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1599. "API Multicast listen address"),
  1600. OPT_WITH_ARG("--api-mcast-code",
  1601. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1602. "Code expected in the API Multicast message, don't use '-'"),
  1603. OPT_WITH_ARG("--api-mcast-des",
  1604. set_api_mcast_des, NULL, NULL,
  1605. "Description appended to the API Multicast reply, default: ''"),
  1606. OPT_WITH_ARG("--api-mcast-port",
  1607. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1608. "API Multicast listen port"),
  1609. OPT_WITHOUT_ARG("--api-network",
  1610. opt_set_bool, &opt_api_network,
  1611. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1612. OPT_WITH_ARG("--api-port",
  1613. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1614. "Port number of miner API"),
  1615. #ifdef HAVE_ADL
  1616. OPT_WITHOUT_ARG("--auto-fan",
  1617. opt_set_bool, &opt_autofan,
  1618. "Automatically adjust all GPU fan speeds to maintain a target temperature"),
  1619. OPT_WITHOUT_ARG("--auto-gpu",
  1620. opt_set_bool, &opt_autoengine,
  1621. "Automatically adjust all GPU engine clock speeds to maintain a target temperature"),
  1622. #endif
  1623. OPT_WITHOUT_ARG("--balance",
  1624. set_balance, &pool_strategy,
  1625. "Change multipool strategy from failover to even share balance"),
  1626. OPT_WITHOUT_ARG("--benchmark",
  1627. opt_set_bool, &opt_benchmark,
  1628. "Run BFGMiner in benchmark mode - produces no shares"),
  1629. #if defined(USE_BITFORCE)
  1630. OPT_WITHOUT_ARG("--bfl-range",
  1631. opt_set_bool, &opt_bfl_noncerange,
  1632. "Use nonce range on bitforce devices if supported"),
  1633. #endif
  1634. #ifdef WANT_CPUMINE
  1635. OPT_WITH_ARG("--bench-algo|-b",
  1636. set_int_0_to_9999, opt_show_intval, &opt_bench_algo,
  1637. opt_hidden),
  1638. #endif
  1639. #ifdef HAVE_CHROOT
  1640. OPT_WITH_ARG("--chroot-dir",
  1641. opt_set_charp, NULL, &chroot_dir,
  1642. "Chroot to a directory right after startup"),
  1643. #endif
  1644. OPT_WITH_ARG("--cmd-idle",
  1645. opt_set_charp, NULL, &cmd_idle,
  1646. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1647. OPT_WITH_ARG("--cmd-sick",
  1648. opt_set_charp, NULL, &cmd_sick,
  1649. "Execute a command when a device is declared sick"),
  1650. OPT_WITH_ARG("--cmd-dead",
  1651. opt_set_charp, NULL, &cmd_dead,
  1652. "Execute a command when a device is declared dead"),
  1653. #if BLKMAKER_VERSION > 1
  1654. OPT_WITH_ARG("--coinbase-addr",
  1655. set_b58addr, NULL, &opt_coinbase_script,
  1656. "Set coinbase payout address for solo mining"),
  1657. OPT_WITH_ARG("--coinbase-payout|--cbaddr|--cb-addr|--payout",
  1658. set_b58addr, NULL, &opt_coinbase_script,
  1659. opt_hidden),
  1660. #endif
  1661. #if BLKMAKER_VERSION > 0
  1662. OPT_WITH_ARG("--coinbase-sig",
  1663. set_strdup, NULL, &opt_coinbase_sig,
  1664. "Set coinbase signature when possible"),
  1665. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1666. set_strdup, NULL, &opt_coinbase_sig,
  1667. opt_hidden),
  1668. #endif
  1669. #ifdef HAVE_CURSES
  1670. OPT_WITHOUT_ARG("--compact",
  1671. opt_set_bool, &opt_compact,
  1672. "Use compact display without per device statistics"),
  1673. #endif
  1674. #ifdef WANT_CPUMINE
  1675. OPT_WITH_ARG("--cpu-threads|-t",
  1676. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1677. "Number of miner CPU threads"),
  1678. #endif
  1679. OPT_WITHOUT_ARG("--debug|-D",
  1680. enable_debug, &opt_debug,
  1681. "Enable debug output"),
  1682. OPT_WITHOUT_ARG("--debuglog",
  1683. opt_set_bool, &opt_debug,
  1684. "Enable debug logging"),
  1685. OPT_WITHOUT_ARG("--device-protocol-dump",
  1686. opt_set_bool, &opt_dev_protocol,
  1687. "Verbose dump of device protocol-level activities"),
  1688. OPT_WITH_ARG("--device|-d",
  1689. set_devices, NULL, NULL,
  1690. "Enable only devices matching pattern (default: all)"),
  1691. OPT_WITHOUT_ARG("--disable-rejecting",
  1692. opt_set_bool, &opt_disable_pool,
  1693. "Automatically disable pools that continually reject shares"),
  1694. #ifdef USE_LIBMICROHTTPD
  1695. OPT_WITH_ARG("--http-port",
  1696. opt_set_intval, opt_show_intval, &httpsrv_port,
  1697. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1698. #endif
  1699. #if defined(WANT_CPUMINE) && (defined(HAVE_OPENCL) || defined(USE_FPGA))
  1700. OPT_WITHOUT_ARG("--enable-cpu|-C",
  1701. opt_set_bool, &opt_usecpu,
  1702. opt_hidden),
  1703. #endif
  1704. OPT_WITH_ARG("--expiry|-E",
  1705. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1706. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1707. OPT_WITH_ARG("--expiry-lp",
  1708. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1709. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1710. OPT_WITHOUT_ARG("--failover-only",
  1711. opt_set_bool, &opt_fail_only,
  1712. "Don't leak work to backup pools when primary pool is lagging"),
  1713. #ifdef USE_FPGA
  1714. OPT_WITHOUT_ARG("--force-dev-init",
  1715. opt_set_bool, &opt_force_dev_init,
  1716. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1717. #endif
  1718. #ifdef HAVE_OPENCL
  1719. OPT_WITH_ARG("--gpu-dyninterval",
  1720. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1721. "Set the refresh interval in ms for GPUs using dynamic intensity"),
  1722. OPT_WITH_ARG("--gpu-platform",
  1723. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1724. "Select OpenCL platform ID to use for GPU mining"),
  1725. OPT_WITH_ARG("--gpu-threads|-g",
  1726. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1727. "Number of threads per GPU (1 - 10)"),
  1728. #ifdef HAVE_ADL
  1729. OPT_WITH_ARG("--gpu-engine",
  1730. set_gpu_engine, NULL, NULL,
  1731. "GPU engine (over)clock range in MHz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)"),
  1732. OPT_WITH_ARG("--gpu-fan",
  1733. set_gpu_fan, NULL, NULL,
  1734. "GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
  1735. OPT_WITH_ARG("--gpu-map",
  1736. set_gpu_map, NULL, NULL,
  1737. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1738. OPT_WITH_ARG("--gpu-memclock",
  1739. set_gpu_memclock, NULL, NULL,
  1740. "Set the GPU memory (over)clock in MHz - one value for all or separate by commas for per card"),
  1741. OPT_WITH_ARG("--gpu-memdiff",
  1742. set_gpu_memdiff, NULL, NULL,
  1743. "Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode"),
  1744. OPT_WITH_ARG("--gpu-powertune",
  1745. set_gpu_powertune, NULL, NULL,
  1746. "Set the GPU powertune percentage - one value for all or separate by commas for per card"),
  1747. OPT_WITHOUT_ARG("--gpu-reorder",
  1748. opt_set_bool, &opt_reorder,
  1749. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1750. OPT_WITH_ARG("--gpu-vddc",
  1751. set_gpu_vddc, NULL, NULL,
  1752. "Set the GPU voltage in Volts - one value for all or separate by commas for per card"),
  1753. #endif
  1754. #ifdef USE_SCRYPT
  1755. OPT_WITH_ARG("--lookup-gap",
  1756. set_lookup_gap, NULL, NULL,
  1757. "Set GPU lookup gap for scrypt mining, comma separated"),
  1758. OPT_WITH_ARG("--intensity|-I",
  1759. set_intensity, NULL, NULL,
  1760. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1761. " -> " MAX_SCRYPT_INTENSITY_STR
  1762. ",default: d to maintain desktop interactivity)"),
  1763. #else
  1764. OPT_WITH_ARG("--intensity|-I",
  1765. set_intensity, NULL, NULL,
  1766. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1767. " -> " MAX_SHA_INTENSITY_STR
  1768. ",default: d to maintain desktop interactivity)"),
  1769. #endif
  1770. #endif
  1771. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1772. OPT_WITH_ARG("--kernel-path|-K",
  1773. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1774. "Specify a path to where bitstream and kernel files are"),
  1775. #endif
  1776. #ifdef HAVE_OPENCL
  1777. OPT_WITH_ARG("--kernel|-k",
  1778. set_kernel, NULL, NULL,
  1779. "Override sha256 kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated"),
  1780. #endif
  1781. #ifdef USE_ICARUS
  1782. OPT_WITH_ARG("--icarus-options",
  1783. set_icarus_options, NULL, NULL,
  1784. opt_hidden),
  1785. OPT_WITH_ARG("--icarus-timing",
  1786. set_icarus_timing, NULL, NULL,
  1787. opt_hidden),
  1788. #endif
  1789. #ifdef USE_AVALON
  1790. OPT_WITH_ARG("--avalon-options",
  1791. set_avalon_options, NULL, NULL,
  1792. opt_hidden),
  1793. #endif
  1794. #ifdef USE_KLONDIKE
  1795. OPT_WITH_ARG("--klondike-options",
  1796. set_klondike_options, NULL, NULL,
  1797. "Set klondike options clock:temptarget"),
  1798. #endif
  1799. OPT_WITHOUT_ARG("--load-balance",
  1800. set_loadbalance, &pool_strategy,
  1801. "Change multipool strategy from failover to quota based balance"),
  1802. OPT_WITH_ARG("--log|-l",
  1803. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1804. "Interval in seconds between log output"),
  1805. OPT_WITH_ARG("--log-file|-L",
  1806. set_log_file, NULL, NULL,
  1807. "Append log file for output messages"),
  1808. OPT_WITH_ARG("--logfile",
  1809. set_log_file, NULL, NULL,
  1810. opt_hidden),
  1811. OPT_WITHOUT_ARG("--log-microseconds",
  1812. opt_set_bool, &opt_log_microseconds,
  1813. "Include microseconds in log output"),
  1814. #if defined(unix) || defined(__APPLE__)
  1815. OPT_WITH_ARG("--monitor|-m",
  1816. opt_set_charp, NULL, &opt_stderr_cmd,
  1817. "Use custom pipe cmd for output messages"),
  1818. #endif // defined(unix)
  1819. OPT_WITHOUT_ARG("--net-delay",
  1820. opt_set_bool, &opt_delaynet,
  1821. "Impose small delays in networking to avoid overloading slow routers"),
  1822. OPT_WITHOUT_ARG("--no-adl",
  1823. opt_set_bool, &opt_noadl,
  1824. #ifdef HAVE_ADL
  1825. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1826. #else
  1827. opt_hidden
  1828. #endif
  1829. ),
  1830. OPT_WITHOUT_ARG("--no-gbt",
  1831. opt_set_invbool, &want_gbt,
  1832. "Disable getblocktemplate support"),
  1833. OPT_WITHOUT_ARG("--no-getwork",
  1834. opt_set_invbool, &want_getwork,
  1835. "Disable getwork support"),
  1836. OPT_WITHOUT_ARG("--no-longpoll",
  1837. opt_set_invbool, &want_longpoll,
  1838. "Disable X-Long-Polling support"),
  1839. OPT_WITHOUT_ARG("--no-pool-disable",
  1840. opt_set_invbool, &opt_disable_pool,
  1841. opt_hidden),
  1842. OPT_WITHOUT_ARG("--no-restart",
  1843. opt_set_invbool, &opt_restart,
  1844. "Do not attempt to restart devices that hang"
  1845. ),
  1846. OPT_WITHOUT_ARG("--no-show-processors",
  1847. opt_set_invbool, &opt_show_procs,
  1848. opt_hidden),
  1849. OPT_WITHOUT_ARG("--no-show-procs",
  1850. opt_set_invbool, &opt_show_procs,
  1851. opt_hidden),
  1852. OPT_WITHOUT_ARG("--no-stratum",
  1853. opt_set_invbool, &want_stratum,
  1854. "Disable Stratum detection"),
  1855. OPT_WITHOUT_ARG("--no-submit-stale",
  1856. opt_set_invbool, &opt_submit_stale,
  1857. "Don't submit shares if they are detected as stale"),
  1858. #ifdef HAVE_OPENCL
  1859. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1860. opt_set_invbool, &opt_opencl_binaries,
  1861. "Don't attempt to use or save OpenCL kernel binaries"),
  1862. #endif
  1863. OPT_WITHOUT_ARG("--no-unicode",
  1864. #ifdef USE_UNICODE
  1865. opt_set_invbool, &use_unicode,
  1866. "Don't use Unicode characters in TUI"
  1867. #else
  1868. set_null, &use_unicode,
  1869. opt_hidden
  1870. #endif
  1871. ),
  1872. OPT_WITH_ARG("--noncelog",
  1873. set_noncelog, NULL, NULL,
  1874. "Create log of all nonces found"),
  1875. OPT_WITH_ARG("--pass|-p",
  1876. set_pass, NULL, NULL,
  1877. "Password for bitcoin JSON-RPC server"),
  1878. OPT_WITHOUT_ARG("--per-device-stats",
  1879. opt_set_bool, &want_per_device_stats,
  1880. "Force verbose mode and output per-device statistics"),
  1881. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1882. set_userpass, NULL, NULL,
  1883. opt_hidden),
  1884. OPT_WITH_ARG("--pool-priority",
  1885. set_pool_priority, NULL, NULL,
  1886. "Priority for just the previous-defined pool"),
  1887. OPT_WITH_ARG("--pool-proxy|-x",
  1888. set_pool_proxy, NULL, NULL,
  1889. "Proxy URI to use for connecting to just the previous-defined pool"),
  1890. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1891. set_pool_force_rollntime, NULL, NULL,
  1892. opt_hidden),
  1893. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1894. opt_set_bool, &opt_protocol,
  1895. "Verbose dump of protocol-level activities"),
  1896. OPT_WITH_ARG("--queue|-Q",
  1897. set_int_0_to_9999, opt_show_intval, &opt_queue,
  1898. "Minimum number of work items to have queued (0+)"),
  1899. OPT_WITHOUT_ARG("--quiet|-q",
  1900. opt_set_bool, &opt_quiet,
  1901. "Disable logging output, display status and errors"),
  1902. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  1903. opt_set_bool, &opt_quiet_work_updates,
  1904. opt_hidden),
  1905. OPT_WITH_ARG("--quota|-U",
  1906. set_quota, NULL, NULL,
  1907. "quota;URL combination for server with load-balance strategy quotas"),
  1908. OPT_WITHOUT_ARG("--real-quiet",
  1909. opt_set_bool, &opt_realquiet,
  1910. "Disable all output"),
  1911. OPT_WITH_ARG("--request-diff",
  1912. set_request_diff, opt_show_floatval, &request_pdiff,
  1913. "Request a specific difficulty from pools"),
  1914. OPT_WITH_ARG("--retries",
  1915. opt_set_intval, opt_show_intval, &opt_retries,
  1916. "Number of times to retry failed submissions before giving up (-1 means never)"),
  1917. OPT_WITH_ARG("--retry-pause",
  1918. set_null, NULL, NULL,
  1919. opt_hidden),
  1920. OPT_WITH_ARG("--rotate",
  1921. set_rotate, opt_show_intval, &opt_rotate_period,
  1922. "Change multipool strategy from failover to regularly rotate at N minutes"),
  1923. OPT_WITHOUT_ARG("--round-robin",
  1924. set_rr, &pool_strategy,
  1925. "Change multipool strategy from failover to round robin on failure"),
  1926. OPT_WITH_ARG("--scan|-S",
  1927. add_serial, NULL, NULL,
  1928. "Configure how to scan for mining devices"),
  1929. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  1930. add_serial, NULL, NULL,
  1931. opt_hidden),
  1932. OPT_WITH_ARG("--scan-time|-s",
  1933. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  1934. "Upper bound on time spent scanning current work, in seconds"),
  1935. OPT_WITH_ARG("--scantime",
  1936. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  1937. opt_hidden),
  1938. OPT_WITH_ARG("--sched-start",
  1939. set_schedtime, NULL, &schedstart,
  1940. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  1941. OPT_WITH_ARG("--sched-stop",
  1942. set_schedtime, NULL, &schedstop,
  1943. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  1944. #ifdef USE_SCRYPT
  1945. OPT_WITHOUT_ARG("--scrypt",
  1946. opt_set_bool, &opt_scrypt,
  1947. "Use the scrypt algorithm for mining (non-bitcoin)"),
  1948. #endif
  1949. OPT_WITH_ARG("--set-device",
  1950. opt_string_elist_add, NULL, &opt_set_device_list,
  1951. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  1952. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  1953. OPT_WITH_ARG("--shaders",
  1954. set_shaders, NULL, NULL,
  1955. "GPU shaders per card for tuning scrypt, comma separated"),
  1956. #endif
  1957. #ifdef HAVE_PWD_H
  1958. OPT_WITH_ARG("--setuid",
  1959. opt_set_charp, NULL, &opt_setuid,
  1960. "Username of an unprivileged user to run as"),
  1961. #endif
  1962. OPT_WITH_ARG("--sharelog",
  1963. set_sharelog, NULL, NULL,
  1964. "Append share log to file"),
  1965. OPT_WITH_ARG("--shares",
  1966. opt_set_intval, NULL, &opt_shares,
  1967. "Quit after mining N shares (default: unlimited)"),
  1968. OPT_WITHOUT_ARG("--show-processors",
  1969. opt_set_bool, &opt_show_procs,
  1970. "Show per processor statistics in summary"),
  1971. OPT_WITHOUT_ARG("--show-procs",
  1972. opt_set_bool, &opt_show_procs,
  1973. opt_hidden),
  1974. OPT_WITH_ARG("--skip-security-checks",
  1975. set_int_0_to_9999, NULL, &opt_skip_checks,
  1976. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  1977. OPT_WITH_ARG("--socks-proxy",
  1978. opt_set_charp, NULL, &opt_socks_proxy,
  1979. "Set socks proxy (host:port)"),
  1980. #ifdef USE_LIBEVENT
  1981. OPT_WITH_ARG("--stratum-port",
  1982. opt_set_intval, opt_show_intval, &stratumsrv_port,
  1983. "Port number to listen on for stratum miners (-1 means disabled)"),
  1984. #endif
  1985. OPT_WITHOUT_ARG("--submit-stale",
  1986. opt_set_bool, &opt_submit_stale,
  1987. opt_hidden),
  1988. OPT_WITH_ARG("--submit-threads",
  1989. opt_set_intval, opt_show_intval, &opt_submit_threads,
  1990. "Minimum number of concurrent share submissions (default: 64)"),
  1991. #ifdef HAVE_SYSLOG_H
  1992. OPT_WITHOUT_ARG("--syslog",
  1993. opt_set_bool, &use_syslog,
  1994. "Use system log for output messages (default: standard error)"),
  1995. #endif
  1996. OPT_WITH_ARG("--temp-cutoff",
  1997. set_temp_cutoff, NULL, &opt_cutofftemp,
  1998. "Maximum temperature devices will be allowed to reach before being disabled, one value or comma separated list"),
  1999. OPT_WITH_ARG("--temp-hysteresis",
  2000. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2001. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2002. #ifdef HAVE_ADL
  2003. OPT_WITH_ARG("--temp-overheat",
  2004. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2005. "Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  2006. #endif
  2007. OPT_WITH_ARG("--temp-target",
  2008. set_temp_target, NULL, NULL,
  2009. "Target temperature when automatically managing fan and clock speeds, one value or comma separated list"),
  2010. OPT_WITHOUT_ARG("--text-only|-T",
  2011. opt_set_invbool, &use_curses,
  2012. #ifdef HAVE_CURSES
  2013. "Disable ncurses formatted screen output"
  2014. #else
  2015. opt_hidden
  2016. #endif
  2017. ),
  2018. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2019. OPT_WITH_ARG("--thread-concurrency",
  2020. set_thread_concurrency, NULL, NULL,
  2021. "Set GPU thread concurrency for scrypt mining, comma separated"),
  2022. #endif
  2023. #ifdef USE_UNICODE
  2024. OPT_WITHOUT_ARG("--unicode",
  2025. opt_set_bool, &use_unicode,
  2026. "Use Unicode characters in TUI"),
  2027. #endif
  2028. OPT_WITH_ARG("--url|-o",
  2029. set_url, NULL, NULL,
  2030. "URL for bitcoin JSON-RPC server"),
  2031. OPT_WITH_ARG("--user|-u",
  2032. set_user, NULL, NULL,
  2033. "Username for bitcoin JSON-RPC server"),
  2034. #ifdef HAVE_OPENCL
  2035. OPT_WITH_ARG("--vectors|-v",
  2036. set_vector, NULL, NULL,
  2037. "Override detected optimal vector (1, 2 or 4) - one value or comma separated list"),
  2038. #endif
  2039. OPT_WITHOUT_ARG("--verbose",
  2040. opt_set_bool, &opt_log_output,
  2041. "Log verbose output to stderr as well as status output"),
  2042. #ifdef HAVE_OPENCL
  2043. OPT_WITH_ARG("--worksize|-w",
  2044. set_worksize, NULL, NULL,
  2045. "Override detected optimal worksize - one value or comma separated list"),
  2046. #endif
  2047. OPT_WITHOUT_ARG("--unittest",
  2048. opt_set_bool, &opt_unittest, opt_hidden),
  2049. OPT_WITH_ARG("--userpass|-O",
  2050. set_userpass, NULL, NULL,
  2051. "Username:Password pair for bitcoin JSON-RPC server"),
  2052. OPT_WITHOUT_ARG("--worktime",
  2053. opt_set_bool, &opt_worktime,
  2054. "Display extra work time debug information"),
  2055. OPT_WITH_ARG("--pools",
  2056. opt_set_bool, NULL, NULL, opt_hidden),
  2057. OPT_ENDTABLE
  2058. };
  2059. static char *load_config(const char *arg, void __maybe_unused *unused);
  2060. static int fileconf_load;
  2061. static char *parse_config(json_t *config, bool fileconf)
  2062. {
  2063. static char err_buf[200];
  2064. struct opt_table *opt;
  2065. json_t *val;
  2066. if (fileconf && !fileconf_load)
  2067. fileconf_load = 1;
  2068. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2069. char *p, *name, *sp;
  2070. /* We don't handle subtables. */
  2071. assert(!(opt->type & OPT_SUBTABLE));
  2072. if (!opt->names)
  2073. continue;
  2074. /* Pull apart the option name(s). */
  2075. name = strdup(opt->names);
  2076. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2077. char *err = "Invalid value";
  2078. /* Ignore short options. */
  2079. if (p[1] != '-')
  2080. continue;
  2081. val = json_object_get(config, p+2);
  2082. if (!val)
  2083. continue;
  2084. if (opt->type & OPT_HASARG) {
  2085. if (json_is_string(val)) {
  2086. err = opt->cb_arg(json_string_value(val),
  2087. opt->u.arg);
  2088. } else if (json_is_number(val)) {
  2089. char buf[256], *p, *q;
  2090. snprintf(buf, 256, "%f", json_number_value(val));
  2091. if ( (p = strchr(buf, '.')) ) {
  2092. // Trim /\.0*$/ to work properly with integer-only arguments
  2093. q = p;
  2094. while (*(++q) == '0') {}
  2095. if (*q == '\0')
  2096. *p = '\0';
  2097. }
  2098. err = opt->cb_arg(buf, opt->u.arg);
  2099. } else if (json_is_array(val)) {
  2100. int n, size = json_array_size(val);
  2101. err = NULL;
  2102. for (n = 0; n < size && !err; n++) {
  2103. if (json_is_string(json_array_get(val, n)))
  2104. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2105. else if (json_is_object(json_array_get(val, n)))
  2106. err = parse_config(json_array_get(val, n), false);
  2107. }
  2108. }
  2109. } else if (opt->type & OPT_NOARG) {
  2110. if (json_is_true(val))
  2111. err = opt->cb(opt->u.arg);
  2112. else if (json_is_boolean(val)) {
  2113. if (opt->cb == (void*)opt_set_bool)
  2114. err = opt_set_invbool(opt->u.arg);
  2115. else if (opt->cb == (void*)opt_set_invbool)
  2116. err = opt_set_bool(opt->u.arg);
  2117. }
  2118. }
  2119. if (err) {
  2120. /* Allow invalid values to be in configuration
  2121. * file, just skipping over them provided the
  2122. * JSON is still valid after that. */
  2123. if (fileconf) {
  2124. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2125. fileconf_load = -1;
  2126. } else {
  2127. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2128. p, err);
  2129. return err_buf;
  2130. }
  2131. }
  2132. }
  2133. free(name);
  2134. }
  2135. val = json_object_get(config, JSON_INCLUDE_CONF);
  2136. if (val && json_is_string(val))
  2137. return load_config(json_string_value(val), NULL);
  2138. return NULL;
  2139. }
  2140. char *cnfbuf = NULL;
  2141. static char *load_config(const char *arg, void __maybe_unused *unused)
  2142. {
  2143. json_error_t err;
  2144. json_t *config;
  2145. char *json_error;
  2146. size_t siz;
  2147. if (!cnfbuf)
  2148. cnfbuf = strdup(arg);
  2149. if (++include_count > JSON_MAX_DEPTH)
  2150. return JSON_MAX_DEPTH_ERR;
  2151. #if JANSSON_MAJOR_VERSION > 1
  2152. config = json_load_file(arg, 0, &err);
  2153. #else
  2154. config = json_load_file(arg, &err);
  2155. #endif
  2156. if (!json_is_object(config)) {
  2157. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2158. json_error = malloc(siz);
  2159. if (!json_error)
  2160. quit(1, "Malloc failure in json error");
  2161. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2162. return json_error;
  2163. }
  2164. config_loaded = true;
  2165. /* Parse the config now, so we can override it. That can keep pointers
  2166. * so don't free config object. */
  2167. return parse_config(config, true);
  2168. }
  2169. static void load_default_config(void)
  2170. {
  2171. cnfbuf = malloc(PATH_MAX);
  2172. #if defined(unix)
  2173. if (getenv("HOME") && *getenv("HOME")) {
  2174. strcpy(cnfbuf, getenv("HOME"));
  2175. strcat(cnfbuf, "/");
  2176. } else
  2177. strcpy(cnfbuf, "");
  2178. char *dirp = cnfbuf + strlen(cnfbuf);
  2179. strcpy(dirp, ".bfgminer/");
  2180. strcat(dirp, def_conf);
  2181. if (access(cnfbuf, R_OK))
  2182. // No BFGMiner config, try Cgminer's...
  2183. strcpy(dirp, ".cgminer/cgminer.conf");
  2184. #else
  2185. strcpy(cnfbuf, "");
  2186. strcat(cnfbuf, def_conf);
  2187. #endif
  2188. if (!access(cnfbuf, R_OK))
  2189. load_config(cnfbuf, NULL);
  2190. else {
  2191. free(cnfbuf);
  2192. cnfbuf = NULL;
  2193. }
  2194. }
  2195. extern const char *opt_argv0;
  2196. static char *opt_verusage_and_exit(const char *extra)
  2197. {
  2198. puts(packagename);
  2199. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2200. printf(" Algoritms:%s\n", BFG_ALGOLIST);
  2201. printf(" Options:%s\n", BFG_OPTLIST);
  2202. printf("%s", opt_usage(opt_argv0, extra));
  2203. fflush(stdout);
  2204. exit(0);
  2205. }
  2206. /* These options are available from commandline only */
  2207. static struct opt_table opt_cmdline_table[] = {
  2208. OPT_WITH_ARG("--config|-c",
  2209. load_config, NULL, NULL,
  2210. "Load a JSON-format configuration file\n"
  2211. "See example.conf for an example configuration."),
  2212. OPT_WITHOUT_ARG("--help|-h",
  2213. opt_verusage_and_exit, NULL,
  2214. "Print this message"),
  2215. #ifdef HAVE_OPENCL
  2216. OPT_WITHOUT_ARG("--ndevs|-n",
  2217. print_ndevs_and_exit, &nDevs,
  2218. opt_hidden),
  2219. #endif
  2220. OPT_WITHOUT_ARG("--version|-V",
  2221. opt_version_and_exit, packagename,
  2222. "Display version and exit"),
  2223. OPT_ENDTABLE
  2224. };
  2225. static bool jobj_binary(const json_t *obj, const char *key,
  2226. void *buf, size_t buflen, bool required)
  2227. {
  2228. const char *hexstr;
  2229. json_t *tmp;
  2230. tmp = json_object_get(obj, key);
  2231. if (unlikely(!tmp)) {
  2232. if (unlikely(required))
  2233. applog(LOG_ERR, "JSON key '%s' not found", key);
  2234. return false;
  2235. }
  2236. hexstr = json_string_value(tmp);
  2237. if (unlikely(!hexstr)) {
  2238. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2239. return false;
  2240. }
  2241. if (!hex2bin(buf, hexstr, buflen))
  2242. return false;
  2243. return true;
  2244. }
  2245. static void calc_midstate(struct work *work)
  2246. {
  2247. union {
  2248. unsigned char c[64];
  2249. uint32_t i[16];
  2250. } data;
  2251. swap32yes(&data.i[0], work->data, 16);
  2252. sha256_ctx ctx;
  2253. sha256_init(&ctx);
  2254. sha256_update(&ctx, data.c, 64);
  2255. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2256. swap32tole(work->midstate, work->midstate, 8);
  2257. }
  2258. static struct work *make_work(void)
  2259. {
  2260. struct work *work = calloc(1, sizeof(struct work));
  2261. if (unlikely(!work))
  2262. quit(1, "Failed to calloc work in make_work");
  2263. cg_wlock(&control_lock);
  2264. work->id = total_work++;
  2265. cg_wunlock(&control_lock);
  2266. return work;
  2267. }
  2268. /* This is the central place all work that is about to be retired should be
  2269. * cleaned to remove any dynamically allocated arrays within the struct */
  2270. void clean_work(struct work *work)
  2271. {
  2272. free(work->job_id);
  2273. bytes_free(&work->nonce2);
  2274. free(work->nonce1);
  2275. if (work->tmpl) {
  2276. struct pool *pool = work->pool;
  2277. mutex_lock(&pool->pool_lock);
  2278. bool free_tmpl = !--*work->tmpl_refcount;
  2279. mutex_unlock(&pool->pool_lock);
  2280. if (free_tmpl) {
  2281. blktmpl_free(work->tmpl);
  2282. free(work->tmpl_refcount);
  2283. }
  2284. }
  2285. memset(work, 0, sizeof(struct work));
  2286. }
  2287. /* All dynamically allocated work structs should be freed here to not leak any
  2288. * ram from arrays allocated within the work struct */
  2289. void free_work(struct work *work)
  2290. {
  2291. clean_work(work);
  2292. free(work);
  2293. }
  2294. 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";
  2295. // Must only be called with ch_lock held!
  2296. static
  2297. void __update_block_title(const unsigned char *hash_swap)
  2298. {
  2299. if (hash_swap) {
  2300. char tmp[17];
  2301. // Only provided when the block has actually changed
  2302. free(current_hash);
  2303. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2304. bin2hex(tmp, &hash_swap[24], 8);
  2305. memset(current_hash, '.', 3);
  2306. memcpy(&current_hash[3], tmp, 17);
  2307. known_blkheight_current = false;
  2308. } else if (likely(known_blkheight_current)) {
  2309. return;
  2310. }
  2311. if (current_block_id == known_blkheight_blkid) {
  2312. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2313. if (known_blkheight < 1000000) {
  2314. memmove(&current_hash[3], &current_hash[11], 8);
  2315. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2316. }
  2317. known_blkheight_current = true;
  2318. }
  2319. }
  2320. static
  2321. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2322. {
  2323. if (known_blkheight == blkheight)
  2324. return;
  2325. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2326. cg_wlock(&ch_lock);
  2327. known_blkheight = blkheight;
  2328. known_blkheight_blkid = block_id;
  2329. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2330. if (block_id == current_block_id)
  2331. __update_block_title(NULL);
  2332. cg_wunlock(&ch_lock);
  2333. }
  2334. static
  2335. void pool_set_opaque(struct pool *pool, bool opaque)
  2336. {
  2337. if (pool->swork.opaque == opaque)
  2338. return;
  2339. pool->swork.opaque = opaque;
  2340. if (opaque)
  2341. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2342. pool->pool_no);
  2343. else
  2344. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2345. pool->pool_no);
  2346. }
  2347. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2348. {
  2349. json_t *res_val = json_object_get(val, "result");
  2350. json_t *tmp_val;
  2351. bool ret = false;
  2352. if (unlikely(detect_algo == 1)) {
  2353. json_t *tmp = json_object_get(res_val, "algorithm");
  2354. const char *v = tmp ? json_string_value(tmp) : "";
  2355. if (strncasecmp(v, "scrypt", 6))
  2356. detect_algo = 2;
  2357. }
  2358. if (work->tmpl) {
  2359. struct timeval tv_now;
  2360. cgtime(&tv_now);
  2361. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2362. if (err) {
  2363. applog(LOG_ERR, "blktmpl error: %s", err);
  2364. return false;
  2365. }
  2366. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2367. #if BLKMAKER_VERSION > 1
  2368. if (opt_coinbase_script.sz)
  2369. {
  2370. bool newcb;
  2371. #if BLKMAKER_VERSION > 2
  2372. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2373. #else
  2374. newcb = !work->tmpl->cbtxn;
  2375. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2376. #endif
  2377. if (newcb)
  2378. {
  2379. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2380. if (ae < (ssize_t)sizeof(template_nonce))
  2381. 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);
  2382. ++template_nonce;
  2383. }
  2384. }
  2385. #endif
  2386. #if BLKMAKER_VERSION > 0
  2387. {
  2388. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2389. static bool appenderr = false;
  2390. if (ae <= 0) {
  2391. if (opt_coinbase_sig) {
  2392. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2393. appenderr = true;
  2394. }
  2395. } else if (ae >= 3 || opt_coinbase_sig) {
  2396. const char *cbappend = opt_coinbase_sig;
  2397. const char full[] = PACKAGE " " VERSION;
  2398. if (!cbappend) {
  2399. if ((size_t)ae >= sizeof(full) - 1)
  2400. cbappend = full;
  2401. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2402. cbappend = PACKAGE;
  2403. else
  2404. cbappend = "BFG";
  2405. }
  2406. size_t cbappendsz = strlen(cbappend);
  2407. static bool truncatewarning = false;
  2408. if (cbappendsz <= (size_t)ae) {
  2409. if (cbappendsz < (size_t)ae)
  2410. // If we have space, include the trailing \0
  2411. ++cbappendsz;
  2412. ae = cbappendsz;
  2413. truncatewarning = false;
  2414. } else {
  2415. char *tmp = malloc(ae + 1);
  2416. memcpy(tmp, opt_coinbase_sig, ae);
  2417. tmp[ae] = '\0';
  2418. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2419. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2420. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2421. free(tmp);
  2422. truncatewarning = true;
  2423. }
  2424. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2425. if (ae <= 0) {
  2426. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2427. appenderr = true;
  2428. } else
  2429. appenderr = false;
  2430. }
  2431. }
  2432. #endif
  2433. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2434. return false;
  2435. swap32yes(work->data, work->data, 80 / 4);
  2436. memcpy(&work->data[80], workpadding_bin, 48);
  2437. const struct blktmpl_longpoll_req *lp;
  2438. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2439. free(pool->lp_id);
  2440. pool->lp_id = strdup(lp->id);
  2441. #if 0 /* This just doesn't work :( */
  2442. curl_socket_t sock = pool->lp_socket;
  2443. if (sock != CURL_SOCKET_BAD) {
  2444. pool->lp_socket = CURL_SOCKET_BAD;
  2445. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2446. shutdown(sock, SHUT_RDWR);
  2447. }
  2448. #endif
  2449. }
  2450. }
  2451. else
  2452. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2453. applog(LOG_ERR, "JSON inval data");
  2454. return false;
  2455. }
  2456. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2457. // Calculate it ourselves
  2458. applog(LOG_DEBUG, "Calculating midstate locally");
  2459. calc_midstate(work);
  2460. }
  2461. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2462. applog(LOG_ERR, "JSON inval target");
  2463. return false;
  2464. }
  2465. if (work->tmpl) {
  2466. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2467. {
  2468. int p = (sizeof(work->target) - 1) - i;
  2469. unsigned char c = work->target[i];
  2470. work->target[i] = work->target[p];
  2471. work->target[p] = c;
  2472. }
  2473. }
  2474. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2475. uint32_t blkheight = json_number_value(tmp_val);
  2476. uint32_t block_id = ((uint32_t*)work->data)[1];
  2477. have_block_height(block_id, blkheight);
  2478. }
  2479. memset(work->hash, 0, sizeof(work->hash));
  2480. cgtime(&work->tv_staged);
  2481. pool_set_opaque(pool, !work->tmpl);
  2482. ret = true;
  2483. return ret;
  2484. }
  2485. /* Returns whether the pool supports local work generation or not. */
  2486. static bool pool_localgen(struct pool *pool)
  2487. {
  2488. return (pool->last_work_copy || pool->has_stratum);
  2489. }
  2490. int dev_from_id(int thr_id)
  2491. {
  2492. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2493. return cgpu->device_id;
  2494. }
  2495. /* Create an exponentially decaying average over the opt_log_interval */
  2496. void decay_time(double *f, double fadd, double fsecs)
  2497. {
  2498. double ftotal, fprop;
  2499. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2500. ftotal = 1.0 + fprop;
  2501. *f += (fadd * fprop);
  2502. *f /= ftotal;
  2503. }
  2504. static int __total_staged(void)
  2505. {
  2506. return HASH_COUNT(staged_work);
  2507. }
  2508. static int total_staged(void)
  2509. {
  2510. int ret;
  2511. mutex_lock(stgd_lock);
  2512. ret = __total_staged();
  2513. mutex_unlock(stgd_lock);
  2514. return ret;
  2515. }
  2516. #ifdef HAVE_CURSES
  2517. WINDOW *mainwin, *statuswin, *logwin;
  2518. #endif
  2519. double total_secs = 1.0;
  2520. static char statusline[256];
  2521. /* logstart is where the log window should start */
  2522. static int devcursor, logstart, logcursor;
  2523. #ifdef HAVE_CURSES
  2524. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2525. static int statusy;
  2526. static int devsummaryYOffset;
  2527. static int total_lines;
  2528. #endif
  2529. #ifdef HAVE_OPENCL
  2530. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2531. #endif
  2532. struct cgpu_info *cpus;
  2533. bool _bfg_console_cancel_disabled;
  2534. int _bfg_console_prev_cancelstate;
  2535. #ifdef HAVE_CURSES
  2536. #define lock_curses() bfg_console_lock()
  2537. #define unlock_curses() bfg_console_unlock()
  2538. static bool curses_active_locked(void)
  2539. {
  2540. bool ret;
  2541. lock_curses();
  2542. ret = curses_active;
  2543. if (!ret)
  2544. unlock_curses();
  2545. return ret;
  2546. }
  2547. // Cancellable getch
  2548. int my_cancellable_getch(void)
  2549. {
  2550. // This only works because the macro only hits direct getch() calls
  2551. typedef int (*real_getch_t)(void);
  2552. const real_getch_t real_getch = __real_getch;
  2553. int type, rv;
  2554. bool sct;
  2555. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2556. rv = real_getch();
  2557. if (sct)
  2558. pthread_setcanceltype(type, &type);
  2559. return rv;
  2560. }
  2561. #ifdef PDCURSES
  2562. static
  2563. int bfg_wresize(WINDOW *win, int lines, int columns)
  2564. {
  2565. int rv = wresize(win, lines, columns);
  2566. int x, y;
  2567. getyx(win, y, x);
  2568. if (unlikely(y >= lines || x >= columns))
  2569. {
  2570. if (y >= lines)
  2571. y = lines - 1;
  2572. if (x >= columns)
  2573. x = columns - 1;
  2574. wmove(win, y, x);
  2575. }
  2576. return rv;
  2577. }
  2578. #else
  2579. # define bfg_wresize wresize
  2580. #endif
  2581. #endif
  2582. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2583. {
  2584. va_list ap;
  2585. size_t presz = strlen(buf);
  2586. va_start(ap, fmt);
  2587. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2588. va_end(ap);
  2589. }
  2590. double stats_elapsed(struct cgminer_stats *stats)
  2591. {
  2592. struct timeval now;
  2593. double elapsed;
  2594. if (stats->start_tv.tv_sec == 0)
  2595. elapsed = total_secs;
  2596. else {
  2597. cgtime(&now);
  2598. elapsed = tdiff(&now, &stats->start_tv);
  2599. }
  2600. if (elapsed < 1.0)
  2601. elapsed = 1.0;
  2602. return elapsed;
  2603. }
  2604. bool drv_ready(struct cgpu_info *cgpu)
  2605. {
  2606. switch (cgpu->status) {
  2607. case LIFE_INIT:
  2608. case LIFE_DEAD2:
  2609. return false;
  2610. default:
  2611. return true;
  2612. }
  2613. }
  2614. double cgpu_utility(struct cgpu_info *cgpu)
  2615. {
  2616. double dev_runtime = cgpu_runtime(cgpu);
  2617. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2618. }
  2619. /* Convert a uint64_t value into a truncated string for displaying with its
  2620. * associated suitable for Mega, Giga etc. Buf array needs to be long enough */
  2621. static void suffix_string(uint64_t val, char *buf, size_t bufsiz, int sigdigits)
  2622. {
  2623. const double dkilo = 1000.0;
  2624. const uint64_t kilo = 1000ull;
  2625. const uint64_t mega = 1000000ull;
  2626. const uint64_t giga = 1000000000ull;
  2627. const uint64_t tera = 1000000000000ull;
  2628. const uint64_t peta = 1000000000000000ull;
  2629. const uint64_t exa = 1000000000000000000ull;
  2630. char suffix[2] = "";
  2631. bool decimal = true;
  2632. double dval;
  2633. if (val >= exa) {
  2634. val /= peta;
  2635. dval = (double)val / dkilo;
  2636. strcpy(suffix, "E");
  2637. } else if (val >= peta) {
  2638. val /= tera;
  2639. dval = (double)val / dkilo;
  2640. strcpy(suffix, "P");
  2641. } else if (val >= tera) {
  2642. val /= giga;
  2643. dval = (double)val / dkilo;
  2644. strcpy(suffix, "T");
  2645. } else if (val >= giga) {
  2646. val /= mega;
  2647. dval = (double)val / dkilo;
  2648. strcpy(suffix, "G");
  2649. } else if (val >= mega) {
  2650. val /= kilo;
  2651. dval = (double)val / dkilo;
  2652. strcpy(suffix, "M");
  2653. } else if (val >= kilo) {
  2654. dval = (double)val / dkilo;
  2655. strcpy(suffix, "k");
  2656. } else {
  2657. dval = val;
  2658. decimal = false;
  2659. }
  2660. if (!sigdigits) {
  2661. if (decimal)
  2662. snprintf(buf, bufsiz, "%.3g%s", dval, suffix);
  2663. else
  2664. snprintf(buf, bufsiz, "%d%s", (unsigned int)dval, suffix);
  2665. } else {
  2666. /* Always show sigdigits + 1, padded on right with zeroes
  2667. * followed by suffix */
  2668. int ndigits = sigdigits - 1 - (dval > 0.0 ? floor(log10(dval)) : 0);
  2669. snprintf(buf, bufsiz, "%*.*f%s", sigdigits + 1, ndigits, dval, suffix);
  2670. }
  2671. }
  2672. static float
  2673. utility_to_hashrate(double utility)
  2674. {
  2675. return utility * 0x4444444;
  2676. }
  2677. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2678. static const int _unitbase = 4;
  2679. static
  2680. void pick_unit(float hashrate, unsigned char *unit)
  2681. {
  2682. unsigned char i;
  2683. if (hashrate == 0)
  2684. {
  2685. if (*unit < _unitbase)
  2686. *unit = _unitbase;
  2687. return;
  2688. }
  2689. hashrate *= 1e12;
  2690. for (i = 0; i < *unit; ++i)
  2691. hashrate /= 1e3;
  2692. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2693. while (hashrate >= 999.95)
  2694. {
  2695. hashrate /= 1e3;
  2696. if (likely(_unitchar[*unit] != '?'))
  2697. ++*unit;
  2698. }
  2699. }
  2700. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2701. enum h2bs_fmt {
  2702. H2B_NOUNIT, // "xxx.x"
  2703. H2B_SHORT, // "xxx.xMH/s"
  2704. H2B_SPACED, // "xxx.x MH/s"
  2705. };
  2706. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2707. enum bfu_floatprec {
  2708. FUP_INTEGER,
  2709. FUP_HASHES,
  2710. FUP_BTC,
  2711. };
  2712. static
  2713. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2714. {
  2715. char *s = buf;
  2716. unsigned char prec, i, unit;
  2717. int rv = 0;
  2718. if (unitin == -1)
  2719. {
  2720. unit = 0;
  2721. hashrate_pick_unit(hashrate, &unit);
  2722. }
  2723. else
  2724. unit = unitin;
  2725. hashrate *= 1e12;
  2726. for (i = 0; i < unit; ++i)
  2727. hashrate /= 1000;
  2728. switch (fprec)
  2729. {
  2730. case FUP_HASHES:
  2731. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2732. if (hashrate >= 99.995 || unit < 6)
  2733. prec = 1;
  2734. else
  2735. prec = 2;
  2736. _SNP("%5.*f", prec, hashrate);
  2737. break;
  2738. case FUP_INTEGER:
  2739. _SNP("%3d", (int)hashrate);
  2740. break;
  2741. case FUP_BTC:
  2742. if (hashrate >= 99.995)
  2743. prec = 0;
  2744. else
  2745. prec = 2;
  2746. _SNP("%5.*f", prec, hashrate);
  2747. }
  2748. switch (fmt) {
  2749. case H2B_SPACED:
  2750. _SNP(" ");
  2751. case H2B_SHORT:
  2752. _SNP("%c%s", _unitchar[unit], measurement);
  2753. default:
  2754. break;
  2755. }
  2756. return rv;
  2757. }
  2758. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2759. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2760. static
  2761. 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)
  2762. {
  2763. unsigned char unit = 0;
  2764. bool allzero = true;
  2765. int i;
  2766. size_t delimsz = 0;
  2767. char *buf = buflist[0];
  2768. size_t bufsz = bufszlist[0];
  2769. size_t itemwidth = (floatprec ? 5 : 3);
  2770. if (!isarray)
  2771. delimsz = strlen(delim);
  2772. for (i = 0; i < count; ++i)
  2773. if (numbers[i] != 0)
  2774. {
  2775. pick_unit(numbers[i], &unit);
  2776. allzero = false;
  2777. }
  2778. if (allzero)
  2779. unit = _unitbase;
  2780. --count;
  2781. for (i = 0; i < count; ++i)
  2782. {
  2783. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2784. if (isarray)
  2785. {
  2786. buf = buflist[i + 1];
  2787. bufsz = bufszlist[i + 1];
  2788. }
  2789. else
  2790. {
  2791. buf += itemwidth;
  2792. bufsz -= itemwidth;
  2793. if (delimsz > bufsz)
  2794. delimsz = bufsz;
  2795. memcpy(buf, delim, delimsz);
  2796. buf += delimsz;
  2797. bufsz -= delimsz;
  2798. }
  2799. }
  2800. // Last entry has the unit
  2801. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2802. return buflist[0];
  2803. }
  2804. #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)
  2805. #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)
  2806. static
  2807. int percentf3(char * const buf, size_t sz, double p, const double t)
  2808. {
  2809. char *s = buf;
  2810. int rv = 0;
  2811. if (!p)
  2812. _SNP("none");
  2813. else
  2814. if (t <= p)
  2815. _SNP("100%%");
  2816. else
  2817. {
  2818. p /= t;
  2819. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2820. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2821. else
  2822. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2823. _SNP("%.1f%%", p * 100); // "9.1%"
  2824. else
  2825. _SNP("%3.0f%%", p * 100); // " 99%"
  2826. }
  2827. return rv;
  2828. }
  2829. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2830. static
  2831. void test_decimal_width()
  2832. {
  2833. // The pipe character at end of each line should perfectly line up
  2834. char printbuf[512];
  2835. char testbuf1[64];
  2836. char testbuf2[64];
  2837. char testbuf3[64];
  2838. char testbuf4[64];
  2839. double testn;
  2840. int width;
  2841. int saved;
  2842. // Hotspots around 0.1 and 0.01
  2843. saved = -1;
  2844. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2845. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2846. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2847. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2848. if (unlikely((saved != -1) && (width != saved))) {
  2849. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2850. applog(LOG_ERR, "%s", printbuf);
  2851. }
  2852. saved = width;
  2853. }
  2854. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2855. saved = -1;
  2856. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2857. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2858. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2859. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2860. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2861. if (unlikely((saved != -1) && (width != saved))) {
  2862. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2863. applog(LOG_ERR, "%s", printbuf);
  2864. }
  2865. saved = width;
  2866. }
  2867. // Hotspot around unit transition boundary in pick_unit
  2868. saved = -1;
  2869. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2870. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2871. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2872. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2873. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2874. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2875. if (unlikely((saved != -1) && (width != saved))) {
  2876. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2877. applog(LOG_ERR, "%s", printbuf);
  2878. }
  2879. saved = width;
  2880. }
  2881. }
  2882. #ifdef HAVE_CURSES
  2883. static void adj_width(int var, int *length);
  2884. #endif
  2885. #ifdef HAVE_CURSES
  2886. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2887. static
  2888. 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 badnonces, int allnonces)
  2889. {
  2890. char rejpcbuf[6];
  2891. char bnbuf[6];
  2892. adj_width(accepted, &awidth);
  2893. adj_width(rejected, &rwidth);
  2894. adj_width(stale, &swidth);
  2895. adj_width(hwerrs, &hwwidth);
  2896. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2897. percentf3(bnbuf, sizeof(bnbuf), badnonces, allnonces);
  2898. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2899. cHr, aHr, uHr,
  2900. awidth, accepted,
  2901. rwidth, rejected,
  2902. swidth, stale,
  2903. rejpcbuf,
  2904. hwwidth, hwerrs,
  2905. bnbuf
  2906. );
  2907. }
  2908. #endif
  2909. static inline
  2910. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  2911. {
  2912. if (!(use_unicode && have_unicode_degrees))
  2913. maybe_unicode = false;
  2914. if (temp && *temp > 0.)
  2915. if (maybe_unicode)
  2916. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  2917. else
  2918. snprintf(buf, bufsz, "%4.1fC", *temp);
  2919. else
  2920. {
  2921. if (temp)
  2922. snprintf(buf, bufsz, " ");
  2923. if (maybe_unicode)
  2924. tailsprintf(buf, bufsz, " ");
  2925. }
  2926. tailsprintf(buf, bufsz, " | ");
  2927. }
  2928. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  2929. {
  2930. #ifndef HAVE_CURSES
  2931. assert(for_curses == false);
  2932. #endif
  2933. struct device_drv *drv = cgpu->drv;
  2934. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  2935. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  2936. char rejpcbuf[6];
  2937. char bnbuf[6];
  2938. double dev_runtime;
  2939. if (!opt_show_procs)
  2940. cgpu = cgpu->device;
  2941. dev_runtime = cgpu_runtime(cgpu);
  2942. cgpu_utility(cgpu);
  2943. cgpu->utility_diff1 = cgpu->diff_accepted / dev_runtime * 60;
  2944. double rolling = cgpu->rolling;
  2945. double mhashes = cgpu->total_mhashes;
  2946. int accepted = cgpu->accepted;
  2947. int rejected = cgpu->rejected;
  2948. int stale = cgpu->stale;
  2949. double waccepted = cgpu->diff_accepted;
  2950. double wnotaccepted = cgpu->diff_rejected + cgpu->diff_stale;
  2951. int hwerrs = cgpu->hw_errors;
  2952. int badnonces = cgpu->bad_nonces;
  2953. int goodnonces = cgpu->diff1;
  2954. if (!opt_show_procs)
  2955. {
  2956. struct cgpu_info *slave = cgpu;
  2957. for (int i = 1; i < cgpu->procs; ++i)
  2958. {
  2959. slave = slave->next_proc;
  2960. slave->utility = slave->accepted / dev_runtime * 60;
  2961. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  2962. rolling += slave->rolling;
  2963. mhashes += slave->total_mhashes;
  2964. accepted += slave->accepted;
  2965. rejected += slave->rejected;
  2966. stale += slave->stale;
  2967. waccepted += slave->diff_accepted;
  2968. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  2969. hwerrs += slave->hw_errors;
  2970. badnonces += slave->bad_nonces;
  2971. goodnonces += slave->diff1;
  2972. }
  2973. }
  2974. double wtotal = (waccepted + wnotaccepted);
  2975. multi_format_unit_array2(
  2976. ((char*[]){cHr, aHr, uHr}),
  2977. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  2978. true, "h/s", hashrate_style,
  2979. 3,
  2980. 1e6*rolling,
  2981. 1e6*mhashes / dev_runtime,
  2982. utility_to_hashrate(goodnonces * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  2983. // Processor representation
  2984. #ifdef HAVE_CURSES
  2985. if (for_curses)
  2986. {
  2987. if (opt_show_procs)
  2988. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  2989. else
  2990. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  2991. }
  2992. else
  2993. #endif
  2994. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  2995. if (unlikely(cgpu->status == LIFE_INIT))
  2996. {
  2997. tailsprintf(buf, bufsz, "Initializing...");
  2998. return;
  2999. }
  3000. {
  3001. const size_t bufln = strlen(buf);
  3002. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3003. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3004. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3005. else
  3006. {
  3007. float temp = cgpu->temp;
  3008. if (!opt_show_procs)
  3009. {
  3010. // Find the highest temperature of all processors
  3011. struct cgpu_info *proc = cgpu;
  3012. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3013. if (proc->temp > temp)
  3014. temp = proc->temp;
  3015. }
  3016. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3017. }
  3018. }
  3019. #ifdef HAVE_CURSES
  3020. if (for_curses)
  3021. {
  3022. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3023. const char *cHrStats;
  3024. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3025. bool all_dead = true, all_off = true, all_rdrv = true;
  3026. struct cgpu_info *proc = cgpu;
  3027. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3028. {
  3029. switch (cHrStatsI) {
  3030. default:
  3031. if (proc->status == LIFE_WAIT)
  3032. cHrStatsI = 5;
  3033. case 5:
  3034. if (proc->deven == DEV_RECOVER_ERR)
  3035. cHrStatsI = 4;
  3036. case 4:
  3037. if (proc->deven == DEV_RECOVER)
  3038. cHrStatsI = 3;
  3039. case 3:
  3040. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3041. {
  3042. cHrStatsI = 1;
  3043. all_off = false;
  3044. }
  3045. else
  3046. {
  3047. if (likely(proc->deven == DEV_ENABLED))
  3048. all_off = false;
  3049. if (proc->deven != DEV_RECOVER_DRV)
  3050. all_rdrv = false;
  3051. }
  3052. case 1:
  3053. break;
  3054. }
  3055. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3056. all_dead = false;
  3057. if (opt_show_procs)
  3058. break;
  3059. }
  3060. if (unlikely(all_dead))
  3061. cHrStatsI = 0;
  3062. else
  3063. if (unlikely(all_off))
  3064. cHrStatsI = 2;
  3065. cHrStats = cHrStatsOpt[cHrStatsI];
  3066. if (cHrStatsI == 2 && all_rdrv)
  3067. cHrStats = " RST ";
  3068. format_statline(buf, bufsz,
  3069. cHrStats,
  3070. aHr, uHr,
  3071. accepted, rejected, stale,
  3072. wnotaccepted, waccepted,
  3073. hwerrs,
  3074. badnonces, badnonces + goodnonces);
  3075. }
  3076. else
  3077. #endif
  3078. {
  3079. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3080. percentf4(bnbuf, sizeof(bnbuf), badnonces, goodnonces);
  3081. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3082. opt_log_interval,
  3083. cHr, aHr, uHr,
  3084. accepted,
  3085. rejected,
  3086. stale,
  3087. rejpcbuf,
  3088. hwerrs,
  3089. bnbuf
  3090. );
  3091. }
  3092. }
  3093. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3094. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3095. static void text_print_status(int thr_id)
  3096. {
  3097. struct cgpu_info *cgpu;
  3098. char logline[256];
  3099. cgpu = get_thr_cgpu(thr_id);
  3100. if (cgpu) {
  3101. get_statline(logline, sizeof(logline), cgpu);
  3102. printf("%s\n", logline);
  3103. }
  3104. }
  3105. #ifdef HAVE_CURSES
  3106. static int attr_bad = A_BOLD;
  3107. #ifdef WIN32
  3108. #define swprintf snwprintf
  3109. #endif
  3110. static
  3111. void bfg_waddstr(WINDOW *win, const char *s)
  3112. {
  3113. const char *p = s;
  3114. int32_t w;
  3115. int wlen;
  3116. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3117. while (true)
  3118. {
  3119. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3120. {
  3121. // Printable ASCII
  3122. ++p;
  3123. }
  3124. if (p != s)
  3125. waddnstr(win, s, p - s);
  3126. w = utf8_decode(p, &wlen);
  3127. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3128. {
  3129. w = unicode_micro;
  3130. wlen = 1;
  3131. }
  3132. s = p += wlen;
  3133. switch(w)
  3134. {
  3135. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3136. case '\0':
  3137. return;
  3138. case 0xf000: // "bad" off
  3139. wattroff(win, attr_bad);
  3140. break;
  3141. case 0xf001: // "bad" on
  3142. wattron(win, attr_bad);
  3143. break;
  3144. #ifdef USE_UNICODE
  3145. case '|':
  3146. wadd_wch(win, WACS_VLINE);
  3147. break;
  3148. #endif
  3149. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3150. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3151. if (!use_unicode)
  3152. {
  3153. waddch(win, '-');
  3154. break;
  3155. }
  3156. #ifdef USE_UNICODE
  3157. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3158. break;
  3159. #endif
  3160. case 0x2022:
  3161. if (w > WCHAR_MAX || !iswprint(w))
  3162. w = '*';
  3163. default:
  3164. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3165. {
  3166. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3167. if (iswprint(REPLACEMENT_CHAR))
  3168. w = REPLACEMENT_CHAR;
  3169. else
  3170. #endif
  3171. w = '?';
  3172. }
  3173. {
  3174. #ifdef USE_UNICODE
  3175. wchar_t wbuf[0x10];
  3176. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3177. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3178. waddnwstr(win, wbuf, wbuflen);
  3179. #else
  3180. wprintw(win, "%lc", (wint_t)w);
  3181. #endif
  3182. }
  3183. }
  3184. }
  3185. }
  3186. static inline
  3187. void bfg_hline(WINDOW *win, int y)
  3188. {
  3189. #ifdef USE_UNICODE
  3190. if (use_unicode)
  3191. mvwhline_set(win, y, 0, WACS_HLINE, 80);
  3192. else
  3193. #endif
  3194. mvwhline(win, y, 0, '-', 80);
  3195. }
  3196. static int menu_attr = A_REVERSE;
  3197. #define CURBUFSIZ 256
  3198. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3199. char tmp42[CURBUFSIZ]; \
  3200. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3201. wmove(win, y, x); \
  3202. bfg_waddstr(win, tmp42); \
  3203. } while (0)
  3204. #define cg_wprintw(win, fmt, ...) do { \
  3205. char tmp42[CURBUFSIZ]; \
  3206. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3207. bfg_waddstr(win, tmp42); \
  3208. } while (0)
  3209. /* Must be called with curses mutex lock held and curses_active */
  3210. static void curses_print_status(const int ts)
  3211. {
  3212. struct pool *pool = currentpool;
  3213. struct timeval now, tv;
  3214. float efficiency;
  3215. double income;
  3216. int logdiv;
  3217. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3218. wattron(statuswin, A_BOLD);
  3219. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3220. timer_set_now(&now);
  3221. {
  3222. unsigned int days, hours;
  3223. div_t d;
  3224. timersub(&now, &miner_started, &tv);
  3225. d = div(tv.tv_sec, 86400);
  3226. days = d.quot;
  3227. d = div(d.rem, 3600);
  3228. hours = d.quot;
  3229. d = div(d.rem, 60);
  3230. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3231. , days
  3232. , (days == 1) ? ' ' : 's'
  3233. , hours
  3234. , d.quot
  3235. , d.rem
  3236. );
  3237. }
  3238. wattroff(statuswin, A_BOLD);
  3239. wattron(statuswin, menu_attr);
  3240. cg_mvwprintw(statuswin, 1, 0, " [M]anage devices [P]ool management [S]ettings [D]isplay options [H]elp [Q]uit ");
  3241. wattroff(statuswin, menu_attr);
  3242. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3243. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3244. have_longpoll ? "": "out");
  3245. } else if (pool->has_stratum) {
  3246. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3247. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3248. } else {
  3249. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3250. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3251. }
  3252. wclrtoeol(statuswin);
  3253. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3254. current_hash, block_diff, net_hashrate, blocktime);
  3255. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3256. char bwstr[12], incomestr[13];
  3257. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3258. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3259. ts,
  3260. total_go + total_ro,
  3261. new_blocks,
  3262. total_submitting,
  3263. multi_format_unit2(bwstr, sizeof(bwstr),
  3264. false, "B/s", H2B_SHORT, "/", 2,
  3265. (float)(total_bytes_rcvd / total_secs),
  3266. (float)(total_bytes_sent / total_secs)),
  3267. efficiency,
  3268. incomestr,
  3269. best_share);
  3270. wclrtoeol(statuswin);
  3271. mvwaddstr(statuswin, 5, 0, " ");
  3272. bfg_waddstr(statuswin, statusline);
  3273. wclrtoeol(statuswin);
  3274. logdiv = statusy - 1;
  3275. bfg_hline(statuswin, 6);
  3276. bfg_hline(statuswin, logdiv);
  3277. #ifdef USE_UNICODE
  3278. if (use_unicode)
  3279. {
  3280. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3281. if (opt_show_procs && !opt_compact)
  3282. ++offset; // proc letter
  3283. if (have_unicode_degrees)
  3284. ++offset; // degrees symbol
  3285. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3286. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3287. offset += 24; // hashrates etc
  3288. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3289. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3290. }
  3291. #endif
  3292. }
  3293. static void adj_width(int var, int *length)
  3294. {
  3295. if ((int)(log10(var) + 1) > *length)
  3296. (*length)++;
  3297. }
  3298. static int dev_width;
  3299. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3300. {
  3301. char logline[256];
  3302. int ypos;
  3303. if (opt_compact)
  3304. return;
  3305. /* Check this isn't out of the window size */
  3306. if (opt_show_procs)
  3307. ypos = cgpu->cgminer_id;
  3308. else
  3309. {
  3310. if (cgpu->proc_id)
  3311. return;
  3312. ypos = cgpu->device_line_id;
  3313. }
  3314. ypos += devsummaryYOffset;
  3315. if (ypos < 0)
  3316. return;
  3317. ypos += devcursor - 1;
  3318. if (ypos >= statusy - 1)
  3319. return;
  3320. if (wmove(statuswin, ypos, 0) == ERR)
  3321. return;
  3322. get_statline2(logline, sizeof(logline), cgpu, true);
  3323. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3324. wattron(statuswin, A_REVERSE);
  3325. bfg_waddstr(statuswin, logline);
  3326. wattroff(statuswin, A_REVERSE);
  3327. wclrtoeol(statuswin);
  3328. }
  3329. static
  3330. void _refresh_devstatus(const bool already_have_lock) {
  3331. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3332. int i;
  3333. if (unlikely(!total_devices))
  3334. {
  3335. const int ypos = devcursor - 1;
  3336. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3337. {
  3338. wattron(statuswin, attr_bad);
  3339. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3340. wclrtoeol(statuswin);
  3341. wattroff(statuswin, attr_bad);
  3342. }
  3343. }
  3344. for (i = 0; i < total_devices; i++)
  3345. curses_print_devstatus(get_devices(i));
  3346. touchwin(statuswin);
  3347. wrefresh(statuswin);
  3348. if (!already_have_lock)
  3349. unlock_curses();
  3350. }
  3351. }
  3352. #define refresh_devstatus() _refresh_devstatus(false)
  3353. #endif
  3354. static void print_status(int thr_id)
  3355. {
  3356. if (!curses_active)
  3357. text_print_status(thr_id);
  3358. }
  3359. #ifdef HAVE_CURSES
  3360. /* Check for window resize. Called with curses mutex locked */
  3361. static inline void change_logwinsize(void)
  3362. {
  3363. int x, y, logx, logy;
  3364. getmaxyx(mainwin, y, x);
  3365. if (x < 80 || y < 25)
  3366. return;
  3367. if (y > statusy + 2 && statusy < logstart) {
  3368. if (y - 2 < logstart)
  3369. statusy = y - 2;
  3370. else
  3371. statusy = logstart;
  3372. logcursor = statusy;
  3373. mvwin(logwin, logcursor, 0);
  3374. bfg_wresize(statuswin, statusy, x);
  3375. }
  3376. y -= logcursor;
  3377. getmaxyx(logwin, logy, logx);
  3378. /* Detect screen size change */
  3379. if (x != logx || y != logy)
  3380. bfg_wresize(logwin, y, x);
  3381. }
  3382. static void check_winsizes(void)
  3383. {
  3384. if (!use_curses)
  3385. return;
  3386. if (curses_active_locked()) {
  3387. int y, x;
  3388. erase();
  3389. x = getmaxx(statuswin);
  3390. if (logstart > LINES - 2)
  3391. statusy = LINES - 2;
  3392. else
  3393. statusy = logstart;
  3394. logcursor = statusy;
  3395. bfg_wresize(statuswin, statusy, x);
  3396. getmaxyx(mainwin, y, x);
  3397. y -= logcursor;
  3398. bfg_wresize(logwin, y, x);
  3399. mvwin(logwin, logcursor, 0);
  3400. unlock_curses();
  3401. }
  3402. }
  3403. static int device_line_id_count;
  3404. static void switch_logsize(void)
  3405. {
  3406. if (curses_active_locked()) {
  3407. if (opt_compact) {
  3408. logstart = devcursor - 1;
  3409. logcursor = logstart + 1;
  3410. } else {
  3411. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3412. logstart = devcursor + total_lines;
  3413. logcursor = logstart;
  3414. }
  3415. unlock_curses();
  3416. }
  3417. check_winsizes();
  3418. }
  3419. /* For mandatory printing when mutex is already locked */
  3420. void _wlog(const char *str)
  3421. {
  3422. static bool newline;
  3423. size_t end = strlen(str) - 1;
  3424. if (newline)
  3425. bfg_waddstr(logwin, "\n");
  3426. if (str[end] == '\n')
  3427. {
  3428. char *s;
  3429. newline = true;
  3430. s = alloca(end + 1);
  3431. memcpy(s, str, end);
  3432. s[end] = '\0';
  3433. str = s;
  3434. }
  3435. else
  3436. newline = false;
  3437. bfg_waddstr(logwin, str);
  3438. }
  3439. /* Mandatory printing */
  3440. void _wlogprint(const char *str)
  3441. {
  3442. if (curses_active_locked()) {
  3443. _wlog(str);
  3444. unlock_curses();
  3445. }
  3446. }
  3447. #endif
  3448. #ifdef HAVE_CURSES
  3449. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3450. {
  3451. bool high_prio;
  3452. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3453. if (curses_active)
  3454. {
  3455. if (!opt_loginput || high_prio) {
  3456. wlog(" %s %s\n", datetime, str);
  3457. if (high_prio) {
  3458. touchwin(logwin);
  3459. wrefresh(logwin);
  3460. }
  3461. }
  3462. return true;
  3463. }
  3464. return false;
  3465. }
  3466. void clear_logwin(void)
  3467. {
  3468. if (curses_active_locked()) {
  3469. wclear(logwin);
  3470. unlock_curses();
  3471. }
  3472. }
  3473. void logwin_update(void)
  3474. {
  3475. if (curses_active_locked()) {
  3476. touchwin(logwin);
  3477. wrefresh(logwin);
  3478. unlock_curses();
  3479. }
  3480. }
  3481. #endif
  3482. static void enable_pool(struct pool *pool)
  3483. {
  3484. if (pool->enabled != POOL_ENABLED) {
  3485. enabled_pools++;
  3486. pool->enabled = POOL_ENABLED;
  3487. }
  3488. }
  3489. #ifdef HAVE_CURSES
  3490. static void disable_pool(struct pool *pool)
  3491. {
  3492. if (pool->enabled == POOL_ENABLED)
  3493. enabled_pools--;
  3494. pool->enabled = POOL_DISABLED;
  3495. }
  3496. #endif
  3497. static void reject_pool(struct pool *pool)
  3498. {
  3499. if (pool->enabled == POOL_ENABLED)
  3500. enabled_pools--;
  3501. pool->enabled = POOL_REJECTING;
  3502. }
  3503. static uint64_t share_diff(const struct work *);
  3504. static
  3505. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3506. struct cgpu_info *cgpu;
  3507. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3508. char shrdiffdisp[16];
  3509. int tgtdiff = floor(work->work_difficulty);
  3510. char tgtdiffdisp[16];
  3511. char where[20];
  3512. cgpu = get_thr_cgpu(work->thr_id);
  3513. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3514. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3515. if (total_pools > 1)
  3516. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3517. else
  3518. where[0] = '\0';
  3519. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3520. disp,
  3521. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3522. cgpu->proc_repr,
  3523. where,
  3524. shrdiffdisp, tgtdiffdisp,
  3525. reason,
  3526. resubmit ? "(resubmit)" : "",
  3527. worktime
  3528. );
  3529. }
  3530. static bool test_work_current(struct work *);
  3531. static void _submit_work_async(struct work *);
  3532. static
  3533. void maybe_local_submit(const struct work *work)
  3534. {
  3535. #if BLKMAKER_VERSION > 3
  3536. if (unlikely(work->block && work->tmpl))
  3537. {
  3538. // This is a block with a full template (GBT)
  3539. // Regardless of the result, submit to local bitcoind(s) as well
  3540. struct work *work_cp;
  3541. char *p;
  3542. for (int i = 0; i < total_pools; ++i)
  3543. {
  3544. p = strchr(pools[i]->rpc_url, '#');
  3545. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3546. continue;
  3547. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3548. work_cp = copy_work(work);
  3549. work_cp->pool = pools[i];
  3550. work_cp->do_foreign_submit = true;
  3551. _submit_work_async(work_cp);
  3552. }
  3553. }
  3554. #endif
  3555. }
  3556. /* Theoretically threads could race when modifying accepted and
  3557. * rejected values but the chance of two submits completing at the
  3558. * same time is zero so there is no point adding extra locking */
  3559. static void
  3560. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3561. /*char *hashshow,*/ bool resubmit, char *worktime)
  3562. {
  3563. struct pool *pool = work->pool;
  3564. struct cgpu_info *cgpu;
  3565. cgpu = get_thr_cgpu(work->thr_id);
  3566. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3567. mutex_lock(&stats_lock);
  3568. cgpu->accepted++;
  3569. total_accepted++;
  3570. pool->accepted++;
  3571. cgpu->diff_accepted += work->work_difficulty;
  3572. total_diff_accepted += work->work_difficulty;
  3573. pool->diff_accepted += work->work_difficulty;
  3574. mutex_unlock(&stats_lock);
  3575. pool->seq_rejects = 0;
  3576. cgpu->last_share_pool = pool->pool_no;
  3577. cgpu->last_share_pool_time = time(NULL);
  3578. cgpu->last_share_diff = work->work_difficulty;
  3579. pool->last_share_time = cgpu->last_share_pool_time;
  3580. pool->last_share_diff = work->work_difficulty;
  3581. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3582. if (!QUIET) {
  3583. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3584. }
  3585. sharelog("accept", work);
  3586. if (opt_shares && total_diff_accepted >= opt_shares) {
  3587. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  3588. kill_work();
  3589. return;
  3590. }
  3591. /* Detect if a pool that has been temporarily disabled for
  3592. * continually rejecting shares has started accepting shares.
  3593. * This will only happen with the work returned from a
  3594. * longpoll */
  3595. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3596. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3597. enable_pool(pool);
  3598. switch_pools(NULL);
  3599. }
  3600. if (unlikely(work->block)) {
  3601. // Force moving on to this new block :)
  3602. struct work fakework;
  3603. memset(&fakework, 0, sizeof(fakework));
  3604. fakework.pool = work->pool;
  3605. // Copy block version, bits, and time from share
  3606. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3607. memcpy(&fakework.data[68], &work->data[68], 8);
  3608. // Set prevblock to winning hash (swap32'd)
  3609. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3610. test_work_current(&fakework);
  3611. }
  3612. } else {
  3613. mutex_lock(&stats_lock);
  3614. cgpu->rejected++;
  3615. total_rejected++;
  3616. pool->rejected++;
  3617. cgpu->diff_rejected += work->work_difficulty;
  3618. total_diff_rejected += work->work_difficulty;
  3619. pool->diff_rejected += work->work_difficulty;
  3620. pool->seq_rejects++;
  3621. mutex_unlock(&stats_lock);
  3622. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3623. if (!QUIET) {
  3624. char where[20];
  3625. char disposition[36] = "reject";
  3626. char reason[32];
  3627. strcpy(reason, "");
  3628. if (total_pools > 1)
  3629. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3630. else
  3631. strcpy(where, "");
  3632. if (!json_is_string(res))
  3633. res = json_object_get(val, "reject-reason");
  3634. if (res) {
  3635. const char *reasontmp = json_string_value(res);
  3636. size_t reasonLen = strlen(reasontmp);
  3637. if (reasonLen > 28)
  3638. reasonLen = 28;
  3639. reason[0] = ' '; reason[1] = '(';
  3640. memcpy(2 + reason, reasontmp, reasonLen);
  3641. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3642. memcpy(disposition + 7, reasontmp, reasonLen);
  3643. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3644. } else if (work->stratum && err && json_is_array(err)) {
  3645. json_t *reason_val = json_array_get(err, 1);
  3646. char *reason_str;
  3647. if (reason_val && json_is_string(reason_val)) {
  3648. reason_str = (char *)json_string_value(reason_val);
  3649. snprintf(reason, 31, " (%s)", reason_str);
  3650. }
  3651. }
  3652. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3653. sharelog(disposition, work);
  3654. }
  3655. /* Once we have more than a nominal amount of sequential rejects,
  3656. * at least 10 and more than 3 mins at the current utility,
  3657. * disable the pool because some pool error is likely to have
  3658. * ensued. Do not do this if we know the share just happened to
  3659. * be stale due to networking delays.
  3660. */
  3661. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3662. double utility = total_accepted / total_secs * 60;
  3663. if (pool->seq_rejects > utility * 3) {
  3664. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3665. pool->pool_no, pool->seq_rejects);
  3666. reject_pool(pool);
  3667. if (pool == current_pool())
  3668. switch_pools(NULL);
  3669. pool->seq_rejects = 0;
  3670. }
  3671. }
  3672. }
  3673. maybe_local_submit(work);
  3674. }
  3675. static char *submit_upstream_work_request(struct work *work)
  3676. {
  3677. char *hexstr = NULL;
  3678. char *s, *sd;
  3679. struct pool *pool = work->pool;
  3680. if (work->tmpl) {
  3681. json_t *req;
  3682. unsigned char data[80];
  3683. swap32yes(data, work->data, 80 / 4);
  3684. #if BLKMAKER_VERSION > 3
  3685. if (work->do_foreign_submit)
  3686. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3687. else
  3688. #endif
  3689. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3690. s = json_dumps(req, 0);
  3691. json_decref(req);
  3692. sd = malloc(161);
  3693. bin2hex(sd, data, 80);
  3694. } else {
  3695. /* build hex string */
  3696. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3697. bin2hex(hexstr, work->data, sizeof(work->data));
  3698. /* build JSON-RPC request */
  3699. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3700. s = realloc_strcat(s, hexstr);
  3701. s = realloc_strcat(s, "\" ], \"id\":1}");
  3702. free(hexstr);
  3703. sd = s;
  3704. }
  3705. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3706. if (work->tmpl)
  3707. free(sd);
  3708. else
  3709. s = realloc_strcat(s, "\n");
  3710. return s;
  3711. }
  3712. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3713. json_t *res, *err;
  3714. bool rc = false;
  3715. int thr_id = work->thr_id;
  3716. struct pool *pool = work->pool;
  3717. struct timeval tv_submit_reply;
  3718. time_t ts_submit_reply;
  3719. char worktime[200] = "";
  3720. cgtime(&tv_submit_reply);
  3721. ts_submit_reply = time(NULL);
  3722. if (unlikely(!val)) {
  3723. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3724. if (!pool_tset(pool, &pool->submit_fail)) {
  3725. total_ro++;
  3726. pool->remotefail_occasions++;
  3727. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3728. }
  3729. goto out;
  3730. } else if (pool_tclear(pool, &pool->submit_fail))
  3731. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3732. res = json_object_get(val, "result");
  3733. err = json_object_get(val, "error");
  3734. if (!QUIET) {
  3735. if (opt_worktime) {
  3736. char workclone[20];
  3737. struct tm _tm;
  3738. struct tm *tm, tm_getwork, tm_submit_reply;
  3739. tm = &_tm;
  3740. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3741. (struct timeval *)&(work->tv_getwork));
  3742. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3743. (struct timeval *)&(work->tv_getwork_reply));
  3744. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3745. (struct timeval *)&(work->tv_work_start));
  3746. double work_to_submit = tdiff(ptv_submit,
  3747. (struct timeval *)&(work->tv_work_found));
  3748. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3749. int diffplaces = 3;
  3750. localtime_r(&work->ts_getwork, tm);
  3751. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3752. localtime_r(&ts_submit_reply, tm);
  3753. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3754. if (work->clone) {
  3755. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3756. tdiff((struct timeval *)&(work->tv_cloned),
  3757. (struct timeval *)&(work->tv_getwork_reply)));
  3758. }
  3759. else
  3760. strcpy(workclone, "O");
  3761. if (work->work_difficulty < 1)
  3762. diffplaces = 6;
  3763. snprintf(worktime, sizeof(worktime),
  3764. " <-%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",
  3765. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3766. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3767. work->getwork_mode, diffplaces, work->work_difficulty,
  3768. tm_getwork.tm_hour, tm_getwork.tm_min,
  3769. tm_getwork.tm_sec, getwork_time, workclone,
  3770. getwork_to_work, work_time, work_to_submit, submit_time,
  3771. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3772. tm_submit_reply.tm_sec);
  3773. }
  3774. }
  3775. share_result(val, res, err, work, resubmit, worktime);
  3776. if (!opt_realquiet)
  3777. print_status(thr_id);
  3778. if (!want_per_device_stats) {
  3779. char logline[256];
  3780. struct cgpu_info *cgpu;
  3781. cgpu = get_thr_cgpu(thr_id);
  3782. get_statline(logline, sizeof(logline), cgpu);
  3783. applog(LOG_INFO, "%s", logline);
  3784. }
  3785. json_decref(val);
  3786. rc = true;
  3787. out:
  3788. return rc;
  3789. }
  3790. /* Specifies whether we can use this pool for work or not. */
  3791. static bool pool_unworkable(struct pool *pool)
  3792. {
  3793. if (pool->idle)
  3794. return true;
  3795. if (pool->enabled != POOL_ENABLED)
  3796. return true;
  3797. if (pool->has_stratum && !pool->stratum_active)
  3798. return true;
  3799. return false;
  3800. }
  3801. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3802. * rolling average per 10 minutes and if pools start getting more, it biases
  3803. * away from them to distribute work evenly. The share count is reset to the
  3804. * rolling average every 10 minutes to not send all work to one pool after it
  3805. * has been disabled/out for an extended period. */
  3806. static struct pool *select_balanced(struct pool *cp)
  3807. {
  3808. int i, lowest = cp->shares;
  3809. struct pool *ret = cp;
  3810. for (i = 0; i < total_pools; i++) {
  3811. struct pool *pool = pools[i];
  3812. if (pool_unworkable(pool))
  3813. continue;
  3814. if (pool->shares < lowest) {
  3815. lowest = pool->shares;
  3816. ret = pool;
  3817. }
  3818. }
  3819. ret->shares++;
  3820. return ret;
  3821. }
  3822. static bool pool_active(struct pool *, bool pinging);
  3823. static void pool_died(struct pool *);
  3824. static struct pool *priority_pool(int choice);
  3825. static bool pool_unusable(struct pool *pool);
  3826. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3827. * it has any quota left. */
  3828. static inline struct pool *select_pool(bool lagging)
  3829. {
  3830. static int rotating_pool = 0;
  3831. struct pool *pool, *cp;
  3832. bool avail = false;
  3833. int tested, i;
  3834. cp = current_pool();
  3835. retry:
  3836. if (pool_strategy == POOL_BALANCE) {
  3837. pool = select_balanced(cp);
  3838. goto out;
  3839. }
  3840. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3841. pool = cp;
  3842. goto out;
  3843. } else
  3844. pool = NULL;
  3845. for (i = 0; i < total_pools; i++) {
  3846. struct pool *tp = pools[i];
  3847. if (tp->quota_used < tp->quota_gcd) {
  3848. avail = true;
  3849. break;
  3850. }
  3851. }
  3852. /* There are no pools with quota, so reset them. */
  3853. if (!avail) {
  3854. for (i = 0; i < total_pools; i++)
  3855. pools[i]->quota_used = 0;
  3856. if (++rotating_pool >= total_pools)
  3857. rotating_pool = 0;
  3858. }
  3859. /* Try to find the first pool in the rotation that is usable */
  3860. tested = 0;
  3861. while (!pool && tested++ < total_pools) {
  3862. pool = pools[rotating_pool];
  3863. if (pool->quota_used++ < pool->quota_gcd) {
  3864. if (!pool_unworkable(pool))
  3865. break;
  3866. /* Failover-only flag for load-balance means distribute
  3867. * unused quota to priority pool 0. */
  3868. if (opt_fail_only)
  3869. priority_pool(0)->quota_used--;
  3870. }
  3871. pool = NULL;
  3872. if (++rotating_pool >= total_pools)
  3873. rotating_pool = 0;
  3874. }
  3875. /* If there are no alive pools with quota, choose according to
  3876. * priority. */
  3877. if (!pool) {
  3878. for (i = 0; i < total_pools; i++) {
  3879. struct pool *tp = priority_pool(i);
  3880. if (!pool_unusable(tp)) {
  3881. pool = tp;
  3882. break;
  3883. }
  3884. }
  3885. }
  3886. /* If still nothing is usable, use the current pool */
  3887. if (!pool)
  3888. pool = cp;
  3889. out:
  3890. if (cp != pool)
  3891. {
  3892. if (!pool_active(pool, false))
  3893. {
  3894. pool_died(pool);
  3895. goto retry;
  3896. }
  3897. pool_tclear(pool, &pool->idle);
  3898. }
  3899. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  3900. return pool;
  3901. }
  3902. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  3903. static const uint64_t diffone = 0xFFFF000000000000ull;
  3904. static double target_diff(const unsigned char *target)
  3905. {
  3906. double targ = 0;
  3907. signed int i;
  3908. for (i = 31; i >= 0; --i)
  3909. targ = (targ * 0x100) + target[i];
  3910. return DIFFEXACTONE / (targ ?: 1);
  3911. }
  3912. /*
  3913. * Calculate the work share difficulty
  3914. */
  3915. static void calc_diff(struct work *work, int known)
  3916. {
  3917. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  3918. double difficulty;
  3919. if (!known) {
  3920. work->work_difficulty = target_diff(work->target);
  3921. } else
  3922. work->work_difficulty = known;
  3923. difficulty = work->work_difficulty;
  3924. pool_stats->last_diff = difficulty;
  3925. suffix_string((uint64_t)difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  3926. if (difficulty == pool_stats->min_diff)
  3927. pool_stats->min_diff_count++;
  3928. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  3929. pool_stats->min_diff = difficulty;
  3930. pool_stats->min_diff_count = 1;
  3931. }
  3932. if (difficulty == pool_stats->max_diff)
  3933. pool_stats->max_diff_count++;
  3934. else if (difficulty > pool_stats->max_diff) {
  3935. pool_stats->max_diff = difficulty;
  3936. pool_stats->max_diff_count = 1;
  3937. }
  3938. }
  3939. static void get_benchmark_work(struct work *work)
  3940. {
  3941. // Use a random work block pulled from a pool
  3942. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  3943. size_t bench_size = sizeof(*work);
  3944. size_t work_size = sizeof(bench_block);
  3945. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  3946. memset(work, 0, sizeof(*work));
  3947. memcpy(work, &bench_block, min_size);
  3948. work->mandatory = true;
  3949. work->pool = pools[0];
  3950. cgtime(&work->tv_getwork);
  3951. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  3952. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  3953. calc_diff(work, 0);
  3954. }
  3955. static void wake_gws(void);
  3956. static void update_last_work(struct work *work)
  3957. {
  3958. if (!work->tmpl)
  3959. // Only save GBT jobs, since rollntime isn't coordinated well yet
  3960. return;
  3961. struct pool *pool = work->pool;
  3962. mutex_lock(&pool->last_work_lock);
  3963. if (pool->last_work_copy)
  3964. free_work(pool->last_work_copy);
  3965. pool->last_work_copy = copy_work(work);
  3966. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  3967. mutex_unlock(&pool->last_work_lock);
  3968. }
  3969. static
  3970. void gbt_req_target(json_t *req)
  3971. {
  3972. json_t *j;
  3973. json_t *n;
  3974. if (!request_target_str)
  3975. return;
  3976. j = json_object_get(req, "params");
  3977. if (!j)
  3978. {
  3979. n = json_array();
  3980. if (!n)
  3981. return;
  3982. if (json_object_set_new(req, "params", n))
  3983. goto erradd;
  3984. j = n;
  3985. }
  3986. n = json_array_get(j, 0);
  3987. if (!n)
  3988. {
  3989. n = json_object();
  3990. if (!n)
  3991. return;
  3992. if (json_array_append_new(j, n))
  3993. goto erradd;
  3994. }
  3995. j = n;
  3996. n = json_string(request_target_str);
  3997. if (!n)
  3998. return;
  3999. if (json_object_set_new(j, "target", n))
  4000. goto erradd;
  4001. return;
  4002. erradd:
  4003. json_decref(n);
  4004. }
  4005. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4006. {
  4007. char *rpc_req;
  4008. clean_work(work);
  4009. switch (proto) {
  4010. case PLP_GETWORK:
  4011. work->getwork_mode = GETWORK_MODE_POOL;
  4012. return strdup(getwork_req);
  4013. case PLP_GETBLOCKTEMPLATE:
  4014. work->getwork_mode = GETWORK_MODE_GBT;
  4015. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4016. if (!work->tmpl_refcount)
  4017. return NULL;
  4018. work->tmpl = blktmpl_create();
  4019. if (!work->tmpl)
  4020. goto gbtfail2;
  4021. *work->tmpl_refcount = 1;
  4022. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4023. if (!caps)
  4024. goto gbtfail;
  4025. caps |= GBT_LONGPOLL;
  4026. #if BLKMAKER_VERSION > 1
  4027. if (opt_coinbase_script.sz)
  4028. caps |= GBT_CBVALUE;
  4029. #endif
  4030. json_t *req = blktmpl_request_jansson(caps, lpid);
  4031. if (!req)
  4032. goto gbtfail;
  4033. if (probe)
  4034. gbt_req_target(req);
  4035. rpc_req = json_dumps(req, 0);
  4036. if (!rpc_req)
  4037. goto gbtfail;
  4038. json_decref(req);
  4039. return rpc_req;
  4040. default:
  4041. return NULL;
  4042. }
  4043. return NULL;
  4044. gbtfail:
  4045. blktmpl_free(work->tmpl);
  4046. work->tmpl = NULL;
  4047. gbtfail2:
  4048. free(work->tmpl_refcount);
  4049. work->tmpl_refcount = NULL;
  4050. return NULL;
  4051. }
  4052. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4053. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4054. static const char *pool_protocol_name(enum pool_protocol proto)
  4055. {
  4056. switch (proto) {
  4057. case PLP_GETBLOCKTEMPLATE:
  4058. return "getblocktemplate";
  4059. case PLP_GETWORK:
  4060. return "getwork";
  4061. default:
  4062. return "UNKNOWN";
  4063. }
  4064. }
  4065. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4066. {
  4067. switch (proto) {
  4068. case PLP_GETBLOCKTEMPLATE:
  4069. if (want_getwork)
  4070. return PLP_GETWORK;
  4071. default:
  4072. return PLP_NONE;
  4073. }
  4074. }
  4075. static bool get_upstream_work(struct work *work, CURL *curl)
  4076. {
  4077. struct pool *pool = work->pool;
  4078. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4079. struct timeval tv_elapsed;
  4080. json_t *val = NULL;
  4081. bool rc = false;
  4082. char *url;
  4083. enum pool_protocol proto;
  4084. char *rpc_req;
  4085. if (pool->proto == PLP_NONE)
  4086. pool->proto = PLP_GETBLOCKTEMPLATE;
  4087. tryagain:
  4088. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4089. work->pool = pool;
  4090. if (!rpc_req)
  4091. return false;
  4092. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4093. url = pool->rpc_url;
  4094. cgtime(&work->tv_getwork);
  4095. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4096. false, &work->rolltime, pool, false);
  4097. pool_stats->getwork_attempts++;
  4098. free(rpc_req);
  4099. if (likely(val)) {
  4100. rc = work_decode(pool, work, val);
  4101. if (unlikely(!rc))
  4102. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4103. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4104. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4105. pool->proto = proto;
  4106. goto tryagain;
  4107. } else
  4108. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4109. cgtime(&work->tv_getwork_reply);
  4110. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4111. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4112. pool_stats->getwork_wait_rolling /= 1.63;
  4113. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4114. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4115. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4116. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4117. }
  4118. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4119. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4120. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4121. }
  4122. pool_stats->getwork_calls++;
  4123. work->pool = pool;
  4124. work->longpoll = false;
  4125. calc_diff(work, 0);
  4126. total_getworks++;
  4127. pool->getwork_requested++;
  4128. if (rc)
  4129. update_last_work(work);
  4130. if (likely(val))
  4131. json_decref(val);
  4132. return rc;
  4133. }
  4134. #ifdef HAVE_CURSES
  4135. static void disable_curses(void)
  4136. {
  4137. if (curses_active_locked()) {
  4138. use_curses = false;
  4139. curses_active = false;
  4140. leaveok(logwin, false);
  4141. leaveok(statuswin, false);
  4142. leaveok(mainwin, false);
  4143. nocbreak();
  4144. echo();
  4145. delwin(logwin);
  4146. delwin(statuswin);
  4147. delwin(mainwin);
  4148. endwin();
  4149. #ifdef WIN32
  4150. // Move the cursor to after curses output.
  4151. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4152. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4153. COORD coord;
  4154. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4155. coord.X = 0;
  4156. coord.Y = csbi.dwSize.Y - 1;
  4157. SetConsoleCursorPosition(hout, coord);
  4158. }
  4159. #endif
  4160. unlock_curses();
  4161. }
  4162. }
  4163. #endif
  4164. static void __kill_work(void)
  4165. {
  4166. struct cgpu_info *cgpu;
  4167. struct thr_info *thr;
  4168. int i;
  4169. if (!successful_connect)
  4170. return;
  4171. applog(LOG_INFO, "Received kill message");
  4172. shutting_down = true;
  4173. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4174. notifier_wake(submit_waiting_notifier);
  4175. #ifdef USE_LIBMICROHTTPD
  4176. httpsrv_stop();
  4177. #endif
  4178. applog(LOG_DEBUG, "Killing off watchpool thread");
  4179. /* Kill the watchpool thread */
  4180. thr = &control_thr[watchpool_thr_id];
  4181. thr_info_cancel(thr);
  4182. applog(LOG_DEBUG, "Killing off watchdog thread");
  4183. /* Kill the watchdog thread */
  4184. thr = &control_thr[watchdog_thr_id];
  4185. thr_info_cancel(thr);
  4186. applog(LOG_DEBUG, "Shutting down mining threads");
  4187. for (i = 0; i < mining_threads; i++) {
  4188. thr = get_thread(i);
  4189. if (!thr)
  4190. continue;
  4191. cgpu = thr->cgpu;
  4192. if (!cgpu)
  4193. continue;
  4194. if (!cgpu->threads)
  4195. continue;
  4196. cgpu->shutdown = true;
  4197. thr->work_restart = true;
  4198. notifier_wake(thr->notifier);
  4199. notifier_wake(thr->work_restart_notifier);
  4200. }
  4201. sleep(1);
  4202. applog(LOG_DEBUG, "Killing off mining threads");
  4203. /* Kill the mining threads*/
  4204. for (i = 0; i < mining_threads; i++) {
  4205. thr = get_thread(i);
  4206. if (!thr)
  4207. continue;
  4208. cgpu = thr->cgpu;
  4209. if (cgpu->threads)
  4210. {
  4211. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4212. thr_info_cancel(thr);
  4213. }
  4214. cgpu->status = LIFE_DEAD2;
  4215. }
  4216. /* Stop the others */
  4217. applog(LOG_DEBUG, "Killing off API thread");
  4218. thr = &control_thr[api_thr_id];
  4219. thr_info_cancel(thr);
  4220. }
  4221. /* This should be the common exit path */
  4222. void kill_work(void)
  4223. {
  4224. __kill_work();
  4225. quit(0, "Shutdown signal received.");
  4226. }
  4227. static
  4228. #ifdef WIN32
  4229. #ifndef _WIN64
  4230. const
  4231. #endif
  4232. #endif
  4233. char **initial_args;
  4234. void _bfg_clean_up(bool);
  4235. void app_restart(void)
  4236. {
  4237. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4238. __kill_work();
  4239. _bfg_clean_up(true);
  4240. #if defined(unix) || defined(__APPLE__)
  4241. if (forkpid > 0) {
  4242. kill(forkpid, SIGTERM);
  4243. forkpid = 0;
  4244. }
  4245. #endif
  4246. execv(initial_args[0], initial_args);
  4247. applog(LOG_WARNING, "Failed to restart application");
  4248. }
  4249. static void sighandler(int __maybe_unused sig)
  4250. {
  4251. /* Restore signal handlers so we can still quit if kill_work fails */
  4252. sigaction(SIGTERM, &termhandler, NULL);
  4253. sigaction(SIGINT, &inthandler, NULL);
  4254. kill_work();
  4255. }
  4256. static void start_longpoll(void);
  4257. static void stop_longpoll(void);
  4258. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4259. * this pool. */
  4260. static void recruit_curl(struct pool *pool)
  4261. {
  4262. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4263. if (unlikely(!ce))
  4264. quit(1, "Failed to calloc in recruit_curl");
  4265. ce->curl = curl_easy_init();
  4266. if (unlikely(!ce->curl))
  4267. quit(1, "Failed to init in recruit_curl");
  4268. LL_PREPEND(pool->curllist, ce);
  4269. pool->curls++;
  4270. }
  4271. /* Grab an available curl if there is one. If not, then recruit extra curls
  4272. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4273. * and there are already 5 curls in circulation. Limit total number to the
  4274. * number of mining threads per pool as well to prevent blasting a pool during
  4275. * network delays/outages. */
  4276. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4277. {
  4278. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4279. bool recruited = false;
  4280. struct curl_ent *ce;
  4281. mutex_lock(&pool->pool_lock);
  4282. retry:
  4283. if (!pool->curls) {
  4284. recruit_curl(pool);
  4285. recruited = true;
  4286. } else if (!pool->curllist) {
  4287. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4288. if (!blocking) {
  4289. mutex_unlock(&pool->pool_lock);
  4290. return NULL;
  4291. }
  4292. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4293. goto retry;
  4294. } else {
  4295. recruit_curl(pool);
  4296. recruited = true;
  4297. }
  4298. }
  4299. ce = pool->curllist;
  4300. LL_DELETE(pool->curllist, ce);
  4301. mutex_unlock(&pool->pool_lock);
  4302. if (recruited)
  4303. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4304. return ce;
  4305. }
  4306. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4307. {
  4308. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4309. }
  4310. __maybe_unused
  4311. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4312. {
  4313. return pop_curl_entry3(pool, 1);
  4314. }
  4315. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4316. {
  4317. mutex_lock(&pool->pool_lock);
  4318. if (!ce || !ce->curl)
  4319. quithere(1, "Attempted to add NULL");
  4320. LL_PREPEND(pool->curllist, ce);
  4321. cgtime(&ce->tv);
  4322. pthread_cond_broadcast(&pool->cr_cond);
  4323. mutex_unlock(&pool->pool_lock);
  4324. }
  4325. bool stale_work(struct work *work, bool share);
  4326. static inline bool should_roll(struct work *work)
  4327. {
  4328. struct timeval now;
  4329. time_t expiry;
  4330. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4331. return false;
  4332. if (stale_work(work, false))
  4333. return false;
  4334. if (work->rolltime > opt_scantime)
  4335. expiry = work->rolltime;
  4336. else
  4337. expiry = opt_scantime;
  4338. expiry = expiry * 2 / 3;
  4339. /* We shouldn't roll if we're unlikely to get one shares' duration
  4340. * work out of doing so */
  4341. cgtime(&now);
  4342. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4343. return false;
  4344. return true;
  4345. }
  4346. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4347. * reject blocks as invalid. */
  4348. static inline bool can_roll(struct work *work)
  4349. {
  4350. if (work->stratum)
  4351. return false;
  4352. if (!(work->pool && !work->clone))
  4353. return false;
  4354. if (work->tmpl) {
  4355. if (stale_work(work, false))
  4356. return false;
  4357. return blkmk_work_left(work->tmpl);
  4358. }
  4359. return (work->rolltime &&
  4360. work->rolls < 7000 && !stale_work(work, false));
  4361. }
  4362. static void roll_work(struct work *work)
  4363. {
  4364. if (work->tmpl) {
  4365. struct timeval tv_now;
  4366. cgtime(&tv_now);
  4367. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4368. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4369. swap32yes(work->data, work->data, 80 / 4);
  4370. calc_midstate(work);
  4371. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4372. } else {
  4373. uint32_t *work_ntime;
  4374. uint32_t ntime;
  4375. work_ntime = (uint32_t *)(work->data + 68);
  4376. ntime = be32toh(*work_ntime);
  4377. ntime++;
  4378. *work_ntime = htobe32(ntime);
  4379. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4380. }
  4381. local_work++;
  4382. work->rolls++;
  4383. work->blk.nonce = 0;
  4384. /* This is now a different work item so it needs a different ID for the
  4385. * hashtable */
  4386. work->id = total_work++;
  4387. }
  4388. /* Duplicates any dynamically allocated arrays within the work struct to
  4389. * prevent a copied work struct from freeing ram belonging to another struct */
  4390. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4391. {
  4392. int id = work->id;
  4393. clean_work(work);
  4394. memcpy(work, base_work, sizeof(struct work));
  4395. /* Keep the unique new id assigned during make_work to prevent copied
  4396. * work from having the same id. */
  4397. work->id = id;
  4398. if (base_work->job_id)
  4399. work->job_id = strdup(base_work->job_id);
  4400. if (base_work->nonce1)
  4401. work->nonce1 = strdup(base_work->nonce1);
  4402. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4403. if (base_work->tmpl) {
  4404. struct pool *pool = work->pool;
  4405. mutex_lock(&pool->pool_lock);
  4406. ++*work->tmpl_refcount;
  4407. mutex_unlock(&pool->pool_lock);
  4408. }
  4409. if (noffset)
  4410. {
  4411. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4412. uint32_t ntime = be32toh(*work_ntime);
  4413. ntime += noffset;
  4414. *work_ntime = htobe32(ntime);
  4415. }
  4416. }
  4417. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4418. * for all dynamically allocated arrays within the struct */
  4419. struct work *copy_work(const struct work *base_work)
  4420. {
  4421. struct work *work = make_work();
  4422. _copy_work(work, base_work, 0);
  4423. return work;
  4424. }
  4425. void __copy_work(struct work *work, const struct work *base_work)
  4426. {
  4427. _copy_work(work, base_work, 0);
  4428. }
  4429. static struct work *make_clone(struct work *work)
  4430. {
  4431. struct work *work_clone = copy_work(work);
  4432. work_clone->clone = true;
  4433. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4434. work_clone->longpoll = false;
  4435. work_clone->mandatory = false;
  4436. /* Make cloned work appear slightly older to bias towards keeping the
  4437. * master work item which can be further rolled */
  4438. work_clone->tv_staged.tv_sec -= 1;
  4439. return work_clone;
  4440. }
  4441. static void stage_work(struct work *work);
  4442. static bool clone_available(void)
  4443. {
  4444. struct work *work_clone = NULL, *work, *tmp;
  4445. bool cloned = false;
  4446. mutex_lock(stgd_lock);
  4447. if (!staged_rollable)
  4448. goto out_unlock;
  4449. HASH_ITER(hh, staged_work, work, tmp) {
  4450. if (can_roll(work) && should_roll(work)) {
  4451. roll_work(work);
  4452. work_clone = make_clone(work);
  4453. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4454. roll_work(work);
  4455. cloned = true;
  4456. break;
  4457. }
  4458. }
  4459. out_unlock:
  4460. mutex_unlock(stgd_lock);
  4461. if (cloned) {
  4462. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4463. stage_work(work_clone);
  4464. }
  4465. return cloned;
  4466. }
  4467. static void pool_died(struct pool *pool)
  4468. {
  4469. if (!pool_tset(pool, &pool->idle)) {
  4470. cgtime(&pool->tv_idle);
  4471. if (pool == current_pool()) {
  4472. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4473. switch_pools(NULL);
  4474. } else
  4475. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4476. }
  4477. }
  4478. bool stale_work(struct work *work, bool share)
  4479. {
  4480. unsigned work_expiry;
  4481. struct pool *pool;
  4482. uint32_t block_id;
  4483. unsigned getwork_delay;
  4484. if (opt_benchmark)
  4485. return false;
  4486. block_id = ((uint32_t*)work->data)[1];
  4487. pool = work->pool;
  4488. /* Technically the rolltime should be correct but some pools
  4489. * advertise a broken expire= that is lower than a meaningful
  4490. * scantime */
  4491. if (work->rolltime >= opt_scantime || work->tmpl)
  4492. work_expiry = work->rolltime;
  4493. else
  4494. work_expiry = opt_expiry;
  4495. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4496. if (work_expiry > max_expiry)
  4497. work_expiry = max_expiry;
  4498. if (share) {
  4499. /* If the share isn't on this pool's latest block, it's stale */
  4500. if (pool->block_id && pool->block_id != block_id)
  4501. {
  4502. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4503. return true;
  4504. }
  4505. /* If the pool doesn't want old shares, then any found in work before
  4506. * the most recent longpoll is stale */
  4507. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4508. {
  4509. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4510. return true;
  4511. }
  4512. } else {
  4513. /* If this work isn't for the latest Bitcoin block, it's stale */
  4514. /* But only care about the current pool if failover-only */
  4515. if (enabled_pools <= 1 || opt_fail_only) {
  4516. if (pool->block_id && block_id != pool->block_id)
  4517. {
  4518. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4519. return true;
  4520. }
  4521. } else {
  4522. if (block_id != current_block_id)
  4523. {
  4524. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4525. return true;
  4526. }
  4527. }
  4528. /* If the pool has asked us to restart since this work, it's stale */
  4529. if (work->work_restart_id != pool->work_restart_id)
  4530. {
  4531. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4532. return true;
  4533. }
  4534. if (pool->has_stratum && work->job_id) {
  4535. bool same_job;
  4536. if (!pool->stratum_active || !pool->stratum_notify) {
  4537. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4538. return true;
  4539. }
  4540. same_job = true;
  4541. cg_rlock(&pool->data_lock);
  4542. if (strcmp(work->job_id, pool->swork.job_id))
  4543. same_job = false;
  4544. cg_runlock(&pool->data_lock);
  4545. if (!same_job) {
  4546. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4547. return true;
  4548. }
  4549. }
  4550. /* Factor in the average getwork delay of this pool, rounding it up to
  4551. * the nearest second */
  4552. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4553. if (unlikely(work_expiry <= getwork_delay + 5))
  4554. work_expiry = 5;
  4555. else
  4556. work_expiry -= getwork_delay;
  4557. }
  4558. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4559. if (elapsed_since_staged > work_expiry) {
  4560. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4561. return true;
  4562. }
  4563. /* If the user only wants strict failover, any work from a pool other than
  4564. * the current one is always considered stale */
  4565. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4566. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4567. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4568. return true;
  4569. }
  4570. return false;
  4571. }
  4572. static uint64_t share_diff(const struct work *work)
  4573. {
  4574. uint64_t ret;
  4575. bool new_best = false;
  4576. ret = target_diff(work->hash);
  4577. cg_wlock(&control_lock);
  4578. if (unlikely(ret > best_diff)) {
  4579. new_best = true;
  4580. best_diff = ret;
  4581. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4582. }
  4583. if (unlikely(ret > work->pool->best_diff))
  4584. work->pool->best_diff = ret;
  4585. cg_wunlock(&control_lock);
  4586. if (unlikely(new_best))
  4587. applog(LOG_INFO, "New best share: %s", best_share);
  4588. return ret;
  4589. }
  4590. static void regen_hash(struct work *work)
  4591. {
  4592. hash_data(work->hash, work->data);
  4593. }
  4594. static void rebuild_hash(struct work *work)
  4595. {
  4596. if (opt_scrypt)
  4597. scrypt_regenhash(work);
  4598. else
  4599. regen_hash(work);
  4600. work->share_diff = share_diff(work);
  4601. if (unlikely(work->share_diff >= current_diff)) {
  4602. work->block = true;
  4603. work->pool->solved++;
  4604. found_blocks++;
  4605. work->mandatory = true;
  4606. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4607. }
  4608. }
  4609. static void submit_discard_share2(const char *reason, struct work *work)
  4610. {
  4611. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4612. sharelog(reason, work);
  4613. mutex_lock(&stats_lock);
  4614. ++total_stale;
  4615. ++cgpu->stale;
  4616. ++(work->pool->stale_shares);
  4617. total_diff_stale += work->work_difficulty;
  4618. cgpu->diff_stale += work->work_difficulty;
  4619. work->pool->diff_stale += work->work_difficulty;
  4620. mutex_unlock(&stats_lock);
  4621. }
  4622. static void submit_discard_share(struct work *work)
  4623. {
  4624. submit_discard_share2("discard", work);
  4625. }
  4626. struct submit_work_state {
  4627. struct work *work;
  4628. bool resubmit;
  4629. struct curl_ent *ce;
  4630. int failures;
  4631. struct timeval tv_staleexpire;
  4632. char *s;
  4633. struct timeval tv_submit;
  4634. struct submit_work_state *next;
  4635. };
  4636. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4637. {
  4638. long *p_timeout_us = userp;
  4639. const long max_ms = LONG_MAX / 1000;
  4640. if (max_ms < timeout_ms)
  4641. timeout_ms = max_ms;
  4642. *p_timeout_us = timeout_ms * 1000;
  4643. return 0;
  4644. }
  4645. static void sws_has_ce(struct submit_work_state *sws)
  4646. {
  4647. struct pool *pool = sws->work->pool;
  4648. sws->s = submit_upstream_work_request(sws->work);
  4649. cgtime(&sws->tv_submit);
  4650. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4651. }
  4652. static struct submit_work_state *begin_submission(struct work *work)
  4653. {
  4654. struct pool *pool;
  4655. struct submit_work_state *sws = NULL;
  4656. pool = work->pool;
  4657. sws = malloc(sizeof(*sws));
  4658. *sws = (struct submit_work_state){
  4659. .work = work,
  4660. };
  4661. rebuild_hash(work);
  4662. if (stale_work(work, true)) {
  4663. work->stale = true;
  4664. if (opt_submit_stale)
  4665. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4666. else if (pool->submit_old)
  4667. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4668. else {
  4669. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4670. submit_discard_share(work);
  4671. goto out;
  4672. }
  4673. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4674. }
  4675. if (work->stratum) {
  4676. char *s;
  4677. s = malloc(1024);
  4678. sws->s = s;
  4679. } else {
  4680. /* submit solution to bitcoin via JSON-RPC */
  4681. sws->ce = pop_curl_entry2(pool, false);
  4682. if (sws->ce) {
  4683. sws_has_ce(sws);
  4684. } else {
  4685. sws->next = pool->sws_waiting_on_curl;
  4686. pool->sws_waiting_on_curl = sws;
  4687. if (sws->next)
  4688. applog(LOG_DEBUG, "submit_thread queuing submission");
  4689. else
  4690. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4691. }
  4692. }
  4693. return sws;
  4694. out:
  4695. free(sws);
  4696. return NULL;
  4697. }
  4698. static bool retry_submission(struct submit_work_state *sws)
  4699. {
  4700. struct work *work = sws->work;
  4701. struct pool *pool = work->pool;
  4702. sws->resubmit = true;
  4703. if ((!work->stale) && stale_work(work, true)) {
  4704. work->stale = true;
  4705. if (opt_submit_stale)
  4706. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4707. else if (pool->submit_old)
  4708. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4709. else {
  4710. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4711. submit_discard_share(work);
  4712. return false;
  4713. }
  4714. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4715. }
  4716. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4717. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4718. submit_discard_share(work);
  4719. return false;
  4720. }
  4721. else if (work->stale) {
  4722. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4723. {
  4724. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4725. submit_discard_share(work);
  4726. return false;
  4727. }
  4728. }
  4729. /* pause, then restart work-request loop */
  4730. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4731. cgtime(&sws->tv_submit);
  4732. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4733. return true;
  4734. }
  4735. static void free_sws(struct submit_work_state *sws)
  4736. {
  4737. free(sws->s);
  4738. free_work(sws->work);
  4739. free(sws);
  4740. }
  4741. static void *submit_work_thread(__maybe_unused void *userdata)
  4742. {
  4743. int wip = 0;
  4744. CURLM *curlm;
  4745. long curlm_timeout_us = -1;
  4746. struct timeval curlm_timer;
  4747. struct submit_work_state *sws, **swsp;
  4748. struct submit_work_state *write_sws = NULL;
  4749. unsigned tsreduce = 0;
  4750. pthread_detach(pthread_self());
  4751. RenameThread("submit_work");
  4752. applog(LOG_DEBUG, "Creating extra submit work thread");
  4753. curlm = curl_multi_init();
  4754. curlm_timeout_us = -1;
  4755. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4756. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4757. fd_set rfds, wfds, efds;
  4758. int maxfd;
  4759. struct timeval tv_timeout, tv_now;
  4760. int n;
  4761. CURLMsg *cm;
  4762. FD_ZERO(&rfds);
  4763. while (1) {
  4764. mutex_lock(&submitting_lock);
  4765. total_submitting -= tsreduce;
  4766. tsreduce = 0;
  4767. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4768. notifier_read(submit_waiting_notifier);
  4769. }
  4770. // Receive any new submissions
  4771. while (submit_waiting) {
  4772. struct work *work = submit_waiting;
  4773. DL_DELETE(submit_waiting, work);
  4774. if ( (sws = begin_submission(work)) ) {
  4775. if (sws->ce)
  4776. curl_multi_add_handle(curlm, sws->ce->curl);
  4777. else if (sws->s) {
  4778. sws->next = write_sws;
  4779. write_sws = sws;
  4780. }
  4781. ++wip;
  4782. }
  4783. else {
  4784. --total_submitting;
  4785. free_work(work);
  4786. }
  4787. }
  4788. if (unlikely(shutting_down && !wip))
  4789. break;
  4790. mutex_unlock(&submitting_lock);
  4791. FD_ZERO(&rfds);
  4792. FD_ZERO(&wfds);
  4793. FD_ZERO(&efds);
  4794. tv_timeout.tv_sec = -1;
  4795. // Setup cURL with select
  4796. // Need to call perform to ensure the timeout gets updated
  4797. curl_multi_perform(curlm, &n);
  4798. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4799. if (curlm_timeout_us >= 0)
  4800. {
  4801. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4802. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4803. }
  4804. // Setup waiting stratum submissions with select
  4805. for (sws = write_sws; sws; sws = sws->next)
  4806. {
  4807. struct pool *pool = sws->work->pool;
  4808. int fd = pool->sock;
  4809. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4810. continue;
  4811. FD_SET(fd, &wfds);
  4812. set_maxfd(&maxfd, fd);
  4813. }
  4814. // Setup "submit waiting" notifier with select
  4815. FD_SET(submit_waiting_notifier[0], &rfds);
  4816. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4817. // Wait for something interesting to happen :)
  4818. cgtime(&tv_now);
  4819. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4820. FD_ZERO(&rfds);
  4821. continue;
  4822. }
  4823. // Handle any stratum ready-to-write results
  4824. for (swsp = &write_sws; (sws = *swsp); ) {
  4825. struct work *work = sws->work;
  4826. struct pool *pool = work->pool;
  4827. int fd = pool->sock;
  4828. bool sessionid_match;
  4829. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4830. next_write_sws:
  4831. // TODO: Check if stale, possibly discard etc
  4832. swsp = &sws->next;
  4833. continue;
  4834. }
  4835. cg_rlock(&pool->data_lock);
  4836. // 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
  4837. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4838. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4839. cg_runlock(&pool->data_lock);
  4840. if (!sessionid_match)
  4841. {
  4842. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4843. submit_discard_share2("disconnect", work);
  4844. ++tsreduce;
  4845. next_write_sws_del:
  4846. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4847. FD_CLR(fd, &wfds);
  4848. // Delete sws for this submission, since we're done with it
  4849. *swsp = sws->next;
  4850. free_sws(sws);
  4851. --wip;
  4852. continue;
  4853. }
  4854. char *s = sws->s;
  4855. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4856. int sshare_id;
  4857. uint32_t nonce;
  4858. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4859. char noncehex[9];
  4860. char ntimehex[9];
  4861. sshare->work = copy_work(work);
  4862. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4863. nonce = *((uint32_t *)(work->data + 76));
  4864. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  4865. bin2hex(ntimehex, (void *)&work->data[68], 4);
  4866. mutex_lock(&sshare_lock);
  4867. /* Give the stratum share a unique id */
  4868. sshare_id =
  4869. sshare->id = swork_id++;
  4870. HASH_ADD_INT(stratum_shares, id, sshare);
  4871. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  4872. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  4873. mutex_unlock(&sshare_lock);
  4874. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  4875. if (likely(stratum_send(pool, s, strlen(s)))) {
  4876. if (pool_tclear(pool, &pool->submit_fail))
  4877. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4878. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  4879. goto next_write_sws_del;
  4880. } else if (!pool_tset(pool, &pool->submit_fail)) {
  4881. // Undo stuff
  4882. mutex_lock(&sshare_lock);
  4883. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  4884. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  4885. if (sshare)
  4886. HASH_DEL(stratum_shares, sshare);
  4887. mutex_unlock(&sshare_lock);
  4888. if (sshare)
  4889. {
  4890. free_work(sshare->work);
  4891. free(sshare);
  4892. }
  4893. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  4894. total_ro++;
  4895. pool->remotefail_occasions++;
  4896. if (!sshare)
  4897. goto next_write_sws_del;
  4898. goto next_write_sws;
  4899. }
  4900. }
  4901. // Handle any cURL activities
  4902. curl_multi_perform(curlm, &n);
  4903. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  4904. if (cm->msg == CURLMSG_DONE)
  4905. {
  4906. bool finished;
  4907. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  4908. curl_multi_remove_handle(curlm, cm->easy_handle);
  4909. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  4910. if (!finished) {
  4911. if (retry_submission(sws))
  4912. curl_multi_add_handle(curlm, sws->ce->curl);
  4913. else
  4914. finished = true;
  4915. }
  4916. if (finished) {
  4917. --wip;
  4918. ++tsreduce;
  4919. struct pool *pool = sws->work->pool;
  4920. if (pool->sws_waiting_on_curl) {
  4921. pool->sws_waiting_on_curl->ce = sws->ce;
  4922. sws_has_ce(pool->sws_waiting_on_curl);
  4923. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  4924. curl_multi_add_handle(curlm, sws->ce->curl);
  4925. } else {
  4926. push_curl_entry(sws->ce, sws->work->pool);
  4927. }
  4928. free_sws(sws);
  4929. }
  4930. }
  4931. }
  4932. }
  4933. assert(!write_sws);
  4934. mutex_unlock(&submitting_lock);
  4935. curl_multi_cleanup(curlm);
  4936. applog(LOG_DEBUG, "submit_work thread exiting");
  4937. return NULL;
  4938. }
  4939. /* Find the pool that currently has the highest priority */
  4940. static struct pool *priority_pool(int choice)
  4941. {
  4942. struct pool *ret = NULL;
  4943. int i;
  4944. for (i = 0; i < total_pools; i++) {
  4945. struct pool *pool = pools[i];
  4946. if (pool->prio == choice) {
  4947. ret = pool;
  4948. break;
  4949. }
  4950. }
  4951. if (unlikely(!ret)) {
  4952. applog(LOG_ERR, "WTF No pool %d found!", choice);
  4953. return pools[choice];
  4954. }
  4955. return ret;
  4956. }
  4957. int prioritize_pools(char *param, int *pid)
  4958. {
  4959. char *ptr, *next;
  4960. int i, pr, prio = 0;
  4961. if (total_pools == 0) {
  4962. return MSG_NOPOOL;
  4963. }
  4964. if (param == NULL || *param == '\0') {
  4965. return MSG_MISPID;
  4966. }
  4967. bool pools_changed[total_pools];
  4968. int new_prio[total_pools];
  4969. for (i = 0; i < total_pools; ++i)
  4970. pools_changed[i] = false;
  4971. next = param;
  4972. while (next && *next) {
  4973. ptr = next;
  4974. next = strchr(ptr, ',');
  4975. if (next)
  4976. *(next++) = '\0';
  4977. i = atoi(ptr);
  4978. if (i < 0 || i >= total_pools) {
  4979. *pid = i;
  4980. return MSG_INVPID;
  4981. }
  4982. if (pools_changed[i]) {
  4983. *pid = i;
  4984. return MSG_DUPPID;
  4985. }
  4986. pools_changed[i] = true;
  4987. new_prio[i] = prio++;
  4988. }
  4989. // Only change them if no errors
  4990. for (i = 0; i < total_pools; i++) {
  4991. if (pools_changed[i])
  4992. pools[i]->prio = new_prio[i];
  4993. }
  4994. // In priority order, cycle through the unchanged pools and append them
  4995. for (pr = 0; pr < total_pools; pr++)
  4996. for (i = 0; i < total_pools; i++) {
  4997. if (!pools_changed[i] && pools[i]->prio == pr) {
  4998. pools[i]->prio = prio++;
  4999. pools_changed[i] = true;
  5000. break;
  5001. }
  5002. }
  5003. if (current_pool()->prio)
  5004. switch_pools(NULL);
  5005. return MSG_POOLPRIO;
  5006. }
  5007. void validate_pool_priorities(void)
  5008. {
  5009. // TODO: this should probably do some sort of logging
  5010. int i, j;
  5011. bool used[total_pools];
  5012. bool valid[total_pools];
  5013. for (i = 0; i < total_pools; i++)
  5014. used[i] = valid[i] = false;
  5015. for (i = 0; i < total_pools; i++) {
  5016. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5017. if (!used[pools[i]->prio]) {
  5018. valid[i] = true;
  5019. used[pools[i]->prio] = true;
  5020. }
  5021. }
  5022. }
  5023. for (i = 0; i < total_pools; i++) {
  5024. if (!valid[i]) {
  5025. for (j = 0; j < total_pools; j++) {
  5026. if (!used[j]) {
  5027. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5028. pools[i]->prio = j;
  5029. used[j] = true;
  5030. break;
  5031. }
  5032. }
  5033. }
  5034. }
  5035. }
  5036. static void clear_pool_work(struct pool *pool);
  5037. /* Specifies whether we can switch to this pool or not. */
  5038. static bool pool_unusable(struct pool *pool)
  5039. {
  5040. if (pool->idle)
  5041. return true;
  5042. if (pool->enabled != POOL_ENABLED)
  5043. return true;
  5044. return false;
  5045. }
  5046. void switch_pools(struct pool *selected)
  5047. {
  5048. struct pool *pool, *last_pool;
  5049. int i, pool_no, next_pool;
  5050. cg_wlock(&control_lock);
  5051. last_pool = currentpool;
  5052. pool_no = currentpool->pool_no;
  5053. /* Switch selected to pool number 0 and move the rest down */
  5054. if (selected) {
  5055. if (selected->prio != 0) {
  5056. for (i = 0; i < total_pools; i++) {
  5057. pool = pools[i];
  5058. if (pool->prio < selected->prio)
  5059. pool->prio++;
  5060. }
  5061. selected->prio = 0;
  5062. }
  5063. }
  5064. switch (pool_strategy) {
  5065. /* All of these set to the master pool */
  5066. case POOL_BALANCE:
  5067. case POOL_FAILOVER:
  5068. case POOL_LOADBALANCE:
  5069. for (i = 0; i < total_pools; i++) {
  5070. pool = priority_pool(i);
  5071. if (pool_unusable(pool))
  5072. continue;
  5073. pool_no = pool->pool_no;
  5074. break;
  5075. }
  5076. break;
  5077. /* Both of these simply increment and cycle */
  5078. case POOL_ROUNDROBIN:
  5079. case POOL_ROTATE:
  5080. if (selected && !selected->idle) {
  5081. pool_no = selected->pool_no;
  5082. break;
  5083. }
  5084. next_pool = pool_no;
  5085. /* Select the next alive pool */
  5086. for (i = 1; i < total_pools; i++) {
  5087. next_pool++;
  5088. if (next_pool >= total_pools)
  5089. next_pool = 0;
  5090. pool = pools[next_pool];
  5091. if (pool_unusable(pool))
  5092. continue;
  5093. pool_no = next_pool;
  5094. break;
  5095. }
  5096. break;
  5097. default:
  5098. break;
  5099. }
  5100. currentpool = pools[pool_no];
  5101. pool = currentpool;
  5102. cg_wunlock(&control_lock);
  5103. /* Set the lagging flag to avoid pool not providing work fast enough
  5104. * messages in failover only mode since we have to get all fresh work
  5105. * as in restart_threads */
  5106. if (opt_fail_only)
  5107. pool_tset(pool, &pool->lagging);
  5108. if (pool != last_pool)
  5109. {
  5110. pool->block_id = 0;
  5111. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5112. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5113. if (pool_localgen(pool) || opt_fail_only)
  5114. clear_pool_work(last_pool);
  5115. }
  5116. }
  5117. mutex_lock(&lp_lock);
  5118. pthread_cond_broadcast(&lp_cond);
  5119. mutex_unlock(&lp_lock);
  5120. }
  5121. static void discard_work(struct work *work)
  5122. {
  5123. if (!work->clone && !work->rolls && !work->mined) {
  5124. if (work->pool) {
  5125. work->pool->discarded_work++;
  5126. work->pool->quota_used--;
  5127. work->pool->works--;
  5128. }
  5129. total_discarded++;
  5130. applog(LOG_DEBUG, "Discarded work");
  5131. } else
  5132. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5133. free_work(work);
  5134. }
  5135. static void wake_gws(void)
  5136. {
  5137. mutex_lock(stgd_lock);
  5138. pthread_cond_signal(&gws_cond);
  5139. mutex_unlock(stgd_lock);
  5140. }
  5141. static void discard_stale(void)
  5142. {
  5143. struct work *work, *tmp;
  5144. int stale = 0;
  5145. mutex_lock(stgd_lock);
  5146. HASH_ITER(hh, staged_work, work, tmp) {
  5147. if (stale_work(work, false)) {
  5148. HASH_DEL(staged_work, work);
  5149. discard_work(work);
  5150. stale++;
  5151. staged_full = false;
  5152. }
  5153. }
  5154. pthread_cond_signal(&gws_cond);
  5155. mutex_unlock(stgd_lock);
  5156. if (stale)
  5157. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5158. }
  5159. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5160. {
  5161. bool rv;
  5162. struct timeval tv, orig;
  5163. ldiv_t d;
  5164. d = ldiv(ustime, 1000000);
  5165. tv = (struct timeval){
  5166. .tv_sec = d.quot,
  5167. .tv_usec = d.rem,
  5168. };
  5169. orig = work->tv_staged;
  5170. timersub(&orig, &tv, &work->tv_staged);
  5171. rv = stale_work(work, share);
  5172. work->tv_staged = orig;
  5173. return rv;
  5174. }
  5175. static void restart_threads(void)
  5176. {
  5177. struct pool *cp = current_pool();
  5178. int i;
  5179. struct thr_info *thr;
  5180. /* Artificially set the lagging flag to avoid pool not providing work
  5181. * fast enough messages after every long poll */
  5182. pool_tset(cp, &cp->lagging);
  5183. /* Discard staged work that is now stale */
  5184. discard_stale();
  5185. rd_lock(&mining_thr_lock);
  5186. for (i = 0; i < mining_threads; i++)
  5187. {
  5188. thr = mining_thr[i];
  5189. thr->work_restart = true;
  5190. }
  5191. for (i = 0; i < mining_threads; i++)
  5192. {
  5193. thr = mining_thr[i];
  5194. notifier_wake(thr->work_restart_notifier);
  5195. }
  5196. rd_unlock(&mining_thr_lock);
  5197. }
  5198. static
  5199. void blkhashstr(char *rv, const unsigned char *hash)
  5200. {
  5201. unsigned char hash_swap[32];
  5202. swap256(hash_swap, hash);
  5203. swap32tole(hash_swap, hash_swap, 32 / 4);
  5204. bin2hex(rv, hash_swap, 32);
  5205. }
  5206. static void set_curblock(char *hexstr, unsigned char *hash)
  5207. {
  5208. unsigned char hash_swap[32];
  5209. current_block_id = ((uint32_t*)hash)[0];
  5210. strcpy(current_block, hexstr);
  5211. swap256(hash_swap, hash);
  5212. swap32tole(hash_swap, hash_swap, 32 / 4);
  5213. cg_wlock(&ch_lock);
  5214. block_time = time(NULL);
  5215. __update_block_title(hash_swap);
  5216. free(current_fullhash);
  5217. current_fullhash = malloc(65);
  5218. bin2hex(current_fullhash, hash_swap, 32);
  5219. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5220. cg_wunlock(&ch_lock);
  5221. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5222. }
  5223. /* Search to see if this string is from a block that has been seen before */
  5224. static bool block_exists(char *hexstr)
  5225. {
  5226. struct block *s;
  5227. rd_lock(&blk_lock);
  5228. HASH_FIND_STR(blocks, hexstr, s);
  5229. rd_unlock(&blk_lock);
  5230. if (s)
  5231. return true;
  5232. return false;
  5233. }
  5234. /* Tests if this work is from a block that has been seen before */
  5235. static inline bool from_existing_block(struct work *work)
  5236. {
  5237. char hexstr[37];
  5238. bool ret;
  5239. bin2hex(hexstr, work->data + 8, 18);
  5240. ret = block_exists(hexstr);
  5241. return ret;
  5242. }
  5243. static int block_sort(struct block *blocka, struct block *blockb)
  5244. {
  5245. return blocka->block_no - blockb->block_no;
  5246. }
  5247. static void set_blockdiff(const struct work *work)
  5248. {
  5249. unsigned char target[32];
  5250. double diff;
  5251. uint64_t diff64;
  5252. real_block_target(target, work->data);
  5253. diff = target_diff(target);
  5254. diff64 = diff;
  5255. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5256. format_unit2(net_hashrate, sizeof(net_hashrate),
  5257. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5258. if (unlikely(current_diff != diff))
  5259. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5260. current_diff = diff;
  5261. }
  5262. static bool test_work_current(struct work *work)
  5263. {
  5264. bool ret = true;
  5265. char hexstr[65];
  5266. if (work->mandatory)
  5267. return ret;
  5268. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5269. /* Hack to work around dud work sneaking into test */
  5270. bin2hex(hexstr, work->data + 8, 18);
  5271. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5272. goto out_free;
  5273. /* Search to see if this block exists yet and if not, consider it a
  5274. * new block and set the current block details to this one */
  5275. if (!block_exists(hexstr)) {
  5276. struct block *s = calloc(sizeof(struct block), 1);
  5277. int deleted_block = 0;
  5278. ret = false;
  5279. if (unlikely(!s))
  5280. quit (1, "test_work_current OOM");
  5281. strcpy(s->hash, hexstr);
  5282. s->block_no = new_blocks++;
  5283. wr_lock(&blk_lock);
  5284. /* Only keep the last hour's worth of blocks in memory since
  5285. * work from blocks before this is virtually impossible and we
  5286. * want to prevent memory usage from continually rising */
  5287. if (HASH_COUNT(blocks) > 6) {
  5288. struct block *oldblock;
  5289. HASH_SORT(blocks, block_sort);
  5290. oldblock = blocks;
  5291. deleted_block = oldblock->block_no;
  5292. HASH_DEL(blocks, oldblock);
  5293. free(oldblock);
  5294. }
  5295. HASH_ADD_STR(blocks, hash, s);
  5296. set_blockdiff(work);
  5297. wr_unlock(&blk_lock);
  5298. work->pool->block_id = block_id;
  5299. if (deleted_block)
  5300. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5301. #if BLKMAKER_VERSION > 1
  5302. template_nonce = 0;
  5303. #endif
  5304. set_curblock(hexstr, &work->data[4]);
  5305. if (unlikely(new_blocks == 1))
  5306. goto out_free;
  5307. if (!work->stratum) {
  5308. if (work->longpoll) {
  5309. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5310. work->pool->pool_no);
  5311. } else if (have_longpoll)
  5312. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5313. else
  5314. applog(LOG_NOTICE, "New block detected on network");
  5315. }
  5316. restart_threads();
  5317. } else {
  5318. bool restart = false;
  5319. struct pool *curpool = NULL;
  5320. if (unlikely(work->pool->block_id != block_id)) {
  5321. bool was_active = work->pool->block_id != 0;
  5322. work->pool->block_id = block_id;
  5323. if (!work->longpoll)
  5324. update_last_work(work);
  5325. if (was_active) { // Pool actively changed block
  5326. if (work->pool == (curpool = current_pool()))
  5327. restart = true;
  5328. if (block_id == current_block_id) {
  5329. // Caught up, only announce if this pool is the one in use
  5330. if (restart)
  5331. applog(LOG_NOTICE, "%s %d caught up to new block",
  5332. work->longpoll ? "Longpoll from pool" : "Pool",
  5333. work->pool->pool_no);
  5334. } else {
  5335. // Switched to a block we know, but not the latest... why?
  5336. // This might detect pools trying to double-spend or 51%,
  5337. // but let's not make any accusations until it's had time
  5338. // in the real world.
  5339. blkhashstr(hexstr, &work->data[4]);
  5340. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5341. work->longpoll ? "Longpoll from pool" : "Pool",
  5342. work->pool->pool_no,
  5343. hexstr);
  5344. }
  5345. }
  5346. }
  5347. if (work->longpoll) {
  5348. ++work->pool->work_restart_id;
  5349. update_last_work(work);
  5350. if ((!restart) && work->pool == current_pool()) {
  5351. applog(
  5352. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5353. "Longpoll from pool %d requested work update",
  5354. work->pool->pool_no);
  5355. restart = true;
  5356. }
  5357. }
  5358. if (restart)
  5359. restart_threads();
  5360. }
  5361. work->longpoll = false;
  5362. out_free:
  5363. return ret;
  5364. }
  5365. static int tv_sort(struct work *worka, struct work *workb)
  5366. {
  5367. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5368. }
  5369. static bool work_rollable(struct work *work)
  5370. {
  5371. return (!work->clone && work->rolltime);
  5372. }
  5373. static bool hash_push(struct work *work)
  5374. {
  5375. bool rc = true;
  5376. mutex_lock(stgd_lock);
  5377. if (work_rollable(work))
  5378. staged_rollable++;
  5379. if (likely(!getq->frozen)) {
  5380. HASH_ADD_INT(staged_work, id, work);
  5381. HASH_SORT(staged_work, tv_sort);
  5382. } else
  5383. rc = false;
  5384. pthread_cond_broadcast(&getq->cond);
  5385. mutex_unlock(stgd_lock);
  5386. return rc;
  5387. }
  5388. static void stage_work(struct work *work)
  5389. {
  5390. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5391. work->id, work->pool->pool_no);
  5392. work->work_restart_id = work->pool->work_restart_id;
  5393. work->pool->last_work_time = time(NULL);
  5394. cgtime(&work->pool->tv_last_work_time);
  5395. test_work_current(work);
  5396. work->pool->works++;
  5397. hash_push(work);
  5398. }
  5399. #ifdef HAVE_CURSES
  5400. int curses_int(const char *query)
  5401. {
  5402. int ret;
  5403. char *cvar;
  5404. cvar = curses_input(query);
  5405. if (unlikely(!cvar))
  5406. return -1;
  5407. ret = atoi(cvar);
  5408. free(cvar);
  5409. return ret;
  5410. }
  5411. #endif
  5412. #ifdef HAVE_CURSES
  5413. static bool input_pool(bool live);
  5414. #endif
  5415. #ifdef HAVE_CURSES
  5416. static void display_pool_summary(struct pool *pool)
  5417. {
  5418. double efficiency = 0.0;
  5419. char xfer[17], bw[19];
  5420. int pool_secs;
  5421. if (curses_active_locked()) {
  5422. wlog("Pool: %s\n", pool->rpc_url);
  5423. if (pool->solved)
  5424. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5425. if (!pool->has_stratum)
  5426. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5427. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5428. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5429. wlog(" Accepted shares: %d\n", pool->accepted);
  5430. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5431. pool->rejected, pool->stale_shares,
  5432. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5433. );
  5434. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5435. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5436. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5437. wlog(" Network transfer: %s (%s)\n",
  5438. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5439. (float)pool->cgminer_pool_stats.net_bytes_received,
  5440. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5441. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5442. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5443. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5444. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5445. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5446. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5447. wlog(" Items worked on: %d\n", pool->works);
  5448. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5449. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5450. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5451. unlock_curses();
  5452. }
  5453. }
  5454. #endif
  5455. /* We can't remove the memory used for this struct pool because there may
  5456. * still be work referencing it. We just remove it from the pools list */
  5457. void remove_pool(struct pool *pool)
  5458. {
  5459. int i, last_pool = total_pools - 1;
  5460. struct pool *other;
  5461. /* Boost priority of any lower prio than this one */
  5462. for (i = 0; i < total_pools; i++) {
  5463. other = pools[i];
  5464. if (other->prio > pool->prio)
  5465. other->prio--;
  5466. }
  5467. if (pool->pool_no < last_pool) {
  5468. /* Swap the last pool for this one */
  5469. (pools[last_pool])->pool_no = pool->pool_no;
  5470. pools[pool->pool_no] = pools[last_pool];
  5471. }
  5472. /* Give it an invalid number */
  5473. pool->pool_no = total_pools;
  5474. pool->removed = true;
  5475. pool->has_stratum = false;
  5476. total_pools--;
  5477. }
  5478. /* add a mutex if this needs to be thread safe in the future */
  5479. static struct JE {
  5480. char *buf;
  5481. struct JE *next;
  5482. } *jedata = NULL;
  5483. static void json_escape_free()
  5484. {
  5485. struct JE *jeptr = jedata;
  5486. struct JE *jenext;
  5487. jedata = NULL;
  5488. while (jeptr) {
  5489. jenext = jeptr->next;
  5490. free(jeptr->buf);
  5491. free(jeptr);
  5492. jeptr = jenext;
  5493. }
  5494. }
  5495. static
  5496. char *json_escape(const char *str)
  5497. {
  5498. struct JE *jeptr;
  5499. char *buf, *ptr;
  5500. /* 2x is the max, may as well just allocate that */
  5501. ptr = buf = malloc(strlen(str) * 2 + 1);
  5502. jeptr = malloc(sizeof(*jeptr));
  5503. jeptr->buf = buf;
  5504. jeptr->next = jedata;
  5505. jedata = jeptr;
  5506. while (*str) {
  5507. if (*str == '\\' || *str == '"')
  5508. *(ptr++) = '\\';
  5509. *(ptr++) = *(str++);
  5510. }
  5511. *ptr = '\0';
  5512. return buf;
  5513. }
  5514. void _write_config_temps(FILE *fcfg, const char *configname, size_t settingoffset, size_t defoffset)
  5515. {
  5516. int i, commas;
  5517. int *setp, allset;
  5518. uint8_t *defp;
  5519. for (i = 0; ; ++i)
  5520. {
  5521. if (i == total_devices)
  5522. // All defaults
  5523. return;
  5524. setp = ((void*)devices[i]) + settingoffset;
  5525. defp = ((void*)devices[i]) + defoffset;
  5526. allset = *setp;
  5527. if (*setp != *defp)
  5528. break;
  5529. }
  5530. fprintf(fcfg, ",\n\"%s\" : \"", configname);
  5531. for (i = 1; ; ++i)
  5532. {
  5533. if (i == total_devices)
  5534. {
  5535. // All the same
  5536. fprintf(fcfg, "%d\"", allset);
  5537. return;
  5538. }
  5539. setp = ((void*)devices[i]) + settingoffset;
  5540. if (allset != *setp)
  5541. break;
  5542. }
  5543. commas = 0;
  5544. for (i = 0; i < total_devices; ++i)
  5545. {
  5546. setp = ((void*)devices[i]) + settingoffset;
  5547. defp = ((void*)devices[i]) + defoffset;
  5548. if (*setp != *defp)
  5549. {
  5550. for ( ; commas; --commas)
  5551. fputs(",", fcfg);
  5552. fprintf(fcfg, "%d", *setp);
  5553. }
  5554. ++commas;
  5555. }
  5556. fputs("\"", fcfg);
  5557. }
  5558. #define write_config_temps(fcfg, configname, settingname) \
  5559. _write_config_temps(fcfg, configname, offsetof(struct cgpu_info, settingname), offsetof(struct cgpu_info, settingname ## _default))
  5560. static
  5561. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5562. {
  5563. if (!elist)
  5564. return;
  5565. static struct string_elist *entry;
  5566. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5567. bool first = true;
  5568. DL_FOREACH(elist, entry)
  5569. {
  5570. const char * const s = entry->string;
  5571. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5572. first = false;
  5573. }
  5574. fprintf(fcfg, "\n]");
  5575. }
  5576. void write_config(FILE *fcfg)
  5577. {
  5578. int i;
  5579. /* Write pool values */
  5580. fputs("{\n\"pools\" : [", fcfg);
  5581. for(i = 0; i < total_pools; i++) {
  5582. struct pool *pool = pools[i];
  5583. if (pool->quota != 1) {
  5584. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5585. pool->quota,
  5586. json_escape(pool->rpc_url));
  5587. } else {
  5588. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5589. json_escape(pool->rpc_url));
  5590. }
  5591. if (pool->rpc_proxy)
  5592. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5593. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5594. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5595. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5596. if (pool->force_rollntime)
  5597. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5598. fprintf(fcfg, "\n\t}");
  5599. }
  5600. fputs("\n]\n", fcfg);
  5601. write_config_temps(fcfg, "temp-cutoff", cutofftemp);
  5602. write_config_temps(fcfg, "temp-target", targettemp);
  5603. #ifdef HAVE_OPENCL
  5604. if (nDevs) {
  5605. /* Write GPU device values */
  5606. fputs(",\n\"intensity\" : \"", fcfg);
  5607. for(i = 0; i < nDevs; i++)
  5608. {
  5609. if (i > 0)
  5610. fputc(',', fcfg);
  5611. if (gpus[i].dynamic)
  5612. fputc('d', fcfg);
  5613. else
  5614. fprintf(fcfg, "%d", gpus[i].intensity);
  5615. }
  5616. fputs("\",\n\"vectors\" : \"", fcfg);
  5617. for(i = 0; i < nDevs; i++)
  5618. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5619. gpus[i].vwidth);
  5620. fputs("\",\n\"worksize\" : \"", fcfg);
  5621. for(i = 0; i < nDevs; i++)
  5622. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5623. (int)gpus[i].work_size);
  5624. fputs("\",\n\"kernel\" : \"", fcfg);
  5625. for(i = 0; i < nDevs; i++) {
  5626. fprintf(fcfg, "%s", i > 0 ? "," : "");
  5627. switch (gpus[i].kernel) {
  5628. case KL_NONE: // Shouldn't happen
  5629. break;
  5630. case KL_POCLBM:
  5631. fprintf(fcfg, "poclbm");
  5632. break;
  5633. case KL_PHATK:
  5634. fprintf(fcfg, "phatk");
  5635. break;
  5636. case KL_DIAKGCN:
  5637. fprintf(fcfg, "diakgcn");
  5638. break;
  5639. case KL_DIABLO:
  5640. fprintf(fcfg, "diablo");
  5641. break;
  5642. case KL_SCRYPT:
  5643. fprintf(fcfg, "scrypt");
  5644. break;
  5645. }
  5646. }
  5647. #ifdef USE_SCRYPT
  5648. fputs("\",\n\"lookup-gap\" : \"", fcfg);
  5649. for(i = 0; i < nDevs; i++)
  5650. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5651. (int)gpus[i].opt_lg);
  5652. fputs("\",\n\"thread-concurrency\" : \"", fcfg);
  5653. for(i = 0; i < nDevs; i++)
  5654. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5655. (int)gpus[i].opt_tc);
  5656. fputs("\",\n\"shaders\" : \"", fcfg);
  5657. for(i = 0; i < nDevs; i++)
  5658. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5659. (int)gpus[i].shaders);
  5660. #endif
  5661. #ifdef HAVE_ADL
  5662. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  5663. for(i = 0; i < nDevs; i++)
  5664. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  5665. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  5666. for(i = 0; i < nDevs; i++)
  5667. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  5668. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  5669. for(i = 0; i < nDevs; i++)
  5670. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  5671. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  5672. for(i = 0; i < nDevs; i++)
  5673. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  5674. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  5675. for(i = 0; i < nDevs; i++)
  5676. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  5677. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  5678. for(i = 0; i < nDevs; i++)
  5679. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  5680. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  5681. for(i = 0; i < nDevs; i++)
  5682. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  5683. #endif
  5684. fputs("\"", fcfg);
  5685. }
  5686. #endif
  5687. #ifdef HAVE_ADL
  5688. if (opt_reorder)
  5689. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  5690. #endif
  5691. #ifdef WANT_CPUMINE
  5692. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5693. #endif
  5694. /* Simple bool and int options */
  5695. struct opt_table *opt;
  5696. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5697. char *p, *name = strdup(opt->names);
  5698. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5699. if (p[1] != '-')
  5700. continue;
  5701. if (opt->type & OPT_NOARG &&
  5702. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5703. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5704. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5705. if (opt->type & OPT_HASARG &&
  5706. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5707. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5708. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5709. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5710. opt->desc != opt_hidden &&
  5711. 0 <= *(int *)opt->u.arg)
  5712. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5713. }
  5714. }
  5715. /* Special case options */
  5716. if (request_target_str)
  5717. {
  5718. if (request_pdiff == (long)request_pdiff)
  5719. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5720. else
  5721. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5722. }
  5723. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  5724. if (pool_strategy == POOL_BALANCE)
  5725. fputs(",\n\"balance\" : true", fcfg);
  5726. if (pool_strategy == POOL_LOADBALANCE)
  5727. fputs(",\n\"load-balance\" : true", fcfg);
  5728. if (pool_strategy == POOL_ROUNDROBIN)
  5729. fputs(",\n\"round-robin\" : true", fcfg);
  5730. if (pool_strategy == POOL_ROTATE)
  5731. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5732. #if defined(unix) || defined(__APPLE__)
  5733. if (opt_stderr_cmd && *opt_stderr_cmd)
  5734. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5735. #endif // defined(unix)
  5736. if (opt_kernel_path && *opt_kernel_path) {
  5737. char *kpath = strdup(opt_kernel_path);
  5738. if (kpath[strlen(kpath)-1] == '/')
  5739. kpath[strlen(kpath)-1] = 0;
  5740. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5741. free(kpath);
  5742. }
  5743. if (schedstart.enable)
  5744. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5745. if (schedstop.enable)
  5746. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5747. if (opt_socks_proxy && *opt_socks_proxy)
  5748. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5749. _write_config_string_elist(fcfg, "scan", scan_devices);
  5750. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5751. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5752. if (opt_api_allow)
  5753. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5754. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5755. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5756. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5757. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5758. if (*opt_api_mcast_des)
  5759. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5760. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5761. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5762. if (opt_api_groups)
  5763. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5764. if (opt_icarus_options)
  5765. fprintf(fcfg, ",\n\"icarus-options\" : \"%s\"", json_escape(opt_icarus_options));
  5766. if (opt_icarus_timing)
  5767. fprintf(fcfg, ",\n\"icarus-timing\" : \"%s\"", json_escape(opt_icarus_timing));
  5768. #ifdef USE_KLONDIKE
  5769. if (opt_klondike_options)
  5770. fprintf(fcfg, ",\n\"klondike-options\" : \"%s\"", json_escape(opt_klondike_options));
  5771. #endif
  5772. fputs("\n}\n", fcfg);
  5773. json_escape_free();
  5774. }
  5775. void zero_bestshare(void)
  5776. {
  5777. int i;
  5778. best_diff = 0;
  5779. memset(best_share, 0, 8);
  5780. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5781. for (i = 0; i < total_pools; i++) {
  5782. struct pool *pool = pools[i];
  5783. pool->best_diff = 0;
  5784. }
  5785. }
  5786. void zero_stats(void)
  5787. {
  5788. int i;
  5789. applog(LOG_DEBUG, "Zeroing stats");
  5790. cgtime(&total_tv_start);
  5791. miner_started = total_tv_start;
  5792. total_rolling = 0;
  5793. total_mhashes_done = 0;
  5794. total_getworks = 0;
  5795. total_accepted = 0;
  5796. total_rejected = 0;
  5797. hw_errors = 0;
  5798. total_stale = 0;
  5799. total_discarded = 0;
  5800. total_bytes_rcvd = total_bytes_sent = 0;
  5801. new_blocks = 0;
  5802. local_work = 0;
  5803. total_go = 0;
  5804. total_ro = 0;
  5805. total_secs = 1.0;
  5806. total_diff1 = 0;
  5807. total_bad_nonces = 0;
  5808. found_blocks = 0;
  5809. total_diff_accepted = 0;
  5810. total_diff_rejected = 0;
  5811. total_diff_stale = 0;
  5812. #ifdef HAVE_CURSES
  5813. awidth = rwidth = swidth = hwwidth = 1;
  5814. #endif
  5815. for (i = 0; i < total_pools; i++) {
  5816. struct pool *pool = pools[i];
  5817. pool->getwork_requested = 0;
  5818. pool->accepted = 0;
  5819. pool->rejected = 0;
  5820. pool->solved = 0;
  5821. pool->getwork_requested = 0;
  5822. pool->stale_shares = 0;
  5823. pool->discarded_work = 0;
  5824. pool->getfail_occasions = 0;
  5825. pool->remotefail_occasions = 0;
  5826. pool->last_share_time = 0;
  5827. pool->diff1 = 0;
  5828. pool->diff_accepted = 0;
  5829. pool->diff_rejected = 0;
  5830. pool->diff_stale = 0;
  5831. pool->last_share_diff = 0;
  5832. pool->cgminer_stats.start_tv = total_tv_start;
  5833. pool->cgminer_stats.getwork_calls = 0;
  5834. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5835. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5836. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5837. pool->cgminer_pool_stats.getwork_calls = 0;
  5838. pool->cgminer_pool_stats.getwork_attempts = 0;
  5839. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5840. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5841. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5842. pool->cgminer_pool_stats.min_diff = 0;
  5843. pool->cgminer_pool_stats.max_diff = 0;
  5844. pool->cgminer_pool_stats.min_diff_count = 0;
  5845. pool->cgminer_pool_stats.max_diff_count = 0;
  5846. pool->cgminer_pool_stats.times_sent = 0;
  5847. pool->cgminer_pool_stats.bytes_sent = 0;
  5848. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5849. pool->cgminer_pool_stats.times_received = 0;
  5850. pool->cgminer_pool_stats.bytes_received = 0;
  5851. pool->cgminer_pool_stats.net_bytes_received = 0;
  5852. }
  5853. zero_bestshare();
  5854. for (i = 0; i < total_devices; ++i) {
  5855. struct cgpu_info *cgpu = get_devices(i);
  5856. mutex_lock(&hash_lock);
  5857. cgpu->total_mhashes = 0;
  5858. cgpu->accepted = 0;
  5859. cgpu->rejected = 0;
  5860. cgpu->stale = 0;
  5861. cgpu->hw_errors = 0;
  5862. cgpu->utility = 0.0;
  5863. cgpu->utility_diff1 = 0;
  5864. cgpu->last_share_pool_time = 0;
  5865. cgpu->bad_nonces = 0;
  5866. cgpu->diff1 = 0;
  5867. cgpu->diff_accepted = 0;
  5868. cgpu->diff_rejected = 0;
  5869. cgpu->diff_stale = 0;
  5870. cgpu->last_share_diff = 0;
  5871. cgpu->thread_fail_init_count = 0;
  5872. cgpu->thread_zero_hash_count = 0;
  5873. cgpu->thread_fail_queue_count = 0;
  5874. cgpu->dev_sick_idle_60_count = 0;
  5875. cgpu->dev_dead_idle_600_count = 0;
  5876. cgpu->dev_nostart_count = 0;
  5877. cgpu->dev_over_heat_count = 0;
  5878. cgpu->dev_thermal_cutoff_count = 0;
  5879. cgpu->dev_comms_error_count = 0;
  5880. cgpu->dev_throttle_count = 0;
  5881. cgpu->cgminer_stats.start_tv = total_tv_start;
  5882. cgpu->cgminer_stats.getwork_calls = 0;
  5883. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5884. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5885. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5886. mutex_unlock(&hash_lock);
  5887. }
  5888. }
  5889. #ifdef HAVE_CURSES
  5890. static void display_pools(void)
  5891. {
  5892. struct pool *pool;
  5893. int selected, i, j;
  5894. char input;
  5895. opt_loginput = true;
  5896. immedok(logwin, true);
  5897. clear_logwin();
  5898. updated:
  5899. for (j = 0; j < total_pools; j++) {
  5900. for (i = 0; i < total_pools; i++) {
  5901. pool = pools[i];
  5902. if (pool->prio != j)
  5903. continue;
  5904. if (pool == current_pool())
  5905. wattron(logwin, A_BOLD);
  5906. if (pool->enabled != POOL_ENABLED)
  5907. wattron(logwin, A_DIM);
  5908. wlogprint("%d: ", pool->prio);
  5909. switch (pool->enabled) {
  5910. case POOL_ENABLED:
  5911. wlogprint("Enabled ");
  5912. break;
  5913. case POOL_DISABLED:
  5914. wlogprint("Disabled ");
  5915. break;
  5916. case POOL_REJECTING:
  5917. wlogprint("Rejectin ");
  5918. break;
  5919. }
  5920. if (pool->idle)
  5921. wlogprint("Dead ");
  5922. else
  5923. if (pool->has_stratum)
  5924. wlogprint("Strtm");
  5925. else
  5926. if (pool->lp_url && pool->proto != pool->lp_proto)
  5927. wlogprint("Mixed");
  5928. else
  5929. switch (pool->proto) {
  5930. case PLP_GETBLOCKTEMPLATE:
  5931. wlogprint(" GBT ");
  5932. break;
  5933. case PLP_GETWORK:
  5934. wlogprint("GWork");
  5935. break;
  5936. default:
  5937. wlogprint("Alive");
  5938. }
  5939. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  5940. pool->quota,
  5941. pool->pool_no,
  5942. pool->rpc_url, pool->rpc_user);
  5943. wattroff(logwin, A_BOLD | A_DIM);
  5944. break; //for (i = 0; i < total_pools; i++)
  5945. }
  5946. }
  5947. retry:
  5948. wlogprint("\nCurrent pool management strategy: %s\n",
  5949. strategies[pool_strategy].s);
  5950. if (pool_strategy == POOL_ROTATE)
  5951. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  5952. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  5953. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  5954. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  5955. wlogprint("Or press any other key to continue\n");
  5956. logwin_update();
  5957. input = getch();
  5958. if (!strncasecmp(&input, "a", 1)) {
  5959. input_pool(true);
  5960. goto updated;
  5961. } else if (!strncasecmp(&input, "r", 1)) {
  5962. if (total_pools <= 1) {
  5963. wlogprint("Cannot remove last pool");
  5964. goto retry;
  5965. }
  5966. selected = curses_int("Select pool number");
  5967. if (selected < 0 || selected >= total_pools) {
  5968. wlogprint("Invalid selection\n");
  5969. goto retry;
  5970. }
  5971. pool = pools[selected];
  5972. if (pool == current_pool())
  5973. switch_pools(NULL);
  5974. if (pool == current_pool()) {
  5975. wlogprint("Unable to remove pool due to activity\n");
  5976. goto retry;
  5977. }
  5978. disable_pool(pool);
  5979. remove_pool(pool);
  5980. goto updated;
  5981. } else if (!strncasecmp(&input, "s", 1)) {
  5982. selected = curses_int("Select pool number");
  5983. if (selected < 0 || selected >= total_pools) {
  5984. wlogprint("Invalid selection\n");
  5985. goto retry;
  5986. }
  5987. pool = pools[selected];
  5988. enable_pool(pool);
  5989. switch_pools(pool);
  5990. goto updated;
  5991. } else if (!strncasecmp(&input, "d", 1)) {
  5992. if (enabled_pools <= 1) {
  5993. wlogprint("Cannot disable last pool");
  5994. goto retry;
  5995. }
  5996. selected = curses_int("Select pool number");
  5997. if (selected < 0 || selected >= total_pools) {
  5998. wlogprint("Invalid selection\n");
  5999. goto retry;
  6000. }
  6001. pool = pools[selected];
  6002. disable_pool(pool);
  6003. if (pool == current_pool())
  6004. switch_pools(NULL);
  6005. goto updated;
  6006. } else if (!strncasecmp(&input, "e", 1)) {
  6007. selected = curses_int("Select pool number");
  6008. if (selected < 0 || selected >= total_pools) {
  6009. wlogprint("Invalid selection\n");
  6010. goto retry;
  6011. }
  6012. pool = pools[selected];
  6013. enable_pool(pool);
  6014. if (pool->prio < current_pool()->prio)
  6015. switch_pools(pool);
  6016. goto updated;
  6017. } else if (!strncasecmp(&input, "c", 1)) {
  6018. for (i = 0; i <= TOP_STRATEGY; i++)
  6019. wlogprint("%d: %s\n", i, strategies[i].s);
  6020. selected = curses_int("Select strategy number type");
  6021. if (selected < 0 || selected > TOP_STRATEGY) {
  6022. wlogprint("Invalid selection\n");
  6023. goto retry;
  6024. }
  6025. if (selected == POOL_ROTATE) {
  6026. opt_rotate_period = curses_int("Select interval in minutes");
  6027. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6028. opt_rotate_period = 0;
  6029. wlogprint("Invalid selection\n");
  6030. goto retry;
  6031. }
  6032. }
  6033. pool_strategy = selected;
  6034. switch_pools(NULL);
  6035. goto updated;
  6036. } else if (!strncasecmp(&input, "i", 1)) {
  6037. selected = curses_int("Select pool number");
  6038. if (selected < 0 || selected >= total_pools) {
  6039. wlogprint("Invalid selection\n");
  6040. goto retry;
  6041. }
  6042. pool = pools[selected];
  6043. display_pool_summary(pool);
  6044. goto retry;
  6045. } else if (!strncasecmp(&input, "q", 1)) {
  6046. selected = curses_int("Select pool number");
  6047. if (selected < 0 || selected >= total_pools) {
  6048. wlogprint("Invalid selection\n");
  6049. goto retry;
  6050. }
  6051. pool = pools[selected];
  6052. selected = curses_int("Set quota");
  6053. if (selected < 0) {
  6054. wlogprint("Invalid negative quota\n");
  6055. goto retry;
  6056. }
  6057. pool->quota = selected;
  6058. adjust_quota_gcd();
  6059. goto updated;
  6060. } else if (!strncasecmp(&input, "f", 1)) {
  6061. opt_fail_only ^= true;
  6062. goto updated;
  6063. } else if (!strncasecmp(&input, "p", 1)) {
  6064. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6065. if (!prilist)
  6066. {
  6067. wlogprint("Not changing priorities\n");
  6068. goto retry;
  6069. }
  6070. int res = prioritize_pools(prilist, &i);
  6071. free(prilist);
  6072. switch (res) {
  6073. case MSG_NOPOOL:
  6074. wlogprint("No pools\n");
  6075. goto retry;
  6076. case MSG_MISPID:
  6077. wlogprint("Missing pool id parameter\n");
  6078. goto retry;
  6079. case MSG_INVPID:
  6080. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6081. goto retry;
  6082. case MSG_DUPPID:
  6083. wlogprint("Duplicate pool specified %d\n", i);
  6084. goto retry;
  6085. case MSG_POOLPRIO:
  6086. default:
  6087. goto updated;
  6088. }
  6089. } else
  6090. clear_logwin();
  6091. immedok(logwin, false);
  6092. opt_loginput = false;
  6093. }
  6094. static const char *summary_detail_level_str(void)
  6095. {
  6096. if (opt_compact)
  6097. return "compact";
  6098. if (opt_show_procs)
  6099. return "processors";
  6100. return "devices";
  6101. }
  6102. static void display_options(void)
  6103. {
  6104. int selected;
  6105. char input;
  6106. opt_loginput = true;
  6107. immedok(logwin, true);
  6108. retry:
  6109. clear_logwin();
  6110. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6111. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6112. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6113. "[L]og interval:%d\n[Z]ero statistics\n",
  6114. opt_debug_console ? "on" : "off",
  6115. want_per_device_stats? "on" : "off",
  6116. opt_quiet ? "on" : "off",
  6117. opt_log_output ? "on" : "off",
  6118. opt_protocol ? "on" : "off",
  6119. opt_worktime ? "on" : "off",
  6120. summary_detail_level_str(),
  6121. opt_log_interval);
  6122. wlogprint("Select an option or any other key to return\n");
  6123. logwin_update();
  6124. input = getch();
  6125. if (!strncasecmp(&input, "q", 1)) {
  6126. opt_quiet ^= true;
  6127. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6128. goto retry;
  6129. } else if (!strncasecmp(&input, "v", 1)) {
  6130. opt_log_output ^= true;
  6131. if (opt_log_output)
  6132. opt_quiet = false;
  6133. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6134. goto retry;
  6135. } else if (!strncasecmp(&input, "n", 1)) {
  6136. opt_log_output = false;
  6137. opt_debug_console = false;
  6138. opt_quiet = false;
  6139. opt_protocol = false;
  6140. opt_compact = false;
  6141. opt_show_procs = false;
  6142. devsummaryYOffset = 0;
  6143. want_per_device_stats = false;
  6144. wlogprint("Output mode reset to normal\n");
  6145. switch_logsize();
  6146. goto retry;
  6147. } else if (!strncasecmp(&input, "d", 1)) {
  6148. opt_debug = true;
  6149. opt_debug_console ^= true;
  6150. opt_log_output = opt_debug_console;
  6151. if (opt_debug_console)
  6152. opt_quiet = false;
  6153. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6154. goto retry;
  6155. } else if (!strncasecmp(&input, "m", 1)) {
  6156. if (opt_compact)
  6157. opt_compact = false;
  6158. else
  6159. if (!opt_show_procs)
  6160. opt_show_procs = true;
  6161. else
  6162. {
  6163. opt_compact = true;
  6164. opt_show_procs = false;
  6165. devsummaryYOffset = 0;
  6166. }
  6167. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6168. switch_logsize();
  6169. goto retry;
  6170. } else if (!strncasecmp(&input, "p", 1)) {
  6171. want_per_device_stats ^= true;
  6172. opt_log_output = want_per_device_stats;
  6173. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6174. goto retry;
  6175. } else if (!strncasecmp(&input, "r", 1)) {
  6176. opt_protocol ^= true;
  6177. if (opt_protocol)
  6178. opt_quiet = false;
  6179. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6180. goto retry;
  6181. } else if (!strncasecmp(&input, "c", 1))
  6182. clear_logwin();
  6183. else if (!strncasecmp(&input, "l", 1)) {
  6184. selected = curses_int("Interval in seconds");
  6185. if (selected < 0 || selected > 9999) {
  6186. wlogprint("Invalid selection\n");
  6187. goto retry;
  6188. }
  6189. opt_log_interval = selected;
  6190. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6191. goto retry;
  6192. } else if (!strncasecmp(&input, "s", 1)) {
  6193. opt_realquiet = true;
  6194. } else if (!strncasecmp(&input, "w", 1)) {
  6195. opt_worktime ^= true;
  6196. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6197. goto retry;
  6198. } else if (!strncasecmp(&input, "z", 1)) {
  6199. zero_stats();
  6200. goto retry;
  6201. } else
  6202. clear_logwin();
  6203. immedok(logwin, false);
  6204. opt_loginput = false;
  6205. }
  6206. #endif
  6207. void default_save_file(char *filename)
  6208. {
  6209. #if defined(unix) || defined(__APPLE__)
  6210. if (getenv("HOME") && *getenv("HOME")) {
  6211. strcpy(filename, getenv("HOME"));
  6212. strcat(filename, "/");
  6213. }
  6214. else
  6215. strcpy(filename, "");
  6216. strcat(filename, ".bfgminer/");
  6217. mkdir(filename, 0777);
  6218. #else
  6219. strcpy(filename, "");
  6220. #endif
  6221. strcat(filename, def_conf);
  6222. }
  6223. #ifdef HAVE_CURSES
  6224. static void set_options(void)
  6225. {
  6226. int selected;
  6227. char input;
  6228. opt_loginput = true;
  6229. immedok(logwin, true);
  6230. clear_logwin();
  6231. retry:
  6232. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6233. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6234. "[W]rite config file\n[B]FGMiner restart\n",
  6235. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6236. wlogprint("Select an option or any other key to return\n");
  6237. logwin_update();
  6238. input = getch();
  6239. if (!strncasecmp(&input, "q", 1)) {
  6240. selected = curses_int("Extra work items to queue");
  6241. if (selected < 0 || selected > 9999) {
  6242. wlogprint("Invalid selection\n");
  6243. goto retry;
  6244. }
  6245. opt_queue = selected;
  6246. goto retry;
  6247. } else if (!strncasecmp(&input, "l", 1)) {
  6248. if (want_longpoll)
  6249. stop_longpoll();
  6250. else
  6251. start_longpoll();
  6252. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6253. goto retry;
  6254. } else if (!strncasecmp(&input, "s", 1)) {
  6255. selected = curses_int("Set scantime in seconds");
  6256. if (selected < 0 || selected > 9999) {
  6257. wlogprint("Invalid selection\n");
  6258. goto retry;
  6259. }
  6260. opt_scantime = selected;
  6261. goto retry;
  6262. } else if (!strncasecmp(&input, "e", 1)) {
  6263. selected = curses_int("Set expiry time in seconds");
  6264. if (selected < 0 || selected > 9999) {
  6265. wlogprint("Invalid selection\n");
  6266. goto retry;
  6267. }
  6268. opt_expiry = selected;
  6269. goto retry;
  6270. } else if (!strncasecmp(&input, "r", 1)) {
  6271. selected = curses_int("Retries before failing (-1 infinite)");
  6272. if (selected < -1 || selected > 9999) {
  6273. wlogprint("Invalid selection\n");
  6274. goto retry;
  6275. }
  6276. opt_retries = selected;
  6277. goto retry;
  6278. } else if (!strncasecmp(&input, "w", 1)) {
  6279. FILE *fcfg;
  6280. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6281. default_save_file(filename);
  6282. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6283. str = curses_input(prompt);
  6284. if (str) {
  6285. struct stat statbuf;
  6286. strcpy(filename, str);
  6287. free(str);
  6288. if (!stat(filename, &statbuf)) {
  6289. wlogprint("File exists, overwrite?\n");
  6290. input = getch();
  6291. if (strncasecmp(&input, "y", 1))
  6292. goto retry;
  6293. }
  6294. }
  6295. fcfg = fopen(filename, "w");
  6296. if (!fcfg) {
  6297. wlogprint("Cannot open or create file\n");
  6298. goto retry;
  6299. }
  6300. write_config(fcfg);
  6301. fclose(fcfg);
  6302. goto retry;
  6303. } else if (!strncasecmp(&input, "b", 1)) {
  6304. wlogprint("Are you sure?\n");
  6305. input = getch();
  6306. if (!strncasecmp(&input, "y", 1))
  6307. app_restart();
  6308. else
  6309. clear_logwin();
  6310. } else
  6311. clear_logwin();
  6312. immedok(logwin, false);
  6313. opt_loginput = false;
  6314. }
  6315. int scan_serial(const char *);
  6316. static
  6317. void _managetui_msg(const char *repr, const char **msg)
  6318. {
  6319. if (*msg)
  6320. {
  6321. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6322. wattron(logwin, A_BOLD);
  6323. wlogprint("%s", *msg);
  6324. wattroff(logwin, A_BOLD);
  6325. *msg = NULL;
  6326. }
  6327. logwin_update();
  6328. }
  6329. void manage_device(void)
  6330. {
  6331. char logline[256];
  6332. const char *msg = NULL;
  6333. struct cgpu_info *cgpu;
  6334. const struct device_drv *drv;
  6335. opt_loginput = true;
  6336. selecting_device = true;
  6337. immedok(logwin, true);
  6338. devchange:
  6339. if (unlikely(!total_devices))
  6340. {
  6341. clear_logwin();
  6342. wlogprint("(no devices)\n");
  6343. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6344. _managetui_msg("(none)", &msg);
  6345. int input = getch();
  6346. switch (input)
  6347. {
  6348. case '+': case '=': // add new device
  6349. goto addnew;
  6350. default:
  6351. goto out;
  6352. }
  6353. }
  6354. cgpu = devices[selected_device];
  6355. drv = cgpu->drv;
  6356. refresh_devstatus();
  6357. refresh:
  6358. clear_logwin();
  6359. wlogprint("Select processor to manage using up/down arrow keys\n");
  6360. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6361. wattron(logwin, A_BOLD);
  6362. wlogprint("%s", logline);
  6363. wattroff(logwin, A_BOLD);
  6364. wlogprint("\n");
  6365. if (cgpu->dev_manufacturer)
  6366. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6367. else
  6368. if (cgpu->dev_product)
  6369. wlogprint(" %s\n", cgpu->dev_product);
  6370. if (cgpu->dev_serial)
  6371. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6372. if (cgpu->kname)
  6373. wlogprint("Kernel: %s\n", cgpu->kname);
  6374. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6375. drv->proc_wlogprint_status(cgpu);
  6376. wlogprint("\n");
  6377. // TODO: Last share at TIMESTAMP on pool N
  6378. // TODO: Custom device info/commands
  6379. if (cgpu->deven != DEV_ENABLED)
  6380. wlogprint("[E]nable ");
  6381. if (cgpu->deven != DEV_DISABLED)
  6382. wlogprint("[D]isable ");
  6383. if (drv->identify_device)
  6384. wlogprint("[I]dentify ");
  6385. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6386. drv->proc_tui_wlogprint_choices(cgpu);
  6387. wlogprint("\n");
  6388. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6389. _managetui_msg(cgpu->proc_repr, &msg);
  6390. while (true)
  6391. {
  6392. int input = getch();
  6393. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6394. switch (input) {
  6395. case 'd': case 'D':
  6396. if (cgpu->deven == DEV_DISABLED)
  6397. msg = "Processor already disabled\n";
  6398. else
  6399. {
  6400. cgpu->deven = DEV_DISABLED;
  6401. msg = "Processor being disabled\n";
  6402. }
  6403. goto refresh;
  6404. case 'e': case 'E':
  6405. if (cgpu->deven == DEV_ENABLED)
  6406. msg = "Processor already enabled\n";
  6407. else
  6408. {
  6409. proc_enable(cgpu);
  6410. msg = "Processor being enabled\n";
  6411. }
  6412. goto refresh;
  6413. case 'i': case 'I':
  6414. if (drv->identify_device && drv->identify_device(cgpu))
  6415. msg = "Identify command sent\n";
  6416. else
  6417. goto key_default;
  6418. goto refresh;
  6419. case KEY_DOWN:
  6420. if (selected_device >= total_devices - 1)
  6421. break;
  6422. ++selected_device;
  6423. goto devchange;
  6424. case KEY_UP:
  6425. if (selected_device <= 0)
  6426. break;
  6427. --selected_device;
  6428. goto devchange;
  6429. case KEY_NPAGE:
  6430. {
  6431. if (selected_device >= total_devices - 1)
  6432. break;
  6433. struct cgpu_info *mdev = devices[selected_device]->device;
  6434. do {
  6435. ++selected_device;
  6436. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6437. goto devchange;
  6438. }
  6439. case KEY_PPAGE:
  6440. {
  6441. if (selected_device <= 0)
  6442. break;
  6443. struct cgpu_info *mdev = devices[selected_device]->device;
  6444. do {
  6445. --selected_device;
  6446. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6447. goto devchange;
  6448. }
  6449. case '/': case '?': // find device
  6450. {
  6451. static char *pattern = NULL;
  6452. char *newpattern = curses_input("Enter pattern");
  6453. if (newpattern)
  6454. {
  6455. free(pattern);
  6456. pattern = newpattern;
  6457. }
  6458. else
  6459. if (!pattern)
  6460. pattern = calloc(1, 1);
  6461. int match = cgpu_search(pattern, selected_device + 1);
  6462. if (match == -1)
  6463. {
  6464. msg = "Couldn't find device\n";
  6465. goto refresh;
  6466. }
  6467. selected_device = match;
  6468. goto devchange;
  6469. }
  6470. case '+': case '=': // add new device
  6471. {
  6472. addnew:
  6473. clear_logwin();
  6474. _wlogprint(
  6475. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6476. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6477. "For example: erupter:"
  6478. #ifdef WIN32
  6479. "\\\\.\\COM40"
  6480. #elif defined(__APPLE__)
  6481. "/dev/cu.SLAB_USBtoUART"
  6482. #else
  6483. "/dev/ttyUSB39"
  6484. #endif
  6485. "\n"
  6486. );
  6487. char *scanser = curses_input("Enter target");
  6488. if (scan_serial(scanser))
  6489. {
  6490. selected_device = total_devices - 1;
  6491. msg = "Device scan succeeded\n";
  6492. }
  6493. else
  6494. msg = "No new devices found\n";
  6495. goto devchange;
  6496. }
  6497. case 'Q': case 'q':
  6498. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6499. case '\x1b': // ESC
  6500. case KEY_ENTER:
  6501. case '\r': // Ctrl-M on Windows, with nonl
  6502. #ifdef PADENTER
  6503. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6504. #endif
  6505. case '\n':
  6506. goto out;
  6507. default:
  6508. ;
  6509. key_default:
  6510. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6511. {
  6512. msg = drv->proc_tui_handle_choice(cgpu, input);
  6513. if (msg)
  6514. goto refresh;
  6515. }
  6516. }
  6517. }
  6518. out:
  6519. selecting_device = false;
  6520. clear_logwin();
  6521. immedok(logwin, false);
  6522. opt_loginput = false;
  6523. }
  6524. void show_help(void)
  6525. {
  6526. opt_loginput = true;
  6527. clear_logwin();
  6528. // NOTE: wlogprint is a macro with a buffer limit
  6529. _wlogprint(
  6530. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6531. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6532. "E: # shares * diff per 2kB bw | U: shares/minute | BS: best share ever found\n"
  6533. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6534. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6535. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6536. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6537. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6538. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6539. U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6540. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6541. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6542. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6543. "\n"
  6544. "devices/processors hashing (only for totals line), hottest temperature\n"
  6545. );
  6546. wlogprint(
  6547. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6548. , opt_log_interval);
  6549. _wlogprint(
  6550. "A: accepted shares | R: rejected+discarded(%% of total)\n"
  6551. "HW: hardware errors / %% nonces invalid\n"
  6552. "\n"
  6553. "Press any key to clear"
  6554. );
  6555. logwin_update();
  6556. getch();
  6557. clear_logwin();
  6558. opt_loginput = false;
  6559. }
  6560. static void *input_thread(void __maybe_unused *userdata)
  6561. {
  6562. RenameThread("input");
  6563. if (!curses_active)
  6564. return NULL;
  6565. while (1) {
  6566. int input;
  6567. input = getch();
  6568. switch (input) {
  6569. case 'h': case 'H': case '?':
  6570. show_help();
  6571. break;
  6572. case 'q': case 'Q':
  6573. kill_work();
  6574. return NULL;
  6575. case 'd': case 'D':
  6576. display_options();
  6577. break;
  6578. case 'm': case 'M':
  6579. manage_device();
  6580. break;
  6581. case 'p': case 'P':
  6582. display_pools();
  6583. break;
  6584. case 's': case 'S':
  6585. set_options();
  6586. break;
  6587. #ifdef HAVE_CURSES
  6588. case KEY_DOWN:
  6589. {
  6590. const int visible_lines = logcursor - devcursor;
  6591. const int invisible_lines = total_lines - visible_lines;
  6592. if (devsummaryYOffset <= -invisible_lines)
  6593. break;
  6594. devsummaryYOffset -= 2;
  6595. }
  6596. case KEY_UP:
  6597. if (devsummaryYOffset == 0)
  6598. break;
  6599. ++devsummaryYOffset;
  6600. refresh_devstatus();
  6601. break;
  6602. #endif
  6603. }
  6604. if (opt_realquiet) {
  6605. disable_curses();
  6606. break;
  6607. }
  6608. }
  6609. return NULL;
  6610. }
  6611. #endif
  6612. static void *api_thread(void *userdata)
  6613. {
  6614. struct thr_info *mythr = userdata;
  6615. pthread_detach(pthread_self());
  6616. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6617. RenameThread("rpc");
  6618. api(api_thr_id);
  6619. mythr->has_pth = false;
  6620. return NULL;
  6621. }
  6622. void thread_reportin(struct thr_info *thr)
  6623. {
  6624. cgtime(&thr->last);
  6625. thr->cgpu->status = LIFE_WELL;
  6626. thr->getwork = 0;
  6627. thr->cgpu->device_last_well = time(NULL);
  6628. }
  6629. void thread_reportout(struct thr_info *thr)
  6630. {
  6631. thr->getwork = time(NULL);
  6632. }
  6633. static void hashmeter(int thr_id, struct timeval *diff,
  6634. uint64_t hashes_done)
  6635. {
  6636. char logstatusline[256];
  6637. struct timeval temp_tv_end, total_diff;
  6638. double secs;
  6639. double local_secs;
  6640. static double local_mhashes_done = 0;
  6641. double local_mhashes = (double)hashes_done / 1000000.0;
  6642. bool showlog = false;
  6643. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6644. char rejpcbuf[6];
  6645. char bnbuf[6];
  6646. struct thr_info *thr;
  6647. /* Update the last time this thread reported in */
  6648. if (thr_id >= 0) {
  6649. thr = get_thread(thr_id);
  6650. cgtime(&(thr->last));
  6651. thr->cgpu->device_last_well = time(NULL);
  6652. }
  6653. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6654. /* So we can call hashmeter from a non worker thread */
  6655. if (thr_id >= 0) {
  6656. struct cgpu_info *cgpu = thr->cgpu;
  6657. int threadobj = cgpu->threads ?: 1;
  6658. double thread_rolling = 0.0;
  6659. int i;
  6660. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6661. thr_id, hashes_done, hashes_done / 1000 / secs);
  6662. /* Rolling average for each thread and each device */
  6663. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6664. for (i = 0; i < threadobj; i++)
  6665. thread_rolling += cgpu->thr[i]->rolling;
  6666. mutex_lock(&hash_lock);
  6667. decay_time(&cgpu->rolling, thread_rolling, secs);
  6668. cgpu->total_mhashes += local_mhashes;
  6669. mutex_unlock(&hash_lock);
  6670. // If needed, output detailed, per-device stats
  6671. if (want_per_device_stats) {
  6672. struct timeval now;
  6673. struct timeval elapsed;
  6674. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6675. cgtime(&now);
  6676. timersub(&now, last_msg_tv, &elapsed);
  6677. if (opt_log_interval <= elapsed.tv_sec) {
  6678. struct cgpu_info *cgpu = thr->cgpu;
  6679. char logline[255];
  6680. *last_msg_tv = now;
  6681. get_statline(logline, sizeof(logline), cgpu);
  6682. if (!curses_active) {
  6683. printf("%s \r", logline);
  6684. fflush(stdout);
  6685. } else
  6686. applog(LOG_INFO, "%s", logline);
  6687. }
  6688. }
  6689. }
  6690. /* Totals are updated by all threads so can race without locking */
  6691. mutex_lock(&hash_lock);
  6692. cgtime(&temp_tv_end);
  6693. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6694. total_mhashes_done += local_mhashes;
  6695. local_mhashes_done += local_mhashes;
  6696. /* Only update with opt_log_interval */
  6697. if (total_diff.tv_sec < opt_log_interval)
  6698. goto out_unlock;
  6699. showlog = true;
  6700. cgtime(&total_tv_end);
  6701. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6702. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6703. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6704. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6705. total_secs = (double)total_diff.tv_sec +
  6706. ((double)total_diff.tv_usec / 1000000.0);
  6707. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6708. multi_format_unit_array2(
  6709. ((char*[]){cHr, aHr, uHr}),
  6710. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6711. true, "h/s", H2B_SHORT,
  6712. 3,
  6713. 1e6*total_rolling,
  6714. 1e6*total_mhashes_done / total_secs,
  6715. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6716. #ifdef HAVE_CURSES
  6717. if (curses_active_locked()) {
  6718. float temp = 0;
  6719. struct cgpu_info *proc, *last_working_dev = NULL;
  6720. int i, working_devs = 0, working_procs = 0;
  6721. int divx;
  6722. bool bad = false;
  6723. // Find the highest temperature of all processors
  6724. for (i = 0; i < total_devices; ++i)
  6725. {
  6726. proc = get_devices(i);
  6727. if (proc->temp > temp)
  6728. temp = proc->temp;
  6729. if (unlikely(proc->deven == DEV_DISABLED))
  6730. ; // Just need to block it off from both conditions
  6731. else
  6732. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6733. {
  6734. if (proc->rolling > .1)
  6735. {
  6736. ++working_procs;
  6737. if (proc->device != last_working_dev)
  6738. {
  6739. ++working_devs;
  6740. last_working_dev = proc->device;
  6741. }
  6742. }
  6743. }
  6744. else
  6745. bad = true;
  6746. }
  6747. if (working_devs == working_procs)
  6748. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6749. else
  6750. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6751. divx = 7;
  6752. if (opt_show_procs && !opt_compact)
  6753. ++divx;
  6754. if (bad)
  6755. {
  6756. divx += sizeof(U8_BAD_START)-1;
  6757. strcpy(&statusline[divx], U8_BAD_END);
  6758. divx += sizeof(U8_BAD_END)-1;
  6759. }
  6760. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6761. format_statline(statusline, sizeof(statusline),
  6762. cHr, aHr,
  6763. uHr,
  6764. total_accepted,
  6765. total_rejected,
  6766. total_stale,
  6767. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6768. hw_errors,
  6769. total_bad_nonces, total_bad_nonces + total_diff1);
  6770. unlock_curses();
  6771. }
  6772. #endif
  6773. // Add a space
  6774. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6775. uHr[5] = ' ';
  6776. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6777. percentf4(bnbuf, sizeof(bnbuf), total_bad_nonces, total_diff1);
  6778. snprintf(logstatusline, sizeof(logstatusline),
  6779. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6780. want_per_device_stats ? "ALL " : "",
  6781. opt_log_interval,
  6782. cHr, aHr,
  6783. uHr,
  6784. total_accepted,
  6785. total_rejected,
  6786. total_stale,
  6787. rejpcbuf,
  6788. hw_errors,
  6789. bnbuf
  6790. );
  6791. local_mhashes_done = 0;
  6792. out_unlock:
  6793. mutex_unlock(&hash_lock);
  6794. if (showlog) {
  6795. if (!curses_active) {
  6796. printf("%s \r", logstatusline);
  6797. fflush(stdout);
  6798. } else
  6799. applog(LOG_INFO, "%s", logstatusline);
  6800. }
  6801. }
  6802. void hashmeter2(struct thr_info *thr)
  6803. {
  6804. struct timeval tv_now, tv_elapsed;
  6805. timerclear(&thr->tv_hashes_done);
  6806. cgtime(&tv_now);
  6807. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6808. /* Update the hashmeter at most 5 times per second */
  6809. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6810. tv_elapsed.tv_sec >= opt_log_interval) {
  6811. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6812. thr->hashes_done = 0;
  6813. thr->tv_lastupdate = tv_now;
  6814. }
  6815. }
  6816. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6817. struct stratum_share *sshare)
  6818. {
  6819. struct work *work = sshare->work;
  6820. share_result(val, res_val, err_val, work, false, "");
  6821. }
  6822. /* Parses stratum json responses and tries to find the id that the request
  6823. * matched to and treat it accordingly. */
  6824. bool parse_stratum_response(struct pool *pool, char *s)
  6825. {
  6826. json_t *val = NULL, *err_val, *res_val, *id_val;
  6827. struct stratum_share *sshare;
  6828. json_error_t err;
  6829. bool ret = false;
  6830. int id;
  6831. val = JSON_LOADS(s, &err);
  6832. if (!val) {
  6833. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6834. goto out;
  6835. }
  6836. res_val = json_object_get(val, "result");
  6837. err_val = json_object_get(val, "error");
  6838. id_val = json_object_get(val, "id");
  6839. if (json_is_null(id_val) || !id_val) {
  6840. char *ss;
  6841. if (err_val)
  6842. ss = json_dumps(err_val, JSON_INDENT(3));
  6843. else
  6844. ss = strdup("(unknown reason)");
  6845. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6846. free(ss);
  6847. goto out;
  6848. }
  6849. if (!json_is_integer(id_val)) {
  6850. if (json_is_string(id_val)
  6851. && !strncmp(json_string_value(id_val), "txlist", 6))
  6852. {
  6853. const bool is_array = json_is_array(res_val);
  6854. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6855. is_array ? "transaction list" : "no-transaction-list response",
  6856. pool->pool_no, &json_string_value(id_val)[6]);
  6857. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6858. // We only care about a transaction list for the current job id
  6859. goto fishy;
  6860. // Check that the transactions actually hash to the merkle links
  6861. {
  6862. unsigned maxtx = 1 << pool->swork.merkles;
  6863. unsigned mintx = maxtx >> 1;
  6864. --maxtx;
  6865. unsigned acttx = (unsigned)json_array_size(res_val);
  6866. if (acttx < mintx || acttx > maxtx) {
  6867. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6868. pool->pool_no, acttx, mintx, maxtx);
  6869. goto fishy;
  6870. }
  6871. // TODO: Check hashes match actual merkle links
  6872. }
  6873. pool_set_opaque(pool, false);
  6874. timer_unset(&pool->swork.tv_transparency);
  6875. fishy:
  6876. ret = true;
  6877. }
  6878. goto out;
  6879. }
  6880. id = json_integer_value(id_val);
  6881. mutex_lock(&sshare_lock);
  6882. HASH_FIND_INT(stratum_shares, &id, sshare);
  6883. if (sshare)
  6884. HASH_DEL(stratum_shares, sshare);
  6885. mutex_unlock(&sshare_lock);
  6886. if (!sshare) {
  6887. double pool_diff;
  6888. /* Since the share is untracked, we can only guess at what the
  6889. * work difficulty is based on the current pool diff. */
  6890. cg_rlock(&pool->data_lock);
  6891. pool_diff = pool->swork.diff;
  6892. cg_runlock(&pool->data_lock);
  6893. if (json_is_true(res_val)) {
  6894. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  6895. /* We don't know what device this came from so we can't
  6896. * attribute the work to the relevant cgpu */
  6897. mutex_lock(&stats_lock);
  6898. total_accepted++;
  6899. pool->accepted++;
  6900. total_diff_accepted += pool_diff;
  6901. pool->diff_accepted += pool_diff;
  6902. mutex_unlock(&stats_lock);
  6903. } else {
  6904. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  6905. mutex_lock(&stats_lock);
  6906. total_rejected++;
  6907. pool->rejected++;
  6908. total_diff_rejected += pool_diff;
  6909. pool->diff_rejected += pool_diff;
  6910. mutex_unlock(&stats_lock);
  6911. }
  6912. goto out;
  6913. }
  6914. else {
  6915. mutex_lock(&submitting_lock);
  6916. --total_submitting;
  6917. mutex_unlock(&submitting_lock);
  6918. }
  6919. stratum_share_result(val, res_val, err_val, sshare);
  6920. free_work(sshare->work);
  6921. free(sshare);
  6922. ret = true;
  6923. out:
  6924. if (val)
  6925. json_decref(val);
  6926. return ret;
  6927. }
  6928. static void shutdown_stratum(struct pool *pool)
  6929. {
  6930. // Shut down Stratum as if we never had it
  6931. pool->stratum_active = false;
  6932. pool->stratum_init = false;
  6933. pool->has_stratum = false;
  6934. shutdown(pool->sock, SHUT_RDWR);
  6935. free(pool->stratum_url);
  6936. if (pool->sockaddr_url == pool->stratum_url)
  6937. pool->sockaddr_url = NULL;
  6938. pool->stratum_url = NULL;
  6939. }
  6940. void clear_stratum_shares(struct pool *pool)
  6941. {
  6942. int my_mining_threads = mining_threads; // Cached outside of locking
  6943. struct stratum_share *sshare, *tmpshare;
  6944. struct work *work;
  6945. struct cgpu_info *cgpu;
  6946. double diff_cleared = 0;
  6947. double thr_diff_cleared[my_mining_threads];
  6948. int cleared = 0;
  6949. int thr_cleared[my_mining_threads];
  6950. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  6951. for (int i = 0; i < my_mining_threads; ++i)
  6952. {
  6953. thr_diff_cleared[i] = 0;
  6954. thr_cleared[i] = 0;
  6955. }
  6956. mutex_lock(&sshare_lock);
  6957. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  6958. work = sshare->work;
  6959. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  6960. HASH_DEL(stratum_shares, sshare);
  6961. sharelog("disconnect", work);
  6962. diff_cleared += sshare->work->work_difficulty;
  6963. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  6964. ++thr_cleared[work->thr_id];
  6965. free_work(sshare->work);
  6966. free(sshare);
  6967. cleared++;
  6968. }
  6969. }
  6970. mutex_unlock(&sshare_lock);
  6971. if (cleared) {
  6972. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  6973. mutex_lock(&stats_lock);
  6974. pool->stale_shares += cleared;
  6975. total_stale += cleared;
  6976. pool->diff_stale += diff_cleared;
  6977. total_diff_stale += diff_cleared;
  6978. for (int i = 0; i < my_mining_threads; ++i)
  6979. if (thr_cleared[i])
  6980. {
  6981. cgpu = get_thr_cgpu(i);
  6982. cgpu->diff_stale += thr_diff_cleared[i];
  6983. cgpu->stale += thr_cleared[i];
  6984. }
  6985. mutex_unlock(&stats_lock);
  6986. mutex_lock(&submitting_lock);
  6987. total_submitting -= cleared;
  6988. mutex_unlock(&submitting_lock);
  6989. }
  6990. }
  6991. static void resubmit_stratum_shares(struct pool *pool)
  6992. {
  6993. struct stratum_share *sshare, *tmpshare;
  6994. struct work *work;
  6995. unsigned resubmitted = 0;
  6996. mutex_lock(&sshare_lock);
  6997. mutex_lock(&submitting_lock);
  6998. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  6999. if (sshare->work->pool != pool)
  7000. continue;
  7001. HASH_DEL(stratum_shares, sshare);
  7002. work = sshare->work;
  7003. DL_APPEND(submit_waiting, work);
  7004. free(sshare);
  7005. ++resubmitted;
  7006. }
  7007. mutex_unlock(&submitting_lock);
  7008. mutex_unlock(&sshare_lock);
  7009. if (resubmitted) {
  7010. notifier_wake(submit_waiting_notifier);
  7011. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7012. }
  7013. }
  7014. static void clear_pool_work(struct pool *pool)
  7015. {
  7016. struct work *work, *tmp;
  7017. int cleared = 0;
  7018. mutex_lock(stgd_lock);
  7019. HASH_ITER(hh, staged_work, work, tmp) {
  7020. if (work->pool == pool) {
  7021. HASH_DEL(staged_work, work);
  7022. free_work(work);
  7023. cleared++;
  7024. staged_full = false;
  7025. }
  7026. }
  7027. mutex_unlock(stgd_lock);
  7028. }
  7029. static int cp_prio(void)
  7030. {
  7031. int prio;
  7032. cg_rlock(&control_lock);
  7033. prio = currentpool->prio;
  7034. cg_runlock(&control_lock);
  7035. return prio;
  7036. }
  7037. /* We only need to maintain a secondary pool connection when we need the
  7038. * capacity to get work from the backup pools while still on the primary */
  7039. static bool cnx_needed(struct pool *pool)
  7040. {
  7041. struct pool *cp;
  7042. if (pool->enabled != POOL_ENABLED)
  7043. return false;
  7044. /* Balance strategies need all pools online */
  7045. if (pool_strategy == POOL_BALANCE)
  7046. return true;
  7047. if (pool_strategy == POOL_LOADBALANCE)
  7048. return true;
  7049. /* Idle stratum pool needs something to kick it alive again */
  7050. if (pool->has_stratum && pool->idle)
  7051. return true;
  7052. /* Getwork pools without opt_fail_only need backup pools up to be able
  7053. * to leak shares */
  7054. cp = current_pool();
  7055. if (cp == pool)
  7056. return true;
  7057. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7058. return true;
  7059. /* Keep the connection open to allow any stray shares to be submitted
  7060. * on switching pools for 2 minutes. */
  7061. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7062. return true;
  7063. /* If the pool has only just come to life and is higher priority than
  7064. * the current pool keep the connection open so we can fail back to
  7065. * it. */
  7066. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7067. return true;
  7068. if (pool_unworkable(cp))
  7069. return true;
  7070. /* We've run out of work, bring anything back to life. */
  7071. if (no_work)
  7072. return true;
  7073. return false;
  7074. }
  7075. static void wait_lpcurrent(struct pool *pool);
  7076. static void pool_resus(struct pool *pool);
  7077. static void gen_stratum_work(struct pool *pool, struct work *work);
  7078. static void stratum_resumed(struct pool *pool)
  7079. {
  7080. if (!pool->stratum_notify)
  7081. return;
  7082. if (pool_tclear(pool, &pool->idle)) {
  7083. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7084. pool_resus(pool);
  7085. }
  7086. }
  7087. static bool supports_resume(struct pool *pool)
  7088. {
  7089. bool ret;
  7090. cg_rlock(&pool->data_lock);
  7091. ret = (pool->sessionid != NULL);
  7092. cg_runlock(&pool->data_lock);
  7093. return ret;
  7094. }
  7095. /* One stratum thread per pool that has stratum waits on the socket checking
  7096. * for new messages and for the integrity of the socket connection. We reset
  7097. * the connection based on the integrity of the receive side only as the send
  7098. * side will eventually expire data it fails to send. */
  7099. static void *stratum_thread(void *userdata)
  7100. {
  7101. struct pool *pool = (struct pool *)userdata;
  7102. pthread_detach(pthread_self());
  7103. char threadname[20];
  7104. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7105. RenameThread(threadname);
  7106. srand(time(NULL) + (intptr_t)userdata);
  7107. while (42) {
  7108. struct timeval timeout;
  7109. int sel_ret;
  7110. fd_set rd;
  7111. char *s;
  7112. int sock;
  7113. if (unlikely(!pool->has_stratum))
  7114. break;
  7115. sock = pool->sock;
  7116. /* Check to see whether we need to maintain this connection
  7117. * indefinitely or just bring it up when we switch to this
  7118. * pool */
  7119. if (sock == INVSOCK || (!sock_full(pool) && !cnx_needed(pool))) {
  7120. suspend_stratum(pool);
  7121. clear_stratum_shares(pool);
  7122. clear_pool_work(pool);
  7123. wait_lpcurrent(pool);
  7124. if (!restart_stratum(pool)) {
  7125. pool_died(pool);
  7126. while (!restart_stratum(pool)) {
  7127. if (pool->removed)
  7128. goto out;
  7129. cgsleep_ms(30000);
  7130. }
  7131. }
  7132. }
  7133. FD_ZERO(&rd);
  7134. FD_SET(sock, &rd);
  7135. timeout.tv_sec = 120;
  7136. timeout.tv_usec = 0;
  7137. /* If we fail to receive any notify messages for 2 minutes we
  7138. * assume the connection has been dropped and treat this pool
  7139. * as dead */
  7140. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7141. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7142. s = NULL;
  7143. } else
  7144. s = recv_line(pool);
  7145. if (!s) {
  7146. if (!pool->has_stratum)
  7147. break;
  7148. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7149. pool->getfail_occasions++;
  7150. total_go++;
  7151. mutex_lock(&pool->stratum_lock);
  7152. pool->stratum_active = pool->stratum_notify = false;
  7153. pool->sock = INVSOCK;
  7154. mutex_unlock(&pool->stratum_lock);
  7155. /* If the socket to our stratum pool disconnects, all
  7156. * submissions need to be discarded or resent. */
  7157. if (!supports_resume(pool))
  7158. clear_stratum_shares(pool);
  7159. else
  7160. resubmit_stratum_shares(pool);
  7161. clear_pool_work(pool);
  7162. if (pool == current_pool())
  7163. restart_threads();
  7164. if (restart_stratum(pool))
  7165. continue;
  7166. shutdown_stratum(pool);
  7167. pool_died(pool);
  7168. break;
  7169. }
  7170. /* Check this pool hasn't died while being a backup pool and
  7171. * has not had its idle flag cleared */
  7172. stratum_resumed(pool);
  7173. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7174. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7175. free(s);
  7176. if (pool->swork.clean) {
  7177. struct work *work = make_work();
  7178. /* Generate a single work item to update the current
  7179. * block database */
  7180. pool->swork.clean = false;
  7181. gen_stratum_work(pool, work);
  7182. /* Try to extract block height from coinbase scriptSig */
  7183. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7184. unsigned char cb_height_sz;
  7185. cb_height_sz = bin_height[-1];
  7186. if (cb_height_sz == 3) {
  7187. // FIXME: The block number will overflow this by AD 2173
  7188. uint32_t block_id = ((uint32_t*)work->data)[1];
  7189. uint32_t height = 0;
  7190. memcpy(&height, bin_height, 3);
  7191. height = le32toh(height);
  7192. have_block_height(block_id, height);
  7193. }
  7194. ++pool->work_restart_id;
  7195. if (test_work_current(work)) {
  7196. /* Only accept a work update if this stratum
  7197. * connection is from the current pool */
  7198. if (pool == current_pool()) {
  7199. restart_threads();
  7200. applog(
  7201. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7202. "Stratum from pool %d requested work update", pool->pool_no);
  7203. }
  7204. } else
  7205. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7206. free_work(work);
  7207. }
  7208. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7209. // More than 4 timmills past since requested transactions
  7210. timer_unset(&pool->swork.tv_transparency);
  7211. pool_set_opaque(pool, true);
  7212. }
  7213. }
  7214. out:
  7215. return NULL;
  7216. }
  7217. static void init_stratum_thread(struct pool *pool)
  7218. {
  7219. have_longpoll = true;
  7220. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7221. quit(1, "Failed to create stratum thread");
  7222. }
  7223. static void *longpoll_thread(void *userdata);
  7224. static bool stratum_works(struct pool *pool)
  7225. {
  7226. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7227. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7228. return false;
  7229. if (pool->stratum_active)
  7230. return true;
  7231. if (!initiate_stratum(pool))
  7232. return false;
  7233. return true;
  7234. }
  7235. static bool pool_active(struct pool *pool, bool pinging)
  7236. {
  7237. struct timeval tv_getwork, tv_getwork_reply;
  7238. bool ret = false;
  7239. json_t *val;
  7240. CURL *curl;
  7241. int rolltime;
  7242. char *rpc_req;
  7243. struct work *work;
  7244. enum pool_protocol proto;
  7245. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7246. /* This is the central point we activate stratum when we can */
  7247. curl = curl_easy_init();
  7248. if (unlikely(!curl)) {
  7249. applog(LOG_ERR, "CURL initialisation failed");
  7250. return false;
  7251. }
  7252. if (!(want_gbt || want_getwork))
  7253. goto nohttp;
  7254. work = make_work();
  7255. /* Probe for GBT support on first pass */
  7256. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7257. tryagain:
  7258. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7259. work->pool = pool;
  7260. if (!rpc_req)
  7261. goto out;
  7262. pool->probed = false;
  7263. cgtime(&tv_getwork);
  7264. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7265. true, false, &rolltime, pool, false);
  7266. cgtime(&tv_getwork_reply);
  7267. free(rpc_req);
  7268. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7269. * and if so, switch to that in preference to getwork if it works */
  7270. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7271. if (!pool->has_stratum) {
  7272. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7273. if (!pool->rpc_url)
  7274. pool->rpc_url = strdup(pool->stratum_url);
  7275. pool->has_stratum = true;
  7276. }
  7277. free_work(work);
  7278. if (val)
  7279. json_decref(val);
  7280. retry_stratum:
  7281. curl_easy_cleanup(curl);
  7282. /* We create the stratum thread for each pool just after
  7283. * successful authorisation. Once the init flag has been set
  7284. * we never unset it and the stratum thread is responsible for
  7285. * setting/unsetting the active flag */
  7286. bool init = pool_tset(pool, &pool->stratum_init);
  7287. if (!init) {
  7288. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7289. if (ret)
  7290. {
  7291. detect_algo = 2;
  7292. init_stratum_thread(pool);
  7293. }
  7294. else
  7295. pool_tclear(pool, &pool->stratum_init);
  7296. return ret;
  7297. }
  7298. return pool->stratum_active;
  7299. }
  7300. else if (pool->has_stratum)
  7301. shutdown_stratum(pool);
  7302. if (val) {
  7303. bool rc;
  7304. json_t *res;
  7305. res = json_object_get(val, "result");
  7306. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7307. goto badwork;
  7308. work->rolltime = rolltime;
  7309. rc = work_decode(pool, work, val);
  7310. if (rc) {
  7311. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7312. pool->pool_no, pool->rpc_url);
  7313. work->pool = pool;
  7314. copy_time(&work->tv_getwork, &tv_getwork);
  7315. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7316. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7317. calc_diff(work, 0);
  7318. update_last_work(work);
  7319. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7320. stage_work(work);
  7321. total_getworks++;
  7322. pool->getwork_requested++;
  7323. ret = true;
  7324. cgtime(&pool->tv_idle);
  7325. } else {
  7326. badwork:
  7327. json_decref(val);
  7328. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7329. pool->pool_no, pool->rpc_url);
  7330. pool->proto = proto = pool_protocol_fallback(proto);
  7331. if (PLP_NONE != proto)
  7332. goto tryagain;
  7333. free_work(work);
  7334. goto out;
  7335. }
  7336. json_decref(val);
  7337. if (proto != pool->proto) {
  7338. pool->proto = proto;
  7339. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7340. }
  7341. if (pool->lp_url)
  7342. goto out;
  7343. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7344. const struct blktmpl_longpoll_req *lp;
  7345. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7346. // NOTE: work_decode takes care of lp id
  7347. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7348. if (!pool->lp_url)
  7349. {
  7350. ret = false;
  7351. goto out;
  7352. }
  7353. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7354. }
  7355. else
  7356. if (pool->hdr_path && want_getwork) {
  7357. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7358. if (!pool->lp_url)
  7359. {
  7360. ret = false;
  7361. goto out;
  7362. }
  7363. pool->lp_proto = PLP_GETWORK;
  7364. } else
  7365. pool->lp_url = NULL;
  7366. if (want_longpoll && !pool->lp_started) {
  7367. pool->lp_started = true;
  7368. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7369. quit(1, "Failed to create pool longpoll thread");
  7370. }
  7371. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7372. pool->proto = proto;
  7373. goto tryagain;
  7374. } else {
  7375. free_work(work);
  7376. nohttp:
  7377. /* If we failed to parse a getwork, this could be a stratum
  7378. * url without the prefix stratum+tcp:// so let's check it */
  7379. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7380. pool->has_stratum = true;
  7381. goto retry_stratum;
  7382. }
  7383. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7384. pool->pool_no, pool->rpc_url);
  7385. if (!pinging)
  7386. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7387. }
  7388. out:
  7389. curl_easy_cleanup(curl);
  7390. return ret;
  7391. }
  7392. static void pool_resus(struct pool *pool)
  7393. {
  7394. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7395. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7396. else
  7397. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7398. }
  7399. static struct work *hash_pop(void)
  7400. {
  7401. struct work *work = NULL, *tmp;
  7402. int hc;
  7403. struct timespec ts;
  7404. retry:
  7405. mutex_lock(stgd_lock);
  7406. while (!HASH_COUNT(staged_work))
  7407. {
  7408. if (unlikely(staged_full))
  7409. {
  7410. if (likely(opt_queue < 10 + mining_threads))
  7411. {
  7412. ++opt_queue;
  7413. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7414. }
  7415. else
  7416. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7417. staged_full = false; // Let it fill up before triggering an underrun again
  7418. no_work = true;
  7419. }
  7420. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7421. pthread_cond_signal(&gws_cond);
  7422. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7423. {
  7424. run_cmd(cmd_idle);
  7425. pthread_cond_signal(&gws_cond);
  7426. pthread_cond_wait(&getq->cond, stgd_lock);
  7427. }
  7428. }
  7429. no_work = false;
  7430. hc = HASH_COUNT(staged_work);
  7431. /* Find clone work if possible, to allow masters to be reused */
  7432. if (hc > staged_rollable) {
  7433. HASH_ITER(hh, staged_work, work, tmp) {
  7434. if (!work_rollable(work))
  7435. break;
  7436. }
  7437. } else
  7438. work = staged_work;
  7439. if (can_roll(work) && should_roll(work))
  7440. {
  7441. // Instead of consuming it, force it to be cloned and grab the clone
  7442. mutex_unlock(stgd_lock);
  7443. clone_available();
  7444. goto retry;
  7445. }
  7446. HASH_DEL(staged_work, work);
  7447. if (work_rollable(work))
  7448. staged_rollable--;
  7449. /* Signal the getwork scheduler to look for more work */
  7450. pthread_cond_signal(&gws_cond);
  7451. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7452. pthread_cond_signal(&getq->cond);
  7453. mutex_unlock(stgd_lock);
  7454. work->pool->last_work_time = time(NULL);
  7455. cgtime(&work->pool->tv_last_work_time);
  7456. return work;
  7457. }
  7458. /* Clones work by rolling it if possible, and returning a clone instead of the
  7459. * original work item which gets staged again to possibly be rolled again in
  7460. * the future */
  7461. static struct work *clone_work(struct work *work)
  7462. {
  7463. int mrs = mining_threads + opt_queue - total_staged();
  7464. struct work *work_clone;
  7465. bool cloned;
  7466. if (mrs < 1)
  7467. return work;
  7468. cloned = false;
  7469. work_clone = make_clone(work);
  7470. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7471. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7472. stage_work(work_clone);
  7473. roll_work(work);
  7474. work_clone = make_clone(work);
  7475. /* Roll it again to prevent duplicates should this be used
  7476. * directly later on */
  7477. roll_work(work);
  7478. cloned = true;
  7479. }
  7480. if (cloned) {
  7481. stage_work(work);
  7482. return work_clone;
  7483. }
  7484. free_work(work_clone);
  7485. return work;
  7486. }
  7487. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7488. {
  7489. unsigned char hash1[32];
  7490. sha256(data, len, hash1);
  7491. sha256(hash1, 32, hash);
  7492. }
  7493. /* Diff 1 is a 256 bit unsigned integer of
  7494. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7495. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7496. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7497. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7498. {
  7499. uint64_t *data64, h64;
  7500. double d64;
  7501. d64 = diffone;
  7502. d64 /= diff;
  7503. d64 = ceil(d64);
  7504. h64 = d64;
  7505. memset(target, 0, 32);
  7506. if (d64 < 18446744073709551616.0) {
  7507. unsigned char *rtarget = target;
  7508. memset(rtarget, 0, 32);
  7509. if (opt_scrypt)
  7510. data64 = (uint64_t *)(rtarget + 2);
  7511. else
  7512. data64 = (uint64_t *)(rtarget + 4);
  7513. *data64 = htobe64(h64);
  7514. } else {
  7515. /* Support for the classic all FFs just-below-1 diff */
  7516. if (opt_scrypt)
  7517. memset(&target[2], 0xff, 30);
  7518. else
  7519. memset(&target[4], 0xff, 28);
  7520. }
  7521. }
  7522. void set_target(unsigned char *dest_target, double diff)
  7523. {
  7524. unsigned char rtarget[32];
  7525. bdiff_target_leadzero(rtarget, diff);
  7526. swab256(dest_target, rtarget);
  7527. if (opt_debug) {
  7528. char htarget[65];
  7529. bin2hex(htarget, rtarget, 32);
  7530. applog(LOG_DEBUG, "Generated target %s", htarget);
  7531. }
  7532. }
  7533. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7534. {
  7535. *dst = *src;
  7536. dst->job_id = strdup(src->job_id);
  7537. bytes_cpy(&dst->coinbase, &src->coinbase);
  7538. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7539. }
  7540. void stratum_work_clean(struct stratum_work * const swork)
  7541. {
  7542. free(swork->job_id);
  7543. bytes_free(&swork->coinbase);
  7544. bytes_free(&swork->merkle_bin);
  7545. }
  7546. /* Generates stratum based work based on the most recent notify information
  7547. * from the pool. This will keep generating work while a pool is down so we use
  7548. * other means to detect when the pool has died in stratum_thread */
  7549. static void gen_stratum_work(struct pool *pool, struct work *work)
  7550. {
  7551. clean_work(work);
  7552. cg_wlock(&pool->data_lock);
  7553. pool->swork.data_lock_p = &pool->data_lock;
  7554. bytes_resize(&work->nonce2, pool->n2size);
  7555. if (pool->nonce2sz < pool->n2size)
  7556. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7557. memcpy(bytes_buf(&work->nonce2),
  7558. #ifdef WORDS_BIGENDIAN
  7559. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7560. &((char*)&pool->nonce2)[pool->nonce2off],
  7561. #else
  7562. &pool->nonce2,
  7563. #endif
  7564. pool->nonce2sz);
  7565. pool->nonce2++;
  7566. work->pool = pool;
  7567. work->work_restart_id = work->pool->work_restart_id;
  7568. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7569. cgtime(&work->tv_staged);
  7570. }
  7571. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7572. {
  7573. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7574. uint8_t *merkle_bin;
  7575. uint32_t *data32, *swap32;
  7576. int i;
  7577. /* Generate coinbase */
  7578. coinbase = bytes_buf(&swork->coinbase);
  7579. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7580. /* Downgrade to a read lock to read off the variables */
  7581. if (swork->data_lock_p)
  7582. cg_dwlock(swork->data_lock_p);
  7583. /* Generate merkle root */
  7584. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7585. memcpy(merkle_sha, merkle_root, 32);
  7586. merkle_bin = bytes_buf(&swork->merkle_bin);
  7587. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7588. memcpy(merkle_sha + 32, merkle_bin, 32);
  7589. gen_hash(merkle_sha, merkle_root, 64);
  7590. memcpy(merkle_sha, merkle_root, 32);
  7591. }
  7592. data32 = (uint32_t *)merkle_sha;
  7593. swap32 = (uint32_t *)merkle_root;
  7594. flip32(swap32, data32);
  7595. memcpy(&work->data[0], swork->header1, 36);
  7596. memcpy(&work->data[36], merkle_root, 32);
  7597. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7598. memcpy(&work->data[72], swork->diffbits, 4);
  7599. memset(&work->data[76], 0, 4); // nonce
  7600. memcpy(&work->data[80], workpadding_bin, 48);
  7601. /* Store the stratum work diff to check it still matches the pool's
  7602. * stratum diff when submitting shares */
  7603. work->sdiff = swork->diff;
  7604. /* Copy parameters required for share submission */
  7605. work->job_id = strdup(swork->job_id);
  7606. work->nonce1 = strdup(nonce1);
  7607. if (swork->data_lock_p)
  7608. cg_runlock(swork->data_lock_p);
  7609. if (opt_debug)
  7610. {
  7611. char header[161];
  7612. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7613. bin2hex(header, work->data, 80);
  7614. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7615. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7616. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7617. }
  7618. calc_midstate(work);
  7619. set_target(work->target, work->sdiff);
  7620. local_work++;
  7621. work->stratum = true;
  7622. work->blk.nonce = 0;
  7623. work->id = total_work++;
  7624. work->longpoll = false;
  7625. work->getwork_mode = GETWORK_MODE_STRATUM;
  7626. /* Nominally allow a driver to ntime roll 60 seconds */
  7627. work->drv_rolllimit = 60;
  7628. calc_diff(work, 0);
  7629. }
  7630. void request_work(struct thr_info *thr)
  7631. {
  7632. struct cgpu_info *cgpu = thr->cgpu;
  7633. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7634. /* Tell the watchdog thread this thread is waiting on getwork and
  7635. * should not be restarted */
  7636. thread_reportout(thr);
  7637. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7638. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7639. {
  7640. if (proc->threads)
  7641. break;
  7642. thread_reportout(proc->thr[0]);
  7643. }
  7644. cgtime(&dev_stats->_get_start);
  7645. }
  7646. // FIXME: Make this non-blocking (and remove HACK above)
  7647. struct work *get_work(struct thr_info *thr)
  7648. {
  7649. const int thr_id = thr->id;
  7650. struct cgpu_info *cgpu = thr->cgpu;
  7651. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7652. struct cgminer_stats *pool_stats;
  7653. struct timeval tv_get;
  7654. struct work *work = NULL;
  7655. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7656. while (!work) {
  7657. work = hash_pop();
  7658. if (stale_work(work, false)) {
  7659. staged_full = false; // It wasn't really full, since it was stale :(
  7660. discard_work(work);
  7661. work = NULL;
  7662. wake_gws();
  7663. }
  7664. }
  7665. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7666. cgpu->proc_repr, work->id, thr_id);
  7667. work->thr_id = thr_id;
  7668. thread_reportin(thr);
  7669. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7670. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7671. {
  7672. if (proc->threads)
  7673. break;
  7674. thread_reportin(proc->thr[0]);
  7675. }
  7676. work->mined = true;
  7677. work->blk.nonce = 0;
  7678. cgtime(&tv_get);
  7679. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7680. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7681. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7682. dev_stats->getwork_wait_max = tv_get;
  7683. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7684. dev_stats->getwork_wait_min = tv_get;
  7685. ++dev_stats->getwork_calls;
  7686. pool_stats = &(work->pool->cgminer_stats);
  7687. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7688. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7689. pool_stats->getwork_wait_max = tv_get;
  7690. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7691. pool_stats->getwork_wait_min = tv_get;
  7692. ++pool_stats->getwork_calls;
  7693. return work;
  7694. }
  7695. static
  7696. void _submit_work_async(struct work *work)
  7697. {
  7698. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7699. mutex_lock(&submitting_lock);
  7700. ++total_submitting;
  7701. DL_APPEND(submit_waiting, work);
  7702. mutex_unlock(&submitting_lock);
  7703. notifier_wake(submit_waiting_notifier);
  7704. }
  7705. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7706. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7707. {
  7708. if (tv_work_found)
  7709. copy_time(&work->tv_work_found, tv_work_found);
  7710. _submit_work_async(work);
  7711. }
  7712. void inc_hw_errors2(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p)
  7713. {
  7714. struct cgpu_info * const cgpu = thr->cgpu;
  7715. if (bad_nonce_p)
  7716. {
  7717. if (bad_nonce_p == UNKNOWN_NONCE)
  7718. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7719. cgpu->proc_repr);
  7720. else
  7721. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7722. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7723. }
  7724. mutex_lock(&stats_lock);
  7725. hw_errors++;
  7726. ++cgpu->hw_errors;
  7727. if (bad_nonce_p)
  7728. {
  7729. ++total_bad_nonces;
  7730. ++cgpu->bad_nonces;
  7731. }
  7732. mutex_unlock(&stats_lock);
  7733. if (thr->cgpu->drv->hw_error)
  7734. thr->cgpu->drv->hw_error(thr);
  7735. }
  7736. void inc_hw_errors(struct thr_info *thr, const struct work *work, const uint32_t bad_nonce)
  7737. {
  7738. inc_hw_errors2(thr, work, work ? &bad_nonce : NULL);
  7739. }
  7740. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7741. {
  7742. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7743. hash_data(work->hash, work->data);
  7744. if (hash2_32[7] != 0)
  7745. return TNR_BAD;
  7746. if (!checktarget)
  7747. return TNR_GOOD;
  7748. if (!hash_target_check_v(work->hash, work->target))
  7749. return TNR_HIGH;
  7750. return TNR_GOOD;
  7751. }
  7752. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7753. {
  7754. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7755. *work_nonce = htole32(nonce);
  7756. #ifdef USE_SCRYPT
  7757. if (opt_scrypt)
  7758. // NOTE: Depends on scrypt_test return matching enum values
  7759. return scrypt_test(work->data, work->target, nonce);
  7760. #endif
  7761. return hashtest2(work, checktarget);
  7762. }
  7763. /* Returns true if nonce for work was a valid share */
  7764. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7765. {
  7766. return submit_noffset_nonce(thr, work, nonce, 0);
  7767. }
  7768. /* Allows drivers to submit work items where the driver has changed the ntime
  7769. * value by noffset. Must be only used with a work protocol that does not ntime
  7770. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7771. * the original work struct, but the copy of it only. */
  7772. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7773. int noffset)
  7774. {
  7775. struct work *work = make_work();
  7776. _copy_work(work, work_in, noffset);
  7777. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7778. struct timeval tv_work_found;
  7779. enum test_nonce2_result res;
  7780. bool ret = true;
  7781. thread_reportout(thr);
  7782. cgtime(&tv_work_found);
  7783. *work_nonce = htole32(nonce);
  7784. work->thr_id = thr->id;
  7785. /* Do one last check before attempting to submit the work */
  7786. /* Side effect: sets work->data for us */
  7787. res = test_nonce2(work, nonce);
  7788. if (unlikely(res == TNR_BAD))
  7789. {
  7790. inc_hw_errors(thr, work, nonce);
  7791. ret = false;
  7792. goto out;
  7793. }
  7794. mutex_lock(&stats_lock);
  7795. total_diff1++;
  7796. thr->cgpu->diff1++;
  7797. work->pool->diff1++;
  7798. thr->cgpu->last_device_valid_work = time(NULL);
  7799. mutex_unlock(&stats_lock);
  7800. if (noncelog_file)
  7801. noncelog(work);
  7802. if (res == TNR_HIGH)
  7803. {
  7804. // Share above target, normal
  7805. /* Check the diff of the share, even if it didn't reach the
  7806. * target, just to set the best share value if it's higher. */
  7807. share_diff(work);
  7808. goto out;
  7809. }
  7810. submit_work_async2(work, &tv_work_found);
  7811. work = NULL; // Taken by submit_work_async2
  7812. out:
  7813. if (work)
  7814. free_work(work);
  7815. thread_reportin(thr);
  7816. return ret;
  7817. }
  7818. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7819. {
  7820. if (wdiff->tv_sec > opt_scantime ||
  7821. work->blk.nonce >= MAXTHREADS - hashes ||
  7822. hashes >= 0xfffffffe ||
  7823. stale_work(work, false))
  7824. return true;
  7825. return false;
  7826. }
  7827. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7828. {
  7829. struct cgpu_info *proc = thr->cgpu;
  7830. if (proc->threads > 1)
  7831. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7832. else
  7833. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7834. }
  7835. // Called by asynchronous minerloops, when they find their processor should be disabled
  7836. void mt_disable_start(struct thr_info *mythr)
  7837. {
  7838. struct cgpu_info *cgpu = mythr->cgpu;
  7839. struct device_drv *drv = cgpu->drv;
  7840. if (drv->thread_disable)
  7841. drv->thread_disable(mythr);
  7842. hashmeter2(mythr);
  7843. if (mythr->prev_work)
  7844. free_work(mythr->prev_work);
  7845. mythr->prev_work = mythr->work;
  7846. mythr->work = NULL;
  7847. mythr->_job_transition_in_progress = false;
  7848. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7849. mythr->rolling = mythr->cgpu->rolling = 0;
  7850. thread_reportout(mythr);
  7851. mythr->_mt_disable_called = true;
  7852. }
  7853. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7854. * the driver tells us it's full so that it may extract the work item using
  7855. * the get_queued() function which adds it to the hashtable on
  7856. * cgpu->queued_work. */
  7857. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7858. {
  7859. thread_reportout(mythr);
  7860. do {
  7861. bool need_work;
  7862. /* Do this lockless just to know if we need more unqueued work. */
  7863. need_work = (!cgpu->unqueued_work);
  7864. /* get_work is a blocking function so do it outside of lock
  7865. * to prevent deadlocks with other locks. */
  7866. if (need_work) {
  7867. struct work *work = get_work(mythr);
  7868. wr_lock(&cgpu->qlock);
  7869. /* Check we haven't grabbed work somehow between
  7870. * checking and picking up the lock. */
  7871. if (likely(!cgpu->unqueued_work))
  7872. cgpu->unqueued_work = work;
  7873. else
  7874. need_work = false;
  7875. wr_unlock(&cgpu->qlock);
  7876. if (unlikely(!need_work))
  7877. discard_work(work);
  7878. }
  7879. /* The queue_full function should be used by the driver to
  7880. * actually place work items on the physical device if it
  7881. * does have a queue. */
  7882. } while (drv->queue_full && !drv->queue_full(cgpu));
  7883. }
  7884. /* Add a work item to a cgpu's queued hashlist */
  7885. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  7886. {
  7887. cgpu->queued_count++;
  7888. HASH_ADD_INT(cgpu->queued_work, id, work);
  7889. }
  7890. /* This function is for retrieving one work item from the unqueued pointer and
  7891. * adding it to the hashtable of queued work. Code using this function must be
  7892. * able to handle NULL as a return which implies there is no work available. */
  7893. struct work *get_queued(struct cgpu_info *cgpu)
  7894. {
  7895. struct work *work = NULL;
  7896. wr_lock(&cgpu->qlock);
  7897. if (cgpu->unqueued_work) {
  7898. work = cgpu->unqueued_work;
  7899. __add_queued(cgpu, work);
  7900. cgpu->unqueued_work = NULL;
  7901. }
  7902. wr_unlock(&cgpu->qlock);
  7903. return work;
  7904. }
  7905. void add_queued(struct cgpu_info *cgpu, struct work *work)
  7906. {
  7907. wr_lock(&cgpu->qlock);
  7908. __add_queued(cgpu, work);
  7909. wr_unlock(&cgpu->qlock);
  7910. }
  7911. /* Get fresh work and add it to cgpu's queued hashlist */
  7912. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  7913. {
  7914. struct work *work = get_work(thr);
  7915. add_queued(cgpu, work);
  7916. return work;
  7917. }
  7918. /* This function is for finding an already queued work item in the
  7919. * given que hashtable. Code using this function must be able
  7920. * to handle NULL as a return which implies there is no matching work.
  7921. * The calling function must lock access to the que if it is required.
  7922. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7923. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7924. {
  7925. struct work *work, *tmp, *ret = NULL;
  7926. HASH_ITER(hh, que, work, tmp) {
  7927. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  7928. memcmp(work->data + offset, data, datalen) == 0) {
  7929. ret = work;
  7930. break;
  7931. }
  7932. }
  7933. return ret;
  7934. }
  7935. /* This function is for finding an already queued work item in the
  7936. * device's queued_work hashtable. Code using this function must be able
  7937. * to handle NULL as a return which implies there is no matching work.
  7938. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7939. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7940. {
  7941. struct work *ret;
  7942. rd_lock(&cgpu->qlock);
  7943. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7944. rd_unlock(&cgpu->qlock);
  7945. return ret;
  7946. }
  7947. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7948. {
  7949. struct work *work, *ret = NULL;
  7950. rd_lock(&cgpu->qlock);
  7951. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7952. if (work)
  7953. ret = copy_work(work);
  7954. rd_unlock(&cgpu->qlock);
  7955. return ret;
  7956. }
  7957. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  7958. {
  7959. cgpu->queued_count--;
  7960. HASH_DEL(cgpu->queued_work, work);
  7961. }
  7962. /* This function should be used by queued device drivers when they're sure
  7963. * the work struct is no longer in use. */
  7964. void work_completed(struct cgpu_info *cgpu, struct work *work)
  7965. {
  7966. wr_lock(&cgpu->qlock);
  7967. __work_completed(cgpu, work);
  7968. wr_unlock(&cgpu->qlock);
  7969. free_work(work);
  7970. }
  7971. /* Combines find_queued_work_bymidstate and work_completed in one function
  7972. * withOUT destroying the work so the driver must free it. */
  7973. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7974. {
  7975. struct work *work;
  7976. wr_lock(&cgpu->qlock);
  7977. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7978. if (work)
  7979. __work_completed(cgpu, work);
  7980. wr_unlock(&cgpu->qlock);
  7981. return work;
  7982. }
  7983. static void flush_queue(struct cgpu_info *cgpu)
  7984. {
  7985. struct work *work = NULL;
  7986. wr_lock(&cgpu->qlock);
  7987. work = cgpu->unqueued_work;
  7988. cgpu->unqueued_work = NULL;
  7989. wr_unlock(&cgpu->qlock);
  7990. if (work) {
  7991. free_work(work);
  7992. applog(LOG_DEBUG, "Discarded queued work item");
  7993. }
  7994. }
  7995. /* This version of hash work is for devices that are fast enough to always
  7996. * perform a full nonce range and need a queue to maintain the device busy.
  7997. * Work creation and destruction is not done from within this function
  7998. * directly. */
  7999. void hash_queued_work(struct thr_info *mythr)
  8000. {
  8001. const long cycle = opt_log_interval / 5 ? : 1;
  8002. struct timeval tv_start = {0, 0}, tv_end;
  8003. struct cgpu_info *cgpu = mythr->cgpu;
  8004. struct device_drv *drv = cgpu->drv;
  8005. const int thr_id = mythr->id;
  8006. int64_t hashes_done = 0;
  8007. if (unlikely(cgpu->deven != DEV_ENABLED))
  8008. mt_disable(mythr);
  8009. while (likely(!cgpu->shutdown)) {
  8010. struct timeval diff;
  8011. int64_t hashes;
  8012. fill_queue(mythr, cgpu, drv, thr_id);
  8013. thread_reportin(mythr);
  8014. hashes = drv->scanwork(mythr);
  8015. /* Reset the bool here in case the driver looks for it
  8016. * synchronously in the scanwork loop. */
  8017. mythr->work_restart = false;
  8018. if (unlikely(hashes == -1 )) {
  8019. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8020. cgpu->deven = DEV_DISABLED;
  8021. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8022. mt_disable(mythr);
  8023. }
  8024. hashes_done += hashes;
  8025. cgtime(&tv_end);
  8026. timersub(&tv_end, &tv_start, &diff);
  8027. if (diff.tv_sec >= cycle) {
  8028. hashmeter(thr_id, &diff, hashes_done);
  8029. hashes_done = 0;
  8030. copy_time(&tv_start, &tv_end);
  8031. }
  8032. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8033. mt_disable(mythr);
  8034. if (unlikely(mythr->work_restart)) {
  8035. flush_queue(cgpu);
  8036. if (drv->flush_work)
  8037. drv->flush_work(cgpu);
  8038. }
  8039. }
  8040. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8041. }
  8042. // Called by minerloop, when it is re-enabling a processor
  8043. void mt_disable_finish(struct thr_info *mythr)
  8044. {
  8045. struct device_drv *drv = mythr->cgpu->drv;
  8046. thread_reportin(mythr);
  8047. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8048. if (drv->thread_enable)
  8049. drv->thread_enable(mythr);
  8050. mythr->_mt_disable_called = false;
  8051. }
  8052. // Called by synchronous minerloops, when they find their processor should be disabled
  8053. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8054. void mt_disable(struct thr_info *mythr)
  8055. {
  8056. const struct cgpu_info * const cgpu = mythr->cgpu;
  8057. mt_disable_start(mythr);
  8058. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8059. do {
  8060. notifier_read(mythr->notifier);
  8061. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8062. mt_disable_finish(mythr);
  8063. }
  8064. enum {
  8065. STAT_SLEEP_INTERVAL = 1,
  8066. STAT_CTR_INTERVAL = 10000000,
  8067. FAILURE_INTERVAL = 30,
  8068. };
  8069. /* Stage another work item from the work returned in a longpoll */
  8070. 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)
  8071. {
  8072. bool rc;
  8073. work->rolltime = rolltime;
  8074. rc = work_decode(pool, work, val);
  8075. if (unlikely(!rc)) {
  8076. applog(LOG_ERR, "Could not convert longpoll data to work");
  8077. free_work(work);
  8078. return;
  8079. }
  8080. total_getworks++;
  8081. pool->getwork_requested++;
  8082. work->pool = pool;
  8083. copy_time(&work->tv_getwork, tv_lp);
  8084. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8085. calc_diff(work, 0);
  8086. if (pool->enabled == POOL_REJECTING)
  8087. work->mandatory = true;
  8088. work->longpoll = true;
  8089. work->getwork_mode = GETWORK_MODE_LP;
  8090. update_last_work(work);
  8091. /* We'll be checking this work item twice, but we already know it's
  8092. * from a new block so explicitly force the new block detection now
  8093. * rather than waiting for it to hit the stage thread. This also
  8094. * allows testwork to know whether LP discovered the block or not. */
  8095. test_work_current(work);
  8096. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8097. * the longpoll work from a pool that has been rejecting shares as a
  8098. * way to detect when the pool has recovered.
  8099. */
  8100. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8101. free_work(work);
  8102. return;
  8103. }
  8104. work = clone_work(work);
  8105. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8106. stage_work(work);
  8107. applog(LOG_DEBUG, "Converted longpoll data to work");
  8108. }
  8109. /* If we want longpoll, enable it for the chosen default pool, or, if
  8110. * the pool does not support longpoll, find the first one that does
  8111. * and use its longpoll support */
  8112. static struct pool *select_longpoll_pool(struct pool *cp)
  8113. {
  8114. int i;
  8115. if (cp->lp_url)
  8116. return cp;
  8117. for (i = 0; i < total_pools; i++) {
  8118. struct pool *pool = pools[i];
  8119. if (pool->has_stratum || pool->lp_url)
  8120. return pool;
  8121. }
  8122. return NULL;
  8123. }
  8124. /* This will make the longpoll thread wait till it's the current pool, or it
  8125. * has been flagged as rejecting, before attempting to open any connections.
  8126. */
  8127. static void wait_lpcurrent(struct pool *pool)
  8128. {
  8129. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8130. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8131. pool_strategy != POOL_BALANCE))) {
  8132. mutex_lock(&lp_lock);
  8133. pthread_cond_wait(&lp_cond, &lp_lock);
  8134. mutex_unlock(&lp_lock);
  8135. }
  8136. }
  8137. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8138. struct pool *pool = vpool;
  8139. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8140. pool->lp_socket = sock;
  8141. return sock;
  8142. }
  8143. static void *longpoll_thread(void *userdata)
  8144. {
  8145. struct pool *cp = (struct pool *)userdata;
  8146. /* This *pool is the source of the actual longpoll, not the pool we've
  8147. * tied it to */
  8148. struct timeval start, reply, end;
  8149. struct pool *pool = NULL;
  8150. char threadname[20];
  8151. CURL *curl = NULL;
  8152. int failures = 0;
  8153. char *lp_url;
  8154. int rolltime;
  8155. #ifndef HAVE_PTHREAD_CANCEL
  8156. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8157. #endif
  8158. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8159. RenameThread(threadname);
  8160. curl = curl_easy_init();
  8161. if (unlikely(!curl)) {
  8162. applog(LOG_ERR, "CURL initialisation failed");
  8163. return NULL;
  8164. }
  8165. retry_pool:
  8166. pool = select_longpoll_pool(cp);
  8167. if (!pool) {
  8168. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8169. while (!pool) {
  8170. cgsleep_ms(60000);
  8171. pool = select_longpoll_pool(cp);
  8172. }
  8173. }
  8174. if (pool->has_stratum) {
  8175. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8176. cp->rpc_url, pool->rpc_url);
  8177. goto out;
  8178. }
  8179. /* Any longpoll from any pool is enough for this to be true */
  8180. have_longpoll = true;
  8181. wait_lpcurrent(cp);
  8182. {
  8183. lp_url = pool->lp_url;
  8184. if (cp == pool)
  8185. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8186. else
  8187. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8188. }
  8189. while (42) {
  8190. json_t *val, *soval;
  8191. struct work *work = make_work();
  8192. char *lpreq;
  8193. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8194. work->pool = pool;
  8195. if (!lpreq)
  8196. {
  8197. free_work(work);
  8198. goto lpfail;
  8199. }
  8200. wait_lpcurrent(cp);
  8201. cgtime(&start);
  8202. /* Longpoll connections can be persistent for a very long time
  8203. * and any number of issues could have come up in the meantime
  8204. * so always establish a fresh connection instead of relying on
  8205. * a persistent one. */
  8206. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8207. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8208. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8209. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8210. lpreq, false, true, &rolltime, pool, false);
  8211. pool->lp_socket = CURL_SOCKET_BAD;
  8212. cgtime(&reply);
  8213. free(lpreq);
  8214. if (likely(val)) {
  8215. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8216. if (soval)
  8217. pool->submit_old = json_is_true(soval);
  8218. else
  8219. pool->submit_old = false;
  8220. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8221. failures = 0;
  8222. json_decref(val);
  8223. } else {
  8224. /* Some pools regularly drop the longpoll request so
  8225. * only see this as longpoll failure if it happens
  8226. * immediately and just restart it the rest of the
  8227. * time. */
  8228. cgtime(&end);
  8229. free_work(work);
  8230. if (end.tv_sec - start.tv_sec > 30)
  8231. continue;
  8232. if (failures == 1)
  8233. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8234. lpfail:
  8235. cgsleep_ms(30000);
  8236. }
  8237. if (pool != cp) {
  8238. pool = select_longpoll_pool(cp);
  8239. if (pool->has_stratum) {
  8240. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8241. cp->rpc_url, pool->rpc_url);
  8242. break;
  8243. }
  8244. if (unlikely(!pool))
  8245. goto retry_pool;
  8246. }
  8247. if (unlikely(pool->removed))
  8248. break;
  8249. }
  8250. out:
  8251. curl_easy_cleanup(curl);
  8252. return NULL;
  8253. }
  8254. static void stop_longpoll(void)
  8255. {
  8256. int i;
  8257. want_longpoll = false;
  8258. for (i = 0; i < total_pools; ++i)
  8259. {
  8260. struct pool *pool = pools[i];
  8261. if (unlikely(!pool->lp_started))
  8262. continue;
  8263. pool->lp_started = false;
  8264. pthread_cancel(pool->longpoll_thread);
  8265. }
  8266. have_longpoll = false;
  8267. }
  8268. static void start_longpoll(void)
  8269. {
  8270. int i;
  8271. want_longpoll = true;
  8272. for (i = 0; i < total_pools; ++i)
  8273. {
  8274. struct pool *pool = pools[i];
  8275. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8276. continue;
  8277. pool->lp_started = true;
  8278. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8279. quit(1, "Failed to create pool longpoll thread");
  8280. }
  8281. }
  8282. void reinit_device(struct cgpu_info *cgpu)
  8283. {
  8284. if (cgpu->drv->reinit_device)
  8285. cgpu->drv->reinit_device(cgpu);
  8286. }
  8287. static struct timeval rotate_tv;
  8288. /* We reap curls if they are unused for over a minute */
  8289. static void reap_curl(struct pool *pool)
  8290. {
  8291. struct curl_ent *ent, *iter;
  8292. struct timeval now;
  8293. int reaped = 0;
  8294. cgtime(&now);
  8295. mutex_lock(&pool->pool_lock);
  8296. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8297. if (pool->curls < 2)
  8298. break;
  8299. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8300. reaped++;
  8301. pool->curls--;
  8302. LL_DELETE(pool->curllist, ent);
  8303. curl_easy_cleanup(ent->curl);
  8304. free(ent);
  8305. }
  8306. }
  8307. mutex_unlock(&pool->pool_lock);
  8308. if (reaped)
  8309. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8310. }
  8311. static void *watchpool_thread(void __maybe_unused *userdata)
  8312. {
  8313. int intervals = 0;
  8314. #ifndef HAVE_PTHREAD_CANCEL
  8315. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8316. #endif
  8317. RenameThread("watchpool");
  8318. while (42) {
  8319. struct timeval now;
  8320. int i;
  8321. if (++intervals > 20)
  8322. intervals = 0;
  8323. cgtime(&now);
  8324. for (i = 0; i < total_pools; i++) {
  8325. struct pool *pool = pools[i];
  8326. if (!opt_benchmark)
  8327. reap_curl(pool);
  8328. /* Get a rolling utility per pool over 10 mins */
  8329. if (intervals > 19) {
  8330. int shares = pool->diff1 - pool->last_shares;
  8331. pool->last_shares = pool->diff1;
  8332. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8333. pool->shares = pool->utility;
  8334. }
  8335. if (pool->enabled == POOL_DISABLED)
  8336. continue;
  8337. /* Don't start testing any pools if the test threads
  8338. * from startup are still doing their first attempt. */
  8339. if (unlikely(pool->testing)) {
  8340. pthread_join(pool->test_thread, NULL);
  8341. }
  8342. /* Test pool is idle once every minute */
  8343. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8344. cgtime(&pool->tv_idle);
  8345. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8346. pool_resus(pool);
  8347. }
  8348. /* Only switch pools if the failback pool has been
  8349. * alive for more than 5 minutes to prevent
  8350. * intermittently failing pools from being used. */
  8351. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8352. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8353. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8354. pool->pool_no, pool->rpc_url);
  8355. switch_pools(NULL);
  8356. }
  8357. }
  8358. if (current_pool()->idle)
  8359. switch_pools(NULL);
  8360. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8361. cgtime(&rotate_tv);
  8362. switch_pools(NULL);
  8363. }
  8364. cgsleep_ms(30000);
  8365. }
  8366. return NULL;
  8367. }
  8368. void mt_enable(struct thr_info *thr)
  8369. {
  8370. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8371. notifier_wake(thr->notifier);
  8372. }
  8373. void proc_enable(struct cgpu_info *cgpu)
  8374. {
  8375. int j;
  8376. cgpu->deven = DEV_ENABLED;
  8377. for (j = cgpu->threads ?: 1; j--; )
  8378. mt_enable(cgpu->thr[j]);
  8379. }
  8380. #define device_recovered(cgpu) proc_enable(cgpu)
  8381. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8382. {
  8383. const struct device_drv * const drv = cgpu->drv;
  8384. struct string_elist *setstr_elist;
  8385. const char *p, *p2;
  8386. char replybuf[0x2000];
  8387. size_t L;
  8388. DL_FOREACH(opt_set_device_list, setstr_elist)
  8389. {
  8390. const char * const setstr = setstr_elist->string;
  8391. p = strchr(setstr, ':');
  8392. if (!p)
  8393. p = setstr;
  8394. {
  8395. L = p - setstr;
  8396. char pattern[L + 1];
  8397. if (L)
  8398. memcpy(pattern, setstr, L);
  8399. pattern[L] = '\0';
  8400. if (!cgpu_match(pattern, cgpu))
  8401. continue;
  8402. }
  8403. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8404. cgpu->proc_repr, __func__, setstr);
  8405. if (!drv->set_device)
  8406. {
  8407. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8408. cgpu->proc_repr, setstr);
  8409. continue;
  8410. }
  8411. if (p[0] == ':')
  8412. ++p;
  8413. p2 = strchr(p, '=');
  8414. if (!p2)
  8415. {
  8416. L = strlen(p);
  8417. p2 = "";
  8418. }
  8419. else
  8420. {
  8421. L = p2 - p;
  8422. ++p2;
  8423. }
  8424. char opt[L + 1];
  8425. if (L)
  8426. memcpy(opt, p, L);
  8427. opt[L] = '\0';
  8428. L = strlen(p2);
  8429. char setval[L + 1];
  8430. if (L)
  8431. memcpy(setval, p2, L);
  8432. setval[L] = '\0';
  8433. p = drv->set_device(cgpu, opt, setval, replybuf);
  8434. if (p)
  8435. applog(LOG_WARNING, "%"PRIpreprv": Applying rule %s: %s",
  8436. cgpu->proc_repr, setstr, p);
  8437. else
  8438. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s",
  8439. cgpu->proc_repr, setstr);
  8440. }
  8441. cgpu->already_set_defaults = true;
  8442. }
  8443. void drv_set_defaults(const struct device_drv * const drv, char *(*set_func)(struct cgpu_info *, char *, char *, char *), void *userp)
  8444. {
  8445. struct device_drv dummy_drv = *drv;
  8446. struct cgpu_info dummy_cgpu = {
  8447. .drv = &dummy_drv,
  8448. .device = &dummy_cgpu,
  8449. .device_id = -1,
  8450. .proc_id = -1,
  8451. .device_data = userp,
  8452. };
  8453. strcpy(dummy_cgpu.proc_repr, drv->name);
  8454. dummy_drv.set_device = set_func;
  8455. cgpu_set_defaults(&dummy_cgpu);
  8456. }
  8457. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8458. * the screen at regular intervals, and restarts threads if they appear to have
  8459. * died. */
  8460. #define WATCHDOG_SICK_TIME 60
  8461. #define WATCHDOG_DEAD_TIME 600
  8462. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8463. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8464. static void *watchdog_thread(void __maybe_unused *userdata)
  8465. {
  8466. const unsigned int interval = WATCHDOG_INTERVAL;
  8467. struct timeval zero_tv;
  8468. #ifndef HAVE_PTHREAD_CANCEL
  8469. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8470. #endif
  8471. RenameThread("watchdog");
  8472. memset(&zero_tv, 0, sizeof(struct timeval));
  8473. cgtime(&rotate_tv);
  8474. while (1) {
  8475. int i;
  8476. struct timeval now;
  8477. sleep(interval);
  8478. discard_stale();
  8479. hashmeter(-1, &zero_tv, 0);
  8480. #ifdef HAVE_CURSES
  8481. const int ts = total_staged();
  8482. if (curses_active_locked()) {
  8483. change_logwinsize();
  8484. curses_print_status(ts);
  8485. _refresh_devstatus(true);
  8486. touchwin(logwin);
  8487. wrefresh(logwin);
  8488. unlock_curses();
  8489. }
  8490. #endif
  8491. cgtime(&now);
  8492. if (!sched_paused && !should_run()) {
  8493. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8494. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8495. if (!schedstart.enable) {
  8496. quit(0, "Terminating execution as planned");
  8497. break;
  8498. }
  8499. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8500. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8501. sched_paused = true;
  8502. rd_lock(&mining_thr_lock);
  8503. for (i = 0; i < mining_threads; i++)
  8504. mining_thr[i]->pause = true;
  8505. rd_unlock(&mining_thr_lock);
  8506. } else if (sched_paused && should_run()) {
  8507. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8508. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8509. if (schedstop.enable)
  8510. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8511. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8512. sched_paused = false;
  8513. for (i = 0; i < mining_threads; i++) {
  8514. struct thr_info *thr;
  8515. thr = get_thread(i);
  8516. thr->pause = false;
  8517. }
  8518. for (i = 0; i < total_devices; ++i)
  8519. {
  8520. struct cgpu_info *cgpu = get_devices(i);
  8521. /* Don't touch disabled devices */
  8522. if (cgpu->deven == DEV_DISABLED)
  8523. continue;
  8524. proc_enable(cgpu);
  8525. }
  8526. }
  8527. for (i = 0; i < total_devices; ++i) {
  8528. struct cgpu_info *cgpu = get_devices(i);
  8529. if (!cgpu->disable_watchdog)
  8530. bfg_watchdog(cgpu, &now);
  8531. }
  8532. }
  8533. return NULL;
  8534. }
  8535. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8536. {
  8537. struct thr_info *thr = cgpu->thr[0];
  8538. enum dev_enable *denable;
  8539. char *dev_str = cgpu->proc_repr;
  8540. int gpu;
  8541. if (likely(drv_ready(cgpu)))
  8542. {
  8543. if (unlikely(!cgpu->already_set_defaults))
  8544. cgpu_set_defaults(cgpu);
  8545. if (cgpu->drv->get_stats)
  8546. cgpu->drv->get_stats(cgpu);
  8547. }
  8548. gpu = cgpu->device_id;
  8549. denable = &cgpu->deven;
  8550. #ifdef HAVE_ADL
  8551. if (adl_active && cgpu->has_adl)
  8552. gpu_autotune(gpu, denable);
  8553. if (opt_debug && cgpu->has_adl) {
  8554. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  8555. float temp = 0, vddc = 0;
  8556. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  8557. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMHz V: %.3fV A: %d%% P: %d%%",
  8558. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  8559. }
  8560. #endif
  8561. /* Thread is disabled */
  8562. if (*denable == DEV_DISABLED)
  8563. return;
  8564. else
  8565. if (*denable == DEV_RECOVER_ERR) {
  8566. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8567. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8568. dev_str);
  8569. if (cgpu->reinit_backoff < 300)
  8570. cgpu->reinit_backoff *= 2;
  8571. device_recovered(cgpu);
  8572. }
  8573. return;
  8574. }
  8575. else
  8576. if (*denable == DEV_RECOVER) {
  8577. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8578. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8579. dev_str);
  8580. device_recovered(cgpu);
  8581. }
  8582. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8583. return;
  8584. }
  8585. else
  8586. if (cgpu->temp > cgpu->cutofftemp)
  8587. {
  8588. applog(LOG_WARNING, "%s hit thermal cutoff limit, disabling!",
  8589. dev_str);
  8590. *denable = DEV_RECOVER;
  8591. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8592. run_cmd(cmd_idle);
  8593. }
  8594. if (thr->getwork) {
  8595. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8596. int thrid;
  8597. bool cgpu_idle = true;
  8598. thr->rolling = 0;
  8599. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8600. if (!cgpu->thr[thrid]->getwork)
  8601. cgpu_idle = false;
  8602. if (cgpu_idle) {
  8603. cgpu->rolling = 0;
  8604. cgpu->status = LIFE_WAIT;
  8605. }
  8606. }
  8607. return;
  8608. }
  8609. else if (cgpu->status == LIFE_WAIT)
  8610. cgpu->status = LIFE_WELL;
  8611. #ifdef WANT_CPUMINE
  8612. if (!strcmp(cgpu->drv->dname, "cpu"))
  8613. return;
  8614. #endif
  8615. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8616. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8617. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8618. cgpu->status = LIFE_WELL;
  8619. cgpu->device_last_well = time(NULL);
  8620. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8621. thr->rolling = cgpu->rolling = 0;
  8622. cgpu->status = LIFE_SICK;
  8623. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8624. cgtime(&thr->sick);
  8625. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8626. run_cmd(cmd_sick);
  8627. #ifdef HAVE_ADL
  8628. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8629. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  8630. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  8631. } else
  8632. #endif
  8633. if (opt_restart && cgpu->drv->reinit_device) {
  8634. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8635. reinit_device(cgpu);
  8636. }
  8637. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8638. cgpu->status = LIFE_DEAD;
  8639. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8640. cgtime(&thr->sick);
  8641. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8642. run_cmd(cmd_dead);
  8643. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8644. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8645. /* Attempt to restart a GPU that's sick or dead once every minute */
  8646. cgtime(&thr->sick);
  8647. #ifdef HAVE_ADL
  8648. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8649. /* Again do not attempt to restart a device that may have hard hung */
  8650. } else
  8651. #endif
  8652. if (opt_restart)
  8653. reinit_device(cgpu);
  8654. }
  8655. }
  8656. static void log_print_status(struct cgpu_info *cgpu)
  8657. {
  8658. char logline[255];
  8659. get_statline(logline, sizeof(logline), cgpu);
  8660. applog(LOG_WARNING, "%s", logline);
  8661. }
  8662. void print_summary(void)
  8663. {
  8664. struct timeval diff;
  8665. int hours, mins, secs, i;
  8666. double utility, efficiency = 0.0;
  8667. char xfer[17], bw[19];
  8668. int pool_secs;
  8669. timersub(&total_tv_end, &total_tv_start, &diff);
  8670. hours = diff.tv_sec / 3600;
  8671. mins = (diff.tv_sec % 3600) / 60;
  8672. secs = diff.tv_sec % 60;
  8673. utility = total_accepted / total_secs * 60;
  8674. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8675. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8676. applog(LOG_WARNING, "Started at %s", datestamp);
  8677. if (total_pools == 1)
  8678. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8679. #ifdef WANT_CPUMINE
  8680. if (opt_n_threads)
  8681. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8682. #endif
  8683. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8684. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8685. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8686. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8687. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8688. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8689. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8690. total_rejected, total_stale,
  8691. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8692. );
  8693. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8694. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8695. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8696. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8697. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8698. (float)total_bytes_rcvd,
  8699. (float)total_bytes_sent),
  8700. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8701. (float)(total_bytes_rcvd / total_secs),
  8702. (float)(total_bytes_sent / total_secs)));
  8703. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8704. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8705. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8706. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8707. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8708. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8709. if (total_pools > 1) {
  8710. for (i = 0; i < total_pools; i++) {
  8711. struct pool *pool = pools[i];
  8712. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8713. if (pool->solved)
  8714. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8715. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8716. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8717. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8718. pool->rejected, pool->stale_shares,
  8719. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8720. );
  8721. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8722. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8723. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8724. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8725. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8726. (float)pool->cgminer_pool_stats.net_bytes_received,
  8727. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8728. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8729. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8730. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8731. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8732. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8733. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8734. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8735. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8736. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8737. }
  8738. }
  8739. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8740. for (i = 0; i < total_devices; ++i) {
  8741. struct cgpu_info *cgpu = get_devices(i);
  8742. if ((!cgpu->proc_id) && cgpu->procs > 1)
  8743. {
  8744. // Device summary line
  8745. opt_show_procs = false;
  8746. log_print_status(cgpu);
  8747. opt_show_procs = true;
  8748. }
  8749. log_print_status(cgpu);
  8750. }
  8751. if (opt_shares) {
  8752. applog(LOG_WARNING, "Mined %.0f accepted shares of %d requested\n", total_diff_accepted, opt_shares);
  8753. if (opt_shares > total_diff_accepted)
  8754. applog(LOG_WARNING, "WARNING - Mined only %.0f shares of %d requested.", total_diff_accepted, opt_shares);
  8755. }
  8756. applog(LOG_WARNING, " ");
  8757. fflush(stderr);
  8758. fflush(stdout);
  8759. }
  8760. void _bfg_clean_up(bool restarting)
  8761. {
  8762. #ifdef HAVE_OPENCL
  8763. clear_adl(nDevs);
  8764. #endif
  8765. #ifdef HAVE_LIBUSB
  8766. if (likely(have_libusb))
  8767. libusb_exit(NULL);
  8768. #endif
  8769. cgtime(&total_tv_end);
  8770. #ifdef WIN32
  8771. timeEndPeriod(1);
  8772. #endif
  8773. if (!restarting) {
  8774. /* Attempting to disable curses or print a summary during a
  8775. * restart can lead to a deadlock. */
  8776. #ifdef HAVE_CURSES
  8777. disable_curses();
  8778. #endif
  8779. if (!opt_realquiet && successful_connect)
  8780. print_summary();
  8781. }
  8782. if (opt_n_threads)
  8783. free(cpus);
  8784. curl_global_cleanup();
  8785. #ifdef WIN32
  8786. WSACleanup();
  8787. #endif
  8788. }
  8789. void _quit(int status)
  8790. {
  8791. if (status) {
  8792. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8793. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8794. int *p = NULL;
  8795. // NOTE debugger can bypass with: p = &p
  8796. *p = status; // Segfault, hopefully dumping core
  8797. }
  8798. }
  8799. #if defined(unix) || defined(__APPLE__)
  8800. if (forkpid > 0) {
  8801. kill(forkpid, SIGTERM);
  8802. forkpid = 0;
  8803. }
  8804. #endif
  8805. exit(status);
  8806. }
  8807. #ifdef HAVE_CURSES
  8808. char *curses_input(const char *query)
  8809. {
  8810. char *input;
  8811. echo();
  8812. input = malloc(255);
  8813. if (!input)
  8814. quit(1, "Failed to malloc input");
  8815. leaveok(logwin, false);
  8816. wlogprint("%s:\n", query);
  8817. wgetnstr(logwin, input, 255);
  8818. if (!strlen(input))
  8819. {
  8820. free(input);
  8821. input = NULL;
  8822. }
  8823. leaveok(logwin, true);
  8824. noecho();
  8825. return input;
  8826. }
  8827. #endif
  8828. static bool pools_active = false;
  8829. static void *test_pool_thread(void *arg)
  8830. {
  8831. struct pool *pool = (struct pool *)arg;
  8832. if (pool_active(pool, false)) {
  8833. pool_tset(pool, &pool->lagging);
  8834. pool_tclear(pool, &pool->idle);
  8835. bool first_pool = false;
  8836. cg_wlock(&control_lock);
  8837. if (!pools_active) {
  8838. currentpool = pool;
  8839. if (pool->pool_no != 0)
  8840. first_pool = true;
  8841. pools_active = true;
  8842. }
  8843. cg_wunlock(&control_lock);
  8844. if (unlikely(first_pool))
  8845. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8846. else
  8847. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8848. switch_pools(NULL);
  8849. } else
  8850. pool_died(pool);
  8851. pool->testing = false;
  8852. return NULL;
  8853. }
  8854. /* Always returns true that the pool details were added unless we are not
  8855. * live, implying this is the only pool being added, so if no pools are
  8856. * active it returns false. */
  8857. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  8858. {
  8859. size_t siz;
  8860. pool->rpc_url = url;
  8861. pool->rpc_user = user;
  8862. pool->rpc_pass = pass;
  8863. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  8864. pool->rpc_userpass = malloc(siz);
  8865. if (!pool->rpc_userpass)
  8866. quit(1, "Failed to malloc userpass");
  8867. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  8868. pool->testing = true;
  8869. pool->idle = true;
  8870. enable_pool(pool);
  8871. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  8872. if (!live) {
  8873. pthread_join(pool->test_thread, NULL);
  8874. return pools_active;
  8875. }
  8876. return true;
  8877. }
  8878. #ifdef HAVE_CURSES
  8879. static bool input_pool(bool live)
  8880. {
  8881. char *url = NULL, *user = NULL, *pass = NULL;
  8882. struct pool *pool;
  8883. bool ret = false;
  8884. immedok(logwin, true);
  8885. wlogprint("Input server details.\n");
  8886. url = curses_input("URL");
  8887. if (!url)
  8888. goto out;
  8889. user = curses_input("Username");
  8890. if (!user)
  8891. goto out;
  8892. pass = curses_input("Password");
  8893. if (!pass)
  8894. pass = calloc(1, 1);
  8895. pool = add_pool();
  8896. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  8897. strncmp(url, "https://", 8)) {
  8898. char *httpinput;
  8899. httpinput = malloc(256);
  8900. if (!httpinput)
  8901. quit(1, "Failed to malloc httpinput");
  8902. strcpy(httpinput, "http://");
  8903. strncat(httpinput, url, 248);
  8904. free(url);
  8905. url = httpinput;
  8906. }
  8907. ret = add_pool_details(pool, live, url, user, pass);
  8908. out:
  8909. immedok(logwin, false);
  8910. if (!ret) {
  8911. if (url)
  8912. free(url);
  8913. if (user)
  8914. free(user);
  8915. if (pass)
  8916. free(pass);
  8917. }
  8918. return ret;
  8919. }
  8920. #endif
  8921. #if defined(unix) || defined(__APPLE__)
  8922. static void fork_monitor()
  8923. {
  8924. // Make a pipe: [readFD, writeFD]
  8925. int pfd[2];
  8926. int r = pipe(pfd);
  8927. if (r < 0) {
  8928. perror("pipe - failed to create pipe for --monitor");
  8929. exit(1);
  8930. }
  8931. // Make stderr write end of pipe
  8932. fflush(stderr);
  8933. r = dup2(pfd[1], 2);
  8934. if (r < 0) {
  8935. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  8936. exit(1);
  8937. }
  8938. r = close(pfd[1]);
  8939. if (r < 0) {
  8940. perror("close - failed to close write end of pipe for --monitor");
  8941. exit(1);
  8942. }
  8943. // Don't allow a dying monitor to kill the main process
  8944. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  8945. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  8946. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  8947. perror("signal - failed to edit signal mask for --monitor");
  8948. exit(1);
  8949. }
  8950. // Fork a child process
  8951. forkpid = fork();
  8952. if (forkpid < 0) {
  8953. perror("fork - failed to fork child process for --monitor");
  8954. exit(1);
  8955. }
  8956. // Child: launch monitor command
  8957. if (0 == forkpid) {
  8958. // Make stdin read end of pipe
  8959. r = dup2(pfd[0], 0);
  8960. if (r < 0) {
  8961. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  8962. exit(1);
  8963. }
  8964. close(pfd[0]);
  8965. if (r < 0) {
  8966. perror("close - in child, failed to close read end of pipe for --monitor");
  8967. exit(1);
  8968. }
  8969. // Launch user specified command
  8970. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  8971. perror("execl - in child failed to exec user specified command for --monitor");
  8972. exit(1);
  8973. }
  8974. // Parent: clean up unused fds and bail
  8975. r = close(pfd[0]);
  8976. if (r < 0) {
  8977. perror("close - failed to close read end of pipe for --monitor");
  8978. exit(1);
  8979. }
  8980. }
  8981. #endif // defined(unix)
  8982. #ifdef HAVE_CURSES
  8983. #ifdef USE_UNICODE
  8984. static
  8985. wchar_t select_unicode_char(const wchar_t *opt)
  8986. {
  8987. for ( ; *opt; ++opt)
  8988. if (iswprint(*opt))
  8989. return *opt;
  8990. return '?';
  8991. }
  8992. #endif
  8993. void enable_curses(void) {
  8994. int x;
  8995. __maybe_unused int y;
  8996. lock_curses();
  8997. if (curses_active) {
  8998. unlock_curses();
  8999. return;
  9000. }
  9001. #ifdef USE_UNICODE
  9002. if (use_unicode)
  9003. {
  9004. setlocale(LC_CTYPE, "");
  9005. if (iswprint(0xb0))
  9006. have_unicode_degrees = true;
  9007. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9008. }
  9009. #endif
  9010. mainwin = initscr();
  9011. start_color();
  9012. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9013. if (ERR != use_default_colors())
  9014. default_bgcolor = -1;
  9015. #endif
  9016. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9017. {
  9018. menu_attr = COLOR_PAIR(1);
  9019. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9020. attr_bad |= COLOR_PAIR(2);
  9021. }
  9022. keypad(mainwin, true);
  9023. getmaxyx(mainwin, y, x);
  9024. statuswin = newwin(logstart, x, 0, 0);
  9025. leaveok(statuswin, true);
  9026. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9027. // We resize the window later anyway, so just start it off at 1 :)
  9028. logwin = newwin(1, 0, logcursor, 0);
  9029. idlok(logwin, true);
  9030. scrollok(logwin, true);
  9031. leaveok(logwin, true);
  9032. cbreak();
  9033. noecho();
  9034. nonl();
  9035. curses_active = true;
  9036. statusy = logstart;
  9037. unlock_curses();
  9038. }
  9039. #endif
  9040. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9041. #ifndef WANT_CPUMINE
  9042. struct device_drv cpu_drv;
  9043. struct device_drv cpu_drv = {
  9044. .name = "CPU",
  9045. };
  9046. #endif
  9047. static int cgminer_id_count = 0;
  9048. static int device_line_id_count;
  9049. void register_device(struct cgpu_info *cgpu)
  9050. {
  9051. cgpu->deven = DEV_ENABLED;
  9052. wr_lock(&devices_lock);
  9053. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9054. wr_unlock(&devices_lock);
  9055. if (!cgpu->proc_id)
  9056. cgpu->device_line_id = device_line_id_count++;
  9057. mining_threads += cgpu->threads ?: 1;
  9058. #ifdef HAVE_CURSES
  9059. adj_width(mining_threads, &dev_width);
  9060. #endif
  9061. rwlock_init(&cgpu->qlock);
  9062. cgpu->queued_work = NULL;
  9063. }
  9064. struct _cgpu_devid_counter {
  9065. char name[4];
  9066. int lastid;
  9067. UT_hash_handle hh;
  9068. };
  9069. void renumber_cgpu(struct cgpu_info *cgpu)
  9070. {
  9071. static struct _cgpu_devid_counter *devids = NULL;
  9072. struct _cgpu_devid_counter *d;
  9073. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9074. if (d)
  9075. cgpu->device_id = ++d->lastid;
  9076. else {
  9077. d = malloc(sizeof(*d));
  9078. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9079. cgpu->device_id = d->lastid = 0;
  9080. HASH_ADD_STR(devids, name, d);
  9081. }
  9082. }
  9083. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9084. {
  9085. sha256(buffer, length, digest);
  9086. return true;
  9087. }
  9088. #ifndef HAVE_PTHREAD_CANCEL
  9089. extern void setup_pthread_cancel_workaround();
  9090. extern struct sigaction pcwm_orig_term_handler;
  9091. #endif
  9092. bool bfg_need_detect_rescan;
  9093. extern void probe_device(struct lowlevel_device_info *);
  9094. static
  9095. void drv_detect_all()
  9096. {
  9097. rescan:
  9098. bfg_need_detect_rescan = false;
  9099. #ifdef HAVE_BFG_LOWLEVEL
  9100. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9101. LL_FOREACH_SAFE(infolist, info, infotmp)
  9102. probe_device(info);
  9103. LL_FOREACH_SAFE(infolist, info, infotmp)
  9104. pthread_join(info->probe_pth, NULL);
  9105. #endif
  9106. struct driver_registration *reg, *tmp;
  9107. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9108. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9109. {
  9110. const struct device_drv * const drv = reg->drv;
  9111. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9112. if (0 == (algos & algomatch) || !drv->drv_detect)
  9113. continue;
  9114. drv->drv_detect();
  9115. }
  9116. #ifdef HAVE_BFG_LOWLEVEL
  9117. lowlevel_scan_free();
  9118. #endif
  9119. if (bfg_need_detect_rescan)
  9120. {
  9121. applog(LOG_DEBUG, "Device rescan requested");
  9122. goto rescan;
  9123. }
  9124. }
  9125. static
  9126. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9127. {
  9128. struct thr_info *thr;
  9129. int j;
  9130. struct device_drv *api = cgpu->drv;
  9131. if (!cgpu->devtype)
  9132. cgpu->devtype = "PGA";
  9133. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9134. int threadobj = cgpu->threads;
  9135. if (!threadobj)
  9136. // Create a fake thread object to handle hashmeter etc
  9137. threadobj = 1;
  9138. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9139. cgpu->thr[threadobj] = NULL;
  9140. cgpu->status = LIFE_INIT;
  9141. if (opt_devices_enabled_list)
  9142. {
  9143. struct string_elist *enablestr_elist;
  9144. cgpu->deven = DEV_DISABLED;
  9145. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9146. {
  9147. const char * const enablestr = enablestr_elist->string;
  9148. if (cgpu_match(enablestr, cgpu))
  9149. {
  9150. cgpu->deven = DEV_ENABLED;
  9151. break;
  9152. }
  9153. }
  9154. }
  9155. cgpu->max_hashes = 0;
  9156. // Setup thread structs before starting any of the threads, in case they try to interact
  9157. for (j = 0; j < threadobj; ++j, ++*kp) {
  9158. thr = get_thread(*kp);
  9159. thr->id = *kp;
  9160. thr->cgpu = cgpu;
  9161. thr->device_thread = j;
  9162. thr->work_restart_notifier[1] = INVSOCK;
  9163. thr->mutex_request[1] = INVSOCK;
  9164. thr->_job_transition_in_progress = true;
  9165. timerclear(&thr->tv_morework);
  9166. thr->scanhash_working = true;
  9167. thr->hashes_done = 0;
  9168. timerclear(&thr->tv_hashes_done);
  9169. cgtime(&thr->tv_lastupdate);
  9170. thr->tv_poll.tv_sec = -1;
  9171. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9172. cgpu->thr[j] = thr;
  9173. }
  9174. if (!cgpu->device->threads)
  9175. notifier_init_invalid(cgpu->thr[0]->notifier);
  9176. else
  9177. if (!cgpu->threads)
  9178. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9179. else
  9180. for (j = 0; j < cgpu->threads; ++j)
  9181. {
  9182. thr = cgpu->thr[j];
  9183. notifier_init(thr->notifier);
  9184. }
  9185. }
  9186. static
  9187. void start_cgpu(struct cgpu_info *cgpu)
  9188. {
  9189. struct thr_info *thr;
  9190. int j;
  9191. for (j = 0; j < cgpu->threads; ++j) {
  9192. thr = cgpu->thr[j];
  9193. /* Enable threads for devices set not to mine but disable
  9194. * their queue in case we wish to enable them later */
  9195. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9196. continue;
  9197. thread_reportout(thr);
  9198. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9199. quit(1, "thread %d create failed", thr->id);
  9200. notifier_wake(thr->notifier);
  9201. }
  9202. if (cgpu->deven == DEV_ENABLED)
  9203. proc_enable(cgpu);
  9204. }
  9205. static
  9206. void _scan_serial(void *p)
  9207. {
  9208. const char *s = p;
  9209. struct string_elist *iter, *tmp;
  9210. struct string_elist *orig_scan_devices = scan_devices;
  9211. if (s)
  9212. {
  9213. // Make temporary scan_devices list
  9214. scan_devices = NULL;
  9215. string_elist_add("noauto", &scan_devices);
  9216. add_serial(s);
  9217. }
  9218. drv_detect_all();
  9219. if (s)
  9220. {
  9221. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9222. {
  9223. string_elist_del(&scan_devices, iter);
  9224. }
  9225. scan_devices = orig_scan_devices;
  9226. }
  9227. }
  9228. #ifdef HAVE_BFG_LOWLEVEL
  9229. static
  9230. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9231. {
  9232. if (!(false
  9233. || (info->serial && !strcasecmp(ser, info->serial))
  9234. || (info->path && !strcasecmp(ser, info->path ))
  9235. ))
  9236. {
  9237. char *devid = devpath_to_devid(ser);
  9238. if (!devid)
  9239. return false;
  9240. const bool different = strcmp(info->devid, devid);
  9241. free(devid);
  9242. if (different)
  9243. return false;
  9244. }
  9245. return true;
  9246. }
  9247. static
  9248. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9249. {
  9250. struct driver_registration *dreg;
  9251. char dname[dnamelen];
  9252. int i;
  9253. for (i = 0; i < dnamelen; ++i)
  9254. dname[i] = tolower(_dname[i]);
  9255. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9256. if (!dreg)
  9257. {
  9258. for (i = 0; i < dnamelen; ++i)
  9259. dname[i] = toupper(_dname[i]);
  9260. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9261. if (!dreg)
  9262. return NULL;
  9263. }
  9264. return dreg->drv;
  9265. }
  9266. static
  9267. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9268. {
  9269. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9270. if (!(drv && drv->lowl_probe))
  9271. return false;
  9272. return drv->lowl_probe(info);
  9273. }
  9274. static
  9275. void *probe_device_thread(void *p)
  9276. {
  9277. struct lowlevel_device_info * const infolist = p;
  9278. struct lowlevel_device_info *info = infolist;
  9279. {
  9280. char threadname[5 + strlen(info->devid) + 1];
  9281. sprintf(threadname, "probe_%s", info->devid);
  9282. RenameThread(threadname);
  9283. }
  9284. // If already in use, ignore
  9285. if (bfg_claim_any(NULL, NULL, info->devid))
  9286. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9287. __func__, info->product);
  9288. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9289. struct string_elist *sd_iter, *sd_tmp;
  9290. struct driver_registration *dreg, *dreg_tmp;
  9291. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9292. {
  9293. const char * const dname = sd_iter->string;
  9294. const char * const colon = strpbrk(dname, ":@");
  9295. if (!(colon && colon != dname))
  9296. continue;
  9297. const char * const ser = &colon[1];
  9298. LL_FOREACH2(infolist, info, same_devid_next)
  9299. {
  9300. if (!_probe_device_match(info, ser))
  9301. continue;
  9302. const size_t dnamelen = (colon - dname);
  9303. if (_probe_device_internal(info, dname, dnamelen))
  9304. return NULL;
  9305. }
  9306. }
  9307. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9308. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9309. {
  9310. const struct device_drv * const drv = dreg->drv;
  9311. // Check for "noauto" flag
  9312. // NOTE: driver-specific configuration overrides general
  9313. bool doauto = true;
  9314. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9315. {
  9316. const char * const dname = sd_iter->string;
  9317. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9318. const char *colon = strchr(dname, ':');
  9319. if (!colon)
  9320. colon = &dname[-1];
  9321. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9322. continue;
  9323. const ssize_t dnamelen = (colon - dname);
  9324. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9325. continue;
  9326. doauto = (tolower(colon[1]) == 'a');
  9327. if (dnamelen != -1)
  9328. break;
  9329. }
  9330. if (doauto && drv->lowl_match)
  9331. {
  9332. LL_FOREACH2(infolist, info, same_devid_next)
  9333. {
  9334. if (!drv->lowl_match(info))
  9335. continue;
  9336. if (drv->lowl_probe(info))
  9337. return NULL;
  9338. }
  9339. }
  9340. }
  9341. // probe driver(s) with 'all' enabled
  9342. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9343. {
  9344. const char * const dname = sd_iter->string;
  9345. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9346. const char * const colon = strchr(dname, ':');
  9347. if (!colon)
  9348. {
  9349. LL_FOREACH2(infolist, info, same_devid_next)
  9350. {
  9351. if (
  9352. #ifdef NEED_BFG_LOWL_VCOM
  9353. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9354. #endif
  9355. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9356. {
  9357. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9358. {
  9359. const struct device_drv * const drv = dreg->drv;
  9360. if (drv->lowl_probe_by_name_only)
  9361. continue;
  9362. if (!drv->lowl_probe)
  9363. continue;
  9364. if (drv->lowl_probe(info))
  9365. return NULL;
  9366. }
  9367. break;
  9368. }
  9369. }
  9370. continue;
  9371. }
  9372. if (strcasecmp(&colon[1], "all"))
  9373. continue;
  9374. const size_t dnamelen = (colon - dname);
  9375. LL_FOREACH2(infolist, info, same_devid_next)
  9376. {
  9377. if (_probe_device_internal(info, dname, dnamelen))
  9378. return NULL;
  9379. }
  9380. }
  9381. return NULL;
  9382. }
  9383. void probe_device(struct lowlevel_device_info * const info)
  9384. {
  9385. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9386. }
  9387. #endif
  9388. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9389. {
  9390. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9391. int devcount, i, mining_threads_new = 0;
  9392. unsigned int k;
  9393. struct cgpu_info *cgpu;
  9394. struct thr_info *thr;
  9395. void *p;
  9396. char *dummy = "\0";
  9397. mutex_lock(&mutex);
  9398. devcount = total_devices;
  9399. addfunc(arg);
  9400. if (!total_devices_new)
  9401. goto out;
  9402. wr_lock(&devices_lock);
  9403. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9404. if (unlikely(!p))
  9405. {
  9406. wr_unlock(&devices_lock);
  9407. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9408. goto out;
  9409. }
  9410. devices = p;
  9411. wr_unlock(&devices_lock);
  9412. for (i = 0; i < total_devices_new; ++i)
  9413. {
  9414. cgpu = devices_new[i];
  9415. mining_threads_new += cgpu->threads ?: 1;
  9416. }
  9417. wr_lock(&mining_thr_lock);
  9418. mining_threads_new += mining_threads;
  9419. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9420. if (unlikely(!p))
  9421. {
  9422. wr_unlock(&mining_thr_lock);
  9423. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9424. goto out;
  9425. }
  9426. mining_thr = p;
  9427. wr_unlock(&mining_thr_lock);
  9428. for (i = mining_threads; i < mining_threads_new; ++i) {
  9429. mining_thr[i] = calloc(1, sizeof(*thr));
  9430. if (!mining_thr[i])
  9431. {
  9432. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9433. for ( ; --i >= mining_threads; )
  9434. free(mining_thr[i]);
  9435. goto out;
  9436. }
  9437. }
  9438. k = mining_threads;
  9439. for (i = 0; i < total_devices_new; ++i)
  9440. {
  9441. cgpu = devices_new[i];
  9442. load_temp_config_cgpu(cgpu, &dummy, &dummy);
  9443. allocate_cgpu(cgpu, &k);
  9444. start_cgpu(cgpu);
  9445. register_device(cgpu);
  9446. ++total_devices;
  9447. }
  9448. #ifdef HAVE_CURSES
  9449. switch_logsize();
  9450. #endif
  9451. out:
  9452. total_devices_new = 0;
  9453. devcount = total_devices - devcount;
  9454. mutex_unlock(&mutex);
  9455. return devcount;
  9456. }
  9457. int scan_serial(const char *s)
  9458. {
  9459. return create_new_cgpus(_scan_serial, (void*)s);
  9460. }
  9461. static void probe_pools(void)
  9462. {
  9463. int i;
  9464. for (i = 0; i < total_pools; i++) {
  9465. struct pool *pool = pools[i];
  9466. pool->testing = true;
  9467. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9468. }
  9469. }
  9470. static void raise_fd_limits(void)
  9471. {
  9472. #ifdef HAVE_SETRLIMIT
  9473. struct rlimit fdlimit;
  9474. unsigned long old_soft_limit;
  9475. char frombuf[0x10] = "unlimited";
  9476. char hardbuf[0x10] = "unlimited";
  9477. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9478. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9479. old_soft_limit = fdlimit.rlim_cur;
  9480. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9481. fdlimit.rlim_cur = FD_SETSIZE;
  9482. else
  9483. fdlimit.rlim_cur = fdlimit.rlim_max;
  9484. if (fdlimit.rlim_max != RLIM_INFINITY)
  9485. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9486. if (old_soft_limit != RLIM_INFINITY)
  9487. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9488. if (fdlimit.rlim_cur == old_soft_limit)
  9489. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9490. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9491. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9492. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9493. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9494. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9495. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9496. #else
  9497. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9498. #endif
  9499. }
  9500. extern void bfg_init_threadlocal();
  9501. extern void stratumsrv_start();
  9502. int main(int argc, char *argv[])
  9503. {
  9504. struct sigaction handler;
  9505. struct thr_info *thr;
  9506. struct block *block;
  9507. unsigned int k;
  9508. int i;
  9509. char *s;
  9510. #ifdef WIN32
  9511. LoadLibrary("backtrace.dll");
  9512. #endif
  9513. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9514. bfg_init_threadlocal();
  9515. #ifndef HAVE_PTHREAD_CANCEL
  9516. setup_pthread_cancel_workaround();
  9517. #endif
  9518. #ifdef WIN32
  9519. {
  9520. WSADATA wsa;
  9521. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9522. if (i)
  9523. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9524. }
  9525. #endif
  9526. /* This dangerous functions tramples random dynamically allocated
  9527. * variables so do it before anything at all */
  9528. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9529. quit(1, "Failed to curl_global_init");
  9530. initial_args = malloc(sizeof(char *) * (argc + 1));
  9531. for (i = 0; i < argc; i++)
  9532. initial_args[i] = strdup(argv[i]);
  9533. initial_args[argc] = NULL;
  9534. mutex_init(&hash_lock);
  9535. mutex_init(&console_lock);
  9536. cglock_init(&control_lock);
  9537. mutex_init(&stats_lock);
  9538. mutex_init(&sharelog_lock);
  9539. cglock_init(&ch_lock);
  9540. mutex_init(&sshare_lock);
  9541. rwlock_init(&blk_lock);
  9542. rwlock_init(&netacc_lock);
  9543. rwlock_init(&mining_thr_lock);
  9544. rwlock_init(&devices_lock);
  9545. mutex_init(&lp_lock);
  9546. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9547. quit(1, "Failed to pthread_cond_init lp_cond");
  9548. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9549. quit(1, "Failed to pthread_cond_init gws_cond");
  9550. notifier_init(submit_waiting_notifier);
  9551. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9552. #ifdef WANT_CPUMINE
  9553. init_max_name_len();
  9554. #endif
  9555. handler.sa_handler = &sighandler;
  9556. handler.sa_flags = 0;
  9557. sigemptyset(&handler.sa_mask);
  9558. #ifdef HAVE_PTHREAD_CANCEL
  9559. sigaction(SIGTERM, &handler, &termhandler);
  9560. #else
  9561. // Need to let pthread_cancel emulation handle SIGTERM first
  9562. termhandler = pcwm_orig_term_handler;
  9563. pcwm_orig_term_handler = handler;
  9564. #endif
  9565. sigaction(SIGINT, &handler, &inthandler);
  9566. #ifndef WIN32
  9567. signal(SIGPIPE, SIG_IGN);
  9568. #else
  9569. timeBeginPeriod(1);
  9570. #endif
  9571. opt_kernel_path = CGMINER_PREFIX;
  9572. cgminer_path = alloca(PATH_MAX);
  9573. s = strdup(argv[0]);
  9574. strcpy(cgminer_path, dirname(s));
  9575. free(s);
  9576. strcat(cgminer_path, "/");
  9577. #ifdef WANT_CPUMINE
  9578. // Hack to make cgminer silent when called recursively on WIN32
  9579. int skip_to_bench = 0;
  9580. #if defined(WIN32)
  9581. char buf[32];
  9582. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  9583. skip_to_bench = 1;
  9584. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  9585. skip_to_bench = 1;
  9586. #endif // defined(WIN32)
  9587. #endif
  9588. devcursor = 8;
  9589. logstart = devcursor;
  9590. logcursor = logstart;
  9591. block = calloc(sizeof(struct block), 1);
  9592. if (unlikely(!block))
  9593. quit (1, "main OOM");
  9594. for (i = 0; i < 36; i++)
  9595. strcat(block->hash, "0");
  9596. HASH_ADD_STR(blocks, hash, block);
  9597. strcpy(current_block, block->hash);
  9598. mutex_init(&submitting_lock);
  9599. #ifdef HAVE_OPENCL
  9600. memset(gpus, 0, sizeof(gpus));
  9601. for (i = 0; i < MAX_GPUDEVICES; i++)
  9602. gpus[i].dynamic = true;
  9603. #endif
  9604. schedstart.tm.tm_sec = 1;
  9605. schedstop .tm.tm_sec = 1;
  9606. /* parse command line */
  9607. opt_register_table(opt_config_table,
  9608. "Options for both config file and command line");
  9609. opt_register_table(opt_cmdline_table,
  9610. "Options for command line only");
  9611. opt_parse(&argc, argv, applog_and_exit);
  9612. if (argc != 1)
  9613. quit(1, "Unexpected extra commandline arguments");
  9614. if (!config_loaded)
  9615. load_default_config();
  9616. #ifndef HAVE_PTHREAD_CANCEL
  9617. // Can't do this any earlier, or config isn't loaded
  9618. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  9619. #endif
  9620. #ifdef HAVE_PWD_H
  9621. struct passwd *user_info = NULL;
  9622. if (opt_setuid != NULL) {
  9623. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  9624. quit(1, "Unable to find setuid user information");
  9625. }
  9626. }
  9627. #endif
  9628. #ifdef HAVE_CHROOT
  9629. if (chroot_dir != NULL) {
  9630. #ifdef HAVE_PWD_H
  9631. if (user_info == NULL && getuid() == 0) {
  9632. applog(LOG_WARNING, "Running as root inside chroot");
  9633. }
  9634. #endif
  9635. if (chroot(chroot_dir) != 0) {
  9636. quit(1, "Unable to chroot");
  9637. }
  9638. if (chdir("/"))
  9639. quit(1, "Unable to chdir to chroot");
  9640. }
  9641. #endif
  9642. #ifdef HAVE_PWD_H
  9643. if (user_info != NULL) {
  9644. if (setgid((*user_info).pw_gid) != 0)
  9645. quit(1, "Unable to setgid");
  9646. if (setuid((*user_info).pw_uid) != 0)
  9647. quit(1, "Unable to setuid");
  9648. }
  9649. #endif
  9650. raise_fd_limits();
  9651. if (opt_benchmark) {
  9652. struct pool *pool;
  9653. if (opt_scrypt)
  9654. quit(1, "Cannot use benchmark mode with scrypt");
  9655. want_longpoll = false;
  9656. pool = add_pool();
  9657. pool->rpc_url = malloc(255);
  9658. strcpy(pool->rpc_url, "Benchmark");
  9659. pool->rpc_user = pool->rpc_url;
  9660. pool->rpc_pass = pool->rpc_url;
  9661. enable_pool(pool);
  9662. pool->idle = false;
  9663. successful_connect = true;
  9664. }
  9665. if (opt_unittest) {
  9666. test_cgpu_match();
  9667. test_intrange();
  9668. test_decimal_width();
  9669. utf8_test();
  9670. }
  9671. #ifdef HAVE_CURSES
  9672. if (opt_realquiet || opt_display_devs)
  9673. use_curses = false;
  9674. setlocale(LC_ALL, "C");
  9675. if (use_curses)
  9676. enable_curses();
  9677. #endif
  9678. #ifdef HAVE_LIBUSB
  9679. int err = libusb_init(NULL);
  9680. if (err)
  9681. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  9682. else
  9683. have_libusb = true;
  9684. #endif
  9685. applog(LOG_WARNING, "Started %s", packagename);
  9686. if (cnfbuf) {
  9687. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  9688. switch (fileconf_load) {
  9689. case 0:
  9690. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  9691. applog(LOG_WARNING, "Configuration file could not be used.");
  9692. break;
  9693. case -1:
  9694. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  9695. if (use_curses)
  9696. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  9697. break;
  9698. default:
  9699. break;
  9700. }
  9701. free(cnfbuf);
  9702. cnfbuf = NULL;
  9703. }
  9704. i = strlen(opt_kernel_path) + 2;
  9705. char __kernel_path[i];
  9706. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  9707. opt_kernel_path = __kernel_path;
  9708. if (want_per_device_stats)
  9709. opt_log_output = true;
  9710. #ifdef WANT_CPUMINE
  9711. #ifdef USE_SCRYPT
  9712. if (opt_scrypt)
  9713. set_scrypt_algo(&opt_algo);
  9714. else
  9715. #endif
  9716. if (0 <= opt_bench_algo) {
  9717. double rate = bench_algo_stage3(opt_bench_algo);
  9718. if (!skip_to_bench)
  9719. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  9720. else {
  9721. // Write result to shared memory for parent
  9722. #if defined(WIN32)
  9723. char unique_name[64];
  9724. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  9725. HANDLE map_handle = CreateFileMapping(
  9726. INVALID_HANDLE_VALUE, // use paging file
  9727. NULL, // default security attributes
  9728. PAGE_READWRITE, // read/write access
  9729. 0, // size: high 32-bits
  9730. 4096, // size: low 32-bits
  9731. unique_name // name of map object
  9732. );
  9733. if (NULL != map_handle) {
  9734. void *shared_mem = MapViewOfFile(
  9735. map_handle, // object to map view of
  9736. FILE_MAP_WRITE, // read/write access
  9737. 0, // high offset: map from
  9738. 0, // low offset: beginning
  9739. 0 // default: map entire file
  9740. );
  9741. if (NULL != shared_mem)
  9742. CopyMemory(shared_mem, &rate, sizeof(rate));
  9743. (void)UnmapViewOfFile(shared_mem);
  9744. }
  9745. (void)CloseHandle(map_handle);
  9746. }
  9747. #endif
  9748. }
  9749. exit(0);
  9750. }
  9751. #endif
  9752. bfg_devapi_init();
  9753. drv_detect_all();
  9754. total_devices = total_devices_new;
  9755. devices = devices_new;
  9756. total_devices_new = 0;
  9757. devices_new = NULL;
  9758. if (opt_display_devs) {
  9759. int devcount = 0;
  9760. applog(LOG_ERR, "Devices detected:");
  9761. for (i = 0; i < total_devices; ++i) {
  9762. struct cgpu_info *cgpu = devices[i];
  9763. char buf[0x100];
  9764. if (cgpu->device != cgpu)
  9765. continue;
  9766. if (cgpu->name)
  9767. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  9768. else
  9769. if (cgpu->dev_manufacturer)
  9770. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  9771. else
  9772. if (cgpu->dev_product)
  9773. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  9774. else
  9775. strcpy(buf, " Device");
  9776. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  9777. if (cgpu->dev_serial)
  9778. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  9779. if (cgpu->device_path)
  9780. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  9781. tailsprintf(buf, sizeof(buf), ")");
  9782. _applog(LOG_NOTICE, buf);
  9783. ++devcount;
  9784. }
  9785. quit(0, "%d devices listed", devcount);
  9786. }
  9787. mining_threads = 0;
  9788. for (i = 0; i < total_devices; ++i)
  9789. register_device(devices[i]);
  9790. if (!total_devices) {
  9791. applog(LOG_WARNING, "No devices detected!");
  9792. if (use_curses)
  9793. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  9794. else
  9795. applog(LOG_WARNING, "Waiting for devices");
  9796. }
  9797. load_temp_config();
  9798. #ifdef HAVE_CURSES
  9799. switch_logsize();
  9800. #endif
  9801. if (!total_pools) {
  9802. applog(LOG_WARNING, "Need to specify at least one pool server.");
  9803. #ifdef HAVE_CURSES
  9804. if (!use_curses || !input_pool(false))
  9805. #endif
  9806. quit(1, "Pool setup failed");
  9807. }
  9808. for (i = 0; i < total_pools; i++) {
  9809. struct pool *pool = pools[i];
  9810. size_t siz;
  9811. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9812. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9813. if (!pool->rpc_url)
  9814. quit(1, "No URI supplied for pool %u", i);
  9815. if (!pool->rpc_userpass) {
  9816. if (!pool->rpc_user || !pool->rpc_pass)
  9817. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  9818. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9819. pool->rpc_userpass = malloc(siz);
  9820. if (!pool->rpc_userpass)
  9821. quit(1, "Failed to malloc userpass");
  9822. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9823. }
  9824. }
  9825. /* Set the currentpool to pool with priority 0 */
  9826. validate_pool_priorities();
  9827. for (i = 0; i < total_pools; i++) {
  9828. struct pool *pool = pools[i];
  9829. if (!pool->prio)
  9830. currentpool = pool;
  9831. }
  9832. #ifdef HAVE_SYSLOG_H
  9833. if (use_syslog)
  9834. openlog(PACKAGE, LOG_PID, LOG_USER);
  9835. #endif
  9836. #if defined(unix) || defined(__APPLE__)
  9837. if (opt_stderr_cmd)
  9838. fork_monitor();
  9839. #endif // defined(unix)
  9840. mining_thr = calloc(mining_threads, sizeof(thr));
  9841. if (!mining_thr)
  9842. quit(1, "Failed to calloc mining_thr");
  9843. for (i = 0; i < mining_threads; i++) {
  9844. mining_thr[i] = calloc(1, sizeof(*thr));
  9845. if (!mining_thr[i])
  9846. quit(1, "Failed to calloc mining_thr[%d]", i);
  9847. }
  9848. total_control_threads = 6;
  9849. control_thr = calloc(total_control_threads, sizeof(*thr));
  9850. if (!control_thr)
  9851. quit(1, "Failed to calloc control_thr");
  9852. gwsched_thr_id = 0;
  9853. /* Create a unique get work queue */
  9854. getq = tq_new();
  9855. if (!getq)
  9856. quit(1, "Failed to create getq");
  9857. /* We use the getq mutex as the staged lock */
  9858. stgd_lock = &getq->mutex;
  9859. if (opt_benchmark)
  9860. goto begin_bench;
  9861. for (i = 0; i < total_pools; i++) {
  9862. struct pool *pool = pools[i];
  9863. enable_pool(pool);
  9864. pool->idle = true;
  9865. }
  9866. applog(LOG_NOTICE, "Probing for an alive pool");
  9867. do {
  9868. bool still_testing;
  9869. int i;
  9870. /* Look for at least one active pool before starting */
  9871. probe_pools();
  9872. do {
  9873. sleep(1);
  9874. if (pools_active)
  9875. break;
  9876. still_testing = false;
  9877. for (int i = 0; i < total_pools; ++i)
  9878. if (pools[i]->testing)
  9879. still_testing = true;
  9880. } while (still_testing);
  9881. if (!pools_active) {
  9882. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  9883. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  9884. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  9885. for (i = 0; i < total_pools; i++) {
  9886. struct pool *pool;
  9887. pool = pools[i];
  9888. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  9889. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  9890. }
  9891. #ifdef HAVE_CURSES
  9892. if (use_curses) {
  9893. halfdelay(150);
  9894. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  9895. if (getch() != ERR)
  9896. quit(0, "No servers could be used! Exiting.");
  9897. cbreak();
  9898. } else
  9899. #endif
  9900. quit(0, "No servers could be used! Exiting.");
  9901. }
  9902. } while (!pools_active);
  9903. #ifdef USE_SCRYPT
  9904. if (detect_algo == 1 && !opt_scrypt) {
  9905. applog(LOG_NOTICE, "Detected scrypt algorithm");
  9906. opt_scrypt = true;
  9907. }
  9908. #endif
  9909. detect_algo = 0;
  9910. begin_bench:
  9911. total_mhashes_done = 0;
  9912. for (i = 0; i < total_devices; i++) {
  9913. struct cgpu_info *cgpu = devices[i];
  9914. cgpu->rolling = cgpu->total_mhashes = 0;
  9915. }
  9916. cgtime(&total_tv_start);
  9917. cgtime(&total_tv_end);
  9918. miner_started = total_tv_start;
  9919. time_t miner_start_ts = time(NULL);
  9920. if (schedstart.tm.tm_sec)
  9921. localtime_r(&miner_start_ts, &schedstart.tm);
  9922. if (schedstop.tm.tm_sec)
  9923. localtime_r(&miner_start_ts, &schedstop .tm);
  9924. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  9925. // Initialise processors and threads
  9926. k = 0;
  9927. for (i = 0; i < total_devices; ++i) {
  9928. struct cgpu_info *cgpu = devices[i];
  9929. allocate_cgpu(cgpu, &k);
  9930. }
  9931. // Start threads
  9932. for (i = 0; i < total_devices; ++i) {
  9933. struct cgpu_info *cgpu = devices[i];
  9934. start_cgpu(cgpu);
  9935. }
  9936. #ifdef HAVE_OPENCL
  9937. for (i = 0; i < nDevs; i++)
  9938. pause_dynamic_threads(i);
  9939. #endif
  9940. #ifdef WANT_CPUMINE
  9941. applog(LOG_INFO, "%d cpu miner threads started, "
  9942. "using SHA256 '%s' algorithm.",
  9943. opt_n_threads,
  9944. algo_names[opt_algo]);
  9945. #endif
  9946. cgtime(&total_tv_start);
  9947. cgtime(&total_tv_end);
  9948. {
  9949. pthread_t submit_thread;
  9950. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  9951. quit(1, "submit_work thread create failed");
  9952. }
  9953. watchpool_thr_id = 1;
  9954. thr = &control_thr[watchpool_thr_id];
  9955. /* start watchpool thread */
  9956. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  9957. quit(1, "watchpool thread create failed");
  9958. pthread_detach(thr->pth);
  9959. watchdog_thr_id = 2;
  9960. thr = &control_thr[watchdog_thr_id];
  9961. /* start watchdog thread */
  9962. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  9963. quit(1, "watchdog thread create failed");
  9964. pthread_detach(thr->pth);
  9965. #ifdef HAVE_OPENCL
  9966. /* Create reinit gpu thread */
  9967. gpur_thr_id = 3;
  9968. thr = &control_thr[gpur_thr_id];
  9969. thr->q = tq_new();
  9970. if (!thr->q)
  9971. quit(1, "tq_new failed for gpur_thr_id");
  9972. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  9973. quit(1, "reinit_gpu thread create failed");
  9974. #endif
  9975. /* Create API socket thread */
  9976. api_thr_id = 4;
  9977. thr = &control_thr[api_thr_id];
  9978. if (thr_info_create(thr, NULL, api_thread, thr))
  9979. quit(1, "API thread create failed");
  9980. #ifdef USE_LIBMICROHTTPD
  9981. if (httpsrv_port != -1)
  9982. httpsrv_start(httpsrv_port);
  9983. #endif
  9984. #ifdef USE_LIBEVENT
  9985. if (stratumsrv_port != -1)
  9986. stratumsrv_start();
  9987. #endif
  9988. #ifdef HAVE_CURSES
  9989. /* Create curses input thread for keyboard input. Create this last so
  9990. * that we know all threads are created since this can call kill_work
  9991. * to try and shut down ll previous threads. */
  9992. input_thr_id = 5;
  9993. thr = &control_thr[input_thr_id];
  9994. if (thr_info_create(thr, NULL, input_thread, thr))
  9995. quit(1, "input thread create failed");
  9996. pthread_detach(thr->pth);
  9997. #endif
  9998. /* Just to be sure */
  9999. if (total_control_threads != 6)
  10000. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10001. /* Once everything is set up, main() becomes the getwork scheduler */
  10002. while (42) {
  10003. int ts, max_staged = opt_queue;
  10004. struct pool *pool, *cp;
  10005. bool lagging = false;
  10006. struct curl_ent *ce;
  10007. struct work *work;
  10008. cp = current_pool();
  10009. /* If the primary pool is a getwork pool and cannot roll work,
  10010. * try to stage one extra work per mining thread */
  10011. if (!pool_localgen(cp) && !staged_rollable)
  10012. max_staged += mining_threads;
  10013. mutex_lock(stgd_lock);
  10014. ts = __total_staged();
  10015. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10016. lagging = true;
  10017. /* Wait until hash_pop tells us we need to create more work */
  10018. if (ts > max_staged) {
  10019. staged_full = true;
  10020. pthread_cond_wait(&gws_cond, stgd_lock);
  10021. ts = __total_staged();
  10022. }
  10023. mutex_unlock(stgd_lock);
  10024. if (ts > max_staged)
  10025. continue;
  10026. work = make_work();
  10027. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10028. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10029. cp->getfail_occasions++;
  10030. total_go++;
  10031. }
  10032. pool = select_pool(lagging);
  10033. retry:
  10034. if (pool->has_stratum) {
  10035. while (!pool->stratum_active || !pool->stratum_notify) {
  10036. struct pool *altpool = select_pool(true);
  10037. if (altpool == pool && pool->has_stratum)
  10038. cgsleep_ms(5000);
  10039. pool = altpool;
  10040. goto retry;
  10041. }
  10042. gen_stratum_work(pool, work);
  10043. applog(LOG_DEBUG, "Generated stratum work");
  10044. stage_work(work);
  10045. continue;
  10046. }
  10047. if (pool->last_work_copy) {
  10048. mutex_lock(&pool->last_work_lock);
  10049. struct work *last_work = pool->last_work_copy;
  10050. if (!last_work)
  10051. {}
  10052. else
  10053. if (can_roll(last_work) && should_roll(last_work)) {
  10054. struct timeval tv_now;
  10055. cgtime(&tv_now);
  10056. free_work(work);
  10057. work = make_clone(pool->last_work_copy);
  10058. mutex_unlock(&pool->last_work_lock);
  10059. roll_work(work);
  10060. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tmpl, tv_now.tv_sec));
  10061. stage_work(work);
  10062. continue;
  10063. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10064. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10065. } else {
  10066. free_work(last_work);
  10067. pool->last_work_copy = NULL;
  10068. }
  10069. mutex_unlock(&pool->last_work_lock);
  10070. }
  10071. if (clone_available()) {
  10072. applog(LOG_DEBUG, "Cloned getwork work");
  10073. free_work(work);
  10074. continue;
  10075. }
  10076. if (opt_benchmark) {
  10077. get_benchmark_work(work);
  10078. applog(LOG_DEBUG, "Generated benchmark work");
  10079. stage_work(work);
  10080. continue;
  10081. }
  10082. work->pool = pool;
  10083. ce = pop_curl_entry3(pool, 2);
  10084. /* obtain new work from bitcoin via JSON-RPC */
  10085. if (!get_upstream_work(work, ce->curl)) {
  10086. struct pool *next_pool;
  10087. /* Make sure the pool just hasn't stopped serving
  10088. * requests but is up as we'll keep hammering it */
  10089. push_curl_entry(ce, pool);
  10090. ++pool->seq_getfails;
  10091. pool_died(pool);
  10092. next_pool = select_pool(!opt_fail_only);
  10093. if (pool == next_pool) {
  10094. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10095. cgsleep_ms(5000);
  10096. } else {
  10097. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10098. pool = next_pool;
  10099. }
  10100. goto retry;
  10101. }
  10102. if (ts >= max_staged)
  10103. pool_tclear(pool, &pool->lagging);
  10104. if (pool_tclear(pool, &pool->idle))
  10105. pool_resus(pool);
  10106. applog(LOG_DEBUG, "Generated getwork work");
  10107. stage_work(work);
  10108. push_curl_entry(ce, pool);
  10109. }
  10110. return 0;
  10111. }