miner.c 291 KB

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