miner.c 297 KB

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