miner.c 319 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469
  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 <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #include "util.h"
  75. #ifdef USE_AVALON
  76. #include "driver-avalon.h"
  77. #endif
  78. #ifdef HAVE_BFG_LOWLEVEL
  79. #include "lowlevel.h"
  80. #endif
  81. #if defined(unix) || defined(__APPLE__)
  82. #include <errno.h>
  83. #include <fcntl.h>
  84. #include <sys/wait.h>
  85. #endif
  86. #ifdef USE_SCRYPT
  87. #include "scrypt.h"
  88. #endif
  89. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  90. # define USE_FPGA
  91. #endif
  92. enum bfg_quit_summary {
  93. BQS_DEFAULT,
  94. BQS_NONE,
  95. BQS_DEVS,
  96. BQS_PROCS,
  97. BQS_DETAILED,
  98. };
  99. struct strategies strategies[] = {
  100. { "Failover" },
  101. { "Round Robin" },
  102. { "Rotate" },
  103. { "Load Balance" },
  104. { "Balance" },
  105. };
  106. static char packagename[256];
  107. bool opt_protocol;
  108. bool opt_dev_protocol;
  109. static bool opt_benchmark;
  110. static bool want_longpoll = true;
  111. static bool want_gbt = true;
  112. static bool want_getwork = true;
  113. #if BLKMAKER_VERSION > 1
  114. struct _cbscript_t {
  115. char *data;
  116. size_t sz;
  117. };
  118. static struct _cbscript_t opt_coinbase_script;
  119. static uint32_t template_nonce;
  120. #endif
  121. #if BLKMAKER_VERSION > 0
  122. char *opt_coinbase_sig;
  123. #endif
  124. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  125. static bool include_serial_in_statline;
  126. char *request_target_str;
  127. float request_pdiff = 1.0;
  128. double request_bdiff;
  129. static bool want_stratum = true;
  130. bool have_longpoll;
  131. int opt_skip_checks;
  132. bool want_per_device_stats;
  133. bool use_syslog;
  134. bool opt_quiet_work_updates = true;
  135. bool opt_quiet;
  136. bool opt_realquiet;
  137. int loginput_size;
  138. bool opt_compact;
  139. bool opt_show_procs;
  140. const int opt_cutofftemp = 95;
  141. int opt_hysteresis = 3;
  142. static int opt_retries = -1;
  143. int opt_fail_pause = 5;
  144. int opt_log_interval = 20;
  145. int opt_queue = 1;
  146. int opt_scantime = 60;
  147. int opt_expiry = 120;
  148. int opt_expiry_lp = 3600;
  149. unsigned long long global_hashrate;
  150. static bool opt_unittest = false;
  151. unsigned long global_quota_gcd = 1;
  152. time_t last_getwork;
  153. #ifdef HAVE_OPENCL
  154. int opt_dynamic_interval = 7;
  155. int nDevs;
  156. int opt_g_threads = -1;
  157. #endif
  158. #ifdef USE_SCRYPT
  159. static char detect_algo = 1;
  160. bool opt_scrypt;
  161. #else
  162. static char detect_algo;
  163. #endif
  164. bool opt_restart = true;
  165. #ifdef USE_LIBMICROHTTPD
  166. #include "httpsrv.h"
  167. int httpsrv_port = -1;
  168. #endif
  169. #ifdef USE_LIBEVENT
  170. int stratumsrv_port = -1;
  171. #endif
  172. const
  173. int rescan_delay_ms = 1000;
  174. #ifdef HAVE_BFG_HOTPLUG
  175. bool opt_hotplug = 1;
  176. const
  177. int hotplug_delay_ms = 100;
  178. #else
  179. const bool opt_hotplug;
  180. #endif
  181. struct string_elist *scan_devices;
  182. static struct string_elist *opt_set_device_list;
  183. bool opt_force_dev_init;
  184. static struct string_elist *opt_devices_enabled_list;
  185. static bool opt_display_devs;
  186. int total_devices;
  187. struct cgpu_info **devices;
  188. int total_devices_new;
  189. struct cgpu_info **devices_new;
  190. bool have_opencl;
  191. int opt_n_threads = -1;
  192. int mining_threads;
  193. int num_processors;
  194. #ifdef HAVE_CURSES
  195. bool use_curses = true;
  196. #else
  197. bool use_curses;
  198. #endif
  199. #ifdef HAVE_LIBUSB
  200. bool have_libusb;
  201. #endif
  202. static bool opt_submit_stale = true;
  203. static float opt_shares;
  204. static int opt_submit_threads = 0x40;
  205. bool opt_fail_only;
  206. int opt_fail_switch_delay = 300;
  207. bool opt_autofan;
  208. bool opt_autoengine;
  209. bool opt_noadl;
  210. char *opt_api_allow = NULL;
  211. char *opt_api_groups;
  212. char *opt_api_description = PACKAGE_STRING;
  213. int opt_api_port = 4028;
  214. bool opt_api_listen;
  215. bool opt_api_mcast;
  216. char *opt_api_mcast_addr = API_MCAST_ADDR;
  217. char *opt_api_mcast_code = API_MCAST_CODE;
  218. char *opt_api_mcast_des = "";
  219. int opt_api_mcast_port = 4028;
  220. bool opt_api_network;
  221. bool opt_delaynet;
  222. bool opt_disable_pool;
  223. bool opt_disable_client_reconnect = false;
  224. static bool no_work;
  225. bool opt_worktime;
  226. bool opt_weighed_stats;
  227. char *opt_kernel_path;
  228. char *cgminer_path;
  229. #if defined(USE_BITFORCE)
  230. bool opt_bfl_noncerange;
  231. #endif
  232. #define QUIET (opt_quiet || opt_realquiet)
  233. struct thr_info *control_thr;
  234. struct thr_info **mining_thr;
  235. static int watchpool_thr_id;
  236. static int watchdog_thr_id;
  237. #ifdef HAVE_CURSES
  238. static int input_thr_id;
  239. #endif
  240. int gpur_thr_id;
  241. static int api_thr_id;
  242. static int total_control_threads;
  243. pthread_mutex_t hash_lock;
  244. static pthread_mutex_t *stgd_lock;
  245. pthread_mutex_t console_lock;
  246. cglock_t ch_lock;
  247. static pthread_rwlock_t blk_lock;
  248. static pthread_mutex_t sshare_lock;
  249. pthread_rwlock_t netacc_lock;
  250. pthread_rwlock_t mining_thr_lock;
  251. pthread_rwlock_t devices_lock;
  252. static pthread_mutex_t lp_lock;
  253. static pthread_cond_t lp_cond;
  254. pthread_cond_t gws_cond;
  255. bool shutting_down;
  256. double total_rolling;
  257. double total_mhashes_done;
  258. static struct timeval total_tv_start, total_tv_end;
  259. static struct timeval miner_started;
  260. cglock_t control_lock;
  261. pthread_mutex_t stats_lock;
  262. static pthread_mutex_t submitting_lock;
  263. static int total_submitting;
  264. static struct work *submit_waiting;
  265. notifier_t submit_waiting_notifier;
  266. int hw_errors;
  267. int total_accepted, total_rejected;
  268. int total_getworks, total_stale, total_discarded;
  269. uint64_t total_bytes_rcvd, total_bytes_sent;
  270. double total_diff1, total_bad_diff1;
  271. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  272. static int staged_rollable;
  273. unsigned int new_blocks;
  274. unsigned int found_blocks;
  275. unsigned int local_work;
  276. unsigned int total_go, total_ro;
  277. struct pool **pools;
  278. static struct pool *currentpool = NULL;
  279. int total_pools, enabled_pools;
  280. enum pool_strategy pool_strategy = POOL_FAILOVER;
  281. int opt_rotate_period;
  282. static int total_urls, total_users, total_passes;
  283. static
  284. #ifndef HAVE_CURSES
  285. const
  286. #endif
  287. bool curses_active;
  288. #ifdef HAVE_CURSES
  289. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  290. const
  291. #endif
  292. short default_bgcolor = COLOR_BLACK;
  293. static int attr_title = A_BOLD;
  294. #endif
  295. static
  296. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  297. bool use_unicode;
  298. static
  299. bool have_unicode_degrees;
  300. static
  301. wchar_t unicode_micro = 'u';
  302. #else
  303. const bool use_unicode;
  304. static
  305. const bool have_unicode_degrees;
  306. static
  307. const char unicode_micro = 'u';
  308. #endif
  309. #ifdef HAVE_CURSES
  310. #define U8_BAD_START "\xef\x80\x81"
  311. #define U8_BAD_END "\xef\x80\x80"
  312. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  313. bool selecting_device;
  314. unsigned selected_device;
  315. #endif
  316. static char current_block[40];
  317. /* Protected by ch_lock */
  318. static char *current_hash;
  319. static uint32_t current_block_id;
  320. char *current_fullhash;
  321. static char datestamp[40];
  322. static char blocktime[32];
  323. time_t block_time;
  324. static char best_share[ALLOC_H2B_SHORTV] = "0";
  325. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  326. static char block_diff[ALLOC_H2B_SHORTV];
  327. static char net_hashrate[ALLOC_H2B_SHORT];
  328. double best_diff = 0;
  329. static bool known_blkheight_current;
  330. static uint32_t known_blkheight;
  331. static uint32_t known_blkheight_blkid;
  332. static uint64_t block_subsidy;
  333. struct block {
  334. char hash[40];
  335. UT_hash_handle hh;
  336. int block_no;
  337. };
  338. static struct block *blocks = NULL;
  339. int swork_id;
  340. /* For creating a hash database of stratum shares submitted that have not had
  341. * a response yet */
  342. struct stratum_share {
  343. UT_hash_handle hh;
  344. bool block;
  345. struct work *work;
  346. int id;
  347. };
  348. static struct stratum_share *stratum_shares = NULL;
  349. char *opt_socks_proxy = NULL;
  350. static const char def_conf[] = "bfgminer.conf";
  351. static bool config_loaded;
  352. static int include_count;
  353. #define JSON_INCLUDE_CONF "include"
  354. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  355. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  356. #define JSON_MAX_DEPTH 10
  357. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  358. char *cmd_idle, *cmd_sick, *cmd_dead;
  359. #if defined(unix) || defined(__APPLE__)
  360. static char *opt_stderr_cmd = NULL;
  361. static int forkpid;
  362. #endif // defined(unix)
  363. #ifdef HAVE_CHROOT
  364. char *chroot_dir;
  365. #endif
  366. #ifdef HAVE_PWD_H
  367. char *opt_setuid;
  368. #endif
  369. struct sigaction termhandler, inthandler;
  370. struct thread_q *getq;
  371. static int total_work;
  372. static bool staged_full;
  373. struct work *staged_work = NULL;
  374. struct schedtime {
  375. bool enable;
  376. struct tm tm;
  377. };
  378. struct schedtime schedstart;
  379. struct schedtime schedstop;
  380. bool sched_paused;
  381. static bool time_before(struct tm *tm1, struct tm *tm2)
  382. {
  383. if (tm1->tm_hour < tm2->tm_hour)
  384. return true;
  385. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  386. return true;
  387. return false;
  388. }
  389. static bool should_run(void)
  390. {
  391. struct tm tm;
  392. time_t tt;
  393. bool within_range;
  394. if (!schedstart.enable && !schedstop.enable)
  395. return true;
  396. tt = time(NULL);
  397. localtime_r(&tt, &tm);
  398. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  399. if (time_before(&schedstop.tm, &schedstart.tm))
  400. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  401. else
  402. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  403. if (within_range && !schedstop.enable)
  404. /* This is a once off event with no stop time set */
  405. schedstart.enable = false;
  406. return within_range;
  407. }
  408. void get_datestamp(char *f, size_t fsiz, time_t tt)
  409. {
  410. struct tm _tm;
  411. struct tm *tm = &_tm;
  412. if (tt == INVALID_TIMESTAMP)
  413. tt = time(NULL);
  414. localtime_r(&tt, tm);
  415. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  416. tm->tm_year + 1900,
  417. tm->tm_mon + 1,
  418. tm->tm_mday,
  419. tm->tm_hour,
  420. tm->tm_min,
  421. tm->tm_sec);
  422. }
  423. static
  424. void get_timestamp(char *f, size_t fsiz, time_t tt)
  425. {
  426. struct tm _tm;
  427. struct tm *tm = &_tm;
  428. localtime_r(&tt, tm);
  429. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  430. tm->tm_hour,
  431. tm->tm_min,
  432. tm->tm_sec);
  433. }
  434. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  435. static char exit_buf[512];
  436. static void applog_and_exit(const char *fmt, ...)
  437. {
  438. va_list ap;
  439. va_start(ap, fmt);
  440. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  441. va_end(ap);
  442. _applog(LOG_ERR, exit_buf);
  443. exit(1);
  444. }
  445. char *devpath_to_devid(const char *devpath)
  446. {
  447. #ifndef WIN32
  448. struct stat my_stat;
  449. if (stat(devpath, &my_stat))
  450. return NULL;
  451. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  452. memcpy(devs, "dev_t:", 6);
  453. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  454. #else
  455. if (!strncmp(devpath, "\\\\.\\", 4))
  456. devpath += 4;
  457. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  458. return NULL;
  459. devpath += 3;
  460. char *p;
  461. strtol(devpath, &p, 10);
  462. if (p[0])
  463. return NULL;
  464. const int sz = (p - devpath);
  465. char *devs = malloc(4 + sz + 1);
  466. sprintf(devs, "com:%s", devpath);
  467. #endif
  468. return devs;
  469. }
  470. static
  471. bool devpaths_match(const char * const ap, const char * const bp)
  472. {
  473. char * const a = devpath_to_devid(ap);
  474. if (!a)
  475. return false;
  476. char * const b = devpath_to_devid(bp);
  477. bool rv = false;
  478. if (b)
  479. {
  480. rv = !strcmp(a, b);
  481. free(b);
  482. }
  483. free(a);
  484. return rv;
  485. }
  486. static
  487. int proc_letter_to_number(const char *s, const char ** const rem)
  488. {
  489. int n = 0, c;
  490. for ( ; s[0]; ++s)
  491. {
  492. if (unlikely(n > INT_MAX / 26))
  493. break;
  494. c = tolower(s[0]) - 'a';
  495. if (unlikely(c < 0 || c > 25))
  496. break;
  497. if (unlikely(INT_MAX - c < n))
  498. break;
  499. n = (n * 26) + c;
  500. }
  501. *rem = s;
  502. return n;
  503. }
  504. static
  505. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  506. {
  507. // all - matches anything
  508. // d0 - matches all processors of device 0
  509. // d0-3 - matches all processors of device 0, 1, 2, or 3
  510. // d0a - matches first processor of device 0
  511. // 0 - matches processor 0
  512. // 0-4 - matches processors 0, 1, 2, 3, or 4
  513. // ___ - matches all processors on all devices using driver/name ___
  514. // ___0 - matches all processors of 0th device using driver/name ___
  515. // ___0a - matches first processor of 0th device using driver/name ___
  516. // @* - matches device with serial or path *
  517. // @*@a - matches first processor of device with serial or path *
  518. // ___@* - matches device with serial or path * using driver/name ___
  519. if (!strcasecmp(pattern, "all"))
  520. return true;
  521. const struct device_drv * const drv = cgpu->drv;
  522. const char *p = pattern, *p2;
  523. size_t L;
  524. int n, i, c = -1;
  525. int n2;
  526. int proc_first = -1, proc_last = -1;
  527. struct cgpu_info *device;
  528. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  529. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  530. // dname or name
  531. p = &pattern[L];
  532. else
  533. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  534. // d#
  535. ++p;
  536. else
  537. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  538. // # or @
  539. {}
  540. else
  541. return false;
  542. L = p - pattern;
  543. while (isspace(p[0]))
  544. ++p;
  545. if (p[0] == '@')
  546. {
  547. // Serial/path
  548. const char * const ser = &p[1];
  549. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  550. {}
  551. p2 = (p[0] == '@') ? &p[1] : p;
  552. const size_t serlen = (p - ser);
  553. p = "";
  554. n = n2 = 0;
  555. const char * const devpath = cgpu->device_path ?: "";
  556. const char * const devser = cgpu->dev_serial ?: "";
  557. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  558. {} // Match
  559. else
  560. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  561. {} // Match
  562. else
  563. {
  564. char devpath2[serlen + 1];
  565. memcpy(devpath2, ser, serlen);
  566. devpath2[serlen] = '\0';
  567. if (!devpaths_match(devpath, ser))
  568. return false;
  569. }
  570. }
  571. else
  572. {
  573. if (isdigit(p[0]))
  574. n = strtol(p, (void*)&p2, 0);
  575. else
  576. {
  577. n = 0;
  578. p2 = p;
  579. }
  580. if (p2[0] == '-')
  581. {
  582. ++p2;
  583. if (p2[0] && isdigit(p2[0]))
  584. n2 = strtol(p2, (void*)&p2, 0);
  585. else
  586. n2 = INT_MAX;
  587. }
  588. else
  589. n2 = n;
  590. if (p == pattern)
  591. {
  592. if (!p[0])
  593. return true;
  594. if (p2 && p2[0])
  595. goto invsyntax;
  596. for (i = n; i <= n2; ++i)
  597. {
  598. if (i >= total_devices)
  599. break;
  600. if (cgpu == devices[i])
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. if (p2[0])
  607. {
  608. proc_first = proc_letter_to_number(&p2[0], &p2);
  609. if (p2[0] == '-')
  610. {
  611. ++p2;
  612. if (p2[0])
  613. proc_last = proc_letter_to_number(p2, &p2);
  614. else
  615. proc_last = INT_MAX;
  616. }
  617. else
  618. proc_last = proc_first;
  619. if (p2[0])
  620. goto invsyntax;
  621. }
  622. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  623. {
  624. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  625. (!L) ||
  626. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  627. {} // Matched name or dname
  628. else
  629. return false;
  630. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  631. return false;
  632. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  633. return false;
  634. return true;
  635. }
  636. // d#
  637. c = -1;
  638. for (i = 0; ; ++i)
  639. {
  640. if (i == total_devices)
  641. return false;
  642. if (devices[i]->device != devices[i])
  643. continue;
  644. ++c;
  645. if (c < n)
  646. continue;
  647. if (c > n2)
  648. break;
  649. for (device = devices[i]; device; device = device->next_proc)
  650. {
  651. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  652. continue;
  653. if (device == cgpu)
  654. return true;
  655. }
  656. }
  657. return false;
  658. invsyntax:
  659. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  660. return false;
  661. }
  662. #define TEST_CGPU_MATCH(pattern) \
  663. if (!cgpu_match(pattern, &cgpu)) \
  664. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  665. // END TEST_CGPU_MATCH
  666. #define TEST_CGPU_NOMATCH(pattern) \
  667. if (cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. static __maybe_unused
  671. void test_cgpu_match()
  672. {
  673. struct device_drv drv = {
  674. .dname = "test",
  675. .name = "TST",
  676. };
  677. struct cgpu_info cgpu = {
  678. .drv = &drv,
  679. .device = &cgpu,
  680. .device_id = 1,
  681. .proc_id = 1,
  682. .proc_repr = "TST 1b",
  683. }, cgpu0a = {
  684. .drv = &drv,
  685. .device = &cgpu0a,
  686. .device_id = 0,
  687. .proc_id = 0,
  688. .proc_repr = "TST 0a",
  689. }, cgpu1a = {
  690. .drv = &drv,
  691. .device = &cgpu0a,
  692. .device_id = 1,
  693. .proc_id = 0,
  694. .proc_repr = "TST 1a",
  695. };
  696. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  697. devices = devices_list;
  698. total_devices = 3;
  699. TEST_CGPU_MATCH("all")
  700. TEST_CGPU_MATCH("d1")
  701. TEST_CGPU_NOMATCH("d2")
  702. TEST_CGPU_MATCH("d0-5")
  703. TEST_CGPU_NOMATCH("d0-0")
  704. TEST_CGPU_NOMATCH("d2-5")
  705. TEST_CGPU_MATCH("d-1")
  706. TEST_CGPU_MATCH("d1-")
  707. TEST_CGPU_NOMATCH("d-0")
  708. TEST_CGPU_NOMATCH("d2-")
  709. TEST_CGPU_MATCH("2")
  710. TEST_CGPU_NOMATCH("3")
  711. TEST_CGPU_MATCH("1-2")
  712. TEST_CGPU_MATCH("2-3")
  713. TEST_CGPU_NOMATCH("1-1")
  714. TEST_CGPU_NOMATCH("3-4")
  715. TEST_CGPU_MATCH("TST")
  716. TEST_CGPU_MATCH("test")
  717. TEST_CGPU_MATCH("tst")
  718. TEST_CGPU_MATCH("TEST")
  719. TEST_CGPU_NOMATCH("TSF")
  720. TEST_CGPU_NOMATCH("TS")
  721. TEST_CGPU_NOMATCH("TSTF")
  722. TEST_CGPU_MATCH("TST1")
  723. TEST_CGPU_MATCH("test1")
  724. TEST_CGPU_MATCH("TST0-1")
  725. TEST_CGPU_MATCH("TST 1")
  726. TEST_CGPU_MATCH("TST 1-2")
  727. TEST_CGPU_MATCH("TEST 1-2")
  728. TEST_CGPU_NOMATCH("TST2")
  729. TEST_CGPU_NOMATCH("TST2-3")
  730. TEST_CGPU_NOMATCH("TST0-0")
  731. TEST_CGPU_MATCH("TST1b")
  732. TEST_CGPU_MATCH("tst1b")
  733. TEST_CGPU_NOMATCH("TST1c")
  734. TEST_CGPU_NOMATCH("TST1bb")
  735. TEST_CGPU_MATCH("TST0-1b")
  736. TEST_CGPU_NOMATCH("TST0-1c")
  737. TEST_CGPU_MATCH("TST1a-d")
  738. TEST_CGPU_NOMATCH("TST1a-a")
  739. TEST_CGPU_NOMATCH("TST1-a")
  740. TEST_CGPU_NOMATCH("TST1c-z")
  741. TEST_CGPU_NOMATCH("TST1c-")
  742. TEST_CGPU_MATCH("@")
  743. TEST_CGPU_NOMATCH("@abc")
  744. TEST_CGPU_MATCH("@@b")
  745. TEST_CGPU_NOMATCH("@@c")
  746. TEST_CGPU_MATCH("TST@")
  747. TEST_CGPU_NOMATCH("TST@abc")
  748. TEST_CGPU_MATCH("TST@@b")
  749. TEST_CGPU_NOMATCH("TST@@c")
  750. TEST_CGPU_MATCH("TST@@b-f")
  751. TEST_CGPU_NOMATCH("TST@@c-f")
  752. TEST_CGPU_NOMATCH("TST@@-a")
  753. cgpu.device_path = "/dev/test";
  754. cgpu.dev_serial = "testy";
  755. TEST_CGPU_MATCH("TST@/dev/test")
  756. TEST_CGPU_MATCH("TST@testy")
  757. TEST_CGPU_NOMATCH("TST@")
  758. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  759. TEST_CGPU_NOMATCH("TST@testy3@b")
  760. TEST_CGPU_MATCH("TST@/dev/test@b")
  761. TEST_CGPU_MATCH("TST@testy@b")
  762. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  763. TEST_CGPU_NOMATCH("TST@testy@c")
  764. cgpu.device_path = "usb:000:999";
  765. TEST_CGPU_MATCH("TST@usb:000:999")
  766. drv.dname = "test7";
  767. TEST_CGPU_MATCH("test7")
  768. TEST_CGPU_MATCH("TEST7")
  769. TEST_CGPU_NOMATCH("test&")
  770. TEST_CGPU_MATCH("test7 1-2")
  771. TEST_CGPU_MATCH("test7@testy@b")
  772. }
  773. static
  774. int cgpu_search(const char * const pattern, const int first)
  775. {
  776. int i;
  777. struct cgpu_info *cgpu;
  778. #define CHECK_CGPU_SEARCH do{ \
  779. cgpu = get_devices(i); \
  780. if (cgpu_match(pattern, cgpu)) \
  781. return i; \
  782. }while(0)
  783. for (i = first; i < total_devices; ++i)
  784. CHECK_CGPU_SEARCH;
  785. for (i = 0; i < first; ++i)
  786. CHECK_CGPU_SEARCH;
  787. #undef CHECK_CGPU_SEARCH
  788. return -1;
  789. }
  790. static pthread_mutex_t sharelog_lock;
  791. static FILE *sharelog_file = NULL;
  792. struct thr_info *get_thread(int thr_id)
  793. {
  794. struct thr_info *thr;
  795. rd_lock(&mining_thr_lock);
  796. thr = mining_thr[thr_id];
  797. rd_unlock(&mining_thr_lock);
  798. return thr;
  799. }
  800. static struct cgpu_info *get_thr_cgpu(int thr_id)
  801. {
  802. struct thr_info *thr = get_thread(thr_id);
  803. return thr->cgpu;
  804. }
  805. struct cgpu_info *get_devices(int id)
  806. {
  807. struct cgpu_info *cgpu;
  808. rd_lock(&devices_lock);
  809. cgpu = devices[id];
  810. rd_unlock(&devices_lock);
  811. return cgpu;
  812. }
  813. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  814. static FILE *noncelog_file = NULL;
  815. static
  816. void noncelog(const struct work * const work)
  817. {
  818. const int thr_id = work->thr_id;
  819. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  820. char buf[0x200], hash[65], data[161], midstate[65];
  821. int rv;
  822. size_t ret;
  823. bin2hex(hash, work->hash, 32);
  824. bin2hex(data, work->data, 80);
  825. bin2hex(midstate, work->midstate, 32);
  826. // timestamp,proc,hash,data,midstate
  827. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  828. (unsigned long)time(NULL), proc->proc_repr_ns,
  829. hash, data, midstate);
  830. if (unlikely(rv < 1))
  831. {
  832. applog(LOG_ERR, "noncelog printf error");
  833. return;
  834. }
  835. mutex_lock(&noncelog_lock);
  836. ret = fwrite(buf, rv, 1, noncelog_file);
  837. fflush(noncelog_file);
  838. mutex_unlock(&noncelog_lock);
  839. if (ret != 1)
  840. applog(LOG_ERR, "noncelog fwrite error");
  841. }
  842. static void sharelog(const char*disposition, const struct work*work)
  843. {
  844. char target[(sizeof(work->target) * 2) + 1];
  845. char hash[(sizeof(work->hash) * 2) + 1];
  846. char data[(sizeof(work->data) * 2) + 1];
  847. struct cgpu_info *cgpu;
  848. unsigned long int t;
  849. struct pool *pool;
  850. int thr_id, rv;
  851. char s[1024];
  852. size_t ret;
  853. if (!sharelog_file)
  854. return;
  855. thr_id = work->thr_id;
  856. cgpu = get_thr_cgpu(thr_id);
  857. pool = work->pool;
  858. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  859. bin2hex(target, work->target, sizeof(work->target));
  860. bin2hex(hash, work->hash, sizeof(work->hash));
  861. bin2hex(data, work->data, sizeof(work->data));
  862. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  863. 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);
  864. if (rv >= (int)(sizeof(s)))
  865. s[sizeof(s) - 1] = '\0';
  866. else if (rv < 0) {
  867. applog(LOG_ERR, "sharelog printf error");
  868. return;
  869. }
  870. mutex_lock(&sharelog_lock);
  871. ret = fwrite(s, rv, 1, sharelog_file);
  872. fflush(sharelog_file);
  873. mutex_unlock(&sharelog_lock);
  874. if (ret != 1)
  875. applog(LOG_ERR, "sharelog fwrite error");
  876. }
  877. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  878. /* Adjust all the pools' quota to the greatest common denominator after a pool
  879. * has been added or the quotas changed. */
  880. void adjust_quota_gcd(void)
  881. {
  882. unsigned long gcd, lowest_quota = ~0UL, quota;
  883. struct pool *pool;
  884. int i;
  885. for (i = 0; i < total_pools; i++) {
  886. pool = pools[i];
  887. quota = pool->quota;
  888. if (!quota)
  889. continue;
  890. if (quota < lowest_quota)
  891. lowest_quota = quota;
  892. }
  893. if (likely(lowest_quota < ~0UL)) {
  894. gcd = lowest_quota;
  895. for (i = 0; i < total_pools; i++) {
  896. pool = pools[i];
  897. quota = pool->quota;
  898. if (!quota)
  899. continue;
  900. while (quota % gcd)
  901. gcd--;
  902. }
  903. } else
  904. gcd = 1;
  905. for (i = 0; i < total_pools; i++) {
  906. pool = pools[i];
  907. pool->quota_used *= global_quota_gcd;
  908. pool->quota_used /= gcd;
  909. pool->quota_gcd = pool->quota / gcd;
  910. }
  911. global_quota_gcd = gcd;
  912. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  913. }
  914. /* Return value is ignored if not called from add_pool_details */
  915. struct pool *add_pool(void)
  916. {
  917. struct pool *pool;
  918. pool = calloc(sizeof(struct pool), 1);
  919. if (!pool)
  920. quit(1, "Failed to malloc pool in add_pool");
  921. pool->pool_no = pool->prio = total_pools;
  922. mutex_init(&pool->last_work_lock);
  923. mutex_init(&pool->pool_lock);
  924. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  925. quit(1, "Failed to pthread_cond_init in add_pool");
  926. cglock_init(&pool->data_lock);
  927. mutex_init(&pool->stratum_lock);
  928. timer_unset(&pool->swork.tv_transparency);
  929. pool->swork.pool = pool;
  930. /* Make sure the pool doesn't think we've been idle since time 0 */
  931. pool->tv_idle.tv_sec = ~0UL;
  932. cgtime(&pool->cgminer_stats.start_tv);
  933. pool->rpc_proxy = NULL;
  934. pool->quota = 1;
  935. pool->sock = INVSOCK;
  936. pool->lp_socket = CURL_SOCKET_BAD;
  937. if (opt_benchmark)
  938. {
  939. // Don't add to pools array, but immediately remove it
  940. remove_pool(pool);
  941. return pool;
  942. }
  943. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  944. pools[total_pools++] = pool;
  945. adjust_quota_gcd();
  946. return pool;
  947. }
  948. /* Pool variant of test and set */
  949. static bool pool_tset(struct pool *pool, bool *var)
  950. {
  951. bool ret;
  952. mutex_lock(&pool->pool_lock);
  953. ret = *var;
  954. *var = true;
  955. mutex_unlock(&pool->pool_lock);
  956. return ret;
  957. }
  958. bool pool_tclear(struct pool *pool, bool *var)
  959. {
  960. bool ret;
  961. mutex_lock(&pool->pool_lock);
  962. ret = *var;
  963. *var = false;
  964. mutex_unlock(&pool->pool_lock);
  965. return ret;
  966. }
  967. struct pool *current_pool(void)
  968. {
  969. struct pool *pool;
  970. cg_rlock(&control_lock);
  971. pool = currentpool;
  972. cg_runlock(&control_lock);
  973. return pool;
  974. }
  975. // Copied from ccan/opt/helpers.c
  976. static char *arg_bad(const char *fmt, const char *arg)
  977. {
  978. char *str = malloc(strlen(fmt) + strlen(arg));
  979. sprintf(str, fmt, arg);
  980. return str;
  981. }
  982. static
  983. char *opt_set_floatval(const char *arg, float *f)
  984. {
  985. char *endp;
  986. errno = 0;
  987. *f = strtof(arg, &endp);
  988. if (*endp || !arg[0])
  989. return arg_bad("'%s' is not a number", arg);
  990. if (errno)
  991. return arg_bad("'%s' is out of range", arg);
  992. return NULL;
  993. }
  994. static
  995. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  996. {
  997. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  998. }
  999. static
  1000. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  1001. {
  1002. return opt_set_bool(b);
  1003. }
  1004. char *set_int_range(const char *arg, int *i, int min, int max)
  1005. {
  1006. char *err = opt_set_intval(arg, i);
  1007. if (err)
  1008. return err;
  1009. if (*i < min || *i > max)
  1010. return "Value out of range";
  1011. return NULL;
  1012. }
  1013. static char *set_int_0_to_9999(const char *arg, int *i)
  1014. {
  1015. return set_int_range(arg, i, 0, 9999);
  1016. }
  1017. static char *set_int_1_to_65535(const char *arg, int *i)
  1018. {
  1019. return set_int_range(arg, i, 1, 65535);
  1020. }
  1021. static char *set_int_0_to_10(const char *arg, int *i)
  1022. {
  1023. return set_int_range(arg, i, 0, 10);
  1024. }
  1025. static char *set_int_1_to_10(const char *arg, int *i)
  1026. {
  1027. return set_int_range(arg, i, 1, 10);
  1028. }
  1029. char *set_strdup(const char *arg, char **p)
  1030. {
  1031. *p = strdup((char *)arg);
  1032. return NULL;
  1033. }
  1034. #if BLKMAKER_VERSION > 1
  1035. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1036. {
  1037. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1038. if (!scriptsz)
  1039. return "Invalid address";
  1040. char *script = malloc(scriptsz);
  1041. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1042. free(script);
  1043. return "Failed to convert address to script";
  1044. }
  1045. p->data = script;
  1046. p->sz = scriptsz;
  1047. return NULL;
  1048. }
  1049. #endif
  1050. static
  1051. char *set_quit_summary(const char * const arg)
  1052. {
  1053. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1054. opt_quit_summary = BQS_NONE;
  1055. else
  1056. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1057. opt_quit_summary = BQS_DEVS;
  1058. else
  1059. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1060. opt_quit_summary = BQS_PROCS;
  1061. else
  1062. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1063. opt_quit_summary = BQS_DETAILED;
  1064. else
  1065. return "Quit summary must be one of none/devs/procs/detailed";
  1066. return NULL;
  1067. }
  1068. static void pdiff_target_leadzero(void *, double);
  1069. char *set_request_diff(const char *arg, float *p)
  1070. {
  1071. unsigned char target[32];
  1072. char *e = opt_set_floatval(arg, p);
  1073. if (e)
  1074. return e;
  1075. request_bdiff = (double)*p * 0.9999847412109375;
  1076. pdiff_target_leadzero(target, *p);
  1077. request_target_str = malloc(65);
  1078. bin2hex(request_target_str, target, 32);
  1079. return NULL;
  1080. }
  1081. #ifdef NEED_BFG_LOWL_VCOM
  1082. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1083. #ifdef WIN32
  1084. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1085. {
  1086. char dev[PATH_MAX];
  1087. char *devp = dev;
  1088. size_t bufLen = 0x100;
  1089. tryagain: ;
  1090. char buf[bufLen];
  1091. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1092. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1093. bufLen *= 2;
  1094. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1095. goto tryagain;
  1096. }
  1097. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1098. }
  1099. size_t tLen;
  1100. memcpy(devp, "\\\\.\\", 4);
  1101. devp = &devp[4];
  1102. for (char *t = buf; *t; t += tLen) {
  1103. tLen = strlen(t) + 1;
  1104. if (strncmp("COM", t, 3))
  1105. continue;
  1106. memcpy(devp, t, tLen);
  1107. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1108. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1109. }
  1110. }
  1111. #else
  1112. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1113. {
  1114. char dev[PATH_MAX];
  1115. char *devp = dev;
  1116. DIR *D;
  1117. struct dirent *de;
  1118. const char devdir[] = "/dev";
  1119. const size_t devdirlen = sizeof(devdir) - 1;
  1120. char *devpath = devp;
  1121. char *devfile = devpath + devdirlen + 1;
  1122. D = opendir(devdir);
  1123. if (!D)
  1124. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1125. memcpy(devpath, devdir, devdirlen);
  1126. devpath[devdirlen] = '/';
  1127. while ( (de = readdir(D)) ) {
  1128. if (!strncmp(de->d_name, "cu.", 3)
  1129. //don't probe Bluetooth devices - causes bus errors and segfaults
  1130. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1131. goto trydev;
  1132. if (strncmp(de->d_name, "tty", 3))
  1133. continue;
  1134. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1135. continue;
  1136. trydev:
  1137. strcpy(devfile, de->d_name);
  1138. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1139. }
  1140. closedir(D);
  1141. }
  1142. #endif
  1143. #endif
  1144. static char *add_serial(const char *arg)
  1145. {
  1146. string_elist_add(arg, &scan_devices);
  1147. return NULL;
  1148. }
  1149. static
  1150. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1151. {
  1152. string_elist_add(arg, elist);
  1153. return NULL;
  1154. }
  1155. bool get_intrange(const char *arg, int *val1, int *val2)
  1156. {
  1157. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1158. char *p, *p2;
  1159. *val1 = strtol(arg, &p, 0);
  1160. if (arg == p)
  1161. // Zero-length ending number, invalid
  1162. return false;
  1163. while (true)
  1164. {
  1165. if (!p[0])
  1166. {
  1167. *val2 = *val1;
  1168. return true;
  1169. }
  1170. if (p[0] == '-')
  1171. break;
  1172. if (!isspace(p[0]))
  1173. // Garbage, invalid
  1174. return false;
  1175. ++p;
  1176. }
  1177. p2 = &p[1];
  1178. *val2 = strtol(p2, &p, 0);
  1179. if (p2 == p)
  1180. // Zero-length ending number, invalid
  1181. return false;
  1182. while (true)
  1183. {
  1184. if (!p[0])
  1185. return true;
  1186. if (!isspace(p[0]))
  1187. // Garbage, invalid
  1188. return false;
  1189. ++p;
  1190. }
  1191. }
  1192. static
  1193. void _test_intrange(const char *s, const int v[2])
  1194. {
  1195. int a[2];
  1196. if (!get_intrange(s, &a[0], &a[1]))
  1197. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1198. for (int i = 0; i < 2; ++i)
  1199. if (unlikely(a[i] != v[i]))
  1200. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1201. }
  1202. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1203. static
  1204. void _test_intrange_fail(const char *s)
  1205. {
  1206. int a[2];
  1207. if (get_intrange(s, &a[0], &a[1]))
  1208. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1209. }
  1210. static
  1211. void test_intrange()
  1212. {
  1213. _test_intrange("-1--2", -1, -2);
  1214. _test_intrange("-1-2", -1, 2);
  1215. _test_intrange("1--2", 1, -2);
  1216. _test_intrange("1-2", 1, 2);
  1217. _test_intrange("111-222", 111, 222);
  1218. _test_intrange(" 11 - 22 ", 11, 22);
  1219. _test_intrange("+11-+22", 11, 22);
  1220. _test_intrange("-1", -1, -1);
  1221. _test_intrange_fail("all");
  1222. _test_intrange_fail("1-");
  1223. _test_intrange_fail("");
  1224. _test_intrange_fail("1-54x");
  1225. }
  1226. static char *set_devices(char *arg)
  1227. {
  1228. if (*arg) {
  1229. if (*arg == '?') {
  1230. opt_display_devs = true;
  1231. return NULL;
  1232. }
  1233. } else
  1234. return "Invalid device parameters";
  1235. string_elist_add(arg, &opt_devices_enabled_list);
  1236. return NULL;
  1237. }
  1238. static char *set_balance(enum pool_strategy *strategy)
  1239. {
  1240. *strategy = POOL_BALANCE;
  1241. return NULL;
  1242. }
  1243. static char *set_loadbalance(enum pool_strategy *strategy)
  1244. {
  1245. *strategy = POOL_LOADBALANCE;
  1246. return NULL;
  1247. }
  1248. static char *set_rotate(const char *arg, int *i)
  1249. {
  1250. pool_strategy = POOL_ROTATE;
  1251. return set_int_range(arg, i, 0, 9999);
  1252. }
  1253. static char *set_rr(enum pool_strategy *strategy)
  1254. {
  1255. *strategy = POOL_ROUNDROBIN;
  1256. return NULL;
  1257. }
  1258. /* Detect that url is for a stratum protocol either via the presence of
  1259. * stratum+tcp or by detecting a stratum server response */
  1260. bool detect_stratum(struct pool *pool, char *url)
  1261. {
  1262. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1263. return false;
  1264. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1265. pool->rpc_url = strdup(url);
  1266. pool->has_stratum = true;
  1267. pool->stratum_url = pool->sockaddr_url;
  1268. return true;
  1269. }
  1270. return false;
  1271. }
  1272. static struct pool *add_url(void)
  1273. {
  1274. total_urls++;
  1275. if (total_urls > total_pools)
  1276. add_pool();
  1277. return pools[total_urls - 1];
  1278. }
  1279. static void setup_url(struct pool *pool, char *arg)
  1280. {
  1281. if (detect_stratum(pool, arg))
  1282. return;
  1283. opt_set_charp(arg, &pool->rpc_url);
  1284. if (strncmp(arg, "http://", 7) &&
  1285. strncmp(arg, "https://", 8)) {
  1286. const size_t L = strlen(arg);
  1287. char *httpinput;
  1288. httpinput = malloc(8 + L);
  1289. if (!httpinput)
  1290. quit(1, "Failed to malloc httpinput");
  1291. sprintf(httpinput, "http://%s", arg);
  1292. pool->rpc_url = httpinput;
  1293. }
  1294. }
  1295. static char *set_url(char *arg)
  1296. {
  1297. struct pool *pool = add_url();
  1298. setup_url(pool, arg);
  1299. return NULL;
  1300. }
  1301. static char *set_quota(char *arg)
  1302. {
  1303. char *semicolon = strchr(arg, ';'), *url;
  1304. int len, qlen, quota;
  1305. struct pool *pool;
  1306. if (!semicolon)
  1307. return "No semicolon separated quota;URL pair found";
  1308. len = strlen(arg);
  1309. *semicolon = '\0';
  1310. qlen = strlen(arg);
  1311. if (!qlen)
  1312. return "No parameter for quota found";
  1313. len -= qlen + 1;
  1314. if (len < 1)
  1315. return "No parameter for URL found";
  1316. quota = atoi(arg);
  1317. if (quota < 0)
  1318. return "Invalid negative parameter for quota set";
  1319. url = arg + qlen + 1;
  1320. pool = add_url();
  1321. setup_url(pool, url);
  1322. pool->quota = quota;
  1323. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1324. adjust_quota_gcd();
  1325. return NULL;
  1326. }
  1327. static char *set_user(const char *arg)
  1328. {
  1329. struct pool *pool;
  1330. total_users++;
  1331. if (total_users > total_pools)
  1332. add_pool();
  1333. pool = pools[total_users - 1];
  1334. opt_set_charp(arg, &pool->rpc_user);
  1335. return NULL;
  1336. }
  1337. static char *set_pass(const char *arg)
  1338. {
  1339. struct pool *pool;
  1340. total_passes++;
  1341. if (total_passes > total_pools)
  1342. add_pool();
  1343. pool = pools[total_passes - 1];
  1344. opt_set_charp(arg, &pool->rpc_pass);
  1345. return NULL;
  1346. }
  1347. static char *set_userpass(const char *arg)
  1348. {
  1349. struct pool *pool;
  1350. char *updup;
  1351. if (total_users != total_passes)
  1352. return "User + pass options must be balanced before userpass";
  1353. ++total_users;
  1354. ++total_passes;
  1355. if (total_users > total_pools)
  1356. add_pool();
  1357. pool = pools[total_users - 1];
  1358. updup = strdup(arg);
  1359. opt_set_charp(arg, &pool->rpc_userpass);
  1360. pool->rpc_user = strtok(updup, ":");
  1361. if (!pool->rpc_user)
  1362. return "Failed to find : delimited user info";
  1363. pool->rpc_pass = strtok(NULL, ":");
  1364. if (!pool->rpc_pass)
  1365. pool->rpc_pass = "";
  1366. return NULL;
  1367. }
  1368. static char *set_pool_priority(const char *arg)
  1369. {
  1370. struct pool *pool;
  1371. if (!total_pools)
  1372. return "Usage of --pool-priority before pools are defined does not make sense";
  1373. pool = pools[total_pools - 1];
  1374. opt_set_intval(arg, &pool->prio);
  1375. return NULL;
  1376. }
  1377. static char *set_pool_proxy(const char *arg)
  1378. {
  1379. struct pool *pool;
  1380. if (!total_pools)
  1381. return "Usage of --pool-proxy before pools are defined does not make sense";
  1382. if (!our_curl_supports_proxy_uris())
  1383. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1384. pool = pools[total_pools - 1];
  1385. opt_set_charp(arg, &pool->rpc_proxy);
  1386. return NULL;
  1387. }
  1388. static char *set_pool_force_rollntime(const char *arg)
  1389. {
  1390. struct pool *pool;
  1391. if (!total_pools)
  1392. return "Usage of --force-rollntime before pools are defined does not make sense";
  1393. pool = pools[total_pools - 1];
  1394. opt_set_intval(arg, &pool->force_rollntime);
  1395. return NULL;
  1396. }
  1397. static char *enable_debug(bool *flag)
  1398. {
  1399. *flag = true;
  1400. opt_debug_console = true;
  1401. /* Turn on verbose output, too. */
  1402. opt_log_output = true;
  1403. return NULL;
  1404. }
  1405. static char *set_schedtime(const char *arg, struct schedtime *st)
  1406. {
  1407. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1408. {
  1409. if (strcasecmp(arg, "now"))
  1410. return "Invalid time set, should be HH:MM";
  1411. } else
  1412. schedstop.tm.tm_sec = 0;
  1413. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1414. return "Invalid time set.";
  1415. st->enable = true;
  1416. return NULL;
  1417. }
  1418. static
  1419. char *set_log_file(char *arg)
  1420. {
  1421. char *r = "";
  1422. long int i = strtol(arg, &r, 10);
  1423. int fd, stderr_fd = fileno(stderr);
  1424. if ((!*r) && i >= 0 && i <= INT_MAX)
  1425. fd = i;
  1426. else
  1427. if (!strcmp(arg, "-"))
  1428. {
  1429. fd = fileno(stdout);
  1430. if (unlikely(fd == -1))
  1431. return "Standard output missing for log-file";
  1432. }
  1433. else
  1434. {
  1435. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1436. if (unlikely(fd == -1))
  1437. return "Failed to open log-file";
  1438. }
  1439. close(stderr_fd);
  1440. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1441. return "Failed to dup2 for log-file";
  1442. close(fd);
  1443. return NULL;
  1444. }
  1445. static
  1446. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1447. {
  1448. char *r = "";
  1449. long int i = strtol(arg, &r, 10);
  1450. static char *err = NULL;
  1451. const size_t errbufsz = 0x100;
  1452. free(err);
  1453. err = NULL;
  1454. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1455. *F = fdopen((int)i, mode);
  1456. if (!*F)
  1457. {
  1458. err = malloc(errbufsz);
  1459. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1460. (int)i, purpose);
  1461. return err;
  1462. }
  1463. } else if (!strcmp(arg, "-")) {
  1464. *F = (mode[0] == 'a') ? stdout : stdin;
  1465. if (!*F)
  1466. {
  1467. err = malloc(errbufsz);
  1468. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1469. (mode[0] == 'a') ? "out" : "in", purpose);
  1470. return err;
  1471. }
  1472. } else {
  1473. *F = fopen(arg, mode);
  1474. if (!*F)
  1475. {
  1476. err = malloc(errbufsz);
  1477. snprintf(err, errbufsz, "Failed to open %s for %s",
  1478. arg, purpose);
  1479. return err;
  1480. }
  1481. }
  1482. return NULL;
  1483. }
  1484. static char *set_noncelog(char *arg)
  1485. {
  1486. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1487. }
  1488. static char *set_sharelog(char *arg)
  1489. {
  1490. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1491. }
  1492. static
  1493. void _add_set_device_option(const char * const func, const char * const buf)
  1494. {
  1495. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1496. string_elist_add(buf, &opt_set_device_list);
  1497. }
  1498. #define add_set_device_option(...) do{ \
  1499. char _tmp1718[0x100]; \
  1500. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1501. _add_set_device_option(__func__, _tmp1718); \
  1502. }while(0)
  1503. char *set_temp_cutoff(char *arg)
  1504. {
  1505. if (strchr(arg, ','))
  1506. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1507. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1508. add_set_device_option("all:temp-cutoff=%s", arg);
  1509. return NULL;
  1510. }
  1511. char *set_temp_target(char *arg)
  1512. {
  1513. if (strchr(arg, ','))
  1514. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1515. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1516. add_set_device_option("all:temp-target=%s", arg);
  1517. return NULL;
  1518. }
  1519. #ifdef HAVE_OPENCL
  1520. static
  1521. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1522. {
  1523. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1524. add_set_device_option("OCL:binary=no");
  1525. return NULL;
  1526. }
  1527. #endif
  1528. static
  1529. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1530. {
  1531. opt_disable_client_reconnect = true;
  1532. want_stratum = false;
  1533. return NULL;
  1534. }
  1535. static char *set_api_allow(const char *arg)
  1536. {
  1537. opt_set_charp(arg, &opt_api_allow);
  1538. return NULL;
  1539. }
  1540. static char *set_api_groups(const char *arg)
  1541. {
  1542. opt_set_charp(arg, &opt_api_groups);
  1543. return NULL;
  1544. }
  1545. static char *set_api_description(const char *arg)
  1546. {
  1547. opt_set_charp(arg, &opt_api_description);
  1548. return NULL;
  1549. }
  1550. static char *set_api_mcast_des(const char *arg)
  1551. {
  1552. opt_set_charp(arg, &opt_api_mcast_des);
  1553. return NULL;
  1554. }
  1555. #ifdef USE_ICARUS
  1556. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1557. static char *set_icarus_options(const char *arg)
  1558. {
  1559. if (strchr(arg, ','))
  1560. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1561. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1562. char *opts = strdup(arg), *argdup;
  1563. argdup = opts;
  1564. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1565. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1566. char *saveptr, *opt;
  1567. for (int i = 0; i < 4; ++i, ++sdf)
  1568. {
  1569. opt = strtok_r(opts, ":", &saveptr);
  1570. opts = NULL;
  1571. if (!opt)
  1572. break;
  1573. if (!opt[0])
  1574. continue;
  1575. for (int j = 0; j < 4; ++j)
  1576. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1577. }
  1578. free(argdup);
  1579. return NULL;
  1580. }
  1581. static char *set_icarus_timing(const char *arg)
  1582. {
  1583. if (strchr(arg, ','))
  1584. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1585. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1586. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1587. for (int j = 0; j < 4; ++j)
  1588. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1589. return NULL;
  1590. }
  1591. #endif
  1592. #ifdef USE_AVALON
  1593. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1594. static char *set_avalon_options(const char *arg)
  1595. {
  1596. if (strchr(arg, ','))
  1597. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1598. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1599. char *opts = strdup(arg), *argdup;
  1600. argdup = opts;
  1601. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1602. char *saveptr, *opt;
  1603. for (int i = 0; i < 5; ++i, ++sdf)
  1604. {
  1605. opt = strtok_r(opts, ":", &saveptr);
  1606. opts = NULL;
  1607. if (!opt)
  1608. break;
  1609. if (!opt[0])
  1610. continue;
  1611. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1612. }
  1613. free(argdup);
  1614. return NULL;
  1615. }
  1616. #endif
  1617. #ifdef USE_KLONDIKE
  1618. static char *set_klondike_options(const char *arg)
  1619. {
  1620. int hashclock;
  1621. double temptarget;
  1622. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1623. {
  1624. default:
  1625. return "Unrecognised --klondike-options";
  1626. case 2:
  1627. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1628. // fallthru
  1629. case 1:
  1630. add_set_device_option("klondike:clock=%d", hashclock);
  1631. }
  1632. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1633. return NULL;
  1634. }
  1635. #endif
  1636. __maybe_unused
  1637. static char *set_null(const char __maybe_unused *arg)
  1638. {
  1639. return NULL;
  1640. }
  1641. /* These options are available from config file or commandline */
  1642. static struct opt_table opt_config_table[] = {
  1643. #ifdef WANT_CPUMINE
  1644. OPT_WITH_ARG("--algo",
  1645. set_algo, show_algo, &opt_algo,
  1646. "Specify sha256 implementation for CPU mining:\n"
  1647. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1648. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1649. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1650. #ifdef WANT_SSE2_4WAY
  1651. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1652. #endif
  1653. #ifdef WANT_VIA_PADLOCK
  1654. "\n\tvia\t\tVIA padlock implementation"
  1655. #endif
  1656. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1657. #ifdef WANT_CRYPTOPP_ASM32
  1658. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1659. #endif
  1660. #ifdef WANT_X8632_SSE2
  1661. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1662. #endif
  1663. #ifdef WANT_X8664_SSE2
  1664. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1665. #endif
  1666. #ifdef WANT_X8664_SSE4
  1667. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1668. #endif
  1669. #ifdef WANT_ALTIVEC_4WAY
  1670. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1671. #endif
  1672. ),
  1673. OPT_WITH_ARG("-a",
  1674. set_algo, show_algo, &opt_algo,
  1675. opt_hidden),
  1676. #endif
  1677. OPT_WITH_ARG("--api-allow",
  1678. set_api_allow, NULL, NULL,
  1679. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1680. OPT_WITH_ARG("--api-description",
  1681. set_api_description, NULL, NULL,
  1682. "Description placed in the API status header, default: BFGMiner version"),
  1683. OPT_WITH_ARG("--api-groups",
  1684. set_api_groups, NULL, NULL,
  1685. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1686. OPT_WITHOUT_ARG("--api-listen",
  1687. opt_set_bool, &opt_api_listen,
  1688. "Enable API, default: disabled"),
  1689. OPT_WITHOUT_ARG("--api-mcast",
  1690. opt_set_bool, &opt_api_mcast,
  1691. "Enable API Multicast listener, default: disabled"),
  1692. OPT_WITH_ARG("--api-mcast-addr",
  1693. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1694. "API Multicast listen address"),
  1695. OPT_WITH_ARG("--api-mcast-code",
  1696. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1697. "Code expected in the API Multicast message, don't use '-'"),
  1698. OPT_WITH_ARG("--api-mcast-des",
  1699. set_api_mcast_des, NULL, NULL,
  1700. "Description appended to the API Multicast reply, default: ''"),
  1701. OPT_WITH_ARG("--api-mcast-port",
  1702. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1703. "API Multicast listen port"),
  1704. OPT_WITHOUT_ARG("--api-network",
  1705. opt_set_bool, &opt_api_network,
  1706. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1707. OPT_WITH_ARG("--api-port",
  1708. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1709. "Port number of miner API"),
  1710. #ifdef HAVE_ADL
  1711. OPT_WITHOUT_ARG("--auto-fan",
  1712. opt_set_bool, &opt_autofan,
  1713. opt_hidden),
  1714. OPT_WITHOUT_ARG("--auto-gpu",
  1715. opt_set_bool, &opt_autoengine,
  1716. opt_hidden),
  1717. #endif
  1718. OPT_WITHOUT_ARG("--balance",
  1719. set_balance, &pool_strategy,
  1720. "Change multipool strategy from failover to even share balance"),
  1721. OPT_WITHOUT_ARG("--benchmark",
  1722. opt_set_bool, &opt_benchmark,
  1723. "Run BFGMiner in benchmark mode - produces no shares"),
  1724. #if defined(USE_BITFORCE)
  1725. OPT_WITHOUT_ARG("--bfl-range",
  1726. opt_set_bool, &opt_bfl_noncerange,
  1727. "Use nonce range on bitforce devices if supported"),
  1728. #endif
  1729. #ifdef HAVE_CHROOT
  1730. OPT_WITH_ARG("--chroot-dir",
  1731. opt_set_charp, NULL, &chroot_dir,
  1732. "Chroot to a directory right after startup"),
  1733. #endif
  1734. OPT_WITH_ARG("--cmd-idle",
  1735. opt_set_charp, NULL, &cmd_idle,
  1736. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1737. OPT_WITH_ARG("--cmd-sick",
  1738. opt_set_charp, NULL, &cmd_sick,
  1739. "Execute a command when a device is declared sick"),
  1740. OPT_WITH_ARG("--cmd-dead",
  1741. opt_set_charp, NULL, &cmd_dead,
  1742. "Execute a command when a device is declared dead"),
  1743. #if BLKMAKER_VERSION > 1
  1744. OPT_WITH_ARG("--coinbase-addr",
  1745. set_b58addr, NULL, &opt_coinbase_script,
  1746. "Set coinbase payout address for solo mining"),
  1747. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1748. set_b58addr, NULL, &opt_coinbase_script,
  1749. opt_hidden),
  1750. #endif
  1751. #if BLKMAKER_VERSION > 0
  1752. OPT_WITH_ARG("--coinbase-sig",
  1753. set_strdup, NULL, &opt_coinbase_sig,
  1754. "Set coinbase signature when possible"),
  1755. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1756. set_strdup, NULL, &opt_coinbase_sig,
  1757. opt_hidden),
  1758. #endif
  1759. #ifdef HAVE_CURSES
  1760. OPT_WITHOUT_ARG("--compact",
  1761. opt_set_bool, &opt_compact,
  1762. "Use compact display without per device statistics"),
  1763. #endif
  1764. #ifdef WANT_CPUMINE
  1765. OPT_WITH_ARG("--cpu-threads",
  1766. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1767. "Number of miner CPU threads"),
  1768. OPT_WITH_ARG("-t",
  1769. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1770. opt_hidden),
  1771. #endif
  1772. OPT_WITHOUT_ARG("--debug|-D",
  1773. enable_debug, &opt_debug,
  1774. "Enable debug output"),
  1775. OPT_WITHOUT_ARG("--debuglog",
  1776. opt_set_bool, &opt_debug,
  1777. "Enable debug logging"),
  1778. OPT_WITHOUT_ARG("--device-protocol-dump",
  1779. opt_set_bool, &opt_dev_protocol,
  1780. "Verbose dump of device protocol-level activities"),
  1781. OPT_WITH_ARG("--device|-d",
  1782. set_devices, NULL, NULL,
  1783. "Enable only devices matching pattern (default: all)"),
  1784. OPT_WITHOUT_ARG("--disable-rejecting",
  1785. opt_set_bool, &opt_disable_pool,
  1786. "Automatically disable pools that continually reject shares"),
  1787. #ifdef USE_LIBMICROHTTPD
  1788. OPT_WITH_ARG("--http-port",
  1789. opt_set_intval, opt_show_intval, &httpsrv_port,
  1790. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1791. #endif
  1792. OPT_WITH_ARG("--expiry",
  1793. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1794. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1795. OPT_WITH_ARG("-E",
  1796. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1797. opt_hidden),
  1798. OPT_WITH_ARG("--expiry-lp",
  1799. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1800. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1801. OPT_WITHOUT_ARG("--failover-only",
  1802. opt_set_bool, &opt_fail_only,
  1803. "Don't leak work to backup pools when primary pool is lagging"),
  1804. OPT_WITH_ARG("--failover-switch-delay",
  1805. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1806. "Delay in seconds before switching back to a failed pool"),
  1807. #ifdef USE_FPGA
  1808. OPT_WITHOUT_ARG("--force-dev-init",
  1809. opt_set_bool, &opt_force_dev_init,
  1810. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1811. #endif
  1812. #ifdef HAVE_OPENCL
  1813. OPT_WITH_ARG("--gpu-dyninterval",
  1814. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1815. opt_hidden),
  1816. OPT_WITH_ARG("--gpu-platform",
  1817. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1818. "Select OpenCL platform ID to use for GPU mining"),
  1819. OPT_WITH_ARG("--gpu-threads|-g",
  1820. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1821. opt_hidden),
  1822. #ifdef HAVE_ADL
  1823. OPT_WITH_ARG("--gpu-engine",
  1824. set_gpu_engine, NULL, NULL,
  1825. opt_hidden),
  1826. OPT_WITH_ARG("--gpu-fan",
  1827. set_gpu_fan, NULL, NULL,
  1828. opt_hidden),
  1829. OPT_WITH_ARG("--gpu-map",
  1830. set_gpu_map, NULL, NULL,
  1831. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1832. OPT_WITH_ARG("--gpu-memclock",
  1833. set_gpu_memclock, NULL, NULL,
  1834. opt_hidden),
  1835. OPT_WITH_ARG("--gpu-memdiff",
  1836. set_gpu_memdiff, NULL, NULL,
  1837. opt_hidden),
  1838. OPT_WITH_ARG("--gpu-powertune",
  1839. set_gpu_powertune, NULL, NULL,
  1840. opt_hidden),
  1841. OPT_WITHOUT_ARG("--gpu-reorder",
  1842. opt_set_bool, &opt_reorder,
  1843. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1844. OPT_WITH_ARG("--gpu-vddc",
  1845. set_gpu_vddc, NULL, NULL,
  1846. opt_hidden),
  1847. #endif
  1848. #ifdef USE_SCRYPT
  1849. OPT_WITH_ARG("--lookup-gap",
  1850. set_lookup_gap, NULL, NULL,
  1851. opt_hidden),
  1852. #endif
  1853. OPT_WITH_ARG("--intensity|-I",
  1854. set_intensity, NULL, NULL,
  1855. opt_hidden),
  1856. #endif
  1857. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1858. OPT_WITH_ARG("--kernel-path",
  1859. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1860. "Specify a path to where bitstream and kernel files are"),
  1861. OPT_WITH_ARG("-K",
  1862. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1863. opt_hidden),
  1864. #endif
  1865. #ifdef HAVE_OPENCL
  1866. OPT_WITH_ARG("--kernel|-k",
  1867. set_kernel, NULL, NULL,
  1868. opt_hidden),
  1869. #endif
  1870. #ifdef USE_ICARUS
  1871. OPT_WITH_ARG("--icarus-options",
  1872. set_icarus_options, NULL, NULL,
  1873. opt_hidden),
  1874. OPT_WITH_ARG("--icarus-timing",
  1875. set_icarus_timing, NULL, NULL,
  1876. opt_hidden),
  1877. #endif
  1878. #ifdef USE_AVALON
  1879. OPT_WITH_ARG("--avalon-options",
  1880. set_avalon_options, NULL, NULL,
  1881. opt_hidden),
  1882. #endif
  1883. #ifdef USE_KLONDIKE
  1884. OPT_WITH_ARG("--klondike-options",
  1885. set_klondike_options, NULL, NULL,
  1886. "Set klondike options clock:temptarget"),
  1887. #endif
  1888. OPT_WITHOUT_ARG("--load-balance",
  1889. set_loadbalance, &pool_strategy,
  1890. "Change multipool strategy from failover to quota based balance"),
  1891. OPT_WITH_ARG("--log|-l",
  1892. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1893. "Interval in seconds between log output"),
  1894. OPT_WITH_ARG("--log-file|-L",
  1895. set_log_file, NULL, NULL,
  1896. "Append log file for output messages"),
  1897. OPT_WITH_ARG("--logfile",
  1898. set_log_file, NULL, NULL,
  1899. opt_hidden),
  1900. OPT_WITHOUT_ARG("--log-microseconds",
  1901. opt_set_bool, &opt_log_microseconds,
  1902. "Include microseconds in log output"),
  1903. #if defined(unix) || defined(__APPLE__)
  1904. OPT_WITH_ARG("--monitor|-m",
  1905. opt_set_charp, NULL, &opt_stderr_cmd,
  1906. "Use custom pipe cmd for output messages"),
  1907. #endif // defined(unix)
  1908. OPT_WITHOUT_ARG("--net-delay",
  1909. opt_set_bool, &opt_delaynet,
  1910. "Impose small delays in networking to avoid overloading slow routers"),
  1911. OPT_WITHOUT_ARG("--no-adl",
  1912. opt_set_bool, &opt_noadl,
  1913. #ifdef HAVE_ADL
  1914. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1915. #else
  1916. opt_hidden
  1917. #endif
  1918. ),
  1919. OPT_WITHOUT_ARG("--no-gbt",
  1920. opt_set_invbool, &want_gbt,
  1921. "Disable getblocktemplate support"),
  1922. OPT_WITHOUT_ARG("--no-getwork",
  1923. opt_set_invbool, &want_getwork,
  1924. "Disable getwork support"),
  1925. OPT_WITHOUT_ARG("--no-hotplug",
  1926. #ifdef HAVE_BFG_HOTPLUG
  1927. opt_set_invbool, &opt_hotplug,
  1928. "Disable hotplug detection"
  1929. #else
  1930. set_null, &opt_hotplug,
  1931. opt_hidden
  1932. #endif
  1933. ),
  1934. OPT_WITHOUT_ARG("--no-longpoll",
  1935. opt_set_invbool, &want_longpoll,
  1936. "Disable X-Long-Polling support"),
  1937. OPT_WITHOUT_ARG("--no-pool-disable",
  1938. opt_set_invbool, &opt_disable_pool,
  1939. opt_hidden),
  1940. OPT_WITHOUT_ARG("--no-client-reconnect",
  1941. opt_set_invbool, &opt_disable_client_reconnect,
  1942. opt_hidden),
  1943. OPT_WITHOUT_ARG("--no-pool-redirect",
  1944. disable_pool_redirect, NULL,
  1945. "Ignore pool requests to redirect to another server"),
  1946. OPT_WITHOUT_ARG("--no-restart",
  1947. opt_set_invbool, &opt_restart,
  1948. "Do not attempt to restart devices that hang"
  1949. ),
  1950. OPT_WITHOUT_ARG("--no-show-processors",
  1951. opt_set_invbool, &opt_show_procs,
  1952. opt_hidden),
  1953. OPT_WITHOUT_ARG("--no-show-procs",
  1954. opt_set_invbool, &opt_show_procs,
  1955. opt_hidden),
  1956. OPT_WITHOUT_ARG("--no-stratum",
  1957. opt_set_invbool, &want_stratum,
  1958. "Disable Stratum detection"),
  1959. OPT_WITHOUT_ARG("--no-submit-stale",
  1960. opt_set_invbool, &opt_submit_stale,
  1961. "Don't submit shares if they are detected as stale"),
  1962. #ifdef HAVE_OPENCL
  1963. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1964. set_no_opencl_binaries, NULL,
  1965. opt_hidden),
  1966. #endif
  1967. OPT_WITHOUT_ARG("--no-unicode",
  1968. #ifdef USE_UNICODE
  1969. opt_set_invbool, &use_unicode,
  1970. "Don't use Unicode characters in TUI"
  1971. #else
  1972. set_null, &use_unicode,
  1973. opt_hidden
  1974. #endif
  1975. ),
  1976. OPT_WITH_ARG("--noncelog",
  1977. set_noncelog, NULL, NULL,
  1978. "Create log of all nonces found"),
  1979. OPT_WITH_ARG("--pass|-p",
  1980. set_pass, NULL, NULL,
  1981. "Password for bitcoin JSON-RPC server"),
  1982. OPT_WITHOUT_ARG("--per-device-stats",
  1983. opt_set_bool, &want_per_device_stats,
  1984. "Force verbose mode and output per-device statistics"),
  1985. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1986. set_userpass, NULL, NULL,
  1987. opt_hidden),
  1988. OPT_WITH_ARG("--pool-priority",
  1989. set_pool_priority, NULL, NULL,
  1990. "Priority for just the previous-defined pool"),
  1991. OPT_WITH_ARG("--pool-proxy|-x",
  1992. set_pool_proxy, NULL, NULL,
  1993. "Proxy URI to use for connecting to just the previous-defined pool"),
  1994. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1995. set_pool_force_rollntime, NULL, NULL,
  1996. opt_hidden),
  1997. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1998. opt_set_bool, &opt_protocol,
  1999. "Verbose dump of protocol-level activities"),
  2000. OPT_WITH_ARG("--queue|-Q",
  2001. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2002. "Minimum number of work items to have queued (0+)"),
  2003. OPT_WITHOUT_ARG("--quiet|-q",
  2004. opt_set_bool, &opt_quiet,
  2005. "Disable logging output, display status and errors"),
  2006. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2007. opt_set_bool, &opt_quiet_work_updates,
  2008. opt_hidden),
  2009. OPT_WITH_ARG("--quit-summary",
  2010. set_quit_summary, NULL, NULL,
  2011. "Summary printed when you quit: none/devs/procs/detailed"),
  2012. OPT_WITH_ARG("--quota|-U",
  2013. set_quota, NULL, NULL,
  2014. "quota;URL combination for server with load-balance strategy quotas"),
  2015. OPT_WITHOUT_ARG("--real-quiet",
  2016. opt_set_bool, &opt_realquiet,
  2017. "Disable all output"),
  2018. OPT_WITH_ARG("--request-diff",
  2019. set_request_diff, opt_show_floatval, &request_pdiff,
  2020. "Request a specific difficulty from pools"),
  2021. OPT_WITH_ARG("--retries",
  2022. opt_set_intval, opt_show_intval, &opt_retries,
  2023. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2024. OPT_WITH_ARG("--retry-pause",
  2025. set_null, NULL, NULL,
  2026. opt_hidden),
  2027. OPT_WITH_ARG("--rotate",
  2028. set_rotate, opt_show_intval, &opt_rotate_period,
  2029. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2030. OPT_WITHOUT_ARG("--round-robin",
  2031. set_rr, &pool_strategy,
  2032. "Change multipool strategy from failover to round robin on failure"),
  2033. OPT_WITH_ARG("--scan|-S",
  2034. add_serial, NULL, NULL,
  2035. "Configure how to scan for mining devices"),
  2036. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2037. add_serial, NULL, NULL,
  2038. opt_hidden),
  2039. OPT_WITH_ARG("--scan-time",
  2040. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2041. "Upper bound on time spent scanning current work, in seconds"),
  2042. OPT_WITH_ARG("-s",
  2043. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2044. opt_hidden),
  2045. OPT_WITH_ARG("--scantime",
  2046. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2047. opt_hidden),
  2048. OPT_WITH_ARG("--sched-start",
  2049. set_schedtime, NULL, &schedstart,
  2050. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2051. OPT_WITH_ARG("--sched-stop",
  2052. set_schedtime, NULL, &schedstop,
  2053. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2054. #ifdef USE_SCRYPT
  2055. OPT_WITHOUT_ARG("--scrypt",
  2056. opt_set_bool, &opt_scrypt,
  2057. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2058. #endif
  2059. OPT_WITH_ARG("--set-device|--set",
  2060. opt_string_elist_add, NULL, &opt_set_device_list,
  2061. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2062. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2063. OPT_WITH_ARG("--shaders",
  2064. set_shaders, NULL, NULL,
  2065. opt_hidden),
  2066. #endif
  2067. #ifdef HAVE_PWD_H
  2068. OPT_WITH_ARG("--setuid",
  2069. opt_set_charp, NULL, &opt_setuid,
  2070. "Username of an unprivileged user to run as"),
  2071. #endif
  2072. OPT_WITH_ARG("--sharelog",
  2073. set_sharelog, NULL, NULL,
  2074. "Append share log to file"),
  2075. OPT_WITH_ARG("--shares",
  2076. opt_set_floatval, NULL, &opt_shares,
  2077. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2078. OPT_WITHOUT_ARG("--show-processors",
  2079. opt_set_bool, &opt_show_procs,
  2080. "Show per processor statistics in summary"),
  2081. OPT_WITHOUT_ARG("--show-procs",
  2082. opt_set_bool, &opt_show_procs,
  2083. opt_hidden),
  2084. OPT_WITH_ARG("--skip-security-checks",
  2085. set_int_0_to_9999, NULL, &opt_skip_checks,
  2086. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2087. OPT_WITH_ARG("--socks-proxy",
  2088. opt_set_charp, NULL, &opt_socks_proxy,
  2089. "Set socks proxy (host:port)"),
  2090. #ifdef USE_LIBEVENT
  2091. OPT_WITH_ARG("--stratum-port",
  2092. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2093. "Port number to listen on for stratum miners (-1 means disabled)"),
  2094. #endif
  2095. OPT_WITHOUT_ARG("--submit-stale",
  2096. opt_set_bool, &opt_submit_stale,
  2097. opt_hidden),
  2098. OPT_WITH_ARG("--submit-threads",
  2099. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2100. "Minimum number of concurrent share submissions (default: 64)"),
  2101. #ifdef HAVE_SYSLOG_H
  2102. OPT_WITHOUT_ARG("--syslog",
  2103. opt_set_bool, &use_syslog,
  2104. "Use system log for output messages (default: standard error)"),
  2105. #endif
  2106. OPT_WITH_ARG("--temp-cutoff",
  2107. set_temp_cutoff, NULL, &opt_cutofftemp,
  2108. opt_hidden),
  2109. OPT_WITH_ARG("--temp-hysteresis",
  2110. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2111. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2112. #ifdef HAVE_ADL
  2113. OPT_WITH_ARG("--temp-overheat",
  2114. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2115. opt_hidden),
  2116. #endif
  2117. OPT_WITH_ARG("--temp-target",
  2118. set_temp_target, NULL, NULL,
  2119. opt_hidden),
  2120. OPT_WITHOUT_ARG("--text-only|-T",
  2121. opt_set_invbool, &use_curses,
  2122. #ifdef HAVE_CURSES
  2123. "Disable ncurses formatted screen output"
  2124. #else
  2125. opt_hidden
  2126. #endif
  2127. ),
  2128. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2129. OPT_WITH_ARG("--thread-concurrency",
  2130. set_thread_concurrency, NULL, NULL,
  2131. opt_hidden),
  2132. #endif
  2133. #ifdef USE_UNICODE
  2134. OPT_WITHOUT_ARG("--unicode",
  2135. opt_set_bool, &use_unicode,
  2136. "Use Unicode characters in TUI"),
  2137. #endif
  2138. OPT_WITH_ARG("--url|-o",
  2139. set_url, NULL, NULL,
  2140. "URL for bitcoin JSON-RPC server"),
  2141. OPT_WITH_ARG("--user|-u",
  2142. set_user, NULL, NULL,
  2143. "Username for bitcoin JSON-RPC server"),
  2144. #ifdef HAVE_OPENCL
  2145. OPT_WITH_ARG("--vectors|-v",
  2146. set_vector, NULL, NULL,
  2147. opt_hidden),
  2148. #endif
  2149. OPT_WITHOUT_ARG("--verbose",
  2150. opt_set_bool, &opt_log_output,
  2151. "Log verbose output to stderr as well as status output"),
  2152. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2153. opt_set_invbool, &opt_quiet_work_updates,
  2154. opt_hidden),
  2155. OPT_WITHOUT_ARG("--weighed-stats",
  2156. opt_set_bool, &opt_weighed_stats,
  2157. "Display statistics weighed to difficulty 1"),
  2158. #ifdef HAVE_OPENCL
  2159. OPT_WITH_ARG("--worksize|-w",
  2160. set_worksize, NULL, NULL,
  2161. opt_hidden),
  2162. #endif
  2163. OPT_WITHOUT_ARG("--unittest",
  2164. opt_set_bool, &opt_unittest, opt_hidden),
  2165. OPT_WITH_ARG("--userpass|-O",
  2166. set_userpass, NULL, NULL,
  2167. "Username:Password pair for bitcoin JSON-RPC server"),
  2168. OPT_WITHOUT_ARG("--worktime",
  2169. opt_set_bool, &opt_worktime,
  2170. "Display extra work time debug information"),
  2171. OPT_WITH_ARG("--pools",
  2172. opt_set_bool, NULL, NULL, opt_hidden),
  2173. OPT_ENDTABLE
  2174. };
  2175. static char *load_config(const char *arg, void __maybe_unused *unused);
  2176. static int fileconf_load;
  2177. static char *parse_config(json_t *config, bool fileconf)
  2178. {
  2179. static char err_buf[200];
  2180. struct opt_table *opt;
  2181. json_t *val;
  2182. if (fileconf && !fileconf_load)
  2183. fileconf_load = 1;
  2184. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2185. char *p, *name, *sp;
  2186. /* We don't handle subtables. */
  2187. assert(!(opt->type & OPT_SUBTABLE));
  2188. if (!opt->names)
  2189. continue;
  2190. /* Pull apart the option name(s). */
  2191. name = strdup(opt->names);
  2192. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2193. char *err = "Invalid value";
  2194. /* Ignore short options. */
  2195. if (p[1] != '-')
  2196. continue;
  2197. val = json_object_get(config, p+2);
  2198. if (!val)
  2199. continue;
  2200. if (opt->type & OPT_HASARG) {
  2201. if (json_is_string(val)) {
  2202. err = opt->cb_arg(json_string_value(val),
  2203. opt->u.arg);
  2204. } else if (json_is_number(val)) {
  2205. char buf[256], *p, *q;
  2206. snprintf(buf, 256, "%f", json_number_value(val));
  2207. if ( (p = strchr(buf, '.')) ) {
  2208. // Trim /\.0*$/ to work properly with integer-only arguments
  2209. q = p;
  2210. while (*(++q) == '0') {}
  2211. if (*q == '\0')
  2212. *p = '\0';
  2213. }
  2214. err = opt->cb_arg(buf, opt->u.arg);
  2215. } else if (json_is_array(val)) {
  2216. int n, size = json_array_size(val);
  2217. err = NULL;
  2218. for (n = 0; n < size && !err; n++) {
  2219. if (json_is_string(json_array_get(val, n)))
  2220. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2221. else if (json_is_object(json_array_get(val, n)))
  2222. err = parse_config(json_array_get(val, n), false);
  2223. }
  2224. }
  2225. } else if (opt->type & OPT_NOARG) {
  2226. if (json_is_true(val))
  2227. err = opt->cb(opt->u.arg);
  2228. else if (json_is_boolean(val)) {
  2229. if (opt->cb == (void*)opt_set_bool)
  2230. err = opt_set_invbool(opt->u.arg);
  2231. else if (opt->cb == (void*)opt_set_invbool)
  2232. err = opt_set_bool(opt->u.arg);
  2233. }
  2234. }
  2235. if (err) {
  2236. /* Allow invalid values to be in configuration
  2237. * file, just skipping over them provided the
  2238. * JSON is still valid after that. */
  2239. if (fileconf) {
  2240. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2241. fileconf_load = -1;
  2242. } else {
  2243. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2244. p, err);
  2245. return err_buf;
  2246. }
  2247. }
  2248. }
  2249. free(name);
  2250. }
  2251. val = json_object_get(config, JSON_INCLUDE_CONF);
  2252. if (val && json_is_string(val))
  2253. return load_config(json_string_value(val), NULL);
  2254. return NULL;
  2255. }
  2256. char *cnfbuf = NULL;
  2257. static char *load_config(const char *arg, void __maybe_unused *unused)
  2258. {
  2259. json_error_t err;
  2260. json_t *config;
  2261. char *json_error;
  2262. size_t siz;
  2263. if (!cnfbuf)
  2264. cnfbuf = strdup(arg);
  2265. if (++include_count > JSON_MAX_DEPTH)
  2266. return JSON_MAX_DEPTH_ERR;
  2267. #if JANSSON_MAJOR_VERSION > 1
  2268. config = json_load_file(arg, 0, &err);
  2269. #else
  2270. config = json_load_file(arg, &err);
  2271. #endif
  2272. if (!json_is_object(config)) {
  2273. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2274. json_error = malloc(siz);
  2275. if (!json_error)
  2276. quit(1, "Malloc failure in json error");
  2277. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2278. return json_error;
  2279. }
  2280. config_loaded = true;
  2281. /* Parse the config now, so we can override it. That can keep pointers
  2282. * so don't free config object. */
  2283. return parse_config(config, true);
  2284. }
  2285. static void load_default_config(void)
  2286. {
  2287. cnfbuf = malloc(PATH_MAX);
  2288. #if defined(unix)
  2289. if (getenv("HOME") && *getenv("HOME")) {
  2290. strcpy(cnfbuf, getenv("HOME"));
  2291. strcat(cnfbuf, "/");
  2292. } else
  2293. strcpy(cnfbuf, "");
  2294. char *dirp = cnfbuf + strlen(cnfbuf);
  2295. strcpy(dirp, ".bfgminer/");
  2296. strcat(dirp, def_conf);
  2297. if (access(cnfbuf, R_OK))
  2298. // No BFGMiner config, try Cgminer's...
  2299. strcpy(dirp, ".cgminer/cgminer.conf");
  2300. #else
  2301. strcpy(cnfbuf, "");
  2302. strcat(cnfbuf, def_conf);
  2303. #endif
  2304. if (!access(cnfbuf, R_OK))
  2305. load_config(cnfbuf, NULL);
  2306. else {
  2307. free(cnfbuf);
  2308. cnfbuf = NULL;
  2309. }
  2310. }
  2311. extern const char *opt_argv0;
  2312. static char *opt_verusage_and_exit(const char *extra)
  2313. {
  2314. puts(packagename);
  2315. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2316. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2317. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2318. printf(" Options:%s\n", BFG_OPTLIST);
  2319. printf("%s", opt_usage(opt_argv0, extra));
  2320. fflush(stdout);
  2321. exit(0);
  2322. }
  2323. /* These options are parsed before anything else */
  2324. static struct opt_table opt_early_table[] = {
  2325. OPT_EARLY_WITH_ARG("--config|-c",
  2326. set_bool_ignore_arg, NULL, &config_loaded,
  2327. opt_hidden),
  2328. OPT_EARLY_WITHOUT_ARG("--no-config",
  2329. opt_set_bool, &config_loaded,
  2330. "Inhibit loading default config file"),
  2331. OPT_ENDTABLE
  2332. };
  2333. /* These options are available from commandline only */
  2334. static struct opt_table opt_cmdline_table[] = {
  2335. OPT_WITH_ARG("--config|-c",
  2336. load_config, NULL, NULL,
  2337. "Load a JSON-format configuration file\n"
  2338. "See example.conf for an example configuration."),
  2339. OPT_EARLY_WITHOUT_ARG("--no-config",
  2340. opt_set_bool, &config_loaded,
  2341. "Inhibit loading default config file"),
  2342. OPT_WITHOUT_ARG("--help|-h",
  2343. opt_verusage_and_exit, NULL,
  2344. "Print this message"),
  2345. #ifdef HAVE_OPENCL
  2346. OPT_WITHOUT_ARG("--ndevs|-n",
  2347. print_ndevs_and_exit, &nDevs,
  2348. opt_hidden),
  2349. #endif
  2350. OPT_WITHOUT_ARG("--version|-V",
  2351. opt_version_and_exit, packagename,
  2352. "Display version and exit"),
  2353. OPT_ENDTABLE
  2354. };
  2355. static bool jobj_binary(const json_t *obj, const char *key,
  2356. void *buf, size_t buflen, bool required)
  2357. {
  2358. const char *hexstr;
  2359. json_t *tmp;
  2360. tmp = json_object_get(obj, key);
  2361. if (unlikely(!tmp)) {
  2362. if (unlikely(required))
  2363. applog(LOG_ERR, "JSON key '%s' not found", key);
  2364. return false;
  2365. }
  2366. hexstr = json_string_value(tmp);
  2367. if (unlikely(!hexstr)) {
  2368. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2369. return false;
  2370. }
  2371. if (!hex2bin(buf, hexstr, buflen))
  2372. return false;
  2373. return true;
  2374. }
  2375. static void calc_midstate(struct work *work)
  2376. {
  2377. union {
  2378. unsigned char c[64];
  2379. uint32_t i[16];
  2380. } data;
  2381. swap32yes(&data.i[0], work->data, 16);
  2382. sha256_ctx ctx;
  2383. sha256_init(&ctx);
  2384. sha256_update(&ctx, data.c, 64);
  2385. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2386. swap32tole(work->midstate, work->midstate, 8);
  2387. }
  2388. static
  2389. struct bfg_tmpl_ref *tmpl_makeref(blktemplate_t * const tmpl)
  2390. {
  2391. struct bfg_tmpl_ref * const tr = malloc(sizeof(*tr));
  2392. *tr = (struct bfg_tmpl_ref){
  2393. .tmpl = tmpl,
  2394. .refcount = 1,
  2395. };
  2396. mutex_init(&tr->mutex);
  2397. return tr;
  2398. }
  2399. static
  2400. void tmpl_incref(struct bfg_tmpl_ref * const tr)
  2401. {
  2402. mutex_lock(&tr->mutex);
  2403. ++tr->refcount;
  2404. mutex_unlock(&tr->mutex);
  2405. }
  2406. void tmpl_decref(struct bfg_tmpl_ref * const tr)
  2407. {
  2408. mutex_lock(&tr->mutex);
  2409. bool free_tmpl = !--tr->refcount;
  2410. mutex_unlock(&tr->mutex);
  2411. if (free_tmpl)
  2412. {
  2413. blktmpl_free(tr->tmpl);
  2414. mutex_destroy(&tr->mutex);
  2415. free(tr);
  2416. }
  2417. }
  2418. static struct work *make_work(void)
  2419. {
  2420. struct work *work = calloc(1, sizeof(struct work));
  2421. if (unlikely(!work))
  2422. quit(1, "Failed to calloc work in make_work");
  2423. cg_wlock(&control_lock);
  2424. work->id = total_work++;
  2425. cg_wunlock(&control_lock);
  2426. return work;
  2427. }
  2428. /* This is the central place all work that is about to be retired should be
  2429. * cleaned to remove any dynamically allocated arrays within the struct */
  2430. void clean_work(struct work *work)
  2431. {
  2432. free(work->job_id);
  2433. bytes_free(&work->nonce2);
  2434. free(work->nonce1);
  2435. if (work->device_data_free_func)
  2436. work->device_data_free_func(work);
  2437. if (work->tr)
  2438. tmpl_decref(work->tr);
  2439. memset(work, 0, sizeof(struct work));
  2440. }
  2441. /* All dynamically allocated work structs should be freed here to not leak any
  2442. * ram from arrays allocated within the work struct */
  2443. void free_work(struct work *work)
  2444. {
  2445. clean_work(work);
  2446. free(work);
  2447. }
  2448. 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";
  2449. // Must only be called with ch_lock held!
  2450. static
  2451. void __update_block_title(const unsigned char *hash_swap)
  2452. {
  2453. if (hash_swap) {
  2454. char tmp[17];
  2455. // Only provided when the block has actually changed
  2456. free(current_hash);
  2457. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2458. bin2hex(tmp, &hash_swap[24], 8);
  2459. memset(current_hash, '.', 3);
  2460. memcpy(&current_hash[3], tmp, 17);
  2461. known_blkheight_current = false;
  2462. } else if (likely(known_blkheight_current)) {
  2463. return;
  2464. }
  2465. if (current_block_id == known_blkheight_blkid) {
  2466. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2467. if (known_blkheight < 1000000) {
  2468. memmove(&current_hash[3], &current_hash[11], 8);
  2469. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2470. }
  2471. known_blkheight_current = true;
  2472. }
  2473. }
  2474. static
  2475. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2476. {
  2477. if (known_blkheight == blkheight)
  2478. return;
  2479. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2480. cg_wlock(&ch_lock);
  2481. known_blkheight = blkheight;
  2482. known_blkheight_blkid = block_id;
  2483. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2484. if (block_id == current_block_id)
  2485. __update_block_title(NULL);
  2486. cg_wunlock(&ch_lock);
  2487. }
  2488. static
  2489. void pool_set_opaque(struct pool *pool, bool opaque)
  2490. {
  2491. if (pool->swork.opaque == opaque)
  2492. return;
  2493. pool->swork.opaque = opaque;
  2494. if (opaque)
  2495. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2496. pool->pool_no);
  2497. else
  2498. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2499. pool->pool_no);
  2500. }
  2501. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2502. {
  2503. if (uri_get_param_bool(pool->rpc_url, "redirect", false))
  2504. return true;
  2505. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2506. }
  2507. void set_simple_ntime_roll_limit(struct ntime_roll_limits * const nrl, const uint32_t ntime_base, const int ntime_roll)
  2508. {
  2509. *nrl = (struct ntime_roll_limits){
  2510. .min = ntime_base,
  2511. .max = ntime_base + ntime_roll,
  2512. .minoff = -ntime_roll,
  2513. .maxoff = ntime_roll,
  2514. };
  2515. }
  2516. void work_set_simple_ntime_roll_limit(struct work * const work, const int ntime_roll)
  2517. {
  2518. set_simple_ntime_roll_limit(&work->ntime_roll_limits, upk_u32be(work->data, 0x44), ntime_roll);
  2519. }
  2520. static double target_diff(const unsigned char *);
  2521. #define GBT_XNONCESZ (sizeof(uint32_t))
  2522. #if BLKMAKER_VERSION > 4
  2523. #define blkmk_append_coinbase_safe(tmpl, append, appendsz) \
  2524. blkmk_append_coinbase_safe2(tmpl, append, appendsz, GBT_XNONCESZ, false)
  2525. #endif
  2526. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2527. {
  2528. json_t *res_val = json_object_get(val, "result");
  2529. json_t *tmp_val;
  2530. bool ret = false;
  2531. struct timeval tv_now;
  2532. if (unlikely(detect_algo == 1)) {
  2533. json_t *tmp = json_object_get(res_val, "algorithm");
  2534. const char *v = tmp ? json_string_value(tmp) : "";
  2535. if (strncasecmp(v, "scrypt", 6))
  2536. detect_algo = 2;
  2537. }
  2538. timer_set_now(&tv_now);
  2539. if (work->tr)
  2540. {
  2541. blktemplate_t * const tmpl = work->tr->tmpl;
  2542. const char *err = blktmpl_add_jansson(tmpl, res_val, tv_now.tv_sec);
  2543. if (err) {
  2544. applog(LOG_ERR, "blktmpl error: %s", err);
  2545. return false;
  2546. }
  2547. work->rolltime = blkmk_time_left(tmpl, tv_now.tv_sec);
  2548. #if BLKMAKER_VERSION > 1
  2549. if (opt_coinbase_script.sz)
  2550. {
  2551. bool newcb;
  2552. #if BLKMAKER_VERSION > 2
  2553. blkmk_init_generation2(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2554. #else
  2555. newcb = !tmpl->cbtxn;
  2556. blkmk_init_generation(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2557. #endif
  2558. if (newcb)
  2559. {
  2560. ssize_t ae = blkmk_append_coinbase_safe(tmpl, &template_nonce, sizeof(template_nonce));
  2561. if (ae < (ssize_t)sizeof(template_nonce))
  2562. 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);
  2563. ++template_nonce;
  2564. }
  2565. }
  2566. #endif
  2567. #if BLKMAKER_VERSION > 0
  2568. {
  2569. ssize_t ae = blkmk_append_coinbase_safe(tmpl, opt_coinbase_sig, 101);
  2570. static bool appenderr = false;
  2571. if (ae <= 0) {
  2572. if (opt_coinbase_sig) {
  2573. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2574. appenderr = true;
  2575. }
  2576. } else if (ae >= 3 || opt_coinbase_sig) {
  2577. const char *cbappend = opt_coinbase_sig;
  2578. const char full[] = PACKAGE " " VERSION;
  2579. if (!cbappend) {
  2580. if ((size_t)ae >= sizeof(full) - 1)
  2581. cbappend = full;
  2582. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2583. cbappend = PACKAGE;
  2584. else
  2585. cbappend = "BFG";
  2586. }
  2587. size_t cbappendsz = strlen(cbappend);
  2588. static bool truncatewarning = false;
  2589. if (cbappendsz <= (size_t)ae) {
  2590. if (cbappendsz < (size_t)ae)
  2591. // If we have space, include the trailing \0
  2592. ++cbappendsz;
  2593. ae = cbappendsz;
  2594. truncatewarning = false;
  2595. } else {
  2596. char *tmp = malloc(ae + 1);
  2597. memcpy(tmp, opt_coinbase_sig, ae);
  2598. tmp[ae] = '\0';
  2599. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2600. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2601. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2602. free(tmp);
  2603. truncatewarning = true;
  2604. }
  2605. ae = blkmk_append_coinbase_safe(tmpl, cbappend, ae);
  2606. if (ae <= 0) {
  2607. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2608. appenderr = true;
  2609. } else
  2610. appenderr = false;
  2611. }
  2612. }
  2613. #endif
  2614. if (blkmk_get_data(tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2615. return false;
  2616. swap32yes(work->data, work->data, 80 / 4);
  2617. memcpy(&work->data[80], workpadding_bin, 48);
  2618. work->ntime_roll_limits = (struct ntime_roll_limits){
  2619. .min = tmpl->mintime,
  2620. .max = tmpl->maxtime,
  2621. .minoff = tmpl->mintimeoff,
  2622. .maxoff = tmpl->maxtimeoff,
  2623. };
  2624. const struct blktmpl_longpoll_req *lp;
  2625. if ((lp = blktmpl_get_longpoll(tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2626. free(pool->lp_id);
  2627. pool->lp_id = strdup(lp->id);
  2628. #if 0 /* This just doesn't work :( */
  2629. curl_socket_t sock = pool->lp_socket;
  2630. if (sock != CURL_SOCKET_BAD) {
  2631. pool->lp_socket = CURL_SOCKET_BAD;
  2632. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2633. shutdown(sock, SHUT_RDWR);
  2634. }
  2635. #endif
  2636. }
  2637. }
  2638. else
  2639. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2640. applog(LOG_ERR, "JSON inval data");
  2641. return false;
  2642. }
  2643. else
  2644. work_set_simple_ntime_roll_limit(work, 0);
  2645. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2646. // Calculate it ourselves
  2647. applog(LOG_DEBUG, "Calculating midstate locally");
  2648. calc_midstate(work);
  2649. }
  2650. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2651. applog(LOG_ERR, "JSON inval target");
  2652. return false;
  2653. }
  2654. if (work->tr)
  2655. {
  2656. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2657. {
  2658. int p = (sizeof(work->target) - 1) - i;
  2659. unsigned char c = work->target[i];
  2660. work->target[i] = work->target[p];
  2661. work->target[p] = c;
  2662. }
  2663. }
  2664. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2665. uint32_t blkheight = json_number_value(tmp_val);
  2666. uint32_t block_id = ((uint32_t*)work->data)[1];
  2667. have_block_height(block_id, blkheight);
  2668. }
  2669. memset(work->hash, 0, sizeof(work->hash));
  2670. work->tv_staged = tv_now;
  2671. #if BLKMAKER_VERSION > 4
  2672. if (work->tr)
  2673. {
  2674. blktemplate_t * const tmpl = work->tr->tmpl;
  2675. uint8_t buf[80];
  2676. int16_t expire;
  2677. uint8_t *cbtxn;
  2678. size_t cbtxnsz;
  2679. size_t cbextranonceoffset;
  2680. int branchcount;
  2681. libblkmaker_hash_t *branches;
  2682. if (blkmk_get_mdata(tmpl, buf, sizeof(buf), tv_now.tv_sec, &expire, &cbtxn, &cbtxnsz, &cbextranonceoffset, &branchcount, &branches, GBT_XNONCESZ, false))
  2683. {
  2684. struct stratum_work * const swork = &pool->swork;
  2685. const size_t branchdatasz = branchcount * 0x20;
  2686. cg_wlock(&pool->data_lock);
  2687. swork->tr = work->tr;
  2688. bytes_assimilate_raw(&swork->coinbase, cbtxn, cbtxnsz, cbtxnsz);
  2689. swork->nonce2_offset = cbextranonceoffset;
  2690. bytes_assimilate_raw(&swork->merkle_bin, branches, branchdatasz, branchdatasz);
  2691. swork->merkles = branchcount;
  2692. memcpy(swork->header1, &buf[0], 36);
  2693. swork->ntime = le32toh(*(uint32_t *)(&buf[68]));
  2694. swork->tv_received = tv_now;
  2695. memcpy(swork->diffbits, &buf[72], 4);
  2696. memcpy(swork->target, work->target, sizeof(swork->target));
  2697. free(swork->job_id);
  2698. swork->job_id = NULL;
  2699. swork->clean = true;
  2700. swork->work_restart_id = pool->work_restart_id;
  2701. // FIXME: Do something with expire
  2702. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  2703. pool->nonce2 = 0;
  2704. cg_wunlock(&pool->data_lock);
  2705. }
  2706. else
  2707. applog(LOG_DEBUG, "blkmk_get_mdata failed for pool %u", pool->pool_no);
  2708. }
  2709. #endif // BLKMAKER_VERSION > 4
  2710. pool_set_opaque(pool, !work->tr);
  2711. ret = true;
  2712. return ret;
  2713. }
  2714. /* Returns whether the pool supports local work generation or not. */
  2715. static bool pool_localgen(struct pool *pool)
  2716. {
  2717. return (pool->last_work_copy || pool->has_stratum);
  2718. }
  2719. int dev_from_id(int thr_id)
  2720. {
  2721. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2722. return cgpu->device_id;
  2723. }
  2724. /* Create an exponentially decaying average over the opt_log_interval */
  2725. void decay_time(double *f, double fadd, double fsecs)
  2726. {
  2727. double ftotal, fprop;
  2728. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2729. ftotal = 1.0 + fprop;
  2730. *f += (fadd * fprop);
  2731. *f /= ftotal;
  2732. }
  2733. static int __total_staged(void)
  2734. {
  2735. return HASH_COUNT(staged_work);
  2736. }
  2737. static int total_staged(void)
  2738. {
  2739. int ret;
  2740. mutex_lock(stgd_lock);
  2741. ret = __total_staged();
  2742. mutex_unlock(stgd_lock);
  2743. return ret;
  2744. }
  2745. #ifdef HAVE_CURSES
  2746. WINDOW *mainwin, *statuswin, *logwin;
  2747. #endif
  2748. double total_secs = 1.0;
  2749. static char statusline[256];
  2750. /* logstart is where the log window should start */
  2751. static int devcursor, logstart, logcursor;
  2752. #ifdef HAVE_CURSES
  2753. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2754. static int statusy;
  2755. static int devsummaryYOffset;
  2756. static int total_lines;
  2757. #endif
  2758. #ifdef HAVE_OPENCL
  2759. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2760. #endif
  2761. struct cgpu_info *cpus;
  2762. bool _bfg_console_cancel_disabled;
  2763. int _bfg_console_prev_cancelstate;
  2764. #ifdef HAVE_CURSES
  2765. #define lock_curses() bfg_console_lock()
  2766. #define unlock_curses() bfg_console_unlock()
  2767. static bool curses_active_locked(void)
  2768. {
  2769. bool ret;
  2770. lock_curses();
  2771. ret = curses_active;
  2772. if (!ret)
  2773. unlock_curses();
  2774. return ret;
  2775. }
  2776. // Cancellable getch
  2777. int my_cancellable_getch(void)
  2778. {
  2779. // This only works because the macro only hits direct getch() calls
  2780. typedef int (*real_getch_t)(void);
  2781. const real_getch_t real_getch = __real_getch;
  2782. int type, rv;
  2783. bool sct;
  2784. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2785. rv = real_getch();
  2786. if (sct)
  2787. pthread_setcanceltype(type, &type);
  2788. return rv;
  2789. }
  2790. #ifdef PDCURSES
  2791. static
  2792. int bfg_wresize(WINDOW *win, int lines, int columns)
  2793. {
  2794. int rv = wresize(win, lines, columns);
  2795. int x, y;
  2796. getyx(win, y, x);
  2797. if (unlikely(y >= lines || x >= columns))
  2798. {
  2799. if (y >= lines)
  2800. y = lines - 1;
  2801. if (x >= columns)
  2802. x = columns - 1;
  2803. wmove(win, y, x);
  2804. }
  2805. return rv;
  2806. }
  2807. #else
  2808. # define bfg_wresize wresize
  2809. #endif
  2810. #endif
  2811. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2812. {
  2813. va_list ap;
  2814. size_t presz = strlen(buf);
  2815. va_start(ap, fmt);
  2816. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2817. va_end(ap);
  2818. }
  2819. double stats_elapsed(struct cgminer_stats *stats)
  2820. {
  2821. struct timeval now;
  2822. double elapsed;
  2823. if (stats->start_tv.tv_sec == 0)
  2824. elapsed = total_secs;
  2825. else {
  2826. cgtime(&now);
  2827. elapsed = tdiff(&now, &stats->start_tv);
  2828. }
  2829. if (elapsed < 1.0)
  2830. elapsed = 1.0;
  2831. return elapsed;
  2832. }
  2833. bool drv_ready(struct cgpu_info *cgpu)
  2834. {
  2835. switch (cgpu->status) {
  2836. case LIFE_INIT:
  2837. case LIFE_DEAD2:
  2838. return false;
  2839. default:
  2840. return true;
  2841. }
  2842. }
  2843. double cgpu_utility(struct cgpu_info *cgpu)
  2844. {
  2845. double dev_runtime = cgpu_runtime(cgpu);
  2846. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2847. }
  2848. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2849. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2850. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2851. }while(0)
  2852. static float
  2853. utility_to_hashrate(double utility)
  2854. {
  2855. return utility * 0x4444444;
  2856. }
  2857. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2858. static const int _unitbase = 4;
  2859. static
  2860. void pick_unit(float hashrate, unsigned char *unit)
  2861. {
  2862. unsigned char i;
  2863. if (hashrate == 0 || !isfinite(hashrate))
  2864. {
  2865. if (*unit < _unitbase)
  2866. *unit = _unitbase;
  2867. return;
  2868. }
  2869. hashrate *= 1e12;
  2870. for (i = 0; i < *unit; ++i)
  2871. hashrate /= 1e3;
  2872. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2873. while (hashrate >= 999.95)
  2874. {
  2875. hashrate /= 1e3;
  2876. if (likely(_unitchar[*unit] != '?'))
  2877. ++*unit;
  2878. }
  2879. }
  2880. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2881. enum h2bs_fmt {
  2882. H2B_NOUNIT, // "xxx.x"
  2883. H2B_SHORT, // "xxx.xMH/s"
  2884. H2B_SPACED, // "xxx.x MH/s"
  2885. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2886. };
  2887. enum bfu_floatprec {
  2888. FUP_INTEGER,
  2889. FUP_HASHES,
  2890. FUP_BTC,
  2891. FUP_DIFF,
  2892. };
  2893. static
  2894. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2895. {
  2896. char *s = buf;
  2897. unsigned char prec, i, unit;
  2898. int rv = 0;
  2899. if (unitin == -1)
  2900. {
  2901. unit = 0;
  2902. hashrate_pick_unit(hashrate, &unit);
  2903. }
  2904. else
  2905. unit = unitin;
  2906. hashrate *= 1e12;
  2907. for (i = 0; i < unit; ++i)
  2908. hashrate /= 1000;
  2909. switch (fprec)
  2910. {
  2911. case FUP_HASHES:
  2912. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2913. if (hashrate >= 99.995 || unit < 6)
  2914. prec = 1;
  2915. else
  2916. prec = 2;
  2917. _SNP("%5.*f", prec, hashrate);
  2918. break;
  2919. case FUP_INTEGER:
  2920. _SNP("%3d", (int)hashrate);
  2921. break;
  2922. case FUP_BTC:
  2923. if (hashrate >= 99.995)
  2924. prec = 0;
  2925. else
  2926. prec = 2;
  2927. _SNP("%5.*f", prec, hashrate);
  2928. break;
  2929. case FUP_DIFF:
  2930. if (unit > _unitbase)
  2931. _SNP("%.3g", hashrate);
  2932. else
  2933. _SNP("%u", (unsigned int)hashrate);
  2934. }
  2935. if (fmt != H2B_NOUNIT)
  2936. {
  2937. char uc[3] = {_unitchar[unit], '\0'};
  2938. switch (fmt) {
  2939. case H2B_SPACED:
  2940. _SNP(" ");
  2941. default:
  2942. break;
  2943. case H2B_SHORTV:
  2944. if (isspace(uc[0]))
  2945. uc[0] = '\0';
  2946. }
  2947. if (uc[0] == '\xb5')
  2948. // Convert to UTF-8
  2949. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2950. _SNP("%s%s", uc, measurement);
  2951. }
  2952. return rv;
  2953. }
  2954. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2955. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2956. static
  2957. 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)
  2958. {
  2959. unsigned char unit = 0;
  2960. bool allzero = true;
  2961. int i;
  2962. size_t delimsz = 0;
  2963. char *buf = buflist[0];
  2964. size_t bufsz = bufszlist[0];
  2965. size_t itemwidth = (floatprec ? 5 : 3);
  2966. if (!isarray)
  2967. delimsz = strlen(delim);
  2968. for (i = 0; i < count; ++i)
  2969. if (numbers[i] != 0)
  2970. {
  2971. pick_unit(numbers[i], &unit);
  2972. allzero = false;
  2973. }
  2974. if (allzero)
  2975. unit = _unitbase;
  2976. --count;
  2977. for (i = 0; i < count; ++i)
  2978. {
  2979. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2980. if (isarray)
  2981. {
  2982. buf = buflist[i + 1];
  2983. bufsz = bufszlist[i + 1];
  2984. }
  2985. else
  2986. {
  2987. buf += itemwidth;
  2988. bufsz -= itemwidth;
  2989. if (delimsz > bufsz)
  2990. delimsz = bufsz;
  2991. memcpy(buf, delim, delimsz);
  2992. buf += delimsz;
  2993. bufsz -= delimsz;
  2994. }
  2995. }
  2996. // Last entry has the unit
  2997. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2998. return buflist[0];
  2999. }
  3000. #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)
  3001. #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)
  3002. static
  3003. int percentf3(char * const buf, size_t sz, double p, const double t)
  3004. {
  3005. char *s = buf;
  3006. int rv = 0;
  3007. if (!p)
  3008. _SNP("none");
  3009. else
  3010. if (t <= p)
  3011. _SNP("100%%");
  3012. else
  3013. {
  3014. p /= t;
  3015. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  3016. _SNP(".%02.0f%%", p * 10000); // ".01%"
  3017. else
  3018. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  3019. _SNP("%.1f%%", p * 100); // "9.1%"
  3020. else
  3021. _SNP("%3.0f%%", p * 100); // " 99%"
  3022. }
  3023. return rv;
  3024. }
  3025. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  3026. static
  3027. void test_decimal_width()
  3028. {
  3029. // The pipe character at end of each line should perfectly line up
  3030. char printbuf[512];
  3031. char testbuf1[64];
  3032. char testbuf2[64];
  3033. char testbuf3[64];
  3034. char testbuf4[64];
  3035. double testn;
  3036. int width;
  3037. int saved;
  3038. // Hotspots around 0.1 and 0.01
  3039. saved = -1;
  3040. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  3041. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  3042. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  3043. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  3044. if (unlikely((saved != -1) && (width != saved))) {
  3045. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  3046. applog(LOG_ERR, "%s", printbuf);
  3047. }
  3048. saved = width;
  3049. }
  3050. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  3051. saved = -1;
  3052. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  3053. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3054. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3055. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3056. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  3057. width = utf8_strlen(printbuf);
  3058. if (unlikely((saved != -1) && (width != saved))) {
  3059. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  3060. applog(LOG_ERR, "%s", printbuf);
  3061. }
  3062. saved = width;
  3063. }
  3064. // Hotspot around unit transition boundary in pick_unit
  3065. saved = -1;
  3066. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  3067. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3068. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3069. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3070. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  3071. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  3072. width = utf8_strlen(printbuf);
  3073. if (unlikely((saved != -1) && (width != saved))) {
  3074. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  3075. applog(LOG_ERR, "%s", printbuf);
  3076. }
  3077. saved = width;
  3078. }
  3079. }
  3080. #ifdef HAVE_CURSES
  3081. static void adj_width(int var, int *length);
  3082. #endif
  3083. #ifdef HAVE_CURSES
  3084. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  3085. static
  3086. 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)
  3087. {
  3088. char rejpcbuf[6];
  3089. char bnbuf[6];
  3090. adj_width(accepted, &awidth);
  3091. adj_width(rejected, &rwidth);
  3092. adj_width(stale, &swidth);
  3093. adj_width(hwerrs, &hwwidth);
  3094. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3095. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3096. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3097. cHr, aHr, uHr,
  3098. awidth, accepted,
  3099. rwidth, rejected,
  3100. swidth, stale,
  3101. rejpcbuf,
  3102. hwwidth, hwerrs,
  3103. bnbuf
  3104. );
  3105. }
  3106. static
  3107. const char *pool_proto_str(const struct pool * const pool)
  3108. {
  3109. if (pool->idle)
  3110. return "Dead ";
  3111. if (pool->has_stratum)
  3112. return "Strtm";
  3113. if (pool->lp_url && pool->proto != pool->lp_proto)
  3114. return "Mixed";
  3115. switch (pool->proto)
  3116. {
  3117. case PLP_GETBLOCKTEMPLATE:
  3118. return " GBT ";
  3119. case PLP_GETWORK:
  3120. return "GWork";
  3121. default:
  3122. return "Alive";
  3123. }
  3124. }
  3125. #endif
  3126. static inline
  3127. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3128. {
  3129. if (!(use_unicode && have_unicode_degrees))
  3130. maybe_unicode = false;
  3131. if (temp && *temp > 0.)
  3132. if (maybe_unicode)
  3133. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3134. else
  3135. snprintf(buf, bufsz, "%4.1fC", *temp);
  3136. else
  3137. {
  3138. if (temp)
  3139. snprintf(buf, bufsz, " ");
  3140. if (maybe_unicode)
  3141. tailsprintf(buf, bufsz, " ");
  3142. }
  3143. tailsprintf(buf, bufsz, " | ");
  3144. }
  3145. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3146. {
  3147. #ifndef HAVE_CURSES
  3148. assert(for_curses == false);
  3149. #endif
  3150. struct device_drv *drv = cgpu->drv;
  3151. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3152. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3153. char rejpcbuf[6];
  3154. char bnbuf[6];
  3155. double dev_runtime;
  3156. if (!opt_show_procs)
  3157. cgpu = cgpu->device;
  3158. dev_runtime = cgpu_runtime(cgpu);
  3159. double rolling, mhashes;
  3160. int accepted, rejected, stale;
  3161. double waccepted;
  3162. double wnotaccepted;
  3163. int hwerrs;
  3164. double bad_diff1, good_diff1;
  3165. rolling = mhashes = waccepted = wnotaccepted = 0;
  3166. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3167. {
  3168. struct cgpu_info *slave = cgpu;
  3169. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3170. {
  3171. slave->utility = slave->accepted / dev_runtime * 60;
  3172. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3173. rolling += slave->rolling;
  3174. mhashes += slave->total_mhashes;
  3175. if (opt_weighed_stats)
  3176. {
  3177. accepted += slave->diff_accepted;
  3178. rejected += slave->diff_rejected;
  3179. stale += slave->diff_stale;
  3180. }
  3181. else
  3182. {
  3183. accepted += slave->accepted;
  3184. rejected += slave->rejected;
  3185. stale += slave->stale;
  3186. }
  3187. waccepted += slave->diff_accepted;
  3188. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3189. hwerrs += slave->hw_errors;
  3190. bad_diff1 += slave->bad_diff1;
  3191. good_diff1 += slave->diff1;
  3192. if (opt_show_procs)
  3193. break;
  3194. }
  3195. }
  3196. double wtotal = (waccepted + wnotaccepted);
  3197. multi_format_unit_array2(
  3198. ((char*[]){cHr, aHr, uHr}),
  3199. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3200. true, "h/s", hashrate_style,
  3201. 3,
  3202. 1e6*rolling,
  3203. 1e6*mhashes / dev_runtime,
  3204. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3205. // Processor representation
  3206. #ifdef HAVE_CURSES
  3207. if (for_curses)
  3208. {
  3209. if (opt_show_procs)
  3210. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3211. else
  3212. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3213. }
  3214. else
  3215. #endif
  3216. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3217. if (include_serial_in_statline && cgpu->dev_serial)
  3218. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3219. if (unlikely(cgpu->status == LIFE_INIT))
  3220. {
  3221. tailsprintf(buf, bufsz, "Initializing...");
  3222. return;
  3223. }
  3224. {
  3225. const size_t bufln = strlen(buf);
  3226. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3227. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3228. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3229. else
  3230. {
  3231. float temp = cgpu->temp;
  3232. if (!opt_show_procs)
  3233. {
  3234. // Find the highest temperature of all processors
  3235. struct cgpu_info *proc = cgpu;
  3236. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3237. if (proc->temp > temp)
  3238. temp = proc->temp;
  3239. }
  3240. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3241. }
  3242. }
  3243. #ifdef HAVE_CURSES
  3244. if (for_curses)
  3245. {
  3246. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3247. const char *cHrStats;
  3248. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3249. bool all_dead = true, all_off = true, all_rdrv = true;
  3250. struct cgpu_info *proc = cgpu;
  3251. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3252. {
  3253. switch (cHrStatsI) {
  3254. default:
  3255. if (proc->status == LIFE_WAIT)
  3256. cHrStatsI = 5;
  3257. case 5:
  3258. if (proc->deven == DEV_RECOVER_ERR)
  3259. cHrStatsI = 4;
  3260. case 4:
  3261. if (proc->deven == DEV_RECOVER)
  3262. cHrStatsI = 3;
  3263. case 3:
  3264. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3265. {
  3266. cHrStatsI = 1;
  3267. all_off = false;
  3268. }
  3269. else
  3270. {
  3271. if (likely(proc->deven == DEV_ENABLED))
  3272. all_off = false;
  3273. if (proc->deven != DEV_RECOVER_DRV)
  3274. all_rdrv = false;
  3275. }
  3276. case 1:
  3277. break;
  3278. }
  3279. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3280. all_dead = false;
  3281. if (opt_show_procs)
  3282. break;
  3283. }
  3284. if (unlikely(all_dead))
  3285. cHrStatsI = 0;
  3286. else
  3287. if (unlikely(all_off))
  3288. cHrStatsI = 2;
  3289. cHrStats = cHrStatsOpt[cHrStatsI];
  3290. if (cHrStatsI == 2 && all_rdrv)
  3291. cHrStats = " RST ";
  3292. format_statline(buf, bufsz,
  3293. cHrStats,
  3294. aHr, uHr,
  3295. accepted, rejected, stale,
  3296. wnotaccepted, waccepted,
  3297. hwerrs,
  3298. bad_diff1, bad_diff1 + good_diff1);
  3299. }
  3300. else
  3301. #endif
  3302. {
  3303. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3304. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3305. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3306. opt_log_interval,
  3307. cHr, aHr, uHr,
  3308. accepted,
  3309. rejected,
  3310. stale,
  3311. rejpcbuf,
  3312. hwerrs,
  3313. bnbuf
  3314. );
  3315. }
  3316. }
  3317. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3318. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3319. static void text_print_status(int thr_id)
  3320. {
  3321. struct cgpu_info *cgpu;
  3322. char logline[256];
  3323. cgpu = get_thr_cgpu(thr_id);
  3324. if (cgpu) {
  3325. get_statline(logline, sizeof(logline), cgpu);
  3326. printf("%s\n", logline);
  3327. }
  3328. }
  3329. #ifdef HAVE_CURSES
  3330. static int attr_bad = A_BOLD;
  3331. #ifdef WIN32
  3332. #define swprintf snwprintf
  3333. #endif
  3334. static
  3335. void bfg_waddstr(WINDOW *win, const char *s)
  3336. {
  3337. const char *p = s;
  3338. int32_t w;
  3339. int wlen;
  3340. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3341. while (true)
  3342. {
  3343. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3344. {
  3345. // Printable ASCII
  3346. ++p;
  3347. }
  3348. if (p != s)
  3349. waddnstr(win, s, p - s);
  3350. w = utf8_decode(p, &wlen);
  3351. s = p += wlen;
  3352. switch(w)
  3353. {
  3354. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3355. case '\0':
  3356. return;
  3357. case 0xb5: // micro symbol
  3358. w = unicode_micro;
  3359. goto default_addch;
  3360. case 0xf000: // "bad" off
  3361. wattroff(win, attr_bad);
  3362. break;
  3363. case 0xf001: // "bad" on
  3364. wattron(win, attr_bad);
  3365. break;
  3366. #ifdef USE_UNICODE
  3367. case '|':
  3368. wadd_wch(win, WACS_VLINE);
  3369. break;
  3370. #endif
  3371. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3372. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3373. if (!use_unicode)
  3374. {
  3375. waddch(win, '-');
  3376. break;
  3377. }
  3378. #ifdef USE_UNICODE
  3379. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3380. break;
  3381. #endif
  3382. case 0x2022:
  3383. if (w > WCHAR_MAX || !iswprint(w))
  3384. w = '*';
  3385. default:
  3386. default_addch:
  3387. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3388. {
  3389. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3390. if (iswprint(REPLACEMENT_CHAR))
  3391. w = REPLACEMENT_CHAR;
  3392. else
  3393. #endif
  3394. w = '?';
  3395. }
  3396. {
  3397. #ifdef USE_UNICODE
  3398. wchar_t wbuf[0x10];
  3399. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3400. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3401. waddnwstr(win, wbuf, wbuflen);
  3402. #else
  3403. wprintw(win, "%lc", (wint_t)w);
  3404. #endif
  3405. }
  3406. }
  3407. }
  3408. }
  3409. static inline
  3410. void bfg_hline(WINDOW *win, int y)
  3411. {
  3412. int maxx, __maybe_unused maxy;
  3413. getmaxyx(win, maxy, maxx);
  3414. #ifdef USE_UNICODE
  3415. if (use_unicode)
  3416. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3417. else
  3418. #endif
  3419. mvwhline(win, y, 0, '-', maxx);
  3420. }
  3421. // Spaces until end of line, using current attributes (ie, not completely clear)
  3422. static
  3423. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3424. {
  3425. int x, maxx;
  3426. int __maybe_unused y;
  3427. getmaxyx(win, y, maxx);
  3428. getyx(win, y, x);
  3429. const int space_count = (maxx - x) - offset;
  3430. // Check for negative - terminal too narrow
  3431. if (space_count <= 0)
  3432. return;
  3433. char buf[space_count];
  3434. memset(buf, ' ', space_count);
  3435. waddnstr(win, buf, space_count);
  3436. }
  3437. static int menu_attr = A_REVERSE;
  3438. #define CURBUFSIZ 256
  3439. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3440. char tmp42[CURBUFSIZ]; \
  3441. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3442. wmove(win, y, x); \
  3443. bfg_waddstr(win, tmp42); \
  3444. } while (0)
  3445. #define cg_wprintw(win, fmt, ...) do { \
  3446. char tmp42[CURBUFSIZ]; \
  3447. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3448. bfg_waddstr(win, tmp42); \
  3449. } while (0)
  3450. static bool pool_unworkable(const struct pool *);
  3451. /* Must be called with curses mutex lock held and curses_active */
  3452. static void curses_print_status(const int ts)
  3453. {
  3454. struct pool *pool = currentpool;
  3455. struct timeval now, tv;
  3456. float efficiency;
  3457. double income;
  3458. int logdiv;
  3459. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3460. wattron(statuswin, attr_title);
  3461. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3462. timer_set_now(&now);
  3463. {
  3464. unsigned int days, hours;
  3465. div_t d;
  3466. timersub(&now, &miner_started, &tv);
  3467. d = div(tv.tv_sec, 86400);
  3468. days = d.quot;
  3469. d = div(d.rem, 3600);
  3470. hours = d.quot;
  3471. d = div(d.rem, 60);
  3472. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3473. , days
  3474. , (days == 1) ? ' ' : 's'
  3475. , hours
  3476. , d.quot
  3477. , d.rem
  3478. );
  3479. }
  3480. bfg_wspctoeol(statuswin, 0);
  3481. wattroff(statuswin, attr_title);
  3482. wattron(statuswin, menu_attr);
  3483. wmove(statuswin, 1, 0);
  3484. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3485. bfg_wspctoeol(statuswin, 14);
  3486. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3487. wattroff(statuswin, menu_attr);
  3488. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3489. char poolinfo[20], poolinfo2[20];
  3490. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3491. double lowdiff = DBL_MAX, highdiff = -1;
  3492. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3493. time_t oldest_work_restart = time(NULL) + 1;
  3494. struct pool *oldest_work_restart_pool = pools[0];
  3495. for (int i = 0; i < total_pools; ++i)
  3496. {
  3497. if (pool_unworkable(pools[i]))
  3498. continue;
  3499. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3500. pool = pools[i];
  3501. ++workable_pools;
  3502. if (poolinfooff < sizeof(poolinfo))
  3503. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3504. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3505. if (pool_stats->last_diff < lowdiff)
  3506. {
  3507. lowdiff = pool_stats->last_diff;
  3508. lowdiff_pool = pool;
  3509. }
  3510. if (pool_stats->last_diff > highdiff)
  3511. {
  3512. highdiff = pool_stats->last_diff;
  3513. highdiff_pool = pool;
  3514. }
  3515. if (oldest_work_restart >= pool->work_restart_time)
  3516. {
  3517. oldest_work_restart = pool->work_restart_time;
  3518. oldest_work_restart_pool = pool;
  3519. }
  3520. }
  3521. if (workable_pools == 1)
  3522. goto one_workable_pool;
  3523. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3524. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3525. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3526. else
  3527. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3528. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3529. poolinfo2,
  3530. lowdiff_pool->diff,
  3531. (lowdiff == highdiff) ? "" : "-",
  3532. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3533. have_longpoll ? '+' : '-',
  3534. oldest_work_restart_pool->work_restart_timestamp);
  3535. }
  3536. else
  3537. {
  3538. one_workable_pool: ;
  3539. char pooladdr[19];
  3540. {
  3541. const char *rawaddr = pool->sockaddr_url;
  3542. BFGINIT(rawaddr, pool->rpc_url);
  3543. size_t pooladdrlen = strlen(rawaddr);
  3544. if (pooladdrlen > 20)
  3545. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3546. else
  3547. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3548. }
  3549. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3550. pool->pool_no, pooladdr, pool->diff,
  3551. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3552. pool->work_restart_timestamp,
  3553. pool->rpc_user);
  3554. }
  3555. wclrtoeol(statuswin);
  3556. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3557. current_hash, block_diff, net_hashrate, blocktime);
  3558. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3559. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3560. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3561. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3562. ts,
  3563. total_go + total_ro,
  3564. new_blocks,
  3565. total_submitting,
  3566. multi_format_unit2(bwstr, sizeof(bwstr),
  3567. false, "B/s", H2B_SHORT, "/", 2,
  3568. (float)(total_bytes_rcvd / total_secs),
  3569. (float)(total_bytes_sent / total_secs)),
  3570. efficiency,
  3571. incomestr,
  3572. best_share);
  3573. wclrtoeol(statuswin);
  3574. mvwaddstr(statuswin, 5, 0, " ");
  3575. bfg_waddstr(statuswin, statusline);
  3576. wclrtoeol(statuswin);
  3577. logdiv = statusy - 1;
  3578. bfg_hline(statuswin, 6);
  3579. bfg_hline(statuswin, logdiv);
  3580. #ifdef USE_UNICODE
  3581. if (use_unicode)
  3582. {
  3583. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3584. if (opt_show_procs && !opt_compact)
  3585. ++offset; // proc letter
  3586. if (have_unicode_degrees)
  3587. ++offset; // degrees symbol
  3588. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3589. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3590. offset += 24; // hashrates etc
  3591. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3592. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3593. }
  3594. #endif
  3595. }
  3596. static void adj_width(int var, int *length)
  3597. {
  3598. if ((int)(log10(var) + 1) > *length)
  3599. (*length)++;
  3600. }
  3601. static int dev_width;
  3602. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3603. {
  3604. char logline[256];
  3605. int ypos;
  3606. if (opt_compact)
  3607. return;
  3608. /* Check this isn't out of the window size */
  3609. if (opt_show_procs)
  3610. ypos = cgpu->cgminer_id;
  3611. else
  3612. {
  3613. if (cgpu->proc_id)
  3614. return;
  3615. ypos = cgpu->device_line_id;
  3616. }
  3617. ypos += devsummaryYOffset;
  3618. if (ypos < 0)
  3619. return;
  3620. ypos += devcursor - 1;
  3621. if (ypos >= statusy - 1)
  3622. return;
  3623. if (wmove(statuswin, ypos, 0) == ERR)
  3624. return;
  3625. get_statline2(logline, sizeof(logline), cgpu, true);
  3626. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3627. wattron(statuswin, A_REVERSE);
  3628. bfg_waddstr(statuswin, logline);
  3629. wattroff(statuswin, A_REVERSE);
  3630. wclrtoeol(statuswin);
  3631. }
  3632. static
  3633. void _refresh_devstatus(const bool already_have_lock) {
  3634. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3635. int i;
  3636. if (unlikely(!total_devices))
  3637. {
  3638. const int ypos = devcursor - 1;
  3639. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3640. {
  3641. wattron(statuswin, attr_bad);
  3642. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3643. wclrtoeol(statuswin);
  3644. wattroff(statuswin, attr_bad);
  3645. }
  3646. }
  3647. for (i = 0; i < total_devices; i++)
  3648. curses_print_devstatus(get_devices(i));
  3649. touchwin(statuswin);
  3650. wrefresh(statuswin);
  3651. if (!already_have_lock)
  3652. unlock_curses();
  3653. }
  3654. }
  3655. #define refresh_devstatus() _refresh_devstatus(false)
  3656. #endif
  3657. static void print_status(int thr_id)
  3658. {
  3659. if (!curses_active)
  3660. text_print_status(thr_id);
  3661. }
  3662. #ifdef HAVE_CURSES
  3663. static
  3664. bool set_statusy(int maxy)
  3665. {
  3666. if (loginput_size)
  3667. {
  3668. maxy -= loginput_size;
  3669. if (maxy < 0)
  3670. maxy = 0;
  3671. }
  3672. if (logstart < maxy)
  3673. maxy = logstart;
  3674. if (statusy == maxy)
  3675. return false;
  3676. statusy = maxy;
  3677. logcursor = statusy;
  3678. return true;
  3679. }
  3680. /* Check for window resize. Called with curses mutex locked */
  3681. static inline void change_logwinsize(void)
  3682. {
  3683. int x, y, logx, logy;
  3684. getmaxyx(mainwin, y, x);
  3685. if (x < 80 || y < 25)
  3686. return;
  3687. if (y > statusy + 2 && statusy < logstart) {
  3688. set_statusy(y - 2);
  3689. mvwin(logwin, logcursor, 0);
  3690. bfg_wresize(statuswin, statusy, x);
  3691. }
  3692. y -= logcursor;
  3693. getmaxyx(logwin, logy, logx);
  3694. /* Detect screen size change */
  3695. if (x != logx || y != logy)
  3696. bfg_wresize(logwin, y, x);
  3697. }
  3698. static void check_winsizes(void)
  3699. {
  3700. if (!use_curses)
  3701. return;
  3702. if (curses_active_locked()) {
  3703. int y, x;
  3704. x = getmaxx(statuswin);
  3705. if (set_statusy(LINES - 2))
  3706. {
  3707. erase();
  3708. bfg_wresize(statuswin, statusy, x);
  3709. getmaxyx(mainwin, y, x);
  3710. y -= logcursor;
  3711. bfg_wresize(logwin, y, x);
  3712. mvwin(logwin, logcursor, 0);
  3713. }
  3714. unlock_curses();
  3715. }
  3716. }
  3717. static int device_line_id_count;
  3718. static void switch_logsize(void)
  3719. {
  3720. if (curses_active_locked()) {
  3721. if (opt_compact) {
  3722. logstart = devcursor - 1;
  3723. logcursor = logstart + 1;
  3724. } else {
  3725. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3726. logstart = devcursor + total_lines;
  3727. logcursor = logstart;
  3728. }
  3729. unlock_curses();
  3730. }
  3731. check_winsizes();
  3732. }
  3733. /* For mandatory printing when mutex is already locked */
  3734. void _wlog(const char *str)
  3735. {
  3736. static bool newline;
  3737. size_t end = strlen(str) - 1;
  3738. if (newline)
  3739. bfg_waddstr(logwin, "\n");
  3740. if (str[end] == '\n')
  3741. {
  3742. char *s;
  3743. newline = true;
  3744. s = alloca(end + 1);
  3745. memcpy(s, str, end);
  3746. s[end] = '\0';
  3747. str = s;
  3748. }
  3749. else
  3750. newline = false;
  3751. bfg_waddstr(logwin, str);
  3752. }
  3753. /* Mandatory printing */
  3754. void _wlogprint(const char *str)
  3755. {
  3756. if (curses_active_locked()) {
  3757. _wlog(str);
  3758. unlock_curses();
  3759. }
  3760. }
  3761. #endif
  3762. #ifdef HAVE_CURSES
  3763. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3764. {
  3765. bool high_prio;
  3766. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3767. if (curses_active)
  3768. {
  3769. if (!loginput_size || high_prio) {
  3770. wlog(" %s %s\n", datetime, str);
  3771. if (high_prio) {
  3772. touchwin(logwin);
  3773. wrefresh(logwin);
  3774. }
  3775. }
  3776. return true;
  3777. }
  3778. return false;
  3779. }
  3780. void clear_logwin(void)
  3781. {
  3782. if (curses_active_locked()) {
  3783. wclear(logwin);
  3784. unlock_curses();
  3785. }
  3786. }
  3787. void logwin_update(void)
  3788. {
  3789. if (curses_active_locked()) {
  3790. touchwin(logwin);
  3791. wrefresh(logwin);
  3792. unlock_curses();
  3793. }
  3794. }
  3795. #endif
  3796. static void enable_pool(struct pool *pool)
  3797. {
  3798. if (pool->enabled != POOL_ENABLED) {
  3799. enabled_pools++;
  3800. pool->enabled = POOL_ENABLED;
  3801. }
  3802. }
  3803. #ifdef HAVE_CURSES
  3804. static void disable_pool(struct pool *pool)
  3805. {
  3806. if (pool->enabled == POOL_ENABLED)
  3807. enabled_pools--;
  3808. pool->enabled = POOL_DISABLED;
  3809. }
  3810. #endif
  3811. static void reject_pool(struct pool *pool)
  3812. {
  3813. if (pool->enabled == POOL_ENABLED)
  3814. enabled_pools--;
  3815. pool->enabled = POOL_REJECTING;
  3816. }
  3817. static double share_diff(const struct work *);
  3818. static
  3819. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3820. struct cgpu_info *cgpu;
  3821. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3822. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3823. const double tgtdiff = work->work_difficulty;
  3824. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3825. char where[20];
  3826. cgpu = get_thr_cgpu(work->thr_id);
  3827. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3828. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3829. if (total_pools > 1)
  3830. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3831. else
  3832. where[0] = '\0';
  3833. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3834. disp,
  3835. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3836. cgpu->proc_repr,
  3837. where,
  3838. shrdiffdisp, tgtdiffdisp,
  3839. reason,
  3840. resubmit ? "(resubmit)" : "",
  3841. worktime
  3842. );
  3843. }
  3844. static bool test_work_current(struct work *);
  3845. static void _submit_work_async(struct work *);
  3846. static
  3847. void maybe_local_submit(const struct work *work)
  3848. {
  3849. #if BLKMAKER_VERSION > 3
  3850. if (unlikely(work->block && work->tr))
  3851. {
  3852. // This is a block with a full template (GBT)
  3853. // Regardless of the result, submit to local bitcoind(s) as well
  3854. struct work *work_cp;
  3855. for (int i = 0; i < total_pools; ++i)
  3856. {
  3857. if (!uri_get_param_bool(pools[i]->rpc_url, "allblocks", false))
  3858. continue;
  3859. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3860. work_cp = copy_work(work);
  3861. work_cp->pool = pools[i];
  3862. work_cp->do_foreign_submit = true;
  3863. _submit_work_async(work_cp);
  3864. }
  3865. }
  3866. #endif
  3867. }
  3868. /* Theoretically threads could race when modifying accepted and
  3869. * rejected values but the chance of two submits completing at the
  3870. * same time is zero so there is no point adding extra locking */
  3871. static void
  3872. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3873. /*char *hashshow,*/ bool resubmit, char *worktime)
  3874. {
  3875. struct pool *pool = work->pool;
  3876. struct cgpu_info *cgpu;
  3877. cgpu = get_thr_cgpu(work->thr_id);
  3878. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3879. mutex_lock(&stats_lock);
  3880. cgpu->accepted++;
  3881. total_accepted++;
  3882. pool->accepted++;
  3883. cgpu->diff_accepted += work->work_difficulty;
  3884. total_diff_accepted += work->work_difficulty;
  3885. pool->diff_accepted += work->work_difficulty;
  3886. mutex_unlock(&stats_lock);
  3887. pool->seq_rejects = 0;
  3888. cgpu->last_share_pool = pool->pool_no;
  3889. cgpu->last_share_pool_time = time(NULL);
  3890. cgpu->last_share_diff = work->work_difficulty;
  3891. pool->last_share_time = cgpu->last_share_pool_time;
  3892. pool->last_share_diff = work->work_difficulty;
  3893. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3894. if (!QUIET) {
  3895. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3896. }
  3897. sharelog("accept", work);
  3898. if (opt_shares && total_diff_accepted >= opt_shares) {
  3899. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3900. kill_work();
  3901. return;
  3902. }
  3903. /* Detect if a pool that has been temporarily disabled for
  3904. * continually rejecting shares has started accepting shares.
  3905. * This will only happen with the work returned from a
  3906. * longpoll */
  3907. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3908. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3909. enable_pool(pool);
  3910. switch_pools(NULL);
  3911. }
  3912. if (unlikely(work->block)) {
  3913. // Force moving on to this new block :)
  3914. struct work fakework;
  3915. memset(&fakework, 0, sizeof(fakework));
  3916. fakework.pool = work->pool;
  3917. // Copy block version, bits, and time from share
  3918. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3919. memcpy(&fakework.data[68], &work->data[68], 8);
  3920. // Set prevblock to winning hash (swap32'd)
  3921. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3922. test_work_current(&fakework);
  3923. }
  3924. } else {
  3925. mutex_lock(&stats_lock);
  3926. cgpu->rejected++;
  3927. total_rejected++;
  3928. pool->rejected++;
  3929. cgpu->diff_rejected += work->work_difficulty;
  3930. total_diff_rejected += work->work_difficulty;
  3931. pool->diff_rejected += work->work_difficulty;
  3932. pool->seq_rejects++;
  3933. mutex_unlock(&stats_lock);
  3934. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3935. if (!QUIET) {
  3936. char where[20];
  3937. char disposition[36] = "reject";
  3938. char reason[32];
  3939. strcpy(reason, "");
  3940. if (total_pools > 1)
  3941. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3942. else
  3943. strcpy(where, "");
  3944. if (!json_is_string(res))
  3945. res = json_object_get(val, "reject-reason");
  3946. if (res) {
  3947. const char *reasontmp = json_string_value(res);
  3948. size_t reasonLen = strlen(reasontmp);
  3949. if (reasonLen > 28)
  3950. reasonLen = 28;
  3951. reason[0] = ' '; reason[1] = '(';
  3952. memcpy(2 + reason, reasontmp, reasonLen);
  3953. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3954. memcpy(disposition + 7, reasontmp, reasonLen);
  3955. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3956. } else if (work->stratum && err && json_is_array(err)) {
  3957. json_t *reason_val = json_array_get(err, 1);
  3958. char *reason_str;
  3959. if (reason_val && json_is_string(reason_val)) {
  3960. reason_str = (char *)json_string_value(reason_val);
  3961. snprintf(reason, 31, " (%s)", reason_str);
  3962. }
  3963. }
  3964. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3965. sharelog(disposition, work);
  3966. }
  3967. /* Once we have more than a nominal amount of sequential rejects,
  3968. * at least 10 and more than 3 mins at the current utility,
  3969. * disable the pool because some pool error is likely to have
  3970. * ensued. Do not do this if we know the share just happened to
  3971. * be stale due to networking delays.
  3972. */
  3973. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3974. double utility = total_accepted / total_secs * 60;
  3975. if (pool->seq_rejects > utility * 3) {
  3976. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3977. pool->pool_no, pool->seq_rejects);
  3978. reject_pool(pool);
  3979. if (pool == current_pool())
  3980. switch_pools(NULL);
  3981. pool->seq_rejects = 0;
  3982. }
  3983. }
  3984. }
  3985. maybe_local_submit(work);
  3986. }
  3987. static char *submit_upstream_work_request(struct work *work)
  3988. {
  3989. char *hexstr = NULL;
  3990. char *s, *sd;
  3991. struct pool *pool = work->pool;
  3992. if (work->tr)
  3993. {
  3994. blktemplate_t * const tmpl = work->tr->tmpl;
  3995. json_t *req;
  3996. unsigned char data[80];
  3997. swap32yes(data, work->data, 80 / 4);
  3998. #if BLKMAKER_VERSION > 3
  3999. if (work->do_foreign_submit)
  4000. req = blkmk_submit_foreign_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4001. else
  4002. #endif
  4003. req = blkmk_submit_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4004. s = json_dumps(req, 0);
  4005. json_decref(req);
  4006. sd = malloc(161);
  4007. bin2hex(sd, data, 80);
  4008. } else {
  4009. /* build hex string */
  4010. hexstr = malloc((sizeof(work->data) * 2) + 1);
  4011. bin2hex(hexstr, work->data, sizeof(work->data));
  4012. /* build JSON-RPC request */
  4013. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  4014. s = realloc_strcat(s, hexstr);
  4015. s = realloc_strcat(s, "\" ], \"id\":1}");
  4016. free(hexstr);
  4017. sd = s;
  4018. }
  4019. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  4020. if (work->tr)
  4021. free(sd);
  4022. else
  4023. s = realloc_strcat(s, "\n");
  4024. return s;
  4025. }
  4026. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  4027. json_t *res, *err;
  4028. bool rc = false;
  4029. int thr_id = work->thr_id;
  4030. struct pool *pool = work->pool;
  4031. struct timeval tv_submit_reply;
  4032. time_t ts_submit_reply;
  4033. char worktime[200] = "";
  4034. cgtime(&tv_submit_reply);
  4035. ts_submit_reply = time(NULL);
  4036. if (unlikely(!val)) {
  4037. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  4038. if (!pool_tset(pool, &pool->submit_fail)) {
  4039. total_ro++;
  4040. pool->remotefail_occasions++;
  4041. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  4042. }
  4043. goto out;
  4044. } else if (pool_tclear(pool, &pool->submit_fail))
  4045. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4046. res = json_object_get(val, "result");
  4047. err = json_object_get(val, "error");
  4048. if (!QUIET) {
  4049. if (opt_worktime) {
  4050. char workclone[20];
  4051. struct tm _tm;
  4052. struct tm *tm, tm_getwork, tm_submit_reply;
  4053. tm = &_tm;
  4054. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  4055. (struct timeval *)&(work->tv_getwork));
  4056. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  4057. (struct timeval *)&(work->tv_getwork_reply));
  4058. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  4059. (struct timeval *)&(work->tv_work_start));
  4060. double work_to_submit = tdiff(ptv_submit,
  4061. (struct timeval *)&(work->tv_work_found));
  4062. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  4063. int diffplaces = 3;
  4064. localtime_r(&work->ts_getwork, tm);
  4065. memcpy(&tm_getwork, tm, sizeof(struct tm));
  4066. localtime_r(&ts_submit_reply, tm);
  4067. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  4068. if (work->clone) {
  4069. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  4070. tdiff((struct timeval *)&(work->tv_cloned),
  4071. (struct timeval *)&(work->tv_getwork_reply)));
  4072. }
  4073. else
  4074. strcpy(workclone, "O");
  4075. if (work->work_difficulty < 1)
  4076. diffplaces = 6;
  4077. snprintf(worktime, sizeof(worktime),
  4078. " <-%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",
  4079. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  4080. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  4081. work->getwork_mode, diffplaces, work->work_difficulty,
  4082. tm_getwork.tm_hour, tm_getwork.tm_min,
  4083. tm_getwork.tm_sec, getwork_time, workclone,
  4084. getwork_to_work, work_time, work_to_submit, submit_time,
  4085. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  4086. tm_submit_reply.tm_sec);
  4087. }
  4088. }
  4089. share_result(val, res, err, work, resubmit, worktime);
  4090. if (!opt_realquiet)
  4091. print_status(thr_id);
  4092. if (!want_per_device_stats) {
  4093. char logline[256];
  4094. struct cgpu_info *cgpu;
  4095. cgpu = get_thr_cgpu(thr_id);
  4096. get_statline(logline, sizeof(logline), cgpu);
  4097. applog(LOG_INFO, "%s", logline);
  4098. }
  4099. json_decref(val);
  4100. rc = true;
  4101. out:
  4102. return rc;
  4103. }
  4104. /* Specifies whether we can use this pool for work or not. */
  4105. static bool pool_unworkable(const struct pool * const pool)
  4106. {
  4107. if (pool->idle)
  4108. return true;
  4109. if (pool->enabled != POOL_ENABLED)
  4110. return true;
  4111. if (pool->has_stratum && !pool->stratum_active)
  4112. return true;
  4113. return false;
  4114. }
  4115. static
  4116. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4117. {
  4118. if (pool->enabled != POOL_ENABLED)
  4119. return false;
  4120. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4121. return true;
  4122. if (!cp)
  4123. cp = current_pool();
  4124. return (pool == cp);
  4125. }
  4126. static
  4127. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4128. {
  4129. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4130. }
  4131. static
  4132. bool pool_supports_block_change_notification(struct pool * const pool)
  4133. {
  4134. return pool->has_stratum || pool->lp_url;
  4135. }
  4136. static
  4137. bool pool_has_active_block_change_notification(struct pool * const pool)
  4138. {
  4139. return pool->stratum_active || pool->lp_active;
  4140. }
  4141. static struct pool *_select_longpoll_pool(struct pool *, bool(*)(struct pool *));
  4142. #define select_longpoll_pool(pool) _select_longpoll_pool(pool, pool_supports_block_change_notification)
  4143. #define pool_active_lp_pool(pool) _select_longpoll_pool(pool, pool_has_active_block_change_notification)
  4144. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4145. * rolling average per 10 minutes and if pools start getting more, it biases
  4146. * away from them to distribute work evenly. The share count is reset to the
  4147. * rolling average every 10 minutes to not send all work to one pool after it
  4148. * has been disabled/out for an extended period. */
  4149. static struct pool *select_balanced(struct pool *cp)
  4150. {
  4151. int i, lowest = cp->shares;
  4152. struct pool *ret = cp;
  4153. for (i = 0; i < total_pools; i++) {
  4154. struct pool *pool = pools[i];
  4155. if (pool_unworkable(pool))
  4156. continue;
  4157. if (pool->shares < lowest) {
  4158. lowest = pool->shares;
  4159. ret = pool;
  4160. }
  4161. }
  4162. ret->shares++;
  4163. return ret;
  4164. }
  4165. static bool pool_active(struct pool *, bool pinging);
  4166. static void pool_died(struct pool *);
  4167. static struct pool *priority_pool(int choice);
  4168. static bool pool_unusable(struct pool *pool);
  4169. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4170. * it has any quota left. */
  4171. static inline struct pool *select_pool(bool lagging)
  4172. {
  4173. static int rotating_pool = 0;
  4174. struct pool *pool, *cp;
  4175. bool avail = false;
  4176. int tested, i;
  4177. cp = current_pool();
  4178. retry:
  4179. if (pool_strategy == POOL_BALANCE) {
  4180. pool = select_balanced(cp);
  4181. goto out;
  4182. }
  4183. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4184. pool = cp;
  4185. goto out;
  4186. } else
  4187. pool = NULL;
  4188. for (i = 0; i < total_pools; i++) {
  4189. struct pool *tp = pools[i];
  4190. if (tp->quota_used < tp->quota_gcd) {
  4191. avail = true;
  4192. break;
  4193. }
  4194. }
  4195. /* There are no pools with quota, so reset them. */
  4196. if (!avail) {
  4197. for (i = 0; i < total_pools; i++)
  4198. pools[i]->quota_used = 0;
  4199. if (++rotating_pool >= total_pools)
  4200. rotating_pool = 0;
  4201. }
  4202. /* Try to find the first pool in the rotation that is usable */
  4203. tested = 0;
  4204. while (!pool && tested++ < total_pools) {
  4205. pool = pools[rotating_pool];
  4206. if (pool->quota_used++ < pool->quota_gcd) {
  4207. if (!pool_unworkable(pool))
  4208. break;
  4209. /* Failover-only flag for load-balance means distribute
  4210. * unused quota to priority pool 0. */
  4211. if (opt_fail_only)
  4212. priority_pool(0)->quota_used--;
  4213. }
  4214. pool = NULL;
  4215. if (++rotating_pool >= total_pools)
  4216. rotating_pool = 0;
  4217. }
  4218. /* If there are no alive pools with quota, choose according to
  4219. * priority. */
  4220. if (!pool) {
  4221. for (i = 0; i < total_pools; i++) {
  4222. struct pool *tp = priority_pool(i);
  4223. if (!pool_unusable(tp)) {
  4224. pool = tp;
  4225. break;
  4226. }
  4227. }
  4228. }
  4229. /* If still nothing is usable, use the current pool */
  4230. if (!pool)
  4231. pool = cp;
  4232. out:
  4233. if (!pool_actively_in_use(pool, cp))
  4234. {
  4235. if (!pool_active(pool, false))
  4236. {
  4237. pool_died(pool);
  4238. goto retry;
  4239. }
  4240. pool_tclear(pool, &pool->idle);
  4241. }
  4242. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4243. return pool;
  4244. }
  4245. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4246. static double target_diff(const unsigned char *target)
  4247. {
  4248. double targ = 0;
  4249. signed int i;
  4250. for (i = 31; i >= 0; --i)
  4251. targ = (targ * 0x100) + target[i];
  4252. return DIFFEXACTONE / (targ ?: 1);
  4253. }
  4254. /*
  4255. * Calculate the work share difficulty
  4256. */
  4257. static void calc_diff(struct work *work, int known)
  4258. {
  4259. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4260. double difficulty;
  4261. if (!known) {
  4262. work->work_difficulty = target_diff(work->target);
  4263. } else
  4264. work->work_difficulty = known;
  4265. difficulty = work->work_difficulty;
  4266. pool_stats->last_diff = difficulty;
  4267. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4268. if (difficulty == pool_stats->min_diff)
  4269. pool_stats->min_diff_count++;
  4270. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4271. pool_stats->min_diff = difficulty;
  4272. pool_stats->min_diff_count = 1;
  4273. }
  4274. if (difficulty == pool_stats->max_diff)
  4275. pool_stats->max_diff_count++;
  4276. else if (difficulty > pool_stats->max_diff) {
  4277. pool_stats->max_diff = difficulty;
  4278. pool_stats->max_diff_count = 1;
  4279. }
  4280. }
  4281. static uint32_t benchmark_blkhdr[20];
  4282. static
  4283. void setup_benchmark_pool()
  4284. {
  4285. struct pool *pool;
  4286. want_longpoll = false;
  4287. // Temporarily disable opt_benchmark to avoid auto-removal
  4288. opt_benchmark = false;
  4289. pool = add_pool();
  4290. opt_benchmark = true;
  4291. pool->rpc_url = malloc(255);
  4292. strcpy(pool->rpc_url, "Benchmark");
  4293. pool->rpc_user = pool->rpc_url;
  4294. pool->rpc_pass = pool->rpc_url;
  4295. enable_pool(pool);
  4296. pool->idle = false;
  4297. successful_connect = true;
  4298. {
  4299. uint32_t * const blkhdr = benchmark_blkhdr;
  4300. blkhdr[2] = htobe32(1);
  4301. blkhdr[17] = htobe32(0x7fffffff); // timestamp
  4302. blkhdr[18] = htobe32(0x1700ffff); // "bits"
  4303. }
  4304. {
  4305. struct stratum_work * const swork = &pool->swork;
  4306. const int branchcount = 15; // 1 MB block
  4307. const size_t branchdatasz = branchcount * 0x20;
  4308. const size_t coinbase_sz = 6 * 1024;
  4309. bytes_resize(&swork->coinbase, coinbase_sz);
  4310. memset(bytes_buf(&swork->coinbase), '\xff', coinbase_sz);
  4311. swork->nonce2_offset = 0;
  4312. bytes_resize(&swork->merkle_bin, branchdatasz);
  4313. memset(bytes_buf(&swork->merkle_bin), '\xff', branchdatasz);
  4314. swork->merkles = branchcount;
  4315. memset(swork->header1, '\xff', 36);
  4316. swork->ntime = 0x7fffffff;
  4317. timer_unset(&swork->tv_received);
  4318. memcpy(swork->diffbits, "\x17\0\xff\xff", 4);
  4319. set_target_to_pdiff(swork->target, opt_scrypt ? (1./0x10000) : 1.);
  4320. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  4321. pool->nonce2 = 0;
  4322. }
  4323. }
  4324. void get_benchmark_work(struct work *work)
  4325. {
  4326. struct pool * const pool = pools[0];
  4327. uint32_t * const blkhdr = benchmark_blkhdr;
  4328. for (int i = 16; i >= 0; --i)
  4329. if (++blkhdr[i])
  4330. break;
  4331. memcpy(&work->data[ 0], blkhdr, 80);
  4332. memcpy(&work->data[80], workpadding_bin, 48);
  4333. calc_midstate(work);
  4334. memcpy(work->target, pool->swork.target, sizeof(work->target));
  4335. work->mandatory = true;
  4336. work->pool = pools[0];
  4337. cgtime(&work->tv_getwork);
  4338. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4339. copy_time(&work->tv_staged, &work->tv_getwork);
  4340. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4341. calc_diff(work, 0);
  4342. work_set_simple_ntime_roll_limit(work, 60);
  4343. }
  4344. static void wake_gws(void);
  4345. static void update_last_work(struct work *work)
  4346. {
  4347. if (!work->tr)
  4348. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4349. return;
  4350. struct pool *pool = work->pool;
  4351. mutex_lock(&pool->last_work_lock);
  4352. if (pool->last_work_copy)
  4353. free_work(pool->last_work_copy);
  4354. pool->last_work_copy = copy_work(work);
  4355. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4356. mutex_unlock(&pool->last_work_lock);
  4357. }
  4358. static
  4359. void gbt_req_target(json_t *req)
  4360. {
  4361. json_t *j;
  4362. json_t *n;
  4363. if (!request_target_str)
  4364. return;
  4365. j = json_object_get(req, "params");
  4366. if (!j)
  4367. {
  4368. n = json_array();
  4369. if (!n)
  4370. return;
  4371. if (json_object_set_new(req, "params", n))
  4372. goto erradd;
  4373. j = n;
  4374. }
  4375. n = json_array_get(j, 0);
  4376. if (!n)
  4377. {
  4378. n = json_object();
  4379. if (!n)
  4380. return;
  4381. if (json_array_append_new(j, n))
  4382. goto erradd;
  4383. }
  4384. j = n;
  4385. n = json_string(request_target_str);
  4386. if (!n)
  4387. return;
  4388. if (json_object_set_new(j, "target", n))
  4389. goto erradd;
  4390. return;
  4391. erradd:
  4392. json_decref(n);
  4393. }
  4394. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4395. {
  4396. char *rpc_req;
  4397. clean_work(work);
  4398. switch (proto) {
  4399. case PLP_GETWORK:
  4400. work->getwork_mode = GETWORK_MODE_POOL;
  4401. return strdup(getwork_req);
  4402. case PLP_GETBLOCKTEMPLATE:
  4403. work->getwork_mode = GETWORK_MODE_GBT;
  4404. blktemplate_t * const tmpl = blktmpl_create();
  4405. if (!tmpl)
  4406. goto gbtfail2;
  4407. work->tr = tmpl_makeref(tmpl);
  4408. gbt_capabilities_t caps = blktmpl_addcaps(tmpl);
  4409. if (!caps)
  4410. goto gbtfail;
  4411. caps |= GBT_LONGPOLL;
  4412. #if BLKMAKER_VERSION > 1
  4413. if (opt_coinbase_script.sz)
  4414. caps |= GBT_CBVALUE;
  4415. #endif
  4416. json_t *req = blktmpl_request_jansson(caps, lpid);
  4417. if (!req)
  4418. goto gbtfail;
  4419. if (probe)
  4420. gbt_req_target(req);
  4421. rpc_req = json_dumps(req, 0);
  4422. if (!rpc_req)
  4423. goto gbtfail;
  4424. json_decref(req);
  4425. return rpc_req;
  4426. default:
  4427. return NULL;
  4428. }
  4429. return NULL;
  4430. gbtfail:
  4431. tmpl_decref(work->tr);
  4432. work->tr = NULL;
  4433. gbtfail2:
  4434. return NULL;
  4435. }
  4436. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4437. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4438. static const char *pool_protocol_name(enum pool_protocol proto)
  4439. {
  4440. switch (proto) {
  4441. case PLP_GETBLOCKTEMPLATE:
  4442. return "getblocktemplate";
  4443. case PLP_GETWORK:
  4444. return "getwork";
  4445. default:
  4446. return "UNKNOWN";
  4447. }
  4448. }
  4449. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4450. {
  4451. switch (proto) {
  4452. case PLP_GETBLOCKTEMPLATE:
  4453. if (want_getwork)
  4454. return PLP_GETWORK;
  4455. default:
  4456. return PLP_NONE;
  4457. }
  4458. }
  4459. static bool get_upstream_work(struct work *work, CURL *curl)
  4460. {
  4461. struct pool *pool = work->pool;
  4462. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4463. struct timeval tv_elapsed;
  4464. json_t *val = NULL;
  4465. bool rc = false;
  4466. char *url;
  4467. enum pool_protocol proto;
  4468. char *rpc_req;
  4469. if (pool->proto == PLP_NONE)
  4470. pool->proto = PLP_GETBLOCKTEMPLATE;
  4471. tryagain:
  4472. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4473. work->pool = pool;
  4474. if (!rpc_req)
  4475. return false;
  4476. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4477. url = pool->rpc_url;
  4478. cgtime(&work->tv_getwork);
  4479. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4480. false, &work->rolltime, pool, false);
  4481. pool_stats->getwork_attempts++;
  4482. free(rpc_req);
  4483. if (likely(val)) {
  4484. rc = work_decode(pool, work, val);
  4485. if (unlikely(!rc))
  4486. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4487. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4488. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4489. pool->proto = proto;
  4490. goto tryagain;
  4491. } else
  4492. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4493. cgtime(&work->tv_getwork_reply);
  4494. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4495. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4496. pool_stats->getwork_wait_rolling /= 1.63;
  4497. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4498. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4499. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4500. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4501. }
  4502. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4503. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4504. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4505. }
  4506. pool_stats->getwork_calls++;
  4507. work->pool = pool;
  4508. work->longpoll = false;
  4509. calc_diff(work, 0);
  4510. total_getworks++;
  4511. pool->getwork_requested++;
  4512. if (rc)
  4513. update_last_work(work);
  4514. if (likely(val))
  4515. json_decref(val);
  4516. return rc;
  4517. }
  4518. #ifdef HAVE_CURSES
  4519. static void disable_curses(void)
  4520. {
  4521. if (curses_active_locked()) {
  4522. use_curses = false;
  4523. curses_active = false;
  4524. leaveok(logwin, false);
  4525. leaveok(statuswin, false);
  4526. leaveok(mainwin, false);
  4527. nocbreak();
  4528. echo();
  4529. delwin(logwin);
  4530. delwin(statuswin);
  4531. delwin(mainwin);
  4532. endwin();
  4533. #ifdef WIN32
  4534. // Move the cursor to after curses output.
  4535. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4536. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4537. COORD coord;
  4538. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4539. coord.X = 0;
  4540. coord.Y = csbi.dwSize.Y - 1;
  4541. SetConsoleCursorPosition(hout, coord);
  4542. }
  4543. #endif
  4544. unlock_curses();
  4545. }
  4546. }
  4547. #endif
  4548. static void __kill_work(void)
  4549. {
  4550. struct cgpu_info *cgpu;
  4551. struct thr_info *thr;
  4552. int i;
  4553. if (!successful_connect)
  4554. return;
  4555. applog(LOG_INFO, "Received kill message");
  4556. shutting_down = true;
  4557. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4558. notifier_wake(submit_waiting_notifier);
  4559. #ifdef USE_LIBMICROHTTPD
  4560. httpsrv_stop();
  4561. #endif
  4562. applog(LOG_DEBUG, "Killing off watchpool thread");
  4563. /* Kill the watchpool thread */
  4564. thr = &control_thr[watchpool_thr_id];
  4565. thr_info_cancel(thr);
  4566. applog(LOG_DEBUG, "Killing off watchdog thread");
  4567. /* Kill the watchdog thread */
  4568. thr = &control_thr[watchdog_thr_id];
  4569. thr_info_cancel(thr);
  4570. applog(LOG_DEBUG, "Shutting down mining threads");
  4571. for (i = 0; i < mining_threads; i++) {
  4572. thr = get_thread(i);
  4573. if (!thr)
  4574. continue;
  4575. cgpu = thr->cgpu;
  4576. if (!cgpu)
  4577. continue;
  4578. if (!cgpu->threads)
  4579. continue;
  4580. cgpu->shutdown = true;
  4581. thr->work_restart = true;
  4582. notifier_wake(thr->notifier);
  4583. notifier_wake(thr->work_restart_notifier);
  4584. }
  4585. sleep(1);
  4586. applog(LOG_DEBUG, "Killing off mining threads");
  4587. /* Kill the mining threads*/
  4588. for (i = 0; i < mining_threads; i++) {
  4589. thr = get_thread(i);
  4590. if (!thr)
  4591. continue;
  4592. cgpu = thr->cgpu;
  4593. if (cgpu->threads)
  4594. {
  4595. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4596. thr_info_cancel(thr);
  4597. }
  4598. cgpu->status = LIFE_DEAD2;
  4599. }
  4600. /* Stop the others */
  4601. applog(LOG_DEBUG, "Killing off API thread");
  4602. thr = &control_thr[api_thr_id];
  4603. thr_info_cancel(thr);
  4604. }
  4605. /* This should be the common exit path */
  4606. void kill_work(void)
  4607. {
  4608. __kill_work();
  4609. quit(0, "Shutdown signal received.");
  4610. }
  4611. static
  4612. #ifdef WIN32
  4613. #ifndef _WIN64
  4614. const
  4615. #endif
  4616. #endif
  4617. char **initial_args;
  4618. void _bfg_clean_up(bool);
  4619. void app_restart(void)
  4620. {
  4621. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4622. __kill_work();
  4623. _bfg_clean_up(true);
  4624. #if defined(unix) || defined(__APPLE__)
  4625. if (forkpid > 0) {
  4626. kill(forkpid, SIGTERM);
  4627. forkpid = 0;
  4628. }
  4629. #endif
  4630. execv(initial_args[0], initial_args);
  4631. applog(LOG_WARNING, "Failed to restart application");
  4632. }
  4633. static void sighandler(int __maybe_unused sig)
  4634. {
  4635. /* Restore signal handlers so we can still quit if kill_work fails */
  4636. sigaction(SIGTERM, &termhandler, NULL);
  4637. sigaction(SIGINT, &inthandler, NULL);
  4638. kill_work();
  4639. }
  4640. static void start_longpoll(void);
  4641. static void stop_longpoll(void);
  4642. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4643. * this pool. */
  4644. static void recruit_curl(struct pool *pool)
  4645. {
  4646. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4647. if (unlikely(!ce))
  4648. quit(1, "Failed to calloc in recruit_curl");
  4649. ce->curl = curl_easy_init();
  4650. if (unlikely(!ce->curl))
  4651. quit(1, "Failed to init in recruit_curl");
  4652. LL_PREPEND(pool->curllist, ce);
  4653. pool->curls++;
  4654. }
  4655. /* Grab an available curl if there is one. If not, then recruit extra curls
  4656. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4657. * and there are already 5 curls in circulation. Limit total number to the
  4658. * number of mining threads per pool as well to prevent blasting a pool during
  4659. * network delays/outages. */
  4660. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4661. {
  4662. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4663. bool recruited = false;
  4664. struct curl_ent *ce;
  4665. mutex_lock(&pool->pool_lock);
  4666. retry:
  4667. if (!pool->curls) {
  4668. recruit_curl(pool);
  4669. recruited = true;
  4670. } else if (!pool->curllist) {
  4671. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4672. if (!blocking) {
  4673. mutex_unlock(&pool->pool_lock);
  4674. return NULL;
  4675. }
  4676. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4677. goto retry;
  4678. } else {
  4679. recruit_curl(pool);
  4680. recruited = true;
  4681. }
  4682. }
  4683. ce = pool->curllist;
  4684. LL_DELETE(pool->curllist, ce);
  4685. mutex_unlock(&pool->pool_lock);
  4686. if (recruited)
  4687. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4688. return ce;
  4689. }
  4690. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4691. {
  4692. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4693. }
  4694. __maybe_unused
  4695. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4696. {
  4697. return pop_curl_entry3(pool, 1);
  4698. }
  4699. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4700. {
  4701. mutex_lock(&pool->pool_lock);
  4702. if (!ce || !ce->curl)
  4703. quithere(1, "Attempted to add NULL");
  4704. LL_PREPEND(pool->curllist, ce);
  4705. cgtime(&ce->tv);
  4706. pthread_cond_broadcast(&pool->cr_cond);
  4707. mutex_unlock(&pool->pool_lock);
  4708. }
  4709. bool stale_work(struct work *work, bool share);
  4710. static inline bool should_roll(struct work *work)
  4711. {
  4712. struct timeval now;
  4713. time_t expiry;
  4714. if (!pool_actively_in_use(work->pool, NULL))
  4715. return false;
  4716. if (stale_work(work, false))
  4717. return false;
  4718. if (work->rolltime > opt_scantime)
  4719. expiry = work->rolltime;
  4720. else
  4721. expiry = opt_scantime;
  4722. expiry = expiry * 2 / 3;
  4723. /* We shouldn't roll if we're unlikely to get one shares' duration
  4724. * work out of doing so */
  4725. cgtime(&now);
  4726. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4727. return false;
  4728. return true;
  4729. }
  4730. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4731. * reject blocks as invalid. */
  4732. static inline bool can_roll(struct work *work)
  4733. {
  4734. if (work->stratum)
  4735. return false;
  4736. if (!(work->pool && !work->clone))
  4737. return false;
  4738. if (work->tr)
  4739. {
  4740. if (stale_work(work, false))
  4741. return false;
  4742. return blkmk_work_left(work->tr->tmpl);
  4743. }
  4744. return (work->rolltime &&
  4745. work->rolls < 7000 && !stale_work(work, false));
  4746. }
  4747. static void roll_work(struct work *work)
  4748. {
  4749. if (work->tr)
  4750. {
  4751. struct timeval tv_now;
  4752. cgtime(&tv_now);
  4753. if (blkmk_get_data(work->tr->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4754. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4755. swap32yes(work->data, work->data, 80 / 4);
  4756. calc_midstate(work);
  4757. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4758. } else {
  4759. uint32_t *work_ntime;
  4760. uint32_t ntime;
  4761. work_ntime = (uint32_t *)(work->data + 68);
  4762. ntime = be32toh(*work_ntime);
  4763. ntime++;
  4764. *work_ntime = htobe32(ntime);
  4765. work_set_simple_ntime_roll_limit(work, 0);
  4766. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4767. }
  4768. local_work++;
  4769. work->rolls++;
  4770. work->blk.nonce = 0;
  4771. /* This is now a different work item so it needs a different ID for the
  4772. * hashtable */
  4773. work->id = total_work++;
  4774. }
  4775. /* Duplicates any dynamically allocated arrays within the work struct to
  4776. * prevent a copied work struct from freeing ram belonging to another struct */
  4777. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4778. {
  4779. int id = work->id;
  4780. clean_work(work);
  4781. memcpy(work, base_work, sizeof(struct work));
  4782. /* Keep the unique new id assigned during make_work to prevent copied
  4783. * work from having the same id. */
  4784. work->id = id;
  4785. if (base_work->job_id)
  4786. work->job_id = strdup(base_work->job_id);
  4787. if (base_work->nonce1)
  4788. work->nonce1 = strdup(base_work->nonce1);
  4789. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4790. if (base_work->tr)
  4791. tmpl_incref(base_work->tr);
  4792. if (noffset)
  4793. {
  4794. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4795. uint32_t ntime = be32toh(*work_ntime);
  4796. ntime += noffset;
  4797. *work_ntime = htobe32(ntime);
  4798. }
  4799. if (work->device_data_dup_func)
  4800. work->device_data = work->device_data_dup_func(work);
  4801. }
  4802. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4803. * for all dynamically allocated arrays within the struct */
  4804. struct work *copy_work(const struct work *base_work)
  4805. {
  4806. struct work *work = make_work();
  4807. _copy_work(work, base_work, 0);
  4808. return work;
  4809. }
  4810. void __copy_work(struct work *work, const struct work *base_work)
  4811. {
  4812. _copy_work(work, base_work, 0);
  4813. }
  4814. static struct work *make_clone(struct work *work)
  4815. {
  4816. struct work *work_clone = copy_work(work);
  4817. work_clone->clone = true;
  4818. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4819. work_clone->longpoll = false;
  4820. work_clone->mandatory = false;
  4821. /* Make cloned work appear slightly older to bias towards keeping the
  4822. * master work item which can be further rolled */
  4823. work_clone->tv_staged.tv_sec -= 1;
  4824. return work_clone;
  4825. }
  4826. static void stage_work(struct work *work);
  4827. static bool clone_available(void)
  4828. {
  4829. struct work *work_clone = NULL, *work, *tmp;
  4830. bool cloned = false;
  4831. mutex_lock(stgd_lock);
  4832. if (!staged_rollable)
  4833. goto out_unlock;
  4834. HASH_ITER(hh, staged_work, work, tmp) {
  4835. if (can_roll(work) && should_roll(work)) {
  4836. roll_work(work);
  4837. work_clone = make_clone(work);
  4838. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4839. roll_work(work);
  4840. cloned = true;
  4841. break;
  4842. }
  4843. }
  4844. out_unlock:
  4845. mutex_unlock(stgd_lock);
  4846. if (cloned) {
  4847. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4848. stage_work(work_clone);
  4849. }
  4850. return cloned;
  4851. }
  4852. static void pool_died(struct pool *pool)
  4853. {
  4854. if (!pool_tset(pool, &pool->idle)) {
  4855. cgtime(&pool->tv_idle);
  4856. if (pool == current_pool()) {
  4857. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4858. switch_pools(NULL);
  4859. } else
  4860. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4861. }
  4862. }
  4863. bool stale_work(struct work *work, bool share)
  4864. {
  4865. unsigned work_expiry;
  4866. struct pool *pool;
  4867. uint32_t block_id;
  4868. unsigned getwork_delay;
  4869. if (opt_benchmark)
  4870. return false;
  4871. block_id = ((uint32_t*)work->data)[1];
  4872. pool = work->pool;
  4873. /* Technically the rolltime should be correct but some pools
  4874. * advertise a broken expire= that is lower than a meaningful
  4875. * scantime */
  4876. if (work->rolltime >= opt_scantime || work->tr)
  4877. work_expiry = work->rolltime;
  4878. else
  4879. work_expiry = opt_expiry;
  4880. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4881. if (work_expiry > max_expiry)
  4882. work_expiry = max_expiry;
  4883. if (share) {
  4884. /* If the share isn't on this pool's latest block, it's stale */
  4885. if (pool->block_id && pool->block_id != block_id)
  4886. {
  4887. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4888. return true;
  4889. }
  4890. /* If the pool doesn't want old shares, then any found in work before
  4891. * the most recent longpoll is stale */
  4892. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4893. {
  4894. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4895. return true;
  4896. }
  4897. } else {
  4898. /* If this work isn't for the latest Bitcoin block, it's stale */
  4899. /* But only care about the current pool if failover-only */
  4900. if (enabled_pools <= 1 || opt_fail_only) {
  4901. if (pool->block_id && block_id != pool->block_id)
  4902. {
  4903. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4904. return true;
  4905. }
  4906. } else {
  4907. if (block_id != current_block_id)
  4908. {
  4909. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4910. return true;
  4911. }
  4912. }
  4913. /* If the pool has asked us to restart since this work, it's stale */
  4914. if (work->work_restart_id != pool->work_restart_id)
  4915. {
  4916. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4917. return true;
  4918. }
  4919. if (pool->has_stratum && work->job_id) {
  4920. bool same_job;
  4921. if (!pool->stratum_active || !pool->stratum_notify) {
  4922. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4923. return true;
  4924. }
  4925. same_job = true;
  4926. cg_rlock(&pool->data_lock);
  4927. if (strcmp(work->job_id, pool->swork.job_id))
  4928. same_job = false;
  4929. cg_runlock(&pool->data_lock);
  4930. if (!same_job) {
  4931. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4932. return true;
  4933. }
  4934. }
  4935. /* Factor in the average getwork delay of this pool, rounding it up to
  4936. * the nearest second */
  4937. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4938. if (unlikely(work_expiry <= getwork_delay + 5))
  4939. work_expiry = 5;
  4940. else
  4941. work_expiry -= getwork_delay;
  4942. }
  4943. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4944. if (elapsed_since_staged > work_expiry) {
  4945. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4946. return true;
  4947. }
  4948. /* If the user only wants strict failover, any work from a pool other than
  4949. * the current one is always considered stale */
  4950. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4951. {
  4952. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4953. return true;
  4954. }
  4955. return false;
  4956. }
  4957. static double share_diff(const struct work *work)
  4958. {
  4959. double ret;
  4960. bool new_best = false;
  4961. ret = target_diff(work->hash);
  4962. cg_wlock(&control_lock);
  4963. if (unlikely(ret > best_diff)) {
  4964. new_best = true;
  4965. best_diff = ret;
  4966. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4967. }
  4968. if (unlikely(ret > work->pool->best_diff))
  4969. work->pool->best_diff = ret;
  4970. cg_wunlock(&control_lock);
  4971. if (unlikely(new_best))
  4972. applog(LOG_INFO, "New best share: %s", best_share);
  4973. return ret;
  4974. }
  4975. static void regen_hash(struct work *work)
  4976. {
  4977. hash_data(work->hash, work->data);
  4978. }
  4979. static void rebuild_hash(struct work *work)
  4980. {
  4981. if (opt_scrypt)
  4982. scrypt_regenhash(work);
  4983. else
  4984. regen_hash(work);
  4985. work->share_diff = share_diff(work);
  4986. if (unlikely(work->share_diff >= current_diff)) {
  4987. work->block = true;
  4988. work->pool->solved++;
  4989. found_blocks++;
  4990. work->mandatory = true;
  4991. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4992. }
  4993. }
  4994. static void submit_discard_share2(const char *reason, struct work *work)
  4995. {
  4996. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4997. sharelog(reason, work);
  4998. mutex_lock(&stats_lock);
  4999. ++total_stale;
  5000. ++cgpu->stale;
  5001. ++(work->pool->stale_shares);
  5002. total_diff_stale += work->work_difficulty;
  5003. cgpu->diff_stale += work->work_difficulty;
  5004. work->pool->diff_stale += work->work_difficulty;
  5005. mutex_unlock(&stats_lock);
  5006. }
  5007. static void submit_discard_share(struct work *work)
  5008. {
  5009. submit_discard_share2("discard", work);
  5010. }
  5011. struct submit_work_state {
  5012. struct work *work;
  5013. bool resubmit;
  5014. struct curl_ent *ce;
  5015. int failures;
  5016. struct timeval tv_staleexpire;
  5017. char *s;
  5018. struct timeval tv_submit;
  5019. struct submit_work_state *next;
  5020. };
  5021. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  5022. {
  5023. long *p_timeout_us = userp;
  5024. const long max_ms = LONG_MAX / 1000;
  5025. if (max_ms < timeout_ms)
  5026. timeout_ms = max_ms;
  5027. *p_timeout_us = timeout_ms * 1000;
  5028. return 0;
  5029. }
  5030. static void sws_has_ce(struct submit_work_state *sws)
  5031. {
  5032. struct pool *pool = sws->work->pool;
  5033. sws->s = submit_upstream_work_request(sws->work);
  5034. cgtime(&sws->tv_submit);
  5035. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5036. }
  5037. static struct submit_work_state *begin_submission(struct work *work)
  5038. {
  5039. struct pool *pool;
  5040. struct submit_work_state *sws = NULL;
  5041. pool = work->pool;
  5042. sws = malloc(sizeof(*sws));
  5043. *sws = (struct submit_work_state){
  5044. .work = work,
  5045. };
  5046. rebuild_hash(work);
  5047. if (stale_work(work, true)) {
  5048. work->stale = true;
  5049. if (opt_submit_stale)
  5050. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  5051. else if (pool->submit_old)
  5052. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  5053. else {
  5054. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  5055. submit_discard_share(work);
  5056. goto out;
  5057. }
  5058. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5059. }
  5060. if (work->stratum) {
  5061. char *s;
  5062. s = malloc(1024);
  5063. sws->s = s;
  5064. } else {
  5065. /* submit solution to bitcoin via JSON-RPC */
  5066. sws->ce = pop_curl_entry2(pool, false);
  5067. if (sws->ce) {
  5068. sws_has_ce(sws);
  5069. } else {
  5070. sws->next = pool->sws_waiting_on_curl;
  5071. pool->sws_waiting_on_curl = sws;
  5072. if (sws->next)
  5073. applog(LOG_DEBUG, "submit_thread queuing submission");
  5074. else
  5075. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  5076. }
  5077. }
  5078. return sws;
  5079. out:
  5080. free(sws);
  5081. return NULL;
  5082. }
  5083. static bool retry_submission(struct submit_work_state *sws)
  5084. {
  5085. struct work *work = sws->work;
  5086. struct pool *pool = work->pool;
  5087. sws->resubmit = true;
  5088. if ((!work->stale) && stale_work(work, true)) {
  5089. work->stale = true;
  5090. if (opt_submit_stale)
  5091. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  5092. else if (pool->submit_old)
  5093. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  5094. else {
  5095. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  5096. submit_discard_share(work);
  5097. return false;
  5098. }
  5099. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5100. }
  5101. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  5102. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  5103. submit_discard_share(work);
  5104. return false;
  5105. }
  5106. else if (work->stale) {
  5107. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  5108. {
  5109. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  5110. submit_discard_share(work);
  5111. return false;
  5112. }
  5113. }
  5114. /* pause, then restart work-request loop */
  5115. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  5116. cgtime(&sws->tv_submit);
  5117. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5118. return true;
  5119. }
  5120. static void free_sws(struct submit_work_state *sws)
  5121. {
  5122. free(sws->s);
  5123. free_work(sws->work);
  5124. free(sws);
  5125. }
  5126. static void *submit_work_thread(__maybe_unused void *userdata)
  5127. {
  5128. int wip = 0;
  5129. CURLM *curlm;
  5130. long curlm_timeout_us = -1;
  5131. struct timeval curlm_timer;
  5132. struct submit_work_state *sws, **swsp;
  5133. struct submit_work_state *write_sws = NULL;
  5134. unsigned tsreduce = 0;
  5135. pthread_detach(pthread_self());
  5136. RenameThread("submit_work");
  5137. applog(LOG_DEBUG, "Creating extra submit work thread");
  5138. curlm = curl_multi_init();
  5139. curlm_timeout_us = -1;
  5140. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5141. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5142. fd_set rfds, wfds, efds;
  5143. int maxfd;
  5144. struct timeval tv_timeout, tv_now;
  5145. int n;
  5146. CURLMsg *cm;
  5147. FD_ZERO(&rfds);
  5148. while (1) {
  5149. mutex_lock(&submitting_lock);
  5150. total_submitting -= tsreduce;
  5151. tsreduce = 0;
  5152. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5153. notifier_read(submit_waiting_notifier);
  5154. }
  5155. // Receive any new submissions
  5156. while (submit_waiting) {
  5157. struct work *work = submit_waiting;
  5158. DL_DELETE(submit_waiting, work);
  5159. if ( (sws = begin_submission(work)) ) {
  5160. if (sws->ce)
  5161. curl_multi_add_handle(curlm, sws->ce->curl);
  5162. else if (sws->s) {
  5163. sws->next = write_sws;
  5164. write_sws = sws;
  5165. }
  5166. ++wip;
  5167. }
  5168. else {
  5169. --total_submitting;
  5170. free_work(work);
  5171. }
  5172. }
  5173. if (unlikely(shutting_down && !wip))
  5174. break;
  5175. mutex_unlock(&submitting_lock);
  5176. FD_ZERO(&rfds);
  5177. FD_ZERO(&wfds);
  5178. FD_ZERO(&efds);
  5179. tv_timeout.tv_sec = -1;
  5180. // Setup cURL with select
  5181. // Need to call perform to ensure the timeout gets updated
  5182. curl_multi_perform(curlm, &n);
  5183. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5184. if (curlm_timeout_us >= 0)
  5185. {
  5186. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5187. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5188. }
  5189. // Setup waiting stratum submissions with select
  5190. for (sws = write_sws; sws; sws = sws->next)
  5191. {
  5192. struct pool *pool = sws->work->pool;
  5193. int fd = pool->sock;
  5194. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5195. continue;
  5196. FD_SET(fd, &wfds);
  5197. set_maxfd(&maxfd, fd);
  5198. }
  5199. // Setup "submit waiting" notifier with select
  5200. FD_SET(submit_waiting_notifier[0], &rfds);
  5201. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5202. // Wait for something interesting to happen :)
  5203. cgtime(&tv_now);
  5204. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5205. FD_ZERO(&rfds);
  5206. continue;
  5207. }
  5208. // Handle any stratum ready-to-write results
  5209. for (swsp = &write_sws; (sws = *swsp); ) {
  5210. struct work *work = sws->work;
  5211. struct pool *pool = work->pool;
  5212. int fd = pool->sock;
  5213. bool sessionid_match;
  5214. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5215. next_write_sws:
  5216. // TODO: Check if stale, possibly discard etc
  5217. swsp = &sws->next;
  5218. continue;
  5219. }
  5220. cg_rlock(&pool->data_lock);
  5221. // 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
  5222. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5223. sessionid_match = (!pool->swork.nonce1) || !strcmp(work->nonce1, pool->swork.nonce1);
  5224. cg_runlock(&pool->data_lock);
  5225. if (!sessionid_match)
  5226. {
  5227. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5228. submit_discard_share2("disconnect", work);
  5229. ++tsreduce;
  5230. next_write_sws_del:
  5231. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5232. FD_CLR(fd, &wfds);
  5233. // Delete sws for this submission, since we're done with it
  5234. *swsp = sws->next;
  5235. free_sws(sws);
  5236. --wip;
  5237. continue;
  5238. }
  5239. char *s = sws->s;
  5240. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5241. int sshare_id;
  5242. uint32_t nonce;
  5243. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5244. char noncehex[9];
  5245. char ntimehex[9];
  5246. sshare->work = copy_work(work);
  5247. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5248. nonce = *((uint32_t *)(work->data + 76));
  5249. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5250. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5251. mutex_lock(&sshare_lock);
  5252. /* Give the stratum share a unique id */
  5253. sshare_id =
  5254. sshare->id = swork_id++;
  5255. HASH_ADD_INT(stratum_shares, id, sshare);
  5256. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5257. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5258. mutex_unlock(&sshare_lock);
  5259. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5260. if (likely(stratum_send(pool, s, strlen(s)))) {
  5261. if (pool_tclear(pool, &pool->submit_fail))
  5262. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5263. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5264. goto next_write_sws_del;
  5265. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5266. // Undo stuff
  5267. mutex_lock(&sshare_lock);
  5268. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5269. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5270. if (sshare)
  5271. HASH_DEL(stratum_shares, sshare);
  5272. mutex_unlock(&sshare_lock);
  5273. if (sshare)
  5274. {
  5275. free_work(sshare->work);
  5276. free(sshare);
  5277. }
  5278. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5279. total_ro++;
  5280. pool->remotefail_occasions++;
  5281. if (!sshare)
  5282. goto next_write_sws_del;
  5283. goto next_write_sws;
  5284. }
  5285. }
  5286. // Handle any cURL activities
  5287. curl_multi_perform(curlm, &n);
  5288. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5289. if (cm->msg == CURLMSG_DONE)
  5290. {
  5291. bool finished;
  5292. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5293. curl_multi_remove_handle(curlm, cm->easy_handle);
  5294. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5295. if (!finished) {
  5296. if (retry_submission(sws))
  5297. curl_multi_add_handle(curlm, sws->ce->curl);
  5298. else
  5299. finished = true;
  5300. }
  5301. if (finished) {
  5302. --wip;
  5303. ++tsreduce;
  5304. struct pool *pool = sws->work->pool;
  5305. if (pool->sws_waiting_on_curl) {
  5306. pool->sws_waiting_on_curl->ce = sws->ce;
  5307. sws_has_ce(pool->sws_waiting_on_curl);
  5308. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5309. curl_multi_add_handle(curlm, sws->ce->curl);
  5310. } else {
  5311. push_curl_entry(sws->ce, sws->work->pool);
  5312. }
  5313. free_sws(sws);
  5314. }
  5315. }
  5316. }
  5317. }
  5318. assert(!write_sws);
  5319. mutex_unlock(&submitting_lock);
  5320. curl_multi_cleanup(curlm);
  5321. applog(LOG_DEBUG, "submit_work thread exiting");
  5322. return NULL;
  5323. }
  5324. /* Find the pool that currently has the highest priority */
  5325. static struct pool *priority_pool(int choice)
  5326. {
  5327. struct pool *ret = NULL;
  5328. int i;
  5329. for (i = 0; i < total_pools; i++) {
  5330. struct pool *pool = pools[i];
  5331. if (pool->prio == choice) {
  5332. ret = pool;
  5333. break;
  5334. }
  5335. }
  5336. if (unlikely(!ret)) {
  5337. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5338. return pools[choice];
  5339. }
  5340. return ret;
  5341. }
  5342. int prioritize_pools(char *param, int *pid)
  5343. {
  5344. char *ptr, *next;
  5345. int i, pr, prio = 0;
  5346. if (total_pools == 0) {
  5347. return MSG_NOPOOL;
  5348. }
  5349. if (param == NULL || *param == '\0') {
  5350. return MSG_MISPID;
  5351. }
  5352. bool pools_changed[total_pools];
  5353. int new_prio[total_pools];
  5354. for (i = 0; i < total_pools; ++i)
  5355. pools_changed[i] = false;
  5356. next = param;
  5357. while (next && *next) {
  5358. ptr = next;
  5359. next = strchr(ptr, ',');
  5360. if (next)
  5361. *(next++) = '\0';
  5362. i = atoi(ptr);
  5363. if (i < 0 || i >= total_pools) {
  5364. *pid = i;
  5365. return MSG_INVPID;
  5366. }
  5367. if (pools_changed[i]) {
  5368. *pid = i;
  5369. return MSG_DUPPID;
  5370. }
  5371. pools_changed[i] = true;
  5372. new_prio[i] = prio++;
  5373. }
  5374. // Only change them if no errors
  5375. for (i = 0; i < total_pools; i++) {
  5376. if (pools_changed[i])
  5377. pools[i]->prio = new_prio[i];
  5378. }
  5379. // In priority order, cycle through the unchanged pools and append them
  5380. for (pr = 0; pr < total_pools; pr++)
  5381. for (i = 0; i < total_pools; i++) {
  5382. if (!pools_changed[i] && pools[i]->prio == pr) {
  5383. pools[i]->prio = prio++;
  5384. pools_changed[i] = true;
  5385. break;
  5386. }
  5387. }
  5388. if (current_pool()->prio)
  5389. switch_pools(NULL);
  5390. return MSG_POOLPRIO;
  5391. }
  5392. void validate_pool_priorities(void)
  5393. {
  5394. // TODO: this should probably do some sort of logging
  5395. int i, j;
  5396. bool used[total_pools];
  5397. bool valid[total_pools];
  5398. for (i = 0; i < total_pools; i++)
  5399. used[i] = valid[i] = false;
  5400. for (i = 0; i < total_pools; i++) {
  5401. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5402. if (!used[pools[i]->prio]) {
  5403. valid[i] = true;
  5404. used[pools[i]->prio] = true;
  5405. }
  5406. }
  5407. }
  5408. for (i = 0; i < total_pools; i++) {
  5409. if (!valid[i]) {
  5410. for (j = 0; j < total_pools; j++) {
  5411. if (!used[j]) {
  5412. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5413. pools[i]->prio = j;
  5414. used[j] = true;
  5415. break;
  5416. }
  5417. }
  5418. }
  5419. }
  5420. }
  5421. static void clear_pool_work(struct pool *pool);
  5422. /* Specifies whether we can switch to this pool or not. */
  5423. static bool pool_unusable(struct pool *pool)
  5424. {
  5425. if (pool->idle)
  5426. return true;
  5427. if (pool->enabled != POOL_ENABLED)
  5428. return true;
  5429. return false;
  5430. }
  5431. void switch_pools(struct pool *selected)
  5432. {
  5433. struct pool *pool, *last_pool;
  5434. int i, pool_no, next_pool;
  5435. cg_wlock(&control_lock);
  5436. last_pool = currentpool;
  5437. pool_no = currentpool->pool_no;
  5438. /* Switch selected to pool number 0 and move the rest down */
  5439. if (selected) {
  5440. if (selected->prio != 0) {
  5441. for (i = 0; i < total_pools; i++) {
  5442. pool = pools[i];
  5443. if (pool->prio < selected->prio)
  5444. pool->prio++;
  5445. }
  5446. selected->prio = 0;
  5447. }
  5448. }
  5449. switch (pool_strategy) {
  5450. /* All of these set to the master pool */
  5451. case POOL_BALANCE:
  5452. case POOL_FAILOVER:
  5453. case POOL_LOADBALANCE:
  5454. for (i = 0; i < total_pools; i++) {
  5455. pool = priority_pool(i);
  5456. if (pool_unusable(pool))
  5457. continue;
  5458. pool_no = pool->pool_no;
  5459. break;
  5460. }
  5461. break;
  5462. /* Both of these simply increment and cycle */
  5463. case POOL_ROUNDROBIN:
  5464. case POOL_ROTATE:
  5465. if (selected && !selected->idle) {
  5466. pool_no = selected->pool_no;
  5467. break;
  5468. }
  5469. next_pool = pool_no;
  5470. /* Select the next alive pool */
  5471. for (i = 1; i < total_pools; i++) {
  5472. next_pool++;
  5473. if (next_pool >= total_pools)
  5474. next_pool = 0;
  5475. pool = pools[next_pool];
  5476. if (pool_unusable(pool))
  5477. continue;
  5478. pool_no = next_pool;
  5479. break;
  5480. }
  5481. break;
  5482. default:
  5483. break;
  5484. }
  5485. currentpool = pools[pool_no];
  5486. pool = currentpool;
  5487. cg_wunlock(&control_lock);
  5488. /* Set the lagging flag to avoid pool not providing work fast enough
  5489. * messages in failover only mode since we have to get all fresh work
  5490. * as in restart_threads */
  5491. if (opt_fail_only)
  5492. pool_tset(pool, &pool->lagging);
  5493. if (pool != last_pool)
  5494. {
  5495. pool->block_id = 0;
  5496. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5497. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5498. if (pool_localgen(pool) || opt_fail_only)
  5499. clear_pool_work(last_pool);
  5500. }
  5501. }
  5502. mutex_lock(&lp_lock);
  5503. pthread_cond_broadcast(&lp_cond);
  5504. mutex_unlock(&lp_lock);
  5505. }
  5506. static void discard_work(struct work *work)
  5507. {
  5508. if (!work->clone && !work->rolls && !work->mined) {
  5509. if (work->pool) {
  5510. work->pool->discarded_work++;
  5511. work->pool->quota_used--;
  5512. work->pool->works--;
  5513. }
  5514. total_discarded++;
  5515. applog(LOG_DEBUG, "Discarded work");
  5516. } else
  5517. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5518. free_work(work);
  5519. }
  5520. static void wake_gws(void)
  5521. {
  5522. mutex_lock(stgd_lock);
  5523. pthread_cond_signal(&gws_cond);
  5524. mutex_unlock(stgd_lock);
  5525. }
  5526. static void discard_stale(void)
  5527. {
  5528. struct work *work, *tmp;
  5529. int stale = 0;
  5530. mutex_lock(stgd_lock);
  5531. HASH_ITER(hh, staged_work, work, tmp) {
  5532. if (stale_work(work, false)) {
  5533. HASH_DEL(staged_work, work);
  5534. discard_work(work);
  5535. stale++;
  5536. staged_full = false;
  5537. }
  5538. }
  5539. pthread_cond_signal(&gws_cond);
  5540. mutex_unlock(stgd_lock);
  5541. if (stale)
  5542. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5543. }
  5544. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5545. {
  5546. bool rv;
  5547. struct timeval tv, orig;
  5548. ldiv_t d;
  5549. d = ldiv(ustime, 1000000);
  5550. tv = (struct timeval){
  5551. .tv_sec = d.quot,
  5552. .tv_usec = d.rem,
  5553. };
  5554. orig = work->tv_staged;
  5555. timersub(&orig, &tv, &work->tv_staged);
  5556. rv = stale_work(work, share);
  5557. work->tv_staged = orig;
  5558. return rv;
  5559. }
  5560. static
  5561. void pool_update_work_restart_time(struct pool * const pool)
  5562. {
  5563. pool->work_restart_time = time(NULL);
  5564. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5565. }
  5566. static void restart_threads(void)
  5567. {
  5568. struct pool *cp = current_pool();
  5569. int i;
  5570. struct thr_info *thr;
  5571. /* Artificially set the lagging flag to avoid pool not providing work
  5572. * fast enough messages after every long poll */
  5573. pool_tset(cp, &cp->lagging);
  5574. /* Discard staged work that is now stale */
  5575. discard_stale();
  5576. rd_lock(&mining_thr_lock);
  5577. for (i = 0; i < mining_threads; i++)
  5578. {
  5579. thr = mining_thr[i];
  5580. thr->work_restart = true;
  5581. }
  5582. for (i = 0; i < mining_threads; i++)
  5583. {
  5584. thr = mining_thr[i];
  5585. notifier_wake(thr->work_restart_notifier);
  5586. }
  5587. rd_unlock(&mining_thr_lock);
  5588. }
  5589. static
  5590. void blkhashstr(char *rv, const unsigned char *hash)
  5591. {
  5592. unsigned char hash_swap[32];
  5593. swap256(hash_swap, hash);
  5594. swap32tole(hash_swap, hash_swap, 32 / 4);
  5595. bin2hex(rv, hash_swap, 32);
  5596. }
  5597. static void set_curblock(char *hexstr, unsigned char *hash)
  5598. {
  5599. unsigned char hash_swap[32];
  5600. current_block_id = ((uint32_t*)hash)[0];
  5601. strcpy(current_block, hexstr);
  5602. swap256(hash_swap, hash);
  5603. swap32tole(hash_swap, hash_swap, 32 / 4);
  5604. cg_wlock(&ch_lock);
  5605. block_time = time(NULL);
  5606. __update_block_title(hash_swap);
  5607. free(current_fullhash);
  5608. current_fullhash = malloc(65);
  5609. bin2hex(current_fullhash, hash_swap, 32);
  5610. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5611. cg_wunlock(&ch_lock);
  5612. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5613. }
  5614. /* Search to see if this string is from a block that has been seen before */
  5615. static bool block_exists(char *hexstr)
  5616. {
  5617. struct block *s;
  5618. rd_lock(&blk_lock);
  5619. HASH_FIND_STR(blocks, hexstr, s);
  5620. rd_unlock(&blk_lock);
  5621. if (s)
  5622. return true;
  5623. return false;
  5624. }
  5625. #if 0
  5626. /* Tests if this work is from a block that has been seen before */
  5627. static inline bool from_existing_block(struct work *work)
  5628. {
  5629. char hexstr[37];
  5630. bool ret;
  5631. bin2hex(hexstr, work->data + 8, 18);
  5632. ret = block_exists(hexstr);
  5633. return ret;
  5634. }
  5635. #endif
  5636. static int block_sort(struct block *blocka, struct block *blockb)
  5637. {
  5638. return blocka->block_no - blockb->block_no;
  5639. }
  5640. static void set_blockdiff(const struct work *work)
  5641. {
  5642. unsigned char target[32];
  5643. double diff;
  5644. uint64_t diff64;
  5645. real_block_target(target, work->data);
  5646. diff = target_diff(target);
  5647. diff64 = diff;
  5648. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5649. format_unit2(net_hashrate, sizeof(net_hashrate),
  5650. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5651. if (unlikely(current_diff != diff))
  5652. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5653. current_diff = diff;
  5654. }
  5655. static bool test_work_current(struct work *work)
  5656. {
  5657. bool ret = true;
  5658. char hexstr[65];
  5659. if (work->mandatory)
  5660. return ret;
  5661. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5662. /* Hack to work around dud work sneaking into test */
  5663. bin2hex(hexstr, work->data + 8, 18);
  5664. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5665. goto out_free;
  5666. struct pool * const pool = work->pool;
  5667. /* Search to see if this block exists yet and if not, consider it a
  5668. * new block and set the current block details to this one */
  5669. if (!block_exists(hexstr))
  5670. {
  5671. struct block *s = calloc(sizeof(struct block), 1);
  5672. int deleted_block = 0;
  5673. ret = false;
  5674. if (unlikely(!s))
  5675. quit (1, "test_work_current OOM");
  5676. strcpy(s->hash, hexstr);
  5677. s->block_no = new_blocks++;
  5678. wr_lock(&blk_lock);
  5679. /* Only keep the last hour's worth of blocks in memory since
  5680. * work from blocks before this is virtually impossible and we
  5681. * want to prevent memory usage from continually rising */
  5682. if (HASH_COUNT(blocks) > 6)
  5683. {
  5684. struct block *oldblock;
  5685. HASH_SORT(blocks, block_sort);
  5686. oldblock = blocks;
  5687. deleted_block = oldblock->block_no;
  5688. HASH_DEL(blocks, oldblock);
  5689. free(oldblock);
  5690. }
  5691. HASH_ADD_STR(blocks, hash, s);
  5692. set_blockdiff(work);
  5693. wr_unlock(&blk_lock);
  5694. pool->block_id = block_id;
  5695. pool_update_work_restart_time(pool);
  5696. if (deleted_block)
  5697. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5698. #if BLKMAKER_VERSION > 1
  5699. template_nonce = 0;
  5700. #endif
  5701. set_curblock(hexstr, &work->data[4]);
  5702. if (unlikely(new_blocks == 1))
  5703. goto out_free;
  5704. if (!work->stratum)
  5705. {
  5706. if (work->longpoll)
  5707. {
  5708. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5709. pool->pool_no);
  5710. }
  5711. else
  5712. if (have_longpoll)
  5713. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5714. else
  5715. applog(LOG_NOTICE, "New block detected on network");
  5716. }
  5717. restart_threads();
  5718. }
  5719. else
  5720. {
  5721. bool restart = false;
  5722. if (unlikely(pool->block_id != block_id))
  5723. {
  5724. bool was_active = pool->block_id != 0;
  5725. pool->block_id = block_id;
  5726. pool_update_work_restart_time(pool);
  5727. if (!work->longpoll)
  5728. update_last_work(work);
  5729. if (was_active)
  5730. {
  5731. // Pool actively changed block
  5732. if (pool == current_pool())
  5733. restart = true;
  5734. if (block_id == current_block_id)
  5735. {
  5736. // Caught up, only announce if this pool is the one in use
  5737. if (restart)
  5738. applog(LOG_NOTICE, "%s %d caught up to new block",
  5739. work->longpoll ? "Longpoll from pool" : "Pool",
  5740. pool->pool_no);
  5741. }
  5742. else
  5743. {
  5744. // Switched to a block we know, but not the latest... why?
  5745. // This might detect pools trying to double-spend or 51%,
  5746. // but let's not make any accusations until it's had time
  5747. // in the real world.
  5748. blkhashstr(hexstr, &work->data[4]);
  5749. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5750. work->longpoll ? "Longpoll from pool" : "Pool",
  5751. pool->pool_no,
  5752. hexstr);
  5753. }
  5754. }
  5755. }
  5756. if (work->longpoll)
  5757. {
  5758. struct pool * const cp = current_pool();
  5759. ++pool->work_restart_id;
  5760. if (work->tr && work->tr == pool->swork.tr)
  5761. pool->swork.work_restart_id = pool->work_restart_id;
  5762. update_last_work(work);
  5763. pool_update_work_restart_time(pool);
  5764. applog(
  5765. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5766. "Longpoll from pool %d requested work update",
  5767. pool->pool_no);
  5768. if ((!restart) && pool == cp)
  5769. restart = true;
  5770. }
  5771. if (restart)
  5772. restart_threads();
  5773. }
  5774. work->longpoll = false;
  5775. out_free:
  5776. return ret;
  5777. }
  5778. static int tv_sort(struct work *worka, struct work *workb)
  5779. {
  5780. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5781. }
  5782. static bool work_rollable(struct work *work)
  5783. {
  5784. return (!work->clone && work->rolltime);
  5785. }
  5786. static bool hash_push(struct work *work)
  5787. {
  5788. bool rc = true;
  5789. mutex_lock(stgd_lock);
  5790. if (work_rollable(work))
  5791. staged_rollable++;
  5792. if (likely(!getq->frozen)) {
  5793. HASH_ADD_INT(staged_work, id, work);
  5794. HASH_SORT(staged_work, tv_sort);
  5795. } else
  5796. rc = false;
  5797. pthread_cond_broadcast(&getq->cond);
  5798. mutex_unlock(stgd_lock);
  5799. return rc;
  5800. }
  5801. static void stage_work(struct work *work)
  5802. {
  5803. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5804. work->id, work->pool->pool_no);
  5805. work->work_restart_id = work->pool->work_restart_id;
  5806. work->pool->last_work_time = time(NULL);
  5807. cgtime(&work->pool->tv_last_work_time);
  5808. test_work_current(work);
  5809. work->pool->works++;
  5810. hash_push(work);
  5811. }
  5812. #ifdef HAVE_CURSES
  5813. int curses_int(const char *query)
  5814. {
  5815. int ret;
  5816. char *cvar;
  5817. cvar = curses_input(query);
  5818. if (unlikely(!cvar))
  5819. return -1;
  5820. ret = atoi(cvar);
  5821. free(cvar);
  5822. return ret;
  5823. }
  5824. #endif
  5825. #ifdef HAVE_CURSES
  5826. static bool input_pool(bool live);
  5827. #endif
  5828. #ifdef HAVE_CURSES
  5829. static void display_pool_summary(struct pool *pool)
  5830. {
  5831. double efficiency = 0.0;
  5832. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5833. int pool_secs;
  5834. if (curses_active_locked()) {
  5835. wlog("Pool: %s\n", pool->rpc_url);
  5836. if (pool->solved)
  5837. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5838. if (!pool->has_stratum)
  5839. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5840. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5841. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5842. wlog(" Accepted shares: %d\n", pool->accepted);
  5843. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5844. pool->rejected, pool->stale_shares,
  5845. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5846. );
  5847. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5848. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5849. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5850. wlog(" Network transfer: %s (%s)\n",
  5851. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5852. (float)pool->cgminer_pool_stats.net_bytes_received,
  5853. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5854. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5855. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5856. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5857. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5858. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5859. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5860. wlog(" Items worked on: %d\n", pool->works);
  5861. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5862. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5863. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5864. unlock_curses();
  5865. }
  5866. }
  5867. #endif
  5868. /* We can't remove the memory used for this struct pool because there may
  5869. * still be work referencing it. We just remove it from the pools list */
  5870. void remove_pool(struct pool *pool)
  5871. {
  5872. int i, last_pool = total_pools - 1;
  5873. struct pool *other;
  5874. /* Boost priority of any lower prio than this one */
  5875. for (i = 0; i < total_pools; i++) {
  5876. other = pools[i];
  5877. if (other->prio > pool->prio)
  5878. other->prio--;
  5879. }
  5880. if (pool->pool_no < last_pool) {
  5881. /* Swap the last pool for this one */
  5882. (pools[last_pool])->pool_no = pool->pool_no;
  5883. pools[pool->pool_no] = pools[last_pool];
  5884. }
  5885. /* Give it an invalid number */
  5886. pool->pool_no = total_pools;
  5887. pool->removed = true;
  5888. pool->has_stratum = false;
  5889. total_pools--;
  5890. }
  5891. /* add a mutex if this needs to be thread safe in the future */
  5892. static struct JE {
  5893. char *buf;
  5894. struct JE *next;
  5895. } *jedata = NULL;
  5896. static void json_escape_free()
  5897. {
  5898. struct JE *jeptr = jedata;
  5899. struct JE *jenext;
  5900. jedata = NULL;
  5901. while (jeptr) {
  5902. jenext = jeptr->next;
  5903. free(jeptr->buf);
  5904. free(jeptr);
  5905. jeptr = jenext;
  5906. }
  5907. }
  5908. static
  5909. char *json_escape(const char *str)
  5910. {
  5911. struct JE *jeptr;
  5912. char *buf, *ptr;
  5913. /* 2x is the max, may as well just allocate that */
  5914. ptr = buf = malloc(strlen(str) * 2 + 1);
  5915. jeptr = malloc(sizeof(*jeptr));
  5916. jeptr->buf = buf;
  5917. jeptr->next = jedata;
  5918. jedata = jeptr;
  5919. while (*str) {
  5920. if (*str == '\\' || *str == '"')
  5921. *(ptr++) = '\\';
  5922. *(ptr++) = *(str++);
  5923. }
  5924. *ptr = '\0';
  5925. return buf;
  5926. }
  5927. static
  5928. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5929. {
  5930. if (!elist)
  5931. return;
  5932. static struct string_elist *entry;
  5933. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5934. bool first = true;
  5935. DL_FOREACH(elist, entry)
  5936. {
  5937. const char * const s = entry->string;
  5938. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5939. first = false;
  5940. }
  5941. fprintf(fcfg, "\n]");
  5942. }
  5943. void write_config(FILE *fcfg)
  5944. {
  5945. int i;
  5946. /* Write pool values */
  5947. fputs("{\n\"pools\" : [", fcfg);
  5948. for(i = 0; i < total_pools; i++) {
  5949. struct pool *pool = pools[i];
  5950. if (pool->quota != 1) {
  5951. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5952. pool->quota,
  5953. json_escape(pool->rpc_url));
  5954. } else {
  5955. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5956. json_escape(pool->rpc_url));
  5957. }
  5958. if (pool->rpc_proxy)
  5959. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5960. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5961. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5962. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5963. if (pool->force_rollntime)
  5964. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5965. fprintf(fcfg, "\n\t}");
  5966. }
  5967. fputs("\n]\n", fcfg);
  5968. #ifdef HAVE_OPENCL
  5969. write_config_opencl(fcfg);
  5970. #endif
  5971. #ifdef WANT_CPUMINE
  5972. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5973. #endif
  5974. /* Simple bool and int options */
  5975. struct opt_table *opt;
  5976. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5977. char *p, *name = strdup(opt->names);
  5978. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5979. if (p[1] != '-')
  5980. continue;
  5981. if (opt->type & OPT_NOARG &&
  5982. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5983. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5984. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5985. if (opt->type & OPT_HASARG &&
  5986. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5987. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5988. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5989. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5990. opt->desc != opt_hidden &&
  5991. 0 <= *(int *)opt->u.arg)
  5992. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5993. }
  5994. }
  5995. /* Special case options */
  5996. if (request_target_str)
  5997. {
  5998. if (request_pdiff == (long)request_pdiff)
  5999. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  6000. else
  6001. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  6002. }
  6003. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  6004. if (pool_strategy == POOL_BALANCE)
  6005. fputs(",\n\"balance\" : true", fcfg);
  6006. if (pool_strategy == POOL_LOADBALANCE)
  6007. fputs(",\n\"load-balance\" : true", fcfg);
  6008. if (pool_strategy == POOL_ROUNDROBIN)
  6009. fputs(",\n\"round-robin\" : true", fcfg);
  6010. if (pool_strategy == POOL_ROTATE)
  6011. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  6012. #if defined(unix) || defined(__APPLE__)
  6013. if (opt_stderr_cmd && *opt_stderr_cmd)
  6014. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  6015. #endif // defined(unix)
  6016. if (opt_kernel_path && *opt_kernel_path) {
  6017. char *kpath = strdup(opt_kernel_path);
  6018. if (kpath[strlen(kpath)-1] == '/')
  6019. kpath[strlen(kpath)-1] = 0;
  6020. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  6021. free(kpath);
  6022. }
  6023. if (schedstart.enable)
  6024. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  6025. if (schedstop.enable)
  6026. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  6027. if (opt_socks_proxy && *opt_socks_proxy)
  6028. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  6029. _write_config_string_elist(fcfg, "scan", scan_devices);
  6030. #ifdef USE_LIBMICROHTTPD
  6031. if (httpsrv_port != -1)
  6032. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  6033. #endif
  6034. #ifdef USE_LIBEVENT
  6035. if (stratumsrv_port != -1)
  6036. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  6037. #endif
  6038. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  6039. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  6040. if (opt_api_allow)
  6041. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  6042. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  6043. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  6044. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  6045. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  6046. if (*opt_api_mcast_des)
  6047. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  6048. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  6049. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  6050. if (opt_api_groups)
  6051. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  6052. fputs("\n}\n", fcfg);
  6053. json_escape_free();
  6054. }
  6055. void zero_bestshare(void)
  6056. {
  6057. int i;
  6058. best_diff = 0;
  6059. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  6060. for (i = 0; i < total_pools; i++) {
  6061. struct pool *pool = pools[i];
  6062. pool->best_diff = 0;
  6063. }
  6064. }
  6065. void zero_stats(void)
  6066. {
  6067. int i;
  6068. applog(LOG_DEBUG, "Zeroing stats");
  6069. cgtime(&total_tv_start);
  6070. miner_started = total_tv_start;
  6071. total_rolling = 0;
  6072. total_mhashes_done = 0;
  6073. total_getworks = 0;
  6074. total_accepted = 0;
  6075. total_rejected = 0;
  6076. hw_errors = 0;
  6077. total_stale = 0;
  6078. total_discarded = 0;
  6079. total_bytes_rcvd = total_bytes_sent = 0;
  6080. new_blocks = 0;
  6081. local_work = 0;
  6082. total_go = 0;
  6083. total_ro = 0;
  6084. total_secs = 1.0;
  6085. total_diff1 = 0;
  6086. total_bad_diff1 = 0;
  6087. found_blocks = 0;
  6088. total_diff_accepted = 0;
  6089. total_diff_rejected = 0;
  6090. total_diff_stale = 0;
  6091. #ifdef HAVE_CURSES
  6092. awidth = rwidth = swidth = hwwidth = 1;
  6093. #endif
  6094. for (i = 0; i < total_pools; i++) {
  6095. struct pool *pool = pools[i];
  6096. pool->getwork_requested = 0;
  6097. pool->accepted = 0;
  6098. pool->rejected = 0;
  6099. pool->solved = 0;
  6100. pool->getwork_requested = 0;
  6101. pool->stale_shares = 0;
  6102. pool->discarded_work = 0;
  6103. pool->getfail_occasions = 0;
  6104. pool->remotefail_occasions = 0;
  6105. pool->last_share_time = 0;
  6106. pool->diff1 = 0;
  6107. pool->diff_accepted = 0;
  6108. pool->diff_rejected = 0;
  6109. pool->diff_stale = 0;
  6110. pool->last_share_diff = 0;
  6111. pool->cgminer_stats.start_tv = total_tv_start;
  6112. pool->cgminer_stats.getwork_calls = 0;
  6113. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6114. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6115. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6116. pool->cgminer_pool_stats.getwork_calls = 0;
  6117. pool->cgminer_pool_stats.getwork_attempts = 0;
  6118. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6119. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  6120. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  6121. pool->cgminer_pool_stats.min_diff = 0;
  6122. pool->cgminer_pool_stats.max_diff = 0;
  6123. pool->cgminer_pool_stats.min_diff_count = 0;
  6124. pool->cgminer_pool_stats.max_diff_count = 0;
  6125. pool->cgminer_pool_stats.times_sent = 0;
  6126. pool->cgminer_pool_stats.bytes_sent = 0;
  6127. pool->cgminer_pool_stats.net_bytes_sent = 0;
  6128. pool->cgminer_pool_stats.times_received = 0;
  6129. pool->cgminer_pool_stats.bytes_received = 0;
  6130. pool->cgminer_pool_stats.net_bytes_received = 0;
  6131. }
  6132. zero_bestshare();
  6133. for (i = 0; i < total_devices; ++i) {
  6134. struct cgpu_info *cgpu = get_devices(i);
  6135. mutex_lock(&hash_lock);
  6136. cgpu->total_mhashes = 0;
  6137. cgpu->accepted = 0;
  6138. cgpu->rejected = 0;
  6139. cgpu->stale = 0;
  6140. cgpu->hw_errors = 0;
  6141. cgpu->utility = 0.0;
  6142. cgpu->utility_diff1 = 0;
  6143. cgpu->last_share_pool_time = 0;
  6144. cgpu->bad_diff1 = 0;
  6145. cgpu->diff1 = 0;
  6146. cgpu->diff_accepted = 0;
  6147. cgpu->diff_rejected = 0;
  6148. cgpu->diff_stale = 0;
  6149. cgpu->last_share_diff = 0;
  6150. cgpu->thread_fail_init_count = 0;
  6151. cgpu->thread_zero_hash_count = 0;
  6152. cgpu->thread_fail_queue_count = 0;
  6153. cgpu->dev_sick_idle_60_count = 0;
  6154. cgpu->dev_dead_idle_600_count = 0;
  6155. cgpu->dev_nostart_count = 0;
  6156. cgpu->dev_over_heat_count = 0;
  6157. cgpu->dev_thermal_cutoff_count = 0;
  6158. cgpu->dev_comms_error_count = 0;
  6159. cgpu->dev_throttle_count = 0;
  6160. cgpu->cgminer_stats.start_tv = total_tv_start;
  6161. cgpu->cgminer_stats.getwork_calls = 0;
  6162. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6163. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6164. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6165. mutex_unlock(&hash_lock);
  6166. }
  6167. }
  6168. #ifdef HAVE_CURSES
  6169. static
  6170. void loginput_mode(const int size)
  6171. {
  6172. clear_logwin();
  6173. loginput_size = size;
  6174. check_winsizes();
  6175. }
  6176. static void display_pools(void)
  6177. {
  6178. struct pool *pool;
  6179. int selected, i, j;
  6180. char input;
  6181. loginput_mode(7 + total_pools);
  6182. immedok(logwin, true);
  6183. updated:
  6184. for (j = 0; j < total_pools; j++) {
  6185. for (i = 0; i < total_pools; i++) {
  6186. pool = pools[i];
  6187. if (pool->prio != j)
  6188. continue;
  6189. if (pool == current_pool())
  6190. wattron(logwin, A_BOLD);
  6191. if (pool->enabled != POOL_ENABLED)
  6192. wattron(logwin, A_DIM);
  6193. wlogprint("%d: ", pool->prio);
  6194. switch (pool->enabled) {
  6195. case POOL_ENABLED:
  6196. wlogprint("Enabled ");
  6197. break;
  6198. case POOL_DISABLED:
  6199. wlogprint("Disabled ");
  6200. break;
  6201. case POOL_REJECTING:
  6202. wlogprint("Rejectin ");
  6203. break;
  6204. }
  6205. _wlogprint(pool_proto_str(pool));
  6206. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6207. pool->quota,
  6208. pool->pool_no,
  6209. pool->rpc_url, pool->rpc_user);
  6210. wattroff(logwin, A_BOLD | A_DIM);
  6211. break; //for (i = 0; i < total_pools; i++)
  6212. }
  6213. }
  6214. retry:
  6215. wlogprint("\nCurrent pool management strategy: %s\n",
  6216. strategies[pool_strategy].s);
  6217. if (pool_strategy == POOL_ROTATE)
  6218. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6219. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6220. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6221. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6222. wlogprint("Or press any other key to continue\n");
  6223. logwin_update();
  6224. input = getch();
  6225. if (!strncasecmp(&input, "a", 1)) {
  6226. if (opt_benchmark)
  6227. {
  6228. wlogprint("Cannot add pools in benchmark mode");
  6229. goto retry;
  6230. }
  6231. input_pool(true);
  6232. goto updated;
  6233. } else if (!strncasecmp(&input, "r", 1)) {
  6234. if (total_pools <= 1) {
  6235. wlogprint("Cannot remove last pool");
  6236. goto retry;
  6237. }
  6238. selected = curses_int("Select pool number");
  6239. if (selected < 0 || selected >= total_pools) {
  6240. wlogprint("Invalid selection\n");
  6241. goto retry;
  6242. }
  6243. pool = pools[selected];
  6244. if (pool == current_pool())
  6245. switch_pools(NULL);
  6246. if (pool == current_pool()) {
  6247. wlogprint("Unable to remove pool due to activity\n");
  6248. goto retry;
  6249. }
  6250. disable_pool(pool);
  6251. remove_pool(pool);
  6252. goto updated;
  6253. } else if (!strncasecmp(&input, "s", 1)) {
  6254. selected = curses_int("Select pool number");
  6255. if (selected < 0 || selected >= total_pools) {
  6256. wlogprint("Invalid selection\n");
  6257. goto retry;
  6258. }
  6259. pool = pools[selected];
  6260. enable_pool(pool);
  6261. switch_pools(pool);
  6262. goto updated;
  6263. } else if (!strncasecmp(&input, "d", 1)) {
  6264. if (enabled_pools <= 1) {
  6265. wlogprint("Cannot disable last pool");
  6266. goto retry;
  6267. }
  6268. selected = curses_int("Select pool number");
  6269. if (selected < 0 || selected >= total_pools) {
  6270. wlogprint("Invalid selection\n");
  6271. goto retry;
  6272. }
  6273. pool = pools[selected];
  6274. disable_pool(pool);
  6275. if (pool == current_pool())
  6276. switch_pools(NULL);
  6277. goto updated;
  6278. } else if (!strncasecmp(&input, "e", 1)) {
  6279. selected = curses_int("Select pool number");
  6280. if (selected < 0 || selected >= total_pools) {
  6281. wlogprint("Invalid selection\n");
  6282. goto retry;
  6283. }
  6284. pool = pools[selected];
  6285. enable_pool(pool);
  6286. if (pool->prio < current_pool()->prio)
  6287. switch_pools(pool);
  6288. goto updated;
  6289. } else if (!strncasecmp(&input, "c", 1)) {
  6290. for (i = 0; i <= TOP_STRATEGY; i++)
  6291. wlogprint("%d: %s\n", i, strategies[i].s);
  6292. selected = curses_int("Select strategy number type");
  6293. if (selected < 0 || selected > TOP_STRATEGY) {
  6294. wlogprint("Invalid selection\n");
  6295. goto retry;
  6296. }
  6297. if (selected == POOL_ROTATE) {
  6298. opt_rotate_period = curses_int("Select interval in minutes");
  6299. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6300. opt_rotate_period = 0;
  6301. wlogprint("Invalid selection\n");
  6302. goto retry;
  6303. }
  6304. }
  6305. pool_strategy = selected;
  6306. switch_pools(NULL);
  6307. goto updated;
  6308. } else if (!strncasecmp(&input, "i", 1)) {
  6309. selected = curses_int("Select pool number");
  6310. if (selected < 0 || selected >= total_pools) {
  6311. wlogprint("Invalid selection\n");
  6312. goto retry;
  6313. }
  6314. pool = pools[selected];
  6315. display_pool_summary(pool);
  6316. goto retry;
  6317. } else if (!strncasecmp(&input, "q", 1)) {
  6318. selected = curses_int("Select pool number");
  6319. if (selected < 0 || selected >= total_pools) {
  6320. wlogprint("Invalid selection\n");
  6321. goto retry;
  6322. }
  6323. pool = pools[selected];
  6324. selected = curses_int("Set quota");
  6325. if (selected < 0) {
  6326. wlogprint("Invalid negative quota\n");
  6327. goto retry;
  6328. }
  6329. pool->quota = selected;
  6330. adjust_quota_gcd();
  6331. goto updated;
  6332. } else if (!strncasecmp(&input, "f", 1)) {
  6333. opt_fail_only ^= true;
  6334. goto updated;
  6335. } else if (!strncasecmp(&input, "p", 1)) {
  6336. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6337. if (!prilist)
  6338. {
  6339. wlogprint("Not changing priorities\n");
  6340. goto retry;
  6341. }
  6342. int res = prioritize_pools(prilist, &i);
  6343. free(prilist);
  6344. switch (res) {
  6345. case MSG_NOPOOL:
  6346. wlogprint("No pools\n");
  6347. goto retry;
  6348. case MSG_MISPID:
  6349. wlogprint("Missing pool id parameter\n");
  6350. goto retry;
  6351. case MSG_INVPID:
  6352. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6353. goto retry;
  6354. case MSG_DUPPID:
  6355. wlogprint("Duplicate pool specified %d\n", i);
  6356. goto retry;
  6357. case MSG_POOLPRIO:
  6358. default:
  6359. goto updated;
  6360. }
  6361. }
  6362. immedok(logwin, false);
  6363. loginput_mode(0);
  6364. }
  6365. static const char *summary_detail_level_str(void)
  6366. {
  6367. if (opt_compact)
  6368. return "compact";
  6369. if (opt_show_procs)
  6370. return "processors";
  6371. return "devices";
  6372. }
  6373. static void display_options(void)
  6374. {
  6375. int selected;
  6376. char input;
  6377. immedok(logwin, true);
  6378. loginput_mode(12);
  6379. retry:
  6380. clear_logwin();
  6381. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6382. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6383. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6384. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6385. opt_debug_console ? "on" : "off",
  6386. want_per_device_stats? "on" : "off",
  6387. opt_quiet ? "on" : "off",
  6388. opt_log_output ? "on" : "off",
  6389. opt_protocol ? "on" : "off",
  6390. opt_worktime ? "on" : "off",
  6391. summary_detail_level_str(),
  6392. opt_log_interval,
  6393. opt_weighed_stats ? "weighed" : "absolute");
  6394. wlogprint("Select an option or any other key to return\n");
  6395. logwin_update();
  6396. input = getch();
  6397. if (!strncasecmp(&input, "q", 1)) {
  6398. opt_quiet ^= true;
  6399. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6400. goto retry;
  6401. } else if (!strncasecmp(&input, "v", 1)) {
  6402. opt_log_output ^= true;
  6403. if (opt_log_output)
  6404. opt_quiet = false;
  6405. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6406. goto retry;
  6407. } else if (!strncasecmp(&input, "n", 1)) {
  6408. opt_log_output = false;
  6409. opt_debug_console = false;
  6410. opt_quiet = false;
  6411. opt_protocol = false;
  6412. opt_compact = false;
  6413. opt_show_procs = false;
  6414. devsummaryYOffset = 0;
  6415. want_per_device_stats = false;
  6416. wlogprint("Output mode reset to normal\n");
  6417. switch_logsize();
  6418. goto retry;
  6419. } else if (!strncasecmp(&input, "d", 1)) {
  6420. opt_debug = true;
  6421. opt_debug_console ^= true;
  6422. opt_log_output = opt_debug_console;
  6423. if (opt_debug_console)
  6424. opt_quiet = false;
  6425. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6426. goto retry;
  6427. } else if (!strncasecmp(&input, "m", 1)) {
  6428. if (opt_compact)
  6429. opt_compact = false;
  6430. else
  6431. if (!opt_show_procs)
  6432. opt_show_procs = true;
  6433. else
  6434. {
  6435. opt_compact = true;
  6436. opt_show_procs = false;
  6437. devsummaryYOffset = 0;
  6438. }
  6439. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6440. switch_logsize();
  6441. goto retry;
  6442. } else if (!strncasecmp(&input, "p", 1)) {
  6443. want_per_device_stats ^= true;
  6444. opt_log_output = want_per_device_stats;
  6445. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6446. goto retry;
  6447. } else if (!strncasecmp(&input, "r", 1)) {
  6448. opt_protocol ^= true;
  6449. if (opt_protocol)
  6450. opt_quiet = false;
  6451. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6452. goto retry;
  6453. } else if (!strncasecmp(&input, "c", 1))
  6454. clear_logwin();
  6455. else if (!strncasecmp(&input, "l", 1)) {
  6456. selected = curses_int("Interval in seconds");
  6457. if (selected < 0 || selected > 9999) {
  6458. wlogprint("Invalid selection\n");
  6459. goto retry;
  6460. }
  6461. opt_log_interval = selected;
  6462. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6463. goto retry;
  6464. } else if (!strncasecmp(&input, "s", 1)) {
  6465. opt_realquiet = true;
  6466. } else if (!strncasecmp(&input, "w", 1)) {
  6467. opt_worktime ^= true;
  6468. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6469. goto retry;
  6470. } else if (!strncasecmp(&input, "t", 1)) {
  6471. opt_weighed_stats ^= true;
  6472. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6473. goto retry;
  6474. } else if (!strncasecmp(&input, "z", 1)) {
  6475. zero_stats();
  6476. goto retry;
  6477. }
  6478. immedok(logwin, false);
  6479. loginput_mode(0);
  6480. }
  6481. #endif
  6482. void default_save_file(char *filename)
  6483. {
  6484. #if defined(unix) || defined(__APPLE__)
  6485. if (getenv("HOME") && *getenv("HOME")) {
  6486. strcpy(filename, getenv("HOME"));
  6487. strcat(filename, "/");
  6488. }
  6489. else
  6490. strcpy(filename, "");
  6491. strcat(filename, ".bfgminer/");
  6492. mkdir(filename, 0777);
  6493. #else
  6494. strcpy(filename, "");
  6495. #endif
  6496. strcat(filename, def_conf);
  6497. }
  6498. #ifdef HAVE_CURSES
  6499. static void set_options(void)
  6500. {
  6501. int selected;
  6502. char input;
  6503. immedok(logwin, true);
  6504. loginput_mode(8);
  6505. retry:
  6506. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6507. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6508. "[W]rite config file\n[B]FGMiner restart\n",
  6509. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6510. wlogprint("Select an option or any other key to return\n");
  6511. logwin_update();
  6512. input = getch();
  6513. if (!strncasecmp(&input, "q", 1)) {
  6514. selected = curses_int("Extra work items to queue");
  6515. if (selected < 0 || selected > 9999) {
  6516. wlogprint("Invalid selection\n");
  6517. goto retry;
  6518. }
  6519. opt_queue = selected;
  6520. goto retry;
  6521. } else if (!strncasecmp(&input, "l", 1)) {
  6522. if (want_longpoll)
  6523. stop_longpoll();
  6524. else
  6525. start_longpoll();
  6526. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6527. goto retry;
  6528. } else if (!strncasecmp(&input, "s", 1)) {
  6529. selected = curses_int("Set scantime in seconds");
  6530. if (selected < 0 || selected > 9999) {
  6531. wlogprint("Invalid selection\n");
  6532. goto retry;
  6533. }
  6534. opt_scantime = selected;
  6535. goto retry;
  6536. } else if (!strncasecmp(&input, "e", 1)) {
  6537. selected = curses_int("Set expiry time in seconds");
  6538. if (selected < 0 || selected > 9999) {
  6539. wlogprint("Invalid selection\n");
  6540. goto retry;
  6541. }
  6542. opt_expiry = selected;
  6543. goto retry;
  6544. } else if (!strncasecmp(&input, "r", 1)) {
  6545. selected = curses_int("Retries before failing (-1 infinite)");
  6546. if (selected < -1 || selected > 9999) {
  6547. wlogprint("Invalid selection\n");
  6548. goto retry;
  6549. }
  6550. opt_retries = selected;
  6551. goto retry;
  6552. } else if (!strncasecmp(&input, "w", 1)) {
  6553. FILE *fcfg;
  6554. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6555. default_save_file(filename);
  6556. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6557. str = curses_input(prompt);
  6558. if (str) {
  6559. struct stat statbuf;
  6560. strcpy(filename, str);
  6561. free(str);
  6562. if (!stat(filename, &statbuf)) {
  6563. wlogprint("File exists, overwrite?\n");
  6564. input = getch();
  6565. if (strncasecmp(&input, "y", 1))
  6566. goto retry;
  6567. }
  6568. }
  6569. fcfg = fopen(filename, "w");
  6570. if (!fcfg) {
  6571. wlogprint("Cannot open or create file\n");
  6572. goto retry;
  6573. }
  6574. write_config(fcfg);
  6575. fclose(fcfg);
  6576. goto retry;
  6577. } else if (!strncasecmp(&input, "b", 1)) {
  6578. wlogprint("Are you sure?\n");
  6579. input = getch();
  6580. if (!strncasecmp(&input, "y", 1))
  6581. app_restart();
  6582. else
  6583. clear_logwin();
  6584. } else
  6585. clear_logwin();
  6586. loginput_mode(0);
  6587. immedok(logwin, false);
  6588. }
  6589. int scan_serial(const char *);
  6590. static
  6591. void _managetui_msg(const char *repr, const char **msg)
  6592. {
  6593. if (*msg)
  6594. {
  6595. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6596. wattron(logwin, A_BOLD);
  6597. wlogprint("%s", *msg);
  6598. wattroff(logwin, A_BOLD);
  6599. *msg = NULL;
  6600. }
  6601. logwin_update();
  6602. }
  6603. void manage_device(void)
  6604. {
  6605. char logline[256];
  6606. const char *msg = NULL;
  6607. struct cgpu_info *cgpu;
  6608. const struct device_drv *drv;
  6609. selecting_device = true;
  6610. immedok(logwin, true);
  6611. loginput_mode(12);
  6612. devchange:
  6613. if (unlikely(!total_devices))
  6614. {
  6615. clear_logwin();
  6616. wlogprint("(no devices)\n");
  6617. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6618. _managetui_msg("(none)", &msg);
  6619. int input = getch();
  6620. switch (input)
  6621. {
  6622. case '+': case '=': // add new device
  6623. goto addnew;
  6624. default:
  6625. goto out;
  6626. }
  6627. }
  6628. cgpu = devices[selected_device];
  6629. drv = cgpu->drv;
  6630. refresh_devstatus();
  6631. refresh:
  6632. clear_logwin();
  6633. wlogprint("Select processor to manage using up/down arrow keys\n");
  6634. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6635. wattron(logwin, A_BOLD);
  6636. wlogprint("%s", logline);
  6637. wattroff(logwin, A_BOLD);
  6638. wlogprint("\n");
  6639. if (cgpu->dev_manufacturer)
  6640. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6641. else
  6642. if (cgpu->dev_product)
  6643. wlogprint(" %s\n", cgpu->dev_product);
  6644. if (cgpu->dev_serial)
  6645. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6646. if (cgpu->kname)
  6647. wlogprint("Kernel: %s\n", cgpu->kname);
  6648. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6649. drv->proc_wlogprint_status(cgpu);
  6650. wlogprint("\n");
  6651. // TODO: Last share at TIMESTAMP on pool N
  6652. // TODO: Custom device info/commands
  6653. if (cgpu->deven != DEV_ENABLED)
  6654. wlogprint("[E]nable ");
  6655. if (cgpu->deven != DEV_DISABLED)
  6656. wlogprint("[D]isable ");
  6657. if (drv->identify_device)
  6658. wlogprint("[I]dentify ");
  6659. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6660. drv->proc_tui_wlogprint_choices(cgpu);
  6661. wlogprint("\n");
  6662. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6663. _managetui_msg(cgpu->proc_repr, &msg);
  6664. while (true)
  6665. {
  6666. int input = getch();
  6667. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6668. switch (input) {
  6669. case 'd': case 'D':
  6670. if (cgpu->deven == DEV_DISABLED)
  6671. msg = "Processor already disabled\n";
  6672. else
  6673. {
  6674. cgpu->deven = DEV_DISABLED;
  6675. msg = "Processor being disabled\n";
  6676. }
  6677. goto refresh;
  6678. case 'e': case 'E':
  6679. if (cgpu->deven == DEV_ENABLED)
  6680. msg = "Processor already enabled\n";
  6681. else
  6682. {
  6683. proc_enable(cgpu);
  6684. msg = "Processor being enabled\n";
  6685. }
  6686. goto refresh;
  6687. case 'i': case 'I':
  6688. if (drv->identify_device && drv->identify_device(cgpu))
  6689. msg = "Identify command sent\n";
  6690. else
  6691. goto key_default;
  6692. goto refresh;
  6693. case KEY_DOWN:
  6694. if (selected_device >= total_devices - 1)
  6695. break;
  6696. ++selected_device;
  6697. goto devchange;
  6698. case KEY_UP:
  6699. if (selected_device <= 0)
  6700. break;
  6701. --selected_device;
  6702. goto devchange;
  6703. case KEY_NPAGE:
  6704. {
  6705. if (selected_device >= total_devices - 1)
  6706. break;
  6707. struct cgpu_info *mdev = devices[selected_device]->device;
  6708. do {
  6709. ++selected_device;
  6710. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6711. goto devchange;
  6712. }
  6713. case KEY_PPAGE:
  6714. {
  6715. if (selected_device <= 0)
  6716. break;
  6717. struct cgpu_info *mdev = devices[selected_device]->device;
  6718. do {
  6719. --selected_device;
  6720. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6721. goto devchange;
  6722. }
  6723. case '/': case '?': // find device
  6724. {
  6725. static char *pattern = NULL;
  6726. char *newpattern = curses_input("Enter pattern");
  6727. if (newpattern)
  6728. {
  6729. free(pattern);
  6730. pattern = newpattern;
  6731. }
  6732. else
  6733. if (!pattern)
  6734. pattern = calloc(1, 1);
  6735. int match = cgpu_search(pattern, selected_device + 1);
  6736. if (match == -1)
  6737. {
  6738. msg = "Couldn't find device\n";
  6739. goto refresh;
  6740. }
  6741. selected_device = match;
  6742. goto devchange;
  6743. }
  6744. case '+': case '=': // add new device
  6745. {
  6746. addnew:
  6747. clear_logwin();
  6748. _wlogprint(
  6749. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6750. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6751. "For example: erupter:"
  6752. #ifdef WIN32
  6753. "\\\\.\\COM40"
  6754. #elif defined(__APPLE__)
  6755. "/dev/cu.SLAB_USBtoUART"
  6756. #else
  6757. "/dev/ttyUSB39"
  6758. #endif
  6759. "\n"
  6760. );
  6761. char *scanser = curses_input("Enter target");
  6762. if (scan_serial(scanser))
  6763. {
  6764. selected_device = total_devices - 1;
  6765. msg = "Device scan succeeded\n";
  6766. }
  6767. else
  6768. msg = "No new devices found\n";
  6769. goto devchange;
  6770. }
  6771. case 'Q': case 'q':
  6772. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6773. case '\x1b': // ESC
  6774. case KEY_ENTER:
  6775. case '\r': // Ctrl-M on Windows, with nonl
  6776. #ifdef PADENTER
  6777. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6778. #endif
  6779. case '\n':
  6780. goto out;
  6781. default:
  6782. ;
  6783. key_default:
  6784. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6785. {
  6786. msg = drv->proc_tui_handle_choice(cgpu, input);
  6787. if (msg)
  6788. goto refresh;
  6789. }
  6790. }
  6791. }
  6792. out:
  6793. selecting_device = false;
  6794. loginput_mode(0);
  6795. immedok(logwin, false);
  6796. }
  6797. void show_help(void)
  6798. {
  6799. loginput_mode(11);
  6800. // NOTE: wlogprint is a macro with a buffer limit
  6801. _wlogprint(
  6802. "LU: oldest explicit work update currently being used for new work\n"
  6803. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6804. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6805. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6806. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6807. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6808. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6809. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6810. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6811. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6812. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6813. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6814. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6815. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6816. "\n"
  6817. "devices/processors hashing (only for totals line), hottest temperature\n"
  6818. );
  6819. wlogprint(
  6820. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6821. , opt_log_interval);
  6822. _wlogprint(
  6823. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6824. "HW: hardware errors / % nonces invalid\n"
  6825. "\n"
  6826. "Press any key to clear"
  6827. );
  6828. logwin_update();
  6829. getch();
  6830. loginput_mode(0);
  6831. }
  6832. static void *input_thread(void __maybe_unused *userdata)
  6833. {
  6834. RenameThread("input");
  6835. if (!curses_active)
  6836. return NULL;
  6837. while (1) {
  6838. int input;
  6839. input = getch();
  6840. switch (input) {
  6841. case 'h': case 'H': case '?':
  6842. case KEY_F(1):
  6843. show_help();
  6844. break;
  6845. case 'q': case 'Q':
  6846. kill_work();
  6847. return NULL;
  6848. case 'd': case 'D':
  6849. display_options();
  6850. break;
  6851. case 'm': case 'M':
  6852. manage_device();
  6853. break;
  6854. case 'p': case 'P':
  6855. display_pools();
  6856. break;
  6857. case 's': case 'S':
  6858. set_options();
  6859. break;
  6860. #ifdef HAVE_CURSES
  6861. case KEY_DOWN:
  6862. {
  6863. const int visible_lines = logcursor - devcursor;
  6864. const int invisible_lines = total_lines - visible_lines;
  6865. if (devsummaryYOffset <= -invisible_lines)
  6866. break;
  6867. devsummaryYOffset -= 2;
  6868. }
  6869. case KEY_UP:
  6870. if (devsummaryYOffset == 0)
  6871. break;
  6872. ++devsummaryYOffset;
  6873. refresh_devstatus();
  6874. break;
  6875. case KEY_NPAGE:
  6876. {
  6877. const int visible_lines = logcursor - devcursor;
  6878. const int invisible_lines = total_lines - visible_lines;
  6879. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6880. devsummaryYOffset = -invisible_lines;
  6881. else
  6882. devsummaryYOffset -= visible_lines;
  6883. refresh_devstatus();
  6884. break;
  6885. }
  6886. case KEY_PPAGE:
  6887. {
  6888. const int visible_lines = logcursor - devcursor;
  6889. if (devsummaryYOffset + visible_lines >= 0)
  6890. devsummaryYOffset = 0;
  6891. else
  6892. devsummaryYOffset += visible_lines;
  6893. refresh_devstatus();
  6894. break;
  6895. }
  6896. #endif
  6897. }
  6898. if (opt_realquiet) {
  6899. disable_curses();
  6900. break;
  6901. }
  6902. }
  6903. return NULL;
  6904. }
  6905. #endif
  6906. static void *api_thread(void *userdata)
  6907. {
  6908. struct thr_info *mythr = userdata;
  6909. pthread_detach(pthread_self());
  6910. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6911. RenameThread("rpc");
  6912. api(api_thr_id);
  6913. mythr->has_pth = false;
  6914. return NULL;
  6915. }
  6916. void thread_reportin(struct thr_info *thr)
  6917. {
  6918. cgtime(&thr->last);
  6919. thr->cgpu->status = LIFE_WELL;
  6920. thr->getwork = 0;
  6921. thr->cgpu->device_last_well = time(NULL);
  6922. }
  6923. void thread_reportout(struct thr_info *thr)
  6924. {
  6925. thr->getwork = time(NULL);
  6926. }
  6927. static void hashmeter(int thr_id, struct timeval *diff,
  6928. uint64_t hashes_done)
  6929. {
  6930. char logstatusline[256];
  6931. struct timeval temp_tv_end, total_diff;
  6932. double secs;
  6933. double local_secs;
  6934. static double local_mhashes_done = 0;
  6935. double local_mhashes = (double)hashes_done / 1000000.0;
  6936. bool showlog = false;
  6937. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6938. char rejpcbuf[6];
  6939. char bnbuf[6];
  6940. struct thr_info *thr;
  6941. /* Update the last time this thread reported in */
  6942. if (thr_id >= 0) {
  6943. thr = get_thread(thr_id);
  6944. cgtime(&(thr->last));
  6945. thr->cgpu->device_last_well = time(NULL);
  6946. }
  6947. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6948. /* So we can call hashmeter from a non worker thread */
  6949. if (thr_id >= 0) {
  6950. struct cgpu_info *cgpu = thr->cgpu;
  6951. int threadobj = cgpu->threads ?: 1;
  6952. double thread_rolling = 0.0;
  6953. int i;
  6954. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6955. thr_id, hashes_done, hashes_done / 1000 / secs);
  6956. /* Rolling average for each thread and each device */
  6957. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6958. for (i = 0; i < threadobj; i++)
  6959. thread_rolling += cgpu->thr[i]->rolling;
  6960. mutex_lock(&hash_lock);
  6961. decay_time(&cgpu->rolling, thread_rolling, secs);
  6962. cgpu->total_mhashes += local_mhashes;
  6963. mutex_unlock(&hash_lock);
  6964. // If needed, output detailed, per-device stats
  6965. if (want_per_device_stats) {
  6966. struct timeval now;
  6967. struct timeval elapsed;
  6968. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6969. cgtime(&now);
  6970. timersub(&now, last_msg_tv, &elapsed);
  6971. if (opt_log_interval <= elapsed.tv_sec) {
  6972. struct cgpu_info *cgpu = thr->cgpu;
  6973. char logline[255];
  6974. *last_msg_tv = now;
  6975. get_statline(logline, sizeof(logline), cgpu);
  6976. if (!curses_active) {
  6977. printf("%s \r", logline);
  6978. fflush(stdout);
  6979. } else
  6980. applog(LOG_INFO, "%s", logline);
  6981. }
  6982. }
  6983. }
  6984. /* Totals are updated by all threads so can race without locking */
  6985. mutex_lock(&hash_lock);
  6986. cgtime(&temp_tv_end);
  6987. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6988. total_mhashes_done += local_mhashes;
  6989. local_mhashes_done += local_mhashes;
  6990. /* Only update with opt_log_interval */
  6991. if (total_diff.tv_sec < opt_log_interval)
  6992. goto out_unlock;
  6993. showlog = true;
  6994. cgtime(&total_tv_end);
  6995. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6996. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6997. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6998. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6999. total_secs = (double)total_diff.tv_sec +
  7000. ((double)total_diff.tv_usec / 1000000.0);
  7001. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  7002. multi_format_unit_array2(
  7003. ((char*[]){cHr, aHr, uHr}),
  7004. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  7005. true, "h/s", H2B_SHORT,
  7006. 3,
  7007. 1e6*total_rolling,
  7008. 1e6*total_mhashes_done / total_secs,
  7009. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  7010. int ui_accepted, ui_rejected, ui_stale;
  7011. if (opt_weighed_stats)
  7012. {
  7013. ui_accepted = total_diff_accepted;
  7014. ui_rejected = total_diff_rejected;
  7015. ui_stale = total_diff_stale;
  7016. }
  7017. else
  7018. {
  7019. ui_accepted = total_accepted;
  7020. ui_rejected = total_rejected;
  7021. ui_stale = total_stale;
  7022. }
  7023. #ifdef HAVE_CURSES
  7024. if (curses_active_locked()) {
  7025. float temp = 0;
  7026. struct cgpu_info *proc, *last_working_dev = NULL;
  7027. int i, working_devs = 0, working_procs = 0;
  7028. int divx;
  7029. bool bad = false;
  7030. // Find the highest temperature of all processors
  7031. for (i = 0; i < total_devices; ++i)
  7032. {
  7033. proc = get_devices(i);
  7034. if (proc->temp > temp)
  7035. temp = proc->temp;
  7036. if (unlikely(proc->deven == DEV_DISABLED))
  7037. ; // Just need to block it off from both conditions
  7038. else
  7039. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  7040. {
  7041. if (proc->rolling > .1)
  7042. {
  7043. ++working_procs;
  7044. if (proc->device != last_working_dev)
  7045. {
  7046. ++working_devs;
  7047. last_working_dev = proc->device;
  7048. }
  7049. }
  7050. }
  7051. else
  7052. bad = true;
  7053. }
  7054. if (working_devs == working_procs)
  7055. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  7056. else
  7057. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  7058. divx = 7;
  7059. if (opt_show_procs && !opt_compact)
  7060. ++divx;
  7061. if (bad)
  7062. {
  7063. divx += sizeof(U8_BAD_START)-1;
  7064. strcpy(&statusline[divx], U8_BAD_END);
  7065. divx += sizeof(U8_BAD_END)-1;
  7066. }
  7067. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  7068. format_statline(statusline, sizeof(statusline),
  7069. cHr, aHr,
  7070. uHr,
  7071. ui_accepted,
  7072. ui_rejected,
  7073. ui_stale,
  7074. total_diff_rejected + total_diff_stale, total_diff_accepted,
  7075. hw_errors,
  7076. total_bad_diff1, total_bad_diff1 + total_diff1);
  7077. unlock_curses();
  7078. }
  7079. #endif
  7080. // Add a space
  7081. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  7082. uHr[5] = ' ';
  7083. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  7084. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  7085. snprintf(logstatusline, sizeof(logstatusline),
  7086. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  7087. want_per_device_stats ? "ALL " : "",
  7088. opt_log_interval,
  7089. cHr, aHr,
  7090. uHr,
  7091. ui_accepted,
  7092. ui_rejected,
  7093. ui_stale,
  7094. rejpcbuf,
  7095. hw_errors,
  7096. bnbuf
  7097. );
  7098. local_mhashes_done = 0;
  7099. out_unlock:
  7100. mutex_unlock(&hash_lock);
  7101. if (showlog) {
  7102. if (!curses_active) {
  7103. printf("%s \r", logstatusline);
  7104. fflush(stdout);
  7105. } else
  7106. applog(LOG_INFO, "%s", logstatusline);
  7107. }
  7108. }
  7109. void hashmeter2(struct thr_info *thr)
  7110. {
  7111. struct timeval tv_now, tv_elapsed;
  7112. timerclear(&thr->tv_hashes_done);
  7113. cgtime(&tv_now);
  7114. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  7115. /* Update the hashmeter at most 5 times per second */
  7116. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  7117. tv_elapsed.tv_sec >= opt_log_interval) {
  7118. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  7119. thr->hashes_done = 0;
  7120. thr->tv_lastupdate = tv_now;
  7121. }
  7122. }
  7123. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  7124. struct stratum_share *sshare)
  7125. {
  7126. struct work *work = sshare->work;
  7127. share_result(val, res_val, err_val, work, false, "");
  7128. }
  7129. /* Parses stratum json responses and tries to find the id that the request
  7130. * matched to and treat it accordingly. */
  7131. bool parse_stratum_response(struct pool *pool, char *s)
  7132. {
  7133. json_t *val = NULL, *err_val, *res_val, *id_val;
  7134. struct stratum_share *sshare;
  7135. json_error_t err;
  7136. bool ret = false;
  7137. int id;
  7138. val = JSON_LOADS(s, &err);
  7139. if (!val) {
  7140. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7141. goto out;
  7142. }
  7143. res_val = json_object_get(val, "result");
  7144. err_val = json_object_get(val, "error");
  7145. id_val = json_object_get(val, "id");
  7146. if (json_is_null(id_val) || !id_val) {
  7147. char *ss;
  7148. if (err_val)
  7149. ss = json_dumps(err_val, JSON_INDENT(3));
  7150. else
  7151. ss = strdup("(unknown reason)");
  7152. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7153. free(ss);
  7154. goto out;
  7155. }
  7156. if (!json_is_integer(id_val)) {
  7157. if (json_is_string(id_val)
  7158. && !strncmp(json_string_value(id_val), "txlist", 6))
  7159. {
  7160. const bool is_array = json_is_array(res_val);
  7161. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7162. is_array ? "transaction list" : "no-transaction-list response",
  7163. pool->pool_no, &json_string_value(id_val)[6]);
  7164. if (!is_array)
  7165. {
  7166. // No need to wait for a timeout
  7167. timer_unset(&pool->swork.tv_transparency);
  7168. pool_set_opaque(pool, true);
  7169. goto fishy;
  7170. }
  7171. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7172. // We only care about a transaction list for the current job id
  7173. goto fishy;
  7174. // Check that the transactions actually hash to the merkle links
  7175. {
  7176. unsigned maxtx = 1 << pool->swork.merkles;
  7177. unsigned mintx = maxtx >> 1;
  7178. --maxtx;
  7179. unsigned acttx = (unsigned)json_array_size(res_val);
  7180. if (acttx < mintx || acttx > maxtx) {
  7181. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7182. pool->pool_no, acttx, mintx, maxtx);
  7183. goto fishy;
  7184. }
  7185. // TODO: Check hashes match actual merkle links
  7186. }
  7187. pool_set_opaque(pool, false);
  7188. timer_unset(&pool->swork.tv_transparency);
  7189. fishy:
  7190. ret = true;
  7191. }
  7192. goto out;
  7193. }
  7194. id = json_integer_value(id_val);
  7195. mutex_lock(&sshare_lock);
  7196. HASH_FIND_INT(stratum_shares, &id, sshare);
  7197. if (sshare)
  7198. HASH_DEL(stratum_shares, sshare);
  7199. mutex_unlock(&sshare_lock);
  7200. if (!sshare) {
  7201. double pool_diff;
  7202. /* Since the share is untracked, we can only guess at what the
  7203. * work difficulty is based on the current pool diff. */
  7204. cg_rlock(&pool->data_lock);
  7205. pool_diff = target_diff(pool->swork.target);
  7206. cg_runlock(&pool->data_lock);
  7207. if (json_is_true(res_val)) {
  7208. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7209. /* We don't know what device this came from so we can't
  7210. * attribute the work to the relevant cgpu */
  7211. mutex_lock(&stats_lock);
  7212. total_accepted++;
  7213. pool->accepted++;
  7214. total_diff_accepted += pool_diff;
  7215. pool->diff_accepted += pool_diff;
  7216. mutex_unlock(&stats_lock);
  7217. } else {
  7218. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7219. mutex_lock(&stats_lock);
  7220. total_rejected++;
  7221. pool->rejected++;
  7222. total_diff_rejected += pool_diff;
  7223. pool->diff_rejected += pool_diff;
  7224. mutex_unlock(&stats_lock);
  7225. }
  7226. goto out;
  7227. }
  7228. else {
  7229. mutex_lock(&submitting_lock);
  7230. --total_submitting;
  7231. mutex_unlock(&submitting_lock);
  7232. }
  7233. stratum_share_result(val, res_val, err_val, sshare);
  7234. free_work(sshare->work);
  7235. free(sshare);
  7236. ret = true;
  7237. out:
  7238. if (val)
  7239. json_decref(val);
  7240. return ret;
  7241. }
  7242. static void shutdown_stratum(struct pool *pool)
  7243. {
  7244. // Shut down Stratum as if we never had it
  7245. pool->stratum_active = false;
  7246. pool->stratum_init = false;
  7247. pool->has_stratum = false;
  7248. shutdown(pool->sock, SHUT_RDWR);
  7249. free(pool->stratum_url);
  7250. if (pool->sockaddr_url == pool->stratum_url)
  7251. pool->sockaddr_url = NULL;
  7252. pool->stratum_url = NULL;
  7253. }
  7254. void clear_stratum_shares(struct pool *pool)
  7255. {
  7256. int my_mining_threads = mining_threads; // Cached outside of locking
  7257. struct stratum_share *sshare, *tmpshare;
  7258. struct work *work;
  7259. struct cgpu_info *cgpu;
  7260. double diff_cleared = 0;
  7261. double thr_diff_cleared[my_mining_threads];
  7262. int cleared = 0;
  7263. int thr_cleared[my_mining_threads];
  7264. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7265. for (int i = 0; i < my_mining_threads; ++i)
  7266. {
  7267. thr_diff_cleared[i] = 0;
  7268. thr_cleared[i] = 0;
  7269. }
  7270. mutex_lock(&sshare_lock);
  7271. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7272. work = sshare->work;
  7273. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7274. HASH_DEL(stratum_shares, sshare);
  7275. sharelog("disconnect", work);
  7276. diff_cleared += sshare->work->work_difficulty;
  7277. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7278. ++thr_cleared[work->thr_id];
  7279. free_work(sshare->work);
  7280. free(sshare);
  7281. cleared++;
  7282. }
  7283. }
  7284. mutex_unlock(&sshare_lock);
  7285. if (cleared) {
  7286. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7287. mutex_lock(&stats_lock);
  7288. pool->stale_shares += cleared;
  7289. total_stale += cleared;
  7290. pool->diff_stale += diff_cleared;
  7291. total_diff_stale += diff_cleared;
  7292. for (int i = 0; i < my_mining_threads; ++i)
  7293. if (thr_cleared[i])
  7294. {
  7295. cgpu = get_thr_cgpu(i);
  7296. cgpu->diff_stale += thr_diff_cleared[i];
  7297. cgpu->stale += thr_cleared[i];
  7298. }
  7299. mutex_unlock(&stats_lock);
  7300. mutex_lock(&submitting_lock);
  7301. total_submitting -= cleared;
  7302. mutex_unlock(&submitting_lock);
  7303. }
  7304. }
  7305. static void resubmit_stratum_shares(struct pool *pool)
  7306. {
  7307. struct stratum_share *sshare, *tmpshare;
  7308. struct work *work;
  7309. unsigned resubmitted = 0;
  7310. mutex_lock(&sshare_lock);
  7311. mutex_lock(&submitting_lock);
  7312. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7313. if (sshare->work->pool != pool)
  7314. continue;
  7315. HASH_DEL(stratum_shares, sshare);
  7316. work = sshare->work;
  7317. DL_APPEND(submit_waiting, work);
  7318. free(sshare);
  7319. ++resubmitted;
  7320. }
  7321. mutex_unlock(&submitting_lock);
  7322. mutex_unlock(&sshare_lock);
  7323. if (resubmitted) {
  7324. notifier_wake(submit_waiting_notifier);
  7325. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7326. }
  7327. }
  7328. static void clear_pool_work(struct pool *pool)
  7329. {
  7330. struct work *work, *tmp;
  7331. int cleared = 0;
  7332. mutex_lock(stgd_lock);
  7333. HASH_ITER(hh, staged_work, work, tmp) {
  7334. if (work->pool == pool) {
  7335. HASH_DEL(staged_work, work);
  7336. free_work(work);
  7337. cleared++;
  7338. staged_full = false;
  7339. }
  7340. }
  7341. mutex_unlock(stgd_lock);
  7342. }
  7343. static int cp_prio(void)
  7344. {
  7345. int prio;
  7346. cg_rlock(&control_lock);
  7347. prio = currentpool->prio;
  7348. cg_runlock(&control_lock);
  7349. return prio;
  7350. }
  7351. /* We only need to maintain a secondary pool connection when we need the
  7352. * capacity to get work from the backup pools while still on the primary */
  7353. static bool cnx_needed(struct pool *pool)
  7354. {
  7355. struct pool *cp;
  7356. if (pool->enabled != POOL_ENABLED)
  7357. return false;
  7358. /* Idle stratum pool needs something to kick it alive again */
  7359. if (pool->has_stratum && pool->idle)
  7360. return true;
  7361. /* Getwork pools without opt_fail_only need backup pools up to be able
  7362. * to leak shares */
  7363. cp = current_pool();
  7364. if (pool_actively_desired(pool, cp))
  7365. return true;
  7366. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7367. return true;
  7368. /* Keep the connection open to allow any stray shares to be submitted
  7369. * on switching pools for 2 minutes. */
  7370. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7371. return true;
  7372. /* If the pool has only just come to life and is higher priority than
  7373. * the current pool keep the connection open so we can fail back to
  7374. * it. */
  7375. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7376. return true;
  7377. if (pool_unworkable(cp))
  7378. return true;
  7379. /* We've run out of work, bring anything back to life. */
  7380. if (no_work)
  7381. return true;
  7382. // If the current pool lacks its own block change detection, see if we are needed for that
  7383. if (pool_active_lp_pool(cp) == pool)
  7384. return true;
  7385. return false;
  7386. }
  7387. static void wait_lpcurrent(struct pool *pool);
  7388. static void pool_resus(struct pool *pool);
  7389. static void gen_stratum_work(struct pool *pool, struct work *work);
  7390. static void stratum_resumed(struct pool *pool)
  7391. {
  7392. if (!pool->stratum_notify)
  7393. return;
  7394. if (pool_tclear(pool, &pool->idle)) {
  7395. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7396. pool_resus(pool);
  7397. }
  7398. }
  7399. static bool supports_resume(struct pool *pool)
  7400. {
  7401. bool ret;
  7402. cg_rlock(&pool->data_lock);
  7403. ret = (pool->sessionid != NULL);
  7404. cg_runlock(&pool->data_lock);
  7405. return ret;
  7406. }
  7407. /* One stratum thread per pool that has stratum waits on the socket checking
  7408. * for new messages and for the integrity of the socket connection. We reset
  7409. * the connection based on the integrity of the receive side only as the send
  7410. * side will eventually expire data it fails to send. */
  7411. static void *stratum_thread(void *userdata)
  7412. {
  7413. struct pool *pool = (struct pool *)userdata;
  7414. pthread_detach(pthread_self());
  7415. char threadname[20];
  7416. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7417. RenameThread(threadname);
  7418. srand(time(NULL) + (intptr_t)userdata);
  7419. while (42) {
  7420. struct timeval timeout;
  7421. int sel_ret;
  7422. fd_set rd;
  7423. char *s;
  7424. int sock;
  7425. if (unlikely(!pool->has_stratum))
  7426. break;
  7427. /* Check to see whether we need to maintain this connection
  7428. * indefinitely or just bring it up when we switch to this
  7429. * pool */
  7430. while (true)
  7431. {
  7432. sock = pool->sock;
  7433. if (sock == INVSOCK)
  7434. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7435. pool->pool_no);
  7436. else
  7437. if (!sock_full(pool) && !cnx_needed(pool))
  7438. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7439. pool->pool_no);
  7440. else
  7441. break;
  7442. suspend_stratum(pool);
  7443. clear_stratum_shares(pool);
  7444. clear_pool_work(pool);
  7445. wait_lpcurrent(pool);
  7446. if (!restart_stratum(pool)) {
  7447. pool_died(pool);
  7448. while (!restart_stratum(pool)) {
  7449. if (pool->removed)
  7450. goto out;
  7451. cgsleep_ms(30000);
  7452. }
  7453. }
  7454. }
  7455. FD_ZERO(&rd);
  7456. FD_SET(sock, &rd);
  7457. timeout.tv_sec = 120;
  7458. timeout.tv_usec = 0;
  7459. /* If we fail to receive any notify messages for 2 minutes we
  7460. * assume the connection has been dropped and treat this pool
  7461. * as dead */
  7462. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7463. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7464. s = NULL;
  7465. } else
  7466. s = recv_line(pool);
  7467. if (!s) {
  7468. if (!pool->has_stratum)
  7469. break;
  7470. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7471. pool->getfail_occasions++;
  7472. total_go++;
  7473. mutex_lock(&pool->stratum_lock);
  7474. pool->stratum_active = pool->stratum_notify = false;
  7475. pool->sock = INVSOCK;
  7476. mutex_unlock(&pool->stratum_lock);
  7477. /* If the socket to our stratum pool disconnects, all
  7478. * submissions need to be discarded or resent. */
  7479. if (!supports_resume(pool))
  7480. clear_stratum_shares(pool);
  7481. else
  7482. resubmit_stratum_shares(pool);
  7483. clear_pool_work(pool);
  7484. if (pool == current_pool())
  7485. restart_threads();
  7486. if (restart_stratum(pool))
  7487. continue;
  7488. shutdown_stratum(pool);
  7489. pool_died(pool);
  7490. break;
  7491. }
  7492. /* Check this pool hasn't died while being a backup pool and
  7493. * has not had its idle flag cleared */
  7494. stratum_resumed(pool);
  7495. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7496. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7497. free(s);
  7498. if (pool->swork.clean) {
  7499. struct work *work = make_work();
  7500. /* Generate a single work item to update the current
  7501. * block database */
  7502. pool->swork.clean = false;
  7503. gen_stratum_work(pool, work);
  7504. /* Try to extract block height from coinbase scriptSig */
  7505. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7506. unsigned char cb_height_sz;
  7507. cb_height_sz = bin_height[-1];
  7508. if (cb_height_sz == 3) {
  7509. // FIXME: The block number will overflow this by AD 2173
  7510. uint32_t block_id = ((uint32_t*)work->data)[1];
  7511. uint32_t height = 0;
  7512. memcpy(&height, bin_height, 3);
  7513. height = le32toh(height);
  7514. have_block_height(block_id, height);
  7515. }
  7516. pool->swork.work_restart_id =
  7517. ++pool->work_restart_id;
  7518. pool_update_work_restart_time(pool);
  7519. if (test_work_current(work)) {
  7520. /* Only accept a work update if this stratum
  7521. * connection is from the current pool */
  7522. struct pool * const cp = current_pool();
  7523. if (pool == cp)
  7524. restart_threads();
  7525. applog(
  7526. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7527. "Stratum from pool %d requested work update", pool->pool_no);
  7528. } else
  7529. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7530. free_work(work);
  7531. }
  7532. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7533. // More than 4 timmills past since requested transactions
  7534. timer_unset(&pool->swork.tv_transparency);
  7535. pool_set_opaque(pool, true);
  7536. }
  7537. }
  7538. out:
  7539. return NULL;
  7540. }
  7541. static void init_stratum_thread(struct pool *pool)
  7542. {
  7543. have_longpoll = true;
  7544. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7545. quit(1, "Failed to create stratum thread");
  7546. }
  7547. static void *longpoll_thread(void *userdata);
  7548. static bool stratum_works(struct pool *pool)
  7549. {
  7550. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7551. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7552. return false;
  7553. if (pool->stratum_active)
  7554. return true;
  7555. if (!initiate_stratum(pool))
  7556. return false;
  7557. return true;
  7558. }
  7559. static bool pool_active(struct pool *pool, bool pinging)
  7560. {
  7561. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7562. bool ret = false;
  7563. json_t *val;
  7564. CURL *curl;
  7565. int rolltime;
  7566. char *rpc_req;
  7567. struct work *work;
  7568. enum pool_protocol proto;
  7569. if (pool->stratum_init)
  7570. return pool->stratum_active;
  7571. timer_set_now(&tv_now);
  7572. if (pool->idle)
  7573. {
  7574. if (timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7575. return false;
  7576. }
  7577. else
  7578. if (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, &tv_now) < 60)
  7579. return true;
  7580. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7581. /* This is the central point we activate stratum when we can */
  7582. curl = curl_easy_init();
  7583. if (unlikely(!curl)) {
  7584. applog(LOG_ERR, "CURL initialisation failed");
  7585. return false;
  7586. }
  7587. if (!(want_gbt || want_getwork))
  7588. goto nohttp;
  7589. work = make_work();
  7590. /* Probe for GBT support on first pass */
  7591. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7592. tryagain:
  7593. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7594. work->pool = pool;
  7595. if (!rpc_req)
  7596. goto out;
  7597. pool->probed = false;
  7598. cgtime(&tv_getwork);
  7599. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7600. true, false, &rolltime, pool, false);
  7601. cgtime(&tv_getwork_reply);
  7602. free(rpc_req);
  7603. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7604. * and if so, switch to that in preference to getwork if it works */
  7605. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7606. if (!pool->has_stratum) {
  7607. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7608. if (!pool->rpc_url)
  7609. pool->rpc_url = strdup(pool->stratum_url);
  7610. pool->has_stratum = true;
  7611. }
  7612. free_work(work);
  7613. if (val)
  7614. json_decref(val);
  7615. retry_stratum:
  7616. curl_easy_cleanup(curl);
  7617. /* We create the stratum thread for each pool just after
  7618. * successful authorisation. Once the init flag has been set
  7619. * we never unset it and the stratum thread is responsible for
  7620. * setting/unsetting the active flag */
  7621. bool init = pool_tset(pool, &pool->stratum_init);
  7622. if (!init) {
  7623. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7624. if (ret)
  7625. {
  7626. detect_algo = 2;
  7627. init_stratum_thread(pool);
  7628. }
  7629. else
  7630. {
  7631. pool_tclear(pool, &pool->stratum_init);
  7632. pool->tv_idle = tv_getwork_reply;
  7633. }
  7634. return ret;
  7635. }
  7636. return pool->stratum_active;
  7637. }
  7638. else if (pool->has_stratum)
  7639. shutdown_stratum(pool);
  7640. if (val) {
  7641. bool rc;
  7642. json_t *res;
  7643. res = json_object_get(val, "result");
  7644. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7645. goto badwork;
  7646. work->rolltime = rolltime;
  7647. rc = work_decode(pool, work, val);
  7648. if (rc) {
  7649. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7650. pool->pool_no, pool->rpc_url);
  7651. work->pool = pool;
  7652. copy_time(&work->tv_getwork, &tv_getwork);
  7653. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7654. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7655. calc_diff(work, 0);
  7656. update_last_work(work);
  7657. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7658. stage_work(work);
  7659. total_getworks++;
  7660. pool->getwork_requested++;
  7661. ret = true;
  7662. cgtime(&pool->tv_idle);
  7663. } else {
  7664. badwork:
  7665. json_decref(val);
  7666. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7667. pool->pool_no, pool->rpc_url);
  7668. pool->proto = proto = pool_protocol_fallback(proto);
  7669. if (PLP_NONE != proto)
  7670. goto tryagain;
  7671. pool->tv_idle = tv_getwork_reply;
  7672. free_work(work);
  7673. goto out;
  7674. }
  7675. json_decref(val);
  7676. if (proto != pool->proto) {
  7677. pool->proto = proto;
  7678. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7679. }
  7680. if (pool->lp_url)
  7681. goto out;
  7682. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7683. const struct blktmpl_longpoll_req *lp;
  7684. if (work->tr && (lp = blktmpl_get_longpoll(work->tr->tmpl))) {
  7685. // NOTE: work_decode takes care of lp id
  7686. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7687. if (!pool->lp_url)
  7688. {
  7689. ret = false;
  7690. goto out;
  7691. }
  7692. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7693. }
  7694. else
  7695. if (pool->hdr_path && want_getwork) {
  7696. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7697. if (!pool->lp_url)
  7698. {
  7699. ret = false;
  7700. goto out;
  7701. }
  7702. pool->lp_proto = PLP_GETWORK;
  7703. } else
  7704. pool->lp_url = NULL;
  7705. if (want_longpoll && !pool->lp_started) {
  7706. pool->lp_started = true;
  7707. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7708. quit(1, "Failed to create pool longpoll thread");
  7709. }
  7710. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7711. pool->proto = proto;
  7712. goto tryagain;
  7713. } else {
  7714. pool->tv_idle = tv_getwork_reply;
  7715. free_work(work);
  7716. nohttp:
  7717. /* If we failed to parse a getwork, this could be a stratum
  7718. * url without the prefix stratum+tcp:// so let's check it */
  7719. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7720. pool->has_stratum = true;
  7721. goto retry_stratum;
  7722. }
  7723. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7724. pool->pool_no, pool->rpc_url);
  7725. if (!pinging)
  7726. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7727. }
  7728. out:
  7729. curl_easy_cleanup(curl);
  7730. return ret;
  7731. }
  7732. static void pool_resus(struct pool *pool)
  7733. {
  7734. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7735. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7736. else
  7737. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7738. }
  7739. static struct work *hash_pop(void)
  7740. {
  7741. struct work *work = NULL, *tmp;
  7742. int hc;
  7743. struct timespec ts;
  7744. retry:
  7745. mutex_lock(stgd_lock);
  7746. while (!HASH_COUNT(staged_work))
  7747. {
  7748. if (unlikely(staged_full))
  7749. {
  7750. if (likely(opt_queue < 10 + mining_threads))
  7751. {
  7752. ++opt_queue;
  7753. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7754. }
  7755. else
  7756. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7757. staged_full = false; // Let it fill up before triggering an underrun again
  7758. no_work = true;
  7759. }
  7760. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7761. pthread_cond_signal(&gws_cond);
  7762. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7763. {
  7764. run_cmd(cmd_idle);
  7765. pthread_cond_signal(&gws_cond);
  7766. pthread_cond_wait(&getq->cond, stgd_lock);
  7767. }
  7768. }
  7769. no_work = false;
  7770. hc = HASH_COUNT(staged_work);
  7771. /* Find clone work if possible, to allow masters to be reused */
  7772. if (hc > staged_rollable) {
  7773. HASH_ITER(hh, staged_work, work, tmp) {
  7774. if (!work_rollable(work))
  7775. break;
  7776. }
  7777. } else
  7778. work = staged_work;
  7779. if (can_roll(work) && should_roll(work))
  7780. {
  7781. // Instead of consuming it, force it to be cloned and grab the clone
  7782. mutex_unlock(stgd_lock);
  7783. clone_available();
  7784. goto retry;
  7785. }
  7786. HASH_DEL(staged_work, work);
  7787. if (work_rollable(work))
  7788. staged_rollable--;
  7789. /* Signal the getwork scheduler to look for more work */
  7790. pthread_cond_signal(&gws_cond);
  7791. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7792. pthread_cond_signal(&getq->cond);
  7793. mutex_unlock(stgd_lock);
  7794. work->pool->last_work_time = time(NULL);
  7795. cgtime(&work->pool->tv_last_work_time);
  7796. return work;
  7797. }
  7798. /* Clones work by rolling it if possible, and returning a clone instead of the
  7799. * original work item which gets staged again to possibly be rolled again in
  7800. * the future */
  7801. static struct work *clone_work(struct work *work)
  7802. {
  7803. int mrs = mining_threads + opt_queue - total_staged();
  7804. struct work *work_clone;
  7805. bool cloned;
  7806. if (mrs < 1)
  7807. return work;
  7808. cloned = false;
  7809. work_clone = make_clone(work);
  7810. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7811. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7812. stage_work(work_clone);
  7813. roll_work(work);
  7814. work_clone = make_clone(work);
  7815. /* Roll it again to prevent duplicates should this be used
  7816. * directly later on */
  7817. roll_work(work);
  7818. cloned = true;
  7819. }
  7820. if (cloned) {
  7821. stage_work(work);
  7822. return work_clone;
  7823. }
  7824. free_work(work_clone);
  7825. return work;
  7826. }
  7827. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7828. {
  7829. unsigned char hash1[32];
  7830. sha256(data, len, hash1);
  7831. sha256(hash1, 32, hash);
  7832. }
  7833. /* PDiff 1 is a 256 bit unsigned integer of
  7834. * 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  7835. * so we use a big endian 32 bit unsigned integer positioned at the Nth byte to
  7836. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7837. static void pdiff_target_leadzero(void * const target_p, double diff)
  7838. {
  7839. uint8_t *target = target_p;
  7840. diff *= 0x100000000;
  7841. int skip = log2(diff) / 8;
  7842. if (skip)
  7843. {
  7844. if (skip > 0x1c)
  7845. skip = 0x1c;
  7846. diff /= pow(0x100, skip);
  7847. memset(target, 0, skip);
  7848. }
  7849. uint32_t n = 0xffffffff;
  7850. n = (double)n / diff;
  7851. n = htobe32(n);
  7852. memcpy(&target[skip], &n, sizeof(n));
  7853. memset(&target[skip + sizeof(n)], 0xff, 32 - (skip + sizeof(n)));
  7854. }
  7855. void set_target_to_pdiff(void * const dest_target, const double pdiff)
  7856. {
  7857. unsigned char rtarget[32];
  7858. pdiff_target_leadzero(rtarget, pdiff);
  7859. swab256(dest_target, rtarget);
  7860. if (opt_debug) {
  7861. char htarget[65];
  7862. bin2hex(htarget, rtarget, 32);
  7863. applog(LOG_DEBUG, "Generated target %s", htarget);
  7864. }
  7865. }
  7866. void set_target_to_bdiff(void * const dest_target, const double bdiff)
  7867. {
  7868. set_target_to_pdiff(dest_target, bdiff_to_pdiff(bdiff));
  7869. }
  7870. void _test_target(void * const funcp, const char * const funcname, const bool little_endian, const void * const expectp, const double diff)
  7871. {
  7872. uint8_t bufr[32], buf[32], expectr[32], expect[32];
  7873. int off;
  7874. void (*func)(void *, double) = funcp;
  7875. func(little_endian ? bufr : buf, diff);
  7876. if (little_endian)
  7877. swab256(buf, bufr);
  7878. swap32tobe(expect, expectp, 256/32);
  7879. // Fuzzy comparison: the first 32 bits set must match, and the actual target must be >= the expected
  7880. for (off = 0; off < 28 && !buf[off]; ++off)
  7881. {}
  7882. if (memcmp(&buf[off], &expect[off], 4))
  7883. {
  7884. testfail: ;
  7885. char hexbuf[65], expectbuf[65];
  7886. bin2hex(hexbuf, buf, 32);
  7887. bin2hex(expectbuf, expect, 32);
  7888. applogr(, LOG_WARNING, "%s test failed: diff %g got %s (expected %s)",
  7889. funcname, diff, hexbuf, expectbuf);
  7890. }
  7891. if (!little_endian)
  7892. swab256(bufr, buf);
  7893. swab256(expectr, expect);
  7894. if (!hash_target_check(expectr, bufr))
  7895. goto testfail;
  7896. }
  7897. #define TEST_TARGET(func, le, expect, diff) \
  7898. _test_target(func, #func, le, expect, diff)
  7899. void test_target()
  7900. {
  7901. uint32_t expect[8] = {0};
  7902. // bdiff 1 should be exactly 00000000ffff0000000006f29cfd29510a6caee84634e86a57257cf03152537f due to floating-point imprecision (pdiff1 / 1.0000152590218966)
  7903. expect[0] = 0x0000ffff;
  7904. TEST_TARGET(set_target_to_bdiff, true, expect, 1./0x10000);
  7905. expect[0] = 0;
  7906. expect[1] = 0xffff0000;
  7907. TEST_TARGET(set_target_to_bdiff, true, expect, 1);
  7908. expect[1] >>= 1;
  7909. TEST_TARGET(set_target_to_bdiff, true, expect, 2);
  7910. expect[1] >>= 3;
  7911. TEST_TARGET(set_target_to_bdiff, true, expect, 0x10);
  7912. expect[1] >>= 4;
  7913. TEST_TARGET(set_target_to_bdiff, true, expect, 0x100);
  7914. memset(&expect[1], '\xff', 28);
  7915. expect[0] = 0x0000ffff;
  7916. TEST_TARGET(set_target_to_pdiff, true, expect, 1./0x10000);
  7917. expect[0] = 0;
  7918. TEST_TARGET(set_target_to_pdiff, true, expect, 1);
  7919. expect[1] >>= 1;
  7920. TEST_TARGET(set_target_to_pdiff, true, expect, 2);
  7921. expect[1] >>= 3;
  7922. TEST_TARGET(set_target_to_pdiff, true, expect, 0x10);
  7923. expect[1] >>= 4;
  7924. TEST_TARGET(set_target_to_pdiff, true, expect, 0x100);
  7925. }
  7926. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7927. {
  7928. *dst = *src;
  7929. if (dst->tr)
  7930. tmpl_incref(dst->tr);
  7931. dst->nonce1 = maybe_strdup(src->nonce1);
  7932. dst->job_id = maybe_strdup(src->job_id);
  7933. bytes_cpy(&dst->coinbase, &src->coinbase);
  7934. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7935. }
  7936. void stratum_work_clean(struct stratum_work * const swork)
  7937. {
  7938. if (swork->tr)
  7939. tmpl_decref(swork->tr);
  7940. free(swork->nonce1);
  7941. free(swork->job_id);
  7942. bytes_free(&swork->coinbase);
  7943. bytes_free(&swork->merkle_bin);
  7944. }
  7945. bool pool_has_usable_swork(const struct pool * const pool)
  7946. {
  7947. if (opt_benchmark)
  7948. return true;
  7949. if (pool->swork.tr)
  7950. {
  7951. // GBT
  7952. struct timeval tv_now;
  7953. timer_set_now(&tv_now);
  7954. return blkmk_time_left(pool->swork.tr->tmpl, tv_now.tv_sec);
  7955. }
  7956. return pool->stratum_notify;
  7957. }
  7958. /* Generates stratum based work based on the most recent notify information
  7959. * from the pool. This will keep generating work while a pool is down so we use
  7960. * other means to detect when the pool has died in stratum_thread */
  7961. static void gen_stratum_work(struct pool *pool, struct work *work)
  7962. {
  7963. clean_work(work);
  7964. cg_wlock(&pool->data_lock);
  7965. pool->swork.data_lock_p = &pool->data_lock;
  7966. const int n2size = pool->swork.n2size;
  7967. bytes_resize(&work->nonce2, n2size);
  7968. if (pool->nonce2sz < n2size)
  7969. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, n2size - pool->nonce2sz);
  7970. memcpy(bytes_buf(&work->nonce2),
  7971. #ifdef WORDS_BIGENDIAN
  7972. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7973. &((char*)&pool->nonce2)[pool->nonce2off],
  7974. #else
  7975. &pool->nonce2,
  7976. #endif
  7977. pool->nonce2sz);
  7978. pool->nonce2++;
  7979. work->pool = pool;
  7980. work->work_restart_id = pool->swork.work_restart_id;
  7981. gen_stratum_work2(work, &pool->swork);
  7982. cgtime(&work->tv_staged);
  7983. }
  7984. void gen_stratum_work2(struct work *work, struct stratum_work *swork)
  7985. {
  7986. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7987. uint8_t *merkle_bin;
  7988. uint32_t *data32, *swap32;
  7989. int i;
  7990. /* Generate coinbase */
  7991. coinbase = bytes_buf(&swork->coinbase);
  7992. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7993. /* Downgrade to a read lock to read off the variables */
  7994. if (swork->data_lock_p)
  7995. cg_dwlock(swork->data_lock_p);
  7996. /* Generate merkle root */
  7997. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7998. memcpy(merkle_sha, merkle_root, 32);
  7999. merkle_bin = bytes_buf(&swork->merkle_bin);
  8000. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  8001. memcpy(merkle_sha + 32, merkle_bin, 32);
  8002. gen_hash(merkle_sha, merkle_root, 64);
  8003. memcpy(merkle_sha, merkle_root, 32);
  8004. }
  8005. data32 = (uint32_t *)merkle_sha;
  8006. swap32 = (uint32_t *)merkle_root;
  8007. flip32(swap32, data32);
  8008. memcpy(&work->data[0], swork->header1, 36);
  8009. memcpy(&work->data[36], merkle_root, 32);
  8010. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  8011. memcpy(&work->data[72], swork->diffbits, 4);
  8012. memset(&work->data[76], 0, 4); // nonce
  8013. memcpy(&work->data[80], workpadding_bin, 48);
  8014. work->ntime_roll_limits = swork->ntime_roll_limits;
  8015. /* Copy parameters required for share submission */
  8016. memcpy(work->target, swork->target, sizeof(work->target));
  8017. work->job_id = maybe_strdup(swork->job_id);
  8018. work->nonce1 = maybe_strdup(swork->nonce1);
  8019. if (swork->data_lock_p)
  8020. cg_runlock(swork->data_lock_p);
  8021. if (opt_debug)
  8022. {
  8023. char header[161];
  8024. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  8025. bin2hex(header, work->data, 80);
  8026. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  8027. applog(LOG_DEBUG, "Generated stratum header %s", header);
  8028. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  8029. }
  8030. calc_midstate(work);
  8031. local_work++;
  8032. work->stratum = true;
  8033. work->blk.nonce = 0;
  8034. work->id = total_work++;
  8035. work->longpoll = false;
  8036. work->getwork_mode = GETWORK_MODE_STRATUM;
  8037. calc_diff(work, 0);
  8038. }
  8039. void request_work(struct thr_info *thr)
  8040. {
  8041. struct cgpu_info *cgpu = thr->cgpu;
  8042. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8043. /* Tell the watchdog thread this thread is waiting on getwork and
  8044. * should not be restarted */
  8045. thread_reportout(thr);
  8046. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  8047. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8048. {
  8049. if (proc->threads)
  8050. break;
  8051. thread_reportout(proc->thr[0]);
  8052. }
  8053. cgtime(&dev_stats->_get_start);
  8054. }
  8055. // FIXME: Make this non-blocking (and remove HACK above)
  8056. struct work *get_work(struct thr_info *thr)
  8057. {
  8058. const int thr_id = thr->id;
  8059. struct cgpu_info *cgpu = thr->cgpu;
  8060. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8061. struct cgminer_stats *pool_stats;
  8062. struct timeval tv_get;
  8063. struct work *work = NULL;
  8064. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  8065. while (!work) {
  8066. work = hash_pop();
  8067. if (stale_work(work, false)) {
  8068. staged_full = false; // It wasn't really full, since it was stale :(
  8069. discard_work(work);
  8070. work = NULL;
  8071. wake_gws();
  8072. }
  8073. }
  8074. last_getwork = time(NULL);
  8075. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  8076. cgpu->proc_repr, work->id, thr_id);
  8077. work->thr_id = thr_id;
  8078. thread_reportin(thr);
  8079. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  8080. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8081. {
  8082. if (proc->threads)
  8083. break;
  8084. thread_reportin(proc->thr[0]);
  8085. }
  8086. work->mined = true;
  8087. work->blk.nonce = 0;
  8088. cgtime(&tv_get);
  8089. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  8090. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  8091. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  8092. dev_stats->getwork_wait_max = tv_get;
  8093. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  8094. dev_stats->getwork_wait_min = tv_get;
  8095. ++dev_stats->getwork_calls;
  8096. pool_stats = &(work->pool->cgminer_stats);
  8097. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  8098. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  8099. pool_stats->getwork_wait_max = tv_get;
  8100. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  8101. pool_stats->getwork_wait_min = tv_get;
  8102. ++pool_stats->getwork_calls;
  8103. if (work->work_difficulty < 1)
  8104. {
  8105. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  8106. {
  8107. if (cgpu->min_nonce_diff - work->work_difficulty > 1./0x10000000)
  8108. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  8109. cgpu->proc_repr);
  8110. work->nonce_diff = cgpu->min_nonce_diff;
  8111. }
  8112. else
  8113. work->nonce_diff = work->work_difficulty;
  8114. }
  8115. else
  8116. work->nonce_diff = 1;
  8117. return work;
  8118. }
  8119. static
  8120. void _submit_work_async(struct work *work)
  8121. {
  8122. applog(LOG_DEBUG, "Pushing submit work to work thread");
  8123. if (opt_benchmark)
  8124. {
  8125. json_t * const jn = json_null();
  8126. rebuild_hash(work);
  8127. share_result(jn, jn, jn, work, false, "");
  8128. free_work(work);
  8129. return;
  8130. }
  8131. mutex_lock(&submitting_lock);
  8132. ++total_submitting;
  8133. DL_APPEND(submit_waiting, work);
  8134. mutex_unlock(&submitting_lock);
  8135. notifier_wake(submit_waiting_notifier);
  8136. }
  8137. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  8138. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  8139. {
  8140. if (tv_work_found)
  8141. copy_time(&work->tv_work_found, tv_work_found);
  8142. _submit_work_async(work);
  8143. }
  8144. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  8145. {
  8146. struct cgpu_info * const cgpu = thr->cgpu;
  8147. if (bad_nonce_p)
  8148. {
  8149. if (bad_nonce_p == UNKNOWN_NONCE)
  8150. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  8151. cgpu->proc_repr);
  8152. else
  8153. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  8154. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  8155. }
  8156. mutex_lock(&stats_lock);
  8157. hw_errors++;
  8158. ++cgpu->hw_errors;
  8159. if (bad_nonce_p)
  8160. {
  8161. total_bad_diff1 += nonce_diff;
  8162. cgpu->bad_diff1 += nonce_diff;
  8163. }
  8164. mutex_unlock(&stats_lock);
  8165. if (thr->cgpu->drv->hw_error)
  8166. thr->cgpu->drv->hw_error(thr);
  8167. }
  8168. static
  8169. bool test_hash(const void * const phash, const float diff)
  8170. {
  8171. const uint32_t * const hash = phash;
  8172. if (diff >= 1.)
  8173. // FIXME: > 1 should check more
  8174. return !hash[7];
  8175. const uint32_t Htarg = (uint32_t)(0x100000000 * diff) - 1;
  8176. const uint32_t tmp_hash7 = le32toh(hash[7]);
  8177. applog(LOG_DEBUG, "htarget %08lx hash %08lx",
  8178. (long unsigned int)Htarg,
  8179. (long unsigned int)tmp_hash7);
  8180. return (tmp_hash7 <= Htarg);
  8181. }
  8182. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  8183. {
  8184. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8185. *work_nonce = htole32(nonce);
  8186. #ifdef USE_SCRYPT
  8187. if (opt_scrypt)
  8188. scrypt_hash_data(work->hash, work->data);
  8189. else
  8190. #endif
  8191. hash_data(work->hash, work->data);
  8192. if (!test_hash(work->hash, work->nonce_diff))
  8193. return TNR_BAD;
  8194. if (checktarget && !hash_target_check_v(work->hash, work->target))
  8195. {
  8196. bool high_hash = true;
  8197. struct pool * const pool = work->pool;
  8198. if (pool->stratum_active)
  8199. {
  8200. // Some stratum pools are buggy and expect difficulty changes to be immediate retroactively, so if the target has changed, check and submit just in case
  8201. if (memcmp(pool->swork.target, work->target, sizeof(work->target)))
  8202. {
  8203. applog(LOG_DEBUG, "Stratum pool %u target has changed since work job issued, checking that too",
  8204. pool->pool_no);
  8205. if (hash_target_check_v(work->hash, pool->swork.target))
  8206. high_hash = false;
  8207. }
  8208. }
  8209. if (high_hash)
  8210. return TNR_HIGH;
  8211. }
  8212. return TNR_GOOD;
  8213. }
  8214. /* Returns true if nonce for work was a valid share */
  8215. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  8216. {
  8217. return submit_noffset_nonce(thr, work, nonce, 0);
  8218. }
  8219. /* Allows drivers to submit work items where the driver has changed the ntime
  8220. * value by noffset. Must be only used with a work protocol that does not ntime
  8221. * roll itself intrinsically to generate work (eg stratum). We do not touch
  8222. * the original work struct, but the copy of it only. */
  8223. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  8224. int noffset)
  8225. {
  8226. struct work *work = make_work();
  8227. _copy_work(work, work_in, noffset);
  8228. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8229. struct timeval tv_work_found;
  8230. enum test_nonce2_result res;
  8231. bool ret = true;
  8232. thread_reportout(thr);
  8233. cgtime(&tv_work_found);
  8234. *work_nonce = htole32(nonce);
  8235. work->thr_id = thr->id;
  8236. /* Do one last check before attempting to submit the work */
  8237. /* Side effect: sets work->data and work->hash for us */
  8238. res = test_nonce2(work, nonce);
  8239. if (unlikely(res == TNR_BAD))
  8240. {
  8241. inc_hw_errors(thr, work, nonce);
  8242. ret = false;
  8243. goto out;
  8244. }
  8245. mutex_lock(&stats_lock);
  8246. total_diff1 += work->nonce_diff;
  8247. thr ->cgpu->diff1 += work->nonce_diff;
  8248. work->pool->diff1 += work->nonce_diff;
  8249. thr->cgpu->last_device_valid_work = time(NULL);
  8250. mutex_unlock(&stats_lock);
  8251. if (noncelog_file)
  8252. noncelog(work);
  8253. if (res == TNR_HIGH)
  8254. {
  8255. // Share above target, normal
  8256. /* Check the diff of the share, even if it didn't reach the
  8257. * target, just to set the best share value if it's higher. */
  8258. share_diff(work);
  8259. goto out;
  8260. }
  8261. submit_work_async2(work, &tv_work_found);
  8262. work = NULL; // Taken by submit_work_async2
  8263. out:
  8264. if (work)
  8265. free_work(work);
  8266. thread_reportin(thr);
  8267. return ret;
  8268. }
  8269. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8270. {
  8271. if (wdiff->tv_sec > opt_scantime ||
  8272. work->blk.nonce >= 0xfffffffe - hashes ||
  8273. hashes >= 0xfffffffe ||
  8274. stale_work(work, false))
  8275. return true;
  8276. return false;
  8277. }
  8278. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8279. {
  8280. struct cgpu_info *proc = thr->cgpu;
  8281. if (proc->threads > 1)
  8282. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8283. else
  8284. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8285. }
  8286. // Called by asynchronous minerloops, when they find their processor should be disabled
  8287. void mt_disable_start(struct thr_info *mythr)
  8288. {
  8289. struct cgpu_info *cgpu = mythr->cgpu;
  8290. struct device_drv *drv = cgpu->drv;
  8291. if (drv->thread_disable)
  8292. drv->thread_disable(mythr);
  8293. hashmeter2(mythr);
  8294. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8295. mythr->rolling = mythr->cgpu->rolling = 0;
  8296. thread_reportout(mythr);
  8297. mythr->_mt_disable_called = true;
  8298. }
  8299. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8300. * the driver tells us it's full so that it may extract the work item using
  8301. * the get_queued() function which adds it to the hashtable on
  8302. * cgpu->queued_work. */
  8303. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8304. {
  8305. thread_reportout(mythr);
  8306. do {
  8307. bool need_work;
  8308. /* Do this lockless just to know if we need more unqueued work. */
  8309. need_work = (!cgpu->unqueued_work);
  8310. /* get_work is a blocking function so do it outside of lock
  8311. * to prevent deadlocks with other locks. */
  8312. if (need_work) {
  8313. struct work *work = get_work(mythr);
  8314. wr_lock(&cgpu->qlock);
  8315. /* Check we haven't grabbed work somehow between
  8316. * checking and picking up the lock. */
  8317. if (likely(!cgpu->unqueued_work))
  8318. cgpu->unqueued_work = work;
  8319. else
  8320. need_work = false;
  8321. wr_unlock(&cgpu->qlock);
  8322. if (unlikely(!need_work))
  8323. discard_work(work);
  8324. }
  8325. /* The queue_full function should be used by the driver to
  8326. * actually place work items on the physical device if it
  8327. * does have a queue. */
  8328. } while (drv->queue_full && !drv->queue_full(cgpu));
  8329. }
  8330. /* Add a work item to a cgpu's queued hashlist */
  8331. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8332. {
  8333. cgpu->queued_count++;
  8334. HASH_ADD_INT(cgpu->queued_work, id, work);
  8335. }
  8336. /* This function is for retrieving one work item from the unqueued pointer and
  8337. * adding it to the hashtable of queued work. Code using this function must be
  8338. * able to handle NULL as a return which implies there is no work available. */
  8339. struct work *get_queued(struct cgpu_info *cgpu)
  8340. {
  8341. struct work *work = NULL;
  8342. wr_lock(&cgpu->qlock);
  8343. if (cgpu->unqueued_work) {
  8344. work = cgpu->unqueued_work;
  8345. if (unlikely(stale_work(work, false))) {
  8346. discard_work(work);
  8347. work = NULL;
  8348. wake_gws();
  8349. } else
  8350. __add_queued(cgpu, work);
  8351. cgpu->unqueued_work = NULL;
  8352. }
  8353. wr_unlock(&cgpu->qlock);
  8354. return work;
  8355. }
  8356. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8357. {
  8358. wr_lock(&cgpu->qlock);
  8359. __add_queued(cgpu, work);
  8360. wr_unlock(&cgpu->qlock);
  8361. }
  8362. /* Get fresh work and add it to cgpu's queued hashlist */
  8363. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8364. {
  8365. struct work *work = get_work(thr);
  8366. add_queued(cgpu, work);
  8367. return work;
  8368. }
  8369. /* This function is for finding an already queued work item in the
  8370. * given que hashtable. Code using this function must be able
  8371. * to handle NULL as a return which implies there is no matching work.
  8372. * The calling function must lock access to the que if it is required.
  8373. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8374. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8375. {
  8376. struct work *work, *tmp, *ret = NULL;
  8377. HASH_ITER(hh, que, work, tmp) {
  8378. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8379. memcmp(work->data + offset, data, datalen) == 0) {
  8380. ret = work;
  8381. break;
  8382. }
  8383. }
  8384. return ret;
  8385. }
  8386. /* This function is for finding an already queued work item in the
  8387. * device's queued_work hashtable. Code using this function must be able
  8388. * to handle NULL as a return which implies there is no matching work.
  8389. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8390. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8391. {
  8392. struct work *ret;
  8393. rd_lock(&cgpu->qlock);
  8394. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8395. rd_unlock(&cgpu->qlock);
  8396. return ret;
  8397. }
  8398. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8399. {
  8400. struct work *work, *ret = NULL;
  8401. rd_lock(&cgpu->qlock);
  8402. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8403. if (work)
  8404. ret = copy_work(work);
  8405. rd_unlock(&cgpu->qlock);
  8406. return ret;
  8407. }
  8408. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8409. {
  8410. cgpu->queued_count--;
  8411. HASH_DEL(cgpu->queued_work, work);
  8412. }
  8413. /* This function should be used by queued device drivers when they're sure
  8414. * the work struct is no longer in use. */
  8415. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8416. {
  8417. wr_lock(&cgpu->qlock);
  8418. __work_completed(cgpu, work);
  8419. wr_unlock(&cgpu->qlock);
  8420. free_work(work);
  8421. }
  8422. /* Combines find_queued_work_bymidstate and work_completed in one function
  8423. * withOUT destroying the work so the driver must free it. */
  8424. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8425. {
  8426. struct work *work;
  8427. wr_lock(&cgpu->qlock);
  8428. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8429. if (work)
  8430. __work_completed(cgpu, work);
  8431. wr_unlock(&cgpu->qlock);
  8432. return work;
  8433. }
  8434. static void flush_queue(struct cgpu_info *cgpu)
  8435. {
  8436. struct work *work = NULL;
  8437. wr_lock(&cgpu->qlock);
  8438. work = cgpu->unqueued_work;
  8439. cgpu->unqueued_work = NULL;
  8440. wr_unlock(&cgpu->qlock);
  8441. if (work) {
  8442. free_work(work);
  8443. applog(LOG_DEBUG, "Discarded queued work item");
  8444. }
  8445. }
  8446. /* This version of hash work is for devices that are fast enough to always
  8447. * perform a full nonce range and need a queue to maintain the device busy.
  8448. * Work creation and destruction is not done from within this function
  8449. * directly. */
  8450. void hash_queued_work(struct thr_info *mythr)
  8451. {
  8452. const long cycle = opt_log_interval / 5 ? : 1;
  8453. struct timeval tv_start = {0, 0}, tv_end;
  8454. struct cgpu_info *cgpu = mythr->cgpu;
  8455. struct device_drv *drv = cgpu->drv;
  8456. const int thr_id = mythr->id;
  8457. int64_t hashes_done = 0;
  8458. if (unlikely(cgpu->deven != DEV_ENABLED))
  8459. mt_disable(mythr);
  8460. while (likely(!cgpu->shutdown)) {
  8461. struct timeval diff;
  8462. int64_t hashes;
  8463. fill_queue(mythr, cgpu, drv, thr_id);
  8464. thread_reportin(mythr);
  8465. hashes = drv->scanwork(mythr);
  8466. /* Reset the bool here in case the driver looks for it
  8467. * synchronously in the scanwork loop. */
  8468. mythr->work_restart = false;
  8469. if (unlikely(hashes == -1 )) {
  8470. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8471. cgpu->deven = DEV_DISABLED;
  8472. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8473. mt_disable(mythr);
  8474. }
  8475. hashes_done += hashes;
  8476. cgtime(&tv_end);
  8477. timersub(&tv_end, &tv_start, &diff);
  8478. if (diff.tv_sec >= cycle) {
  8479. hashmeter(thr_id, &diff, hashes_done);
  8480. hashes_done = 0;
  8481. copy_time(&tv_start, &tv_end);
  8482. }
  8483. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8484. mt_disable(mythr);
  8485. if (unlikely(mythr->work_restart)) {
  8486. flush_queue(cgpu);
  8487. if (drv->flush_work)
  8488. drv->flush_work(cgpu);
  8489. }
  8490. }
  8491. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8492. }
  8493. // Called by minerloop, when it is re-enabling a processor
  8494. void mt_disable_finish(struct thr_info *mythr)
  8495. {
  8496. struct device_drv *drv = mythr->cgpu->drv;
  8497. thread_reportin(mythr);
  8498. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8499. if (drv->thread_enable)
  8500. drv->thread_enable(mythr);
  8501. mythr->_mt_disable_called = false;
  8502. }
  8503. // Called by synchronous minerloops, when they find their processor should be disabled
  8504. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8505. void mt_disable(struct thr_info *mythr)
  8506. {
  8507. const struct cgpu_info * const cgpu = mythr->cgpu;
  8508. mt_disable_start(mythr);
  8509. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8510. do {
  8511. notifier_read(mythr->notifier);
  8512. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8513. mt_disable_finish(mythr);
  8514. }
  8515. enum {
  8516. STAT_SLEEP_INTERVAL = 1,
  8517. STAT_CTR_INTERVAL = 10000000,
  8518. FAILURE_INTERVAL = 30,
  8519. };
  8520. /* Stage another work item from the work returned in a longpoll */
  8521. 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)
  8522. {
  8523. bool rc;
  8524. work->rolltime = rolltime;
  8525. rc = work_decode(pool, work, val);
  8526. if (unlikely(!rc)) {
  8527. applog(LOG_ERR, "Could not convert longpoll data to work");
  8528. free_work(work);
  8529. return;
  8530. }
  8531. total_getworks++;
  8532. pool->getwork_requested++;
  8533. work->pool = pool;
  8534. copy_time(&work->tv_getwork, tv_lp);
  8535. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8536. calc_diff(work, 0);
  8537. if (pool->enabled == POOL_REJECTING)
  8538. work->mandatory = true;
  8539. work->longpoll = true;
  8540. work->getwork_mode = GETWORK_MODE_LP;
  8541. update_last_work(work);
  8542. /* We'll be checking this work item twice, but we already know it's
  8543. * from a new block so explicitly force the new block detection now
  8544. * rather than waiting for it to hit the stage thread. This also
  8545. * allows testwork to know whether LP discovered the block or not. */
  8546. test_work_current(work);
  8547. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8548. * the longpoll work from a pool that has been rejecting shares as a
  8549. * way to detect when the pool has recovered.
  8550. */
  8551. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8552. free_work(work);
  8553. return;
  8554. }
  8555. work = clone_work(work);
  8556. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8557. stage_work(work);
  8558. applog(LOG_DEBUG, "Converted longpoll data to work");
  8559. }
  8560. /* If we want longpoll, enable it for the chosen default pool, or, if
  8561. * the pool does not support longpoll, find the first one that does
  8562. * and use its longpoll support */
  8563. static
  8564. struct pool *_select_longpoll_pool(struct pool *cp, bool(*func)(struct pool *))
  8565. {
  8566. int i;
  8567. if (func(cp))
  8568. return cp;
  8569. for (i = 0; i < total_pools; i++) {
  8570. struct pool *pool = pools[i];
  8571. if (func(pool))
  8572. return pool;
  8573. }
  8574. return NULL;
  8575. }
  8576. /* This will make the longpoll thread wait till it's the current pool, or it
  8577. * has been flagged as rejecting, before attempting to open any connections.
  8578. */
  8579. static void wait_lpcurrent(struct pool *pool)
  8580. {
  8581. while (!cnx_needed(pool))
  8582. {
  8583. pool->lp_active = false;
  8584. mutex_lock(&lp_lock);
  8585. pthread_cond_wait(&lp_cond, &lp_lock);
  8586. mutex_unlock(&lp_lock);
  8587. }
  8588. }
  8589. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8590. struct pool *pool = vpool;
  8591. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8592. pool->lp_socket = sock;
  8593. return sock;
  8594. }
  8595. static void *longpoll_thread(void *userdata)
  8596. {
  8597. struct pool *cp = (struct pool *)userdata;
  8598. /* This *pool is the source of the actual longpoll, not the pool we've
  8599. * tied it to */
  8600. struct timeval start, reply, end;
  8601. struct pool *pool = NULL;
  8602. char threadname[20];
  8603. CURL *curl = NULL;
  8604. int failures = 0;
  8605. char *lp_url;
  8606. int rolltime;
  8607. #ifndef HAVE_PTHREAD_CANCEL
  8608. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8609. #endif
  8610. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8611. RenameThread(threadname);
  8612. curl = curl_easy_init();
  8613. if (unlikely(!curl)) {
  8614. applog(LOG_ERR, "CURL initialisation failed");
  8615. return NULL;
  8616. }
  8617. retry_pool:
  8618. pool = select_longpoll_pool(cp);
  8619. if (!pool) {
  8620. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8621. while (!pool) {
  8622. cgsleep_ms(60000);
  8623. pool = select_longpoll_pool(cp);
  8624. }
  8625. }
  8626. if (pool->has_stratum) {
  8627. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8628. cp->rpc_url, pool->rpc_url);
  8629. goto out;
  8630. }
  8631. /* Any longpoll from any pool is enough for this to be true */
  8632. have_longpoll = true;
  8633. wait_lpcurrent(cp);
  8634. {
  8635. lp_url = pool->lp_url;
  8636. if (cp == pool)
  8637. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8638. else
  8639. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8640. }
  8641. while (42) {
  8642. json_t *val, *soval;
  8643. struct work *work = make_work();
  8644. char *lpreq;
  8645. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8646. work->pool = pool;
  8647. if (!lpreq)
  8648. {
  8649. free_work(work);
  8650. goto lpfail;
  8651. }
  8652. wait_lpcurrent(cp);
  8653. cgtime(&start);
  8654. /* Longpoll connections can be persistent for a very long time
  8655. * and any number of issues could have come up in the meantime
  8656. * so always establish a fresh connection instead of relying on
  8657. * a persistent one. */
  8658. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8659. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8660. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8661. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8662. lpreq, false, true, &rolltime, pool, false);
  8663. pool->lp_socket = CURL_SOCKET_BAD;
  8664. cgtime(&reply);
  8665. free(lpreq);
  8666. if (likely(val)) {
  8667. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8668. if (soval)
  8669. pool->submit_old = json_is_true(soval);
  8670. else
  8671. pool->submit_old = false;
  8672. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8673. failures = 0;
  8674. json_decref(val);
  8675. } else {
  8676. /* Some pools regularly drop the longpoll request so
  8677. * only see this as longpoll failure if it happens
  8678. * immediately and just restart it the rest of the
  8679. * time. */
  8680. cgtime(&end);
  8681. free_work(work);
  8682. if (end.tv_sec - start.tv_sec <= 30)
  8683. {
  8684. if (failures == 1)
  8685. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8686. lpfail:
  8687. cgsleep_ms(30000);
  8688. }
  8689. }
  8690. if (pool != cp) {
  8691. pool = select_longpoll_pool(cp);
  8692. if (pool->has_stratum) {
  8693. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8694. cp->rpc_url, pool->rpc_url);
  8695. break;
  8696. }
  8697. if (unlikely(!pool))
  8698. goto retry_pool;
  8699. }
  8700. if (unlikely(pool->removed))
  8701. break;
  8702. }
  8703. out:
  8704. pool->lp_active = false;
  8705. curl_easy_cleanup(curl);
  8706. return NULL;
  8707. }
  8708. static void stop_longpoll(void)
  8709. {
  8710. int i;
  8711. want_longpoll = false;
  8712. for (i = 0; i < total_pools; ++i)
  8713. {
  8714. struct pool *pool = pools[i];
  8715. if (unlikely(!pool->lp_started))
  8716. continue;
  8717. pool->lp_started = false;
  8718. pthread_cancel(pool->longpoll_thread);
  8719. }
  8720. have_longpoll = false;
  8721. }
  8722. static void start_longpoll(void)
  8723. {
  8724. int i;
  8725. want_longpoll = true;
  8726. for (i = 0; i < total_pools; ++i)
  8727. {
  8728. struct pool *pool = pools[i];
  8729. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8730. continue;
  8731. pool->lp_started = true;
  8732. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8733. quit(1, "Failed to create pool longpoll thread");
  8734. }
  8735. }
  8736. void reinit_device(struct cgpu_info *cgpu)
  8737. {
  8738. if (cgpu->drv->reinit_device)
  8739. cgpu->drv->reinit_device(cgpu);
  8740. }
  8741. static struct timeval rotate_tv;
  8742. /* We reap curls if they are unused for over a minute */
  8743. static void reap_curl(struct pool *pool)
  8744. {
  8745. struct curl_ent *ent, *iter;
  8746. struct timeval now;
  8747. int reaped = 0;
  8748. cgtime(&now);
  8749. mutex_lock(&pool->pool_lock);
  8750. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8751. if (pool->curls < 2)
  8752. break;
  8753. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8754. reaped++;
  8755. pool->curls--;
  8756. LL_DELETE(pool->curllist, ent);
  8757. curl_easy_cleanup(ent->curl);
  8758. free(ent);
  8759. }
  8760. }
  8761. mutex_unlock(&pool->pool_lock);
  8762. if (reaped)
  8763. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8764. }
  8765. static void *watchpool_thread(void __maybe_unused *userdata)
  8766. {
  8767. int intervals = 0;
  8768. #ifndef HAVE_PTHREAD_CANCEL
  8769. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8770. #endif
  8771. RenameThread("watchpool");
  8772. while (42) {
  8773. struct timeval now;
  8774. int i;
  8775. if (++intervals > 20)
  8776. intervals = 0;
  8777. cgtime(&now);
  8778. for (i = 0; i < total_pools; i++) {
  8779. struct pool *pool = pools[i];
  8780. if (!opt_benchmark)
  8781. reap_curl(pool);
  8782. /* Get a rolling utility per pool over 10 mins */
  8783. if (intervals > 19) {
  8784. int shares = pool->diff1 - pool->last_shares;
  8785. pool->last_shares = pool->diff1;
  8786. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8787. pool->shares = pool->utility;
  8788. }
  8789. if (pool->enabled == POOL_DISABLED)
  8790. continue;
  8791. /* Don't start testing any pools if the test threads
  8792. * from startup are still doing their first attempt. */
  8793. if (unlikely(pool->testing)) {
  8794. pthread_join(pool->test_thread, NULL);
  8795. }
  8796. /* Test pool is idle once every minute */
  8797. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8798. cgtime(&pool->tv_idle);
  8799. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8800. pool_resus(pool);
  8801. }
  8802. /* Only switch pools if the failback pool has been
  8803. * alive for more than 5 minutes (default) to prevent
  8804. * intermittently failing pools from being used. */
  8805. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8806. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  8807. if (opt_fail_switch_delay % 60)
  8808. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  8809. pool->pool_no, pool->rpc_url,
  8810. opt_fail_switch_delay,
  8811. (opt_fail_switch_delay == 1 ? "" : "s"));
  8812. else
  8813. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  8814. pool->pool_no, pool->rpc_url,
  8815. opt_fail_switch_delay / 60,
  8816. (opt_fail_switch_delay == 60 ? "" : "s"));
  8817. switch_pools(NULL);
  8818. }
  8819. }
  8820. if (current_pool()->idle)
  8821. switch_pools(NULL);
  8822. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8823. cgtime(&rotate_tv);
  8824. switch_pools(NULL);
  8825. }
  8826. cgsleep_ms(30000);
  8827. }
  8828. return NULL;
  8829. }
  8830. void mt_enable(struct thr_info *thr)
  8831. {
  8832. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8833. notifier_wake(thr->notifier);
  8834. }
  8835. void proc_enable(struct cgpu_info *cgpu)
  8836. {
  8837. int j;
  8838. cgpu->deven = DEV_ENABLED;
  8839. for (j = cgpu->threads ?: 1; j--; )
  8840. mt_enable(cgpu->thr[j]);
  8841. }
  8842. #define device_recovered(cgpu) proc_enable(cgpu)
  8843. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8844. {
  8845. struct string_elist *setstr_elist;
  8846. const char *p, *p2;
  8847. char replybuf[0x2000];
  8848. size_t L;
  8849. DL_FOREACH(opt_set_device_list, setstr_elist)
  8850. {
  8851. const char * const setstr = setstr_elist->string;
  8852. p = strchr(setstr, ':');
  8853. if (!p)
  8854. p = setstr;
  8855. {
  8856. L = p - setstr;
  8857. char pattern[L + 1];
  8858. if (L)
  8859. memcpy(pattern, setstr, L);
  8860. pattern[L] = '\0';
  8861. if (!cgpu_match(pattern, cgpu))
  8862. continue;
  8863. }
  8864. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8865. cgpu->proc_repr, __func__, setstr);
  8866. if (p[0] == ':')
  8867. ++p;
  8868. p2 = strchr(p, '=');
  8869. if (!p2)
  8870. {
  8871. L = strlen(p);
  8872. p2 = "";
  8873. }
  8874. else
  8875. {
  8876. L = p2 - p;
  8877. ++p2;
  8878. }
  8879. char opt[L + 1];
  8880. if (L)
  8881. memcpy(opt, p, L);
  8882. opt[L] = '\0';
  8883. L = strlen(p2);
  8884. char setval[L + 1];
  8885. if (L)
  8886. memcpy(setval, p2, L);
  8887. setval[L] = '\0';
  8888. enum bfg_set_device_replytype success;
  8889. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8890. switch (success)
  8891. {
  8892. case SDR_OK:
  8893. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8894. cgpu->proc_repr, setstr,
  8895. p ? ": " : "", p ?: "");
  8896. break;
  8897. case SDR_ERR:
  8898. case SDR_HELP:
  8899. case SDR_UNKNOWN:
  8900. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8901. cgpu->proc_repr, setstr, p);
  8902. break;
  8903. case SDR_AUTO:
  8904. case SDR_NOSUPP:
  8905. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8906. cgpu->proc_repr, setstr);
  8907. }
  8908. }
  8909. cgpu->already_set_defaults = true;
  8910. }
  8911. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8912. {
  8913. struct device_drv dummy_drv = *drv;
  8914. struct cgpu_info dummy_cgpu = {
  8915. .drv = &dummy_drv,
  8916. .device = &dummy_cgpu,
  8917. .device_id = -1,
  8918. .proc_id = -1,
  8919. .device_data = userp,
  8920. .device_path = devpath,
  8921. .dev_serial = serial,
  8922. };
  8923. strcpy(dummy_cgpu.proc_repr, drv->name);
  8924. switch (mode)
  8925. {
  8926. case 0:
  8927. dummy_drv.set_device = datap;
  8928. break;
  8929. case 1:
  8930. dummy_drv.set_device = NULL;
  8931. dummy_cgpu.set_device_funcs = datap;
  8932. break;
  8933. }
  8934. cgpu_set_defaults(&dummy_cgpu);
  8935. }
  8936. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8937. * the screen at regular intervals, and restarts threads if they appear to have
  8938. * died. */
  8939. #define WATCHDOG_SICK_TIME 60
  8940. #define WATCHDOG_DEAD_TIME 600
  8941. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8942. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8943. static void *watchdog_thread(void __maybe_unused *userdata)
  8944. {
  8945. const unsigned int interval = WATCHDOG_INTERVAL;
  8946. struct timeval zero_tv;
  8947. #ifndef HAVE_PTHREAD_CANCEL
  8948. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8949. #endif
  8950. RenameThread("watchdog");
  8951. memset(&zero_tv, 0, sizeof(struct timeval));
  8952. cgtime(&rotate_tv);
  8953. while (1) {
  8954. int i;
  8955. struct timeval now;
  8956. sleep(interval);
  8957. discard_stale();
  8958. hashmeter(-1, &zero_tv, 0);
  8959. #ifdef HAVE_CURSES
  8960. const int ts = total_staged();
  8961. if (curses_active_locked()) {
  8962. change_logwinsize();
  8963. curses_print_status(ts);
  8964. _refresh_devstatus(true);
  8965. touchwin(logwin);
  8966. wrefresh(logwin);
  8967. unlock_curses();
  8968. }
  8969. #endif
  8970. cgtime(&now);
  8971. if (!sched_paused && !should_run()) {
  8972. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8973. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8974. if (!schedstart.enable) {
  8975. quit(0, "Terminating execution as planned");
  8976. break;
  8977. }
  8978. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8979. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8980. sched_paused = true;
  8981. rd_lock(&mining_thr_lock);
  8982. for (i = 0; i < mining_threads; i++)
  8983. mining_thr[i]->pause = true;
  8984. rd_unlock(&mining_thr_lock);
  8985. } else if (sched_paused && should_run()) {
  8986. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8987. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8988. if (schedstop.enable)
  8989. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8990. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8991. sched_paused = false;
  8992. for (i = 0; i < mining_threads; i++) {
  8993. struct thr_info *thr;
  8994. thr = get_thread(i);
  8995. thr->pause = false;
  8996. }
  8997. for (i = 0; i < total_devices; ++i)
  8998. {
  8999. struct cgpu_info *cgpu = get_devices(i);
  9000. /* Don't touch disabled devices */
  9001. if (cgpu->deven == DEV_DISABLED)
  9002. continue;
  9003. proc_enable(cgpu);
  9004. }
  9005. }
  9006. for (i = 0; i < total_devices; ++i) {
  9007. struct cgpu_info *cgpu = get_devices(i);
  9008. if (!cgpu->disable_watchdog)
  9009. bfg_watchdog(cgpu, &now);
  9010. }
  9011. }
  9012. return NULL;
  9013. }
  9014. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  9015. {
  9016. struct thr_info *thr = cgpu->thr[0];
  9017. enum dev_enable *denable;
  9018. char *dev_str = cgpu->proc_repr;
  9019. if (likely(drv_ready(cgpu)))
  9020. {
  9021. if (unlikely(!cgpu->already_set_defaults))
  9022. cgpu_set_defaults(cgpu);
  9023. if (cgpu->drv->get_stats)
  9024. cgpu->drv->get_stats(cgpu);
  9025. }
  9026. denable = &cgpu->deven;
  9027. if (cgpu->drv->watchdog)
  9028. cgpu->drv->watchdog(cgpu, tvp_now);
  9029. /* Thread is disabled */
  9030. if (*denable == DEV_DISABLED)
  9031. return;
  9032. else
  9033. if (*denable == DEV_RECOVER_ERR) {
  9034. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  9035. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  9036. dev_str);
  9037. if (cgpu->reinit_backoff < 300)
  9038. cgpu->reinit_backoff *= 2;
  9039. device_recovered(cgpu);
  9040. }
  9041. return;
  9042. }
  9043. else
  9044. if (*denable == DEV_RECOVER) {
  9045. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  9046. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  9047. dev_str);
  9048. device_recovered(cgpu);
  9049. }
  9050. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9051. return;
  9052. }
  9053. else
  9054. if (cgpu->temp > cgpu->cutofftemp)
  9055. {
  9056. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  9057. dev_str, (int)cgpu->temp);
  9058. *denable = DEV_RECOVER;
  9059. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9060. run_cmd(cmd_idle);
  9061. }
  9062. if (thr->getwork) {
  9063. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  9064. int thrid;
  9065. bool cgpu_idle = true;
  9066. thr->rolling = 0;
  9067. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  9068. if (!cgpu->thr[thrid]->getwork)
  9069. cgpu_idle = false;
  9070. if (cgpu_idle) {
  9071. cgpu->rolling = 0;
  9072. cgpu->status = LIFE_WAIT;
  9073. }
  9074. }
  9075. return;
  9076. }
  9077. else if (cgpu->status == LIFE_WAIT)
  9078. cgpu->status = LIFE_WELL;
  9079. #ifdef WANT_CPUMINE
  9080. if (!strcmp(cgpu->drv->dname, "cpu"))
  9081. return;
  9082. #endif
  9083. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  9084. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  9085. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  9086. cgpu->status = LIFE_WELL;
  9087. cgpu->device_last_well = time(NULL);
  9088. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  9089. thr->rolling = cgpu->rolling = 0;
  9090. cgpu->status = LIFE_SICK;
  9091. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  9092. cgtime(&thr->sick);
  9093. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  9094. run_cmd(cmd_sick);
  9095. if (opt_restart && cgpu->drv->reinit_device) {
  9096. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  9097. reinit_device(cgpu);
  9098. }
  9099. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  9100. cgpu->status = LIFE_DEAD;
  9101. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  9102. cgtime(&thr->sick);
  9103. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  9104. run_cmd(cmd_dead);
  9105. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  9106. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  9107. /* Attempt to restart a GPU that's sick or dead once every minute */
  9108. cgtime(&thr->sick);
  9109. if (opt_restart)
  9110. reinit_device(cgpu);
  9111. }
  9112. }
  9113. static void log_print_status(struct cgpu_info *cgpu)
  9114. {
  9115. char logline[255];
  9116. get_statline(logline, sizeof(logline), cgpu);
  9117. applog(LOG_WARNING, "%s", logline);
  9118. }
  9119. void print_summary(void)
  9120. {
  9121. struct timeval diff;
  9122. int hours, mins, secs, i;
  9123. double utility, efficiency = 0.0;
  9124. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  9125. int pool_secs;
  9126. timersub(&total_tv_end, &total_tv_start, &diff);
  9127. hours = diff.tv_sec / 3600;
  9128. mins = (diff.tv_sec % 3600) / 60;
  9129. secs = diff.tv_sec % 60;
  9130. utility = total_accepted / total_secs * 60;
  9131. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  9132. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  9133. applog(LOG_WARNING, "Started at %s", datestamp);
  9134. if (total_pools == 1)
  9135. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  9136. #ifdef WANT_CPUMINE
  9137. if (opt_n_threads > 0)
  9138. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  9139. #endif
  9140. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  9141. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  9142. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  9143. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  9144. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  9145. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  9146. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  9147. total_rejected, total_stale,
  9148. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  9149. );
  9150. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  9151. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  9152. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  9153. applog(LOG_WARNING, "Network transfer: %s (%s)",
  9154. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9155. (float)total_bytes_rcvd,
  9156. (float)total_bytes_sent),
  9157. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9158. (float)(total_bytes_rcvd / total_secs),
  9159. (float)(total_bytes_sent / total_secs)));
  9160. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  9161. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  9162. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  9163. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  9164. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  9165. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  9166. if (total_pools > 1) {
  9167. for (i = 0; i < total_pools; i++) {
  9168. struct pool *pool = pools[i];
  9169. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  9170. if (pool->solved)
  9171. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  9172. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  9173. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  9174. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  9175. pool->rejected, pool->stale_shares,
  9176. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  9177. );
  9178. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  9179. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  9180. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  9181. applog(LOG_WARNING, " Network transfer: %s (%s)",
  9182. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9183. (float)pool->cgminer_pool_stats.net_bytes_received,
  9184. (float)pool->cgminer_pool_stats.net_bytes_sent),
  9185. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9186. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  9187. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  9188. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  9189. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  9190. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  9191. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  9192. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  9193. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  9194. }
  9195. }
  9196. if (opt_quit_summary != BQS_NONE)
  9197. {
  9198. if (opt_quit_summary == BQS_DETAILED)
  9199. include_serial_in_statline = true;
  9200. applog(LOG_WARNING, "Summary of per device statistics:\n");
  9201. for (i = 0; i < total_devices; ++i) {
  9202. struct cgpu_info *cgpu = get_devices(i);
  9203. if (!cgpu->proc_id)
  9204. {
  9205. // Device summary line
  9206. opt_show_procs = false;
  9207. log_print_status(cgpu);
  9208. opt_show_procs = true;
  9209. }
  9210. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  9211. log_print_status(cgpu);
  9212. }
  9213. }
  9214. if (opt_shares) {
  9215. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  9216. if (opt_shares > total_diff_accepted)
  9217. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  9218. }
  9219. applog(LOG_WARNING, " ");
  9220. fflush(stderr);
  9221. fflush(stdout);
  9222. }
  9223. void _bfg_clean_up(bool restarting)
  9224. {
  9225. #ifdef HAVE_OPENCL
  9226. clear_adl(nDevs);
  9227. #endif
  9228. #ifdef HAVE_LIBUSB
  9229. if (likely(have_libusb))
  9230. libusb_exit(NULL);
  9231. #endif
  9232. cgtime(&total_tv_end);
  9233. #ifdef WIN32
  9234. timeEndPeriod(1);
  9235. #endif
  9236. if (!restarting) {
  9237. /* Attempting to disable curses or print a summary during a
  9238. * restart can lead to a deadlock. */
  9239. #ifdef HAVE_CURSES
  9240. disable_curses();
  9241. #endif
  9242. if (!opt_realquiet && successful_connect)
  9243. print_summary();
  9244. }
  9245. if (opt_n_threads > 0)
  9246. free(cpus);
  9247. curl_global_cleanup();
  9248. #ifdef WIN32
  9249. WSACleanup();
  9250. #endif
  9251. }
  9252. void _quit(int status)
  9253. {
  9254. if (status) {
  9255. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9256. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9257. int *p = NULL;
  9258. // NOTE debugger can bypass with: p = &p
  9259. *p = status; // Segfault, hopefully dumping core
  9260. }
  9261. }
  9262. #if defined(unix) || defined(__APPLE__)
  9263. if (forkpid > 0) {
  9264. kill(forkpid, SIGTERM);
  9265. forkpid = 0;
  9266. }
  9267. #endif
  9268. exit(status);
  9269. }
  9270. #ifdef HAVE_CURSES
  9271. char *curses_input(const char *query)
  9272. {
  9273. char *input;
  9274. echo();
  9275. input = malloc(255);
  9276. if (!input)
  9277. quit(1, "Failed to malloc input");
  9278. leaveok(logwin, false);
  9279. wlogprint("%s:\n", query);
  9280. wgetnstr(logwin, input, 255);
  9281. if (!strlen(input))
  9282. {
  9283. free(input);
  9284. input = NULL;
  9285. }
  9286. leaveok(logwin, true);
  9287. noecho();
  9288. return input;
  9289. }
  9290. #endif
  9291. static bool pools_active = false;
  9292. static void *test_pool_thread(void *arg)
  9293. {
  9294. struct pool *pool = (struct pool *)arg;
  9295. if (pool_active(pool, false)) {
  9296. pool_tset(pool, &pool->lagging);
  9297. pool_tclear(pool, &pool->idle);
  9298. bool first_pool = false;
  9299. cg_wlock(&control_lock);
  9300. if (!pools_active) {
  9301. currentpool = pool;
  9302. if (pool->pool_no != 0)
  9303. first_pool = true;
  9304. pools_active = true;
  9305. }
  9306. cg_wunlock(&control_lock);
  9307. if (unlikely(first_pool))
  9308. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9309. else
  9310. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9311. switch_pools(NULL);
  9312. } else
  9313. pool_died(pool);
  9314. pool->testing = false;
  9315. return NULL;
  9316. }
  9317. /* Always returns true that the pool details were added unless we are not
  9318. * live, implying this is the only pool being added, so if no pools are
  9319. * active it returns false. */
  9320. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9321. {
  9322. size_t siz;
  9323. pool->rpc_url = url;
  9324. pool->rpc_user = user;
  9325. pool->rpc_pass = pass;
  9326. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9327. pool->rpc_userpass = malloc(siz);
  9328. if (!pool->rpc_userpass)
  9329. quit(1, "Failed to malloc userpass");
  9330. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9331. pool->testing = true;
  9332. pool->idle = true;
  9333. enable_pool(pool);
  9334. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9335. if (!live) {
  9336. pthread_join(pool->test_thread, NULL);
  9337. return pools_active;
  9338. }
  9339. return true;
  9340. }
  9341. #ifdef HAVE_CURSES
  9342. static bool input_pool(bool live)
  9343. {
  9344. char *url = NULL, *user = NULL, *pass = NULL;
  9345. struct pool *pool;
  9346. bool ret = false;
  9347. immedok(logwin, true);
  9348. wlogprint("Input server details.\n");
  9349. url = curses_input("URL");
  9350. if (!url)
  9351. goto out;
  9352. user = curses_input("Username");
  9353. if (!user)
  9354. goto out;
  9355. pass = curses_input("Password");
  9356. if (!pass)
  9357. pass = calloc(1, 1);
  9358. pool = add_pool();
  9359. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9360. strncmp(url, "https://", 8)) {
  9361. char *httpinput;
  9362. httpinput = malloc(256);
  9363. if (!httpinput)
  9364. quit(1, "Failed to malloc httpinput");
  9365. strcpy(httpinput, "http://");
  9366. strncat(httpinput, url, 248);
  9367. free(url);
  9368. url = httpinput;
  9369. }
  9370. ret = add_pool_details(pool, live, url, user, pass);
  9371. out:
  9372. immedok(logwin, false);
  9373. if (!ret) {
  9374. if (url)
  9375. free(url);
  9376. if (user)
  9377. free(user);
  9378. if (pass)
  9379. free(pass);
  9380. }
  9381. return ret;
  9382. }
  9383. #endif
  9384. #if defined(unix) || defined(__APPLE__)
  9385. static void fork_monitor()
  9386. {
  9387. // Make a pipe: [readFD, writeFD]
  9388. int pfd[2];
  9389. int r = pipe(pfd);
  9390. if (r < 0) {
  9391. perror("pipe - failed to create pipe for --monitor");
  9392. exit(1);
  9393. }
  9394. // Make stderr write end of pipe
  9395. fflush(stderr);
  9396. r = dup2(pfd[1], 2);
  9397. if (r < 0) {
  9398. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9399. exit(1);
  9400. }
  9401. r = close(pfd[1]);
  9402. if (r < 0) {
  9403. perror("close - failed to close write end of pipe for --monitor");
  9404. exit(1);
  9405. }
  9406. // Don't allow a dying monitor to kill the main process
  9407. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9408. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9409. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9410. perror("signal - failed to edit signal mask for --monitor");
  9411. exit(1);
  9412. }
  9413. // Fork a child process
  9414. forkpid = fork();
  9415. if (forkpid < 0) {
  9416. perror("fork - failed to fork child process for --monitor");
  9417. exit(1);
  9418. }
  9419. // Child: launch monitor command
  9420. if (0 == forkpid) {
  9421. // Make stdin read end of pipe
  9422. r = dup2(pfd[0], 0);
  9423. if (r < 0) {
  9424. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9425. exit(1);
  9426. }
  9427. close(pfd[0]);
  9428. if (r < 0) {
  9429. perror("close - in child, failed to close read end of pipe for --monitor");
  9430. exit(1);
  9431. }
  9432. // Launch user specified command
  9433. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9434. perror("execl - in child failed to exec user specified command for --monitor");
  9435. exit(1);
  9436. }
  9437. // Parent: clean up unused fds and bail
  9438. r = close(pfd[0]);
  9439. if (r < 0) {
  9440. perror("close - failed to close read end of pipe for --monitor");
  9441. exit(1);
  9442. }
  9443. }
  9444. #endif // defined(unix)
  9445. #ifdef HAVE_CURSES
  9446. #ifdef USE_UNICODE
  9447. static
  9448. wchar_t select_unicode_char(const wchar_t *opt)
  9449. {
  9450. for ( ; *opt; ++opt)
  9451. if (iswprint(*opt))
  9452. return *opt;
  9453. return '?';
  9454. }
  9455. #endif
  9456. void enable_curses(void) {
  9457. int x;
  9458. __maybe_unused int y;
  9459. lock_curses();
  9460. if (curses_active) {
  9461. unlock_curses();
  9462. return;
  9463. }
  9464. #ifdef USE_UNICODE
  9465. if (use_unicode)
  9466. {
  9467. setlocale(LC_CTYPE, "");
  9468. if (iswprint(0xb0))
  9469. have_unicode_degrees = true;
  9470. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9471. }
  9472. #endif
  9473. mainwin = initscr();
  9474. start_color();
  9475. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9476. if (ERR != use_default_colors())
  9477. default_bgcolor = -1;
  9478. #endif
  9479. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9480. {
  9481. menu_attr = COLOR_PAIR(1);
  9482. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9483. attr_bad |= COLOR_PAIR(2);
  9484. }
  9485. keypad(mainwin, true);
  9486. getmaxyx(mainwin, y, x);
  9487. statuswin = newwin(logstart, x, 0, 0);
  9488. leaveok(statuswin, true);
  9489. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9490. // We resize the window later anyway, so just start it off at 1 :)
  9491. logwin = newwin(1, 0, logcursor, 0);
  9492. idlok(logwin, true);
  9493. scrollok(logwin, true);
  9494. leaveok(logwin, true);
  9495. cbreak();
  9496. noecho();
  9497. nonl();
  9498. curses_active = true;
  9499. statusy = logstart;
  9500. unlock_curses();
  9501. }
  9502. #endif
  9503. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9504. #ifndef WANT_CPUMINE
  9505. struct device_drv cpu_drv;
  9506. struct device_drv cpu_drv = {
  9507. .name = "CPU",
  9508. };
  9509. #endif
  9510. static int cgminer_id_count = 0;
  9511. static int device_line_id_count;
  9512. void register_device(struct cgpu_info *cgpu)
  9513. {
  9514. cgpu->deven = DEV_ENABLED;
  9515. wr_lock(&devices_lock);
  9516. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9517. wr_unlock(&devices_lock);
  9518. if (!cgpu->proc_id)
  9519. cgpu->device_line_id = device_line_id_count++;
  9520. mining_threads += cgpu->threads ?: 1;
  9521. #ifdef HAVE_CURSES
  9522. adj_width(mining_threads, &dev_width);
  9523. #endif
  9524. rwlock_init(&cgpu->qlock);
  9525. cgpu->queued_work = NULL;
  9526. }
  9527. struct _cgpu_devid_counter {
  9528. char name[4];
  9529. int lastid;
  9530. UT_hash_handle hh;
  9531. };
  9532. void renumber_cgpu(struct cgpu_info *cgpu)
  9533. {
  9534. static struct _cgpu_devid_counter *devids = NULL;
  9535. struct _cgpu_devid_counter *d;
  9536. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9537. if (d)
  9538. cgpu->device_id = ++d->lastid;
  9539. else {
  9540. d = malloc(sizeof(*d));
  9541. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9542. cgpu->device_id = d->lastid = 0;
  9543. HASH_ADD_STR(devids, name, d);
  9544. }
  9545. // Build repr strings
  9546. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9547. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9548. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9549. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9550. const int lpcount = cgpu->procs;
  9551. if (lpcount > 1)
  9552. {
  9553. int ns;
  9554. struct cgpu_info *slave;
  9555. int lpdigits = 1;
  9556. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9557. ++lpdigits;
  9558. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9559. cgpu->proc_repr[5 + lpdigits] = '\0';
  9560. ns = strlen(cgpu->proc_repr_ns);
  9561. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9562. slave = cgpu;
  9563. for (int i = 1; i < lpcount; ++i)
  9564. {
  9565. slave = slave->next_proc;
  9566. strcpy(slave->proc_repr, cgpu->proc_repr);
  9567. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9568. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9569. {
  9570. slave->proc_repr_ns[ns + y] =
  9571. slave->proc_repr[5 + y] += (x % 26);
  9572. }
  9573. }
  9574. }
  9575. }
  9576. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9577. {
  9578. sha256(buffer, length, digest);
  9579. return true;
  9580. }
  9581. static
  9582. int drv_algo_check(const struct device_drv * const drv)
  9583. {
  9584. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9585. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9586. return (algos & algomatch);
  9587. }
  9588. #ifndef HAVE_PTHREAD_CANCEL
  9589. extern void setup_pthread_cancel_workaround();
  9590. extern struct sigaction pcwm_orig_term_handler;
  9591. #endif
  9592. bool bfg_need_detect_rescan;
  9593. extern void probe_device(struct lowlevel_device_info *);
  9594. static void schedule_rescan(const struct timeval *);
  9595. static
  9596. void drv_detect_all()
  9597. {
  9598. bool rescanning = false;
  9599. rescan:
  9600. bfg_need_detect_rescan = false;
  9601. #ifdef HAVE_BFG_LOWLEVEL
  9602. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9603. LL_FOREACH_SAFE(infolist, info, infotmp)
  9604. probe_device(info);
  9605. LL_FOREACH_SAFE(infolist, info, infotmp)
  9606. pthread_join(info->probe_pth, NULL);
  9607. #endif
  9608. struct driver_registration *reg, *tmp;
  9609. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9610. {
  9611. const struct device_drv * const drv = reg->drv;
  9612. if (!(drv_algo_check(drv) && drv->drv_detect))
  9613. continue;
  9614. drv->drv_detect();
  9615. }
  9616. #ifdef HAVE_BFG_LOWLEVEL
  9617. lowlevel_scan_free();
  9618. #endif
  9619. if (bfg_need_detect_rescan)
  9620. {
  9621. if (rescanning)
  9622. {
  9623. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9624. struct timeval tv_when;
  9625. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9626. schedule_rescan(&tv_when);
  9627. }
  9628. else
  9629. {
  9630. rescanning = true;
  9631. applog(LOG_DEBUG, "Device rescan requested");
  9632. goto rescan;
  9633. }
  9634. }
  9635. }
  9636. static
  9637. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9638. {
  9639. struct thr_info *thr;
  9640. int j;
  9641. struct device_drv *api = cgpu->drv;
  9642. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9643. int threadobj = cgpu->threads;
  9644. if (!threadobj)
  9645. // Create a fake thread object to handle hashmeter etc
  9646. threadobj = 1;
  9647. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9648. cgpu->thr[threadobj] = NULL;
  9649. cgpu->status = LIFE_INIT;
  9650. if (opt_devices_enabled_list)
  9651. {
  9652. struct string_elist *enablestr_elist;
  9653. cgpu->deven = DEV_DISABLED;
  9654. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9655. {
  9656. const char * const enablestr = enablestr_elist->string;
  9657. if (cgpu_match(enablestr, cgpu))
  9658. {
  9659. cgpu->deven = DEV_ENABLED;
  9660. break;
  9661. }
  9662. }
  9663. }
  9664. cgpu->max_hashes = 0;
  9665. BFGINIT(cgpu->min_nonce_diff, 1);
  9666. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9667. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9668. // Setup thread structs before starting any of the threads, in case they try to interact
  9669. for (j = 0; j < threadobj; ++j, ++*kp) {
  9670. thr = get_thread(*kp);
  9671. thr->id = *kp;
  9672. thr->cgpu = cgpu;
  9673. thr->device_thread = j;
  9674. thr->work_restart_notifier[1] = INVSOCK;
  9675. thr->mutex_request[1] = INVSOCK;
  9676. thr->_job_transition_in_progress = true;
  9677. timerclear(&thr->tv_morework);
  9678. thr->scanhash_working = true;
  9679. thr->hashes_done = 0;
  9680. timerclear(&thr->tv_hashes_done);
  9681. cgtime(&thr->tv_lastupdate);
  9682. thr->tv_poll.tv_sec = -1;
  9683. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9684. cgpu->thr[j] = thr;
  9685. }
  9686. if (!cgpu->device->threads)
  9687. notifier_init_invalid(cgpu->thr[0]->notifier);
  9688. else
  9689. if (!cgpu->threads)
  9690. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9691. else
  9692. for (j = 0; j < cgpu->threads; ++j)
  9693. {
  9694. thr = cgpu->thr[j];
  9695. notifier_init(thr->notifier);
  9696. }
  9697. }
  9698. static
  9699. void start_cgpu(struct cgpu_info *cgpu)
  9700. {
  9701. struct thr_info *thr;
  9702. int j;
  9703. for (j = 0; j < cgpu->threads; ++j) {
  9704. thr = cgpu->thr[j];
  9705. /* Enable threads for devices set not to mine but disable
  9706. * their queue in case we wish to enable them later */
  9707. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9708. continue;
  9709. thread_reportout(thr);
  9710. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9711. quit(1, "thread %d create failed", thr->id);
  9712. notifier_wake(thr->notifier);
  9713. }
  9714. if (cgpu->deven == DEV_ENABLED)
  9715. proc_enable(cgpu);
  9716. }
  9717. static
  9718. void _scan_serial(void *p)
  9719. {
  9720. const char *s = p;
  9721. struct string_elist *iter, *tmp;
  9722. struct string_elist *orig_scan_devices = scan_devices;
  9723. if (s)
  9724. {
  9725. // Make temporary scan_devices list
  9726. scan_devices = NULL;
  9727. string_elist_add("noauto", &scan_devices);
  9728. add_serial(s);
  9729. }
  9730. drv_detect_all();
  9731. if (s)
  9732. {
  9733. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9734. {
  9735. string_elist_del(&scan_devices, iter);
  9736. }
  9737. scan_devices = orig_scan_devices;
  9738. }
  9739. }
  9740. #ifdef HAVE_BFG_LOWLEVEL
  9741. static
  9742. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9743. {
  9744. if (!(false
  9745. || (info->serial && !strcasecmp(ser, info->serial))
  9746. || (info->path && !strcasecmp(ser, info->path ))
  9747. || (info->devid && !strcasecmp(ser, info->devid ))
  9748. ))
  9749. {
  9750. char *devid = devpath_to_devid(ser);
  9751. if (!devid)
  9752. return false;
  9753. const bool different = strcmp(info->devid, devid);
  9754. free(devid);
  9755. if (different)
  9756. return false;
  9757. }
  9758. return true;
  9759. }
  9760. static
  9761. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9762. {
  9763. struct driver_registration *dreg;
  9764. char dname[dnamelen];
  9765. int i;
  9766. for (i = 0; i < dnamelen; ++i)
  9767. dname[i] = tolower(_dname[i]);
  9768. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9769. if (!dreg)
  9770. {
  9771. for (i = 0; i < dnamelen; ++i)
  9772. dname[i] = toupper(_dname[i]);
  9773. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9774. if (!dreg)
  9775. return NULL;
  9776. }
  9777. if (!drv_algo_check(dreg->drv))
  9778. return NULL;
  9779. return dreg->drv;
  9780. }
  9781. static
  9782. bool _probe_device_do_probe(const struct device_drv * const drv, const struct lowlevel_device_info * const info, bool * const request_rescan_p)
  9783. {
  9784. bfg_probe_result_flags = 0;
  9785. if (drv->lowl_probe(info))
  9786. {
  9787. if (!(bfg_probe_result_flags & BPR_CONTINUE_PROBES))
  9788. return true;
  9789. }
  9790. else
  9791. if (request_rescan_p && opt_hotplug && !(bfg_probe_result_flags & BPR_DONT_RESCAN))
  9792. *request_rescan_p = true;
  9793. return false;
  9794. }
  9795. static
  9796. void *probe_device_thread(void *p)
  9797. {
  9798. struct lowlevel_device_info * const infolist = p;
  9799. struct lowlevel_device_info *info = infolist;
  9800. bool request_rescan = false;
  9801. {
  9802. char threadname[5 + strlen(info->devid) + 1];
  9803. sprintf(threadname, "probe_%s", info->devid);
  9804. RenameThread(threadname);
  9805. }
  9806. // If already in use, ignore
  9807. if (bfg_claim_any(NULL, NULL, info->devid))
  9808. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9809. __func__, info->product);
  9810. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9811. struct string_elist *sd_iter, *sd_tmp;
  9812. struct driver_registration *dreg, *dreg_tmp;
  9813. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9814. {
  9815. const char * const dname = sd_iter->string;
  9816. const char * const colon = strpbrk(dname, ":@");
  9817. if (!(colon && colon != dname))
  9818. continue;
  9819. const char * const ser = &colon[1];
  9820. LL_FOREACH2(infolist, info, same_devid_next)
  9821. {
  9822. if (!_probe_device_match(info, ser))
  9823. continue;
  9824. const size_t dnamelen = (colon - dname);
  9825. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9826. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9827. continue;
  9828. if (_probe_device_do_probe(drv, info, &request_rescan))
  9829. return NULL;
  9830. }
  9831. }
  9832. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9833. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9834. {
  9835. const struct device_drv * const drv = dreg->drv;
  9836. if (!drv_algo_check(drv))
  9837. continue;
  9838. // Check for "noauto" flag
  9839. // NOTE: driver-specific configuration overrides general
  9840. bool doauto = true;
  9841. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9842. {
  9843. const char * const dname = sd_iter->string;
  9844. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9845. const char *colon = strchr(dname, ':');
  9846. if (!colon)
  9847. colon = &dname[-1];
  9848. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9849. continue;
  9850. const ssize_t dnamelen = (colon - dname);
  9851. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9852. continue;
  9853. doauto = (tolower(colon[1]) == 'a');
  9854. if (dnamelen != -1)
  9855. break;
  9856. }
  9857. if (doauto && drv->lowl_match)
  9858. {
  9859. LL_FOREACH2(infolist, info, same_devid_next)
  9860. {
  9861. if (!drv->lowl_match(info))
  9862. continue;
  9863. if (_probe_device_do_probe(drv, info, &request_rescan))
  9864. return NULL;
  9865. }
  9866. }
  9867. }
  9868. // probe driver(s) with 'all' enabled
  9869. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9870. {
  9871. const char * const dname = sd_iter->string;
  9872. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9873. const char * const colon = strchr(dname, ':');
  9874. if (!colon)
  9875. {
  9876. LL_FOREACH2(infolist, info, same_devid_next)
  9877. {
  9878. if (
  9879. #ifdef NEED_BFG_LOWL_VCOM
  9880. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9881. #endif
  9882. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9883. {
  9884. bool dont_rescan = false;
  9885. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9886. {
  9887. const struct device_drv * const drv = dreg->drv;
  9888. if (!drv_algo_check(drv))
  9889. continue;
  9890. if (drv->lowl_probe_by_name_only)
  9891. continue;
  9892. if (!drv->lowl_probe)
  9893. continue;
  9894. if (_probe_device_do_probe(drv, info, NULL))
  9895. return NULL;
  9896. if (bfg_probe_result_flags & BPR_DONT_RESCAN)
  9897. dont_rescan = true;
  9898. }
  9899. if (opt_hotplug && !dont_rescan)
  9900. request_rescan = true;
  9901. break;
  9902. }
  9903. }
  9904. continue;
  9905. }
  9906. if (strcasecmp(&colon[1], "all"))
  9907. continue;
  9908. const size_t dnamelen = (colon - dname);
  9909. LL_FOREACH2(infolist, info, same_devid_next)
  9910. {
  9911. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9912. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9913. continue;
  9914. if (_probe_device_do_probe(drv, info, NULL))
  9915. return NULL;
  9916. }
  9917. }
  9918. // Only actually request a rescan if we never found any cgpu
  9919. if (request_rescan)
  9920. bfg_need_detect_rescan = true;
  9921. return NULL;
  9922. }
  9923. void probe_device(struct lowlevel_device_info * const info)
  9924. {
  9925. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9926. }
  9927. #endif
  9928. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9929. {
  9930. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9931. int devcount, i, mining_threads_new = 0;
  9932. unsigned int k;
  9933. struct cgpu_info *cgpu;
  9934. struct thr_info *thr;
  9935. void *p;
  9936. mutex_lock(&mutex);
  9937. devcount = total_devices;
  9938. addfunc(arg);
  9939. if (!total_devices_new)
  9940. goto out;
  9941. wr_lock(&devices_lock);
  9942. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9943. if (unlikely(!p))
  9944. {
  9945. wr_unlock(&devices_lock);
  9946. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9947. goto out;
  9948. }
  9949. devices = p;
  9950. wr_unlock(&devices_lock);
  9951. for (i = 0; i < total_devices_new; ++i)
  9952. {
  9953. cgpu = devices_new[i];
  9954. mining_threads_new += cgpu->threads ?: 1;
  9955. }
  9956. wr_lock(&mining_thr_lock);
  9957. mining_threads_new += mining_threads;
  9958. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9959. if (unlikely(!p))
  9960. {
  9961. wr_unlock(&mining_thr_lock);
  9962. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9963. goto out;
  9964. }
  9965. mining_thr = p;
  9966. wr_unlock(&mining_thr_lock);
  9967. for (i = mining_threads; i < mining_threads_new; ++i) {
  9968. mining_thr[i] = calloc(1, sizeof(*thr));
  9969. if (!mining_thr[i])
  9970. {
  9971. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9972. for ( ; --i >= mining_threads; )
  9973. free(mining_thr[i]);
  9974. goto out;
  9975. }
  9976. }
  9977. k = mining_threads;
  9978. for (i = 0; i < total_devices_new; ++i)
  9979. {
  9980. cgpu = devices_new[i];
  9981. allocate_cgpu(cgpu, &k);
  9982. }
  9983. for (i = 0; i < total_devices_new; ++i)
  9984. {
  9985. cgpu = devices_new[i];
  9986. start_cgpu(cgpu);
  9987. register_device(cgpu);
  9988. ++total_devices;
  9989. }
  9990. #ifdef HAVE_CURSES
  9991. switch_logsize();
  9992. #endif
  9993. out:
  9994. total_devices_new = 0;
  9995. devcount = total_devices - devcount;
  9996. mutex_unlock(&mutex);
  9997. return devcount;
  9998. }
  9999. int scan_serial(const char *s)
  10000. {
  10001. return create_new_cgpus(_scan_serial, (void*)s);
  10002. }
  10003. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  10004. static bool rescan_active;
  10005. static struct timeval tv_rescan;
  10006. static notifier_t rescan_notifier;
  10007. static
  10008. void *rescan_thread(__maybe_unused void *p)
  10009. {
  10010. pthread_detach(pthread_self());
  10011. RenameThread("rescan");
  10012. struct timeval tv_timeout, tv_now;
  10013. fd_set rfds;
  10014. while (true)
  10015. {
  10016. mutex_lock(&rescan_mutex);
  10017. tv_timeout = tv_rescan;
  10018. if (!timer_isset(&tv_timeout))
  10019. {
  10020. rescan_active = false;
  10021. mutex_unlock(&rescan_mutex);
  10022. break;
  10023. }
  10024. mutex_unlock(&rescan_mutex);
  10025. FD_ZERO(&rfds);
  10026. FD_SET(rescan_notifier[0], &rfds);
  10027. const int maxfd = rescan_notifier[0];
  10028. timer_set_now(&tv_now);
  10029. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  10030. notifier_read(rescan_notifier);
  10031. mutex_lock(&rescan_mutex);
  10032. if (timer_passed(&tv_rescan, NULL))
  10033. {
  10034. timer_unset(&tv_rescan);
  10035. mutex_unlock(&rescan_mutex);
  10036. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  10037. scan_serial(NULL);
  10038. }
  10039. else
  10040. mutex_unlock(&rescan_mutex);
  10041. }
  10042. return NULL;
  10043. }
  10044. static
  10045. void _schedule_rescan(const struct timeval * const tvp_when)
  10046. {
  10047. if (rescan_active)
  10048. {
  10049. if (timercmp(tvp_when, &tv_rescan, <))
  10050. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  10051. else
  10052. {
  10053. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  10054. tv_rescan = *tvp_when;
  10055. }
  10056. return;
  10057. }
  10058. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  10059. tv_rescan = *tvp_when;
  10060. rescan_active = true;
  10061. static pthread_t pth;
  10062. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  10063. applog(LOG_ERR, "Failed to start rescan thread");
  10064. }
  10065. static
  10066. void schedule_rescan(const struct timeval * const tvp_when)
  10067. {
  10068. mutex_lock(&rescan_mutex);
  10069. _schedule_rescan(tvp_when);
  10070. mutex_unlock(&rescan_mutex);
  10071. }
  10072. #ifdef HAVE_BFG_HOTPLUG
  10073. static
  10074. void hotplug_trigger()
  10075. {
  10076. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  10077. struct timeval tv_now;
  10078. timer_set_now(&tv_now);
  10079. schedule_rescan(&tv_now);
  10080. }
  10081. #endif
  10082. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  10083. static
  10084. void *hotplug_thread(__maybe_unused void *p)
  10085. {
  10086. pthread_detach(pthread_self());
  10087. RenameThread("hotplug");
  10088. struct udev * const udev = udev_new();
  10089. if (unlikely(!udev))
  10090. applogfailr(NULL, LOG_ERR, "udev_new");
  10091. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  10092. if (unlikely(!mon))
  10093. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  10094. if (unlikely(udev_monitor_enable_receiving(mon)))
  10095. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  10096. const int epfd = epoll_create(1);
  10097. if (unlikely(epfd == -1))
  10098. applogfailr(NULL, LOG_ERR, "epoll_create");
  10099. {
  10100. const int fd = udev_monitor_get_fd(mon);
  10101. struct epoll_event ev = {
  10102. .events = EPOLLIN | EPOLLPRI,
  10103. .data.fd = fd,
  10104. };
  10105. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  10106. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  10107. }
  10108. struct epoll_event ev;
  10109. int rv;
  10110. bool pending = false;
  10111. while (true)
  10112. {
  10113. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  10114. if (rv == -1)
  10115. {
  10116. if (errno == EAGAIN || errno == EINTR)
  10117. continue;
  10118. break;
  10119. }
  10120. if (!rv)
  10121. {
  10122. hotplug_trigger();
  10123. pending = false;
  10124. continue;
  10125. }
  10126. struct udev_device * const device = udev_monitor_receive_device(mon);
  10127. if (!device)
  10128. continue;
  10129. const char * const action = udev_device_get_action(device);
  10130. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  10131. if (!strcmp(action, "add"))
  10132. pending = true;
  10133. udev_device_unref(device);
  10134. }
  10135. applogfailr(NULL, LOG_ERR, "epoll_wait");
  10136. }
  10137. #elif defined(WIN32)
  10138. static UINT_PTR _hotplug_wintimer_id;
  10139. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  10140. {
  10141. KillTimer(NULL, _hotplug_wintimer_id);
  10142. _hotplug_wintimer_id = 0;
  10143. hotplug_trigger();
  10144. }
  10145. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  10146. {
  10147. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  10148. {
  10149. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  10150. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  10151. }
  10152. return DefWindowProc(hwnd, msg, wParam, lParam);
  10153. }
  10154. static
  10155. void *hotplug_thread(__maybe_unused void *p)
  10156. {
  10157. pthread_detach(pthread_self());
  10158. WNDCLASS DummyWinCls = {
  10159. .lpszClassName = "BFGDummyWinCls",
  10160. .lpfnWndProc = hotplug_win_callback,
  10161. };
  10162. ATOM a = RegisterClass(&DummyWinCls);
  10163. if (unlikely(!a))
  10164. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  10165. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  10166. if (unlikely(!hwnd))
  10167. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  10168. MSG msg;
  10169. while (GetMessage(&msg, NULL, 0, 0))
  10170. {
  10171. TranslateMessage(&msg);
  10172. DispatchMessage(&msg);
  10173. }
  10174. quit(0, "WM_QUIT received");
  10175. return NULL;
  10176. }
  10177. #endif
  10178. #ifdef HAVE_BFG_HOTPLUG
  10179. static
  10180. void hotplug_start()
  10181. {
  10182. pthread_t pth;
  10183. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  10184. applog(LOG_ERR, "Failed to start hotplug thread");
  10185. }
  10186. #endif
  10187. static void probe_pools(void)
  10188. {
  10189. int i;
  10190. for (i = 0; i < total_pools; i++) {
  10191. struct pool *pool = pools[i];
  10192. pool->testing = true;
  10193. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  10194. }
  10195. }
  10196. static void raise_fd_limits(void)
  10197. {
  10198. #ifdef HAVE_SETRLIMIT
  10199. struct rlimit fdlimit;
  10200. rlim_t old_soft_limit;
  10201. char frombuf[0x10] = "unlimited";
  10202. char hardbuf[0x10] = "unlimited";
  10203. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  10204. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  10205. old_soft_limit = fdlimit.rlim_cur;
  10206. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  10207. fdlimit.rlim_cur = FD_SETSIZE;
  10208. else
  10209. fdlimit.rlim_cur = fdlimit.rlim_max;
  10210. if (fdlimit.rlim_max != RLIM_INFINITY)
  10211. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  10212. if (old_soft_limit != RLIM_INFINITY)
  10213. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  10214. if (fdlimit.rlim_cur == old_soft_limit)
  10215. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10216. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  10217. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  10218. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10219. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10220. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10221. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10222. #else
  10223. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  10224. #endif
  10225. }
  10226. extern void bfg_init_threadlocal();
  10227. extern void stratumsrv_start();
  10228. int main(int argc, char *argv[])
  10229. {
  10230. struct sigaction handler;
  10231. struct thr_info *thr;
  10232. struct block *block;
  10233. unsigned int k;
  10234. int i;
  10235. int rearrange_pools = 0;
  10236. char *s;
  10237. #ifdef WIN32
  10238. LoadLibrary("backtrace.dll");
  10239. #endif
  10240. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  10241. bfg_init_threadlocal();
  10242. #ifndef HAVE_PTHREAD_CANCEL
  10243. setup_pthread_cancel_workaround();
  10244. #endif
  10245. bfg_init_checksums();
  10246. #ifdef WIN32
  10247. {
  10248. WSADATA wsa;
  10249. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10250. if (i)
  10251. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10252. }
  10253. #endif
  10254. /* This dangerous functions tramples random dynamically allocated
  10255. * variables so do it before anything at all */
  10256. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10257. quit(1, "Failed to curl_global_init");
  10258. initial_args = malloc(sizeof(char *) * (argc + 1));
  10259. for (i = 0; i < argc; i++)
  10260. initial_args[i] = strdup(argv[i]);
  10261. initial_args[argc] = NULL;
  10262. mutex_init(&hash_lock);
  10263. mutex_init(&console_lock);
  10264. cglock_init(&control_lock);
  10265. mutex_init(&stats_lock);
  10266. mutex_init(&sharelog_lock);
  10267. cglock_init(&ch_lock);
  10268. mutex_init(&sshare_lock);
  10269. rwlock_init(&blk_lock);
  10270. rwlock_init(&netacc_lock);
  10271. rwlock_init(&mining_thr_lock);
  10272. rwlock_init(&devices_lock);
  10273. mutex_init(&lp_lock);
  10274. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10275. quit(1, "Failed to pthread_cond_init lp_cond");
  10276. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10277. quit(1, "Failed to pthread_cond_init gws_cond");
  10278. notifier_init(submit_waiting_notifier);
  10279. timer_unset(&tv_rescan);
  10280. notifier_init(rescan_notifier);
  10281. /* Create a unique get work queue */
  10282. getq = tq_new();
  10283. if (!getq)
  10284. quit(1, "Failed to create getq");
  10285. /* We use the getq mutex as the staged lock */
  10286. stgd_lock = &getq->mutex;
  10287. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10288. #ifdef WANT_CPUMINE
  10289. init_max_name_len();
  10290. #endif
  10291. handler.sa_handler = &sighandler;
  10292. handler.sa_flags = 0;
  10293. sigemptyset(&handler.sa_mask);
  10294. #ifdef HAVE_PTHREAD_CANCEL
  10295. sigaction(SIGTERM, &handler, &termhandler);
  10296. #else
  10297. // Need to let pthread_cancel emulation handle SIGTERM first
  10298. termhandler = pcwm_orig_term_handler;
  10299. pcwm_orig_term_handler = handler;
  10300. #endif
  10301. sigaction(SIGINT, &handler, &inthandler);
  10302. #ifndef WIN32
  10303. signal(SIGPIPE, SIG_IGN);
  10304. #else
  10305. timeBeginPeriod(1);
  10306. #endif
  10307. opt_kernel_path = CGMINER_PREFIX;
  10308. cgminer_path = alloca(PATH_MAX);
  10309. s = strdup(argv[0]);
  10310. strcpy(cgminer_path, dirname(s));
  10311. free(s);
  10312. strcat(cgminer_path, "/");
  10313. #if defined(WANT_CPUMINE) && defined(WIN32)
  10314. {
  10315. char buf[32];
  10316. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10317. if (gev > 0 && gev < sizeof(buf))
  10318. {
  10319. setup_benchmark_pool();
  10320. double rate = bench_algo_stage3(atoi(buf));
  10321. // Write result to shared memory for parent
  10322. char unique_name[64];
  10323. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10324. {
  10325. HANDLE map_handle = CreateFileMapping(
  10326. INVALID_HANDLE_VALUE, // use paging file
  10327. NULL, // default security attributes
  10328. PAGE_READWRITE, // read/write access
  10329. 0, // size: high 32-bits
  10330. 4096, // size: low 32-bits
  10331. unique_name // name of map object
  10332. );
  10333. if (NULL != map_handle) {
  10334. void *shared_mem = MapViewOfFile(
  10335. map_handle, // object to map view of
  10336. FILE_MAP_WRITE, // read/write access
  10337. 0, // high offset: map from
  10338. 0, // low offset: beginning
  10339. 0 // default: map entire file
  10340. );
  10341. if (NULL != shared_mem)
  10342. CopyMemory(shared_mem, &rate, sizeof(rate));
  10343. (void)UnmapViewOfFile(shared_mem);
  10344. }
  10345. (void)CloseHandle(map_handle);
  10346. }
  10347. exit(0);
  10348. }
  10349. }
  10350. #endif
  10351. devcursor = 8;
  10352. logstart = devcursor;
  10353. logcursor = logstart;
  10354. block = calloc(sizeof(struct block), 1);
  10355. if (unlikely(!block))
  10356. quit (1, "main OOM");
  10357. for (i = 0; i < 36; i++)
  10358. strcat(block->hash, "0");
  10359. HASH_ADD_STR(blocks, hash, block);
  10360. strcpy(current_block, block->hash);
  10361. mutex_init(&submitting_lock);
  10362. #ifdef HAVE_OPENCL
  10363. opencl_early_init();
  10364. #endif
  10365. schedstart.tm.tm_sec = 1;
  10366. schedstop .tm.tm_sec = 1;
  10367. opt_register_table(opt_early_table, NULL);
  10368. opt_register_table(opt_config_table, NULL);
  10369. opt_register_table(opt_cmdline_table, NULL);
  10370. opt_early_parse(argc, argv, applog_and_exit);
  10371. if (!config_loaded)
  10372. {
  10373. load_default_config();
  10374. rearrange_pools = total_pools;
  10375. }
  10376. opt_free_table();
  10377. /* parse command line */
  10378. opt_register_table(opt_config_table,
  10379. "Options for both config file and command line");
  10380. opt_register_table(opt_cmdline_table,
  10381. "Options for command line only");
  10382. opt_parse(&argc, argv, applog_and_exit);
  10383. if (argc != 1)
  10384. quit(1, "Unexpected extra commandline arguments");
  10385. if (rearrange_pools && rearrange_pools < total_pools)
  10386. {
  10387. // Prioritise commandline pools before default-config pools
  10388. for (i = 0; i < rearrange_pools; ++i)
  10389. pools[i]->prio += rearrange_pools;
  10390. for ( ; i < total_pools; ++i)
  10391. pools[i]->prio -= rearrange_pools;
  10392. }
  10393. #ifndef HAVE_PTHREAD_CANCEL
  10394. // Can't do this any earlier, or config isn't loaded
  10395. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10396. #endif
  10397. #ifdef HAVE_PWD_H
  10398. struct passwd *user_info = NULL;
  10399. if (opt_setuid != NULL) {
  10400. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10401. quit(1, "Unable to find setuid user information");
  10402. }
  10403. }
  10404. #endif
  10405. #ifdef HAVE_CHROOT
  10406. if (chroot_dir != NULL) {
  10407. #ifdef HAVE_PWD_H
  10408. if (user_info == NULL && getuid() == 0) {
  10409. applog(LOG_WARNING, "Running as root inside chroot");
  10410. }
  10411. #endif
  10412. if (chroot(chroot_dir) != 0) {
  10413. quit(1, "Unable to chroot");
  10414. }
  10415. if (chdir("/"))
  10416. quit(1, "Unable to chdir to chroot");
  10417. }
  10418. #endif
  10419. #ifdef HAVE_PWD_H
  10420. if (user_info != NULL) {
  10421. if (setgid((*user_info).pw_gid) != 0)
  10422. quit(1, "Unable to setgid");
  10423. if (setuid((*user_info).pw_uid) != 0)
  10424. quit(1, "Unable to setuid");
  10425. }
  10426. #endif
  10427. raise_fd_limits();
  10428. if (opt_benchmark) {
  10429. while (total_pools)
  10430. remove_pool(pools[0]);
  10431. setup_benchmark_pool();
  10432. }
  10433. if (opt_unittest) {
  10434. test_cgpu_match();
  10435. test_intrange();
  10436. test_decimal_width();
  10437. test_domain_funcs();
  10438. test_target();
  10439. test_uri_get_param();
  10440. utf8_test();
  10441. }
  10442. #ifdef HAVE_CURSES
  10443. if (opt_realquiet || opt_display_devs)
  10444. use_curses = false;
  10445. setlocale(LC_ALL, "C");
  10446. if (use_curses)
  10447. enable_curses();
  10448. #endif
  10449. #ifdef HAVE_LIBUSB
  10450. int err = libusb_init(NULL);
  10451. if (err)
  10452. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10453. else
  10454. have_libusb = true;
  10455. #endif
  10456. applog(LOG_WARNING, "Started %s", packagename);
  10457. if (cnfbuf) {
  10458. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10459. switch (fileconf_load) {
  10460. case 0:
  10461. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10462. applog(LOG_WARNING, "Configuration file could not be used.");
  10463. break;
  10464. case -1:
  10465. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10466. if (use_curses)
  10467. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10468. break;
  10469. default:
  10470. break;
  10471. }
  10472. free(cnfbuf);
  10473. cnfbuf = NULL;
  10474. }
  10475. i = strlen(opt_kernel_path) + 2;
  10476. char __kernel_path[i];
  10477. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10478. opt_kernel_path = __kernel_path;
  10479. if (want_per_device_stats)
  10480. opt_log_output = true;
  10481. #ifdef WANT_CPUMINE
  10482. #ifdef USE_SCRYPT
  10483. if (opt_scrypt)
  10484. set_scrypt_algo(&opt_algo);
  10485. #endif
  10486. #endif
  10487. bfg_devapi_init();
  10488. drv_detect_all();
  10489. total_devices = total_devices_new;
  10490. devices = devices_new;
  10491. total_devices_new = 0;
  10492. devices_new = NULL;
  10493. if (opt_display_devs) {
  10494. int devcount = 0;
  10495. applog(LOG_ERR, "Devices detected:");
  10496. for (i = 0; i < total_devices; ++i) {
  10497. struct cgpu_info *cgpu = devices[i];
  10498. char buf[0x100];
  10499. if (cgpu->device != cgpu)
  10500. continue;
  10501. if (cgpu->name)
  10502. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10503. else
  10504. if (cgpu->dev_manufacturer)
  10505. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10506. else
  10507. if (cgpu->dev_product)
  10508. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10509. else
  10510. strcpy(buf, " Device");
  10511. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10512. if (cgpu->dev_serial)
  10513. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10514. if (cgpu->device_path)
  10515. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10516. tailsprintf(buf, sizeof(buf), ")");
  10517. _applog(LOG_NOTICE, buf);
  10518. ++devcount;
  10519. }
  10520. quit(0, "%d devices listed", devcount);
  10521. }
  10522. mining_threads = 0;
  10523. for (i = 0; i < total_devices; ++i)
  10524. register_device(devices[i]);
  10525. if (!total_devices) {
  10526. applog(LOG_WARNING, "No devices detected!");
  10527. if (use_curses)
  10528. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10529. else
  10530. applog(LOG_WARNING, "Waiting for devices");
  10531. }
  10532. if (opt_quit_summary == BQS_DEFAULT)
  10533. {
  10534. if (total_devices < 25)
  10535. opt_quit_summary = BQS_PROCS;
  10536. else
  10537. opt_quit_summary = BQS_DEVS;
  10538. }
  10539. #ifdef HAVE_CURSES
  10540. switch_logsize();
  10541. #endif
  10542. if (!total_pools) {
  10543. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10544. #ifdef HAVE_CURSES
  10545. if (!use_curses || !input_pool(false))
  10546. #endif
  10547. quit(1, "Pool setup failed");
  10548. }
  10549. for (i = 0; i < total_pools; i++) {
  10550. struct pool *pool = pools[i];
  10551. size_t siz;
  10552. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10553. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10554. if (!pool->rpc_url)
  10555. quit(1, "No URI supplied for pool %u", i);
  10556. if (!pool->rpc_userpass) {
  10557. if (!pool->rpc_user || !pool->rpc_pass)
  10558. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10559. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10560. pool->rpc_userpass = malloc(siz);
  10561. if (!pool->rpc_userpass)
  10562. quit(1, "Failed to malloc userpass");
  10563. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10564. }
  10565. }
  10566. /* Set the currentpool to pool with priority 0 */
  10567. validate_pool_priorities();
  10568. for (i = 0; i < total_pools; i++) {
  10569. struct pool *pool = pools[i];
  10570. if (!pool->prio)
  10571. currentpool = pool;
  10572. }
  10573. #ifdef HAVE_SYSLOG_H
  10574. if (use_syslog)
  10575. openlog(PACKAGE, LOG_PID, LOG_USER);
  10576. #endif
  10577. #if defined(unix) || defined(__APPLE__)
  10578. if (opt_stderr_cmd)
  10579. fork_monitor();
  10580. #endif // defined(unix)
  10581. mining_thr = calloc(mining_threads, sizeof(thr));
  10582. if (!mining_thr)
  10583. quit(1, "Failed to calloc mining_thr");
  10584. for (i = 0; i < mining_threads; i++) {
  10585. mining_thr[i] = calloc(1, sizeof(*thr));
  10586. if (!mining_thr[i])
  10587. quit(1, "Failed to calloc mining_thr[%d]", i);
  10588. }
  10589. total_control_threads = 6;
  10590. control_thr = calloc(total_control_threads, sizeof(*thr));
  10591. if (!control_thr)
  10592. quit(1, "Failed to calloc control_thr");
  10593. if (opt_benchmark)
  10594. goto begin_bench;
  10595. for (i = 0; i < total_pools; i++) {
  10596. struct pool *pool = pools[i];
  10597. enable_pool(pool);
  10598. pool->idle = true;
  10599. }
  10600. applog(LOG_NOTICE, "Probing for an alive pool");
  10601. do {
  10602. bool still_testing;
  10603. int i;
  10604. /* Look for at least one active pool before starting */
  10605. probe_pools();
  10606. do {
  10607. sleep(1);
  10608. if (pools_active)
  10609. break;
  10610. still_testing = false;
  10611. for (int i = 0; i < total_pools; ++i)
  10612. if (pools[i]->testing)
  10613. still_testing = true;
  10614. } while (still_testing);
  10615. if (!pools_active) {
  10616. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10617. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10618. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10619. for (i = 0; i < total_pools; i++) {
  10620. struct pool *pool;
  10621. pool = pools[i];
  10622. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10623. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10624. }
  10625. #ifdef HAVE_CURSES
  10626. if (use_curses) {
  10627. halfdelay(150);
  10628. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10629. if (getch() != ERR)
  10630. quit(0, "No servers could be used! Exiting.");
  10631. cbreak();
  10632. } else
  10633. #endif
  10634. quit(0, "No servers could be used! Exiting.");
  10635. }
  10636. } while (!pools_active);
  10637. #ifdef USE_SCRYPT
  10638. if (detect_algo == 1 && !opt_scrypt) {
  10639. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10640. opt_scrypt = true;
  10641. }
  10642. #endif
  10643. detect_algo = 0;
  10644. begin_bench:
  10645. total_mhashes_done = 0;
  10646. for (i = 0; i < total_devices; i++) {
  10647. struct cgpu_info *cgpu = devices[i];
  10648. cgpu->rolling = cgpu->total_mhashes = 0;
  10649. }
  10650. cgtime(&total_tv_start);
  10651. cgtime(&total_tv_end);
  10652. miner_started = total_tv_start;
  10653. time_t miner_start_ts = time(NULL);
  10654. if (schedstart.tm.tm_sec)
  10655. localtime_r(&miner_start_ts, &schedstart.tm);
  10656. if (schedstop.tm.tm_sec)
  10657. localtime_r(&miner_start_ts, &schedstop .tm);
  10658. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10659. // Initialise processors and threads
  10660. k = 0;
  10661. for (i = 0; i < total_devices; ++i) {
  10662. struct cgpu_info *cgpu = devices[i];
  10663. allocate_cgpu(cgpu, &k);
  10664. }
  10665. // Start threads
  10666. for (i = 0; i < total_devices; ++i) {
  10667. struct cgpu_info *cgpu = devices[i];
  10668. start_cgpu(cgpu);
  10669. }
  10670. #ifdef HAVE_OPENCL
  10671. for (i = 0; i < nDevs; i++)
  10672. pause_dynamic_threads(i);
  10673. #endif
  10674. #ifdef WANT_CPUMINE
  10675. if (opt_n_threads > 0)
  10676. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10677. opt_n_threads, algo_names[opt_algo]);
  10678. #endif
  10679. cgtime(&total_tv_start);
  10680. cgtime(&total_tv_end);
  10681. if (!opt_benchmark)
  10682. {
  10683. pthread_t submit_thread;
  10684. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10685. quit(1, "submit_work thread create failed");
  10686. }
  10687. watchpool_thr_id = 1;
  10688. thr = &control_thr[watchpool_thr_id];
  10689. /* start watchpool thread */
  10690. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10691. quit(1, "watchpool thread create failed");
  10692. pthread_detach(thr->pth);
  10693. watchdog_thr_id = 2;
  10694. thr = &control_thr[watchdog_thr_id];
  10695. /* start watchdog thread */
  10696. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10697. quit(1, "watchdog thread create failed");
  10698. pthread_detach(thr->pth);
  10699. #ifdef HAVE_OPENCL
  10700. /* Create reinit gpu thread */
  10701. gpur_thr_id = 3;
  10702. thr = &control_thr[gpur_thr_id];
  10703. thr->q = tq_new();
  10704. if (!thr->q)
  10705. quit(1, "tq_new failed for gpur_thr_id");
  10706. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10707. quit(1, "reinit_gpu thread create failed");
  10708. #endif
  10709. /* Create API socket thread */
  10710. api_thr_id = 4;
  10711. thr = &control_thr[api_thr_id];
  10712. if (thr_info_create(thr, NULL, api_thread, thr))
  10713. quit(1, "API thread create failed");
  10714. #ifdef USE_LIBMICROHTTPD
  10715. if (httpsrv_port != -1)
  10716. httpsrv_start(httpsrv_port);
  10717. #endif
  10718. #ifdef USE_LIBEVENT
  10719. if (stratumsrv_port != -1)
  10720. stratumsrv_start();
  10721. #endif
  10722. #ifdef HAVE_BFG_HOTPLUG
  10723. if (opt_hotplug && !opt_scrypt)
  10724. hotplug_start();
  10725. #endif
  10726. #ifdef HAVE_CURSES
  10727. /* Create curses input thread for keyboard input. Create this last so
  10728. * that we know all threads are created since this can call kill_work
  10729. * to try and shut down ll previous threads. */
  10730. input_thr_id = 5;
  10731. thr = &control_thr[input_thr_id];
  10732. if (thr_info_create(thr, NULL, input_thread, thr))
  10733. quit(1, "input thread create failed");
  10734. pthread_detach(thr->pth);
  10735. #endif
  10736. /* Just to be sure */
  10737. if (total_control_threads != 6)
  10738. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10739. /* Once everything is set up, main() becomes the getwork scheduler */
  10740. while (42) {
  10741. int ts, max_staged = opt_queue;
  10742. struct pool *pool, *cp;
  10743. bool lagging = false;
  10744. struct curl_ent *ce;
  10745. struct work *work;
  10746. cp = current_pool();
  10747. // Generally, each processor needs a new work, and all at once during work restarts
  10748. max_staged += mining_threads;
  10749. mutex_lock(stgd_lock);
  10750. ts = __total_staged();
  10751. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10752. lagging = true;
  10753. /* Wait until hash_pop tells us we need to create more work */
  10754. if (ts > max_staged) {
  10755. staged_full = true;
  10756. pthread_cond_wait(&gws_cond, stgd_lock);
  10757. ts = __total_staged();
  10758. }
  10759. mutex_unlock(stgd_lock);
  10760. if (ts > max_staged)
  10761. continue;
  10762. work = make_work();
  10763. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10764. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10765. cp->getfail_occasions++;
  10766. total_go++;
  10767. }
  10768. pool = select_pool(lagging);
  10769. retry:
  10770. if (pool->has_stratum) {
  10771. while (!pool->stratum_active || !pool->stratum_notify) {
  10772. struct pool *altpool = select_pool(true);
  10773. if (altpool == pool && pool->has_stratum)
  10774. cgsleep_ms(5000);
  10775. pool = altpool;
  10776. goto retry;
  10777. }
  10778. gen_stratum_work(pool, work);
  10779. applog(LOG_DEBUG, "Generated stratum work");
  10780. stage_work(work);
  10781. continue;
  10782. }
  10783. if (pool->last_work_copy) {
  10784. mutex_lock(&pool->last_work_lock);
  10785. struct work *last_work = pool->last_work_copy;
  10786. if (!last_work)
  10787. {}
  10788. else
  10789. if (can_roll(last_work) && should_roll(last_work)) {
  10790. struct timeval tv_now;
  10791. cgtime(&tv_now);
  10792. free_work(work);
  10793. work = make_clone(pool->last_work_copy);
  10794. mutex_unlock(&pool->last_work_lock);
  10795. roll_work(work);
  10796. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tr->tmpl, tv_now.tv_sec));
  10797. stage_work(work);
  10798. continue;
  10799. } else if (last_work->tr && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tr->tmpl) > (unsigned long)mining_threads) {
  10800. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10801. } else {
  10802. free_work(last_work);
  10803. pool->last_work_copy = NULL;
  10804. }
  10805. mutex_unlock(&pool->last_work_lock);
  10806. }
  10807. if (clone_available()) {
  10808. applog(LOG_DEBUG, "Cloned getwork work");
  10809. free_work(work);
  10810. continue;
  10811. }
  10812. if (opt_benchmark) {
  10813. get_benchmark_work(work);
  10814. applog(LOG_DEBUG, "Generated benchmark work");
  10815. stage_work(work);
  10816. continue;
  10817. }
  10818. work->pool = pool;
  10819. ce = pop_curl_entry3(pool, 2);
  10820. /* obtain new work from bitcoin via JSON-RPC */
  10821. if (!get_upstream_work(work, ce->curl)) {
  10822. struct pool *next_pool;
  10823. /* Make sure the pool just hasn't stopped serving
  10824. * requests but is up as we'll keep hammering it */
  10825. push_curl_entry(ce, pool);
  10826. ++pool->seq_getfails;
  10827. pool_died(pool);
  10828. next_pool = select_pool(!opt_fail_only);
  10829. if (pool == next_pool) {
  10830. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10831. cgsleep_ms(5000);
  10832. } else {
  10833. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10834. pool = next_pool;
  10835. }
  10836. goto retry;
  10837. }
  10838. if (ts >= max_staged)
  10839. pool_tclear(pool, &pool->lagging);
  10840. if (pool_tclear(pool, &pool->idle))
  10841. pool_resus(pool);
  10842. applog(LOG_DEBUG, "Generated getwork work");
  10843. stage_work(work);
  10844. push_curl_entry(ce, pool);
  10845. }
  10846. return 0;
  10847. }