miner.c 282 KB

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