miner.c 287 KB

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