miner.c 300 KB

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