miner.c 292 KB

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