miner.c 310 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076
  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. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  46. #include <libudev.h>
  47. #include <sys/epoll.h>
  48. #define HAVE_BFG_HOTPLUG
  49. #endif
  50. #else
  51. #include <winsock2.h>
  52. #include <windows.h>
  53. #include <dbt.h>
  54. #define HAVE_BFG_HOTPLUG
  55. #endif
  56. #include <ccan/opt/opt.h>
  57. #include <jansson.h>
  58. #include <curl/curl.h>
  59. #include <libgen.h>
  60. #include <sha2.h>
  61. #include <utlist.h>
  62. #include <blkmaker.h>
  63. #include <blkmaker_jansson.h>
  64. #include <blktemplate.h>
  65. #include "compat.h"
  66. #include "deviceapi.h"
  67. #include "logging.h"
  68. #include "miner.h"
  69. #include "findnonce.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "bench_block.h"
  74. #include "scrypt.h"
  75. #ifdef USE_AVALON
  76. #include "driver-avalon.h"
  77. #endif
  78. #ifdef HAVE_BFG_LOWLEVEL
  79. #include "lowlevel.h"
  80. #endif
  81. #if defined(unix) || defined(__APPLE__)
  82. #include <errno.h>
  83. #include <fcntl.h>
  84. #include <sys/wait.h>
  85. #endif
  86. #ifdef USE_SCRYPT
  87. #include "scrypt.h"
  88. #endif
  89. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  90. # define USE_FPGA
  91. #endif
  92. enum bfg_quit_summary {
  93. BQS_DEFAULT,
  94. BQS_NONE,
  95. BQS_DEVS,
  96. BQS_PROCS,
  97. BQS_DETAILED,
  98. };
  99. struct strategies strategies[] = {
  100. { "Failover" },
  101. { "Round Robin" },
  102. { "Rotate" },
  103. { "Load Balance" },
  104. { "Balance" },
  105. };
  106. static char packagename[256];
  107. bool opt_protocol;
  108. bool opt_dev_protocol;
  109. static bool opt_benchmark;
  110. static bool want_longpoll = true;
  111. static bool want_gbt = true;
  112. static bool want_getwork = true;
  113. #if BLKMAKER_VERSION > 1
  114. struct _cbscript_t {
  115. char *data;
  116. size_t sz;
  117. };
  118. static struct _cbscript_t opt_coinbase_script;
  119. static uint32_t template_nonce;
  120. #endif
  121. #if BLKMAKER_VERSION > 0
  122. char *opt_coinbase_sig;
  123. #endif
  124. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  125. static bool include_serial_in_statline;
  126. char *request_target_str;
  127. float request_pdiff = 1.0;
  128. double request_bdiff;
  129. static bool want_stratum = true;
  130. bool have_longpoll;
  131. int opt_skip_checks;
  132. bool want_per_device_stats;
  133. bool use_syslog;
  134. bool opt_quiet_work_updates;
  135. bool opt_quiet;
  136. bool opt_realquiet;
  137. int loginput_size;
  138. bool opt_compact;
  139. bool opt_show_procs;
  140. const int opt_cutofftemp = 95;
  141. int opt_hysteresis = 3;
  142. static int opt_retries = -1;
  143. int opt_fail_pause = 5;
  144. int opt_log_interval = 20;
  145. int opt_queue = 1;
  146. int opt_scantime = 60;
  147. int opt_expiry = 120;
  148. int opt_expiry_lp = 3600;
  149. int opt_bench_algo = -1;
  150. unsigned long long global_hashrate;
  151. static bool opt_unittest = false;
  152. unsigned long global_quota_gcd = 1;
  153. time_t last_getwork;
  154. #ifdef HAVE_OPENCL
  155. int opt_dynamic_interval = 7;
  156. int nDevs;
  157. int opt_g_threads = -1;
  158. #endif
  159. #ifdef USE_SCRYPT
  160. static char detect_algo = 1;
  161. bool opt_scrypt;
  162. #else
  163. static char detect_algo;
  164. #endif
  165. bool opt_restart = true;
  166. #ifdef USE_LIBMICROHTTPD
  167. #include "httpsrv.h"
  168. int httpsrv_port = -1;
  169. #endif
  170. #ifdef USE_LIBEVENT
  171. int stratumsrv_port = -1;
  172. #endif
  173. const
  174. int rescan_delay_ms = 1000;
  175. #ifdef HAVE_BFG_HOTPLUG
  176. bool opt_hotplug = 1;
  177. const
  178. int hotplug_delay_ms = 100;
  179. #else
  180. const bool opt_hotplug;
  181. #endif
  182. struct string_elist *scan_devices;
  183. static struct string_elist *opt_set_device_list;
  184. bool opt_force_dev_init;
  185. static struct string_elist *opt_devices_enabled_list;
  186. static bool opt_display_devs;
  187. int total_devices;
  188. struct cgpu_info **devices;
  189. int total_devices_new;
  190. struct cgpu_info **devices_new;
  191. bool have_opencl;
  192. int opt_n_threads = -1;
  193. int mining_threads;
  194. int num_processors;
  195. #ifdef HAVE_CURSES
  196. bool use_curses = true;
  197. #else
  198. bool use_curses;
  199. #endif
  200. #ifdef HAVE_LIBUSB
  201. bool have_libusb;
  202. #endif
  203. static bool opt_submit_stale = true;
  204. static int opt_shares;
  205. static int opt_submit_threads = 0x40;
  206. bool opt_fail_only;
  207. bool opt_autofan;
  208. bool opt_autoengine;
  209. bool opt_noadl;
  210. char *opt_api_allow = NULL;
  211. char *opt_api_groups;
  212. char *opt_api_description = PACKAGE_STRING;
  213. int opt_api_port = 4028;
  214. bool opt_api_listen;
  215. bool opt_api_mcast;
  216. char *opt_api_mcast_addr = API_MCAST_ADDR;
  217. char *opt_api_mcast_code = API_MCAST_CODE;
  218. char *opt_api_mcast_des = "";
  219. int opt_api_mcast_port = 4028;
  220. bool opt_api_network;
  221. bool opt_delaynet;
  222. bool opt_disable_pool;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int gwsched_thr_id;
  235. static int watchpool_thr_id;
  236. static int watchdog_thr_id;
  237. #ifdef HAVE_CURSES
  238. static int input_thr_id;
  239. #endif
  240. int gpur_thr_id;
  241. static int api_thr_id;
  242. static int total_control_threads;
  243. pthread_mutex_t hash_lock;
  244. static pthread_mutex_t *stgd_lock;
  245. pthread_mutex_t console_lock;
  246. cglock_t ch_lock;
  247. static pthread_rwlock_t blk_lock;
  248. static pthread_mutex_t sshare_lock;
  249. pthread_rwlock_t netacc_lock;
  250. pthread_rwlock_t mining_thr_lock;
  251. pthread_rwlock_t devices_lock;
  252. static pthread_mutex_t lp_lock;
  253. static pthread_cond_t lp_cond;
  254. pthread_cond_t gws_cond;
  255. bool shutting_down;
  256. double total_rolling;
  257. double total_mhashes_done;
  258. static struct timeval total_tv_start, total_tv_end;
  259. static struct timeval miner_started;
  260. cglock_t control_lock;
  261. pthread_mutex_t stats_lock;
  262. static pthread_mutex_t submitting_lock;
  263. static int total_submitting;
  264. static struct work *submit_waiting;
  265. notifier_t submit_waiting_notifier;
  266. int hw_errors;
  267. int total_accepted, total_rejected;
  268. int total_getworks, total_stale, total_discarded;
  269. uint64_t total_bytes_rcvd, total_bytes_sent;
  270. double total_diff1, total_bad_diff1;
  271. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  272. static int staged_rollable;
  273. unsigned int new_blocks;
  274. unsigned int found_blocks;
  275. unsigned int local_work;
  276. unsigned int total_go, total_ro;
  277. struct pool **pools;
  278. static struct pool *currentpool = NULL;
  279. int total_pools, enabled_pools;
  280. enum pool_strategy pool_strategy = POOL_FAILOVER;
  281. int opt_rotate_period;
  282. static int total_urls, total_users, total_passes;
  283. static
  284. #ifndef HAVE_CURSES
  285. const
  286. #endif
  287. bool curses_active;
  288. #ifdef HAVE_CURSES
  289. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  290. const
  291. #endif
  292. short default_bgcolor = COLOR_BLACK;
  293. static int attr_title = A_BOLD;
  294. #endif
  295. static
  296. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  297. bool use_unicode;
  298. static
  299. bool have_unicode_degrees;
  300. static
  301. wchar_t unicode_micro = 'u';
  302. #else
  303. const bool use_unicode;
  304. static
  305. const bool have_unicode_degrees;
  306. static
  307. const char unicode_micro = 'u';
  308. #endif
  309. #ifdef HAVE_CURSES
  310. #define U8_BAD_START "\xef\x80\x81"
  311. #define U8_BAD_END "\xef\x80\x80"
  312. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  313. bool selecting_device;
  314. unsigned selected_device;
  315. #endif
  316. static char current_block[40];
  317. /* Protected by ch_lock */
  318. static char *current_hash;
  319. static uint32_t current_block_id;
  320. char *current_fullhash;
  321. static char datestamp[40];
  322. static char blocktime[32];
  323. time_t block_time;
  324. static char best_share[8] = "0";
  325. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  326. static char block_diff[8];
  327. static char net_hashrate[10];
  328. uint64_t best_diff = 0;
  329. static bool known_blkheight_current;
  330. static uint32_t known_blkheight;
  331. static uint32_t known_blkheight_blkid;
  332. static uint64_t block_subsidy;
  333. struct block {
  334. char hash[40];
  335. UT_hash_handle hh;
  336. int block_no;
  337. };
  338. static struct block *blocks = NULL;
  339. int swork_id;
  340. /* For creating a hash database of stratum shares submitted that have not had
  341. * a response yet */
  342. struct stratum_share {
  343. UT_hash_handle hh;
  344. bool block;
  345. struct work *work;
  346. int id;
  347. };
  348. static struct stratum_share *stratum_shares = NULL;
  349. char *opt_socks_proxy = NULL;
  350. static const char def_conf[] = "bfgminer.conf";
  351. static bool config_loaded;
  352. static int include_count;
  353. #define JSON_INCLUDE_CONF "include"
  354. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  355. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  356. #define JSON_MAX_DEPTH 10
  357. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  358. char *cmd_idle, *cmd_sick, *cmd_dead;
  359. #if defined(unix) || defined(__APPLE__)
  360. static char *opt_stderr_cmd = NULL;
  361. static int forkpid;
  362. #endif // defined(unix)
  363. #ifdef HAVE_CHROOT
  364. char *chroot_dir;
  365. #endif
  366. #ifdef HAVE_PWD_H
  367. char *opt_setuid;
  368. #endif
  369. struct sigaction termhandler, inthandler;
  370. struct thread_q *getq;
  371. static int total_work;
  372. static bool staged_full;
  373. struct work *staged_work = NULL;
  374. struct schedtime {
  375. bool enable;
  376. struct tm tm;
  377. };
  378. struct schedtime schedstart;
  379. struct schedtime schedstop;
  380. bool sched_paused;
  381. static bool time_before(struct tm *tm1, struct tm *tm2)
  382. {
  383. if (tm1->tm_hour < tm2->tm_hour)
  384. return true;
  385. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  386. return true;
  387. return false;
  388. }
  389. static bool should_run(void)
  390. {
  391. struct tm tm;
  392. time_t tt;
  393. bool within_range;
  394. if (!schedstart.enable && !schedstop.enable)
  395. return true;
  396. tt = time(NULL);
  397. localtime_r(&tt, &tm);
  398. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  399. if (time_before(&schedstop.tm, &schedstart.tm))
  400. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  401. else
  402. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  403. if (within_range && !schedstop.enable)
  404. /* This is a once off event with no stop time set */
  405. schedstart.enable = false;
  406. return within_range;
  407. }
  408. void get_datestamp(char *f, size_t fsiz, time_t tt)
  409. {
  410. struct tm _tm;
  411. struct tm *tm = &_tm;
  412. if (tt == INVALID_TIMESTAMP)
  413. tt = time(NULL);
  414. localtime_r(&tt, tm);
  415. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  416. tm->tm_year + 1900,
  417. tm->tm_mon + 1,
  418. tm->tm_mday,
  419. tm->tm_hour,
  420. tm->tm_min,
  421. tm->tm_sec);
  422. }
  423. static
  424. void get_timestamp(char *f, size_t fsiz, time_t tt)
  425. {
  426. struct tm _tm;
  427. struct tm *tm = &_tm;
  428. localtime_r(&tt, tm);
  429. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  430. tm->tm_hour,
  431. tm->tm_min,
  432. tm->tm_sec);
  433. }
  434. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  435. static char exit_buf[512];
  436. static void applog_and_exit(const char *fmt, ...)
  437. {
  438. va_list ap;
  439. va_start(ap, fmt);
  440. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  441. va_end(ap);
  442. _applog(LOG_ERR, exit_buf);
  443. exit(1);
  444. }
  445. char *devpath_to_devid(const char *devpath)
  446. {
  447. #ifndef WIN32
  448. struct stat my_stat;
  449. if (stat(devpath, &my_stat))
  450. return NULL;
  451. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  452. memcpy(devs, "dev_t:", 6);
  453. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  454. #else
  455. if (!strncmp(devpath, "\\\\.\\", 4))
  456. devpath += 4;
  457. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  458. return NULL;
  459. devpath += 3;
  460. char *p;
  461. strtol(devpath, &p, 10);
  462. if (p[0])
  463. return NULL;
  464. const int sz = (p - devpath);
  465. char *devs = malloc(4 + sz + 1);
  466. sprintf(devs, "com:%s", devpath);
  467. #endif
  468. return devs;
  469. }
  470. static
  471. bool devpaths_match(const char * const ap, const char * const bp)
  472. {
  473. char * const a = devpath_to_devid(ap);
  474. if (!a)
  475. return false;
  476. char * const b = devpath_to_devid(bp);
  477. bool rv = false;
  478. if (b)
  479. {
  480. rv = !strcmp(a, b);
  481. free(b);
  482. }
  483. free(a);
  484. return rv;
  485. }
  486. static
  487. int proc_letter_to_number(const char *s, const char ** const rem)
  488. {
  489. int n = 0, c;
  490. for ( ; s[0]; ++s)
  491. {
  492. if (unlikely(n > INT_MAX / 26))
  493. break;
  494. c = tolower(s[0]) - 'a';
  495. if (unlikely(c < 0 || c > 25))
  496. break;
  497. if (unlikely(INT_MAX - c < n))
  498. break;
  499. n = (n * 26) + c;
  500. }
  501. *rem = s;
  502. return n;
  503. }
  504. static
  505. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  506. {
  507. // all - matches anything
  508. // d0 - matches all processors of device 0
  509. // d0-3 - matches all processors of device 0, 1, 2, or 3
  510. // d0a - matches first processor of device 0
  511. // 0 - matches processor 0
  512. // 0-4 - matches processors 0, 1, 2, 3, or 4
  513. // ___ - matches all processors on all devices using driver/name ___
  514. // ___0 - matches all processors of 0th device using driver/name ___
  515. // ___0a - matches first processor of 0th device using driver/name ___
  516. // @* - matches device with serial or path *
  517. // @*@a - matches first processor of device with serial or path *
  518. // ___@* - matches device with serial or path * using driver/name ___
  519. if (!strcasecmp(pattern, "all"))
  520. return true;
  521. const struct device_drv * const drv = cgpu->drv;
  522. const char *p = pattern, *p2;
  523. size_t L;
  524. int n, i, c = -1;
  525. int n2;
  526. int proc_first = -1, proc_last = -1;
  527. struct cgpu_info *device;
  528. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  529. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  530. // dname or name
  531. p = &pattern[L];
  532. else
  533. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  534. // d#
  535. ++p;
  536. else
  537. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  538. // # or @
  539. {}
  540. else
  541. return false;
  542. L = p - pattern;
  543. while (isspace(p[0]))
  544. ++p;
  545. if (p[0] == '@')
  546. {
  547. // Serial/path
  548. const char * const ser = &p[1];
  549. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  550. {}
  551. p2 = (p[0] == '@') ? &p[1] : p;
  552. const size_t serlen = (p - ser);
  553. p = "";
  554. n = n2 = 0;
  555. const char * const devpath = cgpu->device_path ?: "";
  556. const char * const devser = cgpu->dev_serial ?: "";
  557. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  558. {} // Match
  559. else
  560. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  561. {} // Match
  562. else
  563. {
  564. char devpath2[serlen + 1];
  565. memcpy(devpath2, ser, serlen);
  566. devpath2[serlen] = '\0';
  567. if (!devpaths_match(devpath, ser))
  568. return false;
  569. }
  570. }
  571. else
  572. {
  573. if (isdigit(p[0]))
  574. n = strtol(p, (void*)&p2, 0);
  575. else
  576. {
  577. n = 0;
  578. p2 = p;
  579. }
  580. if (p2[0] == '-')
  581. {
  582. ++p2;
  583. if (p2[0] && isdigit(p2[0]))
  584. n2 = strtol(p2, (void*)&p2, 0);
  585. else
  586. n2 = INT_MAX;
  587. }
  588. else
  589. n2 = n;
  590. if (p == pattern)
  591. {
  592. if (!p[0])
  593. return true;
  594. if (p2 && p2[0])
  595. goto invsyntax;
  596. for (i = n; i <= n2; ++i)
  597. {
  598. if (i >= total_devices)
  599. break;
  600. if (cgpu == devices[i])
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. if (p2[0])
  607. {
  608. proc_first = proc_letter_to_number(&p2[0], &p2);
  609. if (p2[0] == '-')
  610. {
  611. ++p2;
  612. if (p2[0])
  613. proc_last = proc_letter_to_number(p2, &p2);
  614. else
  615. proc_last = INT_MAX;
  616. }
  617. else
  618. proc_last = proc_first;
  619. if (p2[0])
  620. goto invsyntax;
  621. }
  622. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  623. {
  624. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  625. (!L) ||
  626. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  627. {} // Matched name or dname
  628. else
  629. return false;
  630. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  631. return false;
  632. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  633. return false;
  634. return true;
  635. }
  636. // d#
  637. c = -1;
  638. for (i = 0; ; ++i)
  639. {
  640. if (i == total_devices)
  641. return false;
  642. if (devices[i]->device != devices[i])
  643. continue;
  644. ++c;
  645. if (c < n)
  646. continue;
  647. if (c > n2)
  648. break;
  649. for (device = devices[i]; device; device = device->next_proc)
  650. {
  651. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  652. continue;
  653. if (device == cgpu)
  654. return true;
  655. }
  656. }
  657. return false;
  658. invsyntax:
  659. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  660. return false;
  661. }
  662. #define TEST_CGPU_MATCH(pattern) \
  663. if (!cgpu_match(pattern, &cgpu)) \
  664. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  665. // END TEST_CGPU_MATCH
  666. #define TEST_CGPU_NOMATCH(pattern) \
  667. if (cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. static __maybe_unused
  671. void test_cgpu_match()
  672. {
  673. struct device_drv drv = {
  674. .dname = "test",
  675. .name = "TST",
  676. };
  677. struct cgpu_info cgpu = {
  678. .drv = &drv,
  679. .device = &cgpu,
  680. .device_id = 1,
  681. .proc_id = 1,
  682. .proc_repr = "TST 1b",
  683. }, cgpu0a = {
  684. .drv = &drv,
  685. .device = &cgpu0a,
  686. .device_id = 0,
  687. .proc_id = 0,
  688. .proc_repr = "TST 0a",
  689. }, cgpu1a = {
  690. .drv = &drv,
  691. .device = &cgpu0a,
  692. .device_id = 1,
  693. .proc_id = 0,
  694. .proc_repr = "TST 1a",
  695. };
  696. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  697. devices = devices_list;
  698. total_devices = 3;
  699. TEST_CGPU_MATCH("all")
  700. TEST_CGPU_MATCH("d1")
  701. TEST_CGPU_NOMATCH("d2")
  702. TEST_CGPU_MATCH("d0-5")
  703. TEST_CGPU_NOMATCH("d0-0")
  704. TEST_CGPU_NOMATCH("d2-5")
  705. TEST_CGPU_MATCH("d-1")
  706. TEST_CGPU_MATCH("d1-")
  707. TEST_CGPU_NOMATCH("d-0")
  708. TEST_CGPU_NOMATCH("d2-")
  709. TEST_CGPU_MATCH("2")
  710. TEST_CGPU_NOMATCH("3")
  711. TEST_CGPU_MATCH("1-2")
  712. TEST_CGPU_MATCH("2-3")
  713. TEST_CGPU_NOMATCH("1-1")
  714. TEST_CGPU_NOMATCH("3-4")
  715. TEST_CGPU_MATCH("TST")
  716. TEST_CGPU_MATCH("test")
  717. TEST_CGPU_MATCH("tst")
  718. TEST_CGPU_MATCH("TEST")
  719. TEST_CGPU_NOMATCH("TSF")
  720. TEST_CGPU_NOMATCH("TS")
  721. TEST_CGPU_NOMATCH("TSTF")
  722. TEST_CGPU_MATCH("TST1")
  723. TEST_CGPU_MATCH("test1")
  724. TEST_CGPU_MATCH("TST0-1")
  725. TEST_CGPU_MATCH("TST 1")
  726. TEST_CGPU_MATCH("TST 1-2")
  727. TEST_CGPU_MATCH("TEST 1-2")
  728. TEST_CGPU_NOMATCH("TST2")
  729. TEST_CGPU_NOMATCH("TST2-3")
  730. TEST_CGPU_NOMATCH("TST0-0")
  731. TEST_CGPU_MATCH("TST1b")
  732. TEST_CGPU_MATCH("tst1b")
  733. TEST_CGPU_NOMATCH("TST1c")
  734. TEST_CGPU_NOMATCH("TST1bb")
  735. TEST_CGPU_MATCH("TST0-1b")
  736. TEST_CGPU_NOMATCH("TST0-1c")
  737. TEST_CGPU_MATCH("TST1a-d")
  738. TEST_CGPU_NOMATCH("TST1a-a")
  739. TEST_CGPU_NOMATCH("TST1-a")
  740. TEST_CGPU_NOMATCH("TST1c-z")
  741. TEST_CGPU_NOMATCH("TST1c-")
  742. TEST_CGPU_MATCH("@")
  743. TEST_CGPU_NOMATCH("@abc")
  744. TEST_CGPU_MATCH("@@b")
  745. TEST_CGPU_NOMATCH("@@c")
  746. TEST_CGPU_MATCH("TST@")
  747. TEST_CGPU_NOMATCH("TST@abc")
  748. TEST_CGPU_MATCH("TST@@b")
  749. TEST_CGPU_NOMATCH("TST@@c")
  750. TEST_CGPU_MATCH("TST@@b-f")
  751. TEST_CGPU_NOMATCH("TST@@c-f")
  752. TEST_CGPU_NOMATCH("TST@@-a")
  753. cgpu.device_path = "/dev/test";
  754. cgpu.dev_serial = "testy";
  755. TEST_CGPU_MATCH("TST@/dev/test")
  756. TEST_CGPU_MATCH("TST@testy")
  757. TEST_CGPU_NOMATCH("TST@")
  758. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  759. TEST_CGPU_NOMATCH("TST@testy3@b")
  760. TEST_CGPU_MATCH("TST@/dev/test@b")
  761. TEST_CGPU_MATCH("TST@testy@b")
  762. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  763. TEST_CGPU_NOMATCH("TST@testy@c")
  764. cgpu.device_path = "usb:000:999";
  765. TEST_CGPU_MATCH("TST@usb:000:999")
  766. drv.dname = "test7";
  767. TEST_CGPU_MATCH("test7")
  768. TEST_CGPU_MATCH("TEST7")
  769. TEST_CGPU_NOMATCH("test&")
  770. TEST_CGPU_MATCH("test7 1-2")
  771. TEST_CGPU_MATCH("test7@testy@b")
  772. }
  773. static
  774. int cgpu_search(const char * const pattern, const int first)
  775. {
  776. int i;
  777. struct cgpu_info *cgpu;
  778. #define CHECK_CGPU_SEARCH do{ \
  779. cgpu = get_devices(i); \
  780. if (cgpu_match(pattern, cgpu)) \
  781. return i; \
  782. }while(0)
  783. for (i = first; i < total_devices; ++i)
  784. CHECK_CGPU_SEARCH;
  785. for (i = 0; i < first; ++i)
  786. CHECK_CGPU_SEARCH;
  787. #undef CHECK_CGPU_SEARCH
  788. return -1;
  789. }
  790. static pthread_mutex_t sharelog_lock;
  791. static FILE *sharelog_file = NULL;
  792. struct thr_info *get_thread(int thr_id)
  793. {
  794. struct thr_info *thr;
  795. rd_lock(&mining_thr_lock);
  796. thr = mining_thr[thr_id];
  797. rd_unlock(&mining_thr_lock);
  798. return thr;
  799. }
  800. static struct cgpu_info *get_thr_cgpu(int thr_id)
  801. {
  802. struct thr_info *thr = get_thread(thr_id);
  803. return thr->cgpu;
  804. }
  805. struct cgpu_info *get_devices(int id)
  806. {
  807. struct cgpu_info *cgpu;
  808. rd_lock(&devices_lock);
  809. cgpu = devices[id];
  810. rd_unlock(&devices_lock);
  811. return cgpu;
  812. }
  813. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  814. static FILE *noncelog_file = NULL;
  815. static
  816. void noncelog(const struct work * const work)
  817. {
  818. const int thr_id = work->thr_id;
  819. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  820. char buf[0x200], hash[65], data[161], midstate[65];
  821. int rv;
  822. size_t ret;
  823. bin2hex(hash, work->hash, 32);
  824. bin2hex(data, work->data, 80);
  825. bin2hex(midstate, work->midstate, 32);
  826. // timestamp,proc,hash,data,midstate
  827. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  828. (unsigned long)time(NULL), proc->proc_repr_ns,
  829. hash, data, midstate);
  830. if (unlikely(rv < 1))
  831. {
  832. applog(LOG_ERR, "noncelog printf error");
  833. return;
  834. }
  835. mutex_lock(&noncelog_lock);
  836. ret = fwrite(buf, rv, 1, noncelog_file);
  837. fflush(noncelog_file);
  838. mutex_unlock(&noncelog_lock);
  839. if (ret != 1)
  840. applog(LOG_ERR, "noncelog fwrite error");
  841. }
  842. static void sharelog(const char*disposition, const struct work*work)
  843. {
  844. char target[(sizeof(work->target) * 2) + 1];
  845. char hash[(sizeof(work->hash) * 2) + 1];
  846. char data[(sizeof(work->data) * 2) + 1];
  847. struct cgpu_info *cgpu;
  848. unsigned long int t;
  849. struct pool *pool;
  850. int thr_id, rv;
  851. char s[1024];
  852. size_t ret;
  853. if (!sharelog_file)
  854. return;
  855. thr_id = work->thr_id;
  856. cgpu = get_thr_cgpu(thr_id);
  857. pool = work->pool;
  858. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  859. bin2hex(target, work->target, sizeof(work->target));
  860. bin2hex(hash, work->hash, sizeof(work->hash));
  861. bin2hex(data, work->data, sizeof(work->data));
  862. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  863. 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);
  864. if (rv >= (int)(sizeof(s)))
  865. s[sizeof(s) - 1] = '\0';
  866. else if (rv < 0) {
  867. applog(LOG_ERR, "sharelog printf error");
  868. return;
  869. }
  870. mutex_lock(&sharelog_lock);
  871. ret = fwrite(s, rv, 1, sharelog_file);
  872. fflush(sharelog_file);
  873. mutex_unlock(&sharelog_lock);
  874. if (ret != 1)
  875. applog(LOG_ERR, "sharelog fwrite error");
  876. }
  877. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  878. /* Adjust all the pools' quota to the greatest common denominator after a pool
  879. * has been added or the quotas changed. */
  880. void adjust_quota_gcd(void)
  881. {
  882. unsigned long gcd, lowest_quota = ~0UL, quota;
  883. struct pool *pool;
  884. int i;
  885. for (i = 0; i < total_pools; i++) {
  886. pool = pools[i];
  887. quota = pool->quota;
  888. if (!quota)
  889. continue;
  890. if (quota < lowest_quota)
  891. lowest_quota = quota;
  892. }
  893. if (likely(lowest_quota < ~0UL)) {
  894. gcd = lowest_quota;
  895. for (i = 0; i < total_pools; i++) {
  896. pool = pools[i];
  897. quota = pool->quota;
  898. if (!quota)
  899. continue;
  900. while (quota % gcd)
  901. gcd--;
  902. }
  903. } else
  904. gcd = 1;
  905. for (i = 0; i < total_pools; i++) {
  906. pool = pools[i];
  907. pool->quota_used *= global_quota_gcd;
  908. pool->quota_used /= gcd;
  909. pool->quota_gcd = pool->quota / gcd;
  910. }
  911. global_quota_gcd = gcd;
  912. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  913. }
  914. /* Return value is ignored if not called from add_pool_details */
  915. struct pool *add_pool(void)
  916. {
  917. struct pool *pool;
  918. pool = calloc(sizeof(struct pool), 1);
  919. if (!pool)
  920. quit(1, "Failed to malloc pool in add_pool");
  921. pool->pool_no = pool->prio = total_pools;
  922. mutex_init(&pool->last_work_lock);
  923. mutex_init(&pool->pool_lock);
  924. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  925. quit(1, "Failed to pthread_cond_init in add_pool");
  926. cglock_init(&pool->data_lock);
  927. mutex_init(&pool->stratum_lock);
  928. timer_unset(&pool->swork.tv_transparency);
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. adjust_quota_gcd();
  935. pool->sock = INVSOCK;
  936. pool->lp_socket = CURL_SOCKET_BAD;
  937. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  938. pools[total_pools++] = pool;
  939. return pool;
  940. }
  941. /* Pool variant of test and set */
  942. static bool pool_tset(struct pool *pool, bool *var)
  943. {
  944. bool ret;
  945. mutex_lock(&pool->pool_lock);
  946. ret = *var;
  947. *var = true;
  948. mutex_unlock(&pool->pool_lock);
  949. return ret;
  950. }
  951. bool pool_tclear(struct pool *pool, bool *var)
  952. {
  953. bool ret;
  954. mutex_lock(&pool->pool_lock);
  955. ret = *var;
  956. *var = false;
  957. mutex_unlock(&pool->pool_lock);
  958. return ret;
  959. }
  960. struct pool *current_pool(void)
  961. {
  962. struct pool *pool;
  963. cg_rlock(&control_lock);
  964. pool = currentpool;
  965. cg_runlock(&control_lock);
  966. return pool;
  967. }
  968. // Copied from ccan/opt/helpers.c
  969. static char *arg_bad(const char *fmt, const char *arg)
  970. {
  971. char *str = malloc(strlen(fmt) + strlen(arg));
  972. sprintf(str, fmt, arg);
  973. return str;
  974. }
  975. static
  976. char *opt_set_floatval(const char *arg, float *f)
  977. {
  978. char *endp;
  979. errno = 0;
  980. *f = strtof(arg, &endp);
  981. if (*endp || !arg[0])
  982. return arg_bad("'%s' is not a number", arg);
  983. if (errno)
  984. return arg_bad("'%s' is out of range", arg);
  985. return NULL;
  986. }
  987. static
  988. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  989. {
  990. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  991. }
  992. static
  993. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  994. {
  995. return opt_set_bool(b);
  996. }
  997. char *set_int_range(const char *arg, int *i, int min, int max)
  998. {
  999. char *err = opt_set_intval(arg, i);
  1000. if (err)
  1001. return err;
  1002. if (*i < min || *i > max)
  1003. return "Value out of range";
  1004. return NULL;
  1005. }
  1006. static char *set_int_0_to_9999(const char *arg, int *i)
  1007. {
  1008. return set_int_range(arg, i, 0, 9999);
  1009. }
  1010. static char *set_int_1_to_65535(const char *arg, int *i)
  1011. {
  1012. return set_int_range(arg, i, 1, 65535);
  1013. }
  1014. static char *set_int_0_to_10(const char *arg, int *i)
  1015. {
  1016. return set_int_range(arg, i, 0, 10);
  1017. }
  1018. static char *set_int_1_to_10(const char *arg, int *i)
  1019. {
  1020. return set_int_range(arg, i, 1, 10);
  1021. }
  1022. char *set_strdup(const char *arg, char **p)
  1023. {
  1024. *p = strdup((char *)arg);
  1025. return NULL;
  1026. }
  1027. #if BLKMAKER_VERSION > 1
  1028. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1029. {
  1030. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1031. if (!scriptsz)
  1032. return "Invalid address";
  1033. char *script = malloc(scriptsz);
  1034. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1035. free(script);
  1036. return "Failed to convert address to script";
  1037. }
  1038. p->data = script;
  1039. p->sz = scriptsz;
  1040. return NULL;
  1041. }
  1042. #endif
  1043. static
  1044. char *set_quit_summary(const char * const arg)
  1045. {
  1046. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1047. opt_quit_summary = BQS_NONE;
  1048. else
  1049. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1050. opt_quit_summary = BQS_DEVS;
  1051. else
  1052. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1053. opt_quit_summary = BQS_PROCS;
  1054. else
  1055. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1056. opt_quit_summary = BQS_DETAILED;
  1057. else
  1058. return "Quit summary must be one of none/devs/procs/detailed";
  1059. return NULL;
  1060. }
  1061. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1062. char *set_request_diff(const char *arg, float *p)
  1063. {
  1064. unsigned char target[32];
  1065. char *e = opt_set_floatval(arg, p);
  1066. if (e)
  1067. return e;
  1068. request_bdiff = (double)*p * 0.9999847412109375;
  1069. bdiff_target_leadzero(target, request_bdiff);
  1070. request_target_str = malloc(65);
  1071. bin2hex(request_target_str, target, 32);
  1072. return NULL;
  1073. }
  1074. #ifdef NEED_BFG_LOWL_VCOM
  1075. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1076. #ifdef WIN32
  1077. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1078. {
  1079. char dev[PATH_MAX];
  1080. char *devp = dev;
  1081. size_t bufLen = 0x100;
  1082. tryagain: ;
  1083. char buf[bufLen];
  1084. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1085. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1086. bufLen *= 2;
  1087. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1088. goto tryagain;
  1089. }
  1090. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1091. }
  1092. size_t tLen;
  1093. memcpy(devp, "\\\\.\\", 4);
  1094. devp = &devp[4];
  1095. for (char *t = buf; *t; t += tLen) {
  1096. tLen = strlen(t) + 1;
  1097. if (strncmp("COM", t, 3))
  1098. continue;
  1099. memcpy(devp, t, tLen);
  1100. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1101. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1102. }
  1103. }
  1104. #else
  1105. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1106. {
  1107. char dev[PATH_MAX];
  1108. char *devp = dev;
  1109. DIR *D;
  1110. struct dirent *de;
  1111. const char devdir[] = "/dev";
  1112. const size_t devdirlen = sizeof(devdir) - 1;
  1113. char *devpath = devp;
  1114. char *devfile = devpath + devdirlen + 1;
  1115. D = opendir(devdir);
  1116. if (!D)
  1117. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1118. memcpy(devpath, devdir, devdirlen);
  1119. devpath[devdirlen] = '/';
  1120. while ( (de = readdir(D)) ) {
  1121. if (!strncmp(de->d_name, "cu.", 3)
  1122. //don't probe Bluetooth devices - causes bus errors and segfaults
  1123. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1124. goto trydev;
  1125. if (strncmp(de->d_name, "tty", 3))
  1126. continue;
  1127. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1128. continue;
  1129. trydev:
  1130. strcpy(devfile, de->d_name);
  1131. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1132. }
  1133. closedir(D);
  1134. }
  1135. #endif
  1136. #endif
  1137. static char *add_serial(const char *arg)
  1138. {
  1139. string_elist_add(arg, &scan_devices);
  1140. return NULL;
  1141. }
  1142. static
  1143. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1144. {
  1145. string_elist_add(arg, elist);
  1146. return NULL;
  1147. }
  1148. bool get_intrange(const char *arg, int *val1, int *val2)
  1149. {
  1150. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1151. char *p, *p2;
  1152. *val1 = strtol(arg, &p, 0);
  1153. if (arg == p)
  1154. // Zero-length ending number, invalid
  1155. return false;
  1156. while (true)
  1157. {
  1158. if (!p[0])
  1159. {
  1160. *val2 = *val1;
  1161. return true;
  1162. }
  1163. if (p[0] == '-')
  1164. break;
  1165. if (!isspace(p[0]))
  1166. // Garbage, invalid
  1167. return false;
  1168. ++p;
  1169. }
  1170. p2 = &p[1];
  1171. *val2 = strtol(p2, &p, 0);
  1172. if (p2 == p)
  1173. // Zero-length ending number, invalid
  1174. return false;
  1175. while (true)
  1176. {
  1177. if (!p[0])
  1178. return true;
  1179. if (!isspace(p[0]))
  1180. // Garbage, invalid
  1181. return false;
  1182. ++p;
  1183. }
  1184. }
  1185. static
  1186. void _test_intrange(const char *s, const int v[2])
  1187. {
  1188. int a[2];
  1189. if (!get_intrange(s, &a[0], &a[1]))
  1190. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1191. for (int i = 0; i < 2; ++i)
  1192. if (unlikely(a[i] != v[i]))
  1193. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1194. }
  1195. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1196. static
  1197. void _test_intrange_fail(const char *s)
  1198. {
  1199. int a[2];
  1200. if (get_intrange(s, &a[0], &a[1]))
  1201. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1202. }
  1203. static
  1204. void test_intrange()
  1205. {
  1206. _test_intrange("-1--2", -1, -2);
  1207. _test_intrange("-1-2", -1, 2);
  1208. _test_intrange("1--2", 1, -2);
  1209. _test_intrange("1-2", 1, 2);
  1210. _test_intrange("111-222", 111, 222);
  1211. _test_intrange(" 11 - 22 ", 11, 22);
  1212. _test_intrange("+11-+22", 11, 22);
  1213. _test_intrange("-1", -1, -1);
  1214. _test_intrange_fail("all");
  1215. _test_intrange_fail("1-");
  1216. _test_intrange_fail("");
  1217. _test_intrange_fail("1-54x");
  1218. }
  1219. static char *set_devices(char *arg)
  1220. {
  1221. if (*arg) {
  1222. if (*arg == '?') {
  1223. opt_display_devs = true;
  1224. return NULL;
  1225. }
  1226. } else
  1227. return "Invalid device parameters";
  1228. string_elist_add(arg, &opt_devices_enabled_list);
  1229. return NULL;
  1230. }
  1231. static char *set_balance(enum pool_strategy *strategy)
  1232. {
  1233. *strategy = POOL_BALANCE;
  1234. return NULL;
  1235. }
  1236. static char *set_loadbalance(enum pool_strategy *strategy)
  1237. {
  1238. *strategy = POOL_LOADBALANCE;
  1239. return NULL;
  1240. }
  1241. static char *set_rotate(const char *arg, int *i)
  1242. {
  1243. pool_strategy = POOL_ROTATE;
  1244. return set_int_range(arg, i, 0, 9999);
  1245. }
  1246. static char *set_rr(enum pool_strategy *strategy)
  1247. {
  1248. *strategy = POOL_ROUNDROBIN;
  1249. return NULL;
  1250. }
  1251. /* Detect that url is for a stratum protocol either via the presence of
  1252. * stratum+tcp or by detecting a stratum server response */
  1253. bool detect_stratum(struct pool *pool, char *url)
  1254. {
  1255. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1256. return false;
  1257. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1258. pool->rpc_url = strdup(url);
  1259. pool->has_stratum = true;
  1260. pool->stratum_url = pool->sockaddr_url;
  1261. return true;
  1262. }
  1263. return false;
  1264. }
  1265. static struct pool *add_url(void)
  1266. {
  1267. total_urls++;
  1268. if (total_urls > total_pools)
  1269. add_pool();
  1270. return pools[total_urls - 1];
  1271. }
  1272. static void setup_url(struct pool *pool, char *arg)
  1273. {
  1274. if (detect_stratum(pool, arg))
  1275. return;
  1276. opt_set_charp(arg, &pool->rpc_url);
  1277. if (strncmp(arg, "http://", 7) &&
  1278. strncmp(arg, "https://", 8)) {
  1279. const size_t L = strlen(arg);
  1280. char *httpinput;
  1281. httpinput = malloc(8 + L);
  1282. if (!httpinput)
  1283. quit(1, "Failed to malloc httpinput");
  1284. sprintf(httpinput, "http://%s", arg);
  1285. pool->rpc_url = httpinput;
  1286. }
  1287. }
  1288. static char *set_url(char *arg)
  1289. {
  1290. struct pool *pool = add_url();
  1291. setup_url(pool, arg);
  1292. return NULL;
  1293. }
  1294. static char *set_quota(char *arg)
  1295. {
  1296. char *semicolon = strchr(arg, ';'), *url;
  1297. int len, qlen, quota;
  1298. struct pool *pool;
  1299. if (!semicolon)
  1300. return "No semicolon separated quota;URL pair found";
  1301. len = strlen(arg);
  1302. *semicolon = '\0';
  1303. qlen = strlen(arg);
  1304. if (!qlen)
  1305. return "No parameter for quota found";
  1306. len -= qlen + 1;
  1307. if (len < 1)
  1308. return "No parameter for URL found";
  1309. quota = atoi(arg);
  1310. if (quota < 0)
  1311. return "Invalid negative parameter for quota set";
  1312. url = arg + qlen + 1;
  1313. pool = add_url();
  1314. setup_url(pool, url);
  1315. pool->quota = quota;
  1316. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1317. adjust_quota_gcd();
  1318. return NULL;
  1319. }
  1320. static char *set_user(const char *arg)
  1321. {
  1322. struct pool *pool;
  1323. total_users++;
  1324. if (total_users > total_pools)
  1325. add_pool();
  1326. pool = pools[total_users - 1];
  1327. opt_set_charp(arg, &pool->rpc_user);
  1328. return NULL;
  1329. }
  1330. static char *set_pass(const char *arg)
  1331. {
  1332. struct pool *pool;
  1333. total_passes++;
  1334. if (total_passes > total_pools)
  1335. add_pool();
  1336. pool = pools[total_passes - 1];
  1337. opt_set_charp(arg, &pool->rpc_pass);
  1338. return NULL;
  1339. }
  1340. static char *set_userpass(const char *arg)
  1341. {
  1342. struct pool *pool;
  1343. char *updup;
  1344. if (total_users != total_passes)
  1345. return "User + pass options must be balanced before userpass";
  1346. ++total_users;
  1347. ++total_passes;
  1348. if (total_users > total_pools)
  1349. add_pool();
  1350. pool = pools[total_users - 1];
  1351. updup = strdup(arg);
  1352. opt_set_charp(arg, &pool->rpc_userpass);
  1353. pool->rpc_user = strtok(updup, ":");
  1354. if (!pool->rpc_user)
  1355. return "Failed to find : delimited user info";
  1356. pool->rpc_pass = strtok(NULL, ":");
  1357. if (!pool->rpc_pass)
  1358. pool->rpc_pass = "";
  1359. return NULL;
  1360. }
  1361. static char *set_pool_priority(const char *arg)
  1362. {
  1363. struct pool *pool;
  1364. if (!total_pools)
  1365. return "Usage of --pool-priority before pools are defined does not make sense";
  1366. pool = pools[total_pools - 1];
  1367. opt_set_intval(arg, &pool->prio);
  1368. return NULL;
  1369. }
  1370. static char *set_pool_proxy(const char *arg)
  1371. {
  1372. struct pool *pool;
  1373. if (!total_pools)
  1374. return "Usage of --pool-proxy before pools are defined does not make sense";
  1375. if (!our_curl_supports_proxy_uris())
  1376. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1377. pool = pools[total_pools - 1];
  1378. opt_set_charp(arg, &pool->rpc_proxy);
  1379. return NULL;
  1380. }
  1381. static char *set_pool_force_rollntime(const char *arg)
  1382. {
  1383. struct pool *pool;
  1384. if (!total_pools)
  1385. return "Usage of --force-rollntime before pools are defined does not make sense";
  1386. pool = pools[total_pools - 1];
  1387. opt_set_intval(arg, &pool->force_rollntime);
  1388. return NULL;
  1389. }
  1390. static char *enable_debug(bool *flag)
  1391. {
  1392. *flag = true;
  1393. opt_debug_console = true;
  1394. /* Turn on verbose output, too. */
  1395. opt_log_output = true;
  1396. return NULL;
  1397. }
  1398. static char *set_schedtime(const char *arg, struct schedtime *st)
  1399. {
  1400. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1401. {
  1402. if (strcasecmp(arg, "now"))
  1403. return "Invalid time set, should be HH:MM";
  1404. } else
  1405. schedstop.tm.tm_sec = 0;
  1406. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1407. return "Invalid time set.";
  1408. st->enable = true;
  1409. return NULL;
  1410. }
  1411. static
  1412. char *set_log_file(char *arg)
  1413. {
  1414. char *r = "";
  1415. long int i = strtol(arg, &r, 10);
  1416. int fd, stderr_fd = fileno(stderr);
  1417. if ((!*r) && i >= 0 && i <= INT_MAX)
  1418. fd = i;
  1419. else
  1420. if (!strcmp(arg, "-"))
  1421. {
  1422. fd = fileno(stdout);
  1423. if (unlikely(fd == -1))
  1424. return "Standard output missing for log-file";
  1425. }
  1426. else
  1427. {
  1428. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1429. if (unlikely(fd == -1))
  1430. return "Failed to open log-file";
  1431. }
  1432. close(stderr_fd);
  1433. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1434. return "Failed to dup2 for log-file";
  1435. close(fd);
  1436. return NULL;
  1437. }
  1438. static
  1439. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1440. {
  1441. char *r = "";
  1442. long int i = strtol(arg, &r, 10);
  1443. static char *err = NULL;
  1444. const size_t errbufsz = 0x100;
  1445. free(err);
  1446. err = NULL;
  1447. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1448. *F = fdopen((int)i, mode);
  1449. if (!*F)
  1450. {
  1451. err = malloc(errbufsz);
  1452. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1453. (int)i, purpose);
  1454. return err;
  1455. }
  1456. } else if (!strcmp(arg, "-")) {
  1457. *F = (mode[0] == 'a') ? stdout : stdin;
  1458. if (!*F)
  1459. {
  1460. err = malloc(errbufsz);
  1461. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1462. (mode[0] == 'a') ? "out" : "in", purpose);
  1463. return err;
  1464. }
  1465. } else {
  1466. *F = fopen(arg, mode);
  1467. if (!*F)
  1468. {
  1469. err = malloc(errbufsz);
  1470. snprintf(err, errbufsz, "Failed to open %s for %s",
  1471. arg, purpose);
  1472. return err;
  1473. }
  1474. }
  1475. return NULL;
  1476. }
  1477. static char *set_noncelog(char *arg)
  1478. {
  1479. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1480. }
  1481. static char *set_sharelog(char *arg)
  1482. {
  1483. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1484. }
  1485. char *set_temp_cutoff(char *arg)
  1486. {
  1487. if (strchr(arg, ','))
  1488. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1489. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1490. char buf[0x100];
  1491. snprintf(buf, sizeof(buf), "all:temp-cutoff=%s", arg);
  1492. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1493. string_elist_add(buf, &opt_set_device_list);
  1494. return NULL;
  1495. }
  1496. char *set_temp_target(char *arg)
  1497. {
  1498. if (strchr(arg, ','))
  1499. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1500. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1501. char buf[0x100];
  1502. snprintf(buf, sizeof(buf), "all:temp-target=%s", arg);
  1503. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1504. string_elist_add(buf, &opt_set_device_list);
  1505. return NULL;
  1506. }
  1507. static char *set_api_allow(const char *arg)
  1508. {
  1509. opt_set_charp(arg, &opt_api_allow);
  1510. return NULL;
  1511. }
  1512. static char *set_api_groups(const char *arg)
  1513. {
  1514. opt_set_charp(arg, &opt_api_groups);
  1515. return NULL;
  1516. }
  1517. static char *set_api_description(const char *arg)
  1518. {
  1519. opt_set_charp(arg, &opt_api_description);
  1520. return NULL;
  1521. }
  1522. static char *set_api_mcast_des(const char *arg)
  1523. {
  1524. opt_set_charp(arg, &opt_api_mcast_des);
  1525. return NULL;
  1526. }
  1527. #ifdef USE_ICARUS
  1528. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1529. static char *set_icarus_options(const char *arg)
  1530. {
  1531. if (strchr(arg, ','))
  1532. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1533. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1534. char *opts = strdup(arg), *argdup;
  1535. argdup = opts;
  1536. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1537. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1538. char buf[0x100], *saveptr, *opt;
  1539. for (int i = 0; i < 4; ++i, ++sdf)
  1540. {
  1541. opt = strtok_r(opts, ":", &saveptr);
  1542. opts = NULL;
  1543. if (!opt)
  1544. break;
  1545. if (!opt[0])
  1546. continue;
  1547. for (int j = 0; j < 4; ++j)
  1548. {
  1549. snprintf(buf, sizeof(buf), "%s:%s=%s", drivers[j], sdf->optname, opt);
  1550. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1551. string_elist_add(buf, &opt_set_device_list);
  1552. }
  1553. }
  1554. free(argdup);
  1555. return NULL;
  1556. }
  1557. static char *set_icarus_timing(const char *arg)
  1558. {
  1559. if (strchr(arg, ','))
  1560. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1561. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1562. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1563. char buf[0x100];
  1564. for (int j = 0; j < 4; ++j)
  1565. {
  1566. snprintf(buf, sizeof(buf), "%s:timing=%s", drivers[j], arg);
  1567. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1568. string_elist_add(buf, &opt_set_device_list);
  1569. }
  1570. return NULL;
  1571. }
  1572. #endif
  1573. #ifdef USE_AVALON
  1574. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1575. static char *set_avalon_options(const char *arg)
  1576. {
  1577. if (strchr(arg, ','))
  1578. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1579. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1580. char *opts = strdup(arg), *argdup;
  1581. argdup = opts;
  1582. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1583. char buf[0x100], *saveptr, *opt;
  1584. for (int i = 0; i < 5; ++i, ++sdf)
  1585. {
  1586. opt = strtok_r(opts, ":", &saveptr);
  1587. opts = NULL;
  1588. if (!opt)
  1589. break;
  1590. if (!opt[0])
  1591. continue;
  1592. snprintf(buf, sizeof(buf), "avalon:%s=%s", sdf->optname, opt);
  1593. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1594. string_elist_add(buf, &opt_set_device_list);
  1595. }
  1596. free(argdup);
  1597. return NULL;
  1598. }
  1599. #endif
  1600. #ifdef USE_KLONDIKE
  1601. static char *set_klondike_options(const char *arg)
  1602. {
  1603. char buf[0x100];
  1604. int hashclock;
  1605. double temptarget;
  1606. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1607. {
  1608. default:
  1609. return "Unrecognised --klondike-options";
  1610. case 2:
  1611. snprintf(buf, sizeof(buf), "klondike:temp-target=%lf", temptarget);
  1612. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1613. string_elist_add(buf, &opt_set_device_list);
  1614. // fallthru
  1615. case 1:
  1616. snprintf(buf, sizeof(buf), "klondike:clock=%d", hashclock);
  1617. applog(LOG_DEBUG, "%s: Using --set-device %s", __func__, buf);
  1618. string_elist_add(buf, &opt_set_device_list);
  1619. }
  1620. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1621. return NULL;
  1622. }
  1623. #endif
  1624. __maybe_unused
  1625. static char *set_null(const char __maybe_unused *arg)
  1626. {
  1627. return NULL;
  1628. }
  1629. /* These options are available from config file or commandline */
  1630. static struct opt_table opt_config_table[] = {
  1631. #ifdef WANT_CPUMINE
  1632. OPT_WITH_ARG("--algo",
  1633. set_algo, show_algo, &opt_algo,
  1634. "Specify sha256 implementation for CPU mining:\n"
  1635. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1636. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1637. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1638. #ifdef WANT_SSE2_4WAY
  1639. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1640. #endif
  1641. #ifdef WANT_VIA_PADLOCK
  1642. "\n\tvia\t\tVIA padlock implementation"
  1643. #endif
  1644. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1645. #ifdef WANT_CRYPTOPP_ASM32
  1646. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1647. #endif
  1648. #ifdef WANT_X8632_SSE2
  1649. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1650. #endif
  1651. #ifdef WANT_X8664_SSE2
  1652. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1653. #endif
  1654. #ifdef WANT_X8664_SSE4
  1655. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1656. #endif
  1657. #ifdef WANT_ALTIVEC_4WAY
  1658. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1659. #endif
  1660. ),
  1661. OPT_WITH_ARG("-a",
  1662. set_algo, show_algo, &opt_algo,
  1663. opt_hidden),
  1664. #endif
  1665. OPT_WITH_ARG("--api-allow",
  1666. set_api_allow, NULL, NULL,
  1667. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1668. OPT_WITH_ARG("--api-description",
  1669. set_api_description, NULL, NULL,
  1670. "Description placed in the API status header, default: BFGMiner version"),
  1671. OPT_WITH_ARG("--api-groups",
  1672. set_api_groups, NULL, NULL,
  1673. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1674. OPT_WITHOUT_ARG("--api-listen",
  1675. opt_set_bool, &opt_api_listen,
  1676. "Enable API, default: disabled"),
  1677. OPT_WITHOUT_ARG("--api-mcast",
  1678. opt_set_bool, &opt_api_mcast,
  1679. "Enable API Multicast listener, default: disabled"),
  1680. OPT_WITH_ARG("--api-mcast-addr",
  1681. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1682. "API Multicast listen address"),
  1683. OPT_WITH_ARG("--api-mcast-code",
  1684. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1685. "Code expected in the API Multicast message, don't use '-'"),
  1686. OPT_WITH_ARG("--api-mcast-des",
  1687. set_api_mcast_des, NULL, NULL,
  1688. "Description appended to the API Multicast reply, default: ''"),
  1689. OPT_WITH_ARG("--api-mcast-port",
  1690. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1691. "API Multicast listen port"),
  1692. OPT_WITHOUT_ARG("--api-network",
  1693. opt_set_bool, &opt_api_network,
  1694. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1695. OPT_WITH_ARG("--api-port",
  1696. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1697. "Port number of miner API"),
  1698. #ifdef HAVE_ADL
  1699. OPT_WITHOUT_ARG("--auto-fan",
  1700. opt_set_bool, &opt_autofan,
  1701. "Automatically adjust all GPU fan speeds to maintain a target temperature"),
  1702. OPT_WITHOUT_ARG("--auto-gpu",
  1703. opt_set_bool, &opt_autoengine,
  1704. "Automatically adjust all GPU engine clock speeds to maintain a target temperature"),
  1705. #endif
  1706. OPT_WITHOUT_ARG("--balance",
  1707. set_balance, &pool_strategy,
  1708. "Change multipool strategy from failover to even share balance"),
  1709. OPT_WITHOUT_ARG("--benchmark",
  1710. opt_set_bool, &opt_benchmark,
  1711. "Run BFGMiner in benchmark mode - produces no shares"),
  1712. #if defined(USE_BITFORCE)
  1713. OPT_WITHOUT_ARG("--bfl-range",
  1714. opt_set_bool, &opt_bfl_noncerange,
  1715. "Use nonce range on bitforce devices if supported"),
  1716. #endif
  1717. #ifdef WANT_CPUMINE
  1718. OPT_WITH_ARG("--bench-algo",
  1719. set_int_0_to_9999, opt_show_intval, &opt_bench_algo,
  1720. opt_hidden),
  1721. #endif
  1722. #ifdef HAVE_CHROOT
  1723. OPT_WITH_ARG("--chroot-dir",
  1724. opt_set_charp, NULL, &chroot_dir,
  1725. "Chroot to a directory right after startup"),
  1726. #endif
  1727. OPT_WITH_ARG("--cmd-idle",
  1728. opt_set_charp, NULL, &cmd_idle,
  1729. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1730. OPT_WITH_ARG("--cmd-sick",
  1731. opt_set_charp, NULL, &cmd_sick,
  1732. "Execute a command when a device is declared sick"),
  1733. OPT_WITH_ARG("--cmd-dead",
  1734. opt_set_charp, NULL, &cmd_dead,
  1735. "Execute a command when a device is declared dead"),
  1736. #if BLKMAKER_VERSION > 1
  1737. OPT_WITH_ARG("--coinbase-addr",
  1738. set_b58addr, NULL, &opt_coinbase_script,
  1739. "Set coinbase payout address for solo mining"),
  1740. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1741. set_b58addr, NULL, &opt_coinbase_script,
  1742. opt_hidden),
  1743. #endif
  1744. #if BLKMAKER_VERSION > 0
  1745. OPT_WITH_ARG("--coinbase-sig",
  1746. set_strdup, NULL, &opt_coinbase_sig,
  1747. "Set coinbase signature when possible"),
  1748. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1749. set_strdup, NULL, &opt_coinbase_sig,
  1750. opt_hidden),
  1751. #endif
  1752. #ifdef HAVE_CURSES
  1753. OPT_WITHOUT_ARG("--compact",
  1754. opt_set_bool, &opt_compact,
  1755. "Use compact display without per device statistics"),
  1756. #endif
  1757. #ifdef WANT_CPUMINE
  1758. OPT_WITH_ARG("--cpu-threads",
  1759. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1760. "Number of miner CPU threads"),
  1761. OPT_WITH_ARG("-t",
  1762. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1763. opt_hidden),
  1764. #endif
  1765. OPT_WITHOUT_ARG("--debug|-D",
  1766. enable_debug, &opt_debug,
  1767. "Enable debug output"),
  1768. OPT_WITHOUT_ARG("--debuglog",
  1769. opt_set_bool, &opt_debug,
  1770. "Enable debug logging"),
  1771. OPT_WITHOUT_ARG("--device-protocol-dump",
  1772. opt_set_bool, &opt_dev_protocol,
  1773. "Verbose dump of device protocol-level activities"),
  1774. OPT_WITH_ARG("--device|-d",
  1775. set_devices, NULL, NULL,
  1776. "Enable only devices matching pattern (default: all)"),
  1777. OPT_WITHOUT_ARG("--disable-rejecting",
  1778. opt_set_bool, &opt_disable_pool,
  1779. "Automatically disable pools that continually reject shares"),
  1780. #ifdef USE_LIBMICROHTTPD
  1781. OPT_WITH_ARG("--http-port",
  1782. opt_set_intval, opt_show_intval, &httpsrv_port,
  1783. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1784. #endif
  1785. OPT_WITH_ARG("--expiry",
  1786. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1787. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1788. OPT_WITH_ARG("-E",
  1789. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1790. opt_hidden),
  1791. OPT_WITH_ARG("--expiry-lp",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1793. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1794. OPT_WITHOUT_ARG("--failover-only",
  1795. opt_set_bool, &opt_fail_only,
  1796. "Don't leak work to backup pools when primary pool is lagging"),
  1797. #ifdef USE_FPGA
  1798. OPT_WITHOUT_ARG("--force-dev-init",
  1799. opt_set_bool, &opt_force_dev_init,
  1800. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1801. #endif
  1802. #ifdef HAVE_OPENCL
  1803. OPT_WITH_ARG("--gpu-dyninterval",
  1804. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1805. "Set the refresh interval in ms for GPUs using dynamic intensity"),
  1806. OPT_WITH_ARG("--gpu-platform",
  1807. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1808. "Select OpenCL platform ID to use for GPU mining"),
  1809. OPT_WITH_ARG("--gpu-threads",
  1810. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1811. "Number of threads per GPU (1 - 10)"),
  1812. OPT_WITH_ARG("-g",
  1813. set_int_1_to_10, opt_show_intval, &opt_g_threads,
  1814. opt_hidden),
  1815. #ifdef HAVE_ADL
  1816. OPT_WITH_ARG("--gpu-engine",
  1817. set_gpu_engine, NULL, NULL,
  1818. "GPU engine (over)clock range in MHz - one value, range and/or comma separated list (e.g. 850-900,900,750-850)"),
  1819. OPT_WITH_ARG("--gpu-fan",
  1820. set_gpu_fan, NULL, NULL,
  1821. "GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
  1822. OPT_WITH_ARG("--gpu-map",
  1823. set_gpu_map, NULL, NULL,
  1824. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1825. OPT_WITH_ARG("--gpu-memclock",
  1826. set_gpu_memclock, NULL, NULL,
  1827. "Set the GPU memory (over)clock in MHz - one value for all or separate by commas for per card"),
  1828. OPT_WITH_ARG("--gpu-memdiff",
  1829. set_gpu_memdiff, NULL, NULL,
  1830. "Set a fixed difference in clock speed between the GPU and memory in auto-gpu mode"),
  1831. OPT_WITH_ARG("--gpu-powertune",
  1832. set_gpu_powertune, NULL, NULL,
  1833. "Set the GPU powertune percentage - one value for all or separate by commas for per card"),
  1834. OPT_WITHOUT_ARG("--gpu-reorder",
  1835. opt_set_bool, &opt_reorder,
  1836. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1837. OPT_WITH_ARG("--gpu-vddc",
  1838. set_gpu_vddc, NULL, NULL,
  1839. "Set the GPU voltage in Volts - one value for all or separate by commas for per card"),
  1840. #endif
  1841. #ifdef USE_SCRYPT
  1842. OPT_WITH_ARG("--lookup-gap",
  1843. set_lookup_gap, NULL, NULL,
  1844. "Set GPU lookup gap for scrypt mining, comma separated"),
  1845. OPT_WITH_ARG("--intensity",
  1846. set_intensity, NULL, NULL,
  1847. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1848. " -> " MAX_SCRYPT_INTENSITY_STR
  1849. ",default: d to maintain desktop interactivity)"),
  1850. #else
  1851. OPT_WITH_ARG("--intensity",
  1852. set_intensity, NULL, NULL,
  1853. "Intensity of GPU scanning (d or " MIN_SHA_INTENSITY_STR
  1854. " -> " MAX_SHA_INTENSITY_STR
  1855. ",default: d to maintain desktop interactivity)"),
  1856. #endif
  1857. OPT_WITH_ARG("-I",
  1858. set_intensity, NULL, NULL,
  1859. opt_hidden),
  1860. #endif
  1861. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1862. OPT_WITH_ARG("--kernel-path",
  1863. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1864. "Specify a path to where bitstream and kernel files are"),
  1865. OPT_WITH_ARG("-K",
  1866. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1867. opt_hidden),
  1868. #endif
  1869. #ifdef HAVE_OPENCL
  1870. OPT_WITH_ARG("--kernel",
  1871. set_kernel, NULL, NULL,
  1872. "Override sha256 kernel to use (diablo, poclbm, phatk or diakgcn) - one value or comma separated"),
  1873. OPT_WITH_ARG("-k",
  1874. set_kernel, NULL, NULL,
  1875. opt_hidden),
  1876. #endif
  1877. #ifdef USE_ICARUS
  1878. OPT_WITH_ARG("--icarus-options",
  1879. set_icarus_options, NULL, NULL,
  1880. opt_hidden),
  1881. OPT_WITH_ARG("--icarus-timing",
  1882. set_icarus_timing, NULL, NULL,
  1883. opt_hidden),
  1884. #endif
  1885. #ifdef USE_AVALON
  1886. OPT_WITH_ARG("--avalon-options",
  1887. set_avalon_options, NULL, NULL,
  1888. opt_hidden),
  1889. #endif
  1890. #ifdef USE_KLONDIKE
  1891. OPT_WITH_ARG("--klondike-options",
  1892. set_klondike_options, NULL, NULL,
  1893. "Set klondike options clock:temptarget"),
  1894. #endif
  1895. OPT_WITHOUT_ARG("--load-balance",
  1896. set_loadbalance, &pool_strategy,
  1897. "Change multipool strategy from failover to quota based balance"),
  1898. OPT_WITH_ARG("--log|-l",
  1899. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1900. "Interval in seconds between log output"),
  1901. OPT_WITH_ARG("--log-file|-L",
  1902. set_log_file, NULL, NULL,
  1903. "Append log file for output messages"),
  1904. OPT_WITH_ARG("--logfile",
  1905. set_log_file, NULL, NULL,
  1906. opt_hidden),
  1907. OPT_WITHOUT_ARG("--log-microseconds",
  1908. opt_set_bool, &opt_log_microseconds,
  1909. "Include microseconds in log output"),
  1910. #if defined(unix) || defined(__APPLE__)
  1911. OPT_WITH_ARG("--monitor|-m",
  1912. opt_set_charp, NULL, &opt_stderr_cmd,
  1913. "Use custom pipe cmd for output messages"),
  1914. #endif // defined(unix)
  1915. OPT_WITHOUT_ARG("--net-delay",
  1916. opt_set_bool, &opt_delaynet,
  1917. "Impose small delays in networking to avoid overloading slow routers"),
  1918. OPT_WITHOUT_ARG("--no-adl",
  1919. opt_set_bool, &opt_noadl,
  1920. #ifdef HAVE_ADL
  1921. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1922. #else
  1923. opt_hidden
  1924. #endif
  1925. ),
  1926. OPT_WITHOUT_ARG("--no-gbt",
  1927. opt_set_invbool, &want_gbt,
  1928. "Disable getblocktemplate support"),
  1929. OPT_WITHOUT_ARG("--no-getwork",
  1930. opt_set_invbool, &want_getwork,
  1931. "Disable getwork support"),
  1932. OPT_WITHOUT_ARG("--no-hotplug",
  1933. #ifdef HAVE_BFG_HOTPLUG
  1934. opt_set_invbool, &opt_hotplug,
  1935. "Disable hotplug detection"
  1936. #else
  1937. set_null, &opt_hotplug,
  1938. opt_hidden
  1939. #endif
  1940. ),
  1941. OPT_WITHOUT_ARG("--no-longpoll",
  1942. opt_set_invbool, &want_longpoll,
  1943. "Disable X-Long-Polling support"),
  1944. OPT_WITHOUT_ARG("--no-pool-disable",
  1945. opt_set_invbool, &opt_disable_pool,
  1946. opt_hidden),
  1947. OPT_WITHOUT_ARG("--no-restart",
  1948. opt_set_invbool, &opt_restart,
  1949. "Do not attempt to restart devices that hang"
  1950. ),
  1951. OPT_WITHOUT_ARG("--no-show-processors",
  1952. opt_set_invbool, &opt_show_procs,
  1953. opt_hidden),
  1954. OPT_WITHOUT_ARG("--no-show-procs",
  1955. opt_set_invbool, &opt_show_procs,
  1956. opt_hidden),
  1957. OPT_WITHOUT_ARG("--no-stratum",
  1958. opt_set_invbool, &want_stratum,
  1959. "Disable Stratum detection"),
  1960. OPT_WITHOUT_ARG("--no-submit-stale",
  1961. opt_set_invbool, &opt_submit_stale,
  1962. "Don't submit shares if they are detected as stale"),
  1963. #ifdef HAVE_OPENCL
  1964. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1965. opt_set_invbool, &opt_opencl_binaries,
  1966. "Don't attempt to use or save OpenCL kernel binaries"),
  1967. #endif
  1968. OPT_WITHOUT_ARG("--no-unicode",
  1969. #ifdef USE_UNICODE
  1970. opt_set_invbool, &use_unicode,
  1971. "Don't use Unicode characters in TUI"
  1972. #else
  1973. set_null, &use_unicode,
  1974. opt_hidden
  1975. #endif
  1976. ),
  1977. OPT_WITH_ARG("--noncelog",
  1978. set_noncelog, NULL, NULL,
  1979. "Create log of all nonces found"),
  1980. OPT_WITH_ARG("--pass|-p",
  1981. set_pass, NULL, NULL,
  1982. "Password for bitcoin JSON-RPC server"),
  1983. OPT_WITHOUT_ARG("--per-device-stats",
  1984. opt_set_bool, &want_per_device_stats,
  1985. "Force verbose mode and output per-device statistics"),
  1986. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1987. set_userpass, NULL, NULL,
  1988. opt_hidden),
  1989. OPT_WITH_ARG("--pool-priority",
  1990. set_pool_priority, NULL, NULL,
  1991. "Priority for just the previous-defined pool"),
  1992. OPT_WITH_ARG("--pool-proxy|-x",
  1993. set_pool_proxy, NULL, NULL,
  1994. "Proxy URI to use for connecting to just the previous-defined pool"),
  1995. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1996. set_pool_force_rollntime, NULL, NULL,
  1997. opt_hidden),
  1998. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1999. opt_set_bool, &opt_protocol,
  2000. "Verbose dump of protocol-level activities"),
  2001. OPT_WITH_ARG("--queue|-Q",
  2002. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2003. "Minimum number of work items to have queued (0+)"),
  2004. OPT_WITHOUT_ARG("--quiet|-q",
  2005. opt_set_bool, &opt_quiet,
  2006. "Disable logging output, display status and errors"),
  2007. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2008. opt_set_bool, &opt_quiet_work_updates,
  2009. opt_hidden),
  2010. OPT_WITH_ARG("--quit-summary",
  2011. set_quit_summary, NULL, NULL,
  2012. "Summary printed when you quit: none/devs/procs/detailed"),
  2013. OPT_WITH_ARG("--quota|-U",
  2014. set_quota, NULL, NULL,
  2015. "quota;URL combination for server with load-balance strategy quotas"),
  2016. OPT_WITHOUT_ARG("--real-quiet",
  2017. opt_set_bool, &opt_realquiet,
  2018. "Disable all output"),
  2019. OPT_WITH_ARG("--request-diff",
  2020. set_request_diff, opt_show_floatval, &request_pdiff,
  2021. "Request a specific difficulty from pools"),
  2022. OPT_WITH_ARG("--retries",
  2023. opt_set_intval, opt_show_intval, &opt_retries,
  2024. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2025. OPT_WITH_ARG("--retry-pause",
  2026. set_null, NULL, NULL,
  2027. opt_hidden),
  2028. OPT_WITH_ARG("--rotate",
  2029. set_rotate, opt_show_intval, &opt_rotate_period,
  2030. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2031. OPT_WITHOUT_ARG("--round-robin",
  2032. set_rr, &pool_strategy,
  2033. "Change multipool strategy from failover to round robin on failure"),
  2034. OPT_WITH_ARG("--scan|-S",
  2035. add_serial, NULL, NULL,
  2036. "Configure how to scan for mining devices"),
  2037. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2038. add_serial, NULL, NULL,
  2039. opt_hidden),
  2040. OPT_WITH_ARG("--scan-time",
  2041. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2042. "Upper bound on time spent scanning current work, in seconds"),
  2043. OPT_WITH_ARG("-s",
  2044. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2045. opt_hidden),
  2046. OPT_WITH_ARG("--scantime",
  2047. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2048. opt_hidden),
  2049. OPT_WITH_ARG("--sched-start",
  2050. set_schedtime, NULL, &schedstart,
  2051. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2052. OPT_WITH_ARG("--sched-stop",
  2053. set_schedtime, NULL, &schedstop,
  2054. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2055. #ifdef USE_SCRYPT
  2056. OPT_WITHOUT_ARG("--scrypt",
  2057. opt_set_bool, &opt_scrypt,
  2058. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2059. #endif
  2060. OPT_WITH_ARG("--set-device|--set",
  2061. opt_string_elist_add, NULL, &opt_set_device_list,
  2062. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2063. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2064. OPT_WITH_ARG("--shaders",
  2065. set_shaders, NULL, NULL,
  2066. "GPU shaders per card for tuning scrypt, comma separated"),
  2067. #endif
  2068. #ifdef HAVE_PWD_H
  2069. OPT_WITH_ARG("--setuid",
  2070. opt_set_charp, NULL, &opt_setuid,
  2071. "Username of an unprivileged user to run as"),
  2072. #endif
  2073. OPT_WITH_ARG("--sharelog",
  2074. set_sharelog, NULL, NULL,
  2075. "Append share log to file"),
  2076. OPT_WITH_ARG("--shares",
  2077. opt_set_intval, NULL, &opt_shares,
  2078. "Quit after mining N shares (default: unlimited)"),
  2079. OPT_WITHOUT_ARG("--show-processors",
  2080. opt_set_bool, &opt_show_procs,
  2081. "Show per processor statistics in summary"),
  2082. OPT_WITHOUT_ARG("--show-procs",
  2083. opt_set_bool, &opt_show_procs,
  2084. opt_hidden),
  2085. OPT_WITH_ARG("--skip-security-checks",
  2086. set_int_0_to_9999, NULL, &opt_skip_checks,
  2087. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2088. OPT_WITH_ARG("--socks-proxy",
  2089. opt_set_charp, NULL, &opt_socks_proxy,
  2090. "Set socks proxy (host:port)"),
  2091. #ifdef USE_LIBEVENT
  2092. OPT_WITH_ARG("--stratum-port",
  2093. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2094. "Port number to listen on for stratum miners (-1 means disabled)"),
  2095. #endif
  2096. OPT_WITHOUT_ARG("--submit-stale",
  2097. opt_set_bool, &opt_submit_stale,
  2098. opt_hidden),
  2099. OPT_WITH_ARG("--submit-threads",
  2100. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2101. "Minimum number of concurrent share submissions (default: 64)"),
  2102. #ifdef HAVE_SYSLOG_H
  2103. OPT_WITHOUT_ARG("--syslog",
  2104. opt_set_bool, &use_syslog,
  2105. "Use system log for output messages (default: standard error)"),
  2106. #endif
  2107. OPT_WITH_ARG("--temp-cutoff",
  2108. set_temp_cutoff, NULL, &opt_cutofftemp,
  2109. opt_hidden),
  2110. OPT_WITH_ARG("--temp-hysteresis",
  2111. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2112. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2113. #ifdef HAVE_ADL
  2114. OPT_WITH_ARG("--temp-overheat",
  2115. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2116. "Overheat temperature when automatically managing fan and GPU speeds, one value or comma separated list"),
  2117. #endif
  2118. OPT_WITH_ARG("--temp-target",
  2119. set_temp_target, NULL, NULL,
  2120. opt_hidden),
  2121. OPT_WITHOUT_ARG("--text-only|-T",
  2122. opt_set_invbool, &use_curses,
  2123. #ifdef HAVE_CURSES
  2124. "Disable ncurses formatted screen output"
  2125. #else
  2126. opt_hidden
  2127. #endif
  2128. ),
  2129. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2130. OPT_WITH_ARG("--thread-concurrency",
  2131. set_thread_concurrency, NULL, NULL,
  2132. "Set GPU thread concurrency for scrypt mining, comma separated"),
  2133. #endif
  2134. #ifdef USE_UNICODE
  2135. OPT_WITHOUT_ARG("--unicode",
  2136. opt_set_bool, &use_unicode,
  2137. "Use Unicode characters in TUI"),
  2138. #endif
  2139. OPT_WITH_ARG("--url|-o",
  2140. set_url, NULL, NULL,
  2141. "URL for bitcoin JSON-RPC server"),
  2142. OPT_WITH_ARG("--user|-u",
  2143. set_user, NULL, NULL,
  2144. "Username for bitcoin JSON-RPC server"),
  2145. #ifdef HAVE_OPENCL
  2146. OPT_WITH_ARG("--vectors",
  2147. set_vector, NULL, NULL,
  2148. "Override detected optimal vector (1, 2 or 4) - one value or comma separated list"),
  2149. OPT_WITH_ARG("-v",
  2150. set_vector, NULL, NULL,
  2151. opt_hidden),
  2152. #endif
  2153. OPT_WITHOUT_ARG("--verbose",
  2154. opt_set_bool, &opt_log_output,
  2155. "Log verbose output to stderr as well as status output"),
  2156. OPT_WITHOUT_ARG("--weighed-stats",
  2157. opt_set_bool, &opt_weighed_stats,
  2158. "Display statistics weighed to difficulty 1"),
  2159. #ifdef HAVE_OPENCL
  2160. OPT_WITH_ARG("--worksize",
  2161. set_worksize, NULL, NULL,
  2162. "Override detected optimal worksize - one value or comma separated list"),
  2163. OPT_WITH_ARG("-w",
  2164. set_worksize, NULL, NULL,
  2165. opt_hidden),
  2166. #endif
  2167. OPT_WITHOUT_ARG("--unittest",
  2168. opt_set_bool, &opt_unittest, opt_hidden),
  2169. OPT_WITH_ARG("--userpass|-O",
  2170. set_userpass, NULL, NULL,
  2171. "Username:Password pair for bitcoin JSON-RPC server"),
  2172. OPT_WITHOUT_ARG("--worktime",
  2173. opt_set_bool, &opt_worktime,
  2174. "Display extra work time debug information"),
  2175. OPT_WITH_ARG("--pools",
  2176. opt_set_bool, NULL, NULL, opt_hidden),
  2177. OPT_ENDTABLE
  2178. };
  2179. static char *load_config(const char *arg, void __maybe_unused *unused);
  2180. static int fileconf_load;
  2181. static char *parse_config(json_t *config, bool fileconf)
  2182. {
  2183. static char err_buf[200];
  2184. struct opt_table *opt;
  2185. json_t *val;
  2186. if (fileconf && !fileconf_load)
  2187. fileconf_load = 1;
  2188. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2189. char *p, *name, *sp;
  2190. /* We don't handle subtables. */
  2191. assert(!(opt->type & OPT_SUBTABLE));
  2192. if (!opt->names)
  2193. continue;
  2194. /* Pull apart the option name(s). */
  2195. name = strdup(opt->names);
  2196. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2197. char *err = "Invalid value";
  2198. /* Ignore short options. */
  2199. if (p[1] != '-')
  2200. continue;
  2201. val = json_object_get(config, p+2);
  2202. if (!val)
  2203. continue;
  2204. if (opt->type & OPT_HASARG) {
  2205. if (json_is_string(val)) {
  2206. err = opt->cb_arg(json_string_value(val),
  2207. opt->u.arg);
  2208. } else if (json_is_number(val)) {
  2209. char buf[256], *p, *q;
  2210. snprintf(buf, 256, "%f", json_number_value(val));
  2211. if ( (p = strchr(buf, '.')) ) {
  2212. // Trim /\.0*$/ to work properly with integer-only arguments
  2213. q = p;
  2214. while (*(++q) == '0') {}
  2215. if (*q == '\0')
  2216. *p = '\0';
  2217. }
  2218. err = opt->cb_arg(buf, opt->u.arg);
  2219. } else if (json_is_array(val)) {
  2220. int n, size = json_array_size(val);
  2221. err = NULL;
  2222. for (n = 0; n < size && !err; n++) {
  2223. if (json_is_string(json_array_get(val, n)))
  2224. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2225. else if (json_is_object(json_array_get(val, n)))
  2226. err = parse_config(json_array_get(val, n), false);
  2227. }
  2228. }
  2229. } else if (opt->type & OPT_NOARG) {
  2230. if (json_is_true(val))
  2231. err = opt->cb(opt->u.arg);
  2232. else if (json_is_boolean(val)) {
  2233. if (opt->cb == (void*)opt_set_bool)
  2234. err = opt_set_invbool(opt->u.arg);
  2235. else if (opt->cb == (void*)opt_set_invbool)
  2236. err = opt_set_bool(opt->u.arg);
  2237. }
  2238. }
  2239. if (err) {
  2240. /* Allow invalid values to be in configuration
  2241. * file, just skipping over them provided the
  2242. * JSON is still valid after that. */
  2243. if (fileconf) {
  2244. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2245. fileconf_load = -1;
  2246. } else {
  2247. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2248. p, err);
  2249. return err_buf;
  2250. }
  2251. }
  2252. }
  2253. free(name);
  2254. }
  2255. val = json_object_get(config, JSON_INCLUDE_CONF);
  2256. if (val && json_is_string(val))
  2257. return load_config(json_string_value(val), NULL);
  2258. return NULL;
  2259. }
  2260. char *cnfbuf = NULL;
  2261. static char *load_config(const char *arg, void __maybe_unused *unused)
  2262. {
  2263. json_error_t err;
  2264. json_t *config;
  2265. char *json_error;
  2266. size_t siz;
  2267. if (!cnfbuf)
  2268. cnfbuf = strdup(arg);
  2269. if (++include_count > JSON_MAX_DEPTH)
  2270. return JSON_MAX_DEPTH_ERR;
  2271. #if JANSSON_MAJOR_VERSION > 1
  2272. config = json_load_file(arg, 0, &err);
  2273. #else
  2274. config = json_load_file(arg, &err);
  2275. #endif
  2276. if (!json_is_object(config)) {
  2277. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2278. json_error = malloc(siz);
  2279. if (!json_error)
  2280. quit(1, "Malloc failure in json error");
  2281. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2282. return json_error;
  2283. }
  2284. config_loaded = true;
  2285. /* Parse the config now, so we can override it. That can keep pointers
  2286. * so don't free config object. */
  2287. return parse_config(config, true);
  2288. }
  2289. static void load_default_config(void)
  2290. {
  2291. cnfbuf = malloc(PATH_MAX);
  2292. #if defined(unix)
  2293. if (getenv("HOME") && *getenv("HOME")) {
  2294. strcpy(cnfbuf, getenv("HOME"));
  2295. strcat(cnfbuf, "/");
  2296. } else
  2297. strcpy(cnfbuf, "");
  2298. char *dirp = cnfbuf + strlen(cnfbuf);
  2299. strcpy(dirp, ".bfgminer/");
  2300. strcat(dirp, def_conf);
  2301. if (access(cnfbuf, R_OK))
  2302. // No BFGMiner config, try Cgminer's...
  2303. strcpy(dirp, ".cgminer/cgminer.conf");
  2304. #else
  2305. strcpy(cnfbuf, "");
  2306. strcat(cnfbuf, def_conf);
  2307. #endif
  2308. if (!access(cnfbuf, R_OK))
  2309. load_config(cnfbuf, NULL);
  2310. else {
  2311. free(cnfbuf);
  2312. cnfbuf = NULL;
  2313. }
  2314. }
  2315. extern const char *opt_argv0;
  2316. static char *opt_verusage_and_exit(const char *extra)
  2317. {
  2318. puts(packagename);
  2319. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2320. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2321. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2322. printf(" Options:%s\n", BFG_OPTLIST);
  2323. printf("%s", opt_usage(opt_argv0, extra));
  2324. fflush(stdout);
  2325. exit(0);
  2326. }
  2327. /* These options are parsed before anything else */
  2328. static struct opt_table opt_early_table[] = {
  2329. OPT_EARLY_WITH_ARG("--config|-c",
  2330. set_bool_ignore_arg, NULL, &config_loaded,
  2331. opt_hidden),
  2332. OPT_EARLY_WITHOUT_ARG("--no-config",
  2333. opt_set_bool, &config_loaded,
  2334. "Inhibit loading default config file"),
  2335. OPT_ENDTABLE
  2336. };
  2337. /* These options are available from commandline only */
  2338. static struct opt_table opt_cmdline_table[] = {
  2339. OPT_WITH_ARG("--config|-c",
  2340. load_config, NULL, NULL,
  2341. "Load a JSON-format configuration file\n"
  2342. "See example.conf for an example configuration."),
  2343. OPT_EARLY_WITHOUT_ARG("--no-config",
  2344. opt_set_bool, &config_loaded,
  2345. "Inhibit loading default config file"),
  2346. OPT_WITHOUT_ARG("--help|-h",
  2347. opt_verusage_and_exit, NULL,
  2348. "Print this message"),
  2349. #ifdef HAVE_OPENCL
  2350. OPT_WITHOUT_ARG("--ndevs|-n",
  2351. print_ndevs_and_exit, &nDevs,
  2352. opt_hidden),
  2353. #endif
  2354. OPT_WITHOUT_ARG("--version|-V",
  2355. opt_version_and_exit, packagename,
  2356. "Display version and exit"),
  2357. OPT_ENDTABLE
  2358. };
  2359. static bool jobj_binary(const json_t *obj, const char *key,
  2360. void *buf, size_t buflen, bool required)
  2361. {
  2362. const char *hexstr;
  2363. json_t *tmp;
  2364. tmp = json_object_get(obj, key);
  2365. if (unlikely(!tmp)) {
  2366. if (unlikely(required))
  2367. applog(LOG_ERR, "JSON key '%s' not found", key);
  2368. return false;
  2369. }
  2370. hexstr = json_string_value(tmp);
  2371. if (unlikely(!hexstr)) {
  2372. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2373. return false;
  2374. }
  2375. if (!hex2bin(buf, hexstr, buflen))
  2376. return false;
  2377. return true;
  2378. }
  2379. static void calc_midstate(struct work *work)
  2380. {
  2381. union {
  2382. unsigned char c[64];
  2383. uint32_t i[16];
  2384. } data;
  2385. swap32yes(&data.i[0], work->data, 16);
  2386. sha256_ctx ctx;
  2387. sha256_init(&ctx);
  2388. sha256_update(&ctx, data.c, 64);
  2389. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2390. swap32tole(work->midstate, work->midstate, 8);
  2391. }
  2392. static struct work *make_work(void)
  2393. {
  2394. struct work *work = calloc(1, sizeof(struct work));
  2395. if (unlikely(!work))
  2396. quit(1, "Failed to calloc work in make_work");
  2397. cg_wlock(&control_lock);
  2398. work->id = total_work++;
  2399. cg_wunlock(&control_lock);
  2400. return work;
  2401. }
  2402. /* This is the central place all work that is about to be retired should be
  2403. * cleaned to remove any dynamically allocated arrays within the struct */
  2404. void clean_work(struct work *work)
  2405. {
  2406. free(work->job_id);
  2407. bytes_free(&work->nonce2);
  2408. free(work->nonce1);
  2409. if (work->tmpl) {
  2410. struct pool *pool = work->pool;
  2411. mutex_lock(&pool->pool_lock);
  2412. bool free_tmpl = !--*work->tmpl_refcount;
  2413. mutex_unlock(&pool->pool_lock);
  2414. if (free_tmpl) {
  2415. blktmpl_free(work->tmpl);
  2416. free(work->tmpl_refcount);
  2417. }
  2418. }
  2419. memset(work, 0, sizeof(struct work));
  2420. }
  2421. /* All dynamically allocated work structs should be freed here to not leak any
  2422. * ram from arrays allocated within the work struct */
  2423. void free_work(struct work *work)
  2424. {
  2425. clean_work(work);
  2426. free(work);
  2427. }
  2428. 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";
  2429. // Must only be called with ch_lock held!
  2430. static
  2431. void __update_block_title(const unsigned char *hash_swap)
  2432. {
  2433. if (hash_swap) {
  2434. char tmp[17];
  2435. // Only provided when the block has actually changed
  2436. free(current_hash);
  2437. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2438. bin2hex(tmp, &hash_swap[24], 8);
  2439. memset(current_hash, '.', 3);
  2440. memcpy(&current_hash[3], tmp, 17);
  2441. known_blkheight_current = false;
  2442. } else if (likely(known_blkheight_current)) {
  2443. return;
  2444. }
  2445. if (current_block_id == known_blkheight_blkid) {
  2446. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2447. if (known_blkheight < 1000000) {
  2448. memmove(&current_hash[3], &current_hash[11], 8);
  2449. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2450. }
  2451. known_blkheight_current = true;
  2452. }
  2453. }
  2454. static
  2455. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2456. {
  2457. if (known_blkheight == blkheight)
  2458. return;
  2459. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2460. cg_wlock(&ch_lock);
  2461. known_blkheight = blkheight;
  2462. known_blkheight_blkid = block_id;
  2463. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2464. if (block_id == current_block_id)
  2465. __update_block_title(NULL);
  2466. cg_wunlock(&ch_lock);
  2467. }
  2468. static
  2469. void pool_set_opaque(struct pool *pool, bool opaque)
  2470. {
  2471. if (pool->swork.opaque == opaque)
  2472. return;
  2473. pool->swork.opaque = opaque;
  2474. if (opaque)
  2475. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2476. pool->pool_no);
  2477. else
  2478. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2479. pool->pool_no);
  2480. }
  2481. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2482. {
  2483. json_t *res_val = json_object_get(val, "result");
  2484. json_t *tmp_val;
  2485. bool ret = false;
  2486. if (unlikely(detect_algo == 1)) {
  2487. json_t *tmp = json_object_get(res_val, "algorithm");
  2488. const char *v = tmp ? json_string_value(tmp) : "";
  2489. if (strncasecmp(v, "scrypt", 6))
  2490. detect_algo = 2;
  2491. }
  2492. if (work->tmpl) {
  2493. struct timeval tv_now;
  2494. cgtime(&tv_now);
  2495. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2496. if (err) {
  2497. applog(LOG_ERR, "blktmpl error: %s", err);
  2498. return false;
  2499. }
  2500. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2501. #if BLKMAKER_VERSION > 1
  2502. if (opt_coinbase_script.sz)
  2503. {
  2504. bool newcb;
  2505. #if BLKMAKER_VERSION > 2
  2506. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2507. #else
  2508. newcb = !work->tmpl->cbtxn;
  2509. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2510. #endif
  2511. if (newcb)
  2512. {
  2513. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2514. if (ae < (ssize_t)sizeof(template_nonce))
  2515. 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);
  2516. ++template_nonce;
  2517. }
  2518. }
  2519. #endif
  2520. #if BLKMAKER_VERSION > 0
  2521. {
  2522. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2523. static bool appenderr = false;
  2524. if (ae <= 0) {
  2525. if (opt_coinbase_sig) {
  2526. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2527. appenderr = true;
  2528. }
  2529. } else if (ae >= 3 || opt_coinbase_sig) {
  2530. const char *cbappend = opt_coinbase_sig;
  2531. const char full[] = PACKAGE " " VERSION;
  2532. if (!cbappend) {
  2533. if ((size_t)ae >= sizeof(full) - 1)
  2534. cbappend = full;
  2535. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2536. cbappend = PACKAGE;
  2537. else
  2538. cbappend = "BFG";
  2539. }
  2540. size_t cbappendsz = strlen(cbappend);
  2541. static bool truncatewarning = false;
  2542. if (cbappendsz <= (size_t)ae) {
  2543. if (cbappendsz < (size_t)ae)
  2544. // If we have space, include the trailing \0
  2545. ++cbappendsz;
  2546. ae = cbappendsz;
  2547. truncatewarning = false;
  2548. } else {
  2549. char *tmp = malloc(ae + 1);
  2550. memcpy(tmp, opt_coinbase_sig, ae);
  2551. tmp[ae] = '\0';
  2552. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2553. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2554. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2555. free(tmp);
  2556. truncatewarning = true;
  2557. }
  2558. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2559. if (ae <= 0) {
  2560. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2561. appenderr = true;
  2562. } else
  2563. appenderr = false;
  2564. }
  2565. }
  2566. #endif
  2567. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2568. return false;
  2569. swap32yes(work->data, work->data, 80 / 4);
  2570. memcpy(&work->data[80], workpadding_bin, 48);
  2571. const struct blktmpl_longpoll_req *lp;
  2572. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2573. free(pool->lp_id);
  2574. pool->lp_id = strdup(lp->id);
  2575. #if 0 /* This just doesn't work :( */
  2576. curl_socket_t sock = pool->lp_socket;
  2577. if (sock != CURL_SOCKET_BAD) {
  2578. pool->lp_socket = CURL_SOCKET_BAD;
  2579. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2580. shutdown(sock, SHUT_RDWR);
  2581. }
  2582. #endif
  2583. }
  2584. }
  2585. else
  2586. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2587. applog(LOG_ERR, "JSON inval data");
  2588. return false;
  2589. }
  2590. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2591. // Calculate it ourselves
  2592. applog(LOG_DEBUG, "Calculating midstate locally");
  2593. calc_midstate(work);
  2594. }
  2595. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2596. applog(LOG_ERR, "JSON inval target");
  2597. return false;
  2598. }
  2599. if (work->tmpl) {
  2600. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2601. {
  2602. int p = (sizeof(work->target) - 1) - i;
  2603. unsigned char c = work->target[i];
  2604. work->target[i] = work->target[p];
  2605. work->target[p] = c;
  2606. }
  2607. }
  2608. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2609. uint32_t blkheight = json_number_value(tmp_val);
  2610. uint32_t block_id = ((uint32_t*)work->data)[1];
  2611. have_block_height(block_id, blkheight);
  2612. }
  2613. memset(work->hash, 0, sizeof(work->hash));
  2614. cgtime(&work->tv_staged);
  2615. pool_set_opaque(pool, !work->tmpl);
  2616. ret = true;
  2617. return ret;
  2618. }
  2619. /* Returns whether the pool supports local work generation or not. */
  2620. static bool pool_localgen(struct pool *pool)
  2621. {
  2622. return (pool->last_work_copy || pool->has_stratum);
  2623. }
  2624. int dev_from_id(int thr_id)
  2625. {
  2626. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2627. return cgpu->device_id;
  2628. }
  2629. /* Create an exponentially decaying average over the opt_log_interval */
  2630. void decay_time(double *f, double fadd, double fsecs)
  2631. {
  2632. double ftotal, fprop;
  2633. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2634. ftotal = 1.0 + fprop;
  2635. *f += (fadd * fprop);
  2636. *f /= ftotal;
  2637. }
  2638. static int __total_staged(void)
  2639. {
  2640. return HASH_COUNT(staged_work);
  2641. }
  2642. static int total_staged(void)
  2643. {
  2644. int ret;
  2645. mutex_lock(stgd_lock);
  2646. ret = __total_staged();
  2647. mutex_unlock(stgd_lock);
  2648. return ret;
  2649. }
  2650. #ifdef HAVE_CURSES
  2651. WINDOW *mainwin, *statuswin, *logwin;
  2652. #endif
  2653. double total_secs = 1.0;
  2654. static char statusline[256];
  2655. /* logstart is where the log window should start */
  2656. static int devcursor, logstart, logcursor;
  2657. #ifdef HAVE_CURSES
  2658. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2659. static int statusy;
  2660. static int devsummaryYOffset;
  2661. static int total_lines;
  2662. #endif
  2663. #ifdef HAVE_OPENCL
  2664. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2665. #endif
  2666. struct cgpu_info *cpus;
  2667. bool _bfg_console_cancel_disabled;
  2668. int _bfg_console_prev_cancelstate;
  2669. #ifdef HAVE_CURSES
  2670. #define lock_curses() bfg_console_lock()
  2671. #define unlock_curses() bfg_console_unlock()
  2672. static bool curses_active_locked(void)
  2673. {
  2674. bool ret;
  2675. lock_curses();
  2676. ret = curses_active;
  2677. if (!ret)
  2678. unlock_curses();
  2679. return ret;
  2680. }
  2681. // Cancellable getch
  2682. int my_cancellable_getch(void)
  2683. {
  2684. // This only works because the macro only hits direct getch() calls
  2685. typedef int (*real_getch_t)(void);
  2686. const real_getch_t real_getch = __real_getch;
  2687. int type, rv;
  2688. bool sct;
  2689. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2690. rv = real_getch();
  2691. if (sct)
  2692. pthread_setcanceltype(type, &type);
  2693. return rv;
  2694. }
  2695. #ifdef PDCURSES
  2696. static
  2697. int bfg_wresize(WINDOW *win, int lines, int columns)
  2698. {
  2699. int rv = wresize(win, lines, columns);
  2700. int x, y;
  2701. getyx(win, y, x);
  2702. if (unlikely(y >= lines || x >= columns))
  2703. {
  2704. if (y >= lines)
  2705. y = lines - 1;
  2706. if (x >= columns)
  2707. x = columns - 1;
  2708. wmove(win, y, x);
  2709. }
  2710. return rv;
  2711. }
  2712. #else
  2713. # define bfg_wresize wresize
  2714. #endif
  2715. #endif
  2716. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2717. {
  2718. va_list ap;
  2719. size_t presz = strlen(buf);
  2720. va_start(ap, fmt);
  2721. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2722. va_end(ap);
  2723. }
  2724. double stats_elapsed(struct cgminer_stats *stats)
  2725. {
  2726. struct timeval now;
  2727. double elapsed;
  2728. if (stats->start_tv.tv_sec == 0)
  2729. elapsed = total_secs;
  2730. else {
  2731. cgtime(&now);
  2732. elapsed = tdiff(&now, &stats->start_tv);
  2733. }
  2734. if (elapsed < 1.0)
  2735. elapsed = 1.0;
  2736. return elapsed;
  2737. }
  2738. bool drv_ready(struct cgpu_info *cgpu)
  2739. {
  2740. switch (cgpu->status) {
  2741. case LIFE_INIT:
  2742. case LIFE_DEAD2:
  2743. return false;
  2744. default:
  2745. return true;
  2746. }
  2747. }
  2748. double cgpu_utility(struct cgpu_info *cgpu)
  2749. {
  2750. double dev_runtime = cgpu_runtime(cgpu);
  2751. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2752. }
  2753. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2754. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2755. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2756. }while(0)
  2757. static float
  2758. utility_to_hashrate(double utility)
  2759. {
  2760. return utility * 0x4444444;
  2761. }
  2762. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2763. static const int _unitbase = 4;
  2764. static
  2765. void pick_unit(float hashrate, unsigned char *unit)
  2766. {
  2767. unsigned char i;
  2768. if (hashrate == 0)
  2769. {
  2770. if (*unit < _unitbase)
  2771. *unit = _unitbase;
  2772. return;
  2773. }
  2774. hashrate *= 1e12;
  2775. for (i = 0; i < *unit; ++i)
  2776. hashrate /= 1e3;
  2777. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2778. while (hashrate >= 999.95)
  2779. {
  2780. hashrate /= 1e3;
  2781. if (likely(_unitchar[*unit] != '?'))
  2782. ++*unit;
  2783. }
  2784. }
  2785. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2786. enum h2bs_fmt {
  2787. H2B_NOUNIT, // "xxx.x"
  2788. H2B_SHORT, // "xxx.xMH/s"
  2789. H2B_SPACED, // "xxx.x MH/s"
  2790. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2791. };
  2792. static const size_t h2bs_fmt_size[] = {6, 10, 11};
  2793. enum bfu_floatprec {
  2794. FUP_INTEGER,
  2795. FUP_HASHES,
  2796. FUP_BTC,
  2797. FUP_DIFF,
  2798. };
  2799. static
  2800. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2801. {
  2802. char *s = buf;
  2803. unsigned char prec, i, unit;
  2804. int rv = 0;
  2805. if (unitin == -1)
  2806. {
  2807. unit = 0;
  2808. hashrate_pick_unit(hashrate, &unit);
  2809. }
  2810. else
  2811. unit = unitin;
  2812. hashrate *= 1e12;
  2813. for (i = 0; i < unit; ++i)
  2814. hashrate /= 1000;
  2815. switch (fprec)
  2816. {
  2817. case FUP_HASHES:
  2818. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2819. if (hashrate >= 99.995 || unit < 6)
  2820. prec = 1;
  2821. else
  2822. prec = 2;
  2823. _SNP("%5.*f", prec, hashrate);
  2824. break;
  2825. case FUP_INTEGER:
  2826. _SNP("%3d", (int)hashrate);
  2827. break;
  2828. case FUP_BTC:
  2829. if (hashrate >= 99.995)
  2830. prec = 0;
  2831. else
  2832. prec = 2;
  2833. _SNP("%5.*f", prec, hashrate);
  2834. break;
  2835. case FUP_DIFF:
  2836. if (unit > _unitbase)
  2837. _SNP("%.3g", hashrate);
  2838. else
  2839. _SNP("%u", (unsigned int)hashrate);
  2840. }
  2841. switch (fmt) {
  2842. case H2B_SPACED:
  2843. _SNP(" ");
  2844. case H2B_SHORT:
  2845. _SNP("%c%s", _unitchar[unit], measurement);
  2846. default:
  2847. break;
  2848. case H2B_SHORTV:
  2849. _SNP("%.1s%s", (unit == _unitbase) ? "" : &_unitchar[unit], measurement);
  2850. }
  2851. return rv;
  2852. }
  2853. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2854. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2855. static
  2856. 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)
  2857. {
  2858. unsigned char unit = 0;
  2859. bool allzero = true;
  2860. int i;
  2861. size_t delimsz = 0;
  2862. char *buf = buflist[0];
  2863. size_t bufsz = bufszlist[0];
  2864. size_t itemwidth = (floatprec ? 5 : 3);
  2865. if (!isarray)
  2866. delimsz = strlen(delim);
  2867. for (i = 0; i < count; ++i)
  2868. if (numbers[i] != 0)
  2869. {
  2870. pick_unit(numbers[i], &unit);
  2871. allzero = false;
  2872. }
  2873. if (allzero)
  2874. unit = _unitbase;
  2875. --count;
  2876. for (i = 0; i < count; ++i)
  2877. {
  2878. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2879. if (isarray)
  2880. {
  2881. buf = buflist[i + 1];
  2882. bufsz = bufszlist[i + 1];
  2883. }
  2884. else
  2885. {
  2886. buf += itemwidth;
  2887. bufsz -= itemwidth;
  2888. if (delimsz > bufsz)
  2889. delimsz = bufsz;
  2890. memcpy(buf, delim, delimsz);
  2891. buf += delimsz;
  2892. bufsz -= delimsz;
  2893. }
  2894. }
  2895. // Last entry has the unit
  2896. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2897. return buflist[0];
  2898. }
  2899. #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)
  2900. #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)
  2901. static
  2902. int percentf3(char * const buf, size_t sz, double p, const double t)
  2903. {
  2904. char *s = buf;
  2905. int rv = 0;
  2906. if (!p)
  2907. _SNP("none");
  2908. else
  2909. if (t <= p)
  2910. _SNP("100%%");
  2911. else
  2912. {
  2913. p /= t;
  2914. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2915. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2916. else
  2917. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2918. _SNP("%.1f%%", p * 100); // "9.1%"
  2919. else
  2920. _SNP("%3.0f%%", p * 100); // " 99%"
  2921. }
  2922. return rv;
  2923. }
  2924. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2925. static
  2926. void test_decimal_width()
  2927. {
  2928. // The pipe character at end of each line should perfectly line up
  2929. char printbuf[512];
  2930. char testbuf1[64];
  2931. char testbuf2[64];
  2932. char testbuf3[64];
  2933. char testbuf4[64];
  2934. double testn;
  2935. int width;
  2936. int saved;
  2937. // Hotspots around 0.1 and 0.01
  2938. saved = -1;
  2939. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2940. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2941. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2942. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2943. if (unlikely((saved != -1) && (width != saved))) {
  2944. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2945. applog(LOG_ERR, "%s", printbuf);
  2946. }
  2947. saved = width;
  2948. }
  2949. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2950. saved = -1;
  2951. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2952. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2953. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2954. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2955. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2956. if (unlikely((saved != -1) && (width != saved))) {
  2957. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2958. applog(LOG_ERR, "%s", printbuf);
  2959. }
  2960. saved = width;
  2961. }
  2962. // Hotspot around unit transition boundary in pick_unit
  2963. saved = -1;
  2964. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2965. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2966. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2967. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2968. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2969. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2970. if (unlikely((saved != -1) && (width != saved))) {
  2971. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2972. applog(LOG_ERR, "%s", printbuf);
  2973. }
  2974. saved = width;
  2975. }
  2976. }
  2977. #ifdef HAVE_CURSES
  2978. static void adj_width(int var, int *length);
  2979. #endif
  2980. #ifdef HAVE_CURSES
  2981. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2982. static
  2983. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, int wnotaccepted, int waccepted, int hwerrs, int bad_diff1, int allnonces)
  2984. {
  2985. char rejpcbuf[6];
  2986. char bnbuf[6];
  2987. adj_width(accepted, &awidth);
  2988. adj_width(rejected, &rwidth);
  2989. adj_width(stale, &swidth);
  2990. adj_width(hwerrs, &hwwidth);
  2991. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  2992. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  2993. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  2994. cHr, aHr, uHr,
  2995. awidth, accepted,
  2996. rwidth, rejected,
  2997. swidth, stale,
  2998. rejpcbuf,
  2999. hwwidth, hwerrs,
  3000. bnbuf
  3001. );
  3002. }
  3003. #endif
  3004. static inline
  3005. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3006. {
  3007. if (!(use_unicode && have_unicode_degrees))
  3008. maybe_unicode = false;
  3009. if (temp && *temp > 0.)
  3010. if (maybe_unicode)
  3011. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3012. else
  3013. snprintf(buf, bufsz, "%4.1fC", *temp);
  3014. else
  3015. {
  3016. if (temp)
  3017. snprintf(buf, bufsz, " ");
  3018. if (maybe_unicode)
  3019. tailsprintf(buf, bufsz, " ");
  3020. }
  3021. tailsprintf(buf, bufsz, " | ");
  3022. }
  3023. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3024. {
  3025. #ifndef HAVE_CURSES
  3026. assert(for_curses == false);
  3027. #endif
  3028. struct device_drv *drv = cgpu->drv;
  3029. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3030. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[hashrate_style]];
  3031. char rejpcbuf[6];
  3032. char bnbuf[6];
  3033. double dev_runtime;
  3034. if (!opt_show_procs)
  3035. cgpu = cgpu->device;
  3036. dev_runtime = cgpu_runtime(cgpu);
  3037. double rolling, mhashes;
  3038. int accepted, rejected, stale;
  3039. double waccepted;
  3040. double wnotaccepted;
  3041. int hwerrs;
  3042. double bad_diff1, good_diff1;
  3043. rolling = mhashes = waccepted = wnotaccepted = 0;
  3044. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3045. {
  3046. struct cgpu_info *slave = cgpu;
  3047. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3048. {
  3049. slave->utility = slave->accepted / dev_runtime * 60;
  3050. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3051. rolling += slave->rolling;
  3052. mhashes += slave->total_mhashes;
  3053. if (opt_weighed_stats)
  3054. {
  3055. accepted += slave->diff_accepted;
  3056. rejected += slave->diff_rejected;
  3057. stale += slave->diff_stale;
  3058. }
  3059. else
  3060. {
  3061. accepted += slave->accepted;
  3062. rejected += slave->rejected;
  3063. stale += slave->stale;
  3064. }
  3065. waccepted += slave->diff_accepted;
  3066. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3067. hwerrs += slave->hw_errors;
  3068. bad_diff1 += slave->bad_diff1;
  3069. good_diff1 += slave->diff1;
  3070. if (opt_show_procs)
  3071. break;
  3072. }
  3073. }
  3074. double wtotal = (waccepted + wnotaccepted);
  3075. multi_format_unit_array2(
  3076. ((char*[]){cHr, aHr, uHr}),
  3077. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[hashrate_style]}),
  3078. true, "h/s", hashrate_style,
  3079. 3,
  3080. 1e6*rolling,
  3081. 1e6*mhashes / dev_runtime,
  3082. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3083. // Processor representation
  3084. #ifdef HAVE_CURSES
  3085. if (for_curses)
  3086. {
  3087. if (opt_show_procs)
  3088. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3089. else
  3090. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3091. }
  3092. else
  3093. #endif
  3094. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3095. if (include_serial_in_statline && cgpu->dev_serial)
  3096. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3097. if (unlikely(cgpu->status == LIFE_INIT))
  3098. {
  3099. tailsprintf(buf, bufsz, "Initializing...");
  3100. return;
  3101. }
  3102. {
  3103. const size_t bufln = strlen(buf);
  3104. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3105. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3106. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3107. else
  3108. {
  3109. float temp = cgpu->temp;
  3110. if (!opt_show_procs)
  3111. {
  3112. // Find the highest temperature of all processors
  3113. struct cgpu_info *proc = cgpu;
  3114. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3115. if (proc->temp > temp)
  3116. temp = proc->temp;
  3117. }
  3118. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3119. }
  3120. }
  3121. #ifdef HAVE_CURSES
  3122. if (for_curses)
  3123. {
  3124. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3125. const char *cHrStats;
  3126. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3127. bool all_dead = true, all_off = true, all_rdrv = true;
  3128. struct cgpu_info *proc = cgpu;
  3129. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3130. {
  3131. switch (cHrStatsI) {
  3132. default:
  3133. if (proc->status == LIFE_WAIT)
  3134. cHrStatsI = 5;
  3135. case 5:
  3136. if (proc->deven == DEV_RECOVER_ERR)
  3137. cHrStatsI = 4;
  3138. case 4:
  3139. if (proc->deven == DEV_RECOVER)
  3140. cHrStatsI = 3;
  3141. case 3:
  3142. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3143. {
  3144. cHrStatsI = 1;
  3145. all_off = false;
  3146. }
  3147. else
  3148. {
  3149. if (likely(proc->deven == DEV_ENABLED))
  3150. all_off = false;
  3151. if (proc->deven != DEV_RECOVER_DRV)
  3152. all_rdrv = false;
  3153. }
  3154. case 1:
  3155. break;
  3156. }
  3157. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3158. all_dead = false;
  3159. if (opt_show_procs)
  3160. break;
  3161. }
  3162. if (unlikely(all_dead))
  3163. cHrStatsI = 0;
  3164. else
  3165. if (unlikely(all_off))
  3166. cHrStatsI = 2;
  3167. cHrStats = cHrStatsOpt[cHrStatsI];
  3168. if (cHrStatsI == 2 && all_rdrv)
  3169. cHrStats = " RST ";
  3170. format_statline(buf, bufsz,
  3171. cHrStats,
  3172. aHr, uHr,
  3173. accepted, rejected, stale,
  3174. wnotaccepted, waccepted,
  3175. hwerrs,
  3176. bad_diff1, bad_diff1 + good_diff1);
  3177. }
  3178. else
  3179. #endif
  3180. {
  3181. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3182. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3183. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3184. opt_log_interval,
  3185. cHr, aHr, uHr,
  3186. accepted,
  3187. rejected,
  3188. stale,
  3189. rejpcbuf,
  3190. hwerrs,
  3191. bnbuf
  3192. );
  3193. }
  3194. }
  3195. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3196. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3197. static void text_print_status(int thr_id)
  3198. {
  3199. struct cgpu_info *cgpu;
  3200. char logline[256];
  3201. cgpu = get_thr_cgpu(thr_id);
  3202. if (cgpu) {
  3203. get_statline(logline, sizeof(logline), cgpu);
  3204. printf("%s\n", logline);
  3205. }
  3206. }
  3207. #ifdef HAVE_CURSES
  3208. static int attr_bad = A_BOLD;
  3209. #ifdef WIN32
  3210. #define swprintf snwprintf
  3211. #endif
  3212. static
  3213. void bfg_waddstr(WINDOW *win, const char *s)
  3214. {
  3215. const char *p = s;
  3216. int32_t w;
  3217. int wlen;
  3218. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3219. while (true)
  3220. {
  3221. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3222. {
  3223. // Printable ASCII
  3224. ++p;
  3225. }
  3226. if (p != s)
  3227. waddnstr(win, s, p - s);
  3228. w = utf8_decode(p, &wlen);
  3229. if (unlikely(p[0] == '\xb5')) // HACK for Mu (SI prefix micro-)
  3230. {
  3231. w = unicode_micro;
  3232. wlen = 1;
  3233. }
  3234. s = p += wlen;
  3235. switch(w)
  3236. {
  3237. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3238. case '\0':
  3239. return;
  3240. case 0xf000: // "bad" off
  3241. wattroff(win, attr_bad);
  3242. break;
  3243. case 0xf001: // "bad" on
  3244. wattron(win, attr_bad);
  3245. break;
  3246. #ifdef USE_UNICODE
  3247. case '|':
  3248. wadd_wch(win, WACS_VLINE);
  3249. break;
  3250. #endif
  3251. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3252. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3253. if (!use_unicode)
  3254. {
  3255. waddch(win, '-');
  3256. break;
  3257. }
  3258. #ifdef USE_UNICODE
  3259. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3260. break;
  3261. #endif
  3262. case 0x2022:
  3263. if (w > WCHAR_MAX || !iswprint(w))
  3264. w = '*';
  3265. default:
  3266. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3267. {
  3268. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3269. if (iswprint(REPLACEMENT_CHAR))
  3270. w = REPLACEMENT_CHAR;
  3271. else
  3272. #endif
  3273. w = '?';
  3274. }
  3275. {
  3276. #ifdef USE_UNICODE
  3277. wchar_t wbuf[0x10];
  3278. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3279. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3280. waddnwstr(win, wbuf, wbuflen);
  3281. #else
  3282. wprintw(win, "%lc", (wint_t)w);
  3283. #endif
  3284. }
  3285. }
  3286. }
  3287. }
  3288. static inline
  3289. void bfg_hline(WINDOW *win, int y)
  3290. {
  3291. int maxx, __maybe_unused maxy;
  3292. getmaxyx(win, maxy, maxx);
  3293. #ifdef USE_UNICODE
  3294. if (use_unicode)
  3295. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3296. else
  3297. #endif
  3298. mvwhline(win, y, 0, '-', maxx);
  3299. }
  3300. // Spaces until end of line, using current attributes (ie, not completely clear)
  3301. static
  3302. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3303. {
  3304. int x, maxx;
  3305. int __maybe_unused y;
  3306. getmaxyx(win, y, maxx);
  3307. getyx(win, y, x);
  3308. const int space_count = (maxx - x) - offset;
  3309. // Check for negative - terminal too narrow
  3310. if (space_count <= 0)
  3311. return;
  3312. char buf[space_count];
  3313. memset(buf, ' ', space_count);
  3314. waddnstr(win, buf, space_count);
  3315. }
  3316. static int menu_attr = A_REVERSE;
  3317. #define CURBUFSIZ 256
  3318. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3319. char tmp42[CURBUFSIZ]; \
  3320. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3321. wmove(win, y, x); \
  3322. bfg_waddstr(win, tmp42); \
  3323. } while (0)
  3324. #define cg_wprintw(win, fmt, ...) do { \
  3325. char tmp42[CURBUFSIZ]; \
  3326. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3327. bfg_waddstr(win, tmp42); \
  3328. } while (0)
  3329. /* Must be called with curses mutex lock held and curses_active */
  3330. static void curses_print_status(const int ts)
  3331. {
  3332. struct pool *pool = currentpool;
  3333. struct timeval now, tv;
  3334. float efficiency;
  3335. double income;
  3336. int logdiv;
  3337. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3338. wattron(statuswin, attr_title);
  3339. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3340. timer_set_now(&now);
  3341. {
  3342. unsigned int days, hours;
  3343. div_t d;
  3344. timersub(&now, &miner_started, &tv);
  3345. d = div(tv.tv_sec, 86400);
  3346. days = d.quot;
  3347. d = div(d.rem, 3600);
  3348. hours = d.quot;
  3349. d = div(d.rem, 60);
  3350. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3351. , days
  3352. , (days == 1) ? ' ' : 's'
  3353. , hours
  3354. , d.quot
  3355. , d.rem
  3356. );
  3357. }
  3358. bfg_wspctoeol(statuswin, 0);
  3359. wattroff(statuswin, attr_title);
  3360. wattron(statuswin, menu_attr);
  3361. wmove(statuswin, 1, 0);
  3362. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3363. bfg_wspctoeol(statuswin, 14);
  3364. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3365. wattroff(statuswin, menu_attr);
  3366. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3367. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3368. have_longpoll ? "": "out");
  3369. } else if (pool->has_stratum) {
  3370. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3371. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3372. } else {
  3373. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3374. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3375. }
  3376. wclrtoeol(statuswin);
  3377. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3378. current_hash, block_diff, net_hashrate, blocktime);
  3379. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3380. char bwstr[12], incomestr[13];
  3381. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3382. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3383. ts,
  3384. total_go + total_ro,
  3385. new_blocks,
  3386. total_submitting,
  3387. multi_format_unit2(bwstr, sizeof(bwstr),
  3388. false, "B/s", H2B_SHORT, "/", 2,
  3389. (float)(total_bytes_rcvd / total_secs),
  3390. (float)(total_bytes_sent / total_secs)),
  3391. efficiency,
  3392. incomestr,
  3393. best_share);
  3394. wclrtoeol(statuswin);
  3395. mvwaddstr(statuswin, 5, 0, " ");
  3396. bfg_waddstr(statuswin, statusline);
  3397. wclrtoeol(statuswin);
  3398. logdiv = statusy - 1;
  3399. bfg_hline(statuswin, 6);
  3400. bfg_hline(statuswin, logdiv);
  3401. #ifdef USE_UNICODE
  3402. if (use_unicode)
  3403. {
  3404. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3405. if (opt_show_procs && !opt_compact)
  3406. ++offset; // proc letter
  3407. if (have_unicode_degrees)
  3408. ++offset; // degrees symbol
  3409. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3410. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3411. offset += 24; // hashrates etc
  3412. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3413. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3414. }
  3415. #endif
  3416. }
  3417. static void adj_width(int var, int *length)
  3418. {
  3419. if ((int)(log10(var) + 1) > *length)
  3420. (*length)++;
  3421. }
  3422. static int dev_width;
  3423. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3424. {
  3425. char logline[256];
  3426. int ypos;
  3427. if (opt_compact)
  3428. return;
  3429. /* Check this isn't out of the window size */
  3430. if (opt_show_procs)
  3431. ypos = cgpu->cgminer_id;
  3432. else
  3433. {
  3434. if (cgpu->proc_id)
  3435. return;
  3436. ypos = cgpu->device_line_id;
  3437. }
  3438. ypos += devsummaryYOffset;
  3439. if (ypos < 0)
  3440. return;
  3441. ypos += devcursor - 1;
  3442. if (ypos >= statusy - 1)
  3443. return;
  3444. if (wmove(statuswin, ypos, 0) == ERR)
  3445. return;
  3446. get_statline2(logline, sizeof(logline), cgpu, true);
  3447. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3448. wattron(statuswin, A_REVERSE);
  3449. bfg_waddstr(statuswin, logline);
  3450. wattroff(statuswin, A_REVERSE);
  3451. wclrtoeol(statuswin);
  3452. }
  3453. static
  3454. void _refresh_devstatus(const bool already_have_lock) {
  3455. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3456. int i;
  3457. if (unlikely(!total_devices))
  3458. {
  3459. const int ypos = devcursor - 1;
  3460. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3461. {
  3462. wattron(statuswin, attr_bad);
  3463. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3464. wclrtoeol(statuswin);
  3465. wattroff(statuswin, attr_bad);
  3466. }
  3467. }
  3468. for (i = 0; i < total_devices; i++)
  3469. curses_print_devstatus(get_devices(i));
  3470. touchwin(statuswin);
  3471. wrefresh(statuswin);
  3472. if (!already_have_lock)
  3473. unlock_curses();
  3474. }
  3475. }
  3476. #define refresh_devstatus() _refresh_devstatus(false)
  3477. #endif
  3478. static void print_status(int thr_id)
  3479. {
  3480. if (!curses_active)
  3481. text_print_status(thr_id);
  3482. }
  3483. #ifdef HAVE_CURSES
  3484. static
  3485. bool set_statusy(int maxy)
  3486. {
  3487. if (loginput_size)
  3488. {
  3489. maxy -= loginput_size;
  3490. if (maxy < 0)
  3491. maxy = 0;
  3492. }
  3493. if (logstart < maxy)
  3494. maxy = logstart;
  3495. if (statusy == maxy)
  3496. return false;
  3497. statusy = maxy;
  3498. logcursor = statusy;
  3499. return true;
  3500. }
  3501. /* Check for window resize. Called with curses mutex locked */
  3502. static inline void change_logwinsize(void)
  3503. {
  3504. int x, y, logx, logy;
  3505. getmaxyx(mainwin, y, x);
  3506. if (x < 80 || y < 25)
  3507. return;
  3508. if (y > statusy + 2 && statusy < logstart) {
  3509. set_statusy(y - 2);
  3510. mvwin(logwin, logcursor, 0);
  3511. bfg_wresize(statuswin, statusy, x);
  3512. }
  3513. y -= logcursor;
  3514. getmaxyx(logwin, logy, logx);
  3515. /* Detect screen size change */
  3516. if (x != logx || y != logy)
  3517. bfg_wresize(logwin, y, x);
  3518. }
  3519. static void check_winsizes(void)
  3520. {
  3521. if (!use_curses)
  3522. return;
  3523. if (curses_active_locked()) {
  3524. int y, x;
  3525. x = getmaxx(statuswin);
  3526. if (set_statusy(LINES - 2))
  3527. {
  3528. erase();
  3529. bfg_wresize(statuswin, statusy, x);
  3530. getmaxyx(mainwin, y, x);
  3531. y -= logcursor;
  3532. bfg_wresize(logwin, y, x);
  3533. mvwin(logwin, logcursor, 0);
  3534. }
  3535. unlock_curses();
  3536. }
  3537. }
  3538. static int device_line_id_count;
  3539. static void switch_logsize(void)
  3540. {
  3541. if (curses_active_locked()) {
  3542. if (opt_compact) {
  3543. logstart = devcursor - 1;
  3544. logcursor = logstart + 1;
  3545. } else {
  3546. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3547. logstart = devcursor + total_lines;
  3548. logcursor = logstart;
  3549. }
  3550. unlock_curses();
  3551. }
  3552. check_winsizes();
  3553. }
  3554. /* For mandatory printing when mutex is already locked */
  3555. void _wlog(const char *str)
  3556. {
  3557. static bool newline;
  3558. size_t end = strlen(str) - 1;
  3559. if (newline)
  3560. bfg_waddstr(logwin, "\n");
  3561. if (str[end] == '\n')
  3562. {
  3563. char *s;
  3564. newline = true;
  3565. s = alloca(end + 1);
  3566. memcpy(s, str, end);
  3567. s[end] = '\0';
  3568. str = s;
  3569. }
  3570. else
  3571. newline = false;
  3572. bfg_waddstr(logwin, str);
  3573. }
  3574. /* Mandatory printing */
  3575. void _wlogprint(const char *str)
  3576. {
  3577. if (curses_active_locked()) {
  3578. _wlog(str);
  3579. unlock_curses();
  3580. }
  3581. }
  3582. #endif
  3583. #ifdef HAVE_CURSES
  3584. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3585. {
  3586. bool high_prio;
  3587. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3588. if (curses_active)
  3589. {
  3590. if (!loginput_size || high_prio) {
  3591. wlog(" %s %s\n", datetime, str);
  3592. if (high_prio) {
  3593. touchwin(logwin);
  3594. wrefresh(logwin);
  3595. }
  3596. }
  3597. return true;
  3598. }
  3599. return false;
  3600. }
  3601. void clear_logwin(void)
  3602. {
  3603. if (curses_active_locked()) {
  3604. wclear(logwin);
  3605. unlock_curses();
  3606. }
  3607. }
  3608. void logwin_update(void)
  3609. {
  3610. if (curses_active_locked()) {
  3611. touchwin(logwin);
  3612. wrefresh(logwin);
  3613. unlock_curses();
  3614. }
  3615. }
  3616. #endif
  3617. static void enable_pool(struct pool *pool)
  3618. {
  3619. if (pool->enabled != POOL_ENABLED) {
  3620. enabled_pools++;
  3621. pool->enabled = POOL_ENABLED;
  3622. }
  3623. }
  3624. #ifdef HAVE_CURSES
  3625. static void disable_pool(struct pool *pool)
  3626. {
  3627. if (pool->enabled == POOL_ENABLED)
  3628. enabled_pools--;
  3629. pool->enabled = POOL_DISABLED;
  3630. }
  3631. #endif
  3632. static void reject_pool(struct pool *pool)
  3633. {
  3634. if (pool->enabled == POOL_ENABLED)
  3635. enabled_pools--;
  3636. pool->enabled = POOL_REJECTING;
  3637. }
  3638. static uint64_t share_diff(const struct work *);
  3639. static
  3640. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3641. struct cgpu_info *cgpu;
  3642. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3643. char shrdiffdisp[16];
  3644. int tgtdiff = floor(work->work_difficulty);
  3645. char tgtdiffdisp[16];
  3646. char where[20];
  3647. cgpu = get_thr_cgpu(work->thr_id);
  3648. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3649. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3650. if (total_pools > 1)
  3651. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3652. else
  3653. where[0] = '\0';
  3654. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3655. disp,
  3656. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3657. cgpu->proc_repr,
  3658. where,
  3659. shrdiffdisp, tgtdiffdisp,
  3660. reason,
  3661. resubmit ? "(resubmit)" : "",
  3662. worktime
  3663. );
  3664. }
  3665. static bool test_work_current(struct work *);
  3666. static void _submit_work_async(struct work *);
  3667. static
  3668. void maybe_local_submit(const struct work *work)
  3669. {
  3670. #if BLKMAKER_VERSION > 3
  3671. if (unlikely(work->block && work->tmpl))
  3672. {
  3673. // This is a block with a full template (GBT)
  3674. // Regardless of the result, submit to local bitcoind(s) as well
  3675. struct work *work_cp;
  3676. char *p;
  3677. for (int i = 0; i < total_pools; ++i)
  3678. {
  3679. p = strchr(pools[i]->rpc_url, '#');
  3680. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3681. continue;
  3682. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3683. work_cp = copy_work(work);
  3684. work_cp->pool = pools[i];
  3685. work_cp->do_foreign_submit = true;
  3686. _submit_work_async(work_cp);
  3687. }
  3688. }
  3689. #endif
  3690. }
  3691. /* Theoretically threads could race when modifying accepted and
  3692. * rejected values but the chance of two submits completing at the
  3693. * same time is zero so there is no point adding extra locking */
  3694. static void
  3695. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3696. /*char *hashshow,*/ bool resubmit, char *worktime)
  3697. {
  3698. struct pool *pool = work->pool;
  3699. struct cgpu_info *cgpu;
  3700. cgpu = get_thr_cgpu(work->thr_id);
  3701. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3702. mutex_lock(&stats_lock);
  3703. cgpu->accepted++;
  3704. total_accepted++;
  3705. pool->accepted++;
  3706. cgpu->diff_accepted += work->work_difficulty;
  3707. total_diff_accepted += work->work_difficulty;
  3708. pool->diff_accepted += work->work_difficulty;
  3709. mutex_unlock(&stats_lock);
  3710. pool->seq_rejects = 0;
  3711. cgpu->last_share_pool = pool->pool_no;
  3712. cgpu->last_share_pool_time = time(NULL);
  3713. cgpu->last_share_diff = work->work_difficulty;
  3714. pool->last_share_time = cgpu->last_share_pool_time;
  3715. pool->last_share_diff = work->work_difficulty;
  3716. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3717. if (!QUIET) {
  3718. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3719. }
  3720. sharelog("accept", work);
  3721. if (opt_shares && total_diff_accepted >= opt_shares) {
  3722. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  3723. kill_work();
  3724. return;
  3725. }
  3726. /* Detect if a pool that has been temporarily disabled for
  3727. * continually rejecting shares has started accepting shares.
  3728. * This will only happen with the work returned from a
  3729. * longpoll */
  3730. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3731. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3732. enable_pool(pool);
  3733. switch_pools(NULL);
  3734. }
  3735. if (unlikely(work->block)) {
  3736. // Force moving on to this new block :)
  3737. struct work fakework;
  3738. memset(&fakework, 0, sizeof(fakework));
  3739. fakework.pool = work->pool;
  3740. // Copy block version, bits, and time from share
  3741. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3742. memcpy(&fakework.data[68], &work->data[68], 8);
  3743. // Set prevblock to winning hash (swap32'd)
  3744. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3745. test_work_current(&fakework);
  3746. }
  3747. } else {
  3748. mutex_lock(&stats_lock);
  3749. cgpu->rejected++;
  3750. total_rejected++;
  3751. pool->rejected++;
  3752. cgpu->diff_rejected += work->work_difficulty;
  3753. total_diff_rejected += work->work_difficulty;
  3754. pool->diff_rejected += work->work_difficulty;
  3755. pool->seq_rejects++;
  3756. mutex_unlock(&stats_lock);
  3757. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3758. if (!QUIET) {
  3759. char where[20];
  3760. char disposition[36] = "reject";
  3761. char reason[32];
  3762. strcpy(reason, "");
  3763. if (total_pools > 1)
  3764. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3765. else
  3766. strcpy(where, "");
  3767. if (!json_is_string(res))
  3768. res = json_object_get(val, "reject-reason");
  3769. if (res) {
  3770. const char *reasontmp = json_string_value(res);
  3771. size_t reasonLen = strlen(reasontmp);
  3772. if (reasonLen > 28)
  3773. reasonLen = 28;
  3774. reason[0] = ' '; reason[1] = '(';
  3775. memcpy(2 + reason, reasontmp, reasonLen);
  3776. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3777. memcpy(disposition + 7, reasontmp, reasonLen);
  3778. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3779. } else if (work->stratum && err && json_is_array(err)) {
  3780. json_t *reason_val = json_array_get(err, 1);
  3781. char *reason_str;
  3782. if (reason_val && json_is_string(reason_val)) {
  3783. reason_str = (char *)json_string_value(reason_val);
  3784. snprintf(reason, 31, " (%s)", reason_str);
  3785. }
  3786. }
  3787. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3788. sharelog(disposition, work);
  3789. }
  3790. /* Once we have more than a nominal amount of sequential rejects,
  3791. * at least 10 and more than 3 mins at the current utility,
  3792. * disable the pool because some pool error is likely to have
  3793. * ensued. Do not do this if we know the share just happened to
  3794. * be stale due to networking delays.
  3795. */
  3796. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3797. double utility = total_accepted / total_secs * 60;
  3798. if (pool->seq_rejects > utility * 3) {
  3799. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3800. pool->pool_no, pool->seq_rejects);
  3801. reject_pool(pool);
  3802. if (pool == current_pool())
  3803. switch_pools(NULL);
  3804. pool->seq_rejects = 0;
  3805. }
  3806. }
  3807. }
  3808. maybe_local_submit(work);
  3809. }
  3810. static char *submit_upstream_work_request(struct work *work)
  3811. {
  3812. char *hexstr = NULL;
  3813. char *s, *sd;
  3814. struct pool *pool = work->pool;
  3815. if (work->tmpl) {
  3816. json_t *req;
  3817. unsigned char data[80];
  3818. swap32yes(data, work->data, 80 / 4);
  3819. #if BLKMAKER_VERSION > 3
  3820. if (work->do_foreign_submit)
  3821. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3822. else
  3823. #endif
  3824. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3825. s = json_dumps(req, 0);
  3826. json_decref(req);
  3827. sd = malloc(161);
  3828. bin2hex(sd, data, 80);
  3829. } else {
  3830. /* build hex string */
  3831. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3832. bin2hex(hexstr, work->data, sizeof(work->data));
  3833. /* build JSON-RPC request */
  3834. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3835. s = realloc_strcat(s, hexstr);
  3836. s = realloc_strcat(s, "\" ], \"id\":1}");
  3837. free(hexstr);
  3838. sd = s;
  3839. }
  3840. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3841. if (work->tmpl)
  3842. free(sd);
  3843. else
  3844. s = realloc_strcat(s, "\n");
  3845. return s;
  3846. }
  3847. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3848. json_t *res, *err;
  3849. bool rc = false;
  3850. int thr_id = work->thr_id;
  3851. struct pool *pool = work->pool;
  3852. struct timeval tv_submit_reply;
  3853. time_t ts_submit_reply;
  3854. char worktime[200] = "";
  3855. cgtime(&tv_submit_reply);
  3856. ts_submit_reply = time(NULL);
  3857. if (unlikely(!val)) {
  3858. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3859. if (!pool_tset(pool, &pool->submit_fail)) {
  3860. total_ro++;
  3861. pool->remotefail_occasions++;
  3862. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3863. }
  3864. goto out;
  3865. } else if (pool_tclear(pool, &pool->submit_fail))
  3866. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3867. res = json_object_get(val, "result");
  3868. err = json_object_get(val, "error");
  3869. if (!QUIET) {
  3870. if (opt_worktime) {
  3871. char workclone[20];
  3872. struct tm _tm;
  3873. struct tm *tm, tm_getwork, tm_submit_reply;
  3874. tm = &_tm;
  3875. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3876. (struct timeval *)&(work->tv_getwork));
  3877. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3878. (struct timeval *)&(work->tv_getwork_reply));
  3879. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3880. (struct timeval *)&(work->tv_work_start));
  3881. double work_to_submit = tdiff(ptv_submit,
  3882. (struct timeval *)&(work->tv_work_found));
  3883. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3884. int diffplaces = 3;
  3885. localtime_r(&work->ts_getwork, tm);
  3886. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3887. localtime_r(&ts_submit_reply, tm);
  3888. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3889. if (work->clone) {
  3890. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3891. tdiff((struct timeval *)&(work->tv_cloned),
  3892. (struct timeval *)&(work->tv_getwork_reply)));
  3893. }
  3894. else
  3895. strcpy(workclone, "O");
  3896. if (work->work_difficulty < 1)
  3897. diffplaces = 6;
  3898. snprintf(worktime, sizeof(worktime),
  3899. " <-%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",
  3900. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3901. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3902. work->getwork_mode, diffplaces, work->work_difficulty,
  3903. tm_getwork.tm_hour, tm_getwork.tm_min,
  3904. tm_getwork.tm_sec, getwork_time, workclone,
  3905. getwork_to_work, work_time, work_to_submit, submit_time,
  3906. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3907. tm_submit_reply.tm_sec);
  3908. }
  3909. }
  3910. share_result(val, res, err, work, resubmit, worktime);
  3911. if (!opt_realquiet)
  3912. print_status(thr_id);
  3913. if (!want_per_device_stats) {
  3914. char logline[256];
  3915. struct cgpu_info *cgpu;
  3916. cgpu = get_thr_cgpu(thr_id);
  3917. get_statline(logline, sizeof(logline), cgpu);
  3918. applog(LOG_INFO, "%s", logline);
  3919. }
  3920. json_decref(val);
  3921. rc = true;
  3922. out:
  3923. return rc;
  3924. }
  3925. /* Specifies whether we can use this pool for work or not. */
  3926. static bool pool_unworkable(struct pool *pool)
  3927. {
  3928. if (pool->idle)
  3929. return true;
  3930. if (pool->enabled != POOL_ENABLED)
  3931. return true;
  3932. if (pool->has_stratum && !pool->stratum_active)
  3933. return true;
  3934. return false;
  3935. }
  3936. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3937. * rolling average per 10 minutes and if pools start getting more, it biases
  3938. * away from them to distribute work evenly. The share count is reset to the
  3939. * rolling average every 10 minutes to not send all work to one pool after it
  3940. * has been disabled/out for an extended period. */
  3941. static struct pool *select_balanced(struct pool *cp)
  3942. {
  3943. int i, lowest = cp->shares;
  3944. struct pool *ret = cp;
  3945. for (i = 0; i < total_pools; i++) {
  3946. struct pool *pool = pools[i];
  3947. if (pool_unworkable(pool))
  3948. continue;
  3949. if (pool->shares < lowest) {
  3950. lowest = pool->shares;
  3951. ret = pool;
  3952. }
  3953. }
  3954. ret->shares++;
  3955. return ret;
  3956. }
  3957. static bool pool_active(struct pool *, bool pinging);
  3958. static void pool_died(struct pool *);
  3959. static struct pool *priority_pool(int choice);
  3960. static bool pool_unusable(struct pool *pool);
  3961. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3962. * it has any quota left. */
  3963. static inline struct pool *select_pool(bool lagging)
  3964. {
  3965. static int rotating_pool = 0;
  3966. struct pool *pool, *cp;
  3967. bool avail = false;
  3968. int tested, i;
  3969. cp = current_pool();
  3970. retry:
  3971. if (pool_strategy == POOL_BALANCE) {
  3972. pool = select_balanced(cp);
  3973. goto out;
  3974. }
  3975. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3976. pool = cp;
  3977. goto out;
  3978. } else
  3979. pool = NULL;
  3980. for (i = 0; i < total_pools; i++) {
  3981. struct pool *tp = pools[i];
  3982. if (tp->quota_used < tp->quota_gcd) {
  3983. avail = true;
  3984. break;
  3985. }
  3986. }
  3987. /* There are no pools with quota, so reset them. */
  3988. if (!avail) {
  3989. for (i = 0; i < total_pools; i++)
  3990. pools[i]->quota_used = 0;
  3991. if (++rotating_pool >= total_pools)
  3992. rotating_pool = 0;
  3993. }
  3994. /* Try to find the first pool in the rotation that is usable */
  3995. tested = 0;
  3996. while (!pool && tested++ < total_pools) {
  3997. pool = pools[rotating_pool];
  3998. if (pool->quota_used++ < pool->quota_gcd) {
  3999. if (!pool_unworkable(pool))
  4000. break;
  4001. /* Failover-only flag for load-balance means distribute
  4002. * unused quota to priority pool 0. */
  4003. if (opt_fail_only)
  4004. priority_pool(0)->quota_used--;
  4005. }
  4006. pool = NULL;
  4007. if (++rotating_pool >= total_pools)
  4008. rotating_pool = 0;
  4009. }
  4010. /* If there are no alive pools with quota, choose according to
  4011. * priority. */
  4012. if (!pool) {
  4013. for (i = 0; i < total_pools; i++) {
  4014. struct pool *tp = priority_pool(i);
  4015. if (!pool_unusable(tp)) {
  4016. pool = tp;
  4017. break;
  4018. }
  4019. }
  4020. }
  4021. /* If still nothing is usable, use the current pool */
  4022. if (!pool)
  4023. pool = cp;
  4024. out:
  4025. if (cp != pool)
  4026. {
  4027. if (!pool_active(pool, false))
  4028. {
  4029. pool_died(pool);
  4030. goto retry;
  4031. }
  4032. pool_tclear(pool, &pool->idle);
  4033. }
  4034. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4035. return pool;
  4036. }
  4037. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4038. static const uint64_t diffone = 0xFFFF000000000000ull;
  4039. static double target_diff(const unsigned char *target)
  4040. {
  4041. double targ = 0;
  4042. signed int i;
  4043. for (i = 31; i >= 0; --i)
  4044. targ = (targ * 0x100) + target[i];
  4045. return DIFFEXACTONE / (targ ?: 1);
  4046. }
  4047. /*
  4048. * Calculate the work share difficulty
  4049. */
  4050. static void calc_diff(struct work *work, int known)
  4051. {
  4052. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4053. double difficulty;
  4054. if (!known) {
  4055. work->work_difficulty = target_diff(work->target);
  4056. } else
  4057. work->work_difficulty = known;
  4058. difficulty = work->work_difficulty;
  4059. pool_stats->last_diff = difficulty;
  4060. suffix_string((uint64_t)difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4061. if (difficulty == pool_stats->min_diff)
  4062. pool_stats->min_diff_count++;
  4063. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4064. pool_stats->min_diff = difficulty;
  4065. pool_stats->min_diff_count = 1;
  4066. }
  4067. if (difficulty == pool_stats->max_diff)
  4068. pool_stats->max_diff_count++;
  4069. else if (difficulty > pool_stats->max_diff) {
  4070. pool_stats->max_diff = difficulty;
  4071. pool_stats->max_diff_count = 1;
  4072. }
  4073. }
  4074. static void get_benchmark_work(struct work *work)
  4075. {
  4076. // Use a random work block pulled from a pool
  4077. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  4078. size_t bench_size = sizeof(*work);
  4079. size_t work_size = sizeof(bench_block);
  4080. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  4081. memset(work, 0, sizeof(*work));
  4082. memcpy(work, &bench_block, min_size);
  4083. work->mandatory = true;
  4084. work->pool = pools[0];
  4085. cgtime(&work->tv_getwork);
  4086. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4087. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4088. calc_diff(work, 0);
  4089. }
  4090. static void wake_gws(void);
  4091. static void update_last_work(struct work *work)
  4092. {
  4093. if (!work->tmpl)
  4094. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4095. return;
  4096. struct pool *pool = work->pool;
  4097. mutex_lock(&pool->last_work_lock);
  4098. if (pool->last_work_copy)
  4099. free_work(pool->last_work_copy);
  4100. pool->last_work_copy = copy_work(work);
  4101. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4102. mutex_unlock(&pool->last_work_lock);
  4103. }
  4104. static
  4105. void gbt_req_target(json_t *req)
  4106. {
  4107. json_t *j;
  4108. json_t *n;
  4109. if (!request_target_str)
  4110. return;
  4111. j = json_object_get(req, "params");
  4112. if (!j)
  4113. {
  4114. n = json_array();
  4115. if (!n)
  4116. return;
  4117. if (json_object_set_new(req, "params", n))
  4118. goto erradd;
  4119. j = n;
  4120. }
  4121. n = json_array_get(j, 0);
  4122. if (!n)
  4123. {
  4124. n = json_object();
  4125. if (!n)
  4126. return;
  4127. if (json_array_append_new(j, n))
  4128. goto erradd;
  4129. }
  4130. j = n;
  4131. n = json_string(request_target_str);
  4132. if (!n)
  4133. return;
  4134. if (json_object_set_new(j, "target", n))
  4135. goto erradd;
  4136. return;
  4137. erradd:
  4138. json_decref(n);
  4139. }
  4140. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4141. {
  4142. char *rpc_req;
  4143. clean_work(work);
  4144. switch (proto) {
  4145. case PLP_GETWORK:
  4146. work->getwork_mode = GETWORK_MODE_POOL;
  4147. return strdup(getwork_req);
  4148. case PLP_GETBLOCKTEMPLATE:
  4149. work->getwork_mode = GETWORK_MODE_GBT;
  4150. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4151. if (!work->tmpl_refcount)
  4152. return NULL;
  4153. work->tmpl = blktmpl_create();
  4154. if (!work->tmpl)
  4155. goto gbtfail2;
  4156. *work->tmpl_refcount = 1;
  4157. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4158. if (!caps)
  4159. goto gbtfail;
  4160. caps |= GBT_LONGPOLL;
  4161. #if BLKMAKER_VERSION > 1
  4162. if (opt_coinbase_script.sz)
  4163. caps |= GBT_CBVALUE;
  4164. #endif
  4165. json_t *req = blktmpl_request_jansson(caps, lpid);
  4166. if (!req)
  4167. goto gbtfail;
  4168. if (probe)
  4169. gbt_req_target(req);
  4170. rpc_req = json_dumps(req, 0);
  4171. if (!rpc_req)
  4172. goto gbtfail;
  4173. json_decref(req);
  4174. return rpc_req;
  4175. default:
  4176. return NULL;
  4177. }
  4178. return NULL;
  4179. gbtfail:
  4180. blktmpl_free(work->tmpl);
  4181. work->tmpl = NULL;
  4182. gbtfail2:
  4183. free(work->tmpl_refcount);
  4184. work->tmpl_refcount = NULL;
  4185. return NULL;
  4186. }
  4187. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4188. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4189. static const char *pool_protocol_name(enum pool_protocol proto)
  4190. {
  4191. switch (proto) {
  4192. case PLP_GETBLOCKTEMPLATE:
  4193. return "getblocktemplate";
  4194. case PLP_GETWORK:
  4195. return "getwork";
  4196. default:
  4197. return "UNKNOWN";
  4198. }
  4199. }
  4200. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4201. {
  4202. switch (proto) {
  4203. case PLP_GETBLOCKTEMPLATE:
  4204. if (want_getwork)
  4205. return PLP_GETWORK;
  4206. default:
  4207. return PLP_NONE;
  4208. }
  4209. }
  4210. static bool get_upstream_work(struct work *work, CURL *curl)
  4211. {
  4212. struct pool *pool = work->pool;
  4213. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4214. struct timeval tv_elapsed;
  4215. json_t *val = NULL;
  4216. bool rc = false;
  4217. char *url;
  4218. enum pool_protocol proto;
  4219. char *rpc_req;
  4220. if (pool->proto == PLP_NONE)
  4221. pool->proto = PLP_GETBLOCKTEMPLATE;
  4222. tryagain:
  4223. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4224. work->pool = pool;
  4225. if (!rpc_req)
  4226. return false;
  4227. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4228. url = pool->rpc_url;
  4229. cgtime(&work->tv_getwork);
  4230. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4231. false, &work->rolltime, pool, false);
  4232. pool_stats->getwork_attempts++;
  4233. free(rpc_req);
  4234. if (likely(val)) {
  4235. rc = work_decode(pool, work, val);
  4236. if (unlikely(!rc))
  4237. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4238. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4239. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4240. pool->proto = proto;
  4241. goto tryagain;
  4242. } else
  4243. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4244. cgtime(&work->tv_getwork_reply);
  4245. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4246. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4247. pool_stats->getwork_wait_rolling /= 1.63;
  4248. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4249. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4250. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4251. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4252. }
  4253. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4254. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4255. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4256. }
  4257. pool_stats->getwork_calls++;
  4258. work->pool = pool;
  4259. work->longpoll = false;
  4260. calc_diff(work, 0);
  4261. total_getworks++;
  4262. pool->getwork_requested++;
  4263. if (rc)
  4264. update_last_work(work);
  4265. if (likely(val))
  4266. json_decref(val);
  4267. return rc;
  4268. }
  4269. #ifdef HAVE_CURSES
  4270. static void disable_curses(void)
  4271. {
  4272. if (curses_active_locked()) {
  4273. use_curses = false;
  4274. curses_active = false;
  4275. leaveok(logwin, false);
  4276. leaveok(statuswin, false);
  4277. leaveok(mainwin, false);
  4278. nocbreak();
  4279. echo();
  4280. delwin(logwin);
  4281. delwin(statuswin);
  4282. delwin(mainwin);
  4283. endwin();
  4284. #ifdef WIN32
  4285. // Move the cursor to after curses output.
  4286. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4287. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4288. COORD coord;
  4289. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4290. coord.X = 0;
  4291. coord.Y = csbi.dwSize.Y - 1;
  4292. SetConsoleCursorPosition(hout, coord);
  4293. }
  4294. #endif
  4295. unlock_curses();
  4296. }
  4297. }
  4298. #endif
  4299. static void __kill_work(void)
  4300. {
  4301. struct cgpu_info *cgpu;
  4302. struct thr_info *thr;
  4303. int i;
  4304. if (!successful_connect)
  4305. return;
  4306. applog(LOG_INFO, "Received kill message");
  4307. shutting_down = true;
  4308. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4309. notifier_wake(submit_waiting_notifier);
  4310. #ifdef USE_LIBMICROHTTPD
  4311. httpsrv_stop();
  4312. #endif
  4313. applog(LOG_DEBUG, "Killing off watchpool thread");
  4314. /* Kill the watchpool thread */
  4315. thr = &control_thr[watchpool_thr_id];
  4316. thr_info_cancel(thr);
  4317. applog(LOG_DEBUG, "Killing off watchdog thread");
  4318. /* Kill the watchdog thread */
  4319. thr = &control_thr[watchdog_thr_id];
  4320. thr_info_cancel(thr);
  4321. applog(LOG_DEBUG, "Shutting down mining threads");
  4322. for (i = 0; i < mining_threads; i++) {
  4323. thr = get_thread(i);
  4324. if (!thr)
  4325. continue;
  4326. cgpu = thr->cgpu;
  4327. if (!cgpu)
  4328. continue;
  4329. if (!cgpu->threads)
  4330. continue;
  4331. cgpu->shutdown = true;
  4332. thr->work_restart = true;
  4333. notifier_wake(thr->notifier);
  4334. notifier_wake(thr->work_restart_notifier);
  4335. }
  4336. sleep(1);
  4337. applog(LOG_DEBUG, "Killing off mining threads");
  4338. /* Kill the mining threads*/
  4339. for (i = 0; i < mining_threads; i++) {
  4340. thr = get_thread(i);
  4341. if (!thr)
  4342. continue;
  4343. cgpu = thr->cgpu;
  4344. if (cgpu->threads)
  4345. {
  4346. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4347. thr_info_cancel(thr);
  4348. }
  4349. cgpu->status = LIFE_DEAD2;
  4350. }
  4351. /* Stop the others */
  4352. applog(LOG_DEBUG, "Killing off API thread");
  4353. thr = &control_thr[api_thr_id];
  4354. thr_info_cancel(thr);
  4355. }
  4356. /* This should be the common exit path */
  4357. void kill_work(void)
  4358. {
  4359. __kill_work();
  4360. quit(0, "Shutdown signal received.");
  4361. }
  4362. static
  4363. #ifdef WIN32
  4364. #ifndef _WIN64
  4365. const
  4366. #endif
  4367. #endif
  4368. char **initial_args;
  4369. void _bfg_clean_up(bool);
  4370. void app_restart(void)
  4371. {
  4372. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4373. __kill_work();
  4374. _bfg_clean_up(true);
  4375. #if defined(unix) || defined(__APPLE__)
  4376. if (forkpid > 0) {
  4377. kill(forkpid, SIGTERM);
  4378. forkpid = 0;
  4379. }
  4380. #endif
  4381. execv(initial_args[0], initial_args);
  4382. applog(LOG_WARNING, "Failed to restart application");
  4383. }
  4384. static void sighandler(int __maybe_unused sig)
  4385. {
  4386. /* Restore signal handlers so we can still quit if kill_work fails */
  4387. sigaction(SIGTERM, &termhandler, NULL);
  4388. sigaction(SIGINT, &inthandler, NULL);
  4389. kill_work();
  4390. }
  4391. static void start_longpoll(void);
  4392. static void stop_longpoll(void);
  4393. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4394. * this pool. */
  4395. static void recruit_curl(struct pool *pool)
  4396. {
  4397. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4398. if (unlikely(!ce))
  4399. quit(1, "Failed to calloc in recruit_curl");
  4400. ce->curl = curl_easy_init();
  4401. if (unlikely(!ce->curl))
  4402. quit(1, "Failed to init in recruit_curl");
  4403. LL_PREPEND(pool->curllist, ce);
  4404. pool->curls++;
  4405. }
  4406. /* Grab an available curl if there is one. If not, then recruit extra curls
  4407. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4408. * and there are already 5 curls in circulation. Limit total number to the
  4409. * number of mining threads per pool as well to prevent blasting a pool during
  4410. * network delays/outages. */
  4411. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4412. {
  4413. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4414. bool recruited = false;
  4415. struct curl_ent *ce;
  4416. mutex_lock(&pool->pool_lock);
  4417. retry:
  4418. if (!pool->curls) {
  4419. recruit_curl(pool);
  4420. recruited = true;
  4421. } else if (!pool->curllist) {
  4422. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4423. if (!blocking) {
  4424. mutex_unlock(&pool->pool_lock);
  4425. return NULL;
  4426. }
  4427. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4428. goto retry;
  4429. } else {
  4430. recruit_curl(pool);
  4431. recruited = true;
  4432. }
  4433. }
  4434. ce = pool->curllist;
  4435. LL_DELETE(pool->curllist, ce);
  4436. mutex_unlock(&pool->pool_lock);
  4437. if (recruited)
  4438. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4439. return ce;
  4440. }
  4441. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4442. {
  4443. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4444. }
  4445. __maybe_unused
  4446. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4447. {
  4448. return pop_curl_entry3(pool, 1);
  4449. }
  4450. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4451. {
  4452. mutex_lock(&pool->pool_lock);
  4453. if (!ce || !ce->curl)
  4454. quithere(1, "Attempted to add NULL");
  4455. LL_PREPEND(pool->curllist, ce);
  4456. cgtime(&ce->tv);
  4457. pthread_cond_broadcast(&pool->cr_cond);
  4458. mutex_unlock(&pool->pool_lock);
  4459. }
  4460. bool stale_work(struct work *work, bool share);
  4461. static inline bool should_roll(struct work *work)
  4462. {
  4463. struct timeval now;
  4464. time_t expiry;
  4465. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4466. return false;
  4467. if (stale_work(work, false))
  4468. return false;
  4469. if (work->rolltime > opt_scantime)
  4470. expiry = work->rolltime;
  4471. else
  4472. expiry = opt_scantime;
  4473. expiry = expiry * 2 / 3;
  4474. /* We shouldn't roll if we're unlikely to get one shares' duration
  4475. * work out of doing so */
  4476. cgtime(&now);
  4477. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4478. return false;
  4479. return true;
  4480. }
  4481. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4482. * reject blocks as invalid. */
  4483. static inline bool can_roll(struct work *work)
  4484. {
  4485. if (work->stratum)
  4486. return false;
  4487. if (!(work->pool && !work->clone))
  4488. return false;
  4489. if (work->tmpl) {
  4490. if (stale_work(work, false))
  4491. return false;
  4492. return blkmk_work_left(work->tmpl);
  4493. }
  4494. return (work->rolltime &&
  4495. work->rolls < 7000 && !stale_work(work, false));
  4496. }
  4497. static void roll_work(struct work *work)
  4498. {
  4499. if (work->tmpl) {
  4500. struct timeval tv_now;
  4501. cgtime(&tv_now);
  4502. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4503. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4504. swap32yes(work->data, work->data, 80 / 4);
  4505. calc_midstate(work);
  4506. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4507. } else {
  4508. uint32_t *work_ntime;
  4509. uint32_t ntime;
  4510. work_ntime = (uint32_t *)(work->data + 68);
  4511. ntime = be32toh(*work_ntime);
  4512. ntime++;
  4513. *work_ntime = htobe32(ntime);
  4514. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4515. }
  4516. local_work++;
  4517. work->rolls++;
  4518. work->blk.nonce = 0;
  4519. /* This is now a different work item so it needs a different ID for the
  4520. * hashtable */
  4521. work->id = total_work++;
  4522. }
  4523. /* Duplicates any dynamically allocated arrays within the work struct to
  4524. * prevent a copied work struct from freeing ram belonging to another struct */
  4525. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4526. {
  4527. int id = work->id;
  4528. clean_work(work);
  4529. memcpy(work, base_work, sizeof(struct work));
  4530. /* Keep the unique new id assigned during make_work to prevent copied
  4531. * work from having the same id. */
  4532. work->id = id;
  4533. if (base_work->job_id)
  4534. work->job_id = strdup(base_work->job_id);
  4535. if (base_work->nonce1)
  4536. work->nonce1 = strdup(base_work->nonce1);
  4537. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4538. if (base_work->tmpl) {
  4539. struct pool *pool = work->pool;
  4540. mutex_lock(&pool->pool_lock);
  4541. ++*work->tmpl_refcount;
  4542. mutex_unlock(&pool->pool_lock);
  4543. }
  4544. if (noffset)
  4545. {
  4546. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4547. uint32_t ntime = be32toh(*work_ntime);
  4548. ntime += noffset;
  4549. *work_ntime = htobe32(ntime);
  4550. }
  4551. }
  4552. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4553. * for all dynamically allocated arrays within the struct */
  4554. struct work *copy_work(const struct work *base_work)
  4555. {
  4556. struct work *work = make_work();
  4557. _copy_work(work, base_work, 0);
  4558. return work;
  4559. }
  4560. void __copy_work(struct work *work, const struct work *base_work)
  4561. {
  4562. _copy_work(work, base_work, 0);
  4563. }
  4564. static struct work *make_clone(struct work *work)
  4565. {
  4566. struct work *work_clone = copy_work(work);
  4567. work_clone->clone = true;
  4568. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4569. work_clone->longpoll = false;
  4570. work_clone->mandatory = false;
  4571. /* Make cloned work appear slightly older to bias towards keeping the
  4572. * master work item which can be further rolled */
  4573. work_clone->tv_staged.tv_sec -= 1;
  4574. return work_clone;
  4575. }
  4576. static void stage_work(struct work *work);
  4577. static bool clone_available(void)
  4578. {
  4579. struct work *work_clone = NULL, *work, *tmp;
  4580. bool cloned = false;
  4581. mutex_lock(stgd_lock);
  4582. if (!staged_rollable)
  4583. goto out_unlock;
  4584. HASH_ITER(hh, staged_work, work, tmp) {
  4585. if (can_roll(work) && should_roll(work)) {
  4586. roll_work(work);
  4587. work_clone = make_clone(work);
  4588. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4589. roll_work(work);
  4590. cloned = true;
  4591. break;
  4592. }
  4593. }
  4594. out_unlock:
  4595. mutex_unlock(stgd_lock);
  4596. if (cloned) {
  4597. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4598. stage_work(work_clone);
  4599. }
  4600. return cloned;
  4601. }
  4602. static void pool_died(struct pool *pool)
  4603. {
  4604. if (!pool_tset(pool, &pool->idle)) {
  4605. cgtime(&pool->tv_idle);
  4606. if (pool == current_pool()) {
  4607. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4608. switch_pools(NULL);
  4609. } else
  4610. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4611. }
  4612. }
  4613. bool stale_work(struct work *work, bool share)
  4614. {
  4615. unsigned work_expiry;
  4616. struct pool *pool;
  4617. uint32_t block_id;
  4618. unsigned getwork_delay;
  4619. if (opt_benchmark)
  4620. return false;
  4621. block_id = ((uint32_t*)work->data)[1];
  4622. pool = work->pool;
  4623. /* Technically the rolltime should be correct but some pools
  4624. * advertise a broken expire= that is lower than a meaningful
  4625. * scantime */
  4626. if (work->rolltime >= opt_scantime || work->tmpl)
  4627. work_expiry = work->rolltime;
  4628. else
  4629. work_expiry = opt_expiry;
  4630. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4631. if (work_expiry > max_expiry)
  4632. work_expiry = max_expiry;
  4633. if (share) {
  4634. /* If the share isn't on this pool's latest block, it's stale */
  4635. if (pool->block_id && pool->block_id != block_id)
  4636. {
  4637. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4638. return true;
  4639. }
  4640. /* If the pool doesn't want old shares, then any found in work before
  4641. * the most recent longpoll is stale */
  4642. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4643. {
  4644. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4645. return true;
  4646. }
  4647. } else {
  4648. /* If this work isn't for the latest Bitcoin block, it's stale */
  4649. /* But only care about the current pool if failover-only */
  4650. if (enabled_pools <= 1 || opt_fail_only) {
  4651. if (pool->block_id && block_id != pool->block_id)
  4652. {
  4653. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4654. return true;
  4655. }
  4656. } else {
  4657. if (block_id != current_block_id)
  4658. {
  4659. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4660. return true;
  4661. }
  4662. }
  4663. /* If the pool has asked us to restart since this work, it's stale */
  4664. if (work->work_restart_id != pool->work_restart_id)
  4665. {
  4666. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4667. return true;
  4668. }
  4669. if (pool->has_stratum && work->job_id) {
  4670. bool same_job;
  4671. if (!pool->stratum_active || !pool->stratum_notify) {
  4672. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4673. return true;
  4674. }
  4675. same_job = true;
  4676. cg_rlock(&pool->data_lock);
  4677. if (strcmp(work->job_id, pool->swork.job_id))
  4678. same_job = false;
  4679. cg_runlock(&pool->data_lock);
  4680. if (!same_job) {
  4681. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4682. return true;
  4683. }
  4684. }
  4685. /* Factor in the average getwork delay of this pool, rounding it up to
  4686. * the nearest second */
  4687. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4688. if (unlikely(work_expiry <= getwork_delay + 5))
  4689. work_expiry = 5;
  4690. else
  4691. work_expiry -= getwork_delay;
  4692. }
  4693. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4694. if (elapsed_since_staged > work_expiry) {
  4695. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4696. return true;
  4697. }
  4698. /* If the user only wants strict failover, any work from a pool other than
  4699. * the current one is always considered stale */
  4700. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4701. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4702. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4703. return true;
  4704. }
  4705. return false;
  4706. }
  4707. static uint64_t share_diff(const struct work *work)
  4708. {
  4709. uint64_t ret;
  4710. bool new_best = false;
  4711. ret = target_diff(work->hash);
  4712. cg_wlock(&control_lock);
  4713. if (unlikely(ret > best_diff)) {
  4714. new_best = true;
  4715. best_diff = ret;
  4716. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4717. }
  4718. if (unlikely(ret > work->pool->best_diff))
  4719. work->pool->best_diff = ret;
  4720. cg_wunlock(&control_lock);
  4721. if (unlikely(new_best))
  4722. applog(LOG_INFO, "New best share: %s", best_share);
  4723. return ret;
  4724. }
  4725. static void regen_hash(struct work *work)
  4726. {
  4727. hash_data(work->hash, work->data);
  4728. }
  4729. static void rebuild_hash(struct work *work)
  4730. {
  4731. if (opt_scrypt)
  4732. scrypt_regenhash(work);
  4733. else
  4734. regen_hash(work);
  4735. work->share_diff = share_diff(work);
  4736. if (unlikely(work->share_diff >= current_diff)) {
  4737. work->block = true;
  4738. work->pool->solved++;
  4739. found_blocks++;
  4740. work->mandatory = true;
  4741. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4742. }
  4743. }
  4744. static void submit_discard_share2(const char *reason, struct work *work)
  4745. {
  4746. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4747. sharelog(reason, work);
  4748. mutex_lock(&stats_lock);
  4749. ++total_stale;
  4750. ++cgpu->stale;
  4751. ++(work->pool->stale_shares);
  4752. total_diff_stale += work->work_difficulty;
  4753. cgpu->diff_stale += work->work_difficulty;
  4754. work->pool->diff_stale += work->work_difficulty;
  4755. mutex_unlock(&stats_lock);
  4756. }
  4757. static void submit_discard_share(struct work *work)
  4758. {
  4759. submit_discard_share2("discard", work);
  4760. }
  4761. struct submit_work_state {
  4762. struct work *work;
  4763. bool resubmit;
  4764. struct curl_ent *ce;
  4765. int failures;
  4766. struct timeval tv_staleexpire;
  4767. char *s;
  4768. struct timeval tv_submit;
  4769. struct submit_work_state *next;
  4770. };
  4771. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4772. {
  4773. long *p_timeout_us = userp;
  4774. const long max_ms = LONG_MAX / 1000;
  4775. if (max_ms < timeout_ms)
  4776. timeout_ms = max_ms;
  4777. *p_timeout_us = timeout_ms * 1000;
  4778. return 0;
  4779. }
  4780. static void sws_has_ce(struct submit_work_state *sws)
  4781. {
  4782. struct pool *pool = sws->work->pool;
  4783. sws->s = submit_upstream_work_request(sws->work);
  4784. cgtime(&sws->tv_submit);
  4785. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4786. }
  4787. static struct submit_work_state *begin_submission(struct work *work)
  4788. {
  4789. struct pool *pool;
  4790. struct submit_work_state *sws = NULL;
  4791. pool = work->pool;
  4792. sws = malloc(sizeof(*sws));
  4793. *sws = (struct submit_work_state){
  4794. .work = work,
  4795. };
  4796. rebuild_hash(work);
  4797. if (stale_work(work, true)) {
  4798. work->stale = true;
  4799. if (opt_submit_stale)
  4800. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4801. else if (pool->submit_old)
  4802. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4803. else {
  4804. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4805. submit_discard_share(work);
  4806. goto out;
  4807. }
  4808. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4809. }
  4810. if (work->stratum) {
  4811. char *s;
  4812. s = malloc(1024);
  4813. sws->s = s;
  4814. } else {
  4815. /* submit solution to bitcoin via JSON-RPC */
  4816. sws->ce = pop_curl_entry2(pool, false);
  4817. if (sws->ce) {
  4818. sws_has_ce(sws);
  4819. } else {
  4820. sws->next = pool->sws_waiting_on_curl;
  4821. pool->sws_waiting_on_curl = sws;
  4822. if (sws->next)
  4823. applog(LOG_DEBUG, "submit_thread queuing submission");
  4824. else
  4825. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4826. }
  4827. }
  4828. return sws;
  4829. out:
  4830. free(sws);
  4831. return NULL;
  4832. }
  4833. static bool retry_submission(struct submit_work_state *sws)
  4834. {
  4835. struct work *work = sws->work;
  4836. struct pool *pool = work->pool;
  4837. sws->resubmit = true;
  4838. if ((!work->stale) && stale_work(work, true)) {
  4839. work->stale = true;
  4840. if (opt_submit_stale)
  4841. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4842. else if (pool->submit_old)
  4843. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4844. else {
  4845. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4846. submit_discard_share(work);
  4847. return false;
  4848. }
  4849. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4850. }
  4851. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4852. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4853. submit_discard_share(work);
  4854. return false;
  4855. }
  4856. else if (work->stale) {
  4857. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4858. {
  4859. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4860. submit_discard_share(work);
  4861. return false;
  4862. }
  4863. }
  4864. /* pause, then restart work-request loop */
  4865. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4866. cgtime(&sws->tv_submit);
  4867. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4868. return true;
  4869. }
  4870. static void free_sws(struct submit_work_state *sws)
  4871. {
  4872. free(sws->s);
  4873. free_work(sws->work);
  4874. free(sws);
  4875. }
  4876. static void *submit_work_thread(__maybe_unused void *userdata)
  4877. {
  4878. int wip = 0;
  4879. CURLM *curlm;
  4880. long curlm_timeout_us = -1;
  4881. struct timeval curlm_timer;
  4882. struct submit_work_state *sws, **swsp;
  4883. struct submit_work_state *write_sws = NULL;
  4884. unsigned tsreduce = 0;
  4885. pthread_detach(pthread_self());
  4886. RenameThread("submit_work");
  4887. applog(LOG_DEBUG, "Creating extra submit work thread");
  4888. curlm = curl_multi_init();
  4889. curlm_timeout_us = -1;
  4890. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4891. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4892. fd_set rfds, wfds, efds;
  4893. int maxfd;
  4894. struct timeval tv_timeout, tv_now;
  4895. int n;
  4896. CURLMsg *cm;
  4897. FD_ZERO(&rfds);
  4898. while (1) {
  4899. mutex_lock(&submitting_lock);
  4900. total_submitting -= tsreduce;
  4901. tsreduce = 0;
  4902. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4903. notifier_read(submit_waiting_notifier);
  4904. }
  4905. // Receive any new submissions
  4906. while (submit_waiting) {
  4907. struct work *work = submit_waiting;
  4908. DL_DELETE(submit_waiting, work);
  4909. if ( (sws = begin_submission(work)) ) {
  4910. if (sws->ce)
  4911. curl_multi_add_handle(curlm, sws->ce->curl);
  4912. else if (sws->s) {
  4913. sws->next = write_sws;
  4914. write_sws = sws;
  4915. }
  4916. ++wip;
  4917. }
  4918. else {
  4919. --total_submitting;
  4920. free_work(work);
  4921. }
  4922. }
  4923. if (unlikely(shutting_down && !wip))
  4924. break;
  4925. mutex_unlock(&submitting_lock);
  4926. FD_ZERO(&rfds);
  4927. FD_ZERO(&wfds);
  4928. FD_ZERO(&efds);
  4929. tv_timeout.tv_sec = -1;
  4930. // Setup cURL with select
  4931. // Need to call perform to ensure the timeout gets updated
  4932. curl_multi_perform(curlm, &n);
  4933. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4934. if (curlm_timeout_us >= 0)
  4935. {
  4936. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4937. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4938. }
  4939. // Setup waiting stratum submissions with select
  4940. for (sws = write_sws; sws; sws = sws->next)
  4941. {
  4942. struct pool *pool = sws->work->pool;
  4943. int fd = pool->sock;
  4944. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4945. continue;
  4946. FD_SET(fd, &wfds);
  4947. set_maxfd(&maxfd, fd);
  4948. }
  4949. // Setup "submit waiting" notifier with select
  4950. FD_SET(submit_waiting_notifier[0], &rfds);
  4951. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4952. // Wait for something interesting to happen :)
  4953. cgtime(&tv_now);
  4954. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4955. FD_ZERO(&rfds);
  4956. continue;
  4957. }
  4958. // Handle any stratum ready-to-write results
  4959. for (swsp = &write_sws; (sws = *swsp); ) {
  4960. struct work *work = sws->work;
  4961. struct pool *pool = work->pool;
  4962. int fd = pool->sock;
  4963. bool sessionid_match;
  4964. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4965. next_write_sws:
  4966. // TODO: Check if stale, possibly discard etc
  4967. swsp = &sws->next;
  4968. continue;
  4969. }
  4970. cg_rlock(&pool->data_lock);
  4971. // 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
  4972. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4973. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4974. cg_runlock(&pool->data_lock);
  4975. if (!sessionid_match)
  4976. {
  4977. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4978. submit_discard_share2("disconnect", work);
  4979. ++tsreduce;
  4980. next_write_sws_del:
  4981. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4982. FD_CLR(fd, &wfds);
  4983. // Delete sws for this submission, since we're done with it
  4984. *swsp = sws->next;
  4985. free_sws(sws);
  4986. --wip;
  4987. continue;
  4988. }
  4989. char *s = sws->s;
  4990. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4991. int sshare_id;
  4992. uint32_t nonce;
  4993. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4994. char noncehex[9];
  4995. char ntimehex[9];
  4996. sshare->work = copy_work(work);
  4997. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4998. nonce = *((uint32_t *)(work->data + 76));
  4999. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5000. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5001. mutex_lock(&sshare_lock);
  5002. /* Give the stratum share a unique id */
  5003. sshare_id =
  5004. sshare->id = swork_id++;
  5005. HASH_ADD_INT(stratum_shares, id, sshare);
  5006. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5007. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5008. mutex_unlock(&sshare_lock);
  5009. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5010. if (likely(stratum_send(pool, s, strlen(s)))) {
  5011. if (pool_tclear(pool, &pool->submit_fail))
  5012. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5013. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5014. goto next_write_sws_del;
  5015. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5016. // Undo stuff
  5017. mutex_lock(&sshare_lock);
  5018. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5019. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5020. if (sshare)
  5021. HASH_DEL(stratum_shares, sshare);
  5022. mutex_unlock(&sshare_lock);
  5023. if (sshare)
  5024. {
  5025. free_work(sshare->work);
  5026. free(sshare);
  5027. }
  5028. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5029. total_ro++;
  5030. pool->remotefail_occasions++;
  5031. if (!sshare)
  5032. goto next_write_sws_del;
  5033. goto next_write_sws;
  5034. }
  5035. }
  5036. // Handle any cURL activities
  5037. curl_multi_perform(curlm, &n);
  5038. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5039. if (cm->msg == CURLMSG_DONE)
  5040. {
  5041. bool finished;
  5042. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5043. curl_multi_remove_handle(curlm, cm->easy_handle);
  5044. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5045. if (!finished) {
  5046. if (retry_submission(sws))
  5047. curl_multi_add_handle(curlm, sws->ce->curl);
  5048. else
  5049. finished = true;
  5050. }
  5051. if (finished) {
  5052. --wip;
  5053. ++tsreduce;
  5054. struct pool *pool = sws->work->pool;
  5055. if (pool->sws_waiting_on_curl) {
  5056. pool->sws_waiting_on_curl->ce = sws->ce;
  5057. sws_has_ce(pool->sws_waiting_on_curl);
  5058. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5059. curl_multi_add_handle(curlm, sws->ce->curl);
  5060. } else {
  5061. push_curl_entry(sws->ce, sws->work->pool);
  5062. }
  5063. free_sws(sws);
  5064. }
  5065. }
  5066. }
  5067. }
  5068. assert(!write_sws);
  5069. mutex_unlock(&submitting_lock);
  5070. curl_multi_cleanup(curlm);
  5071. applog(LOG_DEBUG, "submit_work thread exiting");
  5072. return NULL;
  5073. }
  5074. /* Find the pool that currently has the highest priority */
  5075. static struct pool *priority_pool(int choice)
  5076. {
  5077. struct pool *ret = NULL;
  5078. int i;
  5079. for (i = 0; i < total_pools; i++) {
  5080. struct pool *pool = pools[i];
  5081. if (pool->prio == choice) {
  5082. ret = pool;
  5083. break;
  5084. }
  5085. }
  5086. if (unlikely(!ret)) {
  5087. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5088. return pools[choice];
  5089. }
  5090. return ret;
  5091. }
  5092. int prioritize_pools(char *param, int *pid)
  5093. {
  5094. char *ptr, *next;
  5095. int i, pr, prio = 0;
  5096. if (total_pools == 0) {
  5097. return MSG_NOPOOL;
  5098. }
  5099. if (param == NULL || *param == '\0') {
  5100. return MSG_MISPID;
  5101. }
  5102. bool pools_changed[total_pools];
  5103. int new_prio[total_pools];
  5104. for (i = 0; i < total_pools; ++i)
  5105. pools_changed[i] = false;
  5106. next = param;
  5107. while (next && *next) {
  5108. ptr = next;
  5109. next = strchr(ptr, ',');
  5110. if (next)
  5111. *(next++) = '\0';
  5112. i = atoi(ptr);
  5113. if (i < 0 || i >= total_pools) {
  5114. *pid = i;
  5115. return MSG_INVPID;
  5116. }
  5117. if (pools_changed[i]) {
  5118. *pid = i;
  5119. return MSG_DUPPID;
  5120. }
  5121. pools_changed[i] = true;
  5122. new_prio[i] = prio++;
  5123. }
  5124. // Only change them if no errors
  5125. for (i = 0; i < total_pools; i++) {
  5126. if (pools_changed[i])
  5127. pools[i]->prio = new_prio[i];
  5128. }
  5129. // In priority order, cycle through the unchanged pools and append them
  5130. for (pr = 0; pr < total_pools; pr++)
  5131. for (i = 0; i < total_pools; i++) {
  5132. if (!pools_changed[i] && pools[i]->prio == pr) {
  5133. pools[i]->prio = prio++;
  5134. pools_changed[i] = true;
  5135. break;
  5136. }
  5137. }
  5138. if (current_pool()->prio)
  5139. switch_pools(NULL);
  5140. return MSG_POOLPRIO;
  5141. }
  5142. void validate_pool_priorities(void)
  5143. {
  5144. // TODO: this should probably do some sort of logging
  5145. int i, j;
  5146. bool used[total_pools];
  5147. bool valid[total_pools];
  5148. for (i = 0; i < total_pools; i++)
  5149. used[i] = valid[i] = false;
  5150. for (i = 0; i < total_pools; i++) {
  5151. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5152. if (!used[pools[i]->prio]) {
  5153. valid[i] = true;
  5154. used[pools[i]->prio] = true;
  5155. }
  5156. }
  5157. }
  5158. for (i = 0; i < total_pools; i++) {
  5159. if (!valid[i]) {
  5160. for (j = 0; j < total_pools; j++) {
  5161. if (!used[j]) {
  5162. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5163. pools[i]->prio = j;
  5164. used[j] = true;
  5165. break;
  5166. }
  5167. }
  5168. }
  5169. }
  5170. }
  5171. static void clear_pool_work(struct pool *pool);
  5172. /* Specifies whether we can switch to this pool or not. */
  5173. static bool pool_unusable(struct pool *pool)
  5174. {
  5175. if (pool->idle)
  5176. return true;
  5177. if (pool->enabled != POOL_ENABLED)
  5178. return true;
  5179. return false;
  5180. }
  5181. void switch_pools(struct pool *selected)
  5182. {
  5183. struct pool *pool, *last_pool;
  5184. int i, pool_no, next_pool;
  5185. cg_wlock(&control_lock);
  5186. last_pool = currentpool;
  5187. pool_no = currentpool->pool_no;
  5188. /* Switch selected to pool number 0 and move the rest down */
  5189. if (selected) {
  5190. if (selected->prio != 0) {
  5191. for (i = 0; i < total_pools; i++) {
  5192. pool = pools[i];
  5193. if (pool->prio < selected->prio)
  5194. pool->prio++;
  5195. }
  5196. selected->prio = 0;
  5197. }
  5198. }
  5199. switch (pool_strategy) {
  5200. /* All of these set to the master pool */
  5201. case POOL_BALANCE:
  5202. case POOL_FAILOVER:
  5203. case POOL_LOADBALANCE:
  5204. for (i = 0; i < total_pools; i++) {
  5205. pool = priority_pool(i);
  5206. if (pool_unusable(pool))
  5207. continue;
  5208. pool_no = pool->pool_no;
  5209. break;
  5210. }
  5211. break;
  5212. /* Both of these simply increment and cycle */
  5213. case POOL_ROUNDROBIN:
  5214. case POOL_ROTATE:
  5215. if (selected && !selected->idle) {
  5216. pool_no = selected->pool_no;
  5217. break;
  5218. }
  5219. next_pool = pool_no;
  5220. /* Select the next alive pool */
  5221. for (i = 1; i < total_pools; i++) {
  5222. next_pool++;
  5223. if (next_pool >= total_pools)
  5224. next_pool = 0;
  5225. pool = pools[next_pool];
  5226. if (pool_unusable(pool))
  5227. continue;
  5228. pool_no = next_pool;
  5229. break;
  5230. }
  5231. break;
  5232. default:
  5233. break;
  5234. }
  5235. currentpool = pools[pool_no];
  5236. pool = currentpool;
  5237. cg_wunlock(&control_lock);
  5238. /* Set the lagging flag to avoid pool not providing work fast enough
  5239. * messages in failover only mode since we have to get all fresh work
  5240. * as in restart_threads */
  5241. if (opt_fail_only)
  5242. pool_tset(pool, &pool->lagging);
  5243. if (pool != last_pool)
  5244. {
  5245. pool->block_id = 0;
  5246. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5247. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5248. if (pool_localgen(pool) || opt_fail_only)
  5249. clear_pool_work(last_pool);
  5250. }
  5251. }
  5252. mutex_lock(&lp_lock);
  5253. pthread_cond_broadcast(&lp_cond);
  5254. mutex_unlock(&lp_lock);
  5255. }
  5256. static void discard_work(struct work *work)
  5257. {
  5258. if (!work->clone && !work->rolls && !work->mined) {
  5259. if (work->pool) {
  5260. work->pool->discarded_work++;
  5261. work->pool->quota_used--;
  5262. work->pool->works--;
  5263. }
  5264. total_discarded++;
  5265. applog(LOG_DEBUG, "Discarded work");
  5266. } else
  5267. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5268. free_work(work);
  5269. }
  5270. static void wake_gws(void)
  5271. {
  5272. mutex_lock(stgd_lock);
  5273. pthread_cond_signal(&gws_cond);
  5274. mutex_unlock(stgd_lock);
  5275. }
  5276. static void discard_stale(void)
  5277. {
  5278. struct work *work, *tmp;
  5279. int stale = 0;
  5280. mutex_lock(stgd_lock);
  5281. HASH_ITER(hh, staged_work, work, tmp) {
  5282. if (stale_work(work, false)) {
  5283. HASH_DEL(staged_work, work);
  5284. discard_work(work);
  5285. stale++;
  5286. staged_full = false;
  5287. }
  5288. }
  5289. pthread_cond_signal(&gws_cond);
  5290. mutex_unlock(stgd_lock);
  5291. if (stale)
  5292. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5293. }
  5294. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5295. {
  5296. bool rv;
  5297. struct timeval tv, orig;
  5298. ldiv_t d;
  5299. d = ldiv(ustime, 1000000);
  5300. tv = (struct timeval){
  5301. .tv_sec = d.quot,
  5302. .tv_usec = d.rem,
  5303. };
  5304. orig = work->tv_staged;
  5305. timersub(&orig, &tv, &work->tv_staged);
  5306. rv = stale_work(work, share);
  5307. work->tv_staged = orig;
  5308. return rv;
  5309. }
  5310. static void restart_threads(void)
  5311. {
  5312. struct pool *cp = current_pool();
  5313. int i;
  5314. struct thr_info *thr;
  5315. /* Artificially set the lagging flag to avoid pool not providing work
  5316. * fast enough messages after every long poll */
  5317. pool_tset(cp, &cp->lagging);
  5318. /* Discard staged work that is now stale */
  5319. discard_stale();
  5320. rd_lock(&mining_thr_lock);
  5321. for (i = 0; i < mining_threads; i++)
  5322. {
  5323. thr = mining_thr[i];
  5324. thr->work_restart = true;
  5325. }
  5326. for (i = 0; i < mining_threads; i++)
  5327. {
  5328. thr = mining_thr[i];
  5329. notifier_wake(thr->work_restart_notifier);
  5330. }
  5331. rd_unlock(&mining_thr_lock);
  5332. }
  5333. static
  5334. void blkhashstr(char *rv, const unsigned char *hash)
  5335. {
  5336. unsigned char hash_swap[32];
  5337. swap256(hash_swap, hash);
  5338. swap32tole(hash_swap, hash_swap, 32 / 4);
  5339. bin2hex(rv, hash_swap, 32);
  5340. }
  5341. static void set_curblock(char *hexstr, unsigned char *hash)
  5342. {
  5343. unsigned char hash_swap[32];
  5344. current_block_id = ((uint32_t*)hash)[0];
  5345. strcpy(current_block, hexstr);
  5346. swap256(hash_swap, hash);
  5347. swap32tole(hash_swap, hash_swap, 32 / 4);
  5348. cg_wlock(&ch_lock);
  5349. block_time = time(NULL);
  5350. __update_block_title(hash_swap);
  5351. free(current_fullhash);
  5352. current_fullhash = malloc(65);
  5353. bin2hex(current_fullhash, hash_swap, 32);
  5354. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5355. cg_wunlock(&ch_lock);
  5356. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5357. }
  5358. /* Search to see if this string is from a block that has been seen before */
  5359. static bool block_exists(char *hexstr)
  5360. {
  5361. struct block *s;
  5362. rd_lock(&blk_lock);
  5363. HASH_FIND_STR(blocks, hexstr, s);
  5364. rd_unlock(&blk_lock);
  5365. if (s)
  5366. return true;
  5367. return false;
  5368. }
  5369. /* Tests if this work is from a block that has been seen before */
  5370. static inline bool from_existing_block(struct work *work)
  5371. {
  5372. char hexstr[37];
  5373. bool ret;
  5374. bin2hex(hexstr, work->data + 8, 18);
  5375. ret = block_exists(hexstr);
  5376. return ret;
  5377. }
  5378. static int block_sort(struct block *blocka, struct block *blockb)
  5379. {
  5380. return blocka->block_no - blockb->block_no;
  5381. }
  5382. static void set_blockdiff(const struct work *work)
  5383. {
  5384. unsigned char target[32];
  5385. double diff;
  5386. uint64_t diff64;
  5387. real_block_target(target, work->data);
  5388. diff = target_diff(target);
  5389. diff64 = diff;
  5390. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5391. format_unit2(net_hashrate, sizeof(net_hashrate),
  5392. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5393. if (unlikely(current_diff != diff))
  5394. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5395. current_diff = diff;
  5396. }
  5397. static bool test_work_current(struct work *work)
  5398. {
  5399. bool ret = true;
  5400. char hexstr[65];
  5401. if (work->mandatory)
  5402. return ret;
  5403. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5404. /* Hack to work around dud work sneaking into test */
  5405. bin2hex(hexstr, work->data + 8, 18);
  5406. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5407. goto out_free;
  5408. /* Search to see if this block exists yet and if not, consider it a
  5409. * new block and set the current block details to this one */
  5410. if (!block_exists(hexstr)) {
  5411. struct block *s = calloc(sizeof(struct block), 1);
  5412. int deleted_block = 0;
  5413. ret = false;
  5414. if (unlikely(!s))
  5415. quit (1, "test_work_current OOM");
  5416. strcpy(s->hash, hexstr);
  5417. s->block_no = new_blocks++;
  5418. wr_lock(&blk_lock);
  5419. /* Only keep the last hour's worth of blocks in memory since
  5420. * work from blocks before this is virtually impossible and we
  5421. * want to prevent memory usage from continually rising */
  5422. if (HASH_COUNT(blocks) > 6) {
  5423. struct block *oldblock;
  5424. HASH_SORT(blocks, block_sort);
  5425. oldblock = blocks;
  5426. deleted_block = oldblock->block_no;
  5427. HASH_DEL(blocks, oldblock);
  5428. free(oldblock);
  5429. }
  5430. HASH_ADD_STR(blocks, hash, s);
  5431. set_blockdiff(work);
  5432. wr_unlock(&blk_lock);
  5433. work->pool->block_id = block_id;
  5434. if (deleted_block)
  5435. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5436. #if BLKMAKER_VERSION > 1
  5437. template_nonce = 0;
  5438. #endif
  5439. set_curblock(hexstr, &work->data[4]);
  5440. if (unlikely(new_blocks == 1))
  5441. goto out_free;
  5442. if (!work->stratum) {
  5443. if (work->longpoll) {
  5444. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5445. work->pool->pool_no);
  5446. } else if (have_longpoll)
  5447. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5448. else
  5449. applog(LOG_NOTICE, "New block detected on network");
  5450. }
  5451. restart_threads();
  5452. } else {
  5453. bool restart = false;
  5454. struct pool *curpool = NULL;
  5455. if (unlikely(work->pool->block_id != block_id)) {
  5456. bool was_active = work->pool->block_id != 0;
  5457. work->pool->block_id = block_id;
  5458. if (!work->longpoll)
  5459. update_last_work(work);
  5460. if (was_active) { // Pool actively changed block
  5461. if (work->pool == (curpool = current_pool()))
  5462. restart = true;
  5463. if (block_id == current_block_id) {
  5464. // Caught up, only announce if this pool is the one in use
  5465. if (restart)
  5466. applog(LOG_NOTICE, "%s %d caught up to new block",
  5467. work->longpoll ? "Longpoll from pool" : "Pool",
  5468. work->pool->pool_no);
  5469. } else {
  5470. // Switched to a block we know, but not the latest... why?
  5471. // This might detect pools trying to double-spend or 51%,
  5472. // but let's not make any accusations until it's had time
  5473. // in the real world.
  5474. blkhashstr(hexstr, &work->data[4]);
  5475. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5476. work->longpoll ? "Longpoll from pool" : "Pool",
  5477. work->pool->pool_no,
  5478. hexstr);
  5479. }
  5480. }
  5481. }
  5482. if (work->longpoll) {
  5483. ++work->pool->work_restart_id;
  5484. update_last_work(work);
  5485. if ((!restart) && work->pool == current_pool()) {
  5486. applog(
  5487. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5488. "Longpoll from pool %d requested work update",
  5489. work->pool->pool_no);
  5490. restart = true;
  5491. }
  5492. }
  5493. if (restart)
  5494. restart_threads();
  5495. }
  5496. work->longpoll = false;
  5497. out_free:
  5498. return ret;
  5499. }
  5500. static int tv_sort(struct work *worka, struct work *workb)
  5501. {
  5502. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5503. }
  5504. static bool work_rollable(struct work *work)
  5505. {
  5506. return (!work->clone && work->rolltime);
  5507. }
  5508. static bool hash_push(struct work *work)
  5509. {
  5510. bool rc = true;
  5511. mutex_lock(stgd_lock);
  5512. if (work_rollable(work))
  5513. staged_rollable++;
  5514. if (likely(!getq->frozen)) {
  5515. HASH_ADD_INT(staged_work, id, work);
  5516. HASH_SORT(staged_work, tv_sort);
  5517. } else
  5518. rc = false;
  5519. pthread_cond_broadcast(&getq->cond);
  5520. mutex_unlock(stgd_lock);
  5521. return rc;
  5522. }
  5523. static void stage_work(struct work *work)
  5524. {
  5525. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5526. work->id, work->pool->pool_no);
  5527. work->work_restart_id = work->pool->work_restart_id;
  5528. work->pool->last_work_time = time(NULL);
  5529. cgtime(&work->pool->tv_last_work_time);
  5530. test_work_current(work);
  5531. work->pool->works++;
  5532. hash_push(work);
  5533. }
  5534. #ifdef HAVE_CURSES
  5535. int curses_int(const char *query)
  5536. {
  5537. int ret;
  5538. char *cvar;
  5539. cvar = curses_input(query);
  5540. if (unlikely(!cvar))
  5541. return -1;
  5542. ret = atoi(cvar);
  5543. free(cvar);
  5544. return ret;
  5545. }
  5546. #endif
  5547. #ifdef HAVE_CURSES
  5548. static bool input_pool(bool live);
  5549. #endif
  5550. #ifdef HAVE_CURSES
  5551. static void display_pool_summary(struct pool *pool)
  5552. {
  5553. double efficiency = 0.0;
  5554. char xfer[17], bw[19];
  5555. int pool_secs;
  5556. if (curses_active_locked()) {
  5557. wlog("Pool: %s\n", pool->rpc_url);
  5558. if (pool->solved)
  5559. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5560. if (!pool->has_stratum)
  5561. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5562. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5563. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5564. wlog(" Accepted shares: %d\n", pool->accepted);
  5565. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5566. pool->rejected, pool->stale_shares,
  5567. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5568. );
  5569. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5570. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5571. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5572. wlog(" Network transfer: %s (%s)\n",
  5573. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5574. (float)pool->cgminer_pool_stats.net_bytes_received,
  5575. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5576. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5577. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5578. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5579. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5580. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5581. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5582. wlog(" Items worked on: %d\n", pool->works);
  5583. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5584. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5585. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5586. unlock_curses();
  5587. }
  5588. }
  5589. #endif
  5590. /* We can't remove the memory used for this struct pool because there may
  5591. * still be work referencing it. We just remove it from the pools list */
  5592. void remove_pool(struct pool *pool)
  5593. {
  5594. int i, last_pool = total_pools - 1;
  5595. struct pool *other;
  5596. /* Boost priority of any lower prio than this one */
  5597. for (i = 0; i < total_pools; i++) {
  5598. other = pools[i];
  5599. if (other->prio > pool->prio)
  5600. other->prio--;
  5601. }
  5602. if (pool->pool_no < last_pool) {
  5603. /* Swap the last pool for this one */
  5604. (pools[last_pool])->pool_no = pool->pool_no;
  5605. pools[pool->pool_no] = pools[last_pool];
  5606. }
  5607. /* Give it an invalid number */
  5608. pool->pool_no = total_pools;
  5609. pool->removed = true;
  5610. pool->has_stratum = false;
  5611. total_pools--;
  5612. }
  5613. /* add a mutex if this needs to be thread safe in the future */
  5614. static struct JE {
  5615. char *buf;
  5616. struct JE *next;
  5617. } *jedata = NULL;
  5618. static void json_escape_free()
  5619. {
  5620. struct JE *jeptr = jedata;
  5621. struct JE *jenext;
  5622. jedata = NULL;
  5623. while (jeptr) {
  5624. jenext = jeptr->next;
  5625. free(jeptr->buf);
  5626. free(jeptr);
  5627. jeptr = jenext;
  5628. }
  5629. }
  5630. static
  5631. char *json_escape(const char *str)
  5632. {
  5633. struct JE *jeptr;
  5634. char *buf, *ptr;
  5635. /* 2x is the max, may as well just allocate that */
  5636. ptr = buf = malloc(strlen(str) * 2 + 1);
  5637. jeptr = malloc(sizeof(*jeptr));
  5638. jeptr->buf = buf;
  5639. jeptr->next = jedata;
  5640. jedata = jeptr;
  5641. while (*str) {
  5642. if (*str == '\\' || *str == '"')
  5643. *(ptr++) = '\\';
  5644. *(ptr++) = *(str++);
  5645. }
  5646. *ptr = '\0';
  5647. return buf;
  5648. }
  5649. static
  5650. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5651. {
  5652. if (!elist)
  5653. return;
  5654. static struct string_elist *entry;
  5655. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5656. bool first = true;
  5657. DL_FOREACH(elist, entry)
  5658. {
  5659. const char * const s = entry->string;
  5660. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5661. first = false;
  5662. }
  5663. fprintf(fcfg, "\n]");
  5664. }
  5665. void write_config(FILE *fcfg)
  5666. {
  5667. int i;
  5668. /* Write pool values */
  5669. fputs("{\n\"pools\" : [", fcfg);
  5670. for(i = 0; i < total_pools; i++) {
  5671. struct pool *pool = pools[i];
  5672. if (pool->quota != 1) {
  5673. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5674. pool->quota,
  5675. json_escape(pool->rpc_url));
  5676. } else {
  5677. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5678. json_escape(pool->rpc_url));
  5679. }
  5680. if (pool->rpc_proxy)
  5681. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5682. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5683. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5684. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5685. if (pool->force_rollntime)
  5686. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5687. fprintf(fcfg, "\n\t}");
  5688. }
  5689. fputs("\n]\n", fcfg);
  5690. #ifdef HAVE_OPENCL
  5691. if (nDevs) {
  5692. /* Write GPU device values */
  5693. fputs(",\n\"intensity\" : \"", fcfg);
  5694. for(i = 0; i < nDevs; i++)
  5695. {
  5696. if (i > 0)
  5697. fputc(',', fcfg);
  5698. if (gpus[i].dynamic)
  5699. fputc('d', fcfg);
  5700. else
  5701. fprintf(fcfg, "%d", gpus[i].intensity);
  5702. }
  5703. fputs("\",\n\"vectors\" : \"", fcfg);
  5704. for(i = 0; i < nDevs; i++)
  5705. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5706. gpus[i].vwidth);
  5707. fputs("\",\n\"worksize\" : \"", fcfg);
  5708. for(i = 0; i < nDevs; i++)
  5709. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5710. (int)gpus[i].work_size);
  5711. fputs("\",\n\"kernel\" : \"", fcfg);
  5712. for(i = 0; i < nDevs; i++) {
  5713. fprintf(fcfg, "%s", i > 0 ? "," : "");
  5714. switch (gpus[i].kernel) {
  5715. case KL_NONE: // Shouldn't happen
  5716. break;
  5717. case KL_POCLBM:
  5718. fprintf(fcfg, "poclbm");
  5719. break;
  5720. case KL_PHATK:
  5721. fprintf(fcfg, "phatk");
  5722. break;
  5723. case KL_DIAKGCN:
  5724. fprintf(fcfg, "diakgcn");
  5725. break;
  5726. case KL_DIABLO:
  5727. fprintf(fcfg, "diablo");
  5728. break;
  5729. case KL_SCRYPT:
  5730. fprintf(fcfg, "scrypt");
  5731. break;
  5732. }
  5733. }
  5734. #ifdef USE_SCRYPT
  5735. fputs("\",\n\"lookup-gap\" : \"", fcfg);
  5736. for(i = 0; i < nDevs; i++)
  5737. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5738. (int)gpus[i].opt_lg);
  5739. fputs("\",\n\"thread-concurrency\" : \"", fcfg);
  5740. for(i = 0; i < nDevs; i++)
  5741. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5742. (int)gpus[i].opt_tc);
  5743. fputs("\",\n\"shaders\" : \"", fcfg);
  5744. for(i = 0; i < nDevs; i++)
  5745. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5746. (int)gpus[i].shaders);
  5747. #endif
  5748. #ifdef HAVE_ADL
  5749. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  5750. for(i = 0; i < nDevs; i++)
  5751. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  5752. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  5753. for(i = 0; i < nDevs; i++)
  5754. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  5755. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  5756. for(i = 0; i < nDevs; i++)
  5757. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  5758. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  5759. for(i = 0; i < nDevs; i++)
  5760. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  5761. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  5762. for(i = 0; i < nDevs; i++)
  5763. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  5764. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  5765. for(i = 0; i < nDevs; i++)
  5766. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  5767. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  5768. for(i = 0; i < nDevs; i++)
  5769. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  5770. #endif
  5771. fputs("\"", fcfg);
  5772. }
  5773. #endif
  5774. #ifdef HAVE_ADL
  5775. if (opt_reorder)
  5776. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  5777. #endif
  5778. #ifdef WANT_CPUMINE
  5779. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5780. #endif
  5781. /* Simple bool and int options */
  5782. struct opt_table *opt;
  5783. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5784. char *p, *name = strdup(opt->names);
  5785. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5786. if (p[1] != '-')
  5787. continue;
  5788. if (opt->type & OPT_NOARG &&
  5789. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5790. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5791. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5792. if (opt->type & OPT_HASARG &&
  5793. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5794. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5795. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5796. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5797. opt->desc != opt_hidden &&
  5798. 0 <= *(int *)opt->u.arg)
  5799. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5800. }
  5801. }
  5802. /* Special case options */
  5803. if (request_target_str)
  5804. {
  5805. if (request_pdiff == (long)request_pdiff)
  5806. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5807. else
  5808. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5809. }
  5810. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  5811. if (pool_strategy == POOL_BALANCE)
  5812. fputs(",\n\"balance\" : true", fcfg);
  5813. if (pool_strategy == POOL_LOADBALANCE)
  5814. fputs(",\n\"load-balance\" : true", fcfg);
  5815. if (pool_strategy == POOL_ROUNDROBIN)
  5816. fputs(",\n\"round-robin\" : true", fcfg);
  5817. if (pool_strategy == POOL_ROTATE)
  5818. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5819. #if defined(unix) || defined(__APPLE__)
  5820. if (opt_stderr_cmd && *opt_stderr_cmd)
  5821. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5822. #endif // defined(unix)
  5823. if (opt_kernel_path && *opt_kernel_path) {
  5824. char *kpath = strdup(opt_kernel_path);
  5825. if (kpath[strlen(kpath)-1] == '/')
  5826. kpath[strlen(kpath)-1] = 0;
  5827. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5828. free(kpath);
  5829. }
  5830. if (schedstart.enable)
  5831. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5832. if (schedstop.enable)
  5833. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5834. if (opt_socks_proxy && *opt_socks_proxy)
  5835. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5836. _write_config_string_elist(fcfg, "scan", scan_devices);
  5837. #ifdef USE_LIBMICROHTTPD
  5838. if (httpsrv_port != -1)
  5839. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5840. #endif
  5841. #ifdef USE_LIBEVENT
  5842. if (stratumsrv_port != -1)
  5843. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5844. #endif
  5845. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5846. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5847. if (opt_api_allow)
  5848. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5849. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5850. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5851. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5852. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5853. if (*opt_api_mcast_des)
  5854. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5855. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5856. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5857. if (opt_api_groups)
  5858. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5859. fputs("\n}\n", fcfg);
  5860. json_escape_free();
  5861. }
  5862. void zero_bestshare(void)
  5863. {
  5864. int i;
  5865. best_diff = 0;
  5866. memset(best_share, 0, 8);
  5867. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5868. for (i = 0; i < total_pools; i++) {
  5869. struct pool *pool = pools[i];
  5870. pool->best_diff = 0;
  5871. }
  5872. }
  5873. void zero_stats(void)
  5874. {
  5875. int i;
  5876. applog(LOG_DEBUG, "Zeroing stats");
  5877. cgtime(&total_tv_start);
  5878. miner_started = total_tv_start;
  5879. total_rolling = 0;
  5880. total_mhashes_done = 0;
  5881. total_getworks = 0;
  5882. total_accepted = 0;
  5883. total_rejected = 0;
  5884. hw_errors = 0;
  5885. total_stale = 0;
  5886. total_discarded = 0;
  5887. total_bytes_rcvd = total_bytes_sent = 0;
  5888. new_blocks = 0;
  5889. local_work = 0;
  5890. total_go = 0;
  5891. total_ro = 0;
  5892. total_secs = 1.0;
  5893. total_diff1 = 0;
  5894. total_bad_diff1 = 0;
  5895. found_blocks = 0;
  5896. total_diff_accepted = 0;
  5897. total_diff_rejected = 0;
  5898. total_diff_stale = 0;
  5899. #ifdef HAVE_CURSES
  5900. awidth = rwidth = swidth = hwwidth = 1;
  5901. #endif
  5902. for (i = 0; i < total_pools; i++) {
  5903. struct pool *pool = pools[i];
  5904. pool->getwork_requested = 0;
  5905. pool->accepted = 0;
  5906. pool->rejected = 0;
  5907. pool->solved = 0;
  5908. pool->getwork_requested = 0;
  5909. pool->stale_shares = 0;
  5910. pool->discarded_work = 0;
  5911. pool->getfail_occasions = 0;
  5912. pool->remotefail_occasions = 0;
  5913. pool->last_share_time = 0;
  5914. pool->diff1 = 0;
  5915. pool->diff_accepted = 0;
  5916. pool->diff_rejected = 0;
  5917. pool->diff_stale = 0;
  5918. pool->last_share_diff = 0;
  5919. pool->cgminer_stats.start_tv = total_tv_start;
  5920. pool->cgminer_stats.getwork_calls = 0;
  5921. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5922. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5923. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5924. pool->cgminer_pool_stats.getwork_calls = 0;
  5925. pool->cgminer_pool_stats.getwork_attempts = 0;
  5926. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5927. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5928. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5929. pool->cgminer_pool_stats.min_diff = 0;
  5930. pool->cgminer_pool_stats.max_diff = 0;
  5931. pool->cgminer_pool_stats.min_diff_count = 0;
  5932. pool->cgminer_pool_stats.max_diff_count = 0;
  5933. pool->cgminer_pool_stats.times_sent = 0;
  5934. pool->cgminer_pool_stats.bytes_sent = 0;
  5935. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5936. pool->cgminer_pool_stats.times_received = 0;
  5937. pool->cgminer_pool_stats.bytes_received = 0;
  5938. pool->cgminer_pool_stats.net_bytes_received = 0;
  5939. }
  5940. zero_bestshare();
  5941. for (i = 0; i < total_devices; ++i) {
  5942. struct cgpu_info *cgpu = get_devices(i);
  5943. mutex_lock(&hash_lock);
  5944. cgpu->total_mhashes = 0;
  5945. cgpu->accepted = 0;
  5946. cgpu->rejected = 0;
  5947. cgpu->stale = 0;
  5948. cgpu->hw_errors = 0;
  5949. cgpu->utility = 0.0;
  5950. cgpu->utility_diff1 = 0;
  5951. cgpu->last_share_pool_time = 0;
  5952. cgpu->bad_diff1 = 0;
  5953. cgpu->diff1 = 0;
  5954. cgpu->diff_accepted = 0;
  5955. cgpu->diff_rejected = 0;
  5956. cgpu->diff_stale = 0;
  5957. cgpu->last_share_diff = 0;
  5958. cgpu->thread_fail_init_count = 0;
  5959. cgpu->thread_zero_hash_count = 0;
  5960. cgpu->thread_fail_queue_count = 0;
  5961. cgpu->dev_sick_idle_60_count = 0;
  5962. cgpu->dev_dead_idle_600_count = 0;
  5963. cgpu->dev_nostart_count = 0;
  5964. cgpu->dev_over_heat_count = 0;
  5965. cgpu->dev_thermal_cutoff_count = 0;
  5966. cgpu->dev_comms_error_count = 0;
  5967. cgpu->dev_throttle_count = 0;
  5968. cgpu->cgminer_stats.start_tv = total_tv_start;
  5969. cgpu->cgminer_stats.getwork_calls = 0;
  5970. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5971. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5972. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5973. mutex_unlock(&hash_lock);
  5974. }
  5975. }
  5976. #ifdef HAVE_CURSES
  5977. static
  5978. void loginput_mode(const int size)
  5979. {
  5980. clear_logwin();
  5981. loginput_size = size;
  5982. check_winsizes();
  5983. }
  5984. static void display_pools(void)
  5985. {
  5986. struct pool *pool;
  5987. int selected, i, j;
  5988. char input;
  5989. loginput_mode(7 + total_pools);
  5990. immedok(logwin, true);
  5991. updated:
  5992. for (j = 0; j < total_pools; j++) {
  5993. for (i = 0; i < total_pools; i++) {
  5994. pool = pools[i];
  5995. if (pool->prio != j)
  5996. continue;
  5997. if (pool == current_pool())
  5998. wattron(logwin, A_BOLD);
  5999. if (pool->enabled != POOL_ENABLED)
  6000. wattron(logwin, A_DIM);
  6001. wlogprint("%d: ", pool->prio);
  6002. switch (pool->enabled) {
  6003. case POOL_ENABLED:
  6004. wlogprint("Enabled ");
  6005. break;
  6006. case POOL_DISABLED:
  6007. wlogprint("Disabled ");
  6008. break;
  6009. case POOL_REJECTING:
  6010. wlogprint("Rejectin ");
  6011. break;
  6012. }
  6013. if (pool->idle)
  6014. wlogprint("Dead ");
  6015. else
  6016. if (pool->has_stratum)
  6017. wlogprint("Strtm");
  6018. else
  6019. if (pool->lp_url && pool->proto != pool->lp_proto)
  6020. wlogprint("Mixed");
  6021. else
  6022. switch (pool->proto) {
  6023. case PLP_GETBLOCKTEMPLATE:
  6024. wlogprint(" GBT ");
  6025. break;
  6026. case PLP_GETWORK:
  6027. wlogprint("GWork");
  6028. break;
  6029. default:
  6030. wlogprint("Alive");
  6031. }
  6032. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6033. pool->quota,
  6034. pool->pool_no,
  6035. pool->rpc_url, pool->rpc_user);
  6036. wattroff(logwin, A_BOLD | A_DIM);
  6037. break; //for (i = 0; i < total_pools; i++)
  6038. }
  6039. }
  6040. retry:
  6041. wlogprint("\nCurrent pool management strategy: %s\n",
  6042. strategies[pool_strategy].s);
  6043. if (pool_strategy == POOL_ROTATE)
  6044. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6045. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6046. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6047. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6048. wlogprint("Or press any other key to continue\n");
  6049. logwin_update();
  6050. input = getch();
  6051. if (!strncasecmp(&input, "a", 1)) {
  6052. input_pool(true);
  6053. goto updated;
  6054. } else if (!strncasecmp(&input, "r", 1)) {
  6055. if (total_pools <= 1) {
  6056. wlogprint("Cannot remove last pool");
  6057. goto retry;
  6058. }
  6059. selected = curses_int("Select pool number");
  6060. if (selected < 0 || selected >= total_pools) {
  6061. wlogprint("Invalid selection\n");
  6062. goto retry;
  6063. }
  6064. pool = pools[selected];
  6065. if (pool == current_pool())
  6066. switch_pools(NULL);
  6067. if (pool == current_pool()) {
  6068. wlogprint("Unable to remove pool due to activity\n");
  6069. goto retry;
  6070. }
  6071. disable_pool(pool);
  6072. remove_pool(pool);
  6073. goto updated;
  6074. } else if (!strncasecmp(&input, "s", 1)) {
  6075. selected = curses_int("Select pool number");
  6076. if (selected < 0 || selected >= total_pools) {
  6077. wlogprint("Invalid selection\n");
  6078. goto retry;
  6079. }
  6080. pool = pools[selected];
  6081. enable_pool(pool);
  6082. switch_pools(pool);
  6083. goto updated;
  6084. } else if (!strncasecmp(&input, "d", 1)) {
  6085. if (enabled_pools <= 1) {
  6086. wlogprint("Cannot disable last pool");
  6087. goto retry;
  6088. }
  6089. selected = curses_int("Select pool number");
  6090. if (selected < 0 || selected >= total_pools) {
  6091. wlogprint("Invalid selection\n");
  6092. goto retry;
  6093. }
  6094. pool = pools[selected];
  6095. disable_pool(pool);
  6096. if (pool == current_pool())
  6097. switch_pools(NULL);
  6098. goto updated;
  6099. } else if (!strncasecmp(&input, "e", 1)) {
  6100. selected = curses_int("Select pool number");
  6101. if (selected < 0 || selected >= total_pools) {
  6102. wlogprint("Invalid selection\n");
  6103. goto retry;
  6104. }
  6105. pool = pools[selected];
  6106. enable_pool(pool);
  6107. if (pool->prio < current_pool()->prio)
  6108. switch_pools(pool);
  6109. goto updated;
  6110. } else if (!strncasecmp(&input, "c", 1)) {
  6111. for (i = 0; i <= TOP_STRATEGY; i++)
  6112. wlogprint("%d: %s\n", i, strategies[i].s);
  6113. selected = curses_int("Select strategy number type");
  6114. if (selected < 0 || selected > TOP_STRATEGY) {
  6115. wlogprint("Invalid selection\n");
  6116. goto retry;
  6117. }
  6118. if (selected == POOL_ROTATE) {
  6119. opt_rotate_period = curses_int("Select interval in minutes");
  6120. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6121. opt_rotate_period = 0;
  6122. wlogprint("Invalid selection\n");
  6123. goto retry;
  6124. }
  6125. }
  6126. pool_strategy = selected;
  6127. switch_pools(NULL);
  6128. goto updated;
  6129. } else if (!strncasecmp(&input, "i", 1)) {
  6130. selected = curses_int("Select pool number");
  6131. if (selected < 0 || selected >= total_pools) {
  6132. wlogprint("Invalid selection\n");
  6133. goto retry;
  6134. }
  6135. pool = pools[selected];
  6136. display_pool_summary(pool);
  6137. goto retry;
  6138. } else if (!strncasecmp(&input, "q", 1)) {
  6139. selected = curses_int("Select pool number");
  6140. if (selected < 0 || selected >= total_pools) {
  6141. wlogprint("Invalid selection\n");
  6142. goto retry;
  6143. }
  6144. pool = pools[selected];
  6145. selected = curses_int("Set quota");
  6146. if (selected < 0) {
  6147. wlogprint("Invalid negative quota\n");
  6148. goto retry;
  6149. }
  6150. pool->quota = selected;
  6151. adjust_quota_gcd();
  6152. goto updated;
  6153. } else if (!strncasecmp(&input, "f", 1)) {
  6154. opt_fail_only ^= true;
  6155. goto updated;
  6156. } else if (!strncasecmp(&input, "p", 1)) {
  6157. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6158. if (!prilist)
  6159. {
  6160. wlogprint("Not changing priorities\n");
  6161. goto retry;
  6162. }
  6163. int res = prioritize_pools(prilist, &i);
  6164. free(prilist);
  6165. switch (res) {
  6166. case MSG_NOPOOL:
  6167. wlogprint("No pools\n");
  6168. goto retry;
  6169. case MSG_MISPID:
  6170. wlogprint("Missing pool id parameter\n");
  6171. goto retry;
  6172. case MSG_INVPID:
  6173. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6174. goto retry;
  6175. case MSG_DUPPID:
  6176. wlogprint("Duplicate pool specified %d\n", i);
  6177. goto retry;
  6178. case MSG_POOLPRIO:
  6179. default:
  6180. goto updated;
  6181. }
  6182. }
  6183. immedok(logwin, false);
  6184. loginput_mode(0);
  6185. }
  6186. static const char *summary_detail_level_str(void)
  6187. {
  6188. if (opt_compact)
  6189. return "compact";
  6190. if (opt_show_procs)
  6191. return "processors";
  6192. return "devices";
  6193. }
  6194. static void display_options(void)
  6195. {
  6196. int selected;
  6197. char input;
  6198. immedok(logwin, true);
  6199. loginput_mode(12);
  6200. retry:
  6201. clear_logwin();
  6202. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6203. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6204. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6205. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6206. opt_debug_console ? "on" : "off",
  6207. want_per_device_stats? "on" : "off",
  6208. opt_quiet ? "on" : "off",
  6209. opt_log_output ? "on" : "off",
  6210. opt_protocol ? "on" : "off",
  6211. opt_worktime ? "on" : "off",
  6212. summary_detail_level_str(),
  6213. opt_log_interval,
  6214. opt_weighed_stats ? "weighed" : "absolute");
  6215. wlogprint("Select an option or any other key to return\n");
  6216. logwin_update();
  6217. input = getch();
  6218. if (!strncasecmp(&input, "q", 1)) {
  6219. opt_quiet ^= true;
  6220. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6221. goto retry;
  6222. } else if (!strncasecmp(&input, "v", 1)) {
  6223. opt_log_output ^= true;
  6224. if (opt_log_output)
  6225. opt_quiet = false;
  6226. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6227. goto retry;
  6228. } else if (!strncasecmp(&input, "n", 1)) {
  6229. opt_log_output = false;
  6230. opt_debug_console = false;
  6231. opt_quiet = false;
  6232. opt_protocol = false;
  6233. opt_compact = false;
  6234. opt_show_procs = false;
  6235. devsummaryYOffset = 0;
  6236. want_per_device_stats = false;
  6237. wlogprint("Output mode reset to normal\n");
  6238. switch_logsize();
  6239. goto retry;
  6240. } else if (!strncasecmp(&input, "d", 1)) {
  6241. opt_debug = true;
  6242. opt_debug_console ^= true;
  6243. opt_log_output = opt_debug_console;
  6244. if (opt_debug_console)
  6245. opt_quiet = false;
  6246. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6247. goto retry;
  6248. } else if (!strncasecmp(&input, "m", 1)) {
  6249. if (opt_compact)
  6250. opt_compact = false;
  6251. else
  6252. if (!opt_show_procs)
  6253. opt_show_procs = true;
  6254. else
  6255. {
  6256. opt_compact = true;
  6257. opt_show_procs = false;
  6258. devsummaryYOffset = 0;
  6259. }
  6260. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6261. switch_logsize();
  6262. goto retry;
  6263. } else if (!strncasecmp(&input, "p", 1)) {
  6264. want_per_device_stats ^= true;
  6265. opt_log_output = want_per_device_stats;
  6266. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6267. goto retry;
  6268. } else if (!strncasecmp(&input, "r", 1)) {
  6269. opt_protocol ^= true;
  6270. if (opt_protocol)
  6271. opt_quiet = false;
  6272. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6273. goto retry;
  6274. } else if (!strncasecmp(&input, "c", 1))
  6275. clear_logwin();
  6276. else if (!strncasecmp(&input, "l", 1)) {
  6277. selected = curses_int("Interval in seconds");
  6278. if (selected < 0 || selected > 9999) {
  6279. wlogprint("Invalid selection\n");
  6280. goto retry;
  6281. }
  6282. opt_log_interval = selected;
  6283. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6284. goto retry;
  6285. } else if (!strncasecmp(&input, "s", 1)) {
  6286. opt_realquiet = true;
  6287. } else if (!strncasecmp(&input, "w", 1)) {
  6288. opt_worktime ^= true;
  6289. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6290. goto retry;
  6291. } else if (!strncasecmp(&input, "t", 1)) {
  6292. opt_weighed_stats ^= true;
  6293. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6294. goto retry;
  6295. } else if (!strncasecmp(&input, "z", 1)) {
  6296. zero_stats();
  6297. goto retry;
  6298. }
  6299. immedok(logwin, false);
  6300. loginput_mode(0);
  6301. }
  6302. #endif
  6303. void default_save_file(char *filename)
  6304. {
  6305. #if defined(unix) || defined(__APPLE__)
  6306. if (getenv("HOME") && *getenv("HOME")) {
  6307. strcpy(filename, getenv("HOME"));
  6308. strcat(filename, "/");
  6309. }
  6310. else
  6311. strcpy(filename, "");
  6312. strcat(filename, ".bfgminer/");
  6313. mkdir(filename, 0777);
  6314. #else
  6315. strcpy(filename, "");
  6316. #endif
  6317. strcat(filename, def_conf);
  6318. }
  6319. #ifdef HAVE_CURSES
  6320. static void set_options(void)
  6321. {
  6322. int selected;
  6323. char input;
  6324. immedok(logwin, true);
  6325. loginput_mode(8);
  6326. retry:
  6327. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6328. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6329. "[W]rite config file\n[B]FGMiner restart\n",
  6330. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6331. wlogprint("Select an option or any other key to return\n");
  6332. logwin_update();
  6333. input = getch();
  6334. if (!strncasecmp(&input, "q", 1)) {
  6335. selected = curses_int("Extra work items to queue");
  6336. if (selected < 0 || selected > 9999) {
  6337. wlogprint("Invalid selection\n");
  6338. goto retry;
  6339. }
  6340. opt_queue = selected;
  6341. goto retry;
  6342. } else if (!strncasecmp(&input, "l", 1)) {
  6343. if (want_longpoll)
  6344. stop_longpoll();
  6345. else
  6346. start_longpoll();
  6347. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6348. goto retry;
  6349. } else if (!strncasecmp(&input, "s", 1)) {
  6350. selected = curses_int("Set scantime in seconds");
  6351. if (selected < 0 || selected > 9999) {
  6352. wlogprint("Invalid selection\n");
  6353. goto retry;
  6354. }
  6355. opt_scantime = selected;
  6356. goto retry;
  6357. } else if (!strncasecmp(&input, "e", 1)) {
  6358. selected = curses_int("Set expiry time in seconds");
  6359. if (selected < 0 || selected > 9999) {
  6360. wlogprint("Invalid selection\n");
  6361. goto retry;
  6362. }
  6363. opt_expiry = selected;
  6364. goto retry;
  6365. } else if (!strncasecmp(&input, "r", 1)) {
  6366. selected = curses_int("Retries before failing (-1 infinite)");
  6367. if (selected < -1 || selected > 9999) {
  6368. wlogprint("Invalid selection\n");
  6369. goto retry;
  6370. }
  6371. opt_retries = selected;
  6372. goto retry;
  6373. } else if (!strncasecmp(&input, "w", 1)) {
  6374. FILE *fcfg;
  6375. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6376. default_save_file(filename);
  6377. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6378. str = curses_input(prompt);
  6379. if (str) {
  6380. struct stat statbuf;
  6381. strcpy(filename, str);
  6382. free(str);
  6383. if (!stat(filename, &statbuf)) {
  6384. wlogprint("File exists, overwrite?\n");
  6385. input = getch();
  6386. if (strncasecmp(&input, "y", 1))
  6387. goto retry;
  6388. }
  6389. }
  6390. fcfg = fopen(filename, "w");
  6391. if (!fcfg) {
  6392. wlogprint("Cannot open or create file\n");
  6393. goto retry;
  6394. }
  6395. write_config(fcfg);
  6396. fclose(fcfg);
  6397. goto retry;
  6398. } else if (!strncasecmp(&input, "b", 1)) {
  6399. wlogprint("Are you sure?\n");
  6400. input = getch();
  6401. if (!strncasecmp(&input, "y", 1))
  6402. app_restart();
  6403. else
  6404. clear_logwin();
  6405. } else
  6406. clear_logwin();
  6407. loginput_mode(0);
  6408. immedok(logwin, false);
  6409. }
  6410. int scan_serial(const char *);
  6411. static
  6412. void _managetui_msg(const char *repr, const char **msg)
  6413. {
  6414. if (*msg)
  6415. {
  6416. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6417. wattron(logwin, A_BOLD);
  6418. wlogprint("%s", *msg);
  6419. wattroff(logwin, A_BOLD);
  6420. *msg = NULL;
  6421. }
  6422. logwin_update();
  6423. }
  6424. void manage_device(void)
  6425. {
  6426. char logline[256];
  6427. const char *msg = NULL;
  6428. struct cgpu_info *cgpu;
  6429. const struct device_drv *drv;
  6430. selecting_device = true;
  6431. immedok(logwin, true);
  6432. loginput_mode(12);
  6433. devchange:
  6434. if (unlikely(!total_devices))
  6435. {
  6436. clear_logwin();
  6437. wlogprint("(no devices)\n");
  6438. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6439. _managetui_msg("(none)", &msg);
  6440. int input = getch();
  6441. switch (input)
  6442. {
  6443. case '+': case '=': // add new device
  6444. goto addnew;
  6445. default:
  6446. goto out;
  6447. }
  6448. }
  6449. cgpu = devices[selected_device];
  6450. drv = cgpu->drv;
  6451. refresh_devstatus();
  6452. refresh:
  6453. clear_logwin();
  6454. wlogprint("Select processor to manage using up/down arrow keys\n");
  6455. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6456. wattron(logwin, A_BOLD);
  6457. wlogprint("%s", logline);
  6458. wattroff(logwin, A_BOLD);
  6459. wlogprint("\n");
  6460. if (cgpu->dev_manufacturer)
  6461. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6462. else
  6463. if (cgpu->dev_product)
  6464. wlogprint(" %s\n", cgpu->dev_product);
  6465. if (cgpu->dev_serial)
  6466. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6467. if (cgpu->kname)
  6468. wlogprint("Kernel: %s\n", cgpu->kname);
  6469. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6470. drv->proc_wlogprint_status(cgpu);
  6471. wlogprint("\n");
  6472. // TODO: Last share at TIMESTAMP on pool N
  6473. // TODO: Custom device info/commands
  6474. if (cgpu->deven != DEV_ENABLED)
  6475. wlogprint("[E]nable ");
  6476. if (cgpu->deven != DEV_DISABLED)
  6477. wlogprint("[D]isable ");
  6478. if (drv->identify_device)
  6479. wlogprint("[I]dentify ");
  6480. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6481. drv->proc_tui_wlogprint_choices(cgpu);
  6482. wlogprint("\n");
  6483. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6484. _managetui_msg(cgpu->proc_repr, &msg);
  6485. while (true)
  6486. {
  6487. int input = getch();
  6488. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6489. switch (input) {
  6490. case 'd': case 'D':
  6491. if (cgpu->deven == DEV_DISABLED)
  6492. msg = "Processor already disabled\n";
  6493. else
  6494. {
  6495. cgpu->deven = DEV_DISABLED;
  6496. msg = "Processor being disabled\n";
  6497. }
  6498. goto refresh;
  6499. case 'e': case 'E':
  6500. if (cgpu->deven == DEV_ENABLED)
  6501. msg = "Processor already enabled\n";
  6502. else
  6503. {
  6504. proc_enable(cgpu);
  6505. msg = "Processor being enabled\n";
  6506. }
  6507. goto refresh;
  6508. case 'i': case 'I':
  6509. if (drv->identify_device && drv->identify_device(cgpu))
  6510. msg = "Identify command sent\n";
  6511. else
  6512. goto key_default;
  6513. goto refresh;
  6514. case KEY_DOWN:
  6515. if (selected_device >= total_devices - 1)
  6516. break;
  6517. ++selected_device;
  6518. goto devchange;
  6519. case KEY_UP:
  6520. if (selected_device <= 0)
  6521. break;
  6522. --selected_device;
  6523. goto devchange;
  6524. case KEY_NPAGE:
  6525. {
  6526. if (selected_device >= total_devices - 1)
  6527. break;
  6528. struct cgpu_info *mdev = devices[selected_device]->device;
  6529. do {
  6530. ++selected_device;
  6531. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6532. goto devchange;
  6533. }
  6534. case KEY_PPAGE:
  6535. {
  6536. if (selected_device <= 0)
  6537. break;
  6538. struct cgpu_info *mdev = devices[selected_device]->device;
  6539. do {
  6540. --selected_device;
  6541. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6542. goto devchange;
  6543. }
  6544. case '/': case '?': // find device
  6545. {
  6546. static char *pattern = NULL;
  6547. char *newpattern = curses_input("Enter pattern");
  6548. if (newpattern)
  6549. {
  6550. free(pattern);
  6551. pattern = newpattern;
  6552. }
  6553. else
  6554. if (!pattern)
  6555. pattern = calloc(1, 1);
  6556. int match = cgpu_search(pattern, selected_device + 1);
  6557. if (match == -1)
  6558. {
  6559. msg = "Couldn't find device\n";
  6560. goto refresh;
  6561. }
  6562. selected_device = match;
  6563. goto devchange;
  6564. }
  6565. case '+': case '=': // add new device
  6566. {
  6567. addnew:
  6568. clear_logwin();
  6569. _wlogprint(
  6570. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6571. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6572. "For example: erupter:"
  6573. #ifdef WIN32
  6574. "\\\\.\\COM40"
  6575. #elif defined(__APPLE__)
  6576. "/dev/cu.SLAB_USBtoUART"
  6577. #else
  6578. "/dev/ttyUSB39"
  6579. #endif
  6580. "\n"
  6581. );
  6582. char *scanser = curses_input("Enter target");
  6583. if (scan_serial(scanser))
  6584. {
  6585. selected_device = total_devices - 1;
  6586. msg = "Device scan succeeded\n";
  6587. }
  6588. else
  6589. msg = "No new devices found\n";
  6590. goto devchange;
  6591. }
  6592. case 'Q': case 'q':
  6593. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6594. case '\x1b': // ESC
  6595. case KEY_ENTER:
  6596. case '\r': // Ctrl-M on Windows, with nonl
  6597. #ifdef PADENTER
  6598. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6599. #endif
  6600. case '\n':
  6601. goto out;
  6602. default:
  6603. ;
  6604. key_default:
  6605. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6606. {
  6607. msg = drv->proc_tui_handle_choice(cgpu, input);
  6608. if (msg)
  6609. goto refresh;
  6610. }
  6611. }
  6612. }
  6613. out:
  6614. selecting_device = false;
  6615. loginput_mode(0);
  6616. immedok(logwin, false);
  6617. }
  6618. void show_help(void)
  6619. {
  6620. loginput_mode(10);
  6621. // NOTE: wlogprint is a macro with a buffer limit
  6622. _wlogprint(
  6623. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6624. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6625. "E: # shares * diff per 2kB bw | U: shares/minute | BS: best share ever found\n"
  6626. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6627. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6628. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6629. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6630. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6631. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6632. U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6633. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6634. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6635. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6636. "\n"
  6637. "devices/processors hashing (only for totals line), hottest temperature\n"
  6638. );
  6639. wlogprint(
  6640. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6641. , opt_log_interval);
  6642. _wlogprint(
  6643. "A: accepted shares | R: rejected+discarded(%% of total)\n"
  6644. "HW: hardware errors / %% nonces invalid\n"
  6645. "\n"
  6646. "Press any key to clear"
  6647. );
  6648. logwin_update();
  6649. getch();
  6650. loginput_mode(0);
  6651. }
  6652. static void *input_thread(void __maybe_unused *userdata)
  6653. {
  6654. RenameThread("input");
  6655. if (!curses_active)
  6656. return NULL;
  6657. while (1) {
  6658. int input;
  6659. input = getch();
  6660. switch (input) {
  6661. case 'h': case 'H': case '?':
  6662. case KEY_F(1):
  6663. show_help();
  6664. break;
  6665. case 'q': case 'Q':
  6666. kill_work();
  6667. return NULL;
  6668. case 'd': case 'D':
  6669. display_options();
  6670. break;
  6671. case 'm': case 'M':
  6672. manage_device();
  6673. break;
  6674. case 'p': case 'P':
  6675. display_pools();
  6676. break;
  6677. case 's': case 'S':
  6678. set_options();
  6679. break;
  6680. #ifdef HAVE_CURSES
  6681. case KEY_DOWN:
  6682. {
  6683. const int visible_lines = logcursor - devcursor;
  6684. const int invisible_lines = total_lines - visible_lines;
  6685. if (devsummaryYOffset <= -invisible_lines)
  6686. break;
  6687. devsummaryYOffset -= 2;
  6688. }
  6689. case KEY_UP:
  6690. if (devsummaryYOffset == 0)
  6691. break;
  6692. ++devsummaryYOffset;
  6693. refresh_devstatus();
  6694. break;
  6695. case KEY_NPAGE:
  6696. {
  6697. const int visible_lines = logcursor - devcursor;
  6698. const int invisible_lines = total_lines - visible_lines;
  6699. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6700. devsummaryYOffset = -invisible_lines;
  6701. else
  6702. devsummaryYOffset -= visible_lines;
  6703. refresh_devstatus();
  6704. break;
  6705. }
  6706. case KEY_PPAGE:
  6707. {
  6708. const int visible_lines = logcursor - devcursor;
  6709. if (devsummaryYOffset + visible_lines >= 0)
  6710. devsummaryYOffset = 0;
  6711. else
  6712. devsummaryYOffset += visible_lines;
  6713. refresh_devstatus();
  6714. break;
  6715. }
  6716. #endif
  6717. }
  6718. if (opt_realquiet) {
  6719. disable_curses();
  6720. break;
  6721. }
  6722. }
  6723. return NULL;
  6724. }
  6725. #endif
  6726. static void *api_thread(void *userdata)
  6727. {
  6728. struct thr_info *mythr = userdata;
  6729. pthread_detach(pthread_self());
  6730. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6731. RenameThread("rpc");
  6732. api(api_thr_id);
  6733. mythr->has_pth = false;
  6734. return NULL;
  6735. }
  6736. void thread_reportin(struct thr_info *thr)
  6737. {
  6738. cgtime(&thr->last);
  6739. thr->cgpu->status = LIFE_WELL;
  6740. thr->getwork = 0;
  6741. thr->cgpu->device_last_well = time(NULL);
  6742. }
  6743. void thread_reportout(struct thr_info *thr)
  6744. {
  6745. thr->getwork = time(NULL);
  6746. }
  6747. static void hashmeter(int thr_id, struct timeval *diff,
  6748. uint64_t hashes_done)
  6749. {
  6750. char logstatusline[256];
  6751. struct timeval temp_tv_end, total_diff;
  6752. double secs;
  6753. double local_secs;
  6754. static double local_mhashes_done = 0;
  6755. double local_mhashes = (double)hashes_done / 1000000.0;
  6756. bool showlog = false;
  6757. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6758. char rejpcbuf[6];
  6759. char bnbuf[6];
  6760. struct thr_info *thr;
  6761. /* Update the last time this thread reported in */
  6762. if (thr_id >= 0) {
  6763. thr = get_thread(thr_id);
  6764. cgtime(&(thr->last));
  6765. thr->cgpu->device_last_well = time(NULL);
  6766. }
  6767. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6768. /* So we can call hashmeter from a non worker thread */
  6769. if (thr_id >= 0) {
  6770. struct cgpu_info *cgpu = thr->cgpu;
  6771. int threadobj = cgpu->threads ?: 1;
  6772. double thread_rolling = 0.0;
  6773. int i;
  6774. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6775. thr_id, hashes_done, hashes_done / 1000 / secs);
  6776. /* Rolling average for each thread and each device */
  6777. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6778. for (i = 0; i < threadobj; i++)
  6779. thread_rolling += cgpu->thr[i]->rolling;
  6780. mutex_lock(&hash_lock);
  6781. decay_time(&cgpu->rolling, thread_rolling, secs);
  6782. cgpu->total_mhashes += local_mhashes;
  6783. mutex_unlock(&hash_lock);
  6784. // If needed, output detailed, per-device stats
  6785. if (want_per_device_stats) {
  6786. struct timeval now;
  6787. struct timeval elapsed;
  6788. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6789. cgtime(&now);
  6790. timersub(&now, last_msg_tv, &elapsed);
  6791. if (opt_log_interval <= elapsed.tv_sec) {
  6792. struct cgpu_info *cgpu = thr->cgpu;
  6793. char logline[255];
  6794. *last_msg_tv = now;
  6795. get_statline(logline, sizeof(logline), cgpu);
  6796. if (!curses_active) {
  6797. printf("%s \r", logline);
  6798. fflush(stdout);
  6799. } else
  6800. applog(LOG_INFO, "%s", logline);
  6801. }
  6802. }
  6803. }
  6804. /* Totals are updated by all threads so can race without locking */
  6805. mutex_lock(&hash_lock);
  6806. cgtime(&temp_tv_end);
  6807. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6808. total_mhashes_done += local_mhashes;
  6809. local_mhashes_done += local_mhashes;
  6810. /* Only update with opt_log_interval */
  6811. if (total_diff.tv_sec < opt_log_interval)
  6812. goto out_unlock;
  6813. showlog = true;
  6814. cgtime(&total_tv_end);
  6815. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6816. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6817. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6818. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6819. total_secs = (double)total_diff.tv_sec +
  6820. ((double)total_diff.tv_usec / 1000000.0);
  6821. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6822. multi_format_unit_array2(
  6823. ((char*[]){cHr, aHr, uHr}),
  6824. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6825. true, "h/s", H2B_SHORT,
  6826. 3,
  6827. 1e6*total_rolling,
  6828. 1e6*total_mhashes_done / total_secs,
  6829. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6830. int ui_accepted, ui_rejected, ui_stale;
  6831. if (opt_weighed_stats)
  6832. {
  6833. ui_accepted = total_diff_accepted;
  6834. ui_rejected = total_diff_rejected;
  6835. ui_stale = total_diff_stale;
  6836. }
  6837. else
  6838. {
  6839. ui_accepted = total_accepted;
  6840. ui_rejected = total_rejected;
  6841. ui_stale = total_stale;
  6842. }
  6843. #ifdef HAVE_CURSES
  6844. if (curses_active_locked()) {
  6845. float temp = 0;
  6846. struct cgpu_info *proc, *last_working_dev = NULL;
  6847. int i, working_devs = 0, working_procs = 0;
  6848. int divx;
  6849. bool bad = false;
  6850. // Find the highest temperature of all processors
  6851. for (i = 0; i < total_devices; ++i)
  6852. {
  6853. proc = get_devices(i);
  6854. if (proc->temp > temp)
  6855. temp = proc->temp;
  6856. if (unlikely(proc->deven == DEV_DISABLED))
  6857. ; // Just need to block it off from both conditions
  6858. else
  6859. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6860. {
  6861. if (proc->rolling > .1)
  6862. {
  6863. ++working_procs;
  6864. if (proc->device != last_working_dev)
  6865. {
  6866. ++working_devs;
  6867. last_working_dev = proc->device;
  6868. }
  6869. }
  6870. }
  6871. else
  6872. bad = true;
  6873. }
  6874. if (working_devs == working_procs)
  6875. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6876. else
  6877. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6878. divx = 7;
  6879. if (opt_show_procs && !opt_compact)
  6880. ++divx;
  6881. if (bad)
  6882. {
  6883. divx += sizeof(U8_BAD_START)-1;
  6884. strcpy(&statusline[divx], U8_BAD_END);
  6885. divx += sizeof(U8_BAD_END)-1;
  6886. }
  6887. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6888. format_statline(statusline, sizeof(statusline),
  6889. cHr, aHr,
  6890. uHr,
  6891. ui_accepted,
  6892. ui_rejected,
  6893. ui_stale,
  6894. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6895. hw_errors,
  6896. total_bad_diff1, total_bad_diff1 + total_diff1);
  6897. unlock_curses();
  6898. }
  6899. #endif
  6900. // Add a space
  6901. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6902. uHr[5] = ' ';
  6903. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6904. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6905. snprintf(logstatusline, sizeof(logstatusline),
  6906. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6907. want_per_device_stats ? "ALL " : "",
  6908. opt_log_interval,
  6909. cHr, aHr,
  6910. uHr,
  6911. ui_accepted,
  6912. ui_rejected,
  6913. ui_stale,
  6914. rejpcbuf,
  6915. hw_errors,
  6916. bnbuf
  6917. );
  6918. local_mhashes_done = 0;
  6919. out_unlock:
  6920. mutex_unlock(&hash_lock);
  6921. if (showlog) {
  6922. if (!curses_active) {
  6923. printf("%s \r", logstatusline);
  6924. fflush(stdout);
  6925. } else
  6926. applog(LOG_INFO, "%s", logstatusline);
  6927. }
  6928. }
  6929. void hashmeter2(struct thr_info *thr)
  6930. {
  6931. struct timeval tv_now, tv_elapsed;
  6932. timerclear(&thr->tv_hashes_done);
  6933. cgtime(&tv_now);
  6934. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6935. /* Update the hashmeter at most 5 times per second */
  6936. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6937. tv_elapsed.tv_sec >= opt_log_interval) {
  6938. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6939. thr->hashes_done = 0;
  6940. thr->tv_lastupdate = tv_now;
  6941. }
  6942. }
  6943. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6944. struct stratum_share *sshare)
  6945. {
  6946. struct work *work = sshare->work;
  6947. share_result(val, res_val, err_val, work, false, "");
  6948. }
  6949. /* Parses stratum json responses and tries to find the id that the request
  6950. * matched to and treat it accordingly. */
  6951. bool parse_stratum_response(struct pool *pool, char *s)
  6952. {
  6953. json_t *val = NULL, *err_val, *res_val, *id_val;
  6954. struct stratum_share *sshare;
  6955. json_error_t err;
  6956. bool ret = false;
  6957. int id;
  6958. val = JSON_LOADS(s, &err);
  6959. if (!val) {
  6960. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6961. goto out;
  6962. }
  6963. res_val = json_object_get(val, "result");
  6964. err_val = json_object_get(val, "error");
  6965. id_val = json_object_get(val, "id");
  6966. if (json_is_null(id_val) || !id_val) {
  6967. char *ss;
  6968. if (err_val)
  6969. ss = json_dumps(err_val, JSON_INDENT(3));
  6970. else
  6971. ss = strdup("(unknown reason)");
  6972. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6973. free(ss);
  6974. goto out;
  6975. }
  6976. if (!json_is_integer(id_val)) {
  6977. if (json_is_string(id_val)
  6978. && !strncmp(json_string_value(id_val), "txlist", 6))
  6979. {
  6980. const bool is_array = json_is_array(res_val);
  6981. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6982. is_array ? "transaction list" : "no-transaction-list response",
  6983. pool->pool_no, &json_string_value(id_val)[6]);
  6984. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6985. // We only care about a transaction list for the current job id
  6986. goto fishy;
  6987. // Check that the transactions actually hash to the merkle links
  6988. {
  6989. unsigned maxtx = 1 << pool->swork.merkles;
  6990. unsigned mintx = maxtx >> 1;
  6991. --maxtx;
  6992. unsigned acttx = (unsigned)json_array_size(res_val);
  6993. if (acttx < mintx || acttx > maxtx) {
  6994. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6995. pool->pool_no, acttx, mintx, maxtx);
  6996. goto fishy;
  6997. }
  6998. // TODO: Check hashes match actual merkle links
  6999. }
  7000. pool_set_opaque(pool, false);
  7001. timer_unset(&pool->swork.tv_transparency);
  7002. fishy:
  7003. ret = true;
  7004. }
  7005. goto out;
  7006. }
  7007. id = json_integer_value(id_val);
  7008. mutex_lock(&sshare_lock);
  7009. HASH_FIND_INT(stratum_shares, &id, sshare);
  7010. if (sshare)
  7011. HASH_DEL(stratum_shares, sshare);
  7012. mutex_unlock(&sshare_lock);
  7013. if (!sshare) {
  7014. double pool_diff;
  7015. /* Since the share is untracked, we can only guess at what the
  7016. * work difficulty is based on the current pool diff. */
  7017. cg_rlock(&pool->data_lock);
  7018. pool_diff = pool->swork.diff;
  7019. cg_runlock(&pool->data_lock);
  7020. if (json_is_true(res_val)) {
  7021. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7022. /* We don't know what device this came from so we can't
  7023. * attribute the work to the relevant cgpu */
  7024. mutex_lock(&stats_lock);
  7025. total_accepted++;
  7026. pool->accepted++;
  7027. total_diff_accepted += pool_diff;
  7028. pool->diff_accepted += pool_diff;
  7029. mutex_unlock(&stats_lock);
  7030. } else {
  7031. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7032. mutex_lock(&stats_lock);
  7033. total_rejected++;
  7034. pool->rejected++;
  7035. total_diff_rejected += pool_diff;
  7036. pool->diff_rejected += pool_diff;
  7037. mutex_unlock(&stats_lock);
  7038. }
  7039. goto out;
  7040. }
  7041. else {
  7042. mutex_lock(&submitting_lock);
  7043. --total_submitting;
  7044. mutex_unlock(&submitting_lock);
  7045. }
  7046. stratum_share_result(val, res_val, err_val, sshare);
  7047. free_work(sshare->work);
  7048. free(sshare);
  7049. ret = true;
  7050. out:
  7051. if (val)
  7052. json_decref(val);
  7053. return ret;
  7054. }
  7055. static void shutdown_stratum(struct pool *pool)
  7056. {
  7057. // Shut down Stratum as if we never had it
  7058. pool->stratum_active = false;
  7059. pool->stratum_init = false;
  7060. pool->has_stratum = false;
  7061. shutdown(pool->sock, SHUT_RDWR);
  7062. free(pool->stratum_url);
  7063. if (pool->sockaddr_url == pool->stratum_url)
  7064. pool->sockaddr_url = NULL;
  7065. pool->stratum_url = NULL;
  7066. }
  7067. void clear_stratum_shares(struct pool *pool)
  7068. {
  7069. int my_mining_threads = mining_threads; // Cached outside of locking
  7070. struct stratum_share *sshare, *tmpshare;
  7071. struct work *work;
  7072. struct cgpu_info *cgpu;
  7073. double diff_cleared = 0;
  7074. double thr_diff_cleared[my_mining_threads];
  7075. int cleared = 0;
  7076. int thr_cleared[my_mining_threads];
  7077. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7078. for (int i = 0; i < my_mining_threads; ++i)
  7079. {
  7080. thr_diff_cleared[i] = 0;
  7081. thr_cleared[i] = 0;
  7082. }
  7083. mutex_lock(&sshare_lock);
  7084. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7085. work = sshare->work;
  7086. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7087. HASH_DEL(stratum_shares, sshare);
  7088. sharelog("disconnect", work);
  7089. diff_cleared += sshare->work->work_difficulty;
  7090. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7091. ++thr_cleared[work->thr_id];
  7092. free_work(sshare->work);
  7093. free(sshare);
  7094. cleared++;
  7095. }
  7096. }
  7097. mutex_unlock(&sshare_lock);
  7098. if (cleared) {
  7099. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7100. mutex_lock(&stats_lock);
  7101. pool->stale_shares += cleared;
  7102. total_stale += cleared;
  7103. pool->diff_stale += diff_cleared;
  7104. total_diff_stale += diff_cleared;
  7105. for (int i = 0; i < my_mining_threads; ++i)
  7106. if (thr_cleared[i])
  7107. {
  7108. cgpu = get_thr_cgpu(i);
  7109. cgpu->diff_stale += thr_diff_cleared[i];
  7110. cgpu->stale += thr_cleared[i];
  7111. }
  7112. mutex_unlock(&stats_lock);
  7113. mutex_lock(&submitting_lock);
  7114. total_submitting -= cleared;
  7115. mutex_unlock(&submitting_lock);
  7116. }
  7117. }
  7118. static void resubmit_stratum_shares(struct pool *pool)
  7119. {
  7120. struct stratum_share *sshare, *tmpshare;
  7121. struct work *work;
  7122. unsigned resubmitted = 0;
  7123. mutex_lock(&sshare_lock);
  7124. mutex_lock(&submitting_lock);
  7125. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7126. if (sshare->work->pool != pool)
  7127. continue;
  7128. HASH_DEL(stratum_shares, sshare);
  7129. work = sshare->work;
  7130. DL_APPEND(submit_waiting, work);
  7131. free(sshare);
  7132. ++resubmitted;
  7133. }
  7134. mutex_unlock(&submitting_lock);
  7135. mutex_unlock(&sshare_lock);
  7136. if (resubmitted) {
  7137. notifier_wake(submit_waiting_notifier);
  7138. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7139. }
  7140. }
  7141. static void clear_pool_work(struct pool *pool)
  7142. {
  7143. struct work *work, *tmp;
  7144. int cleared = 0;
  7145. mutex_lock(stgd_lock);
  7146. HASH_ITER(hh, staged_work, work, tmp) {
  7147. if (work->pool == pool) {
  7148. HASH_DEL(staged_work, work);
  7149. free_work(work);
  7150. cleared++;
  7151. staged_full = false;
  7152. }
  7153. }
  7154. mutex_unlock(stgd_lock);
  7155. }
  7156. static int cp_prio(void)
  7157. {
  7158. int prio;
  7159. cg_rlock(&control_lock);
  7160. prio = currentpool->prio;
  7161. cg_runlock(&control_lock);
  7162. return prio;
  7163. }
  7164. /* We only need to maintain a secondary pool connection when we need the
  7165. * capacity to get work from the backup pools while still on the primary */
  7166. static bool cnx_needed(struct pool *pool)
  7167. {
  7168. struct pool *cp;
  7169. if (pool->enabled != POOL_ENABLED)
  7170. return false;
  7171. /* Balance strategies need all pools online */
  7172. if (pool_strategy == POOL_BALANCE)
  7173. return true;
  7174. if (pool_strategy == POOL_LOADBALANCE)
  7175. return true;
  7176. /* Idle stratum pool needs something to kick it alive again */
  7177. if (pool->has_stratum && pool->idle)
  7178. return true;
  7179. /* Getwork pools without opt_fail_only need backup pools up to be able
  7180. * to leak shares */
  7181. cp = current_pool();
  7182. if (cp == pool)
  7183. return true;
  7184. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7185. return true;
  7186. /* Keep the connection open to allow any stray shares to be submitted
  7187. * on switching pools for 2 minutes. */
  7188. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7189. return true;
  7190. /* If the pool has only just come to life and is higher priority than
  7191. * the current pool keep the connection open so we can fail back to
  7192. * it. */
  7193. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7194. return true;
  7195. if (pool_unworkable(cp))
  7196. return true;
  7197. /* We've run out of work, bring anything back to life. */
  7198. if (no_work)
  7199. return true;
  7200. return false;
  7201. }
  7202. static void wait_lpcurrent(struct pool *pool);
  7203. static void pool_resus(struct pool *pool);
  7204. static void gen_stratum_work(struct pool *pool, struct work *work);
  7205. static void stratum_resumed(struct pool *pool)
  7206. {
  7207. if (!pool->stratum_notify)
  7208. return;
  7209. if (pool_tclear(pool, &pool->idle)) {
  7210. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7211. pool_resus(pool);
  7212. }
  7213. }
  7214. static bool supports_resume(struct pool *pool)
  7215. {
  7216. bool ret;
  7217. cg_rlock(&pool->data_lock);
  7218. ret = (pool->sessionid != NULL);
  7219. cg_runlock(&pool->data_lock);
  7220. return ret;
  7221. }
  7222. /* One stratum thread per pool that has stratum waits on the socket checking
  7223. * for new messages and for the integrity of the socket connection. We reset
  7224. * the connection based on the integrity of the receive side only as the send
  7225. * side will eventually expire data it fails to send. */
  7226. static void *stratum_thread(void *userdata)
  7227. {
  7228. struct pool *pool = (struct pool *)userdata;
  7229. pthread_detach(pthread_self());
  7230. char threadname[20];
  7231. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7232. RenameThread(threadname);
  7233. srand(time(NULL) + (intptr_t)userdata);
  7234. while (42) {
  7235. struct timeval timeout;
  7236. int sel_ret;
  7237. fd_set rd;
  7238. char *s;
  7239. int sock;
  7240. if (unlikely(!pool->has_stratum))
  7241. break;
  7242. /* Check to see whether we need to maintain this connection
  7243. * indefinitely or just bring it up when we switch to this
  7244. * pool */
  7245. while (true)
  7246. {
  7247. sock = pool->sock;
  7248. if (sock == INVSOCK)
  7249. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7250. pool->pool_no);
  7251. else
  7252. if (!sock_full(pool) && !cnx_needed(pool))
  7253. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7254. pool->pool_no);
  7255. else
  7256. break;
  7257. suspend_stratum(pool);
  7258. clear_stratum_shares(pool);
  7259. clear_pool_work(pool);
  7260. wait_lpcurrent(pool);
  7261. if (!restart_stratum(pool)) {
  7262. pool_died(pool);
  7263. while (!restart_stratum(pool)) {
  7264. if (pool->removed)
  7265. goto out;
  7266. cgsleep_ms(30000);
  7267. }
  7268. }
  7269. }
  7270. FD_ZERO(&rd);
  7271. FD_SET(sock, &rd);
  7272. timeout.tv_sec = 120;
  7273. timeout.tv_usec = 0;
  7274. /* If we fail to receive any notify messages for 2 minutes we
  7275. * assume the connection has been dropped and treat this pool
  7276. * as dead */
  7277. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7278. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7279. s = NULL;
  7280. } else
  7281. s = recv_line(pool);
  7282. if (!s) {
  7283. if (!pool->has_stratum)
  7284. break;
  7285. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7286. pool->getfail_occasions++;
  7287. total_go++;
  7288. mutex_lock(&pool->stratum_lock);
  7289. pool->stratum_active = pool->stratum_notify = false;
  7290. pool->sock = INVSOCK;
  7291. mutex_unlock(&pool->stratum_lock);
  7292. /* If the socket to our stratum pool disconnects, all
  7293. * submissions need to be discarded or resent. */
  7294. if (!supports_resume(pool))
  7295. clear_stratum_shares(pool);
  7296. else
  7297. resubmit_stratum_shares(pool);
  7298. clear_pool_work(pool);
  7299. if (pool == current_pool())
  7300. restart_threads();
  7301. if (restart_stratum(pool))
  7302. continue;
  7303. shutdown_stratum(pool);
  7304. pool_died(pool);
  7305. break;
  7306. }
  7307. /* Check this pool hasn't died while being a backup pool and
  7308. * has not had its idle flag cleared */
  7309. stratum_resumed(pool);
  7310. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7311. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7312. free(s);
  7313. if (pool->swork.clean) {
  7314. struct work *work = make_work();
  7315. /* Generate a single work item to update the current
  7316. * block database */
  7317. pool->swork.clean = false;
  7318. gen_stratum_work(pool, work);
  7319. /* Try to extract block height from coinbase scriptSig */
  7320. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7321. unsigned char cb_height_sz;
  7322. cb_height_sz = bin_height[-1];
  7323. if (cb_height_sz == 3) {
  7324. // FIXME: The block number will overflow this by AD 2173
  7325. uint32_t block_id = ((uint32_t*)work->data)[1];
  7326. uint32_t height = 0;
  7327. memcpy(&height, bin_height, 3);
  7328. height = le32toh(height);
  7329. have_block_height(block_id, height);
  7330. }
  7331. ++pool->work_restart_id;
  7332. if (test_work_current(work)) {
  7333. /* Only accept a work update if this stratum
  7334. * connection is from the current pool */
  7335. if (pool == current_pool()) {
  7336. restart_threads();
  7337. applog(
  7338. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7339. "Stratum from pool %d requested work update", pool->pool_no);
  7340. }
  7341. } else
  7342. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7343. free_work(work);
  7344. }
  7345. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7346. // More than 4 timmills past since requested transactions
  7347. timer_unset(&pool->swork.tv_transparency);
  7348. pool_set_opaque(pool, true);
  7349. }
  7350. }
  7351. out:
  7352. return NULL;
  7353. }
  7354. static void init_stratum_thread(struct pool *pool)
  7355. {
  7356. have_longpoll = true;
  7357. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7358. quit(1, "Failed to create stratum thread");
  7359. }
  7360. static void *longpoll_thread(void *userdata);
  7361. static bool stratum_works(struct pool *pool)
  7362. {
  7363. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7364. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7365. return false;
  7366. if (pool->stratum_active)
  7367. return true;
  7368. if (!initiate_stratum(pool))
  7369. return false;
  7370. return true;
  7371. }
  7372. static bool pool_active(struct pool *pool, bool pinging)
  7373. {
  7374. struct timeval tv_getwork, tv_getwork_reply;
  7375. bool ret = false;
  7376. json_t *val;
  7377. CURL *curl;
  7378. int rolltime;
  7379. char *rpc_req;
  7380. struct work *work;
  7381. enum pool_protocol proto;
  7382. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7383. /* This is the central point we activate stratum when we can */
  7384. curl = curl_easy_init();
  7385. if (unlikely(!curl)) {
  7386. applog(LOG_ERR, "CURL initialisation failed");
  7387. return false;
  7388. }
  7389. if (!(want_gbt || want_getwork))
  7390. goto nohttp;
  7391. work = make_work();
  7392. /* Probe for GBT support on first pass */
  7393. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7394. tryagain:
  7395. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7396. work->pool = pool;
  7397. if (!rpc_req)
  7398. goto out;
  7399. pool->probed = false;
  7400. cgtime(&tv_getwork);
  7401. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7402. true, false, &rolltime, pool, false);
  7403. cgtime(&tv_getwork_reply);
  7404. free(rpc_req);
  7405. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7406. * and if so, switch to that in preference to getwork if it works */
  7407. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7408. if (!pool->has_stratum) {
  7409. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7410. if (!pool->rpc_url)
  7411. pool->rpc_url = strdup(pool->stratum_url);
  7412. pool->has_stratum = true;
  7413. }
  7414. free_work(work);
  7415. if (val)
  7416. json_decref(val);
  7417. retry_stratum:
  7418. curl_easy_cleanup(curl);
  7419. /* We create the stratum thread for each pool just after
  7420. * successful authorisation. Once the init flag has been set
  7421. * we never unset it and the stratum thread is responsible for
  7422. * setting/unsetting the active flag */
  7423. bool init = pool_tset(pool, &pool->stratum_init);
  7424. if (!init) {
  7425. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7426. if (ret)
  7427. {
  7428. detect_algo = 2;
  7429. init_stratum_thread(pool);
  7430. }
  7431. else
  7432. pool_tclear(pool, &pool->stratum_init);
  7433. return ret;
  7434. }
  7435. return pool->stratum_active;
  7436. }
  7437. else if (pool->has_stratum)
  7438. shutdown_stratum(pool);
  7439. if (val) {
  7440. bool rc;
  7441. json_t *res;
  7442. res = json_object_get(val, "result");
  7443. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7444. goto badwork;
  7445. work->rolltime = rolltime;
  7446. rc = work_decode(pool, work, val);
  7447. if (rc) {
  7448. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7449. pool->pool_no, pool->rpc_url);
  7450. work->pool = pool;
  7451. copy_time(&work->tv_getwork, &tv_getwork);
  7452. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7453. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7454. calc_diff(work, 0);
  7455. update_last_work(work);
  7456. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7457. stage_work(work);
  7458. total_getworks++;
  7459. pool->getwork_requested++;
  7460. ret = true;
  7461. cgtime(&pool->tv_idle);
  7462. } else {
  7463. badwork:
  7464. json_decref(val);
  7465. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7466. pool->pool_no, pool->rpc_url);
  7467. pool->proto = proto = pool_protocol_fallback(proto);
  7468. if (PLP_NONE != proto)
  7469. goto tryagain;
  7470. free_work(work);
  7471. goto out;
  7472. }
  7473. json_decref(val);
  7474. if (proto != pool->proto) {
  7475. pool->proto = proto;
  7476. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7477. }
  7478. if (pool->lp_url)
  7479. goto out;
  7480. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7481. const struct blktmpl_longpoll_req *lp;
  7482. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7483. // NOTE: work_decode takes care of lp id
  7484. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7485. if (!pool->lp_url)
  7486. {
  7487. ret = false;
  7488. goto out;
  7489. }
  7490. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7491. }
  7492. else
  7493. if (pool->hdr_path && want_getwork) {
  7494. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7495. if (!pool->lp_url)
  7496. {
  7497. ret = false;
  7498. goto out;
  7499. }
  7500. pool->lp_proto = PLP_GETWORK;
  7501. } else
  7502. pool->lp_url = NULL;
  7503. if (want_longpoll && !pool->lp_started) {
  7504. pool->lp_started = true;
  7505. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7506. quit(1, "Failed to create pool longpoll thread");
  7507. }
  7508. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7509. pool->proto = proto;
  7510. goto tryagain;
  7511. } else {
  7512. free_work(work);
  7513. nohttp:
  7514. /* If we failed to parse a getwork, this could be a stratum
  7515. * url without the prefix stratum+tcp:// so let's check it */
  7516. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7517. pool->has_stratum = true;
  7518. goto retry_stratum;
  7519. }
  7520. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7521. pool->pool_no, pool->rpc_url);
  7522. if (!pinging)
  7523. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7524. }
  7525. out:
  7526. curl_easy_cleanup(curl);
  7527. return ret;
  7528. }
  7529. static void pool_resus(struct pool *pool)
  7530. {
  7531. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7532. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7533. else
  7534. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7535. }
  7536. static struct work *hash_pop(void)
  7537. {
  7538. struct work *work = NULL, *tmp;
  7539. int hc;
  7540. struct timespec ts;
  7541. retry:
  7542. mutex_lock(stgd_lock);
  7543. while (!HASH_COUNT(staged_work))
  7544. {
  7545. if (unlikely(staged_full))
  7546. {
  7547. if (likely(opt_queue < 10 + mining_threads))
  7548. {
  7549. ++opt_queue;
  7550. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7551. }
  7552. else
  7553. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7554. staged_full = false; // Let it fill up before triggering an underrun again
  7555. no_work = true;
  7556. }
  7557. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7558. pthread_cond_signal(&gws_cond);
  7559. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7560. {
  7561. run_cmd(cmd_idle);
  7562. pthread_cond_signal(&gws_cond);
  7563. pthread_cond_wait(&getq->cond, stgd_lock);
  7564. }
  7565. }
  7566. no_work = false;
  7567. hc = HASH_COUNT(staged_work);
  7568. /* Find clone work if possible, to allow masters to be reused */
  7569. if (hc > staged_rollable) {
  7570. HASH_ITER(hh, staged_work, work, tmp) {
  7571. if (!work_rollable(work))
  7572. break;
  7573. }
  7574. } else
  7575. work = staged_work;
  7576. if (can_roll(work) && should_roll(work))
  7577. {
  7578. // Instead of consuming it, force it to be cloned and grab the clone
  7579. mutex_unlock(stgd_lock);
  7580. clone_available();
  7581. goto retry;
  7582. }
  7583. HASH_DEL(staged_work, work);
  7584. if (work_rollable(work))
  7585. staged_rollable--;
  7586. /* Signal the getwork scheduler to look for more work */
  7587. pthread_cond_signal(&gws_cond);
  7588. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7589. pthread_cond_signal(&getq->cond);
  7590. mutex_unlock(stgd_lock);
  7591. work->pool->last_work_time = time(NULL);
  7592. cgtime(&work->pool->tv_last_work_time);
  7593. return work;
  7594. }
  7595. /* Clones work by rolling it if possible, and returning a clone instead of the
  7596. * original work item which gets staged again to possibly be rolled again in
  7597. * the future */
  7598. static struct work *clone_work(struct work *work)
  7599. {
  7600. int mrs = mining_threads + opt_queue - total_staged();
  7601. struct work *work_clone;
  7602. bool cloned;
  7603. if (mrs < 1)
  7604. return work;
  7605. cloned = false;
  7606. work_clone = make_clone(work);
  7607. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7608. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7609. stage_work(work_clone);
  7610. roll_work(work);
  7611. work_clone = make_clone(work);
  7612. /* Roll it again to prevent duplicates should this be used
  7613. * directly later on */
  7614. roll_work(work);
  7615. cloned = true;
  7616. }
  7617. if (cloned) {
  7618. stage_work(work);
  7619. return work_clone;
  7620. }
  7621. free_work(work_clone);
  7622. return work;
  7623. }
  7624. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7625. {
  7626. unsigned char hash1[32];
  7627. sha256(data, len, hash1);
  7628. sha256(hash1, 32, hash);
  7629. }
  7630. /* Diff 1 is a 256 bit unsigned integer of
  7631. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7632. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7633. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7634. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7635. {
  7636. uint64_t *data64, h64;
  7637. double d64;
  7638. d64 = diffone;
  7639. d64 /= diff;
  7640. d64 = ceil(d64);
  7641. h64 = d64;
  7642. memset(target, 0, 32);
  7643. if (d64 < 18446744073709551616.0) {
  7644. unsigned char *rtarget = target;
  7645. memset(rtarget, 0, 32);
  7646. if (opt_scrypt)
  7647. data64 = (uint64_t *)(rtarget + 2);
  7648. else
  7649. data64 = (uint64_t *)(rtarget + 4);
  7650. *data64 = htobe64(h64);
  7651. } else {
  7652. /* Support for the classic all FFs just-below-1 diff */
  7653. if (opt_scrypt)
  7654. memset(&target[2], 0xff, 30);
  7655. else
  7656. memset(&target[4], 0xff, 28);
  7657. }
  7658. }
  7659. void set_target(unsigned char *dest_target, double diff)
  7660. {
  7661. unsigned char rtarget[32];
  7662. bdiff_target_leadzero(rtarget, diff);
  7663. swab256(dest_target, rtarget);
  7664. if (opt_debug) {
  7665. char htarget[65];
  7666. bin2hex(htarget, rtarget, 32);
  7667. applog(LOG_DEBUG, "Generated target %s", htarget);
  7668. }
  7669. }
  7670. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7671. {
  7672. *dst = *src;
  7673. dst->job_id = strdup(src->job_id);
  7674. bytes_cpy(&dst->coinbase, &src->coinbase);
  7675. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7676. }
  7677. void stratum_work_clean(struct stratum_work * const swork)
  7678. {
  7679. free(swork->job_id);
  7680. bytes_free(&swork->coinbase);
  7681. bytes_free(&swork->merkle_bin);
  7682. }
  7683. /* Generates stratum based work based on the most recent notify information
  7684. * from the pool. This will keep generating work while a pool is down so we use
  7685. * other means to detect when the pool has died in stratum_thread */
  7686. static void gen_stratum_work(struct pool *pool, struct work *work)
  7687. {
  7688. clean_work(work);
  7689. cg_wlock(&pool->data_lock);
  7690. pool->swork.data_lock_p = &pool->data_lock;
  7691. bytes_resize(&work->nonce2, pool->n2size);
  7692. if (pool->nonce2sz < pool->n2size)
  7693. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7694. memcpy(bytes_buf(&work->nonce2),
  7695. #ifdef WORDS_BIGENDIAN
  7696. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7697. &((char*)&pool->nonce2)[pool->nonce2off],
  7698. #else
  7699. &pool->nonce2,
  7700. #endif
  7701. pool->nonce2sz);
  7702. pool->nonce2++;
  7703. work->pool = pool;
  7704. work->work_restart_id = work->pool->work_restart_id;
  7705. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7706. cgtime(&work->tv_staged);
  7707. }
  7708. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7709. {
  7710. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7711. uint8_t *merkle_bin;
  7712. uint32_t *data32, *swap32;
  7713. int i;
  7714. /* Generate coinbase */
  7715. coinbase = bytes_buf(&swork->coinbase);
  7716. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7717. /* Downgrade to a read lock to read off the variables */
  7718. if (swork->data_lock_p)
  7719. cg_dwlock(swork->data_lock_p);
  7720. /* Generate merkle root */
  7721. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7722. memcpy(merkle_sha, merkle_root, 32);
  7723. merkle_bin = bytes_buf(&swork->merkle_bin);
  7724. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7725. memcpy(merkle_sha + 32, merkle_bin, 32);
  7726. gen_hash(merkle_sha, merkle_root, 64);
  7727. memcpy(merkle_sha, merkle_root, 32);
  7728. }
  7729. data32 = (uint32_t *)merkle_sha;
  7730. swap32 = (uint32_t *)merkle_root;
  7731. flip32(swap32, data32);
  7732. memcpy(&work->data[0], swork->header1, 36);
  7733. memcpy(&work->data[36], merkle_root, 32);
  7734. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7735. memcpy(&work->data[72], swork->diffbits, 4);
  7736. memset(&work->data[76], 0, 4); // nonce
  7737. memcpy(&work->data[80], workpadding_bin, 48);
  7738. /* Store the stratum work diff to check it still matches the pool's
  7739. * stratum diff when submitting shares */
  7740. work->sdiff = swork->diff;
  7741. /* Copy parameters required for share submission */
  7742. work->job_id = strdup(swork->job_id);
  7743. work->nonce1 = strdup(nonce1);
  7744. if (swork->data_lock_p)
  7745. cg_runlock(swork->data_lock_p);
  7746. if (opt_debug)
  7747. {
  7748. char header[161];
  7749. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7750. bin2hex(header, work->data, 80);
  7751. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7752. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7753. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7754. }
  7755. calc_midstate(work);
  7756. set_target(work->target, work->sdiff);
  7757. local_work++;
  7758. work->stratum = true;
  7759. work->blk.nonce = 0;
  7760. work->id = total_work++;
  7761. work->longpoll = false;
  7762. work->getwork_mode = GETWORK_MODE_STRATUM;
  7763. /* Nominally allow a driver to ntime roll 60 seconds */
  7764. work->drv_rolllimit = 60;
  7765. calc_diff(work, 0);
  7766. }
  7767. void request_work(struct thr_info *thr)
  7768. {
  7769. struct cgpu_info *cgpu = thr->cgpu;
  7770. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7771. /* Tell the watchdog thread this thread is waiting on getwork and
  7772. * should not be restarted */
  7773. thread_reportout(thr);
  7774. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7775. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7776. {
  7777. if (proc->threads)
  7778. break;
  7779. thread_reportout(proc->thr[0]);
  7780. }
  7781. cgtime(&dev_stats->_get_start);
  7782. }
  7783. // FIXME: Make this non-blocking (and remove HACK above)
  7784. struct work *get_work(struct thr_info *thr)
  7785. {
  7786. const int thr_id = thr->id;
  7787. struct cgpu_info *cgpu = thr->cgpu;
  7788. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7789. struct cgminer_stats *pool_stats;
  7790. struct timeval tv_get;
  7791. struct work *work = NULL;
  7792. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7793. while (!work) {
  7794. work = hash_pop();
  7795. if (stale_work(work, false)) {
  7796. staged_full = false; // It wasn't really full, since it was stale :(
  7797. discard_work(work);
  7798. work = NULL;
  7799. wake_gws();
  7800. }
  7801. }
  7802. last_getwork = time(NULL);
  7803. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7804. cgpu->proc_repr, work->id, thr_id);
  7805. work->thr_id = thr_id;
  7806. thread_reportin(thr);
  7807. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7808. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7809. {
  7810. if (proc->threads)
  7811. break;
  7812. thread_reportin(proc->thr[0]);
  7813. }
  7814. work->mined = true;
  7815. work->blk.nonce = 0;
  7816. cgtime(&tv_get);
  7817. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7818. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7819. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7820. dev_stats->getwork_wait_max = tv_get;
  7821. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7822. dev_stats->getwork_wait_min = tv_get;
  7823. ++dev_stats->getwork_calls;
  7824. pool_stats = &(work->pool->cgminer_stats);
  7825. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7826. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7827. pool_stats->getwork_wait_max = tv_get;
  7828. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7829. pool_stats->getwork_wait_min = tv_get;
  7830. ++pool_stats->getwork_calls;
  7831. if (work->work_difficulty < 1)
  7832. {
  7833. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7834. {
  7835. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7836. cgpu->proc_repr);
  7837. work->nonce_diff = cgpu->min_nonce_diff;
  7838. }
  7839. else
  7840. work->nonce_diff = work->work_difficulty;
  7841. }
  7842. else
  7843. work->nonce_diff = 1;
  7844. return work;
  7845. }
  7846. static
  7847. void _submit_work_async(struct work *work)
  7848. {
  7849. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7850. mutex_lock(&submitting_lock);
  7851. ++total_submitting;
  7852. DL_APPEND(submit_waiting, work);
  7853. mutex_unlock(&submitting_lock);
  7854. notifier_wake(submit_waiting_notifier);
  7855. }
  7856. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7857. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7858. {
  7859. if (tv_work_found)
  7860. copy_time(&work->tv_work_found, tv_work_found);
  7861. _submit_work_async(work);
  7862. }
  7863. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7864. {
  7865. struct cgpu_info * const cgpu = thr->cgpu;
  7866. if (bad_nonce_p)
  7867. {
  7868. if (bad_nonce_p == UNKNOWN_NONCE)
  7869. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7870. cgpu->proc_repr);
  7871. else
  7872. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7873. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7874. }
  7875. mutex_lock(&stats_lock);
  7876. hw_errors++;
  7877. ++cgpu->hw_errors;
  7878. if (bad_nonce_p)
  7879. {
  7880. total_bad_diff1 += nonce_diff;
  7881. cgpu->bad_diff1 += nonce_diff;
  7882. }
  7883. mutex_unlock(&stats_lock);
  7884. if (thr->cgpu->drv->hw_error)
  7885. thr->cgpu->drv->hw_error(thr);
  7886. }
  7887. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7888. {
  7889. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7890. hash_data(work->hash, work->data);
  7891. if (hash2_32[7] != 0)
  7892. return TNR_BAD;
  7893. if (!checktarget)
  7894. return TNR_GOOD;
  7895. if (!hash_target_check_v(work->hash, work->target))
  7896. return TNR_HIGH;
  7897. return TNR_GOOD;
  7898. }
  7899. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7900. {
  7901. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7902. *work_nonce = htole32(nonce);
  7903. #ifdef USE_SCRYPT
  7904. if (opt_scrypt)
  7905. // NOTE: Depends on scrypt_test return matching enum values
  7906. return scrypt_test(work->data, work->target, nonce);
  7907. #endif
  7908. return hashtest2(work, checktarget);
  7909. }
  7910. /* Returns true if nonce for work was a valid share */
  7911. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7912. {
  7913. return submit_noffset_nonce(thr, work, nonce, 0);
  7914. }
  7915. /* Allows drivers to submit work items where the driver has changed the ntime
  7916. * value by noffset. Must be only used with a work protocol that does not ntime
  7917. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7918. * the original work struct, but the copy of it only. */
  7919. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7920. int noffset)
  7921. {
  7922. struct work *work = make_work();
  7923. _copy_work(work, work_in, noffset);
  7924. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7925. struct timeval tv_work_found;
  7926. enum test_nonce2_result res;
  7927. bool ret = true;
  7928. thread_reportout(thr);
  7929. cgtime(&tv_work_found);
  7930. *work_nonce = htole32(nonce);
  7931. work->thr_id = thr->id;
  7932. /* Do one last check before attempting to submit the work */
  7933. /* Side effect: sets work->data for us */
  7934. res = test_nonce2(work, nonce);
  7935. if (unlikely(res == TNR_BAD))
  7936. {
  7937. inc_hw_errors(thr, work, nonce);
  7938. ret = false;
  7939. goto out;
  7940. }
  7941. mutex_lock(&stats_lock);
  7942. total_diff1 += work->nonce_diff;
  7943. thr ->cgpu->diff1 += work->nonce_diff;
  7944. work->pool->diff1 += work->nonce_diff;
  7945. thr->cgpu->last_device_valid_work = time(NULL);
  7946. mutex_unlock(&stats_lock);
  7947. if (noncelog_file)
  7948. noncelog(work);
  7949. if (res == TNR_HIGH)
  7950. {
  7951. // Share above target, normal
  7952. /* Check the diff of the share, even if it didn't reach the
  7953. * target, just to set the best share value if it's higher. */
  7954. share_diff(work);
  7955. goto out;
  7956. }
  7957. submit_work_async2(work, &tv_work_found);
  7958. work = NULL; // Taken by submit_work_async2
  7959. out:
  7960. if (work)
  7961. free_work(work);
  7962. thread_reportin(thr);
  7963. return ret;
  7964. }
  7965. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7966. {
  7967. if (wdiff->tv_sec > opt_scantime ||
  7968. work->blk.nonce >= MAXTHREADS - hashes ||
  7969. hashes >= 0xfffffffe ||
  7970. stale_work(work, false))
  7971. return true;
  7972. return false;
  7973. }
  7974. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7975. {
  7976. struct cgpu_info *proc = thr->cgpu;
  7977. if (proc->threads > 1)
  7978. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7979. else
  7980. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7981. }
  7982. // Called by asynchronous minerloops, when they find their processor should be disabled
  7983. void mt_disable_start(struct thr_info *mythr)
  7984. {
  7985. struct cgpu_info *cgpu = mythr->cgpu;
  7986. struct device_drv *drv = cgpu->drv;
  7987. if (drv->thread_disable)
  7988. drv->thread_disable(mythr);
  7989. hashmeter2(mythr);
  7990. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7991. mythr->rolling = mythr->cgpu->rolling = 0;
  7992. thread_reportout(mythr);
  7993. mythr->_mt_disable_called = true;
  7994. }
  7995. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7996. * the driver tells us it's full so that it may extract the work item using
  7997. * the get_queued() function which adds it to the hashtable on
  7998. * cgpu->queued_work. */
  7999. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8000. {
  8001. thread_reportout(mythr);
  8002. do {
  8003. bool need_work;
  8004. /* Do this lockless just to know if we need more unqueued work. */
  8005. need_work = (!cgpu->unqueued_work);
  8006. /* get_work is a blocking function so do it outside of lock
  8007. * to prevent deadlocks with other locks. */
  8008. if (need_work) {
  8009. struct work *work = get_work(mythr);
  8010. wr_lock(&cgpu->qlock);
  8011. /* Check we haven't grabbed work somehow between
  8012. * checking and picking up the lock. */
  8013. if (likely(!cgpu->unqueued_work))
  8014. cgpu->unqueued_work = work;
  8015. else
  8016. need_work = false;
  8017. wr_unlock(&cgpu->qlock);
  8018. if (unlikely(!need_work))
  8019. discard_work(work);
  8020. }
  8021. /* The queue_full function should be used by the driver to
  8022. * actually place work items on the physical device if it
  8023. * does have a queue. */
  8024. } while (drv->queue_full && !drv->queue_full(cgpu));
  8025. }
  8026. /* Add a work item to a cgpu's queued hashlist */
  8027. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8028. {
  8029. cgpu->queued_count++;
  8030. HASH_ADD_INT(cgpu->queued_work, id, work);
  8031. }
  8032. /* This function is for retrieving one work item from the unqueued pointer and
  8033. * adding it to the hashtable of queued work. Code using this function must be
  8034. * able to handle NULL as a return which implies there is no work available. */
  8035. struct work *get_queued(struct cgpu_info *cgpu)
  8036. {
  8037. struct work *work = NULL;
  8038. wr_lock(&cgpu->qlock);
  8039. if (cgpu->unqueued_work) {
  8040. work = cgpu->unqueued_work;
  8041. __add_queued(cgpu, work);
  8042. cgpu->unqueued_work = NULL;
  8043. }
  8044. wr_unlock(&cgpu->qlock);
  8045. return work;
  8046. }
  8047. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8048. {
  8049. wr_lock(&cgpu->qlock);
  8050. __add_queued(cgpu, work);
  8051. wr_unlock(&cgpu->qlock);
  8052. }
  8053. /* Get fresh work and add it to cgpu's queued hashlist */
  8054. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8055. {
  8056. struct work *work = get_work(thr);
  8057. add_queued(cgpu, work);
  8058. return work;
  8059. }
  8060. /* This function is for finding an already queued work item in the
  8061. * given que hashtable. Code using this function must be able
  8062. * to handle NULL as a return which implies there is no matching work.
  8063. * The calling function must lock access to the que if it is required.
  8064. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8065. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8066. {
  8067. struct work *work, *tmp, *ret = NULL;
  8068. HASH_ITER(hh, que, work, tmp) {
  8069. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8070. memcmp(work->data + offset, data, datalen) == 0) {
  8071. ret = work;
  8072. break;
  8073. }
  8074. }
  8075. return ret;
  8076. }
  8077. /* This function is for finding an already queued work item in the
  8078. * device's queued_work hashtable. Code using this function must be able
  8079. * to handle NULL as a return which implies there is no matching work.
  8080. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8081. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8082. {
  8083. struct work *ret;
  8084. rd_lock(&cgpu->qlock);
  8085. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8086. rd_unlock(&cgpu->qlock);
  8087. return ret;
  8088. }
  8089. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8090. {
  8091. struct work *work, *ret = NULL;
  8092. rd_lock(&cgpu->qlock);
  8093. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8094. if (work)
  8095. ret = copy_work(work);
  8096. rd_unlock(&cgpu->qlock);
  8097. return ret;
  8098. }
  8099. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8100. {
  8101. cgpu->queued_count--;
  8102. HASH_DEL(cgpu->queued_work, work);
  8103. }
  8104. /* This function should be used by queued device drivers when they're sure
  8105. * the work struct is no longer in use. */
  8106. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8107. {
  8108. wr_lock(&cgpu->qlock);
  8109. __work_completed(cgpu, work);
  8110. wr_unlock(&cgpu->qlock);
  8111. free_work(work);
  8112. }
  8113. /* Combines find_queued_work_bymidstate and work_completed in one function
  8114. * withOUT destroying the work so the driver must free it. */
  8115. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8116. {
  8117. struct work *work;
  8118. wr_lock(&cgpu->qlock);
  8119. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8120. if (work)
  8121. __work_completed(cgpu, work);
  8122. wr_unlock(&cgpu->qlock);
  8123. return work;
  8124. }
  8125. static void flush_queue(struct cgpu_info *cgpu)
  8126. {
  8127. struct work *work = NULL;
  8128. wr_lock(&cgpu->qlock);
  8129. work = cgpu->unqueued_work;
  8130. cgpu->unqueued_work = NULL;
  8131. wr_unlock(&cgpu->qlock);
  8132. if (work) {
  8133. free_work(work);
  8134. applog(LOG_DEBUG, "Discarded queued work item");
  8135. }
  8136. }
  8137. /* This version of hash work is for devices that are fast enough to always
  8138. * perform a full nonce range and need a queue to maintain the device busy.
  8139. * Work creation and destruction is not done from within this function
  8140. * directly. */
  8141. void hash_queued_work(struct thr_info *mythr)
  8142. {
  8143. const long cycle = opt_log_interval / 5 ? : 1;
  8144. struct timeval tv_start = {0, 0}, tv_end;
  8145. struct cgpu_info *cgpu = mythr->cgpu;
  8146. struct device_drv *drv = cgpu->drv;
  8147. const int thr_id = mythr->id;
  8148. int64_t hashes_done = 0;
  8149. if (unlikely(cgpu->deven != DEV_ENABLED))
  8150. mt_disable(mythr);
  8151. while (likely(!cgpu->shutdown)) {
  8152. struct timeval diff;
  8153. int64_t hashes;
  8154. fill_queue(mythr, cgpu, drv, thr_id);
  8155. thread_reportin(mythr);
  8156. hashes = drv->scanwork(mythr);
  8157. /* Reset the bool here in case the driver looks for it
  8158. * synchronously in the scanwork loop. */
  8159. mythr->work_restart = false;
  8160. if (unlikely(hashes == -1 )) {
  8161. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8162. cgpu->deven = DEV_DISABLED;
  8163. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8164. mt_disable(mythr);
  8165. }
  8166. hashes_done += hashes;
  8167. cgtime(&tv_end);
  8168. timersub(&tv_end, &tv_start, &diff);
  8169. if (diff.tv_sec >= cycle) {
  8170. hashmeter(thr_id, &diff, hashes_done);
  8171. hashes_done = 0;
  8172. copy_time(&tv_start, &tv_end);
  8173. }
  8174. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8175. mt_disable(mythr);
  8176. if (unlikely(mythr->work_restart)) {
  8177. flush_queue(cgpu);
  8178. if (drv->flush_work)
  8179. drv->flush_work(cgpu);
  8180. }
  8181. }
  8182. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8183. }
  8184. // Called by minerloop, when it is re-enabling a processor
  8185. void mt_disable_finish(struct thr_info *mythr)
  8186. {
  8187. struct device_drv *drv = mythr->cgpu->drv;
  8188. thread_reportin(mythr);
  8189. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8190. if (drv->thread_enable)
  8191. drv->thread_enable(mythr);
  8192. mythr->_mt_disable_called = false;
  8193. }
  8194. // Called by synchronous minerloops, when they find their processor should be disabled
  8195. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8196. void mt_disable(struct thr_info *mythr)
  8197. {
  8198. const struct cgpu_info * const cgpu = mythr->cgpu;
  8199. mt_disable_start(mythr);
  8200. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8201. do {
  8202. notifier_read(mythr->notifier);
  8203. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8204. mt_disable_finish(mythr);
  8205. }
  8206. enum {
  8207. STAT_SLEEP_INTERVAL = 1,
  8208. STAT_CTR_INTERVAL = 10000000,
  8209. FAILURE_INTERVAL = 30,
  8210. };
  8211. /* Stage another work item from the work returned in a longpoll */
  8212. 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)
  8213. {
  8214. bool rc;
  8215. work->rolltime = rolltime;
  8216. rc = work_decode(pool, work, val);
  8217. if (unlikely(!rc)) {
  8218. applog(LOG_ERR, "Could not convert longpoll data to work");
  8219. free_work(work);
  8220. return;
  8221. }
  8222. total_getworks++;
  8223. pool->getwork_requested++;
  8224. work->pool = pool;
  8225. copy_time(&work->tv_getwork, tv_lp);
  8226. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8227. calc_diff(work, 0);
  8228. if (pool->enabled == POOL_REJECTING)
  8229. work->mandatory = true;
  8230. work->longpoll = true;
  8231. work->getwork_mode = GETWORK_MODE_LP;
  8232. update_last_work(work);
  8233. /* We'll be checking this work item twice, but we already know it's
  8234. * from a new block so explicitly force the new block detection now
  8235. * rather than waiting for it to hit the stage thread. This also
  8236. * allows testwork to know whether LP discovered the block or not. */
  8237. test_work_current(work);
  8238. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8239. * the longpoll work from a pool that has been rejecting shares as a
  8240. * way to detect when the pool has recovered.
  8241. */
  8242. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8243. free_work(work);
  8244. return;
  8245. }
  8246. work = clone_work(work);
  8247. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8248. stage_work(work);
  8249. applog(LOG_DEBUG, "Converted longpoll data to work");
  8250. }
  8251. /* If we want longpoll, enable it for the chosen default pool, or, if
  8252. * the pool does not support longpoll, find the first one that does
  8253. * and use its longpoll support */
  8254. static struct pool *select_longpoll_pool(struct pool *cp)
  8255. {
  8256. int i;
  8257. if (cp->lp_url)
  8258. return cp;
  8259. for (i = 0; i < total_pools; i++) {
  8260. struct pool *pool = pools[i];
  8261. if (pool->has_stratum || pool->lp_url)
  8262. return pool;
  8263. }
  8264. return NULL;
  8265. }
  8266. /* This will make the longpoll thread wait till it's the current pool, or it
  8267. * has been flagged as rejecting, before attempting to open any connections.
  8268. */
  8269. static void wait_lpcurrent(struct pool *pool)
  8270. {
  8271. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8272. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8273. pool_strategy != POOL_BALANCE))) {
  8274. mutex_lock(&lp_lock);
  8275. pthread_cond_wait(&lp_cond, &lp_lock);
  8276. mutex_unlock(&lp_lock);
  8277. }
  8278. }
  8279. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8280. struct pool *pool = vpool;
  8281. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8282. pool->lp_socket = sock;
  8283. return sock;
  8284. }
  8285. static void *longpoll_thread(void *userdata)
  8286. {
  8287. struct pool *cp = (struct pool *)userdata;
  8288. /* This *pool is the source of the actual longpoll, not the pool we've
  8289. * tied it to */
  8290. struct timeval start, reply, end;
  8291. struct pool *pool = NULL;
  8292. char threadname[20];
  8293. CURL *curl = NULL;
  8294. int failures = 0;
  8295. char *lp_url;
  8296. int rolltime;
  8297. #ifndef HAVE_PTHREAD_CANCEL
  8298. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8299. #endif
  8300. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8301. RenameThread(threadname);
  8302. curl = curl_easy_init();
  8303. if (unlikely(!curl)) {
  8304. applog(LOG_ERR, "CURL initialisation failed");
  8305. return NULL;
  8306. }
  8307. retry_pool:
  8308. pool = select_longpoll_pool(cp);
  8309. if (!pool) {
  8310. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8311. while (!pool) {
  8312. cgsleep_ms(60000);
  8313. pool = select_longpoll_pool(cp);
  8314. }
  8315. }
  8316. if (pool->has_stratum) {
  8317. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8318. cp->rpc_url, pool->rpc_url);
  8319. goto out;
  8320. }
  8321. /* Any longpoll from any pool is enough for this to be true */
  8322. have_longpoll = true;
  8323. wait_lpcurrent(cp);
  8324. {
  8325. lp_url = pool->lp_url;
  8326. if (cp == pool)
  8327. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8328. else
  8329. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8330. }
  8331. while (42) {
  8332. json_t *val, *soval;
  8333. struct work *work = make_work();
  8334. char *lpreq;
  8335. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8336. work->pool = pool;
  8337. if (!lpreq)
  8338. {
  8339. free_work(work);
  8340. goto lpfail;
  8341. }
  8342. wait_lpcurrent(cp);
  8343. cgtime(&start);
  8344. /* Longpoll connections can be persistent for a very long time
  8345. * and any number of issues could have come up in the meantime
  8346. * so always establish a fresh connection instead of relying on
  8347. * a persistent one. */
  8348. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8349. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8350. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8351. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8352. lpreq, false, true, &rolltime, pool, false);
  8353. pool->lp_socket = CURL_SOCKET_BAD;
  8354. cgtime(&reply);
  8355. free(lpreq);
  8356. if (likely(val)) {
  8357. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8358. if (soval)
  8359. pool->submit_old = json_is_true(soval);
  8360. else
  8361. pool->submit_old = false;
  8362. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8363. failures = 0;
  8364. json_decref(val);
  8365. } else {
  8366. /* Some pools regularly drop the longpoll request so
  8367. * only see this as longpoll failure if it happens
  8368. * immediately and just restart it the rest of the
  8369. * time. */
  8370. cgtime(&end);
  8371. free_work(work);
  8372. if (end.tv_sec - start.tv_sec > 30)
  8373. continue;
  8374. if (failures == 1)
  8375. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8376. lpfail:
  8377. cgsleep_ms(30000);
  8378. }
  8379. if (pool != cp) {
  8380. pool = select_longpoll_pool(cp);
  8381. if (pool->has_stratum) {
  8382. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8383. cp->rpc_url, pool->rpc_url);
  8384. break;
  8385. }
  8386. if (unlikely(!pool))
  8387. goto retry_pool;
  8388. }
  8389. if (unlikely(pool->removed))
  8390. break;
  8391. }
  8392. out:
  8393. curl_easy_cleanup(curl);
  8394. return NULL;
  8395. }
  8396. static void stop_longpoll(void)
  8397. {
  8398. int i;
  8399. want_longpoll = false;
  8400. for (i = 0; i < total_pools; ++i)
  8401. {
  8402. struct pool *pool = pools[i];
  8403. if (unlikely(!pool->lp_started))
  8404. continue;
  8405. pool->lp_started = false;
  8406. pthread_cancel(pool->longpoll_thread);
  8407. }
  8408. have_longpoll = false;
  8409. }
  8410. static void start_longpoll(void)
  8411. {
  8412. int i;
  8413. want_longpoll = true;
  8414. for (i = 0; i < total_pools; ++i)
  8415. {
  8416. struct pool *pool = pools[i];
  8417. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8418. continue;
  8419. pool->lp_started = true;
  8420. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8421. quit(1, "Failed to create pool longpoll thread");
  8422. }
  8423. }
  8424. void reinit_device(struct cgpu_info *cgpu)
  8425. {
  8426. if (cgpu->drv->reinit_device)
  8427. cgpu->drv->reinit_device(cgpu);
  8428. }
  8429. static struct timeval rotate_tv;
  8430. /* We reap curls if they are unused for over a minute */
  8431. static void reap_curl(struct pool *pool)
  8432. {
  8433. struct curl_ent *ent, *iter;
  8434. struct timeval now;
  8435. int reaped = 0;
  8436. cgtime(&now);
  8437. mutex_lock(&pool->pool_lock);
  8438. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8439. if (pool->curls < 2)
  8440. break;
  8441. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8442. reaped++;
  8443. pool->curls--;
  8444. LL_DELETE(pool->curllist, ent);
  8445. curl_easy_cleanup(ent->curl);
  8446. free(ent);
  8447. }
  8448. }
  8449. mutex_unlock(&pool->pool_lock);
  8450. if (reaped)
  8451. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8452. }
  8453. static void *watchpool_thread(void __maybe_unused *userdata)
  8454. {
  8455. int intervals = 0;
  8456. #ifndef HAVE_PTHREAD_CANCEL
  8457. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8458. #endif
  8459. RenameThread("watchpool");
  8460. while (42) {
  8461. struct timeval now;
  8462. int i;
  8463. if (++intervals > 20)
  8464. intervals = 0;
  8465. cgtime(&now);
  8466. for (i = 0; i < total_pools; i++) {
  8467. struct pool *pool = pools[i];
  8468. if (!opt_benchmark)
  8469. reap_curl(pool);
  8470. /* Get a rolling utility per pool over 10 mins */
  8471. if (intervals > 19) {
  8472. int shares = pool->diff1 - pool->last_shares;
  8473. pool->last_shares = pool->diff1;
  8474. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8475. pool->shares = pool->utility;
  8476. }
  8477. if (pool->enabled == POOL_DISABLED)
  8478. continue;
  8479. /* Don't start testing any pools if the test threads
  8480. * from startup are still doing their first attempt. */
  8481. if (unlikely(pool->testing)) {
  8482. pthread_join(pool->test_thread, NULL);
  8483. }
  8484. /* Test pool is idle once every minute */
  8485. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8486. cgtime(&pool->tv_idle);
  8487. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8488. pool_resus(pool);
  8489. }
  8490. /* Only switch pools if the failback pool has been
  8491. * alive for more than 5 minutes to prevent
  8492. * intermittently failing pools from being used. */
  8493. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8494. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8495. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8496. pool->pool_no, pool->rpc_url);
  8497. switch_pools(NULL);
  8498. }
  8499. }
  8500. if (current_pool()->idle)
  8501. switch_pools(NULL);
  8502. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8503. cgtime(&rotate_tv);
  8504. switch_pools(NULL);
  8505. }
  8506. cgsleep_ms(30000);
  8507. }
  8508. return NULL;
  8509. }
  8510. void mt_enable(struct thr_info *thr)
  8511. {
  8512. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8513. notifier_wake(thr->notifier);
  8514. }
  8515. void proc_enable(struct cgpu_info *cgpu)
  8516. {
  8517. int j;
  8518. cgpu->deven = DEV_ENABLED;
  8519. for (j = cgpu->threads ?: 1; j--; )
  8520. mt_enable(cgpu->thr[j]);
  8521. }
  8522. #define device_recovered(cgpu) proc_enable(cgpu)
  8523. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8524. {
  8525. struct string_elist *setstr_elist;
  8526. const char *p, *p2;
  8527. char replybuf[0x2000];
  8528. size_t L;
  8529. DL_FOREACH(opt_set_device_list, setstr_elist)
  8530. {
  8531. const char * const setstr = setstr_elist->string;
  8532. p = strchr(setstr, ':');
  8533. if (!p)
  8534. p = setstr;
  8535. {
  8536. L = p - setstr;
  8537. char pattern[L + 1];
  8538. if (L)
  8539. memcpy(pattern, setstr, L);
  8540. pattern[L] = '\0';
  8541. if (!cgpu_match(pattern, cgpu))
  8542. continue;
  8543. }
  8544. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8545. cgpu->proc_repr, __func__, setstr);
  8546. if (p[0] == ':')
  8547. ++p;
  8548. p2 = strchr(p, '=');
  8549. if (!p2)
  8550. {
  8551. L = strlen(p);
  8552. p2 = "";
  8553. }
  8554. else
  8555. {
  8556. L = p2 - p;
  8557. ++p2;
  8558. }
  8559. char opt[L + 1];
  8560. if (L)
  8561. memcpy(opt, p, L);
  8562. opt[L] = '\0';
  8563. L = strlen(p2);
  8564. char setval[L + 1];
  8565. if (L)
  8566. memcpy(setval, p2, L);
  8567. setval[L] = '\0';
  8568. enum bfg_set_device_replytype success;
  8569. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8570. switch (success)
  8571. {
  8572. case SDR_OK:
  8573. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8574. cgpu->proc_repr, setstr,
  8575. p ? ": " : "", p ?: "");
  8576. break;
  8577. case SDR_ERR:
  8578. case SDR_HELP:
  8579. case SDR_UNKNOWN:
  8580. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8581. cgpu->proc_repr, setstr, p);
  8582. break;
  8583. case SDR_AUTO:
  8584. case SDR_NOSUPP:
  8585. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8586. cgpu->proc_repr, setstr);
  8587. }
  8588. }
  8589. cgpu->already_set_defaults = true;
  8590. }
  8591. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8592. {
  8593. struct device_drv dummy_drv = *drv;
  8594. struct cgpu_info dummy_cgpu = {
  8595. .drv = &dummy_drv,
  8596. .device = &dummy_cgpu,
  8597. .device_id = -1,
  8598. .proc_id = -1,
  8599. .device_data = userp,
  8600. .device_path = devpath,
  8601. .dev_serial = serial,
  8602. };
  8603. strcpy(dummy_cgpu.proc_repr, drv->name);
  8604. switch (mode)
  8605. {
  8606. case 0:
  8607. dummy_drv.set_device = datap;
  8608. break;
  8609. case 1:
  8610. dummy_drv.set_device = NULL;
  8611. dummy_cgpu.set_device_funcs = datap;
  8612. break;
  8613. }
  8614. cgpu_set_defaults(&dummy_cgpu);
  8615. }
  8616. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8617. * the screen at regular intervals, and restarts threads if they appear to have
  8618. * died. */
  8619. #define WATCHDOG_SICK_TIME 60
  8620. #define WATCHDOG_DEAD_TIME 600
  8621. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8622. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8623. static void *watchdog_thread(void __maybe_unused *userdata)
  8624. {
  8625. const unsigned int interval = WATCHDOG_INTERVAL;
  8626. struct timeval zero_tv;
  8627. #ifndef HAVE_PTHREAD_CANCEL
  8628. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8629. #endif
  8630. RenameThread("watchdog");
  8631. memset(&zero_tv, 0, sizeof(struct timeval));
  8632. cgtime(&rotate_tv);
  8633. while (1) {
  8634. int i;
  8635. struct timeval now;
  8636. sleep(interval);
  8637. discard_stale();
  8638. hashmeter(-1, &zero_tv, 0);
  8639. #ifdef HAVE_CURSES
  8640. const int ts = total_staged();
  8641. if (curses_active_locked()) {
  8642. change_logwinsize();
  8643. curses_print_status(ts);
  8644. _refresh_devstatus(true);
  8645. touchwin(logwin);
  8646. wrefresh(logwin);
  8647. unlock_curses();
  8648. }
  8649. #endif
  8650. cgtime(&now);
  8651. if (!sched_paused && !should_run()) {
  8652. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8653. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8654. if (!schedstart.enable) {
  8655. quit(0, "Terminating execution as planned");
  8656. break;
  8657. }
  8658. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8659. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8660. sched_paused = true;
  8661. rd_lock(&mining_thr_lock);
  8662. for (i = 0; i < mining_threads; i++)
  8663. mining_thr[i]->pause = true;
  8664. rd_unlock(&mining_thr_lock);
  8665. } else if (sched_paused && should_run()) {
  8666. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8667. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8668. if (schedstop.enable)
  8669. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8670. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8671. sched_paused = false;
  8672. for (i = 0; i < mining_threads; i++) {
  8673. struct thr_info *thr;
  8674. thr = get_thread(i);
  8675. thr->pause = false;
  8676. }
  8677. for (i = 0; i < total_devices; ++i)
  8678. {
  8679. struct cgpu_info *cgpu = get_devices(i);
  8680. /* Don't touch disabled devices */
  8681. if (cgpu->deven == DEV_DISABLED)
  8682. continue;
  8683. proc_enable(cgpu);
  8684. }
  8685. }
  8686. for (i = 0; i < total_devices; ++i) {
  8687. struct cgpu_info *cgpu = get_devices(i);
  8688. if (!cgpu->disable_watchdog)
  8689. bfg_watchdog(cgpu, &now);
  8690. }
  8691. }
  8692. return NULL;
  8693. }
  8694. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8695. {
  8696. struct thr_info *thr = cgpu->thr[0];
  8697. enum dev_enable *denable;
  8698. char *dev_str = cgpu->proc_repr;
  8699. int gpu;
  8700. if (likely(drv_ready(cgpu)))
  8701. {
  8702. if (unlikely(!cgpu->already_set_defaults))
  8703. cgpu_set_defaults(cgpu);
  8704. if (cgpu->drv->get_stats)
  8705. cgpu->drv->get_stats(cgpu);
  8706. }
  8707. gpu = cgpu->device_id;
  8708. denable = &cgpu->deven;
  8709. #ifdef HAVE_ADL
  8710. if (adl_active && cgpu->has_adl)
  8711. gpu_autotune(gpu, denable);
  8712. if (opt_debug && cgpu->has_adl) {
  8713. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  8714. float temp = 0, vddc = 0;
  8715. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  8716. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMHz V: %.3fV A: %d%% P: %d%%",
  8717. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  8718. }
  8719. #endif
  8720. /* Thread is disabled */
  8721. if (*denable == DEV_DISABLED)
  8722. return;
  8723. else
  8724. if (*denable == DEV_RECOVER_ERR) {
  8725. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8726. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8727. dev_str);
  8728. if (cgpu->reinit_backoff < 300)
  8729. cgpu->reinit_backoff *= 2;
  8730. device_recovered(cgpu);
  8731. }
  8732. return;
  8733. }
  8734. else
  8735. if (*denable == DEV_RECOVER) {
  8736. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8737. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8738. dev_str);
  8739. device_recovered(cgpu);
  8740. }
  8741. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8742. return;
  8743. }
  8744. else
  8745. if (cgpu->temp > cgpu->cutofftemp)
  8746. {
  8747. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8748. dev_str, (int)cgpu->temp);
  8749. *denable = DEV_RECOVER;
  8750. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8751. run_cmd(cmd_idle);
  8752. }
  8753. if (thr->getwork) {
  8754. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8755. int thrid;
  8756. bool cgpu_idle = true;
  8757. thr->rolling = 0;
  8758. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8759. if (!cgpu->thr[thrid]->getwork)
  8760. cgpu_idle = false;
  8761. if (cgpu_idle) {
  8762. cgpu->rolling = 0;
  8763. cgpu->status = LIFE_WAIT;
  8764. }
  8765. }
  8766. return;
  8767. }
  8768. else if (cgpu->status == LIFE_WAIT)
  8769. cgpu->status = LIFE_WELL;
  8770. #ifdef WANT_CPUMINE
  8771. if (!strcmp(cgpu->drv->dname, "cpu"))
  8772. return;
  8773. #endif
  8774. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8775. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8776. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8777. cgpu->status = LIFE_WELL;
  8778. cgpu->device_last_well = time(NULL);
  8779. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8780. thr->rolling = cgpu->rolling = 0;
  8781. cgpu->status = LIFE_SICK;
  8782. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8783. cgtime(&thr->sick);
  8784. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8785. run_cmd(cmd_sick);
  8786. #ifdef HAVE_ADL
  8787. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8788. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  8789. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  8790. } else
  8791. #endif
  8792. if (opt_restart && cgpu->drv->reinit_device) {
  8793. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8794. reinit_device(cgpu);
  8795. }
  8796. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8797. cgpu->status = LIFE_DEAD;
  8798. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8799. cgtime(&thr->sick);
  8800. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8801. run_cmd(cmd_dead);
  8802. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8803. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8804. /* Attempt to restart a GPU that's sick or dead once every minute */
  8805. cgtime(&thr->sick);
  8806. #ifdef HAVE_ADL
  8807. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8808. /* Again do not attempt to restart a device that may have hard hung */
  8809. } else
  8810. #endif
  8811. if (opt_restart)
  8812. reinit_device(cgpu);
  8813. }
  8814. }
  8815. static void log_print_status(struct cgpu_info *cgpu)
  8816. {
  8817. char logline[255];
  8818. get_statline(logline, sizeof(logline), cgpu);
  8819. applog(LOG_WARNING, "%s", logline);
  8820. }
  8821. void print_summary(void)
  8822. {
  8823. struct timeval diff;
  8824. int hours, mins, secs, i;
  8825. double utility, efficiency = 0.0;
  8826. char xfer[17], bw[19];
  8827. int pool_secs;
  8828. timersub(&total_tv_end, &total_tv_start, &diff);
  8829. hours = diff.tv_sec / 3600;
  8830. mins = (diff.tv_sec % 3600) / 60;
  8831. secs = diff.tv_sec % 60;
  8832. utility = total_accepted / total_secs * 60;
  8833. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8834. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8835. applog(LOG_WARNING, "Started at %s", datestamp);
  8836. if (total_pools == 1)
  8837. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8838. #ifdef WANT_CPUMINE
  8839. if (opt_n_threads)
  8840. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8841. #endif
  8842. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8843. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8844. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8845. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8846. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8847. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8848. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8849. total_rejected, total_stale,
  8850. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8851. );
  8852. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8853. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8854. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8855. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8856. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8857. (float)total_bytes_rcvd,
  8858. (float)total_bytes_sent),
  8859. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8860. (float)(total_bytes_rcvd / total_secs),
  8861. (float)(total_bytes_sent / total_secs)));
  8862. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8863. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8864. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8865. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8866. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8867. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8868. if (total_pools > 1) {
  8869. for (i = 0; i < total_pools; i++) {
  8870. struct pool *pool = pools[i];
  8871. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8872. if (pool->solved)
  8873. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8874. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8875. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8876. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8877. pool->rejected, pool->stale_shares,
  8878. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8879. );
  8880. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8881. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8882. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8883. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8884. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8885. (float)pool->cgminer_pool_stats.net_bytes_received,
  8886. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8887. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8888. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8889. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8890. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8891. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8892. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8893. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8894. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8895. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8896. }
  8897. }
  8898. if (opt_quit_summary != BQS_NONE)
  8899. {
  8900. if (opt_quit_summary == BQS_DETAILED)
  8901. include_serial_in_statline = true;
  8902. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8903. for (i = 0; i < total_devices; ++i) {
  8904. struct cgpu_info *cgpu = get_devices(i);
  8905. if (!cgpu->proc_id)
  8906. {
  8907. // Device summary line
  8908. opt_show_procs = false;
  8909. log_print_status(cgpu);
  8910. opt_show_procs = true;
  8911. }
  8912. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8913. log_print_status(cgpu);
  8914. }
  8915. }
  8916. if (opt_shares) {
  8917. applog(LOG_WARNING, "Mined %.0f accepted shares of %d requested\n", total_diff_accepted, opt_shares);
  8918. if (opt_shares > total_diff_accepted)
  8919. applog(LOG_WARNING, "WARNING - Mined only %.0f shares of %d requested.", total_diff_accepted, opt_shares);
  8920. }
  8921. applog(LOG_WARNING, " ");
  8922. fflush(stderr);
  8923. fflush(stdout);
  8924. }
  8925. void _bfg_clean_up(bool restarting)
  8926. {
  8927. #ifdef HAVE_OPENCL
  8928. clear_adl(nDevs);
  8929. #endif
  8930. #ifdef HAVE_LIBUSB
  8931. if (likely(have_libusb))
  8932. libusb_exit(NULL);
  8933. #endif
  8934. cgtime(&total_tv_end);
  8935. #ifdef WIN32
  8936. timeEndPeriod(1);
  8937. #endif
  8938. if (!restarting) {
  8939. /* Attempting to disable curses or print a summary during a
  8940. * restart can lead to a deadlock. */
  8941. #ifdef HAVE_CURSES
  8942. disable_curses();
  8943. #endif
  8944. if (!opt_realquiet && successful_connect)
  8945. print_summary();
  8946. }
  8947. if (opt_n_threads)
  8948. free(cpus);
  8949. curl_global_cleanup();
  8950. #ifdef WIN32
  8951. WSACleanup();
  8952. #endif
  8953. }
  8954. void _quit(int status)
  8955. {
  8956. if (status) {
  8957. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8958. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8959. int *p = NULL;
  8960. // NOTE debugger can bypass with: p = &p
  8961. *p = status; // Segfault, hopefully dumping core
  8962. }
  8963. }
  8964. #if defined(unix) || defined(__APPLE__)
  8965. if (forkpid > 0) {
  8966. kill(forkpid, SIGTERM);
  8967. forkpid = 0;
  8968. }
  8969. #endif
  8970. exit(status);
  8971. }
  8972. #ifdef HAVE_CURSES
  8973. char *curses_input(const char *query)
  8974. {
  8975. char *input;
  8976. echo();
  8977. input = malloc(255);
  8978. if (!input)
  8979. quit(1, "Failed to malloc input");
  8980. leaveok(logwin, false);
  8981. wlogprint("%s:\n", query);
  8982. wgetnstr(logwin, input, 255);
  8983. if (!strlen(input))
  8984. {
  8985. free(input);
  8986. input = NULL;
  8987. }
  8988. leaveok(logwin, true);
  8989. noecho();
  8990. return input;
  8991. }
  8992. #endif
  8993. static bool pools_active = false;
  8994. static void *test_pool_thread(void *arg)
  8995. {
  8996. struct pool *pool = (struct pool *)arg;
  8997. if (pool_active(pool, false)) {
  8998. pool_tset(pool, &pool->lagging);
  8999. pool_tclear(pool, &pool->idle);
  9000. bool first_pool = false;
  9001. cg_wlock(&control_lock);
  9002. if (!pools_active) {
  9003. currentpool = pool;
  9004. if (pool->pool_no != 0)
  9005. first_pool = true;
  9006. pools_active = true;
  9007. }
  9008. cg_wunlock(&control_lock);
  9009. if (unlikely(first_pool))
  9010. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9011. else
  9012. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9013. switch_pools(NULL);
  9014. } else
  9015. pool_died(pool);
  9016. pool->testing = false;
  9017. return NULL;
  9018. }
  9019. /* Always returns true that the pool details were added unless we are not
  9020. * live, implying this is the only pool being added, so if no pools are
  9021. * active it returns false. */
  9022. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9023. {
  9024. size_t siz;
  9025. pool->rpc_url = url;
  9026. pool->rpc_user = user;
  9027. pool->rpc_pass = pass;
  9028. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9029. pool->rpc_userpass = malloc(siz);
  9030. if (!pool->rpc_userpass)
  9031. quit(1, "Failed to malloc userpass");
  9032. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9033. pool->testing = true;
  9034. pool->idle = true;
  9035. enable_pool(pool);
  9036. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9037. if (!live) {
  9038. pthread_join(pool->test_thread, NULL);
  9039. return pools_active;
  9040. }
  9041. return true;
  9042. }
  9043. #ifdef HAVE_CURSES
  9044. static bool input_pool(bool live)
  9045. {
  9046. char *url = NULL, *user = NULL, *pass = NULL;
  9047. struct pool *pool;
  9048. bool ret = false;
  9049. immedok(logwin, true);
  9050. wlogprint("Input server details.\n");
  9051. url = curses_input("URL");
  9052. if (!url)
  9053. goto out;
  9054. user = curses_input("Username");
  9055. if (!user)
  9056. goto out;
  9057. pass = curses_input("Password");
  9058. if (!pass)
  9059. pass = calloc(1, 1);
  9060. pool = add_pool();
  9061. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9062. strncmp(url, "https://", 8)) {
  9063. char *httpinput;
  9064. httpinput = malloc(256);
  9065. if (!httpinput)
  9066. quit(1, "Failed to malloc httpinput");
  9067. strcpy(httpinput, "http://");
  9068. strncat(httpinput, url, 248);
  9069. free(url);
  9070. url = httpinput;
  9071. }
  9072. ret = add_pool_details(pool, live, url, user, pass);
  9073. out:
  9074. immedok(logwin, false);
  9075. if (!ret) {
  9076. if (url)
  9077. free(url);
  9078. if (user)
  9079. free(user);
  9080. if (pass)
  9081. free(pass);
  9082. }
  9083. return ret;
  9084. }
  9085. #endif
  9086. #if defined(unix) || defined(__APPLE__)
  9087. static void fork_monitor()
  9088. {
  9089. // Make a pipe: [readFD, writeFD]
  9090. int pfd[2];
  9091. int r = pipe(pfd);
  9092. if (r < 0) {
  9093. perror("pipe - failed to create pipe for --monitor");
  9094. exit(1);
  9095. }
  9096. // Make stderr write end of pipe
  9097. fflush(stderr);
  9098. r = dup2(pfd[1], 2);
  9099. if (r < 0) {
  9100. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9101. exit(1);
  9102. }
  9103. r = close(pfd[1]);
  9104. if (r < 0) {
  9105. perror("close - failed to close write end of pipe for --monitor");
  9106. exit(1);
  9107. }
  9108. // Don't allow a dying monitor to kill the main process
  9109. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9110. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9111. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9112. perror("signal - failed to edit signal mask for --monitor");
  9113. exit(1);
  9114. }
  9115. // Fork a child process
  9116. forkpid = fork();
  9117. if (forkpid < 0) {
  9118. perror("fork - failed to fork child process for --monitor");
  9119. exit(1);
  9120. }
  9121. // Child: launch monitor command
  9122. if (0 == forkpid) {
  9123. // Make stdin read end of pipe
  9124. r = dup2(pfd[0], 0);
  9125. if (r < 0) {
  9126. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9127. exit(1);
  9128. }
  9129. close(pfd[0]);
  9130. if (r < 0) {
  9131. perror("close - in child, failed to close read end of pipe for --monitor");
  9132. exit(1);
  9133. }
  9134. // Launch user specified command
  9135. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9136. perror("execl - in child failed to exec user specified command for --monitor");
  9137. exit(1);
  9138. }
  9139. // Parent: clean up unused fds and bail
  9140. r = close(pfd[0]);
  9141. if (r < 0) {
  9142. perror("close - failed to close read end of pipe for --monitor");
  9143. exit(1);
  9144. }
  9145. }
  9146. #endif // defined(unix)
  9147. #ifdef HAVE_CURSES
  9148. #ifdef USE_UNICODE
  9149. static
  9150. wchar_t select_unicode_char(const wchar_t *opt)
  9151. {
  9152. for ( ; *opt; ++opt)
  9153. if (iswprint(*opt))
  9154. return *opt;
  9155. return '?';
  9156. }
  9157. #endif
  9158. void enable_curses(void) {
  9159. int x;
  9160. __maybe_unused int y;
  9161. lock_curses();
  9162. if (curses_active) {
  9163. unlock_curses();
  9164. return;
  9165. }
  9166. #ifdef USE_UNICODE
  9167. if (use_unicode)
  9168. {
  9169. setlocale(LC_CTYPE, "");
  9170. if (iswprint(0xb0))
  9171. have_unicode_degrees = true;
  9172. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9173. }
  9174. #endif
  9175. mainwin = initscr();
  9176. start_color();
  9177. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9178. if (ERR != use_default_colors())
  9179. default_bgcolor = -1;
  9180. #endif
  9181. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9182. {
  9183. menu_attr = COLOR_PAIR(1);
  9184. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9185. attr_bad |= COLOR_PAIR(2);
  9186. }
  9187. keypad(mainwin, true);
  9188. getmaxyx(mainwin, y, x);
  9189. statuswin = newwin(logstart, x, 0, 0);
  9190. leaveok(statuswin, true);
  9191. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9192. // We resize the window later anyway, so just start it off at 1 :)
  9193. logwin = newwin(1, 0, logcursor, 0);
  9194. idlok(logwin, true);
  9195. scrollok(logwin, true);
  9196. leaveok(logwin, true);
  9197. cbreak();
  9198. noecho();
  9199. nonl();
  9200. curses_active = true;
  9201. statusy = logstart;
  9202. unlock_curses();
  9203. }
  9204. #endif
  9205. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9206. #ifndef WANT_CPUMINE
  9207. struct device_drv cpu_drv;
  9208. struct device_drv cpu_drv = {
  9209. .name = "CPU",
  9210. };
  9211. #endif
  9212. static int cgminer_id_count = 0;
  9213. static int device_line_id_count;
  9214. void register_device(struct cgpu_info *cgpu)
  9215. {
  9216. cgpu->deven = DEV_ENABLED;
  9217. wr_lock(&devices_lock);
  9218. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9219. wr_unlock(&devices_lock);
  9220. if (!cgpu->proc_id)
  9221. cgpu->device_line_id = device_line_id_count++;
  9222. mining_threads += cgpu->threads ?: 1;
  9223. #ifdef HAVE_CURSES
  9224. adj_width(mining_threads, &dev_width);
  9225. #endif
  9226. rwlock_init(&cgpu->qlock);
  9227. cgpu->queued_work = NULL;
  9228. }
  9229. struct _cgpu_devid_counter {
  9230. char name[4];
  9231. int lastid;
  9232. UT_hash_handle hh;
  9233. };
  9234. void renumber_cgpu(struct cgpu_info *cgpu)
  9235. {
  9236. static struct _cgpu_devid_counter *devids = NULL;
  9237. struct _cgpu_devid_counter *d;
  9238. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9239. if (d)
  9240. cgpu->device_id = ++d->lastid;
  9241. else {
  9242. d = malloc(sizeof(*d));
  9243. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9244. cgpu->device_id = d->lastid = 0;
  9245. HASH_ADD_STR(devids, name, d);
  9246. }
  9247. }
  9248. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9249. {
  9250. sha256(buffer, length, digest);
  9251. return true;
  9252. }
  9253. #ifndef HAVE_PTHREAD_CANCEL
  9254. extern void setup_pthread_cancel_workaround();
  9255. extern struct sigaction pcwm_orig_term_handler;
  9256. #endif
  9257. bool bfg_need_detect_rescan;
  9258. extern void probe_device(struct lowlevel_device_info *);
  9259. static void schedule_rescan(const struct timeval *);
  9260. static
  9261. void drv_detect_all()
  9262. {
  9263. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9264. bool rescanning = false;
  9265. rescan:
  9266. bfg_need_detect_rescan = false;
  9267. #ifdef HAVE_BFG_LOWLEVEL
  9268. if (!opt_scrypt)
  9269. {
  9270. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9271. LL_FOREACH_SAFE(infolist, info, infotmp)
  9272. probe_device(info);
  9273. LL_FOREACH_SAFE(infolist, info, infotmp)
  9274. pthread_join(info->probe_pth, NULL);
  9275. }
  9276. #endif
  9277. struct driver_registration *reg, *tmp;
  9278. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9279. {
  9280. const struct device_drv * const drv = reg->drv;
  9281. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9282. if (0 == (algos & algomatch) || !drv->drv_detect)
  9283. continue;
  9284. drv->drv_detect();
  9285. }
  9286. #ifdef HAVE_BFG_LOWLEVEL
  9287. if (!opt_scrypt)
  9288. lowlevel_scan_free();
  9289. #endif
  9290. if (bfg_need_detect_rescan)
  9291. {
  9292. if (rescanning)
  9293. {
  9294. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9295. struct timeval tv_when;
  9296. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9297. schedule_rescan(&tv_when);
  9298. }
  9299. else
  9300. {
  9301. rescanning = true;
  9302. applog(LOG_DEBUG, "Device rescan requested");
  9303. goto rescan;
  9304. }
  9305. }
  9306. }
  9307. static
  9308. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9309. {
  9310. struct thr_info *thr;
  9311. int j;
  9312. struct device_drv *api = cgpu->drv;
  9313. if (!cgpu->devtype)
  9314. cgpu->devtype = "PGA";
  9315. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9316. int threadobj = cgpu->threads;
  9317. if (!threadobj)
  9318. // Create a fake thread object to handle hashmeter etc
  9319. threadobj = 1;
  9320. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9321. cgpu->thr[threadobj] = NULL;
  9322. cgpu->status = LIFE_INIT;
  9323. if (opt_devices_enabled_list)
  9324. {
  9325. struct string_elist *enablestr_elist;
  9326. cgpu->deven = DEV_DISABLED;
  9327. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9328. {
  9329. const char * const enablestr = enablestr_elist->string;
  9330. if (cgpu_match(enablestr, cgpu))
  9331. {
  9332. cgpu->deven = DEV_ENABLED;
  9333. break;
  9334. }
  9335. }
  9336. }
  9337. cgpu->max_hashes = 0;
  9338. BFGINIT(cgpu->min_nonce_diff, 1);
  9339. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9340. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9341. // Setup thread structs before starting any of the threads, in case they try to interact
  9342. for (j = 0; j < threadobj; ++j, ++*kp) {
  9343. thr = get_thread(*kp);
  9344. thr->id = *kp;
  9345. thr->cgpu = cgpu;
  9346. thr->device_thread = j;
  9347. thr->work_restart_notifier[1] = INVSOCK;
  9348. thr->mutex_request[1] = INVSOCK;
  9349. thr->_job_transition_in_progress = true;
  9350. timerclear(&thr->tv_morework);
  9351. thr->scanhash_working = true;
  9352. thr->hashes_done = 0;
  9353. timerclear(&thr->tv_hashes_done);
  9354. cgtime(&thr->tv_lastupdate);
  9355. thr->tv_poll.tv_sec = -1;
  9356. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9357. cgpu->thr[j] = thr;
  9358. }
  9359. if (!cgpu->device->threads)
  9360. notifier_init_invalid(cgpu->thr[0]->notifier);
  9361. else
  9362. if (!cgpu->threads)
  9363. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9364. else
  9365. for (j = 0; j < cgpu->threads; ++j)
  9366. {
  9367. thr = cgpu->thr[j];
  9368. notifier_init(thr->notifier);
  9369. }
  9370. }
  9371. static
  9372. void start_cgpu(struct cgpu_info *cgpu)
  9373. {
  9374. struct thr_info *thr;
  9375. int j;
  9376. for (j = 0; j < cgpu->threads; ++j) {
  9377. thr = cgpu->thr[j];
  9378. /* Enable threads for devices set not to mine but disable
  9379. * their queue in case we wish to enable them later */
  9380. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9381. continue;
  9382. thread_reportout(thr);
  9383. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9384. quit(1, "thread %d create failed", thr->id);
  9385. notifier_wake(thr->notifier);
  9386. }
  9387. if (cgpu->deven == DEV_ENABLED)
  9388. proc_enable(cgpu);
  9389. }
  9390. static
  9391. void _scan_serial(void *p)
  9392. {
  9393. const char *s = p;
  9394. struct string_elist *iter, *tmp;
  9395. struct string_elist *orig_scan_devices = scan_devices;
  9396. if (s)
  9397. {
  9398. // Make temporary scan_devices list
  9399. scan_devices = NULL;
  9400. string_elist_add("noauto", &scan_devices);
  9401. add_serial(s);
  9402. }
  9403. drv_detect_all();
  9404. if (s)
  9405. {
  9406. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9407. {
  9408. string_elist_del(&scan_devices, iter);
  9409. }
  9410. scan_devices = orig_scan_devices;
  9411. }
  9412. }
  9413. #ifdef HAVE_BFG_LOWLEVEL
  9414. static
  9415. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9416. {
  9417. if (!(false
  9418. || (info->serial && !strcasecmp(ser, info->serial))
  9419. || (info->path && !strcasecmp(ser, info->path ))
  9420. || (info->devid && !strcasecmp(ser, info->devid ))
  9421. ))
  9422. {
  9423. char *devid = devpath_to_devid(ser);
  9424. if (!devid)
  9425. return false;
  9426. const bool different = strcmp(info->devid, devid);
  9427. free(devid);
  9428. if (different)
  9429. return false;
  9430. }
  9431. return true;
  9432. }
  9433. static
  9434. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9435. {
  9436. struct driver_registration *dreg;
  9437. char dname[dnamelen];
  9438. int i;
  9439. for (i = 0; i < dnamelen; ++i)
  9440. dname[i] = tolower(_dname[i]);
  9441. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9442. if (!dreg)
  9443. {
  9444. for (i = 0; i < dnamelen; ++i)
  9445. dname[i] = toupper(_dname[i]);
  9446. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9447. if (!dreg)
  9448. return NULL;
  9449. }
  9450. return dreg->drv;
  9451. }
  9452. static
  9453. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9454. {
  9455. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9456. if (!(drv && drv->lowl_probe))
  9457. return false;
  9458. return drv->lowl_probe(info);
  9459. }
  9460. static
  9461. void *probe_device_thread(void *p)
  9462. {
  9463. struct lowlevel_device_info * const infolist = p;
  9464. struct lowlevel_device_info *info = infolist;
  9465. {
  9466. char threadname[5 + strlen(info->devid) + 1];
  9467. sprintf(threadname, "probe_%s", info->devid);
  9468. RenameThread(threadname);
  9469. }
  9470. // If already in use, ignore
  9471. if (bfg_claim_any(NULL, NULL, info->devid))
  9472. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9473. __func__, info->product);
  9474. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9475. struct string_elist *sd_iter, *sd_tmp;
  9476. struct driver_registration *dreg, *dreg_tmp;
  9477. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9478. {
  9479. const char * const dname = sd_iter->string;
  9480. const char * const colon = strpbrk(dname, ":@");
  9481. if (!(colon && colon != dname))
  9482. continue;
  9483. const char * const ser = &colon[1];
  9484. LL_FOREACH2(infolist, info, same_devid_next)
  9485. {
  9486. if (!_probe_device_match(info, ser))
  9487. continue;
  9488. const size_t dnamelen = (colon - dname);
  9489. if (_probe_device_internal(info, dname, dnamelen))
  9490. return NULL;
  9491. else
  9492. if (opt_hotplug)
  9493. bfg_need_detect_rescan = true;
  9494. }
  9495. }
  9496. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9497. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9498. {
  9499. const struct device_drv * const drv = dreg->drv;
  9500. // Check for "noauto" flag
  9501. // NOTE: driver-specific configuration overrides general
  9502. bool doauto = true;
  9503. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9504. {
  9505. const char * const dname = sd_iter->string;
  9506. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9507. const char *colon = strchr(dname, ':');
  9508. if (!colon)
  9509. colon = &dname[-1];
  9510. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9511. continue;
  9512. const ssize_t dnamelen = (colon - dname);
  9513. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9514. continue;
  9515. doauto = (tolower(colon[1]) == 'a');
  9516. if (dnamelen != -1)
  9517. break;
  9518. }
  9519. if (doauto && drv->lowl_match)
  9520. {
  9521. LL_FOREACH2(infolist, info, same_devid_next)
  9522. {
  9523. if (!drv->lowl_match(info))
  9524. continue;
  9525. if (drv->lowl_probe(info))
  9526. return NULL;
  9527. else
  9528. if (opt_hotplug)
  9529. bfg_need_detect_rescan = true;
  9530. }
  9531. }
  9532. }
  9533. // probe driver(s) with 'all' enabled
  9534. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9535. {
  9536. const char * const dname = sd_iter->string;
  9537. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9538. const char * const colon = strchr(dname, ':');
  9539. if (!colon)
  9540. {
  9541. LL_FOREACH2(infolist, info, same_devid_next)
  9542. {
  9543. if (
  9544. #ifdef NEED_BFG_LOWL_VCOM
  9545. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9546. #endif
  9547. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9548. {
  9549. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9550. {
  9551. const struct device_drv * const drv = dreg->drv;
  9552. if (drv->lowl_probe_by_name_only)
  9553. continue;
  9554. if (!drv->lowl_probe)
  9555. continue;
  9556. if (drv->lowl_probe(info))
  9557. return NULL;
  9558. }
  9559. if (opt_hotplug)
  9560. bfg_need_detect_rescan = true;
  9561. break;
  9562. }
  9563. }
  9564. continue;
  9565. }
  9566. if (strcasecmp(&colon[1], "all"))
  9567. continue;
  9568. const size_t dnamelen = (colon - dname);
  9569. LL_FOREACH2(infolist, info, same_devid_next)
  9570. {
  9571. if (_probe_device_internal(info, dname, dnamelen))
  9572. return NULL;
  9573. }
  9574. }
  9575. return NULL;
  9576. }
  9577. void probe_device(struct lowlevel_device_info * const info)
  9578. {
  9579. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9580. }
  9581. #endif
  9582. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9583. {
  9584. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9585. int devcount, i, mining_threads_new = 0;
  9586. unsigned int k;
  9587. struct cgpu_info *cgpu;
  9588. struct thr_info *thr;
  9589. void *p;
  9590. mutex_lock(&mutex);
  9591. devcount = total_devices;
  9592. addfunc(arg);
  9593. if (!total_devices_new)
  9594. goto out;
  9595. wr_lock(&devices_lock);
  9596. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9597. if (unlikely(!p))
  9598. {
  9599. wr_unlock(&devices_lock);
  9600. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9601. goto out;
  9602. }
  9603. devices = p;
  9604. wr_unlock(&devices_lock);
  9605. for (i = 0; i < total_devices_new; ++i)
  9606. {
  9607. cgpu = devices_new[i];
  9608. mining_threads_new += cgpu->threads ?: 1;
  9609. }
  9610. wr_lock(&mining_thr_lock);
  9611. mining_threads_new += mining_threads;
  9612. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9613. if (unlikely(!p))
  9614. {
  9615. wr_unlock(&mining_thr_lock);
  9616. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9617. goto out;
  9618. }
  9619. mining_thr = p;
  9620. wr_unlock(&mining_thr_lock);
  9621. for (i = mining_threads; i < mining_threads_new; ++i) {
  9622. mining_thr[i] = calloc(1, sizeof(*thr));
  9623. if (!mining_thr[i])
  9624. {
  9625. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9626. for ( ; --i >= mining_threads; )
  9627. free(mining_thr[i]);
  9628. goto out;
  9629. }
  9630. }
  9631. k = mining_threads;
  9632. for (i = 0; i < total_devices_new; ++i)
  9633. {
  9634. cgpu = devices_new[i];
  9635. allocate_cgpu(cgpu, &k);
  9636. }
  9637. for (i = 0; i < total_devices_new; ++i)
  9638. {
  9639. cgpu = devices_new[i];
  9640. start_cgpu(cgpu);
  9641. register_device(cgpu);
  9642. ++total_devices;
  9643. }
  9644. #ifdef HAVE_CURSES
  9645. switch_logsize();
  9646. #endif
  9647. out:
  9648. total_devices_new = 0;
  9649. devcount = total_devices - devcount;
  9650. mutex_unlock(&mutex);
  9651. return devcount;
  9652. }
  9653. int scan_serial(const char *s)
  9654. {
  9655. return create_new_cgpus(_scan_serial, (void*)s);
  9656. }
  9657. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9658. static bool rescan_active;
  9659. static struct timeval tv_rescan;
  9660. static notifier_t rescan_notifier;
  9661. static
  9662. void *rescan_thread(__maybe_unused void *p)
  9663. {
  9664. pthread_detach(pthread_self());
  9665. RenameThread("rescan");
  9666. struct timeval tv_timeout, tv_now;
  9667. fd_set rfds;
  9668. while (true)
  9669. {
  9670. mutex_lock(&rescan_mutex);
  9671. tv_timeout = tv_rescan;
  9672. if (!timer_isset(&tv_timeout))
  9673. {
  9674. rescan_active = false;
  9675. mutex_unlock(&rescan_mutex);
  9676. break;
  9677. }
  9678. mutex_unlock(&rescan_mutex);
  9679. FD_ZERO(&rfds);
  9680. FD_SET(rescan_notifier[0], &rfds);
  9681. const int maxfd = rescan_notifier[0];
  9682. timer_set_now(&tv_now);
  9683. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9684. notifier_read(rescan_notifier);
  9685. mutex_lock(&rescan_mutex);
  9686. if (timer_passed(&tv_rescan, NULL))
  9687. {
  9688. timer_unset(&tv_rescan);
  9689. mutex_unlock(&rescan_mutex);
  9690. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9691. scan_serial(NULL);
  9692. }
  9693. else
  9694. mutex_unlock(&rescan_mutex);
  9695. }
  9696. return NULL;
  9697. }
  9698. static
  9699. void _schedule_rescan(const struct timeval * const tvp_when)
  9700. {
  9701. if (rescan_active)
  9702. {
  9703. if (timercmp(tvp_when, &tv_rescan, <))
  9704. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9705. else
  9706. {
  9707. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9708. tv_rescan = *tvp_when;
  9709. }
  9710. return;
  9711. }
  9712. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9713. tv_rescan = *tvp_when;
  9714. rescan_active = true;
  9715. static pthread_t pth;
  9716. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9717. applog(LOG_ERR, "Failed to start rescan thread");
  9718. }
  9719. static
  9720. void schedule_rescan(const struct timeval * const tvp_when)
  9721. {
  9722. mutex_lock(&rescan_mutex);
  9723. _schedule_rescan(tvp_when);
  9724. mutex_unlock(&rescan_mutex);
  9725. }
  9726. #ifdef HAVE_BFG_HOTPLUG
  9727. static
  9728. void hotplug_trigger()
  9729. {
  9730. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9731. struct timeval tv_now;
  9732. timer_set_now(&tv_now);
  9733. schedule_rescan(&tv_now);
  9734. }
  9735. #endif
  9736. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9737. static
  9738. void *hotplug_thread(__maybe_unused void *p)
  9739. {
  9740. pthread_detach(pthread_self());
  9741. RenameThread("hotplug");
  9742. struct udev * const udev = udev_new();
  9743. if (unlikely(!udev))
  9744. applogfailr(NULL, LOG_ERR, "udev_new");
  9745. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9746. if (unlikely(!mon))
  9747. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9748. if (unlikely(udev_monitor_enable_receiving(mon)))
  9749. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9750. const int epfd = epoll_create(1);
  9751. if (unlikely(epfd == -1))
  9752. applogfailr(NULL, LOG_ERR, "epoll_create");
  9753. {
  9754. const int fd = udev_monitor_get_fd(mon);
  9755. struct epoll_event ev = {
  9756. .events = EPOLLIN | EPOLLPRI,
  9757. .data.fd = fd,
  9758. };
  9759. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9760. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9761. }
  9762. struct epoll_event ev;
  9763. int rv;
  9764. bool pending = false;
  9765. while (true)
  9766. {
  9767. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9768. if (rv == -1)
  9769. {
  9770. if (errno == EAGAIN || errno == EINTR)
  9771. continue;
  9772. break;
  9773. }
  9774. if (!rv)
  9775. {
  9776. hotplug_trigger();
  9777. pending = false;
  9778. continue;
  9779. }
  9780. struct udev_device * const device = udev_monitor_receive_device(mon);
  9781. if (!device)
  9782. continue;
  9783. const char * const action = udev_device_get_action(device);
  9784. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9785. if (strcmp(action, "add"))
  9786. continue;
  9787. pending = true;
  9788. }
  9789. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9790. }
  9791. #elif defined(WIN32)
  9792. static UINT_PTR _hotplug_wintimer_id;
  9793. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9794. {
  9795. KillTimer(NULL, _hotplug_wintimer_id);
  9796. _hotplug_wintimer_id = 0;
  9797. hotplug_trigger();
  9798. }
  9799. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9800. {
  9801. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9802. {
  9803. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9804. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9805. }
  9806. return DefWindowProc(hwnd, msg, wParam, lParam);
  9807. }
  9808. static
  9809. void *hotplug_thread(__maybe_unused void *p)
  9810. {
  9811. pthread_detach(pthread_self());
  9812. WNDCLASS DummyWinCls = {
  9813. .lpszClassName = "BFGDummyWinCls",
  9814. .lpfnWndProc = hotplug_win_callback,
  9815. };
  9816. ATOM a = RegisterClass(&DummyWinCls);
  9817. if (unlikely(!a))
  9818. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9819. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9820. if (unlikely(!hwnd))
  9821. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9822. MSG msg;
  9823. while (GetMessage(&msg, NULL, 0, 0))
  9824. {
  9825. TranslateMessage(&msg);
  9826. DispatchMessage(&msg);
  9827. }
  9828. quit(0, "WM_QUIT received");
  9829. return NULL;
  9830. }
  9831. #endif
  9832. #ifdef HAVE_BFG_HOTPLUG
  9833. static
  9834. void hotplug_start()
  9835. {
  9836. pthread_t pth;
  9837. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9838. applog(LOG_ERR, "Failed to start hotplug thread");
  9839. }
  9840. #endif
  9841. static void probe_pools(void)
  9842. {
  9843. int i;
  9844. for (i = 0; i < total_pools; i++) {
  9845. struct pool *pool = pools[i];
  9846. pool->testing = true;
  9847. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9848. }
  9849. }
  9850. static void raise_fd_limits(void)
  9851. {
  9852. #ifdef HAVE_SETRLIMIT
  9853. struct rlimit fdlimit;
  9854. unsigned long old_soft_limit;
  9855. char frombuf[0x10] = "unlimited";
  9856. char hardbuf[0x10] = "unlimited";
  9857. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9858. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9859. old_soft_limit = fdlimit.rlim_cur;
  9860. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9861. fdlimit.rlim_cur = FD_SETSIZE;
  9862. else
  9863. fdlimit.rlim_cur = fdlimit.rlim_max;
  9864. if (fdlimit.rlim_max != RLIM_INFINITY)
  9865. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9866. if (old_soft_limit != RLIM_INFINITY)
  9867. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9868. if (fdlimit.rlim_cur == old_soft_limit)
  9869. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9870. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9871. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9872. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9873. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9874. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9875. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9876. #else
  9877. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9878. #endif
  9879. }
  9880. extern void bfg_init_threadlocal();
  9881. extern void stratumsrv_start();
  9882. int main(int argc, char *argv[])
  9883. {
  9884. struct sigaction handler;
  9885. struct thr_info *thr;
  9886. struct block *block;
  9887. unsigned int k;
  9888. int i;
  9889. int rearrange_pools = 0;
  9890. char *s;
  9891. #ifdef WIN32
  9892. LoadLibrary("backtrace.dll");
  9893. #endif
  9894. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9895. bfg_init_threadlocal();
  9896. #ifndef HAVE_PTHREAD_CANCEL
  9897. setup_pthread_cancel_workaround();
  9898. #endif
  9899. bfg_init_checksums();
  9900. #ifdef WIN32
  9901. {
  9902. WSADATA wsa;
  9903. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  9904. if (i)
  9905. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  9906. }
  9907. #endif
  9908. /* This dangerous functions tramples random dynamically allocated
  9909. * variables so do it before anything at all */
  9910. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9911. quit(1, "Failed to curl_global_init");
  9912. initial_args = malloc(sizeof(char *) * (argc + 1));
  9913. for (i = 0; i < argc; i++)
  9914. initial_args[i] = strdup(argv[i]);
  9915. initial_args[argc] = NULL;
  9916. mutex_init(&hash_lock);
  9917. mutex_init(&console_lock);
  9918. cglock_init(&control_lock);
  9919. mutex_init(&stats_lock);
  9920. mutex_init(&sharelog_lock);
  9921. cglock_init(&ch_lock);
  9922. mutex_init(&sshare_lock);
  9923. rwlock_init(&blk_lock);
  9924. rwlock_init(&netacc_lock);
  9925. rwlock_init(&mining_thr_lock);
  9926. rwlock_init(&devices_lock);
  9927. mutex_init(&lp_lock);
  9928. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9929. quit(1, "Failed to pthread_cond_init lp_cond");
  9930. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9931. quit(1, "Failed to pthread_cond_init gws_cond");
  9932. notifier_init(submit_waiting_notifier);
  9933. timer_unset(&tv_rescan);
  9934. notifier_init(rescan_notifier);
  9935. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9936. #ifdef WANT_CPUMINE
  9937. init_max_name_len();
  9938. #endif
  9939. handler.sa_handler = &sighandler;
  9940. handler.sa_flags = 0;
  9941. sigemptyset(&handler.sa_mask);
  9942. #ifdef HAVE_PTHREAD_CANCEL
  9943. sigaction(SIGTERM, &handler, &termhandler);
  9944. #else
  9945. // Need to let pthread_cancel emulation handle SIGTERM first
  9946. termhandler = pcwm_orig_term_handler;
  9947. pcwm_orig_term_handler = handler;
  9948. #endif
  9949. sigaction(SIGINT, &handler, &inthandler);
  9950. #ifndef WIN32
  9951. signal(SIGPIPE, SIG_IGN);
  9952. #else
  9953. timeBeginPeriod(1);
  9954. #endif
  9955. opt_kernel_path = CGMINER_PREFIX;
  9956. cgminer_path = alloca(PATH_MAX);
  9957. s = strdup(argv[0]);
  9958. strcpy(cgminer_path, dirname(s));
  9959. free(s);
  9960. strcat(cgminer_path, "/");
  9961. #ifdef WANT_CPUMINE
  9962. // Hack to make cgminer silent when called recursively on WIN32
  9963. int skip_to_bench = 0;
  9964. #if defined(WIN32)
  9965. char buf[32];
  9966. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  9967. skip_to_bench = 1;
  9968. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  9969. skip_to_bench = 1;
  9970. #endif // defined(WIN32)
  9971. #endif
  9972. devcursor = 8;
  9973. logstart = devcursor;
  9974. logcursor = logstart;
  9975. block = calloc(sizeof(struct block), 1);
  9976. if (unlikely(!block))
  9977. quit (1, "main OOM");
  9978. for (i = 0; i < 36; i++)
  9979. strcat(block->hash, "0");
  9980. HASH_ADD_STR(blocks, hash, block);
  9981. strcpy(current_block, block->hash);
  9982. mutex_init(&submitting_lock);
  9983. #ifdef HAVE_OPENCL
  9984. memset(gpus, 0, sizeof(gpus));
  9985. for (i = 0; i < MAX_GPUDEVICES; i++)
  9986. gpus[i].dynamic = true;
  9987. #endif
  9988. schedstart.tm.tm_sec = 1;
  9989. schedstop .tm.tm_sec = 1;
  9990. opt_register_table(opt_early_table, NULL);
  9991. opt_register_table(opt_config_table, NULL);
  9992. opt_register_table(opt_cmdline_table, NULL);
  9993. opt_early_parse(argc, argv, applog_and_exit);
  9994. if (!config_loaded)
  9995. {
  9996. load_default_config();
  9997. rearrange_pools = total_pools;
  9998. }
  9999. opt_free_table();
  10000. /* parse command line */
  10001. opt_register_table(opt_config_table,
  10002. "Options for both config file and command line");
  10003. opt_register_table(opt_cmdline_table,
  10004. "Options for command line only");
  10005. opt_parse(&argc, argv, applog_and_exit);
  10006. if (argc != 1)
  10007. quit(1, "Unexpected extra commandline arguments");
  10008. if (rearrange_pools && rearrange_pools < total_pools)
  10009. {
  10010. // Prioritise commandline pools before default-config pools
  10011. for (i = 0; i < rearrange_pools; ++i)
  10012. pools[i]->prio += rearrange_pools;
  10013. for ( ; i < total_pools; ++i)
  10014. pools[i]->prio -= rearrange_pools;
  10015. }
  10016. #ifndef HAVE_PTHREAD_CANCEL
  10017. // Can't do this any earlier, or config isn't loaded
  10018. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10019. #endif
  10020. #ifdef HAVE_PWD_H
  10021. struct passwd *user_info = NULL;
  10022. if (opt_setuid != NULL) {
  10023. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10024. quit(1, "Unable to find setuid user information");
  10025. }
  10026. }
  10027. #endif
  10028. #ifdef HAVE_CHROOT
  10029. if (chroot_dir != NULL) {
  10030. #ifdef HAVE_PWD_H
  10031. if (user_info == NULL && getuid() == 0) {
  10032. applog(LOG_WARNING, "Running as root inside chroot");
  10033. }
  10034. #endif
  10035. if (chroot(chroot_dir) != 0) {
  10036. quit(1, "Unable to chroot");
  10037. }
  10038. if (chdir("/"))
  10039. quit(1, "Unable to chdir to chroot");
  10040. }
  10041. #endif
  10042. #ifdef HAVE_PWD_H
  10043. if (user_info != NULL) {
  10044. if (setgid((*user_info).pw_gid) != 0)
  10045. quit(1, "Unable to setgid");
  10046. if (setuid((*user_info).pw_uid) != 0)
  10047. quit(1, "Unable to setuid");
  10048. }
  10049. #endif
  10050. raise_fd_limits();
  10051. if (opt_benchmark) {
  10052. struct pool *pool;
  10053. if (opt_scrypt)
  10054. quit(1, "Cannot use benchmark mode with scrypt");
  10055. want_longpoll = false;
  10056. pool = add_pool();
  10057. pool->rpc_url = malloc(255);
  10058. strcpy(pool->rpc_url, "Benchmark");
  10059. pool->rpc_user = pool->rpc_url;
  10060. pool->rpc_pass = pool->rpc_url;
  10061. enable_pool(pool);
  10062. pool->idle = false;
  10063. successful_connect = true;
  10064. }
  10065. if (opt_unittest) {
  10066. test_cgpu_match();
  10067. test_intrange();
  10068. test_decimal_width();
  10069. utf8_test();
  10070. }
  10071. #ifdef HAVE_CURSES
  10072. if (opt_realquiet || opt_display_devs)
  10073. use_curses = false;
  10074. setlocale(LC_ALL, "C");
  10075. if (use_curses)
  10076. enable_curses();
  10077. #endif
  10078. #ifdef HAVE_LIBUSB
  10079. int err = libusb_init(NULL);
  10080. if (err)
  10081. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10082. else
  10083. have_libusb = true;
  10084. #endif
  10085. applog(LOG_WARNING, "Started %s", packagename);
  10086. if (cnfbuf) {
  10087. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10088. switch (fileconf_load) {
  10089. case 0:
  10090. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10091. applog(LOG_WARNING, "Configuration file could not be used.");
  10092. break;
  10093. case -1:
  10094. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10095. if (use_curses)
  10096. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10097. break;
  10098. default:
  10099. break;
  10100. }
  10101. free(cnfbuf);
  10102. cnfbuf = NULL;
  10103. }
  10104. i = strlen(opt_kernel_path) + 2;
  10105. char __kernel_path[i];
  10106. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10107. opt_kernel_path = __kernel_path;
  10108. if (want_per_device_stats)
  10109. opt_log_output = true;
  10110. #ifdef WANT_CPUMINE
  10111. #ifdef USE_SCRYPT
  10112. if (opt_scrypt)
  10113. set_scrypt_algo(&opt_algo);
  10114. else
  10115. #endif
  10116. if (0 <= opt_bench_algo) {
  10117. double rate = bench_algo_stage3(opt_bench_algo);
  10118. if (!skip_to_bench)
  10119. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  10120. else {
  10121. // Write result to shared memory for parent
  10122. #if defined(WIN32)
  10123. char unique_name[64];
  10124. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  10125. HANDLE map_handle = CreateFileMapping(
  10126. INVALID_HANDLE_VALUE, // use paging file
  10127. NULL, // default security attributes
  10128. PAGE_READWRITE, // read/write access
  10129. 0, // size: high 32-bits
  10130. 4096, // size: low 32-bits
  10131. unique_name // name of map object
  10132. );
  10133. if (NULL != map_handle) {
  10134. void *shared_mem = MapViewOfFile(
  10135. map_handle, // object to map view of
  10136. FILE_MAP_WRITE, // read/write access
  10137. 0, // high offset: map from
  10138. 0, // low offset: beginning
  10139. 0 // default: map entire file
  10140. );
  10141. if (NULL != shared_mem)
  10142. CopyMemory(shared_mem, &rate, sizeof(rate));
  10143. (void)UnmapViewOfFile(shared_mem);
  10144. }
  10145. (void)CloseHandle(map_handle);
  10146. }
  10147. #endif
  10148. }
  10149. exit(0);
  10150. }
  10151. #endif
  10152. bfg_devapi_init();
  10153. drv_detect_all();
  10154. total_devices = total_devices_new;
  10155. devices = devices_new;
  10156. total_devices_new = 0;
  10157. devices_new = NULL;
  10158. if (opt_display_devs) {
  10159. int devcount = 0;
  10160. applog(LOG_ERR, "Devices detected:");
  10161. for (i = 0; i < total_devices; ++i) {
  10162. struct cgpu_info *cgpu = devices[i];
  10163. char buf[0x100];
  10164. if (cgpu->device != cgpu)
  10165. continue;
  10166. if (cgpu->name)
  10167. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10168. else
  10169. if (cgpu->dev_manufacturer)
  10170. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10171. else
  10172. if (cgpu->dev_product)
  10173. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10174. else
  10175. strcpy(buf, " Device");
  10176. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10177. if (cgpu->dev_serial)
  10178. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10179. if (cgpu->device_path)
  10180. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10181. tailsprintf(buf, sizeof(buf), ")");
  10182. _applog(LOG_NOTICE, buf);
  10183. ++devcount;
  10184. }
  10185. quit(0, "%d devices listed", devcount);
  10186. }
  10187. mining_threads = 0;
  10188. for (i = 0; i < total_devices; ++i)
  10189. register_device(devices[i]);
  10190. if (!total_devices) {
  10191. applog(LOG_WARNING, "No devices detected!");
  10192. if (use_curses)
  10193. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10194. else
  10195. applog(LOG_WARNING, "Waiting for devices");
  10196. }
  10197. if (opt_quit_summary == BQS_DEFAULT)
  10198. {
  10199. if (total_devices < 25)
  10200. opt_quit_summary = BQS_PROCS;
  10201. else
  10202. opt_quit_summary = BQS_DEVS;
  10203. }
  10204. #ifdef HAVE_CURSES
  10205. switch_logsize();
  10206. #endif
  10207. if (!total_pools) {
  10208. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10209. #ifdef HAVE_CURSES
  10210. if (!use_curses || !input_pool(false))
  10211. #endif
  10212. quit(1, "Pool setup failed");
  10213. }
  10214. for (i = 0; i < total_pools; i++) {
  10215. struct pool *pool = pools[i];
  10216. size_t siz;
  10217. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10218. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10219. if (!pool->rpc_url)
  10220. quit(1, "No URI supplied for pool %u", i);
  10221. if (!pool->rpc_userpass) {
  10222. if (!pool->rpc_user || !pool->rpc_pass)
  10223. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10224. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10225. pool->rpc_userpass = malloc(siz);
  10226. if (!pool->rpc_userpass)
  10227. quit(1, "Failed to malloc userpass");
  10228. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10229. }
  10230. }
  10231. /* Set the currentpool to pool with priority 0 */
  10232. validate_pool_priorities();
  10233. for (i = 0; i < total_pools; i++) {
  10234. struct pool *pool = pools[i];
  10235. if (!pool->prio)
  10236. currentpool = pool;
  10237. }
  10238. #ifdef HAVE_SYSLOG_H
  10239. if (use_syslog)
  10240. openlog(PACKAGE, LOG_PID, LOG_USER);
  10241. #endif
  10242. #if defined(unix) || defined(__APPLE__)
  10243. if (opt_stderr_cmd)
  10244. fork_monitor();
  10245. #endif // defined(unix)
  10246. mining_thr = calloc(mining_threads, sizeof(thr));
  10247. if (!mining_thr)
  10248. quit(1, "Failed to calloc mining_thr");
  10249. for (i = 0; i < mining_threads; i++) {
  10250. mining_thr[i] = calloc(1, sizeof(*thr));
  10251. if (!mining_thr[i])
  10252. quit(1, "Failed to calloc mining_thr[%d]", i);
  10253. }
  10254. total_control_threads = 6;
  10255. control_thr = calloc(total_control_threads, sizeof(*thr));
  10256. if (!control_thr)
  10257. quit(1, "Failed to calloc control_thr");
  10258. gwsched_thr_id = 0;
  10259. /* Create a unique get work queue */
  10260. getq = tq_new();
  10261. if (!getq)
  10262. quit(1, "Failed to create getq");
  10263. /* We use the getq mutex as the staged lock */
  10264. stgd_lock = &getq->mutex;
  10265. if (opt_benchmark)
  10266. goto begin_bench;
  10267. for (i = 0; i < total_pools; i++) {
  10268. struct pool *pool = pools[i];
  10269. enable_pool(pool);
  10270. pool->idle = true;
  10271. }
  10272. applog(LOG_NOTICE, "Probing for an alive pool");
  10273. do {
  10274. bool still_testing;
  10275. int i;
  10276. /* Look for at least one active pool before starting */
  10277. probe_pools();
  10278. do {
  10279. sleep(1);
  10280. if (pools_active)
  10281. break;
  10282. still_testing = false;
  10283. for (int i = 0; i < total_pools; ++i)
  10284. if (pools[i]->testing)
  10285. still_testing = true;
  10286. } while (still_testing);
  10287. if (!pools_active) {
  10288. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10289. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10290. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10291. for (i = 0; i < total_pools; i++) {
  10292. struct pool *pool;
  10293. pool = pools[i];
  10294. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10295. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10296. }
  10297. #ifdef HAVE_CURSES
  10298. if (use_curses) {
  10299. halfdelay(150);
  10300. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10301. if (getch() != ERR)
  10302. quit(0, "No servers could be used! Exiting.");
  10303. cbreak();
  10304. } else
  10305. #endif
  10306. quit(0, "No servers could be used! Exiting.");
  10307. }
  10308. } while (!pools_active);
  10309. #ifdef USE_SCRYPT
  10310. if (detect_algo == 1 && !opt_scrypt) {
  10311. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10312. opt_scrypt = true;
  10313. }
  10314. #endif
  10315. detect_algo = 0;
  10316. begin_bench:
  10317. total_mhashes_done = 0;
  10318. for (i = 0; i < total_devices; i++) {
  10319. struct cgpu_info *cgpu = devices[i];
  10320. cgpu->rolling = cgpu->total_mhashes = 0;
  10321. }
  10322. cgtime(&total_tv_start);
  10323. cgtime(&total_tv_end);
  10324. miner_started = total_tv_start;
  10325. time_t miner_start_ts = time(NULL);
  10326. if (schedstart.tm.tm_sec)
  10327. localtime_r(&miner_start_ts, &schedstart.tm);
  10328. if (schedstop.tm.tm_sec)
  10329. localtime_r(&miner_start_ts, &schedstop .tm);
  10330. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10331. // Initialise processors and threads
  10332. k = 0;
  10333. for (i = 0; i < total_devices; ++i) {
  10334. struct cgpu_info *cgpu = devices[i];
  10335. allocate_cgpu(cgpu, &k);
  10336. }
  10337. // Start threads
  10338. for (i = 0; i < total_devices; ++i) {
  10339. struct cgpu_info *cgpu = devices[i];
  10340. start_cgpu(cgpu);
  10341. }
  10342. #ifdef HAVE_OPENCL
  10343. for (i = 0; i < nDevs; i++)
  10344. pause_dynamic_threads(i);
  10345. #endif
  10346. #ifdef WANT_CPUMINE
  10347. applog(LOG_INFO, "%d cpu miner threads started, "
  10348. "using SHA256 '%s' algorithm.",
  10349. opt_n_threads,
  10350. algo_names[opt_algo]);
  10351. #endif
  10352. cgtime(&total_tv_start);
  10353. cgtime(&total_tv_end);
  10354. {
  10355. pthread_t submit_thread;
  10356. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10357. quit(1, "submit_work thread create failed");
  10358. }
  10359. watchpool_thr_id = 1;
  10360. thr = &control_thr[watchpool_thr_id];
  10361. /* start watchpool thread */
  10362. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10363. quit(1, "watchpool thread create failed");
  10364. pthread_detach(thr->pth);
  10365. watchdog_thr_id = 2;
  10366. thr = &control_thr[watchdog_thr_id];
  10367. /* start watchdog thread */
  10368. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10369. quit(1, "watchdog thread create failed");
  10370. pthread_detach(thr->pth);
  10371. #ifdef HAVE_OPENCL
  10372. /* Create reinit gpu thread */
  10373. gpur_thr_id = 3;
  10374. thr = &control_thr[gpur_thr_id];
  10375. thr->q = tq_new();
  10376. if (!thr->q)
  10377. quit(1, "tq_new failed for gpur_thr_id");
  10378. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10379. quit(1, "reinit_gpu thread create failed");
  10380. #endif
  10381. /* Create API socket thread */
  10382. api_thr_id = 4;
  10383. thr = &control_thr[api_thr_id];
  10384. if (thr_info_create(thr, NULL, api_thread, thr))
  10385. quit(1, "API thread create failed");
  10386. #ifdef USE_LIBMICROHTTPD
  10387. if (httpsrv_port != -1)
  10388. httpsrv_start(httpsrv_port);
  10389. #endif
  10390. #ifdef USE_LIBEVENT
  10391. if (stratumsrv_port != -1)
  10392. stratumsrv_start();
  10393. #endif
  10394. #ifdef HAVE_BFG_HOTPLUG
  10395. if (opt_hotplug && !opt_scrypt)
  10396. hotplug_start();
  10397. #endif
  10398. #ifdef HAVE_CURSES
  10399. /* Create curses input thread for keyboard input. Create this last so
  10400. * that we know all threads are created since this can call kill_work
  10401. * to try and shut down ll previous threads. */
  10402. input_thr_id = 5;
  10403. thr = &control_thr[input_thr_id];
  10404. if (thr_info_create(thr, NULL, input_thread, thr))
  10405. quit(1, "input thread create failed");
  10406. pthread_detach(thr->pth);
  10407. #endif
  10408. /* Just to be sure */
  10409. if (total_control_threads != 6)
  10410. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10411. /* Once everything is set up, main() becomes the getwork scheduler */
  10412. while (42) {
  10413. int ts, max_staged = opt_queue;
  10414. struct pool *pool, *cp;
  10415. bool lagging = false;
  10416. struct curl_ent *ce;
  10417. struct work *work;
  10418. cp = current_pool();
  10419. // Generally, each processor needs a new work, and all at once during work restarts
  10420. max_staged += mining_threads;
  10421. mutex_lock(stgd_lock);
  10422. ts = __total_staged();
  10423. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10424. lagging = true;
  10425. /* Wait until hash_pop tells us we need to create more work */
  10426. if (ts > max_staged) {
  10427. staged_full = true;
  10428. pthread_cond_wait(&gws_cond, stgd_lock);
  10429. ts = __total_staged();
  10430. }
  10431. mutex_unlock(stgd_lock);
  10432. if (ts > max_staged)
  10433. continue;
  10434. work = make_work();
  10435. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10436. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10437. cp->getfail_occasions++;
  10438. total_go++;
  10439. }
  10440. pool = select_pool(lagging);
  10441. retry:
  10442. if (pool->has_stratum) {
  10443. while (!pool->stratum_active || !pool->stratum_notify) {
  10444. struct pool *altpool = select_pool(true);
  10445. if (altpool == pool && pool->has_stratum)
  10446. cgsleep_ms(5000);
  10447. pool = altpool;
  10448. goto retry;
  10449. }
  10450. gen_stratum_work(pool, work);
  10451. applog(LOG_DEBUG, "Generated stratum work");
  10452. stage_work(work);
  10453. continue;
  10454. }
  10455. if (pool->last_work_copy) {
  10456. mutex_lock(&pool->last_work_lock);
  10457. struct work *last_work = pool->last_work_copy;
  10458. if (!last_work)
  10459. {}
  10460. else
  10461. if (can_roll(last_work) && should_roll(last_work)) {
  10462. struct timeval tv_now;
  10463. cgtime(&tv_now);
  10464. free_work(work);
  10465. work = make_clone(pool->last_work_copy);
  10466. mutex_unlock(&pool->last_work_lock);
  10467. roll_work(work);
  10468. 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));
  10469. stage_work(work);
  10470. continue;
  10471. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10472. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10473. } else {
  10474. free_work(last_work);
  10475. pool->last_work_copy = NULL;
  10476. }
  10477. mutex_unlock(&pool->last_work_lock);
  10478. }
  10479. if (clone_available()) {
  10480. applog(LOG_DEBUG, "Cloned getwork work");
  10481. free_work(work);
  10482. continue;
  10483. }
  10484. if (opt_benchmark) {
  10485. get_benchmark_work(work);
  10486. applog(LOG_DEBUG, "Generated benchmark work");
  10487. stage_work(work);
  10488. continue;
  10489. }
  10490. work->pool = pool;
  10491. ce = pop_curl_entry3(pool, 2);
  10492. /* obtain new work from bitcoin via JSON-RPC */
  10493. if (!get_upstream_work(work, ce->curl)) {
  10494. struct pool *next_pool;
  10495. /* Make sure the pool just hasn't stopped serving
  10496. * requests but is up as we'll keep hammering it */
  10497. push_curl_entry(ce, pool);
  10498. ++pool->seq_getfails;
  10499. pool_died(pool);
  10500. next_pool = select_pool(!opt_fail_only);
  10501. if (pool == next_pool) {
  10502. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10503. cgsleep_ms(5000);
  10504. } else {
  10505. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10506. pool = next_pool;
  10507. }
  10508. goto retry;
  10509. }
  10510. if (ts >= max_staged)
  10511. pool_tclear(pool, &pool->lagging);
  10512. if (pool_tclear(pool, &pool->idle))
  10513. pool_resus(pool);
  10514. applog(LOG_DEBUG, "Generated getwork work");
  10515. stage_work(work);
  10516. push_curl_entry(ce, pool);
  10517. }
  10518. return 0;
  10519. }