miner.c 296 KB

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