miner.c 300 KB

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