miner.c 317 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413
  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 <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #ifdef USE_AVALON
  75. #include "driver-avalon.h"
  76. #endif
  77. #ifdef HAVE_BFG_LOWLEVEL
  78. #include "lowlevel.h"
  79. #endif
  80. #if defined(unix) || defined(__APPLE__)
  81. #include <errno.h>
  82. #include <fcntl.h>
  83. #include <sys/wait.h>
  84. #endif
  85. #ifdef USE_SCRYPT
  86. #include "scrypt.h"
  87. #endif
  88. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  89. # define USE_FPGA
  90. #endif
  91. enum bfg_quit_summary {
  92. BQS_DEFAULT,
  93. BQS_NONE,
  94. BQS_DEVS,
  95. BQS_PROCS,
  96. BQS_DETAILED,
  97. };
  98. struct strategies strategies[] = {
  99. { "Failover" },
  100. { "Round Robin" },
  101. { "Rotate" },
  102. { "Load Balance" },
  103. { "Balance" },
  104. };
  105. static char packagename[256];
  106. bool opt_protocol;
  107. bool opt_dev_protocol;
  108. static bool opt_benchmark;
  109. static bool want_longpoll = true;
  110. static bool want_gbt = true;
  111. static bool want_getwork = true;
  112. #if BLKMAKER_VERSION > 1
  113. struct _cbscript_t {
  114. char *data;
  115. size_t sz;
  116. };
  117. static struct _cbscript_t opt_coinbase_script;
  118. static uint32_t template_nonce;
  119. #endif
  120. #if BLKMAKER_VERSION > 0
  121. char *opt_coinbase_sig;
  122. #endif
  123. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  124. static bool include_serial_in_statline;
  125. char *request_target_str;
  126. float request_pdiff = 1.0;
  127. double request_bdiff;
  128. static bool want_stratum = true;
  129. bool have_longpoll;
  130. int opt_skip_checks;
  131. bool want_per_device_stats;
  132. bool use_syslog;
  133. bool opt_quiet_work_updates = true;
  134. bool opt_quiet;
  135. bool opt_realquiet;
  136. int loginput_size;
  137. bool opt_compact;
  138. bool opt_show_procs;
  139. const int opt_cutofftemp = 95;
  140. int opt_hysteresis = 3;
  141. static int opt_retries = -1;
  142. int opt_fail_pause = 5;
  143. int opt_log_interval = 20;
  144. int opt_queue = 1;
  145. int opt_scantime = 60;
  146. int opt_expiry = 120;
  147. int opt_expiry_lp = 3600;
  148. unsigned long long global_hashrate;
  149. static bool opt_unittest = false;
  150. unsigned long global_quota_gcd = 1;
  151. time_t last_getwork;
  152. #ifdef HAVE_OPENCL
  153. int opt_dynamic_interval = 7;
  154. int nDevs;
  155. int opt_g_threads = -1;
  156. #endif
  157. #ifdef USE_SCRYPT
  158. static char detect_algo = 1;
  159. bool opt_scrypt;
  160. #else
  161. static char detect_algo;
  162. #endif
  163. bool opt_restart = true;
  164. #ifdef USE_LIBMICROHTTPD
  165. #include "httpsrv.h"
  166. int httpsrv_port = -1;
  167. #endif
  168. #ifdef USE_LIBEVENT
  169. int stratumsrv_port = -1;
  170. #endif
  171. const
  172. int rescan_delay_ms = 1000;
  173. #ifdef HAVE_BFG_HOTPLUG
  174. bool opt_hotplug = 1;
  175. const
  176. int hotplug_delay_ms = 100;
  177. #else
  178. const bool opt_hotplug;
  179. #endif
  180. struct string_elist *scan_devices;
  181. static struct string_elist *opt_set_device_list;
  182. bool opt_force_dev_init;
  183. static struct string_elist *opt_devices_enabled_list;
  184. static bool opt_display_devs;
  185. int total_devices;
  186. struct cgpu_info **devices;
  187. int total_devices_new;
  188. struct cgpu_info **devices_new;
  189. bool have_opencl;
  190. int opt_n_threads = -1;
  191. int mining_threads;
  192. int num_processors;
  193. #ifdef HAVE_CURSES
  194. bool use_curses = true;
  195. #else
  196. bool use_curses;
  197. #endif
  198. #ifdef HAVE_LIBUSB
  199. bool have_libusb;
  200. #endif
  201. static bool opt_submit_stale = true;
  202. static float opt_shares;
  203. static int opt_submit_threads = 0x40;
  204. bool opt_fail_only;
  205. int opt_fail_switch_delay = 300;
  206. bool opt_autofan;
  207. bool opt_autoengine;
  208. bool opt_noadl;
  209. char *opt_api_allow = NULL;
  210. char *opt_api_groups;
  211. char *opt_api_description = PACKAGE_STRING;
  212. int opt_api_port = 4028;
  213. bool opt_api_listen;
  214. bool opt_api_mcast;
  215. char *opt_api_mcast_addr = API_MCAST_ADDR;
  216. char *opt_api_mcast_code = API_MCAST_CODE;
  217. char *opt_api_mcast_des = "";
  218. int opt_api_mcast_port = 4028;
  219. bool opt_api_network;
  220. bool opt_delaynet;
  221. bool opt_disable_pool;
  222. bool opt_disable_client_reconnect = false;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int watchpool_thr_id;
  235. static int watchdog_thr_id;
  236. #ifdef HAVE_CURSES
  237. static int input_thr_id;
  238. #endif
  239. int gpur_thr_id;
  240. static int api_thr_id;
  241. static int total_control_threads;
  242. pthread_mutex_t hash_lock;
  243. static pthread_mutex_t *stgd_lock;
  244. pthread_mutex_t console_lock;
  245. cglock_t ch_lock;
  246. static pthread_rwlock_t blk_lock;
  247. static pthread_mutex_t sshare_lock;
  248. pthread_rwlock_t netacc_lock;
  249. pthread_rwlock_t mining_thr_lock;
  250. pthread_rwlock_t devices_lock;
  251. static pthread_mutex_t lp_lock;
  252. static pthread_cond_t lp_cond;
  253. pthread_cond_t gws_cond;
  254. bool shutting_down;
  255. double total_rolling;
  256. double total_mhashes_done;
  257. static struct timeval total_tv_start, total_tv_end;
  258. static struct timeval miner_started;
  259. cglock_t control_lock;
  260. pthread_mutex_t stats_lock;
  261. static pthread_mutex_t submitting_lock;
  262. static int total_submitting;
  263. static struct work *submit_waiting;
  264. notifier_t submit_waiting_notifier;
  265. int hw_errors;
  266. int total_accepted, total_rejected;
  267. int total_getworks, total_stale, total_discarded;
  268. uint64_t total_bytes_rcvd, total_bytes_sent;
  269. double total_diff1, total_bad_diff1;
  270. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  271. static int staged_rollable;
  272. unsigned int new_blocks;
  273. unsigned int found_blocks;
  274. unsigned int local_work;
  275. unsigned int total_go, total_ro;
  276. struct pool **pools;
  277. static struct pool *currentpool = NULL;
  278. int total_pools, enabled_pools;
  279. enum pool_strategy pool_strategy = POOL_FAILOVER;
  280. int opt_rotate_period;
  281. static int total_urls, total_users, total_passes;
  282. static
  283. #ifndef HAVE_CURSES
  284. const
  285. #endif
  286. bool curses_active;
  287. #ifdef HAVE_CURSES
  288. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  289. const
  290. #endif
  291. short default_bgcolor = COLOR_BLACK;
  292. static int attr_title = A_BOLD;
  293. #endif
  294. static
  295. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  296. bool use_unicode;
  297. static
  298. bool have_unicode_degrees;
  299. static
  300. wchar_t unicode_micro = 'u';
  301. #else
  302. const bool use_unicode;
  303. static
  304. const bool have_unicode_degrees;
  305. static
  306. const char unicode_micro = 'u';
  307. #endif
  308. #ifdef HAVE_CURSES
  309. #define U8_BAD_START "\xef\x80\x81"
  310. #define U8_BAD_END "\xef\x80\x80"
  311. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  312. bool selecting_device;
  313. unsigned selected_device;
  314. #endif
  315. static char current_block[40];
  316. /* Protected by ch_lock */
  317. static char *current_hash;
  318. static uint32_t current_block_id;
  319. char *current_fullhash;
  320. static char datestamp[40];
  321. static char blocktime[32];
  322. time_t block_time;
  323. static char best_share[ALLOC_H2B_SHORTV] = "0";
  324. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  325. static char block_diff[ALLOC_H2B_SHORTV];
  326. static char net_hashrate[ALLOC_H2B_SHORT];
  327. double best_diff = 0;
  328. static bool known_blkheight_current;
  329. static uint32_t known_blkheight;
  330. static uint32_t known_blkheight_blkid;
  331. static uint64_t block_subsidy;
  332. struct block {
  333. char hash[40];
  334. UT_hash_handle hh;
  335. int block_no;
  336. };
  337. static struct block *blocks = NULL;
  338. int swork_id;
  339. /* For creating a hash database of stratum shares submitted that have not had
  340. * a response yet */
  341. struct stratum_share {
  342. UT_hash_handle hh;
  343. bool block;
  344. struct work *work;
  345. int id;
  346. };
  347. static struct stratum_share *stratum_shares = NULL;
  348. char *opt_socks_proxy = NULL;
  349. static const char def_conf[] = "bfgminer.conf";
  350. static bool config_loaded;
  351. static int include_count;
  352. #define JSON_INCLUDE_CONF "include"
  353. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  354. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  355. #define JSON_MAX_DEPTH 10
  356. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  357. char *cmd_idle, *cmd_sick, *cmd_dead;
  358. #if defined(unix) || defined(__APPLE__)
  359. static char *opt_stderr_cmd = NULL;
  360. static int forkpid;
  361. #endif // defined(unix)
  362. #ifdef HAVE_CHROOT
  363. char *chroot_dir;
  364. #endif
  365. #ifdef HAVE_PWD_H
  366. char *opt_setuid;
  367. #endif
  368. struct sigaction termhandler, inthandler;
  369. struct thread_q *getq;
  370. static int total_work;
  371. static bool staged_full;
  372. struct work *staged_work = NULL;
  373. struct schedtime {
  374. bool enable;
  375. struct tm tm;
  376. };
  377. struct schedtime schedstart;
  378. struct schedtime schedstop;
  379. bool sched_paused;
  380. static bool time_before(struct tm *tm1, struct tm *tm2)
  381. {
  382. if (tm1->tm_hour < tm2->tm_hour)
  383. return true;
  384. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  385. return true;
  386. return false;
  387. }
  388. static bool should_run(void)
  389. {
  390. struct tm tm;
  391. time_t tt;
  392. bool within_range;
  393. if (!schedstart.enable && !schedstop.enable)
  394. return true;
  395. tt = time(NULL);
  396. localtime_r(&tt, &tm);
  397. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  398. if (time_before(&schedstop.tm, &schedstart.tm))
  399. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  400. else
  401. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  402. if (within_range && !schedstop.enable)
  403. /* This is a once off event with no stop time set */
  404. schedstart.enable = false;
  405. return within_range;
  406. }
  407. void get_datestamp(char *f, size_t fsiz, time_t tt)
  408. {
  409. struct tm _tm;
  410. struct tm *tm = &_tm;
  411. if (tt == INVALID_TIMESTAMP)
  412. tt = time(NULL);
  413. localtime_r(&tt, tm);
  414. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  415. tm->tm_year + 1900,
  416. tm->tm_mon + 1,
  417. tm->tm_mday,
  418. tm->tm_hour,
  419. tm->tm_min,
  420. tm->tm_sec);
  421. }
  422. static
  423. void get_timestamp(char *f, size_t fsiz, time_t tt)
  424. {
  425. struct tm _tm;
  426. struct tm *tm = &_tm;
  427. localtime_r(&tt, tm);
  428. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  429. tm->tm_hour,
  430. tm->tm_min,
  431. tm->tm_sec);
  432. }
  433. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  434. static char exit_buf[512];
  435. static void applog_and_exit(const char *fmt, ...)
  436. {
  437. va_list ap;
  438. va_start(ap, fmt);
  439. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  440. va_end(ap);
  441. _applog(LOG_ERR, exit_buf);
  442. exit(1);
  443. }
  444. char *devpath_to_devid(const char *devpath)
  445. {
  446. #ifndef WIN32
  447. struct stat my_stat;
  448. if (stat(devpath, &my_stat))
  449. return NULL;
  450. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  451. memcpy(devs, "dev_t:", 6);
  452. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  453. #else
  454. if (!strncmp(devpath, "\\\\.\\", 4))
  455. devpath += 4;
  456. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  457. return NULL;
  458. devpath += 3;
  459. char *p;
  460. strtol(devpath, &p, 10);
  461. if (p[0])
  462. return NULL;
  463. const int sz = (p - devpath);
  464. char *devs = malloc(4 + sz + 1);
  465. sprintf(devs, "com:%s", devpath);
  466. #endif
  467. return devs;
  468. }
  469. static
  470. bool devpaths_match(const char * const ap, const char * const bp)
  471. {
  472. char * const a = devpath_to_devid(ap);
  473. if (!a)
  474. return false;
  475. char * const b = devpath_to_devid(bp);
  476. bool rv = false;
  477. if (b)
  478. {
  479. rv = !strcmp(a, b);
  480. free(b);
  481. }
  482. free(a);
  483. return rv;
  484. }
  485. static
  486. int proc_letter_to_number(const char *s, const char ** const rem)
  487. {
  488. int n = 0, c;
  489. for ( ; s[0]; ++s)
  490. {
  491. if (unlikely(n > INT_MAX / 26))
  492. break;
  493. c = tolower(s[0]) - 'a';
  494. if (unlikely(c < 0 || c > 25))
  495. break;
  496. if (unlikely(INT_MAX - c < n))
  497. break;
  498. n = (n * 26) + c;
  499. }
  500. *rem = s;
  501. return n;
  502. }
  503. static
  504. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  505. {
  506. // all - matches anything
  507. // d0 - matches all processors of device 0
  508. // d0-3 - matches all processors of device 0, 1, 2, or 3
  509. // d0a - matches first processor of device 0
  510. // 0 - matches processor 0
  511. // 0-4 - matches processors 0, 1, 2, 3, or 4
  512. // ___ - matches all processors on all devices using driver/name ___
  513. // ___0 - matches all processors of 0th device using driver/name ___
  514. // ___0a - matches first processor of 0th device using driver/name ___
  515. // @* - matches device with serial or path *
  516. // @*@a - matches first processor of device with serial or path *
  517. // ___@* - matches device with serial or path * using driver/name ___
  518. if (!strcasecmp(pattern, "all"))
  519. return true;
  520. const struct device_drv * const drv = cgpu->drv;
  521. const char *p = pattern, *p2;
  522. size_t L;
  523. int n, i, c = -1;
  524. int n2;
  525. int proc_first = -1, proc_last = -1;
  526. struct cgpu_info *device;
  527. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  528. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  529. // dname or name
  530. p = &pattern[L];
  531. else
  532. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  533. // d#
  534. ++p;
  535. else
  536. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  537. // # or @
  538. {}
  539. else
  540. return false;
  541. L = p - pattern;
  542. while (isspace(p[0]))
  543. ++p;
  544. if (p[0] == '@')
  545. {
  546. // Serial/path
  547. const char * const ser = &p[1];
  548. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  549. {}
  550. p2 = (p[0] == '@') ? &p[1] : p;
  551. const size_t serlen = (p - ser);
  552. p = "";
  553. n = n2 = 0;
  554. const char * const devpath = cgpu->device_path ?: "";
  555. const char * const devser = cgpu->dev_serial ?: "";
  556. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  557. {} // Match
  558. else
  559. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  560. {} // Match
  561. else
  562. {
  563. char devpath2[serlen + 1];
  564. memcpy(devpath2, ser, serlen);
  565. devpath2[serlen] = '\0';
  566. if (!devpaths_match(devpath, ser))
  567. return false;
  568. }
  569. }
  570. else
  571. {
  572. if (isdigit(p[0]))
  573. n = strtol(p, (void*)&p2, 0);
  574. else
  575. {
  576. n = 0;
  577. p2 = p;
  578. }
  579. if (p2[0] == '-')
  580. {
  581. ++p2;
  582. if (p2[0] && isdigit(p2[0]))
  583. n2 = strtol(p2, (void*)&p2, 0);
  584. else
  585. n2 = INT_MAX;
  586. }
  587. else
  588. n2 = n;
  589. if (p == pattern)
  590. {
  591. if (!p[0])
  592. return true;
  593. if (p2 && p2[0])
  594. goto invsyntax;
  595. for (i = n; i <= n2; ++i)
  596. {
  597. if (i >= total_devices)
  598. break;
  599. if (cgpu == devices[i])
  600. return true;
  601. }
  602. return false;
  603. }
  604. }
  605. if (p2[0])
  606. {
  607. proc_first = proc_letter_to_number(&p2[0], &p2);
  608. if (p2[0] == '-')
  609. {
  610. ++p2;
  611. if (p2[0])
  612. proc_last = proc_letter_to_number(p2, &p2);
  613. else
  614. proc_last = INT_MAX;
  615. }
  616. else
  617. proc_last = proc_first;
  618. if (p2[0])
  619. goto invsyntax;
  620. }
  621. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  622. {
  623. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  624. (!L) ||
  625. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  626. {} // Matched name or dname
  627. else
  628. return false;
  629. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  630. return false;
  631. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  632. return false;
  633. return true;
  634. }
  635. // d#
  636. c = -1;
  637. for (i = 0; ; ++i)
  638. {
  639. if (i == total_devices)
  640. return false;
  641. if (devices[i]->device != devices[i])
  642. continue;
  643. ++c;
  644. if (c < n)
  645. continue;
  646. if (c > n2)
  647. break;
  648. for (device = devices[i]; device; device = device->next_proc)
  649. {
  650. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  651. continue;
  652. if (device == cgpu)
  653. return true;
  654. }
  655. }
  656. return false;
  657. invsyntax:
  658. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  659. return false;
  660. }
  661. #define TEST_CGPU_MATCH(pattern) \
  662. if (!cgpu_match(pattern, &cgpu)) \
  663. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  664. // END TEST_CGPU_MATCH
  665. #define TEST_CGPU_NOMATCH(pattern) \
  666. if (cgpu_match(pattern, &cgpu)) \
  667. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  668. // END TEST_CGPU_MATCH
  669. static __maybe_unused
  670. void test_cgpu_match()
  671. {
  672. struct device_drv drv = {
  673. .dname = "test",
  674. .name = "TST",
  675. };
  676. struct cgpu_info cgpu = {
  677. .drv = &drv,
  678. .device = &cgpu,
  679. .device_id = 1,
  680. .proc_id = 1,
  681. .proc_repr = "TST 1b",
  682. }, cgpu0a = {
  683. .drv = &drv,
  684. .device = &cgpu0a,
  685. .device_id = 0,
  686. .proc_id = 0,
  687. .proc_repr = "TST 0a",
  688. }, cgpu1a = {
  689. .drv = &drv,
  690. .device = &cgpu0a,
  691. .device_id = 1,
  692. .proc_id = 0,
  693. .proc_repr = "TST 1a",
  694. };
  695. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  696. devices = devices_list;
  697. total_devices = 3;
  698. TEST_CGPU_MATCH("all")
  699. TEST_CGPU_MATCH("d1")
  700. TEST_CGPU_NOMATCH("d2")
  701. TEST_CGPU_MATCH("d0-5")
  702. TEST_CGPU_NOMATCH("d0-0")
  703. TEST_CGPU_NOMATCH("d2-5")
  704. TEST_CGPU_MATCH("d-1")
  705. TEST_CGPU_MATCH("d1-")
  706. TEST_CGPU_NOMATCH("d-0")
  707. TEST_CGPU_NOMATCH("d2-")
  708. TEST_CGPU_MATCH("2")
  709. TEST_CGPU_NOMATCH("3")
  710. TEST_CGPU_MATCH("1-2")
  711. TEST_CGPU_MATCH("2-3")
  712. TEST_CGPU_NOMATCH("1-1")
  713. TEST_CGPU_NOMATCH("3-4")
  714. TEST_CGPU_MATCH("TST")
  715. TEST_CGPU_MATCH("test")
  716. TEST_CGPU_MATCH("tst")
  717. TEST_CGPU_MATCH("TEST")
  718. TEST_CGPU_NOMATCH("TSF")
  719. TEST_CGPU_NOMATCH("TS")
  720. TEST_CGPU_NOMATCH("TSTF")
  721. TEST_CGPU_MATCH("TST1")
  722. TEST_CGPU_MATCH("test1")
  723. TEST_CGPU_MATCH("TST0-1")
  724. TEST_CGPU_MATCH("TST 1")
  725. TEST_CGPU_MATCH("TST 1-2")
  726. TEST_CGPU_MATCH("TEST 1-2")
  727. TEST_CGPU_NOMATCH("TST2")
  728. TEST_CGPU_NOMATCH("TST2-3")
  729. TEST_CGPU_NOMATCH("TST0-0")
  730. TEST_CGPU_MATCH("TST1b")
  731. TEST_CGPU_MATCH("tst1b")
  732. TEST_CGPU_NOMATCH("TST1c")
  733. TEST_CGPU_NOMATCH("TST1bb")
  734. TEST_CGPU_MATCH("TST0-1b")
  735. TEST_CGPU_NOMATCH("TST0-1c")
  736. TEST_CGPU_MATCH("TST1a-d")
  737. TEST_CGPU_NOMATCH("TST1a-a")
  738. TEST_CGPU_NOMATCH("TST1-a")
  739. TEST_CGPU_NOMATCH("TST1c-z")
  740. TEST_CGPU_NOMATCH("TST1c-")
  741. TEST_CGPU_MATCH("@")
  742. TEST_CGPU_NOMATCH("@abc")
  743. TEST_CGPU_MATCH("@@b")
  744. TEST_CGPU_NOMATCH("@@c")
  745. TEST_CGPU_MATCH("TST@")
  746. TEST_CGPU_NOMATCH("TST@abc")
  747. TEST_CGPU_MATCH("TST@@b")
  748. TEST_CGPU_NOMATCH("TST@@c")
  749. TEST_CGPU_MATCH("TST@@b-f")
  750. TEST_CGPU_NOMATCH("TST@@c-f")
  751. TEST_CGPU_NOMATCH("TST@@-a")
  752. cgpu.device_path = "/dev/test";
  753. cgpu.dev_serial = "testy";
  754. TEST_CGPU_MATCH("TST@/dev/test")
  755. TEST_CGPU_MATCH("TST@testy")
  756. TEST_CGPU_NOMATCH("TST@")
  757. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  758. TEST_CGPU_NOMATCH("TST@testy3@b")
  759. TEST_CGPU_MATCH("TST@/dev/test@b")
  760. TEST_CGPU_MATCH("TST@testy@b")
  761. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  762. TEST_CGPU_NOMATCH("TST@testy@c")
  763. cgpu.device_path = "usb:000:999";
  764. TEST_CGPU_MATCH("TST@usb:000:999")
  765. drv.dname = "test7";
  766. TEST_CGPU_MATCH("test7")
  767. TEST_CGPU_MATCH("TEST7")
  768. TEST_CGPU_NOMATCH("test&")
  769. TEST_CGPU_MATCH("test7 1-2")
  770. TEST_CGPU_MATCH("test7@testy@b")
  771. }
  772. static
  773. int cgpu_search(const char * const pattern, const int first)
  774. {
  775. int i;
  776. struct cgpu_info *cgpu;
  777. #define CHECK_CGPU_SEARCH do{ \
  778. cgpu = get_devices(i); \
  779. if (cgpu_match(pattern, cgpu)) \
  780. return i; \
  781. }while(0)
  782. for (i = first; i < total_devices; ++i)
  783. CHECK_CGPU_SEARCH;
  784. for (i = 0; i < first; ++i)
  785. CHECK_CGPU_SEARCH;
  786. #undef CHECK_CGPU_SEARCH
  787. return -1;
  788. }
  789. static pthread_mutex_t sharelog_lock;
  790. static FILE *sharelog_file = NULL;
  791. struct thr_info *get_thread(int thr_id)
  792. {
  793. struct thr_info *thr;
  794. rd_lock(&mining_thr_lock);
  795. thr = mining_thr[thr_id];
  796. rd_unlock(&mining_thr_lock);
  797. return thr;
  798. }
  799. static struct cgpu_info *get_thr_cgpu(int thr_id)
  800. {
  801. struct thr_info *thr = get_thread(thr_id);
  802. return thr->cgpu;
  803. }
  804. struct cgpu_info *get_devices(int id)
  805. {
  806. struct cgpu_info *cgpu;
  807. rd_lock(&devices_lock);
  808. cgpu = devices[id];
  809. rd_unlock(&devices_lock);
  810. return cgpu;
  811. }
  812. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  813. static FILE *noncelog_file = NULL;
  814. static
  815. void noncelog(const struct work * const work)
  816. {
  817. const int thr_id = work->thr_id;
  818. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  819. char buf[0x200], hash[65], data[161], midstate[65];
  820. int rv;
  821. size_t ret;
  822. bin2hex(hash, work->hash, 32);
  823. bin2hex(data, work->data, 80);
  824. bin2hex(midstate, work->midstate, 32);
  825. // timestamp,proc,hash,data,midstate
  826. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  827. (unsigned long)time(NULL), proc->proc_repr_ns,
  828. hash, data, midstate);
  829. if (unlikely(rv < 1))
  830. {
  831. applog(LOG_ERR, "noncelog printf error");
  832. return;
  833. }
  834. mutex_lock(&noncelog_lock);
  835. ret = fwrite(buf, rv, 1, noncelog_file);
  836. fflush(noncelog_file);
  837. mutex_unlock(&noncelog_lock);
  838. if (ret != 1)
  839. applog(LOG_ERR, "noncelog fwrite error");
  840. }
  841. static void sharelog(const char*disposition, const struct work*work)
  842. {
  843. char target[(sizeof(work->target) * 2) + 1];
  844. char hash[(sizeof(work->hash) * 2) + 1];
  845. char data[(sizeof(work->data) * 2) + 1];
  846. struct cgpu_info *cgpu;
  847. unsigned long int t;
  848. struct pool *pool;
  849. int thr_id, rv;
  850. char s[1024];
  851. size_t ret;
  852. if (!sharelog_file)
  853. return;
  854. thr_id = work->thr_id;
  855. cgpu = get_thr_cgpu(thr_id);
  856. pool = work->pool;
  857. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  858. bin2hex(target, work->target, sizeof(work->target));
  859. bin2hex(hash, work->hash, sizeof(work->hash));
  860. bin2hex(data, work->data, sizeof(work->data));
  861. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  862. 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);
  863. if (rv >= (int)(sizeof(s)))
  864. s[sizeof(s) - 1] = '\0';
  865. else if (rv < 0) {
  866. applog(LOG_ERR, "sharelog printf error");
  867. return;
  868. }
  869. mutex_lock(&sharelog_lock);
  870. ret = fwrite(s, rv, 1, sharelog_file);
  871. fflush(sharelog_file);
  872. mutex_unlock(&sharelog_lock);
  873. if (ret != 1)
  874. applog(LOG_ERR, "sharelog fwrite error");
  875. }
  876. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  877. /* Adjust all the pools' quota to the greatest common denominator after a pool
  878. * has been added or the quotas changed. */
  879. void adjust_quota_gcd(void)
  880. {
  881. unsigned long gcd, lowest_quota = ~0UL, quota;
  882. struct pool *pool;
  883. int i;
  884. for (i = 0; i < total_pools; i++) {
  885. pool = pools[i];
  886. quota = pool->quota;
  887. if (!quota)
  888. continue;
  889. if (quota < lowest_quota)
  890. lowest_quota = quota;
  891. }
  892. if (likely(lowest_quota < ~0UL)) {
  893. gcd = lowest_quota;
  894. for (i = 0; i < total_pools; i++) {
  895. pool = pools[i];
  896. quota = pool->quota;
  897. if (!quota)
  898. continue;
  899. while (quota % gcd)
  900. gcd--;
  901. }
  902. } else
  903. gcd = 1;
  904. for (i = 0; i < total_pools; i++) {
  905. pool = pools[i];
  906. pool->quota_used *= global_quota_gcd;
  907. pool->quota_used /= gcd;
  908. pool->quota_gcd = pool->quota / gcd;
  909. }
  910. global_quota_gcd = gcd;
  911. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  912. }
  913. /* Return value is ignored if not called from add_pool_details */
  914. struct pool *add_pool(void)
  915. {
  916. struct pool *pool;
  917. pool = calloc(sizeof(struct pool), 1);
  918. if (!pool)
  919. quit(1, "Failed to malloc pool in add_pool");
  920. pool->pool_no = pool->prio = total_pools;
  921. mutex_init(&pool->last_work_lock);
  922. mutex_init(&pool->pool_lock);
  923. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  924. quit(1, "Failed to pthread_cond_init in add_pool");
  925. cglock_init(&pool->data_lock);
  926. mutex_init(&pool->stratum_lock);
  927. timer_unset(&pool->swork.tv_transparency);
  928. pool->swork.pool = pool;
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. pool->sock = INVSOCK;
  935. pool->lp_socket = CURL_SOCKET_BAD;
  936. if (opt_benchmark)
  937. {
  938. // Don't add to pools array, but immediately remove it
  939. remove_pool(pool);
  940. return pool;
  941. }
  942. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  943. pools[total_pools++] = pool;
  944. adjust_quota_gcd();
  945. return pool;
  946. }
  947. /* Pool variant of test and set */
  948. static bool pool_tset(struct pool *pool, bool *var)
  949. {
  950. bool ret;
  951. mutex_lock(&pool->pool_lock);
  952. ret = *var;
  953. *var = true;
  954. mutex_unlock(&pool->pool_lock);
  955. return ret;
  956. }
  957. bool pool_tclear(struct pool *pool, bool *var)
  958. {
  959. bool ret;
  960. mutex_lock(&pool->pool_lock);
  961. ret = *var;
  962. *var = false;
  963. mutex_unlock(&pool->pool_lock);
  964. return ret;
  965. }
  966. struct pool *current_pool(void)
  967. {
  968. struct pool *pool;
  969. cg_rlock(&control_lock);
  970. pool = currentpool;
  971. cg_runlock(&control_lock);
  972. return pool;
  973. }
  974. // Copied from ccan/opt/helpers.c
  975. static char *arg_bad(const char *fmt, const char *arg)
  976. {
  977. char *str = malloc(strlen(fmt) + strlen(arg));
  978. sprintf(str, fmt, arg);
  979. return str;
  980. }
  981. static
  982. char *opt_set_floatval(const char *arg, float *f)
  983. {
  984. char *endp;
  985. errno = 0;
  986. *f = strtof(arg, &endp);
  987. if (*endp || !arg[0])
  988. return arg_bad("'%s' is not a number", arg);
  989. if (errno)
  990. return arg_bad("'%s' is out of range", arg);
  991. return NULL;
  992. }
  993. static
  994. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  995. {
  996. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  997. }
  998. static
  999. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  1000. {
  1001. return opt_set_bool(b);
  1002. }
  1003. char *set_int_range(const char *arg, int *i, int min, int max)
  1004. {
  1005. char *err = opt_set_intval(arg, i);
  1006. if (err)
  1007. return err;
  1008. if (*i < min || *i > max)
  1009. return "Value out of range";
  1010. return NULL;
  1011. }
  1012. static char *set_int_0_to_9999(const char *arg, int *i)
  1013. {
  1014. return set_int_range(arg, i, 0, 9999);
  1015. }
  1016. static char *set_int_1_to_65535(const char *arg, int *i)
  1017. {
  1018. return set_int_range(arg, i, 1, 65535);
  1019. }
  1020. static char *set_int_0_to_10(const char *arg, int *i)
  1021. {
  1022. return set_int_range(arg, i, 0, 10);
  1023. }
  1024. static char *set_int_1_to_10(const char *arg, int *i)
  1025. {
  1026. return set_int_range(arg, i, 1, 10);
  1027. }
  1028. char *set_strdup(const char *arg, char **p)
  1029. {
  1030. *p = strdup((char *)arg);
  1031. return NULL;
  1032. }
  1033. #if BLKMAKER_VERSION > 1
  1034. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1035. {
  1036. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1037. if (!scriptsz)
  1038. return "Invalid address";
  1039. char *script = malloc(scriptsz);
  1040. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1041. free(script);
  1042. return "Failed to convert address to script";
  1043. }
  1044. p->data = script;
  1045. p->sz = scriptsz;
  1046. return NULL;
  1047. }
  1048. #endif
  1049. static
  1050. char *set_quit_summary(const char * const arg)
  1051. {
  1052. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1053. opt_quit_summary = BQS_NONE;
  1054. else
  1055. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1056. opt_quit_summary = BQS_DEVS;
  1057. else
  1058. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1059. opt_quit_summary = BQS_PROCS;
  1060. else
  1061. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1062. opt_quit_summary = BQS_DETAILED;
  1063. else
  1064. return "Quit summary must be one of none/devs/procs/detailed";
  1065. return NULL;
  1066. }
  1067. static void pdiff_target_leadzero(void *, double);
  1068. char *set_request_diff(const char *arg, float *p)
  1069. {
  1070. unsigned char target[32];
  1071. char *e = opt_set_floatval(arg, p);
  1072. if (e)
  1073. return e;
  1074. request_bdiff = (double)*p * 0.9999847412109375;
  1075. pdiff_target_leadzero(target, *p);
  1076. request_target_str = malloc(65);
  1077. bin2hex(request_target_str, target, 32);
  1078. return NULL;
  1079. }
  1080. #ifdef NEED_BFG_LOWL_VCOM
  1081. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1082. #ifdef WIN32
  1083. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1084. {
  1085. char dev[PATH_MAX];
  1086. char *devp = dev;
  1087. size_t bufLen = 0x100;
  1088. tryagain: ;
  1089. char buf[bufLen];
  1090. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1091. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1092. bufLen *= 2;
  1093. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1094. goto tryagain;
  1095. }
  1096. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1097. }
  1098. size_t tLen;
  1099. memcpy(devp, "\\\\.\\", 4);
  1100. devp = &devp[4];
  1101. for (char *t = buf; *t; t += tLen) {
  1102. tLen = strlen(t) + 1;
  1103. if (strncmp("COM", t, 3))
  1104. continue;
  1105. memcpy(devp, t, tLen);
  1106. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1107. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1108. }
  1109. }
  1110. #else
  1111. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1112. {
  1113. char dev[PATH_MAX];
  1114. char *devp = dev;
  1115. DIR *D;
  1116. struct dirent *de;
  1117. const char devdir[] = "/dev";
  1118. const size_t devdirlen = sizeof(devdir) - 1;
  1119. char *devpath = devp;
  1120. char *devfile = devpath + devdirlen + 1;
  1121. D = opendir(devdir);
  1122. if (!D)
  1123. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1124. memcpy(devpath, devdir, devdirlen);
  1125. devpath[devdirlen] = '/';
  1126. while ( (de = readdir(D)) ) {
  1127. if (!strncmp(de->d_name, "cu.", 3)
  1128. //don't probe Bluetooth devices - causes bus errors and segfaults
  1129. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1130. goto trydev;
  1131. if (strncmp(de->d_name, "tty", 3))
  1132. continue;
  1133. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1134. continue;
  1135. trydev:
  1136. strcpy(devfile, de->d_name);
  1137. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1138. }
  1139. closedir(D);
  1140. }
  1141. #endif
  1142. #endif
  1143. static char *add_serial(const char *arg)
  1144. {
  1145. string_elist_add(arg, &scan_devices);
  1146. return NULL;
  1147. }
  1148. static
  1149. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1150. {
  1151. string_elist_add(arg, elist);
  1152. return NULL;
  1153. }
  1154. bool get_intrange(const char *arg, int *val1, int *val2)
  1155. {
  1156. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1157. char *p, *p2;
  1158. *val1 = strtol(arg, &p, 0);
  1159. if (arg == p)
  1160. // Zero-length ending number, invalid
  1161. return false;
  1162. while (true)
  1163. {
  1164. if (!p[0])
  1165. {
  1166. *val2 = *val1;
  1167. return true;
  1168. }
  1169. if (p[0] == '-')
  1170. break;
  1171. if (!isspace(p[0]))
  1172. // Garbage, invalid
  1173. return false;
  1174. ++p;
  1175. }
  1176. p2 = &p[1];
  1177. *val2 = strtol(p2, &p, 0);
  1178. if (p2 == p)
  1179. // Zero-length ending number, invalid
  1180. return false;
  1181. while (true)
  1182. {
  1183. if (!p[0])
  1184. return true;
  1185. if (!isspace(p[0]))
  1186. // Garbage, invalid
  1187. return false;
  1188. ++p;
  1189. }
  1190. }
  1191. static
  1192. void _test_intrange(const char *s, const int v[2])
  1193. {
  1194. int a[2];
  1195. if (!get_intrange(s, &a[0], &a[1]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1197. for (int i = 0; i < 2; ++i)
  1198. if (unlikely(a[i] != v[i]))
  1199. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1200. }
  1201. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1202. static
  1203. void _test_intrange_fail(const char *s)
  1204. {
  1205. int a[2];
  1206. if (get_intrange(s, &a[0], &a[1]))
  1207. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1208. }
  1209. static
  1210. void test_intrange()
  1211. {
  1212. _test_intrange("-1--2", -1, -2);
  1213. _test_intrange("-1-2", -1, 2);
  1214. _test_intrange("1--2", 1, -2);
  1215. _test_intrange("1-2", 1, 2);
  1216. _test_intrange("111-222", 111, 222);
  1217. _test_intrange(" 11 - 22 ", 11, 22);
  1218. _test_intrange("+11-+22", 11, 22);
  1219. _test_intrange("-1", -1, -1);
  1220. _test_intrange_fail("all");
  1221. _test_intrange_fail("1-");
  1222. _test_intrange_fail("");
  1223. _test_intrange_fail("1-54x");
  1224. }
  1225. static char *set_devices(char *arg)
  1226. {
  1227. if (*arg) {
  1228. if (*arg == '?') {
  1229. opt_display_devs = true;
  1230. return NULL;
  1231. }
  1232. } else
  1233. return "Invalid device parameters";
  1234. string_elist_add(arg, &opt_devices_enabled_list);
  1235. return NULL;
  1236. }
  1237. static char *set_balance(enum pool_strategy *strategy)
  1238. {
  1239. *strategy = POOL_BALANCE;
  1240. return NULL;
  1241. }
  1242. static char *set_loadbalance(enum pool_strategy *strategy)
  1243. {
  1244. *strategy = POOL_LOADBALANCE;
  1245. return NULL;
  1246. }
  1247. static char *set_rotate(const char *arg, int *i)
  1248. {
  1249. pool_strategy = POOL_ROTATE;
  1250. return set_int_range(arg, i, 0, 9999);
  1251. }
  1252. static char *set_rr(enum pool_strategy *strategy)
  1253. {
  1254. *strategy = POOL_ROUNDROBIN;
  1255. return NULL;
  1256. }
  1257. /* Detect that url is for a stratum protocol either via the presence of
  1258. * stratum+tcp or by detecting a stratum server response */
  1259. bool detect_stratum(struct pool *pool, char *url)
  1260. {
  1261. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1262. return false;
  1263. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1264. pool->rpc_url = strdup(url);
  1265. pool->has_stratum = true;
  1266. pool->stratum_url = pool->sockaddr_url;
  1267. return true;
  1268. }
  1269. return false;
  1270. }
  1271. static struct pool *add_url(void)
  1272. {
  1273. total_urls++;
  1274. if (total_urls > total_pools)
  1275. add_pool();
  1276. return pools[total_urls - 1];
  1277. }
  1278. static void setup_url(struct pool *pool, char *arg)
  1279. {
  1280. if (detect_stratum(pool, arg))
  1281. return;
  1282. opt_set_charp(arg, &pool->rpc_url);
  1283. if (strncmp(arg, "http://", 7) &&
  1284. strncmp(arg, "https://", 8)) {
  1285. const size_t L = strlen(arg);
  1286. char *httpinput;
  1287. httpinput = malloc(8 + L);
  1288. if (!httpinput)
  1289. quit(1, "Failed to malloc httpinput");
  1290. sprintf(httpinput, "http://%s", arg);
  1291. pool->rpc_url = httpinput;
  1292. }
  1293. }
  1294. static char *set_url(char *arg)
  1295. {
  1296. struct pool *pool = add_url();
  1297. setup_url(pool, arg);
  1298. return NULL;
  1299. }
  1300. static char *set_quota(char *arg)
  1301. {
  1302. char *semicolon = strchr(arg, ';'), *url;
  1303. int len, qlen, quota;
  1304. struct pool *pool;
  1305. if (!semicolon)
  1306. return "No semicolon separated quota;URL pair found";
  1307. len = strlen(arg);
  1308. *semicolon = '\0';
  1309. qlen = strlen(arg);
  1310. if (!qlen)
  1311. return "No parameter for quota found";
  1312. len -= qlen + 1;
  1313. if (len < 1)
  1314. return "No parameter for URL found";
  1315. quota = atoi(arg);
  1316. if (quota < 0)
  1317. return "Invalid negative parameter for quota set";
  1318. url = arg + qlen + 1;
  1319. pool = add_url();
  1320. setup_url(pool, url);
  1321. pool->quota = quota;
  1322. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1323. adjust_quota_gcd();
  1324. return NULL;
  1325. }
  1326. static char *set_user(const char *arg)
  1327. {
  1328. struct pool *pool;
  1329. total_users++;
  1330. if (total_users > total_pools)
  1331. add_pool();
  1332. pool = pools[total_users - 1];
  1333. opt_set_charp(arg, &pool->rpc_user);
  1334. return NULL;
  1335. }
  1336. static char *set_pass(const char *arg)
  1337. {
  1338. struct pool *pool;
  1339. total_passes++;
  1340. if (total_passes > total_pools)
  1341. add_pool();
  1342. pool = pools[total_passes - 1];
  1343. opt_set_charp(arg, &pool->rpc_pass);
  1344. return NULL;
  1345. }
  1346. static char *set_userpass(const char *arg)
  1347. {
  1348. struct pool *pool;
  1349. char *updup;
  1350. if (total_users != total_passes)
  1351. return "User + pass options must be balanced before userpass";
  1352. ++total_users;
  1353. ++total_passes;
  1354. if (total_users > total_pools)
  1355. add_pool();
  1356. pool = pools[total_users - 1];
  1357. updup = strdup(arg);
  1358. opt_set_charp(arg, &pool->rpc_userpass);
  1359. pool->rpc_user = strtok(updup, ":");
  1360. if (!pool->rpc_user)
  1361. return "Failed to find : delimited user info";
  1362. pool->rpc_pass = strtok(NULL, ":");
  1363. if (!pool->rpc_pass)
  1364. pool->rpc_pass = "";
  1365. return NULL;
  1366. }
  1367. static char *set_pool_priority(const char *arg)
  1368. {
  1369. struct pool *pool;
  1370. if (!total_pools)
  1371. return "Usage of --pool-priority before pools are defined does not make sense";
  1372. pool = pools[total_pools - 1];
  1373. opt_set_intval(arg, &pool->prio);
  1374. return NULL;
  1375. }
  1376. static char *set_pool_proxy(const char *arg)
  1377. {
  1378. struct pool *pool;
  1379. if (!total_pools)
  1380. return "Usage of --pool-proxy before pools are defined does not make sense";
  1381. if (!our_curl_supports_proxy_uris())
  1382. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1383. pool = pools[total_pools - 1];
  1384. opt_set_charp(arg, &pool->rpc_proxy);
  1385. return NULL;
  1386. }
  1387. static char *set_pool_force_rollntime(const char *arg)
  1388. {
  1389. struct pool *pool;
  1390. if (!total_pools)
  1391. return "Usage of --force-rollntime before pools are defined does not make sense";
  1392. pool = pools[total_pools - 1];
  1393. opt_set_intval(arg, &pool->force_rollntime);
  1394. return NULL;
  1395. }
  1396. static char *enable_debug(bool *flag)
  1397. {
  1398. *flag = true;
  1399. opt_debug_console = true;
  1400. /* Turn on verbose output, too. */
  1401. opt_log_output = true;
  1402. return NULL;
  1403. }
  1404. static char *set_schedtime(const char *arg, struct schedtime *st)
  1405. {
  1406. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1407. {
  1408. if (strcasecmp(arg, "now"))
  1409. return "Invalid time set, should be HH:MM";
  1410. } else
  1411. schedstop.tm.tm_sec = 0;
  1412. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1413. return "Invalid time set.";
  1414. st->enable = true;
  1415. return NULL;
  1416. }
  1417. static
  1418. char *set_log_file(char *arg)
  1419. {
  1420. char *r = "";
  1421. long int i = strtol(arg, &r, 10);
  1422. int fd, stderr_fd = fileno(stderr);
  1423. if ((!*r) && i >= 0 && i <= INT_MAX)
  1424. fd = i;
  1425. else
  1426. if (!strcmp(arg, "-"))
  1427. {
  1428. fd = fileno(stdout);
  1429. if (unlikely(fd == -1))
  1430. return "Standard output missing for log-file";
  1431. }
  1432. else
  1433. {
  1434. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1435. if (unlikely(fd == -1))
  1436. return "Failed to open log-file";
  1437. }
  1438. close(stderr_fd);
  1439. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1440. return "Failed to dup2 for log-file";
  1441. close(fd);
  1442. return NULL;
  1443. }
  1444. static
  1445. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1446. {
  1447. char *r = "";
  1448. long int i = strtol(arg, &r, 10);
  1449. static char *err = NULL;
  1450. const size_t errbufsz = 0x100;
  1451. free(err);
  1452. err = NULL;
  1453. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1454. *F = fdopen((int)i, mode);
  1455. if (!*F)
  1456. {
  1457. err = malloc(errbufsz);
  1458. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1459. (int)i, purpose);
  1460. return err;
  1461. }
  1462. } else if (!strcmp(arg, "-")) {
  1463. *F = (mode[0] == 'a') ? stdout : stdin;
  1464. if (!*F)
  1465. {
  1466. err = malloc(errbufsz);
  1467. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1468. (mode[0] == 'a') ? "out" : "in", purpose);
  1469. return err;
  1470. }
  1471. } else {
  1472. *F = fopen(arg, mode);
  1473. if (!*F)
  1474. {
  1475. err = malloc(errbufsz);
  1476. snprintf(err, errbufsz, "Failed to open %s for %s",
  1477. arg, purpose);
  1478. return err;
  1479. }
  1480. }
  1481. return NULL;
  1482. }
  1483. static char *set_noncelog(char *arg)
  1484. {
  1485. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1486. }
  1487. static char *set_sharelog(char *arg)
  1488. {
  1489. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1490. }
  1491. static
  1492. void _add_set_device_option(const char * const func, const char * const buf)
  1493. {
  1494. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1495. string_elist_add(buf, &opt_set_device_list);
  1496. }
  1497. #define add_set_device_option(...) do{ \
  1498. char _tmp1718[0x100]; \
  1499. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1500. _add_set_device_option(__func__, _tmp1718); \
  1501. }while(0)
  1502. char *set_temp_cutoff(char *arg)
  1503. {
  1504. if (strchr(arg, ','))
  1505. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1506. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1507. add_set_device_option("all:temp-cutoff=%s", arg);
  1508. return NULL;
  1509. }
  1510. char *set_temp_target(char *arg)
  1511. {
  1512. if (strchr(arg, ','))
  1513. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1514. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1515. add_set_device_option("all:temp-target=%s", arg);
  1516. return NULL;
  1517. }
  1518. #ifdef HAVE_OPENCL
  1519. static
  1520. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1521. {
  1522. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1523. add_set_device_option("OCL:binary=no");
  1524. return NULL;
  1525. }
  1526. #endif
  1527. static
  1528. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1529. {
  1530. opt_disable_client_reconnect = true;
  1531. want_stratum = false;
  1532. return NULL;
  1533. }
  1534. static char *set_api_allow(const char *arg)
  1535. {
  1536. opt_set_charp(arg, &opt_api_allow);
  1537. return NULL;
  1538. }
  1539. static char *set_api_groups(const char *arg)
  1540. {
  1541. opt_set_charp(arg, &opt_api_groups);
  1542. return NULL;
  1543. }
  1544. static char *set_api_description(const char *arg)
  1545. {
  1546. opt_set_charp(arg, &opt_api_description);
  1547. return NULL;
  1548. }
  1549. static char *set_api_mcast_des(const char *arg)
  1550. {
  1551. opt_set_charp(arg, &opt_api_mcast_des);
  1552. return NULL;
  1553. }
  1554. #ifdef USE_ICARUS
  1555. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1556. static char *set_icarus_options(const char *arg)
  1557. {
  1558. if (strchr(arg, ','))
  1559. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1560. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1561. char *opts = strdup(arg), *argdup;
  1562. argdup = opts;
  1563. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1564. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1565. char *saveptr, *opt;
  1566. for (int i = 0; i < 4; ++i, ++sdf)
  1567. {
  1568. opt = strtok_r(opts, ":", &saveptr);
  1569. opts = NULL;
  1570. if (!opt)
  1571. break;
  1572. if (!opt[0])
  1573. continue;
  1574. for (int j = 0; j < 4; ++j)
  1575. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1576. }
  1577. free(argdup);
  1578. return NULL;
  1579. }
  1580. static char *set_icarus_timing(const char *arg)
  1581. {
  1582. if (strchr(arg, ','))
  1583. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1584. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1585. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1586. for (int j = 0; j < 4; ++j)
  1587. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1588. return NULL;
  1589. }
  1590. #endif
  1591. #ifdef USE_AVALON
  1592. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1593. static char *set_avalon_options(const char *arg)
  1594. {
  1595. if (strchr(arg, ','))
  1596. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1597. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1598. char *opts = strdup(arg), *argdup;
  1599. argdup = opts;
  1600. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1601. char *saveptr, *opt;
  1602. for (int i = 0; i < 5; ++i, ++sdf)
  1603. {
  1604. opt = strtok_r(opts, ":", &saveptr);
  1605. opts = NULL;
  1606. if (!opt)
  1607. break;
  1608. if (!opt[0])
  1609. continue;
  1610. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1611. }
  1612. free(argdup);
  1613. return NULL;
  1614. }
  1615. #endif
  1616. #ifdef USE_KLONDIKE
  1617. static char *set_klondike_options(const char *arg)
  1618. {
  1619. int hashclock;
  1620. double temptarget;
  1621. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1622. {
  1623. default:
  1624. return "Unrecognised --klondike-options";
  1625. case 2:
  1626. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1627. // fallthru
  1628. case 1:
  1629. add_set_device_option("klondike:clock=%d", hashclock);
  1630. }
  1631. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1632. return NULL;
  1633. }
  1634. #endif
  1635. __maybe_unused
  1636. static char *set_null(const char __maybe_unused *arg)
  1637. {
  1638. return NULL;
  1639. }
  1640. /* These options are available from config file or commandline */
  1641. static struct opt_table opt_config_table[] = {
  1642. #ifdef WANT_CPUMINE
  1643. OPT_WITH_ARG("--algo",
  1644. set_algo, show_algo, &opt_algo,
  1645. "Specify sha256 implementation for CPU mining:\n"
  1646. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1647. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1648. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1649. #ifdef WANT_SSE2_4WAY
  1650. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1651. #endif
  1652. #ifdef WANT_VIA_PADLOCK
  1653. "\n\tvia\t\tVIA padlock implementation"
  1654. #endif
  1655. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1656. #ifdef WANT_CRYPTOPP_ASM32
  1657. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1658. #endif
  1659. #ifdef WANT_X8632_SSE2
  1660. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1661. #endif
  1662. #ifdef WANT_X8664_SSE2
  1663. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1664. #endif
  1665. #ifdef WANT_X8664_SSE4
  1666. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1667. #endif
  1668. #ifdef WANT_ALTIVEC_4WAY
  1669. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1670. #endif
  1671. ),
  1672. OPT_WITH_ARG("-a",
  1673. set_algo, show_algo, &opt_algo,
  1674. opt_hidden),
  1675. #endif
  1676. OPT_WITH_ARG("--api-allow",
  1677. set_api_allow, NULL, NULL,
  1678. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1679. OPT_WITH_ARG("--api-description",
  1680. set_api_description, NULL, NULL,
  1681. "Description placed in the API status header, default: BFGMiner version"),
  1682. OPT_WITH_ARG("--api-groups",
  1683. set_api_groups, NULL, NULL,
  1684. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1685. OPT_WITHOUT_ARG("--api-listen",
  1686. opt_set_bool, &opt_api_listen,
  1687. "Enable API, default: disabled"),
  1688. OPT_WITHOUT_ARG("--api-mcast",
  1689. opt_set_bool, &opt_api_mcast,
  1690. "Enable API Multicast listener, default: disabled"),
  1691. OPT_WITH_ARG("--api-mcast-addr",
  1692. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1693. "API Multicast listen address"),
  1694. OPT_WITH_ARG("--api-mcast-code",
  1695. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1696. "Code expected in the API Multicast message, don't use '-'"),
  1697. OPT_WITH_ARG("--api-mcast-des",
  1698. set_api_mcast_des, NULL, NULL,
  1699. "Description appended to the API Multicast reply, default: ''"),
  1700. OPT_WITH_ARG("--api-mcast-port",
  1701. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1702. "API Multicast listen port"),
  1703. OPT_WITHOUT_ARG("--api-network",
  1704. opt_set_bool, &opt_api_network,
  1705. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1706. OPT_WITH_ARG("--api-port",
  1707. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1708. "Port number of miner API"),
  1709. #ifdef HAVE_ADL
  1710. OPT_WITHOUT_ARG("--auto-fan",
  1711. opt_set_bool, &opt_autofan,
  1712. opt_hidden),
  1713. OPT_WITHOUT_ARG("--auto-gpu",
  1714. opt_set_bool, &opt_autoengine,
  1715. opt_hidden),
  1716. #endif
  1717. OPT_WITHOUT_ARG("--balance",
  1718. set_balance, &pool_strategy,
  1719. "Change multipool strategy from failover to even share balance"),
  1720. OPT_WITHOUT_ARG("--benchmark",
  1721. opt_set_bool, &opt_benchmark,
  1722. "Run BFGMiner in benchmark mode - produces no shares"),
  1723. #if defined(USE_BITFORCE)
  1724. OPT_WITHOUT_ARG("--bfl-range",
  1725. opt_set_bool, &opt_bfl_noncerange,
  1726. "Use nonce range on bitforce devices if supported"),
  1727. #endif
  1728. #ifdef HAVE_CHROOT
  1729. OPT_WITH_ARG("--chroot-dir",
  1730. opt_set_charp, NULL, &chroot_dir,
  1731. "Chroot to a directory right after startup"),
  1732. #endif
  1733. OPT_WITH_ARG("--cmd-idle",
  1734. opt_set_charp, NULL, &cmd_idle,
  1735. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1736. OPT_WITH_ARG("--cmd-sick",
  1737. opt_set_charp, NULL, &cmd_sick,
  1738. "Execute a command when a device is declared sick"),
  1739. OPT_WITH_ARG("--cmd-dead",
  1740. opt_set_charp, NULL, &cmd_dead,
  1741. "Execute a command when a device is declared dead"),
  1742. #if BLKMAKER_VERSION > 1
  1743. OPT_WITH_ARG("--coinbase-addr",
  1744. set_b58addr, NULL, &opt_coinbase_script,
  1745. "Set coinbase payout address for solo mining"),
  1746. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1747. set_b58addr, NULL, &opt_coinbase_script,
  1748. opt_hidden),
  1749. #endif
  1750. #if BLKMAKER_VERSION > 0
  1751. OPT_WITH_ARG("--coinbase-sig",
  1752. set_strdup, NULL, &opt_coinbase_sig,
  1753. "Set coinbase signature when possible"),
  1754. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1755. set_strdup, NULL, &opt_coinbase_sig,
  1756. opt_hidden),
  1757. #endif
  1758. #ifdef HAVE_CURSES
  1759. OPT_WITHOUT_ARG("--compact",
  1760. opt_set_bool, &opt_compact,
  1761. "Use compact display without per device statistics"),
  1762. #endif
  1763. #ifdef WANT_CPUMINE
  1764. OPT_WITH_ARG("--cpu-threads",
  1765. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1766. "Number of miner CPU threads"),
  1767. OPT_WITH_ARG("-t",
  1768. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1769. opt_hidden),
  1770. #endif
  1771. OPT_WITHOUT_ARG("--debug|-D",
  1772. enable_debug, &opt_debug,
  1773. "Enable debug output"),
  1774. OPT_WITHOUT_ARG("--debuglog",
  1775. opt_set_bool, &opt_debug,
  1776. "Enable debug logging"),
  1777. OPT_WITHOUT_ARG("--device-protocol-dump",
  1778. opt_set_bool, &opt_dev_protocol,
  1779. "Verbose dump of device protocol-level activities"),
  1780. OPT_WITH_ARG("--device|-d",
  1781. set_devices, NULL, NULL,
  1782. "Enable only devices matching pattern (default: all)"),
  1783. OPT_WITHOUT_ARG("--disable-rejecting",
  1784. opt_set_bool, &opt_disable_pool,
  1785. "Automatically disable pools that continually reject shares"),
  1786. #ifdef USE_LIBMICROHTTPD
  1787. OPT_WITH_ARG("--http-port",
  1788. opt_set_intval, opt_show_intval, &httpsrv_port,
  1789. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1790. #endif
  1791. OPT_WITH_ARG("--expiry",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1793. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1794. OPT_WITH_ARG("-E",
  1795. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1796. opt_hidden),
  1797. OPT_WITH_ARG("--expiry-lp",
  1798. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1799. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1800. OPT_WITHOUT_ARG("--failover-only",
  1801. opt_set_bool, &opt_fail_only,
  1802. "Don't leak work to backup pools when primary pool is lagging"),
  1803. OPT_WITH_ARG("--failover-switch-delay",
  1804. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1805. "Delay in seconds before switching back to a failed pool"),
  1806. #ifdef USE_FPGA
  1807. OPT_WITHOUT_ARG("--force-dev-init",
  1808. opt_set_bool, &opt_force_dev_init,
  1809. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1810. #endif
  1811. #ifdef HAVE_OPENCL
  1812. OPT_WITH_ARG("--gpu-dyninterval",
  1813. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1814. opt_hidden),
  1815. OPT_WITH_ARG("--gpu-platform",
  1816. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1817. "Select OpenCL platform ID to use for GPU mining"),
  1818. OPT_WITH_ARG("--gpu-threads|-g",
  1819. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1820. opt_hidden),
  1821. #ifdef HAVE_ADL
  1822. OPT_WITH_ARG("--gpu-engine",
  1823. set_gpu_engine, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITH_ARG("--gpu-fan",
  1826. set_gpu_fan, NULL, NULL,
  1827. opt_hidden),
  1828. OPT_WITH_ARG("--gpu-map",
  1829. set_gpu_map, NULL, NULL,
  1830. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1831. OPT_WITH_ARG("--gpu-memclock",
  1832. set_gpu_memclock, NULL, NULL,
  1833. opt_hidden),
  1834. OPT_WITH_ARG("--gpu-memdiff",
  1835. set_gpu_memdiff, NULL, NULL,
  1836. opt_hidden),
  1837. OPT_WITH_ARG("--gpu-powertune",
  1838. set_gpu_powertune, NULL, NULL,
  1839. opt_hidden),
  1840. OPT_WITHOUT_ARG("--gpu-reorder",
  1841. opt_set_bool, &opt_reorder,
  1842. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1843. OPT_WITH_ARG("--gpu-vddc",
  1844. set_gpu_vddc, NULL, NULL,
  1845. opt_hidden),
  1846. #endif
  1847. #ifdef USE_SCRYPT
  1848. OPT_WITH_ARG("--lookup-gap",
  1849. set_lookup_gap, NULL, NULL,
  1850. opt_hidden),
  1851. #endif
  1852. OPT_WITH_ARG("--intensity|-I",
  1853. set_intensity, NULL, NULL,
  1854. opt_hidden),
  1855. #endif
  1856. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1857. OPT_WITH_ARG("--kernel-path",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. "Specify a path to where bitstream and kernel files are"),
  1860. OPT_WITH_ARG("-K",
  1861. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1862. opt_hidden),
  1863. #endif
  1864. #ifdef HAVE_OPENCL
  1865. OPT_WITH_ARG("--kernel|-k",
  1866. set_kernel, NULL, NULL,
  1867. opt_hidden),
  1868. #endif
  1869. #ifdef USE_ICARUS
  1870. OPT_WITH_ARG("--icarus-options",
  1871. set_icarus_options, NULL, NULL,
  1872. opt_hidden),
  1873. OPT_WITH_ARG("--icarus-timing",
  1874. set_icarus_timing, NULL, NULL,
  1875. opt_hidden),
  1876. #endif
  1877. #ifdef USE_AVALON
  1878. OPT_WITH_ARG("--avalon-options",
  1879. set_avalon_options, NULL, NULL,
  1880. opt_hidden),
  1881. #endif
  1882. #ifdef USE_KLONDIKE
  1883. OPT_WITH_ARG("--klondike-options",
  1884. set_klondike_options, NULL, NULL,
  1885. "Set klondike options clock:temptarget"),
  1886. #endif
  1887. OPT_WITHOUT_ARG("--load-balance",
  1888. set_loadbalance, &pool_strategy,
  1889. "Change multipool strategy from failover to quota based balance"),
  1890. OPT_WITH_ARG("--log|-l",
  1891. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1892. "Interval in seconds between log output"),
  1893. OPT_WITH_ARG("--log-file|-L",
  1894. set_log_file, NULL, NULL,
  1895. "Append log file for output messages"),
  1896. OPT_WITH_ARG("--logfile",
  1897. set_log_file, NULL, NULL,
  1898. opt_hidden),
  1899. OPT_WITHOUT_ARG("--log-microseconds",
  1900. opt_set_bool, &opt_log_microseconds,
  1901. "Include microseconds in log output"),
  1902. #if defined(unix) || defined(__APPLE__)
  1903. OPT_WITH_ARG("--monitor|-m",
  1904. opt_set_charp, NULL, &opt_stderr_cmd,
  1905. "Use custom pipe cmd for output messages"),
  1906. #endif // defined(unix)
  1907. OPT_WITHOUT_ARG("--net-delay",
  1908. opt_set_bool, &opt_delaynet,
  1909. "Impose small delays in networking to avoid overloading slow routers"),
  1910. OPT_WITHOUT_ARG("--no-adl",
  1911. opt_set_bool, &opt_noadl,
  1912. #ifdef HAVE_ADL
  1913. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1914. #else
  1915. opt_hidden
  1916. #endif
  1917. ),
  1918. OPT_WITHOUT_ARG("--no-gbt",
  1919. opt_set_invbool, &want_gbt,
  1920. "Disable getblocktemplate support"),
  1921. OPT_WITHOUT_ARG("--no-getwork",
  1922. opt_set_invbool, &want_getwork,
  1923. "Disable getwork support"),
  1924. OPT_WITHOUT_ARG("--no-hotplug",
  1925. #ifdef HAVE_BFG_HOTPLUG
  1926. opt_set_invbool, &opt_hotplug,
  1927. "Disable hotplug detection"
  1928. #else
  1929. set_null, &opt_hotplug,
  1930. opt_hidden
  1931. #endif
  1932. ),
  1933. OPT_WITHOUT_ARG("--no-longpoll",
  1934. opt_set_invbool, &want_longpoll,
  1935. "Disable X-Long-Polling support"),
  1936. OPT_WITHOUT_ARG("--no-pool-disable",
  1937. opt_set_invbool, &opt_disable_pool,
  1938. opt_hidden),
  1939. OPT_WITHOUT_ARG("--no-client-reconnect",
  1940. opt_set_invbool, &opt_disable_client_reconnect,
  1941. opt_hidden),
  1942. OPT_WITHOUT_ARG("--no-pool-redirect",
  1943. disable_pool_redirect, NULL,
  1944. "Ignore pool requests to redirect to another server"),
  1945. OPT_WITHOUT_ARG("--no-restart",
  1946. opt_set_invbool, &opt_restart,
  1947. "Do not attempt to restart devices that hang"
  1948. ),
  1949. OPT_WITHOUT_ARG("--no-show-processors",
  1950. opt_set_invbool, &opt_show_procs,
  1951. opt_hidden),
  1952. OPT_WITHOUT_ARG("--no-show-procs",
  1953. opt_set_invbool, &opt_show_procs,
  1954. opt_hidden),
  1955. OPT_WITHOUT_ARG("--no-stratum",
  1956. opt_set_invbool, &want_stratum,
  1957. "Disable Stratum detection"),
  1958. OPT_WITHOUT_ARG("--no-submit-stale",
  1959. opt_set_invbool, &opt_submit_stale,
  1960. "Don't submit shares if they are detected as stale"),
  1961. #ifdef HAVE_OPENCL
  1962. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1963. set_no_opencl_binaries, NULL,
  1964. opt_hidden),
  1965. #endif
  1966. OPT_WITHOUT_ARG("--no-unicode",
  1967. #ifdef USE_UNICODE
  1968. opt_set_invbool, &use_unicode,
  1969. "Don't use Unicode characters in TUI"
  1970. #else
  1971. set_null, &use_unicode,
  1972. opt_hidden
  1973. #endif
  1974. ),
  1975. OPT_WITH_ARG("--noncelog",
  1976. set_noncelog, NULL, NULL,
  1977. "Create log of all nonces found"),
  1978. OPT_WITH_ARG("--pass|-p",
  1979. set_pass, NULL, NULL,
  1980. "Password for bitcoin JSON-RPC server"),
  1981. OPT_WITHOUT_ARG("--per-device-stats",
  1982. opt_set_bool, &want_per_device_stats,
  1983. "Force verbose mode and output per-device statistics"),
  1984. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1985. set_userpass, NULL, NULL,
  1986. opt_hidden),
  1987. OPT_WITH_ARG("--pool-priority",
  1988. set_pool_priority, NULL, NULL,
  1989. "Priority for just the previous-defined pool"),
  1990. OPT_WITH_ARG("--pool-proxy|-x",
  1991. set_pool_proxy, NULL, NULL,
  1992. "Proxy URI to use for connecting to just the previous-defined pool"),
  1993. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1994. set_pool_force_rollntime, NULL, NULL,
  1995. opt_hidden),
  1996. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1997. opt_set_bool, &opt_protocol,
  1998. "Verbose dump of protocol-level activities"),
  1999. OPT_WITH_ARG("--queue|-Q",
  2000. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2001. "Minimum number of work items to have queued (0+)"),
  2002. OPT_WITHOUT_ARG("--quiet|-q",
  2003. opt_set_bool, &opt_quiet,
  2004. "Disable logging output, display status and errors"),
  2005. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2006. opt_set_bool, &opt_quiet_work_updates,
  2007. opt_hidden),
  2008. OPT_WITH_ARG("--quit-summary",
  2009. set_quit_summary, NULL, NULL,
  2010. "Summary printed when you quit: none/devs/procs/detailed"),
  2011. OPT_WITH_ARG("--quota|-U",
  2012. set_quota, NULL, NULL,
  2013. "quota;URL combination for server with load-balance strategy quotas"),
  2014. OPT_WITHOUT_ARG("--real-quiet",
  2015. opt_set_bool, &opt_realquiet,
  2016. "Disable all output"),
  2017. OPT_WITH_ARG("--request-diff",
  2018. set_request_diff, opt_show_floatval, &request_pdiff,
  2019. "Request a specific difficulty from pools"),
  2020. OPT_WITH_ARG("--retries",
  2021. opt_set_intval, opt_show_intval, &opt_retries,
  2022. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2023. OPT_WITH_ARG("--retry-pause",
  2024. set_null, NULL, NULL,
  2025. opt_hidden),
  2026. OPT_WITH_ARG("--rotate",
  2027. set_rotate, opt_show_intval, &opt_rotate_period,
  2028. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2029. OPT_WITHOUT_ARG("--round-robin",
  2030. set_rr, &pool_strategy,
  2031. "Change multipool strategy from failover to round robin on failure"),
  2032. OPT_WITH_ARG("--scan|-S",
  2033. add_serial, NULL, NULL,
  2034. "Configure how to scan for mining devices"),
  2035. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2036. add_serial, NULL, NULL,
  2037. opt_hidden),
  2038. OPT_WITH_ARG("--scan-time",
  2039. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2040. "Upper bound on time spent scanning current work, in seconds"),
  2041. OPT_WITH_ARG("-s",
  2042. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2043. opt_hidden),
  2044. OPT_WITH_ARG("--scantime",
  2045. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2046. opt_hidden),
  2047. OPT_WITH_ARG("--sched-start",
  2048. set_schedtime, NULL, &schedstart,
  2049. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2050. OPT_WITH_ARG("--sched-stop",
  2051. set_schedtime, NULL, &schedstop,
  2052. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2053. #ifdef USE_SCRYPT
  2054. OPT_WITHOUT_ARG("--scrypt",
  2055. opt_set_bool, &opt_scrypt,
  2056. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2057. #endif
  2058. OPT_WITH_ARG("--set-device|--set",
  2059. opt_string_elist_add, NULL, &opt_set_device_list,
  2060. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2061. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2062. OPT_WITH_ARG("--shaders",
  2063. set_shaders, NULL, NULL,
  2064. opt_hidden),
  2065. #endif
  2066. #ifdef HAVE_PWD_H
  2067. OPT_WITH_ARG("--setuid",
  2068. opt_set_charp, NULL, &opt_setuid,
  2069. "Username of an unprivileged user to run as"),
  2070. #endif
  2071. OPT_WITH_ARG("--sharelog",
  2072. set_sharelog, NULL, NULL,
  2073. "Append share log to file"),
  2074. OPT_WITH_ARG("--shares",
  2075. opt_set_floatval, NULL, &opt_shares,
  2076. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2077. OPT_WITHOUT_ARG("--show-processors",
  2078. opt_set_bool, &opt_show_procs,
  2079. "Show per processor statistics in summary"),
  2080. OPT_WITHOUT_ARG("--show-procs",
  2081. opt_set_bool, &opt_show_procs,
  2082. opt_hidden),
  2083. OPT_WITH_ARG("--skip-security-checks",
  2084. set_int_0_to_9999, NULL, &opt_skip_checks,
  2085. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2086. OPT_WITH_ARG("--socks-proxy",
  2087. opt_set_charp, NULL, &opt_socks_proxy,
  2088. "Set socks proxy (host:port)"),
  2089. #ifdef USE_LIBEVENT
  2090. OPT_WITH_ARG("--stratum-port",
  2091. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2092. "Port number to listen on for stratum miners (-1 means disabled)"),
  2093. #endif
  2094. OPT_WITHOUT_ARG("--submit-stale",
  2095. opt_set_bool, &opt_submit_stale,
  2096. opt_hidden),
  2097. OPT_WITH_ARG("--submit-threads",
  2098. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2099. "Minimum number of concurrent share submissions (default: 64)"),
  2100. #ifdef HAVE_SYSLOG_H
  2101. OPT_WITHOUT_ARG("--syslog",
  2102. opt_set_bool, &use_syslog,
  2103. "Use system log for output messages (default: standard error)"),
  2104. #endif
  2105. OPT_WITH_ARG("--temp-cutoff",
  2106. set_temp_cutoff, NULL, &opt_cutofftemp,
  2107. opt_hidden),
  2108. OPT_WITH_ARG("--temp-hysteresis",
  2109. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2110. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2111. #ifdef HAVE_ADL
  2112. OPT_WITH_ARG("--temp-overheat",
  2113. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2114. opt_hidden),
  2115. #endif
  2116. OPT_WITH_ARG("--temp-target",
  2117. set_temp_target, NULL, NULL,
  2118. opt_hidden),
  2119. OPT_WITHOUT_ARG("--text-only|-T",
  2120. opt_set_invbool, &use_curses,
  2121. #ifdef HAVE_CURSES
  2122. "Disable ncurses formatted screen output"
  2123. #else
  2124. opt_hidden
  2125. #endif
  2126. ),
  2127. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2128. OPT_WITH_ARG("--thread-concurrency",
  2129. set_thread_concurrency, NULL, NULL,
  2130. opt_hidden),
  2131. #endif
  2132. #ifdef USE_UNICODE
  2133. OPT_WITHOUT_ARG("--unicode",
  2134. opt_set_bool, &use_unicode,
  2135. "Use Unicode characters in TUI"),
  2136. #endif
  2137. OPT_WITH_ARG("--url|-o",
  2138. set_url, NULL, NULL,
  2139. "URL for bitcoin JSON-RPC server"),
  2140. OPT_WITH_ARG("--user|-u",
  2141. set_user, NULL, NULL,
  2142. "Username for bitcoin JSON-RPC server"),
  2143. #ifdef HAVE_OPENCL
  2144. OPT_WITH_ARG("--vectors|-v",
  2145. set_vector, NULL, NULL,
  2146. opt_hidden),
  2147. #endif
  2148. OPT_WITHOUT_ARG("--verbose",
  2149. opt_set_bool, &opt_log_output,
  2150. "Log verbose output to stderr as well as status output"),
  2151. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2152. opt_set_invbool, &opt_quiet_work_updates,
  2153. opt_hidden),
  2154. OPT_WITHOUT_ARG("--weighed-stats",
  2155. opt_set_bool, &opt_weighed_stats,
  2156. "Display statistics weighed to difficulty 1"),
  2157. #ifdef HAVE_OPENCL
  2158. OPT_WITH_ARG("--worksize|-w",
  2159. set_worksize, NULL, NULL,
  2160. opt_hidden),
  2161. #endif
  2162. OPT_WITHOUT_ARG("--unittest",
  2163. opt_set_bool, &opt_unittest, opt_hidden),
  2164. OPT_WITH_ARG("--userpass|-O",
  2165. set_userpass, NULL, NULL,
  2166. "Username:Password pair for bitcoin JSON-RPC server"),
  2167. OPT_WITHOUT_ARG("--worktime",
  2168. opt_set_bool, &opt_worktime,
  2169. "Display extra work time debug information"),
  2170. OPT_WITH_ARG("--pools",
  2171. opt_set_bool, NULL, NULL, opt_hidden),
  2172. OPT_ENDTABLE
  2173. };
  2174. static char *load_config(const char *arg, void __maybe_unused *unused);
  2175. static int fileconf_load;
  2176. static char *parse_config(json_t *config, bool fileconf)
  2177. {
  2178. static char err_buf[200];
  2179. struct opt_table *opt;
  2180. json_t *val;
  2181. if (fileconf && !fileconf_load)
  2182. fileconf_load = 1;
  2183. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2184. char *p, *name, *sp;
  2185. /* We don't handle subtables. */
  2186. assert(!(opt->type & OPT_SUBTABLE));
  2187. if (!opt->names)
  2188. continue;
  2189. /* Pull apart the option name(s). */
  2190. name = strdup(opt->names);
  2191. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2192. char *err = "Invalid value";
  2193. /* Ignore short options. */
  2194. if (p[1] != '-')
  2195. continue;
  2196. val = json_object_get(config, p+2);
  2197. if (!val)
  2198. continue;
  2199. if (opt->type & OPT_HASARG) {
  2200. if (json_is_string(val)) {
  2201. err = opt->cb_arg(json_string_value(val),
  2202. opt->u.arg);
  2203. } else if (json_is_number(val)) {
  2204. char buf[256], *p, *q;
  2205. snprintf(buf, 256, "%f", json_number_value(val));
  2206. if ( (p = strchr(buf, '.')) ) {
  2207. // Trim /\.0*$/ to work properly with integer-only arguments
  2208. q = p;
  2209. while (*(++q) == '0') {}
  2210. if (*q == '\0')
  2211. *p = '\0';
  2212. }
  2213. err = opt->cb_arg(buf, opt->u.arg);
  2214. } else if (json_is_array(val)) {
  2215. int n, size = json_array_size(val);
  2216. err = NULL;
  2217. for (n = 0; n < size && !err; n++) {
  2218. if (json_is_string(json_array_get(val, n)))
  2219. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2220. else if (json_is_object(json_array_get(val, n)))
  2221. err = parse_config(json_array_get(val, n), false);
  2222. }
  2223. }
  2224. } else if (opt->type & OPT_NOARG) {
  2225. if (json_is_true(val))
  2226. err = opt->cb(opt->u.arg);
  2227. else if (json_is_boolean(val)) {
  2228. if (opt->cb == (void*)opt_set_bool)
  2229. err = opt_set_invbool(opt->u.arg);
  2230. else if (opt->cb == (void*)opt_set_invbool)
  2231. err = opt_set_bool(opt->u.arg);
  2232. }
  2233. }
  2234. if (err) {
  2235. /* Allow invalid values to be in configuration
  2236. * file, just skipping over them provided the
  2237. * JSON is still valid after that. */
  2238. if (fileconf) {
  2239. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2240. fileconf_load = -1;
  2241. } else {
  2242. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2243. p, err);
  2244. return err_buf;
  2245. }
  2246. }
  2247. }
  2248. free(name);
  2249. }
  2250. val = json_object_get(config, JSON_INCLUDE_CONF);
  2251. if (val && json_is_string(val))
  2252. return load_config(json_string_value(val), NULL);
  2253. return NULL;
  2254. }
  2255. char *cnfbuf = NULL;
  2256. static char *load_config(const char *arg, void __maybe_unused *unused)
  2257. {
  2258. json_error_t err;
  2259. json_t *config;
  2260. char *json_error;
  2261. size_t siz;
  2262. if (!cnfbuf)
  2263. cnfbuf = strdup(arg);
  2264. if (++include_count > JSON_MAX_DEPTH)
  2265. return JSON_MAX_DEPTH_ERR;
  2266. #if JANSSON_MAJOR_VERSION > 1
  2267. config = json_load_file(arg, 0, &err);
  2268. #else
  2269. config = json_load_file(arg, &err);
  2270. #endif
  2271. if (!json_is_object(config)) {
  2272. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2273. json_error = malloc(siz);
  2274. if (!json_error)
  2275. quit(1, "Malloc failure in json error");
  2276. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2277. return json_error;
  2278. }
  2279. config_loaded = true;
  2280. /* Parse the config now, so we can override it. That can keep pointers
  2281. * so don't free config object. */
  2282. return parse_config(config, true);
  2283. }
  2284. static void load_default_config(void)
  2285. {
  2286. cnfbuf = malloc(PATH_MAX);
  2287. #if defined(unix)
  2288. if (getenv("HOME") && *getenv("HOME")) {
  2289. strcpy(cnfbuf, getenv("HOME"));
  2290. strcat(cnfbuf, "/");
  2291. } else
  2292. strcpy(cnfbuf, "");
  2293. char *dirp = cnfbuf + strlen(cnfbuf);
  2294. strcpy(dirp, ".bfgminer/");
  2295. strcat(dirp, def_conf);
  2296. if (access(cnfbuf, R_OK))
  2297. // No BFGMiner config, try Cgminer's...
  2298. strcpy(dirp, ".cgminer/cgminer.conf");
  2299. #else
  2300. strcpy(cnfbuf, "");
  2301. strcat(cnfbuf, def_conf);
  2302. #endif
  2303. if (!access(cnfbuf, R_OK))
  2304. load_config(cnfbuf, NULL);
  2305. else {
  2306. free(cnfbuf);
  2307. cnfbuf = NULL;
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are parsed before anything else */
  2323. static struct opt_table opt_early_table[] = {
  2324. OPT_EARLY_WITH_ARG("--config|-c",
  2325. set_bool_ignore_arg, NULL, &config_loaded,
  2326. opt_hidden),
  2327. OPT_EARLY_WITHOUT_ARG("--no-config",
  2328. opt_set_bool, &config_loaded,
  2329. "Inhibit loading default config file"),
  2330. OPT_ENDTABLE
  2331. };
  2332. /* These options are available from commandline only */
  2333. static struct opt_table opt_cmdline_table[] = {
  2334. OPT_WITH_ARG("--config|-c",
  2335. load_config, NULL, NULL,
  2336. "Load a JSON-format configuration file\n"
  2337. "See example.conf for an example configuration."),
  2338. OPT_EARLY_WITHOUT_ARG("--no-config",
  2339. opt_set_bool, &config_loaded,
  2340. "Inhibit loading default config file"),
  2341. OPT_WITHOUT_ARG("--help|-h",
  2342. opt_verusage_and_exit, NULL,
  2343. "Print this message"),
  2344. #ifdef HAVE_OPENCL
  2345. OPT_WITHOUT_ARG("--ndevs|-n",
  2346. print_ndevs_and_exit, &nDevs,
  2347. opt_hidden),
  2348. #endif
  2349. OPT_WITHOUT_ARG("--version|-V",
  2350. opt_version_and_exit, packagename,
  2351. "Display version and exit"),
  2352. OPT_ENDTABLE
  2353. };
  2354. static bool jobj_binary(const json_t *obj, const char *key,
  2355. void *buf, size_t buflen, bool required)
  2356. {
  2357. const char *hexstr;
  2358. json_t *tmp;
  2359. tmp = json_object_get(obj, key);
  2360. if (unlikely(!tmp)) {
  2361. if (unlikely(required))
  2362. applog(LOG_ERR, "JSON key '%s' not found", key);
  2363. return false;
  2364. }
  2365. hexstr = json_string_value(tmp);
  2366. if (unlikely(!hexstr)) {
  2367. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2368. return false;
  2369. }
  2370. if (!hex2bin(buf, hexstr, buflen))
  2371. return false;
  2372. return true;
  2373. }
  2374. static void calc_midstate(struct work *work)
  2375. {
  2376. union {
  2377. unsigned char c[64];
  2378. uint32_t i[16];
  2379. } data;
  2380. swap32yes(&data.i[0], work->data, 16);
  2381. sha256_ctx ctx;
  2382. sha256_init(&ctx);
  2383. sha256_update(&ctx, data.c, 64);
  2384. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2385. swap32tole(work->midstate, work->midstate, 8);
  2386. }
  2387. static
  2388. struct bfg_tmpl_ref *tmpl_makeref(blktemplate_t * const tmpl)
  2389. {
  2390. struct bfg_tmpl_ref * const tr = malloc(sizeof(*tr));
  2391. *tr = (struct bfg_tmpl_ref){
  2392. .tmpl = tmpl,
  2393. .refcount = 1,
  2394. };
  2395. mutex_init(&tr->mutex);
  2396. return tr;
  2397. }
  2398. static
  2399. void tmpl_incref(struct bfg_tmpl_ref * const tr)
  2400. {
  2401. mutex_lock(&tr->mutex);
  2402. ++tr->refcount;
  2403. mutex_unlock(&tr->mutex);
  2404. }
  2405. void tmpl_decref(struct bfg_tmpl_ref * const tr)
  2406. {
  2407. mutex_lock(&tr->mutex);
  2408. bool free_tmpl = !--tr->refcount;
  2409. mutex_unlock(&tr->mutex);
  2410. if (free_tmpl)
  2411. {
  2412. blktmpl_free(tr->tmpl);
  2413. mutex_destroy(&tr->mutex);
  2414. free(tr);
  2415. }
  2416. }
  2417. static struct work *make_work(void)
  2418. {
  2419. struct work *work = calloc(1, sizeof(struct work));
  2420. if (unlikely(!work))
  2421. quit(1, "Failed to calloc work in make_work");
  2422. cg_wlock(&control_lock);
  2423. work->id = total_work++;
  2424. cg_wunlock(&control_lock);
  2425. return work;
  2426. }
  2427. /* This is the central place all work that is about to be retired should be
  2428. * cleaned to remove any dynamically allocated arrays within the struct */
  2429. void clean_work(struct work *work)
  2430. {
  2431. free(work->job_id);
  2432. bytes_free(&work->nonce2);
  2433. free(work->nonce1);
  2434. if (work->device_data_free_func)
  2435. work->device_data_free_func(work);
  2436. if (work->tr)
  2437. tmpl_decref(work->tr);
  2438. memset(work, 0, sizeof(struct work));
  2439. }
  2440. /* All dynamically allocated work structs should be freed here to not leak any
  2441. * ram from arrays allocated within the work struct */
  2442. void free_work(struct work *work)
  2443. {
  2444. clean_work(work);
  2445. free(work);
  2446. }
  2447. 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";
  2448. // Must only be called with ch_lock held!
  2449. static
  2450. void __update_block_title(const unsigned char *hash_swap)
  2451. {
  2452. if (hash_swap) {
  2453. char tmp[17];
  2454. // Only provided when the block has actually changed
  2455. free(current_hash);
  2456. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2457. bin2hex(tmp, &hash_swap[24], 8);
  2458. memset(current_hash, '.', 3);
  2459. memcpy(&current_hash[3], tmp, 17);
  2460. known_blkheight_current = false;
  2461. } else if (likely(known_blkheight_current)) {
  2462. return;
  2463. }
  2464. if (current_block_id == known_blkheight_blkid) {
  2465. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2466. if (known_blkheight < 1000000) {
  2467. memmove(&current_hash[3], &current_hash[11], 8);
  2468. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2469. }
  2470. known_blkheight_current = true;
  2471. }
  2472. }
  2473. static
  2474. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2475. {
  2476. if (known_blkheight == blkheight)
  2477. return;
  2478. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2479. cg_wlock(&ch_lock);
  2480. known_blkheight = blkheight;
  2481. known_blkheight_blkid = block_id;
  2482. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2483. if (block_id == current_block_id)
  2484. __update_block_title(NULL);
  2485. cg_wunlock(&ch_lock);
  2486. }
  2487. static
  2488. void pool_set_opaque(struct pool *pool, bool opaque)
  2489. {
  2490. if (pool->swork.opaque == opaque)
  2491. return;
  2492. pool->swork.opaque = opaque;
  2493. if (opaque)
  2494. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2495. pool->pool_no);
  2496. else
  2497. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2498. pool->pool_no);
  2499. }
  2500. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2501. {
  2502. const char *p = strchr(pool->rpc_url, '#');
  2503. if (unlikely(p && strstr(&p[1], "redirect")))
  2504. return true;
  2505. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2506. }
  2507. void set_simple_ntime_roll_limit(struct ntime_roll_limits * const nrl, const uint32_t ntime_base, const int ntime_roll)
  2508. {
  2509. *nrl = (struct ntime_roll_limits){
  2510. .min = ntime_base,
  2511. .max = ntime_base + ntime_roll,
  2512. .minoff = -ntime_roll,
  2513. .maxoff = ntime_roll,
  2514. };
  2515. }
  2516. void work_set_simple_ntime_roll_limit(struct work * const work, const int ntime_roll)
  2517. {
  2518. set_simple_ntime_roll_limit(&work->ntime_roll_limits, upk_u32be(work->data, 0x44), ntime_roll);
  2519. }
  2520. static double target_diff(const unsigned char *);
  2521. #define GBT_XNONCESZ (sizeof(uint32_t))
  2522. #if BLKMAKER_VERSION > 4
  2523. #define blkmk_append_coinbase_safe(tmpl, append, appendsz) \
  2524. blkmk_append_coinbase_safe2(tmpl, append, appendsz, GBT_XNONCESZ, false)
  2525. #endif
  2526. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2527. {
  2528. json_t *res_val = json_object_get(val, "result");
  2529. json_t *tmp_val;
  2530. bool ret = false;
  2531. struct timeval tv_now;
  2532. if (unlikely(detect_algo == 1)) {
  2533. json_t *tmp = json_object_get(res_val, "algorithm");
  2534. const char *v = tmp ? json_string_value(tmp) : "";
  2535. if (strncasecmp(v, "scrypt", 6))
  2536. detect_algo = 2;
  2537. }
  2538. timer_set_now(&tv_now);
  2539. if (work->tr)
  2540. {
  2541. blktemplate_t * const tmpl = work->tr->tmpl;
  2542. const char *err = blktmpl_add_jansson(tmpl, res_val, tv_now.tv_sec);
  2543. if (err) {
  2544. applog(LOG_ERR, "blktmpl error: %s", err);
  2545. return false;
  2546. }
  2547. work->rolltime = blkmk_time_left(tmpl, tv_now.tv_sec);
  2548. #if BLKMAKER_VERSION > 1
  2549. if (opt_coinbase_script.sz)
  2550. {
  2551. bool newcb;
  2552. #if BLKMAKER_VERSION > 2
  2553. blkmk_init_generation2(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2554. #else
  2555. newcb = !tmpl->cbtxn;
  2556. blkmk_init_generation(tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2557. #endif
  2558. if (newcb)
  2559. {
  2560. ssize_t ae = blkmk_append_coinbase_safe(tmpl, &template_nonce, sizeof(template_nonce));
  2561. if (ae < (ssize_t)sizeof(template_nonce))
  2562. 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);
  2563. ++template_nonce;
  2564. }
  2565. }
  2566. #endif
  2567. #if BLKMAKER_VERSION > 0
  2568. {
  2569. ssize_t ae = blkmk_append_coinbase_safe(tmpl, opt_coinbase_sig, 101);
  2570. static bool appenderr = false;
  2571. if (ae <= 0) {
  2572. if (opt_coinbase_sig) {
  2573. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2574. appenderr = true;
  2575. }
  2576. } else if (ae >= 3 || opt_coinbase_sig) {
  2577. const char *cbappend = opt_coinbase_sig;
  2578. const char full[] = PACKAGE " " VERSION;
  2579. if (!cbappend) {
  2580. if ((size_t)ae >= sizeof(full) - 1)
  2581. cbappend = full;
  2582. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2583. cbappend = PACKAGE;
  2584. else
  2585. cbappend = "BFG";
  2586. }
  2587. size_t cbappendsz = strlen(cbappend);
  2588. static bool truncatewarning = false;
  2589. if (cbappendsz <= (size_t)ae) {
  2590. if (cbappendsz < (size_t)ae)
  2591. // If we have space, include the trailing \0
  2592. ++cbappendsz;
  2593. ae = cbappendsz;
  2594. truncatewarning = false;
  2595. } else {
  2596. char *tmp = malloc(ae + 1);
  2597. memcpy(tmp, opt_coinbase_sig, ae);
  2598. tmp[ae] = '\0';
  2599. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2600. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2601. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2602. free(tmp);
  2603. truncatewarning = true;
  2604. }
  2605. ae = blkmk_append_coinbase_safe(tmpl, cbappend, ae);
  2606. if (ae <= 0) {
  2607. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2608. appenderr = true;
  2609. } else
  2610. appenderr = false;
  2611. }
  2612. }
  2613. #endif
  2614. if (blkmk_get_data(tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2615. return false;
  2616. swap32yes(work->data, work->data, 80 / 4);
  2617. memcpy(&work->data[80], workpadding_bin, 48);
  2618. work->ntime_roll_limits = (struct ntime_roll_limits){
  2619. .min = tmpl->mintime,
  2620. .max = tmpl->maxtime,
  2621. .minoff = tmpl->mintimeoff,
  2622. .maxoff = tmpl->maxtimeoff,
  2623. };
  2624. const struct blktmpl_longpoll_req *lp;
  2625. if ((lp = blktmpl_get_longpoll(tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2626. free(pool->lp_id);
  2627. pool->lp_id = strdup(lp->id);
  2628. #if 0 /* This just doesn't work :( */
  2629. curl_socket_t sock = pool->lp_socket;
  2630. if (sock != CURL_SOCKET_BAD) {
  2631. pool->lp_socket = CURL_SOCKET_BAD;
  2632. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2633. shutdown(sock, SHUT_RDWR);
  2634. }
  2635. #endif
  2636. }
  2637. }
  2638. else
  2639. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2640. applog(LOG_ERR, "JSON inval data");
  2641. return false;
  2642. }
  2643. else
  2644. work_set_simple_ntime_roll_limit(work, 0);
  2645. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2646. // Calculate it ourselves
  2647. applog(LOG_DEBUG, "Calculating midstate locally");
  2648. calc_midstate(work);
  2649. }
  2650. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2651. applog(LOG_ERR, "JSON inval target");
  2652. return false;
  2653. }
  2654. if (work->tr)
  2655. {
  2656. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2657. {
  2658. int p = (sizeof(work->target) - 1) - i;
  2659. unsigned char c = work->target[i];
  2660. work->target[i] = work->target[p];
  2661. work->target[p] = c;
  2662. }
  2663. }
  2664. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2665. uint32_t blkheight = json_number_value(tmp_val);
  2666. uint32_t block_id = ((uint32_t*)work->data)[1];
  2667. have_block_height(block_id, blkheight);
  2668. }
  2669. memset(work->hash, 0, sizeof(work->hash));
  2670. work->tv_staged = tv_now;
  2671. #if BLKMAKER_VERSION > 4
  2672. if (work->tr)
  2673. {
  2674. blktemplate_t * const tmpl = work->tr->tmpl;
  2675. uint8_t buf[80];
  2676. int16_t expire;
  2677. uint8_t *cbtxn;
  2678. size_t cbtxnsz;
  2679. size_t cbextranonceoffset;
  2680. int branchcount;
  2681. libblkmaker_hash_t *branches;
  2682. if (blkmk_get_mdata(tmpl, buf, sizeof(buf), tv_now.tv_sec, &expire, &cbtxn, &cbtxnsz, &cbextranonceoffset, &branchcount, &branches, GBT_XNONCESZ, false))
  2683. {
  2684. struct stratum_work * const swork = &pool->swork;
  2685. const size_t branchdatasz = branchcount * 0x20;
  2686. cg_wlock(&pool->data_lock);
  2687. swork->tr = work->tr;
  2688. bytes_assimilate_raw(&swork->coinbase, cbtxn, cbtxnsz, cbtxnsz);
  2689. swork->nonce2_offset = cbextranonceoffset;
  2690. bytes_assimilate_raw(&swork->merkle_bin, branches, branchdatasz, branchdatasz);
  2691. swork->merkles = branchcount;
  2692. memcpy(swork->header1, &buf[0], 36);
  2693. swork->ntime = le32toh(*(uint32_t *)(&buf[68]));
  2694. swork->tv_received = tv_now;
  2695. memcpy(swork->diffbits, &buf[72], 4);
  2696. memcpy(swork->target, work->target, sizeof(swork->target));
  2697. free(swork->job_id);
  2698. swork->job_id = NULL;
  2699. swork->clean = true;
  2700. swork->work_restart_id = pool->work_restart_id;
  2701. // FIXME: Do something with expire
  2702. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  2703. pool->nonce2 = 0;
  2704. cg_wunlock(&pool->data_lock);
  2705. }
  2706. else
  2707. applog(LOG_DEBUG, "blkmk_get_mdata failed for pool %u", pool->pool_no);
  2708. }
  2709. #endif // BLKMAKER_VERSION > 4
  2710. pool_set_opaque(pool, !work->tr);
  2711. ret = true;
  2712. return ret;
  2713. }
  2714. /* Returns whether the pool supports local work generation or not. */
  2715. static bool pool_localgen(struct pool *pool)
  2716. {
  2717. return (pool->last_work_copy || pool->has_stratum);
  2718. }
  2719. int dev_from_id(int thr_id)
  2720. {
  2721. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2722. return cgpu->device_id;
  2723. }
  2724. /* Create an exponentially decaying average over the opt_log_interval */
  2725. void decay_time(double *f, double fadd, double fsecs)
  2726. {
  2727. double ftotal, fprop;
  2728. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2729. ftotal = 1.0 + fprop;
  2730. *f += (fadd * fprop);
  2731. *f /= ftotal;
  2732. }
  2733. static int __total_staged(void)
  2734. {
  2735. return HASH_COUNT(staged_work);
  2736. }
  2737. static int total_staged(void)
  2738. {
  2739. int ret;
  2740. mutex_lock(stgd_lock);
  2741. ret = __total_staged();
  2742. mutex_unlock(stgd_lock);
  2743. return ret;
  2744. }
  2745. #ifdef HAVE_CURSES
  2746. WINDOW *mainwin, *statuswin, *logwin;
  2747. #endif
  2748. double total_secs = 1.0;
  2749. static char statusline[256];
  2750. /* logstart is where the log window should start */
  2751. static int devcursor, logstart, logcursor;
  2752. #ifdef HAVE_CURSES
  2753. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2754. static int statusy;
  2755. static int devsummaryYOffset;
  2756. static int total_lines;
  2757. #endif
  2758. #ifdef HAVE_OPENCL
  2759. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2760. #endif
  2761. struct cgpu_info *cpus;
  2762. bool _bfg_console_cancel_disabled;
  2763. int _bfg_console_prev_cancelstate;
  2764. #ifdef HAVE_CURSES
  2765. #define lock_curses() bfg_console_lock()
  2766. #define unlock_curses() bfg_console_unlock()
  2767. static bool curses_active_locked(void)
  2768. {
  2769. bool ret;
  2770. lock_curses();
  2771. ret = curses_active;
  2772. if (!ret)
  2773. unlock_curses();
  2774. return ret;
  2775. }
  2776. // Cancellable getch
  2777. int my_cancellable_getch(void)
  2778. {
  2779. // This only works because the macro only hits direct getch() calls
  2780. typedef int (*real_getch_t)(void);
  2781. const real_getch_t real_getch = __real_getch;
  2782. int type, rv;
  2783. bool sct;
  2784. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2785. rv = real_getch();
  2786. if (sct)
  2787. pthread_setcanceltype(type, &type);
  2788. return rv;
  2789. }
  2790. #ifdef PDCURSES
  2791. static
  2792. int bfg_wresize(WINDOW *win, int lines, int columns)
  2793. {
  2794. int rv = wresize(win, lines, columns);
  2795. int x, y;
  2796. getyx(win, y, x);
  2797. if (unlikely(y >= lines || x >= columns))
  2798. {
  2799. if (y >= lines)
  2800. y = lines - 1;
  2801. if (x >= columns)
  2802. x = columns - 1;
  2803. wmove(win, y, x);
  2804. }
  2805. return rv;
  2806. }
  2807. #else
  2808. # define bfg_wresize wresize
  2809. #endif
  2810. #endif
  2811. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2812. {
  2813. va_list ap;
  2814. size_t presz = strlen(buf);
  2815. va_start(ap, fmt);
  2816. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2817. va_end(ap);
  2818. }
  2819. double stats_elapsed(struct cgminer_stats *stats)
  2820. {
  2821. struct timeval now;
  2822. double elapsed;
  2823. if (stats->start_tv.tv_sec == 0)
  2824. elapsed = total_secs;
  2825. else {
  2826. cgtime(&now);
  2827. elapsed = tdiff(&now, &stats->start_tv);
  2828. }
  2829. if (elapsed < 1.0)
  2830. elapsed = 1.0;
  2831. return elapsed;
  2832. }
  2833. bool drv_ready(struct cgpu_info *cgpu)
  2834. {
  2835. switch (cgpu->status) {
  2836. case LIFE_INIT:
  2837. case LIFE_DEAD2:
  2838. return false;
  2839. default:
  2840. return true;
  2841. }
  2842. }
  2843. double cgpu_utility(struct cgpu_info *cgpu)
  2844. {
  2845. double dev_runtime = cgpu_runtime(cgpu);
  2846. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2847. }
  2848. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2849. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2850. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2851. }while(0)
  2852. static float
  2853. utility_to_hashrate(double utility)
  2854. {
  2855. return utility * 0x4444444;
  2856. }
  2857. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2858. static const int _unitbase = 4;
  2859. static
  2860. void pick_unit(float hashrate, unsigned char *unit)
  2861. {
  2862. unsigned char i;
  2863. if (hashrate == 0)
  2864. {
  2865. if (*unit < _unitbase)
  2866. *unit = _unitbase;
  2867. return;
  2868. }
  2869. hashrate *= 1e12;
  2870. for (i = 0; i < *unit; ++i)
  2871. hashrate /= 1e3;
  2872. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2873. while (hashrate >= 999.95)
  2874. {
  2875. hashrate /= 1e3;
  2876. if (likely(_unitchar[*unit] != '?'))
  2877. ++*unit;
  2878. }
  2879. }
  2880. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2881. enum h2bs_fmt {
  2882. H2B_NOUNIT, // "xxx.x"
  2883. H2B_SHORT, // "xxx.xMH/s"
  2884. H2B_SPACED, // "xxx.x MH/s"
  2885. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2886. };
  2887. enum bfu_floatprec {
  2888. FUP_INTEGER,
  2889. FUP_HASHES,
  2890. FUP_BTC,
  2891. FUP_DIFF,
  2892. };
  2893. static
  2894. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2895. {
  2896. char *s = buf;
  2897. unsigned char prec, i, unit;
  2898. int rv = 0;
  2899. if (unitin == -1)
  2900. {
  2901. unit = 0;
  2902. hashrate_pick_unit(hashrate, &unit);
  2903. }
  2904. else
  2905. unit = unitin;
  2906. hashrate *= 1e12;
  2907. for (i = 0; i < unit; ++i)
  2908. hashrate /= 1000;
  2909. switch (fprec)
  2910. {
  2911. case FUP_HASHES:
  2912. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2913. if (hashrate >= 99.995 || unit < 6)
  2914. prec = 1;
  2915. else
  2916. prec = 2;
  2917. _SNP("%5.*f", prec, hashrate);
  2918. break;
  2919. case FUP_INTEGER:
  2920. _SNP("%3d", (int)hashrate);
  2921. break;
  2922. case FUP_BTC:
  2923. if (hashrate >= 99.995)
  2924. prec = 0;
  2925. else
  2926. prec = 2;
  2927. _SNP("%5.*f", prec, hashrate);
  2928. break;
  2929. case FUP_DIFF:
  2930. if (unit > _unitbase)
  2931. _SNP("%.3g", hashrate);
  2932. else
  2933. _SNP("%u", (unsigned int)hashrate);
  2934. }
  2935. if (fmt != H2B_NOUNIT)
  2936. {
  2937. char uc[3] = {_unitchar[unit], '\0'};
  2938. switch (fmt) {
  2939. case H2B_SPACED:
  2940. _SNP(" ");
  2941. default:
  2942. break;
  2943. case H2B_SHORTV:
  2944. if (isspace(uc[0]))
  2945. uc[0] = '\0';
  2946. }
  2947. if (uc[0] == '\xb5')
  2948. // Convert to UTF-8
  2949. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2950. _SNP("%s%s", uc, measurement);
  2951. }
  2952. return rv;
  2953. }
  2954. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2955. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2956. static
  2957. 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)
  2958. {
  2959. unsigned char unit = 0;
  2960. bool allzero = true;
  2961. int i;
  2962. size_t delimsz = 0;
  2963. char *buf = buflist[0];
  2964. size_t bufsz = bufszlist[0];
  2965. size_t itemwidth = (floatprec ? 5 : 3);
  2966. if (!isarray)
  2967. delimsz = strlen(delim);
  2968. for (i = 0; i < count; ++i)
  2969. if (numbers[i] != 0)
  2970. {
  2971. pick_unit(numbers[i], &unit);
  2972. allzero = false;
  2973. }
  2974. if (allzero)
  2975. unit = _unitbase;
  2976. --count;
  2977. for (i = 0; i < count; ++i)
  2978. {
  2979. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2980. if (isarray)
  2981. {
  2982. buf = buflist[i + 1];
  2983. bufsz = bufszlist[i + 1];
  2984. }
  2985. else
  2986. {
  2987. buf += itemwidth;
  2988. bufsz -= itemwidth;
  2989. if (delimsz > bufsz)
  2990. delimsz = bufsz;
  2991. memcpy(buf, delim, delimsz);
  2992. buf += delimsz;
  2993. bufsz -= delimsz;
  2994. }
  2995. }
  2996. // Last entry has the unit
  2997. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2998. return buflist[0];
  2999. }
  3000. #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)
  3001. #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)
  3002. static
  3003. int percentf3(char * const buf, size_t sz, double p, const double t)
  3004. {
  3005. char *s = buf;
  3006. int rv = 0;
  3007. if (!p)
  3008. _SNP("none");
  3009. else
  3010. if (t <= p)
  3011. _SNP("100%%");
  3012. else
  3013. {
  3014. p /= t;
  3015. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  3016. _SNP(".%02.0f%%", p * 10000); // ".01%"
  3017. else
  3018. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  3019. _SNP("%.1f%%", p * 100); // "9.1%"
  3020. else
  3021. _SNP("%3.0f%%", p * 100); // " 99%"
  3022. }
  3023. return rv;
  3024. }
  3025. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  3026. static
  3027. void test_decimal_width()
  3028. {
  3029. // The pipe character at end of each line should perfectly line up
  3030. char printbuf[512];
  3031. char testbuf1[64];
  3032. char testbuf2[64];
  3033. char testbuf3[64];
  3034. char testbuf4[64];
  3035. double testn;
  3036. int width;
  3037. int saved;
  3038. // Hotspots around 0.1 and 0.01
  3039. saved = -1;
  3040. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  3041. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  3042. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  3043. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  3044. if (unlikely((saved != -1) && (width != saved))) {
  3045. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  3046. applog(LOG_ERR, "%s", printbuf);
  3047. }
  3048. saved = width;
  3049. }
  3050. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  3051. saved = -1;
  3052. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  3053. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3054. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3055. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3056. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  3057. width = utf8_strlen(printbuf);
  3058. if (unlikely((saved != -1) && (width != saved))) {
  3059. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  3060. applog(LOG_ERR, "%s", printbuf);
  3061. }
  3062. saved = width;
  3063. }
  3064. // Hotspot around unit transition boundary in pick_unit
  3065. saved = -1;
  3066. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  3067. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  3068. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  3069. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  3070. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  3071. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  3072. width = utf8_strlen(printbuf);
  3073. if (unlikely((saved != -1) && (width != saved))) {
  3074. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  3075. applog(LOG_ERR, "%s", printbuf);
  3076. }
  3077. saved = width;
  3078. }
  3079. }
  3080. #ifdef HAVE_CURSES
  3081. static void adj_width(int var, int *length);
  3082. #endif
  3083. #ifdef HAVE_CURSES
  3084. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  3085. static
  3086. void format_statline(char *buf, size_t bufsz, const char *cHr, const char *aHr, const char *uHr, int accepted, int rejected, int stale, int wnotaccepted, int waccepted, int hwerrs, int bad_diff1, int allnonces)
  3087. {
  3088. char rejpcbuf[6];
  3089. char bnbuf[6];
  3090. adj_width(accepted, &awidth);
  3091. adj_width(rejected, &rwidth);
  3092. adj_width(stale, &swidth);
  3093. adj_width(hwerrs, &hwwidth);
  3094. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3095. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3096. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3097. cHr, aHr, uHr,
  3098. awidth, accepted,
  3099. rwidth, rejected,
  3100. swidth, stale,
  3101. rejpcbuf,
  3102. hwwidth, hwerrs,
  3103. bnbuf
  3104. );
  3105. }
  3106. static
  3107. const char *pool_proto_str(const struct pool * const pool)
  3108. {
  3109. if (pool->idle)
  3110. return "Dead ";
  3111. if (pool->has_stratum)
  3112. return "Strtm";
  3113. if (pool->lp_url && pool->proto != pool->lp_proto)
  3114. return "Mixed";
  3115. switch (pool->proto)
  3116. {
  3117. case PLP_GETBLOCKTEMPLATE:
  3118. return " GBT ";
  3119. case PLP_GETWORK:
  3120. return "GWork";
  3121. default:
  3122. return "Alive";
  3123. }
  3124. }
  3125. #endif
  3126. static inline
  3127. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3128. {
  3129. if (!(use_unicode && have_unicode_degrees))
  3130. maybe_unicode = false;
  3131. if (temp && *temp > 0.)
  3132. if (maybe_unicode)
  3133. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3134. else
  3135. snprintf(buf, bufsz, "%4.1fC", *temp);
  3136. else
  3137. {
  3138. if (temp)
  3139. snprintf(buf, bufsz, " ");
  3140. if (maybe_unicode)
  3141. tailsprintf(buf, bufsz, " ");
  3142. }
  3143. tailsprintf(buf, bufsz, " | ");
  3144. }
  3145. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3146. {
  3147. #ifndef HAVE_CURSES
  3148. assert(for_curses == false);
  3149. #endif
  3150. struct device_drv *drv = cgpu->drv;
  3151. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3152. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3153. char rejpcbuf[6];
  3154. char bnbuf[6];
  3155. double dev_runtime;
  3156. if (!opt_show_procs)
  3157. cgpu = cgpu->device;
  3158. dev_runtime = cgpu_runtime(cgpu);
  3159. double rolling, mhashes;
  3160. int accepted, rejected, stale;
  3161. double waccepted;
  3162. double wnotaccepted;
  3163. int hwerrs;
  3164. double bad_diff1, good_diff1;
  3165. rolling = mhashes = waccepted = wnotaccepted = 0;
  3166. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3167. {
  3168. struct cgpu_info *slave = cgpu;
  3169. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3170. {
  3171. slave->utility = slave->accepted / dev_runtime * 60;
  3172. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3173. rolling += slave->rolling;
  3174. mhashes += slave->total_mhashes;
  3175. if (opt_weighed_stats)
  3176. {
  3177. accepted += slave->diff_accepted;
  3178. rejected += slave->diff_rejected;
  3179. stale += slave->diff_stale;
  3180. }
  3181. else
  3182. {
  3183. accepted += slave->accepted;
  3184. rejected += slave->rejected;
  3185. stale += slave->stale;
  3186. }
  3187. waccepted += slave->diff_accepted;
  3188. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3189. hwerrs += slave->hw_errors;
  3190. bad_diff1 += slave->bad_diff1;
  3191. good_diff1 += slave->diff1;
  3192. if (opt_show_procs)
  3193. break;
  3194. }
  3195. }
  3196. double wtotal = (waccepted + wnotaccepted);
  3197. multi_format_unit_array2(
  3198. ((char*[]){cHr, aHr, uHr}),
  3199. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3200. true, "h/s", hashrate_style,
  3201. 3,
  3202. 1e6*rolling,
  3203. 1e6*mhashes / dev_runtime,
  3204. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3205. // Processor representation
  3206. #ifdef HAVE_CURSES
  3207. if (for_curses)
  3208. {
  3209. if (opt_show_procs)
  3210. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3211. else
  3212. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3213. }
  3214. else
  3215. #endif
  3216. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3217. if (include_serial_in_statline && cgpu->dev_serial)
  3218. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3219. if (unlikely(cgpu->status == LIFE_INIT))
  3220. {
  3221. tailsprintf(buf, bufsz, "Initializing...");
  3222. return;
  3223. }
  3224. {
  3225. const size_t bufln = strlen(buf);
  3226. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3227. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3228. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3229. else
  3230. {
  3231. float temp = cgpu->temp;
  3232. if (!opt_show_procs)
  3233. {
  3234. // Find the highest temperature of all processors
  3235. struct cgpu_info *proc = cgpu;
  3236. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3237. if (proc->temp > temp)
  3238. temp = proc->temp;
  3239. }
  3240. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3241. }
  3242. }
  3243. #ifdef HAVE_CURSES
  3244. if (for_curses)
  3245. {
  3246. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3247. const char *cHrStats;
  3248. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3249. bool all_dead = true, all_off = true, all_rdrv = true;
  3250. struct cgpu_info *proc = cgpu;
  3251. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3252. {
  3253. switch (cHrStatsI) {
  3254. default:
  3255. if (proc->status == LIFE_WAIT)
  3256. cHrStatsI = 5;
  3257. case 5:
  3258. if (proc->deven == DEV_RECOVER_ERR)
  3259. cHrStatsI = 4;
  3260. case 4:
  3261. if (proc->deven == DEV_RECOVER)
  3262. cHrStatsI = 3;
  3263. case 3:
  3264. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3265. {
  3266. cHrStatsI = 1;
  3267. all_off = false;
  3268. }
  3269. else
  3270. {
  3271. if (likely(proc->deven == DEV_ENABLED))
  3272. all_off = false;
  3273. if (proc->deven != DEV_RECOVER_DRV)
  3274. all_rdrv = false;
  3275. }
  3276. case 1:
  3277. break;
  3278. }
  3279. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3280. all_dead = false;
  3281. if (opt_show_procs)
  3282. break;
  3283. }
  3284. if (unlikely(all_dead))
  3285. cHrStatsI = 0;
  3286. else
  3287. if (unlikely(all_off))
  3288. cHrStatsI = 2;
  3289. cHrStats = cHrStatsOpt[cHrStatsI];
  3290. if (cHrStatsI == 2 && all_rdrv)
  3291. cHrStats = " RST ";
  3292. format_statline(buf, bufsz,
  3293. cHrStats,
  3294. aHr, uHr,
  3295. accepted, rejected, stale,
  3296. wnotaccepted, waccepted,
  3297. hwerrs,
  3298. bad_diff1, bad_diff1 + good_diff1);
  3299. }
  3300. else
  3301. #endif
  3302. {
  3303. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3304. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3305. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3306. opt_log_interval,
  3307. cHr, aHr, uHr,
  3308. accepted,
  3309. rejected,
  3310. stale,
  3311. rejpcbuf,
  3312. hwerrs,
  3313. bnbuf
  3314. );
  3315. }
  3316. }
  3317. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3318. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3319. static void text_print_status(int thr_id)
  3320. {
  3321. struct cgpu_info *cgpu;
  3322. char logline[256];
  3323. cgpu = get_thr_cgpu(thr_id);
  3324. if (cgpu) {
  3325. get_statline(logline, sizeof(logline), cgpu);
  3326. printf("%s\n", logline);
  3327. }
  3328. }
  3329. #ifdef HAVE_CURSES
  3330. static int attr_bad = A_BOLD;
  3331. #ifdef WIN32
  3332. #define swprintf snwprintf
  3333. #endif
  3334. static
  3335. void bfg_waddstr(WINDOW *win, const char *s)
  3336. {
  3337. const char *p = s;
  3338. int32_t w;
  3339. int wlen;
  3340. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3341. while (true)
  3342. {
  3343. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3344. {
  3345. // Printable ASCII
  3346. ++p;
  3347. }
  3348. if (p != s)
  3349. waddnstr(win, s, p - s);
  3350. w = utf8_decode(p, &wlen);
  3351. s = p += wlen;
  3352. switch(w)
  3353. {
  3354. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3355. case '\0':
  3356. return;
  3357. case 0xb5: // micro symbol
  3358. w = unicode_micro;
  3359. goto default_addch;
  3360. case 0xf000: // "bad" off
  3361. wattroff(win, attr_bad);
  3362. break;
  3363. case 0xf001: // "bad" on
  3364. wattron(win, attr_bad);
  3365. break;
  3366. #ifdef USE_UNICODE
  3367. case '|':
  3368. wadd_wch(win, WACS_VLINE);
  3369. break;
  3370. #endif
  3371. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3372. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3373. if (!use_unicode)
  3374. {
  3375. waddch(win, '-');
  3376. break;
  3377. }
  3378. #ifdef USE_UNICODE
  3379. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3380. break;
  3381. #endif
  3382. case 0x2022:
  3383. if (w > WCHAR_MAX || !iswprint(w))
  3384. w = '*';
  3385. default:
  3386. default_addch:
  3387. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3388. {
  3389. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3390. if (iswprint(REPLACEMENT_CHAR))
  3391. w = REPLACEMENT_CHAR;
  3392. else
  3393. #endif
  3394. w = '?';
  3395. }
  3396. {
  3397. #ifdef USE_UNICODE
  3398. wchar_t wbuf[0x10];
  3399. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3400. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3401. waddnwstr(win, wbuf, wbuflen);
  3402. #else
  3403. wprintw(win, "%lc", (wint_t)w);
  3404. #endif
  3405. }
  3406. }
  3407. }
  3408. }
  3409. static inline
  3410. void bfg_hline(WINDOW *win, int y)
  3411. {
  3412. int maxx, __maybe_unused maxy;
  3413. getmaxyx(win, maxy, maxx);
  3414. #ifdef USE_UNICODE
  3415. if (use_unicode)
  3416. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3417. else
  3418. #endif
  3419. mvwhline(win, y, 0, '-', maxx);
  3420. }
  3421. // Spaces until end of line, using current attributes (ie, not completely clear)
  3422. static
  3423. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3424. {
  3425. int x, maxx;
  3426. int __maybe_unused y;
  3427. getmaxyx(win, y, maxx);
  3428. getyx(win, y, x);
  3429. const int space_count = (maxx - x) - offset;
  3430. // Check for negative - terminal too narrow
  3431. if (space_count <= 0)
  3432. return;
  3433. char buf[space_count];
  3434. memset(buf, ' ', space_count);
  3435. waddnstr(win, buf, space_count);
  3436. }
  3437. static int menu_attr = A_REVERSE;
  3438. #define CURBUFSIZ 256
  3439. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3440. char tmp42[CURBUFSIZ]; \
  3441. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3442. wmove(win, y, x); \
  3443. bfg_waddstr(win, tmp42); \
  3444. } while (0)
  3445. #define cg_wprintw(win, fmt, ...) do { \
  3446. char tmp42[CURBUFSIZ]; \
  3447. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3448. bfg_waddstr(win, tmp42); \
  3449. } while (0)
  3450. static bool pool_unworkable(const struct pool *);
  3451. /* Must be called with curses mutex lock held and curses_active */
  3452. static void curses_print_status(const int ts)
  3453. {
  3454. struct pool *pool = currentpool;
  3455. struct timeval now, tv;
  3456. float efficiency;
  3457. double income;
  3458. int logdiv;
  3459. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3460. wattron(statuswin, attr_title);
  3461. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3462. timer_set_now(&now);
  3463. {
  3464. unsigned int days, hours;
  3465. div_t d;
  3466. timersub(&now, &miner_started, &tv);
  3467. d = div(tv.tv_sec, 86400);
  3468. days = d.quot;
  3469. d = div(d.rem, 3600);
  3470. hours = d.quot;
  3471. d = div(d.rem, 60);
  3472. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3473. , days
  3474. , (days == 1) ? ' ' : 's'
  3475. , hours
  3476. , d.quot
  3477. , d.rem
  3478. );
  3479. }
  3480. bfg_wspctoeol(statuswin, 0);
  3481. wattroff(statuswin, attr_title);
  3482. wattron(statuswin, menu_attr);
  3483. wmove(statuswin, 1, 0);
  3484. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3485. bfg_wspctoeol(statuswin, 14);
  3486. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3487. wattroff(statuswin, menu_attr);
  3488. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3489. char poolinfo[20], poolinfo2[20];
  3490. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3491. double lowdiff = DBL_MAX, highdiff = -1;
  3492. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3493. time_t oldest_work_restart = time(NULL) + 1;
  3494. struct pool *oldest_work_restart_pool = pools[0];
  3495. for (int i = 0; i < total_pools; ++i)
  3496. {
  3497. if (pool_unworkable(pools[i]))
  3498. continue;
  3499. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3500. pool = pools[i];
  3501. ++workable_pools;
  3502. if (poolinfooff < sizeof(poolinfo))
  3503. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3504. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3505. if (pool_stats->last_diff < lowdiff)
  3506. {
  3507. lowdiff = pool_stats->last_diff;
  3508. lowdiff_pool = pool;
  3509. }
  3510. if (pool_stats->last_diff > highdiff)
  3511. {
  3512. highdiff = pool_stats->last_diff;
  3513. highdiff_pool = pool;
  3514. }
  3515. if (oldest_work_restart >= pool->work_restart_time)
  3516. {
  3517. oldest_work_restart = pool->work_restart_time;
  3518. oldest_work_restart_pool = pool;
  3519. }
  3520. }
  3521. if (workable_pools == 1)
  3522. goto one_workable_pool;
  3523. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3524. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3525. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3526. else
  3527. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3528. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3529. poolinfo2,
  3530. lowdiff_pool->diff,
  3531. (lowdiff == highdiff) ? "" : "-",
  3532. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3533. have_longpoll ? '+' : '-',
  3534. oldest_work_restart_pool->work_restart_timestamp);
  3535. }
  3536. else
  3537. {
  3538. one_workable_pool: ;
  3539. char pooladdr[19];
  3540. {
  3541. const char *rawaddr = pool->sockaddr_url;
  3542. BFGINIT(rawaddr, pool->rpc_url);
  3543. size_t pooladdrlen = strlen(rawaddr);
  3544. if (pooladdrlen > 20)
  3545. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3546. else
  3547. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3548. }
  3549. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3550. pool->pool_no, pooladdr, pool->diff,
  3551. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3552. pool->work_restart_timestamp,
  3553. pool->rpc_user);
  3554. }
  3555. wclrtoeol(statuswin);
  3556. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3557. current_hash, block_diff, net_hashrate, blocktime);
  3558. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3559. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3560. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3561. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3562. ts,
  3563. total_go + total_ro,
  3564. new_blocks,
  3565. total_submitting,
  3566. multi_format_unit2(bwstr, sizeof(bwstr),
  3567. false, "B/s", H2B_SHORT, "/", 2,
  3568. (float)(total_bytes_rcvd / total_secs),
  3569. (float)(total_bytes_sent / total_secs)),
  3570. efficiency,
  3571. incomestr,
  3572. best_share);
  3573. wclrtoeol(statuswin);
  3574. mvwaddstr(statuswin, 5, 0, " ");
  3575. bfg_waddstr(statuswin, statusline);
  3576. wclrtoeol(statuswin);
  3577. logdiv = statusy - 1;
  3578. bfg_hline(statuswin, 6);
  3579. bfg_hline(statuswin, logdiv);
  3580. #ifdef USE_UNICODE
  3581. if (use_unicode)
  3582. {
  3583. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3584. if (opt_show_procs && !opt_compact)
  3585. ++offset; // proc letter
  3586. if (have_unicode_degrees)
  3587. ++offset; // degrees symbol
  3588. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3589. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3590. offset += 24; // hashrates etc
  3591. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3592. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3593. }
  3594. #endif
  3595. }
  3596. static void adj_width(int var, int *length)
  3597. {
  3598. if ((int)(log10(var) + 1) > *length)
  3599. (*length)++;
  3600. }
  3601. static int dev_width;
  3602. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3603. {
  3604. char logline[256];
  3605. int ypos;
  3606. if (opt_compact)
  3607. return;
  3608. /* Check this isn't out of the window size */
  3609. if (opt_show_procs)
  3610. ypos = cgpu->cgminer_id;
  3611. else
  3612. {
  3613. if (cgpu->proc_id)
  3614. return;
  3615. ypos = cgpu->device_line_id;
  3616. }
  3617. ypos += devsummaryYOffset;
  3618. if (ypos < 0)
  3619. return;
  3620. ypos += devcursor - 1;
  3621. if (ypos >= statusy - 1)
  3622. return;
  3623. if (wmove(statuswin, ypos, 0) == ERR)
  3624. return;
  3625. get_statline2(logline, sizeof(logline), cgpu, true);
  3626. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3627. wattron(statuswin, A_REVERSE);
  3628. bfg_waddstr(statuswin, logline);
  3629. wattroff(statuswin, A_REVERSE);
  3630. wclrtoeol(statuswin);
  3631. }
  3632. static
  3633. void _refresh_devstatus(const bool already_have_lock) {
  3634. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3635. int i;
  3636. if (unlikely(!total_devices))
  3637. {
  3638. const int ypos = devcursor - 1;
  3639. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3640. {
  3641. wattron(statuswin, attr_bad);
  3642. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3643. wclrtoeol(statuswin);
  3644. wattroff(statuswin, attr_bad);
  3645. }
  3646. }
  3647. for (i = 0; i < total_devices; i++)
  3648. curses_print_devstatus(get_devices(i));
  3649. touchwin(statuswin);
  3650. wrefresh(statuswin);
  3651. if (!already_have_lock)
  3652. unlock_curses();
  3653. }
  3654. }
  3655. #define refresh_devstatus() _refresh_devstatus(false)
  3656. #endif
  3657. static void print_status(int thr_id)
  3658. {
  3659. if (!curses_active)
  3660. text_print_status(thr_id);
  3661. }
  3662. #ifdef HAVE_CURSES
  3663. static
  3664. bool set_statusy(int maxy)
  3665. {
  3666. if (loginput_size)
  3667. {
  3668. maxy -= loginput_size;
  3669. if (maxy < 0)
  3670. maxy = 0;
  3671. }
  3672. if (logstart < maxy)
  3673. maxy = logstart;
  3674. if (statusy == maxy)
  3675. return false;
  3676. statusy = maxy;
  3677. logcursor = statusy;
  3678. return true;
  3679. }
  3680. /* Check for window resize. Called with curses mutex locked */
  3681. static inline void change_logwinsize(void)
  3682. {
  3683. int x, y, logx, logy;
  3684. getmaxyx(mainwin, y, x);
  3685. if (x < 80 || y < 25)
  3686. return;
  3687. if (y > statusy + 2 && statusy < logstart) {
  3688. set_statusy(y - 2);
  3689. mvwin(logwin, logcursor, 0);
  3690. bfg_wresize(statuswin, statusy, x);
  3691. }
  3692. y -= logcursor;
  3693. getmaxyx(logwin, logy, logx);
  3694. /* Detect screen size change */
  3695. if (x != logx || y != logy)
  3696. bfg_wresize(logwin, y, x);
  3697. }
  3698. static void check_winsizes(void)
  3699. {
  3700. if (!use_curses)
  3701. return;
  3702. if (curses_active_locked()) {
  3703. int y, x;
  3704. x = getmaxx(statuswin);
  3705. if (set_statusy(LINES - 2))
  3706. {
  3707. erase();
  3708. bfg_wresize(statuswin, statusy, x);
  3709. getmaxyx(mainwin, y, x);
  3710. y -= logcursor;
  3711. bfg_wresize(logwin, y, x);
  3712. mvwin(logwin, logcursor, 0);
  3713. }
  3714. unlock_curses();
  3715. }
  3716. }
  3717. static int device_line_id_count;
  3718. static void switch_logsize(void)
  3719. {
  3720. if (curses_active_locked()) {
  3721. if (opt_compact) {
  3722. logstart = devcursor - 1;
  3723. logcursor = logstart + 1;
  3724. } else {
  3725. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3726. logstart = devcursor + total_lines;
  3727. logcursor = logstart;
  3728. }
  3729. unlock_curses();
  3730. }
  3731. check_winsizes();
  3732. }
  3733. /* For mandatory printing when mutex is already locked */
  3734. void _wlog(const char *str)
  3735. {
  3736. static bool newline;
  3737. size_t end = strlen(str) - 1;
  3738. if (newline)
  3739. bfg_waddstr(logwin, "\n");
  3740. if (str[end] == '\n')
  3741. {
  3742. char *s;
  3743. newline = true;
  3744. s = alloca(end + 1);
  3745. memcpy(s, str, end);
  3746. s[end] = '\0';
  3747. str = s;
  3748. }
  3749. else
  3750. newline = false;
  3751. bfg_waddstr(logwin, str);
  3752. }
  3753. /* Mandatory printing */
  3754. void _wlogprint(const char *str)
  3755. {
  3756. if (curses_active_locked()) {
  3757. _wlog(str);
  3758. unlock_curses();
  3759. }
  3760. }
  3761. #endif
  3762. #ifdef HAVE_CURSES
  3763. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3764. {
  3765. bool high_prio;
  3766. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3767. if (curses_active)
  3768. {
  3769. if (!loginput_size || high_prio) {
  3770. wlog(" %s %s\n", datetime, str);
  3771. if (high_prio) {
  3772. touchwin(logwin);
  3773. wrefresh(logwin);
  3774. }
  3775. }
  3776. return true;
  3777. }
  3778. return false;
  3779. }
  3780. void clear_logwin(void)
  3781. {
  3782. if (curses_active_locked()) {
  3783. wclear(logwin);
  3784. unlock_curses();
  3785. }
  3786. }
  3787. void logwin_update(void)
  3788. {
  3789. if (curses_active_locked()) {
  3790. touchwin(logwin);
  3791. wrefresh(logwin);
  3792. unlock_curses();
  3793. }
  3794. }
  3795. #endif
  3796. static void enable_pool(struct pool *pool)
  3797. {
  3798. if (pool->enabled != POOL_ENABLED) {
  3799. enabled_pools++;
  3800. pool->enabled = POOL_ENABLED;
  3801. }
  3802. }
  3803. #ifdef HAVE_CURSES
  3804. static void disable_pool(struct pool *pool)
  3805. {
  3806. if (pool->enabled == POOL_ENABLED)
  3807. enabled_pools--;
  3808. pool->enabled = POOL_DISABLED;
  3809. }
  3810. #endif
  3811. static void reject_pool(struct pool *pool)
  3812. {
  3813. if (pool->enabled == POOL_ENABLED)
  3814. enabled_pools--;
  3815. pool->enabled = POOL_REJECTING;
  3816. }
  3817. static double share_diff(const struct work *);
  3818. static
  3819. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3820. struct cgpu_info *cgpu;
  3821. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3822. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3823. const double tgtdiff = work->work_difficulty;
  3824. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3825. char where[20];
  3826. cgpu = get_thr_cgpu(work->thr_id);
  3827. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3828. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3829. if (total_pools > 1)
  3830. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3831. else
  3832. where[0] = '\0';
  3833. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3834. disp,
  3835. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3836. cgpu->proc_repr,
  3837. where,
  3838. shrdiffdisp, tgtdiffdisp,
  3839. reason,
  3840. resubmit ? "(resubmit)" : "",
  3841. worktime
  3842. );
  3843. }
  3844. static bool test_work_current(struct work *);
  3845. static void _submit_work_async(struct work *);
  3846. static
  3847. void maybe_local_submit(const struct work *work)
  3848. {
  3849. #if BLKMAKER_VERSION > 3
  3850. if (unlikely(work->block && work->tr))
  3851. {
  3852. // This is a block with a full template (GBT)
  3853. // Regardless of the result, submit to local bitcoind(s) as well
  3854. struct work *work_cp;
  3855. char *p;
  3856. for (int i = 0; i < total_pools; ++i)
  3857. {
  3858. p = strchr(pools[i]->rpc_url, '#');
  3859. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3860. continue;
  3861. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3862. work_cp = copy_work(work);
  3863. work_cp->pool = pools[i];
  3864. work_cp->do_foreign_submit = true;
  3865. _submit_work_async(work_cp);
  3866. }
  3867. }
  3868. #endif
  3869. }
  3870. /* Theoretically threads could race when modifying accepted and
  3871. * rejected values but the chance of two submits completing at the
  3872. * same time is zero so there is no point adding extra locking */
  3873. static void
  3874. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3875. /*char *hashshow,*/ bool resubmit, char *worktime)
  3876. {
  3877. struct pool *pool = work->pool;
  3878. struct cgpu_info *cgpu;
  3879. cgpu = get_thr_cgpu(work->thr_id);
  3880. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3881. mutex_lock(&stats_lock);
  3882. cgpu->accepted++;
  3883. total_accepted++;
  3884. pool->accepted++;
  3885. cgpu->diff_accepted += work->work_difficulty;
  3886. total_diff_accepted += work->work_difficulty;
  3887. pool->diff_accepted += work->work_difficulty;
  3888. mutex_unlock(&stats_lock);
  3889. pool->seq_rejects = 0;
  3890. cgpu->last_share_pool = pool->pool_no;
  3891. cgpu->last_share_pool_time = time(NULL);
  3892. cgpu->last_share_diff = work->work_difficulty;
  3893. pool->last_share_time = cgpu->last_share_pool_time;
  3894. pool->last_share_diff = work->work_difficulty;
  3895. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3896. if (!QUIET) {
  3897. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3898. }
  3899. sharelog("accept", work);
  3900. if (opt_shares && total_diff_accepted >= opt_shares) {
  3901. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3902. kill_work();
  3903. return;
  3904. }
  3905. /* Detect if a pool that has been temporarily disabled for
  3906. * continually rejecting shares has started accepting shares.
  3907. * This will only happen with the work returned from a
  3908. * longpoll */
  3909. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3910. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3911. enable_pool(pool);
  3912. switch_pools(NULL);
  3913. }
  3914. if (unlikely(work->block)) {
  3915. // Force moving on to this new block :)
  3916. struct work fakework;
  3917. memset(&fakework, 0, sizeof(fakework));
  3918. fakework.pool = work->pool;
  3919. // Copy block version, bits, and time from share
  3920. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3921. memcpy(&fakework.data[68], &work->data[68], 8);
  3922. // Set prevblock to winning hash (swap32'd)
  3923. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3924. test_work_current(&fakework);
  3925. }
  3926. } else {
  3927. mutex_lock(&stats_lock);
  3928. cgpu->rejected++;
  3929. total_rejected++;
  3930. pool->rejected++;
  3931. cgpu->diff_rejected += work->work_difficulty;
  3932. total_diff_rejected += work->work_difficulty;
  3933. pool->diff_rejected += work->work_difficulty;
  3934. pool->seq_rejects++;
  3935. mutex_unlock(&stats_lock);
  3936. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3937. if (!QUIET) {
  3938. char where[20];
  3939. char disposition[36] = "reject";
  3940. char reason[32];
  3941. strcpy(reason, "");
  3942. if (total_pools > 1)
  3943. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3944. else
  3945. strcpy(where, "");
  3946. if (!json_is_string(res))
  3947. res = json_object_get(val, "reject-reason");
  3948. if (res) {
  3949. const char *reasontmp = json_string_value(res);
  3950. size_t reasonLen = strlen(reasontmp);
  3951. if (reasonLen > 28)
  3952. reasonLen = 28;
  3953. reason[0] = ' '; reason[1] = '(';
  3954. memcpy(2 + reason, reasontmp, reasonLen);
  3955. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3956. memcpy(disposition + 7, reasontmp, reasonLen);
  3957. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3958. } else if (work->stratum && err && json_is_array(err)) {
  3959. json_t *reason_val = json_array_get(err, 1);
  3960. char *reason_str;
  3961. if (reason_val && json_is_string(reason_val)) {
  3962. reason_str = (char *)json_string_value(reason_val);
  3963. snprintf(reason, 31, " (%s)", reason_str);
  3964. }
  3965. }
  3966. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3967. sharelog(disposition, work);
  3968. }
  3969. /* Once we have more than a nominal amount of sequential rejects,
  3970. * at least 10 and more than 3 mins at the current utility,
  3971. * disable the pool because some pool error is likely to have
  3972. * ensued. Do not do this if we know the share just happened to
  3973. * be stale due to networking delays.
  3974. */
  3975. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3976. double utility = total_accepted / total_secs * 60;
  3977. if (pool->seq_rejects > utility * 3) {
  3978. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3979. pool->pool_no, pool->seq_rejects);
  3980. reject_pool(pool);
  3981. if (pool == current_pool())
  3982. switch_pools(NULL);
  3983. pool->seq_rejects = 0;
  3984. }
  3985. }
  3986. }
  3987. maybe_local_submit(work);
  3988. }
  3989. static char *submit_upstream_work_request(struct work *work)
  3990. {
  3991. char *hexstr = NULL;
  3992. char *s, *sd;
  3993. struct pool *pool = work->pool;
  3994. if (work->tr)
  3995. {
  3996. blktemplate_t * const tmpl = work->tr->tmpl;
  3997. json_t *req;
  3998. unsigned char data[80];
  3999. swap32yes(data, work->data, 80 / 4);
  4000. #if BLKMAKER_VERSION > 3
  4001. if (work->do_foreign_submit)
  4002. req = blkmk_submit_foreign_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4003. else
  4004. #endif
  4005. req = blkmk_submit_jansson(tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  4006. s = json_dumps(req, 0);
  4007. json_decref(req);
  4008. sd = malloc(161);
  4009. bin2hex(sd, data, 80);
  4010. } else {
  4011. /* build hex string */
  4012. hexstr = malloc((sizeof(work->data) * 2) + 1);
  4013. bin2hex(hexstr, work->data, sizeof(work->data));
  4014. /* build JSON-RPC request */
  4015. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  4016. s = realloc_strcat(s, hexstr);
  4017. s = realloc_strcat(s, "\" ], \"id\":1}");
  4018. free(hexstr);
  4019. sd = s;
  4020. }
  4021. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  4022. if (work->tr)
  4023. free(sd);
  4024. else
  4025. s = realloc_strcat(s, "\n");
  4026. return s;
  4027. }
  4028. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  4029. json_t *res, *err;
  4030. bool rc = false;
  4031. int thr_id = work->thr_id;
  4032. struct pool *pool = work->pool;
  4033. struct timeval tv_submit_reply;
  4034. time_t ts_submit_reply;
  4035. char worktime[200] = "";
  4036. cgtime(&tv_submit_reply);
  4037. ts_submit_reply = time(NULL);
  4038. if (unlikely(!val)) {
  4039. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  4040. if (!pool_tset(pool, &pool->submit_fail)) {
  4041. total_ro++;
  4042. pool->remotefail_occasions++;
  4043. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  4044. }
  4045. goto out;
  4046. } else if (pool_tclear(pool, &pool->submit_fail))
  4047. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4048. res = json_object_get(val, "result");
  4049. err = json_object_get(val, "error");
  4050. if (!QUIET) {
  4051. if (opt_worktime) {
  4052. char workclone[20];
  4053. struct tm _tm;
  4054. struct tm *tm, tm_getwork, tm_submit_reply;
  4055. tm = &_tm;
  4056. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  4057. (struct timeval *)&(work->tv_getwork));
  4058. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  4059. (struct timeval *)&(work->tv_getwork_reply));
  4060. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  4061. (struct timeval *)&(work->tv_work_start));
  4062. double work_to_submit = tdiff(ptv_submit,
  4063. (struct timeval *)&(work->tv_work_found));
  4064. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  4065. int diffplaces = 3;
  4066. localtime_r(&work->ts_getwork, tm);
  4067. memcpy(&tm_getwork, tm, sizeof(struct tm));
  4068. localtime_r(&ts_submit_reply, tm);
  4069. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  4070. if (work->clone) {
  4071. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  4072. tdiff((struct timeval *)&(work->tv_cloned),
  4073. (struct timeval *)&(work->tv_getwork_reply)));
  4074. }
  4075. else
  4076. strcpy(workclone, "O");
  4077. if (work->work_difficulty < 1)
  4078. diffplaces = 6;
  4079. snprintf(worktime, sizeof(worktime),
  4080. " <-%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",
  4081. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  4082. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  4083. work->getwork_mode, diffplaces, work->work_difficulty,
  4084. tm_getwork.tm_hour, tm_getwork.tm_min,
  4085. tm_getwork.tm_sec, getwork_time, workclone,
  4086. getwork_to_work, work_time, work_to_submit, submit_time,
  4087. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  4088. tm_submit_reply.tm_sec);
  4089. }
  4090. }
  4091. share_result(val, res, err, work, resubmit, worktime);
  4092. if (!opt_realquiet)
  4093. print_status(thr_id);
  4094. if (!want_per_device_stats) {
  4095. char logline[256];
  4096. struct cgpu_info *cgpu;
  4097. cgpu = get_thr_cgpu(thr_id);
  4098. get_statline(logline, sizeof(logline), cgpu);
  4099. applog(LOG_INFO, "%s", logline);
  4100. }
  4101. json_decref(val);
  4102. rc = true;
  4103. out:
  4104. return rc;
  4105. }
  4106. /* Specifies whether we can use this pool for work or not. */
  4107. static bool pool_unworkable(const struct pool * const pool)
  4108. {
  4109. if (pool->idle)
  4110. return true;
  4111. if (pool->enabled != POOL_ENABLED)
  4112. return true;
  4113. if (pool->has_stratum && !pool->stratum_active)
  4114. return true;
  4115. return false;
  4116. }
  4117. static
  4118. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4119. {
  4120. if (pool->enabled != POOL_ENABLED)
  4121. return false;
  4122. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4123. return true;
  4124. if (!cp)
  4125. cp = current_pool();
  4126. return (pool == cp);
  4127. }
  4128. static
  4129. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4130. {
  4131. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4132. }
  4133. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4134. * rolling average per 10 minutes and if pools start getting more, it biases
  4135. * away from them to distribute work evenly. The share count is reset to the
  4136. * rolling average every 10 minutes to not send all work to one pool after it
  4137. * has been disabled/out for an extended period. */
  4138. static struct pool *select_balanced(struct pool *cp)
  4139. {
  4140. int i, lowest = cp->shares;
  4141. struct pool *ret = cp;
  4142. for (i = 0; i < total_pools; i++) {
  4143. struct pool *pool = pools[i];
  4144. if (pool_unworkable(pool))
  4145. continue;
  4146. if (pool->shares < lowest) {
  4147. lowest = pool->shares;
  4148. ret = pool;
  4149. }
  4150. }
  4151. ret->shares++;
  4152. return ret;
  4153. }
  4154. static bool pool_active(struct pool *, bool pinging);
  4155. static void pool_died(struct pool *);
  4156. static struct pool *priority_pool(int choice);
  4157. static bool pool_unusable(struct pool *pool);
  4158. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4159. * it has any quota left. */
  4160. static inline struct pool *select_pool(bool lagging)
  4161. {
  4162. static int rotating_pool = 0;
  4163. struct pool *pool, *cp;
  4164. bool avail = false;
  4165. int tested, i;
  4166. cp = current_pool();
  4167. retry:
  4168. if (pool_strategy == POOL_BALANCE) {
  4169. pool = select_balanced(cp);
  4170. goto out;
  4171. }
  4172. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4173. pool = cp;
  4174. goto out;
  4175. } else
  4176. pool = NULL;
  4177. for (i = 0; i < total_pools; i++) {
  4178. struct pool *tp = pools[i];
  4179. if (tp->quota_used < tp->quota_gcd) {
  4180. avail = true;
  4181. break;
  4182. }
  4183. }
  4184. /* There are no pools with quota, so reset them. */
  4185. if (!avail) {
  4186. for (i = 0; i < total_pools; i++)
  4187. pools[i]->quota_used = 0;
  4188. if (++rotating_pool >= total_pools)
  4189. rotating_pool = 0;
  4190. }
  4191. /* Try to find the first pool in the rotation that is usable */
  4192. tested = 0;
  4193. while (!pool && tested++ < total_pools) {
  4194. pool = pools[rotating_pool];
  4195. if (pool->quota_used++ < pool->quota_gcd) {
  4196. if (!pool_unworkable(pool))
  4197. break;
  4198. /* Failover-only flag for load-balance means distribute
  4199. * unused quota to priority pool 0. */
  4200. if (opt_fail_only)
  4201. priority_pool(0)->quota_used--;
  4202. }
  4203. pool = NULL;
  4204. if (++rotating_pool >= total_pools)
  4205. rotating_pool = 0;
  4206. }
  4207. /* If there are no alive pools with quota, choose according to
  4208. * priority. */
  4209. if (!pool) {
  4210. for (i = 0; i < total_pools; i++) {
  4211. struct pool *tp = priority_pool(i);
  4212. if (!pool_unusable(tp)) {
  4213. pool = tp;
  4214. break;
  4215. }
  4216. }
  4217. }
  4218. /* If still nothing is usable, use the current pool */
  4219. if (!pool)
  4220. pool = cp;
  4221. out:
  4222. if (!pool_actively_in_use(pool, cp))
  4223. {
  4224. if (!pool_active(pool, false))
  4225. {
  4226. pool_died(pool);
  4227. goto retry;
  4228. }
  4229. pool_tclear(pool, &pool->idle);
  4230. }
  4231. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4232. return pool;
  4233. }
  4234. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4235. static const uint64_t diffone = 0xFFFF000000000000ull;
  4236. static double target_diff(const unsigned char *target)
  4237. {
  4238. double targ = 0;
  4239. signed int i;
  4240. for (i = 31; i >= 0; --i)
  4241. targ = (targ * 0x100) + target[i];
  4242. return DIFFEXACTONE / (targ ?: 1);
  4243. }
  4244. /*
  4245. * Calculate the work share difficulty
  4246. */
  4247. static void calc_diff(struct work *work, int known)
  4248. {
  4249. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4250. double difficulty;
  4251. if (!known) {
  4252. work->work_difficulty = target_diff(work->target);
  4253. } else
  4254. work->work_difficulty = known;
  4255. difficulty = work->work_difficulty;
  4256. pool_stats->last_diff = difficulty;
  4257. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4258. if (difficulty == pool_stats->min_diff)
  4259. pool_stats->min_diff_count++;
  4260. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4261. pool_stats->min_diff = difficulty;
  4262. pool_stats->min_diff_count = 1;
  4263. }
  4264. if (difficulty == pool_stats->max_diff)
  4265. pool_stats->max_diff_count++;
  4266. else if (difficulty > pool_stats->max_diff) {
  4267. pool_stats->max_diff = difficulty;
  4268. pool_stats->max_diff_count = 1;
  4269. }
  4270. }
  4271. static
  4272. void setup_benchmark_pool()
  4273. {
  4274. struct pool *pool;
  4275. want_longpoll = false;
  4276. // Temporarily disable opt_benchmark to avoid auto-removal
  4277. opt_benchmark = false;
  4278. pool = add_pool();
  4279. opt_benchmark = true;
  4280. pool->rpc_url = malloc(255);
  4281. strcpy(pool->rpc_url, "Benchmark");
  4282. pool->rpc_user = pool->rpc_url;
  4283. pool->rpc_pass = pool->rpc_url;
  4284. enable_pool(pool);
  4285. pool->idle = false;
  4286. successful_connect = true;
  4287. {
  4288. struct stratum_work * const swork = &pool->swork;
  4289. const int branchcount = 15; // 1 MB block
  4290. const size_t branchdatasz = branchcount * 0x20;
  4291. const size_t coinbase_sz = 6 * 1024;
  4292. bytes_resize(&swork->coinbase, coinbase_sz);
  4293. memset(bytes_buf(&swork->coinbase), '\xff', coinbase_sz);
  4294. swork->nonce2_offset = 0;
  4295. bytes_resize(&swork->merkle_bin, branchdatasz);
  4296. memset(bytes_buf(&swork->merkle_bin), '\xff', branchdatasz);
  4297. swork->merkles = branchcount;
  4298. memset(swork->header1, '\xff', 36);
  4299. swork->ntime = 0x7fffffff;
  4300. timer_unset(&swork->tv_received);
  4301. memset(swork->diffbits, '\0', 4);
  4302. set_target_to_pdiff(swork->target, 1.0);
  4303. pool->nonce2sz = swork->n2size = GBT_XNONCESZ;
  4304. pool->nonce2 = 0;
  4305. }
  4306. }
  4307. void get_benchmark_work(struct work *work)
  4308. {
  4309. static uint32_t blkhdr[20];
  4310. for (int i = 18; i >= 0; --i)
  4311. if (++blkhdr[i])
  4312. break;
  4313. memcpy(&work->data[ 0], blkhdr, 80);
  4314. memcpy(&work->data[80], workpadding_bin, 48);
  4315. calc_midstate(work);
  4316. set_target_to_pdiff(work->target, 1.0);
  4317. work->mandatory = true;
  4318. work->pool = pools[0];
  4319. cgtime(&work->tv_getwork);
  4320. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4321. copy_time(&work->tv_staged, &work->tv_getwork);
  4322. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4323. calc_diff(work, 0);
  4324. work_set_simple_ntime_roll_limit(work, 60);
  4325. }
  4326. static void wake_gws(void);
  4327. static void update_last_work(struct work *work)
  4328. {
  4329. if (!work->tr)
  4330. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4331. return;
  4332. struct pool *pool = work->pool;
  4333. mutex_lock(&pool->last_work_lock);
  4334. if (pool->last_work_copy)
  4335. free_work(pool->last_work_copy);
  4336. pool->last_work_copy = copy_work(work);
  4337. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4338. mutex_unlock(&pool->last_work_lock);
  4339. }
  4340. static
  4341. void gbt_req_target(json_t *req)
  4342. {
  4343. json_t *j;
  4344. json_t *n;
  4345. if (!request_target_str)
  4346. return;
  4347. j = json_object_get(req, "params");
  4348. if (!j)
  4349. {
  4350. n = json_array();
  4351. if (!n)
  4352. return;
  4353. if (json_object_set_new(req, "params", n))
  4354. goto erradd;
  4355. j = n;
  4356. }
  4357. n = json_array_get(j, 0);
  4358. if (!n)
  4359. {
  4360. n = json_object();
  4361. if (!n)
  4362. return;
  4363. if (json_array_append_new(j, n))
  4364. goto erradd;
  4365. }
  4366. j = n;
  4367. n = json_string(request_target_str);
  4368. if (!n)
  4369. return;
  4370. if (json_object_set_new(j, "target", n))
  4371. goto erradd;
  4372. return;
  4373. erradd:
  4374. json_decref(n);
  4375. }
  4376. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4377. {
  4378. char *rpc_req;
  4379. clean_work(work);
  4380. switch (proto) {
  4381. case PLP_GETWORK:
  4382. work->getwork_mode = GETWORK_MODE_POOL;
  4383. return strdup(getwork_req);
  4384. case PLP_GETBLOCKTEMPLATE:
  4385. work->getwork_mode = GETWORK_MODE_GBT;
  4386. blktemplate_t * const tmpl = blktmpl_create();
  4387. if (!tmpl)
  4388. goto gbtfail2;
  4389. work->tr = tmpl_makeref(tmpl);
  4390. gbt_capabilities_t caps = blktmpl_addcaps(tmpl);
  4391. if (!caps)
  4392. goto gbtfail;
  4393. caps |= GBT_LONGPOLL;
  4394. #if BLKMAKER_VERSION > 1
  4395. if (opt_coinbase_script.sz)
  4396. caps |= GBT_CBVALUE;
  4397. #endif
  4398. json_t *req = blktmpl_request_jansson(caps, lpid);
  4399. if (!req)
  4400. goto gbtfail;
  4401. if (probe)
  4402. gbt_req_target(req);
  4403. rpc_req = json_dumps(req, 0);
  4404. if (!rpc_req)
  4405. goto gbtfail;
  4406. json_decref(req);
  4407. return rpc_req;
  4408. default:
  4409. return NULL;
  4410. }
  4411. return NULL;
  4412. gbtfail:
  4413. tmpl_decref(work->tr);
  4414. work->tr = NULL;
  4415. gbtfail2:
  4416. return NULL;
  4417. }
  4418. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4419. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4420. static const char *pool_protocol_name(enum pool_protocol proto)
  4421. {
  4422. switch (proto) {
  4423. case PLP_GETBLOCKTEMPLATE:
  4424. return "getblocktemplate";
  4425. case PLP_GETWORK:
  4426. return "getwork";
  4427. default:
  4428. return "UNKNOWN";
  4429. }
  4430. }
  4431. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4432. {
  4433. switch (proto) {
  4434. case PLP_GETBLOCKTEMPLATE:
  4435. if (want_getwork)
  4436. return PLP_GETWORK;
  4437. default:
  4438. return PLP_NONE;
  4439. }
  4440. }
  4441. static bool get_upstream_work(struct work *work, CURL *curl)
  4442. {
  4443. struct pool *pool = work->pool;
  4444. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4445. struct timeval tv_elapsed;
  4446. json_t *val = NULL;
  4447. bool rc = false;
  4448. char *url;
  4449. enum pool_protocol proto;
  4450. char *rpc_req;
  4451. if (pool->proto == PLP_NONE)
  4452. pool->proto = PLP_GETBLOCKTEMPLATE;
  4453. tryagain:
  4454. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4455. work->pool = pool;
  4456. if (!rpc_req)
  4457. return false;
  4458. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4459. url = pool->rpc_url;
  4460. cgtime(&work->tv_getwork);
  4461. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4462. false, &work->rolltime, pool, false);
  4463. pool_stats->getwork_attempts++;
  4464. free(rpc_req);
  4465. if (likely(val)) {
  4466. rc = work_decode(pool, work, val);
  4467. if (unlikely(!rc))
  4468. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4469. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4470. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4471. pool->proto = proto;
  4472. goto tryagain;
  4473. } else
  4474. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4475. cgtime(&work->tv_getwork_reply);
  4476. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4477. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4478. pool_stats->getwork_wait_rolling /= 1.63;
  4479. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4480. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4481. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4482. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4483. }
  4484. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4485. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4486. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4487. }
  4488. pool_stats->getwork_calls++;
  4489. work->pool = pool;
  4490. work->longpoll = false;
  4491. calc_diff(work, 0);
  4492. total_getworks++;
  4493. pool->getwork_requested++;
  4494. if (rc)
  4495. update_last_work(work);
  4496. if (likely(val))
  4497. json_decref(val);
  4498. return rc;
  4499. }
  4500. #ifdef HAVE_CURSES
  4501. static void disable_curses(void)
  4502. {
  4503. if (curses_active_locked()) {
  4504. use_curses = false;
  4505. curses_active = false;
  4506. leaveok(logwin, false);
  4507. leaveok(statuswin, false);
  4508. leaveok(mainwin, false);
  4509. nocbreak();
  4510. echo();
  4511. delwin(logwin);
  4512. delwin(statuswin);
  4513. delwin(mainwin);
  4514. endwin();
  4515. #ifdef WIN32
  4516. // Move the cursor to after curses output.
  4517. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4518. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4519. COORD coord;
  4520. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4521. coord.X = 0;
  4522. coord.Y = csbi.dwSize.Y - 1;
  4523. SetConsoleCursorPosition(hout, coord);
  4524. }
  4525. #endif
  4526. unlock_curses();
  4527. }
  4528. }
  4529. #endif
  4530. static void __kill_work(void)
  4531. {
  4532. struct cgpu_info *cgpu;
  4533. struct thr_info *thr;
  4534. int i;
  4535. if (!successful_connect)
  4536. return;
  4537. applog(LOG_INFO, "Received kill message");
  4538. shutting_down = true;
  4539. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4540. notifier_wake(submit_waiting_notifier);
  4541. #ifdef USE_LIBMICROHTTPD
  4542. httpsrv_stop();
  4543. #endif
  4544. applog(LOG_DEBUG, "Killing off watchpool thread");
  4545. /* Kill the watchpool thread */
  4546. thr = &control_thr[watchpool_thr_id];
  4547. thr_info_cancel(thr);
  4548. applog(LOG_DEBUG, "Killing off watchdog thread");
  4549. /* Kill the watchdog thread */
  4550. thr = &control_thr[watchdog_thr_id];
  4551. thr_info_cancel(thr);
  4552. applog(LOG_DEBUG, "Shutting down mining threads");
  4553. for (i = 0; i < mining_threads; i++) {
  4554. thr = get_thread(i);
  4555. if (!thr)
  4556. continue;
  4557. cgpu = thr->cgpu;
  4558. if (!cgpu)
  4559. continue;
  4560. if (!cgpu->threads)
  4561. continue;
  4562. cgpu->shutdown = true;
  4563. thr->work_restart = true;
  4564. notifier_wake(thr->notifier);
  4565. notifier_wake(thr->work_restart_notifier);
  4566. }
  4567. sleep(1);
  4568. applog(LOG_DEBUG, "Killing off mining threads");
  4569. /* Kill the mining threads*/
  4570. for (i = 0; i < mining_threads; i++) {
  4571. thr = get_thread(i);
  4572. if (!thr)
  4573. continue;
  4574. cgpu = thr->cgpu;
  4575. if (cgpu->threads)
  4576. {
  4577. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4578. thr_info_cancel(thr);
  4579. }
  4580. cgpu->status = LIFE_DEAD2;
  4581. }
  4582. /* Stop the others */
  4583. applog(LOG_DEBUG, "Killing off API thread");
  4584. thr = &control_thr[api_thr_id];
  4585. thr_info_cancel(thr);
  4586. }
  4587. /* This should be the common exit path */
  4588. void kill_work(void)
  4589. {
  4590. __kill_work();
  4591. quit(0, "Shutdown signal received.");
  4592. }
  4593. static
  4594. #ifdef WIN32
  4595. #ifndef _WIN64
  4596. const
  4597. #endif
  4598. #endif
  4599. char **initial_args;
  4600. void _bfg_clean_up(bool);
  4601. void app_restart(void)
  4602. {
  4603. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4604. __kill_work();
  4605. _bfg_clean_up(true);
  4606. #if defined(unix) || defined(__APPLE__)
  4607. if (forkpid > 0) {
  4608. kill(forkpid, SIGTERM);
  4609. forkpid = 0;
  4610. }
  4611. #endif
  4612. execv(initial_args[0], initial_args);
  4613. applog(LOG_WARNING, "Failed to restart application");
  4614. }
  4615. static void sighandler(int __maybe_unused sig)
  4616. {
  4617. /* Restore signal handlers so we can still quit if kill_work fails */
  4618. sigaction(SIGTERM, &termhandler, NULL);
  4619. sigaction(SIGINT, &inthandler, NULL);
  4620. kill_work();
  4621. }
  4622. static void start_longpoll(void);
  4623. static void stop_longpoll(void);
  4624. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4625. * this pool. */
  4626. static void recruit_curl(struct pool *pool)
  4627. {
  4628. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4629. if (unlikely(!ce))
  4630. quit(1, "Failed to calloc in recruit_curl");
  4631. ce->curl = curl_easy_init();
  4632. if (unlikely(!ce->curl))
  4633. quit(1, "Failed to init in recruit_curl");
  4634. LL_PREPEND(pool->curllist, ce);
  4635. pool->curls++;
  4636. }
  4637. /* Grab an available curl if there is one. If not, then recruit extra curls
  4638. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4639. * and there are already 5 curls in circulation. Limit total number to the
  4640. * number of mining threads per pool as well to prevent blasting a pool during
  4641. * network delays/outages. */
  4642. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4643. {
  4644. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4645. bool recruited = false;
  4646. struct curl_ent *ce;
  4647. mutex_lock(&pool->pool_lock);
  4648. retry:
  4649. if (!pool->curls) {
  4650. recruit_curl(pool);
  4651. recruited = true;
  4652. } else if (!pool->curllist) {
  4653. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4654. if (!blocking) {
  4655. mutex_unlock(&pool->pool_lock);
  4656. return NULL;
  4657. }
  4658. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4659. goto retry;
  4660. } else {
  4661. recruit_curl(pool);
  4662. recruited = true;
  4663. }
  4664. }
  4665. ce = pool->curllist;
  4666. LL_DELETE(pool->curllist, ce);
  4667. mutex_unlock(&pool->pool_lock);
  4668. if (recruited)
  4669. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4670. return ce;
  4671. }
  4672. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4673. {
  4674. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4675. }
  4676. __maybe_unused
  4677. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4678. {
  4679. return pop_curl_entry3(pool, 1);
  4680. }
  4681. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4682. {
  4683. mutex_lock(&pool->pool_lock);
  4684. if (!ce || !ce->curl)
  4685. quithere(1, "Attempted to add NULL");
  4686. LL_PREPEND(pool->curllist, ce);
  4687. cgtime(&ce->tv);
  4688. pthread_cond_broadcast(&pool->cr_cond);
  4689. mutex_unlock(&pool->pool_lock);
  4690. }
  4691. bool stale_work(struct work *work, bool share);
  4692. static inline bool should_roll(struct work *work)
  4693. {
  4694. struct timeval now;
  4695. time_t expiry;
  4696. if (!pool_actively_in_use(work->pool, NULL))
  4697. return false;
  4698. if (stale_work(work, false))
  4699. return false;
  4700. if (work->rolltime > opt_scantime)
  4701. expiry = work->rolltime;
  4702. else
  4703. expiry = opt_scantime;
  4704. expiry = expiry * 2 / 3;
  4705. /* We shouldn't roll if we're unlikely to get one shares' duration
  4706. * work out of doing so */
  4707. cgtime(&now);
  4708. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4709. return false;
  4710. return true;
  4711. }
  4712. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4713. * reject blocks as invalid. */
  4714. static inline bool can_roll(struct work *work)
  4715. {
  4716. if (work->stratum)
  4717. return false;
  4718. if (!(work->pool && !work->clone))
  4719. return false;
  4720. if (work->tr)
  4721. {
  4722. if (stale_work(work, false))
  4723. return false;
  4724. return blkmk_work_left(work->tr->tmpl);
  4725. }
  4726. return (work->rolltime &&
  4727. work->rolls < 7000 && !stale_work(work, false));
  4728. }
  4729. static void roll_work(struct work *work)
  4730. {
  4731. if (work->tr)
  4732. {
  4733. struct timeval tv_now;
  4734. cgtime(&tv_now);
  4735. if (blkmk_get_data(work->tr->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4736. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4737. swap32yes(work->data, work->data, 80 / 4);
  4738. calc_midstate(work);
  4739. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4740. } else {
  4741. uint32_t *work_ntime;
  4742. uint32_t ntime;
  4743. work_ntime = (uint32_t *)(work->data + 68);
  4744. ntime = be32toh(*work_ntime);
  4745. ntime++;
  4746. *work_ntime = htobe32(ntime);
  4747. work_set_simple_ntime_roll_limit(work, 0);
  4748. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4749. }
  4750. local_work++;
  4751. work->rolls++;
  4752. work->blk.nonce = 0;
  4753. /* This is now a different work item so it needs a different ID for the
  4754. * hashtable */
  4755. work->id = total_work++;
  4756. }
  4757. /* Duplicates any dynamically allocated arrays within the work struct to
  4758. * prevent a copied work struct from freeing ram belonging to another struct */
  4759. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4760. {
  4761. int id = work->id;
  4762. clean_work(work);
  4763. memcpy(work, base_work, sizeof(struct work));
  4764. /* Keep the unique new id assigned during make_work to prevent copied
  4765. * work from having the same id. */
  4766. work->id = id;
  4767. if (base_work->job_id)
  4768. work->job_id = strdup(base_work->job_id);
  4769. if (base_work->nonce1)
  4770. work->nonce1 = strdup(base_work->nonce1);
  4771. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4772. if (base_work->tr)
  4773. tmpl_incref(base_work->tr);
  4774. if (noffset)
  4775. {
  4776. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4777. uint32_t ntime = be32toh(*work_ntime);
  4778. ntime += noffset;
  4779. *work_ntime = htobe32(ntime);
  4780. }
  4781. if (work->device_data_dup_func)
  4782. work->device_data = work->device_data_dup_func(work);
  4783. }
  4784. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4785. * for all dynamically allocated arrays within the struct */
  4786. struct work *copy_work(const struct work *base_work)
  4787. {
  4788. struct work *work = make_work();
  4789. _copy_work(work, base_work, 0);
  4790. return work;
  4791. }
  4792. void __copy_work(struct work *work, const struct work *base_work)
  4793. {
  4794. _copy_work(work, base_work, 0);
  4795. }
  4796. static struct work *make_clone(struct work *work)
  4797. {
  4798. struct work *work_clone = copy_work(work);
  4799. work_clone->clone = true;
  4800. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4801. work_clone->longpoll = false;
  4802. work_clone->mandatory = false;
  4803. /* Make cloned work appear slightly older to bias towards keeping the
  4804. * master work item which can be further rolled */
  4805. work_clone->tv_staged.tv_sec -= 1;
  4806. return work_clone;
  4807. }
  4808. static void stage_work(struct work *work);
  4809. static bool clone_available(void)
  4810. {
  4811. struct work *work_clone = NULL, *work, *tmp;
  4812. bool cloned = false;
  4813. mutex_lock(stgd_lock);
  4814. if (!staged_rollable)
  4815. goto out_unlock;
  4816. HASH_ITER(hh, staged_work, work, tmp) {
  4817. if (can_roll(work) && should_roll(work)) {
  4818. roll_work(work);
  4819. work_clone = make_clone(work);
  4820. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4821. roll_work(work);
  4822. cloned = true;
  4823. break;
  4824. }
  4825. }
  4826. out_unlock:
  4827. mutex_unlock(stgd_lock);
  4828. if (cloned) {
  4829. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4830. stage_work(work_clone);
  4831. }
  4832. return cloned;
  4833. }
  4834. static void pool_died(struct pool *pool)
  4835. {
  4836. if (!pool_tset(pool, &pool->idle)) {
  4837. cgtime(&pool->tv_idle);
  4838. if (pool == current_pool()) {
  4839. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4840. switch_pools(NULL);
  4841. } else
  4842. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4843. }
  4844. }
  4845. bool stale_work(struct work *work, bool share)
  4846. {
  4847. unsigned work_expiry;
  4848. struct pool *pool;
  4849. uint32_t block_id;
  4850. unsigned getwork_delay;
  4851. if (opt_benchmark)
  4852. return false;
  4853. block_id = ((uint32_t*)work->data)[1];
  4854. pool = work->pool;
  4855. /* Technically the rolltime should be correct but some pools
  4856. * advertise a broken expire= that is lower than a meaningful
  4857. * scantime */
  4858. if (work->rolltime >= opt_scantime || work->tr)
  4859. work_expiry = work->rolltime;
  4860. else
  4861. work_expiry = opt_expiry;
  4862. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4863. if (work_expiry > max_expiry)
  4864. work_expiry = max_expiry;
  4865. if (share) {
  4866. /* If the share isn't on this pool's latest block, it's stale */
  4867. if (pool->block_id && pool->block_id != block_id)
  4868. {
  4869. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4870. return true;
  4871. }
  4872. /* If the pool doesn't want old shares, then any found in work before
  4873. * the most recent longpoll is stale */
  4874. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4875. {
  4876. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4877. return true;
  4878. }
  4879. } else {
  4880. /* If this work isn't for the latest Bitcoin block, it's stale */
  4881. /* But only care about the current pool if failover-only */
  4882. if (enabled_pools <= 1 || opt_fail_only) {
  4883. if (pool->block_id && block_id != pool->block_id)
  4884. {
  4885. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4886. return true;
  4887. }
  4888. } else {
  4889. if (block_id != current_block_id)
  4890. {
  4891. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4892. return true;
  4893. }
  4894. }
  4895. /* If the pool has asked us to restart since this work, it's stale */
  4896. if (work->work_restart_id != pool->work_restart_id)
  4897. {
  4898. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4899. return true;
  4900. }
  4901. if (pool->has_stratum && work->job_id) {
  4902. bool same_job;
  4903. if (!pool->stratum_active || !pool->stratum_notify) {
  4904. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4905. return true;
  4906. }
  4907. same_job = true;
  4908. cg_rlock(&pool->data_lock);
  4909. if (strcmp(work->job_id, pool->swork.job_id))
  4910. same_job = false;
  4911. cg_runlock(&pool->data_lock);
  4912. if (!same_job) {
  4913. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4914. return true;
  4915. }
  4916. }
  4917. /* Factor in the average getwork delay of this pool, rounding it up to
  4918. * the nearest second */
  4919. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4920. if (unlikely(work_expiry <= getwork_delay + 5))
  4921. work_expiry = 5;
  4922. else
  4923. work_expiry -= getwork_delay;
  4924. }
  4925. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4926. if (elapsed_since_staged > work_expiry) {
  4927. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4928. return true;
  4929. }
  4930. /* If the user only wants strict failover, any work from a pool other than
  4931. * the current one is always considered stale */
  4932. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4933. {
  4934. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4935. return true;
  4936. }
  4937. return false;
  4938. }
  4939. static double share_diff(const struct work *work)
  4940. {
  4941. double ret;
  4942. bool new_best = false;
  4943. ret = target_diff(work->hash);
  4944. cg_wlock(&control_lock);
  4945. if (unlikely(ret > best_diff)) {
  4946. new_best = true;
  4947. best_diff = ret;
  4948. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4949. }
  4950. if (unlikely(ret > work->pool->best_diff))
  4951. work->pool->best_diff = ret;
  4952. cg_wunlock(&control_lock);
  4953. if (unlikely(new_best))
  4954. applog(LOG_INFO, "New best share: %s", best_share);
  4955. return ret;
  4956. }
  4957. static void regen_hash(struct work *work)
  4958. {
  4959. hash_data(work->hash, work->data);
  4960. }
  4961. static void rebuild_hash(struct work *work)
  4962. {
  4963. if (opt_scrypt)
  4964. scrypt_regenhash(work);
  4965. else
  4966. regen_hash(work);
  4967. work->share_diff = share_diff(work);
  4968. if (unlikely(work->share_diff >= current_diff)) {
  4969. work->block = true;
  4970. work->pool->solved++;
  4971. found_blocks++;
  4972. work->mandatory = true;
  4973. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4974. }
  4975. }
  4976. static void submit_discard_share2(const char *reason, struct work *work)
  4977. {
  4978. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4979. sharelog(reason, work);
  4980. mutex_lock(&stats_lock);
  4981. ++total_stale;
  4982. ++cgpu->stale;
  4983. ++(work->pool->stale_shares);
  4984. total_diff_stale += work->work_difficulty;
  4985. cgpu->diff_stale += work->work_difficulty;
  4986. work->pool->diff_stale += work->work_difficulty;
  4987. mutex_unlock(&stats_lock);
  4988. }
  4989. static void submit_discard_share(struct work *work)
  4990. {
  4991. submit_discard_share2("discard", work);
  4992. }
  4993. struct submit_work_state {
  4994. struct work *work;
  4995. bool resubmit;
  4996. struct curl_ent *ce;
  4997. int failures;
  4998. struct timeval tv_staleexpire;
  4999. char *s;
  5000. struct timeval tv_submit;
  5001. struct submit_work_state *next;
  5002. };
  5003. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  5004. {
  5005. long *p_timeout_us = userp;
  5006. const long max_ms = LONG_MAX / 1000;
  5007. if (max_ms < timeout_ms)
  5008. timeout_ms = max_ms;
  5009. *p_timeout_us = timeout_ms * 1000;
  5010. return 0;
  5011. }
  5012. static void sws_has_ce(struct submit_work_state *sws)
  5013. {
  5014. struct pool *pool = sws->work->pool;
  5015. sws->s = submit_upstream_work_request(sws->work);
  5016. cgtime(&sws->tv_submit);
  5017. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5018. }
  5019. static struct submit_work_state *begin_submission(struct work *work)
  5020. {
  5021. struct pool *pool;
  5022. struct submit_work_state *sws = NULL;
  5023. pool = work->pool;
  5024. sws = malloc(sizeof(*sws));
  5025. *sws = (struct submit_work_state){
  5026. .work = work,
  5027. };
  5028. rebuild_hash(work);
  5029. if (stale_work(work, true)) {
  5030. work->stale = true;
  5031. if (opt_submit_stale)
  5032. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  5033. else if (pool->submit_old)
  5034. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  5035. else {
  5036. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  5037. submit_discard_share(work);
  5038. goto out;
  5039. }
  5040. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5041. }
  5042. if (work->stratum) {
  5043. char *s;
  5044. s = malloc(1024);
  5045. sws->s = s;
  5046. } else {
  5047. /* submit solution to bitcoin via JSON-RPC */
  5048. sws->ce = pop_curl_entry2(pool, false);
  5049. if (sws->ce) {
  5050. sws_has_ce(sws);
  5051. } else {
  5052. sws->next = pool->sws_waiting_on_curl;
  5053. pool->sws_waiting_on_curl = sws;
  5054. if (sws->next)
  5055. applog(LOG_DEBUG, "submit_thread queuing submission");
  5056. else
  5057. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  5058. }
  5059. }
  5060. return sws;
  5061. out:
  5062. free(sws);
  5063. return NULL;
  5064. }
  5065. static bool retry_submission(struct submit_work_state *sws)
  5066. {
  5067. struct work *work = sws->work;
  5068. struct pool *pool = work->pool;
  5069. sws->resubmit = true;
  5070. if ((!work->stale) && stale_work(work, true)) {
  5071. work->stale = true;
  5072. if (opt_submit_stale)
  5073. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  5074. else if (pool->submit_old)
  5075. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  5076. else {
  5077. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  5078. submit_discard_share(work);
  5079. return false;
  5080. }
  5081. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  5082. }
  5083. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  5084. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  5085. submit_discard_share(work);
  5086. return false;
  5087. }
  5088. else if (work->stale) {
  5089. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  5090. {
  5091. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  5092. submit_discard_share(work);
  5093. return false;
  5094. }
  5095. }
  5096. /* pause, then restart work-request loop */
  5097. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  5098. cgtime(&sws->tv_submit);
  5099. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  5100. return true;
  5101. }
  5102. static void free_sws(struct submit_work_state *sws)
  5103. {
  5104. free(sws->s);
  5105. free_work(sws->work);
  5106. free(sws);
  5107. }
  5108. static void *submit_work_thread(__maybe_unused void *userdata)
  5109. {
  5110. int wip = 0;
  5111. CURLM *curlm;
  5112. long curlm_timeout_us = -1;
  5113. struct timeval curlm_timer;
  5114. struct submit_work_state *sws, **swsp;
  5115. struct submit_work_state *write_sws = NULL;
  5116. unsigned tsreduce = 0;
  5117. pthread_detach(pthread_self());
  5118. RenameThread("submit_work");
  5119. applog(LOG_DEBUG, "Creating extra submit work thread");
  5120. curlm = curl_multi_init();
  5121. curlm_timeout_us = -1;
  5122. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5123. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5124. fd_set rfds, wfds, efds;
  5125. int maxfd;
  5126. struct timeval tv_timeout, tv_now;
  5127. int n;
  5128. CURLMsg *cm;
  5129. FD_ZERO(&rfds);
  5130. while (1) {
  5131. mutex_lock(&submitting_lock);
  5132. total_submitting -= tsreduce;
  5133. tsreduce = 0;
  5134. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5135. notifier_read(submit_waiting_notifier);
  5136. }
  5137. // Receive any new submissions
  5138. while (submit_waiting) {
  5139. struct work *work = submit_waiting;
  5140. DL_DELETE(submit_waiting, work);
  5141. if ( (sws = begin_submission(work)) ) {
  5142. if (sws->ce)
  5143. curl_multi_add_handle(curlm, sws->ce->curl);
  5144. else if (sws->s) {
  5145. sws->next = write_sws;
  5146. write_sws = sws;
  5147. }
  5148. ++wip;
  5149. }
  5150. else {
  5151. --total_submitting;
  5152. free_work(work);
  5153. }
  5154. }
  5155. if (unlikely(shutting_down && !wip))
  5156. break;
  5157. mutex_unlock(&submitting_lock);
  5158. FD_ZERO(&rfds);
  5159. FD_ZERO(&wfds);
  5160. FD_ZERO(&efds);
  5161. tv_timeout.tv_sec = -1;
  5162. // Setup cURL with select
  5163. // Need to call perform to ensure the timeout gets updated
  5164. curl_multi_perform(curlm, &n);
  5165. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5166. if (curlm_timeout_us >= 0)
  5167. {
  5168. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5169. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5170. }
  5171. // Setup waiting stratum submissions with select
  5172. for (sws = write_sws; sws; sws = sws->next)
  5173. {
  5174. struct pool *pool = sws->work->pool;
  5175. int fd = pool->sock;
  5176. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5177. continue;
  5178. FD_SET(fd, &wfds);
  5179. set_maxfd(&maxfd, fd);
  5180. }
  5181. // Setup "submit waiting" notifier with select
  5182. FD_SET(submit_waiting_notifier[0], &rfds);
  5183. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5184. // Wait for something interesting to happen :)
  5185. cgtime(&tv_now);
  5186. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5187. FD_ZERO(&rfds);
  5188. continue;
  5189. }
  5190. // Handle any stratum ready-to-write results
  5191. for (swsp = &write_sws; (sws = *swsp); ) {
  5192. struct work *work = sws->work;
  5193. struct pool *pool = work->pool;
  5194. int fd = pool->sock;
  5195. bool sessionid_match;
  5196. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5197. next_write_sws:
  5198. // TODO: Check if stale, possibly discard etc
  5199. swsp = &sws->next;
  5200. continue;
  5201. }
  5202. cg_rlock(&pool->data_lock);
  5203. // 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
  5204. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5205. sessionid_match = (!pool->swork.nonce1) || !strcmp(work->nonce1, pool->swork.nonce1);
  5206. cg_runlock(&pool->data_lock);
  5207. if (!sessionid_match)
  5208. {
  5209. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5210. submit_discard_share2("disconnect", work);
  5211. ++tsreduce;
  5212. next_write_sws_del:
  5213. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5214. FD_CLR(fd, &wfds);
  5215. // Delete sws for this submission, since we're done with it
  5216. *swsp = sws->next;
  5217. free_sws(sws);
  5218. --wip;
  5219. continue;
  5220. }
  5221. char *s = sws->s;
  5222. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5223. int sshare_id;
  5224. uint32_t nonce;
  5225. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5226. char noncehex[9];
  5227. char ntimehex[9];
  5228. sshare->work = copy_work(work);
  5229. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5230. nonce = *((uint32_t *)(work->data + 76));
  5231. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5232. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5233. mutex_lock(&sshare_lock);
  5234. /* Give the stratum share a unique id */
  5235. sshare_id =
  5236. sshare->id = swork_id++;
  5237. HASH_ADD_INT(stratum_shares, id, sshare);
  5238. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5239. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5240. mutex_unlock(&sshare_lock);
  5241. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5242. if (likely(stratum_send(pool, s, strlen(s)))) {
  5243. if (pool_tclear(pool, &pool->submit_fail))
  5244. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5245. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5246. goto next_write_sws_del;
  5247. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5248. // Undo stuff
  5249. mutex_lock(&sshare_lock);
  5250. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5251. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5252. if (sshare)
  5253. HASH_DEL(stratum_shares, sshare);
  5254. mutex_unlock(&sshare_lock);
  5255. if (sshare)
  5256. {
  5257. free_work(sshare->work);
  5258. free(sshare);
  5259. }
  5260. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5261. total_ro++;
  5262. pool->remotefail_occasions++;
  5263. if (!sshare)
  5264. goto next_write_sws_del;
  5265. goto next_write_sws;
  5266. }
  5267. }
  5268. // Handle any cURL activities
  5269. curl_multi_perform(curlm, &n);
  5270. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5271. if (cm->msg == CURLMSG_DONE)
  5272. {
  5273. bool finished;
  5274. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5275. curl_multi_remove_handle(curlm, cm->easy_handle);
  5276. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5277. if (!finished) {
  5278. if (retry_submission(sws))
  5279. curl_multi_add_handle(curlm, sws->ce->curl);
  5280. else
  5281. finished = true;
  5282. }
  5283. if (finished) {
  5284. --wip;
  5285. ++tsreduce;
  5286. struct pool *pool = sws->work->pool;
  5287. if (pool->sws_waiting_on_curl) {
  5288. pool->sws_waiting_on_curl->ce = sws->ce;
  5289. sws_has_ce(pool->sws_waiting_on_curl);
  5290. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5291. curl_multi_add_handle(curlm, sws->ce->curl);
  5292. } else {
  5293. push_curl_entry(sws->ce, sws->work->pool);
  5294. }
  5295. free_sws(sws);
  5296. }
  5297. }
  5298. }
  5299. }
  5300. assert(!write_sws);
  5301. mutex_unlock(&submitting_lock);
  5302. curl_multi_cleanup(curlm);
  5303. applog(LOG_DEBUG, "submit_work thread exiting");
  5304. return NULL;
  5305. }
  5306. /* Find the pool that currently has the highest priority */
  5307. static struct pool *priority_pool(int choice)
  5308. {
  5309. struct pool *ret = NULL;
  5310. int i;
  5311. for (i = 0; i < total_pools; i++) {
  5312. struct pool *pool = pools[i];
  5313. if (pool->prio == choice) {
  5314. ret = pool;
  5315. break;
  5316. }
  5317. }
  5318. if (unlikely(!ret)) {
  5319. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5320. return pools[choice];
  5321. }
  5322. return ret;
  5323. }
  5324. int prioritize_pools(char *param, int *pid)
  5325. {
  5326. char *ptr, *next;
  5327. int i, pr, prio = 0;
  5328. if (total_pools == 0) {
  5329. return MSG_NOPOOL;
  5330. }
  5331. if (param == NULL || *param == '\0') {
  5332. return MSG_MISPID;
  5333. }
  5334. bool pools_changed[total_pools];
  5335. int new_prio[total_pools];
  5336. for (i = 0; i < total_pools; ++i)
  5337. pools_changed[i] = false;
  5338. next = param;
  5339. while (next && *next) {
  5340. ptr = next;
  5341. next = strchr(ptr, ',');
  5342. if (next)
  5343. *(next++) = '\0';
  5344. i = atoi(ptr);
  5345. if (i < 0 || i >= total_pools) {
  5346. *pid = i;
  5347. return MSG_INVPID;
  5348. }
  5349. if (pools_changed[i]) {
  5350. *pid = i;
  5351. return MSG_DUPPID;
  5352. }
  5353. pools_changed[i] = true;
  5354. new_prio[i] = prio++;
  5355. }
  5356. // Only change them if no errors
  5357. for (i = 0; i < total_pools; i++) {
  5358. if (pools_changed[i])
  5359. pools[i]->prio = new_prio[i];
  5360. }
  5361. // In priority order, cycle through the unchanged pools and append them
  5362. for (pr = 0; pr < total_pools; pr++)
  5363. for (i = 0; i < total_pools; i++) {
  5364. if (!pools_changed[i] && pools[i]->prio == pr) {
  5365. pools[i]->prio = prio++;
  5366. pools_changed[i] = true;
  5367. break;
  5368. }
  5369. }
  5370. if (current_pool()->prio)
  5371. switch_pools(NULL);
  5372. return MSG_POOLPRIO;
  5373. }
  5374. void validate_pool_priorities(void)
  5375. {
  5376. // TODO: this should probably do some sort of logging
  5377. int i, j;
  5378. bool used[total_pools];
  5379. bool valid[total_pools];
  5380. for (i = 0; i < total_pools; i++)
  5381. used[i] = valid[i] = false;
  5382. for (i = 0; i < total_pools; i++) {
  5383. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5384. if (!used[pools[i]->prio]) {
  5385. valid[i] = true;
  5386. used[pools[i]->prio] = true;
  5387. }
  5388. }
  5389. }
  5390. for (i = 0; i < total_pools; i++) {
  5391. if (!valid[i]) {
  5392. for (j = 0; j < total_pools; j++) {
  5393. if (!used[j]) {
  5394. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5395. pools[i]->prio = j;
  5396. used[j] = true;
  5397. break;
  5398. }
  5399. }
  5400. }
  5401. }
  5402. }
  5403. static void clear_pool_work(struct pool *pool);
  5404. /* Specifies whether we can switch to this pool or not. */
  5405. static bool pool_unusable(struct pool *pool)
  5406. {
  5407. if (pool->idle)
  5408. return true;
  5409. if (pool->enabled != POOL_ENABLED)
  5410. return true;
  5411. return false;
  5412. }
  5413. void switch_pools(struct pool *selected)
  5414. {
  5415. struct pool *pool, *last_pool;
  5416. int i, pool_no, next_pool;
  5417. cg_wlock(&control_lock);
  5418. last_pool = currentpool;
  5419. pool_no = currentpool->pool_no;
  5420. /* Switch selected to pool number 0 and move the rest down */
  5421. if (selected) {
  5422. if (selected->prio != 0) {
  5423. for (i = 0; i < total_pools; i++) {
  5424. pool = pools[i];
  5425. if (pool->prio < selected->prio)
  5426. pool->prio++;
  5427. }
  5428. selected->prio = 0;
  5429. }
  5430. }
  5431. switch (pool_strategy) {
  5432. /* All of these set to the master pool */
  5433. case POOL_BALANCE:
  5434. case POOL_FAILOVER:
  5435. case POOL_LOADBALANCE:
  5436. for (i = 0; i < total_pools; i++) {
  5437. pool = priority_pool(i);
  5438. if (pool_unusable(pool))
  5439. continue;
  5440. pool_no = pool->pool_no;
  5441. break;
  5442. }
  5443. break;
  5444. /* Both of these simply increment and cycle */
  5445. case POOL_ROUNDROBIN:
  5446. case POOL_ROTATE:
  5447. if (selected && !selected->idle) {
  5448. pool_no = selected->pool_no;
  5449. break;
  5450. }
  5451. next_pool = pool_no;
  5452. /* Select the next alive pool */
  5453. for (i = 1; i < total_pools; i++) {
  5454. next_pool++;
  5455. if (next_pool >= total_pools)
  5456. next_pool = 0;
  5457. pool = pools[next_pool];
  5458. if (pool_unusable(pool))
  5459. continue;
  5460. pool_no = next_pool;
  5461. break;
  5462. }
  5463. break;
  5464. default:
  5465. break;
  5466. }
  5467. currentpool = pools[pool_no];
  5468. pool = currentpool;
  5469. cg_wunlock(&control_lock);
  5470. /* Set the lagging flag to avoid pool not providing work fast enough
  5471. * messages in failover only mode since we have to get all fresh work
  5472. * as in restart_threads */
  5473. if (opt_fail_only)
  5474. pool_tset(pool, &pool->lagging);
  5475. if (pool != last_pool)
  5476. {
  5477. pool->block_id = 0;
  5478. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5479. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5480. if (pool_localgen(pool) || opt_fail_only)
  5481. clear_pool_work(last_pool);
  5482. }
  5483. }
  5484. mutex_lock(&lp_lock);
  5485. pthread_cond_broadcast(&lp_cond);
  5486. mutex_unlock(&lp_lock);
  5487. }
  5488. static void discard_work(struct work *work)
  5489. {
  5490. if (!work->clone && !work->rolls && !work->mined) {
  5491. if (work->pool) {
  5492. work->pool->discarded_work++;
  5493. work->pool->quota_used--;
  5494. work->pool->works--;
  5495. }
  5496. total_discarded++;
  5497. applog(LOG_DEBUG, "Discarded work");
  5498. } else
  5499. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5500. free_work(work);
  5501. }
  5502. static void wake_gws(void)
  5503. {
  5504. mutex_lock(stgd_lock);
  5505. pthread_cond_signal(&gws_cond);
  5506. mutex_unlock(stgd_lock);
  5507. }
  5508. static void discard_stale(void)
  5509. {
  5510. struct work *work, *tmp;
  5511. int stale = 0;
  5512. mutex_lock(stgd_lock);
  5513. HASH_ITER(hh, staged_work, work, tmp) {
  5514. if (stale_work(work, false)) {
  5515. HASH_DEL(staged_work, work);
  5516. discard_work(work);
  5517. stale++;
  5518. staged_full = false;
  5519. }
  5520. }
  5521. pthread_cond_signal(&gws_cond);
  5522. mutex_unlock(stgd_lock);
  5523. if (stale)
  5524. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5525. }
  5526. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5527. {
  5528. bool rv;
  5529. struct timeval tv, orig;
  5530. ldiv_t d;
  5531. d = ldiv(ustime, 1000000);
  5532. tv = (struct timeval){
  5533. .tv_sec = d.quot,
  5534. .tv_usec = d.rem,
  5535. };
  5536. orig = work->tv_staged;
  5537. timersub(&orig, &tv, &work->tv_staged);
  5538. rv = stale_work(work, share);
  5539. work->tv_staged = orig;
  5540. return rv;
  5541. }
  5542. static
  5543. void pool_update_work_restart_time(struct pool * const pool)
  5544. {
  5545. pool->work_restart_time = time(NULL);
  5546. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5547. }
  5548. static void restart_threads(void)
  5549. {
  5550. struct pool *cp = current_pool();
  5551. int i;
  5552. struct thr_info *thr;
  5553. /* Artificially set the lagging flag to avoid pool not providing work
  5554. * fast enough messages after every long poll */
  5555. pool_tset(cp, &cp->lagging);
  5556. /* Discard staged work that is now stale */
  5557. discard_stale();
  5558. rd_lock(&mining_thr_lock);
  5559. for (i = 0; i < mining_threads; i++)
  5560. {
  5561. thr = mining_thr[i];
  5562. thr->work_restart = true;
  5563. }
  5564. for (i = 0; i < mining_threads; i++)
  5565. {
  5566. thr = mining_thr[i];
  5567. notifier_wake(thr->work_restart_notifier);
  5568. }
  5569. rd_unlock(&mining_thr_lock);
  5570. }
  5571. static
  5572. void blkhashstr(char *rv, const unsigned char *hash)
  5573. {
  5574. unsigned char hash_swap[32];
  5575. swap256(hash_swap, hash);
  5576. swap32tole(hash_swap, hash_swap, 32 / 4);
  5577. bin2hex(rv, hash_swap, 32);
  5578. }
  5579. static void set_curblock(char *hexstr, unsigned char *hash)
  5580. {
  5581. unsigned char hash_swap[32];
  5582. current_block_id = ((uint32_t*)hash)[0];
  5583. strcpy(current_block, hexstr);
  5584. swap256(hash_swap, hash);
  5585. swap32tole(hash_swap, hash_swap, 32 / 4);
  5586. cg_wlock(&ch_lock);
  5587. block_time = time(NULL);
  5588. __update_block_title(hash_swap);
  5589. free(current_fullhash);
  5590. current_fullhash = malloc(65);
  5591. bin2hex(current_fullhash, hash_swap, 32);
  5592. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5593. cg_wunlock(&ch_lock);
  5594. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5595. }
  5596. /* Search to see if this string is from a block that has been seen before */
  5597. static bool block_exists(char *hexstr)
  5598. {
  5599. struct block *s;
  5600. rd_lock(&blk_lock);
  5601. HASH_FIND_STR(blocks, hexstr, s);
  5602. rd_unlock(&blk_lock);
  5603. if (s)
  5604. return true;
  5605. return false;
  5606. }
  5607. /* Tests if this work is from a block that has been seen before */
  5608. static inline bool from_existing_block(struct work *work)
  5609. {
  5610. char hexstr[37];
  5611. bool ret;
  5612. bin2hex(hexstr, work->data + 8, 18);
  5613. ret = block_exists(hexstr);
  5614. return ret;
  5615. }
  5616. static int block_sort(struct block *blocka, struct block *blockb)
  5617. {
  5618. return blocka->block_no - blockb->block_no;
  5619. }
  5620. static void set_blockdiff(const struct work *work)
  5621. {
  5622. unsigned char target[32];
  5623. double diff;
  5624. uint64_t diff64;
  5625. real_block_target(target, work->data);
  5626. diff = target_diff(target);
  5627. diff64 = diff;
  5628. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5629. format_unit2(net_hashrate, sizeof(net_hashrate),
  5630. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5631. if (unlikely(current_diff != diff))
  5632. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5633. current_diff = diff;
  5634. }
  5635. static bool test_work_current(struct work *work)
  5636. {
  5637. bool ret = true;
  5638. char hexstr[65];
  5639. if (work->mandatory)
  5640. return ret;
  5641. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5642. /* Hack to work around dud work sneaking into test */
  5643. bin2hex(hexstr, work->data + 8, 18);
  5644. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5645. goto out_free;
  5646. struct pool * const pool = work->pool;
  5647. /* Search to see if this block exists yet and if not, consider it a
  5648. * new block and set the current block details to this one */
  5649. if (!block_exists(hexstr))
  5650. {
  5651. struct block *s = calloc(sizeof(struct block), 1);
  5652. int deleted_block = 0;
  5653. ret = false;
  5654. if (unlikely(!s))
  5655. quit (1, "test_work_current OOM");
  5656. strcpy(s->hash, hexstr);
  5657. s->block_no = new_blocks++;
  5658. wr_lock(&blk_lock);
  5659. /* Only keep the last hour's worth of blocks in memory since
  5660. * work from blocks before this is virtually impossible and we
  5661. * want to prevent memory usage from continually rising */
  5662. if (HASH_COUNT(blocks) > 6)
  5663. {
  5664. struct block *oldblock;
  5665. HASH_SORT(blocks, block_sort);
  5666. oldblock = blocks;
  5667. deleted_block = oldblock->block_no;
  5668. HASH_DEL(blocks, oldblock);
  5669. free(oldblock);
  5670. }
  5671. HASH_ADD_STR(blocks, hash, s);
  5672. set_blockdiff(work);
  5673. wr_unlock(&blk_lock);
  5674. pool->block_id = block_id;
  5675. pool_update_work_restart_time(pool);
  5676. if (deleted_block)
  5677. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5678. #if BLKMAKER_VERSION > 1
  5679. template_nonce = 0;
  5680. #endif
  5681. set_curblock(hexstr, &work->data[4]);
  5682. if (unlikely(new_blocks == 1))
  5683. goto out_free;
  5684. if (!work->stratum)
  5685. {
  5686. if (work->longpoll)
  5687. {
  5688. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5689. pool->pool_no);
  5690. }
  5691. else
  5692. if (have_longpoll)
  5693. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5694. else
  5695. applog(LOG_NOTICE, "New block detected on network");
  5696. }
  5697. restart_threads();
  5698. }
  5699. else
  5700. {
  5701. bool restart = false;
  5702. if (unlikely(pool->block_id != block_id))
  5703. {
  5704. bool was_active = pool->block_id != 0;
  5705. pool->block_id = block_id;
  5706. pool_update_work_restart_time(pool);
  5707. if (!work->longpoll)
  5708. update_last_work(work);
  5709. if (was_active)
  5710. {
  5711. // Pool actively changed block
  5712. if (pool == current_pool())
  5713. restart = true;
  5714. if (block_id == current_block_id)
  5715. {
  5716. // Caught up, only announce if this pool is the one in use
  5717. if (restart)
  5718. applog(LOG_NOTICE, "%s %d caught up to new block",
  5719. work->longpoll ? "Longpoll from pool" : "Pool",
  5720. pool->pool_no);
  5721. }
  5722. else
  5723. {
  5724. // Switched to a block we know, but not the latest... why?
  5725. // This might detect pools trying to double-spend or 51%,
  5726. // but let's not make any accusations until it's had time
  5727. // in the real world.
  5728. blkhashstr(hexstr, &work->data[4]);
  5729. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5730. work->longpoll ? "Longpoll from pool" : "Pool",
  5731. pool->pool_no,
  5732. hexstr);
  5733. }
  5734. }
  5735. }
  5736. if (work->longpoll)
  5737. {
  5738. struct pool * const cp = current_pool();
  5739. ++pool->work_restart_id;
  5740. if (work->tr && work->tr == pool->swork.tr)
  5741. pool->swork.work_restart_id = pool->work_restart_id;
  5742. update_last_work(work);
  5743. pool_update_work_restart_time(pool);
  5744. applog(
  5745. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5746. "Longpoll from pool %d requested work update",
  5747. pool->pool_no);
  5748. if ((!restart) && pool == cp)
  5749. restart = true;
  5750. }
  5751. if (restart)
  5752. restart_threads();
  5753. }
  5754. work->longpoll = false;
  5755. out_free:
  5756. return ret;
  5757. }
  5758. static int tv_sort(struct work *worka, struct work *workb)
  5759. {
  5760. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5761. }
  5762. static bool work_rollable(struct work *work)
  5763. {
  5764. return (!work->clone && work->rolltime);
  5765. }
  5766. static bool hash_push(struct work *work)
  5767. {
  5768. bool rc = true;
  5769. mutex_lock(stgd_lock);
  5770. if (work_rollable(work))
  5771. staged_rollable++;
  5772. if (likely(!getq->frozen)) {
  5773. HASH_ADD_INT(staged_work, id, work);
  5774. HASH_SORT(staged_work, tv_sort);
  5775. } else
  5776. rc = false;
  5777. pthread_cond_broadcast(&getq->cond);
  5778. mutex_unlock(stgd_lock);
  5779. return rc;
  5780. }
  5781. static void stage_work(struct work *work)
  5782. {
  5783. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5784. work->id, work->pool->pool_no);
  5785. work->work_restart_id = work->pool->work_restart_id;
  5786. work->pool->last_work_time = time(NULL);
  5787. cgtime(&work->pool->tv_last_work_time);
  5788. test_work_current(work);
  5789. work->pool->works++;
  5790. hash_push(work);
  5791. }
  5792. #ifdef HAVE_CURSES
  5793. int curses_int(const char *query)
  5794. {
  5795. int ret;
  5796. char *cvar;
  5797. cvar = curses_input(query);
  5798. if (unlikely(!cvar))
  5799. return -1;
  5800. ret = atoi(cvar);
  5801. free(cvar);
  5802. return ret;
  5803. }
  5804. #endif
  5805. #ifdef HAVE_CURSES
  5806. static bool input_pool(bool live);
  5807. #endif
  5808. #ifdef HAVE_CURSES
  5809. static void display_pool_summary(struct pool *pool)
  5810. {
  5811. double efficiency = 0.0;
  5812. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5813. int pool_secs;
  5814. if (curses_active_locked()) {
  5815. wlog("Pool: %s\n", pool->rpc_url);
  5816. if (pool->solved)
  5817. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5818. if (!pool->has_stratum)
  5819. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5820. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5821. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5822. wlog(" Accepted shares: %d\n", pool->accepted);
  5823. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5824. pool->rejected, pool->stale_shares,
  5825. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5826. );
  5827. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5828. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5829. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5830. wlog(" Network transfer: %s (%s)\n",
  5831. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5832. (float)pool->cgminer_pool_stats.net_bytes_received,
  5833. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5834. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5835. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5836. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5837. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5838. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5839. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5840. wlog(" Items worked on: %d\n", pool->works);
  5841. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5842. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5843. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5844. unlock_curses();
  5845. }
  5846. }
  5847. #endif
  5848. /* We can't remove the memory used for this struct pool because there may
  5849. * still be work referencing it. We just remove it from the pools list */
  5850. void remove_pool(struct pool *pool)
  5851. {
  5852. int i, last_pool = total_pools - 1;
  5853. struct pool *other;
  5854. /* Boost priority of any lower prio than this one */
  5855. for (i = 0; i < total_pools; i++) {
  5856. other = pools[i];
  5857. if (other->prio > pool->prio)
  5858. other->prio--;
  5859. }
  5860. if (pool->pool_no < last_pool) {
  5861. /* Swap the last pool for this one */
  5862. (pools[last_pool])->pool_no = pool->pool_no;
  5863. pools[pool->pool_no] = pools[last_pool];
  5864. }
  5865. /* Give it an invalid number */
  5866. pool->pool_no = total_pools;
  5867. pool->removed = true;
  5868. pool->has_stratum = false;
  5869. total_pools--;
  5870. }
  5871. /* add a mutex if this needs to be thread safe in the future */
  5872. static struct JE {
  5873. char *buf;
  5874. struct JE *next;
  5875. } *jedata = NULL;
  5876. static void json_escape_free()
  5877. {
  5878. struct JE *jeptr = jedata;
  5879. struct JE *jenext;
  5880. jedata = NULL;
  5881. while (jeptr) {
  5882. jenext = jeptr->next;
  5883. free(jeptr->buf);
  5884. free(jeptr);
  5885. jeptr = jenext;
  5886. }
  5887. }
  5888. static
  5889. char *json_escape(const char *str)
  5890. {
  5891. struct JE *jeptr;
  5892. char *buf, *ptr;
  5893. /* 2x is the max, may as well just allocate that */
  5894. ptr = buf = malloc(strlen(str) * 2 + 1);
  5895. jeptr = malloc(sizeof(*jeptr));
  5896. jeptr->buf = buf;
  5897. jeptr->next = jedata;
  5898. jedata = jeptr;
  5899. while (*str) {
  5900. if (*str == '\\' || *str == '"')
  5901. *(ptr++) = '\\';
  5902. *(ptr++) = *(str++);
  5903. }
  5904. *ptr = '\0';
  5905. return buf;
  5906. }
  5907. static
  5908. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5909. {
  5910. if (!elist)
  5911. return;
  5912. static struct string_elist *entry;
  5913. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5914. bool first = true;
  5915. DL_FOREACH(elist, entry)
  5916. {
  5917. const char * const s = entry->string;
  5918. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5919. first = false;
  5920. }
  5921. fprintf(fcfg, "\n]");
  5922. }
  5923. void write_config(FILE *fcfg)
  5924. {
  5925. int i;
  5926. /* Write pool values */
  5927. fputs("{\n\"pools\" : [", fcfg);
  5928. for(i = 0; i < total_pools; i++) {
  5929. struct pool *pool = pools[i];
  5930. if (pool->quota != 1) {
  5931. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5932. pool->quota,
  5933. json_escape(pool->rpc_url));
  5934. } else {
  5935. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5936. json_escape(pool->rpc_url));
  5937. }
  5938. if (pool->rpc_proxy)
  5939. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5940. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5941. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5942. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5943. if (pool->force_rollntime)
  5944. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5945. fprintf(fcfg, "\n\t}");
  5946. }
  5947. fputs("\n]\n", fcfg);
  5948. #ifdef HAVE_OPENCL
  5949. write_config_opencl(fcfg);
  5950. #endif
  5951. #ifdef WANT_CPUMINE
  5952. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5953. #endif
  5954. /* Simple bool and int options */
  5955. struct opt_table *opt;
  5956. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5957. char *p, *name = strdup(opt->names);
  5958. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5959. if (p[1] != '-')
  5960. continue;
  5961. if (opt->type & OPT_NOARG &&
  5962. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5963. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5964. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5965. if (opt->type & OPT_HASARG &&
  5966. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5967. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5968. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5969. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5970. opt->desc != opt_hidden &&
  5971. 0 <= *(int *)opt->u.arg)
  5972. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5973. }
  5974. }
  5975. /* Special case options */
  5976. if (request_target_str)
  5977. {
  5978. if (request_pdiff == (long)request_pdiff)
  5979. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5980. else
  5981. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5982. }
  5983. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5984. if (pool_strategy == POOL_BALANCE)
  5985. fputs(",\n\"balance\" : true", fcfg);
  5986. if (pool_strategy == POOL_LOADBALANCE)
  5987. fputs(",\n\"load-balance\" : true", fcfg);
  5988. if (pool_strategy == POOL_ROUNDROBIN)
  5989. fputs(",\n\"round-robin\" : true", fcfg);
  5990. if (pool_strategy == POOL_ROTATE)
  5991. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5992. #if defined(unix) || defined(__APPLE__)
  5993. if (opt_stderr_cmd && *opt_stderr_cmd)
  5994. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5995. #endif // defined(unix)
  5996. if (opt_kernel_path && *opt_kernel_path) {
  5997. char *kpath = strdup(opt_kernel_path);
  5998. if (kpath[strlen(kpath)-1] == '/')
  5999. kpath[strlen(kpath)-1] = 0;
  6000. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  6001. free(kpath);
  6002. }
  6003. if (schedstart.enable)
  6004. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  6005. if (schedstop.enable)
  6006. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  6007. if (opt_socks_proxy && *opt_socks_proxy)
  6008. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  6009. _write_config_string_elist(fcfg, "scan", scan_devices);
  6010. #ifdef USE_LIBMICROHTTPD
  6011. if (httpsrv_port != -1)
  6012. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  6013. #endif
  6014. #ifdef USE_LIBEVENT
  6015. if (stratumsrv_port != -1)
  6016. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  6017. #endif
  6018. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  6019. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  6020. if (opt_api_allow)
  6021. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  6022. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  6023. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  6024. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  6025. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  6026. if (*opt_api_mcast_des)
  6027. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  6028. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  6029. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  6030. if (opt_api_groups)
  6031. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  6032. fputs("\n}\n", fcfg);
  6033. json_escape_free();
  6034. }
  6035. void zero_bestshare(void)
  6036. {
  6037. int i;
  6038. best_diff = 0;
  6039. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  6040. for (i = 0; i < total_pools; i++) {
  6041. struct pool *pool = pools[i];
  6042. pool->best_diff = 0;
  6043. }
  6044. }
  6045. void zero_stats(void)
  6046. {
  6047. int i;
  6048. applog(LOG_DEBUG, "Zeroing stats");
  6049. cgtime(&total_tv_start);
  6050. miner_started = total_tv_start;
  6051. total_rolling = 0;
  6052. total_mhashes_done = 0;
  6053. total_getworks = 0;
  6054. total_accepted = 0;
  6055. total_rejected = 0;
  6056. hw_errors = 0;
  6057. total_stale = 0;
  6058. total_discarded = 0;
  6059. total_bytes_rcvd = total_bytes_sent = 0;
  6060. new_blocks = 0;
  6061. local_work = 0;
  6062. total_go = 0;
  6063. total_ro = 0;
  6064. total_secs = 1.0;
  6065. total_diff1 = 0;
  6066. total_bad_diff1 = 0;
  6067. found_blocks = 0;
  6068. total_diff_accepted = 0;
  6069. total_diff_rejected = 0;
  6070. total_diff_stale = 0;
  6071. #ifdef HAVE_CURSES
  6072. awidth = rwidth = swidth = hwwidth = 1;
  6073. #endif
  6074. for (i = 0; i < total_pools; i++) {
  6075. struct pool *pool = pools[i];
  6076. pool->getwork_requested = 0;
  6077. pool->accepted = 0;
  6078. pool->rejected = 0;
  6079. pool->solved = 0;
  6080. pool->getwork_requested = 0;
  6081. pool->stale_shares = 0;
  6082. pool->discarded_work = 0;
  6083. pool->getfail_occasions = 0;
  6084. pool->remotefail_occasions = 0;
  6085. pool->last_share_time = 0;
  6086. pool->diff1 = 0;
  6087. pool->diff_accepted = 0;
  6088. pool->diff_rejected = 0;
  6089. pool->diff_stale = 0;
  6090. pool->last_share_diff = 0;
  6091. pool->cgminer_stats.start_tv = total_tv_start;
  6092. pool->cgminer_stats.getwork_calls = 0;
  6093. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6094. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6095. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6096. pool->cgminer_pool_stats.getwork_calls = 0;
  6097. pool->cgminer_pool_stats.getwork_attempts = 0;
  6098. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6099. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  6100. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  6101. pool->cgminer_pool_stats.min_diff = 0;
  6102. pool->cgminer_pool_stats.max_diff = 0;
  6103. pool->cgminer_pool_stats.min_diff_count = 0;
  6104. pool->cgminer_pool_stats.max_diff_count = 0;
  6105. pool->cgminer_pool_stats.times_sent = 0;
  6106. pool->cgminer_pool_stats.bytes_sent = 0;
  6107. pool->cgminer_pool_stats.net_bytes_sent = 0;
  6108. pool->cgminer_pool_stats.times_received = 0;
  6109. pool->cgminer_pool_stats.bytes_received = 0;
  6110. pool->cgminer_pool_stats.net_bytes_received = 0;
  6111. }
  6112. zero_bestshare();
  6113. for (i = 0; i < total_devices; ++i) {
  6114. struct cgpu_info *cgpu = get_devices(i);
  6115. mutex_lock(&hash_lock);
  6116. cgpu->total_mhashes = 0;
  6117. cgpu->accepted = 0;
  6118. cgpu->rejected = 0;
  6119. cgpu->stale = 0;
  6120. cgpu->hw_errors = 0;
  6121. cgpu->utility = 0.0;
  6122. cgpu->utility_diff1 = 0;
  6123. cgpu->last_share_pool_time = 0;
  6124. cgpu->bad_diff1 = 0;
  6125. cgpu->diff1 = 0;
  6126. cgpu->diff_accepted = 0;
  6127. cgpu->diff_rejected = 0;
  6128. cgpu->diff_stale = 0;
  6129. cgpu->last_share_diff = 0;
  6130. cgpu->thread_fail_init_count = 0;
  6131. cgpu->thread_zero_hash_count = 0;
  6132. cgpu->thread_fail_queue_count = 0;
  6133. cgpu->dev_sick_idle_60_count = 0;
  6134. cgpu->dev_dead_idle_600_count = 0;
  6135. cgpu->dev_nostart_count = 0;
  6136. cgpu->dev_over_heat_count = 0;
  6137. cgpu->dev_thermal_cutoff_count = 0;
  6138. cgpu->dev_comms_error_count = 0;
  6139. cgpu->dev_throttle_count = 0;
  6140. cgpu->cgminer_stats.start_tv = total_tv_start;
  6141. cgpu->cgminer_stats.getwork_calls = 0;
  6142. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6143. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6144. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6145. mutex_unlock(&hash_lock);
  6146. }
  6147. }
  6148. #ifdef HAVE_CURSES
  6149. static
  6150. void loginput_mode(const int size)
  6151. {
  6152. clear_logwin();
  6153. loginput_size = size;
  6154. check_winsizes();
  6155. }
  6156. static void display_pools(void)
  6157. {
  6158. struct pool *pool;
  6159. int selected, i, j;
  6160. char input;
  6161. loginput_mode(7 + total_pools);
  6162. immedok(logwin, true);
  6163. updated:
  6164. for (j = 0; j < total_pools; j++) {
  6165. for (i = 0; i < total_pools; i++) {
  6166. pool = pools[i];
  6167. if (pool->prio != j)
  6168. continue;
  6169. if (pool == current_pool())
  6170. wattron(logwin, A_BOLD);
  6171. if (pool->enabled != POOL_ENABLED)
  6172. wattron(logwin, A_DIM);
  6173. wlogprint("%d: ", pool->prio);
  6174. switch (pool->enabled) {
  6175. case POOL_ENABLED:
  6176. wlogprint("Enabled ");
  6177. break;
  6178. case POOL_DISABLED:
  6179. wlogprint("Disabled ");
  6180. break;
  6181. case POOL_REJECTING:
  6182. wlogprint("Rejectin ");
  6183. break;
  6184. }
  6185. _wlogprint(pool_proto_str(pool));
  6186. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6187. pool->quota,
  6188. pool->pool_no,
  6189. pool->rpc_url, pool->rpc_user);
  6190. wattroff(logwin, A_BOLD | A_DIM);
  6191. break; //for (i = 0; i < total_pools; i++)
  6192. }
  6193. }
  6194. retry:
  6195. wlogprint("\nCurrent pool management strategy: %s\n",
  6196. strategies[pool_strategy].s);
  6197. if (pool_strategy == POOL_ROTATE)
  6198. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6199. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6200. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6201. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6202. wlogprint("Or press any other key to continue\n");
  6203. logwin_update();
  6204. input = getch();
  6205. if (!strncasecmp(&input, "a", 1)) {
  6206. if (opt_benchmark)
  6207. {
  6208. wlogprint("Cannot add pools in benchmark mode");
  6209. goto retry;
  6210. }
  6211. input_pool(true);
  6212. goto updated;
  6213. } else if (!strncasecmp(&input, "r", 1)) {
  6214. if (total_pools <= 1) {
  6215. wlogprint("Cannot remove last pool");
  6216. goto retry;
  6217. }
  6218. selected = curses_int("Select pool number");
  6219. if (selected < 0 || selected >= total_pools) {
  6220. wlogprint("Invalid selection\n");
  6221. goto retry;
  6222. }
  6223. pool = pools[selected];
  6224. if (pool == current_pool())
  6225. switch_pools(NULL);
  6226. if (pool == current_pool()) {
  6227. wlogprint("Unable to remove pool due to activity\n");
  6228. goto retry;
  6229. }
  6230. disable_pool(pool);
  6231. remove_pool(pool);
  6232. goto updated;
  6233. } else if (!strncasecmp(&input, "s", 1)) {
  6234. selected = curses_int("Select pool number");
  6235. if (selected < 0 || selected >= total_pools) {
  6236. wlogprint("Invalid selection\n");
  6237. goto retry;
  6238. }
  6239. pool = pools[selected];
  6240. enable_pool(pool);
  6241. switch_pools(pool);
  6242. goto updated;
  6243. } else if (!strncasecmp(&input, "d", 1)) {
  6244. if (enabled_pools <= 1) {
  6245. wlogprint("Cannot disable last pool");
  6246. goto retry;
  6247. }
  6248. selected = curses_int("Select pool number");
  6249. if (selected < 0 || selected >= total_pools) {
  6250. wlogprint("Invalid selection\n");
  6251. goto retry;
  6252. }
  6253. pool = pools[selected];
  6254. disable_pool(pool);
  6255. if (pool == current_pool())
  6256. switch_pools(NULL);
  6257. goto updated;
  6258. } else if (!strncasecmp(&input, "e", 1)) {
  6259. selected = curses_int("Select pool number");
  6260. if (selected < 0 || selected >= total_pools) {
  6261. wlogprint("Invalid selection\n");
  6262. goto retry;
  6263. }
  6264. pool = pools[selected];
  6265. enable_pool(pool);
  6266. if (pool->prio < current_pool()->prio)
  6267. switch_pools(pool);
  6268. goto updated;
  6269. } else if (!strncasecmp(&input, "c", 1)) {
  6270. for (i = 0; i <= TOP_STRATEGY; i++)
  6271. wlogprint("%d: %s\n", i, strategies[i].s);
  6272. selected = curses_int("Select strategy number type");
  6273. if (selected < 0 || selected > TOP_STRATEGY) {
  6274. wlogprint("Invalid selection\n");
  6275. goto retry;
  6276. }
  6277. if (selected == POOL_ROTATE) {
  6278. opt_rotate_period = curses_int("Select interval in minutes");
  6279. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6280. opt_rotate_period = 0;
  6281. wlogprint("Invalid selection\n");
  6282. goto retry;
  6283. }
  6284. }
  6285. pool_strategy = selected;
  6286. switch_pools(NULL);
  6287. goto updated;
  6288. } else if (!strncasecmp(&input, "i", 1)) {
  6289. selected = curses_int("Select pool number");
  6290. if (selected < 0 || selected >= total_pools) {
  6291. wlogprint("Invalid selection\n");
  6292. goto retry;
  6293. }
  6294. pool = pools[selected];
  6295. display_pool_summary(pool);
  6296. goto retry;
  6297. } else if (!strncasecmp(&input, "q", 1)) {
  6298. selected = curses_int("Select pool number");
  6299. if (selected < 0 || selected >= total_pools) {
  6300. wlogprint("Invalid selection\n");
  6301. goto retry;
  6302. }
  6303. pool = pools[selected];
  6304. selected = curses_int("Set quota");
  6305. if (selected < 0) {
  6306. wlogprint("Invalid negative quota\n");
  6307. goto retry;
  6308. }
  6309. pool->quota = selected;
  6310. adjust_quota_gcd();
  6311. goto updated;
  6312. } else if (!strncasecmp(&input, "f", 1)) {
  6313. opt_fail_only ^= true;
  6314. goto updated;
  6315. } else if (!strncasecmp(&input, "p", 1)) {
  6316. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6317. if (!prilist)
  6318. {
  6319. wlogprint("Not changing priorities\n");
  6320. goto retry;
  6321. }
  6322. int res = prioritize_pools(prilist, &i);
  6323. free(prilist);
  6324. switch (res) {
  6325. case MSG_NOPOOL:
  6326. wlogprint("No pools\n");
  6327. goto retry;
  6328. case MSG_MISPID:
  6329. wlogprint("Missing pool id parameter\n");
  6330. goto retry;
  6331. case MSG_INVPID:
  6332. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6333. goto retry;
  6334. case MSG_DUPPID:
  6335. wlogprint("Duplicate pool specified %d\n", i);
  6336. goto retry;
  6337. case MSG_POOLPRIO:
  6338. default:
  6339. goto updated;
  6340. }
  6341. }
  6342. immedok(logwin, false);
  6343. loginput_mode(0);
  6344. }
  6345. static const char *summary_detail_level_str(void)
  6346. {
  6347. if (opt_compact)
  6348. return "compact";
  6349. if (opt_show_procs)
  6350. return "processors";
  6351. return "devices";
  6352. }
  6353. static void display_options(void)
  6354. {
  6355. int selected;
  6356. char input;
  6357. immedok(logwin, true);
  6358. loginput_mode(12);
  6359. retry:
  6360. clear_logwin();
  6361. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6362. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6363. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6364. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6365. opt_debug_console ? "on" : "off",
  6366. want_per_device_stats? "on" : "off",
  6367. opt_quiet ? "on" : "off",
  6368. opt_log_output ? "on" : "off",
  6369. opt_protocol ? "on" : "off",
  6370. opt_worktime ? "on" : "off",
  6371. summary_detail_level_str(),
  6372. opt_log_interval,
  6373. opt_weighed_stats ? "weighed" : "absolute");
  6374. wlogprint("Select an option or any other key to return\n");
  6375. logwin_update();
  6376. input = getch();
  6377. if (!strncasecmp(&input, "q", 1)) {
  6378. opt_quiet ^= true;
  6379. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6380. goto retry;
  6381. } else if (!strncasecmp(&input, "v", 1)) {
  6382. opt_log_output ^= true;
  6383. if (opt_log_output)
  6384. opt_quiet = false;
  6385. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6386. goto retry;
  6387. } else if (!strncasecmp(&input, "n", 1)) {
  6388. opt_log_output = false;
  6389. opt_debug_console = false;
  6390. opt_quiet = false;
  6391. opt_protocol = false;
  6392. opt_compact = false;
  6393. opt_show_procs = false;
  6394. devsummaryYOffset = 0;
  6395. want_per_device_stats = false;
  6396. wlogprint("Output mode reset to normal\n");
  6397. switch_logsize();
  6398. goto retry;
  6399. } else if (!strncasecmp(&input, "d", 1)) {
  6400. opt_debug = true;
  6401. opt_debug_console ^= true;
  6402. opt_log_output = opt_debug_console;
  6403. if (opt_debug_console)
  6404. opt_quiet = false;
  6405. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6406. goto retry;
  6407. } else if (!strncasecmp(&input, "m", 1)) {
  6408. if (opt_compact)
  6409. opt_compact = false;
  6410. else
  6411. if (!opt_show_procs)
  6412. opt_show_procs = true;
  6413. else
  6414. {
  6415. opt_compact = true;
  6416. opt_show_procs = false;
  6417. devsummaryYOffset = 0;
  6418. }
  6419. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6420. switch_logsize();
  6421. goto retry;
  6422. } else if (!strncasecmp(&input, "p", 1)) {
  6423. want_per_device_stats ^= true;
  6424. opt_log_output = want_per_device_stats;
  6425. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6426. goto retry;
  6427. } else if (!strncasecmp(&input, "r", 1)) {
  6428. opt_protocol ^= true;
  6429. if (opt_protocol)
  6430. opt_quiet = false;
  6431. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6432. goto retry;
  6433. } else if (!strncasecmp(&input, "c", 1))
  6434. clear_logwin();
  6435. else if (!strncasecmp(&input, "l", 1)) {
  6436. selected = curses_int("Interval in seconds");
  6437. if (selected < 0 || selected > 9999) {
  6438. wlogprint("Invalid selection\n");
  6439. goto retry;
  6440. }
  6441. opt_log_interval = selected;
  6442. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6443. goto retry;
  6444. } else if (!strncasecmp(&input, "s", 1)) {
  6445. opt_realquiet = true;
  6446. } else if (!strncasecmp(&input, "w", 1)) {
  6447. opt_worktime ^= true;
  6448. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6449. goto retry;
  6450. } else if (!strncasecmp(&input, "t", 1)) {
  6451. opt_weighed_stats ^= true;
  6452. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6453. goto retry;
  6454. } else if (!strncasecmp(&input, "z", 1)) {
  6455. zero_stats();
  6456. goto retry;
  6457. }
  6458. immedok(logwin, false);
  6459. loginput_mode(0);
  6460. }
  6461. #endif
  6462. void default_save_file(char *filename)
  6463. {
  6464. #if defined(unix) || defined(__APPLE__)
  6465. if (getenv("HOME") && *getenv("HOME")) {
  6466. strcpy(filename, getenv("HOME"));
  6467. strcat(filename, "/");
  6468. }
  6469. else
  6470. strcpy(filename, "");
  6471. strcat(filename, ".bfgminer/");
  6472. mkdir(filename, 0777);
  6473. #else
  6474. strcpy(filename, "");
  6475. #endif
  6476. strcat(filename, def_conf);
  6477. }
  6478. #ifdef HAVE_CURSES
  6479. static void set_options(void)
  6480. {
  6481. int selected;
  6482. char input;
  6483. immedok(logwin, true);
  6484. loginput_mode(8);
  6485. retry:
  6486. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6487. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6488. "[W]rite config file\n[B]FGMiner restart\n",
  6489. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6490. wlogprint("Select an option or any other key to return\n");
  6491. logwin_update();
  6492. input = getch();
  6493. if (!strncasecmp(&input, "q", 1)) {
  6494. selected = curses_int("Extra work items to queue");
  6495. if (selected < 0 || selected > 9999) {
  6496. wlogprint("Invalid selection\n");
  6497. goto retry;
  6498. }
  6499. opt_queue = selected;
  6500. goto retry;
  6501. } else if (!strncasecmp(&input, "l", 1)) {
  6502. if (want_longpoll)
  6503. stop_longpoll();
  6504. else
  6505. start_longpoll();
  6506. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6507. goto retry;
  6508. } else if (!strncasecmp(&input, "s", 1)) {
  6509. selected = curses_int("Set scantime in seconds");
  6510. if (selected < 0 || selected > 9999) {
  6511. wlogprint("Invalid selection\n");
  6512. goto retry;
  6513. }
  6514. opt_scantime = selected;
  6515. goto retry;
  6516. } else if (!strncasecmp(&input, "e", 1)) {
  6517. selected = curses_int("Set expiry time in seconds");
  6518. if (selected < 0 || selected > 9999) {
  6519. wlogprint("Invalid selection\n");
  6520. goto retry;
  6521. }
  6522. opt_expiry = selected;
  6523. goto retry;
  6524. } else if (!strncasecmp(&input, "r", 1)) {
  6525. selected = curses_int("Retries before failing (-1 infinite)");
  6526. if (selected < -1 || selected > 9999) {
  6527. wlogprint("Invalid selection\n");
  6528. goto retry;
  6529. }
  6530. opt_retries = selected;
  6531. goto retry;
  6532. } else if (!strncasecmp(&input, "w", 1)) {
  6533. FILE *fcfg;
  6534. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6535. default_save_file(filename);
  6536. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6537. str = curses_input(prompt);
  6538. if (str) {
  6539. struct stat statbuf;
  6540. strcpy(filename, str);
  6541. free(str);
  6542. if (!stat(filename, &statbuf)) {
  6543. wlogprint("File exists, overwrite?\n");
  6544. input = getch();
  6545. if (strncasecmp(&input, "y", 1))
  6546. goto retry;
  6547. }
  6548. }
  6549. fcfg = fopen(filename, "w");
  6550. if (!fcfg) {
  6551. wlogprint("Cannot open or create file\n");
  6552. goto retry;
  6553. }
  6554. write_config(fcfg);
  6555. fclose(fcfg);
  6556. goto retry;
  6557. } else if (!strncasecmp(&input, "b", 1)) {
  6558. wlogprint("Are you sure?\n");
  6559. input = getch();
  6560. if (!strncasecmp(&input, "y", 1))
  6561. app_restart();
  6562. else
  6563. clear_logwin();
  6564. } else
  6565. clear_logwin();
  6566. loginput_mode(0);
  6567. immedok(logwin, false);
  6568. }
  6569. int scan_serial(const char *);
  6570. static
  6571. void _managetui_msg(const char *repr, const char **msg)
  6572. {
  6573. if (*msg)
  6574. {
  6575. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6576. wattron(logwin, A_BOLD);
  6577. wlogprint("%s", *msg);
  6578. wattroff(logwin, A_BOLD);
  6579. *msg = NULL;
  6580. }
  6581. logwin_update();
  6582. }
  6583. void manage_device(void)
  6584. {
  6585. char logline[256];
  6586. const char *msg = NULL;
  6587. struct cgpu_info *cgpu;
  6588. const struct device_drv *drv;
  6589. selecting_device = true;
  6590. immedok(logwin, true);
  6591. loginput_mode(12);
  6592. devchange:
  6593. if (unlikely(!total_devices))
  6594. {
  6595. clear_logwin();
  6596. wlogprint("(no devices)\n");
  6597. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6598. _managetui_msg("(none)", &msg);
  6599. int input = getch();
  6600. switch (input)
  6601. {
  6602. case '+': case '=': // add new device
  6603. goto addnew;
  6604. default:
  6605. goto out;
  6606. }
  6607. }
  6608. cgpu = devices[selected_device];
  6609. drv = cgpu->drv;
  6610. refresh_devstatus();
  6611. refresh:
  6612. clear_logwin();
  6613. wlogprint("Select processor to manage using up/down arrow keys\n");
  6614. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6615. wattron(logwin, A_BOLD);
  6616. wlogprint("%s", logline);
  6617. wattroff(logwin, A_BOLD);
  6618. wlogprint("\n");
  6619. if (cgpu->dev_manufacturer)
  6620. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6621. else
  6622. if (cgpu->dev_product)
  6623. wlogprint(" %s\n", cgpu->dev_product);
  6624. if (cgpu->dev_serial)
  6625. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6626. if (cgpu->kname)
  6627. wlogprint("Kernel: %s\n", cgpu->kname);
  6628. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6629. drv->proc_wlogprint_status(cgpu);
  6630. wlogprint("\n");
  6631. // TODO: Last share at TIMESTAMP on pool N
  6632. // TODO: Custom device info/commands
  6633. if (cgpu->deven != DEV_ENABLED)
  6634. wlogprint("[E]nable ");
  6635. if (cgpu->deven != DEV_DISABLED)
  6636. wlogprint("[D]isable ");
  6637. if (drv->identify_device)
  6638. wlogprint("[I]dentify ");
  6639. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6640. drv->proc_tui_wlogprint_choices(cgpu);
  6641. wlogprint("\n");
  6642. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6643. _managetui_msg(cgpu->proc_repr, &msg);
  6644. while (true)
  6645. {
  6646. int input = getch();
  6647. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6648. switch (input) {
  6649. case 'd': case 'D':
  6650. if (cgpu->deven == DEV_DISABLED)
  6651. msg = "Processor already disabled\n";
  6652. else
  6653. {
  6654. cgpu->deven = DEV_DISABLED;
  6655. msg = "Processor being disabled\n";
  6656. }
  6657. goto refresh;
  6658. case 'e': case 'E':
  6659. if (cgpu->deven == DEV_ENABLED)
  6660. msg = "Processor already enabled\n";
  6661. else
  6662. {
  6663. proc_enable(cgpu);
  6664. msg = "Processor being enabled\n";
  6665. }
  6666. goto refresh;
  6667. case 'i': case 'I':
  6668. if (drv->identify_device && drv->identify_device(cgpu))
  6669. msg = "Identify command sent\n";
  6670. else
  6671. goto key_default;
  6672. goto refresh;
  6673. case KEY_DOWN:
  6674. if (selected_device >= total_devices - 1)
  6675. break;
  6676. ++selected_device;
  6677. goto devchange;
  6678. case KEY_UP:
  6679. if (selected_device <= 0)
  6680. break;
  6681. --selected_device;
  6682. goto devchange;
  6683. case KEY_NPAGE:
  6684. {
  6685. if (selected_device >= total_devices - 1)
  6686. break;
  6687. struct cgpu_info *mdev = devices[selected_device]->device;
  6688. do {
  6689. ++selected_device;
  6690. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6691. goto devchange;
  6692. }
  6693. case KEY_PPAGE:
  6694. {
  6695. if (selected_device <= 0)
  6696. break;
  6697. struct cgpu_info *mdev = devices[selected_device]->device;
  6698. do {
  6699. --selected_device;
  6700. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6701. goto devchange;
  6702. }
  6703. case '/': case '?': // find device
  6704. {
  6705. static char *pattern = NULL;
  6706. char *newpattern = curses_input("Enter pattern");
  6707. if (newpattern)
  6708. {
  6709. free(pattern);
  6710. pattern = newpattern;
  6711. }
  6712. else
  6713. if (!pattern)
  6714. pattern = calloc(1, 1);
  6715. int match = cgpu_search(pattern, selected_device + 1);
  6716. if (match == -1)
  6717. {
  6718. msg = "Couldn't find device\n";
  6719. goto refresh;
  6720. }
  6721. selected_device = match;
  6722. goto devchange;
  6723. }
  6724. case '+': case '=': // add new device
  6725. {
  6726. addnew:
  6727. clear_logwin();
  6728. _wlogprint(
  6729. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6730. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6731. "For example: erupter:"
  6732. #ifdef WIN32
  6733. "\\\\.\\COM40"
  6734. #elif defined(__APPLE__)
  6735. "/dev/cu.SLAB_USBtoUART"
  6736. #else
  6737. "/dev/ttyUSB39"
  6738. #endif
  6739. "\n"
  6740. );
  6741. char *scanser = curses_input("Enter target");
  6742. if (scan_serial(scanser))
  6743. {
  6744. selected_device = total_devices - 1;
  6745. msg = "Device scan succeeded\n";
  6746. }
  6747. else
  6748. msg = "No new devices found\n";
  6749. goto devchange;
  6750. }
  6751. case 'Q': case 'q':
  6752. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6753. case '\x1b': // ESC
  6754. case KEY_ENTER:
  6755. case '\r': // Ctrl-M on Windows, with nonl
  6756. #ifdef PADENTER
  6757. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6758. #endif
  6759. case '\n':
  6760. goto out;
  6761. default:
  6762. ;
  6763. key_default:
  6764. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6765. {
  6766. msg = drv->proc_tui_handle_choice(cgpu, input);
  6767. if (msg)
  6768. goto refresh;
  6769. }
  6770. }
  6771. }
  6772. out:
  6773. selecting_device = false;
  6774. loginput_mode(0);
  6775. immedok(logwin, false);
  6776. }
  6777. void show_help(void)
  6778. {
  6779. loginput_mode(11);
  6780. // NOTE: wlogprint is a macro with a buffer limit
  6781. _wlogprint(
  6782. "LU: oldest explicit work update currently being used for new work\n"
  6783. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6784. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6785. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6786. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6787. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6788. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6789. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6790. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6791. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6792. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6793. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6794. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6795. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6796. "\n"
  6797. "devices/processors hashing (only for totals line), hottest temperature\n"
  6798. );
  6799. wlogprint(
  6800. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6801. , opt_log_interval);
  6802. _wlogprint(
  6803. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6804. "HW: hardware errors / % nonces invalid\n"
  6805. "\n"
  6806. "Press any key to clear"
  6807. );
  6808. logwin_update();
  6809. getch();
  6810. loginput_mode(0);
  6811. }
  6812. static void *input_thread(void __maybe_unused *userdata)
  6813. {
  6814. RenameThread("input");
  6815. if (!curses_active)
  6816. return NULL;
  6817. while (1) {
  6818. int input;
  6819. input = getch();
  6820. switch (input) {
  6821. case 'h': case 'H': case '?':
  6822. case KEY_F(1):
  6823. show_help();
  6824. break;
  6825. case 'q': case 'Q':
  6826. kill_work();
  6827. return NULL;
  6828. case 'd': case 'D':
  6829. display_options();
  6830. break;
  6831. case 'm': case 'M':
  6832. manage_device();
  6833. break;
  6834. case 'p': case 'P':
  6835. display_pools();
  6836. break;
  6837. case 's': case 'S':
  6838. set_options();
  6839. break;
  6840. #ifdef HAVE_CURSES
  6841. case KEY_DOWN:
  6842. {
  6843. const int visible_lines = logcursor - devcursor;
  6844. const int invisible_lines = total_lines - visible_lines;
  6845. if (devsummaryYOffset <= -invisible_lines)
  6846. break;
  6847. devsummaryYOffset -= 2;
  6848. }
  6849. case KEY_UP:
  6850. if (devsummaryYOffset == 0)
  6851. break;
  6852. ++devsummaryYOffset;
  6853. refresh_devstatus();
  6854. break;
  6855. case KEY_NPAGE:
  6856. {
  6857. const int visible_lines = logcursor - devcursor;
  6858. const int invisible_lines = total_lines - visible_lines;
  6859. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6860. devsummaryYOffset = -invisible_lines;
  6861. else
  6862. devsummaryYOffset -= visible_lines;
  6863. refresh_devstatus();
  6864. break;
  6865. }
  6866. case KEY_PPAGE:
  6867. {
  6868. const int visible_lines = logcursor - devcursor;
  6869. if (devsummaryYOffset + visible_lines >= 0)
  6870. devsummaryYOffset = 0;
  6871. else
  6872. devsummaryYOffset += visible_lines;
  6873. refresh_devstatus();
  6874. break;
  6875. }
  6876. #endif
  6877. }
  6878. if (opt_realquiet) {
  6879. disable_curses();
  6880. break;
  6881. }
  6882. }
  6883. return NULL;
  6884. }
  6885. #endif
  6886. static void *api_thread(void *userdata)
  6887. {
  6888. struct thr_info *mythr = userdata;
  6889. pthread_detach(pthread_self());
  6890. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6891. RenameThread("rpc");
  6892. api(api_thr_id);
  6893. mythr->has_pth = false;
  6894. return NULL;
  6895. }
  6896. void thread_reportin(struct thr_info *thr)
  6897. {
  6898. cgtime(&thr->last);
  6899. thr->cgpu->status = LIFE_WELL;
  6900. thr->getwork = 0;
  6901. thr->cgpu->device_last_well = time(NULL);
  6902. }
  6903. void thread_reportout(struct thr_info *thr)
  6904. {
  6905. thr->getwork = time(NULL);
  6906. }
  6907. static void hashmeter(int thr_id, struct timeval *diff,
  6908. uint64_t hashes_done)
  6909. {
  6910. char logstatusline[256];
  6911. struct timeval temp_tv_end, total_diff;
  6912. double secs;
  6913. double local_secs;
  6914. static double local_mhashes_done = 0;
  6915. double local_mhashes = (double)hashes_done / 1000000.0;
  6916. bool showlog = false;
  6917. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6918. char rejpcbuf[6];
  6919. char bnbuf[6];
  6920. struct thr_info *thr;
  6921. /* Update the last time this thread reported in */
  6922. if (thr_id >= 0) {
  6923. thr = get_thread(thr_id);
  6924. cgtime(&(thr->last));
  6925. thr->cgpu->device_last_well = time(NULL);
  6926. }
  6927. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6928. /* So we can call hashmeter from a non worker thread */
  6929. if (thr_id >= 0) {
  6930. struct cgpu_info *cgpu = thr->cgpu;
  6931. int threadobj = cgpu->threads ?: 1;
  6932. double thread_rolling = 0.0;
  6933. int i;
  6934. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6935. thr_id, hashes_done, hashes_done / 1000 / secs);
  6936. /* Rolling average for each thread and each device */
  6937. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6938. for (i = 0; i < threadobj; i++)
  6939. thread_rolling += cgpu->thr[i]->rolling;
  6940. mutex_lock(&hash_lock);
  6941. decay_time(&cgpu->rolling, thread_rolling, secs);
  6942. cgpu->total_mhashes += local_mhashes;
  6943. mutex_unlock(&hash_lock);
  6944. // If needed, output detailed, per-device stats
  6945. if (want_per_device_stats) {
  6946. struct timeval now;
  6947. struct timeval elapsed;
  6948. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6949. cgtime(&now);
  6950. timersub(&now, last_msg_tv, &elapsed);
  6951. if (opt_log_interval <= elapsed.tv_sec) {
  6952. struct cgpu_info *cgpu = thr->cgpu;
  6953. char logline[255];
  6954. *last_msg_tv = now;
  6955. get_statline(logline, sizeof(logline), cgpu);
  6956. if (!curses_active) {
  6957. printf("%s \r", logline);
  6958. fflush(stdout);
  6959. } else
  6960. applog(LOG_INFO, "%s", logline);
  6961. }
  6962. }
  6963. }
  6964. /* Totals are updated by all threads so can race without locking */
  6965. mutex_lock(&hash_lock);
  6966. cgtime(&temp_tv_end);
  6967. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6968. total_mhashes_done += local_mhashes;
  6969. local_mhashes_done += local_mhashes;
  6970. /* Only update with opt_log_interval */
  6971. if (total_diff.tv_sec < opt_log_interval)
  6972. goto out_unlock;
  6973. showlog = true;
  6974. cgtime(&total_tv_end);
  6975. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6976. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6977. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6978. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6979. total_secs = (double)total_diff.tv_sec +
  6980. ((double)total_diff.tv_usec / 1000000.0);
  6981. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6982. multi_format_unit_array2(
  6983. ((char*[]){cHr, aHr, uHr}),
  6984. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  6985. true, "h/s", H2B_SHORT,
  6986. 3,
  6987. 1e6*total_rolling,
  6988. 1e6*total_mhashes_done / total_secs,
  6989. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6990. int ui_accepted, ui_rejected, ui_stale;
  6991. if (opt_weighed_stats)
  6992. {
  6993. ui_accepted = total_diff_accepted;
  6994. ui_rejected = total_diff_rejected;
  6995. ui_stale = total_diff_stale;
  6996. }
  6997. else
  6998. {
  6999. ui_accepted = total_accepted;
  7000. ui_rejected = total_rejected;
  7001. ui_stale = total_stale;
  7002. }
  7003. #ifdef HAVE_CURSES
  7004. if (curses_active_locked()) {
  7005. float temp = 0;
  7006. struct cgpu_info *proc, *last_working_dev = NULL;
  7007. int i, working_devs = 0, working_procs = 0;
  7008. int divx;
  7009. bool bad = false;
  7010. // Find the highest temperature of all processors
  7011. for (i = 0; i < total_devices; ++i)
  7012. {
  7013. proc = get_devices(i);
  7014. if (proc->temp > temp)
  7015. temp = proc->temp;
  7016. if (unlikely(proc->deven == DEV_DISABLED))
  7017. ; // Just need to block it off from both conditions
  7018. else
  7019. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  7020. {
  7021. if (proc->rolling > .1)
  7022. {
  7023. ++working_procs;
  7024. if (proc->device != last_working_dev)
  7025. {
  7026. ++working_devs;
  7027. last_working_dev = proc->device;
  7028. }
  7029. }
  7030. }
  7031. else
  7032. bad = true;
  7033. }
  7034. if (working_devs == working_procs)
  7035. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  7036. else
  7037. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  7038. divx = 7;
  7039. if (opt_show_procs && !opt_compact)
  7040. ++divx;
  7041. if (bad)
  7042. {
  7043. divx += sizeof(U8_BAD_START)-1;
  7044. strcpy(&statusline[divx], U8_BAD_END);
  7045. divx += sizeof(U8_BAD_END)-1;
  7046. }
  7047. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  7048. format_statline(statusline, sizeof(statusline),
  7049. cHr, aHr,
  7050. uHr,
  7051. ui_accepted,
  7052. ui_rejected,
  7053. ui_stale,
  7054. total_diff_rejected + total_diff_stale, total_diff_accepted,
  7055. hw_errors,
  7056. total_bad_diff1, total_bad_diff1 + total_diff1);
  7057. unlock_curses();
  7058. }
  7059. #endif
  7060. // Add a space
  7061. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  7062. uHr[5] = ' ';
  7063. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  7064. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  7065. snprintf(logstatusline, sizeof(logstatusline),
  7066. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  7067. want_per_device_stats ? "ALL " : "",
  7068. opt_log_interval,
  7069. cHr, aHr,
  7070. uHr,
  7071. ui_accepted,
  7072. ui_rejected,
  7073. ui_stale,
  7074. rejpcbuf,
  7075. hw_errors,
  7076. bnbuf
  7077. );
  7078. local_mhashes_done = 0;
  7079. out_unlock:
  7080. mutex_unlock(&hash_lock);
  7081. if (showlog) {
  7082. if (!curses_active) {
  7083. printf("%s \r", logstatusline);
  7084. fflush(stdout);
  7085. } else
  7086. applog(LOG_INFO, "%s", logstatusline);
  7087. }
  7088. }
  7089. void hashmeter2(struct thr_info *thr)
  7090. {
  7091. struct timeval tv_now, tv_elapsed;
  7092. timerclear(&thr->tv_hashes_done);
  7093. cgtime(&tv_now);
  7094. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  7095. /* Update the hashmeter at most 5 times per second */
  7096. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  7097. tv_elapsed.tv_sec >= opt_log_interval) {
  7098. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  7099. thr->hashes_done = 0;
  7100. thr->tv_lastupdate = tv_now;
  7101. }
  7102. }
  7103. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  7104. struct stratum_share *sshare)
  7105. {
  7106. struct work *work = sshare->work;
  7107. share_result(val, res_val, err_val, work, false, "");
  7108. }
  7109. /* Parses stratum json responses and tries to find the id that the request
  7110. * matched to and treat it accordingly. */
  7111. bool parse_stratum_response(struct pool *pool, char *s)
  7112. {
  7113. json_t *val = NULL, *err_val, *res_val, *id_val;
  7114. struct stratum_share *sshare;
  7115. json_error_t err;
  7116. bool ret = false;
  7117. int id;
  7118. val = JSON_LOADS(s, &err);
  7119. if (!val) {
  7120. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7121. goto out;
  7122. }
  7123. res_val = json_object_get(val, "result");
  7124. err_val = json_object_get(val, "error");
  7125. id_val = json_object_get(val, "id");
  7126. if (json_is_null(id_val) || !id_val) {
  7127. char *ss;
  7128. if (err_val)
  7129. ss = json_dumps(err_val, JSON_INDENT(3));
  7130. else
  7131. ss = strdup("(unknown reason)");
  7132. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7133. free(ss);
  7134. goto out;
  7135. }
  7136. if (!json_is_integer(id_val)) {
  7137. if (json_is_string(id_val)
  7138. && !strncmp(json_string_value(id_val), "txlist", 6))
  7139. {
  7140. const bool is_array = json_is_array(res_val);
  7141. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7142. is_array ? "transaction list" : "no-transaction-list response",
  7143. pool->pool_no, &json_string_value(id_val)[6]);
  7144. if (!is_array)
  7145. {
  7146. // No need to wait for a timeout
  7147. timer_unset(&pool->swork.tv_transparency);
  7148. pool_set_opaque(pool, true);
  7149. goto fishy;
  7150. }
  7151. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7152. // We only care about a transaction list for the current job id
  7153. goto fishy;
  7154. // Check that the transactions actually hash to the merkle links
  7155. {
  7156. unsigned maxtx = 1 << pool->swork.merkles;
  7157. unsigned mintx = maxtx >> 1;
  7158. --maxtx;
  7159. unsigned acttx = (unsigned)json_array_size(res_val);
  7160. if (acttx < mintx || acttx > maxtx) {
  7161. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7162. pool->pool_no, acttx, mintx, maxtx);
  7163. goto fishy;
  7164. }
  7165. // TODO: Check hashes match actual merkle links
  7166. }
  7167. pool_set_opaque(pool, false);
  7168. timer_unset(&pool->swork.tv_transparency);
  7169. fishy:
  7170. ret = true;
  7171. }
  7172. goto out;
  7173. }
  7174. id = json_integer_value(id_val);
  7175. mutex_lock(&sshare_lock);
  7176. HASH_FIND_INT(stratum_shares, &id, sshare);
  7177. if (sshare)
  7178. HASH_DEL(stratum_shares, sshare);
  7179. mutex_unlock(&sshare_lock);
  7180. if (!sshare) {
  7181. double pool_diff;
  7182. /* Since the share is untracked, we can only guess at what the
  7183. * work difficulty is based on the current pool diff. */
  7184. cg_rlock(&pool->data_lock);
  7185. pool_diff = target_diff(pool->swork.target);
  7186. cg_runlock(&pool->data_lock);
  7187. if (json_is_true(res_val)) {
  7188. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7189. /* We don't know what device this came from so we can't
  7190. * attribute the work to the relevant cgpu */
  7191. mutex_lock(&stats_lock);
  7192. total_accepted++;
  7193. pool->accepted++;
  7194. total_diff_accepted += pool_diff;
  7195. pool->diff_accepted += pool_diff;
  7196. mutex_unlock(&stats_lock);
  7197. } else {
  7198. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7199. mutex_lock(&stats_lock);
  7200. total_rejected++;
  7201. pool->rejected++;
  7202. total_diff_rejected += pool_diff;
  7203. pool->diff_rejected += pool_diff;
  7204. mutex_unlock(&stats_lock);
  7205. }
  7206. goto out;
  7207. }
  7208. else {
  7209. mutex_lock(&submitting_lock);
  7210. --total_submitting;
  7211. mutex_unlock(&submitting_lock);
  7212. }
  7213. stratum_share_result(val, res_val, err_val, sshare);
  7214. free_work(sshare->work);
  7215. free(sshare);
  7216. ret = true;
  7217. out:
  7218. if (val)
  7219. json_decref(val);
  7220. return ret;
  7221. }
  7222. static void shutdown_stratum(struct pool *pool)
  7223. {
  7224. // Shut down Stratum as if we never had it
  7225. pool->stratum_active = false;
  7226. pool->stratum_init = false;
  7227. pool->has_stratum = false;
  7228. shutdown(pool->sock, SHUT_RDWR);
  7229. free(pool->stratum_url);
  7230. if (pool->sockaddr_url == pool->stratum_url)
  7231. pool->sockaddr_url = NULL;
  7232. pool->stratum_url = NULL;
  7233. }
  7234. void clear_stratum_shares(struct pool *pool)
  7235. {
  7236. int my_mining_threads = mining_threads; // Cached outside of locking
  7237. struct stratum_share *sshare, *tmpshare;
  7238. struct work *work;
  7239. struct cgpu_info *cgpu;
  7240. double diff_cleared = 0;
  7241. double thr_diff_cleared[my_mining_threads];
  7242. int cleared = 0;
  7243. int thr_cleared[my_mining_threads];
  7244. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7245. for (int i = 0; i < my_mining_threads; ++i)
  7246. {
  7247. thr_diff_cleared[i] = 0;
  7248. thr_cleared[i] = 0;
  7249. }
  7250. mutex_lock(&sshare_lock);
  7251. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7252. work = sshare->work;
  7253. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7254. HASH_DEL(stratum_shares, sshare);
  7255. sharelog("disconnect", work);
  7256. diff_cleared += sshare->work->work_difficulty;
  7257. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7258. ++thr_cleared[work->thr_id];
  7259. free_work(sshare->work);
  7260. free(sshare);
  7261. cleared++;
  7262. }
  7263. }
  7264. mutex_unlock(&sshare_lock);
  7265. if (cleared) {
  7266. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7267. mutex_lock(&stats_lock);
  7268. pool->stale_shares += cleared;
  7269. total_stale += cleared;
  7270. pool->diff_stale += diff_cleared;
  7271. total_diff_stale += diff_cleared;
  7272. for (int i = 0; i < my_mining_threads; ++i)
  7273. if (thr_cleared[i])
  7274. {
  7275. cgpu = get_thr_cgpu(i);
  7276. cgpu->diff_stale += thr_diff_cleared[i];
  7277. cgpu->stale += thr_cleared[i];
  7278. }
  7279. mutex_unlock(&stats_lock);
  7280. mutex_lock(&submitting_lock);
  7281. total_submitting -= cleared;
  7282. mutex_unlock(&submitting_lock);
  7283. }
  7284. }
  7285. static void resubmit_stratum_shares(struct pool *pool)
  7286. {
  7287. struct stratum_share *sshare, *tmpshare;
  7288. struct work *work;
  7289. unsigned resubmitted = 0;
  7290. mutex_lock(&sshare_lock);
  7291. mutex_lock(&submitting_lock);
  7292. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7293. if (sshare->work->pool != pool)
  7294. continue;
  7295. HASH_DEL(stratum_shares, sshare);
  7296. work = sshare->work;
  7297. DL_APPEND(submit_waiting, work);
  7298. free(sshare);
  7299. ++resubmitted;
  7300. }
  7301. mutex_unlock(&submitting_lock);
  7302. mutex_unlock(&sshare_lock);
  7303. if (resubmitted) {
  7304. notifier_wake(submit_waiting_notifier);
  7305. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7306. }
  7307. }
  7308. static void clear_pool_work(struct pool *pool)
  7309. {
  7310. struct work *work, *tmp;
  7311. int cleared = 0;
  7312. mutex_lock(stgd_lock);
  7313. HASH_ITER(hh, staged_work, work, tmp) {
  7314. if (work->pool == pool) {
  7315. HASH_DEL(staged_work, work);
  7316. free_work(work);
  7317. cleared++;
  7318. staged_full = false;
  7319. }
  7320. }
  7321. mutex_unlock(stgd_lock);
  7322. }
  7323. static int cp_prio(void)
  7324. {
  7325. int prio;
  7326. cg_rlock(&control_lock);
  7327. prio = currentpool->prio;
  7328. cg_runlock(&control_lock);
  7329. return prio;
  7330. }
  7331. /* We only need to maintain a secondary pool connection when we need the
  7332. * capacity to get work from the backup pools while still on the primary */
  7333. static bool cnx_needed(struct pool *pool)
  7334. {
  7335. struct pool *cp;
  7336. if (pool->enabled != POOL_ENABLED)
  7337. return false;
  7338. /* Idle stratum pool needs something to kick it alive again */
  7339. if (pool->has_stratum && pool->idle)
  7340. return true;
  7341. /* Getwork pools without opt_fail_only need backup pools up to be able
  7342. * to leak shares */
  7343. cp = current_pool();
  7344. if (pool_actively_desired(pool, cp))
  7345. return true;
  7346. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7347. return true;
  7348. /* Keep the connection open to allow any stray shares to be submitted
  7349. * on switching pools for 2 minutes. */
  7350. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7351. return true;
  7352. /* If the pool has only just come to life and is higher priority than
  7353. * the current pool keep the connection open so we can fail back to
  7354. * it. */
  7355. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7356. return true;
  7357. if (pool_unworkable(cp))
  7358. return true;
  7359. /* We've run out of work, bring anything back to life. */
  7360. if (no_work)
  7361. return true;
  7362. return false;
  7363. }
  7364. static void wait_lpcurrent(struct pool *pool);
  7365. static void pool_resus(struct pool *pool);
  7366. static void gen_stratum_work(struct pool *pool, struct work *work);
  7367. static void stratum_resumed(struct pool *pool)
  7368. {
  7369. if (!pool->stratum_notify)
  7370. return;
  7371. if (pool_tclear(pool, &pool->idle)) {
  7372. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7373. pool_resus(pool);
  7374. }
  7375. }
  7376. static bool supports_resume(struct pool *pool)
  7377. {
  7378. bool ret;
  7379. cg_rlock(&pool->data_lock);
  7380. ret = (pool->sessionid != NULL);
  7381. cg_runlock(&pool->data_lock);
  7382. return ret;
  7383. }
  7384. /* One stratum thread per pool that has stratum waits on the socket checking
  7385. * for new messages and for the integrity of the socket connection. We reset
  7386. * the connection based on the integrity of the receive side only as the send
  7387. * side will eventually expire data it fails to send. */
  7388. static void *stratum_thread(void *userdata)
  7389. {
  7390. struct pool *pool = (struct pool *)userdata;
  7391. pthread_detach(pthread_self());
  7392. char threadname[20];
  7393. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7394. RenameThread(threadname);
  7395. srand(time(NULL) + (intptr_t)userdata);
  7396. while (42) {
  7397. struct timeval timeout;
  7398. int sel_ret;
  7399. fd_set rd;
  7400. char *s;
  7401. int sock;
  7402. if (unlikely(!pool->has_stratum))
  7403. break;
  7404. /* Check to see whether we need to maintain this connection
  7405. * indefinitely or just bring it up when we switch to this
  7406. * pool */
  7407. while (true)
  7408. {
  7409. sock = pool->sock;
  7410. if (sock == INVSOCK)
  7411. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7412. pool->pool_no);
  7413. else
  7414. if (!sock_full(pool) && !cnx_needed(pool))
  7415. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7416. pool->pool_no);
  7417. else
  7418. break;
  7419. suspend_stratum(pool);
  7420. clear_stratum_shares(pool);
  7421. clear_pool_work(pool);
  7422. wait_lpcurrent(pool);
  7423. if (!restart_stratum(pool)) {
  7424. pool_died(pool);
  7425. while (!restart_stratum(pool)) {
  7426. if (pool->removed)
  7427. goto out;
  7428. cgsleep_ms(30000);
  7429. }
  7430. }
  7431. }
  7432. FD_ZERO(&rd);
  7433. FD_SET(sock, &rd);
  7434. timeout.tv_sec = 120;
  7435. timeout.tv_usec = 0;
  7436. /* If we fail to receive any notify messages for 2 minutes we
  7437. * assume the connection has been dropped and treat this pool
  7438. * as dead */
  7439. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7440. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7441. s = NULL;
  7442. } else
  7443. s = recv_line(pool);
  7444. if (!s) {
  7445. if (!pool->has_stratum)
  7446. break;
  7447. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7448. pool->getfail_occasions++;
  7449. total_go++;
  7450. mutex_lock(&pool->stratum_lock);
  7451. pool->stratum_active = pool->stratum_notify = false;
  7452. pool->sock = INVSOCK;
  7453. mutex_unlock(&pool->stratum_lock);
  7454. /* If the socket to our stratum pool disconnects, all
  7455. * submissions need to be discarded or resent. */
  7456. if (!supports_resume(pool))
  7457. clear_stratum_shares(pool);
  7458. else
  7459. resubmit_stratum_shares(pool);
  7460. clear_pool_work(pool);
  7461. if (pool == current_pool())
  7462. restart_threads();
  7463. if (restart_stratum(pool))
  7464. continue;
  7465. shutdown_stratum(pool);
  7466. pool_died(pool);
  7467. break;
  7468. }
  7469. /* Check this pool hasn't died while being a backup pool and
  7470. * has not had its idle flag cleared */
  7471. stratum_resumed(pool);
  7472. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7473. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7474. free(s);
  7475. if (pool->swork.clean) {
  7476. struct work *work = make_work();
  7477. /* Generate a single work item to update the current
  7478. * block database */
  7479. pool->swork.clean = false;
  7480. gen_stratum_work(pool, work);
  7481. /* Try to extract block height from coinbase scriptSig */
  7482. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7483. unsigned char cb_height_sz;
  7484. cb_height_sz = bin_height[-1];
  7485. if (cb_height_sz == 3) {
  7486. // FIXME: The block number will overflow this by AD 2173
  7487. uint32_t block_id = ((uint32_t*)work->data)[1];
  7488. uint32_t height = 0;
  7489. memcpy(&height, bin_height, 3);
  7490. height = le32toh(height);
  7491. have_block_height(block_id, height);
  7492. }
  7493. pool->swork.work_restart_id =
  7494. ++pool->work_restart_id;
  7495. pool_update_work_restart_time(pool);
  7496. if (test_work_current(work)) {
  7497. /* Only accept a work update if this stratum
  7498. * connection is from the current pool */
  7499. struct pool * const cp = current_pool();
  7500. if (pool == cp)
  7501. restart_threads();
  7502. applog(
  7503. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7504. "Stratum from pool %d requested work update", pool->pool_no);
  7505. } else
  7506. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7507. free_work(work);
  7508. }
  7509. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7510. // More than 4 timmills past since requested transactions
  7511. timer_unset(&pool->swork.tv_transparency);
  7512. pool_set_opaque(pool, true);
  7513. }
  7514. }
  7515. out:
  7516. return NULL;
  7517. }
  7518. static void init_stratum_thread(struct pool *pool)
  7519. {
  7520. have_longpoll = true;
  7521. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7522. quit(1, "Failed to create stratum thread");
  7523. }
  7524. static void *longpoll_thread(void *userdata);
  7525. static bool stratum_works(struct pool *pool)
  7526. {
  7527. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7528. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7529. return false;
  7530. if (pool->stratum_active)
  7531. return true;
  7532. if (!initiate_stratum(pool))
  7533. return false;
  7534. return true;
  7535. }
  7536. static bool pool_active(struct pool *pool, bool pinging)
  7537. {
  7538. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7539. bool ret = false;
  7540. json_t *val;
  7541. CURL *curl;
  7542. int rolltime;
  7543. char *rpc_req;
  7544. struct work *work;
  7545. enum pool_protocol proto;
  7546. if (pool->stratum_init)
  7547. return pool->stratum_active;
  7548. timer_set_now(&tv_now);
  7549. if (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, &tv_now) < 60)
  7550. return true;
  7551. if (pool->idle && timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7552. return false;
  7553. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7554. /* This is the central point we activate stratum when we can */
  7555. curl = curl_easy_init();
  7556. if (unlikely(!curl)) {
  7557. applog(LOG_ERR, "CURL initialisation failed");
  7558. return false;
  7559. }
  7560. if (!(want_gbt || want_getwork))
  7561. goto nohttp;
  7562. work = make_work();
  7563. /* Probe for GBT support on first pass */
  7564. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7565. tryagain:
  7566. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7567. work->pool = pool;
  7568. if (!rpc_req)
  7569. goto out;
  7570. pool->probed = false;
  7571. cgtime(&tv_getwork);
  7572. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7573. true, false, &rolltime, pool, false);
  7574. cgtime(&tv_getwork_reply);
  7575. free(rpc_req);
  7576. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7577. * and if so, switch to that in preference to getwork if it works */
  7578. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7579. if (!pool->has_stratum) {
  7580. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7581. if (!pool->rpc_url)
  7582. pool->rpc_url = strdup(pool->stratum_url);
  7583. pool->has_stratum = true;
  7584. }
  7585. free_work(work);
  7586. if (val)
  7587. json_decref(val);
  7588. retry_stratum:
  7589. curl_easy_cleanup(curl);
  7590. /* We create the stratum thread for each pool just after
  7591. * successful authorisation. Once the init flag has been set
  7592. * we never unset it and the stratum thread is responsible for
  7593. * setting/unsetting the active flag */
  7594. bool init = pool_tset(pool, &pool->stratum_init);
  7595. if (!init) {
  7596. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7597. if (ret)
  7598. {
  7599. detect_algo = 2;
  7600. init_stratum_thread(pool);
  7601. }
  7602. else
  7603. pool_tclear(pool, &pool->stratum_init);
  7604. return ret;
  7605. }
  7606. return pool->stratum_active;
  7607. }
  7608. else if (pool->has_stratum)
  7609. shutdown_stratum(pool);
  7610. if (val) {
  7611. bool rc;
  7612. json_t *res;
  7613. res = json_object_get(val, "result");
  7614. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7615. goto badwork;
  7616. work->rolltime = rolltime;
  7617. rc = work_decode(pool, work, val);
  7618. if (rc) {
  7619. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7620. pool->pool_no, pool->rpc_url);
  7621. work->pool = pool;
  7622. copy_time(&work->tv_getwork, &tv_getwork);
  7623. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7624. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7625. calc_diff(work, 0);
  7626. update_last_work(work);
  7627. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7628. stage_work(work);
  7629. total_getworks++;
  7630. pool->getwork_requested++;
  7631. ret = true;
  7632. cgtime(&pool->tv_idle);
  7633. } else {
  7634. badwork:
  7635. json_decref(val);
  7636. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7637. pool->pool_no, pool->rpc_url);
  7638. pool->proto = proto = pool_protocol_fallback(proto);
  7639. if (PLP_NONE != proto)
  7640. goto tryagain;
  7641. free_work(work);
  7642. goto out;
  7643. }
  7644. json_decref(val);
  7645. if (proto != pool->proto) {
  7646. pool->proto = proto;
  7647. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7648. }
  7649. if (pool->lp_url)
  7650. goto out;
  7651. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7652. const struct blktmpl_longpoll_req *lp;
  7653. if (work->tr && (lp = blktmpl_get_longpoll(work->tr->tmpl))) {
  7654. // NOTE: work_decode takes care of lp id
  7655. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7656. if (!pool->lp_url)
  7657. {
  7658. ret = false;
  7659. goto out;
  7660. }
  7661. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7662. }
  7663. else
  7664. if (pool->hdr_path && want_getwork) {
  7665. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7666. if (!pool->lp_url)
  7667. {
  7668. ret = false;
  7669. goto out;
  7670. }
  7671. pool->lp_proto = PLP_GETWORK;
  7672. } else
  7673. pool->lp_url = NULL;
  7674. if (want_longpoll && !pool->lp_started) {
  7675. pool->lp_started = true;
  7676. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7677. quit(1, "Failed to create pool longpoll thread");
  7678. }
  7679. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7680. pool->proto = proto;
  7681. goto tryagain;
  7682. } else {
  7683. free_work(work);
  7684. nohttp:
  7685. /* If we failed to parse a getwork, this could be a stratum
  7686. * url without the prefix stratum+tcp:// so let's check it */
  7687. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7688. pool->has_stratum = true;
  7689. goto retry_stratum;
  7690. }
  7691. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7692. pool->pool_no, pool->rpc_url);
  7693. if (!pinging)
  7694. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7695. }
  7696. out:
  7697. curl_easy_cleanup(curl);
  7698. return ret;
  7699. }
  7700. static void pool_resus(struct pool *pool)
  7701. {
  7702. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7703. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7704. else
  7705. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7706. }
  7707. static struct work *hash_pop(void)
  7708. {
  7709. struct work *work = NULL, *tmp;
  7710. int hc;
  7711. struct timespec ts;
  7712. retry:
  7713. mutex_lock(stgd_lock);
  7714. while (!HASH_COUNT(staged_work))
  7715. {
  7716. if (unlikely(staged_full))
  7717. {
  7718. if (likely(opt_queue < 10 + mining_threads))
  7719. {
  7720. ++opt_queue;
  7721. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7722. }
  7723. else
  7724. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7725. staged_full = false; // Let it fill up before triggering an underrun again
  7726. no_work = true;
  7727. }
  7728. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7729. pthread_cond_signal(&gws_cond);
  7730. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7731. {
  7732. run_cmd(cmd_idle);
  7733. pthread_cond_signal(&gws_cond);
  7734. pthread_cond_wait(&getq->cond, stgd_lock);
  7735. }
  7736. }
  7737. no_work = false;
  7738. hc = HASH_COUNT(staged_work);
  7739. /* Find clone work if possible, to allow masters to be reused */
  7740. if (hc > staged_rollable) {
  7741. HASH_ITER(hh, staged_work, work, tmp) {
  7742. if (!work_rollable(work))
  7743. break;
  7744. }
  7745. } else
  7746. work = staged_work;
  7747. if (can_roll(work) && should_roll(work))
  7748. {
  7749. // Instead of consuming it, force it to be cloned and grab the clone
  7750. mutex_unlock(stgd_lock);
  7751. clone_available();
  7752. goto retry;
  7753. }
  7754. HASH_DEL(staged_work, work);
  7755. if (work_rollable(work))
  7756. staged_rollable--;
  7757. /* Signal the getwork scheduler to look for more work */
  7758. pthread_cond_signal(&gws_cond);
  7759. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7760. pthread_cond_signal(&getq->cond);
  7761. mutex_unlock(stgd_lock);
  7762. work->pool->last_work_time = time(NULL);
  7763. cgtime(&work->pool->tv_last_work_time);
  7764. return work;
  7765. }
  7766. /* Clones work by rolling it if possible, and returning a clone instead of the
  7767. * original work item which gets staged again to possibly be rolled again in
  7768. * the future */
  7769. static struct work *clone_work(struct work *work)
  7770. {
  7771. int mrs = mining_threads + opt_queue - total_staged();
  7772. struct work *work_clone;
  7773. bool cloned;
  7774. if (mrs < 1)
  7775. return work;
  7776. cloned = false;
  7777. work_clone = make_clone(work);
  7778. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7779. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7780. stage_work(work_clone);
  7781. roll_work(work);
  7782. work_clone = make_clone(work);
  7783. /* Roll it again to prevent duplicates should this be used
  7784. * directly later on */
  7785. roll_work(work);
  7786. cloned = true;
  7787. }
  7788. if (cloned) {
  7789. stage_work(work);
  7790. return work_clone;
  7791. }
  7792. free_work(work_clone);
  7793. return work;
  7794. }
  7795. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7796. {
  7797. unsigned char hash1[32];
  7798. sha256(data, len, hash1);
  7799. sha256(hash1, 32, hash);
  7800. }
  7801. /* PDiff 1 is a 256 bit unsigned integer of
  7802. * 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  7803. * so we use a big endian 32 bit unsigned integer positioned at the Nth byte to
  7804. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7805. static void pdiff_target_leadzero(void * const target_p, double diff)
  7806. {
  7807. uint8_t *target = target_p;
  7808. diff *= 0x100000000;
  7809. int skip = log2(diff) / 8;
  7810. if (skip)
  7811. {
  7812. if (skip > 0x1c)
  7813. skip = 0x1c;
  7814. diff /= pow(0x100, skip);
  7815. memset(target, 0, skip);
  7816. }
  7817. uint32_t n = 0xffffffff;
  7818. n = (double)n / diff;
  7819. n = htobe32(n);
  7820. memcpy(&target[skip], &n, sizeof(n));
  7821. memset(&target[skip + sizeof(n)], 0xff, 32 - (skip + sizeof(n)));
  7822. }
  7823. void set_target_to_pdiff(void * const dest_target, const double pdiff)
  7824. {
  7825. unsigned char rtarget[32];
  7826. pdiff_target_leadzero(rtarget, pdiff);
  7827. swab256(dest_target, rtarget);
  7828. if (opt_debug) {
  7829. char htarget[65];
  7830. bin2hex(htarget, rtarget, 32);
  7831. applog(LOG_DEBUG, "Generated target %s", htarget);
  7832. }
  7833. }
  7834. void set_target_to_bdiff(void * const dest_target, const double bdiff)
  7835. {
  7836. set_target_to_pdiff(dest_target, bdiff_to_pdiff(bdiff));
  7837. }
  7838. void _test_target(void * const funcp, const char * const funcname, const bool little_endian, const void * const expectp, const double diff)
  7839. {
  7840. uint8_t bufr[32], buf[32], expectr[32], expect[32];
  7841. int off;
  7842. void (*func)(void *, double) = funcp;
  7843. func(little_endian ? bufr : buf, diff);
  7844. if (little_endian)
  7845. swab256(buf, bufr);
  7846. swap32tobe(expect, expectp, 256/32);
  7847. // Fuzzy comparison: the first 32 bits set must match, and the actual target must be >= the expected
  7848. for (off = 0; off < 28 && !buf[off]; ++off)
  7849. {}
  7850. if (memcmp(&buf[off], &expect[off], 4))
  7851. {
  7852. testfail: ;
  7853. char hexbuf[65], expectbuf[65];
  7854. bin2hex(hexbuf, buf, 32);
  7855. bin2hex(expectbuf, expect, 32);
  7856. applogr(, LOG_WARNING, "%s test failed: diff %g got %s (expected %s)",
  7857. funcname, diff, hexbuf, expectbuf);
  7858. }
  7859. if (!little_endian)
  7860. swab256(bufr, buf);
  7861. swab256(expectr, expect);
  7862. if (!hash_target_check(expectr, bufr))
  7863. goto testfail;
  7864. }
  7865. #define TEST_TARGET(func, le, expect, diff) \
  7866. _test_target(func, #func, le, expect, diff)
  7867. void test_target()
  7868. {
  7869. uint32_t expect[8] = {0};
  7870. // bdiff 1 should be exactly 00000000ffff0000000006f29cfd29510a6caee84634e86a57257cf03152537f due to floating-point imprecision (pdiff1 / 1.0000152590218966)
  7871. expect[0] = 0x0000ffff;
  7872. TEST_TARGET(set_target_to_bdiff, true, expect, 1./0x10000);
  7873. expect[0] = 0;
  7874. expect[1] = 0xffff0000;
  7875. TEST_TARGET(set_target_to_bdiff, true, expect, 1);
  7876. expect[1] >>= 1;
  7877. TEST_TARGET(set_target_to_bdiff, true, expect, 2);
  7878. expect[1] >>= 3;
  7879. TEST_TARGET(set_target_to_bdiff, true, expect, 0x10);
  7880. expect[1] >>= 4;
  7881. TEST_TARGET(set_target_to_bdiff, true, expect, 0x100);
  7882. memset(&expect[1], '\xff', 28);
  7883. expect[0] = 0x0000ffff;
  7884. TEST_TARGET(set_target_to_pdiff, true, expect, 1./0x10000);
  7885. expect[0] = 0;
  7886. TEST_TARGET(set_target_to_pdiff, true, expect, 1);
  7887. expect[1] >>= 1;
  7888. TEST_TARGET(set_target_to_pdiff, true, expect, 2);
  7889. expect[1] >>= 3;
  7890. TEST_TARGET(set_target_to_pdiff, true, expect, 0x10);
  7891. expect[1] >>= 4;
  7892. TEST_TARGET(set_target_to_pdiff, true, expect, 0x100);
  7893. }
  7894. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7895. {
  7896. *dst = *src;
  7897. if (dst->tr)
  7898. tmpl_incref(dst->tr);
  7899. dst->nonce1 = maybe_strdup(src->nonce1);
  7900. dst->job_id = maybe_strdup(src->job_id);
  7901. bytes_cpy(&dst->coinbase, &src->coinbase);
  7902. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7903. }
  7904. void stratum_work_clean(struct stratum_work * const swork)
  7905. {
  7906. if (swork->tr)
  7907. tmpl_decref(swork->tr);
  7908. free(swork->nonce1);
  7909. free(swork->job_id);
  7910. bytes_free(&swork->coinbase);
  7911. bytes_free(&swork->merkle_bin);
  7912. }
  7913. bool pool_has_usable_swork(const struct pool * const pool)
  7914. {
  7915. if (opt_benchmark)
  7916. return true;
  7917. if (pool->swork.tr)
  7918. {
  7919. // GBT
  7920. struct timeval tv_now;
  7921. timer_set_now(&tv_now);
  7922. return blkmk_time_left(pool->swork.tr->tmpl, tv_now.tv_sec);
  7923. }
  7924. return pool->stratum_notify;
  7925. }
  7926. /* Generates stratum based work based on the most recent notify information
  7927. * from the pool. This will keep generating work while a pool is down so we use
  7928. * other means to detect when the pool has died in stratum_thread */
  7929. static void gen_stratum_work(struct pool *pool, struct work *work)
  7930. {
  7931. clean_work(work);
  7932. cg_wlock(&pool->data_lock);
  7933. pool->swork.data_lock_p = &pool->data_lock;
  7934. const int n2size = pool->swork.n2size;
  7935. bytes_resize(&work->nonce2, n2size);
  7936. if (pool->nonce2sz < n2size)
  7937. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, n2size - pool->nonce2sz);
  7938. memcpy(bytes_buf(&work->nonce2),
  7939. #ifdef WORDS_BIGENDIAN
  7940. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7941. &((char*)&pool->nonce2)[pool->nonce2off],
  7942. #else
  7943. &pool->nonce2,
  7944. #endif
  7945. pool->nonce2sz);
  7946. pool->nonce2++;
  7947. work->pool = pool;
  7948. work->work_restart_id = pool->swork.work_restart_id;
  7949. gen_stratum_work2(work, &pool->swork);
  7950. cgtime(&work->tv_staged);
  7951. }
  7952. void gen_stratum_work2(struct work *work, struct stratum_work *swork)
  7953. {
  7954. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7955. uint8_t *merkle_bin;
  7956. uint32_t *data32, *swap32;
  7957. int i;
  7958. /* Generate coinbase */
  7959. coinbase = bytes_buf(&swork->coinbase);
  7960. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7961. /* Downgrade to a read lock to read off the variables */
  7962. if (swork->data_lock_p)
  7963. cg_dwlock(swork->data_lock_p);
  7964. /* Generate merkle root */
  7965. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7966. memcpy(merkle_sha, merkle_root, 32);
  7967. merkle_bin = bytes_buf(&swork->merkle_bin);
  7968. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7969. memcpy(merkle_sha + 32, merkle_bin, 32);
  7970. gen_hash(merkle_sha, merkle_root, 64);
  7971. memcpy(merkle_sha, merkle_root, 32);
  7972. }
  7973. data32 = (uint32_t *)merkle_sha;
  7974. swap32 = (uint32_t *)merkle_root;
  7975. flip32(swap32, data32);
  7976. memcpy(&work->data[0], swork->header1, 36);
  7977. memcpy(&work->data[36], merkle_root, 32);
  7978. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7979. memcpy(&work->data[72], swork->diffbits, 4);
  7980. memset(&work->data[76], 0, 4); // nonce
  7981. memcpy(&work->data[80], workpadding_bin, 48);
  7982. work->ntime_roll_limits = swork->ntime_roll_limits;
  7983. /* Copy parameters required for share submission */
  7984. memcpy(work->target, swork->target, sizeof(work->target));
  7985. work->job_id = maybe_strdup(swork->job_id);
  7986. work->nonce1 = maybe_strdup(swork->nonce1);
  7987. if (swork->data_lock_p)
  7988. cg_runlock(swork->data_lock_p);
  7989. if (opt_debug)
  7990. {
  7991. char header[161];
  7992. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7993. bin2hex(header, work->data, 80);
  7994. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7995. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7996. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7997. }
  7998. calc_midstate(work);
  7999. local_work++;
  8000. work->stratum = true;
  8001. work->blk.nonce = 0;
  8002. work->id = total_work++;
  8003. work->longpoll = false;
  8004. work->getwork_mode = GETWORK_MODE_STRATUM;
  8005. calc_diff(work, 0);
  8006. }
  8007. void request_work(struct thr_info *thr)
  8008. {
  8009. struct cgpu_info *cgpu = thr->cgpu;
  8010. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8011. /* Tell the watchdog thread this thread is waiting on getwork and
  8012. * should not be restarted */
  8013. thread_reportout(thr);
  8014. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  8015. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8016. {
  8017. if (proc->threads)
  8018. break;
  8019. thread_reportout(proc->thr[0]);
  8020. }
  8021. cgtime(&dev_stats->_get_start);
  8022. }
  8023. // FIXME: Make this non-blocking (and remove HACK above)
  8024. struct work *get_work(struct thr_info *thr)
  8025. {
  8026. const int thr_id = thr->id;
  8027. struct cgpu_info *cgpu = thr->cgpu;
  8028. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  8029. struct cgminer_stats *pool_stats;
  8030. struct timeval tv_get;
  8031. struct work *work = NULL;
  8032. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  8033. while (!work) {
  8034. work = hash_pop();
  8035. if (stale_work(work, false)) {
  8036. staged_full = false; // It wasn't really full, since it was stale :(
  8037. discard_work(work);
  8038. work = NULL;
  8039. wake_gws();
  8040. }
  8041. }
  8042. last_getwork = time(NULL);
  8043. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  8044. cgpu->proc_repr, work->id, thr_id);
  8045. work->thr_id = thr_id;
  8046. thread_reportin(thr);
  8047. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  8048. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  8049. {
  8050. if (proc->threads)
  8051. break;
  8052. thread_reportin(proc->thr[0]);
  8053. }
  8054. work->mined = true;
  8055. work->blk.nonce = 0;
  8056. cgtime(&tv_get);
  8057. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  8058. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  8059. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  8060. dev_stats->getwork_wait_max = tv_get;
  8061. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  8062. dev_stats->getwork_wait_min = tv_get;
  8063. ++dev_stats->getwork_calls;
  8064. pool_stats = &(work->pool->cgminer_stats);
  8065. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  8066. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  8067. pool_stats->getwork_wait_max = tv_get;
  8068. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  8069. pool_stats->getwork_wait_min = tv_get;
  8070. ++pool_stats->getwork_calls;
  8071. if (work->work_difficulty < 1)
  8072. {
  8073. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  8074. {
  8075. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  8076. cgpu->proc_repr);
  8077. work->nonce_diff = cgpu->min_nonce_diff;
  8078. }
  8079. else
  8080. work->nonce_diff = work->work_difficulty;
  8081. }
  8082. else
  8083. work->nonce_diff = 1;
  8084. return work;
  8085. }
  8086. static
  8087. void _submit_work_async(struct work *work)
  8088. {
  8089. applog(LOG_DEBUG, "Pushing submit work to work thread");
  8090. if (opt_benchmark)
  8091. {
  8092. json_t * const jn = json_null();
  8093. rebuild_hash(work);
  8094. share_result(jn, jn, jn, work, false, "");
  8095. free_work(work);
  8096. return;
  8097. }
  8098. mutex_lock(&submitting_lock);
  8099. ++total_submitting;
  8100. DL_APPEND(submit_waiting, work);
  8101. mutex_unlock(&submitting_lock);
  8102. notifier_wake(submit_waiting_notifier);
  8103. }
  8104. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  8105. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  8106. {
  8107. if (tv_work_found)
  8108. copy_time(&work->tv_work_found, tv_work_found);
  8109. _submit_work_async(work);
  8110. }
  8111. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  8112. {
  8113. struct cgpu_info * const cgpu = thr->cgpu;
  8114. if (bad_nonce_p)
  8115. {
  8116. if (bad_nonce_p == UNKNOWN_NONCE)
  8117. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  8118. cgpu->proc_repr);
  8119. else
  8120. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  8121. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  8122. }
  8123. mutex_lock(&stats_lock);
  8124. hw_errors++;
  8125. ++cgpu->hw_errors;
  8126. if (bad_nonce_p)
  8127. {
  8128. total_bad_diff1 += nonce_diff;
  8129. cgpu->bad_diff1 += nonce_diff;
  8130. }
  8131. mutex_unlock(&stats_lock);
  8132. if (thr->cgpu->drv->hw_error)
  8133. thr->cgpu->drv->hw_error(thr);
  8134. }
  8135. static
  8136. bool test_hash(const void * const phash, const float diff)
  8137. {
  8138. const uint32_t * const hash = phash;
  8139. if (diff >= 1.)
  8140. // FIXME: > 1 should check more
  8141. return !hash[7];
  8142. const uint32_t Htarg = (uint32_t)(0x100000000 * diff) - 1;
  8143. const uint32_t tmp_hash7 = le32toh(hash[7]);
  8144. applog(LOG_DEBUG, "htarget %08lx hash %08lx",
  8145. (long unsigned int)Htarg,
  8146. (long unsigned int)tmp_hash7);
  8147. return (tmp_hash7 <= Htarg);
  8148. }
  8149. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  8150. {
  8151. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8152. *work_nonce = htole32(nonce);
  8153. #ifdef USE_SCRYPT
  8154. if (opt_scrypt)
  8155. scrypt_hash_data(work->hash, work->data);
  8156. else
  8157. #endif
  8158. hash_data(work->hash, work->data);
  8159. if (!test_hash(work->hash, work->nonce_diff))
  8160. return TNR_BAD;
  8161. if (checktarget && !hash_target_check_v(work->hash, work->target))
  8162. {
  8163. bool high_hash = true;
  8164. struct pool * const pool = work->pool;
  8165. if (pool->stratum_active)
  8166. {
  8167. // Some stratum pools are buggy and expect difficulty changes to be immediate retroactively, so if the target has changed, check and submit just in case
  8168. if (memcmp(pool->swork.target, work->target, sizeof(work->target)))
  8169. {
  8170. applog(LOG_DEBUG, "Stratum pool %u target has changed since work job issued, checking that too",
  8171. pool->pool_no);
  8172. if (hash_target_check_v(work->hash, pool->swork.target))
  8173. high_hash = false;
  8174. }
  8175. }
  8176. if (high_hash)
  8177. return TNR_HIGH;
  8178. }
  8179. return TNR_GOOD;
  8180. }
  8181. /* Returns true if nonce for work was a valid share */
  8182. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  8183. {
  8184. return submit_noffset_nonce(thr, work, nonce, 0);
  8185. }
  8186. /* Allows drivers to submit work items where the driver has changed the ntime
  8187. * value by noffset. Must be only used with a work protocol that does not ntime
  8188. * roll itself intrinsically to generate work (eg stratum). We do not touch
  8189. * the original work struct, but the copy of it only. */
  8190. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  8191. int noffset)
  8192. {
  8193. struct work *work = make_work();
  8194. _copy_work(work, work_in, noffset);
  8195. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  8196. struct timeval tv_work_found;
  8197. enum test_nonce2_result res;
  8198. bool ret = true;
  8199. thread_reportout(thr);
  8200. cgtime(&tv_work_found);
  8201. *work_nonce = htole32(nonce);
  8202. work->thr_id = thr->id;
  8203. /* Do one last check before attempting to submit the work */
  8204. /* Side effect: sets work->data and work->hash for us */
  8205. res = test_nonce2(work, nonce);
  8206. if (unlikely(res == TNR_BAD))
  8207. {
  8208. inc_hw_errors(thr, work, nonce);
  8209. ret = false;
  8210. goto out;
  8211. }
  8212. mutex_lock(&stats_lock);
  8213. total_diff1 += work->nonce_diff;
  8214. thr ->cgpu->diff1 += work->nonce_diff;
  8215. work->pool->diff1 += work->nonce_diff;
  8216. thr->cgpu->last_device_valid_work = time(NULL);
  8217. mutex_unlock(&stats_lock);
  8218. if (noncelog_file)
  8219. noncelog(work);
  8220. if (res == TNR_HIGH)
  8221. {
  8222. // Share above target, normal
  8223. /* Check the diff of the share, even if it didn't reach the
  8224. * target, just to set the best share value if it's higher. */
  8225. share_diff(work);
  8226. goto out;
  8227. }
  8228. submit_work_async2(work, &tv_work_found);
  8229. work = NULL; // Taken by submit_work_async2
  8230. out:
  8231. if (work)
  8232. free_work(work);
  8233. thread_reportin(thr);
  8234. return ret;
  8235. }
  8236. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8237. {
  8238. if (wdiff->tv_sec > opt_scantime ||
  8239. work->blk.nonce >= 0xfffffffe - hashes ||
  8240. hashes >= 0xfffffffe ||
  8241. stale_work(work, false))
  8242. return true;
  8243. return false;
  8244. }
  8245. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8246. {
  8247. struct cgpu_info *proc = thr->cgpu;
  8248. if (proc->threads > 1)
  8249. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8250. else
  8251. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8252. }
  8253. // Called by asynchronous minerloops, when they find their processor should be disabled
  8254. void mt_disable_start(struct thr_info *mythr)
  8255. {
  8256. struct cgpu_info *cgpu = mythr->cgpu;
  8257. struct device_drv *drv = cgpu->drv;
  8258. if (drv->thread_disable)
  8259. drv->thread_disable(mythr);
  8260. hashmeter2(mythr);
  8261. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8262. mythr->rolling = mythr->cgpu->rolling = 0;
  8263. thread_reportout(mythr);
  8264. mythr->_mt_disable_called = true;
  8265. }
  8266. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8267. * the driver tells us it's full so that it may extract the work item using
  8268. * the get_queued() function which adds it to the hashtable on
  8269. * cgpu->queued_work. */
  8270. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8271. {
  8272. thread_reportout(mythr);
  8273. do {
  8274. bool need_work;
  8275. /* Do this lockless just to know if we need more unqueued work. */
  8276. need_work = (!cgpu->unqueued_work);
  8277. /* get_work is a blocking function so do it outside of lock
  8278. * to prevent deadlocks with other locks. */
  8279. if (need_work) {
  8280. struct work *work = get_work(mythr);
  8281. wr_lock(&cgpu->qlock);
  8282. /* Check we haven't grabbed work somehow between
  8283. * checking and picking up the lock. */
  8284. if (likely(!cgpu->unqueued_work))
  8285. cgpu->unqueued_work = work;
  8286. else
  8287. need_work = false;
  8288. wr_unlock(&cgpu->qlock);
  8289. if (unlikely(!need_work))
  8290. discard_work(work);
  8291. }
  8292. /* The queue_full function should be used by the driver to
  8293. * actually place work items on the physical device if it
  8294. * does have a queue. */
  8295. } while (drv->queue_full && !drv->queue_full(cgpu));
  8296. }
  8297. /* Add a work item to a cgpu's queued hashlist */
  8298. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8299. {
  8300. cgpu->queued_count++;
  8301. HASH_ADD_INT(cgpu->queued_work, id, work);
  8302. }
  8303. /* This function is for retrieving one work item from the unqueued pointer and
  8304. * adding it to the hashtable of queued work. Code using this function must be
  8305. * able to handle NULL as a return which implies there is no work available. */
  8306. struct work *get_queued(struct cgpu_info *cgpu)
  8307. {
  8308. struct work *work = NULL;
  8309. wr_lock(&cgpu->qlock);
  8310. if (cgpu->unqueued_work) {
  8311. work = cgpu->unqueued_work;
  8312. if (unlikely(stale_work(work, false))) {
  8313. discard_work(work);
  8314. work = NULL;
  8315. wake_gws();
  8316. } else
  8317. __add_queued(cgpu, work);
  8318. cgpu->unqueued_work = NULL;
  8319. }
  8320. wr_unlock(&cgpu->qlock);
  8321. return work;
  8322. }
  8323. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8324. {
  8325. wr_lock(&cgpu->qlock);
  8326. __add_queued(cgpu, work);
  8327. wr_unlock(&cgpu->qlock);
  8328. }
  8329. /* Get fresh work and add it to cgpu's queued hashlist */
  8330. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8331. {
  8332. struct work *work = get_work(thr);
  8333. add_queued(cgpu, work);
  8334. return work;
  8335. }
  8336. /* This function is for finding an already queued work item in the
  8337. * given que hashtable. Code using this function must be able
  8338. * to handle NULL as a return which implies there is no matching work.
  8339. * The calling function must lock access to the que if it is required.
  8340. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8341. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8342. {
  8343. struct work *work, *tmp, *ret = NULL;
  8344. HASH_ITER(hh, que, work, tmp) {
  8345. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8346. memcmp(work->data + offset, data, datalen) == 0) {
  8347. ret = work;
  8348. break;
  8349. }
  8350. }
  8351. return ret;
  8352. }
  8353. /* This function is for finding an already queued work item in the
  8354. * device's queued_work hashtable. Code using this function must be able
  8355. * to handle NULL as a return which implies there is no matching work.
  8356. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8357. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8358. {
  8359. struct work *ret;
  8360. rd_lock(&cgpu->qlock);
  8361. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8362. rd_unlock(&cgpu->qlock);
  8363. return ret;
  8364. }
  8365. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8366. {
  8367. struct work *work, *ret = NULL;
  8368. rd_lock(&cgpu->qlock);
  8369. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8370. if (work)
  8371. ret = copy_work(work);
  8372. rd_unlock(&cgpu->qlock);
  8373. return ret;
  8374. }
  8375. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8376. {
  8377. cgpu->queued_count--;
  8378. HASH_DEL(cgpu->queued_work, work);
  8379. }
  8380. /* This function should be used by queued device drivers when they're sure
  8381. * the work struct is no longer in use. */
  8382. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8383. {
  8384. wr_lock(&cgpu->qlock);
  8385. __work_completed(cgpu, work);
  8386. wr_unlock(&cgpu->qlock);
  8387. free_work(work);
  8388. }
  8389. /* Combines find_queued_work_bymidstate and work_completed in one function
  8390. * withOUT destroying the work so the driver must free it. */
  8391. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8392. {
  8393. struct work *work;
  8394. wr_lock(&cgpu->qlock);
  8395. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8396. if (work)
  8397. __work_completed(cgpu, work);
  8398. wr_unlock(&cgpu->qlock);
  8399. return work;
  8400. }
  8401. static void flush_queue(struct cgpu_info *cgpu)
  8402. {
  8403. struct work *work = NULL;
  8404. wr_lock(&cgpu->qlock);
  8405. work = cgpu->unqueued_work;
  8406. cgpu->unqueued_work = NULL;
  8407. wr_unlock(&cgpu->qlock);
  8408. if (work) {
  8409. free_work(work);
  8410. applog(LOG_DEBUG, "Discarded queued work item");
  8411. }
  8412. }
  8413. /* This version of hash work is for devices that are fast enough to always
  8414. * perform a full nonce range and need a queue to maintain the device busy.
  8415. * Work creation and destruction is not done from within this function
  8416. * directly. */
  8417. void hash_queued_work(struct thr_info *mythr)
  8418. {
  8419. const long cycle = opt_log_interval / 5 ? : 1;
  8420. struct timeval tv_start = {0, 0}, tv_end;
  8421. struct cgpu_info *cgpu = mythr->cgpu;
  8422. struct device_drv *drv = cgpu->drv;
  8423. const int thr_id = mythr->id;
  8424. int64_t hashes_done = 0;
  8425. if (unlikely(cgpu->deven != DEV_ENABLED))
  8426. mt_disable(mythr);
  8427. while (likely(!cgpu->shutdown)) {
  8428. struct timeval diff;
  8429. int64_t hashes;
  8430. fill_queue(mythr, cgpu, drv, thr_id);
  8431. thread_reportin(mythr);
  8432. hashes = drv->scanwork(mythr);
  8433. /* Reset the bool here in case the driver looks for it
  8434. * synchronously in the scanwork loop. */
  8435. mythr->work_restart = false;
  8436. if (unlikely(hashes == -1 )) {
  8437. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8438. cgpu->deven = DEV_DISABLED;
  8439. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8440. mt_disable(mythr);
  8441. }
  8442. hashes_done += hashes;
  8443. cgtime(&tv_end);
  8444. timersub(&tv_end, &tv_start, &diff);
  8445. if (diff.tv_sec >= cycle) {
  8446. hashmeter(thr_id, &diff, hashes_done);
  8447. hashes_done = 0;
  8448. copy_time(&tv_start, &tv_end);
  8449. }
  8450. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8451. mt_disable(mythr);
  8452. if (unlikely(mythr->work_restart)) {
  8453. flush_queue(cgpu);
  8454. if (drv->flush_work)
  8455. drv->flush_work(cgpu);
  8456. }
  8457. }
  8458. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8459. }
  8460. // Called by minerloop, when it is re-enabling a processor
  8461. void mt_disable_finish(struct thr_info *mythr)
  8462. {
  8463. struct device_drv *drv = mythr->cgpu->drv;
  8464. thread_reportin(mythr);
  8465. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8466. if (drv->thread_enable)
  8467. drv->thread_enable(mythr);
  8468. mythr->_mt_disable_called = false;
  8469. }
  8470. // Called by synchronous minerloops, when they find their processor should be disabled
  8471. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8472. void mt_disable(struct thr_info *mythr)
  8473. {
  8474. const struct cgpu_info * const cgpu = mythr->cgpu;
  8475. mt_disable_start(mythr);
  8476. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8477. do {
  8478. notifier_read(mythr->notifier);
  8479. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8480. mt_disable_finish(mythr);
  8481. }
  8482. enum {
  8483. STAT_SLEEP_INTERVAL = 1,
  8484. STAT_CTR_INTERVAL = 10000000,
  8485. FAILURE_INTERVAL = 30,
  8486. };
  8487. /* Stage another work item from the work returned in a longpoll */
  8488. 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)
  8489. {
  8490. bool rc;
  8491. work->rolltime = rolltime;
  8492. rc = work_decode(pool, work, val);
  8493. if (unlikely(!rc)) {
  8494. applog(LOG_ERR, "Could not convert longpoll data to work");
  8495. free_work(work);
  8496. return;
  8497. }
  8498. total_getworks++;
  8499. pool->getwork_requested++;
  8500. work->pool = pool;
  8501. copy_time(&work->tv_getwork, tv_lp);
  8502. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8503. calc_diff(work, 0);
  8504. if (pool->enabled == POOL_REJECTING)
  8505. work->mandatory = true;
  8506. work->longpoll = true;
  8507. work->getwork_mode = GETWORK_MODE_LP;
  8508. update_last_work(work);
  8509. /* We'll be checking this work item twice, but we already know it's
  8510. * from a new block so explicitly force the new block detection now
  8511. * rather than waiting for it to hit the stage thread. This also
  8512. * allows testwork to know whether LP discovered the block or not. */
  8513. test_work_current(work);
  8514. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8515. * the longpoll work from a pool that has been rejecting shares as a
  8516. * way to detect when the pool has recovered.
  8517. */
  8518. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8519. free_work(work);
  8520. return;
  8521. }
  8522. work = clone_work(work);
  8523. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8524. stage_work(work);
  8525. applog(LOG_DEBUG, "Converted longpoll data to work");
  8526. }
  8527. /* If we want longpoll, enable it for the chosen default pool, or, if
  8528. * the pool does not support longpoll, find the first one that does
  8529. * and use its longpoll support */
  8530. static struct pool *select_longpoll_pool(struct pool *cp)
  8531. {
  8532. int i;
  8533. if (cp->lp_url)
  8534. return cp;
  8535. for (i = 0; i < total_pools; i++) {
  8536. struct pool *pool = pools[i];
  8537. if (pool->has_stratum || pool->lp_url)
  8538. return pool;
  8539. }
  8540. return NULL;
  8541. }
  8542. /* This will make the longpoll thread wait till it's the current pool, or it
  8543. * has been flagged as rejecting, before attempting to open any connections.
  8544. */
  8545. static void wait_lpcurrent(struct pool *pool)
  8546. {
  8547. while (!cnx_needed(pool))
  8548. {
  8549. mutex_lock(&lp_lock);
  8550. pthread_cond_wait(&lp_cond, &lp_lock);
  8551. mutex_unlock(&lp_lock);
  8552. }
  8553. }
  8554. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8555. struct pool *pool = vpool;
  8556. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8557. pool->lp_socket = sock;
  8558. return sock;
  8559. }
  8560. static void *longpoll_thread(void *userdata)
  8561. {
  8562. struct pool *cp = (struct pool *)userdata;
  8563. /* This *pool is the source of the actual longpoll, not the pool we've
  8564. * tied it to */
  8565. struct timeval start, reply, end;
  8566. struct pool *pool = NULL;
  8567. char threadname[20];
  8568. CURL *curl = NULL;
  8569. int failures = 0;
  8570. char *lp_url;
  8571. int rolltime;
  8572. #ifndef HAVE_PTHREAD_CANCEL
  8573. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8574. #endif
  8575. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8576. RenameThread(threadname);
  8577. curl = curl_easy_init();
  8578. if (unlikely(!curl)) {
  8579. applog(LOG_ERR, "CURL initialisation failed");
  8580. return NULL;
  8581. }
  8582. retry_pool:
  8583. pool = select_longpoll_pool(cp);
  8584. if (!pool) {
  8585. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8586. while (!pool) {
  8587. cgsleep_ms(60000);
  8588. pool = select_longpoll_pool(cp);
  8589. }
  8590. }
  8591. if (pool->has_stratum) {
  8592. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8593. cp->rpc_url, pool->rpc_url);
  8594. goto out;
  8595. }
  8596. /* Any longpoll from any pool is enough for this to be true */
  8597. have_longpoll = true;
  8598. wait_lpcurrent(cp);
  8599. {
  8600. lp_url = pool->lp_url;
  8601. if (cp == pool)
  8602. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8603. else
  8604. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8605. }
  8606. while (42) {
  8607. json_t *val, *soval;
  8608. struct work *work = make_work();
  8609. char *lpreq;
  8610. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8611. work->pool = pool;
  8612. if (!lpreq)
  8613. {
  8614. free_work(work);
  8615. goto lpfail;
  8616. }
  8617. wait_lpcurrent(cp);
  8618. cgtime(&start);
  8619. /* Longpoll connections can be persistent for a very long time
  8620. * and any number of issues could have come up in the meantime
  8621. * so always establish a fresh connection instead of relying on
  8622. * a persistent one. */
  8623. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8624. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8625. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8626. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8627. lpreq, false, true, &rolltime, pool, false);
  8628. pool->lp_socket = CURL_SOCKET_BAD;
  8629. cgtime(&reply);
  8630. free(lpreq);
  8631. if (likely(val)) {
  8632. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8633. if (soval)
  8634. pool->submit_old = json_is_true(soval);
  8635. else
  8636. pool->submit_old = false;
  8637. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8638. failures = 0;
  8639. json_decref(val);
  8640. } else {
  8641. /* Some pools regularly drop the longpoll request so
  8642. * only see this as longpoll failure if it happens
  8643. * immediately and just restart it the rest of the
  8644. * time. */
  8645. cgtime(&end);
  8646. free_work(work);
  8647. if (end.tv_sec - start.tv_sec > 30)
  8648. continue;
  8649. if (failures == 1)
  8650. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8651. lpfail:
  8652. cgsleep_ms(30000);
  8653. }
  8654. if (pool != cp) {
  8655. pool = select_longpoll_pool(cp);
  8656. if (pool->has_stratum) {
  8657. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8658. cp->rpc_url, pool->rpc_url);
  8659. break;
  8660. }
  8661. if (unlikely(!pool))
  8662. goto retry_pool;
  8663. }
  8664. if (unlikely(pool->removed))
  8665. break;
  8666. }
  8667. out:
  8668. curl_easy_cleanup(curl);
  8669. return NULL;
  8670. }
  8671. static void stop_longpoll(void)
  8672. {
  8673. int i;
  8674. want_longpoll = false;
  8675. for (i = 0; i < total_pools; ++i)
  8676. {
  8677. struct pool *pool = pools[i];
  8678. if (unlikely(!pool->lp_started))
  8679. continue;
  8680. pool->lp_started = false;
  8681. pthread_cancel(pool->longpoll_thread);
  8682. }
  8683. have_longpoll = false;
  8684. }
  8685. static void start_longpoll(void)
  8686. {
  8687. int i;
  8688. want_longpoll = true;
  8689. for (i = 0; i < total_pools; ++i)
  8690. {
  8691. struct pool *pool = pools[i];
  8692. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8693. continue;
  8694. pool->lp_started = true;
  8695. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8696. quit(1, "Failed to create pool longpoll thread");
  8697. }
  8698. }
  8699. void reinit_device(struct cgpu_info *cgpu)
  8700. {
  8701. if (cgpu->drv->reinit_device)
  8702. cgpu->drv->reinit_device(cgpu);
  8703. }
  8704. static struct timeval rotate_tv;
  8705. /* We reap curls if they are unused for over a minute */
  8706. static void reap_curl(struct pool *pool)
  8707. {
  8708. struct curl_ent *ent, *iter;
  8709. struct timeval now;
  8710. int reaped = 0;
  8711. cgtime(&now);
  8712. mutex_lock(&pool->pool_lock);
  8713. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8714. if (pool->curls < 2)
  8715. break;
  8716. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8717. reaped++;
  8718. pool->curls--;
  8719. LL_DELETE(pool->curllist, ent);
  8720. curl_easy_cleanup(ent->curl);
  8721. free(ent);
  8722. }
  8723. }
  8724. mutex_unlock(&pool->pool_lock);
  8725. if (reaped)
  8726. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8727. }
  8728. static void *watchpool_thread(void __maybe_unused *userdata)
  8729. {
  8730. int intervals = 0;
  8731. #ifndef HAVE_PTHREAD_CANCEL
  8732. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8733. #endif
  8734. RenameThread("watchpool");
  8735. while (42) {
  8736. struct timeval now;
  8737. int i;
  8738. if (++intervals > 20)
  8739. intervals = 0;
  8740. cgtime(&now);
  8741. for (i = 0; i < total_pools; i++) {
  8742. struct pool *pool = pools[i];
  8743. if (!opt_benchmark)
  8744. reap_curl(pool);
  8745. /* Get a rolling utility per pool over 10 mins */
  8746. if (intervals > 19) {
  8747. int shares = pool->diff1 - pool->last_shares;
  8748. pool->last_shares = pool->diff1;
  8749. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8750. pool->shares = pool->utility;
  8751. }
  8752. if (pool->enabled == POOL_DISABLED)
  8753. continue;
  8754. /* Don't start testing any pools if the test threads
  8755. * from startup are still doing their first attempt. */
  8756. if (unlikely(pool->testing)) {
  8757. pthread_join(pool->test_thread, NULL);
  8758. }
  8759. /* Test pool is idle once every minute */
  8760. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8761. cgtime(&pool->tv_idle);
  8762. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8763. pool_resus(pool);
  8764. }
  8765. /* Only switch pools if the failback pool has been
  8766. * alive for more than 5 minutes (default) to prevent
  8767. * intermittently failing pools from being used. */
  8768. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8769. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  8770. if (opt_fail_switch_delay % 60)
  8771. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  8772. pool->pool_no, pool->rpc_url,
  8773. opt_fail_switch_delay,
  8774. (opt_fail_switch_delay == 1 ? "" : "s"));
  8775. else
  8776. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  8777. pool->pool_no, pool->rpc_url,
  8778. opt_fail_switch_delay / 60,
  8779. (opt_fail_switch_delay == 60 ? "" : "s"));
  8780. switch_pools(NULL);
  8781. }
  8782. }
  8783. if (current_pool()->idle)
  8784. switch_pools(NULL);
  8785. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8786. cgtime(&rotate_tv);
  8787. switch_pools(NULL);
  8788. }
  8789. cgsleep_ms(30000);
  8790. }
  8791. return NULL;
  8792. }
  8793. void mt_enable(struct thr_info *thr)
  8794. {
  8795. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8796. notifier_wake(thr->notifier);
  8797. }
  8798. void proc_enable(struct cgpu_info *cgpu)
  8799. {
  8800. int j;
  8801. cgpu->deven = DEV_ENABLED;
  8802. for (j = cgpu->threads ?: 1; j--; )
  8803. mt_enable(cgpu->thr[j]);
  8804. }
  8805. #define device_recovered(cgpu) proc_enable(cgpu)
  8806. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8807. {
  8808. struct string_elist *setstr_elist;
  8809. const char *p, *p2;
  8810. char replybuf[0x2000];
  8811. size_t L;
  8812. DL_FOREACH(opt_set_device_list, setstr_elist)
  8813. {
  8814. const char * const setstr = setstr_elist->string;
  8815. p = strchr(setstr, ':');
  8816. if (!p)
  8817. p = setstr;
  8818. {
  8819. L = p - setstr;
  8820. char pattern[L + 1];
  8821. if (L)
  8822. memcpy(pattern, setstr, L);
  8823. pattern[L] = '\0';
  8824. if (!cgpu_match(pattern, cgpu))
  8825. continue;
  8826. }
  8827. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8828. cgpu->proc_repr, __func__, setstr);
  8829. if (p[0] == ':')
  8830. ++p;
  8831. p2 = strchr(p, '=');
  8832. if (!p2)
  8833. {
  8834. L = strlen(p);
  8835. p2 = "";
  8836. }
  8837. else
  8838. {
  8839. L = p2 - p;
  8840. ++p2;
  8841. }
  8842. char opt[L + 1];
  8843. if (L)
  8844. memcpy(opt, p, L);
  8845. opt[L] = '\0';
  8846. L = strlen(p2);
  8847. char setval[L + 1];
  8848. if (L)
  8849. memcpy(setval, p2, L);
  8850. setval[L] = '\0';
  8851. enum bfg_set_device_replytype success;
  8852. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8853. switch (success)
  8854. {
  8855. case SDR_OK:
  8856. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8857. cgpu->proc_repr, setstr,
  8858. p ? ": " : "", p ?: "");
  8859. break;
  8860. case SDR_ERR:
  8861. case SDR_HELP:
  8862. case SDR_UNKNOWN:
  8863. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8864. cgpu->proc_repr, setstr, p);
  8865. break;
  8866. case SDR_AUTO:
  8867. case SDR_NOSUPP:
  8868. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8869. cgpu->proc_repr, setstr);
  8870. }
  8871. }
  8872. cgpu->already_set_defaults = true;
  8873. }
  8874. void drv_set_defaults(const struct device_drv * const drv, const void *datap, void *userp, const char * const devpath, const char * const serial, const int mode)
  8875. {
  8876. struct device_drv dummy_drv = *drv;
  8877. struct cgpu_info dummy_cgpu = {
  8878. .drv = &dummy_drv,
  8879. .device = &dummy_cgpu,
  8880. .device_id = -1,
  8881. .proc_id = -1,
  8882. .device_data = userp,
  8883. .device_path = devpath,
  8884. .dev_serial = serial,
  8885. };
  8886. strcpy(dummy_cgpu.proc_repr, drv->name);
  8887. switch (mode)
  8888. {
  8889. case 0:
  8890. dummy_drv.set_device = datap;
  8891. break;
  8892. case 1:
  8893. dummy_drv.set_device = NULL;
  8894. dummy_cgpu.set_device_funcs = datap;
  8895. break;
  8896. }
  8897. cgpu_set_defaults(&dummy_cgpu);
  8898. }
  8899. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8900. * the screen at regular intervals, and restarts threads if they appear to have
  8901. * died. */
  8902. #define WATCHDOG_SICK_TIME 60
  8903. #define WATCHDOG_DEAD_TIME 600
  8904. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8905. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8906. static void *watchdog_thread(void __maybe_unused *userdata)
  8907. {
  8908. const unsigned int interval = WATCHDOG_INTERVAL;
  8909. struct timeval zero_tv;
  8910. #ifndef HAVE_PTHREAD_CANCEL
  8911. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8912. #endif
  8913. RenameThread("watchdog");
  8914. memset(&zero_tv, 0, sizeof(struct timeval));
  8915. cgtime(&rotate_tv);
  8916. while (1) {
  8917. int i;
  8918. struct timeval now;
  8919. sleep(interval);
  8920. discard_stale();
  8921. hashmeter(-1, &zero_tv, 0);
  8922. #ifdef HAVE_CURSES
  8923. const int ts = total_staged();
  8924. if (curses_active_locked()) {
  8925. change_logwinsize();
  8926. curses_print_status(ts);
  8927. _refresh_devstatus(true);
  8928. touchwin(logwin);
  8929. wrefresh(logwin);
  8930. unlock_curses();
  8931. }
  8932. #endif
  8933. cgtime(&now);
  8934. if (!sched_paused && !should_run()) {
  8935. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8936. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8937. if (!schedstart.enable) {
  8938. quit(0, "Terminating execution as planned");
  8939. break;
  8940. }
  8941. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8942. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8943. sched_paused = true;
  8944. rd_lock(&mining_thr_lock);
  8945. for (i = 0; i < mining_threads; i++)
  8946. mining_thr[i]->pause = true;
  8947. rd_unlock(&mining_thr_lock);
  8948. } else if (sched_paused && should_run()) {
  8949. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8950. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8951. if (schedstop.enable)
  8952. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8953. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8954. sched_paused = false;
  8955. for (i = 0; i < mining_threads; i++) {
  8956. struct thr_info *thr;
  8957. thr = get_thread(i);
  8958. thr->pause = false;
  8959. }
  8960. for (i = 0; i < total_devices; ++i)
  8961. {
  8962. struct cgpu_info *cgpu = get_devices(i);
  8963. /* Don't touch disabled devices */
  8964. if (cgpu->deven == DEV_DISABLED)
  8965. continue;
  8966. proc_enable(cgpu);
  8967. }
  8968. }
  8969. for (i = 0; i < total_devices; ++i) {
  8970. struct cgpu_info *cgpu = get_devices(i);
  8971. if (!cgpu->disable_watchdog)
  8972. bfg_watchdog(cgpu, &now);
  8973. }
  8974. }
  8975. return NULL;
  8976. }
  8977. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8978. {
  8979. struct thr_info *thr = cgpu->thr[0];
  8980. enum dev_enable *denable;
  8981. char *dev_str = cgpu->proc_repr;
  8982. if (likely(drv_ready(cgpu)))
  8983. {
  8984. if (unlikely(!cgpu->already_set_defaults))
  8985. cgpu_set_defaults(cgpu);
  8986. if (cgpu->drv->get_stats)
  8987. cgpu->drv->get_stats(cgpu);
  8988. }
  8989. denable = &cgpu->deven;
  8990. if (cgpu->drv->watchdog)
  8991. cgpu->drv->watchdog(cgpu, tvp_now);
  8992. /* Thread is disabled */
  8993. if (*denable == DEV_DISABLED)
  8994. return;
  8995. else
  8996. if (*denable == DEV_RECOVER_ERR) {
  8997. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8998. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8999. dev_str);
  9000. if (cgpu->reinit_backoff < 300)
  9001. cgpu->reinit_backoff *= 2;
  9002. device_recovered(cgpu);
  9003. }
  9004. return;
  9005. }
  9006. else
  9007. if (*denable == DEV_RECOVER) {
  9008. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  9009. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  9010. dev_str);
  9011. device_recovered(cgpu);
  9012. }
  9013. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9014. return;
  9015. }
  9016. else
  9017. if (cgpu->temp > cgpu->cutofftemp)
  9018. {
  9019. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  9020. dev_str, (int)cgpu->temp);
  9021. *denable = DEV_RECOVER;
  9022. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  9023. run_cmd(cmd_idle);
  9024. }
  9025. if (thr->getwork) {
  9026. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  9027. int thrid;
  9028. bool cgpu_idle = true;
  9029. thr->rolling = 0;
  9030. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  9031. if (!cgpu->thr[thrid]->getwork)
  9032. cgpu_idle = false;
  9033. if (cgpu_idle) {
  9034. cgpu->rolling = 0;
  9035. cgpu->status = LIFE_WAIT;
  9036. }
  9037. }
  9038. return;
  9039. }
  9040. else if (cgpu->status == LIFE_WAIT)
  9041. cgpu->status = LIFE_WELL;
  9042. #ifdef WANT_CPUMINE
  9043. if (!strcmp(cgpu->drv->dname, "cpu"))
  9044. return;
  9045. #endif
  9046. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  9047. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  9048. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  9049. cgpu->status = LIFE_WELL;
  9050. cgpu->device_last_well = time(NULL);
  9051. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  9052. thr->rolling = cgpu->rolling = 0;
  9053. cgpu->status = LIFE_SICK;
  9054. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  9055. cgtime(&thr->sick);
  9056. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  9057. run_cmd(cmd_sick);
  9058. if (opt_restart && cgpu->drv->reinit_device) {
  9059. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  9060. reinit_device(cgpu);
  9061. }
  9062. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  9063. cgpu->status = LIFE_DEAD;
  9064. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  9065. cgtime(&thr->sick);
  9066. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  9067. run_cmd(cmd_dead);
  9068. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  9069. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  9070. /* Attempt to restart a GPU that's sick or dead once every minute */
  9071. cgtime(&thr->sick);
  9072. if (opt_restart)
  9073. reinit_device(cgpu);
  9074. }
  9075. }
  9076. static void log_print_status(struct cgpu_info *cgpu)
  9077. {
  9078. char logline[255];
  9079. get_statline(logline, sizeof(logline), cgpu);
  9080. applog(LOG_WARNING, "%s", logline);
  9081. }
  9082. void print_summary(void)
  9083. {
  9084. struct timeval diff;
  9085. int hours, mins, secs, i;
  9086. double utility, efficiency = 0.0;
  9087. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  9088. int pool_secs;
  9089. timersub(&total_tv_end, &total_tv_start, &diff);
  9090. hours = diff.tv_sec / 3600;
  9091. mins = (diff.tv_sec % 3600) / 60;
  9092. secs = diff.tv_sec % 60;
  9093. utility = total_accepted / total_secs * 60;
  9094. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  9095. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  9096. applog(LOG_WARNING, "Started at %s", datestamp);
  9097. if (total_pools == 1)
  9098. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  9099. #ifdef WANT_CPUMINE
  9100. if (opt_n_threads > 0)
  9101. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  9102. #endif
  9103. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  9104. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  9105. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  9106. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  9107. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  9108. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  9109. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  9110. total_rejected, total_stale,
  9111. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  9112. );
  9113. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  9114. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  9115. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  9116. applog(LOG_WARNING, "Network transfer: %s (%s)",
  9117. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9118. (float)total_bytes_rcvd,
  9119. (float)total_bytes_sent),
  9120. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9121. (float)(total_bytes_rcvd / total_secs),
  9122. (float)(total_bytes_sent / total_secs)));
  9123. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  9124. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  9125. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  9126. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  9127. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  9128. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  9129. if (total_pools > 1) {
  9130. for (i = 0; i < total_pools; i++) {
  9131. struct pool *pool = pools[i];
  9132. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  9133. if (pool->solved)
  9134. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  9135. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  9136. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  9137. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  9138. pool->rejected, pool->stale_shares,
  9139. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  9140. );
  9141. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  9142. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  9143. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  9144. applog(LOG_WARNING, " Network transfer: %s (%s)",
  9145. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  9146. (float)pool->cgminer_pool_stats.net_bytes_received,
  9147. (float)pool->cgminer_pool_stats.net_bytes_sent),
  9148. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  9149. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  9150. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  9151. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  9152. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  9153. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  9154. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  9155. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  9156. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  9157. }
  9158. }
  9159. if (opt_quit_summary != BQS_NONE)
  9160. {
  9161. if (opt_quit_summary == BQS_DETAILED)
  9162. include_serial_in_statline = true;
  9163. applog(LOG_WARNING, "Summary of per device statistics:\n");
  9164. for (i = 0; i < total_devices; ++i) {
  9165. struct cgpu_info *cgpu = get_devices(i);
  9166. if (!cgpu->proc_id)
  9167. {
  9168. // Device summary line
  9169. opt_show_procs = false;
  9170. log_print_status(cgpu);
  9171. opt_show_procs = true;
  9172. }
  9173. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  9174. log_print_status(cgpu);
  9175. }
  9176. }
  9177. if (opt_shares) {
  9178. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  9179. if (opt_shares > total_diff_accepted)
  9180. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  9181. }
  9182. applog(LOG_WARNING, " ");
  9183. fflush(stderr);
  9184. fflush(stdout);
  9185. }
  9186. void _bfg_clean_up(bool restarting)
  9187. {
  9188. #ifdef HAVE_OPENCL
  9189. clear_adl(nDevs);
  9190. #endif
  9191. #ifdef HAVE_LIBUSB
  9192. if (likely(have_libusb))
  9193. libusb_exit(NULL);
  9194. #endif
  9195. cgtime(&total_tv_end);
  9196. #ifdef WIN32
  9197. timeEndPeriod(1);
  9198. #endif
  9199. if (!restarting) {
  9200. /* Attempting to disable curses or print a summary during a
  9201. * restart can lead to a deadlock. */
  9202. #ifdef HAVE_CURSES
  9203. disable_curses();
  9204. #endif
  9205. if (!opt_realquiet && successful_connect)
  9206. print_summary();
  9207. }
  9208. if (opt_n_threads > 0)
  9209. free(cpus);
  9210. curl_global_cleanup();
  9211. #ifdef WIN32
  9212. WSACleanup();
  9213. #endif
  9214. }
  9215. void _quit(int status)
  9216. {
  9217. if (status) {
  9218. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9219. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9220. int *p = NULL;
  9221. // NOTE debugger can bypass with: p = &p
  9222. *p = status; // Segfault, hopefully dumping core
  9223. }
  9224. }
  9225. #if defined(unix) || defined(__APPLE__)
  9226. if (forkpid > 0) {
  9227. kill(forkpid, SIGTERM);
  9228. forkpid = 0;
  9229. }
  9230. #endif
  9231. exit(status);
  9232. }
  9233. #ifdef HAVE_CURSES
  9234. char *curses_input(const char *query)
  9235. {
  9236. char *input;
  9237. echo();
  9238. input = malloc(255);
  9239. if (!input)
  9240. quit(1, "Failed to malloc input");
  9241. leaveok(logwin, false);
  9242. wlogprint("%s:\n", query);
  9243. wgetnstr(logwin, input, 255);
  9244. if (!strlen(input))
  9245. {
  9246. free(input);
  9247. input = NULL;
  9248. }
  9249. leaveok(logwin, true);
  9250. noecho();
  9251. return input;
  9252. }
  9253. #endif
  9254. static bool pools_active = false;
  9255. static void *test_pool_thread(void *arg)
  9256. {
  9257. struct pool *pool = (struct pool *)arg;
  9258. if (pool_active(pool, false)) {
  9259. pool_tset(pool, &pool->lagging);
  9260. pool_tclear(pool, &pool->idle);
  9261. bool first_pool = false;
  9262. cg_wlock(&control_lock);
  9263. if (!pools_active) {
  9264. currentpool = pool;
  9265. if (pool->pool_no != 0)
  9266. first_pool = true;
  9267. pools_active = true;
  9268. }
  9269. cg_wunlock(&control_lock);
  9270. if (unlikely(first_pool))
  9271. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9272. else
  9273. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9274. switch_pools(NULL);
  9275. } else
  9276. pool_died(pool);
  9277. pool->testing = false;
  9278. return NULL;
  9279. }
  9280. /* Always returns true that the pool details were added unless we are not
  9281. * live, implying this is the only pool being added, so if no pools are
  9282. * active it returns false. */
  9283. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9284. {
  9285. size_t siz;
  9286. pool->rpc_url = url;
  9287. pool->rpc_user = user;
  9288. pool->rpc_pass = pass;
  9289. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9290. pool->rpc_userpass = malloc(siz);
  9291. if (!pool->rpc_userpass)
  9292. quit(1, "Failed to malloc userpass");
  9293. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9294. pool->testing = true;
  9295. pool->idle = true;
  9296. enable_pool(pool);
  9297. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9298. if (!live) {
  9299. pthread_join(pool->test_thread, NULL);
  9300. return pools_active;
  9301. }
  9302. return true;
  9303. }
  9304. #ifdef HAVE_CURSES
  9305. static bool input_pool(bool live)
  9306. {
  9307. char *url = NULL, *user = NULL, *pass = NULL;
  9308. struct pool *pool;
  9309. bool ret = false;
  9310. immedok(logwin, true);
  9311. wlogprint("Input server details.\n");
  9312. url = curses_input("URL");
  9313. if (!url)
  9314. goto out;
  9315. user = curses_input("Username");
  9316. if (!user)
  9317. goto out;
  9318. pass = curses_input("Password");
  9319. if (!pass)
  9320. pass = calloc(1, 1);
  9321. pool = add_pool();
  9322. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9323. strncmp(url, "https://", 8)) {
  9324. char *httpinput;
  9325. httpinput = malloc(256);
  9326. if (!httpinput)
  9327. quit(1, "Failed to malloc httpinput");
  9328. strcpy(httpinput, "http://");
  9329. strncat(httpinput, url, 248);
  9330. free(url);
  9331. url = httpinput;
  9332. }
  9333. ret = add_pool_details(pool, live, url, user, pass);
  9334. out:
  9335. immedok(logwin, false);
  9336. if (!ret) {
  9337. if (url)
  9338. free(url);
  9339. if (user)
  9340. free(user);
  9341. if (pass)
  9342. free(pass);
  9343. }
  9344. return ret;
  9345. }
  9346. #endif
  9347. #if defined(unix) || defined(__APPLE__)
  9348. static void fork_monitor()
  9349. {
  9350. // Make a pipe: [readFD, writeFD]
  9351. int pfd[2];
  9352. int r = pipe(pfd);
  9353. if (r < 0) {
  9354. perror("pipe - failed to create pipe for --monitor");
  9355. exit(1);
  9356. }
  9357. // Make stderr write end of pipe
  9358. fflush(stderr);
  9359. r = dup2(pfd[1], 2);
  9360. if (r < 0) {
  9361. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9362. exit(1);
  9363. }
  9364. r = close(pfd[1]);
  9365. if (r < 0) {
  9366. perror("close - failed to close write end of pipe for --monitor");
  9367. exit(1);
  9368. }
  9369. // Don't allow a dying monitor to kill the main process
  9370. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9371. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9372. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9373. perror("signal - failed to edit signal mask for --monitor");
  9374. exit(1);
  9375. }
  9376. // Fork a child process
  9377. forkpid = fork();
  9378. if (forkpid < 0) {
  9379. perror("fork - failed to fork child process for --monitor");
  9380. exit(1);
  9381. }
  9382. // Child: launch monitor command
  9383. if (0 == forkpid) {
  9384. // Make stdin read end of pipe
  9385. r = dup2(pfd[0], 0);
  9386. if (r < 0) {
  9387. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9388. exit(1);
  9389. }
  9390. close(pfd[0]);
  9391. if (r < 0) {
  9392. perror("close - in child, failed to close read end of pipe for --monitor");
  9393. exit(1);
  9394. }
  9395. // Launch user specified command
  9396. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9397. perror("execl - in child failed to exec user specified command for --monitor");
  9398. exit(1);
  9399. }
  9400. // Parent: clean up unused fds and bail
  9401. r = close(pfd[0]);
  9402. if (r < 0) {
  9403. perror("close - failed to close read end of pipe for --monitor");
  9404. exit(1);
  9405. }
  9406. }
  9407. #endif // defined(unix)
  9408. #ifdef HAVE_CURSES
  9409. #ifdef USE_UNICODE
  9410. static
  9411. wchar_t select_unicode_char(const wchar_t *opt)
  9412. {
  9413. for ( ; *opt; ++opt)
  9414. if (iswprint(*opt))
  9415. return *opt;
  9416. return '?';
  9417. }
  9418. #endif
  9419. void enable_curses(void) {
  9420. int x;
  9421. __maybe_unused int y;
  9422. lock_curses();
  9423. if (curses_active) {
  9424. unlock_curses();
  9425. return;
  9426. }
  9427. #ifdef USE_UNICODE
  9428. if (use_unicode)
  9429. {
  9430. setlocale(LC_CTYPE, "");
  9431. if (iswprint(0xb0))
  9432. have_unicode_degrees = true;
  9433. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9434. }
  9435. #endif
  9436. mainwin = initscr();
  9437. start_color();
  9438. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9439. if (ERR != use_default_colors())
  9440. default_bgcolor = -1;
  9441. #endif
  9442. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9443. {
  9444. menu_attr = COLOR_PAIR(1);
  9445. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9446. attr_bad |= COLOR_PAIR(2);
  9447. }
  9448. keypad(mainwin, true);
  9449. getmaxyx(mainwin, y, x);
  9450. statuswin = newwin(logstart, x, 0, 0);
  9451. leaveok(statuswin, true);
  9452. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9453. // We resize the window later anyway, so just start it off at 1 :)
  9454. logwin = newwin(1, 0, logcursor, 0);
  9455. idlok(logwin, true);
  9456. scrollok(logwin, true);
  9457. leaveok(logwin, true);
  9458. cbreak();
  9459. noecho();
  9460. nonl();
  9461. curses_active = true;
  9462. statusy = logstart;
  9463. unlock_curses();
  9464. }
  9465. #endif
  9466. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9467. #ifndef WANT_CPUMINE
  9468. struct device_drv cpu_drv;
  9469. struct device_drv cpu_drv = {
  9470. .name = "CPU",
  9471. };
  9472. #endif
  9473. static int cgminer_id_count = 0;
  9474. static int device_line_id_count;
  9475. void register_device(struct cgpu_info *cgpu)
  9476. {
  9477. cgpu->deven = DEV_ENABLED;
  9478. wr_lock(&devices_lock);
  9479. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9480. wr_unlock(&devices_lock);
  9481. if (!cgpu->proc_id)
  9482. cgpu->device_line_id = device_line_id_count++;
  9483. mining_threads += cgpu->threads ?: 1;
  9484. #ifdef HAVE_CURSES
  9485. adj_width(mining_threads, &dev_width);
  9486. #endif
  9487. rwlock_init(&cgpu->qlock);
  9488. cgpu->queued_work = NULL;
  9489. }
  9490. struct _cgpu_devid_counter {
  9491. char name[4];
  9492. int lastid;
  9493. UT_hash_handle hh;
  9494. };
  9495. void renumber_cgpu(struct cgpu_info *cgpu)
  9496. {
  9497. static struct _cgpu_devid_counter *devids = NULL;
  9498. struct _cgpu_devid_counter *d;
  9499. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9500. if (d)
  9501. cgpu->device_id = ++d->lastid;
  9502. else {
  9503. d = malloc(sizeof(*d));
  9504. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9505. cgpu->device_id = d->lastid = 0;
  9506. HASH_ADD_STR(devids, name, d);
  9507. }
  9508. // Build repr strings
  9509. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9510. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9511. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9512. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9513. const int lpcount = cgpu->procs;
  9514. if (lpcount > 1)
  9515. {
  9516. int ns;
  9517. struct cgpu_info *slave;
  9518. int lpdigits = 1;
  9519. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9520. ++lpdigits;
  9521. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9522. cgpu->proc_repr[5 + lpdigits] = '\0';
  9523. ns = strlen(cgpu->proc_repr_ns);
  9524. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9525. slave = cgpu;
  9526. for (int i = 1; i < lpcount; ++i)
  9527. {
  9528. slave = slave->next_proc;
  9529. strcpy(slave->proc_repr, cgpu->proc_repr);
  9530. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9531. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9532. {
  9533. slave->proc_repr_ns[ns + y] =
  9534. slave->proc_repr[5 + y] += (x % 26);
  9535. }
  9536. }
  9537. }
  9538. }
  9539. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9540. {
  9541. sha256(buffer, length, digest);
  9542. return true;
  9543. }
  9544. static
  9545. int drv_algo_check(const struct device_drv * const drv)
  9546. {
  9547. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9548. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9549. return (algos & algomatch);
  9550. }
  9551. #ifndef HAVE_PTHREAD_CANCEL
  9552. extern void setup_pthread_cancel_workaround();
  9553. extern struct sigaction pcwm_orig_term_handler;
  9554. #endif
  9555. bool bfg_need_detect_rescan;
  9556. extern void probe_device(struct lowlevel_device_info *);
  9557. static void schedule_rescan(const struct timeval *);
  9558. static
  9559. void drv_detect_all()
  9560. {
  9561. bool rescanning = false;
  9562. rescan:
  9563. bfg_need_detect_rescan = false;
  9564. #ifdef HAVE_BFG_LOWLEVEL
  9565. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9566. LL_FOREACH_SAFE(infolist, info, infotmp)
  9567. probe_device(info);
  9568. LL_FOREACH_SAFE(infolist, info, infotmp)
  9569. pthread_join(info->probe_pth, NULL);
  9570. #endif
  9571. struct driver_registration *reg, *tmp;
  9572. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9573. {
  9574. const struct device_drv * const drv = reg->drv;
  9575. if (!(drv_algo_check(drv) && drv->drv_detect))
  9576. continue;
  9577. drv->drv_detect();
  9578. }
  9579. #ifdef HAVE_BFG_LOWLEVEL
  9580. lowlevel_scan_free();
  9581. #endif
  9582. if (bfg_need_detect_rescan)
  9583. {
  9584. if (rescanning)
  9585. {
  9586. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9587. struct timeval tv_when;
  9588. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9589. schedule_rescan(&tv_when);
  9590. }
  9591. else
  9592. {
  9593. rescanning = true;
  9594. applog(LOG_DEBUG, "Device rescan requested");
  9595. goto rescan;
  9596. }
  9597. }
  9598. }
  9599. static
  9600. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9601. {
  9602. struct thr_info *thr;
  9603. int j;
  9604. struct device_drv *api = cgpu->drv;
  9605. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9606. int threadobj = cgpu->threads;
  9607. if (!threadobj)
  9608. // Create a fake thread object to handle hashmeter etc
  9609. threadobj = 1;
  9610. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9611. cgpu->thr[threadobj] = NULL;
  9612. cgpu->status = LIFE_INIT;
  9613. if (opt_devices_enabled_list)
  9614. {
  9615. struct string_elist *enablestr_elist;
  9616. cgpu->deven = DEV_DISABLED;
  9617. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9618. {
  9619. const char * const enablestr = enablestr_elist->string;
  9620. if (cgpu_match(enablestr, cgpu))
  9621. {
  9622. cgpu->deven = DEV_ENABLED;
  9623. break;
  9624. }
  9625. }
  9626. }
  9627. cgpu->max_hashes = 0;
  9628. BFGINIT(cgpu->min_nonce_diff, 1);
  9629. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9630. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9631. // Setup thread structs before starting any of the threads, in case they try to interact
  9632. for (j = 0; j < threadobj; ++j, ++*kp) {
  9633. thr = get_thread(*kp);
  9634. thr->id = *kp;
  9635. thr->cgpu = cgpu;
  9636. thr->device_thread = j;
  9637. thr->work_restart_notifier[1] = INVSOCK;
  9638. thr->mutex_request[1] = INVSOCK;
  9639. thr->_job_transition_in_progress = true;
  9640. timerclear(&thr->tv_morework);
  9641. thr->scanhash_working = true;
  9642. thr->hashes_done = 0;
  9643. timerclear(&thr->tv_hashes_done);
  9644. cgtime(&thr->tv_lastupdate);
  9645. thr->tv_poll.tv_sec = -1;
  9646. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9647. cgpu->thr[j] = thr;
  9648. }
  9649. if (!cgpu->device->threads)
  9650. notifier_init_invalid(cgpu->thr[0]->notifier);
  9651. else
  9652. if (!cgpu->threads)
  9653. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9654. else
  9655. for (j = 0; j < cgpu->threads; ++j)
  9656. {
  9657. thr = cgpu->thr[j];
  9658. notifier_init(thr->notifier);
  9659. }
  9660. }
  9661. static
  9662. void start_cgpu(struct cgpu_info *cgpu)
  9663. {
  9664. struct thr_info *thr;
  9665. int j;
  9666. for (j = 0; j < cgpu->threads; ++j) {
  9667. thr = cgpu->thr[j];
  9668. /* Enable threads for devices set not to mine but disable
  9669. * their queue in case we wish to enable them later */
  9670. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9671. continue;
  9672. thread_reportout(thr);
  9673. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9674. quit(1, "thread %d create failed", thr->id);
  9675. notifier_wake(thr->notifier);
  9676. }
  9677. if (cgpu->deven == DEV_ENABLED)
  9678. proc_enable(cgpu);
  9679. }
  9680. static
  9681. void _scan_serial(void *p)
  9682. {
  9683. const char *s = p;
  9684. struct string_elist *iter, *tmp;
  9685. struct string_elist *orig_scan_devices = scan_devices;
  9686. if (s)
  9687. {
  9688. // Make temporary scan_devices list
  9689. scan_devices = NULL;
  9690. string_elist_add("noauto", &scan_devices);
  9691. add_serial(s);
  9692. }
  9693. drv_detect_all();
  9694. if (s)
  9695. {
  9696. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9697. {
  9698. string_elist_del(&scan_devices, iter);
  9699. }
  9700. scan_devices = orig_scan_devices;
  9701. }
  9702. }
  9703. #ifdef HAVE_BFG_LOWLEVEL
  9704. static
  9705. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9706. {
  9707. if (!(false
  9708. || (info->serial && !strcasecmp(ser, info->serial))
  9709. || (info->path && !strcasecmp(ser, info->path ))
  9710. || (info->devid && !strcasecmp(ser, info->devid ))
  9711. ))
  9712. {
  9713. char *devid = devpath_to_devid(ser);
  9714. if (!devid)
  9715. return false;
  9716. const bool different = strcmp(info->devid, devid);
  9717. free(devid);
  9718. if (different)
  9719. return false;
  9720. }
  9721. return true;
  9722. }
  9723. static
  9724. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9725. {
  9726. struct driver_registration *dreg;
  9727. char dname[dnamelen];
  9728. int i;
  9729. for (i = 0; i < dnamelen; ++i)
  9730. dname[i] = tolower(_dname[i]);
  9731. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9732. if (!dreg)
  9733. {
  9734. for (i = 0; i < dnamelen; ++i)
  9735. dname[i] = toupper(_dname[i]);
  9736. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9737. if (!dreg)
  9738. return NULL;
  9739. }
  9740. if (!drv_algo_check(dreg->drv))
  9741. return NULL;
  9742. return dreg->drv;
  9743. }
  9744. static
  9745. void *probe_device_thread(void *p)
  9746. {
  9747. struct lowlevel_device_info * const infolist = p;
  9748. struct lowlevel_device_info *info = infolist;
  9749. bool request_rescan = false;
  9750. {
  9751. char threadname[5 + strlen(info->devid) + 1];
  9752. sprintf(threadname, "probe_%s", info->devid);
  9753. RenameThread(threadname);
  9754. }
  9755. // If already in use, ignore
  9756. if (bfg_claim_any(NULL, NULL, info->devid))
  9757. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9758. __func__, info->product);
  9759. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9760. struct string_elist *sd_iter, *sd_tmp;
  9761. struct driver_registration *dreg, *dreg_tmp;
  9762. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9763. {
  9764. const char * const dname = sd_iter->string;
  9765. const char * const colon = strpbrk(dname, ":@");
  9766. if (!(colon && colon != dname))
  9767. continue;
  9768. const char * const ser = &colon[1];
  9769. LL_FOREACH2(infolist, info, same_devid_next)
  9770. {
  9771. if (!_probe_device_match(info, ser))
  9772. continue;
  9773. const size_t dnamelen = (colon - dname);
  9774. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9775. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9776. continue;
  9777. if (drv->lowl_probe(info))
  9778. return NULL;
  9779. else
  9780. if (opt_hotplug)
  9781. request_rescan = true;
  9782. }
  9783. }
  9784. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9785. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9786. {
  9787. const struct device_drv * const drv = dreg->drv;
  9788. if (!drv_algo_check(drv))
  9789. continue;
  9790. // Check for "noauto" flag
  9791. // NOTE: driver-specific configuration overrides general
  9792. bool doauto = true;
  9793. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9794. {
  9795. const char * const dname = sd_iter->string;
  9796. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9797. const char *colon = strchr(dname, ':');
  9798. if (!colon)
  9799. colon = &dname[-1];
  9800. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9801. continue;
  9802. const ssize_t dnamelen = (colon - dname);
  9803. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9804. continue;
  9805. doauto = (tolower(colon[1]) == 'a');
  9806. if (dnamelen != -1)
  9807. break;
  9808. }
  9809. if (doauto && drv->lowl_match)
  9810. {
  9811. LL_FOREACH2(infolist, info, same_devid_next)
  9812. {
  9813. if (!drv->lowl_match(info))
  9814. continue;
  9815. if (drv->lowl_probe(info))
  9816. return NULL;
  9817. else
  9818. if (opt_hotplug)
  9819. bfg_need_detect_rescan = true;
  9820. }
  9821. }
  9822. }
  9823. // probe driver(s) with 'all' enabled
  9824. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9825. {
  9826. const char * const dname = sd_iter->string;
  9827. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9828. const char * const colon = strchr(dname, ':');
  9829. if (!colon)
  9830. {
  9831. LL_FOREACH2(infolist, info, same_devid_next)
  9832. {
  9833. if (
  9834. #ifdef NEED_BFG_LOWL_VCOM
  9835. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9836. #endif
  9837. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9838. {
  9839. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9840. {
  9841. const struct device_drv * const drv = dreg->drv;
  9842. if (!drv_algo_check(drv))
  9843. continue;
  9844. if (drv->lowl_probe_by_name_only)
  9845. continue;
  9846. if (!drv->lowl_probe)
  9847. continue;
  9848. if (drv->lowl_probe(info))
  9849. return NULL;
  9850. }
  9851. if (opt_hotplug)
  9852. request_rescan = true;
  9853. break;
  9854. }
  9855. }
  9856. continue;
  9857. }
  9858. if (strcasecmp(&colon[1], "all"))
  9859. continue;
  9860. const size_t dnamelen = (colon - dname);
  9861. LL_FOREACH2(infolist, info, same_devid_next)
  9862. {
  9863. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9864. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9865. continue;
  9866. if (drv->lowl_probe(info))
  9867. return NULL;
  9868. }
  9869. }
  9870. // Only actually request a rescan if we never found any cgpu
  9871. if (request_rescan)
  9872. bfg_need_detect_rescan = true;
  9873. return NULL;
  9874. }
  9875. void probe_device(struct lowlevel_device_info * const info)
  9876. {
  9877. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9878. }
  9879. #endif
  9880. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9881. {
  9882. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9883. int devcount, i, mining_threads_new = 0;
  9884. unsigned int k;
  9885. struct cgpu_info *cgpu;
  9886. struct thr_info *thr;
  9887. void *p;
  9888. mutex_lock(&mutex);
  9889. devcount = total_devices;
  9890. addfunc(arg);
  9891. if (!total_devices_new)
  9892. goto out;
  9893. wr_lock(&devices_lock);
  9894. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9895. if (unlikely(!p))
  9896. {
  9897. wr_unlock(&devices_lock);
  9898. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9899. goto out;
  9900. }
  9901. devices = p;
  9902. wr_unlock(&devices_lock);
  9903. for (i = 0; i < total_devices_new; ++i)
  9904. {
  9905. cgpu = devices_new[i];
  9906. mining_threads_new += cgpu->threads ?: 1;
  9907. }
  9908. wr_lock(&mining_thr_lock);
  9909. mining_threads_new += mining_threads;
  9910. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9911. if (unlikely(!p))
  9912. {
  9913. wr_unlock(&mining_thr_lock);
  9914. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9915. goto out;
  9916. }
  9917. mining_thr = p;
  9918. wr_unlock(&mining_thr_lock);
  9919. for (i = mining_threads; i < mining_threads_new; ++i) {
  9920. mining_thr[i] = calloc(1, sizeof(*thr));
  9921. if (!mining_thr[i])
  9922. {
  9923. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9924. for ( ; --i >= mining_threads; )
  9925. free(mining_thr[i]);
  9926. goto out;
  9927. }
  9928. }
  9929. k = mining_threads;
  9930. for (i = 0; i < total_devices_new; ++i)
  9931. {
  9932. cgpu = devices_new[i];
  9933. allocate_cgpu(cgpu, &k);
  9934. }
  9935. for (i = 0; i < total_devices_new; ++i)
  9936. {
  9937. cgpu = devices_new[i];
  9938. start_cgpu(cgpu);
  9939. register_device(cgpu);
  9940. ++total_devices;
  9941. }
  9942. #ifdef HAVE_CURSES
  9943. switch_logsize();
  9944. #endif
  9945. out:
  9946. total_devices_new = 0;
  9947. devcount = total_devices - devcount;
  9948. mutex_unlock(&mutex);
  9949. return devcount;
  9950. }
  9951. int scan_serial(const char *s)
  9952. {
  9953. return create_new_cgpus(_scan_serial, (void*)s);
  9954. }
  9955. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9956. static bool rescan_active;
  9957. static struct timeval tv_rescan;
  9958. static notifier_t rescan_notifier;
  9959. static
  9960. void *rescan_thread(__maybe_unused void *p)
  9961. {
  9962. pthread_detach(pthread_self());
  9963. RenameThread("rescan");
  9964. struct timeval tv_timeout, tv_now;
  9965. fd_set rfds;
  9966. while (true)
  9967. {
  9968. mutex_lock(&rescan_mutex);
  9969. tv_timeout = tv_rescan;
  9970. if (!timer_isset(&tv_timeout))
  9971. {
  9972. rescan_active = false;
  9973. mutex_unlock(&rescan_mutex);
  9974. break;
  9975. }
  9976. mutex_unlock(&rescan_mutex);
  9977. FD_ZERO(&rfds);
  9978. FD_SET(rescan_notifier[0], &rfds);
  9979. const int maxfd = rescan_notifier[0];
  9980. timer_set_now(&tv_now);
  9981. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9982. notifier_read(rescan_notifier);
  9983. mutex_lock(&rescan_mutex);
  9984. if (timer_passed(&tv_rescan, NULL))
  9985. {
  9986. timer_unset(&tv_rescan);
  9987. mutex_unlock(&rescan_mutex);
  9988. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9989. scan_serial(NULL);
  9990. }
  9991. else
  9992. mutex_unlock(&rescan_mutex);
  9993. }
  9994. return NULL;
  9995. }
  9996. static
  9997. void _schedule_rescan(const struct timeval * const tvp_when)
  9998. {
  9999. if (rescan_active)
  10000. {
  10001. if (timercmp(tvp_when, &tv_rescan, <))
  10002. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  10003. else
  10004. {
  10005. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  10006. tv_rescan = *tvp_when;
  10007. }
  10008. return;
  10009. }
  10010. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  10011. tv_rescan = *tvp_when;
  10012. rescan_active = true;
  10013. static pthread_t pth;
  10014. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  10015. applog(LOG_ERR, "Failed to start rescan thread");
  10016. }
  10017. static
  10018. void schedule_rescan(const struct timeval * const tvp_when)
  10019. {
  10020. mutex_lock(&rescan_mutex);
  10021. _schedule_rescan(tvp_when);
  10022. mutex_unlock(&rescan_mutex);
  10023. }
  10024. #ifdef HAVE_BFG_HOTPLUG
  10025. static
  10026. void hotplug_trigger()
  10027. {
  10028. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  10029. struct timeval tv_now;
  10030. timer_set_now(&tv_now);
  10031. schedule_rescan(&tv_now);
  10032. }
  10033. #endif
  10034. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  10035. static
  10036. void *hotplug_thread(__maybe_unused void *p)
  10037. {
  10038. pthread_detach(pthread_self());
  10039. RenameThread("hotplug");
  10040. struct udev * const udev = udev_new();
  10041. if (unlikely(!udev))
  10042. applogfailr(NULL, LOG_ERR, "udev_new");
  10043. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  10044. if (unlikely(!mon))
  10045. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  10046. if (unlikely(udev_monitor_enable_receiving(mon)))
  10047. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  10048. const int epfd = epoll_create(1);
  10049. if (unlikely(epfd == -1))
  10050. applogfailr(NULL, LOG_ERR, "epoll_create");
  10051. {
  10052. const int fd = udev_monitor_get_fd(mon);
  10053. struct epoll_event ev = {
  10054. .events = EPOLLIN | EPOLLPRI,
  10055. .data.fd = fd,
  10056. };
  10057. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  10058. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  10059. }
  10060. struct epoll_event ev;
  10061. int rv;
  10062. bool pending = false;
  10063. while (true)
  10064. {
  10065. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  10066. if (rv == -1)
  10067. {
  10068. if (errno == EAGAIN || errno == EINTR)
  10069. continue;
  10070. break;
  10071. }
  10072. if (!rv)
  10073. {
  10074. hotplug_trigger();
  10075. pending = false;
  10076. continue;
  10077. }
  10078. struct udev_device * const device = udev_monitor_receive_device(mon);
  10079. if (!device)
  10080. continue;
  10081. const char * const action = udev_device_get_action(device);
  10082. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  10083. if (!strcmp(action, "add"))
  10084. pending = true;
  10085. udev_device_unref(device);
  10086. }
  10087. applogfailr(NULL, LOG_ERR, "epoll_wait");
  10088. }
  10089. #elif defined(WIN32)
  10090. static UINT_PTR _hotplug_wintimer_id;
  10091. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  10092. {
  10093. KillTimer(NULL, _hotplug_wintimer_id);
  10094. _hotplug_wintimer_id = 0;
  10095. hotplug_trigger();
  10096. }
  10097. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  10098. {
  10099. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  10100. {
  10101. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  10102. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  10103. }
  10104. return DefWindowProc(hwnd, msg, wParam, lParam);
  10105. }
  10106. static
  10107. void *hotplug_thread(__maybe_unused void *p)
  10108. {
  10109. pthread_detach(pthread_self());
  10110. WNDCLASS DummyWinCls = {
  10111. .lpszClassName = "BFGDummyWinCls",
  10112. .lpfnWndProc = hotplug_win_callback,
  10113. };
  10114. ATOM a = RegisterClass(&DummyWinCls);
  10115. if (unlikely(!a))
  10116. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  10117. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  10118. if (unlikely(!hwnd))
  10119. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  10120. MSG msg;
  10121. while (GetMessage(&msg, NULL, 0, 0))
  10122. {
  10123. TranslateMessage(&msg);
  10124. DispatchMessage(&msg);
  10125. }
  10126. quit(0, "WM_QUIT received");
  10127. return NULL;
  10128. }
  10129. #endif
  10130. #ifdef HAVE_BFG_HOTPLUG
  10131. static
  10132. void hotplug_start()
  10133. {
  10134. pthread_t pth;
  10135. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  10136. applog(LOG_ERR, "Failed to start hotplug thread");
  10137. }
  10138. #endif
  10139. static void probe_pools(void)
  10140. {
  10141. int i;
  10142. for (i = 0; i < total_pools; i++) {
  10143. struct pool *pool = pools[i];
  10144. pool->testing = true;
  10145. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  10146. }
  10147. }
  10148. static void raise_fd_limits(void)
  10149. {
  10150. #ifdef HAVE_SETRLIMIT
  10151. struct rlimit fdlimit;
  10152. rlim_t old_soft_limit;
  10153. char frombuf[0x10] = "unlimited";
  10154. char hardbuf[0x10] = "unlimited";
  10155. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  10156. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  10157. old_soft_limit = fdlimit.rlim_cur;
  10158. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  10159. fdlimit.rlim_cur = FD_SETSIZE;
  10160. else
  10161. fdlimit.rlim_cur = fdlimit.rlim_max;
  10162. if (fdlimit.rlim_max != RLIM_INFINITY)
  10163. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  10164. if (old_soft_limit != RLIM_INFINITY)
  10165. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  10166. if (fdlimit.rlim_cur == old_soft_limit)
  10167. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10168. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  10169. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  10170. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10171. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10172. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  10173. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  10174. #else
  10175. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  10176. #endif
  10177. }
  10178. extern void bfg_init_threadlocal();
  10179. extern void stratumsrv_start();
  10180. int main(int argc, char *argv[])
  10181. {
  10182. struct sigaction handler;
  10183. struct thr_info *thr;
  10184. struct block *block;
  10185. unsigned int k;
  10186. int i;
  10187. int rearrange_pools = 0;
  10188. char *s;
  10189. #ifdef WIN32
  10190. LoadLibrary("backtrace.dll");
  10191. #endif
  10192. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  10193. bfg_init_threadlocal();
  10194. #ifndef HAVE_PTHREAD_CANCEL
  10195. setup_pthread_cancel_workaround();
  10196. #endif
  10197. bfg_init_checksums();
  10198. #ifdef WIN32
  10199. {
  10200. WSADATA wsa;
  10201. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10202. if (i)
  10203. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10204. }
  10205. #endif
  10206. /* This dangerous functions tramples random dynamically allocated
  10207. * variables so do it before anything at all */
  10208. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10209. quit(1, "Failed to curl_global_init");
  10210. initial_args = malloc(sizeof(char *) * (argc + 1));
  10211. for (i = 0; i < argc; i++)
  10212. initial_args[i] = strdup(argv[i]);
  10213. initial_args[argc] = NULL;
  10214. mutex_init(&hash_lock);
  10215. mutex_init(&console_lock);
  10216. cglock_init(&control_lock);
  10217. mutex_init(&stats_lock);
  10218. mutex_init(&sharelog_lock);
  10219. cglock_init(&ch_lock);
  10220. mutex_init(&sshare_lock);
  10221. rwlock_init(&blk_lock);
  10222. rwlock_init(&netacc_lock);
  10223. rwlock_init(&mining_thr_lock);
  10224. rwlock_init(&devices_lock);
  10225. mutex_init(&lp_lock);
  10226. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10227. quit(1, "Failed to pthread_cond_init lp_cond");
  10228. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10229. quit(1, "Failed to pthread_cond_init gws_cond");
  10230. notifier_init(submit_waiting_notifier);
  10231. timer_unset(&tv_rescan);
  10232. notifier_init(rescan_notifier);
  10233. /* Create a unique get work queue */
  10234. getq = tq_new();
  10235. if (!getq)
  10236. quit(1, "Failed to create getq");
  10237. /* We use the getq mutex as the staged lock */
  10238. stgd_lock = &getq->mutex;
  10239. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10240. #ifdef WANT_CPUMINE
  10241. init_max_name_len();
  10242. #endif
  10243. handler.sa_handler = &sighandler;
  10244. handler.sa_flags = 0;
  10245. sigemptyset(&handler.sa_mask);
  10246. #ifdef HAVE_PTHREAD_CANCEL
  10247. sigaction(SIGTERM, &handler, &termhandler);
  10248. #else
  10249. // Need to let pthread_cancel emulation handle SIGTERM first
  10250. termhandler = pcwm_orig_term_handler;
  10251. pcwm_orig_term_handler = handler;
  10252. #endif
  10253. sigaction(SIGINT, &handler, &inthandler);
  10254. #ifndef WIN32
  10255. signal(SIGPIPE, SIG_IGN);
  10256. #else
  10257. timeBeginPeriod(1);
  10258. #endif
  10259. opt_kernel_path = CGMINER_PREFIX;
  10260. cgminer_path = alloca(PATH_MAX);
  10261. s = strdup(argv[0]);
  10262. strcpy(cgminer_path, dirname(s));
  10263. free(s);
  10264. strcat(cgminer_path, "/");
  10265. #if defined(WANT_CPUMINE) && defined(WIN32)
  10266. {
  10267. char buf[32];
  10268. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10269. if (gev > 0 && gev < sizeof(buf))
  10270. {
  10271. setup_benchmark_pool();
  10272. double rate = bench_algo_stage3(atoi(buf));
  10273. // Write result to shared memory for parent
  10274. char unique_name[64];
  10275. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10276. {
  10277. HANDLE map_handle = CreateFileMapping(
  10278. INVALID_HANDLE_VALUE, // use paging file
  10279. NULL, // default security attributes
  10280. PAGE_READWRITE, // read/write access
  10281. 0, // size: high 32-bits
  10282. 4096, // size: low 32-bits
  10283. unique_name // name of map object
  10284. );
  10285. if (NULL != map_handle) {
  10286. void *shared_mem = MapViewOfFile(
  10287. map_handle, // object to map view of
  10288. FILE_MAP_WRITE, // read/write access
  10289. 0, // high offset: map from
  10290. 0, // low offset: beginning
  10291. 0 // default: map entire file
  10292. );
  10293. if (NULL != shared_mem)
  10294. CopyMemory(shared_mem, &rate, sizeof(rate));
  10295. (void)UnmapViewOfFile(shared_mem);
  10296. }
  10297. (void)CloseHandle(map_handle);
  10298. }
  10299. exit(0);
  10300. }
  10301. }
  10302. #endif
  10303. devcursor = 8;
  10304. logstart = devcursor;
  10305. logcursor = logstart;
  10306. block = calloc(sizeof(struct block), 1);
  10307. if (unlikely(!block))
  10308. quit (1, "main OOM");
  10309. for (i = 0; i < 36; i++)
  10310. strcat(block->hash, "0");
  10311. HASH_ADD_STR(blocks, hash, block);
  10312. strcpy(current_block, block->hash);
  10313. mutex_init(&submitting_lock);
  10314. #ifdef HAVE_OPENCL
  10315. opencl_early_init();
  10316. #endif
  10317. schedstart.tm.tm_sec = 1;
  10318. schedstop .tm.tm_sec = 1;
  10319. opt_register_table(opt_early_table, NULL);
  10320. opt_register_table(opt_config_table, NULL);
  10321. opt_register_table(opt_cmdline_table, NULL);
  10322. opt_early_parse(argc, argv, applog_and_exit);
  10323. if (!config_loaded)
  10324. {
  10325. load_default_config();
  10326. rearrange_pools = total_pools;
  10327. }
  10328. opt_free_table();
  10329. /* parse command line */
  10330. opt_register_table(opt_config_table,
  10331. "Options for both config file and command line");
  10332. opt_register_table(opt_cmdline_table,
  10333. "Options for command line only");
  10334. opt_parse(&argc, argv, applog_and_exit);
  10335. if (argc != 1)
  10336. quit(1, "Unexpected extra commandline arguments");
  10337. if (rearrange_pools && rearrange_pools < total_pools)
  10338. {
  10339. // Prioritise commandline pools before default-config pools
  10340. for (i = 0; i < rearrange_pools; ++i)
  10341. pools[i]->prio += rearrange_pools;
  10342. for ( ; i < total_pools; ++i)
  10343. pools[i]->prio -= rearrange_pools;
  10344. }
  10345. #ifndef HAVE_PTHREAD_CANCEL
  10346. // Can't do this any earlier, or config isn't loaded
  10347. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10348. #endif
  10349. #ifdef HAVE_PWD_H
  10350. struct passwd *user_info = NULL;
  10351. if (opt_setuid != NULL) {
  10352. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10353. quit(1, "Unable to find setuid user information");
  10354. }
  10355. }
  10356. #endif
  10357. #ifdef HAVE_CHROOT
  10358. if (chroot_dir != NULL) {
  10359. #ifdef HAVE_PWD_H
  10360. if (user_info == NULL && getuid() == 0) {
  10361. applog(LOG_WARNING, "Running as root inside chroot");
  10362. }
  10363. #endif
  10364. if (chroot(chroot_dir) != 0) {
  10365. quit(1, "Unable to chroot");
  10366. }
  10367. if (chdir("/"))
  10368. quit(1, "Unable to chdir to chroot");
  10369. }
  10370. #endif
  10371. #ifdef HAVE_PWD_H
  10372. if (user_info != NULL) {
  10373. if (setgid((*user_info).pw_gid) != 0)
  10374. quit(1, "Unable to setgid");
  10375. if (setuid((*user_info).pw_uid) != 0)
  10376. quit(1, "Unable to setuid");
  10377. }
  10378. #endif
  10379. raise_fd_limits();
  10380. if (opt_benchmark) {
  10381. while (total_pools)
  10382. remove_pool(pools[0]);
  10383. setup_benchmark_pool();
  10384. }
  10385. if (opt_unittest) {
  10386. test_cgpu_match();
  10387. test_intrange();
  10388. test_decimal_width();
  10389. test_domain_funcs();
  10390. test_target();
  10391. utf8_test();
  10392. }
  10393. #ifdef HAVE_CURSES
  10394. if (opt_realquiet || opt_display_devs)
  10395. use_curses = false;
  10396. setlocale(LC_ALL, "C");
  10397. if (use_curses)
  10398. enable_curses();
  10399. #endif
  10400. #ifdef HAVE_LIBUSB
  10401. int err = libusb_init(NULL);
  10402. if (err)
  10403. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10404. else
  10405. have_libusb = true;
  10406. #endif
  10407. applog(LOG_WARNING, "Started %s", packagename);
  10408. if (cnfbuf) {
  10409. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10410. switch (fileconf_load) {
  10411. case 0:
  10412. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10413. applog(LOG_WARNING, "Configuration file could not be used.");
  10414. break;
  10415. case -1:
  10416. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10417. if (use_curses)
  10418. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10419. break;
  10420. default:
  10421. break;
  10422. }
  10423. free(cnfbuf);
  10424. cnfbuf = NULL;
  10425. }
  10426. i = strlen(opt_kernel_path) + 2;
  10427. char __kernel_path[i];
  10428. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10429. opt_kernel_path = __kernel_path;
  10430. if (want_per_device_stats)
  10431. opt_log_output = true;
  10432. #ifdef WANT_CPUMINE
  10433. #ifdef USE_SCRYPT
  10434. if (opt_scrypt)
  10435. set_scrypt_algo(&opt_algo);
  10436. #endif
  10437. #endif
  10438. bfg_devapi_init();
  10439. drv_detect_all();
  10440. total_devices = total_devices_new;
  10441. devices = devices_new;
  10442. total_devices_new = 0;
  10443. devices_new = NULL;
  10444. if (opt_display_devs) {
  10445. int devcount = 0;
  10446. applog(LOG_ERR, "Devices detected:");
  10447. for (i = 0; i < total_devices; ++i) {
  10448. struct cgpu_info *cgpu = devices[i];
  10449. char buf[0x100];
  10450. if (cgpu->device != cgpu)
  10451. continue;
  10452. if (cgpu->name)
  10453. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10454. else
  10455. if (cgpu->dev_manufacturer)
  10456. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10457. else
  10458. if (cgpu->dev_product)
  10459. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10460. else
  10461. strcpy(buf, " Device");
  10462. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10463. if (cgpu->dev_serial)
  10464. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10465. if (cgpu->device_path)
  10466. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10467. tailsprintf(buf, sizeof(buf), ")");
  10468. _applog(LOG_NOTICE, buf);
  10469. ++devcount;
  10470. }
  10471. quit(0, "%d devices listed", devcount);
  10472. }
  10473. mining_threads = 0;
  10474. for (i = 0; i < total_devices; ++i)
  10475. register_device(devices[i]);
  10476. if (!total_devices) {
  10477. applog(LOG_WARNING, "No devices detected!");
  10478. if (use_curses)
  10479. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10480. else
  10481. applog(LOG_WARNING, "Waiting for devices");
  10482. }
  10483. if (opt_quit_summary == BQS_DEFAULT)
  10484. {
  10485. if (total_devices < 25)
  10486. opt_quit_summary = BQS_PROCS;
  10487. else
  10488. opt_quit_summary = BQS_DEVS;
  10489. }
  10490. #ifdef HAVE_CURSES
  10491. switch_logsize();
  10492. #endif
  10493. if (!total_pools) {
  10494. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10495. #ifdef HAVE_CURSES
  10496. if (!use_curses || !input_pool(false))
  10497. #endif
  10498. quit(1, "Pool setup failed");
  10499. }
  10500. for (i = 0; i < total_pools; i++) {
  10501. struct pool *pool = pools[i];
  10502. size_t siz;
  10503. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10504. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10505. if (!pool->rpc_url)
  10506. quit(1, "No URI supplied for pool %u", i);
  10507. if (!pool->rpc_userpass) {
  10508. if (!pool->rpc_user || !pool->rpc_pass)
  10509. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10510. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10511. pool->rpc_userpass = malloc(siz);
  10512. if (!pool->rpc_userpass)
  10513. quit(1, "Failed to malloc userpass");
  10514. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10515. }
  10516. }
  10517. /* Set the currentpool to pool with priority 0 */
  10518. validate_pool_priorities();
  10519. for (i = 0; i < total_pools; i++) {
  10520. struct pool *pool = pools[i];
  10521. if (!pool->prio)
  10522. currentpool = pool;
  10523. }
  10524. #ifdef HAVE_SYSLOG_H
  10525. if (use_syslog)
  10526. openlog(PACKAGE, LOG_PID, LOG_USER);
  10527. #endif
  10528. #if defined(unix) || defined(__APPLE__)
  10529. if (opt_stderr_cmd)
  10530. fork_monitor();
  10531. #endif // defined(unix)
  10532. mining_thr = calloc(mining_threads, sizeof(thr));
  10533. if (!mining_thr)
  10534. quit(1, "Failed to calloc mining_thr");
  10535. for (i = 0; i < mining_threads; i++) {
  10536. mining_thr[i] = calloc(1, sizeof(*thr));
  10537. if (!mining_thr[i])
  10538. quit(1, "Failed to calloc mining_thr[%d]", i);
  10539. }
  10540. total_control_threads = 6;
  10541. control_thr = calloc(total_control_threads, sizeof(*thr));
  10542. if (!control_thr)
  10543. quit(1, "Failed to calloc control_thr");
  10544. if (opt_benchmark)
  10545. goto begin_bench;
  10546. for (i = 0; i < total_pools; i++) {
  10547. struct pool *pool = pools[i];
  10548. enable_pool(pool);
  10549. pool->idle = true;
  10550. }
  10551. applog(LOG_NOTICE, "Probing for an alive pool");
  10552. do {
  10553. bool still_testing;
  10554. int i;
  10555. /* Look for at least one active pool before starting */
  10556. probe_pools();
  10557. do {
  10558. sleep(1);
  10559. if (pools_active)
  10560. break;
  10561. still_testing = false;
  10562. for (int i = 0; i < total_pools; ++i)
  10563. if (pools[i]->testing)
  10564. still_testing = true;
  10565. } while (still_testing);
  10566. if (!pools_active) {
  10567. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10568. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10569. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10570. for (i = 0; i < total_pools; i++) {
  10571. struct pool *pool;
  10572. pool = pools[i];
  10573. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10574. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10575. }
  10576. #ifdef HAVE_CURSES
  10577. if (use_curses) {
  10578. halfdelay(150);
  10579. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10580. if (getch() != ERR)
  10581. quit(0, "No servers could be used! Exiting.");
  10582. cbreak();
  10583. } else
  10584. #endif
  10585. quit(0, "No servers could be used! Exiting.");
  10586. }
  10587. } while (!pools_active);
  10588. #ifdef USE_SCRYPT
  10589. if (detect_algo == 1 && !opt_scrypt) {
  10590. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10591. opt_scrypt = true;
  10592. }
  10593. #endif
  10594. detect_algo = 0;
  10595. begin_bench:
  10596. total_mhashes_done = 0;
  10597. for (i = 0; i < total_devices; i++) {
  10598. struct cgpu_info *cgpu = devices[i];
  10599. cgpu->rolling = cgpu->total_mhashes = 0;
  10600. }
  10601. cgtime(&total_tv_start);
  10602. cgtime(&total_tv_end);
  10603. miner_started = total_tv_start;
  10604. time_t miner_start_ts = time(NULL);
  10605. if (schedstart.tm.tm_sec)
  10606. localtime_r(&miner_start_ts, &schedstart.tm);
  10607. if (schedstop.tm.tm_sec)
  10608. localtime_r(&miner_start_ts, &schedstop .tm);
  10609. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10610. // Initialise processors and threads
  10611. k = 0;
  10612. for (i = 0; i < total_devices; ++i) {
  10613. struct cgpu_info *cgpu = devices[i];
  10614. allocate_cgpu(cgpu, &k);
  10615. }
  10616. // Start threads
  10617. for (i = 0; i < total_devices; ++i) {
  10618. struct cgpu_info *cgpu = devices[i];
  10619. start_cgpu(cgpu);
  10620. }
  10621. #ifdef HAVE_OPENCL
  10622. for (i = 0; i < nDevs; i++)
  10623. pause_dynamic_threads(i);
  10624. #endif
  10625. #ifdef WANT_CPUMINE
  10626. if (opt_n_threads > 0)
  10627. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10628. opt_n_threads, algo_names[opt_algo]);
  10629. #endif
  10630. cgtime(&total_tv_start);
  10631. cgtime(&total_tv_end);
  10632. if (!opt_benchmark)
  10633. {
  10634. pthread_t submit_thread;
  10635. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10636. quit(1, "submit_work thread create failed");
  10637. }
  10638. watchpool_thr_id = 1;
  10639. thr = &control_thr[watchpool_thr_id];
  10640. /* start watchpool thread */
  10641. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10642. quit(1, "watchpool thread create failed");
  10643. pthread_detach(thr->pth);
  10644. watchdog_thr_id = 2;
  10645. thr = &control_thr[watchdog_thr_id];
  10646. /* start watchdog thread */
  10647. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10648. quit(1, "watchdog thread create failed");
  10649. pthread_detach(thr->pth);
  10650. #ifdef HAVE_OPENCL
  10651. /* Create reinit gpu thread */
  10652. gpur_thr_id = 3;
  10653. thr = &control_thr[gpur_thr_id];
  10654. thr->q = tq_new();
  10655. if (!thr->q)
  10656. quit(1, "tq_new failed for gpur_thr_id");
  10657. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10658. quit(1, "reinit_gpu thread create failed");
  10659. #endif
  10660. /* Create API socket thread */
  10661. api_thr_id = 4;
  10662. thr = &control_thr[api_thr_id];
  10663. if (thr_info_create(thr, NULL, api_thread, thr))
  10664. quit(1, "API thread create failed");
  10665. #ifdef USE_LIBMICROHTTPD
  10666. if (httpsrv_port != -1)
  10667. httpsrv_start(httpsrv_port);
  10668. #endif
  10669. #ifdef USE_LIBEVENT
  10670. if (stratumsrv_port != -1)
  10671. stratumsrv_start();
  10672. #endif
  10673. #ifdef HAVE_BFG_HOTPLUG
  10674. if (opt_hotplug && !opt_scrypt)
  10675. hotplug_start();
  10676. #endif
  10677. #ifdef HAVE_CURSES
  10678. /* Create curses input thread for keyboard input. Create this last so
  10679. * that we know all threads are created since this can call kill_work
  10680. * to try and shut down ll previous threads. */
  10681. input_thr_id = 5;
  10682. thr = &control_thr[input_thr_id];
  10683. if (thr_info_create(thr, NULL, input_thread, thr))
  10684. quit(1, "input thread create failed");
  10685. pthread_detach(thr->pth);
  10686. #endif
  10687. /* Just to be sure */
  10688. if (total_control_threads != 6)
  10689. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10690. /* Once everything is set up, main() becomes the getwork scheduler */
  10691. while (42) {
  10692. int ts, max_staged = opt_queue;
  10693. struct pool *pool, *cp;
  10694. bool lagging = false;
  10695. struct curl_ent *ce;
  10696. struct work *work;
  10697. cp = current_pool();
  10698. // Generally, each processor needs a new work, and all at once during work restarts
  10699. max_staged += mining_threads;
  10700. mutex_lock(stgd_lock);
  10701. ts = __total_staged();
  10702. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10703. lagging = true;
  10704. /* Wait until hash_pop tells us we need to create more work */
  10705. if (ts > max_staged) {
  10706. staged_full = true;
  10707. pthread_cond_wait(&gws_cond, stgd_lock);
  10708. ts = __total_staged();
  10709. }
  10710. mutex_unlock(stgd_lock);
  10711. if (ts > max_staged)
  10712. continue;
  10713. work = make_work();
  10714. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10715. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10716. cp->getfail_occasions++;
  10717. total_go++;
  10718. }
  10719. pool = select_pool(lagging);
  10720. retry:
  10721. if (pool->has_stratum) {
  10722. while (!pool->stratum_active || !pool->stratum_notify) {
  10723. struct pool *altpool = select_pool(true);
  10724. if (altpool == pool && pool->has_stratum)
  10725. cgsleep_ms(5000);
  10726. pool = altpool;
  10727. goto retry;
  10728. }
  10729. gen_stratum_work(pool, work);
  10730. applog(LOG_DEBUG, "Generated stratum work");
  10731. stage_work(work);
  10732. continue;
  10733. }
  10734. if (pool->last_work_copy) {
  10735. mutex_lock(&pool->last_work_lock);
  10736. struct work *last_work = pool->last_work_copy;
  10737. if (!last_work)
  10738. {}
  10739. else
  10740. if (can_roll(last_work) && should_roll(last_work)) {
  10741. struct timeval tv_now;
  10742. cgtime(&tv_now);
  10743. free_work(work);
  10744. work = make_clone(pool->last_work_copy);
  10745. mutex_unlock(&pool->last_work_lock);
  10746. roll_work(work);
  10747. applog(LOG_DEBUG, "Generated work from latest GBT job in get_work_thread with %d seconds left", (int)blkmk_time_left(work->tr->tmpl, tv_now.tv_sec));
  10748. stage_work(work);
  10749. continue;
  10750. } else if (last_work->tr && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tr->tmpl) > (unsigned long)mining_threads) {
  10751. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10752. } else {
  10753. free_work(last_work);
  10754. pool->last_work_copy = NULL;
  10755. }
  10756. mutex_unlock(&pool->last_work_lock);
  10757. }
  10758. if (clone_available()) {
  10759. applog(LOG_DEBUG, "Cloned getwork work");
  10760. free_work(work);
  10761. continue;
  10762. }
  10763. if (opt_benchmark) {
  10764. get_benchmark_work(work);
  10765. applog(LOG_DEBUG, "Generated benchmark work");
  10766. stage_work(work);
  10767. continue;
  10768. }
  10769. work->pool = pool;
  10770. ce = pop_curl_entry3(pool, 2);
  10771. /* obtain new work from bitcoin via JSON-RPC */
  10772. if (!get_upstream_work(work, ce->curl)) {
  10773. struct pool *next_pool;
  10774. /* Make sure the pool just hasn't stopped serving
  10775. * requests but is up as we'll keep hammering it */
  10776. push_curl_entry(ce, pool);
  10777. ++pool->seq_getfails;
  10778. pool_died(pool);
  10779. next_pool = select_pool(!opt_fail_only);
  10780. if (pool == next_pool) {
  10781. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10782. cgsleep_ms(5000);
  10783. } else {
  10784. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10785. pool = next_pool;
  10786. }
  10787. goto retry;
  10788. }
  10789. if (ts >= max_staged)
  10790. pool_tclear(pool, &pool->lagging);
  10791. if (pool_tclear(pool, &pool->idle))
  10792. pool_resus(pool);
  10793. applog(LOG_DEBUG, "Generated getwork work");
  10794. stage_work(work);
  10795. push_curl_entry(ce, pool);
  10796. }
  10797. return 0;
  10798. }