miner.c 298 KB

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