miner.c 292 KB

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