miner.c 300 KB

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