miner.c 299 KB

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