miner.c 329 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826
  1. /*
  2. * Copyright 2011-2014 Con Kolivas
  3. * Copyright 2011-2014 Luke Dashjr
  4. * Copyright 2014 Nate Woolls
  5. * Copyright 2012-2013 Andrew Smith
  6. * Copyright 2010 Jeff Garzik
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 3 of the License, or (at your option)
  11. * any later version. See COPYING for more details.
  12. */
  13. #include "config.h"
  14. #ifdef HAVE_CURSES
  15. #ifdef USE_UNICODE
  16. #define PDC_WIDE
  17. #endif
  18. // Must be before stdbool, since pdcurses typedefs bool :/
  19. #include <curses.h>
  20. #endif
  21. #include <ctype.h>
  22. #include <float.h>
  23. #include <limits.h>
  24. #include <locale.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <stdbool.h>
  29. #include <stdint.h>
  30. #include <unistd.h>
  31. #include <sys/time.h>
  32. #include <time.h>
  33. #include <math.h>
  34. #include <stdarg.h>
  35. #include <assert.h>
  36. #include <signal.h>
  37. #include <wctype.h>
  38. #include <sys/stat.h>
  39. #include <sys/types.h>
  40. #include <dirent.h>
  41. #ifdef HAVE_PWD_H
  42. #include <pwd.h>
  43. #endif
  44. #ifndef WIN32
  45. #include <sys/resource.h>
  46. #include <sys/socket.h>
  47. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  48. #include <libudev.h>
  49. #include <sys/epoll.h>
  50. #define HAVE_BFG_HOTPLUG
  51. #endif
  52. #else
  53. #include <winsock2.h>
  54. #include <windows.h>
  55. #include <dbt.h>
  56. #define HAVE_BFG_HOTPLUG
  57. #endif
  58. #include <ccan/opt/opt.h>
  59. #include <jansson.h>
  60. #include <curl/curl.h>
  61. #include <libgen.h>
  62. #include <sha2.h>
  63. #include <utlist.h>
  64. #include <blkmaker.h>
  65. #include <blkmaker_jansson.h>
  66. #include <blktemplate.h>
  67. #include "compat.h"
  68. #include "deviceapi.h"
  69. #include "logging.h"
  70. #include "miner.h"
  71. #include "adl.h"
  72. #include "driver-cpu.h"
  73. #include "driver-opencl.h"
  74. #include "scrypt.h"
  75. #include "util.h"
  76. #ifdef USE_AVALON
  77. #include "driver-avalon.h"
  78. #endif
  79. #ifdef HAVE_BFG_LOWLEVEL
  80. #include "lowlevel.h"
  81. #endif
  82. #if defined(unix) || defined(__APPLE__)
  83. #include <errno.h>
  84. #include <fcntl.h>
  85. #include <sys/wait.h>
  86. #endif
  87. #ifdef USE_SCRYPT
  88. #include "scrypt.h"
  89. #endif
  90. #include "version.h"
  91. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  92. # define USE_FPGA
  93. #endif
  94. enum bfg_quit_summary {
  95. BQS_DEFAULT,
  96. BQS_NONE,
  97. BQS_DEVS,
  98. BQS_PROCS,
  99. BQS_DETAILED,
  100. };
  101. struct strategies strategies[] = {
  102. { "Failover" },
  103. { "Round Robin" },
  104. { "Rotate" },
  105. { "Load Balance" },
  106. { "Balance" },
  107. };
  108. static char packagename[256];
  109. bool opt_protocol;
  110. bool opt_dev_protocol;
  111. static bool opt_benchmark;
  112. static bool want_longpoll = true;
  113. static bool want_gbt = true;
  114. static bool want_getwork = true;
  115. #if BLKMAKER_VERSION > 1
  116. static bool opt_load_bitcoin_conf = true;
  117. static bool have_at_least_one_getcbaddr;
  118. static bytes_t opt_coinbase_script = BYTES_INIT;
  119. static uint32_t coinbase_script_block_id;
  120. static uint32_t template_nonce;
  121. #endif
  122. #if BLKMAKER_VERSION > 0
  123. char *opt_coinbase_sig;
  124. #endif
  125. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  126. static bool include_serial_in_statline;
  127. char *request_target_str;
  128. float request_pdiff = 1.0;
  129. double request_bdiff;
  130. static bool want_stratum = true;
  131. bool have_longpoll;
  132. int opt_skip_checks;
  133. bool want_per_device_stats;
  134. bool use_syslog;
  135. bool opt_quiet_work_updates = true;
  136. bool opt_quiet;
  137. bool opt_realquiet;
  138. int loginput_size;
  139. bool opt_compact;
  140. bool opt_show_procs;
  141. const int opt_cutofftemp = 95;
  142. int opt_hysteresis = 3;
  143. static int opt_retries = -1;
  144. int opt_fail_pause = 5;
  145. int opt_log_interval = 20;
  146. int opt_queue = 1;
  147. int opt_scantime = 60;
  148. int opt_expiry = 120;
  149. int opt_expiry_lp = 3600;
  150. unsigned long long global_hashrate;
  151. static bool opt_unittest = false;
  152. unsigned long global_quota_gcd = 1;
  153. time_t last_getwork;
  154. #ifdef HAVE_OPENCL
  155. int opt_dynamic_interval = 7;
  156. int nDevs;
  157. int opt_g_threads = -1;
  158. #endif
  159. #ifdef USE_SCRYPT
  160. static char detect_algo = 1;
  161. bool opt_scrypt;
  162. #else
  163. static char detect_algo;
  164. #endif
  165. bool opt_restart = true;
  166. #ifdef USE_LIBMICROHTTPD
  167. #include "httpsrv.h"
  168. int httpsrv_port = -1;
  169. #endif
  170. #ifdef USE_LIBEVENT
  171. int stratumsrv_port = -1;
  172. #endif
  173. const
  174. int rescan_delay_ms = 1000;
  175. #ifdef HAVE_BFG_HOTPLUG
  176. bool opt_hotplug = 1;
  177. const
  178. int hotplug_delay_ms = 100;
  179. #else
  180. const bool opt_hotplug;
  181. #endif
  182. struct string_elist *scan_devices;
  183. static struct string_elist *opt_set_device_list;
  184. bool opt_force_dev_init;
  185. static struct string_elist *opt_devices_enabled_list;
  186. static bool opt_display_devs;
  187. int total_devices;
  188. struct cgpu_info **devices;
  189. int total_devices_new;
  190. struct cgpu_info **devices_new;
  191. bool have_opencl;
  192. int opt_n_threads = -1;
  193. int mining_threads;
  194. int num_processors;
  195. #ifdef HAVE_CURSES
  196. bool use_curses = true;
  197. #else
  198. bool use_curses;
  199. #endif
  200. int last_logstatusline_len;
  201. #ifdef HAVE_LIBUSB
  202. bool have_libusb;
  203. #endif
  204. static bool opt_submit_stale = true;
  205. static float opt_shares;
  206. static int opt_submit_threads = 0x40;
  207. bool opt_fail_only;
  208. int opt_fail_switch_delay = 300;
  209. bool opt_autofan;
  210. bool opt_autoengine;
  211. bool opt_noadl;
  212. char *opt_api_allow = NULL;
  213. char *opt_api_groups;
  214. char *opt_api_description = PACKAGE_STRING;
  215. int opt_api_port = 4028;
  216. bool opt_api_listen;
  217. bool opt_api_mcast;
  218. char *opt_api_mcast_addr = API_MCAST_ADDR;
  219. char *opt_api_mcast_code = API_MCAST_CODE;
  220. char *opt_api_mcast_des = "";
  221. int opt_api_mcast_port = 4028;
  222. bool opt_api_network;
  223. bool opt_delaynet;
  224. bool opt_disable_pool;
  225. bool opt_disable_client_reconnect = false;
  226. static bool no_work;
  227. bool opt_worktime;
  228. bool opt_weighed_stats;
  229. char *opt_kernel_path;
  230. char *cgminer_path;
  231. #if defined(USE_BITFORCE)
  232. bool opt_bfl_noncerange;
  233. #endif
  234. #define QUIET (opt_quiet || opt_realquiet)
  235. struct thr_info *control_thr;
  236. struct thr_info **mining_thr;
  237. static int watchpool_thr_id;
  238. static int watchdog_thr_id;
  239. #ifdef HAVE_CURSES
  240. static int input_thr_id;
  241. #endif
  242. int gpur_thr_id;
  243. static int api_thr_id;
  244. static int total_control_threads;
  245. pthread_mutex_t hash_lock;
  246. static pthread_mutex_t *stgd_lock;
  247. pthread_mutex_t console_lock;
  248. cglock_t ch_lock;
  249. static pthread_rwlock_t blk_lock;
  250. static pthread_mutex_t sshare_lock;
  251. pthread_rwlock_t netacc_lock;
  252. pthread_rwlock_t mining_thr_lock;
  253. pthread_rwlock_t devices_lock;
  254. static pthread_mutex_t lp_lock;
  255. static pthread_cond_t lp_cond;
  256. pthread_cond_t gws_cond;
  257. bool shutting_down;
  258. double total_rolling;
  259. double total_mhashes_done;
  260. static struct timeval total_tv_start, total_tv_end;
  261. static struct timeval miner_started;
  262. cglock_t control_lock;
  263. pthread_mutex_t stats_lock;
  264. static pthread_mutex_t submitting_lock;
  265. static int total_submitting;
  266. static struct work *submit_waiting;
  267. notifier_t submit_waiting_notifier;
  268. int hw_errors;
  269. int total_accepted, total_rejected;
  270. int total_getworks, total_stale, total_discarded;
  271. uint64_t total_bytes_rcvd, total_bytes_sent;
  272. double total_diff1, total_bad_diff1;
  273. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  274. static int staged_rollable;
  275. unsigned int new_blocks;
  276. unsigned int found_blocks;
  277. unsigned int local_work;
  278. unsigned int total_go, total_ro;
  279. struct pool **pools;
  280. static struct pool *currentpool = NULL;
  281. int total_pools, enabled_pools;
  282. enum pool_strategy pool_strategy = POOL_FAILOVER;
  283. int opt_rotate_period;
  284. static int total_urls, total_users, total_passes;
  285. static
  286. #ifndef HAVE_CURSES
  287. const
  288. #endif
  289. bool curses_active;
  290. #ifdef HAVE_CURSES
  291. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  292. const
  293. #endif
  294. short default_bgcolor = COLOR_BLACK;
  295. static int attr_title = A_BOLD;
  296. #endif
  297. static
  298. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  299. bool use_unicode;
  300. static
  301. bool have_unicode_degrees;
  302. static
  303. wchar_t unicode_micro = 'u';
  304. #else
  305. const bool use_unicode;
  306. static
  307. const bool have_unicode_degrees;
  308. static
  309. const char unicode_micro = 'u';
  310. #endif
  311. #ifdef HAVE_CURSES
  312. #define U8_BAD_START "\xef\x80\x81"
  313. #define U8_BAD_END "\xef\x80\x80"
  314. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  315. bool selecting_device;
  316. unsigned selected_device;
  317. #endif
  318. static char current_block[40];
  319. /* Protected by ch_lock */
  320. static char *current_hash;
  321. static uint32_t current_block_id;
  322. char *current_fullhash;
  323. static char datestamp[40];
  324. static char blocktime[32];
  325. time_t block_time;
  326. static char best_share[ALLOC_H2B_SHORTV] = "0";
  327. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  328. static char block_diff[ALLOC_H2B_SHORTV];
  329. static char net_hashrate[ALLOC_H2B_SHORT];
  330. double best_diff = 0;
  331. static bool known_blkheight_current;
  332. static uint32_t known_blkheight;
  333. static uint32_t known_blkheight_blkid;
  334. static uint64_t block_subsidy;
  335. struct block {
  336. char hash[40];
  337. UT_hash_handle hh;
  338. int block_no;
  339. };
  340. static struct block *blocks = NULL;
  341. int swork_id;
  342. /* For creating a hash database of stratum shares submitted that have not had
  343. * a response yet */
  344. struct stratum_share {
  345. UT_hash_handle hh;
  346. bool block;
  347. struct work *work;
  348. int id;
  349. };
  350. static struct stratum_share *stratum_shares = NULL;
  351. char *opt_socks_proxy = NULL;
  352. static const char def_conf[] = "bfgminer.conf";
  353. static bool config_loaded;
  354. static int include_count;
  355. #define JSON_INCLUDE_CONF "include"
  356. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  357. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  358. #define JSON_MAX_DEPTH 10
  359. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  360. char *cmd_idle, *cmd_sick, *cmd_dead;
  361. #if defined(unix) || defined(__APPLE__)
  362. static char *opt_stderr_cmd = NULL;
  363. static int forkpid;
  364. #endif // defined(unix)
  365. #ifdef HAVE_CHROOT
  366. char *chroot_dir;
  367. #endif
  368. #ifdef HAVE_PWD_H
  369. char *opt_setuid;
  370. #endif
  371. struct sigaction termhandler, inthandler;
  372. struct thread_q *getq;
  373. static int total_work;
  374. static bool staged_full;
  375. struct work *staged_work = NULL;
  376. struct schedtime {
  377. bool enable;
  378. struct tm tm;
  379. };
  380. struct schedtime schedstart;
  381. struct schedtime schedstop;
  382. bool sched_paused;
  383. static bool time_before(struct tm *tm1, struct tm *tm2)
  384. {
  385. if (tm1->tm_hour < tm2->tm_hour)
  386. return true;
  387. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  388. return true;
  389. return false;
  390. }
  391. static bool should_run(void)
  392. {
  393. struct tm tm;
  394. time_t tt;
  395. bool within_range;
  396. if (!schedstart.enable && !schedstop.enable)
  397. return true;
  398. tt = time(NULL);
  399. localtime_r(&tt, &tm);
  400. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  401. if (time_before(&schedstop.tm, &schedstart.tm))
  402. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  403. else
  404. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  405. if (within_range && !schedstop.enable)
  406. /* This is a once off event with no stop time set */
  407. schedstart.enable = false;
  408. return within_range;
  409. }
  410. void get_datestamp(char *f, size_t fsiz, time_t tt)
  411. {
  412. struct tm _tm;
  413. struct tm *tm = &_tm;
  414. if (tt == INVALID_TIMESTAMP)
  415. tt = time(NULL);
  416. localtime_r(&tt, tm);
  417. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  418. tm->tm_year + 1900,
  419. tm->tm_mon + 1,
  420. tm->tm_mday,
  421. tm->tm_hour,
  422. tm->tm_min,
  423. tm->tm_sec);
  424. }
  425. static
  426. void get_timestamp(char *f, size_t fsiz, time_t tt)
  427. {
  428. struct tm _tm;
  429. struct tm *tm = &_tm;
  430. localtime_r(&tt, tm);
  431. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  432. tm->tm_hour,
  433. tm->tm_min,
  434. tm->tm_sec);
  435. }
  436. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  437. static char exit_buf[512];
  438. static void applog_and_exit(const char *fmt, ...)
  439. {
  440. va_list ap;
  441. va_start(ap, fmt);
  442. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  443. va_end(ap);
  444. _applog(LOG_ERR, exit_buf);
  445. exit(1);
  446. }
  447. char *devpath_to_devid(const char *devpath)
  448. {
  449. #ifndef WIN32
  450. if (devpath[0] != '/')
  451. return NULL;
  452. struct stat my_stat;
  453. if (stat(devpath, &my_stat))
  454. return NULL;
  455. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  456. memcpy(devs, "dev_t:", 6);
  457. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  458. #else
  459. if (!strncmp(devpath, "\\\\.\\", 4))
  460. devpath += 4;
  461. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  462. return NULL;
  463. devpath += 3;
  464. char *p;
  465. strtol(devpath, &p, 10);
  466. if (p[0])
  467. return NULL;
  468. const int sz = (p - devpath);
  469. char *devs = malloc(4 + sz + 1);
  470. sprintf(devs, "com:%s", devpath);
  471. #endif
  472. return devs;
  473. }
  474. static
  475. bool devpaths_match(const char * const ap, const char * const bp)
  476. {
  477. char * const a = devpath_to_devid(ap);
  478. if (!a)
  479. return false;
  480. char * const b = devpath_to_devid(bp);
  481. bool rv = false;
  482. if (b)
  483. {
  484. rv = !strcmp(a, b);
  485. free(b);
  486. }
  487. free(a);
  488. return rv;
  489. }
  490. static
  491. int proc_letter_to_number(const char *s, const char ** const rem)
  492. {
  493. int n = 0, c;
  494. for ( ; s[0]; ++s)
  495. {
  496. if (unlikely(n > INT_MAX / 26))
  497. break;
  498. c = tolower(s[0]) - 'a';
  499. if (unlikely(c < 0 || c > 25))
  500. break;
  501. if (unlikely(INT_MAX - c < n))
  502. break;
  503. n = (n * 26) + c;
  504. }
  505. *rem = s;
  506. return n;
  507. }
  508. static
  509. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  510. {
  511. // all - matches anything
  512. // d0 - matches all processors of device 0
  513. // d0-3 - matches all processors of device 0, 1, 2, or 3
  514. // d0a - matches first processor of device 0
  515. // 0 - matches processor 0
  516. // 0-4 - matches processors 0, 1, 2, 3, or 4
  517. // ___ - matches all processors on all devices using driver/name ___
  518. // ___0 - matches all processors of 0th device using driver/name ___
  519. // ___0a - matches first processor of 0th device using driver/name ___
  520. // @* - matches device with serial or path *
  521. // @*@a - matches first processor of device with serial or path *
  522. // ___@* - matches device with serial or path * using driver/name ___
  523. if (!strcasecmp(pattern, "all"))
  524. return true;
  525. const struct device_drv * const drv = cgpu->drv;
  526. const char *p = pattern, *p2;
  527. size_t L;
  528. int n, i, c = -1;
  529. int n2;
  530. int proc_first = -1, proc_last = -1;
  531. struct cgpu_info *device;
  532. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  533. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  534. // dname or name
  535. p = &pattern[L];
  536. else
  537. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  538. // d#
  539. ++p;
  540. else
  541. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  542. // # or @
  543. {}
  544. else
  545. return false;
  546. L = p - pattern;
  547. while (isspace(p[0]))
  548. ++p;
  549. if (p[0] == '@')
  550. {
  551. // Serial/path
  552. const char * const ser = &p[1];
  553. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  554. {}
  555. p2 = (p[0] == '@') ? &p[1] : p;
  556. const size_t serlen = (p - ser);
  557. p = "";
  558. n = n2 = 0;
  559. const char * const devpath = cgpu->device_path ?: "";
  560. const char * const devser = cgpu->dev_serial ?: "";
  561. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  562. {} // Match
  563. else
  564. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  565. {} // Match
  566. else
  567. {
  568. char devpath2[serlen + 1];
  569. memcpy(devpath2, ser, serlen);
  570. devpath2[serlen] = '\0';
  571. if (!devpaths_match(devpath, ser))
  572. return false;
  573. }
  574. }
  575. else
  576. {
  577. if (isdigit(p[0]))
  578. n = strtol(p, (void*)&p2, 0);
  579. else
  580. {
  581. n = 0;
  582. p2 = p;
  583. }
  584. if (p2[0] == '-')
  585. {
  586. ++p2;
  587. if (p2[0] && isdigit(p2[0]))
  588. n2 = strtol(p2, (void*)&p2, 0);
  589. else
  590. n2 = INT_MAX;
  591. }
  592. else
  593. n2 = n;
  594. if (p == pattern)
  595. {
  596. if (!p[0])
  597. return true;
  598. if (p2 && p2[0])
  599. goto invsyntax;
  600. for (i = n; i <= n2; ++i)
  601. {
  602. if (i >= total_devices)
  603. break;
  604. if (cgpu == devices[i])
  605. return true;
  606. }
  607. return false;
  608. }
  609. }
  610. if (p2[0])
  611. {
  612. proc_first = proc_letter_to_number(&p2[0], &p2);
  613. if (p2[0] == '-')
  614. {
  615. ++p2;
  616. if (p2[0])
  617. proc_last = proc_letter_to_number(p2, &p2);
  618. else
  619. proc_last = INT_MAX;
  620. }
  621. else
  622. proc_last = proc_first;
  623. if (p2[0])
  624. goto invsyntax;
  625. }
  626. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  627. {
  628. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  629. (!L) ||
  630. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  631. {} // Matched name or dname
  632. else
  633. return false;
  634. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  635. return false;
  636. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  637. return false;
  638. return true;
  639. }
  640. // d#
  641. c = -1;
  642. for (i = 0; ; ++i)
  643. {
  644. if (i == total_devices)
  645. return false;
  646. if (devices[i]->device != devices[i])
  647. continue;
  648. ++c;
  649. if (c < n)
  650. continue;
  651. if (c > n2)
  652. break;
  653. for (device = devices[i]; device; device = device->next_proc)
  654. {
  655. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  656. continue;
  657. if (device == cgpu)
  658. return true;
  659. }
  660. }
  661. return false;
  662. invsyntax:
  663. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  664. return false;
  665. }
  666. #define TEST_CGPU_MATCH(pattern) \
  667. if (!cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. #define TEST_CGPU_NOMATCH(pattern) \
  671. if (cgpu_match(pattern, &cgpu)) \
  672. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  673. // END TEST_CGPU_MATCH
  674. static __maybe_unused
  675. void test_cgpu_match()
  676. {
  677. struct device_drv drv = {
  678. .dname = "test",
  679. .name = "TST",
  680. };
  681. struct cgpu_info cgpu = {
  682. .drv = &drv,
  683. .device = &cgpu,
  684. .device_id = 1,
  685. .proc_id = 1,
  686. .proc_repr = "TST 1b",
  687. }, cgpu0a = {
  688. .drv = &drv,
  689. .device = &cgpu0a,
  690. .device_id = 0,
  691. .proc_id = 0,
  692. .proc_repr = "TST 0a",
  693. }, cgpu1a = {
  694. .drv = &drv,
  695. .device = &cgpu0a,
  696. .device_id = 1,
  697. .proc_id = 0,
  698. .proc_repr = "TST 1a",
  699. };
  700. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  701. devices = devices_list;
  702. total_devices = 3;
  703. TEST_CGPU_MATCH("all")
  704. TEST_CGPU_MATCH("d1")
  705. TEST_CGPU_NOMATCH("d2")
  706. TEST_CGPU_MATCH("d0-5")
  707. TEST_CGPU_NOMATCH("d0-0")
  708. TEST_CGPU_NOMATCH("d2-5")
  709. TEST_CGPU_MATCH("d-1")
  710. TEST_CGPU_MATCH("d1-")
  711. TEST_CGPU_NOMATCH("d-0")
  712. TEST_CGPU_NOMATCH("d2-")
  713. TEST_CGPU_MATCH("2")
  714. TEST_CGPU_NOMATCH("3")
  715. TEST_CGPU_MATCH("1-2")
  716. TEST_CGPU_MATCH("2-3")
  717. TEST_CGPU_NOMATCH("1-1")
  718. TEST_CGPU_NOMATCH("3-4")
  719. TEST_CGPU_MATCH("TST")
  720. TEST_CGPU_MATCH("test")
  721. TEST_CGPU_MATCH("tst")
  722. TEST_CGPU_MATCH("TEST")
  723. TEST_CGPU_NOMATCH("TSF")
  724. TEST_CGPU_NOMATCH("TS")
  725. TEST_CGPU_NOMATCH("TSTF")
  726. TEST_CGPU_MATCH("TST1")
  727. TEST_CGPU_MATCH("test1")
  728. TEST_CGPU_MATCH("TST0-1")
  729. TEST_CGPU_MATCH("TST 1")
  730. TEST_CGPU_MATCH("TST 1-2")
  731. TEST_CGPU_MATCH("TEST 1-2")
  732. TEST_CGPU_NOMATCH("TST2")
  733. TEST_CGPU_NOMATCH("TST2-3")
  734. TEST_CGPU_NOMATCH("TST0-0")
  735. TEST_CGPU_MATCH("TST1b")
  736. TEST_CGPU_MATCH("tst1b")
  737. TEST_CGPU_NOMATCH("TST1c")
  738. TEST_CGPU_NOMATCH("TST1bb")
  739. TEST_CGPU_MATCH("TST0-1b")
  740. TEST_CGPU_NOMATCH("TST0-1c")
  741. TEST_CGPU_MATCH("TST1a-d")
  742. TEST_CGPU_NOMATCH("TST1a-a")
  743. TEST_CGPU_NOMATCH("TST1-a")
  744. TEST_CGPU_NOMATCH("TST1c-z")
  745. TEST_CGPU_NOMATCH("TST1c-")
  746. TEST_CGPU_MATCH("@")
  747. TEST_CGPU_NOMATCH("@abc")
  748. TEST_CGPU_MATCH("@@b")
  749. TEST_CGPU_NOMATCH("@@c")
  750. TEST_CGPU_MATCH("TST@")
  751. TEST_CGPU_NOMATCH("TST@abc")
  752. TEST_CGPU_MATCH("TST@@b")
  753. TEST_CGPU_NOMATCH("TST@@c")
  754. TEST_CGPU_MATCH("TST@@b-f")
  755. TEST_CGPU_NOMATCH("TST@@c-f")
  756. TEST_CGPU_NOMATCH("TST@@-a")
  757. cgpu.device_path = "/dev/test";
  758. cgpu.dev_serial = "testy";
  759. TEST_CGPU_MATCH("TST@/dev/test")
  760. TEST_CGPU_MATCH("TST@testy")
  761. TEST_CGPU_NOMATCH("TST@")
  762. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  763. TEST_CGPU_NOMATCH("TST@testy3@b")
  764. TEST_CGPU_MATCH("TST@/dev/test@b")
  765. TEST_CGPU_MATCH("TST@testy@b")
  766. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  767. TEST_CGPU_NOMATCH("TST@testy@c")
  768. cgpu.device_path = "usb:000:999";
  769. TEST_CGPU_MATCH("TST@usb:000:999")
  770. drv.dname = "test7";
  771. TEST_CGPU_MATCH("test7")
  772. TEST_CGPU_MATCH("TEST7")
  773. TEST_CGPU_NOMATCH("test&")
  774. TEST_CGPU_MATCH("test7 1-2")
  775. TEST_CGPU_MATCH("test7@testy@b")
  776. }
  777. static
  778. int cgpu_search(const char * const pattern, const int first)
  779. {
  780. int i;
  781. struct cgpu_info *cgpu;
  782. #define CHECK_CGPU_SEARCH do{ \
  783. cgpu = get_devices(i); \
  784. if (cgpu_match(pattern, cgpu)) \
  785. return i; \
  786. }while(0)
  787. for (i = first; i < total_devices; ++i)
  788. CHECK_CGPU_SEARCH;
  789. for (i = 0; i < first; ++i)
  790. CHECK_CGPU_SEARCH;
  791. #undef CHECK_CGPU_SEARCH
  792. return -1;
  793. }
  794. static pthread_mutex_t sharelog_lock;
  795. static FILE *sharelog_file = NULL;
  796. struct thr_info *get_thread(int thr_id)
  797. {
  798. struct thr_info *thr;
  799. rd_lock(&mining_thr_lock);
  800. thr = mining_thr[thr_id];
  801. rd_unlock(&mining_thr_lock);
  802. return thr;
  803. }
  804. static struct cgpu_info *get_thr_cgpu(int thr_id)
  805. {
  806. struct thr_info *thr = get_thread(thr_id);
  807. return thr->cgpu;
  808. }
  809. struct cgpu_info *get_devices(int id)
  810. {
  811. struct cgpu_info *cgpu;
  812. rd_lock(&devices_lock);
  813. cgpu = devices[id];
  814. rd_unlock(&devices_lock);
  815. return cgpu;
  816. }
  817. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  818. static FILE *noncelog_file = NULL;
  819. static
  820. void noncelog(const struct work * const work)
  821. {
  822. const int thr_id = work->thr_id;
  823. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  824. char buf[0x200], hash[65], data[161], midstate[65];
  825. int rv;
  826. size_t ret;
  827. bin2hex(hash, work->hash, 32);
  828. bin2hex(data, work->data, 80);
  829. bin2hex(midstate, work->midstate, 32);
  830. // timestamp,proc,hash,data,midstate
  831. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  832. (unsigned long)time(NULL), proc->proc_repr_ns,
  833. hash, data, midstate);
  834. if (unlikely(rv < 1))
  835. {
  836. applog(LOG_ERR, "noncelog printf error");
  837. return;
  838. }
  839. mutex_lock(&noncelog_lock);
  840. ret = fwrite(buf, rv, 1, noncelog_file);
  841. fflush(noncelog_file);
  842. mutex_unlock(&noncelog_lock);
  843. if (ret != 1)
  844. applog(LOG_ERR, "noncelog fwrite error");
  845. }
  846. static void sharelog(const char*disposition, const struct work*work)
  847. {
  848. char target[(sizeof(work->target) * 2) + 1];
  849. char hash[(sizeof(work->hash) * 2) + 1];
  850. char data[(sizeof(work->data) * 2) + 1];
  851. struct cgpu_info *cgpu;
  852. unsigned long int t;
  853. struct pool *pool;
  854. int thr_id, rv;
  855. char s[1024];
  856. size_t ret;
  857. if (!sharelog_file)
  858. return;
  859. thr_id = work->thr_id;
  860. cgpu = get_thr_cgpu(thr_id);
  861. pool = work->pool;
  862. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  863. bin2hex(target, work->target, sizeof(work->target));
  864. bin2hex(hash, work->hash, sizeof(work->hash));
  865. bin2hex(data, work->data, sizeof(work->data));
  866. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  867. 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);
  868. if (rv >= (int)(sizeof(s)))
  869. s[sizeof(s) - 1] = '\0';
  870. else if (rv < 0) {
  871. applog(LOG_ERR, "sharelog printf error");
  872. return;
  873. }
  874. mutex_lock(&sharelog_lock);
  875. ret = fwrite(s, rv, 1, sharelog_file);
  876. fflush(sharelog_file);
  877. mutex_unlock(&sharelog_lock);
  878. if (ret != 1)
  879. applog(LOG_ERR, "sharelog fwrite error");
  880. }
  881. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  882. /* Adjust all the pools' quota to the greatest common denominator after a pool
  883. * has been added or the quotas changed. */
  884. void adjust_quota_gcd(void)
  885. {
  886. unsigned long gcd, lowest_quota = ~0UL, quota;
  887. struct pool *pool;
  888. int i;
  889. for (i = 0; i < total_pools; i++) {
  890. pool = pools[i];
  891. quota = pool->quota;
  892. if (!quota)
  893. continue;
  894. if (quota < lowest_quota)
  895. lowest_quota = quota;
  896. }
  897. if (likely(lowest_quota < ~0UL)) {
  898. gcd = lowest_quota;
  899. for (i = 0; i < total_pools; i++) {
  900. pool = pools[i];
  901. quota = pool->quota;
  902. if (!quota)
  903. continue;
  904. while (quota % gcd)
  905. gcd--;
  906. }
  907. } else
  908. gcd = 1;
  909. for (i = 0; i < total_pools; i++) {
  910. pool = pools[i];
  911. pool->quota_used *= global_quota_gcd;
  912. pool->quota_used /= gcd;
  913. pool->quota_gcd = pool->quota / gcd;
  914. }
  915. global_quota_gcd = gcd;
  916. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  917. }
  918. /* Return value is ignored if not called from add_pool_details */
  919. struct pool *add_pool(void)
  920. {
  921. struct pool *pool;
  922. pool = calloc(sizeof(struct pool), 1);
  923. if (!pool)
  924. quit(1, "Failed to malloc pool in add_pool");
  925. pool->pool_no = pool->prio = total_pools;
  926. mutex_init(&pool->last_work_lock);
  927. mutex_init(&pool->pool_lock);
  928. mutex_init(&pool->pool_test_lock);
  929. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  930. quit(1, "Failed to pthread_cond_init in add_pool");
  931. cglock_init(&pool->data_lock);
  932. mutex_init(&pool->stratum_lock);
  933. timer_unset(&pool->swork.tv_transparency);
  934. pool->swork.pool = pool;
  935. pool->idle = true;
  936. /* Make sure the pool doesn't think we've been idle since time 0 */
  937. pool->tv_idle.tv_sec = ~0UL;
  938. cgtime(&pool->cgminer_stats.start_tv);
  939. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  940. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  941. pool->rpc_proxy = NULL;
  942. pool->quota = 1;
  943. pool->sock = INVSOCK;
  944. pool->lp_socket = CURL_SOCKET_BAD;
  945. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  946. pools[total_pools++] = pool;
  947. if (opt_benchmark)
  948. {
  949. // Immediately remove it
  950. remove_pool(pool);
  951. return pool;
  952. }
  953. adjust_quota_gcd();
  954. if (!currentpool)
  955. currentpool = pool;
  956. enable_pool(pool);
  957. return pool;
  958. }
  959. static
  960. void pool_set_uri(struct pool * const pool, char * const uri)
  961. {
  962. pool->rpc_url = uri;
  963. #if BLKMAKER_VERSION > 1
  964. if (uri_get_param_bool(uri, "getcbaddr", false))
  965. have_at_least_one_getcbaddr = true;
  966. #endif
  967. }
  968. /* Pool variant of test and set */
  969. static bool pool_tset(struct pool *pool, bool *var)
  970. {
  971. bool ret;
  972. mutex_lock(&pool->pool_lock);
  973. ret = *var;
  974. *var = true;
  975. mutex_unlock(&pool->pool_lock);
  976. return ret;
  977. }
  978. bool pool_tclear(struct pool *pool, bool *var)
  979. {
  980. bool ret;
  981. mutex_lock(&pool->pool_lock);
  982. ret = *var;
  983. *var = false;
  984. mutex_unlock(&pool->pool_lock);
  985. return ret;
  986. }
  987. struct pool *current_pool(void)
  988. {
  989. struct pool *pool;
  990. cg_rlock(&control_lock);
  991. pool = currentpool;
  992. cg_runlock(&control_lock);
  993. return pool;
  994. }
  995. static
  996. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  997. {
  998. return opt_set_bool(b);
  999. }
  1000. char *set_int_range(const char *arg, int *i, int min, int max)
  1001. {
  1002. char *err = opt_set_intval(arg, i);
  1003. if (err)
  1004. return err;
  1005. if (*i < min || *i > max)
  1006. return "Value out of range";
  1007. return NULL;
  1008. }
  1009. static char *set_int_0_to_9999(const char *arg, int *i)
  1010. {
  1011. return set_int_range(arg, i, 0, 9999);
  1012. }
  1013. static char *set_int_1_to_65535(const char *arg, int *i)
  1014. {
  1015. return set_int_range(arg, i, 1, 65535);
  1016. }
  1017. static char *set_int_0_to_10(const char *arg, int *i)
  1018. {
  1019. return set_int_range(arg, i, 0, 10);
  1020. }
  1021. static char *set_int_1_to_10(const char *arg, int *i)
  1022. {
  1023. return set_int_range(arg, i, 1, 10);
  1024. }
  1025. char *set_strdup(const char *arg, char **p)
  1026. {
  1027. *p = strdup((char *)arg);
  1028. return NULL;
  1029. }
  1030. #if BLKMAKER_VERSION > 1
  1031. static
  1032. char *set_b58addr(const char * const arg, bytes_t * const b)
  1033. {
  1034. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1035. if (!scriptsz)
  1036. return "Invalid address";
  1037. char *script = malloc(scriptsz);
  1038. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1039. free(script);
  1040. return "Failed to convert address to script";
  1041. }
  1042. bytes_assimilate_raw(b, script, scriptsz, scriptsz);
  1043. return NULL;
  1044. }
  1045. #endif
  1046. static
  1047. char *set_quit_summary(const char * const arg)
  1048. {
  1049. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1050. opt_quit_summary = BQS_NONE;
  1051. else
  1052. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1053. opt_quit_summary = BQS_DEVS;
  1054. else
  1055. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1056. opt_quit_summary = BQS_PROCS;
  1057. else
  1058. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1059. opt_quit_summary = BQS_DETAILED;
  1060. else
  1061. return "Quit summary must be one of none/devs/procs/detailed";
  1062. return NULL;
  1063. }
  1064. static void pdiff_target_leadzero(void *, double);
  1065. char *set_request_diff(const char *arg, float *p)
  1066. {
  1067. unsigned char target[32];
  1068. char *e = opt_set_floatval(arg, p);
  1069. if (e)
  1070. return e;
  1071. request_bdiff = (double)*p * 0.9999847412109375;
  1072. pdiff_target_leadzero(target, *p);
  1073. request_target_str = malloc(65);
  1074. bin2hex(request_target_str, target, 32);
  1075. return NULL;
  1076. }
  1077. #ifdef NEED_BFG_LOWL_VCOM
  1078. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1079. #ifdef WIN32
  1080. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1081. {
  1082. char dev[PATH_MAX];
  1083. char *devp = dev;
  1084. size_t bufLen = 0x100;
  1085. tryagain: ;
  1086. char buf[bufLen];
  1087. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1088. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1089. bufLen *= 2;
  1090. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1091. goto tryagain;
  1092. }
  1093. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1094. }
  1095. size_t tLen;
  1096. memcpy(devp, "\\\\.\\", 4);
  1097. devp = &devp[4];
  1098. for (char *t = buf; *t; t += tLen) {
  1099. tLen = strlen(t) + 1;
  1100. if (strncmp("COM", t, 3))
  1101. continue;
  1102. memcpy(devp, t, tLen);
  1103. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1104. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1105. }
  1106. }
  1107. #else
  1108. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1109. {
  1110. char dev[PATH_MAX];
  1111. char *devp = dev;
  1112. DIR *D;
  1113. struct dirent *de;
  1114. const char devdir[] = "/dev";
  1115. const size_t devdirlen = sizeof(devdir) - 1;
  1116. char *devpath = devp;
  1117. char *devfile = devpath + devdirlen + 1;
  1118. D = opendir(devdir);
  1119. if (!D)
  1120. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1121. memcpy(devpath, devdir, devdirlen);
  1122. devpath[devdirlen] = '/';
  1123. while ( (de = readdir(D)) ) {
  1124. if (!strncmp(de->d_name, "cu.", 3)
  1125. //don't probe Bluetooth devices - causes bus errors and segfaults
  1126. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1127. goto trydev;
  1128. if (strncmp(de->d_name, "tty", 3))
  1129. continue;
  1130. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1131. continue;
  1132. trydev:
  1133. strcpy(devfile, de->d_name);
  1134. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1135. }
  1136. closedir(D);
  1137. }
  1138. #endif
  1139. #endif
  1140. static char *add_serial(const char *arg)
  1141. {
  1142. string_elist_add(arg, &scan_devices);
  1143. return NULL;
  1144. }
  1145. static
  1146. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1147. {
  1148. string_elist_add(arg, elist);
  1149. return NULL;
  1150. }
  1151. bool get_intrange(const char *arg, int *val1, int *val2)
  1152. {
  1153. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1154. char *p, *p2;
  1155. *val1 = strtol(arg, &p, 0);
  1156. if (arg == p)
  1157. // Zero-length ending number, invalid
  1158. return false;
  1159. while (true)
  1160. {
  1161. if (!p[0])
  1162. {
  1163. *val2 = *val1;
  1164. return true;
  1165. }
  1166. if (p[0] == '-')
  1167. break;
  1168. if (!isspace(p[0]))
  1169. // Garbage, invalid
  1170. return false;
  1171. ++p;
  1172. }
  1173. p2 = &p[1];
  1174. *val2 = strtol(p2, &p, 0);
  1175. if (p2 == p)
  1176. // Zero-length ending number, invalid
  1177. return false;
  1178. while (true)
  1179. {
  1180. if (!p[0])
  1181. return true;
  1182. if (!isspace(p[0]))
  1183. // Garbage, invalid
  1184. return false;
  1185. ++p;
  1186. }
  1187. }
  1188. static
  1189. void _test_intrange(const char *s, const int v[2])
  1190. {
  1191. int a[2];
  1192. if (!get_intrange(s, &a[0], &a[1]))
  1193. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1194. for (int i = 0; i < 2; ++i)
  1195. if (unlikely(a[i] != v[i]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1197. }
  1198. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1199. static
  1200. void _test_intrange_fail(const char *s)
  1201. {
  1202. int a[2];
  1203. if (get_intrange(s, &a[0], &a[1]))
  1204. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1205. }
  1206. static
  1207. void test_intrange()
  1208. {
  1209. _test_intrange("-1--2", -1, -2);
  1210. _test_intrange("-1-2", -1, 2);
  1211. _test_intrange("1--2", 1, -2);
  1212. _test_intrange("1-2", 1, 2);
  1213. _test_intrange("111-222", 111, 222);
  1214. _test_intrange(" 11 - 22 ", 11, 22);
  1215. _test_intrange("+11-+22", 11, 22);
  1216. _test_intrange("-1", -1, -1);
  1217. _test_intrange_fail("all");
  1218. _test_intrange_fail("1-");
  1219. _test_intrange_fail("");
  1220. _test_intrange_fail("1-54x");
  1221. }
  1222. static char *set_devices(char *arg)
  1223. {
  1224. if (*arg) {
  1225. if (*arg == '?') {
  1226. opt_display_devs = true;
  1227. return NULL;
  1228. }
  1229. } else
  1230. return "Invalid device parameters";
  1231. string_elist_add(arg, &opt_devices_enabled_list);
  1232. return NULL;
  1233. }
  1234. static char *set_balance(enum pool_strategy *strategy)
  1235. {
  1236. *strategy = POOL_BALANCE;
  1237. return NULL;
  1238. }
  1239. static char *set_loadbalance(enum pool_strategy *strategy)
  1240. {
  1241. *strategy = POOL_LOADBALANCE;
  1242. return NULL;
  1243. }
  1244. static char *set_rotate(const char *arg, int *i)
  1245. {
  1246. pool_strategy = POOL_ROTATE;
  1247. return set_int_range(arg, i, 0, 9999);
  1248. }
  1249. static char *set_rr(enum pool_strategy *strategy)
  1250. {
  1251. *strategy = POOL_ROUNDROBIN;
  1252. return NULL;
  1253. }
  1254. /* Detect that url is for a stratum protocol either via the presence of
  1255. * stratum+tcp or by detecting a stratum server response */
  1256. bool detect_stratum(struct pool *pool, char *url)
  1257. {
  1258. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1259. return false;
  1260. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1261. pool_set_uri(pool, strdup(url));
  1262. pool->has_stratum = true;
  1263. pool->stratum_url = pool->sockaddr_url;
  1264. return true;
  1265. }
  1266. return false;
  1267. }
  1268. static struct pool *add_url(void)
  1269. {
  1270. total_urls++;
  1271. if (total_urls > total_pools)
  1272. add_pool();
  1273. return pools[total_urls - 1];
  1274. }
  1275. static void setup_url(struct pool *pool, char *arg)
  1276. {
  1277. if (detect_stratum(pool, arg))
  1278. return;
  1279. opt_set_charp(arg, &pool->rpc_url);
  1280. if (strncmp(arg, "http://", 7) &&
  1281. strncmp(arg, "https://", 8)) {
  1282. const size_t L = strlen(arg);
  1283. char *httpinput;
  1284. httpinput = malloc(8 + L);
  1285. if (!httpinput)
  1286. quit(1, "Failed to malloc httpinput");
  1287. sprintf(httpinput, "http://%s", arg);
  1288. pool_set_uri(pool, httpinput);
  1289. }
  1290. }
  1291. static char *set_url(char *arg)
  1292. {
  1293. struct pool *pool = add_url();
  1294. setup_url(pool, arg);
  1295. return NULL;
  1296. }
  1297. static char *set_quota(char *arg)
  1298. {
  1299. char *semicolon = strchr(arg, ';'), *url;
  1300. int len, qlen, quota;
  1301. struct pool *pool;
  1302. if (!semicolon)
  1303. return "No semicolon separated quota;URL pair found";
  1304. len = strlen(arg);
  1305. *semicolon = '\0';
  1306. qlen = strlen(arg);
  1307. if (!qlen)
  1308. return "No parameter for quota found";
  1309. len -= qlen + 1;
  1310. if (len < 1)
  1311. return "No parameter for URL found";
  1312. quota = atoi(arg);
  1313. if (quota < 0)
  1314. return "Invalid negative parameter for quota set";
  1315. url = arg + qlen + 1;
  1316. pool = add_url();
  1317. setup_url(pool, url);
  1318. pool->quota = quota;
  1319. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1320. adjust_quota_gcd();
  1321. return NULL;
  1322. }
  1323. static char *set_user(const char *arg)
  1324. {
  1325. struct pool *pool;
  1326. total_users++;
  1327. if (total_users > total_pools)
  1328. add_pool();
  1329. pool = pools[total_users - 1];
  1330. opt_set_charp(arg, &pool->rpc_user);
  1331. return NULL;
  1332. }
  1333. static char *set_pass(const char *arg)
  1334. {
  1335. struct pool *pool;
  1336. total_passes++;
  1337. if (total_passes > total_pools)
  1338. add_pool();
  1339. pool = pools[total_passes - 1];
  1340. opt_set_charp(arg, &pool->rpc_pass);
  1341. return NULL;
  1342. }
  1343. static char *set_userpass(const char *arg)
  1344. {
  1345. struct pool *pool;
  1346. char *updup;
  1347. if (total_users != total_passes)
  1348. return "User + pass options must be balanced before userpass";
  1349. ++total_users;
  1350. ++total_passes;
  1351. if (total_users > total_pools)
  1352. add_pool();
  1353. pool = pools[total_users - 1];
  1354. updup = strdup(arg);
  1355. opt_set_charp(arg, &pool->rpc_userpass);
  1356. pool->rpc_user = updup;
  1357. pool->rpc_pass = strchr(updup, ':');
  1358. if (pool->rpc_pass)
  1359. pool->rpc_pass++[0] = '\0';
  1360. else
  1361. pool->rpc_pass = &updup[strlen(updup)];
  1362. return NULL;
  1363. }
  1364. static char *set_pool_priority(const char *arg)
  1365. {
  1366. struct pool *pool;
  1367. if (!total_pools)
  1368. return "Usage of --pool-priority before pools are defined does not make sense";
  1369. pool = pools[total_pools - 1];
  1370. opt_set_intval(arg, &pool->prio);
  1371. return NULL;
  1372. }
  1373. static char *set_pool_proxy(const char *arg)
  1374. {
  1375. struct pool *pool;
  1376. if (!total_pools)
  1377. return "Usage of --pool-proxy before pools are defined does not make sense";
  1378. if (!our_curl_supports_proxy_uris())
  1379. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1380. pool = pools[total_pools - 1];
  1381. opt_set_charp(arg, &pool->rpc_proxy);
  1382. return NULL;
  1383. }
  1384. static char *set_pool_force_rollntime(const char *arg)
  1385. {
  1386. struct pool *pool;
  1387. if (!total_pools)
  1388. return "Usage of --force-rollntime before pools are defined does not make sense";
  1389. pool = pools[total_pools - 1];
  1390. opt_set_intval(arg, &pool->force_rollntime);
  1391. return NULL;
  1392. }
  1393. static char *enable_debug(bool *flag)
  1394. {
  1395. *flag = true;
  1396. opt_debug_console = true;
  1397. /* Turn on verbose output, too. */
  1398. opt_log_output = true;
  1399. return NULL;
  1400. }
  1401. static char *set_schedtime(const char *arg, struct schedtime *st)
  1402. {
  1403. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1404. {
  1405. if (strcasecmp(arg, "now"))
  1406. return "Invalid time set, should be HH:MM";
  1407. } else
  1408. schedstop.tm.tm_sec = 0;
  1409. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1410. return "Invalid time set.";
  1411. st->enable = true;
  1412. return NULL;
  1413. }
  1414. static
  1415. char *set_log_file(char *arg)
  1416. {
  1417. char *r = "";
  1418. long int i = strtol(arg, &r, 10);
  1419. int fd, stderr_fd = fileno(stderr);
  1420. if ((!*r) && i >= 0 && i <= INT_MAX)
  1421. fd = i;
  1422. else
  1423. if (!strcmp(arg, "-"))
  1424. {
  1425. fd = fileno(stdout);
  1426. if (unlikely(fd == -1))
  1427. return "Standard output missing for log-file";
  1428. }
  1429. else
  1430. {
  1431. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1432. if (unlikely(fd == -1))
  1433. return "Failed to open log-file";
  1434. }
  1435. close(stderr_fd);
  1436. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1437. return "Failed to dup2 for log-file";
  1438. close(fd);
  1439. return NULL;
  1440. }
  1441. static
  1442. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1443. {
  1444. char *r = "";
  1445. long int i = strtol(arg, &r, 10);
  1446. static char *err = NULL;
  1447. const size_t errbufsz = 0x100;
  1448. free(err);
  1449. err = NULL;
  1450. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1451. *F = fdopen((int)i, mode);
  1452. if (!*F)
  1453. {
  1454. err = malloc(errbufsz);
  1455. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1456. (int)i, purpose);
  1457. return err;
  1458. }
  1459. } else if (!strcmp(arg, "-")) {
  1460. *F = (mode[0] == 'a') ? stdout : stdin;
  1461. if (!*F)
  1462. {
  1463. err = malloc(errbufsz);
  1464. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1465. (mode[0] == 'a') ? "out" : "in", purpose);
  1466. return err;
  1467. }
  1468. } else {
  1469. *F = fopen(arg, mode);
  1470. if (!*F)
  1471. {
  1472. err = malloc(errbufsz);
  1473. snprintf(err, errbufsz, "Failed to open %s for %s",
  1474. arg, purpose);
  1475. return err;
  1476. }
  1477. }
  1478. return NULL;
  1479. }
  1480. static char *set_noncelog(char *arg)
  1481. {
  1482. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1483. }
  1484. static char *set_sharelog(char *arg)
  1485. {
  1486. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1487. }
  1488. static
  1489. void _add_set_device_option(const char * const func, const char * const buf)
  1490. {
  1491. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1492. string_elist_add(buf, &opt_set_device_list);
  1493. }
  1494. #define add_set_device_option(...) do{ \
  1495. char _tmp1718[0x100]; \
  1496. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1497. _add_set_device_option(__func__, _tmp1718); \
  1498. }while(0)
  1499. char *set_temp_cutoff(char *arg)
  1500. {
  1501. if (strchr(arg, ','))
  1502. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1503. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1504. add_set_device_option("all:temp-cutoff=%s", arg);
  1505. return NULL;
  1506. }
  1507. char *set_temp_target(char *arg)
  1508. {
  1509. if (strchr(arg, ','))
  1510. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1511. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1512. add_set_device_option("all:temp-target=%s", arg);
  1513. return NULL;
  1514. }
  1515. #ifdef HAVE_OPENCL
  1516. static
  1517. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1518. {
  1519. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1520. add_set_device_option("OCL:binary=no");
  1521. return NULL;
  1522. }
  1523. #endif
  1524. static
  1525. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1526. {
  1527. opt_disable_client_reconnect = true;
  1528. want_stratum = false;
  1529. return NULL;
  1530. }
  1531. static char *set_api_allow(const char *arg)
  1532. {
  1533. opt_set_charp(arg, &opt_api_allow);
  1534. return NULL;
  1535. }
  1536. static char *set_api_groups(const char *arg)
  1537. {
  1538. opt_set_charp(arg, &opt_api_groups);
  1539. return NULL;
  1540. }
  1541. static char *set_api_description(const char *arg)
  1542. {
  1543. opt_set_charp(arg, &opt_api_description);
  1544. return NULL;
  1545. }
  1546. static char *set_api_mcast_des(const char *arg)
  1547. {
  1548. opt_set_charp(arg, &opt_api_mcast_des);
  1549. return NULL;
  1550. }
  1551. #ifdef USE_ICARUS
  1552. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1553. static char *set_icarus_options(const char *arg)
  1554. {
  1555. if (strchr(arg, ','))
  1556. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1557. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1558. char *opts = strdup(arg), *argdup;
  1559. argdup = opts;
  1560. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1561. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1562. char *saveptr, *opt;
  1563. for (int i = 0; i < 4; ++i, ++sdf)
  1564. {
  1565. opt = strtok_r(opts, ":", &saveptr);
  1566. opts = NULL;
  1567. if (!opt)
  1568. break;
  1569. if (!opt[0])
  1570. continue;
  1571. for (int j = 0; j < 4; ++j)
  1572. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1573. }
  1574. free(argdup);
  1575. return NULL;
  1576. }
  1577. static char *set_icarus_timing(const char *arg)
  1578. {
  1579. if (strchr(arg, ','))
  1580. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1581. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1582. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1583. for (int j = 0; j < 4; ++j)
  1584. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1585. return NULL;
  1586. }
  1587. #endif
  1588. #ifdef USE_AVALON
  1589. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1590. static char *set_avalon_options(const char *arg)
  1591. {
  1592. if (strchr(arg, ','))
  1593. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1594. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1595. char *opts = strdup(arg), *argdup;
  1596. argdup = opts;
  1597. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1598. char *saveptr, *opt;
  1599. for (int i = 0; i < 5; ++i, ++sdf)
  1600. {
  1601. opt = strtok_r(opts, ":", &saveptr);
  1602. opts = NULL;
  1603. if (!opt)
  1604. break;
  1605. if (!opt[0])
  1606. continue;
  1607. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1608. }
  1609. free(argdup);
  1610. return NULL;
  1611. }
  1612. #endif
  1613. #ifdef USE_KLONDIKE
  1614. static char *set_klondike_options(const char *arg)
  1615. {
  1616. int hashclock;
  1617. double temptarget;
  1618. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1619. {
  1620. default:
  1621. return "Unrecognised --klondike-options";
  1622. case 2:
  1623. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1624. // fallthru
  1625. case 1:
  1626. add_set_device_option("klondike:clock=%d", hashclock);
  1627. }
  1628. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1629. return NULL;
  1630. }
  1631. #endif
  1632. __maybe_unused
  1633. static char *set_null(const char __maybe_unused *arg)
  1634. {
  1635. return NULL;
  1636. }
  1637. /* These options are available from config file or commandline */
  1638. static struct opt_table opt_config_table[] = {
  1639. #ifdef WANT_CPUMINE
  1640. OPT_WITH_ARG("--algo",
  1641. set_algo, show_algo, &opt_algo,
  1642. "Specify sha256 implementation for CPU mining:\n"
  1643. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1644. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1645. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1646. #ifdef WANT_SSE2_4WAY
  1647. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1648. #endif
  1649. #ifdef WANT_VIA_PADLOCK
  1650. "\n\tvia\t\tVIA padlock implementation"
  1651. #endif
  1652. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1653. #ifdef WANT_CRYPTOPP_ASM32
  1654. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1655. #endif
  1656. #ifdef WANT_X8632_SSE2
  1657. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1658. #endif
  1659. #ifdef WANT_X8664_SSE2
  1660. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1661. #endif
  1662. #ifdef WANT_X8664_SSE4
  1663. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1664. #endif
  1665. #ifdef WANT_ALTIVEC_4WAY
  1666. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1667. #endif
  1668. ),
  1669. OPT_WITH_ARG("-a",
  1670. set_algo, show_algo, &opt_algo,
  1671. opt_hidden),
  1672. #endif
  1673. OPT_WITH_ARG("--api-allow",
  1674. set_api_allow, NULL, NULL,
  1675. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1676. OPT_WITH_ARG("--api-description",
  1677. set_api_description, NULL, NULL,
  1678. "Description placed in the API status header, default: BFGMiner version"),
  1679. OPT_WITH_ARG("--api-groups",
  1680. set_api_groups, NULL, NULL,
  1681. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1682. OPT_WITHOUT_ARG("--api-listen",
  1683. opt_set_bool, &opt_api_listen,
  1684. "Enable API, default: disabled"),
  1685. OPT_WITHOUT_ARG("--api-mcast",
  1686. opt_set_bool, &opt_api_mcast,
  1687. "Enable API Multicast listener, default: disabled"),
  1688. OPT_WITH_ARG("--api-mcast-addr",
  1689. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1690. "API Multicast listen address"),
  1691. OPT_WITH_ARG("--api-mcast-code",
  1692. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1693. "Code expected in the API Multicast message, don't use '-'"),
  1694. OPT_WITH_ARG("--api-mcast-des",
  1695. set_api_mcast_des, NULL, NULL,
  1696. "Description appended to the API Multicast reply, default: ''"),
  1697. OPT_WITH_ARG("--api-mcast-port",
  1698. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1699. "API Multicast listen port"),
  1700. OPT_WITHOUT_ARG("--api-network",
  1701. opt_set_bool, &opt_api_network,
  1702. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1703. OPT_WITH_ARG("--api-port",
  1704. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1705. "Port number of miner API"),
  1706. #ifdef HAVE_ADL
  1707. OPT_WITHOUT_ARG("--auto-fan",
  1708. opt_set_bool, &opt_autofan,
  1709. opt_hidden),
  1710. OPT_WITHOUT_ARG("--auto-gpu",
  1711. opt_set_bool, &opt_autoengine,
  1712. opt_hidden),
  1713. #endif
  1714. OPT_WITHOUT_ARG("--balance",
  1715. set_balance, &pool_strategy,
  1716. "Change multipool strategy from failover to even share balance"),
  1717. OPT_WITHOUT_ARG("--benchmark",
  1718. opt_set_bool, &opt_benchmark,
  1719. "Run BFGMiner in benchmark mode - produces no shares"),
  1720. #if defined(USE_BITFORCE)
  1721. OPT_WITHOUT_ARG("--bfl-range",
  1722. opt_set_bool, &opt_bfl_noncerange,
  1723. "Use nonce range on bitforce devices if supported"),
  1724. #endif
  1725. #ifdef HAVE_CHROOT
  1726. OPT_WITH_ARG("--chroot-dir",
  1727. opt_set_charp, NULL, &chroot_dir,
  1728. "Chroot to a directory right after startup"),
  1729. #endif
  1730. OPT_WITH_ARG("--cmd-idle",
  1731. opt_set_charp, NULL, &cmd_idle,
  1732. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1733. OPT_WITH_ARG("--cmd-sick",
  1734. opt_set_charp, NULL, &cmd_sick,
  1735. "Execute a command when a device is declared sick"),
  1736. OPT_WITH_ARG("--cmd-dead",
  1737. opt_set_charp, NULL, &cmd_dead,
  1738. "Execute a command when a device is declared dead"),
  1739. #if BLKMAKER_VERSION > 1
  1740. OPT_WITH_ARG("--coinbase-addr",
  1741. set_b58addr, NULL, &opt_coinbase_script,
  1742. "Set coinbase payout address for solo mining"),
  1743. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1744. set_b58addr, NULL, &opt_coinbase_script,
  1745. opt_hidden),
  1746. #endif
  1747. #if BLKMAKER_VERSION > 0
  1748. OPT_WITH_ARG("--coinbase-sig",
  1749. set_strdup, NULL, &opt_coinbase_sig,
  1750. "Set coinbase signature when possible"),
  1751. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1752. set_strdup, NULL, &opt_coinbase_sig,
  1753. opt_hidden),
  1754. #endif
  1755. #ifdef HAVE_CURSES
  1756. OPT_WITHOUT_ARG("--compact",
  1757. opt_set_bool, &opt_compact,
  1758. "Use compact display without per device statistics"),
  1759. #endif
  1760. #ifdef WANT_CPUMINE
  1761. OPT_WITH_ARG("--cpu-threads",
  1762. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1763. "Number of miner CPU threads"),
  1764. OPT_WITH_ARG("-t",
  1765. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1766. opt_hidden),
  1767. #endif
  1768. OPT_WITHOUT_ARG("--debug|-D",
  1769. enable_debug, &opt_debug,
  1770. "Enable debug output"),
  1771. OPT_WITHOUT_ARG("--debuglog",
  1772. opt_set_bool, &opt_debug,
  1773. "Enable debug logging"),
  1774. OPT_WITHOUT_ARG("--device-protocol-dump",
  1775. opt_set_bool, &opt_dev_protocol,
  1776. "Verbose dump of device protocol-level activities"),
  1777. OPT_WITH_ARG("--device|-d",
  1778. set_devices, NULL, NULL,
  1779. "Enable only devices matching pattern (default: all)"),
  1780. OPT_WITHOUT_ARG("--disable-rejecting",
  1781. opt_set_bool, &opt_disable_pool,
  1782. "Automatically disable pools that continually reject shares"),
  1783. #ifdef USE_LIBMICROHTTPD
  1784. OPT_WITH_ARG("--http-port",
  1785. opt_set_intval, opt_show_intval, &httpsrv_port,
  1786. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1787. #endif
  1788. OPT_WITH_ARG("--expiry",
  1789. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1790. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1791. OPT_WITH_ARG("-E",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1793. opt_hidden),
  1794. OPT_WITH_ARG("--expiry-lp",
  1795. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1796. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1797. OPT_WITHOUT_ARG("--failover-only",
  1798. opt_set_bool, &opt_fail_only,
  1799. "Don't leak work to backup pools when primary pool is lagging"),
  1800. OPT_WITH_ARG("--failover-switch-delay",
  1801. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1802. "Delay in seconds before switching back to a failed pool"),
  1803. #ifdef USE_FPGA
  1804. OPT_WITHOUT_ARG("--force-dev-init",
  1805. opt_set_bool, &opt_force_dev_init,
  1806. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1807. #endif
  1808. #ifdef HAVE_OPENCL
  1809. OPT_WITH_ARG("--gpu-dyninterval",
  1810. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1811. opt_hidden),
  1812. OPT_WITH_ARG("--gpu-platform",
  1813. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1814. "Select OpenCL platform ID to use for GPU mining"),
  1815. OPT_WITH_ARG("--gpu-threads|-g",
  1816. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1817. opt_hidden),
  1818. #ifdef HAVE_ADL
  1819. OPT_WITH_ARG("--gpu-engine",
  1820. set_gpu_engine, NULL, NULL,
  1821. opt_hidden),
  1822. OPT_WITH_ARG("--gpu-fan",
  1823. set_gpu_fan, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITH_ARG("--gpu-map",
  1826. set_gpu_map, NULL, NULL,
  1827. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1828. OPT_WITH_ARG("--gpu-memclock",
  1829. set_gpu_memclock, NULL, NULL,
  1830. opt_hidden),
  1831. OPT_WITH_ARG("--gpu-memdiff",
  1832. set_gpu_memdiff, NULL, NULL,
  1833. opt_hidden),
  1834. OPT_WITH_ARG("--gpu-powertune",
  1835. set_gpu_powertune, NULL, NULL,
  1836. opt_hidden),
  1837. OPT_WITHOUT_ARG("--gpu-reorder",
  1838. opt_set_bool, &opt_reorder,
  1839. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1840. OPT_WITH_ARG("--gpu-vddc",
  1841. set_gpu_vddc, NULL, NULL,
  1842. opt_hidden),
  1843. #endif
  1844. #ifdef USE_SCRYPT
  1845. OPT_WITH_ARG("--lookup-gap",
  1846. set_lookup_gap, NULL, NULL,
  1847. opt_hidden),
  1848. #endif
  1849. OPT_WITH_ARG("--intensity|-I",
  1850. set_intensity, NULL, NULL,
  1851. opt_hidden),
  1852. #endif
  1853. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1854. OPT_WITH_ARG("--kernel-path",
  1855. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1856. "Specify a path to where bitstream and kernel files are"),
  1857. OPT_WITH_ARG("-K",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. opt_hidden),
  1860. #endif
  1861. #ifdef HAVE_OPENCL
  1862. OPT_WITH_ARG("--kernel|-k",
  1863. set_kernel, NULL, NULL,
  1864. opt_hidden),
  1865. #endif
  1866. #ifdef USE_ICARUS
  1867. OPT_WITH_ARG("--icarus-options",
  1868. set_icarus_options, NULL, NULL,
  1869. opt_hidden),
  1870. OPT_WITH_ARG("--icarus-timing",
  1871. set_icarus_timing, NULL, NULL,
  1872. opt_hidden),
  1873. #endif
  1874. #ifdef USE_AVALON
  1875. OPT_WITH_ARG("--avalon-options",
  1876. set_avalon_options, NULL, NULL,
  1877. opt_hidden),
  1878. #endif
  1879. #ifdef USE_KLONDIKE
  1880. OPT_WITH_ARG("--klondike-options",
  1881. set_klondike_options, NULL, NULL,
  1882. "Set klondike options clock:temptarget"),
  1883. #endif
  1884. OPT_WITHOUT_ARG("--load-balance",
  1885. set_loadbalance, &pool_strategy,
  1886. "Change multipool strategy from failover to quota based balance"),
  1887. OPT_WITH_ARG("--log|-l",
  1888. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1889. "Interval in seconds between log output"),
  1890. OPT_WITH_ARG("--log-file|-L",
  1891. set_log_file, NULL, NULL,
  1892. "Append log file for output messages"),
  1893. OPT_WITH_ARG("--logfile",
  1894. set_log_file, NULL, NULL,
  1895. opt_hidden),
  1896. OPT_WITHOUT_ARG("--log-microseconds",
  1897. opt_set_bool, &opt_log_microseconds,
  1898. "Include microseconds in log output"),
  1899. #if defined(unix) || defined(__APPLE__)
  1900. OPT_WITH_ARG("--monitor|-m",
  1901. opt_set_charp, NULL, &opt_stderr_cmd,
  1902. "Use custom pipe cmd for output messages"),
  1903. #endif // defined(unix)
  1904. OPT_WITHOUT_ARG("--net-delay",
  1905. opt_set_bool, &opt_delaynet,
  1906. "Impose small delays in networking to avoid overloading slow routers"),
  1907. OPT_WITHOUT_ARG("--no-adl",
  1908. opt_set_bool, &opt_noadl,
  1909. #ifdef HAVE_ADL
  1910. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1911. #else
  1912. opt_hidden
  1913. #endif
  1914. ),
  1915. OPT_WITHOUT_ARG("--no-gbt",
  1916. opt_set_invbool, &want_gbt,
  1917. "Disable getblocktemplate support"),
  1918. OPT_WITHOUT_ARG("--no-getwork",
  1919. opt_set_invbool, &want_getwork,
  1920. "Disable getwork support"),
  1921. OPT_WITHOUT_ARG("--no-hotplug",
  1922. #ifdef HAVE_BFG_HOTPLUG
  1923. opt_set_invbool, &opt_hotplug,
  1924. "Disable hotplug detection"
  1925. #else
  1926. set_null, &opt_hotplug,
  1927. opt_hidden
  1928. #endif
  1929. ),
  1930. OPT_WITHOUT_ARG("--no-local-bitcoin",
  1931. #if BLKMAKER_VERSION > 1
  1932. opt_set_invbool, &opt_load_bitcoin_conf,
  1933. "Disable adding pools for local bitcoin RPC servers"),
  1934. #else
  1935. set_null, NULL, opt_hidden),
  1936. #endif
  1937. OPT_WITHOUT_ARG("--no-longpoll",
  1938. opt_set_invbool, &want_longpoll,
  1939. "Disable X-Long-Polling support"),
  1940. OPT_WITHOUT_ARG("--no-pool-disable",
  1941. opt_set_invbool, &opt_disable_pool,
  1942. opt_hidden),
  1943. OPT_WITHOUT_ARG("--no-client-reconnect",
  1944. opt_set_invbool, &opt_disable_client_reconnect,
  1945. opt_hidden),
  1946. OPT_WITHOUT_ARG("--no-pool-redirect",
  1947. disable_pool_redirect, NULL,
  1948. "Ignore pool requests to redirect to another server"),
  1949. OPT_WITHOUT_ARG("--no-restart",
  1950. opt_set_invbool, &opt_restart,
  1951. "Do not attempt to restart devices that hang"
  1952. ),
  1953. OPT_WITHOUT_ARG("--no-show-processors",
  1954. opt_set_invbool, &opt_show_procs,
  1955. opt_hidden),
  1956. OPT_WITHOUT_ARG("--no-show-procs",
  1957. opt_set_invbool, &opt_show_procs,
  1958. opt_hidden),
  1959. OPT_WITHOUT_ARG("--no-stratum",
  1960. opt_set_invbool, &want_stratum,
  1961. "Disable Stratum detection"),
  1962. OPT_WITHOUT_ARG("--no-submit-stale",
  1963. opt_set_invbool, &opt_submit_stale,
  1964. "Don't submit shares if they are detected as stale"),
  1965. #ifdef HAVE_OPENCL
  1966. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1967. set_no_opencl_binaries, NULL,
  1968. opt_hidden),
  1969. #endif
  1970. OPT_WITHOUT_ARG("--no-unicode",
  1971. #ifdef USE_UNICODE
  1972. opt_set_invbool, &use_unicode,
  1973. "Don't use Unicode characters in TUI"
  1974. #else
  1975. set_null, &use_unicode,
  1976. opt_hidden
  1977. #endif
  1978. ),
  1979. OPT_WITH_ARG("--noncelog",
  1980. set_noncelog, NULL, NULL,
  1981. "Create log of all nonces found"),
  1982. OPT_WITH_ARG("--pass|-p",
  1983. set_pass, NULL, NULL,
  1984. "Password for bitcoin JSON-RPC server"),
  1985. OPT_WITHOUT_ARG("--per-device-stats",
  1986. opt_set_bool, &want_per_device_stats,
  1987. "Force verbose mode and output per-device statistics"),
  1988. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1989. set_userpass, NULL, NULL,
  1990. opt_hidden),
  1991. OPT_WITH_ARG("--pool-priority",
  1992. set_pool_priority, NULL, NULL,
  1993. "Priority for just the previous-defined pool"),
  1994. OPT_WITH_ARG("--pool-proxy|-x",
  1995. set_pool_proxy, NULL, NULL,
  1996. "Proxy URI to use for connecting to just the previous-defined pool"),
  1997. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1998. set_pool_force_rollntime, NULL, NULL,
  1999. opt_hidden),
  2000. OPT_WITHOUT_ARG("--protocol-dump|-P",
  2001. opt_set_bool, &opt_protocol,
  2002. "Verbose dump of protocol-level activities"),
  2003. OPT_WITH_ARG("--queue|-Q",
  2004. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2005. "Minimum number of work items to have queued (0+)"),
  2006. OPT_WITHOUT_ARG("--quiet|-q",
  2007. opt_set_bool, &opt_quiet,
  2008. "Disable logging output, display status and errors"),
  2009. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2010. opt_set_bool, &opt_quiet_work_updates,
  2011. opt_hidden),
  2012. OPT_WITH_ARG("--quit-summary",
  2013. set_quit_summary, NULL, NULL,
  2014. "Summary printed when you quit: none/devs/procs/detailed"),
  2015. OPT_WITH_ARG("--quota|-U",
  2016. set_quota, NULL, NULL,
  2017. "quota;URL combination for server with load-balance strategy quotas"),
  2018. OPT_WITHOUT_ARG("--real-quiet",
  2019. opt_set_bool, &opt_realquiet,
  2020. "Disable all output"),
  2021. OPT_WITH_ARG("--request-diff",
  2022. set_request_diff, opt_show_floatval, &request_pdiff,
  2023. "Request a specific difficulty from pools"),
  2024. OPT_WITH_ARG("--retries",
  2025. opt_set_intval, opt_show_intval, &opt_retries,
  2026. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2027. OPT_WITH_ARG("--retry-pause",
  2028. set_null, NULL, NULL,
  2029. opt_hidden),
  2030. OPT_WITH_ARG("--rotate",
  2031. set_rotate, opt_show_intval, &opt_rotate_period,
  2032. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2033. OPT_WITHOUT_ARG("--round-robin",
  2034. set_rr, &pool_strategy,
  2035. "Change multipool strategy from failover to round robin on failure"),
  2036. OPT_WITH_ARG("--scan|-S",
  2037. add_serial, NULL, NULL,
  2038. "Configure how to scan for mining devices"),
  2039. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2040. add_serial, NULL, NULL,
  2041. opt_hidden),
  2042. OPT_WITH_ARG("--scan-time",
  2043. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2044. "Upper bound on time spent scanning current work, in seconds"),
  2045. OPT_WITH_ARG("-s",
  2046. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2047. opt_hidden),
  2048. OPT_WITH_ARG("--scantime",
  2049. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2050. opt_hidden),
  2051. OPT_WITH_ARG("--sched-start",
  2052. set_schedtime, NULL, &schedstart,
  2053. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2054. OPT_WITH_ARG("--sched-stop",
  2055. set_schedtime, NULL, &schedstop,
  2056. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2057. #ifdef USE_SCRYPT
  2058. OPT_WITHOUT_ARG("--scrypt",
  2059. opt_set_bool, &opt_scrypt,
  2060. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2061. #endif
  2062. OPT_WITH_ARG("--set-device|--set",
  2063. opt_string_elist_add, NULL, &opt_set_device_list,
  2064. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2065. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2066. OPT_WITH_ARG("--shaders",
  2067. set_shaders, NULL, NULL,
  2068. opt_hidden),
  2069. #endif
  2070. #ifdef HAVE_PWD_H
  2071. OPT_WITH_ARG("--setuid",
  2072. opt_set_charp, NULL, &opt_setuid,
  2073. "Username of an unprivileged user to run as"),
  2074. #endif
  2075. OPT_WITH_ARG("--sharelog",
  2076. set_sharelog, NULL, NULL,
  2077. "Append share log to file"),
  2078. OPT_WITH_ARG("--shares",
  2079. opt_set_floatval, NULL, &opt_shares,
  2080. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2081. OPT_WITHOUT_ARG("--show-processors",
  2082. opt_set_bool, &opt_show_procs,
  2083. "Show per processor statistics in summary"),
  2084. OPT_WITHOUT_ARG("--show-procs",
  2085. opt_set_bool, &opt_show_procs,
  2086. opt_hidden),
  2087. OPT_WITH_ARG("--skip-security-checks",
  2088. set_int_0_to_9999, NULL, &opt_skip_checks,
  2089. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2090. OPT_WITH_ARG("--socks-proxy",
  2091. opt_set_charp, NULL, &opt_socks_proxy,
  2092. "Set socks proxy (host:port)"),
  2093. #ifdef USE_LIBEVENT
  2094. OPT_WITH_ARG("--stratum-port",
  2095. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2096. "Port number to listen on for stratum miners (-1 means disabled)"),
  2097. #endif
  2098. OPT_WITHOUT_ARG("--submit-stale",
  2099. opt_set_bool, &opt_submit_stale,
  2100. opt_hidden),
  2101. OPT_WITH_ARG("--submit-threads",
  2102. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2103. "Minimum number of concurrent share submissions (default: 64)"),
  2104. #ifdef HAVE_SYSLOG_H
  2105. OPT_WITHOUT_ARG("--syslog",
  2106. opt_set_bool, &use_syslog,
  2107. "Use system log for output messages (default: standard error)"),
  2108. #endif
  2109. OPT_WITH_ARG("--temp-cutoff",
  2110. set_temp_cutoff, NULL, &opt_cutofftemp,
  2111. opt_hidden),
  2112. OPT_WITH_ARG("--temp-hysteresis",
  2113. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2114. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2115. #ifdef HAVE_ADL
  2116. OPT_WITH_ARG("--temp-overheat",
  2117. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2118. opt_hidden),
  2119. #endif
  2120. OPT_WITH_ARG("--temp-target",
  2121. set_temp_target, NULL, NULL,
  2122. opt_hidden),
  2123. OPT_WITHOUT_ARG("--text-only|-T",
  2124. opt_set_invbool, &use_curses,
  2125. #ifdef HAVE_CURSES
  2126. "Disable ncurses formatted screen output"
  2127. #else
  2128. opt_hidden
  2129. #endif
  2130. ),
  2131. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2132. OPT_WITH_ARG("--thread-concurrency",
  2133. set_thread_concurrency, NULL, NULL,
  2134. opt_hidden),
  2135. #endif
  2136. #ifdef USE_UNICODE
  2137. OPT_WITHOUT_ARG("--unicode",
  2138. opt_set_bool, &use_unicode,
  2139. "Use Unicode characters in TUI"),
  2140. #endif
  2141. OPT_WITH_ARG("--url|-o",
  2142. set_url, NULL, NULL,
  2143. "URL for bitcoin JSON-RPC server"),
  2144. OPT_WITH_ARG("--user|-u",
  2145. set_user, NULL, NULL,
  2146. "Username for bitcoin JSON-RPC server"),
  2147. #ifdef HAVE_OPENCL
  2148. OPT_WITH_ARG("--vectors|-v",
  2149. set_vector, NULL, NULL,
  2150. opt_hidden),
  2151. #endif
  2152. OPT_WITHOUT_ARG("--verbose",
  2153. opt_set_bool, &opt_log_output,
  2154. "Log verbose output to stderr as well as status output"),
  2155. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2156. opt_set_invbool, &opt_quiet_work_updates,
  2157. opt_hidden),
  2158. OPT_WITHOUT_ARG("--weighed-stats",
  2159. opt_set_bool, &opt_weighed_stats,
  2160. "Display statistics weighed to difficulty 1"),
  2161. #ifdef HAVE_OPENCL
  2162. OPT_WITH_ARG("--worksize|-w",
  2163. set_worksize, NULL, NULL,
  2164. opt_hidden),
  2165. #endif
  2166. OPT_WITHOUT_ARG("--unittest",
  2167. opt_set_bool, &opt_unittest, opt_hidden),
  2168. OPT_WITH_ARG("--userpass|-O",
  2169. set_userpass, NULL, NULL,
  2170. "Username:Password pair for bitcoin JSON-RPC server"),
  2171. OPT_WITHOUT_ARG("--worktime",
  2172. opt_set_bool, &opt_worktime,
  2173. "Display extra work time debug information"),
  2174. OPT_WITH_ARG("--pools",
  2175. opt_set_bool, NULL, NULL, opt_hidden),
  2176. OPT_ENDTABLE
  2177. };
  2178. static char *load_config(const char *arg, void __maybe_unused *unused);
  2179. static char *parse_config(json_t *config, bool fileconf, int * const fileconf_load_p)
  2180. {
  2181. static char err_buf[200];
  2182. struct opt_table *opt;
  2183. json_t *val;
  2184. if (fileconf && !*fileconf_load_p)
  2185. *fileconf_load_p = 1;
  2186. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2187. char *p, *name, *sp;
  2188. /* We don't handle subtables. */
  2189. assert(!(opt->type & OPT_SUBTABLE));
  2190. if (!opt->names)
  2191. continue;
  2192. /* Pull apart the option name(s). */
  2193. name = strdup(opt->names);
  2194. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2195. char *err = "Invalid value";
  2196. /* Ignore short options. */
  2197. if (p[1] != '-')
  2198. continue;
  2199. val = json_object_get(config, p+2);
  2200. if (!val)
  2201. continue;
  2202. if (opt->type & OPT_HASARG) {
  2203. if (json_is_string(val)) {
  2204. err = opt->cb_arg(json_string_value(val),
  2205. opt->u.arg);
  2206. } else if (json_is_number(val)) {
  2207. char buf[256], *p, *q;
  2208. snprintf(buf, 256, "%f", json_number_value(val));
  2209. if ( (p = strchr(buf, '.')) ) {
  2210. // Trim /\.0*$/ to work properly with integer-only arguments
  2211. q = p;
  2212. while (*(++q) == '0') {}
  2213. if (*q == '\0')
  2214. *p = '\0';
  2215. }
  2216. err = opt->cb_arg(buf, opt->u.arg);
  2217. } else if (json_is_array(val)) {
  2218. int n, size = json_array_size(val);
  2219. err = NULL;
  2220. for (n = 0; n < size && !err; n++) {
  2221. if (json_is_string(json_array_get(val, n)))
  2222. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2223. else if (json_is_object(json_array_get(val, n)))
  2224. err = parse_config(json_array_get(val, n), false, fileconf_load_p);
  2225. }
  2226. }
  2227. } else if (opt->type & OPT_NOARG) {
  2228. if (json_is_true(val))
  2229. err = opt->cb(opt->u.arg);
  2230. else if (json_is_boolean(val)) {
  2231. if (opt->cb == (void*)opt_set_bool)
  2232. err = opt_set_invbool(opt->u.arg);
  2233. else if (opt->cb == (void*)opt_set_invbool)
  2234. err = opt_set_bool(opt->u.arg);
  2235. }
  2236. }
  2237. if (err) {
  2238. /* Allow invalid values to be in configuration
  2239. * file, just skipping over them provided the
  2240. * JSON is still valid after that. */
  2241. if (fileconf) {
  2242. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2243. *fileconf_load_p = -1;
  2244. } else {
  2245. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2246. p, err);
  2247. return err_buf;
  2248. }
  2249. }
  2250. }
  2251. free(name);
  2252. }
  2253. val = json_object_get(config, JSON_INCLUDE_CONF);
  2254. if (val && json_is_string(val))
  2255. return load_config(json_string_value(val), NULL);
  2256. return NULL;
  2257. }
  2258. struct bfg_loaded_configfile *bfg_loaded_configfiles;
  2259. static char *load_config(const char *arg, void __maybe_unused *unused)
  2260. {
  2261. json_error_t err;
  2262. json_t *config;
  2263. char *json_error;
  2264. size_t siz;
  2265. struct bfg_loaded_configfile *cfginfo;
  2266. cfginfo = malloc(sizeof(*cfginfo));
  2267. *cfginfo = (struct bfg_loaded_configfile){
  2268. .filename = strdup(arg),
  2269. };
  2270. LL_APPEND(bfg_loaded_configfiles, cfginfo);
  2271. if (++include_count > JSON_MAX_DEPTH)
  2272. return JSON_MAX_DEPTH_ERR;
  2273. #if JANSSON_MAJOR_VERSION > 1
  2274. config = json_load_file(arg, 0, &err);
  2275. #else
  2276. config = json_load_file(arg, &err);
  2277. #endif
  2278. if (!json_is_object(config)) {
  2279. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2280. json_error = malloc(siz);
  2281. if (!json_error)
  2282. quit(1, "Malloc failure in json error");
  2283. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2284. return json_error;
  2285. }
  2286. config_loaded = true;
  2287. /* Parse the config now, so we can override it. That can keep pointers
  2288. * so don't free config object. */
  2289. return parse_config(config, true, &cfginfo->fileconf_load);
  2290. }
  2291. static
  2292. bool _load_default_configs(const char * const filepath, void * __maybe_unused userp)
  2293. {
  2294. bool * const found_defcfg_p = userp;
  2295. *found_defcfg_p = true;
  2296. load_config(filepath, NULL);
  2297. // Regardless of status of loading the config file, we should continue loading other defaults
  2298. return false;
  2299. }
  2300. static void load_default_config(void)
  2301. {
  2302. bool found_defcfg = false;
  2303. appdata_file_call("BFGMiner", def_conf, _load_default_configs, &found_defcfg);
  2304. if (!found_defcfg)
  2305. {
  2306. // No BFGMiner config, try Cgminer's...
  2307. appdata_file_call("cgminer", "cgminer.conf", _load_default_configs, &found_defcfg);
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are parsed before anything else */
  2323. static struct opt_table opt_early_table[] = {
  2324. // Default config is loaded in command line order, like a regular config
  2325. OPT_EARLY_WITH_ARG("--config|-c|--default-config",
  2326. set_bool_ignore_arg, NULL, &config_loaded,
  2327. opt_hidden),
  2328. OPT_EARLY_WITHOUT_ARG("--no-config|--no-default-config",
  2329. opt_set_bool, &config_loaded,
  2330. "Inhibit loading default config file"),
  2331. OPT_ENDTABLE
  2332. };
  2333. /* These options are available from commandline only */
  2334. static struct opt_table opt_cmdline_table[] = {
  2335. OPT_WITH_ARG("--config|-c",
  2336. load_config, NULL, NULL,
  2337. "Load a JSON-format configuration file\n"
  2338. "See example.conf for an example configuration."),
  2339. OPT_EARLY_WITHOUT_ARG("--no-config",
  2340. opt_set_bool, &config_loaded,
  2341. opt_hidden),
  2342. OPT_EARLY_WITHOUT_ARG("--no-default-config",
  2343. opt_set_bool, &config_loaded,
  2344. "Inhibit loading default config file"),
  2345. OPT_WITHOUT_ARG("--default-config",
  2346. load_default_config, NULL,
  2347. "Always load the default config file"),
  2348. OPT_WITHOUT_ARG("--help|-h",
  2349. opt_verusage_and_exit, NULL,
  2350. "Print this message"),
  2351. #ifdef HAVE_OPENCL
  2352. OPT_WITHOUT_ARG("--ndevs|-n",
  2353. print_ndevs_and_exit, &nDevs,
  2354. opt_hidden),
  2355. #endif
  2356. OPT_WITHOUT_ARG("--version|-V",
  2357. opt_version_and_exit, packagename,
  2358. "Display version and exit"),
  2359. OPT_ENDTABLE
  2360. };
  2361. static bool jobj_binary(const json_t *obj, const char *key,
  2362. void *buf, size_t buflen, bool required)
  2363. {
  2364. const char *hexstr;
  2365. json_t *tmp;
  2366. tmp = json_object_get(obj, key);
  2367. if (unlikely(!tmp)) {
  2368. if (unlikely(required))
  2369. applog(LOG_ERR, "JSON key '%s' not found", key);
  2370. return false;
  2371. }
  2372. hexstr = json_string_value(tmp);
  2373. if (unlikely(!hexstr)) {
  2374. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2375. return false;
  2376. }
  2377. if (!hex2bin(buf, hexstr, buflen))
  2378. return false;
  2379. return true;
  2380. }
  2381. static void calc_midstate(struct work *work)
  2382. {
  2383. union {
  2384. unsigned char c[64];
  2385. uint32_t i[16];
  2386. } data;
  2387. swap32yes(&data.i[0], work->data, 16);
  2388. sha256_ctx ctx;
  2389. sha256_init(&ctx);
  2390. sha256_update(&ctx, data.c, 64);
  2391. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2392. swap32tole(work->midstate, work->midstate, 8);
  2393. }
  2394. static
  2395. struct bfg_tmpl_ref *tmpl_makeref(blktemplate_t * const tmpl)
  2396. {
  2397. struct bfg_tmpl_ref * const tr = malloc(sizeof(*tr));
  2398. *tr = (struct bfg_tmpl_ref){
  2399. .tmpl = tmpl,
  2400. .refcount = 1,
  2401. };
  2402. mutex_init(&tr->mutex);
  2403. return tr;
  2404. }
  2405. static
  2406. void tmpl_incref(struct bfg_tmpl_ref * const tr)
  2407. {
  2408. mutex_lock(&tr->mutex);
  2409. ++tr->refcount;
  2410. mutex_unlock(&tr->mutex);
  2411. }
  2412. void tmpl_decref(struct bfg_tmpl_ref * const tr)
  2413. {
  2414. mutex_lock(&tr->mutex);
  2415. bool free_tmpl = !--tr->refcount;
  2416. mutex_unlock(&tr->mutex);
  2417. if (free_tmpl)
  2418. {
  2419. blktmpl_free(tr->tmpl);
  2420. mutex_destroy(&tr->mutex);
  2421. free(tr);
  2422. }
  2423. }
  2424. static struct work *make_work(void)
  2425. {
  2426. struct work *work = calloc(1, sizeof(struct work));
  2427. if (unlikely(!work))
  2428. quit(1, "Failed to calloc work in make_work");
  2429. cg_wlock(&control_lock);
  2430. work->id = total_work++;
  2431. cg_wunlock(&control_lock);
  2432. return work;
  2433. }
  2434. /* This is the central place all work that is about to be retired should be
  2435. * cleaned to remove any dynamically allocated arrays within the struct */
  2436. void clean_work(struct work *work)
  2437. {
  2438. free(work->job_id);
  2439. bytes_free(&work->nonce2);
  2440. free(work->nonce1);
  2441. if (work->device_data_free_func)
  2442. work->device_data_free_func(work);
  2443. if (work->tr)
  2444. tmpl_decref(work->tr);
  2445. memset(work, 0, sizeof(struct work));
  2446. }
  2447. /* All dynamically allocated work structs should be freed here to not leak any
  2448. * ram from arrays allocated within the work struct */
  2449. void free_work(struct work *work)
  2450. {
  2451. clean_work(work);
  2452. free(work);
  2453. }
  2454. const char *bfg_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";
  2455. #define workpadding_bin bfg_workpadding_bin
  2456. // Must only be called with ch_lock held!
  2457. static
  2458. void __update_block_title(const unsigned char *hash_swap)
  2459. {
  2460. if (hash_swap) {
  2461. char tmp[17];
  2462. // Only provided when the block has actually changed
  2463. free(current_hash);
  2464. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2465. bin2hex(tmp, &hash_swap[24], 8);
  2466. memset(current_hash, '.', 3);
  2467. memcpy(&current_hash[3], tmp, 17);
  2468. known_blkheight_current = false;
  2469. } else if (likely(known_blkheight_current)) {
  2470. return;
  2471. }
  2472. if (current_block_id == known_blkheight_blkid) {
  2473. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2474. if (known_blkheight < 1000000) {
  2475. memmove(&current_hash[3], &current_hash[11], 8);
  2476. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2477. }
  2478. known_blkheight_current = true;
  2479. }
  2480. }
  2481. static
  2482. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2483. {
  2484. if (known_blkheight == blkheight)
  2485. return;
  2486. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2487. cg_wlock(&ch_lock);
  2488. known_blkheight = blkheight;
  2489. known_blkheight_blkid = block_id;
  2490. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2491. if (block_id == current_block_id)
  2492. __update_block_title(NULL);
  2493. cg_wunlock(&ch_lock);
  2494. }
  2495. static
  2496. void pool_set_opaque(struct pool *pool, bool opaque)
  2497. {
  2498. if (pool->swork.opaque == opaque)
  2499. return;
  2500. pool->swork.opaque = opaque;
  2501. if (opaque)
  2502. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2503. pool->pool_no);
  2504. else
  2505. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2506. pool->pool_no);
  2507. }
  2508. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2509. {
  2510. if (uri_get_param_bool(pool->rpc_url, "redirect", false))
  2511. return true;
  2512. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2513. }
  2514. void set_simple_ntime_roll_limit(struct ntime_roll_limits * const nrl, const uint32_t ntime_base, const int ntime_roll)
  2515. {
  2516. *nrl = (struct ntime_roll_limits){
  2517. .min = ntime_base,
  2518. .max = ntime_base + ntime_roll,
  2519. .minoff = -ntime_roll,
  2520. .maxoff = ntime_roll,
  2521. };
  2522. }
  2523. void work_set_simple_ntime_roll_limit(struct work * const work, const int ntime_roll)
  2524. {
  2525. set_simple_ntime_roll_limit(&work->ntime_roll_limits, upk_u32be(work->data, 0x44), ntime_roll);
  2526. }
  2527. #if BLKMAKER_VERSION > 1
  2528. static
  2529. void refresh_bitcoind_address(const bool fresh)
  2530. {
  2531. if (!have_at_least_one_getcbaddr)
  2532. return;
  2533. char getcbaddr_req[60];
  2534. CURL *curl = NULL;
  2535. json_t *json, *j2;
  2536. const char *s, *s2;
  2537. bytes_t newscript = BYTES_INIT;
  2538. snprintf(getcbaddr_req, sizeof(getcbaddr_req), "{\"method\":\"get%saddress\",\"id\":0,\"params\":[\"BFGMiner\"]}", fresh ? "new" : "account");
  2539. for (int i = 0; i < total_pools; ++i)
  2540. {
  2541. struct pool * const pool = pools[i];
  2542. if (!uri_get_param_bool(pool->rpc_url, "getcbaddr", false))
  2543. continue;
  2544. applog(LOG_DEBUG, "Refreshing coinbase address from pool %d", pool->pool_no);
  2545. if (!curl)
  2546. {
  2547. curl = curl_easy_init();
  2548. if (unlikely(!curl))
  2549. {
  2550. applogfail(LOG_ERR, "curl_easy_init");
  2551. break;
  2552. }
  2553. }
  2554. json = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, getcbaddr_req, false, false, NULL, pool, true);
  2555. if (unlikely((!json) || !json_is_null( (j2 = json_object_get(json, "error")) )))
  2556. {
  2557. const char *estrc;
  2558. char *estr = NULL;
  2559. if (!(json && j2))
  2560. estrc = NULL;
  2561. else
  2562. {
  2563. estrc = json_string_value(j2);
  2564. if (!estrc)
  2565. estrc = estr = json_dumps_ANY(j2, JSON_ENSURE_ASCII | JSON_SORT_KEYS);
  2566. }
  2567. applog(LOG_WARNING, "Error %cetting coinbase address from pool %d: %s", 'g', pool->pool_no, estrc);
  2568. free(estr);
  2569. continue;
  2570. }
  2571. s = bfg_json_obj_string(json, "result", NULL);
  2572. if (unlikely(!s))
  2573. {
  2574. applog(LOG_WARNING, "Error %cetting coinbase address from pool %d: %s", 'g', pool->pool_no, "(return value was not a String)");
  2575. continue;
  2576. }
  2577. s2 = set_b58addr(s, &newscript);
  2578. if (unlikely(s2))
  2579. {
  2580. applog(LOG_WARNING, "Error %cetting coinbase address from pool %d: %s", 's', pool->pool_no, s2);
  2581. continue;
  2582. }
  2583. if (bytes_eq(&newscript, &opt_coinbase_script))
  2584. {
  2585. applog(LOG_DEBUG, "Pool %d returned coinbase address already in use (%s)", pool->pool_no, s2);
  2586. break;
  2587. }
  2588. bytes_assimilate(&opt_coinbase_script, &newscript);
  2589. coinbase_script_block_id = current_block_id;
  2590. applog(LOG_NOTICE, "Now using coinbase address %s, provided by pool %d", s, pool->pool_no);
  2591. break;
  2592. }
  2593. bytes_free(&newscript);
  2594. if (curl)
  2595. curl_easy_cleanup(curl);
  2596. }
  2597. #endif
  2598. #define GBT_XNONCESZ (sizeof(uint32_t))
  2599. #if BLKMAKER_VERSION > 4
  2600. #define blkmk_append_coinbase_safe(tmpl, append, appendsz) \
  2601. blkmk_append_coinbase_safe2(tmpl, append, appendsz, GBT_XNONCESZ, false)
  2602. #endif
  2603. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2604. {
  2605. json_t *res_val = json_object_get(val, "result");
  2606. json_t *tmp_val;
  2607. bool ret = false;
  2608. struct timeval tv_now;
  2609. if (unlikely(detect_algo == 1)) {
  2610. json_t *tmp = json_object_get(res_val, "algorithm");
  2611. const char *v = tmp ? json_string_value(tmp) : "";
  2612. if (strncasecmp(v, "scrypt", 6))
  2613. detect_algo = 2;
  2614. }
  2615. timer_set_now(&tv_now);
  2616. if (work->tr)
  2617. {
  2618. blktemplate_t * const tmpl = work->tr->tmpl;
  2619. const char *err = blktmpl_add_jansson(tmpl, res_val, tv_now.tv_sec);
  2620. if (err) {
  2621. applog(LOG_ERR, "blktmpl error: %s", err);
  2622. return false;
  2623. }
  2624. work->rolltime = blkmk_time_left(tmpl, tv_now.tv_sec);
  2625. #if BLKMAKER_VERSION > 1
  2626. if ((!tmpl->cbtxn) && coinbase_script_block_id != current_block_id)
  2627. refresh_bitcoind_address(false);
  2628. if (bytes_len(&opt_coinbase_script))
  2629. {
  2630. bool newcb;
  2631. #if BLKMAKER_VERSION > 2
  2632. blkmk_init_generation2(tmpl, bytes_buf(&opt_coinbase_script), bytes_len(&opt_coinbase_script), &newcb);
  2633. #else
  2634. newcb = !tmpl->cbtxn;
  2635. blkmk_init_generation(tmpl, bytes_buf(&opt_coinbase_script), bytes_len(&opt_coinbase_script));
  2636. #endif
  2637. if (newcb)
  2638. {
  2639. ssize_t ae = blkmk_append_coinbase_safe(tmpl, &template_nonce, sizeof(template_nonce));
  2640. if (ae < (ssize_t)sizeof(template_nonce))
  2641. 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);
  2642. ++template_nonce;
  2643. }
  2644. }
  2645. #endif
  2646. #if BLKMAKER_VERSION > 0
  2647. {
  2648. ssize_t ae = blkmk_append_coinbase_safe(tmpl, opt_coinbase_sig, 101);
  2649. static bool appenderr = false;
  2650. if (ae <= 0) {
  2651. if (opt_coinbase_sig) {
  2652. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2653. appenderr = true;
  2654. }
  2655. } else if (ae >= 3 || opt_coinbase_sig) {
  2656. const char *cbappend = opt_coinbase_sig;
  2657. const char full[] = PACKAGE " " VERSION;
  2658. if (!cbappend) {
  2659. if ((size_t)ae >= sizeof(full) - 1)
  2660. cbappend = full;
  2661. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2662. cbappend = PACKAGE;
  2663. else
  2664. cbappend = "BFG";
  2665. }
  2666. size_t cbappendsz = strlen(cbappend);
  2667. static bool truncatewarning = false;
  2668. if (cbappendsz <= (size_t)ae) {
  2669. if (cbappendsz < (size_t)ae)
  2670. // If we have space, include the trailing \0
  2671. ++cbappendsz;
  2672. ae = cbappendsz;
  2673. truncatewarning = false;
  2674. } else {
  2675. char *tmp = malloc(ae + 1);
  2676. memcpy(tmp, opt_coinbase_sig, ae);
  2677. tmp[ae] = '\0';
  2678. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2679. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2680. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2681. free(tmp);
  2682. truncatewarning = true;
  2683. }
  2684. ae = blkmk_append_coinbase_safe(tmpl, cbappend, ae);
  2685. if (ae <= 0) {
  2686. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2687. appenderr = true;
  2688. } else
  2689. appenderr = false;
  2690. }
  2691. }
  2692. #endif
  2693. if (blkmk_get_data(tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2694. return false;
  2695. swap32yes(work->data, work->data, 80 / 4);
  2696. memcpy(&work->data[80], workpadding_bin, 48);
  2697. work->ntime_roll_limits = (struct ntime_roll_limits){
  2698. .min = tmpl->mintime,
  2699. .max = tmpl->maxtime,
  2700. .minoff = tmpl->mintimeoff,
  2701. .maxoff = tmpl->maxtimeoff,
  2702. };
  2703. const struct blktmpl_longpoll_req *lp;
  2704. if ((lp = blktmpl_get_longpoll(tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2705. free(pool->lp_id);
  2706. pool->lp_id = strdup(lp->id);
  2707. #if 0 /* This just doesn't work :( */
  2708. curl_socket_t sock = pool->lp_socket;
  2709. if (sock != CURL_SOCKET_BAD) {
  2710. pool->lp_socket = CURL_SOCKET_BAD;
  2711. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2712. shutdown(sock, SHUT_RDWR);
  2713. }
  2714. #endif
  2715. }
  2716. }
  2717. else
  2718. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2719. applog(LOG_ERR, "JSON inval data");
  2720. return false;
  2721. }
  2722. else
  2723. work_set_simple_ntime_roll_limit(work, 0);
  2724. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2725. // Calculate it ourselves
  2726. applog(LOG_DEBUG, "Calculating midstate locally");
  2727. calc_midstate(work);
  2728. }
  2729. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2730. applog(LOG_ERR, "JSON inval target");
  2731. return false;
  2732. }
  2733. if (work->tr)
  2734. {
  2735. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2736. {
  2737. int p = (sizeof(work->target) - 1) - i;
  2738. unsigned char c = work->target[i];
  2739. work->target[i] = work->target[p];
  2740. work->target[p] = c;
  2741. }
  2742. }
  2743. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2744. uint32_t blkheight = json_number_value(tmp_val);
  2745. uint32_t block_id = ((uint32_t*)work->data)[1];
  2746. have_block_height(block_id, blkheight);
  2747. }
  2748. memset(work->hash, 0, sizeof(work->hash));
  2749. work->tv_staged = tv_now;
  2750. #if BLKMAKER_VERSION > 4
  2751. if (work->tr)
  2752. {
  2753. blktemplate_t * const tmpl = work->tr->tmpl;
  2754. uint8_t buf[80];
  2755. int16_t expire;
  2756. uint8_t *cbtxn;
  2757. size_t cbtxnsz;
  2758. size_t cbextranonceoffset;
  2759. int branchcount;
  2760. libblkmaker_hash_t *branches;
  2761. if (blkmk_get_mdata(tmpl, buf, sizeof(buf), tv_now.tv_sec, &expire, &cbtxn, &cbtxnsz, &cbextranonceoffset, &branchcount, &branches, GBT_XNONCESZ, false))
  2762. {
  2763. struct stratum_work * const swork = &pool->swork;
  2764. const size_t branchdatasz = branchcount * 0x20;
  2765. cg_wlock(&pool->data_lock);
  2766. swork->tr = work->tr;
  2767. bytes_assimilate_raw(&swork->coinbase, cbtxn, cbtxnsz, cbtxnsz);
  2768. swork->nonce2_offset = cbextranonceoffset;
  2769. bytes_assimilate_raw(&swork->merkle_bin, branches, branchdatasz, branchdatasz);
  2770. swork->merkles = branchcount;
  2771. memcpy(swork->header1, &buf[0], 36);
  2772. swork->ntime = le32toh(*(uint32_t *)(&buf[68]));
  2773. swork->tv_received = tv_now;
  2774. memcpy(swork->diffbits, &buf[72], 4);
  2775. memcpy(swork->target, work->target, sizeof(swork->target));
  2776. free(swork->job_id);
  2777. swork->job_id = NULL;
  2778. swork->clean = true;
  2779. swork->work_restart_id = pool->work_restart_id;
  2780. // FIXME: Do something with expire
  2781. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  2782. pool->nonce2 = 0;
  2783. cg_wunlock(&pool->data_lock);
  2784. }
  2785. else
  2786. applog(LOG_DEBUG, "blkmk_get_mdata failed for pool %u", pool->pool_no);
  2787. }
  2788. #endif // BLKMAKER_VERSION > 4
  2789. pool_set_opaque(pool, !work->tr);
  2790. ret = true;
  2791. return ret;
  2792. }
  2793. /* Returns whether the pool supports local work generation or not. */
  2794. static bool pool_localgen(struct pool *pool)
  2795. {
  2796. return (pool->last_work_copy || pool->has_stratum);
  2797. }
  2798. int dev_from_id(int thr_id)
  2799. {
  2800. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2801. return cgpu->device_id;
  2802. }
  2803. /* Create an exponentially decaying average over the opt_log_interval */
  2804. void decay_time(double *f, double fadd, double fsecs)
  2805. {
  2806. double ftotal, fprop;
  2807. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2808. ftotal = 1.0 + fprop;
  2809. *f += (fadd * fprop);
  2810. *f /= ftotal;
  2811. }
  2812. static int __total_staged(void)
  2813. {
  2814. return HASH_COUNT(staged_work);
  2815. }
  2816. static int total_staged(void)
  2817. {
  2818. int ret;
  2819. mutex_lock(stgd_lock);
  2820. ret = __total_staged();
  2821. mutex_unlock(stgd_lock);
  2822. return ret;
  2823. }
  2824. #ifdef HAVE_CURSES
  2825. WINDOW *mainwin, *statuswin, *logwin;
  2826. #endif
  2827. double total_secs = 1.0;
  2828. static char statusline[256];
  2829. /* logstart is where the log window should start */
  2830. static int devcursor, logstart, logcursor;
  2831. #ifdef HAVE_CURSES
  2832. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2833. static int statusy;
  2834. static int devsummaryYOffset;
  2835. static int total_lines;
  2836. #endif
  2837. #ifdef HAVE_OPENCL
  2838. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2839. #endif
  2840. struct cgpu_info *cpus;
  2841. bool _bfg_console_cancel_disabled;
  2842. int _bfg_console_prev_cancelstate;
  2843. #ifdef HAVE_CURSES
  2844. #define lock_curses() bfg_console_lock()
  2845. #define unlock_curses() bfg_console_unlock()
  2846. static bool curses_active_locked(void)
  2847. {
  2848. bool ret;
  2849. lock_curses();
  2850. ret = curses_active;
  2851. if (!ret)
  2852. unlock_curses();
  2853. return ret;
  2854. }
  2855. // Cancellable getch
  2856. int my_cancellable_getch(void)
  2857. {
  2858. // This only works because the macro only hits direct getch() calls
  2859. typedef int (*real_getch_t)(void);
  2860. const real_getch_t real_getch = __real_getch;
  2861. int type, rv;
  2862. bool sct;
  2863. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2864. rv = real_getch();
  2865. if (sct)
  2866. pthread_setcanceltype(type, &type);
  2867. return rv;
  2868. }
  2869. #ifdef PDCURSES
  2870. static
  2871. int bfg_wresize(WINDOW *win, int lines, int columns)
  2872. {
  2873. int rv = wresize(win, lines, columns);
  2874. int x, y;
  2875. getyx(win, y, x);
  2876. if (unlikely(y >= lines || x >= columns))
  2877. {
  2878. if (y >= lines)
  2879. y = lines - 1;
  2880. if (x >= columns)
  2881. x = columns - 1;
  2882. wmove(win, y, x);
  2883. }
  2884. return rv;
  2885. }
  2886. #else
  2887. # define bfg_wresize wresize
  2888. #endif
  2889. #endif
  2890. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2891. {
  2892. va_list ap;
  2893. size_t presz = strlen(buf);
  2894. va_start(ap, fmt);
  2895. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2896. va_end(ap);
  2897. }
  2898. double stats_elapsed(struct cgminer_stats *stats)
  2899. {
  2900. struct timeval now;
  2901. double elapsed;
  2902. if (stats->start_tv.tv_sec == 0)
  2903. elapsed = total_secs;
  2904. else {
  2905. cgtime(&now);
  2906. elapsed = tdiff(&now, &stats->start_tv);
  2907. }
  2908. if (elapsed < 1.0)
  2909. elapsed = 1.0;
  2910. return elapsed;
  2911. }
  2912. bool drv_ready(struct cgpu_info *cgpu)
  2913. {
  2914. switch (cgpu->status) {
  2915. case LIFE_INIT:
  2916. case LIFE_DEAD2:
  2917. return false;
  2918. default:
  2919. return true;
  2920. }
  2921. }
  2922. double cgpu_utility(struct cgpu_info *cgpu)
  2923. {
  2924. double dev_runtime = cgpu_runtime(cgpu);
  2925. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2926. }
  2927. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2928. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2929. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2930. }while(0)
  2931. static float
  2932. utility_to_hashrate(double utility)
  2933. {
  2934. return utility * 0x4444444;
  2935. }
  2936. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2937. static const int _unitbase = 4;
  2938. static
  2939. void pick_unit(float hashrate, unsigned char *unit)
  2940. {
  2941. unsigned char i;
  2942. if (hashrate == 0 || !isfinite(hashrate))
  2943. {
  2944. if (*unit < _unitbase)
  2945. *unit = _unitbase;
  2946. return;
  2947. }
  2948. hashrate *= 1e12;
  2949. for (i = 0; i < *unit; ++i)
  2950. hashrate /= 1e3;
  2951. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2952. while (hashrate >= 999.95)
  2953. {
  2954. hashrate /= 1e3;
  2955. if (likely(_unitchar[*unit] != '?'))
  2956. ++*unit;
  2957. }
  2958. }
  2959. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2960. enum h2bs_fmt {
  2961. H2B_NOUNIT, // "xxx.x"
  2962. H2B_SHORT, // "xxx.xMH/s"
  2963. H2B_SPACED, // "xxx.x MH/s"
  2964. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2965. };
  2966. enum bfu_floatprec {
  2967. FUP_INTEGER,
  2968. FUP_HASHES,
  2969. FUP_BTC,
  2970. FUP_DIFF,
  2971. };
  2972. static
  2973. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2974. {
  2975. char *s = buf;
  2976. unsigned char prec, i, unit;
  2977. int rv = 0;
  2978. if (unitin == -1)
  2979. {
  2980. unit = 0;
  2981. hashrate_pick_unit(hashrate, &unit);
  2982. }
  2983. else
  2984. unit = unitin;
  2985. hashrate *= 1e12;
  2986. for (i = 0; i < unit; ++i)
  2987. hashrate /= 1000;
  2988. switch (fprec)
  2989. {
  2990. case FUP_HASHES:
  2991. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2992. if (hashrate >= 99.995 || unit < 6)
  2993. prec = 1;
  2994. else
  2995. prec = 2;
  2996. _SNP("%5.*f", prec, hashrate);
  2997. break;
  2998. case FUP_INTEGER:
  2999. _SNP("%3d", (int)hashrate);
  3000. break;
  3001. case FUP_BTC:
  3002. if (hashrate >= 99.995)
  3003. prec = 0;
  3004. else
  3005. prec = 2;
  3006. _SNP("%5.*f", prec, hashrate);
  3007. break;
  3008. case FUP_DIFF:
  3009. if (unit > _unitbase)
  3010. _SNP("%.3g", hashrate);
  3011. else
  3012. _SNP("%u", (unsigned int)hashrate);
  3013. }
  3014. if (fmt != H2B_NOUNIT)
  3015. {
  3016. char uc[3] = {_unitchar[unit], '\0'};
  3017. switch (fmt) {
  3018. case H2B_SPACED:
  3019. _SNP(" ");
  3020. default:
  3021. break;
  3022. case H2B_SHORTV:
  3023. if (isspace(uc[0]))
  3024. uc[0] = '\0';
  3025. }
  3026. if (uc[0] == '\xb5')
  3027. // Convert to UTF-8
  3028. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  3029. _SNP("%s%s", uc, measurement);
  3030. }
  3031. return rv;
  3032. }
  3033. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  3034. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  3035. static
  3036. 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)
  3037. {
  3038. unsigned char unit = 0;
  3039. bool allzero = true;
  3040. int i;
  3041. size_t delimsz = 0;
  3042. char *buf = buflist[0];
  3043. size_t bufsz = bufszlist[0];
  3044. size_t itemwidth = (floatprec ? 5 : 3);
  3045. if (!isarray)
  3046. delimsz = strlen(delim);
  3047. for (i = 0; i < count; ++i)
  3048. if (numbers[i] != 0)
  3049. {
  3050. pick_unit(numbers[i], &unit);
  3051. allzero = false;
  3052. }
  3053. if (allzero)
  3054. unit = _unitbase;
  3055. --count;
  3056. for (i = 0; i < count; ++i)
  3057. {
  3058. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  3059. if (isarray)
  3060. {
  3061. buf = buflist[i + 1];
  3062. bufsz = bufszlist[i + 1];
  3063. }
  3064. else
  3065. {
  3066. buf += itemwidth;
  3067. bufsz -= itemwidth;
  3068. if (delimsz > bufsz)
  3069. delimsz = bufsz;
  3070. memcpy(buf, delim, delimsz);
  3071. buf += delimsz;
  3072. bufsz -= delimsz;
  3073. }
  3074. }
  3075. // Last entry has the unit
  3076. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  3077. return buflist[0];
  3078. }
  3079. #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)
  3080. #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)
  3081. static
  3082. int percentf3(char * const buf, size_t sz, double p, const double t)
  3083. {
  3084. char *s = buf;
  3085. int rv = 0;
  3086. if (!p)
  3087. _SNP("none");
  3088. else
  3089. if (t <= p)
  3090. _SNP("100%%");
  3091. else
  3092. {
  3093. p /= t;
  3094. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  3095. _SNP(".%02.0f%%", p * 10000); // ".01%"
  3096. else
  3097. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  3098. _SNP("%.1f%%", p * 100); // "9.1%"
  3099. else
  3100. _SNP("%3.0f%%", p * 100); // " 99%"
  3101. }
  3102. return rv;
  3103. }
  3104. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  3105. static
  3106. void test_decimal_width()
  3107. {
  3108. // The pipe character at end of each line should perfectly line up
  3109. char printbuf[512];
  3110. char testbuf1[64];
  3111. char testbuf2[64];
  3112. char testbuf3[64];
  3113. char testbuf4[64];
  3114. double testn;
  3115. int width;
  3116. int saved;
  3117. // Hotspots around 0.1 and 0.01
  3118. saved = -1;
  3119. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  3120. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  3121. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  3122. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  3123. if (unlikely((saved != -1) && (width != saved))) {
  3124. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  3125. applog(LOG_ERR, "%s", printbuf);
  3126. }
  3127. saved = width;
  3128. }
  3129. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  3130. saved = -1;
  3131. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  3132. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3133. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3134. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3135. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  3136. width = utf8_strlen(printbuf);
  3137. if (unlikely((saved != -1) && (width != saved))) {
  3138. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  3139. applog(LOG_ERR, "%s", printbuf);
  3140. }
  3141. saved = width;
  3142. }
  3143. // Hotspot around unit transition boundary in pick_unit
  3144. saved = -1;
  3145. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  3146. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3147. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3148. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3149. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  3150. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  3151. width = utf8_strlen(printbuf);
  3152. if (unlikely((saved != -1) && (width != saved))) {
  3153. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  3154. applog(LOG_ERR, "%s", printbuf);
  3155. }
  3156. saved = width;
  3157. }
  3158. }
  3159. #ifdef HAVE_CURSES
  3160. static void adj_width(int var, int *length);
  3161. #endif
  3162. #ifdef HAVE_CURSES
  3163. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  3164. static
  3165. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, double wnotaccepted, double waccepted, int hwerrs, double bad_diff1, double allnonces)
  3166. {
  3167. char rejpcbuf[6];
  3168. char bnbuf[6];
  3169. adj_width(accepted, &awidth);
  3170. adj_width(rejected, &rwidth);
  3171. adj_width(stale, &swidth);
  3172. adj_width(hwerrs, &hwwidth);
  3173. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3174. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3175. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3176. cHr, aHr, uHr,
  3177. awidth, accepted,
  3178. rwidth, rejected,
  3179. swidth, stale,
  3180. rejpcbuf,
  3181. hwwidth, hwerrs,
  3182. bnbuf
  3183. );
  3184. }
  3185. static
  3186. const char *pool_proto_str(const struct pool * const pool)
  3187. {
  3188. if (pool->idle)
  3189. return "Dead ";
  3190. if (pool->has_stratum)
  3191. return "Strtm";
  3192. if (pool->lp_url && pool->proto != pool->lp_proto)
  3193. return "Mixed";
  3194. switch (pool->proto)
  3195. {
  3196. case PLP_GETBLOCKTEMPLATE:
  3197. return " GBT ";
  3198. case PLP_GETWORK:
  3199. return "GWork";
  3200. default:
  3201. return "Alive";
  3202. }
  3203. }
  3204. #endif
  3205. static inline
  3206. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3207. {
  3208. if (!(use_unicode && have_unicode_degrees))
  3209. maybe_unicode = false;
  3210. if (temp && *temp > 0.)
  3211. if (maybe_unicode)
  3212. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3213. else
  3214. snprintf(buf, bufsz, "%4.1fC", *temp);
  3215. else
  3216. {
  3217. if (temp)
  3218. snprintf(buf, bufsz, " ");
  3219. if (maybe_unicode)
  3220. tailsprintf(buf, bufsz, " ");
  3221. }
  3222. tailsprintf(buf, bufsz, " | ");
  3223. }
  3224. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3225. {
  3226. #ifndef HAVE_CURSES
  3227. assert(for_curses == false);
  3228. #endif
  3229. struct device_drv *drv = cgpu->drv;
  3230. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3231. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3232. char rejpcbuf[6];
  3233. char bnbuf[6];
  3234. double dev_runtime;
  3235. if (!opt_show_procs)
  3236. cgpu = cgpu->device;
  3237. dev_runtime = cgpu_runtime(cgpu);
  3238. double rolling, mhashes;
  3239. int accepted, rejected, stale;
  3240. double waccepted;
  3241. double wnotaccepted;
  3242. int hwerrs;
  3243. double bad_diff1, good_diff1;
  3244. rolling = mhashes = waccepted = wnotaccepted = 0;
  3245. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3246. {
  3247. struct cgpu_info *slave = cgpu;
  3248. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3249. {
  3250. slave->utility = slave->accepted / dev_runtime * 60;
  3251. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3252. rolling += slave->rolling;
  3253. mhashes += slave->total_mhashes;
  3254. if (opt_weighed_stats)
  3255. {
  3256. accepted += slave->diff_accepted;
  3257. rejected += slave->diff_rejected;
  3258. stale += slave->diff_stale;
  3259. }
  3260. else
  3261. {
  3262. accepted += slave->accepted;
  3263. rejected += slave->rejected;
  3264. stale += slave->stale;
  3265. }
  3266. waccepted += slave->diff_accepted;
  3267. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3268. hwerrs += slave->hw_errors;
  3269. bad_diff1 += slave->bad_diff1;
  3270. good_diff1 += slave->diff1;
  3271. if (opt_show_procs)
  3272. break;
  3273. }
  3274. }
  3275. double wtotal = (waccepted + wnotaccepted);
  3276. multi_format_unit_array2(
  3277. ((char*[]){cHr, aHr, uHr}),
  3278. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3279. true, "h/s", hashrate_style,
  3280. 3,
  3281. 1e6*rolling,
  3282. 1e6*mhashes / dev_runtime,
  3283. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3284. // Processor representation
  3285. #ifdef HAVE_CURSES
  3286. if (for_curses)
  3287. {
  3288. if (opt_show_procs)
  3289. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3290. else
  3291. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3292. }
  3293. else
  3294. #endif
  3295. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3296. if (include_serial_in_statline && cgpu->dev_serial)
  3297. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3298. if (unlikely(cgpu->status == LIFE_INIT))
  3299. {
  3300. tailsprintf(buf, bufsz, "Initializing...");
  3301. return;
  3302. }
  3303. {
  3304. const size_t bufln = strlen(buf);
  3305. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3306. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3307. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3308. else
  3309. {
  3310. float temp = cgpu->temp;
  3311. if (!opt_show_procs)
  3312. {
  3313. // Find the highest temperature of all processors
  3314. struct cgpu_info *proc = cgpu;
  3315. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3316. if (proc->temp > temp)
  3317. temp = proc->temp;
  3318. }
  3319. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3320. }
  3321. }
  3322. #ifdef HAVE_CURSES
  3323. if (for_curses)
  3324. {
  3325. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3326. const char *cHrStats;
  3327. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3328. bool all_dead = true, all_off = true, all_rdrv = true;
  3329. struct cgpu_info *proc = cgpu;
  3330. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3331. {
  3332. switch (cHrStatsI) {
  3333. default:
  3334. if (proc->status == LIFE_WAIT)
  3335. cHrStatsI = 5;
  3336. case 5:
  3337. if (proc->deven == DEV_RECOVER_ERR)
  3338. cHrStatsI = 4;
  3339. case 4:
  3340. if (proc->deven == DEV_RECOVER)
  3341. cHrStatsI = 3;
  3342. case 3:
  3343. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3344. {
  3345. cHrStatsI = 1;
  3346. all_off = false;
  3347. }
  3348. else
  3349. {
  3350. if (likely(proc->deven == DEV_ENABLED))
  3351. all_off = false;
  3352. if (proc->deven != DEV_RECOVER_DRV)
  3353. all_rdrv = false;
  3354. }
  3355. case 1:
  3356. break;
  3357. }
  3358. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3359. all_dead = false;
  3360. if (opt_show_procs)
  3361. break;
  3362. }
  3363. if (unlikely(all_dead))
  3364. cHrStatsI = 0;
  3365. else
  3366. if (unlikely(all_off))
  3367. cHrStatsI = 2;
  3368. cHrStats = cHrStatsOpt[cHrStatsI];
  3369. if (cHrStatsI == 2 && all_rdrv)
  3370. cHrStats = " RST ";
  3371. format_statline(buf, bufsz,
  3372. cHrStats,
  3373. aHr, uHr,
  3374. accepted, rejected, stale,
  3375. wnotaccepted, waccepted,
  3376. hwerrs,
  3377. bad_diff1, bad_diff1 + good_diff1);
  3378. }
  3379. else
  3380. #endif
  3381. {
  3382. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3383. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3384. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3385. opt_log_interval,
  3386. cHr, aHr, uHr,
  3387. accepted,
  3388. rejected,
  3389. stale,
  3390. rejpcbuf,
  3391. hwerrs,
  3392. bnbuf
  3393. );
  3394. }
  3395. }
  3396. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3397. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3398. static void text_print_status(int thr_id)
  3399. {
  3400. struct cgpu_info *cgpu;
  3401. char logline[256];
  3402. cgpu = get_thr_cgpu(thr_id);
  3403. if (cgpu) {
  3404. get_statline(logline, sizeof(logline), cgpu);
  3405. printf("\n%s\r", logline);
  3406. fflush(stdout);
  3407. }
  3408. }
  3409. #ifdef HAVE_CURSES
  3410. static int attr_bad = A_BOLD;
  3411. #ifdef WIN32
  3412. #define swprintf snwprintf
  3413. #endif
  3414. static
  3415. void bfg_waddstr(WINDOW *win, const char *s)
  3416. {
  3417. const char *p = s;
  3418. int32_t w;
  3419. int wlen;
  3420. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3421. while (true)
  3422. {
  3423. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3424. {
  3425. // Printable ASCII
  3426. ++p;
  3427. }
  3428. if (p != s)
  3429. waddnstr(win, s, p - s);
  3430. w = utf8_decode(p, &wlen);
  3431. s = p += wlen;
  3432. switch(w)
  3433. {
  3434. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3435. case '\0':
  3436. return;
  3437. case 0xb5: // micro symbol
  3438. w = unicode_micro;
  3439. goto default_addch;
  3440. case 0xf000: // "bad" off
  3441. wattroff(win, attr_bad);
  3442. break;
  3443. case 0xf001: // "bad" on
  3444. wattron(win, attr_bad);
  3445. break;
  3446. #ifdef USE_UNICODE
  3447. case '|':
  3448. wadd_wch(win, WACS_VLINE);
  3449. break;
  3450. #endif
  3451. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3452. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3453. if (!use_unicode)
  3454. {
  3455. waddch(win, '-');
  3456. break;
  3457. }
  3458. #ifdef USE_UNICODE
  3459. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3460. break;
  3461. #endif
  3462. case 0x2022:
  3463. if (w > WCHAR_MAX || !iswprint(w))
  3464. w = '*';
  3465. default:
  3466. default_addch:
  3467. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3468. {
  3469. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3470. if (iswprint(REPLACEMENT_CHAR))
  3471. w = REPLACEMENT_CHAR;
  3472. else
  3473. #endif
  3474. w = '?';
  3475. }
  3476. {
  3477. #ifdef USE_UNICODE
  3478. wchar_t wbuf[0x10];
  3479. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3480. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3481. waddnwstr(win, wbuf, wbuflen);
  3482. #else
  3483. wprintw(win, "%lc", (wint_t)w);
  3484. #endif
  3485. }
  3486. }
  3487. }
  3488. }
  3489. static inline
  3490. void bfg_hline(WINDOW *win, int y)
  3491. {
  3492. int maxx, __maybe_unused maxy;
  3493. getmaxyx(win, maxy, maxx);
  3494. #ifdef USE_UNICODE
  3495. if (use_unicode)
  3496. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3497. else
  3498. #endif
  3499. mvwhline(win, y, 0, '-', maxx);
  3500. }
  3501. static
  3502. int bfg_win_linelen(WINDOW * const win)
  3503. {
  3504. int maxx;
  3505. int __maybe_unused y;
  3506. getmaxyx(win, y, maxx);
  3507. return maxx;
  3508. }
  3509. // Spaces until end of line, using current attributes (ie, not completely clear)
  3510. static
  3511. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3512. {
  3513. int x, maxx;
  3514. int __maybe_unused y;
  3515. getmaxyx(win, y, maxx);
  3516. getyx(win, y, x);
  3517. const int space_count = (maxx - x) - offset;
  3518. // Check for negative - terminal too narrow
  3519. if (space_count <= 0)
  3520. return;
  3521. char buf[space_count];
  3522. memset(buf, ' ', space_count);
  3523. waddnstr(win, buf, space_count);
  3524. }
  3525. static int menu_attr = A_REVERSE;
  3526. #define CURBUFSIZ 256
  3527. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3528. char tmp42[CURBUFSIZ]; \
  3529. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3530. wmove(win, y, x); \
  3531. bfg_waddstr(win, tmp42); \
  3532. } while (0)
  3533. #define cg_wprintw(win, fmt, ...) do { \
  3534. char tmp42[CURBUFSIZ]; \
  3535. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3536. bfg_waddstr(win, tmp42); \
  3537. } while (0)
  3538. static bool pool_unworkable(const struct pool *);
  3539. /* Must be called with curses mutex lock held and curses_active */
  3540. static void curses_print_status(const int ts)
  3541. {
  3542. struct pool *pool = currentpool;
  3543. struct timeval now, tv;
  3544. float efficiency;
  3545. double income;
  3546. int logdiv;
  3547. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3548. wattron(statuswin, attr_title);
  3549. const int linelen = bfg_win_linelen(statuswin);
  3550. int titlelen = 1 + strlen(PACKAGE) + 1 + strlen(VERSION) + 3 + 21 + 3 + 19;
  3551. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " ");
  3552. if (titlelen + 17 < linelen)
  3553. cg_wprintw(statuswin, "version ");
  3554. cg_wprintw(statuswin, VERSION " - ");
  3555. if (titlelen + 9 < linelen)
  3556. cg_wprintw(statuswin, "Started: ");
  3557. else
  3558. if (titlelen + 7 <= linelen)
  3559. cg_wprintw(statuswin, "Start: ");
  3560. cg_wprintw(statuswin, "%s", datestamp);
  3561. timer_set_now(&now);
  3562. {
  3563. unsigned int days, hours;
  3564. div_t d;
  3565. timersub(&now, &miner_started, &tv);
  3566. d = div(tv.tv_sec, 86400);
  3567. days = d.quot;
  3568. d = div(d.rem, 3600);
  3569. hours = d.quot;
  3570. d = div(d.rem, 60);
  3571. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3572. , days
  3573. , (days == 1) ? ' ' : 's'
  3574. , hours
  3575. , d.quot
  3576. , d.rem
  3577. );
  3578. }
  3579. bfg_wspctoeol(statuswin, 0);
  3580. wattroff(statuswin, attr_title);
  3581. wattron(statuswin, menu_attr);
  3582. wmove(statuswin, 1, 0);
  3583. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3584. bfg_wspctoeol(statuswin, 14);
  3585. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3586. wattroff(statuswin, menu_attr);
  3587. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3588. char poolinfo[20], poolinfo2[20];
  3589. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3590. double lowdiff = DBL_MAX, highdiff = -1;
  3591. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3592. time_t oldest_work_restart = time(NULL) + 1;
  3593. struct pool *oldest_work_restart_pool = pools[0];
  3594. for (int i = 0; i < total_pools; ++i)
  3595. {
  3596. if (pool_unworkable(pools[i]))
  3597. continue;
  3598. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3599. pool = pools[i];
  3600. ++workable_pools;
  3601. if (poolinfooff < sizeof(poolinfo))
  3602. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3603. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3604. if (pool_stats->last_diff < lowdiff)
  3605. {
  3606. lowdiff = pool_stats->last_diff;
  3607. lowdiff_pool = pool;
  3608. }
  3609. if (pool_stats->last_diff > highdiff)
  3610. {
  3611. highdiff = pool_stats->last_diff;
  3612. highdiff_pool = pool;
  3613. }
  3614. if (oldest_work_restart >= pool->work_restart_time)
  3615. {
  3616. oldest_work_restart = pool->work_restart_time;
  3617. oldest_work_restart_pool = pool;
  3618. }
  3619. }
  3620. if (unlikely(!workable_pools))
  3621. goto no_workable_pools;
  3622. if (workable_pools == 1)
  3623. goto one_workable_pool;
  3624. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3625. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3626. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3627. else
  3628. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3629. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3630. poolinfo2,
  3631. lowdiff_pool->diff,
  3632. (lowdiff == highdiff) ? "" : "-",
  3633. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3634. have_longpoll ? '+' : '-',
  3635. oldest_work_restart_pool->work_restart_timestamp);
  3636. }
  3637. else
  3638. if (pool_unworkable(pool))
  3639. {
  3640. no_workable_pools: ;
  3641. wattron(statuswin, attr_bad);
  3642. cg_mvwprintw(statuswin, 2, 0, " (all pools are dead) ");
  3643. wattroff(statuswin, attr_bad);
  3644. }
  3645. else
  3646. {
  3647. one_workable_pool: ;
  3648. char pooladdr[19];
  3649. {
  3650. const char *rawaddr = pool->sockaddr_url;
  3651. BFGINIT(rawaddr, pool->rpc_url);
  3652. size_t pooladdrlen = strlen(rawaddr);
  3653. if (pooladdrlen > 20)
  3654. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3655. else
  3656. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3657. }
  3658. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3659. pool->pool_no, pooladdr, pool->diff,
  3660. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3661. pool->work_restart_timestamp,
  3662. pool->rpc_user);
  3663. }
  3664. wclrtoeol(statuswin);
  3665. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3666. current_hash, block_diff, net_hashrate, blocktime);
  3667. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3668. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3669. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3670. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3671. ts,
  3672. total_go + total_ro,
  3673. new_blocks,
  3674. total_submitting,
  3675. multi_format_unit2(bwstr, sizeof(bwstr),
  3676. false, "B/s", H2B_SHORT, "/", 2,
  3677. (float)(total_bytes_rcvd / total_secs),
  3678. (float)(total_bytes_sent / total_secs)),
  3679. efficiency,
  3680. incomestr,
  3681. best_share);
  3682. wclrtoeol(statuswin);
  3683. mvwaddstr(statuswin, 5, 0, " ");
  3684. bfg_waddstr(statuswin, statusline);
  3685. wclrtoeol(statuswin);
  3686. logdiv = statusy - 1;
  3687. bfg_hline(statuswin, 6);
  3688. bfg_hline(statuswin, logdiv);
  3689. #ifdef USE_UNICODE
  3690. if (use_unicode)
  3691. {
  3692. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3693. if (opt_show_procs && !opt_compact)
  3694. ++offset; // proc letter
  3695. if (have_unicode_degrees)
  3696. ++offset; // degrees symbol
  3697. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3698. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3699. offset += 24; // hashrates etc
  3700. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3701. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3702. }
  3703. #endif
  3704. }
  3705. static void adj_width(int var, int *length)
  3706. {
  3707. if ((int)(log10(var) + 1) > *length)
  3708. (*length)++;
  3709. }
  3710. static int dev_width;
  3711. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3712. {
  3713. char logline[256];
  3714. int ypos;
  3715. if (opt_compact)
  3716. return;
  3717. /* Check this isn't out of the window size */
  3718. if (opt_show_procs)
  3719. ypos = cgpu->cgminer_id;
  3720. else
  3721. {
  3722. if (cgpu->proc_id)
  3723. return;
  3724. ypos = cgpu->device_line_id;
  3725. }
  3726. ypos += devsummaryYOffset;
  3727. if (ypos < 0)
  3728. return;
  3729. ypos += devcursor - 1;
  3730. if (ypos >= statusy - 1)
  3731. return;
  3732. if (wmove(statuswin, ypos, 0) == ERR)
  3733. return;
  3734. get_statline2(logline, sizeof(logline), cgpu, true);
  3735. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3736. wattron(statuswin, A_REVERSE);
  3737. bfg_waddstr(statuswin, logline);
  3738. wattroff(statuswin, A_REVERSE);
  3739. wclrtoeol(statuswin);
  3740. }
  3741. static
  3742. void _refresh_devstatus(const bool already_have_lock) {
  3743. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3744. int i;
  3745. if (unlikely(!total_devices))
  3746. {
  3747. const int ypos = devcursor - 1;
  3748. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3749. {
  3750. wattron(statuswin, attr_bad);
  3751. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3752. wclrtoeol(statuswin);
  3753. wattroff(statuswin, attr_bad);
  3754. }
  3755. }
  3756. for (i = 0; i < total_devices; i++)
  3757. curses_print_devstatus(get_devices(i));
  3758. touchwin(statuswin);
  3759. wrefresh(statuswin);
  3760. if (!already_have_lock)
  3761. unlock_curses();
  3762. }
  3763. }
  3764. #define refresh_devstatus() _refresh_devstatus(false)
  3765. #endif
  3766. static void print_status(int thr_id)
  3767. {
  3768. if (!curses_active)
  3769. text_print_status(thr_id);
  3770. }
  3771. #ifdef HAVE_CURSES
  3772. static
  3773. bool set_statusy(int maxy)
  3774. {
  3775. if (loginput_size)
  3776. {
  3777. maxy -= loginput_size;
  3778. if (maxy < 0)
  3779. maxy = 0;
  3780. }
  3781. if (logstart < maxy)
  3782. maxy = logstart;
  3783. if (statusy == maxy)
  3784. return false;
  3785. statusy = maxy;
  3786. logcursor = statusy;
  3787. return true;
  3788. }
  3789. /* Check for window resize. Called with curses mutex locked */
  3790. static inline void change_logwinsize(void)
  3791. {
  3792. int x, y, logx, logy;
  3793. getmaxyx(mainwin, y, x);
  3794. if (x < 80 || y < 25)
  3795. return;
  3796. if (y > statusy + 2 && statusy < logstart) {
  3797. set_statusy(y - 2);
  3798. mvwin(logwin, logcursor, 0);
  3799. bfg_wresize(statuswin, statusy, x);
  3800. }
  3801. y -= logcursor;
  3802. getmaxyx(logwin, logy, logx);
  3803. /* Detect screen size change */
  3804. if (x != logx || y != logy)
  3805. bfg_wresize(logwin, y, x);
  3806. }
  3807. static void check_winsizes(void)
  3808. {
  3809. if (!use_curses)
  3810. return;
  3811. if (curses_active_locked()) {
  3812. int y, x;
  3813. x = getmaxx(statuswin);
  3814. if (set_statusy(LINES - 2))
  3815. {
  3816. erase();
  3817. bfg_wresize(statuswin, statusy, x);
  3818. getmaxyx(mainwin, y, x);
  3819. y -= logcursor;
  3820. bfg_wresize(logwin, y, x);
  3821. mvwin(logwin, logcursor, 0);
  3822. }
  3823. unlock_curses();
  3824. }
  3825. }
  3826. static int device_line_id_count;
  3827. static void switch_logsize(void)
  3828. {
  3829. if (curses_active_locked()) {
  3830. if (opt_compact) {
  3831. logstart = devcursor - 1;
  3832. logcursor = logstart + 1;
  3833. } else {
  3834. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3835. logstart = devcursor + total_lines;
  3836. logcursor = logstart;
  3837. }
  3838. unlock_curses();
  3839. }
  3840. check_winsizes();
  3841. }
  3842. /* For mandatory printing when mutex is already locked */
  3843. void _wlog(const char *str)
  3844. {
  3845. static bool newline;
  3846. size_t end = strlen(str) - 1;
  3847. if (newline)
  3848. bfg_waddstr(logwin, "\n");
  3849. if (str[end] == '\n')
  3850. {
  3851. char *s;
  3852. newline = true;
  3853. s = alloca(end + 1);
  3854. memcpy(s, str, end);
  3855. s[end] = '\0';
  3856. str = s;
  3857. }
  3858. else
  3859. newline = false;
  3860. bfg_waddstr(logwin, str);
  3861. }
  3862. /* Mandatory printing */
  3863. void _wlogprint(const char *str)
  3864. {
  3865. if (curses_active_locked()) {
  3866. _wlog(str);
  3867. unlock_curses();
  3868. }
  3869. }
  3870. #endif
  3871. #ifdef HAVE_CURSES
  3872. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3873. {
  3874. bool high_prio;
  3875. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3876. if (curses_active)
  3877. {
  3878. if (!loginput_size || high_prio) {
  3879. wlog(" %s %s\n", datetime, str);
  3880. if (high_prio) {
  3881. touchwin(logwin);
  3882. wrefresh(logwin);
  3883. }
  3884. }
  3885. return true;
  3886. }
  3887. return false;
  3888. }
  3889. void clear_logwin(void)
  3890. {
  3891. if (curses_active_locked()) {
  3892. wclear(logwin);
  3893. unlock_curses();
  3894. }
  3895. }
  3896. void logwin_update(void)
  3897. {
  3898. if (curses_active_locked()) {
  3899. touchwin(logwin);
  3900. wrefresh(logwin);
  3901. unlock_curses();
  3902. }
  3903. }
  3904. #endif
  3905. void enable_pool(struct pool * const pool)
  3906. {
  3907. if (pool->enabled != POOL_ENABLED) {
  3908. mutex_lock(&lp_lock);
  3909. enabled_pools++;
  3910. pool->enabled = POOL_ENABLED;
  3911. pthread_cond_broadcast(&lp_cond);
  3912. mutex_unlock(&lp_lock);
  3913. if (pool->prio < current_pool()->prio)
  3914. switch_pools(pool);
  3915. }
  3916. }
  3917. void disable_pool(struct pool * const pool, const enum pool_enable enable_status)
  3918. {
  3919. if (pool->enabled == POOL_DISABLED)
  3920. /* had been manually disabled before */
  3921. return;
  3922. if (pool->enabled != POOL_ENABLED)
  3923. {
  3924. /* has been programmatically disabled already, just change to the new status directly */
  3925. pool->enabled = enable_status;
  3926. return;
  3927. }
  3928. /* Fall into the lock area */
  3929. mutex_lock(&lp_lock);
  3930. --enabled_pools;
  3931. pool->enabled = enable_status;
  3932. mutex_unlock(&lp_lock);
  3933. if (pool == current_pool())
  3934. switch_pools(NULL);
  3935. }
  3936. static double share_diff(const struct work *);
  3937. static
  3938. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3939. struct cgpu_info *cgpu;
  3940. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3941. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3942. const double tgtdiff = work->work_difficulty;
  3943. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3944. char where[20];
  3945. cgpu = get_thr_cgpu(work->thr_id);
  3946. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3947. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3948. if (total_pools > 1)
  3949. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3950. else
  3951. where[0] = '\0';
  3952. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3953. disp,
  3954. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3955. cgpu->proc_repr,
  3956. where,
  3957. shrdiffdisp, tgtdiffdisp,
  3958. reason,
  3959. resubmit ? "(resubmit)" : "",
  3960. worktime
  3961. );
  3962. }
  3963. static bool test_work_current(struct work *);
  3964. static void _submit_work_async(struct work *);
  3965. static
  3966. void maybe_local_submit(const struct work *work)
  3967. {
  3968. #if BLKMAKER_VERSION > 3
  3969. if (unlikely(work->block && work->tr))
  3970. {
  3971. // This is a block with a full template (GBT)
  3972. // Regardless of the result, submit to local bitcoind(s) as well
  3973. struct work *work_cp;
  3974. for (int i = 0; i < total_pools; ++i)
  3975. {
  3976. if (!uri_get_param_bool(pools[i]->rpc_url, "allblocks", false))
  3977. continue;
  3978. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3979. work_cp = copy_work(work);
  3980. work_cp->pool = pools[i];
  3981. work_cp->do_foreign_submit = true;
  3982. _submit_work_async(work_cp);
  3983. }
  3984. }
  3985. #endif
  3986. }
  3987. /* Theoretically threads could race when modifying accepted and
  3988. * rejected values but the chance of two submits completing at the
  3989. * same time is zero so there is no point adding extra locking */
  3990. static void
  3991. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3992. /*char *hashshow,*/ bool resubmit, char *worktime)
  3993. {
  3994. struct pool *pool = work->pool;
  3995. struct cgpu_info *cgpu;
  3996. cgpu = get_thr_cgpu(work->thr_id);
  3997. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3998. mutex_lock(&stats_lock);
  3999. cgpu->accepted++;
  4000. total_accepted++;
  4001. pool->accepted++;
  4002. cgpu->diff_accepted += work->work_difficulty;
  4003. total_diff_accepted += work->work_difficulty;
  4004. pool->diff_accepted += work->work_difficulty;
  4005. mutex_unlock(&stats_lock);
  4006. pool->seq_rejects = 0;
  4007. cgpu->last_share_pool = pool->pool_no;
  4008. cgpu->last_share_pool_time = time(NULL);
  4009. cgpu->last_share_diff = work->work_difficulty;
  4010. pool->last_share_time = cgpu->last_share_pool_time;
  4011. pool->last_share_diff = work->work_difficulty;
  4012. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  4013. if (!QUIET) {
  4014. share_result_msg(work, "Accepted", "", resubmit, worktime);
  4015. }
  4016. sharelog("accept", work);
  4017. if (opt_shares && total_diff_accepted >= opt_shares) {
  4018. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  4019. kill_work();
  4020. return;
  4021. }
  4022. /* Detect if a pool that has been temporarily disabled for
  4023. * continually rejecting shares has started accepting shares.
  4024. * This will only happen with the work returned from a
  4025. * longpoll */
  4026. if (unlikely(pool->enabled == POOL_REJECTING)) {
  4027. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  4028. enable_pool(pool);
  4029. }
  4030. if (unlikely(work->block)) {
  4031. // Force moving on to this new block :)
  4032. struct work fakework;
  4033. memset(&fakework, 0, sizeof(fakework));
  4034. fakework.pool = work->pool;
  4035. // Copy block version, bits, and time from share
  4036. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  4037. memcpy(&fakework.data[68], &work->data[68], 8);
  4038. // Set prevblock to winning hash (swap32'd)
  4039. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  4040. test_work_current(&fakework);
  4041. }
  4042. } else {
  4043. mutex_lock(&stats_lock);
  4044. cgpu->rejected++;
  4045. total_rejected++;
  4046. pool->rejected++;
  4047. cgpu->diff_rejected += work->work_difficulty;
  4048. total_diff_rejected += work->work_difficulty;
  4049. pool->diff_rejected += work->work_difficulty;
  4050. pool->seq_rejects++;
  4051. mutex_unlock(&stats_lock);
  4052. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  4053. if (!QUIET) {
  4054. char where[20];
  4055. char disposition[36] = "reject";
  4056. char reason[32];
  4057. strcpy(reason, "");
  4058. if (total_pools > 1)
  4059. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  4060. else
  4061. strcpy(where, "");
  4062. if (!json_is_string(res))
  4063. res = json_object_get(val, "reject-reason");
  4064. if (res) {
  4065. const char *reasontmp = json_string_value(res);
  4066. size_t reasonLen = strlen(reasontmp);
  4067. if (reasonLen > 28)
  4068. reasonLen = 28;
  4069. reason[0] = ' '; reason[1] = '(';
  4070. memcpy(2 + reason, reasontmp, reasonLen);
  4071. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  4072. memcpy(disposition + 7, reasontmp, reasonLen);
  4073. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  4074. } else if (work->stratum && err && json_is_array(err)) {
  4075. json_t *reason_val = json_array_get(err, 1);
  4076. char *reason_str;
  4077. if (reason_val && json_is_string(reason_val)) {
  4078. reason_str = (char *)json_string_value(reason_val);
  4079. snprintf(reason, 31, " (%s)", reason_str);
  4080. }
  4081. }
  4082. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  4083. sharelog(disposition, work);
  4084. }
  4085. /* Once we have more than a nominal amount of sequential rejects,
  4086. * at least 10 and more than 3 mins at the current utility,
  4087. * disable the pool because some pool error is likely to have
  4088. * ensued. Do not do this if we know the share just happened to
  4089. * be stale due to networking delays.
  4090. */
  4091. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  4092. double utility = total_accepted / total_secs * 60;
  4093. if (pool->seq_rejects > utility * 3) {
  4094. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  4095. pool->pool_no, pool->seq_rejects);
  4096. disable_pool(pool, POOL_REJECTING);
  4097. pool->seq_rejects = 0;
  4098. }
  4099. }
  4100. }
  4101. maybe_local_submit(work);
  4102. }
  4103. static char *submit_upstream_work_request(struct work *work)
  4104. {
  4105. char *hexstr = NULL;
  4106. char *s, *sd;
  4107. struct pool *pool = work->pool;
  4108. if (work->tr)
  4109. {
  4110. blktemplate_t * const tmpl = work->tr->tmpl;
  4111. json_t *req;
  4112. unsigned char data[80];
  4113. swap32yes(data, work->data, 80 / 4);
  4114. #if BLKMAKER_VERSION > 3
  4115. if (work->do_foreign_submit)
  4116. req = blkmk_submit_foreign_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4117. else
  4118. #endif
  4119. req = blkmk_submit_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4120. s = json_dumps(req, 0);
  4121. json_decref(req);
  4122. sd = malloc(161);
  4123. bin2hex(sd, data, 80);
  4124. } else {
  4125. /* build hex string */
  4126. hexstr = malloc((sizeof(work->data) * 2) + 1);
  4127. bin2hex(hexstr, work->data, sizeof(work->data));
  4128. /* build JSON-RPC request */
  4129. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  4130. s = realloc_strcat(s, hexstr);
  4131. s = realloc_strcat(s, "\" ], \"id\":1}");
  4132. free(hexstr);
  4133. sd = s;
  4134. }
  4135. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  4136. if (work->tr)
  4137. free(sd);
  4138. else
  4139. s = realloc_strcat(s, "\n");
  4140. return s;
  4141. }
  4142. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  4143. json_t *res, *err;
  4144. bool rc = false;
  4145. int thr_id = work->thr_id;
  4146. struct pool *pool = work->pool;
  4147. struct timeval tv_submit_reply;
  4148. time_t ts_submit_reply;
  4149. char worktime[200] = "";
  4150. cgtime(&tv_submit_reply);
  4151. ts_submit_reply = time(NULL);
  4152. if (unlikely(!val)) {
  4153. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  4154. if (!pool_tset(pool, &pool->submit_fail)) {
  4155. total_ro++;
  4156. pool->remotefail_occasions++;
  4157. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  4158. }
  4159. goto out;
  4160. } else if (pool_tclear(pool, &pool->submit_fail))
  4161. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4162. res = json_object_get(val, "result");
  4163. err = json_object_get(val, "error");
  4164. if (!QUIET) {
  4165. if (opt_worktime) {
  4166. char workclone[20];
  4167. struct tm _tm;
  4168. struct tm *tm, tm_getwork, tm_submit_reply;
  4169. tm = &_tm;
  4170. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  4171. (struct timeval *)&(work->tv_getwork));
  4172. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  4173. (struct timeval *)&(work->tv_getwork_reply));
  4174. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  4175. (struct timeval *)&(work->tv_work_start));
  4176. double work_to_submit = tdiff(ptv_submit,
  4177. (struct timeval *)&(work->tv_work_found));
  4178. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  4179. int diffplaces = 3;
  4180. localtime_r(&work->ts_getwork, tm);
  4181. memcpy(&tm_getwork, tm, sizeof(struct tm));
  4182. localtime_r(&ts_submit_reply, tm);
  4183. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  4184. if (work->clone) {
  4185. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  4186. tdiff((struct timeval *)&(work->tv_cloned),
  4187. (struct timeval *)&(work->tv_getwork_reply)));
  4188. }
  4189. else
  4190. strcpy(workclone, "O");
  4191. if (work->work_difficulty < 1)
  4192. diffplaces = 6;
  4193. snprintf(worktime, sizeof(worktime),
  4194. " <-%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",
  4195. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  4196. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  4197. work->getwork_mode, diffplaces, work->work_difficulty,
  4198. tm_getwork.tm_hour, tm_getwork.tm_min,
  4199. tm_getwork.tm_sec, getwork_time, workclone,
  4200. getwork_to_work, work_time, work_to_submit, submit_time,
  4201. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  4202. tm_submit_reply.tm_sec);
  4203. }
  4204. }
  4205. share_result(val, res, err, work, resubmit, worktime);
  4206. if (!opt_realquiet)
  4207. print_status(thr_id);
  4208. if (!want_per_device_stats) {
  4209. char logline[256];
  4210. struct cgpu_info *cgpu;
  4211. cgpu = get_thr_cgpu(thr_id);
  4212. get_statline(logline, sizeof(logline), cgpu);
  4213. applog(LOG_INFO, "%s", logline);
  4214. }
  4215. json_decref(val);
  4216. rc = true;
  4217. out:
  4218. return rc;
  4219. }
  4220. /* Specifies whether we can use this pool for work or not. */
  4221. static bool pool_unworkable(const struct pool * const pool)
  4222. {
  4223. if (pool->idle)
  4224. return true;
  4225. if (pool->enabled != POOL_ENABLED)
  4226. return true;
  4227. if (pool->has_stratum && !pool->stratum_active)
  4228. return true;
  4229. return false;
  4230. }
  4231. static
  4232. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4233. {
  4234. if (pool->enabled != POOL_ENABLED)
  4235. return false;
  4236. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4237. return true;
  4238. if (!cp)
  4239. cp = current_pool();
  4240. return (pool == cp);
  4241. }
  4242. static
  4243. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4244. {
  4245. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4246. }
  4247. static
  4248. bool pool_supports_block_change_notification(struct pool * const pool)
  4249. {
  4250. return pool->has_stratum || pool->lp_url;
  4251. }
  4252. static
  4253. bool pool_has_active_block_change_notification(struct pool * const pool)
  4254. {
  4255. return pool->stratum_active || pool->lp_active;
  4256. }
  4257. static struct pool *_select_longpoll_pool(struct pool *, bool(*)(struct pool *));
  4258. #define select_longpoll_pool(pool) _select_longpoll_pool(pool, pool_supports_block_change_notification)
  4259. #define pool_active_lp_pool(pool) _select_longpoll_pool(pool, pool_has_active_block_change_notification)
  4260. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4261. * rolling average per 10 minutes and if pools start getting more, it biases
  4262. * away from them to distribute work evenly. The share count is reset to the
  4263. * rolling average every 10 minutes to not send all work to one pool after it
  4264. * has been disabled/out for an extended period. */
  4265. static struct pool *select_balanced(struct pool *cp)
  4266. {
  4267. int i, lowest = cp->shares;
  4268. struct pool *ret = cp, *failover_pool = NULL;
  4269. for (i = 0; i < total_pools; i++) {
  4270. struct pool *pool = pools[i];
  4271. if (pool_unworkable(pool))
  4272. continue;
  4273. if (pool->failover_only)
  4274. {
  4275. BFGINIT(failover_pool, pool);
  4276. continue;
  4277. }
  4278. if (pool->shares < lowest) {
  4279. lowest = pool->shares;
  4280. ret = pool;
  4281. }
  4282. }
  4283. if (pool_unworkable(ret) && failover_pool)
  4284. ret = failover_pool;
  4285. ret->shares++;
  4286. return ret;
  4287. }
  4288. static bool pool_active(struct pool *, bool pinging);
  4289. static void pool_died(struct pool *);
  4290. static struct pool *priority_pool(int choice);
  4291. static bool pool_unusable(struct pool *pool);
  4292. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4293. * it has any quota left. */
  4294. static inline struct pool *select_pool(bool lagging)
  4295. {
  4296. static int rotating_pool = 0;
  4297. struct pool *pool, *cp;
  4298. bool avail = false;
  4299. int tested, i;
  4300. cp = current_pool();
  4301. retry:
  4302. if (pool_strategy == POOL_BALANCE) {
  4303. pool = select_balanced(cp);
  4304. if (pool_unworkable(pool))
  4305. goto simple_failover;
  4306. goto out;
  4307. }
  4308. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4309. pool = cp;
  4310. goto out;
  4311. } else
  4312. pool = NULL;
  4313. for (i = 0; i < total_pools; i++) {
  4314. struct pool *tp = pools[i];
  4315. if (tp->quota_used < tp->quota_gcd) {
  4316. avail = true;
  4317. break;
  4318. }
  4319. }
  4320. /* There are no pools with quota, so reset them. */
  4321. if (!avail) {
  4322. for (i = 0; i < total_pools; i++)
  4323. pools[i]->quota_used = 0;
  4324. if (++rotating_pool >= total_pools)
  4325. rotating_pool = 0;
  4326. }
  4327. /* Try to find the first pool in the rotation that is usable */
  4328. tested = 0;
  4329. while (!pool && tested++ < total_pools) {
  4330. pool = pools[rotating_pool];
  4331. if (pool->quota_used++ < pool->quota_gcd) {
  4332. if (!pool_unworkable(pool))
  4333. break;
  4334. /* Failover-only flag for load-balance means distribute
  4335. * unused quota to priority pool 0. */
  4336. if (opt_fail_only)
  4337. priority_pool(0)->quota_used--;
  4338. }
  4339. pool = NULL;
  4340. if (++rotating_pool >= total_pools)
  4341. rotating_pool = 0;
  4342. }
  4343. simple_failover:
  4344. /* If there are no alive pools with quota, choose according to
  4345. * priority. */
  4346. if (!pool) {
  4347. for (i = 0; i < total_pools; i++) {
  4348. struct pool *tp = priority_pool(i);
  4349. if (!pool_unusable(tp)) {
  4350. pool = tp;
  4351. break;
  4352. }
  4353. }
  4354. }
  4355. /* If still nothing is usable, use the current pool */
  4356. if (!pool)
  4357. pool = cp;
  4358. out:
  4359. if (!pool_actively_in_use(pool, cp))
  4360. {
  4361. if (!pool_active(pool, false))
  4362. {
  4363. pool_died(pool);
  4364. goto retry;
  4365. }
  4366. pool_tclear(pool, &pool->idle);
  4367. }
  4368. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4369. return pool;
  4370. }
  4371. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4372. double target_diff(const unsigned char *target)
  4373. {
  4374. double targ = 0;
  4375. signed int i;
  4376. for (i = 31; i >= 0; --i)
  4377. targ = (targ * 0x100) + target[i];
  4378. return DIFFEXACTONE / (targ ?: 1);
  4379. }
  4380. /*
  4381. * Calculate the work share difficulty
  4382. */
  4383. static void calc_diff(struct work *work, int known)
  4384. {
  4385. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4386. double difficulty;
  4387. if (!known) {
  4388. work->work_difficulty = target_diff(work->target);
  4389. } else
  4390. work->work_difficulty = known;
  4391. difficulty = work->work_difficulty;
  4392. pool_stats->last_diff = difficulty;
  4393. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4394. if (difficulty == pool_stats->min_diff)
  4395. pool_stats->min_diff_count++;
  4396. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4397. pool_stats->min_diff = difficulty;
  4398. pool_stats->min_diff_count = 1;
  4399. }
  4400. if (difficulty == pool_stats->max_diff)
  4401. pool_stats->max_diff_count++;
  4402. else if (difficulty > pool_stats->max_diff) {
  4403. pool_stats->max_diff = difficulty;
  4404. pool_stats->max_diff_count = 1;
  4405. }
  4406. }
  4407. static uint32_t benchmark_blkhdr[20];
  4408. static
  4409. void setup_benchmark_pool()
  4410. {
  4411. struct pool *pool;
  4412. want_longpoll = false;
  4413. // Temporarily disable opt_benchmark to avoid auto-removal
  4414. opt_benchmark = false;
  4415. pool = add_pool();
  4416. opt_benchmark = true;
  4417. pool->rpc_url = malloc(255);
  4418. strcpy(pool->rpc_url, "Benchmark");
  4419. pool_set_uri(pool, pool->rpc_url);
  4420. pool->rpc_user = pool->rpc_url;
  4421. pool->rpc_pass = pool->rpc_url;
  4422. enable_pool(pool);
  4423. pool->idle = false;
  4424. successful_connect = true;
  4425. {
  4426. uint32_t * const blkhdr = benchmark_blkhdr;
  4427. blkhdr[2] = htobe32(1);
  4428. blkhdr[17] = htobe32(0x7fffffff); // timestamp
  4429. blkhdr[18] = htobe32(0x1700ffff); // "bits"
  4430. }
  4431. {
  4432. struct stratum_work * const swork = &pool->swork;
  4433. const int branchcount = 15; // 1 MB block
  4434. const size_t branchdatasz = branchcount * 0x20;
  4435. const size_t coinbase_sz = 6 * 1024;
  4436. bytes_resize(&swork->coinbase, coinbase_sz);
  4437. memset(bytes_buf(&swork->coinbase), '\xff', coinbase_sz);
  4438. swork->nonce2_offset = 0;
  4439. bytes_resize(&swork->merkle_bin, branchdatasz);
  4440. memset(bytes_buf(&swork->merkle_bin), '\xff', branchdatasz);
  4441. swork->merkles = branchcount;
  4442. memset(swork->header1, '\xff', 36);
  4443. swork->ntime = 0x7fffffff;
  4444. timer_unset(&swork->tv_received);
  4445. memcpy(swork->diffbits, "\x17\0\xff\xff", 4);
  4446. set_target_to_pdiff(swork->target, opt_scrypt ? (1./0x10000) : 1.);
  4447. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  4448. pool->nonce2 = 0;
  4449. }
  4450. }
  4451. void get_benchmark_work(struct work *work)
  4452. {
  4453. struct pool * const pool = pools[0];
  4454. uint32_t * const blkhdr = benchmark_blkhdr;
  4455. for (int i = 16; i >= 0; --i)
  4456. if (++blkhdr[i])
  4457. break;
  4458. memcpy(&work->data[ 0], blkhdr, 80);
  4459. memcpy(&work->data[80], workpadding_bin, 48);
  4460. char hex[161];
  4461. bin2hex(hex, work->data, 80);
  4462. applog(LOG_DEBUG, "Generated benchmark header %s", hex);
  4463. calc_midstate(work);
  4464. memcpy(work->target, pool->swork.target, sizeof(work->target));
  4465. work->mandatory = true;
  4466. work->pool = pools[0];
  4467. cgtime(&work->tv_getwork);
  4468. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4469. copy_time(&work->tv_staged, &work->tv_getwork);
  4470. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4471. calc_diff(work, 0);
  4472. work_set_simple_ntime_roll_limit(work, 60);
  4473. }
  4474. static void wake_gws(void);
  4475. static void update_last_work(struct work *work)
  4476. {
  4477. if (!work->tr)
  4478. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4479. return;
  4480. struct pool *pool = work->pool;
  4481. mutex_lock(&pool->last_work_lock);
  4482. if (pool->last_work_copy)
  4483. free_work(pool->last_work_copy);
  4484. pool->last_work_copy = copy_work(work);
  4485. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4486. mutex_unlock(&pool->last_work_lock);
  4487. }
  4488. static
  4489. void gbt_req_target(json_t *req)
  4490. {
  4491. json_t *j;
  4492. json_t *n;
  4493. if (!request_target_str)
  4494. return;
  4495. j = json_object_get(req, "params");
  4496. if (!j)
  4497. {
  4498. n = json_array();
  4499. if (!n)
  4500. return;
  4501. if (json_object_set_new(req, "params", n))
  4502. goto erradd;
  4503. j = n;
  4504. }
  4505. n = json_array_get(j, 0);
  4506. if (!n)
  4507. {
  4508. n = json_object();
  4509. if (!n)
  4510. return;
  4511. if (json_array_append_new(j, n))
  4512. goto erradd;
  4513. }
  4514. j = n;
  4515. n = json_string(request_target_str);
  4516. if (!n)
  4517. return;
  4518. if (json_object_set_new(j, "target", n))
  4519. goto erradd;
  4520. return;
  4521. erradd:
  4522. json_decref(n);
  4523. }
  4524. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4525. {
  4526. char *rpc_req;
  4527. clean_work(work);
  4528. switch (proto) {
  4529. case PLP_GETWORK:
  4530. work->getwork_mode = GETWORK_MODE_POOL;
  4531. return strdup(getwork_req);
  4532. case PLP_GETBLOCKTEMPLATE:
  4533. work->getwork_mode = GETWORK_MODE_GBT;
  4534. blktemplate_t * const tmpl = blktmpl_create();
  4535. if (!tmpl)
  4536. goto gbtfail2;
  4537. work->tr = tmpl_makeref(tmpl);
  4538. gbt_capabilities_t caps = blktmpl_addcaps(tmpl);
  4539. if (!caps)
  4540. goto gbtfail;
  4541. caps |= GBT_LONGPOLL;
  4542. #if BLKMAKER_VERSION > 1
  4543. if (bytes_len(&opt_coinbase_script) || have_at_least_one_getcbaddr)
  4544. caps |= GBT_CBVALUE;
  4545. #endif
  4546. json_t *req = blktmpl_request_jansson(caps, lpid);
  4547. if (!req)
  4548. goto gbtfail;
  4549. if (probe)
  4550. gbt_req_target(req);
  4551. rpc_req = json_dumps(req, 0);
  4552. if (!rpc_req)
  4553. goto gbtfail;
  4554. json_decref(req);
  4555. return rpc_req;
  4556. default:
  4557. return NULL;
  4558. }
  4559. return NULL;
  4560. gbtfail:
  4561. tmpl_decref(work->tr);
  4562. work->tr = NULL;
  4563. gbtfail2:
  4564. return NULL;
  4565. }
  4566. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4567. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4568. static const char *pool_protocol_name(enum pool_protocol proto)
  4569. {
  4570. switch (proto) {
  4571. case PLP_GETBLOCKTEMPLATE:
  4572. return "getblocktemplate";
  4573. case PLP_GETWORK:
  4574. return "getwork";
  4575. default:
  4576. return "UNKNOWN";
  4577. }
  4578. }
  4579. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4580. {
  4581. switch (proto) {
  4582. case PLP_GETBLOCKTEMPLATE:
  4583. if (want_getwork)
  4584. return PLP_GETWORK;
  4585. default:
  4586. return PLP_NONE;
  4587. }
  4588. }
  4589. static bool get_upstream_work(struct work *work, CURL *curl)
  4590. {
  4591. struct pool *pool = work->pool;
  4592. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4593. struct timeval tv_elapsed;
  4594. json_t *val = NULL;
  4595. bool rc = false;
  4596. char *url;
  4597. enum pool_protocol proto;
  4598. char *rpc_req;
  4599. if (pool->proto == PLP_NONE)
  4600. pool->proto = PLP_GETBLOCKTEMPLATE;
  4601. tryagain:
  4602. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4603. work->pool = pool;
  4604. if (!rpc_req)
  4605. return false;
  4606. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4607. url = pool->rpc_url;
  4608. cgtime(&work->tv_getwork);
  4609. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4610. false, &work->rolltime, pool, false);
  4611. pool_stats->getwork_attempts++;
  4612. free(rpc_req);
  4613. if (likely(val)) {
  4614. rc = work_decode(pool, work, val);
  4615. if (unlikely(!rc))
  4616. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4617. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4618. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4619. pool->proto = proto;
  4620. goto tryagain;
  4621. } else
  4622. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4623. cgtime(&work->tv_getwork_reply);
  4624. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4625. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4626. pool_stats->getwork_wait_rolling /= 1.63;
  4627. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4628. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4629. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4630. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4631. }
  4632. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4633. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4634. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4635. }
  4636. pool_stats->getwork_calls++;
  4637. work->pool = pool;
  4638. work->longpoll = false;
  4639. calc_diff(work, 0);
  4640. total_getworks++;
  4641. pool->getwork_requested++;
  4642. if (rc)
  4643. update_last_work(work);
  4644. if (likely(val))
  4645. json_decref(val);
  4646. return rc;
  4647. }
  4648. #ifdef HAVE_CURSES
  4649. static void disable_curses(void)
  4650. {
  4651. if (curses_active_locked()) {
  4652. use_curses = false;
  4653. curses_active = false;
  4654. leaveok(logwin, false);
  4655. leaveok(statuswin, false);
  4656. leaveok(mainwin, false);
  4657. nocbreak();
  4658. echo();
  4659. delwin(logwin);
  4660. delwin(statuswin);
  4661. delwin(mainwin);
  4662. endwin();
  4663. #ifdef WIN32
  4664. // Move the cursor to after curses output.
  4665. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4666. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4667. COORD coord;
  4668. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4669. coord.X = 0;
  4670. coord.Y = csbi.dwSize.Y - 1;
  4671. SetConsoleCursorPosition(hout, coord);
  4672. }
  4673. #endif
  4674. unlock_curses();
  4675. }
  4676. }
  4677. #endif
  4678. static void __kill_work(void)
  4679. {
  4680. struct cgpu_info *cgpu;
  4681. struct thr_info *thr;
  4682. int i;
  4683. if (!successful_connect)
  4684. return;
  4685. applog(LOG_INFO, "Received kill message");
  4686. shutting_down = true;
  4687. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4688. notifier_wake(submit_waiting_notifier);
  4689. #ifdef USE_LIBMICROHTTPD
  4690. httpsrv_stop();
  4691. #endif
  4692. applog(LOG_DEBUG, "Killing off watchpool thread");
  4693. /* Kill the watchpool thread */
  4694. thr = &control_thr[watchpool_thr_id];
  4695. thr_info_cancel(thr);
  4696. applog(LOG_DEBUG, "Killing off watchdog thread");
  4697. /* Kill the watchdog thread */
  4698. thr = &control_thr[watchdog_thr_id];
  4699. thr_info_cancel(thr);
  4700. applog(LOG_DEBUG, "Shutting down mining threads");
  4701. for (i = 0; i < mining_threads; i++) {
  4702. thr = get_thread(i);
  4703. if (!thr)
  4704. continue;
  4705. cgpu = thr->cgpu;
  4706. if (!cgpu)
  4707. continue;
  4708. if (!cgpu->threads)
  4709. continue;
  4710. cgpu->shutdown = true;
  4711. thr->work_restart = true;
  4712. notifier_wake(thr->notifier);
  4713. notifier_wake(thr->work_restart_notifier);
  4714. }
  4715. sleep(1);
  4716. applog(LOG_DEBUG, "Killing off mining threads");
  4717. /* Kill the mining threads*/
  4718. for (i = 0; i < mining_threads; i++) {
  4719. thr = get_thread(i);
  4720. if (!thr)
  4721. continue;
  4722. cgpu = thr->cgpu;
  4723. if (cgpu->threads)
  4724. {
  4725. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4726. thr_info_cancel(thr);
  4727. }
  4728. cgpu->status = LIFE_DEAD2;
  4729. }
  4730. /* Stop the others */
  4731. applog(LOG_DEBUG, "Killing off API thread");
  4732. thr = &control_thr[api_thr_id];
  4733. thr_info_cancel(thr);
  4734. }
  4735. /* This should be the common exit path */
  4736. void kill_work(void)
  4737. {
  4738. __kill_work();
  4739. quit(0, "Shutdown signal received.");
  4740. }
  4741. static
  4742. #ifdef WIN32
  4743. #ifndef _WIN64
  4744. const
  4745. #endif
  4746. #endif
  4747. char **initial_args;
  4748. void _bfg_clean_up(bool);
  4749. void app_restart(void)
  4750. {
  4751. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4752. __kill_work();
  4753. _bfg_clean_up(true);
  4754. #if defined(unix) || defined(__APPLE__)
  4755. if (forkpid > 0) {
  4756. kill(forkpid, SIGTERM);
  4757. forkpid = 0;
  4758. }
  4759. #endif
  4760. execv(initial_args[0], initial_args);
  4761. applog(LOG_WARNING, "Failed to restart application");
  4762. }
  4763. static void sighandler(int __maybe_unused sig)
  4764. {
  4765. /* Restore signal handlers so we can still quit if kill_work fails */
  4766. sigaction(SIGTERM, &termhandler, NULL);
  4767. sigaction(SIGINT, &inthandler, NULL);
  4768. kill_work();
  4769. }
  4770. static void start_longpoll(void);
  4771. static void stop_longpoll(void);
  4772. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4773. * this pool. */
  4774. static void recruit_curl(struct pool *pool)
  4775. {
  4776. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4777. if (unlikely(!ce))
  4778. quit(1, "Failed to calloc in recruit_curl");
  4779. ce->curl = curl_easy_init();
  4780. if (unlikely(!ce->curl))
  4781. quit(1, "Failed to init in recruit_curl");
  4782. LL_PREPEND(pool->curllist, ce);
  4783. pool->curls++;
  4784. }
  4785. /* Grab an available curl if there is one. If not, then recruit extra curls
  4786. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4787. * and there are already 5 curls in circulation. Limit total number to the
  4788. * number of mining threads per pool as well to prevent blasting a pool during
  4789. * network delays/outages. */
  4790. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4791. {
  4792. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4793. bool recruited = false;
  4794. struct curl_ent *ce;
  4795. mutex_lock(&pool->pool_lock);
  4796. retry:
  4797. if (!pool->curls) {
  4798. recruit_curl(pool);
  4799. recruited = true;
  4800. } else if (!pool->curllist) {
  4801. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4802. if (!blocking) {
  4803. mutex_unlock(&pool->pool_lock);
  4804. return NULL;
  4805. }
  4806. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4807. goto retry;
  4808. } else {
  4809. recruit_curl(pool);
  4810. recruited = true;
  4811. }
  4812. }
  4813. ce = pool->curllist;
  4814. LL_DELETE(pool->curllist, ce);
  4815. mutex_unlock(&pool->pool_lock);
  4816. if (recruited)
  4817. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4818. return ce;
  4819. }
  4820. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4821. {
  4822. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4823. }
  4824. __maybe_unused
  4825. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4826. {
  4827. return pop_curl_entry3(pool, 1);
  4828. }
  4829. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4830. {
  4831. mutex_lock(&pool->pool_lock);
  4832. if (!ce || !ce->curl)
  4833. quithere(1, "Attempted to add NULL");
  4834. LL_PREPEND(pool->curllist, ce);
  4835. cgtime(&ce->tv);
  4836. pthread_cond_broadcast(&pool->cr_cond);
  4837. mutex_unlock(&pool->pool_lock);
  4838. }
  4839. bool stale_work(struct work *work, bool share);
  4840. static inline bool should_roll(struct work *work)
  4841. {
  4842. struct timeval now;
  4843. time_t expiry;
  4844. if (!pool_actively_in_use(work->pool, NULL))
  4845. return false;
  4846. if (stale_work(work, false))
  4847. return false;
  4848. if (work->rolltime > opt_scantime)
  4849. expiry = work->rolltime;
  4850. else
  4851. expiry = opt_scantime;
  4852. expiry = expiry * 2 / 3;
  4853. /* We shouldn't roll if we're unlikely to get one shares' duration
  4854. * work out of doing so */
  4855. cgtime(&now);
  4856. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4857. return false;
  4858. return true;
  4859. }
  4860. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4861. * reject blocks as invalid. */
  4862. static inline bool can_roll(struct work *work)
  4863. {
  4864. if (work->stratum)
  4865. return false;
  4866. if (!(work->pool && !work->clone))
  4867. return false;
  4868. if (work->tr)
  4869. {
  4870. if (stale_work(work, false))
  4871. return false;
  4872. return blkmk_work_left(work->tr->tmpl);
  4873. }
  4874. return (work->rolltime &&
  4875. work->rolls < 7000 && !stale_work(work, false));
  4876. }
  4877. static void roll_work(struct work *work)
  4878. {
  4879. if (work->tr)
  4880. {
  4881. struct timeval tv_now;
  4882. cgtime(&tv_now);
  4883. if (blkmk_get_data(work->tr->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4884. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4885. swap32yes(work->data, work->data, 80 / 4);
  4886. calc_midstate(work);
  4887. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4888. } else {
  4889. uint32_t *work_ntime;
  4890. uint32_t ntime;
  4891. work_ntime = (uint32_t *)(work->data + 68);
  4892. ntime = be32toh(*work_ntime);
  4893. ntime++;
  4894. *work_ntime = htobe32(ntime);
  4895. work_set_simple_ntime_roll_limit(work, 0);
  4896. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4897. }
  4898. local_work++;
  4899. work->rolls++;
  4900. work->blk.nonce = 0;
  4901. /* This is now a different work item so it needs a different ID for the
  4902. * hashtable */
  4903. work->id = total_work++;
  4904. }
  4905. /* Duplicates any dynamically allocated arrays within the work struct to
  4906. * prevent a copied work struct from freeing ram belonging to another struct */
  4907. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4908. {
  4909. int id = work->id;
  4910. clean_work(work);
  4911. memcpy(work, base_work, sizeof(struct work));
  4912. /* Keep the unique new id assigned during make_work to prevent copied
  4913. * work from having the same id. */
  4914. work->id = id;
  4915. if (base_work->job_id)
  4916. work->job_id = strdup(base_work->job_id);
  4917. if (base_work->nonce1)
  4918. work->nonce1 = strdup(base_work->nonce1);
  4919. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4920. if (base_work->tr)
  4921. tmpl_incref(base_work->tr);
  4922. if (noffset)
  4923. {
  4924. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4925. uint32_t ntime = be32toh(*work_ntime);
  4926. ntime += noffset;
  4927. *work_ntime = htobe32(ntime);
  4928. }
  4929. if (work->device_data_dup_func)
  4930. work->device_data = work->device_data_dup_func(work);
  4931. }
  4932. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4933. * for all dynamically allocated arrays within the struct */
  4934. struct work *copy_work(const struct work *base_work)
  4935. {
  4936. struct work *work = make_work();
  4937. _copy_work(work, base_work, 0);
  4938. return work;
  4939. }
  4940. void __copy_work(struct work *work, const struct work *base_work)
  4941. {
  4942. _copy_work(work, base_work, 0);
  4943. }
  4944. static struct work *make_clone(struct work *work)
  4945. {
  4946. struct work *work_clone = copy_work(work);
  4947. work_clone->clone = true;
  4948. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4949. work_clone->longpoll = false;
  4950. work_clone->mandatory = false;
  4951. /* Make cloned work appear slightly older to bias towards keeping the
  4952. * master work item which can be further rolled */
  4953. work_clone->tv_staged.tv_sec -= 1;
  4954. return work_clone;
  4955. }
  4956. static void stage_work(struct work *work);
  4957. static bool clone_available(void)
  4958. {
  4959. struct work *work_clone = NULL, *work, *tmp;
  4960. bool cloned = false;
  4961. mutex_lock(stgd_lock);
  4962. if (!staged_rollable)
  4963. goto out_unlock;
  4964. HASH_ITER(hh, staged_work, work, tmp) {
  4965. if (can_roll(work) && should_roll(work)) {
  4966. roll_work(work);
  4967. work_clone = make_clone(work);
  4968. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4969. roll_work(work);
  4970. cloned = true;
  4971. break;
  4972. }
  4973. }
  4974. out_unlock:
  4975. mutex_unlock(stgd_lock);
  4976. if (cloned) {
  4977. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4978. stage_work(work_clone);
  4979. }
  4980. return cloned;
  4981. }
  4982. static void pool_died(struct pool *pool)
  4983. {
  4984. mutex_lock(&lp_lock);
  4985. if (!pool_tset(pool, &pool->idle)) {
  4986. cgtime(&pool->tv_idle);
  4987. pthread_cond_broadcast(&lp_cond);
  4988. mutex_unlock(&lp_lock);
  4989. if (pool == current_pool()) {
  4990. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4991. switch_pools(NULL);
  4992. } else
  4993. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4994. }
  4995. else
  4996. mutex_unlock(&lp_lock);
  4997. }
  4998. bool stale_work(struct work *work, bool share)
  4999. {
  5000. unsigned work_expiry;
  5001. struct pool *pool;
  5002. uint32_t block_id;
  5003. unsigned getwork_delay;
  5004. if (opt_benchmark)
  5005. return false;
  5006. block_id = ((uint32_t*)work->data)[1];
  5007. pool = work->pool;
  5008. /* Technically the rolltime should be correct but some pools
  5009. * advertise a broken expire= that is lower than a meaningful
  5010. * scantime */
  5011. if (work->rolltime >= opt_scantime || work->tr)
  5012. work_expiry = work->rolltime;
  5013. else
  5014. work_expiry = opt_expiry;
  5015. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  5016. if (work_expiry > max_expiry)
  5017. work_expiry = max_expiry;
  5018. if (share) {
  5019. /* If the share isn't on this pool's latest block, it's stale */
  5020. if (pool->block_id && pool->block_id != block_id)
  5021. {
  5022. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  5023. return true;
  5024. }
  5025. /* If the pool doesn't want old shares, then any found in work before
  5026. * the most recent longpoll is stale */
  5027. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  5028. {
  5029. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  5030. return true;
  5031. }
  5032. } else {
  5033. /* If this work isn't for the latest Bitcoin block, it's stale */
  5034. /* But only care about the current pool if failover-only */
  5035. if (enabled_pools <= 1 || opt_fail_only) {
  5036. if (pool->block_id && block_id != pool->block_id)
  5037. {
  5038. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  5039. return true;
  5040. }
  5041. } else {
  5042. if (block_id != current_block_id)
  5043. {
  5044. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  5045. return true;
  5046. }
  5047. }
  5048. /* If the pool has asked us to restart since this work, it's stale */
  5049. if (work->work_restart_id != pool->work_restart_id)
  5050. {
  5051. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  5052. return true;
  5053. }
  5054. if (pool->has_stratum && work->job_id) {
  5055. bool same_job;
  5056. if (!pool->stratum_active || !pool->stratum_notify) {
  5057. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  5058. return true;
  5059. }
  5060. same_job = true;
  5061. cg_rlock(&pool->data_lock);
  5062. if (strcmp(work->job_id, pool->swork.job_id))
  5063. same_job = false;
  5064. cg_runlock(&pool->data_lock);
  5065. if (!same_job) {
  5066. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  5067. return true;
  5068. }
  5069. }
  5070. /* Factor in the average getwork delay of this pool, rounding it up to
  5071. * the nearest second */
  5072. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  5073. if (unlikely(work_expiry <= getwork_delay + 5))
  5074. work_expiry = 5;
  5075. else
  5076. work_expiry -= getwork_delay;
  5077. }
  5078. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  5079. if (elapsed_since_staged > work_expiry) {
  5080. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  5081. return true;
  5082. }
  5083. /* If the user only wants strict failover, any work from a pool other than
  5084. * the current one is always considered stale */
  5085. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  5086. {
  5087. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  5088. return true;
  5089. }
  5090. return false;
  5091. }
  5092. static double share_diff(const struct work *work)
  5093. {
  5094. double ret;
  5095. bool new_best = false;
  5096. ret = target_diff(work->hash);
  5097. cg_wlock(&control_lock);
  5098. if (unlikely(ret > best_diff)) {
  5099. new_best = true;
  5100. best_diff = ret;
  5101. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5102. }
  5103. if (unlikely(ret > work->pool->best_diff))
  5104. work->pool->best_diff = ret;
  5105. cg_wunlock(&control_lock);
  5106. if (unlikely(new_best))
  5107. applog(LOG_INFO, "New best share: %s", best_share);
  5108. return ret;
  5109. }
  5110. static
  5111. void work_check_for_block(struct work * const work)
  5112. {
  5113. work->share_diff = share_diff(work);
  5114. if (unlikely(work->share_diff >= current_diff)) {
  5115. work->block = true;
  5116. work->pool->solved++;
  5117. found_blocks++;
  5118. work->mandatory = true;
  5119. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  5120. }
  5121. }
  5122. static void submit_discard_share2(const char *reason, struct work *work)
  5123. {
  5124. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  5125. sharelog(reason, work);
  5126. mutex_lock(&stats_lock);
  5127. ++total_stale;
  5128. ++cgpu->stale;
  5129. ++(work->pool->stale_shares);
  5130. total_diff_stale += work->work_difficulty;
  5131. cgpu->diff_stale += work->work_difficulty;
  5132. work->pool->diff_stale += work->work_difficulty;
  5133. mutex_unlock(&stats_lock);
  5134. }
  5135. static void submit_discard_share(struct work *work)
  5136. {
  5137. submit_discard_share2("discard", work);
  5138. }
  5139. struct submit_work_state {
  5140. struct work *work;
  5141. bool resubmit;
  5142. struct curl_ent *ce;
  5143. int failures;
  5144. struct timeval tv_staleexpire;
  5145. char *s;
  5146. struct timeval tv_submit;
  5147. struct submit_work_state *next;
  5148. };
  5149. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  5150. {
  5151. long *p_timeout_us = userp;
  5152. const long max_ms = LONG_MAX / 1000;
  5153. if (max_ms < timeout_ms)
  5154. timeout_ms = max_ms;
  5155. *p_timeout_us = timeout_ms * 1000;
  5156. return 0;
  5157. }
  5158. static void sws_has_ce(struct submit_work_state *sws)
  5159. {
  5160. struct pool *pool = sws->work->pool;
  5161. sws->s = submit_upstream_work_request(sws->work);
  5162. cgtime(&sws->tv_submit);
  5163. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5164. }
  5165. static struct submit_work_state *begin_submission(struct work *work)
  5166. {
  5167. struct pool *pool;
  5168. struct submit_work_state *sws = NULL;
  5169. pool = work->pool;
  5170. sws = malloc(sizeof(*sws));
  5171. *sws = (struct submit_work_state){
  5172. .work = work,
  5173. };
  5174. work_check_for_block(work);
  5175. if (stale_work(work, true)) {
  5176. work->stale = true;
  5177. if (opt_submit_stale)
  5178. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  5179. else if (pool->submit_old)
  5180. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  5181. else {
  5182. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  5183. submit_discard_share(work);
  5184. goto out;
  5185. }
  5186. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5187. }
  5188. if (work->stratum) {
  5189. char *s;
  5190. s = malloc(1024);
  5191. sws->s = s;
  5192. } else {
  5193. /* submit solution to bitcoin via JSON-RPC */
  5194. sws->ce = pop_curl_entry2(pool, false);
  5195. if (sws->ce) {
  5196. sws_has_ce(sws);
  5197. } else {
  5198. sws->next = pool->sws_waiting_on_curl;
  5199. pool->sws_waiting_on_curl = sws;
  5200. if (sws->next)
  5201. applog(LOG_DEBUG, "submit_thread queuing submission");
  5202. else
  5203. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  5204. }
  5205. }
  5206. return sws;
  5207. out:
  5208. free(sws);
  5209. return NULL;
  5210. }
  5211. static bool retry_submission(struct submit_work_state *sws)
  5212. {
  5213. struct work *work = sws->work;
  5214. struct pool *pool = work->pool;
  5215. sws->resubmit = true;
  5216. if ((!work->stale) && stale_work(work, true)) {
  5217. work->stale = true;
  5218. if (opt_submit_stale)
  5219. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  5220. else if (pool->submit_old)
  5221. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  5222. else {
  5223. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  5224. submit_discard_share(work);
  5225. return false;
  5226. }
  5227. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5228. }
  5229. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  5230. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  5231. submit_discard_share(work);
  5232. return false;
  5233. }
  5234. else if (work->stale) {
  5235. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  5236. {
  5237. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  5238. submit_discard_share(work);
  5239. return false;
  5240. }
  5241. }
  5242. /* pause, then restart work-request loop */
  5243. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  5244. cgtime(&sws->tv_submit);
  5245. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5246. return true;
  5247. }
  5248. static void free_sws(struct submit_work_state *sws)
  5249. {
  5250. free(sws->s);
  5251. free_work(sws->work);
  5252. free(sws);
  5253. }
  5254. static void *submit_work_thread(__maybe_unused void *userdata)
  5255. {
  5256. int wip = 0;
  5257. CURLM *curlm;
  5258. long curlm_timeout_us = -1;
  5259. struct timeval curlm_timer;
  5260. struct submit_work_state *sws, **swsp;
  5261. struct submit_work_state *write_sws = NULL;
  5262. unsigned tsreduce = 0;
  5263. pthread_detach(pthread_self());
  5264. RenameThread("submit_work");
  5265. applog(LOG_DEBUG, "Creating extra submit work thread");
  5266. curlm = curl_multi_init();
  5267. curlm_timeout_us = -1;
  5268. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5269. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5270. fd_set rfds, wfds, efds;
  5271. int maxfd;
  5272. struct timeval tv_timeout, tv_now;
  5273. int n;
  5274. CURLMsg *cm;
  5275. FD_ZERO(&rfds);
  5276. while (1) {
  5277. mutex_lock(&submitting_lock);
  5278. total_submitting -= tsreduce;
  5279. tsreduce = 0;
  5280. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5281. notifier_read(submit_waiting_notifier);
  5282. }
  5283. // Receive any new submissions
  5284. while (submit_waiting) {
  5285. struct work *work = submit_waiting;
  5286. DL_DELETE(submit_waiting, work);
  5287. if ( (sws = begin_submission(work)) ) {
  5288. if (sws->ce)
  5289. curl_multi_add_handle(curlm, sws->ce->curl);
  5290. else if (sws->s) {
  5291. sws->next = write_sws;
  5292. write_sws = sws;
  5293. }
  5294. ++wip;
  5295. }
  5296. else {
  5297. --total_submitting;
  5298. free_work(work);
  5299. }
  5300. }
  5301. if (unlikely(shutting_down && !wip))
  5302. break;
  5303. mutex_unlock(&submitting_lock);
  5304. FD_ZERO(&rfds);
  5305. FD_ZERO(&wfds);
  5306. FD_ZERO(&efds);
  5307. tv_timeout.tv_sec = -1;
  5308. // Setup cURL with select
  5309. // Need to call perform to ensure the timeout gets updated
  5310. curl_multi_perform(curlm, &n);
  5311. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5312. if (curlm_timeout_us >= 0)
  5313. {
  5314. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5315. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5316. }
  5317. // Setup waiting stratum submissions with select
  5318. for (sws = write_sws; sws; sws = sws->next)
  5319. {
  5320. struct pool *pool = sws->work->pool;
  5321. int fd = pool->sock;
  5322. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5323. continue;
  5324. FD_SET(fd, &wfds);
  5325. set_maxfd(&maxfd, fd);
  5326. }
  5327. // Setup "submit waiting" notifier with select
  5328. FD_SET(submit_waiting_notifier[0], &rfds);
  5329. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5330. // Wait for something interesting to happen :)
  5331. cgtime(&tv_now);
  5332. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5333. FD_ZERO(&rfds);
  5334. continue;
  5335. }
  5336. // Handle any stratum ready-to-write results
  5337. for (swsp = &write_sws; (sws = *swsp); ) {
  5338. struct work *work = sws->work;
  5339. struct pool *pool = work->pool;
  5340. int fd = pool->sock;
  5341. bool sessionid_match;
  5342. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5343. next_write_sws:
  5344. // TODO: Check if stale, possibly discard etc
  5345. swsp = &sws->next;
  5346. continue;
  5347. }
  5348. cg_rlock(&pool->data_lock);
  5349. // 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
  5350. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5351. sessionid_match = (!pool->swork.nonce1) || !strcmp(work->nonce1, pool->swork.nonce1);
  5352. cg_runlock(&pool->data_lock);
  5353. if (!sessionid_match)
  5354. {
  5355. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5356. submit_discard_share2("disconnect", work);
  5357. ++tsreduce;
  5358. next_write_sws_del:
  5359. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5360. FD_CLR(fd, &wfds);
  5361. // Delete sws for this submission, since we're done with it
  5362. *swsp = sws->next;
  5363. free_sws(sws);
  5364. --wip;
  5365. continue;
  5366. }
  5367. char *s = sws->s;
  5368. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5369. int sshare_id;
  5370. uint32_t nonce;
  5371. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5372. char noncehex[9];
  5373. char ntimehex[9];
  5374. sshare->work = copy_work(work);
  5375. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5376. nonce = *((uint32_t *)(work->data + 76));
  5377. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5378. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5379. mutex_lock(&sshare_lock);
  5380. /* Give the stratum share a unique id */
  5381. sshare_id =
  5382. sshare->id = swork_id++;
  5383. HASH_ADD_INT(stratum_shares, id, sshare);
  5384. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5385. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5386. mutex_unlock(&sshare_lock);
  5387. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5388. if (likely(stratum_send(pool, s, strlen(s)))) {
  5389. if (pool_tclear(pool, &pool->submit_fail))
  5390. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5391. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5392. goto next_write_sws_del;
  5393. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5394. // Undo stuff
  5395. mutex_lock(&sshare_lock);
  5396. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5397. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5398. if (sshare)
  5399. HASH_DEL(stratum_shares, sshare);
  5400. mutex_unlock(&sshare_lock);
  5401. if (sshare)
  5402. {
  5403. free_work(sshare->work);
  5404. free(sshare);
  5405. }
  5406. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5407. total_ro++;
  5408. pool->remotefail_occasions++;
  5409. if (!sshare)
  5410. goto next_write_sws_del;
  5411. goto next_write_sws;
  5412. }
  5413. }
  5414. // Handle any cURL activities
  5415. curl_multi_perform(curlm, &n);
  5416. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5417. if (cm->msg == CURLMSG_DONE)
  5418. {
  5419. bool finished;
  5420. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5421. curl_multi_remove_handle(curlm, cm->easy_handle);
  5422. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5423. if (!finished) {
  5424. if (retry_submission(sws))
  5425. curl_multi_add_handle(curlm, sws->ce->curl);
  5426. else
  5427. finished = true;
  5428. }
  5429. if (finished) {
  5430. --wip;
  5431. ++tsreduce;
  5432. struct pool *pool = sws->work->pool;
  5433. if (pool->sws_waiting_on_curl) {
  5434. pool->sws_waiting_on_curl->ce = sws->ce;
  5435. sws_has_ce(pool->sws_waiting_on_curl);
  5436. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5437. curl_multi_add_handle(curlm, sws->ce->curl);
  5438. } else {
  5439. push_curl_entry(sws->ce, sws->work->pool);
  5440. }
  5441. free_sws(sws);
  5442. }
  5443. }
  5444. }
  5445. }
  5446. assert(!write_sws);
  5447. mutex_unlock(&submitting_lock);
  5448. curl_multi_cleanup(curlm);
  5449. applog(LOG_DEBUG, "submit_work thread exiting");
  5450. return NULL;
  5451. }
  5452. /* Find the pool that currently has the highest priority */
  5453. static struct pool *priority_pool(int choice)
  5454. {
  5455. struct pool *ret = NULL;
  5456. int i;
  5457. for (i = 0; i < total_pools; i++) {
  5458. struct pool *pool = pools[i];
  5459. if (pool->prio == choice) {
  5460. ret = pool;
  5461. break;
  5462. }
  5463. }
  5464. if (unlikely(!ret)) {
  5465. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5466. return pools[choice];
  5467. }
  5468. return ret;
  5469. }
  5470. int prioritize_pools(char *param, int *pid)
  5471. {
  5472. char *ptr, *next;
  5473. int i, pr, prio = 0;
  5474. if (total_pools == 0) {
  5475. return MSG_NOPOOL;
  5476. }
  5477. if (param == NULL || *param == '\0') {
  5478. return MSG_MISPID;
  5479. }
  5480. bool pools_changed[total_pools];
  5481. int new_prio[total_pools];
  5482. for (i = 0; i < total_pools; ++i)
  5483. pools_changed[i] = false;
  5484. next = param;
  5485. while (next && *next) {
  5486. ptr = next;
  5487. next = strchr(ptr, ',');
  5488. if (next)
  5489. *(next++) = '\0';
  5490. i = atoi(ptr);
  5491. if (i < 0 || i >= total_pools) {
  5492. *pid = i;
  5493. return MSG_INVPID;
  5494. }
  5495. if (pools_changed[i]) {
  5496. *pid = i;
  5497. return MSG_DUPPID;
  5498. }
  5499. pools_changed[i] = true;
  5500. new_prio[i] = prio++;
  5501. }
  5502. // Only change them if no errors
  5503. for (i = 0; i < total_pools; i++) {
  5504. if (pools_changed[i])
  5505. pools[i]->prio = new_prio[i];
  5506. }
  5507. // In priority order, cycle through the unchanged pools and append them
  5508. for (pr = 0; pr < total_pools; pr++)
  5509. for (i = 0; i < total_pools; i++) {
  5510. if (!pools_changed[i] && pools[i]->prio == pr) {
  5511. pools[i]->prio = prio++;
  5512. pools_changed[i] = true;
  5513. break;
  5514. }
  5515. }
  5516. if (current_pool()->prio)
  5517. switch_pools(NULL);
  5518. return MSG_POOLPRIO;
  5519. }
  5520. void validate_pool_priorities(void)
  5521. {
  5522. // TODO: this should probably do some sort of logging
  5523. int i, j;
  5524. bool used[total_pools];
  5525. bool valid[total_pools];
  5526. for (i = 0; i < total_pools; i++)
  5527. used[i] = valid[i] = false;
  5528. for (i = 0; i < total_pools; i++) {
  5529. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5530. if (!used[pools[i]->prio]) {
  5531. valid[i] = true;
  5532. used[pools[i]->prio] = true;
  5533. }
  5534. }
  5535. }
  5536. for (i = 0; i < total_pools; i++) {
  5537. if (!valid[i]) {
  5538. for (j = 0; j < total_pools; j++) {
  5539. if (!used[j]) {
  5540. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5541. pools[i]->prio = j;
  5542. used[j] = true;
  5543. break;
  5544. }
  5545. }
  5546. }
  5547. }
  5548. }
  5549. static void clear_pool_work(struct pool *pool);
  5550. /* Specifies whether we can switch to this pool or not. */
  5551. static bool pool_unusable(struct pool *pool)
  5552. {
  5553. if (pool->idle)
  5554. return true;
  5555. if (pool->enabled != POOL_ENABLED)
  5556. return true;
  5557. return false;
  5558. }
  5559. void switch_pools(struct pool *selected)
  5560. {
  5561. struct pool *pool, *last_pool, *failover_pool = NULL;
  5562. int i, pool_no, next_pool;
  5563. if (selected)
  5564. enable_pool(selected);
  5565. cg_wlock(&control_lock);
  5566. last_pool = currentpool;
  5567. pool_no = currentpool->pool_no;
  5568. /* Switch selected to pool number 0 and move the rest down */
  5569. if (selected) {
  5570. if (selected->prio != 0) {
  5571. for (i = 0; i < total_pools; i++) {
  5572. pool = pools[i];
  5573. if (pool->prio < selected->prio)
  5574. pool->prio++;
  5575. }
  5576. selected->prio = 0;
  5577. }
  5578. }
  5579. switch (pool_strategy) {
  5580. /* All of these set to the master pool */
  5581. case POOL_BALANCE:
  5582. case POOL_FAILOVER:
  5583. case POOL_LOADBALANCE:
  5584. for (i = 0; i < total_pools; i++) {
  5585. pool = priority_pool(i);
  5586. if (pool_unusable(pool))
  5587. continue;
  5588. pool_no = pool->pool_no;
  5589. break;
  5590. }
  5591. break;
  5592. /* Both of these simply increment and cycle */
  5593. case POOL_ROUNDROBIN:
  5594. case POOL_ROTATE:
  5595. if (selected && !selected->idle) {
  5596. pool_no = selected->pool_no;
  5597. break;
  5598. }
  5599. next_pool = pool_no;
  5600. /* Select the next alive pool */
  5601. for (i = 1; i < total_pools; i++) {
  5602. next_pool++;
  5603. if (next_pool >= total_pools)
  5604. next_pool = 0;
  5605. pool = pools[next_pool];
  5606. if (pool_unusable(pool))
  5607. continue;
  5608. if (pool->failover_only)
  5609. {
  5610. BFGINIT(failover_pool, pool);
  5611. continue;
  5612. }
  5613. pool_no = next_pool;
  5614. break;
  5615. }
  5616. break;
  5617. default:
  5618. break;
  5619. }
  5620. pool = pools[pool_no];
  5621. if (pool_unusable(pool) && failover_pool)
  5622. pool = failover_pool;
  5623. currentpool = pool;
  5624. cg_wunlock(&control_lock);
  5625. mutex_lock(&lp_lock);
  5626. pthread_cond_broadcast(&lp_cond);
  5627. mutex_unlock(&lp_lock);
  5628. /* Set the lagging flag to avoid pool not providing work fast enough
  5629. * messages in failover only mode since we have to get all fresh work
  5630. * as in restart_threads */
  5631. if (opt_fail_only)
  5632. pool_tset(pool, &pool->lagging);
  5633. if (pool != last_pool)
  5634. {
  5635. pool->block_id = 0;
  5636. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5637. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5638. if (pool_localgen(pool) || opt_fail_only)
  5639. clear_pool_work(last_pool);
  5640. }
  5641. }
  5642. mutex_lock(&lp_lock);
  5643. pthread_cond_broadcast(&lp_cond);
  5644. mutex_unlock(&lp_lock);
  5645. }
  5646. static void discard_work(struct work *work)
  5647. {
  5648. if (!work->clone && !work->rolls && !work->mined) {
  5649. if (work->pool) {
  5650. work->pool->discarded_work++;
  5651. work->pool->quota_used--;
  5652. work->pool->works--;
  5653. }
  5654. total_discarded++;
  5655. applog(LOG_DEBUG, "Discarded work");
  5656. } else
  5657. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5658. free_work(work);
  5659. }
  5660. static void wake_gws(void)
  5661. {
  5662. mutex_lock(stgd_lock);
  5663. pthread_cond_signal(&gws_cond);
  5664. mutex_unlock(stgd_lock);
  5665. }
  5666. static void discard_stale(void)
  5667. {
  5668. struct work *work, *tmp;
  5669. int stale = 0;
  5670. mutex_lock(stgd_lock);
  5671. HASH_ITER(hh, staged_work, work, tmp) {
  5672. if (stale_work(work, false)) {
  5673. HASH_DEL(staged_work, work);
  5674. discard_work(work);
  5675. stale++;
  5676. staged_full = false;
  5677. }
  5678. }
  5679. pthread_cond_signal(&gws_cond);
  5680. mutex_unlock(stgd_lock);
  5681. if (stale)
  5682. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5683. }
  5684. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5685. {
  5686. bool rv;
  5687. struct timeval tv, orig;
  5688. ldiv_t d;
  5689. d = ldiv(ustime, 1000000);
  5690. tv = (struct timeval){
  5691. .tv_sec = d.quot,
  5692. .tv_usec = d.rem,
  5693. };
  5694. orig = work->tv_staged;
  5695. timersub(&orig, &tv, &work->tv_staged);
  5696. rv = stale_work(work, share);
  5697. work->tv_staged = orig;
  5698. return rv;
  5699. }
  5700. static
  5701. void pool_update_work_restart_time(struct pool * const pool)
  5702. {
  5703. pool->work_restart_time = time(NULL);
  5704. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5705. }
  5706. static void restart_threads(void)
  5707. {
  5708. struct pool *cp = current_pool();
  5709. int i;
  5710. struct thr_info *thr;
  5711. /* Artificially set the lagging flag to avoid pool not providing work
  5712. * fast enough messages after every long poll */
  5713. pool_tset(cp, &cp->lagging);
  5714. /* Discard staged work that is now stale */
  5715. discard_stale();
  5716. rd_lock(&mining_thr_lock);
  5717. for (i = 0; i < mining_threads; i++)
  5718. {
  5719. thr = mining_thr[i];
  5720. thr->work_restart = true;
  5721. }
  5722. for (i = 0; i < mining_threads; i++)
  5723. {
  5724. thr = mining_thr[i];
  5725. notifier_wake(thr->work_restart_notifier);
  5726. }
  5727. rd_unlock(&mining_thr_lock);
  5728. }
  5729. static
  5730. void blkhashstr(char *rv, const unsigned char *hash)
  5731. {
  5732. unsigned char hash_swap[32];
  5733. swap256(hash_swap, hash);
  5734. swap32tole(hash_swap, hash_swap, 32 / 4);
  5735. bin2hex(rv, hash_swap, 32);
  5736. }
  5737. static void set_curblock(char *hexstr, unsigned char *hash)
  5738. {
  5739. unsigned char hash_swap[32];
  5740. current_block_id = ((uint32_t*)hash)[0];
  5741. strcpy(current_block, hexstr);
  5742. swap256(hash_swap, hash);
  5743. swap32tole(hash_swap, hash_swap, 32 / 4);
  5744. cg_wlock(&ch_lock);
  5745. block_time = time(NULL);
  5746. __update_block_title(hash_swap);
  5747. free(current_fullhash);
  5748. current_fullhash = malloc(65);
  5749. bin2hex(current_fullhash, hash_swap, 32);
  5750. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5751. cg_wunlock(&ch_lock);
  5752. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5753. }
  5754. /* Search to see if this string is from a block that has been seen before */
  5755. static bool block_exists(char *hexstr)
  5756. {
  5757. struct block *s;
  5758. rd_lock(&blk_lock);
  5759. HASH_FIND_STR(blocks, hexstr, s);
  5760. rd_unlock(&blk_lock);
  5761. if (s)
  5762. return true;
  5763. return false;
  5764. }
  5765. #if 0
  5766. /* Tests if this work is from a block that has been seen before */
  5767. static inline bool from_existing_block(struct work *work)
  5768. {
  5769. char hexstr[37];
  5770. bool ret;
  5771. bin2hex(hexstr, work->data + 8, 18);
  5772. ret = block_exists(hexstr);
  5773. return ret;
  5774. }
  5775. #endif
  5776. static int block_sort(struct block *blocka, struct block *blockb)
  5777. {
  5778. return blocka->block_no - blockb->block_no;
  5779. }
  5780. static void set_blockdiff(const struct work *work)
  5781. {
  5782. unsigned char target[32];
  5783. double diff;
  5784. uint64_t diff64;
  5785. real_block_target(target, work->data);
  5786. diff = target_diff(target);
  5787. diff64 = diff;
  5788. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5789. format_unit2(net_hashrate, sizeof(net_hashrate),
  5790. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5791. if (unlikely(current_diff != diff))
  5792. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5793. current_diff = diff;
  5794. }
  5795. static bool test_work_current(struct work *work)
  5796. {
  5797. bool ret = true;
  5798. char hexstr[65];
  5799. if (work->mandatory)
  5800. return ret;
  5801. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5802. /* Hack to work around dud work sneaking into test */
  5803. bin2hex(hexstr, work->data + 8, 18);
  5804. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5805. goto out_free;
  5806. struct pool * const pool = work->pool;
  5807. /* Search to see if this block exists yet and if not, consider it a
  5808. * new block and set the current block details to this one */
  5809. if (!block_exists(hexstr))
  5810. {
  5811. struct block *s = calloc(sizeof(struct block), 1);
  5812. int deleted_block = 0;
  5813. ret = false;
  5814. if (unlikely(!s))
  5815. quit (1, "test_work_current OOM");
  5816. strcpy(s->hash, hexstr);
  5817. s->block_no = new_blocks++;
  5818. wr_lock(&blk_lock);
  5819. /* Only keep the last hour's worth of blocks in memory since
  5820. * work from blocks before this is virtually impossible and we
  5821. * want to prevent memory usage from continually rising */
  5822. if (HASH_COUNT(blocks) > 6)
  5823. {
  5824. struct block *oldblock;
  5825. HASH_SORT(blocks, block_sort);
  5826. oldblock = blocks;
  5827. deleted_block = oldblock->block_no;
  5828. HASH_DEL(blocks, oldblock);
  5829. free(oldblock);
  5830. }
  5831. HASH_ADD_STR(blocks, hash, s);
  5832. set_blockdiff(work);
  5833. wr_unlock(&blk_lock);
  5834. pool->block_id = block_id;
  5835. pool_update_work_restart_time(pool);
  5836. if (deleted_block)
  5837. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5838. #if BLKMAKER_VERSION > 1
  5839. template_nonce = 0;
  5840. #endif
  5841. set_curblock(hexstr, &work->data[4]);
  5842. if (unlikely(new_blocks == 1))
  5843. goto out_free;
  5844. if (!work->stratum)
  5845. {
  5846. if (work->longpoll)
  5847. {
  5848. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5849. pool->pool_no);
  5850. }
  5851. else
  5852. if (have_longpoll)
  5853. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5854. else
  5855. applog(LOG_NOTICE, "New block detected on network");
  5856. }
  5857. restart_threads();
  5858. }
  5859. else
  5860. {
  5861. bool restart = false;
  5862. if (unlikely(pool->block_id != block_id))
  5863. {
  5864. bool was_active = pool->block_id != 0;
  5865. pool->block_id = block_id;
  5866. pool_update_work_restart_time(pool);
  5867. if (!work->longpoll)
  5868. update_last_work(work);
  5869. if (was_active)
  5870. {
  5871. // Pool actively changed block
  5872. if (pool == current_pool())
  5873. restart = true;
  5874. if (block_id == current_block_id)
  5875. {
  5876. // Caught up, only announce if this pool is the one in use
  5877. if (restart)
  5878. applog(LOG_NOTICE, "%s %d caught up to new block",
  5879. work->longpoll ? "Longpoll from pool" : "Pool",
  5880. pool->pool_no);
  5881. }
  5882. else
  5883. {
  5884. // Switched to a block we know, but not the latest... why?
  5885. // This might detect pools trying to double-spend or 51%,
  5886. // but let's not make any accusations until it's had time
  5887. // in the real world.
  5888. blkhashstr(hexstr, &work->data[4]);
  5889. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5890. work->longpoll ? "Longpoll from pool" : "Pool",
  5891. pool->pool_no,
  5892. hexstr);
  5893. }
  5894. }
  5895. }
  5896. if (work->longpoll)
  5897. {
  5898. struct pool * const cp = current_pool();
  5899. ++pool->work_restart_id;
  5900. if (work->tr && work->tr == pool->swork.tr)
  5901. pool->swork.work_restart_id = pool->work_restart_id;
  5902. update_last_work(work);
  5903. pool_update_work_restart_time(pool);
  5904. applog(
  5905. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5906. "Longpoll from pool %d requested work update",
  5907. pool->pool_no);
  5908. if ((!restart) && pool == cp)
  5909. restart = true;
  5910. }
  5911. if (restart)
  5912. restart_threads();
  5913. }
  5914. work->longpoll = false;
  5915. out_free:
  5916. return ret;
  5917. }
  5918. static int tv_sort(struct work *worka, struct work *workb)
  5919. {
  5920. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5921. }
  5922. static bool work_rollable(struct work *work)
  5923. {
  5924. return (!work->clone && work->rolltime);
  5925. }
  5926. static bool hash_push(struct work *work)
  5927. {
  5928. bool rc = true;
  5929. mutex_lock(stgd_lock);
  5930. if (work_rollable(work))
  5931. staged_rollable++;
  5932. if (likely(!getq->frozen)) {
  5933. HASH_ADD_INT(staged_work, id, work);
  5934. HASH_SORT(staged_work, tv_sort);
  5935. } else
  5936. rc = false;
  5937. pthread_cond_broadcast(&getq->cond);
  5938. mutex_unlock(stgd_lock);
  5939. return rc;
  5940. }
  5941. static void stage_work(struct work *work)
  5942. {
  5943. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5944. work->id, work->pool->pool_no);
  5945. work->work_restart_id = work->pool->work_restart_id;
  5946. work->pool->last_work_time = time(NULL);
  5947. cgtime(&work->pool->tv_last_work_time);
  5948. test_work_current(work);
  5949. work->pool->works++;
  5950. hash_push(work);
  5951. }
  5952. #ifdef HAVE_CURSES
  5953. int curses_int(const char *query)
  5954. {
  5955. int ret;
  5956. char *cvar;
  5957. cvar = curses_input(query);
  5958. if (unlikely(!cvar))
  5959. return -1;
  5960. ret = atoi(cvar);
  5961. free(cvar);
  5962. return ret;
  5963. }
  5964. #endif
  5965. #ifdef HAVE_CURSES
  5966. static bool input_pool(bool live);
  5967. #endif
  5968. #ifdef HAVE_CURSES
  5969. static void display_pool_summary(struct pool *pool)
  5970. {
  5971. double efficiency = 0.0;
  5972. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5973. int pool_secs;
  5974. if (curses_active_locked()) {
  5975. wlog("Pool: %s\n", pool->rpc_url);
  5976. if (pool->solved)
  5977. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5978. if (!pool->has_stratum)
  5979. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5980. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5981. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5982. wlog(" Accepted shares: %d\n", pool->accepted);
  5983. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5984. pool->rejected, pool->stale_shares,
  5985. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5986. );
  5987. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5988. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5989. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5990. wlog(" Network transfer: %s (%s)\n",
  5991. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5992. (float)pool->cgminer_pool_stats.net_bytes_received,
  5993. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5994. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5995. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5996. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5997. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5998. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5999. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  6000. wlog(" Items worked on: %d\n", pool->works);
  6001. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  6002. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  6003. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  6004. unlock_curses();
  6005. }
  6006. }
  6007. #endif
  6008. /* We can't remove the memory used for this struct pool because there may
  6009. * still be work referencing it. We just remove it from the pools list */
  6010. void remove_pool(struct pool *pool)
  6011. {
  6012. int i, last_pool = total_pools - 1;
  6013. struct pool *other;
  6014. disable_pool(pool, POOL_DISABLED);
  6015. /* Boost priority of any lower prio than this one */
  6016. for (i = 0; i < total_pools; i++) {
  6017. other = pools[i];
  6018. if (other->prio > pool->prio)
  6019. other->prio--;
  6020. }
  6021. if (pool->pool_no < last_pool) {
  6022. /* Swap the last pool for this one */
  6023. (pools[last_pool])->pool_no = pool->pool_no;
  6024. pools[pool->pool_no] = pools[last_pool];
  6025. }
  6026. /* Give it an invalid number */
  6027. pool->pool_no = total_pools;
  6028. pool->removed = true;
  6029. pool->has_stratum = false;
  6030. total_pools--;
  6031. }
  6032. /* add a mutex if this needs to be thread safe in the future */
  6033. static struct JE {
  6034. char *buf;
  6035. struct JE *next;
  6036. } *jedata = NULL;
  6037. static void json_escape_free()
  6038. {
  6039. struct JE *jeptr = jedata;
  6040. struct JE *jenext;
  6041. jedata = NULL;
  6042. while (jeptr) {
  6043. jenext = jeptr->next;
  6044. free(jeptr->buf);
  6045. free(jeptr);
  6046. jeptr = jenext;
  6047. }
  6048. }
  6049. static
  6050. char *json_escape(const char *str)
  6051. {
  6052. struct JE *jeptr;
  6053. char *buf, *ptr;
  6054. /* 2x is the max, may as well just allocate that */
  6055. ptr = buf = malloc(strlen(str) * 2 + 1);
  6056. jeptr = malloc(sizeof(*jeptr));
  6057. jeptr->buf = buf;
  6058. jeptr->next = jedata;
  6059. jedata = jeptr;
  6060. while (*str) {
  6061. if (*str == '\\' || *str == '"')
  6062. *(ptr++) = '\\';
  6063. *(ptr++) = *(str++);
  6064. }
  6065. *ptr = '\0';
  6066. return buf;
  6067. }
  6068. static
  6069. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  6070. {
  6071. if (!elist)
  6072. return;
  6073. static struct string_elist *entry;
  6074. fprintf(fcfg, ",\n\"%s\" : [", configname);
  6075. bool first = true;
  6076. DL_FOREACH(elist, entry)
  6077. {
  6078. const char * const s = entry->string;
  6079. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  6080. first = false;
  6081. }
  6082. fprintf(fcfg, "\n]");
  6083. }
  6084. void write_config(FILE *fcfg)
  6085. {
  6086. int i;
  6087. /* Write pool values */
  6088. fputs("{\n\"pools\" : [", fcfg);
  6089. for(i = 0; i < total_pools; i++) {
  6090. struct pool *pool = pools[i];
  6091. if (pool->failover_only)
  6092. // Don't write failover-only (automatically added) pools to the config file for now
  6093. continue;
  6094. if (pool->quota != 1) {
  6095. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  6096. pool->quota,
  6097. json_escape(pool->rpc_url));
  6098. } else {
  6099. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  6100. json_escape(pool->rpc_url));
  6101. }
  6102. if (pool->rpc_proxy)
  6103. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  6104. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  6105. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  6106. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  6107. if (pool->force_rollntime)
  6108. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  6109. fprintf(fcfg, "\n\t}");
  6110. }
  6111. fputs("\n]\n", fcfg);
  6112. #ifdef HAVE_OPENCL
  6113. write_config_opencl(fcfg);
  6114. #endif
  6115. #ifdef WANT_CPUMINE
  6116. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  6117. #endif
  6118. /* Simple bool and int options */
  6119. struct opt_table *opt;
  6120. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  6121. char *p, *name = strdup(opt->names);
  6122. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  6123. if (p[1] != '-')
  6124. continue;
  6125. if (opt->type & OPT_NOARG &&
  6126. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  6127. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  6128. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  6129. if (opt->type & OPT_HASARG &&
  6130. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  6131. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  6132. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  6133. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  6134. opt->desc != opt_hidden &&
  6135. 0 <= *(int *)opt->u.arg)
  6136. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  6137. }
  6138. }
  6139. /* Special case options */
  6140. if (request_target_str)
  6141. {
  6142. if (request_pdiff == (long)request_pdiff)
  6143. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  6144. else
  6145. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  6146. }
  6147. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  6148. if (pool_strategy == POOL_BALANCE)
  6149. fputs(",\n\"balance\" : true", fcfg);
  6150. if (pool_strategy == POOL_LOADBALANCE)
  6151. fputs(",\n\"load-balance\" : true", fcfg);
  6152. if (pool_strategy == POOL_ROUNDROBIN)
  6153. fputs(",\n\"round-robin\" : true", fcfg);
  6154. if (pool_strategy == POOL_ROTATE)
  6155. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  6156. #if defined(unix) || defined(__APPLE__)
  6157. if (opt_stderr_cmd && *opt_stderr_cmd)
  6158. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  6159. #endif // defined(unix)
  6160. if (opt_kernel_path && *opt_kernel_path) {
  6161. char *kpath = strdup(opt_kernel_path);
  6162. if (kpath[strlen(kpath)-1] == '/')
  6163. kpath[strlen(kpath)-1] = 0;
  6164. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  6165. free(kpath);
  6166. }
  6167. if (schedstart.enable)
  6168. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  6169. if (schedstop.enable)
  6170. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  6171. if (opt_socks_proxy && *opt_socks_proxy)
  6172. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  6173. _write_config_string_elist(fcfg, "scan", scan_devices);
  6174. #ifdef USE_LIBMICROHTTPD
  6175. if (httpsrv_port != -1)
  6176. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  6177. #endif
  6178. #ifdef USE_LIBEVENT
  6179. if (stratumsrv_port != -1)
  6180. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  6181. #endif
  6182. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  6183. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  6184. if (opt_api_allow)
  6185. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  6186. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  6187. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  6188. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  6189. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  6190. if (*opt_api_mcast_des)
  6191. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  6192. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  6193. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  6194. if (opt_api_groups)
  6195. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  6196. fputs("\n}\n", fcfg);
  6197. json_escape_free();
  6198. }
  6199. void zero_bestshare(void)
  6200. {
  6201. int i;
  6202. best_diff = 0;
  6203. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  6204. for (i = 0; i < total_pools; i++) {
  6205. struct pool *pool = pools[i];
  6206. pool->best_diff = 0;
  6207. }
  6208. }
  6209. void zero_stats(void)
  6210. {
  6211. int i;
  6212. applog(LOG_DEBUG, "Zeroing stats");
  6213. cgtime(&total_tv_start);
  6214. miner_started = total_tv_start;
  6215. total_rolling = 0;
  6216. total_mhashes_done = 0;
  6217. total_getworks = 0;
  6218. total_accepted = 0;
  6219. total_rejected = 0;
  6220. hw_errors = 0;
  6221. total_stale = 0;
  6222. total_discarded = 0;
  6223. total_bytes_rcvd = total_bytes_sent = 0;
  6224. new_blocks = 0;
  6225. local_work = 0;
  6226. total_go = 0;
  6227. total_ro = 0;
  6228. total_secs = 1.0;
  6229. total_diff1 = 0;
  6230. total_bad_diff1 = 0;
  6231. found_blocks = 0;
  6232. total_diff_accepted = 0;
  6233. total_diff_rejected = 0;
  6234. total_diff_stale = 0;
  6235. #ifdef HAVE_CURSES
  6236. awidth = rwidth = swidth = hwwidth = 1;
  6237. #endif
  6238. for (i = 0; i < total_pools; i++) {
  6239. struct pool *pool = pools[i];
  6240. pool->getwork_requested = 0;
  6241. pool->accepted = 0;
  6242. pool->rejected = 0;
  6243. pool->solved = 0;
  6244. pool->getwork_requested = 0;
  6245. pool->stale_shares = 0;
  6246. pool->discarded_work = 0;
  6247. pool->getfail_occasions = 0;
  6248. pool->remotefail_occasions = 0;
  6249. pool->last_share_time = 0;
  6250. pool->works = 0;
  6251. pool->diff1 = 0;
  6252. pool->diff_accepted = 0;
  6253. pool->diff_rejected = 0;
  6254. pool->diff_stale = 0;
  6255. pool->last_share_diff = 0;
  6256. pool->cgminer_stats.start_tv = total_tv_start;
  6257. pool->cgminer_stats.getwork_calls = 0;
  6258. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6259. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6260. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6261. pool->cgminer_pool_stats.getwork_calls = 0;
  6262. pool->cgminer_pool_stats.getwork_attempts = 0;
  6263. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6264. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  6265. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  6266. pool->cgminer_pool_stats.min_diff = 0;
  6267. pool->cgminer_pool_stats.max_diff = 0;
  6268. pool->cgminer_pool_stats.min_diff_count = 0;
  6269. pool->cgminer_pool_stats.max_diff_count = 0;
  6270. pool->cgminer_pool_stats.times_sent = 0;
  6271. pool->cgminer_pool_stats.bytes_sent = 0;
  6272. pool->cgminer_pool_stats.net_bytes_sent = 0;
  6273. pool->cgminer_pool_stats.times_received = 0;
  6274. pool->cgminer_pool_stats.bytes_received = 0;
  6275. pool->cgminer_pool_stats.net_bytes_received = 0;
  6276. }
  6277. zero_bestshare();
  6278. for (i = 0; i < total_devices; ++i) {
  6279. struct cgpu_info *cgpu = get_devices(i);
  6280. mutex_lock(&hash_lock);
  6281. cgpu->total_mhashes = 0;
  6282. cgpu->accepted = 0;
  6283. cgpu->rejected = 0;
  6284. cgpu->stale = 0;
  6285. cgpu->hw_errors = 0;
  6286. cgpu->utility = 0.0;
  6287. cgpu->utility_diff1 = 0;
  6288. cgpu->last_share_pool_time = 0;
  6289. cgpu->bad_diff1 = 0;
  6290. cgpu->diff1 = 0;
  6291. cgpu->diff_accepted = 0;
  6292. cgpu->diff_rejected = 0;
  6293. cgpu->diff_stale = 0;
  6294. cgpu->last_share_diff = 0;
  6295. cgpu->thread_fail_init_count = 0;
  6296. cgpu->thread_zero_hash_count = 0;
  6297. cgpu->thread_fail_queue_count = 0;
  6298. cgpu->dev_sick_idle_60_count = 0;
  6299. cgpu->dev_dead_idle_600_count = 0;
  6300. cgpu->dev_nostart_count = 0;
  6301. cgpu->dev_over_heat_count = 0;
  6302. cgpu->dev_thermal_cutoff_count = 0;
  6303. cgpu->dev_comms_error_count = 0;
  6304. cgpu->dev_throttle_count = 0;
  6305. cgpu->cgminer_stats.start_tv = total_tv_start;
  6306. cgpu->cgminer_stats.getwork_calls = 0;
  6307. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6308. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6309. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6310. mutex_unlock(&hash_lock);
  6311. if (cgpu->drv->zero_stats)
  6312. cgpu->drv->zero_stats(cgpu);
  6313. }
  6314. }
  6315. #ifdef HAVE_CURSES
  6316. static
  6317. void loginput_mode(const int size)
  6318. {
  6319. clear_logwin();
  6320. loginput_size = size;
  6321. check_winsizes();
  6322. }
  6323. static void display_pools(void)
  6324. {
  6325. struct pool *pool;
  6326. int selected, i, j;
  6327. char input;
  6328. loginput_mode(7 + total_pools);
  6329. immedok(logwin, true);
  6330. updated:
  6331. for (j = 0; j < total_pools; j++) {
  6332. for (i = 0; i < total_pools; i++) {
  6333. pool = pools[i];
  6334. if (pool->prio != j)
  6335. continue;
  6336. if (pool == current_pool())
  6337. wattron(logwin, A_BOLD);
  6338. if (pool->enabled != POOL_ENABLED || pool->failover_only)
  6339. wattron(logwin, A_DIM);
  6340. wlogprint("%d: ", pool->prio);
  6341. switch (pool->enabled) {
  6342. case POOL_ENABLED:
  6343. if (pool->failover_only)
  6344. wlogprint("Failover ");
  6345. else
  6346. wlogprint("Enabled ");
  6347. break;
  6348. case POOL_DISABLED:
  6349. wlogprint("Disabled ");
  6350. break;
  6351. case POOL_REJECTING:
  6352. wlogprint("Rejectin ");
  6353. break;
  6354. }
  6355. _wlogprint(pool_proto_str(pool));
  6356. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6357. pool->quota,
  6358. pool->pool_no,
  6359. pool->rpc_url, pool->rpc_user);
  6360. wattroff(logwin, A_BOLD | A_DIM);
  6361. break; //for (i = 0; i < total_pools; i++)
  6362. }
  6363. }
  6364. retry:
  6365. wlogprint("\nCurrent pool management strategy: %s\n",
  6366. strategies[pool_strategy].s);
  6367. if (pool_strategy == POOL_ROTATE)
  6368. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6369. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6370. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6371. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6372. wlogprint("Or press any other key to continue\n");
  6373. logwin_update();
  6374. input = getch();
  6375. if (!strncasecmp(&input, "a", 1)) {
  6376. if (opt_benchmark)
  6377. {
  6378. wlogprint("Cannot add pools in benchmark mode");
  6379. goto retry;
  6380. }
  6381. input_pool(true);
  6382. goto updated;
  6383. } else if (!strncasecmp(&input, "r", 1)) {
  6384. if (total_pools <= 1) {
  6385. wlogprint("Cannot remove last pool");
  6386. goto retry;
  6387. }
  6388. selected = curses_int("Select pool number");
  6389. if (selected < 0 || selected >= total_pools) {
  6390. wlogprint("Invalid selection\n");
  6391. goto retry;
  6392. }
  6393. pool = pools[selected];
  6394. if (pool == current_pool())
  6395. switch_pools(NULL);
  6396. if (pool == current_pool()) {
  6397. wlogprint("Unable to remove pool due to activity\n");
  6398. goto retry;
  6399. }
  6400. remove_pool(pool);
  6401. goto updated;
  6402. } else if (!strncasecmp(&input, "s", 1)) {
  6403. selected = curses_int("Select pool number");
  6404. if (selected < 0 || selected >= total_pools) {
  6405. wlogprint("Invalid selection\n");
  6406. goto retry;
  6407. }
  6408. pool = pools[selected];
  6409. pool->failover_only = false;
  6410. switch_pools(pool);
  6411. goto updated;
  6412. } else if (!strncasecmp(&input, "d", 1)) {
  6413. if (enabled_pools <= 1) {
  6414. wlogprint("Cannot disable last pool");
  6415. goto retry;
  6416. }
  6417. selected = curses_int("Select pool number");
  6418. if (selected < 0 || selected >= total_pools) {
  6419. wlogprint("Invalid selection\n");
  6420. goto retry;
  6421. }
  6422. pool = pools[selected];
  6423. disable_pool(pool, POOL_DISABLED);
  6424. goto updated;
  6425. } else if (!strncasecmp(&input, "e", 1)) {
  6426. selected = curses_int("Select pool number");
  6427. if (selected < 0 || selected >= total_pools) {
  6428. wlogprint("Invalid selection\n");
  6429. goto retry;
  6430. }
  6431. pool = pools[selected];
  6432. pool->failover_only = false;
  6433. enable_pool(pool);
  6434. goto updated;
  6435. } else if (!strncasecmp(&input, "c", 1)) {
  6436. for (i = 0; i <= TOP_STRATEGY; i++)
  6437. wlogprint("%d: %s\n", i, strategies[i].s);
  6438. selected = curses_int("Select strategy number type");
  6439. if (selected < 0 || selected > TOP_STRATEGY) {
  6440. wlogprint("Invalid selection\n");
  6441. goto retry;
  6442. }
  6443. if (selected == POOL_ROTATE) {
  6444. opt_rotate_period = curses_int("Select interval in minutes");
  6445. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6446. opt_rotate_period = 0;
  6447. wlogprint("Invalid selection\n");
  6448. goto retry;
  6449. }
  6450. }
  6451. mutex_lock(&lp_lock);
  6452. pool_strategy = selected;
  6453. pthread_cond_broadcast(&lp_cond);
  6454. mutex_unlock(&lp_lock);
  6455. switch_pools(NULL);
  6456. goto updated;
  6457. } else if (!strncasecmp(&input, "i", 1)) {
  6458. selected = curses_int("Select pool number");
  6459. if (selected < 0 || selected >= total_pools) {
  6460. wlogprint("Invalid selection\n");
  6461. goto retry;
  6462. }
  6463. pool = pools[selected];
  6464. display_pool_summary(pool);
  6465. goto retry;
  6466. } else if (!strncasecmp(&input, "q", 1)) {
  6467. selected = curses_int("Select pool number");
  6468. if (selected < 0 || selected >= total_pools) {
  6469. wlogprint("Invalid selection\n");
  6470. goto retry;
  6471. }
  6472. pool = pools[selected];
  6473. selected = curses_int("Set quota");
  6474. if (selected < 0) {
  6475. wlogprint("Invalid negative quota\n");
  6476. goto retry;
  6477. }
  6478. pool->quota = selected;
  6479. adjust_quota_gcd();
  6480. goto updated;
  6481. } else if (!strncasecmp(&input, "f", 1)) {
  6482. opt_fail_only ^= true;
  6483. goto updated;
  6484. } else if (!strncasecmp(&input, "p", 1)) {
  6485. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6486. if (!prilist)
  6487. {
  6488. wlogprint("Not changing priorities\n");
  6489. goto retry;
  6490. }
  6491. int res = prioritize_pools(prilist, &i);
  6492. free(prilist);
  6493. switch (res) {
  6494. case MSG_NOPOOL:
  6495. wlogprint("No pools\n");
  6496. goto retry;
  6497. case MSG_MISPID:
  6498. wlogprint("Missing pool id parameter\n");
  6499. goto retry;
  6500. case MSG_INVPID:
  6501. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6502. goto retry;
  6503. case MSG_DUPPID:
  6504. wlogprint("Duplicate pool specified %d\n", i);
  6505. goto retry;
  6506. case MSG_POOLPRIO:
  6507. default:
  6508. goto updated;
  6509. }
  6510. }
  6511. immedok(logwin, false);
  6512. loginput_mode(0);
  6513. }
  6514. static const char *summary_detail_level_str(void)
  6515. {
  6516. if (opt_compact)
  6517. return "compact";
  6518. if (opt_show_procs)
  6519. return "processors";
  6520. return "devices";
  6521. }
  6522. static void display_options(void)
  6523. {
  6524. int selected;
  6525. char input;
  6526. immedok(logwin, true);
  6527. loginput_mode(12);
  6528. retry:
  6529. clear_logwin();
  6530. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6531. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6532. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6533. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6534. opt_debug_console ? "on" : "off",
  6535. want_per_device_stats? "on" : "off",
  6536. opt_quiet ? "on" : "off",
  6537. opt_log_output ? "on" : "off",
  6538. opt_protocol ? "on" : "off",
  6539. opt_worktime ? "on" : "off",
  6540. summary_detail_level_str(),
  6541. opt_log_interval,
  6542. opt_weighed_stats ? "weighed" : "absolute");
  6543. wlogprint("Select an option or any other key to return\n");
  6544. logwin_update();
  6545. input = getch();
  6546. if (!strncasecmp(&input, "q", 1)) {
  6547. opt_quiet ^= true;
  6548. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6549. goto retry;
  6550. } else if (!strncasecmp(&input, "v", 1)) {
  6551. opt_log_output ^= true;
  6552. if (opt_log_output)
  6553. opt_quiet = false;
  6554. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6555. goto retry;
  6556. } else if (!strncasecmp(&input, "n", 1)) {
  6557. opt_log_output = false;
  6558. opt_debug_console = false;
  6559. opt_quiet = false;
  6560. opt_protocol = false;
  6561. opt_compact = false;
  6562. opt_show_procs = false;
  6563. devsummaryYOffset = 0;
  6564. want_per_device_stats = false;
  6565. wlogprint("Output mode reset to normal\n");
  6566. switch_logsize();
  6567. goto retry;
  6568. } else if (!strncasecmp(&input, "d", 1)) {
  6569. opt_debug = true;
  6570. opt_debug_console ^= true;
  6571. opt_log_output = opt_debug_console;
  6572. if (opt_debug_console)
  6573. opt_quiet = false;
  6574. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6575. goto retry;
  6576. } else if (!strncasecmp(&input, "m", 1)) {
  6577. if (opt_compact)
  6578. opt_compact = false;
  6579. else
  6580. if (!opt_show_procs)
  6581. opt_show_procs = true;
  6582. else
  6583. {
  6584. opt_compact = true;
  6585. opt_show_procs = false;
  6586. devsummaryYOffset = 0;
  6587. }
  6588. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6589. switch_logsize();
  6590. goto retry;
  6591. } else if (!strncasecmp(&input, "p", 1)) {
  6592. want_per_device_stats ^= true;
  6593. opt_log_output = want_per_device_stats;
  6594. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6595. goto retry;
  6596. } else if (!strncasecmp(&input, "r", 1)) {
  6597. opt_protocol ^= true;
  6598. if (opt_protocol)
  6599. opt_quiet = false;
  6600. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6601. goto retry;
  6602. } else if (!strncasecmp(&input, "c", 1))
  6603. clear_logwin();
  6604. else if (!strncasecmp(&input, "l", 1)) {
  6605. selected = curses_int("Interval in seconds");
  6606. if (selected < 0 || selected > 9999) {
  6607. wlogprint("Invalid selection\n");
  6608. goto retry;
  6609. }
  6610. opt_log_interval = selected;
  6611. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6612. goto retry;
  6613. } else if (!strncasecmp(&input, "s", 1)) {
  6614. opt_realquiet = true;
  6615. } else if (!strncasecmp(&input, "w", 1)) {
  6616. opt_worktime ^= true;
  6617. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6618. goto retry;
  6619. } else if (!strncasecmp(&input, "t", 1)) {
  6620. opt_weighed_stats ^= true;
  6621. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6622. goto retry;
  6623. } else if (!strncasecmp(&input, "z", 1)) {
  6624. zero_stats();
  6625. goto retry;
  6626. }
  6627. immedok(logwin, false);
  6628. loginput_mode(0);
  6629. }
  6630. #endif
  6631. void default_save_file(char *filename)
  6632. {
  6633. #if defined(unix) || defined(__APPLE__)
  6634. if (getenv("HOME") && *getenv("HOME")) {
  6635. strcpy(filename, getenv("HOME"));
  6636. strcat(filename, "/");
  6637. }
  6638. else
  6639. strcpy(filename, "");
  6640. strcat(filename, ".bfgminer/");
  6641. mkdir(filename, 0777);
  6642. #else
  6643. strcpy(filename, "");
  6644. #endif
  6645. strcat(filename, def_conf);
  6646. }
  6647. #ifdef HAVE_CURSES
  6648. static void set_options(void)
  6649. {
  6650. int selected;
  6651. char input;
  6652. immedok(logwin, true);
  6653. loginput_mode(8);
  6654. retry:
  6655. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6656. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6657. "[W]rite config file\n[B]FGMiner restart\n",
  6658. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6659. wlogprint("Select an option or any other key to return\n");
  6660. logwin_update();
  6661. input = getch();
  6662. if (!strncasecmp(&input, "q", 1)) {
  6663. selected = curses_int("Extra work items to queue");
  6664. if (selected < 0 || selected > 9999) {
  6665. wlogprint("Invalid selection\n");
  6666. goto retry;
  6667. }
  6668. opt_queue = selected;
  6669. goto retry;
  6670. } else if (!strncasecmp(&input, "l", 1)) {
  6671. if (want_longpoll)
  6672. stop_longpoll();
  6673. else
  6674. start_longpoll();
  6675. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6676. goto retry;
  6677. } else if (!strncasecmp(&input, "s", 1)) {
  6678. selected = curses_int("Set scantime in seconds");
  6679. if (selected < 0 || selected > 9999) {
  6680. wlogprint("Invalid selection\n");
  6681. goto retry;
  6682. }
  6683. opt_scantime = selected;
  6684. goto retry;
  6685. } else if (!strncasecmp(&input, "e", 1)) {
  6686. selected = curses_int("Set expiry time in seconds");
  6687. if (selected < 0 || selected > 9999) {
  6688. wlogprint("Invalid selection\n");
  6689. goto retry;
  6690. }
  6691. opt_expiry = selected;
  6692. goto retry;
  6693. } else if (!strncasecmp(&input, "r", 1)) {
  6694. selected = curses_int("Retries before failing (-1 infinite)");
  6695. if (selected < -1 || selected > 9999) {
  6696. wlogprint("Invalid selection\n");
  6697. goto retry;
  6698. }
  6699. opt_retries = selected;
  6700. goto retry;
  6701. } else if (!strncasecmp(&input, "w", 1)) {
  6702. FILE *fcfg;
  6703. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6704. default_save_file(filename);
  6705. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6706. str = curses_input(prompt);
  6707. if (str) {
  6708. struct stat statbuf;
  6709. strcpy(filename, str);
  6710. free(str);
  6711. if (!stat(filename, &statbuf)) {
  6712. wlogprint("File exists, overwrite?\n");
  6713. input = getch();
  6714. if (strncasecmp(&input, "y", 1))
  6715. goto retry;
  6716. }
  6717. }
  6718. fcfg = fopen(filename, "w");
  6719. if (!fcfg) {
  6720. wlogprint("Cannot open or create file\n");
  6721. goto retry;
  6722. }
  6723. write_config(fcfg);
  6724. fclose(fcfg);
  6725. goto retry;
  6726. } else if (!strncasecmp(&input, "b", 1)) {
  6727. wlogprint("Are you sure?\n");
  6728. input = getch();
  6729. if (!strncasecmp(&input, "y", 1))
  6730. app_restart();
  6731. else
  6732. clear_logwin();
  6733. } else
  6734. clear_logwin();
  6735. loginput_mode(0);
  6736. immedok(logwin, false);
  6737. }
  6738. int scan_serial(const char *);
  6739. static
  6740. void _managetui_msg(const char *repr, const char **msg)
  6741. {
  6742. if (*msg)
  6743. {
  6744. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6745. wattron(logwin, A_BOLD);
  6746. wlogprint("%s", *msg);
  6747. wattroff(logwin, A_BOLD);
  6748. *msg = NULL;
  6749. }
  6750. logwin_update();
  6751. }
  6752. void manage_device(void)
  6753. {
  6754. char logline[256];
  6755. const char *msg = NULL;
  6756. struct cgpu_info *cgpu;
  6757. const struct device_drv *drv;
  6758. selecting_device = true;
  6759. immedok(logwin, true);
  6760. loginput_mode(12);
  6761. devchange:
  6762. if (unlikely(!total_devices))
  6763. {
  6764. clear_logwin();
  6765. wlogprint("(no devices)\n");
  6766. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6767. _managetui_msg("(none)", &msg);
  6768. int input = getch();
  6769. switch (input)
  6770. {
  6771. case '+': case '=': // add new device
  6772. goto addnew;
  6773. default:
  6774. goto out;
  6775. }
  6776. }
  6777. cgpu = devices[selected_device];
  6778. drv = cgpu->drv;
  6779. refresh_devstatus();
  6780. refresh:
  6781. clear_logwin();
  6782. wlogprint("Select processor to manage using up/down arrow keys\n");
  6783. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6784. wattron(logwin, A_BOLD);
  6785. wlogprint("%s", logline);
  6786. wattroff(logwin, A_BOLD);
  6787. wlogprint("\n");
  6788. if (cgpu->dev_manufacturer)
  6789. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6790. else
  6791. if (cgpu->dev_product)
  6792. wlogprint(" %s\n", cgpu->dev_product);
  6793. if (cgpu->dev_serial)
  6794. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6795. if (cgpu->kname)
  6796. wlogprint("Kernel: %s\n", cgpu->kname);
  6797. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6798. drv->proc_wlogprint_status(cgpu);
  6799. wlogprint("\n");
  6800. // TODO: Last share at TIMESTAMP on pool N
  6801. // TODO: Custom device info/commands
  6802. if (cgpu->deven != DEV_ENABLED)
  6803. wlogprint("[E]nable ");
  6804. if (cgpu->deven != DEV_DISABLED)
  6805. wlogprint("[D]isable ");
  6806. if (drv->identify_device)
  6807. wlogprint("[I]dentify ");
  6808. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6809. drv->proc_tui_wlogprint_choices(cgpu);
  6810. wlogprint("\n");
  6811. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6812. _managetui_msg(cgpu->proc_repr, &msg);
  6813. while (true)
  6814. {
  6815. int input = getch();
  6816. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6817. switch (input) {
  6818. case 'd': case 'D':
  6819. if (cgpu->deven == DEV_DISABLED)
  6820. msg = "Processor already disabled\n";
  6821. else
  6822. {
  6823. cgpu->deven = DEV_DISABLED;
  6824. msg = "Processor being disabled\n";
  6825. }
  6826. goto refresh;
  6827. case 'e': case 'E':
  6828. if (cgpu->deven == DEV_ENABLED)
  6829. msg = "Processor already enabled\n";
  6830. else
  6831. {
  6832. proc_enable(cgpu);
  6833. msg = "Processor being enabled\n";
  6834. }
  6835. goto refresh;
  6836. case 'i': case 'I':
  6837. if (drv->identify_device && drv->identify_device(cgpu))
  6838. msg = "Identify command sent\n";
  6839. else
  6840. goto key_default;
  6841. goto refresh;
  6842. case KEY_DOWN:
  6843. if (selected_device >= total_devices - 1)
  6844. break;
  6845. ++selected_device;
  6846. goto devchange;
  6847. case KEY_UP:
  6848. if (selected_device <= 0)
  6849. break;
  6850. --selected_device;
  6851. goto devchange;
  6852. case KEY_NPAGE:
  6853. {
  6854. if (selected_device >= total_devices - 1)
  6855. break;
  6856. struct cgpu_info *mdev = devices[selected_device]->device;
  6857. do {
  6858. ++selected_device;
  6859. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6860. goto devchange;
  6861. }
  6862. case KEY_PPAGE:
  6863. {
  6864. if (selected_device <= 0)
  6865. break;
  6866. struct cgpu_info *mdev = devices[selected_device]->device;
  6867. do {
  6868. --selected_device;
  6869. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6870. goto devchange;
  6871. }
  6872. case '/': case '?': // find device
  6873. {
  6874. static char *pattern = NULL;
  6875. char *newpattern = curses_input("Enter pattern");
  6876. if (newpattern)
  6877. {
  6878. free(pattern);
  6879. pattern = newpattern;
  6880. }
  6881. else
  6882. if (!pattern)
  6883. pattern = calloc(1, 1);
  6884. int match = cgpu_search(pattern, selected_device + 1);
  6885. if (match == -1)
  6886. {
  6887. msg = "Couldn't find device\n";
  6888. goto refresh;
  6889. }
  6890. selected_device = match;
  6891. goto devchange;
  6892. }
  6893. case '+': case '=': // add new device
  6894. {
  6895. addnew:
  6896. clear_logwin();
  6897. _wlogprint(
  6898. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6899. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6900. "For example: erupter:"
  6901. #ifdef WIN32
  6902. "\\\\.\\COM40"
  6903. #elif defined(__APPLE__)
  6904. "/dev/cu.SLAB_USBtoUART"
  6905. #else
  6906. "/dev/ttyUSB39"
  6907. #endif
  6908. "\n"
  6909. );
  6910. char *scanser = curses_input("Enter target");
  6911. if (scan_serial(scanser))
  6912. {
  6913. selected_device = total_devices - 1;
  6914. msg = "Device scan succeeded\n";
  6915. }
  6916. else
  6917. msg = "No new devices found\n";
  6918. goto devchange;
  6919. }
  6920. case 'Q': case 'q':
  6921. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6922. case '\x1b': // ESC
  6923. case KEY_ENTER:
  6924. case '\r': // Ctrl-M on Windows, with nonl
  6925. #ifdef PADENTER
  6926. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6927. #endif
  6928. case '\n':
  6929. goto out;
  6930. default:
  6931. ;
  6932. key_default:
  6933. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6934. {
  6935. msg = drv->proc_tui_handle_choice(cgpu, input);
  6936. if (msg)
  6937. goto refresh;
  6938. }
  6939. }
  6940. }
  6941. out:
  6942. selecting_device = false;
  6943. loginput_mode(0);
  6944. immedok(logwin, false);
  6945. }
  6946. void show_help(void)
  6947. {
  6948. loginput_mode(11);
  6949. // NOTE: wlogprint is a macro with a buffer limit
  6950. _wlogprint(
  6951. "LU: oldest explicit work update currently being used for new work\n"
  6952. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6953. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6954. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6955. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6956. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6957. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6958. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6959. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6960. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6961. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6962. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6963. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6964. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6965. "\n"
  6966. "devices/processors hashing (only for totals line), hottest temperature\n"
  6967. );
  6968. wlogprint(
  6969. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6970. , opt_log_interval);
  6971. _wlogprint(
  6972. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6973. "HW: hardware errors / % nonces invalid\n"
  6974. "\n"
  6975. "Press any key to clear"
  6976. );
  6977. logwin_update();
  6978. getch();
  6979. loginput_mode(0);
  6980. }
  6981. static void *input_thread(void __maybe_unused *userdata)
  6982. {
  6983. RenameThread("input");
  6984. if (!curses_active)
  6985. return NULL;
  6986. while (1) {
  6987. int input;
  6988. input = getch();
  6989. switch (input) {
  6990. case 'h': case 'H': case '?':
  6991. case KEY_F(1):
  6992. show_help();
  6993. break;
  6994. case 'q': case 'Q':
  6995. kill_work();
  6996. return NULL;
  6997. case 'd': case 'D':
  6998. display_options();
  6999. break;
  7000. case 'm': case 'M':
  7001. manage_device();
  7002. break;
  7003. case 'p': case 'P':
  7004. display_pools();
  7005. break;
  7006. case 's': case 'S':
  7007. set_options();
  7008. break;
  7009. #ifdef HAVE_CURSES
  7010. case KEY_DOWN:
  7011. {
  7012. const int visible_lines = logcursor - devcursor;
  7013. const int invisible_lines = total_lines - visible_lines;
  7014. if (devsummaryYOffset <= -invisible_lines)
  7015. break;
  7016. devsummaryYOffset -= 2;
  7017. }
  7018. case KEY_UP:
  7019. if (devsummaryYOffset == 0)
  7020. break;
  7021. ++devsummaryYOffset;
  7022. refresh_devstatus();
  7023. break;
  7024. case KEY_NPAGE:
  7025. {
  7026. const int visible_lines = logcursor - devcursor;
  7027. const int invisible_lines = total_lines - visible_lines;
  7028. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  7029. devsummaryYOffset = -invisible_lines;
  7030. else
  7031. devsummaryYOffset -= visible_lines;
  7032. refresh_devstatus();
  7033. break;
  7034. }
  7035. case KEY_PPAGE:
  7036. {
  7037. const int visible_lines = logcursor - devcursor;
  7038. if (devsummaryYOffset + visible_lines >= 0)
  7039. devsummaryYOffset = 0;
  7040. else
  7041. devsummaryYOffset += visible_lines;
  7042. refresh_devstatus();
  7043. break;
  7044. }
  7045. #endif
  7046. }
  7047. if (opt_realquiet) {
  7048. disable_curses();
  7049. break;
  7050. }
  7051. }
  7052. return NULL;
  7053. }
  7054. #endif
  7055. static void *api_thread(void *userdata)
  7056. {
  7057. struct thr_info *mythr = userdata;
  7058. pthread_detach(pthread_self());
  7059. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  7060. RenameThread("rpc");
  7061. api(api_thr_id);
  7062. mythr->has_pth = false;
  7063. return NULL;
  7064. }
  7065. void thread_reportin(struct thr_info *thr)
  7066. {
  7067. cgtime(&thr->last);
  7068. thr->cgpu->status = LIFE_WELL;
  7069. thr->getwork = 0;
  7070. thr->cgpu->device_last_well = time(NULL);
  7071. }
  7072. void thread_reportout(struct thr_info *thr)
  7073. {
  7074. thr->getwork = time(NULL);
  7075. }
  7076. static void hashmeter(int thr_id, struct timeval *diff,
  7077. uint64_t hashes_done)
  7078. {
  7079. char logstatusline[256];
  7080. struct timeval temp_tv_end, total_diff;
  7081. double secs;
  7082. double local_secs;
  7083. static double local_mhashes_done = 0;
  7084. double local_mhashes = (double)hashes_done / 1000000.0;
  7085. bool showlog = false;
  7086. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  7087. char rejpcbuf[6];
  7088. char bnbuf[6];
  7089. struct thr_info *thr;
  7090. /* Update the last time this thread reported in */
  7091. if (thr_id >= 0) {
  7092. thr = get_thread(thr_id);
  7093. cgtime(&(thr->last));
  7094. thr->cgpu->device_last_well = time(NULL);
  7095. }
  7096. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  7097. /* So we can call hashmeter from a non worker thread */
  7098. if (thr_id >= 0) {
  7099. struct cgpu_info *cgpu = thr->cgpu;
  7100. int threadobj = cgpu->threads ?: 1;
  7101. double thread_rolling = 0.0;
  7102. int i;
  7103. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  7104. thr_id, hashes_done, hashes_done / 1000 / secs);
  7105. /* Rolling average for each thread and each device */
  7106. decay_time(&thr->rolling, local_mhashes / secs, secs);
  7107. for (i = 0; i < threadobj; i++)
  7108. thread_rolling += cgpu->thr[i]->rolling;
  7109. mutex_lock(&hash_lock);
  7110. decay_time(&cgpu->rolling, thread_rolling, secs);
  7111. cgpu->total_mhashes += local_mhashes;
  7112. mutex_unlock(&hash_lock);
  7113. // If needed, output detailed, per-device stats
  7114. if (want_per_device_stats) {
  7115. struct timeval now;
  7116. struct timeval elapsed;
  7117. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  7118. cgtime(&now);
  7119. timersub(&now, last_msg_tv, &elapsed);
  7120. if (opt_log_interval <= elapsed.tv_sec) {
  7121. struct cgpu_info *cgpu = thr->cgpu;
  7122. char logline[255];
  7123. *last_msg_tv = now;
  7124. get_statline(logline, sizeof(logline), cgpu);
  7125. if (!curses_active) {
  7126. printf("\n%s\r", logline);
  7127. fflush(stdout);
  7128. } else
  7129. applog(LOG_INFO, "%s", logline);
  7130. }
  7131. }
  7132. }
  7133. /* Totals are updated by all threads so can race without locking */
  7134. mutex_lock(&hash_lock);
  7135. cgtime(&temp_tv_end);
  7136. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  7137. total_mhashes_done += local_mhashes;
  7138. local_mhashes_done += local_mhashes;
  7139. /* Only update with opt_log_interval */
  7140. if (total_diff.tv_sec < opt_log_interval)
  7141. goto out_unlock;
  7142. showlog = true;
  7143. cgtime(&total_tv_end);
  7144. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  7145. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  7146. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  7147. timersub(&total_tv_end, &total_tv_start, &total_diff);
  7148. total_secs = (double)total_diff.tv_sec +
  7149. ((double)total_diff.tv_usec / 1000000.0);
  7150. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  7151. multi_format_unit_array2(
  7152. ((char*[]){cHr, aHr, uHr}),
  7153. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  7154. true, "h/s", H2B_SHORT,
  7155. 3,
  7156. 1e6*total_rolling,
  7157. 1e6*total_mhashes_done / total_secs,
  7158. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  7159. int ui_accepted, ui_rejected, ui_stale;
  7160. if (opt_weighed_stats)
  7161. {
  7162. ui_accepted = total_diff_accepted;
  7163. ui_rejected = total_diff_rejected;
  7164. ui_stale = total_diff_stale;
  7165. }
  7166. else
  7167. {
  7168. ui_accepted = total_accepted;
  7169. ui_rejected = total_rejected;
  7170. ui_stale = total_stale;
  7171. }
  7172. #ifdef HAVE_CURSES
  7173. if (curses_active_locked()) {
  7174. float temp = 0;
  7175. struct cgpu_info *proc, *last_working_dev = NULL;
  7176. int i, working_devs = 0, working_procs = 0;
  7177. int divx;
  7178. bool bad = false;
  7179. // Find the highest temperature of all processors
  7180. for (i = 0; i < total_devices; ++i)
  7181. {
  7182. proc = get_devices(i);
  7183. if (proc->temp > temp)
  7184. temp = proc->temp;
  7185. if (unlikely(proc->deven == DEV_DISABLED))
  7186. ; // Just need to block it off from both conditions
  7187. else
  7188. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  7189. {
  7190. if (proc->rolling > .1)
  7191. {
  7192. ++working_procs;
  7193. if (proc->device != last_working_dev)
  7194. {
  7195. ++working_devs;
  7196. last_working_dev = proc->device;
  7197. }
  7198. }
  7199. }
  7200. else
  7201. bad = true;
  7202. }
  7203. if (working_devs == working_procs)
  7204. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  7205. else
  7206. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  7207. divx = 7;
  7208. if (opt_show_procs && !opt_compact)
  7209. ++divx;
  7210. if (bad)
  7211. {
  7212. divx += sizeof(U8_BAD_START)-1;
  7213. strcpy(&statusline[divx], U8_BAD_END);
  7214. divx += sizeof(U8_BAD_END)-1;
  7215. }
  7216. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  7217. format_statline(statusline, sizeof(statusline),
  7218. cHr, aHr,
  7219. uHr,
  7220. ui_accepted,
  7221. ui_rejected,
  7222. ui_stale,
  7223. total_diff_rejected + total_diff_stale, total_diff_accepted,
  7224. hw_errors,
  7225. total_bad_diff1, total_bad_diff1 + total_diff1);
  7226. unlock_curses();
  7227. }
  7228. #endif
  7229. // Add a space
  7230. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  7231. uHr[5] = ' ';
  7232. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  7233. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  7234. snprintf(logstatusline, sizeof(logstatusline),
  7235. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  7236. want_per_device_stats ? "ALL " : "",
  7237. opt_log_interval,
  7238. cHr, aHr,
  7239. uHr,
  7240. ui_accepted,
  7241. ui_rejected,
  7242. ui_stale,
  7243. rejpcbuf,
  7244. hw_errors,
  7245. bnbuf
  7246. );
  7247. local_mhashes_done = 0;
  7248. out_unlock:
  7249. mutex_unlock(&hash_lock);
  7250. if (showlog) {
  7251. if (!curses_active) {
  7252. if (want_per_device_stats)
  7253. printf("\n%s\r", logstatusline);
  7254. else
  7255. {
  7256. const int logstatusline_len = strlen(logstatusline);
  7257. int padding;
  7258. if (last_logstatusline_len > logstatusline_len)
  7259. padding = (last_logstatusline_len - logstatusline_len);
  7260. else
  7261. {
  7262. padding = 0;
  7263. if (last_logstatusline_len == -1)
  7264. puts("");
  7265. }
  7266. printf("%s%*s\r", logstatusline, padding, "");
  7267. last_logstatusline_len = logstatusline_len;
  7268. }
  7269. fflush(stdout);
  7270. } else
  7271. applog(LOG_INFO, "%s", logstatusline);
  7272. }
  7273. }
  7274. void hashmeter2(struct thr_info *thr)
  7275. {
  7276. struct timeval tv_now, tv_elapsed;
  7277. timerclear(&thr->tv_hashes_done);
  7278. cgtime(&tv_now);
  7279. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  7280. /* Update the hashmeter at most 5 times per second */
  7281. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  7282. tv_elapsed.tv_sec >= opt_log_interval) {
  7283. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  7284. thr->hashes_done = 0;
  7285. thr->tv_lastupdate = tv_now;
  7286. }
  7287. }
  7288. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  7289. struct stratum_share *sshare)
  7290. {
  7291. struct work *work = sshare->work;
  7292. share_result(val, res_val, err_val, work, false, "");
  7293. }
  7294. /* Parses stratum json responses and tries to find the id that the request
  7295. * matched to and treat it accordingly. */
  7296. bool parse_stratum_response(struct pool *pool, char *s)
  7297. {
  7298. json_t *val = NULL, *err_val, *res_val, *id_val;
  7299. struct stratum_share *sshare;
  7300. json_error_t err;
  7301. bool ret = false;
  7302. int id;
  7303. val = JSON_LOADS(s, &err);
  7304. if (!val) {
  7305. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7306. goto out;
  7307. }
  7308. res_val = json_object_get(val, "result");
  7309. err_val = json_object_get(val, "error");
  7310. id_val = json_object_get(val, "id");
  7311. if (json_is_null(id_val) || !id_val) {
  7312. char *ss;
  7313. if (err_val)
  7314. ss = json_dumps(err_val, JSON_INDENT(3));
  7315. else
  7316. ss = strdup("(unknown reason)");
  7317. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7318. free(ss);
  7319. goto out;
  7320. }
  7321. if (!json_is_integer(id_val)) {
  7322. if (json_is_string(id_val)
  7323. && !strncmp(json_string_value(id_val), "txlist", 6))
  7324. {
  7325. const bool is_array = json_is_array(res_val);
  7326. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7327. is_array ? "transaction list" : "no-transaction-list response",
  7328. pool->pool_no, &json_string_value(id_val)[6]);
  7329. if (!is_array)
  7330. {
  7331. // No need to wait for a timeout
  7332. timer_unset(&pool->swork.tv_transparency);
  7333. pool_set_opaque(pool, true);
  7334. goto fishy;
  7335. }
  7336. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7337. // We only care about a transaction list for the current job id
  7338. goto fishy;
  7339. // Check that the transactions actually hash to the merkle links
  7340. {
  7341. unsigned maxtx = 1 << pool->swork.merkles;
  7342. unsigned mintx = maxtx >> 1;
  7343. --maxtx;
  7344. unsigned acttx = (unsigned)json_array_size(res_val);
  7345. if (acttx < mintx || acttx > maxtx) {
  7346. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7347. pool->pool_no, acttx, mintx, maxtx);
  7348. goto fishy;
  7349. }
  7350. // TODO: Check hashes match actual merkle links
  7351. }
  7352. pool_set_opaque(pool, false);
  7353. timer_unset(&pool->swork.tv_transparency);
  7354. fishy:
  7355. ret = true;
  7356. }
  7357. goto out;
  7358. }
  7359. id = json_integer_value(id_val);
  7360. mutex_lock(&sshare_lock);
  7361. HASH_FIND_INT(stratum_shares, &id, sshare);
  7362. if (sshare)
  7363. HASH_DEL(stratum_shares, sshare);
  7364. mutex_unlock(&sshare_lock);
  7365. if (!sshare) {
  7366. double pool_diff;
  7367. /* Since the share is untracked, we can only guess at what the
  7368. * work difficulty is based on the current pool diff. */
  7369. cg_rlock(&pool->data_lock);
  7370. pool_diff = target_diff(pool->swork.target);
  7371. cg_runlock(&pool->data_lock);
  7372. if (json_is_true(res_val)) {
  7373. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7374. /* We don't know what device this came from so we can't
  7375. * attribute the work to the relevant cgpu */
  7376. mutex_lock(&stats_lock);
  7377. total_accepted++;
  7378. pool->accepted++;
  7379. total_diff_accepted += pool_diff;
  7380. pool->diff_accepted += pool_diff;
  7381. mutex_unlock(&stats_lock);
  7382. } else {
  7383. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7384. mutex_lock(&stats_lock);
  7385. total_rejected++;
  7386. pool->rejected++;
  7387. total_diff_rejected += pool_diff;
  7388. pool->diff_rejected += pool_diff;
  7389. mutex_unlock(&stats_lock);
  7390. }
  7391. goto out;
  7392. }
  7393. else {
  7394. mutex_lock(&submitting_lock);
  7395. --total_submitting;
  7396. mutex_unlock(&submitting_lock);
  7397. }
  7398. stratum_share_result(val, res_val, err_val, sshare);
  7399. free_work(sshare->work);
  7400. free(sshare);
  7401. ret = true;
  7402. out:
  7403. if (val)
  7404. json_decref(val);
  7405. return ret;
  7406. }
  7407. static void shutdown_stratum(struct pool *pool)
  7408. {
  7409. // Shut down Stratum as if we never had it
  7410. pool->stratum_active = false;
  7411. pool->stratum_init = false;
  7412. pool->has_stratum = false;
  7413. shutdown(pool->sock, SHUT_RDWR);
  7414. free(pool->stratum_url);
  7415. if (pool->sockaddr_url == pool->stratum_url)
  7416. pool->sockaddr_url = NULL;
  7417. pool->stratum_url = NULL;
  7418. }
  7419. void clear_stratum_shares(struct pool *pool)
  7420. {
  7421. int my_mining_threads = mining_threads; // Cached outside of locking
  7422. struct stratum_share *sshare, *tmpshare;
  7423. struct work *work;
  7424. struct cgpu_info *cgpu;
  7425. double diff_cleared = 0;
  7426. double thr_diff_cleared[my_mining_threads];
  7427. int cleared = 0;
  7428. int thr_cleared[my_mining_threads];
  7429. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7430. for (int i = 0; i < my_mining_threads; ++i)
  7431. {
  7432. thr_diff_cleared[i] = 0;
  7433. thr_cleared[i] = 0;
  7434. }
  7435. mutex_lock(&sshare_lock);
  7436. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7437. work = sshare->work;
  7438. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7439. HASH_DEL(stratum_shares, sshare);
  7440. sharelog("disconnect", work);
  7441. diff_cleared += sshare->work->work_difficulty;
  7442. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7443. ++thr_cleared[work->thr_id];
  7444. free_work(sshare->work);
  7445. free(sshare);
  7446. cleared++;
  7447. }
  7448. }
  7449. mutex_unlock(&sshare_lock);
  7450. if (cleared) {
  7451. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7452. mutex_lock(&stats_lock);
  7453. pool->stale_shares += cleared;
  7454. total_stale += cleared;
  7455. pool->diff_stale += diff_cleared;
  7456. total_diff_stale += diff_cleared;
  7457. for (int i = 0; i < my_mining_threads; ++i)
  7458. if (thr_cleared[i])
  7459. {
  7460. cgpu = get_thr_cgpu(i);
  7461. cgpu->diff_stale += thr_diff_cleared[i];
  7462. cgpu->stale += thr_cleared[i];
  7463. }
  7464. mutex_unlock(&stats_lock);
  7465. mutex_lock(&submitting_lock);
  7466. total_submitting -= cleared;
  7467. mutex_unlock(&submitting_lock);
  7468. }
  7469. }
  7470. static void resubmit_stratum_shares(struct pool *pool)
  7471. {
  7472. struct stratum_share *sshare, *tmpshare;
  7473. struct work *work;
  7474. unsigned resubmitted = 0;
  7475. mutex_lock(&sshare_lock);
  7476. mutex_lock(&submitting_lock);
  7477. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7478. if (sshare->work->pool != pool)
  7479. continue;
  7480. HASH_DEL(stratum_shares, sshare);
  7481. work = sshare->work;
  7482. DL_APPEND(submit_waiting, work);
  7483. free(sshare);
  7484. ++resubmitted;
  7485. }
  7486. mutex_unlock(&submitting_lock);
  7487. mutex_unlock(&sshare_lock);
  7488. if (resubmitted) {
  7489. notifier_wake(submit_waiting_notifier);
  7490. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7491. }
  7492. }
  7493. static void clear_pool_work(struct pool *pool)
  7494. {
  7495. struct work *work, *tmp;
  7496. int cleared = 0;
  7497. mutex_lock(stgd_lock);
  7498. HASH_ITER(hh, staged_work, work, tmp) {
  7499. if (work->pool == pool) {
  7500. HASH_DEL(staged_work, work);
  7501. free_work(work);
  7502. cleared++;
  7503. staged_full = false;
  7504. }
  7505. }
  7506. mutex_unlock(stgd_lock);
  7507. }
  7508. static int cp_prio(void)
  7509. {
  7510. int prio;
  7511. cg_rlock(&control_lock);
  7512. prio = currentpool->prio;
  7513. cg_runlock(&control_lock);
  7514. return prio;
  7515. }
  7516. /* We only need to maintain a secondary pool connection when we need the
  7517. * capacity to get work from the backup pools while still on the primary */
  7518. static bool cnx_needed(struct pool *pool)
  7519. {
  7520. struct pool *cp;
  7521. if (pool->enabled != POOL_ENABLED)
  7522. return false;
  7523. /* Idle stratum pool needs something to kick it alive again */
  7524. if (pool->has_stratum && pool->idle)
  7525. return true;
  7526. /* Getwork pools without opt_fail_only need backup pools up to be able
  7527. * to leak shares */
  7528. cp = current_pool();
  7529. if (pool_actively_desired(pool, cp))
  7530. return true;
  7531. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7532. return true;
  7533. /* Keep the connection open to allow any stray shares to be submitted
  7534. * on switching pools for 2 minutes. */
  7535. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7536. return true;
  7537. /* If the pool has only just come to life and is higher priority than
  7538. * the current pool keep the connection open so we can fail back to
  7539. * it. */
  7540. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7541. return true;
  7542. if (pool_unworkable(cp))
  7543. return true;
  7544. /* We've run out of work, bring anything back to life. */
  7545. if (no_work)
  7546. return true;
  7547. // If the current pool lacks its own block change detection, see if we are needed for that
  7548. if (pool_active_lp_pool(cp) == pool)
  7549. return true;
  7550. return false;
  7551. }
  7552. static void wait_lpcurrent(struct pool *pool);
  7553. static void pool_resus(struct pool *pool);
  7554. static void gen_stratum_work(struct pool *pool, struct work *work);
  7555. static void stratum_resumed(struct pool *pool)
  7556. {
  7557. if (!pool->stratum_notify)
  7558. return;
  7559. if (pool_tclear(pool, &pool->idle)) {
  7560. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7561. pool_resus(pool);
  7562. }
  7563. }
  7564. static bool supports_resume(struct pool *pool)
  7565. {
  7566. bool ret;
  7567. cg_rlock(&pool->data_lock);
  7568. ret = (pool->sessionid != NULL);
  7569. cg_runlock(&pool->data_lock);
  7570. return ret;
  7571. }
  7572. static bool pools_active;
  7573. /* One stratum thread per pool that has stratum waits on the socket checking
  7574. * for new messages and for the integrity of the socket connection. We reset
  7575. * the connection based on the integrity of the receive side only as the send
  7576. * side will eventually expire data it fails to send. */
  7577. static void *stratum_thread(void *userdata)
  7578. {
  7579. struct pool *pool = (struct pool *)userdata;
  7580. pthread_detach(pthread_self());
  7581. char threadname[20];
  7582. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7583. RenameThread(threadname);
  7584. srand(time(NULL) + (intptr_t)userdata);
  7585. while (42) {
  7586. struct timeval timeout;
  7587. int sel_ret;
  7588. fd_set rd;
  7589. char *s;
  7590. int sock;
  7591. if (unlikely(!pool->has_stratum))
  7592. break;
  7593. /* Check to see whether we need to maintain this connection
  7594. * indefinitely or just bring it up when we switch to this
  7595. * pool */
  7596. while (true)
  7597. {
  7598. sock = pool->sock;
  7599. if (sock == INVSOCK)
  7600. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7601. pool->pool_no);
  7602. else
  7603. if (!sock_full(pool) && !cnx_needed(pool) && pools_active)
  7604. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7605. pool->pool_no);
  7606. else
  7607. break;
  7608. suspend_stratum(pool);
  7609. clear_stratum_shares(pool);
  7610. clear_pool_work(pool);
  7611. wait_lpcurrent(pool);
  7612. if (!restart_stratum(pool)) {
  7613. pool_died(pool);
  7614. while (!restart_stratum(pool)) {
  7615. if (pool->removed)
  7616. goto out;
  7617. cgsleep_ms(30000);
  7618. }
  7619. }
  7620. }
  7621. FD_ZERO(&rd);
  7622. FD_SET(sock, &rd);
  7623. timeout.tv_sec = 120;
  7624. timeout.tv_usec = 0;
  7625. /* If we fail to receive any notify messages for 2 minutes we
  7626. * assume the connection has been dropped and treat this pool
  7627. * as dead */
  7628. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7629. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7630. s = NULL;
  7631. } else
  7632. s = recv_line(pool);
  7633. if (!s) {
  7634. if (!pool->has_stratum)
  7635. break;
  7636. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7637. pool->getfail_occasions++;
  7638. total_go++;
  7639. mutex_lock(&pool->stratum_lock);
  7640. pool->stratum_active = pool->stratum_notify = false;
  7641. pool->sock = INVSOCK;
  7642. mutex_unlock(&pool->stratum_lock);
  7643. /* If the socket to our stratum pool disconnects, all
  7644. * submissions need to be discarded or resent. */
  7645. if (!supports_resume(pool))
  7646. clear_stratum_shares(pool);
  7647. else
  7648. resubmit_stratum_shares(pool);
  7649. clear_pool_work(pool);
  7650. if (pool == current_pool())
  7651. restart_threads();
  7652. if (restart_stratum(pool))
  7653. continue;
  7654. shutdown_stratum(pool);
  7655. pool_died(pool);
  7656. break;
  7657. }
  7658. /* Check this pool hasn't died while being a backup pool and
  7659. * has not had its idle flag cleared */
  7660. stratum_resumed(pool);
  7661. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7662. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7663. free(s);
  7664. if (pool->swork.clean) {
  7665. struct work *work = make_work();
  7666. /* Generate a single work item to update the current
  7667. * block database */
  7668. pool->swork.clean = false;
  7669. gen_stratum_work(pool, work);
  7670. /* Try to extract block height from coinbase scriptSig */
  7671. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7672. unsigned char cb_height_sz;
  7673. cb_height_sz = bin_height[-1];
  7674. if (cb_height_sz == 3) {
  7675. // FIXME: The block number will overflow this by AD 2173
  7676. uint32_t block_id = ((uint32_t*)work->data)[1];
  7677. uint32_t height = 0;
  7678. memcpy(&height, bin_height, 3);
  7679. height = le32toh(height);
  7680. have_block_height(block_id, height);
  7681. }
  7682. pool->swork.work_restart_id =
  7683. ++pool->work_restart_id;
  7684. pool_update_work_restart_time(pool);
  7685. if (test_work_current(work)) {
  7686. /* Only accept a work update if this stratum
  7687. * connection is from the current pool */
  7688. struct pool * const cp = current_pool();
  7689. if (pool == cp)
  7690. restart_threads();
  7691. applog(
  7692. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7693. "Stratum from pool %d requested work update", pool->pool_no);
  7694. } else
  7695. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7696. free_work(work);
  7697. }
  7698. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7699. // More than 4 timmills past since requested transactions
  7700. timer_unset(&pool->swork.tv_transparency);
  7701. pool_set_opaque(pool, true);
  7702. }
  7703. }
  7704. out:
  7705. return NULL;
  7706. }
  7707. static void init_stratum_thread(struct pool *pool)
  7708. {
  7709. have_longpoll = true;
  7710. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7711. quit(1, "Failed to create stratum thread");
  7712. }
  7713. static void *longpoll_thread(void *userdata);
  7714. static bool stratum_works(struct pool *pool)
  7715. {
  7716. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7717. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7718. return false;
  7719. if (pool->stratum_active)
  7720. return true;
  7721. if (!initiate_stratum(pool))
  7722. return false;
  7723. return true;
  7724. }
  7725. static
  7726. bool pool_recently_got_work(struct pool * const pool, const struct timeval * const tvp_now)
  7727. {
  7728. return (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, tvp_now) < 60);
  7729. }
  7730. static bool pool_active(struct pool *pool, bool pinging)
  7731. {
  7732. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7733. bool ret = false;
  7734. json_t *val;
  7735. CURL *curl = NULL;
  7736. int rolltime;
  7737. char *rpc_req;
  7738. struct work *work;
  7739. enum pool_protocol proto;
  7740. if (pool->stratum_init)
  7741. {
  7742. if (pool->stratum_active)
  7743. return true;
  7744. }
  7745. else
  7746. if (!pool->idle)
  7747. {
  7748. timer_set_now(&tv_now);
  7749. if (pool_recently_got_work(pool, &tv_now))
  7750. return true;
  7751. }
  7752. mutex_lock(&pool->pool_test_lock);
  7753. if (pool->stratum_init)
  7754. {
  7755. ret = pool->stratum_active;
  7756. goto out;
  7757. }
  7758. timer_set_now(&tv_now);
  7759. if (pool->idle)
  7760. {
  7761. if (timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7762. goto out;
  7763. }
  7764. else
  7765. if (pool_recently_got_work(pool, &tv_now))
  7766. {
  7767. ret = true;
  7768. goto out;
  7769. }
  7770. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7771. /* This is the central point we activate stratum when we can */
  7772. curl = curl_easy_init();
  7773. if (unlikely(!curl)) {
  7774. applog(LOG_ERR, "CURL initialisation failed");
  7775. goto out;
  7776. }
  7777. if (!(want_gbt || want_getwork))
  7778. goto nohttp;
  7779. work = make_work();
  7780. /* Probe for GBT support on first pass */
  7781. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7782. tryagain:
  7783. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7784. work->pool = pool;
  7785. if (!rpc_req)
  7786. goto out;
  7787. pool->probed = false;
  7788. cgtime(&tv_getwork);
  7789. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7790. true, false, &rolltime, pool, false);
  7791. cgtime(&tv_getwork_reply);
  7792. free(rpc_req);
  7793. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7794. * and if so, switch to that in preference to getwork if it works */
  7795. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7796. if (!pool->has_stratum) {
  7797. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7798. if (!pool->rpc_url)
  7799. pool_set_uri(pool, strdup(pool->stratum_url));
  7800. pool->has_stratum = true;
  7801. }
  7802. free_work(work);
  7803. if (val)
  7804. json_decref(val);
  7805. retry_stratum:
  7806. ;
  7807. /* We create the stratum thread for each pool just after
  7808. * successful authorisation. Once the init flag has been set
  7809. * we never unset it and the stratum thread is responsible for
  7810. * setting/unsetting the active flag */
  7811. bool init = pool_tset(pool, &pool->stratum_init);
  7812. if (!init) {
  7813. ret = initiate_stratum(pool) && auth_stratum(pool);
  7814. if (ret)
  7815. {
  7816. detect_algo = 2;
  7817. init_stratum_thread(pool);
  7818. }
  7819. else
  7820. {
  7821. pool_tclear(pool, &pool->stratum_init);
  7822. pool->tv_idle = tv_getwork_reply;
  7823. }
  7824. goto out;
  7825. }
  7826. ret = pool->stratum_active;
  7827. goto out;
  7828. }
  7829. else if (pool->has_stratum)
  7830. shutdown_stratum(pool);
  7831. if (val) {
  7832. bool rc;
  7833. json_t *res;
  7834. res = json_object_get(val, "result");
  7835. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7836. goto badwork;
  7837. work->rolltime = rolltime;
  7838. rc = work_decode(pool, work, val);
  7839. if (rc) {
  7840. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7841. pool->pool_no, pool->rpc_url);
  7842. work->pool = pool;
  7843. copy_time(&work->tv_getwork, &tv_getwork);
  7844. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7845. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7846. calc_diff(work, 0);
  7847. update_last_work(work);
  7848. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7849. stage_work(work);
  7850. total_getworks++;
  7851. pool->getwork_requested++;
  7852. ret = true;
  7853. pool->tv_idle = tv_getwork_reply;
  7854. } else {
  7855. badwork:
  7856. json_decref(val);
  7857. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7858. pool->pool_no, pool->rpc_url);
  7859. pool->proto = proto = pool_protocol_fallback(proto);
  7860. if (PLP_NONE != proto)
  7861. goto tryagain;
  7862. pool->tv_idle = tv_getwork_reply;
  7863. free_work(work);
  7864. goto out;
  7865. }
  7866. json_decref(val);
  7867. if (proto != pool->proto) {
  7868. pool->proto = proto;
  7869. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7870. }
  7871. if (pool->lp_url)
  7872. goto out;
  7873. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7874. const struct blktmpl_longpoll_req *lp;
  7875. if (work->tr && (lp = blktmpl_get_longpoll(work->tr->tmpl))) {
  7876. // NOTE: work_decode takes care of lp id
  7877. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7878. if (!pool->lp_url)
  7879. {
  7880. ret = false;
  7881. goto out;
  7882. }
  7883. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7884. }
  7885. else
  7886. if (pool->hdr_path && want_getwork) {
  7887. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7888. if (!pool->lp_url)
  7889. {
  7890. ret = false;
  7891. goto out;
  7892. }
  7893. pool->lp_proto = PLP_GETWORK;
  7894. } else
  7895. pool->lp_url = NULL;
  7896. if (want_longpoll && !pool->lp_started) {
  7897. pool->lp_started = true;
  7898. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7899. quit(1, "Failed to create pool longpoll thread");
  7900. }
  7901. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7902. pool->proto = proto;
  7903. goto tryagain;
  7904. } else {
  7905. pool->tv_idle = tv_getwork_reply;
  7906. free_work(work);
  7907. nohttp:
  7908. /* If we failed to parse a getwork, this could be a stratum
  7909. * url without the prefix stratum+tcp:// so let's check it */
  7910. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7911. pool->has_stratum = true;
  7912. goto retry_stratum;
  7913. }
  7914. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7915. pool->pool_no, pool->rpc_url);
  7916. if (!pinging)
  7917. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7918. }
  7919. out:
  7920. if (curl)
  7921. curl_easy_cleanup(curl);
  7922. mutex_unlock(&pool->pool_test_lock);
  7923. return ret;
  7924. }
  7925. static void pool_resus(struct pool *pool)
  7926. {
  7927. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7928. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7929. else
  7930. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7931. }
  7932. static struct work *hash_pop(void)
  7933. {
  7934. struct work *work = NULL, *tmp;
  7935. int hc;
  7936. struct timespec ts;
  7937. retry:
  7938. mutex_lock(stgd_lock);
  7939. while (!HASH_COUNT(staged_work))
  7940. {
  7941. if (unlikely(staged_full))
  7942. {
  7943. if (likely(opt_queue < 10 + mining_threads))
  7944. {
  7945. ++opt_queue;
  7946. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7947. }
  7948. else
  7949. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7950. staged_full = false; // Let it fill up before triggering an underrun again
  7951. no_work = true;
  7952. }
  7953. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7954. pthread_cond_signal(&gws_cond);
  7955. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7956. {
  7957. run_cmd(cmd_idle);
  7958. pthread_cond_signal(&gws_cond);
  7959. pthread_cond_wait(&getq->cond, stgd_lock);
  7960. }
  7961. }
  7962. no_work = false;
  7963. hc = HASH_COUNT(staged_work);
  7964. /* Find clone work if possible, to allow masters to be reused */
  7965. if (hc > staged_rollable) {
  7966. HASH_ITER(hh, staged_work, work, tmp) {
  7967. if (!work_rollable(work))
  7968. break;
  7969. }
  7970. } else
  7971. work = staged_work;
  7972. if (can_roll(work) && should_roll(work))
  7973. {
  7974. // Instead of consuming it, force it to be cloned and grab the clone
  7975. mutex_unlock(stgd_lock);
  7976. clone_available();
  7977. goto retry;
  7978. }
  7979. HASH_DEL(staged_work, work);
  7980. if (work_rollable(work))
  7981. staged_rollable--;
  7982. /* Signal the getwork scheduler to look for more work */
  7983. pthread_cond_signal(&gws_cond);
  7984. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7985. pthread_cond_signal(&getq->cond);
  7986. mutex_unlock(stgd_lock);
  7987. work->pool->last_work_time = time(NULL);
  7988. cgtime(&work->pool->tv_last_work_time);
  7989. return work;
  7990. }
  7991. /* Clones work by rolling it if possible, and returning a clone instead of the
  7992. * original work item which gets staged again to possibly be rolled again in
  7993. * the future */
  7994. static struct work *clone_work(struct work *work)
  7995. {
  7996. int mrs = mining_threads + opt_queue - total_staged();
  7997. struct work *work_clone;
  7998. bool cloned;
  7999. if (mrs < 1)
  8000. return work;
  8001. cloned = false;
  8002. work_clone = make_clone(work);
  8003. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  8004. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  8005. stage_work(work_clone);
  8006. roll_work(work);
  8007. work_clone = make_clone(work);
  8008. /* Roll it again to prevent duplicates should this be used
  8009. * directly later on */
  8010. roll_work(work);
  8011. cloned = true;
  8012. }
  8013. if (cloned) {
  8014. stage_work(work);
  8015. return work_clone;
  8016. }
  8017. free_work(work_clone);
  8018. return work;
  8019. }
  8020. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  8021. {
  8022. unsigned char hash1[32];
  8023. sha256(data, len, hash1);
  8024. sha256(hash1, 32, hash);
  8025. }
  8026. /* PDiff 1 is a 256 bit unsigned integer of
  8027. * 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  8028. * so we use a big endian 32 bit unsigned integer positioned at the Nth byte to
  8029. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  8030. static void pdiff_target_leadzero(void * const target_p, double diff)
  8031. {
  8032. uint8_t *target = target_p;
  8033. diff *= 0x100000000;
  8034. int skip = log2(diff) / 8;
  8035. if (skip)
  8036. {
  8037. if (skip > 0x1c)
  8038. skip = 0x1c;
  8039. diff /= pow(0x100, skip);
  8040. memset(target, 0, skip);
  8041. }
  8042. uint32_t n = 0xffffffff;
  8043. n = (double)n / diff;
  8044. n = htobe32(n);
  8045. memcpy(&target[skip], &n, sizeof(n));
  8046. memset(&target[skip + sizeof(n)], 0xff, 32 - (skip + sizeof(n)));
  8047. }
  8048. void set_target_to_pdiff(void * const dest_target, const double pdiff)
  8049. {
  8050. unsigned char rtarget[32];
  8051. pdiff_target_leadzero(rtarget, pdiff);
  8052. swab256(dest_target, rtarget);
  8053. if (opt_debug) {
  8054. char htarget[65];
  8055. bin2hex(htarget, rtarget, 32);
  8056. applog(LOG_DEBUG, "Generated target %s", htarget);
  8057. }
  8058. }
  8059. void set_target_to_bdiff(void * const dest_target, const double bdiff)
  8060. {
  8061. set_target_to_pdiff(dest_target, bdiff_to_pdiff(bdiff));
  8062. }
  8063. void _test_target(void * const funcp, const char * const funcname, const bool little_endian, const void * const expectp, const double diff)
  8064. {
  8065. uint8_t bufr[32], buf[32], expectr[32], expect[32];
  8066. int off;
  8067. void (*func)(void *, double) = funcp;
  8068. func(little_endian ? bufr : buf, diff);
  8069. if (little_endian)
  8070. swab256(buf, bufr);
  8071. swap32tobe(expect, expectp, 256/32);
  8072. // Fuzzy comparison: the first 32 bits set must match, and the actual target must be >= the expected
  8073. for (off = 0; off < 28 && !buf[off]; ++off)
  8074. {}
  8075. if (memcmp(&buf[off], &expect[off], 4))
  8076. {
  8077. testfail: ;
  8078. char hexbuf[65], expectbuf[65];
  8079. bin2hex(hexbuf, buf, 32);
  8080. bin2hex(expectbuf, expect, 32);
  8081. applogr(, LOG_WARNING, "%s test failed: diff %g got %s (expected %s)",
  8082. funcname, diff, hexbuf, expectbuf);
  8083. }
  8084. if (!little_endian)
  8085. swab256(bufr, buf);
  8086. swab256(expectr, expect);
  8087. if (!hash_target_check(expectr, bufr))
  8088. goto testfail;
  8089. }
  8090. #define TEST_TARGET(func, le, expect, diff) \
  8091. _test_target(func, #func, le, expect, diff)
  8092. void test_target()
  8093. {
  8094. uint32_t expect[8] = {0};
  8095. // bdiff 1 should be exactly 00000000ffff0000000006f29cfd29510a6caee84634e86a57257cf03152537f due to floating-point imprecision (pdiff1 / 1.0000152590218966)
  8096. expect[0] = 0x0000ffff;
  8097. TEST_TARGET(set_target_to_bdiff, true, expect, 1./0x10000);
  8098. expect[0] = 0;
  8099. expect[1] = 0xffff0000;
  8100. TEST_TARGET(set_target_to_bdiff, true, expect, 1);
  8101. expect[1] >>= 1;
  8102. TEST_TARGET(set_target_to_bdiff, true, expect, 2);
  8103. expect[1] >>= 3;
  8104. TEST_TARGET(set_target_to_bdiff, true, expect, 0x10);
  8105. expect[1] >>= 4;
  8106. TEST_TARGET(set_target_to_bdiff, true, expect, 0x100);
  8107. memset(&expect[1], '\xff', 28);
  8108. expect[0] = 0x0000ffff;
  8109. TEST_TARGET(set_target_to_pdiff, true, expect, 1./0x10000);
  8110. expect[0] = 0;
  8111. TEST_TARGET(set_target_to_pdiff, true, expect, 1);
  8112. expect[1] >>= 1;
  8113. TEST_TARGET(set_target_to_pdiff, true, expect, 2);
  8114. expect[1] >>= 3;
  8115. TEST_TARGET(set_target_to_pdiff, true, expect, 0x10);
  8116. expect[1] >>= 4;
  8117. TEST_TARGET(set_target_to_pdiff, true, expect, 0x100);
  8118. }
  8119. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  8120. {
  8121. *dst = *src;
  8122. if (dst->tr)
  8123. tmpl_incref(dst->tr);
  8124. dst->nonce1 = maybe_strdup(src->nonce1);
  8125. dst->job_id = maybe_strdup(src->job_id);
  8126. bytes_cpy(&dst->coinbase, &src->coinbase);
  8127. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  8128. }
  8129. void stratum_work_clean(struct stratum_work * const swork)
  8130. {
  8131. if (swork->tr)
  8132. tmpl_decref(swork->tr);
  8133. free(swork->nonce1);
  8134. free(swork->job_id);
  8135. bytes_free(&swork->coinbase);
  8136. bytes_free(&swork->merkle_bin);
  8137. }
  8138. bool pool_has_usable_swork(const struct pool * const pool)
  8139. {
  8140. if (opt_benchmark)
  8141. return true;
  8142. if (pool->swork.tr)
  8143. {
  8144. // GBT
  8145. struct timeval tv_now;
  8146. timer_set_now(&tv_now);
  8147. return blkmk_time_left(pool->swork.tr->tmpl, tv_now.tv_sec);
  8148. }
  8149. return pool->stratum_notify;
  8150. }
  8151. /* Generates stratum based work based on the most recent notify information
  8152. * from the pool. This will keep generating work while a pool is down so we use
  8153. * other means to detect when the pool has died in stratum_thread */
  8154. static void gen_stratum_work(struct pool *pool, struct work *work)
  8155. {
  8156. clean_work(work);
  8157. cg_wlock(&pool->data_lock);
  8158. pool->swork.data_lock_p = &pool->data_lock;
  8159. const int n2size = pool->swork.n2size;
  8160. bytes_resize(&work->nonce2, n2size);
  8161. if (pool->nonce2sz < n2size)
  8162. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, n2size - pool->nonce2sz);
  8163. memcpy(bytes_buf(&work->nonce2),
  8164. #ifdef WORDS_BIGENDIAN
  8165. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  8166. &((char*)&pool->nonce2)[pool->nonce2off],
  8167. #else
  8168. &pool->nonce2,
  8169. #endif
  8170. pool->nonce2sz);
  8171. pool->nonce2++;
  8172. work->pool = pool;
  8173. work->work_restart_id = pool->swork.work_restart_id;
  8174. gen_stratum_work2(work, &pool->swork);
  8175. cgtime(&work->tv_staged);
  8176. }
  8177. void gen_stratum_work2(struct work *work, struct stratum_work *swork)
  8178. {
  8179. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  8180. uint8_t *merkle_bin;
  8181. uint32_t *data32, *swap32;
  8182. int i;
  8183. /* Generate coinbase */
  8184. coinbase = bytes_buf(&swork->coinbase);
  8185. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  8186. /* Downgrade to a read lock to read off the variables */
  8187. if (swork->data_lock_p)
  8188. cg_dwlock(swork->data_lock_p);
  8189. /* Generate merkle root */
  8190. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  8191. memcpy(merkle_sha, merkle_root, 32);
  8192. merkle_bin = bytes_buf(&swork->merkle_bin);
  8193. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  8194. memcpy(merkle_sha + 32, merkle_bin, 32);
  8195. gen_hash(merkle_sha, merkle_root, 64);
  8196. memcpy(merkle_sha, merkle_root, 32);
  8197. }
  8198. data32 = (uint32_t *)merkle_sha;
  8199. swap32 = (uint32_t *)merkle_root;
  8200. flip32(swap32, data32);
  8201. memcpy(&work->data[0], swork->header1, 36);
  8202. memcpy(&work->data[36], merkle_root, 32);
  8203. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  8204. memcpy(&work->data[72], swork->diffbits, 4);
  8205. memset(&work->data[76], 0, 4); // nonce
  8206. memcpy(&work->data[80], workpadding_bin, 48);
  8207. work->ntime_roll_limits = swork->ntime_roll_limits;
  8208. /* Copy parameters required for share submission */
  8209. memcpy(work->target, swork->target, sizeof(work->target));
  8210. work->job_id = maybe_strdup(swork->job_id);
  8211. work->nonce1 = maybe_strdup(swork->nonce1);
  8212. if (swork->data_lock_p)
  8213. cg_runlock(swork->data_lock_p);
  8214. if (opt_debug)
  8215. {
  8216. char header[161];
  8217. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  8218. bin2hex(header, work->data, 80);
  8219. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  8220. applog(LOG_DEBUG, "Generated stratum header %s", header);
  8221. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  8222. }
  8223. calc_midstate(work);
  8224. local_work++;
  8225. work->stratum = true;
  8226. work->blk.nonce = 0;
  8227. work->id = total_work++;
  8228. work->longpoll = false;
  8229. work->getwork_mode = GETWORK_MODE_STRATUM;
  8230. calc_diff(work, 0);
  8231. }
  8232. void request_work(struct thr_info *thr)
  8233. {
  8234. struct cgpu_info *cgpu = thr->cgpu;
  8235. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8236. /* Tell the watchdog thread this thread is waiting on getwork and
  8237. * should not be restarted */
  8238. thread_reportout(thr);
  8239. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  8240. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8241. {
  8242. if (proc->threads)
  8243. break;
  8244. thread_reportout(proc->thr[0]);
  8245. }
  8246. cgtime(&dev_stats->_get_start);
  8247. }
  8248. // FIXME: Make this non-blocking (and remove HACK above)
  8249. struct work *get_work(struct thr_info *thr)
  8250. {
  8251. const int thr_id = thr->id;
  8252. struct cgpu_info *cgpu = thr->cgpu;
  8253. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8254. struct cgminer_stats *pool_stats;
  8255. struct timeval tv_get;
  8256. struct work *work = NULL;
  8257. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  8258. while (!work) {
  8259. work = hash_pop();
  8260. if (stale_work(work, false)) {
  8261. staged_full = false; // It wasn't really full, since it was stale :(
  8262. discard_work(work);
  8263. work = NULL;
  8264. wake_gws();
  8265. }
  8266. }
  8267. last_getwork = time(NULL);
  8268. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  8269. cgpu->proc_repr, work->id, thr_id);
  8270. work->thr_id = thr_id;
  8271. thread_reportin(thr);
  8272. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  8273. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8274. {
  8275. if (proc->threads)
  8276. break;
  8277. thread_reportin(proc->thr[0]);
  8278. }
  8279. work->mined = true;
  8280. work->blk.nonce = 0;
  8281. cgtime(&tv_get);
  8282. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  8283. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  8284. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  8285. dev_stats->getwork_wait_max = tv_get;
  8286. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  8287. dev_stats->getwork_wait_min = tv_get;
  8288. ++dev_stats->getwork_calls;
  8289. pool_stats = &(work->pool->cgminer_stats);
  8290. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  8291. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  8292. pool_stats->getwork_wait_max = tv_get;
  8293. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  8294. pool_stats->getwork_wait_min = tv_get;
  8295. ++pool_stats->getwork_calls;
  8296. if (work->work_difficulty < 1)
  8297. {
  8298. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  8299. {
  8300. if (cgpu->min_nonce_diff - work->work_difficulty > 1./0x10000000)
  8301. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  8302. cgpu->proc_repr);
  8303. work->nonce_diff = cgpu->min_nonce_diff;
  8304. }
  8305. else
  8306. work->nonce_diff = work->work_difficulty;
  8307. }
  8308. else
  8309. work->nonce_diff = 1;
  8310. return work;
  8311. }
  8312. static
  8313. void _submit_work_async(struct work *work)
  8314. {
  8315. applog(LOG_DEBUG, "Pushing submit work to work thread");
  8316. if (opt_benchmark)
  8317. {
  8318. json_t * const jn = json_null();
  8319. work_check_for_block(work);
  8320. share_result(jn, jn, jn, work, false, "");
  8321. free_work(work);
  8322. return;
  8323. }
  8324. mutex_lock(&submitting_lock);
  8325. ++total_submitting;
  8326. DL_APPEND(submit_waiting, work);
  8327. mutex_unlock(&submitting_lock);
  8328. notifier_wake(submit_waiting_notifier);
  8329. }
  8330. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  8331. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  8332. {
  8333. if (tv_work_found)
  8334. copy_time(&work->tv_work_found, tv_work_found);
  8335. _submit_work_async(work);
  8336. }
  8337. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  8338. {
  8339. struct cgpu_info * const cgpu = thr->cgpu;
  8340. if (bad_nonce_p)
  8341. {
  8342. if (bad_nonce_p == UNKNOWN_NONCE)
  8343. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  8344. cgpu->proc_repr);
  8345. else
  8346. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  8347. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  8348. }
  8349. mutex_lock(&stats_lock);
  8350. hw_errors++;
  8351. ++cgpu->hw_errors;
  8352. if (bad_nonce_p)
  8353. {
  8354. total_bad_diff1 += nonce_diff;
  8355. cgpu->bad_diff1 += nonce_diff;
  8356. }
  8357. mutex_unlock(&stats_lock);
  8358. if (thr->cgpu->drv->hw_error)
  8359. thr->cgpu->drv->hw_error(thr);
  8360. }
  8361. void work_hash(struct work * const work)
  8362. {
  8363. #ifdef USE_SCRYPT
  8364. if (opt_scrypt)
  8365. scrypt_hash_data(work->hash, work->data);
  8366. else
  8367. #endif
  8368. hash_data(work->hash, work->data);
  8369. }
  8370. static
  8371. bool test_hash(const void * const phash, const float diff)
  8372. {
  8373. const uint32_t * const hash = phash;
  8374. if (diff >= 1.)
  8375. // FIXME: > 1 should check more
  8376. return !hash[7];
  8377. const uint32_t Htarg = (uint32_t)ceil((1. / diff) - 1);
  8378. const uint32_t tmp_hash7 = le32toh(hash[7]);
  8379. applog(LOG_DEBUG, "htarget %08lx hash %08lx",
  8380. (long unsigned int)Htarg,
  8381. (long unsigned int)tmp_hash7);
  8382. return (tmp_hash7 <= Htarg);
  8383. }
  8384. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  8385. {
  8386. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8387. *work_nonce = htole32(nonce);
  8388. work_hash(work);
  8389. if (!test_hash(work->hash, work->nonce_diff))
  8390. return TNR_BAD;
  8391. if (checktarget && !hash_target_check_v(work->hash, work->target))
  8392. {
  8393. bool high_hash = true;
  8394. struct pool * const pool = work->pool;
  8395. if (pool->stratum_active)
  8396. {
  8397. // Some stratum pools are buggy and expect difficulty changes to be immediate retroactively, so if the target has changed, check and submit just in case
  8398. if (memcmp(pool->next_target, work->target, sizeof(work->target)))
  8399. {
  8400. applog(LOG_DEBUG, "Stratum pool %u target has changed since work job issued, checking that too",
  8401. pool->pool_no);
  8402. if (hash_target_check_v(work->hash, pool->next_target))
  8403. high_hash = false;
  8404. }
  8405. }
  8406. if (high_hash)
  8407. return TNR_HIGH;
  8408. }
  8409. return TNR_GOOD;
  8410. }
  8411. /* Returns true if nonce for work was a valid share */
  8412. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  8413. {
  8414. return submit_noffset_nonce(thr, work, nonce, 0);
  8415. }
  8416. /* Allows drivers to submit work items where the driver has changed the ntime
  8417. * value by noffset. Must be only used with a work protocol that does not ntime
  8418. * roll itself intrinsically to generate work (eg stratum). We do not touch
  8419. * the original work struct, but the copy of it only. */
  8420. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  8421. int noffset)
  8422. {
  8423. struct work *work = make_work();
  8424. _copy_work(work, work_in, noffset);
  8425. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8426. struct timeval tv_work_found;
  8427. enum test_nonce2_result res;
  8428. bool ret = true;
  8429. thread_reportout(thr);
  8430. cgtime(&tv_work_found);
  8431. *work_nonce = htole32(nonce);
  8432. work->thr_id = thr->id;
  8433. /* Do one last check before attempting to submit the work */
  8434. /* Side effect: sets work->data and work->hash for us */
  8435. res = test_nonce2(work, nonce);
  8436. if (unlikely(res == TNR_BAD))
  8437. {
  8438. inc_hw_errors(thr, work, nonce);
  8439. ret = false;
  8440. goto out;
  8441. }
  8442. mutex_lock(&stats_lock);
  8443. total_diff1 += work->nonce_diff;
  8444. thr ->cgpu->diff1 += work->nonce_diff;
  8445. work->pool->diff1 += work->nonce_diff;
  8446. thr->cgpu->last_device_valid_work = time(NULL);
  8447. mutex_unlock(&stats_lock);
  8448. if (noncelog_file)
  8449. noncelog(work);
  8450. if (res == TNR_HIGH)
  8451. {
  8452. // Share above target, normal
  8453. /* Check the diff of the share, even if it didn't reach the
  8454. * target, just to set the best share value if it's higher. */
  8455. share_diff(work);
  8456. goto out;
  8457. }
  8458. submit_work_async2(work, &tv_work_found);
  8459. work = NULL; // Taken by submit_work_async2
  8460. out:
  8461. if (work)
  8462. free_work(work);
  8463. thread_reportin(thr);
  8464. return ret;
  8465. }
  8466. // return true of we should stop working on this piece of work
  8467. // returning false means we will keep scanning for a nonce
  8468. // assumptions: work->blk.nonce is the number of nonces completed in the work
  8469. // see minerloop_scanhash comments for more details & usage
  8470. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t max_hashes)
  8471. {
  8472. if (work->blk.nonce == 0xffffffff || // known we are scanning a full nonce range
  8473. wdiff->tv_sec > opt_scantime || // scan-time has elapsed (user specified, default 60s)
  8474. work->blk.nonce >= 0xfffffffe - max_hashes || // are there enough nonces left in the work
  8475. max_hashes >= 0xfffffffe || // assume we are scanning a full nonce range
  8476. stale_work(work, false)) // work is stale
  8477. return true;
  8478. return false;
  8479. }
  8480. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8481. {
  8482. struct cgpu_info *proc = thr->cgpu;
  8483. if (proc->threads > 1)
  8484. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8485. else
  8486. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8487. }
  8488. // Called by asynchronous minerloops, when they find their processor should be disabled
  8489. void mt_disable_start(struct thr_info *mythr)
  8490. {
  8491. struct cgpu_info *cgpu = mythr->cgpu;
  8492. struct device_drv *drv = cgpu->drv;
  8493. if (drv->thread_disable)
  8494. drv->thread_disable(mythr);
  8495. hashmeter2(mythr);
  8496. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8497. mythr->rolling = mythr->cgpu->rolling = 0;
  8498. thread_reportout(mythr);
  8499. mythr->_mt_disable_called = true;
  8500. }
  8501. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8502. * the driver tells us it's full so that it may extract the work item using
  8503. * the get_queued() function which adds it to the hashtable on
  8504. * cgpu->queued_work. */
  8505. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8506. {
  8507. thread_reportout(mythr);
  8508. do {
  8509. bool need_work;
  8510. /* Do this lockless just to know if we need more unqueued work. */
  8511. need_work = (!cgpu->unqueued_work);
  8512. /* get_work is a blocking function so do it outside of lock
  8513. * to prevent deadlocks with other locks. */
  8514. if (need_work) {
  8515. struct work *work = get_work(mythr);
  8516. wr_lock(&cgpu->qlock);
  8517. /* Check we haven't grabbed work somehow between
  8518. * checking and picking up the lock. */
  8519. if (likely(!cgpu->unqueued_work))
  8520. cgpu->unqueued_work = work;
  8521. else
  8522. need_work = false;
  8523. wr_unlock(&cgpu->qlock);
  8524. if (unlikely(!need_work))
  8525. discard_work(work);
  8526. }
  8527. /* The queue_full function should be used by the driver to
  8528. * actually place work items on the physical device if it
  8529. * does have a queue. */
  8530. } while (drv->queue_full && !drv->queue_full(cgpu));
  8531. }
  8532. /* Add a work item to a cgpu's queued hashlist */
  8533. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8534. {
  8535. cgpu->queued_count++;
  8536. HASH_ADD_INT(cgpu->queued_work, id, work);
  8537. }
  8538. /* This function is for retrieving one work item from the unqueued pointer and
  8539. * adding it to the hashtable of queued work. Code using this function must be
  8540. * able to handle NULL as a return which implies there is no work available. */
  8541. struct work *get_queued(struct cgpu_info *cgpu)
  8542. {
  8543. struct work *work = NULL;
  8544. wr_lock(&cgpu->qlock);
  8545. if (cgpu->unqueued_work) {
  8546. work = cgpu->unqueued_work;
  8547. if (unlikely(stale_work(work, false))) {
  8548. discard_work(work);
  8549. work = NULL;
  8550. wake_gws();
  8551. } else
  8552. __add_queued(cgpu, work);
  8553. cgpu->unqueued_work = NULL;
  8554. }
  8555. wr_unlock(&cgpu->qlock);
  8556. return work;
  8557. }
  8558. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8559. {
  8560. wr_lock(&cgpu->qlock);
  8561. __add_queued(cgpu, work);
  8562. wr_unlock(&cgpu->qlock);
  8563. }
  8564. /* Get fresh work and add it to cgpu's queued hashlist */
  8565. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8566. {
  8567. struct work *work = get_work(thr);
  8568. add_queued(cgpu, work);
  8569. return work;
  8570. }
  8571. /* This function is for finding an already queued work item in the
  8572. * given que hashtable. Code using this function must be able
  8573. * to handle NULL as a return which implies there is no matching work.
  8574. * The calling function must lock access to the que if it is required.
  8575. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8576. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8577. {
  8578. struct work *work, *tmp, *ret = NULL;
  8579. HASH_ITER(hh, que, work, tmp) {
  8580. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8581. memcmp(work->data + offset, data, datalen) == 0) {
  8582. ret = work;
  8583. break;
  8584. }
  8585. }
  8586. return ret;
  8587. }
  8588. /* This function is for finding an already queued work item in the
  8589. * device's queued_work hashtable. Code using this function must be able
  8590. * to handle NULL as a return which implies there is no matching work.
  8591. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8592. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8593. {
  8594. struct work *ret;
  8595. rd_lock(&cgpu->qlock);
  8596. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8597. rd_unlock(&cgpu->qlock);
  8598. return ret;
  8599. }
  8600. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8601. {
  8602. struct work *work, *ret = NULL;
  8603. rd_lock(&cgpu->qlock);
  8604. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8605. if (work)
  8606. ret = copy_work(work);
  8607. rd_unlock(&cgpu->qlock);
  8608. return ret;
  8609. }
  8610. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8611. {
  8612. cgpu->queued_count--;
  8613. HASH_DEL(cgpu->queued_work, work);
  8614. }
  8615. /* This function should be used by queued device drivers when they're sure
  8616. * the work struct is no longer in use. */
  8617. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8618. {
  8619. wr_lock(&cgpu->qlock);
  8620. __work_completed(cgpu, work);
  8621. wr_unlock(&cgpu->qlock);
  8622. free_work(work);
  8623. }
  8624. /* Combines find_queued_work_bymidstate and work_completed in one function
  8625. * withOUT destroying the work so the driver must free it. */
  8626. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8627. {
  8628. struct work *work;
  8629. wr_lock(&cgpu->qlock);
  8630. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8631. if (work)
  8632. __work_completed(cgpu, work);
  8633. wr_unlock(&cgpu->qlock);
  8634. return work;
  8635. }
  8636. static void flush_queue(struct cgpu_info *cgpu)
  8637. {
  8638. struct work *work = NULL;
  8639. wr_lock(&cgpu->qlock);
  8640. work = cgpu->unqueued_work;
  8641. cgpu->unqueued_work = NULL;
  8642. wr_unlock(&cgpu->qlock);
  8643. if (work) {
  8644. free_work(work);
  8645. applog(LOG_DEBUG, "Discarded queued work item");
  8646. }
  8647. }
  8648. /* This version of hash work is for devices that are fast enough to always
  8649. * perform a full nonce range and need a queue to maintain the device busy.
  8650. * Work creation and destruction is not done from within this function
  8651. * directly. */
  8652. void hash_queued_work(struct thr_info *mythr)
  8653. {
  8654. const long cycle = opt_log_interval / 5 ? : 1;
  8655. struct timeval tv_start = {0, 0}, tv_end;
  8656. struct cgpu_info *cgpu = mythr->cgpu;
  8657. struct device_drv *drv = cgpu->drv;
  8658. const int thr_id = mythr->id;
  8659. int64_t hashes_done = 0;
  8660. if (unlikely(cgpu->deven != DEV_ENABLED))
  8661. mt_disable(mythr);
  8662. while (likely(!cgpu->shutdown)) {
  8663. struct timeval diff;
  8664. int64_t hashes;
  8665. fill_queue(mythr, cgpu, drv, thr_id);
  8666. thread_reportin(mythr);
  8667. hashes = drv->scanwork(mythr);
  8668. /* Reset the bool here in case the driver looks for it
  8669. * synchronously in the scanwork loop. */
  8670. mythr->work_restart = false;
  8671. if (unlikely(hashes == -1 )) {
  8672. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8673. cgpu->deven = DEV_DISABLED;
  8674. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8675. mt_disable(mythr);
  8676. }
  8677. hashes_done += hashes;
  8678. cgtime(&tv_end);
  8679. timersub(&tv_end, &tv_start, &diff);
  8680. if (diff.tv_sec >= cycle) {
  8681. hashmeter(thr_id, &diff, hashes_done);
  8682. hashes_done = 0;
  8683. copy_time(&tv_start, &tv_end);
  8684. }
  8685. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8686. mt_disable(mythr);
  8687. if (unlikely(mythr->work_restart)) {
  8688. flush_queue(cgpu);
  8689. if (drv->flush_work)
  8690. drv->flush_work(cgpu);
  8691. }
  8692. }
  8693. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8694. }
  8695. // Called by minerloop, when it is re-enabling a processor
  8696. void mt_disable_finish(struct thr_info *mythr)
  8697. {
  8698. struct device_drv *drv = mythr->cgpu->drv;
  8699. thread_reportin(mythr);
  8700. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8701. if (drv->thread_enable)
  8702. drv->thread_enable(mythr);
  8703. mythr->_mt_disable_called = false;
  8704. }
  8705. // Called by synchronous minerloops, when they find their processor should be disabled
  8706. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8707. void mt_disable(struct thr_info *mythr)
  8708. {
  8709. const struct cgpu_info * const cgpu = mythr->cgpu;
  8710. mt_disable_start(mythr);
  8711. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8712. do {
  8713. notifier_read(mythr->notifier);
  8714. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8715. mt_disable_finish(mythr);
  8716. }
  8717. enum {
  8718. STAT_SLEEP_INTERVAL = 1,
  8719. STAT_CTR_INTERVAL = 10000000,
  8720. FAILURE_INTERVAL = 30,
  8721. };
  8722. /* Stage another work item from the work returned in a longpoll */
  8723. 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)
  8724. {
  8725. bool rc;
  8726. work->rolltime = rolltime;
  8727. rc = work_decode(pool, work, val);
  8728. if (unlikely(!rc)) {
  8729. applog(LOG_ERR, "Could not convert longpoll data to work");
  8730. free_work(work);
  8731. return;
  8732. }
  8733. total_getworks++;
  8734. pool->getwork_requested++;
  8735. work->pool = pool;
  8736. copy_time(&work->tv_getwork, tv_lp);
  8737. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8738. calc_diff(work, 0);
  8739. if (pool->enabled == POOL_REJECTING)
  8740. work->mandatory = true;
  8741. work->longpoll = true;
  8742. work->getwork_mode = GETWORK_MODE_LP;
  8743. update_last_work(work);
  8744. /* We'll be checking this work item twice, but we already know it's
  8745. * from a new block so explicitly force the new block detection now
  8746. * rather than waiting for it to hit the stage thread. This also
  8747. * allows testwork to know whether LP discovered the block or not. */
  8748. test_work_current(work);
  8749. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8750. * the longpoll work from a pool that has been rejecting shares as a
  8751. * way to detect when the pool has recovered.
  8752. */
  8753. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8754. free_work(work);
  8755. return;
  8756. }
  8757. work = clone_work(work);
  8758. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8759. stage_work(work);
  8760. applog(LOG_DEBUG, "Converted longpoll data to work");
  8761. }
  8762. /* If we want longpoll, enable it for the chosen default pool, or, if
  8763. * the pool does not support longpoll, find the first one that does
  8764. * and use its longpoll support */
  8765. static
  8766. struct pool *_select_longpoll_pool(struct pool *cp, bool(*func)(struct pool *))
  8767. {
  8768. int i;
  8769. if (func(cp))
  8770. return cp;
  8771. for (i = 0; i < total_pools; i++) {
  8772. struct pool *pool = pools[i];
  8773. if (func(pool))
  8774. return pool;
  8775. }
  8776. return NULL;
  8777. }
  8778. /* This will make the longpoll thread wait till it's the current pool, or it
  8779. * has been flagged as rejecting, before attempting to open any connections.
  8780. */
  8781. static void wait_lpcurrent(struct pool *pool)
  8782. {
  8783. mutex_lock(&lp_lock);
  8784. while (!cnx_needed(pool))
  8785. {
  8786. pool->lp_active = false;
  8787. pthread_cond_wait(&lp_cond, &lp_lock);
  8788. }
  8789. mutex_unlock(&lp_lock);
  8790. }
  8791. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8792. struct pool *pool = vpool;
  8793. curl_socket_t sock = bfg_socket(addr->family, addr->socktype, addr->protocol);
  8794. pool->lp_socket = sock;
  8795. return sock;
  8796. }
  8797. static void *longpoll_thread(void *userdata)
  8798. {
  8799. struct pool *cp = (struct pool *)userdata;
  8800. /* This *pool is the source of the actual longpoll, not the pool we've
  8801. * tied it to */
  8802. struct timeval start, reply, end;
  8803. struct pool *pool = NULL;
  8804. char threadname[20];
  8805. CURL *curl = NULL;
  8806. int failures = 0;
  8807. char *lp_url;
  8808. int rolltime;
  8809. #ifndef HAVE_PTHREAD_CANCEL
  8810. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8811. #endif
  8812. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8813. RenameThread(threadname);
  8814. curl = curl_easy_init();
  8815. if (unlikely(!curl)) {
  8816. applog(LOG_ERR, "CURL initialisation failed");
  8817. return NULL;
  8818. }
  8819. retry_pool:
  8820. pool = select_longpoll_pool(cp);
  8821. if (!pool) {
  8822. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8823. while (!pool) {
  8824. cgsleep_ms(60000);
  8825. pool = select_longpoll_pool(cp);
  8826. }
  8827. }
  8828. if (pool->has_stratum) {
  8829. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8830. cp->rpc_url, pool->rpc_url);
  8831. goto out;
  8832. }
  8833. /* Any longpoll from any pool is enough for this to be true */
  8834. have_longpoll = true;
  8835. wait_lpcurrent(cp);
  8836. {
  8837. lp_url = pool->lp_url;
  8838. if (cp == pool)
  8839. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8840. else
  8841. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8842. }
  8843. while (42) {
  8844. json_t *val, *soval;
  8845. struct work *work = make_work();
  8846. char *lpreq;
  8847. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8848. work->pool = pool;
  8849. if (!lpreq)
  8850. {
  8851. free_work(work);
  8852. goto lpfail;
  8853. }
  8854. wait_lpcurrent(cp);
  8855. cgtime(&start);
  8856. /* Longpoll connections can be persistent for a very long time
  8857. * and any number of issues could have come up in the meantime
  8858. * so always establish a fresh connection instead of relying on
  8859. * a persistent one. */
  8860. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8861. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8862. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8863. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8864. lpreq, false, true, &rolltime, pool, false);
  8865. pool->lp_socket = CURL_SOCKET_BAD;
  8866. cgtime(&reply);
  8867. free(lpreq);
  8868. if (likely(val)) {
  8869. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8870. if (soval)
  8871. pool->submit_old = json_is_true(soval);
  8872. else
  8873. pool->submit_old = false;
  8874. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8875. failures = 0;
  8876. json_decref(val);
  8877. } else {
  8878. /* Some pools regularly drop the longpoll request so
  8879. * only see this as longpoll failure if it happens
  8880. * immediately and just restart it the rest of the
  8881. * time. */
  8882. cgtime(&end);
  8883. free_work(work);
  8884. if (end.tv_sec - start.tv_sec <= 30)
  8885. {
  8886. if (failures == 1)
  8887. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8888. lpfail:
  8889. cgsleep_ms(30000);
  8890. }
  8891. }
  8892. if (pool != cp) {
  8893. pool = select_longpoll_pool(cp);
  8894. if (pool->has_stratum) {
  8895. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8896. cp->rpc_url, pool->rpc_url);
  8897. break;
  8898. }
  8899. if (unlikely(!pool))
  8900. goto retry_pool;
  8901. }
  8902. if (unlikely(pool->removed))
  8903. break;
  8904. }
  8905. out:
  8906. pool->lp_active = false;
  8907. curl_easy_cleanup(curl);
  8908. return NULL;
  8909. }
  8910. static void stop_longpoll(void)
  8911. {
  8912. int i;
  8913. want_longpoll = false;
  8914. for (i = 0; i < total_pools; ++i)
  8915. {
  8916. struct pool *pool = pools[i];
  8917. if (unlikely(!pool->lp_started))
  8918. continue;
  8919. pool->lp_started = false;
  8920. pthread_cancel(pool->longpoll_thread);
  8921. }
  8922. have_longpoll = false;
  8923. }
  8924. static void start_longpoll(void)
  8925. {
  8926. int i;
  8927. want_longpoll = true;
  8928. for (i = 0; i < total_pools; ++i)
  8929. {
  8930. struct pool *pool = pools[i];
  8931. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8932. continue;
  8933. pool->lp_started = true;
  8934. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8935. quit(1, "Failed to create pool longpoll thread");
  8936. }
  8937. }
  8938. void reinit_device(struct cgpu_info *cgpu)
  8939. {
  8940. if (cgpu->drv->reinit_device)
  8941. cgpu->drv->reinit_device(cgpu);
  8942. }
  8943. static struct timeval rotate_tv;
  8944. /* We reap curls if they are unused for over a minute */
  8945. static void reap_curl(struct pool *pool)
  8946. {
  8947. struct curl_ent *ent, *iter;
  8948. struct timeval now;
  8949. int reaped = 0;
  8950. cgtime(&now);
  8951. mutex_lock(&pool->pool_lock);
  8952. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8953. if (pool->curls < 2)
  8954. break;
  8955. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8956. reaped++;
  8957. pool->curls--;
  8958. LL_DELETE(pool->curllist, ent);
  8959. curl_easy_cleanup(ent->curl);
  8960. free(ent);
  8961. }
  8962. }
  8963. mutex_unlock(&pool->pool_lock);
  8964. if (reaped)
  8965. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8966. }
  8967. static void *watchpool_thread(void __maybe_unused *userdata)
  8968. {
  8969. int intervals = 0;
  8970. #ifndef HAVE_PTHREAD_CANCEL
  8971. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8972. #endif
  8973. RenameThread("watchpool");
  8974. while (42) {
  8975. struct timeval now;
  8976. int i;
  8977. if (++intervals > 20)
  8978. intervals = 0;
  8979. cgtime(&now);
  8980. for (i = 0; i < total_pools; i++) {
  8981. struct pool *pool = pools[i];
  8982. if (!opt_benchmark)
  8983. reap_curl(pool);
  8984. /* Get a rolling utility per pool over 10 mins */
  8985. if (intervals > 19) {
  8986. int shares = pool->diff1 - pool->last_shares;
  8987. pool->last_shares = pool->diff1;
  8988. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8989. pool->shares = pool->utility;
  8990. }
  8991. if (pool->enabled == POOL_DISABLED)
  8992. continue;
  8993. /* Don't start testing any pools if the test threads
  8994. * from startup are still doing their first attempt. */
  8995. if (unlikely(pool->testing)) {
  8996. pthread_join(pool->test_thread, NULL);
  8997. }
  8998. /* Test pool is idle once every minute */
  8999. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  9000. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  9001. pool_resus(pool);
  9002. }
  9003. /* Only switch pools if the failback pool has been
  9004. * alive for more than 5 minutes (default) to prevent
  9005. * intermittently failing pools from being used. */
  9006. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  9007. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  9008. if (opt_fail_switch_delay % 60)
  9009. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  9010. pool->pool_no, pool->rpc_url,
  9011. opt_fail_switch_delay,
  9012. (opt_fail_switch_delay == 1 ? "" : "s"));
  9013. else
  9014. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  9015. pool->pool_no, pool->rpc_url,
  9016. opt_fail_switch_delay / 60,
  9017. (opt_fail_switch_delay == 60 ? "" : "s"));
  9018. switch_pools(NULL);
  9019. }
  9020. }
  9021. if (current_pool()->idle)
  9022. switch_pools(NULL);
  9023. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  9024. cgtime(&rotate_tv);
  9025. switch_pools(NULL);
  9026. }
  9027. cgsleep_ms(30000);
  9028. }
  9029. return NULL;
  9030. }
  9031. void mt_enable(struct thr_info *thr)
  9032. {
  9033. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  9034. notifier_wake(thr->notifier);
  9035. }
  9036. void proc_enable(struct cgpu_info *cgpu)
  9037. {
  9038. int j;
  9039. cgpu->deven = DEV_ENABLED;
  9040. for (j = cgpu->threads ?: 1; j--; )
  9041. mt_enable(cgpu->thr[j]);
  9042. }
  9043. #define device_recovered(cgpu) proc_enable(cgpu)
  9044. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  9045. {
  9046. struct string_elist *setstr_elist;
  9047. const char *p, *p2;
  9048. char replybuf[0x2000];
  9049. size_t L;
  9050. DL_FOREACH(opt_set_device_list, setstr_elist)
  9051. {
  9052. const char * const setstr = setstr_elist->string;
  9053. p = strchr(setstr, ':');
  9054. if (!p)
  9055. p = setstr;
  9056. {
  9057. L = p - setstr;
  9058. char pattern[L + 1];
  9059. if (L)
  9060. memcpy(pattern, setstr, L);
  9061. pattern[L] = '\0';
  9062. if (!cgpu_match(pattern, cgpu))
  9063. continue;
  9064. }
  9065. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  9066. cgpu->proc_repr, __func__, setstr);
  9067. if (p[0] == ':')
  9068. ++p;
  9069. p2 = strchr(p, '=');
  9070. if (!p2)
  9071. {
  9072. L = strlen(p);
  9073. p2 = "";
  9074. }
  9075. else
  9076. {
  9077. L = p2 - p;
  9078. ++p2;
  9079. }
  9080. char opt[L + 1];
  9081. if (L)
  9082. memcpy(opt, p, L);
  9083. opt[L] = '\0';
  9084. L = strlen(p2);
  9085. char setval[L + 1];
  9086. if (L)
  9087. memcpy(setval, p2, L);
  9088. setval[L] = '\0';
  9089. enum bfg_set_device_replytype success;
  9090. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  9091. switch (success)
  9092. {
  9093. case SDR_OK:
  9094. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  9095. cgpu->proc_repr, setstr,
  9096. p ? ": " : "", p ?: "");
  9097. break;
  9098. case SDR_ERR:
  9099. case SDR_HELP:
  9100. case SDR_UNKNOWN:
  9101. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  9102. cgpu->proc_repr, setstr, p);
  9103. break;
  9104. case SDR_AUTO:
  9105. case SDR_NOSUPP:
  9106. applog(LOG_DEBUG, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  9107. cgpu->proc_repr, setstr);
  9108. }
  9109. }
  9110. cgpu->already_set_defaults = true;
  9111. }
  9112. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  9113. {
  9114. struct device_drv dummy_drv = *drv;
  9115. struct cgpu_info dummy_cgpu = {
  9116. .drv = &dummy_drv,
  9117. .device = &dummy_cgpu,
  9118. .device_id = -1,
  9119. .proc_id = -1,
  9120. .device_data = userp,
  9121. .device_path = devpath,
  9122. .dev_serial = serial,
  9123. };
  9124. strcpy(dummy_cgpu.proc_repr, drv->name);
  9125. switch (mode)
  9126. {
  9127. case 0:
  9128. dummy_drv.set_device = datap;
  9129. break;
  9130. case 1:
  9131. dummy_drv.set_device = NULL;
  9132. dummy_cgpu.set_device_funcs = datap;
  9133. break;
  9134. }
  9135. cgpu_set_defaults(&dummy_cgpu);
  9136. }
  9137. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  9138. * the screen at regular intervals, and restarts threads if they appear to have
  9139. * died. */
  9140. #define WATCHDOG_SICK_TIME 60
  9141. #define WATCHDOG_DEAD_TIME 600
  9142. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  9143. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  9144. static void *watchdog_thread(void __maybe_unused *userdata)
  9145. {
  9146. const unsigned int interval = WATCHDOG_INTERVAL;
  9147. struct timeval zero_tv;
  9148. #ifndef HAVE_PTHREAD_CANCEL
  9149. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  9150. #endif
  9151. RenameThread("watchdog");
  9152. memset(&zero_tv, 0, sizeof(struct timeval));
  9153. cgtime(&rotate_tv);
  9154. while (1) {
  9155. int i;
  9156. struct timeval now;
  9157. sleep(interval);
  9158. discard_stale();
  9159. hashmeter(-1, &zero_tv, 0);
  9160. #ifdef HAVE_CURSES
  9161. const int ts = total_staged();
  9162. if (curses_active_locked()) {
  9163. change_logwinsize();
  9164. curses_print_status(ts);
  9165. _refresh_devstatus(true);
  9166. touchwin(logwin);
  9167. wrefresh(logwin);
  9168. unlock_curses();
  9169. }
  9170. #endif
  9171. cgtime(&now);
  9172. if (!sched_paused && !should_run()) {
  9173. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  9174. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  9175. if (!schedstart.enable) {
  9176. quit(0, "Terminating execution as planned");
  9177. break;
  9178. }
  9179. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  9180. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  9181. sched_paused = true;
  9182. rd_lock(&mining_thr_lock);
  9183. for (i = 0; i < mining_threads; i++)
  9184. mining_thr[i]->pause = true;
  9185. rd_unlock(&mining_thr_lock);
  9186. } else if (sched_paused && should_run()) {
  9187. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  9188. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  9189. if (schedstop.enable)
  9190. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  9191. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  9192. sched_paused = false;
  9193. for (i = 0; i < mining_threads; i++) {
  9194. struct thr_info *thr;
  9195. thr = get_thread(i);
  9196. thr->pause = false;
  9197. }
  9198. for (i = 0; i < total_devices; ++i)
  9199. {
  9200. struct cgpu_info *cgpu = get_devices(i);
  9201. /* Don't touch disabled devices */
  9202. if (cgpu->deven == DEV_DISABLED)
  9203. continue;
  9204. proc_enable(cgpu);
  9205. }
  9206. }
  9207. for (i = 0; i < total_devices; ++i) {
  9208. struct cgpu_info *cgpu = get_devices(i);
  9209. if (!cgpu->disable_watchdog)
  9210. bfg_watchdog(cgpu, &now);
  9211. }
  9212. }
  9213. return NULL;
  9214. }
  9215. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  9216. {
  9217. struct thr_info *thr = cgpu->thr[0];
  9218. enum dev_enable *denable;
  9219. char *dev_str = cgpu->proc_repr;
  9220. if (likely(drv_ready(cgpu)))
  9221. {
  9222. if (unlikely(!cgpu->already_set_defaults))
  9223. cgpu_set_defaults(cgpu);
  9224. if (cgpu->drv->get_stats)
  9225. cgpu->drv->get_stats(cgpu);
  9226. }
  9227. denable = &cgpu->deven;
  9228. if (cgpu->drv->watchdog)
  9229. cgpu->drv->watchdog(cgpu, tvp_now);
  9230. /* Thread is disabled */
  9231. if (*denable == DEV_DISABLED)
  9232. return;
  9233. else
  9234. if (*denable == DEV_RECOVER_ERR) {
  9235. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  9236. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  9237. dev_str);
  9238. if (cgpu->reinit_backoff < 300)
  9239. cgpu->reinit_backoff *= 2;
  9240. device_recovered(cgpu);
  9241. }
  9242. return;
  9243. }
  9244. else
  9245. if (*denable == DEV_RECOVER) {
  9246. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  9247. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  9248. dev_str);
  9249. device_recovered(cgpu);
  9250. }
  9251. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9252. return;
  9253. }
  9254. else
  9255. if (cgpu->temp > cgpu->cutofftemp)
  9256. {
  9257. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  9258. dev_str, (int)cgpu->temp);
  9259. *denable = DEV_RECOVER;
  9260. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9261. run_cmd(cmd_idle);
  9262. }
  9263. if (thr->getwork) {
  9264. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  9265. int thrid;
  9266. bool cgpu_idle = true;
  9267. thr->rolling = 0;
  9268. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  9269. if (!cgpu->thr[thrid]->getwork)
  9270. cgpu_idle = false;
  9271. if (cgpu_idle) {
  9272. cgpu->rolling = 0;
  9273. cgpu->status = LIFE_WAIT;
  9274. }
  9275. }
  9276. return;
  9277. }
  9278. else if (cgpu->status == LIFE_WAIT)
  9279. cgpu->status = LIFE_WELL;
  9280. #ifdef WANT_CPUMINE
  9281. if (!strcmp(cgpu->drv->dname, "cpu"))
  9282. return;
  9283. #endif
  9284. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  9285. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  9286. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  9287. cgpu->status = LIFE_WELL;
  9288. cgpu->device_last_well = time(NULL);
  9289. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  9290. thr->rolling = cgpu->rolling = 0;
  9291. cgpu->status = LIFE_SICK;
  9292. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  9293. cgtime(&thr->sick);
  9294. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  9295. run_cmd(cmd_sick);
  9296. if (opt_restart && cgpu->drv->reinit_device) {
  9297. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  9298. reinit_device(cgpu);
  9299. }
  9300. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  9301. cgpu->status = LIFE_DEAD;
  9302. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  9303. cgtime(&thr->sick);
  9304. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  9305. run_cmd(cmd_dead);
  9306. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  9307. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  9308. /* Attempt to restart a GPU that's sick or dead once every minute */
  9309. cgtime(&thr->sick);
  9310. if (opt_restart)
  9311. reinit_device(cgpu);
  9312. }
  9313. }
  9314. static void log_print_status(struct cgpu_info *cgpu)
  9315. {
  9316. char logline[255];
  9317. get_statline(logline, sizeof(logline), cgpu);
  9318. applog(LOG_WARNING, "%s", logline);
  9319. }
  9320. void print_summary(void)
  9321. {
  9322. struct timeval diff;
  9323. int hours, mins, secs, i;
  9324. double utility, efficiency = 0.0;
  9325. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  9326. int pool_secs;
  9327. timersub(&total_tv_end, &total_tv_start, &diff);
  9328. hours = diff.tv_sec / 3600;
  9329. mins = (diff.tv_sec % 3600) / 60;
  9330. secs = diff.tv_sec % 60;
  9331. utility = total_accepted / total_secs * 60;
  9332. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  9333. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  9334. applog(LOG_WARNING, "Started at %s", datestamp);
  9335. if (total_pools == 1)
  9336. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  9337. #ifdef WANT_CPUMINE
  9338. if (opt_n_threads > 0)
  9339. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  9340. #endif
  9341. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  9342. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  9343. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  9344. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  9345. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  9346. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  9347. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  9348. total_rejected, total_stale,
  9349. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  9350. );
  9351. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  9352. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  9353. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  9354. applog(LOG_WARNING, "Network transfer: %s (%s)",
  9355. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9356. (float)total_bytes_rcvd,
  9357. (float)total_bytes_sent),
  9358. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9359. (float)(total_bytes_rcvd / total_secs),
  9360. (float)(total_bytes_sent / total_secs)));
  9361. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  9362. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  9363. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  9364. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  9365. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  9366. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  9367. if (total_pools > 1) {
  9368. for (i = 0; i < total_pools; i++) {
  9369. struct pool *pool = pools[i];
  9370. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  9371. if (pool->solved)
  9372. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  9373. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  9374. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  9375. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  9376. pool->rejected, pool->stale_shares,
  9377. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  9378. );
  9379. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  9380. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  9381. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  9382. applog(LOG_WARNING, " Network transfer: %s (%s)",
  9383. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9384. (float)pool->cgminer_pool_stats.net_bytes_received,
  9385. (float)pool->cgminer_pool_stats.net_bytes_sent),
  9386. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9387. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  9388. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  9389. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  9390. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  9391. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  9392. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  9393. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  9394. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  9395. }
  9396. }
  9397. if (opt_quit_summary != BQS_NONE)
  9398. {
  9399. if (opt_quit_summary == BQS_DEFAULT)
  9400. {
  9401. if (total_devices < 25)
  9402. opt_quit_summary = BQS_PROCS;
  9403. else
  9404. opt_quit_summary = BQS_DEVS;
  9405. }
  9406. if (opt_quit_summary == BQS_DETAILED)
  9407. include_serial_in_statline = true;
  9408. applog(LOG_WARNING, "Summary of per device statistics:\n");
  9409. for (i = 0; i < total_devices; ++i) {
  9410. struct cgpu_info *cgpu = get_devices(i);
  9411. if (!cgpu->proc_id)
  9412. {
  9413. // Device summary line
  9414. opt_show_procs = false;
  9415. log_print_status(cgpu);
  9416. opt_show_procs = true;
  9417. }
  9418. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  9419. log_print_status(cgpu);
  9420. }
  9421. }
  9422. if (opt_shares) {
  9423. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  9424. if (opt_shares > total_diff_accepted)
  9425. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  9426. }
  9427. applog(LOG_WARNING, " ");
  9428. fflush(stderr);
  9429. fflush(stdout);
  9430. }
  9431. void _bfg_clean_up(bool restarting)
  9432. {
  9433. #ifdef HAVE_OPENCL
  9434. clear_adl(nDevs);
  9435. #endif
  9436. #ifdef HAVE_LIBUSB
  9437. if (likely(have_libusb))
  9438. libusb_exit(NULL);
  9439. #endif
  9440. cgtime(&total_tv_end);
  9441. #ifdef WIN32
  9442. timeEndPeriod(1);
  9443. #endif
  9444. if (!restarting) {
  9445. /* Attempting to disable curses or print a summary during a
  9446. * restart can lead to a deadlock. */
  9447. #ifdef HAVE_CURSES
  9448. disable_curses();
  9449. #endif
  9450. if (!opt_realquiet && successful_connect)
  9451. print_summary();
  9452. }
  9453. if (opt_n_threads > 0)
  9454. free(cpus);
  9455. curl_global_cleanup();
  9456. #ifdef WIN32
  9457. WSACleanup();
  9458. #endif
  9459. }
  9460. void _quit(int status)
  9461. {
  9462. if (status) {
  9463. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9464. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9465. int *p = NULL;
  9466. // NOTE debugger can bypass with: p = &p
  9467. *p = status; // Segfault, hopefully dumping core
  9468. }
  9469. }
  9470. #if defined(unix) || defined(__APPLE__)
  9471. if (forkpid > 0) {
  9472. kill(forkpid, SIGTERM);
  9473. forkpid = 0;
  9474. }
  9475. #endif
  9476. exit(status);
  9477. }
  9478. #ifdef HAVE_CURSES
  9479. char *curses_input(const char *query)
  9480. {
  9481. char *input;
  9482. echo();
  9483. input = malloc(255);
  9484. if (!input)
  9485. quit(1, "Failed to malloc input");
  9486. leaveok(logwin, false);
  9487. wlogprint("%s:\n", query);
  9488. wgetnstr(logwin, input, 255);
  9489. if (!strlen(input))
  9490. {
  9491. free(input);
  9492. input = NULL;
  9493. }
  9494. leaveok(logwin, true);
  9495. noecho();
  9496. return input;
  9497. }
  9498. #endif
  9499. static void *test_pool_thread(void *arg)
  9500. {
  9501. struct pool *pool = (struct pool *)arg;
  9502. if (pool_active(pool, false)) {
  9503. pool_tset(pool, &pool->lagging);
  9504. pool_tclear(pool, &pool->idle);
  9505. bool first_pool = false;
  9506. cg_wlock(&control_lock);
  9507. if (!pools_active) {
  9508. currentpool = pool;
  9509. if (pool->pool_no != 0)
  9510. first_pool = true;
  9511. pools_active = true;
  9512. }
  9513. cg_wunlock(&control_lock);
  9514. if (unlikely(first_pool))
  9515. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9516. else
  9517. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9518. switch_pools(NULL);
  9519. } else
  9520. pool_died(pool);
  9521. pool->testing = false;
  9522. return NULL;
  9523. }
  9524. /* Always returns true that the pool details were added unless we are not
  9525. * live, implying this is the only pool being added, so if no pools are
  9526. * active it returns false. */
  9527. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9528. {
  9529. size_t siz;
  9530. pool_set_uri(pool, url);
  9531. pool->rpc_user = user;
  9532. pool->rpc_pass = pass;
  9533. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9534. pool->rpc_userpass = malloc(siz);
  9535. if (!pool->rpc_userpass)
  9536. quit(1, "Failed to malloc userpass");
  9537. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9538. pool->testing = true;
  9539. pool->idle = true;
  9540. enable_pool(pool);
  9541. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9542. if (!live) {
  9543. pthread_join(pool->test_thread, NULL);
  9544. return pools_active;
  9545. }
  9546. return true;
  9547. }
  9548. #ifdef HAVE_CURSES
  9549. static bool input_pool(bool live)
  9550. {
  9551. char *url = NULL, *user = NULL, *pass = NULL;
  9552. struct pool *pool;
  9553. bool ret = false;
  9554. immedok(logwin, true);
  9555. wlogprint("Input server details.\n");
  9556. url = curses_input("URL");
  9557. if (!url)
  9558. goto out;
  9559. user = curses_input("Username");
  9560. if (!user)
  9561. goto out;
  9562. pass = curses_input("Password");
  9563. if (!pass)
  9564. pass = calloc(1, 1);
  9565. pool = add_pool();
  9566. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9567. strncmp(url, "https://", 8)) {
  9568. char *httpinput;
  9569. httpinput = malloc(256);
  9570. if (!httpinput)
  9571. quit(1, "Failed to malloc httpinput");
  9572. strcpy(httpinput, "http://");
  9573. strncat(httpinput, url, 248);
  9574. free(url);
  9575. url = httpinput;
  9576. }
  9577. ret = add_pool_details(pool, live, url, user, pass);
  9578. out:
  9579. immedok(logwin, false);
  9580. if (!ret) {
  9581. if (url)
  9582. free(url);
  9583. if (user)
  9584. free(user);
  9585. if (pass)
  9586. free(pass);
  9587. }
  9588. return ret;
  9589. }
  9590. #endif
  9591. #if BLKMAKER_VERSION > 1
  9592. static
  9593. bool _add_local_gbt(const char * const filepath, void *userp)
  9594. {
  9595. const bool * const live_p = userp;
  9596. struct pool *pool;
  9597. char buf[0x100];
  9598. char *rpcuser = NULL, *rpcpass = NULL, *rpcconnect = NULL;
  9599. int rpcport = 0, rpcssl = -101;
  9600. FILE * const F = fopen(filepath, "r");
  9601. if (!F)
  9602. applogr(false, LOG_WARNING, "%s: Failed to open %s for reading", "add_local_gbt", filepath);
  9603. while (fgets(buf, sizeof(buf), F))
  9604. {
  9605. if (!strncasecmp(buf, "rpcuser=", 8))
  9606. rpcuser = trimmed_strdup(&buf[8]);
  9607. else
  9608. if (!strncasecmp(buf, "rpcpassword=", 12))
  9609. rpcpass = trimmed_strdup(&buf[12]);
  9610. else
  9611. if (!strncasecmp(buf, "rpcport=", 8))
  9612. rpcport = atoi(&buf[8]);
  9613. else
  9614. if (!strncasecmp(buf, "rpcssl=", 7))
  9615. rpcssl = atoi(&buf[7]);
  9616. else
  9617. if (!strncasecmp(buf, "rpcconnect=", 11))
  9618. rpcconnect = trimmed_strdup(&buf[11]);
  9619. else
  9620. continue;
  9621. if (rpcuser && rpcpass && rpcport && rpcssl != -101 && rpcconnect)
  9622. break;
  9623. }
  9624. fclose(F);
  9625. if (!rpcpass)
  9626. {
  9627. applog(LOG_DEBUG, "%s: Did not find rpcpassword in %s", "add_local_gbt", filepath);
  9628. err:
  9629. free(rpcuser);
  9630. free(rpcpass);
  9631. goto out;
  9632. }
  9633. if (!rpcport)
  9634. rpcport = 8332;
  9635. if (rpcssl == -101)
  9636. rpcssl = 0;
  9637. const bool have_cbaddr = bytes_len(&opt_coinbase_script);
  9638. const int uri_sz = 0x30;
  9639. char * const uri = malloc(uri_sz);
  9640. snprintf(uri, uri_sz, "http%s://%s:%d/%s#allblocks", rpcssl ? "s" : "", rpcconnect ?: "localhost", rpcport, have_cbaddr ? "" : "#getcbaddr");
  9641. char hfuri[0x40];
  9642. if (rpcconnect)
  9643. snprintf(hfuri, sizeof(hfuri), "%s:%d", rpcconnect, rpcport);
  9644. else
  9645. snprintf(hfuri, sizeof(hfuri), "port %d", rpcport);
  9646. applog(LOG_DEBUG, "Local bitcoin RPC server on %s found in %s", hfuri, filepath);
  9647. for (int i = 0; i < total_pools; ++i)
  9648. {
  9649. struct pool *pool = pools[i];
  9650. if (!(strcmp(pool->rpc_url, uri) || strcmp(pool->rpc_pass, rpcpass)))
  9651. {
  9652. applog(LOG_DEBUG, "Server on %s is already configured, not adding as failover", hfuri);
  9653. free(uri);
  9654. goto err;
  9655. }
  9656. }
  9657. pool = add_pool();
  9658. if (!pool)
  9659. {
  9660. applog(LOG_ERR, "%s: Error adding pool for bitcoin configured in %s", "add_local_gbt", filepath);
  9661. goto err;
  9662. }
  9663. if (!rpcuser)
  9664. rpcuser = "";
  9665. pool->quota = 0;
  9666. adjust_quota_gcd();
  9667. pool->failover_only = true;
  9668. add_pool_details(pool, *live_p, uri, rpcuser, rpcpass);
  9669. applog(LOG_NOTICE, "Added local bitcoin RPC server on %s as pool %d", hfuri, pool->pool_no);
  9670. out:
  9671. return false;
  9672. }
  9673. static
  9674. void add_local_gbt(bool live)
  9675. {
  9676. appdata_file_call("Bitcoin", "bitcoin.conf", _add_local_gbt, &live);
  9677. }
  9678. #endif
  9679. #if defined(unix) || defined(__APPLE__)
  9680. static void fork_monitor()
  9681. {
  9682. // Make a pipe: [readFD, writeFD]
  9683. int pfd[2];
  9684. int r = pipe(pfd);
  9685. if (r < 0) {
  9686. perror("pipe - failed to create pipe for --monitor");
  9687. exit(1);
  9688. }
  9689. // Make stderr write end of pipe
  9690. fflush(stderr);
  9691. r = dup2(pfd[1], 2);
  9692. if (r < 0) {
  9693. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9694. exit(1);
  9695. }
  9696. r = close(pfd[1]);
  9697. if (r < 0) {
  9698. perror("close - failed to close write end of pipe for --monitor");
  9699. exit(1);
  9700. }
  9701. // Don't allow a dying monitor to kill the main process
  9702. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9703. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9704. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9705. perror("signal - failed to edit signal mask for --monitor");
  9706. exit(1);
  9707. }
  9708. // Fork a child process
  9709. forkpid = fork();
  9710. if (forkpid < 0) {
  9711. perror("fork - failed to fork child process for --monitor");
  9712. exit(1);
  9713. }
  9714. // Child: launch monitor command
  9715. if (0 == forkpid) {
  9716. // Make stdin read end of pipe
  9717. r = dup2(pfd[0], 0);
  9718. if (r < 0) {
  9719. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9720. exit(1);
  9721. }
  9722. close(pfd[0]);
  9723. if (r < 0) {
  9724. perror("close - in child, failed to close read end of pipe for --monitor");
  9725. exit(1);
  9726. }
  9727. // Launch user specified command
  9728. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9729. perror("execl - in child failed to exec user specified command for --monitor");
  9730. exit(1);
  9731. }
  9732. // Parent: clean up unused fds and bail
  9733. r = close(pfd[0]);
  9734. if (r < 0) {
  9735. perror("close - failed to close read end of pipe for --monitor");
  9736. exit(1);
  9737. }
  9738. }
  9739. #endif // defined(unix)
  9740. #ifdef HAVE_CURSES
  9741. #ifdef USE_UNICODE
  9742. static
  9743. wchar_t select_unicode_char(const wchar_t *opt)
  9744. {
  9745. for ( ; *opt; ++opt)
  9746. if (iswprint(*opt))
  9747. return *opt;
  9748. return '?';
  9749. }
  9750. #endif
  9751. void enable_curses(void) {
  9752. int x;
  9753. __maybe_unused int y;
  9754. lock_curses();
  9755. if (curses_active) {
  9756. unlock_curses();
  9757. return;
  9758. }
  9759. #ifdef USE_UNICODE
  9760. if (use_unicode)
  9761. {
  9762. setlocale(LC_CTYPE, "");
  9763. if (iswprint(0xb0))
  9764. have_unicode_degrees = true;
  9765. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9766. }
  9767. #endif
  9768. mainwin = initscr();
  9769. start_color();
  9770. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9771. if (ERR != use_default_colors())
  9772. default_bgcolor = -1;
  9773. #endif
  9774. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9775. {
  9776. menu_attr = COLOR_PAIR(1);
  9777. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9778. attr_bad |= COLOR_PAIR(2);
  9779. }
  9780. keypad(mainwin, true);
  9781. getmaxyx(mainwin, y, x);
  9782. statuswin = newwin(logstart, x, 0, 0);
  9783. leaveok(statuswin, true);
  9784. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9785. // We resize the window later anyway, so just start it off at 1 :)
  9786. logwin = newwin(1, 0, logcursor, 0);
  9787. idlok(logwin, true);
  9788. scrollok(logwin, true);
  9789. leaveok(logwin, true);
  9790. cbreak();
  9791. noecho();
  9792. nonl();
  9793. curses_active = true;
  9794. statusy = logstart;
  9795. unlock_curses();
  9796. }
  9797. #endif
  9798. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9799. #ifndef WANT_CPUMINE
  9800. struct device_drv cpu_drv;
  9801. struct device_drv cpu_drv = {
  9802. .name = "CPU",
  9803. };
  9804. #endif
  9805. static int cgminer_id_count = 0;
  9806. static int device_line_id_count;
  9807. void register_device(struct cgpu_info *cgpu)
  9808. {
  9809. cgpu->deven = DEV_ENABLED;
  9810. wr_lock(&devices_lock);
  9811. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9812. wr_unlock(&devices_lock);
  9813. if (!cgpu->proc_id)
  9814. cgpu->device_line_id = device_line_id_count++;
  9815. mining_threads += cgpu->threads ?: 1;
  9816. #ifdef HAVE_CURSES
  9817. adj_width(mining_threads, &dev_width);
  9818. #endif
  9819. rwlock_init(&cgpu->qlock);
  9820. cgpu->queued_work = NULL;
  9821. }
  9822. struct _cgpu_devid_counter {
  9823. char name[4];
  9824. int lastid;
  9825. UT_hash_handle hh;
  9826. };
  9827. void renumber_cgpu(struct cgpu_info *cgpu)
  9828. {
  9829. static struct _cgpu_devid_counter *devids = NULL;
  9830. struct _cgpu_devid_counter *d;
  9831. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9832. if (d)
  9833. cgpu->device_id = ++d->lastid;
  9834. else {
  9835. d = malloc(sizeof(*d));
  9836. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9837. cgpu->device_id = d->lastid = 0;
  9838. HASH_ADD_STR(devids, name, d);
  9839. }
  9840. // Build repr strings
  9841. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9842. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9843. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9844. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9845. const int lpcount = cgpu->procs;
  9846. if (lpcount > 1)
  9847. {
  9848. int ns;
  9849. struct cgpu_info *slave;
  9850. int lpdigits = 1;
  9851. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9852. ++lpdigits;
  9853. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9854. cgpu->proc_repr[5 + lpdigits] = '\0';
  9855. ns = strlen(cgpu->proc_repr_ns);
  9856. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9857. slave = cgpu;
  9858. for (int i = 1; i < lpcount; ++i)
  9859. {
  9860. slave = slave->next_proc;
  9861. strcpy(slave->proc_repr, cgpu->proc_repr);
  9862. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9863. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9864. {
  9865. slave->proc_repr_ns[ns + y] =
  9866. slave->proc_repr[5 + y] += (x % 26);
  9867. }
  9868. }
  9869. }
  9870. }
  9871. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9872. {
  9873. sha256(buffer, length, digest);
  9874. return true;
  9875. }
  9876. static
  9877. int drv_algo_check(const struct device_drv * const drv)
  9878. {
  9879. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9880. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9881. return (algos & algomatch);
  9882. }
  9883. #ifndef HAVE_PTHREAD_CANCEL
  9884. extern void setup_pthread_cancel_workaround();
  9885. extern struct sigaction pcwm_orig_term_handler;
  9886. #endif
  9887. bool bfg_need_detect_rescan;
  9888. extern void probe_device(struct lowlevel_device_info *);
  9889. static void schedule_rescan(const struct timeval *);
  9890. static
  9891. void drv_detect_all()
  9892. {
  9893. bool rescanning = false;
  9894. rescan:
  9895. bfg_need_detect_rescan = false;
  9896. #ifdef HAVE_BFG_LOWLEVEL
  9897. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9898. LL_FOREACH_SAFE(infolist, info, infotmp)
  9899. probe_device(info);
  9900. LL_FOREACH_SAFE(infolist, info, infotmp)
  9901. pthread_join(info->probe_pth, NULL);
  9902. #endif
  9903. struct driver_registration *reg, *tmp;
  9904. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9905. {
  9906. const struct device_drv * const drv = reg->drv;
  9907. if (!(drv_algo_check(drv) && drv->drv_detect))
  9908. continue;
  9909. drv->drv_detect();
  9910. }
  9911. #ifdef HAVE_BFG_LOWLEVEL
  9912. lowlevel_scan_free();
  9913. #endif
  9914. if (bfg_need_detect_rescan)
  9915. {
  9916. if (rescanning)
  9917. {
  9918. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9919. struct timeval tv_when;
  9920. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9921. schedule_rescan(&tv_when);
  9922. }
  9923. else
  9924. {
  9925. rescanning = true;
  9926. applog(LOG_DEBUG, "Device rescan requested");
  9927. goto rescan;
  9928. }
  9929. }
  9930. }
  9931. static
  9932. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9933. {
  9934. struct thr_info *thr;
  9935. int j;
  9936. struct device_drv *api = cgpu->drv;
  9937. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9938. int threadobj = cgpu->threads;
  9939. if (!threadobj)
  9940. // Create a fake thread object to handle hashmeter etc
  9941. threadobj = 1;
  9942. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9943. cgpu->thr[threadobj] = NULL;
  9944. cgpu->status = LIFE_INIT;
  9945. if (opt_devices_enabled_list)
  9946. {
  9947. struct string_elist *enablestr_elist;
  9948. cgpu->deven = DEV_DISABLED;
  9949. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9950. {
  9951. const char * const enablestr = enablestr_elist->string;
  9952. if (cgpu_match(enablestr, cgpu))
  9953. {
  9954. cgpu->deven = DEV_ENABLED;
  9955. break;
  9956. }
  9957. }
  9958. }
  9959. cgpu->max_hashes = 0;
  9960. BFGINIT(cgpu->min_nonce_diff, 1);
  9961. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9962. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9963. // Setup thread structs before starting any of the threads, in case they try to interact
  9964. for (j = 0; j < threadobj; ++j, ++*kp) {
  9965. thr = get_thread(*kp);
  9966. thr->id = *kp;
  9967. thr->cgpu = cgpu;
  9968. thr->device_thread = j;
  9969. thr->work_restart_notifier[1] = INVSOCK;
  9970. thr->mutex_request[1] = INVSOCK;
  9971. thr->_job_transition_in_progress = true;
  9972. timerclear(&thr->tv_morework);
  9973. thr->scanhash_working = true;
  9974. thr->hashes_done = 0;
  9975. timerclear(&thr->tv_hashes_done);
  9976. cgtime(&thr->tv_lastupdate);
  9977. thr->tv_poll.tv_sec = -1;
  9978. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9979. cgpu->thr[j] = thr;
  9980. }
  9981. if (!cgpu->device->threads)
  9982. notifier_init_invalid(cgpu->thr[0]->notifier);
  9983. else
  9984. if (!cgpu->threads)
  9985. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9986. else
  9987. for (j = 0; j < cgpu->threads; ++j)
  9988. {
  9989. thr = cgpu->thr[j];
  9990. notifier_init(thr->notifier);
  9991. }
  9992. }
  9993. static
  9994. void start_cgpu(struct cgpu_info *cgpu)
  9995. {
  9996. struct thr_info *thr;
  9997. int j;
  9998. for (j = 0; j < cgpu->threads; ++j) {
  9999. thr = cgpu->thr[j];
  10000. /* Enable threads for devices set not to mine but disable
  10001. * their queue in case we wish to enable them later */
  10002. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  10003. continue;
  10004. thread_reportout(thr);
  10005. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  10006. quit(1, "thread %d create failed", thr->id);
  10007. notifier_wake(thr->notifier);
  10008. }
  10009. if (cgpu->deven == DEV_ENABLED)
  10010. proc_enable(cgpu);
  10011. }
  10012. static
  10013. void _scan_serial(void *p)
  10014. {
  10015. const char *s = p;
  10016. struct string_elist *iter, *tmp;
  10017. struct string_elist *orig_scan_devices = scan_devices;
  10018. if (s)
  10019. {
  10020. // Make temporary scan_devices list
  10021. scan_devices = NULL;
  10022. string_elist_add("noauto", &scan_devices);
  10023. add_serial(s);
  10024. }
  10025. drv_detect_all();
  10026. if (s)
  10027. {
  10028. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  10029. {
  10030. string_elist_del(&scan_devices, iter);
  10031. }
  10032. scan_devices = orig_scan_devices;
  10033. }
  10034. }
  10035. #ifdef HAVE_BFG_LOWLEVEL
  10036. static
  10037. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  10038. {
  10039. if (!(false
  10040. || (info->serial && !strcasecmp(ser, info->serial))
  10041. || (info->path && !strcasecmp(ser, info->path ))
  10042. || (info->devid && !strcasecmp(ser, info->devid ))
  10043. ))
  10044. {
  10045. char *devid = devpath_to_devid(ser);
  10046. if (!devid)
  10047. return false;
  10048. const bool different = strcmp(info->devid, devid);
  10049. free(devid);
  10050. if (different)
  10051. return false;
  10052. }
  10053. return true;
  10054. }
  10055. static
  10056. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  10057. {
  10058. struct driver_registration *dreg;
  10059. char dname[dnamelen];
  10060. int i;
  10061. for (i = 0; i < dnamelen; ++i)
  10062. dname[i] = tolower(_dname[i]);
  10063. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  10064. if (!dreg)
  10065. {
  10066. for (i = 0; i < dnamelen; ++i)
  10067. dname[i] = toupper(_dname[i]);
  10068. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  10069. if (!dreg)
  10070. return NULL;
  10071. }
  10072. if (!drv_algo_check(dreg->drv))
  10073. return NULL;
  10074. return dreg->drv;
  10075. }
  10076. static
  10077. bool _probe_device_do_probe(const struct device_drv * const drv, const struct lowlevel_device_info * const info, bool * const request_rescan_p)
  10078. {
  10079. bfg_probe_result_flags = 0;
  10080. if (drv->lowl_probe(info))
  10081. {
  10082. if (!(bfg_probe_result_flags & BPR_CONTINUE_PROBES))
  10083. return true;
  10084. }
  10085. else
  10086. if (request_rescan_p && opt_hotplug && !(bfg_probe_result_flags & BPR_DONT_RESCAN))
  10087. *request_rescan_p = true;
  10088. return false;
  10089. }
  10090. bool dummy_check_never_true = false;
  10091. static
  10092. void *probe_device_thread(void *p)
  10093. {
  10094. struct lowlevel_device_info * const infolist = p;
  10095. struct lowlevel_device_info *info = infolist;
  10096. bool request_rescan = false;
  10097. {
  10098. char threadname[5 + strlen(info->devid) + 1];
  10099. sprintf(threadname, "probe_%s", info->devid);
  10100. RenameThread(threadname);
  10101. }
  10102. // If already in use, ignore
  10103. if (bfg_claim_any(NULL, NULL, info->devid))
  10104. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  10105. __func__, info->product);
  10106. // if lowlevel device matches specific user assignment, probe requested driver(s)
  10107. struct string_elist *sd_iter, *sd_tmp;
  10108. struct driver_registration *dreg, *dreg_tmp;
  10109. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  10110. {
  10111. const char * const dname = sd_iter->string;
  10112. const char * const colon = strpbrk(dname, ":@");
  10113. if (!(colon && colon != dname))
  10114. continue;
  10115. const char * const ser = &colon[1];
  10116. LL_FOREACH2(infolist, info, same_devid_next)
  10117. {
  10118. if (!_probe_device_match(info, ser))
  10119. continue;
  10120. const size_t dnamelen = (colon - dname);
  10121. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  10122. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  10123. continue;
  10124. if (_probe_device_do_probe(drv, info, &request_rescan))
  10125. return NULL;
  10126. }
  10127. }
  10128. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  10129. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  10130. {
  10131. const struct device_drv * const drv = dreg->drv;
  10132. if (!drv_algo_check(drv))
  10133. continue;
  10134. // Check for "noauto" flag
  10135. // NOTE: driver-specific configuration overrides general
  10136. bool doauto = true;
  10137. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  10138. {
  10139. const char * const dname = sd_iter->string;
  10140. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  10141. const char *colon = strchr(dname, ':');
  10142. if (!colon)
  10143. colon = &dname[-1];
  10144. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  10145. continue;
  10146. const ssize_t dnamelen = (colon - dname);
  10147. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  10148. continue;
  10149. doauto = (tolower(colon[1]) == 'a');
  10150. if (dnamelen != -1)
  10151. break;
  10152. }
  10153. if (doauto && drv->lowl_match)
  10154. {
  10155. LL_FOREACH2(infolist, info, same_devid_next)
  10156. {
  10157. /*
  10158. The below call to applog is absolutely necessary
  10159. Starting with commit 76d0cc183b1c9ddcc0ef34d2e43bc696ef9de92e installing BFGMiner on
  10160. Mac OS X using Homebrew results in a binary that segfaults on startup
  10161. There are two unresolved issues:
  10162. 1) The BFGMiner authors cannot find a way to install BFGMiner with Homebrew that results
  10163. in debug symbols being available to help troubleshoot the issue
  10164. 2) The issue disappears when unrelated code changes are made, such as adding the following
  10165. call to applog with infolist and / or p
  10166. We would encourage revisiting this in the future to come up with a more concrete solution
  10167. Reproducing should only require commenting / removing the following line and installing
  10168. BFGMiner using "brew install bfgminer --HEAD"
  10169. */
  10170. if (dummy_check_never_true)
  10171. applog(LOG_DEBUG, "lowl_match: %p(%s) %p %p %p", drv, drv->dname, info, infolist, p);
  10172. if (!drv->lowl_match(info))
  10173. continue;
  10174. if (_probe_device_do_probe(drv, info, &request_rescan))
  10175. return NULL;
  10176. }
  10177. }
  10178. }
  10179. // probe driver(s) with 'all' enabled
  10180. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  10181. {
  10182. const char * const dname = sd_iter->string;
  10183. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  10184. const char * const colon = strchr(dname, ':');
  10185. if (!colon)
  10186. {
  10187. LL_FOREACH2(infolist, info, same_devid_next)
  10188. {
  10189. if (
  10190. #ifdef NEED_BFG_LOWL_VCOM
  10191. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  10192. #endif
  10193. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  10194. {
  10195. bool dont_rescan = false;
  10196. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  10197. {
  10198. const struct device_drv * const drv = dreg->drv;
  10199. if (!drv_algo_check(drv))
  10200. continue;
  10201. if (drv->lowl_probe_by_name_only)
  10202. continue;
  10203. if (!drv->lowl_probe)
  10204. continue;
  10205. if (_probe_device_do_probe(drv, info, NULL))
  10206. return NULL;
  10207. if (bfg_probe_result_flags & BPR_DONT_RESCAN)
  10208. dont_rescan = true;
  10209. }
  10210. if (opt_hotplug && !dont_rescan)
  10211. request_rescan = true;
  10212. break;
  10213. }
  10214. }
  10215. continue;
  10216. }
  10217. if (strcasecmp(&colon[1], "all"))
  10218. continue;
  10219. const size_t dnamelen = (colon - dname);
  10220. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  10221. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  10222. continue;
  10223. LL_FOREACH2(infolist, info, same_devid_next)
  10224. {
  10225. if (info->lowl->exclude_from_all)
  10226. continue;
  10227. if (_probe_device_do_probe(drv, info, NULL))
  10228. return NULL;
  10229. }
  10230. }
  10231. // Only actually request a rescan if we never found any cgpu
  10232. if (request_rescan)
  10233. bfg_need_detect_rescan = true;
  10234. return NULL;
  10235. }
  10236. void probe_device(struct lowlevel_device_info * const info)
  10237. {
  10238. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  10239. }
  10240. #endif
  10241. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  10242. {
  10243. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  10244. int devcount, i, mining_threads_new = 0;
  10245. unsigned int k;
  10246. struct cgpu_info *cgpu;
  10247. struct thr_info *thr;
  10248. void *p;
  10249. mutex_lock(&mutex);
  10250. devcount = total_devices;
  10251. addfunc(arg);
  10252. if (!total_devices_new)
  10253. goto out;
  10254. wr_lock(&devices_lock);
  10255. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  10256. if (unlikely(!p))
  10257. {
  10258. wr_unlock(&devices_lock);
  10259. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  10260. goto out;
  10261. }
  10262. devices = p;
  10263. wr_unlock(&devices_lock);
  10264. for (i = 0; i < total_devices_new; ++i)
  10265. {
  10266. cgpu = devices_new[i];
  10267. mining_threads_new += cgpu->threads ?: 1;
  10268. }
  10269. wr_lock(&mining_thr_lock);
  10270. mining_threads_new += mining_threads;
  10271. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  10272. if (unlikely(!p))
  10273. {
  10274. wr_unlock(&mining_thr_lock);
  10275. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  10276. goto out;
  10277. }
  10278. mining_thr = p;
  10279. wr_unlock(&mining_thr_lock);
  10280. for (i = mining_threads; i < mining_threads_new; ++i) {
  10281. mining_thr[i] = calloc(1, sizeof(*thr));
  10282. if (!mining_thr[i])
  10283. {
  10284. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  10285. for ( ; --i >= mining_threads; )
  10286. free(mining_thr[i]);
  10287. goto out;
  10288. }
  10289. }
  10290. k = mining_threads;
  10291. for (i = 0; i < total_devices_new; ++i)
  10292. {
  10293. cgpu = devices_new[i];
  10294. allocate_cgpu(cgpu, &k);
  10295. }
  10296. for (i = 0; i < total_devices_new; ++i)
  10297. {
  10298. cgpu = devices_new[i];
  10299. start_cgpu(cgpu);
  10300. register_device(cgpu);
  10301. ++total_devices;
  10302. }
  10303. #ifdef HAVE_CURSES
  10304. switch_logsize();
  10305. #endif
  10306. out:
  10307. total_devices_new = 0;
  10308. devcount = total_devices - devcount;
  10309. mutex_unlock(&mutex);
  10310. return devcount;
  10311. }
  10312. int scan_serial(const char *s)
  10313. {
  10314. return create_new_cgpus(_scan_serial, (void*)s);
  10315. }
  10316. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  10317. static bool rescan_active;
  10318. static struct timeval tv_rescan;
  10319. static notifier_t rescan_notifier;
  10320. static
  10321. void *rescan_thread(__maybe_unused void *p)
  10322. {
  10323. pthread_detach(pthread_self());
  10324. RenameThread("rescan");
  10325. struct timeval tv_timeout, tv_now;
  10326. fd_set rfds;
  10327. while (true)
  10328. {
  10329. mutex_lock(&rescan_mutex);
  10330. tv_timeout = tv_rescan;
  10331. if (!timer_isset(&tv_timeout))
  10332. {
  10333. rescan_active = false;
  10334. mutex_unlock(&rescan_mutex);
  10335. break;
  10336. }
  10337. mutex_unlock(&rescan_mutex);
  10338. FD_ZERO(&rfds);
  10339. FD_SET(rescan_notifier[0], &rfds);
  10340. const int maxfd = rescan_notifier[0];
  10341. timer_set_now(&tv_now);
  10342. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  10343. notifier_read(rescan_notifier);
  10344. mutex_lock(&rescan_mutex);
  10345. if (timer_passed(&tv_rescan, NULL))
  10346. {
  10347. timer_unset(&tv_rescan);
  10348. mutex_unlock(&rescan_mutex);
  10349. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  10350. scan_serial(NULL);
  10351. }
  10352. else
  10353. mutex_unlock(&rescan_mutex);
  10354. }
  10355. return NULL;
  10356. }
  10357. static
  10358. void _schedule_rescan(const struct timeval * const tvp_when)
  10359. {
  10360. if (rescan_active)
  10361. {
  10362. if (timercmp(tvp_when, &tv_rescan, <))
  10363. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  10364. else
  10365. {
  10366. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  10367. tv_rescan = *tvp_when;
  10368. }
  10369. return;
  10370. }
  10371. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  10372. tv_rescan = *tvp_when;
  10373. rescan_active = true;
  10374. static pthread_t pth;
  10375. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  10376. applog(LOG_ERR, "Failed to start rescan thread");
  10377. }
  10378. static
  10379. void schedule_rescan(const struct timeval * const tvp_when)
  10380. {
  10381. mutex_lock(&rescan_mutex);
  10382. _schedule_rescan(tvp_when);
  10383. mutex_unlock(&rescan_mutex);
  10384. }
  10385. #ifdef HAVE_BFG_HOTPLUG
  10386. static
  10387. void hotplug_trigger()
  10388. {
  10389. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  10390. struct timeval tv_now;
  10391. timer_set_now(&tv_now);
  10392. schedule_rescan(&tv_now);
  10393. }
  10394. #endif
  10395. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  10396. static
  10397. void *hotplug_thread(__maybe_unused void *p)
  10398. {
  10399. pthread_detach(pthread_self());
  10400. RenameThread("hotplug");
  10401. struct udev * const udev = udev_new();
  10402. if (unlikely(!udev))
  10403. applogfailr(NULL, LOG_ERR, "udev_new");
  10404. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  10405. if (unlikely(!mon))
  10406. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  10407. if (unlikely(udev_monitor_enable_receiving(mon)))
  10408. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  10409. const int epfd = epoll_create(1);
  10410. if (unlikely(epfd == -1))
  10411. applogfailr(NULL, LOG_ERR, "epoll_create");
  10412. {
  10413. const int fd = udev_monitor_get_fd(mon);
  10414. struct epoll_event ev = {
  10415. .events = EPOLLIN | EPOLLPRI,
  10416. .data.fd = fd,
  10417. };
  10418. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  10419. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  10420. }
  10421. struct epoll_event ev;
  10422. int rv;
  10423. bool pending = false;
  10424. while (true)
  10425. {
  10426. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  10427. if (rv == -1)
  10428. {
  10429. if (errno == EAGAIN || errno == EINTR)
  10430. continue;
  10431. break;
  10432. }
  10433. if (!rv)
  10434. {
  10435. hotplug_trigger();
  10436. pending = false;
  10437. continue;
  10438. }
  10439. struct udev_device * const device = udev_monitor_receive_device(mon);
  10440. if (!device)
  10441. continue;
  10442. const char * const action = udev_device_get_action(device);
  10443. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  10444. if (!strcmp(action, "add"))
  10445. pending = true;
  10446. udev_device_unref(device);
  10447. }
  10448. applogfailr(NULL, LOG_ERR, "epoll_wait");
  10449. }
  10450. #elif defined(WIN32)
  10451. static UINT_PTR _hotplug_wintimer_id;
  10452. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  10453. {
  10454. KillTimer(NULL, _hotplug_wintimer_id);
  10455. _hotplug_wintimer_id = 0;
  10456. hotplug_trigger();
  10457. }
  10458. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  10459. {
  10460. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  10461. {
  10462. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  10463. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  10464. }
  10465. return DefWindowProc(hwnd, msg, wParam, lParam);
  10466. }
  10467. static
  10468. void *hotplug_thread(__maybe_unused void *p)
  10469. {
  10470. pthread_detach(pthread_self());
  10471. WNDCLASS DummyWinCls = {
  10472. .lpszClassName = "BFGDummyWinCls",
  10473. .lpfnWndProc = hotplug_win_callback,
  10474. };
  10475. ATOM a = RegisterClass(&DummyWinCls);
  10476. if (unlikely(!a))
  10477. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  10478. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  10479. if (unlikely(!hwnd))
  10480. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  10481. MSG msg;
  10482. while (GetMessage(&msg, NULL, 0, 0))
  10483. {
  10484. TranslateMessage(&msg);
  10485. DispatchMessage(&msg);
  10486. }
  10487. quit(0, "WM_QUIT received");
  10488. return NULL;
  10489. }
  10490. #endif
  10491. #ifdef HAVE_BFG_HOTPLUG
  10492. static
  10493. void hotplug_start()
  10494. {
  10495. pthread_t pth;
  10496. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  10497. applog(LOG_ERR, "Failed to start hotplug thread");
  10498. }
  10499. #endif
  10500. static void probe_pools(void)
  10501. {
  10502. int i;
  10503. for (i = 0; i < total_pools; i++) {
  10504. struct pool *pool = pools[i];
  10505. pool->testing = true;
  10506. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  10507. }
  10508. }
  10509. static void raise_fd_limits(void)
  10510. {
  10511. #ifdef HAVE_SETRLIMIT
  10512. struct rlimit fdlimit;
  10513. rlim_t old_soft_limit;
  10514. char frombuf[0x10] = "unlimited";
  10515. char hardbuf[0x10] = "unlimited";
  10516. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  10517. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  10518. old_soft_limit = fdlimit.rlim_cur;
  10519. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  10520. fdlimit.rlim_cur = FD_SETSIZE;
  10521. else
  10522. fdlimit.rlim_cur = fdlimit.rlim_max;
  10523. if (fdlimit.rlim_max != RLIM_INFINITY)
  10524. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  10525. if (old_soft_limit != RLIM_INFINITY)
  10526. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  10527. if (fdlimit.rlim_cur == old_soft_limit)
  10528. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10529. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  10530. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  10531. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10532. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10533. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10534. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10535. #else
  10536. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  10537. #endif
  10538. }
  10539. static
  10540. void bfg_atexit(void)
  10541. {
  10542. puts("");
  10543. }
  10544. extern void bfg_init_threadlocal();
  10545. extern void stratumsrv_start();
  10546. extern void test_aan_pll(void);
  10547. int main(int argc, char *argv[])
  10548. {
  10549. struct sigaction handler;
  10550. struct thr_info *thr;
  10551. struct block *block;
  10552. unsigned int k;
  10553. int i;
  10554. int rearrange_pools = 0;
  10555. char *s;
  10556. #ifdef WIN32
  10557. LoadLibrary("backtrace.dll");
  10558. #endif
  10559. atexit(bfg_atexit);
  10560. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  10561. bfg_init_threadlocal();
  10562. #ifndef HAVE_PTHREAD_CANCEL
  10563. setup_pthread_cancel_workaround();
  10564. #endif
  10565. bfg_init_checksums();
  10566. #ifdef WIN32
  10567. {
  10568. WSADATA wsa;
  10569. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10570. if (i)
  10571. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10572. }
  10573. #endif
  10574. /* This dangerous functions tramples random dynamically allocated
  10575. * variables so do it before anything at all */
  10576. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10577. quit(1, "Failed to curl_global_init");
  10578. initial_args = malloc(sizeof(char *) * (argc + 1));
  10579. for (i = 0; i < argc; i++)
  10580. initial_args[i] = strdup(argv[i]);
  10581. initial_args[argc] = NULL;
  10582. mutex_init(&hash_lock);
  10583. mutex_init(&console_lock);
  10584. cglock_init(&control_lock);
  10585. mutex_init(&stats_lock);
  10586. mutex_init(&sharelog_lock);
  10587. cglock_init(&ch_lock);
  10588. mutex_init(&sshare_lock);
  10589. rwlock_init(&blk_lock);
  10590. rwlock_init(&netacc_lock);
  10591. rwlock_init(&mining_thr_lock);
  10592. rwlock_init(&devices_lock);
  10593. mutex_init(&lp_lock);
  10594. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10595. quit(1, "Failed to pthread_cond_init lp_cond");
  10596. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10597. quit(1, "Failed to pthread_cond_init gws_cond");
  10598. notifier_init(submit_waiting_notifier);
  10599. timer_unset(&tv_rescan);
  10600. notifier_init(rescan_notifier);
  10601. /* Create a unique get work queue */
  10602. getq = tq_new();
  10603. if (!getq)
  10604. quit(1, "Failed to create getq");
  10605. /* We use the getq mutex as the staged lock */
  10606. stgd_lock = &getq->mutex;
  10607. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10608. #ifdef WANT_CPUMINE
  10609. init_max_name_len();
  10610. #endif
  10611. handler.sa_handler = &sighandler;
  10612. handler.sa_flags = 0;
  10613. sigemptyset(&handler.sa_mask);
  10614. #ifdef HAVE_PTHREAD_CANCEL
  10615. sigaction(SIGTERM, &handler, &termhandler);
  10616. #else
  10617. // Need to let pthread_cancel emulation handle SIGTERM first
  10618. termhandler = pcwm_orig_term_handler;
  10619. pcwm_orig_term_handler = handler;
  10620. #endif
  10621. sigaction(SIGINT, &handler, &inthandler);
  10622. #ifndef WIN32
  10623. signal(SIGPIPE, SIG_IGN);
  10624. #else
  10625. timeBeginPeriod(1);
  10626. #endif
  10627. opt_kernel_path = CGMINER_PREFIX;
  10628. cgminer_path = alloca(PATH_MAX);
  10629. s = strdup(argv[0]);
  10630. strcpy(cgminer_path, dirname(s));
  10631. free(s);
  10632. strcat(cgminer_path, "/");
  10633. #if defined(WANT_CPUMINE) && defined(WIN32)
  10634. {
  10635. char buf[32];
  10636. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10637. if (gev > 0 && gev < sizeof(buf))
  10638. {
  10639. setup_benchmark_pool();
  10640. double rate = bench_algo_stage3(atoi(buf));
  10641. // Write result to shared memory for parent
  10642. char unique_name[64];
  10643. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10644. {
  10645. HANDLE map_handle = CreateFileMapping(
  10646. INVALID_HANDLE_VALUE, // use paging file
  10647. NULL, // default security attributes
  10648. PAGE_READWRITE, // read/write access
  10649. 0, // size: high 32-bits
  10650. 4096, // size: low 32-bits
  10651. unique_name // name of map object
  10652. );
  10653. if (NULL != map_handle) {
  10654. void *shared_mem = MapViewOfFile(
  10655. map_handle, // object to map view of
  10656. FILE_MAP_WRITE, // read/write access
  10657. 0, // high offset: map from
  10658. 0, // low offset: beginning
  10659. 0 // default: map entire file
  10660. );
  10661. if (NULL != shared_mem)
  10662. CopyMemory(shared_mem, &rate, sizeof(rate));
  10663. (void)UnmapViewOfFile(shared_mem);
  10664. }
  10665. (void)CloseHandle(map_handle);
  10666. }
  10667. exit(0);
  10668. }
  10669. }
  10670. #endif
  10671. devcursor = 8;
  10672. logstart = devcursor;
  10673. logcursor = logstart;
  10674. block = calloc(sizeof(struct block), 1);
  10675. if (unlikely(!block))
  10676. quit (1, "main OOM");
  10677. for (i = 0; i < 36; i++)
  10678. strcat(block->hash, "0");
  10679. HASH_ADD_STR(blocks, hash, block);
  10680. strcpy(current_block, block->hash);
  10681. mutex_init(&submitting_lock);
  10682. #ifdef HAVE_OPENCL
  10683. opencl_early_init();
  10684. #endif
  10685. schedstart.tm.tm_sec = 1;
  10686. schedstop .tm.tm_sec = 1;
  10687. opt_register_table(opt_early_table, NULL);
  10688. opt_register_table(opt_config_table, NULL);
  10689. opt_register_table(opt_cmdline_table, NULL);
  10690. opt_early_parse(argc, argv, applog_and_exit);
  10691. if (!config_loaded)
  10692. {
  10693. load_default_config();
  10694. rearrange_pools = total_pools;
  10695. }
  10696. opt_free_table();
  10697. /* parse command line */
  10698. opt_register_table(opt_config_table,
  10699. "Options for both config file and command line");
  10700. opt_register_table(opt_cmdline_table,
  10701. "Options for command line only");
  10702. opt_parse(&argc, argv, applog_and_exit);
  10703. if (argc != 1)
  10704. quit(1, "Unexpected extra commandline arguments");
  10705. if (rearrange_pools && rearrange_pools < total_pools)
  10706. {
  10707. // Prioritise commandline pools before default-config pools
  10708. for (i = 0; i < rearrange_pools; ++i)
  10709. pools[i]->prio += rearrange_pools;
  10710. for ( ; i < total_pools; ++i)
  10711. pools[i]->prio -= rearrange_pools;
  10712. }
  10713. #ifndef HAVE_PTHREAD_CANCEL
  10714. // Can't do this any earlier, or config isn't loaded
  10715. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10716. #endif
  10717. #ifdef HAVE_PWD_H
  10718. struct passwd *user_info = NULL;
  10719. if (opt_setuid != NULL) {
  10720. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10721. quit(1, "Unable to find setuid user information");
  10722. }
  10723. }
  10724. #endif
  10725. #ifdef HAVE_CHROOT
  10726. if (chroot_dir != NULL) {
  10727. #ifdef HAVE_PWD_H
  10728. if (user_info == NULL && getuid() == 0) {
  10729. applog(LOG_WARNING, "Running as root inside chroot");
  10730. }
  10731. #endif
  10732. if (chroot(chroot_dir) != 0) {
  10733. quit(1, "Unable to chroot");
  10734. }
  10735. if (chdir("/"))
  10736. quit(1, "Unable to chdir to chroot");
  10737. }
  10738. #endif
  10739. #ifdef HAVE_PWD_H
  10740. if (user_info != NULL) {
  10741. if (setgid((*user_info).pw_gid) != 0)
  10742. quit(1, "Unable to setgid");
  10743. if (setuid((*user_info).pw_uid) != 0)
  10744. quit(1, "Unable to setuid");
  10745. }
  10746. #endif
  10747. raise_fd_limits();
  10748. if (opt_benchmark) {
  10749. while (total_pools)
  10750. remove_pool(pools[0]);
  10751. setup_benchmark_pool();
  10752. }
  10753. if (opt_unittest) {
  10754. test_cgpu_match();
  10755. test_intrange();
  10756. test_decimal_width();
  10757. test_domain_funcs();
  10758. #ifdef USE_SCRYPT
  10759. test_scrypt();
  10760. #endif
  10761. test_target();
  10762. test_uri_get_param();
  10763. utf8_test();
  10764. #ifdef USE_JINGTIAN
  10765. test_aan_pll();
  10766. #endif
  10767. }
  10768. #ifdef HAVE_CURSES
  10769. if (opt_realquiet || opt_display_devs)
  10770. use_curses = false;
  10771. setlocale(LC_ALL, "C");
  10772. if (use_curses)
  10773. enable_curses();
  10774. #endif
  10775. #ifdef HAVE_LIBUSB
  10776. int err = libusb_init(NULL);
  10777. if (err)
  10778. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10779. else
  10780. have_libusb = true;
  10781. #endif
  10782. applog(LOG_WARNING, "Started %s", packagename);
  10783. {
  10784. struct bfg_loaded_configfile *configfile;
  10785. LL_FOREACH(bfg_loaded_configfiles, configfile)
  10786. {
  10787. char * const cnfbuf = configfile->filename;
  10788. int fileconf_load = configfile->fileconf_load;
  10789. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10790. switch (fileconf_load) {
  10791. case 0:
  10792. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10793. applog(LOG_WARNING, "Configuration file could not be used.");
  10794. break;
  10795. case -1:
  10796. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10797. if (use_curses)
  10798. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10799. break;
  10800. default:
  10801. break;
  10802. }
  10803. }
  10804. }
  10805. i = strlen(opt_kernel_path) + 2;
  10806. char __kernel_path[i];
  10807. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10808. opt_kernel_path = __kernel_path;
  10809. if (want_per_device_stats)
  10810. opt_log_output = true;
  10811. #ifdef WANT_CPUMINE
  10812. #ifdef USE_SCRYPT
  10813. if (opt_scrypt)
  10814. set_scrypt_algo(&opt_algo);
  10815. #endif
  10816. #endif
  10817. bfg_devapi_init();
  10818. drv_detect_all();
  10819. total_devices = total_devices_new;
  10820. devices = devices_new;
  10821. total_devices_new = 0;
  10822. devices_new = NULL;
  10823. if (opt_display_devs) {
  10824. int devcount = 0;
  10825. applog(LOG_ERR, "Devices detected:");
  10826. for (i = 0; i < total_devices; ++i) {
  10827. struct cgpu_info *cgpu = devices[i];
  10828. char buf[0x100];
  10829. if (cgpu->device != cgpu)
  10830. continue;
  10831. if (cgpu->name)
  10832. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10833. else
  10834. if (cgpu->dev_manufacturer)
  10835. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10836. else
  10837. if (cgpu->dev_product)
  10838. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10839. else
  10840. strcpy(buf, " Device");
  10841. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10842. if (cgpu->dev_serial)
  10843. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10844. if (cgpu->device_path)
  10845. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10846. tailsprintf(buf, sizeof(buf), ")");
  10847. _applog(LOG_NOTICE, buf);
  10848. ++devcount;
  10849. }
  10850. quit(0, "%d devices listed", devcount);
  10851. }
  10852. mining_threads = 0;
  10853. for (i = 0; i < total_devices; ++i)
  10854. register_device(devices[i]);
  10855. if (!total_devices) {
  10856. applog(LOG_WARNING, "No devices detected!");
  10857. if (use_curses)
  10858. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10859. else
  10860. applog(LOG_WARNING, "Waiting for devices");
  10861. }
  10862. #ifdef HAVE_CURSES
  10863. switch_logsize();
  10864. #endif
  10865. #if BLKMAKER_VERSION > 1
  10866. if (opt_load_bitcoin_conf && !(opt_scrypt || opt_benchmark))
  10867. add_local_gbt(total_pools);
  10868. #endif
  10869. if (!total_pools) {
  10870. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10871. #ifdef HAVE_CURSES
  10872. if (!use_curses || !input_pool(false))
  10873. #endif
  10874. quit(1, "Pool setup failed");
  10875. }
  10876. for (i = 0; i < total_pools; i++) {
  10877. struct pool *pool = pools[i];
  10878. size_t siz;
  10879. if (!pool->rpc_url)
  10880. quit(1, "No URI supplied for pool %u", i);
  10881. if (!pool->rpc_userpass) {
  10882. if (!pool->rpc_user || !pool->rpc_pass)
  10883. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10884. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10885. pool->rpc_userpass = malloc(siz);
  10886. if (!pool->rpc_userpass)
  10887. quit(1, "Failed to malloc userpass");
  10888. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10889. }
  10890. }
  10891. /* Set the currentpool to pool with priority 0 */
  10892. validate_pool_priorities();
  10893. for (i = 0; i < total_pools; i++) {
  10894. struct pool *pool = pools[i];
  10895. if (!pool->prio)
  10896. currentpool = pool;
  10897. }
  10898. #ifdef HAVE_SYSLOG_H
  10899. if (use_syslog)
  10900. openlog(PACKAGE, LOG_PID, LOG_USER);
  10901. #endif
  10902. #if defined(unix) || defined(__APPLE__)
  10903. if (opt_stderr_cmd)
  10904. fork_monitor();
  10905. #endif // defined(unix)
  10906. mining_thr = calloc(mining_threads, sizeof(thr));
  10907. if (!mining_thr)
  10908. quit(1, "Failed to calloc mining_thr");
  10909. for (i = 0; i < mining_threads; i++) {
  10910. mining_thr[i] = calloc(1, sizeof(*thr));
  10911. if (!mining_thr[i])
  10912. quit(1, "Failed to calloc mining_thr[%d]", i);
  10913. }
  10914. total_control_threads = 6;
  10915. control_thr = calloc(total_control_threads, sizeof(*thr));
  10916. if (!control_thr)
  10917. quit(1, "Failed to calloc control_thr");
  10918. if (opt_benchmark)
  10919. goto begin_bench;
  10920. applog(LOG_NOTICE, "Probing for an alive pool");
  10921. do {
  10922. bool still_testing;
  10923. int i;
  10924. /* Look for at least one active pool before starting */
  10925. probe_pools();
  10926. do {
  10927. sleep(1);
  10928. if (pools_active)
  10929. break;
  10930. still_testing = false;
  10931. for (int i = 0; i < total_pools; ++i)
  10932. if (pools[i]->testing)
  10933. still_testing = true;
  10934. } while (still_testing);
  10935. if (!pools_active) {
  10936. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10937. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10938. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10939. for (i = 0; i < total_pools; i++) {
  10940. struct pool *pool;
  10941. pool = pools[i];
  10942. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10943. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10944. }
  10945. #ifdef HAVE_CURSES
  10946. if (use_curses) {
  10947. halfdelay(150);
  10948. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10949. if (getch() != ERR)
  10950. quit(0, "No servers could be used! Exiting.");
  10951. cbreak();
  10952. } else
  10953. #endif
  10954. quit(0, "No servers could be used! Exiting.");
  10955. }
  10956. } while (!pools_active);
  10957. #ifdef USE_SCRYPT
  10958. if (detect_algo == 1 && !opt_scrypt) {
  10959. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10960. opt_scrypt = true;
  10961. }
  10962. #endif
  10963. detect_algo = 0;
  10964. begin_bench:
  10965. total_mhashes_done = 0;
  10966. for (i = 0; i < total_devices; i++) {
  10967. struct cgpu_info *cgpu = devices[i];
  10968. cgpu->rolling = cgpu->total_mhashes = 0;
  10969. }
  10970. cgtime(&total_tv_start);
  10971. cgtime(&total_tv_end);
  10972. miner_started = total_tv_start;
  10973. time_t miner_start_ts = time(NULL);
  10974. if (schedstart.tm.tm_sec)
  10975. localtime_r(&miner_start_ts, &schedstart.tm);
  10976. if (schedstop.tm.tm_sec)
  10977. localtime_r(&miner_start_ts, &schedstop .tm);
  10978. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10979. // Initialise processors and threads
  10980. k = 0;
  10981. for (i = 0; i < total_devices; ++i) {
  10982. struct cgpu_info *cgpu = devices[i];
  10983. allocate_cgpu(cgpu, &k);
  10984. }
  10985. // Start threads
  10986. for (i = 0; i < total_devices; ++i) {
  10987. struct cgpu_info *cgpu = devices[i];
  10988. start_cgpu(cgpu);
  10989. }
  10990. #ifdef HAVE_OPENCL
  10991. for (i = 0; i < nDevs; i++)
  10992. pause_dynamic_threads(i);
  10993. #endif
  10994. #ifdef WANT_CPUMINE
  10995. if (opt_n_threads > 0)
  10996. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10997. opt_n_threads, algo_names[opt_algo]);
  10998. #endif
  10999. cgtime(&total_tv_start);
  11000. cgtime(&total_tv_end);
  11001. if (!opt_benchmark)
  11002. {
  11003. pthread_t submit_thread;
  11004. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  11005. quit(1, "submit_work thread create failed");
  11006. }
  11007. watchpool_thr_id = 1;
  11008. thr = &control_thr[watchpool_thr_id];
  11009. /* start watchpool thread */
  11010. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  11011. quit(1, "watchpool thread create failed");
  11012. pthread_detach(thr->pth);
  11013. watchdog_thr_id = 2;
  11014. thr = &control_thr[watchdog_thr_id];
  11015. /* start watchdog thread */
  11016. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  11017. quit(1, "watchdog thread create failed");
  11018. pthread_detach(thr->pth);
  11019. #ifdef HAVE_OPENCL
  11020. /* Create reinit gpu thread */
  11021. gpur_thr_id = 3;
  11022. thr = &control_thr[gpur_thr_id];
  11023. thr->q = tq_new();
  11024. if (!thr->q)
  11025. quit(1, "tq_new failed for gpur_thr_id");
  11026. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  11027. quit(1, "reinit_gpu thread create failed");
  11028. #endif
  11029. /* Create API socket thread */
  11030. api_thr_id = 4;
  11031. thr = &control_thr[api_thr_id];
  11032. if (thr_info_create(thr, NULL, api_thread, thr))
  11033. quit(1, "API thread create failed");
  11034. #ifdef USE_LIBMICROHTTPD
  11035. if (httpsrv_port != -1)
  11036. httpsrv_start(httpsrv_port);
  11037. #endif
  11038. #ifdef USE_LIBEVENT
  11039. if (stratumsrv_port != -1)
  11040. stratumsrv_start();
  11041. #endif
  11042. #ifdef HAVE_BFG_HOTPLUG
  11043. if (opt_hotplug)
  11044. hotplug_start();
  11045. #endif
  11046. #ifdef HAVE_CURSES
  11047. /* Create curses input thread for keyboard input. Create this last so
  11048. * that we know all threads are created since this can call kill_work
  11049. * to try and shut down ll previous threads. */
  11050. input_thr_id = 5;
  11051. thr = &control_thr[input_thr_id];
  11052. if (thr_info_create(thr, NULL, input_thread, thr))
  11053. quit(1, "input thread create failed");
  11054. pthread_detach(thr->pth);
  11055. #endif
  11056. /* Just to be sure */
  11057. if (total_control_threads != 6)
  11058. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  11059. /* Once everything is set up, main() becomes the getwork scheduler */
  11060. while (42) {
  11061. int ts, max_staged = opt_queue;
  11062. struct pool *pool, *cp;
  11063. bool lagging = false;
  11064. struct curl_ent *ce;
  11065. struct work *work;
  11066. cp = current_pool();
  11067. // Generally, each processor needs a new work, and all at once during work restarts
  11068. max_staged += mining_threads;
  11069. mutex_lock(stgd_lock);
  11070. ts = __total_staged();
  11071. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  11072. lagging = true;
  11073. /* Wait until hash_pop tells us we need to create more work */
  11074. if (ts > max_staged) {
  11075. staged_full = true;
  11076. pthread_cond_wait(&gws_cond, stgd_lock);
  11077. ts = __total_staged();
  11078. }
  11079. mutex_unlock(stgd_lock);
  11080. if (ts > max_staged)
  11081. continue;
  11082. work = make_work();
  11083. if (lagging && !pool_tset(cp, &cp->lagging)) {
  11084. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  11085. cp->getfail_occasions++;
  11086. total_go++;
  11087. }
  11088. pool = select_pool(lagging);
  11089. retry:
  11090. if (pool->has_stratum) {
  11091. while (!pool->stratum_active || !pool->stratum_notify) {
  11092. struct pool *altpool = select_pool(true);
  11093. if (altpool == pool && pool->has_stratum)
  11094. cgsleep_ms(5000);
  11095. pool = altpool;
  11096. goto retry;
  11097. }
  11098. gen_stratum_work(pool, work);
  11099. applog(LOG_DEBUG, "Generated stratum work");
  11100. stage_work(work);
  11101. continue;
  11102. }
  11103. if (pool->last_work_copy) {
  11104. mutex_lock(&pool->last_work_lock);
  11105. struct work *last_work = pool->last_work_copy;
  11106. if (!last_work)
  11107. {}
  11108. else
  11109. if (can_roll(last_work) && should_roll(last_work)) {
  11110. struct timeval tv_now;
  11111. cgtime(&tv_now);
  11112. free_work(work);
  11113. work = make_clone(pool->last_work_copy);
  11114. mutex_unlock(&pool->last_work_lock);
  11115. roll_work(work);
  11116. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tr->tmpl, tv_now.tv_sec));
  11117. stage_work(work);
  11118. continue;
  11119. } else if (last_work->tr && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tr->tmpl) > (unsigned long)mining_threads) {
  11120. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  11121. } else {
  11122. free_work(last_work);
  11123. pool->last_work_copy = NULL;
  11124. }
  11125. mutex_unlock(&pool->last_work_lock);
  11126. }
  11127. if (clone_available()) {
  11128. applog(LOG_DEBUG, "Cloned getwork work");
  11129. free_work(work);
  11130. continue;
  11131. }
  11132. if (opt_benchmark) {
  11133. get_benchmark_work(work);
  11134. applog(LOG_DEBUG, "Generated benchmark work");
  11135. stage_work(work);
  11136. continue;
  11137. }
  11138. work->pool = pool;
  11139. ce = pop_curl_entry3(pool, 2);
  11140. /* obtain new work from bitcoin via JSON-RPC */
  11141. if (!get_upstream_work(work, ce->curl)) {
  11142. struct pool *next_pool;
  11143. /* Make sure the pool just hasn't stopped serving
  11144. * requests but is up as we'll keep hammering it */
  11145. push_curl_entry(ce, pool);
  11146. ++pool->seq_getfails;
  11147. pool_died(pool);
  11148. next_pool = select_pool(!opt_fail_only);
  11149. if (pool == next_pool) {
  11150. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  11151. cgsleep_ms(5000);
  11152. } else {
  11153. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  11154. pool = next_pool;
  11155. }
  11156. goto retry;
  11157. }
  11158. if (ts >= max_staged)
  11159. pool_tclear(pool, &pool->lagging);
  11160. if (pool_tclear(pool, &pool->idle))
  11161. pool_resus(pool);
  11162. applog(LOG_DEBUG, "Generated getwork work");
  11163. stage_work(work);
  11164. push_curl_entry(ce, pool);
  11165. }
  11166. return 0;
  11167. }