miner.c 297 KB

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