miner.c 288 KB

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