miner.c 296 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561
  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. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3137. {
  3138. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3139. if (iswprint(REPLACEMENT_CHAR))
  3140. w = REPLACEMENT_CHAR;
  3141. else
  3142. #endif
  3143. w = '?';
  3144. }
  3145. {
  3146. #ifdef USE_UNICODE
  3147. wchar_t wbuf[0x10];
  3148. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3149. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3150. waddnwstr(win, wbuf, wbuflen);
  3151. #else
  3152. wprintw(win, "%lc", (wint_t)w);
  3153. #endif
  3154. }
  3155. }
  3156. }
  3157. }
  3158. static inline
  3159. void bfg_hline(WINDOW *win, int y)
  3160. {
  3161. #ifdef USE_UNICODE
  3162. if (use_unicode)
  3163. mvwhline_set(win, y, 0, WACS_HLINE, 80);
  3164. else
  3165. #endif
  3166. mvwhline(win, y, 0, '-', 80);
  3167. }
  3168. static int menu_attr = A_REVERSE;
  3169. #define CURBUFSIZ 256
  3170. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3171. char tmp42[CURBUFSIZ]; \
  3172. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3173. wmove(win, y, x); \
  3174. bfg_waddstr(win, tmp42); \
  3175. } while (0)
  3176. #define cg_wprintw(win, fmt, ...) do { \
  3177. char tmp42[CURBUFSIZ]; \
  3178. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3179. bfg_waddstr(win, tmp42); \
  3180. } while (0)
  3181. /* Must be called with curses mutex lock held and curses_active */
  3182. static void curses_print_status(const int ts)
  3183. {
  3184. struct pool *pool = currentpool;
  3185. struct timeval now, tv;
  3186. float efficiency;
  3187. double income;
  3188. int logdiv;
  3189. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3190. wattron(statuswin, A_BOLD);
  3191. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3192. timer_set_now(&now);
  3193. {
  3194. unsigned int days, hours;
  3195. div_t d;
  3196. timersub(&now, &miner_started, &tv);
  3197. d = div(tv.tv_sec, 86400);
  3198. days = d.quot;
  3199. d = div(d.rem, 3600);
  3200. hours = d.quot;
  3201. d = div(d.rem, 60);
  3202. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3203. , days
  3204. , (days == 1) ? ' ' : 's'
  3205. , hours
  3206. , d.quot
  3207. , d.rem
  3208. );
  3209. }
  3210. wattroff(statuswin, A_BOLD);
  3211. wattron(statuswin, menu_attr);
  3212. cg_mvwprintw(statuswin, 1, 0, " [M]anage devices [P]ool management [S]ettings [D]isplay options [H]elp [Q]uit ");
  3213. wattroff(statuswin, menu_attr);
  3214. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && total_pools > 1) {
  3215. cg_mvwprintw(statuswin, 2, 0, " Connected to multiple pools with%s block change notify",
  3216. have_longpoll ? "": "out");
  3217. } else if (pool->has_stratum) {
  3218. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with stratum as user %s",
  3219. pool->sockaddr_url, pool->diff, pool->rpc_user);
  3220. } else {
  3221. cg_mvwprintw(statuswin, 2, 0, " Connected to %s diff %s with%s LP as user %s",
  3222. pool->sockaddr_url, pool->diff, have_longpoll ? "": "out", pool->rpc_user);
  3223. }
  3224. wclrtoeol(statuswin);
  3225. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3226. current_hash, block_diff, net_hashrate, blocktime);
  3227. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3228. char bwstr[12], incomestr[13];
  3229. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3230. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3231. ts,
  3232. total_go + total_ro,
  3233. new_blocks,
  3234. total_submitting,
  3235. multi_format_unit2(bwstr, sizeof(bwstr),
  3236. false, "B/s", H2B_SHORT, "/", 2,
  3237. (float)(total_bytes_rcvd / total_secs),
  3238. (float)(total_bytes_sent / total_secs)),
  3239. efficiency,
  3240. incomestr,
  3241. best_share);
  3242. wclrtoeol(statuswin);
  3243. mvwaddstr(statuswin, 5, 0, " ");
  3244. bfg_waddstr(statuswin, statusline);
  3245. wclrtoeol(statuswin);
  3246. logdiv = statusy - 1;
  3247. bfg_hline(statuswin, 6);
  3248. bfg_hline(statuswin, logdiv);
  3249. #ifdef USE_UNICODE
  3250. if (use_unicode)
  3251. {
  3252. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3253. if (opt_show_procs && !opt_compact)
  3254. ++offset; // proc letter
  3255. if (have_unicode_degrees)
  3256. ++offset; // degrees symbol
  3257. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3258. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3259. offset += 24; // hashrates etc
  3260. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3261. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3262. }
  3263. #endif
  3264. }
  3265. static void adj_width(int var, int *length)
  3266. {
  3267. if ((int)(log10(var) + 1) > *length)
  3268. (*length)++;
  3269. }
  3270. static int dev_width;
  3271. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3272. {
  3273. char logline[256];
  3274. int ypos;
  3275. if (opt_compact)
  3276. return;
  3277. /* Check this isn't out of the window size */
  3278. if (opt_show_procs)
  3279. ypos = cgpu->cgminer_id;
  3280. else
  3281. {
  3282. if (cgpu->proc_id)
  3283. return;
  3284. ypos = cgpu->device_line_id;
  3285. }
  3286. ypos += devsummaryYOffset;
  3287. if (ypos < 0)
  3288. return;
  3289. ypos += devcursor - 1;
  3290. if (ypos >= statusy - 1)
  3291. return;
  3292. if (wmove(statuswin, ypos, 0) == ERR)
  3293. return;
  3294. get_statline2(logline, sizeof(logline), cgpu, true);
  3295. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3296. wattron(statuswin, A_REVERSE);
  3297. bfg_waddstr(statuswin, logline);
  3298. wattroff(statuswin, A_REVERSE);
  3299. wclrtoeol(statuswin);
  3300. }
  3301. static
  3302. void refresh_devstatus() {
  3303. if (curses_active_locked()) {
  3304. int i;
  3305. for (i = 0; i < total_devices; i++)
  3306. curses_print_devstatus(get_devices(i));
  3307. touchwin(statuswin);
  3308. wrefresh(statuswin);
  3309. unlock_curses();
  3310. }
  3311. }
  3312. #endif
  3313. static void print_status(int thr_id)
  3314. {
  3315. if (!curses_active)
  3316. text_print_status(thr_id);
  3317. }
  3318. #ifdef HAVE_CURSES
  3319. /* Check for window resize. Called with curses mutex locked */
  3320. static inline void change_logwinsize(void)
  3321. {
  3322. int x, y, logx, logy;
  3323. getmaxyx(mainwin, y, x);
  3324. if (x < 80 || y < 25)
  3325. return;
  3326. if (y > statusy + 2 && statusy < logstart) {
  3327. if (y - 2 < logstart)
  3328. statusy = y - 2;
  3329. else
  3330. statusy = logstart;
  3331. logcursor = statusy;
  3332. mvwin(logwin, logcursor, 0);
  3333. bfg_wresize(statuswin, statusy, x);
  3334. }
  3335. y -= logcursor;
  3336. getmaxyx(logwin, logy, logx);
  3337. /* Detect screen size change */
  3338. if (x != logx || y != logy)
  3339. bfg_wresize(logwin, y, x);
  3340. }
  3341. static void check_winsizes(void)
  3342. {
  3343. if (!use_curses)
  3344. return;
  3345. if (curses_active_locked()) {
  3346. int y, x;
  3347. erase();
  3348. x = getmaxx(statuswin);
  3349. if (logstart > LINES - 2)
  3350. statusy = LINES - 2;
  3351. else
  3352. statusy = logstart;
  3353. logcursor = statusy;
  3354. bfg_wresize(statuswin, statusy, x);
  3355. getmaxyx(mainwin, y, x);
  3356. y -= logcursor;
  3357. bfg_wresize(logwin, y, x);
  3358. mvwin(logwin, logcursor, 0);
  3359. unlock_curses();
  3360. }
  3361. }
  3362. static int device_line_id_count;
  3363. static void switch_logsize(void)
  3364. {
  3365. if (curses_active_locked()) {
  3366. if (opt_compact) {
  3367. logstart = devcursor - 1;
  3368. logcursor = logstart + 1;
  3369. } else {
  3370. total_lines = (opt_show_procs ? total_devices : device_line_id_count);
  3371. logstart = devcursor + total_lines;
  3372. logcursor = logstart;
  3373. }
  3374. unlock_curses();
  3375. }
  3376. check_winsizes();
  3377. }
  3378. /* For mandatory printing when mutex is already locked */
  3379. void _wlog(const char *str)
  3380. {
  3381. static bool newline;
  3382. size_t end = strlen(str) - 1;
  3383. if (newline)
  3384. bfg_waddstr(logwin, "\n");
  3385. if (str[end] == '\n')
  3386. {
  3387. char *s;
  3388. newline = true;
  3389. s = alloca(end);
  3390. memcpy(s, str, end);
  3391. s[end] = '\0';
  3392. str = s;
  3393. }
  3394. else
  3395. newline = false;
  3396. bfg_waddstr(logwin, str);
  3397. }
  3398. /* Mandatory printing */
  3399. void _wlogprint(const char *str)
  3400. {
  3401. if (curses_active_locked()) {
  3402. _wlog(str);
  3403. unlock_curses();
  3404. }
  3405. }
  3406. #endif
  3407. #ifdef HAVE_CURSES
  3408. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3409. {
  3410. bool high_prio;
  3411. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3412. if (curses_active)
  3413. {
  3414. if (!opt_loginput || high_prio) {
  3415. wlog(" %s %s\n", datetime, str);
  3416. if (high_prio) {
  3417. touchwin(logwin);
  3418. wrefresh(logwin);
  3419. }
  3420. }
  3421. return true;
  3422. }
  3423. return false;
  3424. }
  3425. void clear_logwin(void)
  3426. {
  3427. if (curses_active_locked()) {
  3428. wclear(logwin);
  3429. unlock_curses();
  3430. }
  3431. }
  3432. void logwin_update(void)
  3433. {
  3434. if (curses_active_locked()) {
  3435. touchwin(logwin);
  3436. wrefresh(logwin);
  3437. unlock_curses();
  3438. }
  3439. }
  3440. #endif
  3441. static void enable_pool(struct pool *pool)
  3442. {
  3443. if (pool->enabled != POOL_ENABLED) {
  3444. enabled_pools++;
  3445. pool->enabled = POOL_ENABLED;
  3446. }
  3447. }
  3448. #ifdef HAVE_CURSES
  3449. static void disable_pool(struct pool *pool)
  3450. {
  3451. if (pool->enabled == POOL_ENABLED)
  3452. enabled_pools--;
  3453. pool->enabled = POOL_DISABLED;
  3454. }
  3455. #endif
  3456. static void reject_pool(struct pool *pool)
  3457. {
  3458. if (pool->enabled == POOL_ENABLED)
  3459. enabled_pools--;
  3460. pool->enabled = POOL_REJECTING;
  3461. }
  3462. static uint64_t share_diff(const struct work *);
  3463. static
  3464. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3465. struct cgpu_info *cgpu;
  3466. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3467. char shrdiffdisp[16];
  3468. int tgtdiff = floor(work->work_difficulty);
  3469. char tgtdiffdisp[16];
  3470. char where[20];
  3471. cgpu = get_thr_cgpu(work->thr_id);
  3472. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3473. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3474. if (total_pools > 1)
  3475. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3476. else
  3477. where[0] = '\0';
  3478. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3479. disp,
  3480. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3481. cgpu->proc_repr,
  3482. where,
  3483. shrdiffdisp, tgtdiffdisp,
  3484. reason,
  3485. resubmit ? "(resubmit)" : "",
  3486. worktime
  3487. );
  3488. }
  3489. static bool test_work_current(struct work *);
  3490. static void _submit_work_async(struct work *);
  3491. static
  3492. void maybe_local_submit(const struct work *work)
  3493. {
  3494. #if BLKMAKER_VERSION > 3
  3495. if (unlikely(work->block && work->tmpl))
  3496. {
  3497. // This is a block with a full template (GBT)
  3498. // Regardless of the result, submit to local bitcoind(s) as well
  3499. struct work *work_cp;
  3500. char *p;
  3501. for (int i = 0; i < total_pools; ++i)
  3502. {
  3503. p = strchr(pools[i]->rpc_url, '#');
  3504. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3505. continue;
  3506. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3507. work_cp = copy_work(work);
  3508. work_cp->pool = pools[i];
  3509. work_cp->do_foreign_submit = true;
  3510. _submit_work_async(work_cp);
  3511. }
  3512. }
  3513. #endif
  3514. }
  3515. /* Theoretically threads could race when modifying accepted and
  3516. * rejected values but the chance of two submits completing at the
  3517. * same time is zero so there is no point adding extra locking */
  3518. static void
  3519. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3520. /*char *hashshow,*/ bool resubmit, char *worktime)
  3521. {
  3522. struct pool *pool = work->pool;
  3523. struct cgpu_info *cgpu;
  3524. cgpu = get_thr_cgpu(work->thr_id);
  3525. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3526. mutex_lock(&stats_lock);
  3527. cgpu->accepted++;
  3528. total_accepted++;
  3529. pool->accepted++;
  3530. cgpu->diff_accepted += work->work_difficulty;
  3531. total_diff_accepted += work->work_difficulty;
  3532. pool->diff_accepted += work->work_difficulty;
  3533. mutex_unlock(&stats_lock);
  3534. pool->seq_rejects = 0;
  3535. cgpu->last_share_pool = pool->pool_no;
  3536. cgpu->last_share_pool_time = time(NULL);
  3537. cgpu->last_share_diff = work->work_difficulty;
  3538. pool->last_share_time = cgpu->last_share_pool_time;
  3539. pool->last_share_diff = work->work_difficulty;
  3540. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3541. if (!QUIET) {
  3542. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3543. }
  3544. sharelog("accept", work);
  3545. if (opt_shares && total_diff_accepted >= opt_shares) {
  3546. applog(LOG_WARNING, "Successfully mined %d accepted shares as requested and exiting.", opt_shares);
  3547. kill_work();
  3548. return;
  3549. }
  3550. /* Detect if a pool that has been temporarily disabled for
  3551. * continually rejecting shares has started accepting shares.
  3552. * This will only happen with the work returned from a
  3553. * longpoll */
  3554. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3555. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3556. enable_pool(pool);
  3557. switch_pools(NULL);
  3558. }
  3559. if (unlikely(work->block)) {
  3560. // Force moving on to this new block :)
  3561. struct work fakework;
  3562. memset(&fakework, 0, sizeof(fakework));
  3563. fakework.pool = work->pool;
  3564. // Copy block version, bits, and time from share
  3565. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3566. memcpy(&fakework.data[68], &work->data[68], 8);
  3567. // Set prevblock to winning hash (swap32'd)
  3568. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3569. test_work_current(&fakework);
  3570. }
  3571. } else {
  3572. mutex_lock(&stats_lock);
  3573. cgpu->rejected++;
  3574. total_rejected++;
  3575. pool->rejected++;
  3576. cgpu->diff_rejected += work->work_difficulty;
  3577. total_diff_rejected += work->work_difficulty;
  3578. pool->diff_rejected += work->work_difficulty;
  3579. pool->seq_rejects++;
  3580. mutex_unlock(&stats_lock);
  3581. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3582. if (!QUIET) {
  3583. char where[20];
  3584. char disposition[36] = "reject";
  3585. char reason[32];
  3586. strcpy(reason, "");
  3587. if (total_pools > 1)
  3588. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3589. else
  3590. strcpy(where, "");
  3591. if (!json_is_string(res))
  3592. res = json_object_get(val, "reject-reason");
  3593. if (res) {
  3594. const char *reasontmp = json_string_value(res);
  3595. size_t reasonLen = strlen(reasontmp);
  3596. if (reasonLen > 28)
  3597. reasonLen = 28;
  3598. reason[0] = ' '; reason[1] = '(';
  3599. memcpy(2 + reason, reasontmp, reasonLen);
  3600. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3601. memcpy(disposition + 7, reasontmp, reasonLen);
  3602. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3603. } else if (work->stratum && err && json_is_array(err)) {
  3604. json_t *reason_val = json_array_get(err, 1);
  3605. char *reason_str;
  3606. if (reason_val && json_is_string(reason_val)) {
  3607. reason_str = (char *)json_string_value(reason_val);
  3608. snprintf(reason, 31, " (%s)", reason_str);
  3609. }
  3610. }
  3611. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3612. sharelog(disposition, work);
  3613. }
  3614. /* Once we have more than a nominal amount of sequential rejects,
  3615. * at least 10 and more than 3 mins at the current utility,
  3616. * disable the pool because some pool error is likely to have
  3617. * ensued. Do not do this if we know the share just happened to
  3618. * be stale due to networking delays.
  3619. */
  3620. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3621. double utility = total_accepted / total_secs * 60;
  3622. if (pool->seq_rejects > utility * 3) {
  3623. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3624. pool->pool_no, pool->seq_rejects);
  3625. reject_pool(pool);
  3626. if (pool == current_pool())
  3627. switch_pools(NULL);
  3628. pool->seq_rejects = 0;
  3629. }
  3630. }
  3631. }
  3632. maybe_local_submit(work);
  3633. }
  3634. static char *submit_upstream_work_request(struct work *work)
  3635. {
  3636. char *hexstr = NULL;
  3637. char *s, *sd;
  3638. struct pool *pool = work->pool;
  3639. if (work->tmpl) {
  3640. json_t *req;
  3641. unsigned char data[80];
  3642. swap32yes(data, work->data, 80 / 4);
  3643. #if BLKMAKER_VERSION > 3
  3644. if (work->do_foreign_submit)
  3645. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3646. else
  3647. #endif
  3648. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3649. s = json_dumps(req, 0);
  3650. json_decref(req);
  3651. sd = malloc(161);
  3652. bin2hex(sd, data, 80);
  3653. } else {
  3654. /* build hex string */
  3655. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3656. bin2hex(hexstr, work->data, sizeof(work->data));
  3657. /* build JSON-RPC request */
  3658. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3659. s = realloc_strcat(s, hexstr);
  3660. s = realloc_strcat(s, "\" ], \"id\":1}");
  3661. free(hexstr);
  3662. sd = s;
  3663. }
  3664. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3665. if (work->tmpl)
  3666. free(sd);
  3667. else
  3668. s = realloc_strcat(s, "\n");
  3669. return s;
  3670. }
  3671. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3672. json_t *res, *err;
  3673. bool rc = false;
  3674. int thr_id = work->thr_id;
  3675. struct pool *pool = work->pool;
  3676. struct timeval tv_submit_reply;
  3677. time_t ts_submit_reply;
  3678. char worktime[200] = "";
  3679. cgtime(&tv_submit_reply);
  3680. ts_submit_reply = time(NULL);
  3681. if (unlikely(!val)) {
  3682. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3683. if (!pool_tset(pool, &pool->submit_fail)) {
  3684. total_ro++;
  3685. pool->remotefail_occasions++;
  3686. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3687. }
  3688. goto out;
  3689. } else if (pool_tclear(pool, &pool->submit_fail))
  3690. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3691. res = json_object_get(val, "result");
  3692. err = json_object_get(val, "error");
  3693. if (!QUIET) {
  3694. if (opt_worktime) {
  3695. char workclone[20];
  3696. struct tm _tm;
  3697. struct tm *tm, tm_getwork, tm_submit_reply;
  3698. tm = &_tm;
  3699. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3700. (struct timeval *)&(work->tv_getwork));
  3701. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3702. (struct timeval *)&(work->tv_getwork_reply));
  3703. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3704. (struct timeval *)&(work->tv_work_start));
  3705. double work_to_submit = tdiff(ptv_submit,
  3706. (struct timeval *)&(work->tv_work_found));
  3707. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3708. int diffplaces = 3;
  3709. localtime_r(&work->ts_getwork, tm);
  3710. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3711. localtime_r(&ts_submit_reply, tm);
  3712. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3713. if (work->clone) {
  3714. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3715. tdiff((struct timeval *)&(work->tv_cloned),
  3716. (struct timeval *)&(work->tv_getwork_reply)));
  3717. }
  3718. else
  3719. strcpy(workclone, "O");
  3720. if (work->work_difficulty < 1)
  3721. diffplaces = 6;
  3722. snprintf(worktime, sizeof(worktime),
  3723. " <-%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",
  3724. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3725. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3726. work->getwork_mode, diffplaces, work->work_difficulty,
  3727. tm_getwork.tm_hour, tm_getwork.tm_min,
  3728. tm_getwork.tm_sec, getwork_time, workclone,
  3729. getwork_to_work, work_time, work_to_submit, submit_time,
  3730. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3731. tm_submit_reply.tm_sec);
  3732. }
  3733. }
  3734. share_result(val, res, err, work, resubmit, worktime);
  3735. if (!opt_realquiet)
  3736. print_status(thr_id);
  3737. if (!want_per_device_stats) {
  3738. char logline[256];
  3739. struct cgpu_info *cgpu;
  3740. cgpu = get_thr_cgpu(thr_id);
  3741. get_statline(logline, sizeof(logline), cgpu);
  3742. applog(LOG_INFO, "%s", logline);
  3743. }
  3744. json_decref(val);
  3745. rc = true;
  3746. out:
  3747. return rc;
  3748. }
  3749. /* Specifies whether we can use this pool for work or not. */
  3750. static bool pool_unworkable(struct pool *pool)
  3751. {
  3752. if (pool->idle)
  3753. return true;
  3754. if (pool->enabled != POOL_ENABLED)
  3755. return true;
  3756. if (pool->has_stratum && !pool->stratum_active)
  3757. return true;
  3758. return false;
  3759. }
  3760. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  3761. * rolling average per 10 minutes and if pools start getting more, it biases
  3762. * away from them to distribute work evenly. The share count is reset to the
  3763. * rolling average every 10 minutes to not send all work to one pool after it
  3764. * has been disabled/out for an extended period. */
  3765. static struct pool *select_balanced(struct pool *cp)
  3766. {
  3767. int i, lowest = cp->shares;
  3768. struct pool *ret = cp;
  3769. for (i = 0; i < total_pools; i++) {
  3770. struct pool *pool = pools[i];
  3771. if (pool_unworkable(pool))
  3772. continue;
  3773. if (pool->shares < lowest) {
  3774. lowest = pool->shares;
  3775. ret = pool;
  3776. }
  3777. }
  3778. ret->shares++;
  3779. return ret;
  3780. }
  3781. static bool pool_active(struct pool *, bool pinging);
  3782. static void pool_died(struct pool *);
  3783. static struct pool *priority_pool(int choice);
  3784. static bool pool_unusable(struct pool *pool);
  3785. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  3786. * it has any quota left. */
  3787. static inline struct pool *select_pool(bool lagging)
  3788. {
  3789. static int rotating_pool = 0;
  3790. struct pool *pool, *cp;
  3791. bool avail = false;
  3792. int tested, i;
  3793. cp = current_pool();
  3794. retry:
  3795. if (pool_strategy == POOL_BALANCE) {
  3796. pool = select_balanced(cp);
  3797. goto out;
  3798. }
  3799. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  3800. pool = cp;
  3801. goto out;
  3802. } else
  3803. pool = NULL;
  3804. for (i = 0; i < total_pools; i++) {
  3805. struct pool *tp = pools[i];
  3806. if (tp->quota_used < tp->quota_gcd) {
  3807. avail = true;
  3808. break;
  3809. }
  3810. }
  3811. /* There are no pools with quota, so reset them. */
  3812. if (!avail) {
  3813. for (i = 0; i < total_pools; i++)
  3814. pools[i]->quota_used = 0;
  3815. if (++rotating_pool >= total_pools)
  3816. rotating_pool = 0;
  3817. }
  3818. /* Try to find the first pool in the rotation that is usable */
  3819. tested = 0;
  3820. while (!pool && tested++ < total_pools) {
  3821. pool = pools[rotating_pool];
  3822. if (pool->quota_used++ < pool->quota_gcd) {
  3823. if (!pool_unworkable(pool))
  3824. break;
  3825. /* Failover-only flag for load-balance means distribute
  3826. * unused quota to priority pool 0. */
  3827. if (opt_fail_only)
  3828. priority_pool(0)->quota_used--;
  3829. }
  3830. pool = NULL;
  3831. if (++rotating_pool >= total_pools)
  3832. rotating_pool = 0;
  3833. }
  3834. /* If there are no alive pools with quota, choose according to
  3835. * priority. */
  3836. if (!pool) {
  3837. for (i = 0; i < total_pools; i++) {
  3838. struct pool *tp = priority_pool(i);
  3839. if (!pool_unusable(tp)) {
  3840. pool = tp;
  3841. break;
  3842. }
  3843. }
  3844. }
  3845. /* If still nothing is usable, use the current pool */
  3846. if (!pool)
  3847. pool = cp;
  3848. out:
  3849. if (cp != pool)
  3850. {
  3851. if (!pool_active(pool, false))
  3852. {
  3853. pool_died(pool);
  3854. goto retry;
  3855. }
  3856. pool_tclear(pool, &pool->idle);
  3857. }
  3858. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  3859. return pool;
  3860. }
  3861. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  3862. static const uint64_t diffone = 0xFFFF000000000000ull;
  3863. static double target_diff(const unsigned char *target)
  3864. {
  3865. double targ = 0;
  3866. signed int i;
  3867. for (i = 31; i >= 0; --i)
  3868. targ = (targ * 0x100) + target[i];
  3869. return DIFFEXACTONE / (targ ?: 1);
  3870. }
  3871. /*
  3872. * Calculate the work share difficulty
  3873. */
  3874. static void calc_diff(struct work *work, int known)
  3875. {
  3876. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  3877. double difficulty;
  3878. if (!known) {
  3879. work->work_difficulty = target_diff(work->target);
  3880. } else
  3881. work->work_difficulty = known;
  3882. difficulty = work->work_difficulty;
  3883. pool_stats->last_diff = difficulty;
  3884. suffix_string((uint64_t)difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  3885. if (difficulty == pool_stats->min_diff)
  3886. pool_stats->min_diff_count++;
  3887. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  3888. pool_stats->min_diff = difficulty;
  3889. pool_stats->min_diff_count = 1;
  3890. }
  3891. if (difficulty == pool_stats->max_diff)
  3892. pool_stats->max_diff_count++;
  3893. else if (difficulty > pool_stats->max_diff) {
  3894. pool_stats->max_diff = difficulty;
  3895. pool_stats->max_diff_count = 1;
  3896. }
  3897. }
  3898. static void get_benchmark_work(struct work *work)
  3899. {
  3900. // Use a random work block pulled from a pool
  3901. static uint8_t bench_block[] = { CGMINER_BENCHMARK_BLOCK };
  3902. size_t bench_size = sizeof(*work);
  3903. size_t work_size = sizeof(bench_block);
  3904. size_t min_size = (work_size < bench_size ? work_size : bench_size);
  3905. memset(work, 0, sizeof(*work));
  3906. memcpy(work, &bench_block, min_size);
  3907. work->mandatory = true;
  3908. work->pool = pools[0];
  3909. cgtime(&work->tv_getwork);
  3910. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  3911. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  3912. calc_diff(work, 0);
  3913. }
  3914. static void wake_gws(void);
  3915. static void update_last_work(struct work *work)
  3916. {
  3917. if (!work->tmpl)
  3918. // Only save GBT jobs, since rollntime isn't coordinated well yet
  3919. return;
  3920. struct pool *pool = work->pool;
  3921. mutex_lock(&pool->last_work_lock);
  3922. if (pool->last_work_copy)
  3923. free_work(pool->last_work_copy);
  3924. pool->last_work_copy = copy_work(work);
  3925. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  3926. mutex_unlock(&pool->last_work_lock);
  3927. }
  3928. static
  3929. void gbt_req_target(json_t *req)
  3930. {
  3931. json_t *j;
  3932. json_t *n;
  3933. if (!request_target_str)
  3934. return;
  3935. j = json_object_get(req, "params");
  3936. if (!j)
  3937. {
  3938. n = json_array();
  3939. if (!n)
  3940. return;
  3941. if (json_object_set_new(req, "params", n))
  3942. goto erradd;
  3943. j = n;
  3944. }
  3945. n = json_array_get(j, 0);
  3946. if (!n)
  3947. {
  3948. n = json_object();
  3949. if (!n)
  3950. return;
  3951. if (json_array_append_new(j, n))
  3952. goto erradd;
  3953. }
  3954. j = n;
  3955. n = json_string(request_target_str);
  3956. if (!n)
  3957. return;
  3958. if (json_object_set_new(j, "target", n))
  3959. goto erradd;
  3960. return;
  3961. erradd:
  3962. json_decref(n);
  3963. }
  3964. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  3965. {
  3966. char *rpc_req;
  3967. clean_work(work);
  3968. switch (proto) {
  3969. case PLP_GETWORK:
  3970. work->getwork_mode = GETWORK_MODE_POOL;
  3971. return strdup(getwork_req);
  3972. case PLP_GETBLOCKTEMPLATE:
  3973. work->getwork_mode = GETWORK_MODE_GBT;
  3974. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  3975. if (!work->tmpl_refcount)
  3976. return NULL;
  3977. work->tmpl = blktmpl_create();
  3978. if (!work->tmpl)
  3979. goto gbtfail2;
  3980. *work->tmpl_refcount = 1;
  3981. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  3982. if (!caps)
  3983. goto gbtfail;
  3984. caps |= GBT_LONGPOLL;
  3985. #if BLKMAKER_VERSION > 1
  3986. if (opt_coinbase_script.sz)
  3987. caps |= GBT_CBVALUE;
  3988. #endif
  3989. json_t *req = blktmpl_request_jansson(caps, lpid);
  3990. if (!req)
  3991. goto gbtfail;
  3992. if (probe)
  3993. gbt_req_target(req);
  3994. rpc_req = json_dumps(req, 0);
  3995. if (!rpc_req)
  3996. goto gbtfail;
  3997. json_decref(req);
  3998. return rpc_req;
  3999. default:
  4000. return NULL;
  4001. }
  4002. return NULL;
  4003. gbtfail:
  4004. blktmpl_free(work->tmpl);
  4005. work->tmpl = NULL;
  4006. gbtfail2:
  4007. free(work->tmpl_refcount);
  4008. work->tmpl_refcount = NULL;
  4009. return NULL;
  4010. }
  4011. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4012. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4013. static const char *pool_protocol_name(enum pool_protocol proto)
  4014. {
  4015. switch (proto) {
  4016. case PLP_GETBLOCKTEMPLATE:
  4017. return "getblocktemplate";
  4018. case PLP_GETWORK:
  4019. return "getwork";
  4020. default:
  4021. return "UNKNOWN";
  4022. }
  4023. }
  4024. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4025. {
  4026. switch (proto) {
  4027. case PLP_GETBLOCKTEMPLATE:
  4028. if (want_getwork)
  4029. return PLP_GETWORK;
  4030. default:
  4031. return PLP_NONE;
  4032. }
  4033. }
  4034. static bool get_upstream_work(struct work *work, CURL *curl)
  4035. {
  4036. struct pool *pool = work->pool;
  4037. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4038. struct timeval tv_elapsed;
  4039. json_t *val = NULL;
  4040. bool rc = false;
  4041. char *url;
  4042. enum pool_protocol proto;
  4043. char *rpc_req;
  4044. if (pool->proto == PLP_NONE)
  4045. pool->proto = PLP_GETBLOCKTEMPLATE;
  4046. tryagain:
  4047. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4048. work->pool = pool;
  4049. if (!rpc_req)
  4050. return false;
  4051. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4052. url = pool->rpc_url;
  4053. cgtime(&work->tv_getwork);
  4054. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4055. false, &work->rolltime, pool, false);
  4056. pool_stats->getwork_attempts++;
  4057. free(rpc_req);
  4058. if (likely(val)) {
  4059. rc = work_decode(pool, work, val);
  4060. if (unlikely(!rc))
  4061. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4062. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4063. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4064. pool->proto = proto;
  4065. goto tryagain;
  4066. } else
  4067. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4068. cgtime(&work->tv_getwork_reply);
  4069. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4070. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4071. pool_stats->getwork_wait_rolling /= 1.63;
  4072. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4073. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4074. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4075. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4076. }
  4077. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4078. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4079. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4080. }
  4081. pool_stats->getwork_calls++;
  4082. work->pool = pool;
  4083. work->longpoll = false;
  4084. calc_diff(work, 0);
  4085. total_getworks++;
  4086. pool->getwork_requested++;
  4087. if (rc)
  4088. update_last_work(work);
  4089. if (likely(val))
  4090. json_decref(val);
  4091. return rc;
  4092. }
  4093. #ifdef HAVE_CURSES
  4094. static void disable_curses(void)
  4095. {
  4096. if (curses_active_locked()) {
  4097. use_curses = false;
  4098. curses_active = false;
  4099. leaveok(logwin, false);
  4100. leaveok(statuswin, false);
  4101. leaveok(mainwin, false);
  4102. nocbreak();
  4103. echo();
  4104. delwin(logwin);
  4105. delwin(statuswin);
  4106. delwin(mainwin);
  4107. endwin();
  4108. #ifdef WIN32
  4109. // Move the cursor to after curses output.
  4110. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4111. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4112. COORD coord;
  4113. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4114. coord.X = 0;
  4115. coord.Y = csbi.dwSize.Y - 1;
  4116. SetConsoleCursorPosition(hout, coord);
  4117. }
  4118. #endif
  4119. unlock_curses();
  4120. }
  4121. }
  4122. #endif
  4123. static void __kill_work(void)
  4124. {
  4125. struct cgpu_info *cgpu;
  4126. struct thr_info *thr;
  4127. int i;
  4128. if (!successful_connect)
  4129. return;
  4130. applog(LOG_INFO, "Received kill message");
  4131. shutting_down = true;
  4132. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4133. notifier_wake(submit_waiting_notifier);
  4134. #ifdef USE_LIBMICROHTTPD
  4135. httpsrv_stop();
  4136. #endif
  4137. applog(LOG_DEBUG, "Killing off watchpool thread");
  4138. /* Kill the watchpool thread */
  4139. thr = &control_thr[watchpool_thr_id];
  4140. thr_info_cancel(thr);
  4141. applog(LOG_DEBUG, "Killing off watchdog thread");
  4142. /* Kill the watchdog thread */
  4143. thr = &control_thr[watchdog_thr_id];
  4144. thr_info_cancel(thr);
  4145. applog(LOG_DEBUG, "Shutting down mining threads");
  4146. for (i = 0; i < mining_threads; i++) {
  4147. thr = get_thread(i);
  4148. if (!thr)
  4149. continue;
  4150. cgpu = thr->cgpu;
  4151. if (!cgpu)
  4152. continue;
  4153. if (!cgpu->threads)
  4154. continue;
  4155. cgpu->shutdown = true;
  4156. thr->work_restart = true;
  4157. notifier_wake(thr->notifier);
  4158. notifier_wake(thr->work_restart_notifier);
  4159. }
  4160. sleep(1);
  4161. applog(LOG_DEBUG, "Killing off mining threads");
  4162. /* Kill the mining threads*/
  4163. for (i = 0; i < mining_threads; i++) {
  4164. thr = get_thread(i);
  4165. if (!thr)
  4166. continue;
  4167. cgpu = thr->cgpu;
  4168. if (cgpu->threads)
  4169. {
  4170. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4171. thr_info_cancel(thr);
  4172. }
  4173. cgpu->status = LIFE_DEAD2;
  4174. }
  4175. /* Stop the others */
  4176. applog(LOG_DEBUG, "Killing off API thread");
  4177. thr = &control_thr[api_thr_id];
  4178. thr_info_cancel(thr);
  4179. }
  4180. /* This should be the common exit path */
  4181. void kill_work(void)
  4182. {
  4183. __kill_work();
  4184. quit(0, "Shutdown signal received.");
  4185. }
  4186. static
  4187. #ifdef WIN32
  4188. #ifndef _WIN64
  4189. const
  4190. #endif
  4191. #endif
  4192. char **initial_args;
  4193. void _bfg_clean_up(bool);
  4194. void app_restart(void)
  4195. {
  4196. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4197. __kill_work();
  4198. _bfg_clean_up(true);
  4199. #if defined(unix) || defined(__APPLE__)
  4200. if (forkpid > 0) {
  4201. kill(forkpid, SIGTERM);
  4202. forkpid = 0;
  4203. }
  4204. #endif
  4205. execv(initial_args[0], initial_args);
  4206. applog(LOG_WARNING, "Failed to restart application");
  4207. }
  4208. static void sighandler(int __maybe_unused sig)
  4209. {
  4210. /* Restore signal handlers so we can still quit if kill_work fails */
  4211. sigaction(SIGTERM, &termhandler, NULL);
  4212. sigaction(SIGINT, &inthandler, NULL);
  4213. kill_work();
  4214. }
  4215. static void start_longpoll(void);
  4216. static void stop_longpoll(void);
  4217. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4218. * this pool. */
  4219. static void recruit_curl(struct pool *pool)
  4220. {
  4221. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4222. if (unlikely(!ce))
  4223. quit(1, "Failed to calloc in recruit_curl");
  4224. ce->curl = curl_easy_init();
  4225. if (unlikely(!ce->curl))
  4226. quit(1, "Failed to init in recruit_curl");
  4227. LL_PREPEND(pool->curllist, ce);
  4228. pool->curls++;
  4229. }
  4230. /* Grab an available curl if there is one. If not, then recruit extra curls
  4231. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4232. * and there are already 5 curls in circulation. Limit total number to the
  4233. * number of mining threads per pool as well to prevent blasting a pool during
  4234. * network delays/outages. */
  4235. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4236. {
  4237. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4238. bool recruited = false;
  4239. struct curl_ent *ce;
  4240. mutex_lock(&pool->pool_lock);
  4241. retry:
  4242. if (!pool->curls) {
  4243. recruit_curl(pool);
  4244. recruited = true;
  4245. } else if (!pool->curllist) {
  4246. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4247. if (!blocking) {
  4248. mutex_unlock(&pool->pool_lock);
  4249. return NULL;
  4250. }
  4251. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4252. goto retry;
  4253. } else {
  4254. recruit_curl(pool);
  4255. recruited = true;
  4256. }
  4257. }
  4258. ce = pool->curllist;
  4259. LL_DELETE(pool->curllist, ce);
  4260. mutex_unlock(&pool->pool_lock);
  4261. if (recruited)
  4262. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4263. return ce;
  4264. }
  4265. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4266. {
  4267. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4268. }
  4269. __maybe_unused
  4270. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4271. {
  4272. return pop_curl_entry3(pool, 1);
  4273. }
  4274. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4275. {
  4276. mutex_lock(&pool->pool_lock);
  4277. if (!ce || !ce->curl)
  4278. quithere(1, "Attempted to add NULL");
  4279. LL_PREPEND(pool->curllist, ce);
  4280. cgtime(&ce->tv);
  4281. pthread_cond_broadcast(&pool->cr_cond);
  4282. mutex_unlock(&pool->pool_lock);
  4283. }
  4284. bool stale_work(struct work *work, bool share);
  4285. static inline bool should_roll(struct work *work)
  4286. {
  4287. struct timeval now;
  4288. time_t expiry;
  4289. if (work->pool != current_pool() && pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE)
  4290. return false;
  4291. if (stale_work(work, false))
  4292. return false;
  4293. if (work->rolltime > opt_scantime)
  4294. expiry = work->rolltime;
  4295. else
  4296. expiry = opt_scantime;
  4297. expiry = expiry * 2 / 3;
  4298. /* We shouldn't roll if we're unlikely to get one shares' duration
  4299. * work out of doing so */
  4300. cgtime(&now);
  4301. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4302. return false;
  4303. return true;
  4304. }
  4305. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4306. * reject blocks as invalid. */
  4307. static inline bool can_roll(struct work *work)
  4308. {
  4309. if (work->stratum)
  4310. return false;
  4311. if (!(work->pool && !work->clone))
  4312. return false;
  4313. if (work->tmpl) {
  4314. if (stale_work(work, false))
  4315. return false;
  4316. return blkmk_work_left(work->tmpl);
  4317. }
  4318. return (work->rolltime &&
  4319. work->rolls < 7000 && !stale_work(work, false));
  4320. }
  4321. static void roll_work(struct work *work)
  4322. {
  4323. if (work->tmpl) {
  4324. struct timeval tv_now;
  4325. cgtime(&tv_now);
  4326. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4327. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4328. swap32yes(work->data, work->data, 80 / 4);
  4329. calc_midstate(work);
  4330. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4331. } else {
  4332. uint32_t *work_ntime;
  4333. uint32_t ntime;
  4334. work_ntime = (uint32_t *)(work->data + 68);
  4335. ntime = be32toh(*work_ntime);
  4336. ntime++;
  4337. *work_ntime = htobe32(ntime);
  4338. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4339. }
  4340. local_work++;
  4341. work->rolls++;
  4342. work->blk.nonce = 0;
  4343. /* This is now a different work item so it needs a different ID for the
  4344. * hashtable */
  4345. work->id = total_work++;
  4346. }
  4347. /* Duplicates any dynamically allocated arrays within the work struct to
  4348. * prevent a copied work struct from freeing ram belonging to another struct */
  4349. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4350. {
  4351. int id = work->id;
  4352. clean_work(work);
  4353. memcpy(work, base_work, sizeof(struct work));
  4354. /* Keep the unique new id assigned during make_work to prevent copied
  4355. * work from having the same id. */
  4356. work->id = id;
  4357. if (base_work->job_id)
  4358. work->job_id = strdup(base_work->job_id);
  4359. if (base_work->nonce1)
  4360. work->nonce1 = strdup(base_work->nonce1);
  4361. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4362. if (base_work->tmpl) {
  4363. struct pool *pool = work->pool;
  4364. mutex_lock(&pool->pool_lock);
  4365. ++*work->tmpl_refcount;
  4366. mutex_unlock(&pool->pool_lock);
  4367. }
  4368. if (noffset)
  4369. {
  4370. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4371. uint32_t ntime = be32toh(*work_ntime);
  4372. ntime += noffset;
  4373. *work_ntime = htobe32(ntime);
  4374. }
  4375. }
  4376. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4377. * for all dynamically allocated arrays within the struct */
  4378. struct work *copy_work(const struct work *base_work)
  4379. {
  4380. struct work *work = make_work();
  4381. _copy_work(work, base_work, 0);
  4382. return work;
  4383. }
  4384. void __copy_work(struct work *work, const struct work *base_work)
  4385. {
  4386. _copy_work(work, base_work, 0);
  4387. }
  4388. static struct work *make_clone(struct work *work)
  4389. {
  4390. struct work *work_clone = copy_work(work);
  4391. work_clone->clone = true;
  4392. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4393. work_clone->longpoll = false;
  4394. work_clone->mandatory = false;
  4395. /* Make cloned work appear slightly older to bias towards keeping the
  4396. * master work item which can be further rolled */
  4397. work_clone->tv_staged.tv_sec -= 1;
  4398. return work_clone;
  4399. }
  4400. static void stage_work(struct work *work);
  4401. static bool clone_available(void)
  4402. {
  4403. struct work *work_clone = NULL, *work, *tmp;
  4404. bool cloned = false;
  4405. mutex_lock(stgd_lock);
  4406. if (!staged_rollable)
  4407. goto out_unlock;
  4408. HASH_ITER(hh, staged_work, work, tmp) {
  4409. if (can_roll(work) && should_roll(work)) {
  4410. roll_work(work);
  4411. work_clone = make_clone(work);
  4412. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4413. roll_work(work);
  4414. cloned = true;
  4415. break;
  4416. }
  4417. }
  4418. out_unlock:
  4419. mutex_unlock(stgd_lock);
  4420. if (cloned) {
  4421. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4422. stage_work(work_clone);
  4423. }
  4424. return cloned;
  4425. }
  4426. static void pool_died(struct pool *pool)
  4427. {
  4428. if (!pool_tset(pool, &pool->idle)) {
  4429. cgtime(&pool->tv_idle);
  4430. if (pool == current_pool()) {
  4431. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4432. switch_pools(NULL);
  4433. } else
  4434. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4435. }
  4436. }
  4437. bool stale_work(struct work *work, bool share)
  4438. {
  4439. unsigned work_expiry;
  4440. struct pool *pool;
  4441. uint32_t block_id;
  4442. unsigned getwork_delay;
  4443. if (opt_benchmark)
  4444. return false;
  4445. block_id = ((uint32_t*)work->data)[1];
  4446. pool = work->pool;
  4447. /* Technically the rolltime should be correct but some pools
  4448. * advertise a broken expire= that is lower than a meaningful
  4449. * scantime */
  4450. if (work->rolltime >= opt_scantime || work->tmpl)
  4451. work_expiry = work->rolltime;
  4452. else
  4453. work_expiry = opt_expiry;
  4454. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4455. if (work_expiry > max_expiry)
  4456. work_expiry = max_expiry;
  4457. if (share) {
  4458. /* If the share isn't on this pool's latest block, it's stale */
  4459. if (pool->block_id && pool->block_id != block_id)
  4460. {
  4461. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4462. return true;
  4463. }
  4464. /* If the pool doesn't want old shares, then any found in work before
  4465. * the most recent longpoll is stale */
  4466. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4467. {
  4468. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4469. return true;
  4470. }
  4471. } else {
  4472. /* If this work isn't for the latest Bitcoin block, it's stale */
  4473. /* But only care about the current pool if failover-only */
  4474. if (enabled_pools <= 1 || opt_fail_only) {
  4475. if (pool->block_id && block_id != pool->block_id)
  4476. {
  4477. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4478. return true;
  4479. }
  4480. } else {
  4481. if (block_id != current_block_id)
  4482. {
  4483. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4484. return true;
  4485. }
  4486. }
  4487. /* If the pool has asked us to restart since this work, it's stale */
  4488. if (work->work_restart_id != pool->work_restart_id)
  4489. {
  4490. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4491. return true;
  4492. }
  4493. if (pool->has_stratum && work->job_id) {
  4494. bool same_job;
  4495. if (!pool->stratum_active || !pool->stratum_notify) {
  4496. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4497. return true;
  4498. }
  4499. same_job = true;
  4500. cg_rlock(&pool->data_lock);
  4501. if (strcmp(work->job_id, pool->swork.job_id))
  4502. same_job = false;
  4503. cg_runlock(&pool->data_lock);
  4504. if (!same_job) {
  4505. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4506. return true;
  4507. }
  4508. }
  4509. /* Factor in the average getwork delay of this pool, rounding it up to
  4510. * the nearest second */
  4511. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4512. if (unlikely(work_expiry <= getwork_delay + 5))
  4513. work_expiry = 5;
  4514. else
  4515. work_expiry -= getwork_delay;
  4516. }
  4517. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4518. if (elapsed_since_staged > work_expiry) {
  4519. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4520. return true;
  4521. }
  4522. /* If the user only wants strict failover, any work from a pool other than
  4523. * the current one is always considered stale */
  4524. if (opt_fail_only && !share && pool != current_pool() && !work->mandatory &&
  4525. pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  4526. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4527. return true;
  4528. }
  4529. return false;
  4530. }
  4531. static uint64_t share_diff(const struct work *work)
  4532. {
  4533. uint64_t ret;
  4534. bool new_best = false;
  4535. ret = target_diff(work->hash);
  4536. cg_wlock(&control_lock);
  4537. if (unlikely(ret > best_diff)) {
  4538. new_best = true;
  4539. best_diff = ret;
  4540. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4541. }
  4542. if (unlikely(ret > work->pool->best_diff))
  4543. work->pool->best_diff = ret;
  4544. cg_wunlock(&control_lock);
  4545. if (unlikely(new_best))
  4546. applog(LOG_INFO, "New best share: %s", best_share);
  4547. return ret;
  4548. }
  4549. static void regen_hash(struct work *work)
  4550. {
  4551. hash_data(work->hash, work->data);
  4552. }
  4553. static void rebuild_hash(struct work *work)
  4554. {
  4555. if (opt_scrypt)
  4556. scrypt_regenhash(work);
  4557. else
  4558. regen_hash(work);
  4559. work->share_diff = share_diff(work);
  4560. if (unlikely(work->share_diff >= current_diff)) {
  4561. work->block = true;
  4562. work->pool->solved++;
  4563. found_blocks++;
  4564. work->mandatory = true;
  4565. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4566. }
  4567. }
  4568. static void submit_discard_share2(const char *reason, struct work *work)
  4569. {
  4570. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4571. sharelog(reason, work);
  4572. mutex_lock(&stats_lock);
  4573. ++total_stale;
  4574. ++cgpu->stale;
  4575. ++(work->pool->stale_shares);
  4576. total_diff_stale += work->work_difficulty;
  4577. cgpu->diff_stale += work->work_difficulty;
  4578. work->pool->diff_stale += work->work_difficulty;
  4579. mutex_unlock(&stats_lock);
  4580. }
  4581. static void submit_discard_share(struct work *work)
  4582. {
  4583. submit_discard_share2("discard", work);
  4584. }
  4585. struct submit_work_state {
  4586. struct work *work;
  4587. bool resubmit;
  4588. struct curl_ent *ce;
  4589. int failures;
  4590. struct timeval tv_staleexpire;
  4591. char *s;
  4592. struct timeval tv_submit;
  4593. struct submit_work_state *next;
  4594. };
  4595. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4596. {
  4597. long *p_timeout_us = userp;
  4598. const long max_ms = LONG_MAX / 1000;
  4599. if (max_ms < timeout_ms)
  4600. timeout_ms = max_ms;
  4601. *p_timeout_us = timeout_ms * 1000;
  4602. return 0;
  4603. }
  4604. static void sws_has_ce(struct submit_work_state *sws)
  4605. {
  4606. struct pool *pool = sws->work->pool;
  4607. sws->s = submit_upstream_work_request(sws->work);
  4608. cgtime(&sws->tv_submit);
  4609. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4610. }
  4611. static struct submit_work_state *begin_submission(struct work *work)
  4612. {
  4613. struct pool *pool;
  4614. struct submit_work_state *sws = NULL;
  4615. pool = work->pool;
  4616. sws = malloc(sizeof(*sws));
  4617. *sws = (struct submit_work_state){
  4618. .work = work,
  4619. };
  4620. rebuild_hash(work);
  4621. if (stale_work(work, true)) {
  4622. work->stale = true;
  4623. if (opt_submit_stale)
  4624. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4625. else if (pool->submit_old)
  4626. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4627. else {
  4628. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4629. submit_discard_share(work);
  4630. goto out;
  4631. }
  4632. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4633. }
  4634. if (work->stratum) {
  4635. char *s;
  4636. s = malloc(1024);
  4637. sws->s = s;
  4638. } else {
  4639. /* submit solution to bitcoin via JSON-RPC */
  4640. sws->ce = pop_curl_entry2(pool, false);
  4641. if (sws->ce) {
  4642. sws_has_ce(sws);
  4643. } else {
  4644. sws->next = pool->sws_waiting_on_curl;
  4645. pool->sws_waiting_on_curl = sws;
  4646. if (sws->next)
  4647. applog(LOG_DEBUG, "submit_thread queuing submission");
  4648. else
  4649. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4650. }
  4651. }
  4652. return sws;
  4653. out:
  4654. free(sws);
  4655. return NULL;
  4656. }
  4657. static bool retry_submission(struct submit_work_state *sws)
  4658. {
  4659. struct work *work = sws->work;
  4660. struct pool *pool = work->pool;
  4661. sws->resubmit = true;
  4662. if ((!work->stale) && stale_work(work, true)) {
  4663. work->stale = true;
  4664. if (opt_submit_stale)
  4665. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4666. else if (pool->submit_old)
  4667. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4668. else {
  4669. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4670. submit_discard_share(work);
  4671. return false;
  4672. }
  4673. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4674. }
  4675. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4676. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4677. submit_discard_share(work);
  4678. return false;
  4679. }
  4680. else if (work->stale) {
  4681. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4682. {
  4683. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4684. submit_discard_share(work);
  4685. return false;
  4686. }
  4687. }
  4688. /* pause, then restart work-request loop */
  4689. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4690. cgtime(&sws->tv_submit);
  4691. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4692. return true;
  4693. }
  4694. static void free_sws(struct submit_work_state *sws)
  4695. {
  4696. free(sws->s);
  4697. free_work(sws->work);
  4698. free(sws);
  4699. }
  4700. static void *submit_work_thread(__maybe_unused void *userdata)
  4701. {
  4702. int wip = 0;
  4703. CURLM *curlm;
  4704. long curlm_timeout_us = -1;
  4705. struct timeval curlm_timer;
  4706. struct submit_work_state *sws, **swsp;
  4707. struct submit_work_state *write_sws = NULL;
  4708. unsigned tsreduce = 0;
  4709. pthread_detach(pthread_self());
  4710. RenameThread("submit_work");
  4711. applog(LOG_DEBUG, "Creating extra submit work thread");
  4712. curlm = curl_multi_init();
  4713. curlm_timeout_us = -1;
  4714. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  4715. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  4716. fd_set rfds, wfds, efds;
  4717. int maxfd;
  4718. struct timeval tv_timeout, tv_now;
  4719. int n;
  4720. CURLMsg *cm;
  4721. FD_ZERO(&rfds);
  4722. while (1) {
  4723. mutex_lock(&submitting_lock);
  4724. total_submitting -= tsreduce;
  4725. tsreduce = 0;
  4726. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  4727. notifier_read(submit_waiting_notifier);
  4728. }
  4729. // Receive any new submissions
  4730. while (submit_waiting) {
  4731. struct work *work = submit_waiting;
  4732. DL_DELETE(submit_waiting, work);
  4733. if ( (sws = begin_submission(work)) ) {
  4734. if (sws->ce)
  4735. curl_multi_add_handle(curlm, sws->ce->curl);
  4736. else if (sws->s) {
  4737. sws->next = write_sws;
  4738. write_sws = sws;
  4739. }
  4740. ++wip;
  4741. }
  4742. else {
  4743. --total_submitting;
  4744. free_work(work);
  4745. }
  4746. }
  4747. if (unlikely(shutting_down && !wip))
  4748. break;
  4749. mutex_unlock(&submitting_lock);
  4750. FD_ZERO(&rfds);
  4751. FD_ZERO(&wfds);
  4752. FD_ZERO(&efds);
  4753. tv_timeout.tv_sec = -1;
  4754. // Setup cURL with select
  4755. // Need to call perform to ensure the timeout gets updated
  4756. curl_multi_perform(curlm, &n);
  4757. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  4758. if (curlm_timeout_us >= 0)
  4759. {
  4760. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  4761. reduce_timeout_to(&tv_timeout, &curlm_timer);
  4762. }
  4763. // Setup waiting stratum submissions with select
  4764. for (sws = write_sws; sws; sws = sws->next)
  4765. {
  4766. struct pool *pool = sws->work->pool;
  4767. int fd = pool->sock;
  4768. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  4769. continue;
  4770. FD_SET(fd, &wfds);
  4771. set_maxfd(&maxfd, fd);
  4772. }
  4773. // Setup "submit waiting" notifier with select
  4774. FD_SET(submit_waiting_notifier[0], &rfds);
  4775. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  4776. // Wait for something interesting to happen :)
  4777. cgtime(&tv_now);
  4778. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  4779. FD_ZERO(&rfds);
  4780. continue;
  4781. }
  4782. // Handle any stratum ready-to-write results
  4783. for (swsp = &write_sws; (sws = *swsp); ) {
  4784. struct work *work = sws->work;
  4785. struct pool *pool = work->pool;
  4786. int fd = pool->sock;
  4787. bool sessionid_match;
  4788. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  4789. next_write_sws:
  4790. // TODO: Check if stale, possibly discard etc
  4791. swsp = &sws->next;
  4792. continue;
  4793. }
  4794. cg_rlock(&pool->data_lock);
  4795. // 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
  4796. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  4797. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  4798. cg_runlock(&pool->data_lock);
  4799. if (!sessionid_match)
  4800. {
  4801. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  4802. submit_discard_share2("disconnect", work);
  4803. ++tsreduce;
  4804. next_write_sws_del:
  4805. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  4806. FD_CLR(fd, &wfds);
  4807. // Delete sws for this submission, since we're done with it
  4808. *swsp = sws->next;
  4809. free_sws(sws);
  4810. --wip;
  4811. continue;
  4812. }
  4813. char *s = sws->s;
  4814. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  4815. int sshare_id;
  4816. uint32_t nonce;
  4817. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  4818. char noncehex[9];
  4819. char ntimehex[9];
  4820. sshare->work = copy_work(work);
  4821. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  4822. nonce = *((uint32_t *)(work->data + 76));
  4823. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  4824. bin2hex(ntimehex, (void *)&work->data[68], 4);
  4825. mutex_lock(&sshare_lock);
  4826. /* Give the stratum share a unique id */
  4827. sshare_id =
  4828. sshare->id = swork_id++;
  4829. HASH_ADD_INT(stratum_shares, id, sshare);
  4830. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  4831. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  4832. mutex_unlock(&sshare_lock);
  4833. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  4834. if (likely(stratum_send(pool, s, strlen(s)))) {
  4835. if (pool_tclear(pool, &pool->submit_fail))
  4836. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  4837. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  4838. goto next_write_sws_del;
  4839. } else if (!pool_tset(pool, &pool->submit_fail)) {
  4840. // Undo stuff
  4841. mutex_lock(&sshare_lock);
  4842. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  4843. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  4844. if (sshare)
  4845. HASH_DEL(stratum_shares, sshare);
  4846. mutex_unlock(&sshare_lock);
  4847. if (sshare)
  4848. {
  4849. free_work(sshare->work);
  4850. free(sshare);
  4851. }
  4852. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  4853. total_ro++;
  4854. pool->remotefail_occasions++;
  4855. if (!sshare)
  4856. goto next_write_sws_del;
  4857. goto next_write_sws;
  4858. }
  4859. }
  4860. // Handle any cURL activities
  4861. curl_multi_perform(curlm, &n);
  4862. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  4863. if (cm->msg == CURLMSG_DONE)
  4864. {
  4865. bool finished;
  4866. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  4867. curl_multi_remove_handle(curlm, cm->easy_handle);
  4868. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  4869. if (!finished) {
  4870. if (retry_submission(sws))
  4871. curl_multi_add_handle(curlm, sws->ce->curl);
  4872. else
  4873. finished = true;
  4874. }
  4875. if (finished) {
  4876. --wip;
  4877. ++tsreduce;
  4878. struct pool *pool = sws->work->pool;
  4879. if (pool->sws_waiting_on_curl) {
  4880. pool->sws_waiting_on_curl->ce = sws->ce;
  4881. sws_has_ce(pool->sws_waiting_on_curl);
  4882. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  4883. curl_multi_add_handle(curlm, sws->ce->curl);
  4884. } else {
  4885. push_curl_entry(sws->ce, sws->work->pool);
  4886. }
  4887. free_sws(sws);
  4888. }
  4889. }
  4890. }
  4891. }
  4892. assert(!write_sws);
  4893. mutex_unlock(&submitting_lock);
  4894. curl_multi_cleanup(curlm);
  4895. applog(LOG_DEBUG, "submit_work thread exiting");
  4896. return NULL;
  4897. }
  4898. /* Find the pool that currently has the highest priority */
  4899. static struct pool *priority_pool(int choice)
  4900. {
  4901. struct pool *ret = NULL;
  4902. int i;
  4903. for (i = 0; i < total_pools; i++) {
  4904. struct pool *pool = pools[i];
  4905. if (pool->prio == choice) {
  4906. ret = pool;
  4907. break;
  4908. }
  4909. }
  4910. if (unlikely(!ret)) {
  4911. applog(LOG_ERR, "WTF No pool %d found!", choice);
  4912. return pools[choice];
  4913. }
  4914. return ret;
  4915. }
  4916. int prioritize_pools(char *param, int *pid)
  4917. {
  4918. char *ptr, *next;
  4919. int i, pr, prio = 0;
  4920. if (total_pools == 0) {
  4921. return MSG_NOPOOL;
  4922. }
  4923. if (param == NULL || *param == '\0') {
  4924. return MSG_MISPID;
  4925. }
  4926. bool pools_changed[total_pools];
  4927. int new_prio[total_pools];
  4928. for (i = 0; i < total_pools; ++i)
  4929. pools_changed[i] = false;
  4930. next = param;
  4931. while (next && *next) {
  4932. ptr = next;
  4933. next = strchr(ptr, ',');
  4934. if (next)
  4935. *(next++) = '\0';
  4936. i = atoi(ptr);
  4937. if (i < 0 || i >= total_pools) {
  4938. *pid = i;
  4939. return MSG_INVPID;
  4940. }
  4941. if (pools_changed[i]) {
  4942. *pid = i;
  4943. return MSG_DUPPID;
  4944. }
  4945. pools_changed[i] = true;
  4946. new_prio[i] = prio++;
  4947. }
  4948. // Only change them if no errors
  4949. for (i = 0; i < total_pools; i++) {
  4950. if (pools_changed[i])
  4951. pools[i]->prio = new_prio[i];
  4952. }
  4953. // In priority order, cycle through the unchanged pools and append them
  4954. for (pr = 0; pr < total_pools; pr++)
  4955. for (i = 0; i < total_pools; i++) {
  4956. if (!pools_changed[i] && pools[i]->prio == pr) {
  4957. pools[i]->prio = prio++;
  4958. pools_changed[i] = true;
  4959. break;
  4960. }
  4961. }
  4962. if (current_pool()->prio)
  4963. switch_pools(NULL);
  4964. return MSG_POOLPRIO;
  4965. }
  4966. void validate_pool_priorities(void)
  4967. {
  4968. // TODO: this should probably do some sort of logging
  4969. int i, j;
  4970. bool used[total_pools];
  4971. bool valid[total_pools];
  4972. for (i = 0; i < total_pools; i++)
  4973. used[i] = valid[i] = false;
  4974. for (i = 0; i < total_pools; i++) {
  4975. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  4976. if (!used[pools[i]->prio]) {
  4977. valid[i] = true;
  4978. used[pools[i]->prio] = true;
  4979. }
  4980. }
  4981. }
  4982. for (i = 0; i < total_pools; i++) {
  4983. if (!valid[i]) {
  4984. for (j = 0; j < total_pools; j++) {
  4985. if (!used[j]) {
  4986. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  4987. pools[i]->prio = j;
  4988. used[j] = true;
  4989. break;
  4990. }
  4991. }
  4992. }
  4993. }
  4994. }
  4995. static void clear_pool_work(struct pool *pool);
  4996. /* Specifies whether we can switch to this pool or not. */
  4997. static bool pool_unusable(struct pool *pool)
  4998. {
  4999. if (pool->idle)
  5000. return true;
  5001. if (pool->enabled != POOL_ENABLED)
  5002. return true;
  5003. return false;
  5004. }
  5005. void switch_pools(struct pool *selected)
  5006. {
  5007. struct pool *pool, *last_pool;
  5008. int i, pool_no, next_pool;
  5009. cg_wlock(&control_lock);
  5010. last_pool = currentpool;
  5011. pool_no = currentpool->pool_no;
  5012. /* Switch selected to pool number 0 and move the rest down */
  5013. if (selected) {
  5014. if (selected->prio != 0) {
  5015. for (i = 0; i < total_pools; i++) {
  5016. pool = pools[i];
  5017. if (pool->prio < selected->prio)
  5018. pool->prio++;
  5019. }
  5020. selected->prio = 0;
  5021. }
  5022. }
  5023. switch (pool_strategy) {
  5024. /* All of these set to the master pool */
  5025. case POOL_BALANCE:
  5026. case POOL_FAILOVER:
  5027. case POOL_LOADBALANCE:
  5028. for (i = 0; i < total_pools; i++) {
  5029. pool = priority_pool(i);
  5030. if (pool_unusable(pool))
  5031. continue;
  5032. pool_no = pool->pool_no;
  5033. break;
  5034. }
  5035. break;
  5036. /* Both of these simply increment and cycle */
  5037. case POOL_ROUNDROBIN:
  5038. case POOL_ROTATE:
  5039. if (selected && !selected->idle) {
  5040. pool_no = selected->pool_no;
  5041. break;
  5042. }
  5043. next_pool = pool_no;
  5044. /* Select the next alive pool */
  5045. for (i = 1; i < total_pools; i++) {
  5046. next_pool++;
  5047. if (next_pool >= total_pools)
  5048. next_pool = 0;
  5049. pool = pools[next_pool];
  5050. if (pool_unusable(pool))
  5051. continue;
  5052. pool_no = next_pool;
  5053. break;
  5054. }
  5055. break;
  5056. default:
  5057. break;
  5058. }
  5059. currentpool = pools[pool_no];
  5060. pool = currentpool;
  5061. cg_wunlock(&control_lock);
  5062. /* Set the lagging flag to avoid pool not providing work fast enough
  5063. * messages in failover only mode since we have to get all fresh work
  5064. * as in restart_threads */
  5065. if (opt_fail_only)
  5066. pool_tset(pool, &pool->lagging);
  5067. if (pool != last_pool)
  5068. {
  5069. pool->block_id = 0;
  5070. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5071. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5072. if (pool_localgen(pool) || opt_fail_only)
  5073. clear_pool_work(last_pool);
  5074. }
  5075. }
  5076. mutex_lock(&lp_lock);
  5077. pthread_cond_broadcast(&lp_cond);
  5078. mutex_unlock(&lp_lock);
  5079. }
  5080. static void discard_work(struct work *work)
  5081. {
  5082. if (!work->clone && !work->rolls && !work->mined) {
  5083. if (work->pool) {
  5084. work->pool->discarded_work++;
  5085. work->pool->quota_used--;
  5086. work->pool->works--;
  5087. }
  5088. total_discarded++;
  5089. applog(LOG_DEBUG, "Discarded work");
  5090. } else
  5091. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5092. free_work(work);
  5093. }
  5094. static void wake_gws(void)
  5095. {
  5096. mutex_lock(stgd_lock);
  5097. pthread_cond_signal(&gws_cond);
  5098. mutex_unlock(stgd_lock);
  5099. }
  5100. static void discard_stale(void)
  5101. {
  5102. struct work *work, *tmp;
  5103. int stale = 0;
  5104. mutex_lock(stgd_lock);
  5105. HASH_ITER(hh, staged_work, work, tmp) {
  5106. if (stale_work(work, false)) {
  5107. HASH_DEL(staged_work, work);
  5108. discard_work(work);
  5109. stale++;
  5110. staged_full = false;
  5111. }
  5112. }
  5113. pthread_cond_signal(&gws_cond);
  5114. mutex_unlock(stgd_lock);
  5115. if (stale)
  5116. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5117. }
  5118. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5119. {
  5120. bool rv;
  5121. struct timeval tv, orig;
  5122. ldiv_t d;
  5123. d = ldiv(ustime, 1000000);
  5124. tv = (struct timeval){
  5125. .tv_sec = d.quot,
  5126. .tv_usec = d.rem,
  5127. };
  5128. orig = work->tv_staged;
  5129. timersub(&orig, &tv, &work->tv_staged);
  5130. rv = stale_work(work, share);
  5131. work->tv_staged = orig;
  5132. return rv;
  5133. }
  5134. static void restart_threads(void)
  5135. {
  5136. struct pool *cp = current_pool();
  5137. int i;
  5138. struct thr_info *thr;
  5139. /* Artificially set the lagging flag to avoid pool not providing work
  5140. * fast enough messages after every long poll */
  5141. pool_tset(cp, &cp->lagging);
  5142. /* Discard staged work that is now stale */
  5143. discard_stale();
  5144. rd_lock(&mining_thr_lock);
  5145. for (i = 0; i < mining_threads; i++)
  5146. {
  5147. thr = mining_thr[i];
  5148. thr->work_restart = true;
  5149. }
  5150. for (i = 0; i < mining_threads; i++)
  5151. {
  5152. thr = mining_thr[i];
  5153. notifier_wake(thr->work_restart_notifier);
  5154. }
  5155. rd_unlock(&mining_thr_lock);
  5156. }
  5157. static
  5158. void blkhashstr(char *rv, const unsigned char *hash)
  5159. {
  5160. unsigned char hash_swap[32];
  5161. swap256(hash_swap, hash);
  5162. swap32tole(hash_swap, hash_swap, 32 / 4);
  5163. bin2hex(rv, hash_swap, 32);
  5164. }
  5165. static void set_curblock(char *hexstr, unsigned char *hash)
  5166. {
  5167. unsigned char hash_swap[32];
  5168. current_block_id = ((uint32_t*)hash)[0];
  5169. strcpy(current_block, hexstr);
  5170. swap256(hash_swap, hash);
  5171. swap32tole(hash_swap, hash_swap, 32 / 4);
  5172. cg_wlock(&ch_lock);
  5173. block_time = time(NULL);
  5174. __update_block_title(hash_swap);
  5175. free(current_fullhash);
  5176. current_fullhash = malloc(65);
  5177. bin2hex(current_fullhash, hash_swap, 32);
  5178. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5179. cg_wunlock(&ch_lock);
  5180. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5181. }
  5182. /* Search to see if this string is from a block that has been seen before */
  5183. static bool block_exists(char *hexstr)
  5184. {
  5185. struct block *s;
  5186. rd_lock(&blk_lock);
  5187. HASH_FIND_STR(blocks, hexstr, s);
  5188. rd_unlock(&blk_lock);
  5189. if (s)
  5190. return true;
  5191. return false;
  5192. }
  5193. /* Tests if this work is from a block that has been seen before */
  5194. static inline bool from_existing_block(struct work *work)
  5195. {
  5196. char hexstr[37];
  5197. bool ret;
  5198. bin2hex(hexstr, work->data + 8, 18);
  5199. ret = block_exists(hexstr);
  5200. return ret;
  5201. }
  5202. static int block_sort(struct block *blocka, struct block *blockb)
  5203. {
  5204. return blocka->block_no - blockb->block_no;
  5205. }
  5206. static void set_blockdiff(const struct work *work)
  5207. {
  5208. unsigned char target[32];
  5209. double diff;
  5210. uint64_t diff64;
  5211. real_block_target(target, work->data);
  5212. diff = target_diff(target);
  5213. diff64 = diff;
  5214. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5215. format_unit2(net_hashrate, sizeof(net_hashrate),
  5216. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5217. if (unlikely(current_diff != diff))
  5218. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5219. current_diff = diff;
  5220. }
  5221. static bool test_work_current(struct work *work)
  5222. {
  5223. bool ret = true;
  5224. char hexstr[65];
  5225. if (work->mandatory)
  5226. return ret;
  5227. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5228. /* Hack to work around dud work sneaking into test */
  5229. bin2hex(hexstr, work->data + 8, 18);
  5230. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5231. goto out_free;
  5232. /* Search to see if this block exists yet and if not, consider it a
  5233. * new block and set the current block details to this one */
  5234. if (!block_exists(hexstr)) {
  5235. struct block *s = calloc(sizeof(struct block), 1);
  5236. int deleted_block = 0;
  5237. ret = false;
  5238. if (unlikely(!s))
  5239. quit (1, "test_work_current OOM");
  5240. strcpy(s->hash, hexstr);
  5241. s->block_no = new_blocks++;
  5242. wr_lock(&blk_lock);
  5243. /* Only keep the last hour's worth of blocks in memory since
  5244. * work from blocks before this is virtually impossible and we
  5245. * want to prevent memory usage from continually rising */
  5246. if (HASH_COUNT(blocks) > 6) {
  5247. struct block *oldblock;
  5248. HASH_SORT(blocks, block_sort);
  5249. oldblock = blocks;
  5250. deleted_block = oldblock->block_no;
  5251. HASH_DEL(blocks, oldblock);
  5252. free(oldblock);
  5253. }
  5254. HASH_ADD_STR(blocks, hash, s);
  5255. set_blockdiff(work);
  5256. wr_unlock(&blk_lock);
  5257. work->pool->block_id = block_id;
  5258. if (deleted_block)
  5259. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5260. #if BLKMAKER_VERSION > 1
  5261. template_nonce = 0;
  5262. #endif
  5263. set_curblock(hexstr, &work->data[4]);
  5264. if (unlikely(new_blocks == 1))
  5265. goto out_free;
  5266. if (!work->stratum) {
  5267. if (work->longpoll) {
  5268. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5269. work->pool->pool_no);
  5270. } else if (have_longpoll)
  5271. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5272. else
  5273. applog(LOG_NOTICE, "New block detected on network");
  5274. }
  5275. restart_threads();
  5276. } else {
  5277. bool restart = false;
  5278. struct pool *curpool = NULL;
  5279. if (unlikely(work->pool->block_id != block_id)) {
  5280. bool was_active = work->pool->block_id != 0;
  5281. work->pool->block_id = block_id;
  5282. if (!work->longpoll)
  5283. update_last_work(work);
  5284. if (was_active) { // Pool actively changed block
  5285. if (work->pool == (curpool = current_pool()))
  5286. restart = true;
  5287. if (block_id == current_block_id) {
  5288. // Caught up, only announce if this pool is the one in use
  5289. if (restart)
  5290. applog(LOG_NOTICE, "%s %d caught up to new block",
  5291. work->longpoll ? "Longpoll from pool" : "Pool",
  5292. work->pool->pool_no);
  5293. } else {
  5294. // Switched to a block we know, but not the latest... why?
  5295. // This might detect pools trying to double-spend or 51%,
  5296. // but let's not make any accusations until it's had time
  5297. // in the real world.
  5298. blkhashstr(hexstr, &work->data[4]);
  5299. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5300. work->longpoll ? "Longpoll from pool" : "Pool",
  5301. work->pool->pool_no,
  5302. hexstr);
  5303. }
  5304. }
  5305. }
  5306. if (work->longpoll) {
  5307. ++work->pool->work_restart_id;
  5308. update_last_work(work);
  5309. if ((!restart) && work->pool == current_pool()) {
  5310. applog(
  5311. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  5312. "Longpoll from pool %d requested work update",
  5313. work->pool->pool_no);
  5314. restart = true;
  5315. }
  5316. }
  5317. if (restart)
  5318. restart_threads();
  5319. }
  5320. work->longpoll = false;
  5321. out_free:
  5322. return ret;
  5323. }
  5324. static int tv_sort(struct work *worka, struct work *workb)
  5325. {
  5326. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5327. }
  5328. static bool work_rollable(struct work *work)
  5329. {
  5330. return (!work->clone && work->rolltime);
  5331. }
  5332. static bool hash_push(struct work *work)
  5333. {
  5334. bool rc = true;
  5335. mutex_lock(stgd_lock);
  5336. if (work_rollable(work))
  5337. staged_rollable++;
  5338. if (likely(!getq->frozen)) {
  5339. HASH_ADD_INT(staged_work, id, work);
  5340. HASH_SORT(staged_work, tv_sort);
  5341. } else
  5342. rc = false;
  5343. pthread_cond_broadcast(&getq->cond);
  5344. mutex_unlock(stgd_lock);
  5345. return rc;
  5346. }
  5347. static void stage_work(struct work *work)
  5348. {
  5349. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5350. work->id, work->pool->pool_no);
  5351. work->work_restart_id = work->pool->work_restart_id;
  5352. work->pool->last_work_time = time(NULL);
  5353. cgtime(&work->pool->tv_last_work_time);
  5354. test_work_current(work);
  5355. work->pool->works++;
  5356. hash_push(work);
  5357. }
  5358. #ifdef HAVE_CURSES
  5359. int curses_int(const char *query)
  5360. {
  5361. int ret;
  5362. char *cvar;
  5363. cvar = curses_input(query);
  5364. if (unlikely(!cvar))
  5365. return -1;
  5366. ret = atoi(cvar);
  5367. free(cvar);
  5368. return ret;
  5369. }
  5370. #endif
  5371. #ifdef HAVE_CURSES
  5372. static bool input_pool(bool live);
  5373. #endif
  5374. #ifdef HAVE_CURSES
  5375. static void display_pool_summary(struct pool *pool)
  5376. {
  5377. double efficiency = 0.0;
  5378. char xfer[17], bw[19];
  5379. int pool_secs;
  5380. if (curses_active_locked()) {
  5381. wlog("Pool: %s\n", pool->rpc_url);
  5382. if (pool->solved)
  5383. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5384. if (!pool->has_stratum)
  5385. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5386. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5387. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5388. wlog(" Accepted shares: %d\n", pool->accepted);
  5389. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5390. pool->rejected, pool->stale_shares,
  5391. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5392. );
  5393. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5394. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5395. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5396. wlog(" Network transfer: %s (%s)\n",
  5397. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5398. (float)pool->cgminer_pool_stats.net_bytes_received,
  5399. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5400. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5401. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5402. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5403. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5404. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5405. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5406. wlog(" Items worked on: %d\n", pool->works);
  5407. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5408. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5409. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5410. unlock_curses();
  5411. }
  5412. }
  5413. #endif
  5414. /* We can't remove the memory used for this struct pool because there may
  5415. * still be work referencing it. We just remove it from the pools list */
  5416. void remove_pool(struct pool *pool)
  5417. {
  5418. int i, last_pool = total_pools - 1;
  5419. struct pool *other;
  5420. /* Boost priority of any lower prio than this one */
  5421. for (i = 0; i < total_pools; i++) {
  5422. other = pools[i];
  5423. if (other->prio > pool->prio)
  5424. other->prio--;
  5425. }
  5426. if (pool->pool_no < last_pool) {
  5427. /* Swap the last pool for this one */
  5428. (pools[last_pool])->pool_no = pool->pool_no;
  5429. pools[pool->pool_no] = pools[last_pool];
  5430. }
  5431. /* Give it an invalid number */
  5432. pool->pool_no = total_pools;
  5433. pool->removed = true;
  5434. pool->has_stratum = false;
  5435. total_pools--;
  5436. }
  5437. /* add a mutex if this needs to be thread safe in the future */
  5438. static struct JE {
  5439. char *buf;
  5440. struct JE *next;
  5441. } *jedata = NULL;
  5442. static void json_escape_free()
  5443. {
  5444. struct JE *jeptr = jedata;
  5445. struct JE *jenext;
  5446. jedata = NULL;
  5447. while (jeptr) {
  5448. jenext = jeptr->next;
  5449. free(jeptr->buf);
  5450. free(jeptr);
  5451. jeptr = jenext;
  5452. }
  5453. }
  5454. static
  5455. char *json_escape(const char *str)
  5456. {
  5457. struct JE *jeptr;
  5458. char *buf, *ptr;
  5459. /* 2x is the max, may as well just allocate that */
  5460. ptr = buf = malloc(strlen(str) * 2 + 1);
  5461. jeptr = malloc(sizeof(*jeptr));
  5462. jeptr->buf = buf;
  5463. jeptr->next = jedata;
  5464. jedata = jeptr;
  5465. while (*str) {
  5466. if (*str == '\\' || *str == '"')
  5467. *(ptr++) = '\\';
  5468. *(ptr++) = *(str++);
  5469. }
  5470. *ptr = '\0';
  5471. return buf;
  5472. }
  5473. void _write_config_temps(FILE *fcfg, const char *configname, size_t settingoffset, size_t defoffset)
  5474. {
  5475. int i, commas;
  5476. int *setp, allset;
  5477. uint8_t *defp;
  5478. for (i = 0; ; ++i)
  5479. {
  5480. if (i == total_devices)
  5481. // All defaults
  5482. return;
  5483. setp = ((void*)devices[i]) + settingoffset;
  5484. defp = ((void*)devices[i]) + defoffset;
  5485. allset = *setp;
  5486. if (*setp != *defp)
  5487. break;
  5488. }
  5489. fprintf(fcfg, ",\n\"%s\" : \"", configname);
  5490. for (i = 1; ; ++i)
  5491. {
  5492. if (i == total_devices)
  5493. {
  5494. // All the same
  5495. fprintf(fcfg, "%d\"", allset);
  5496. return;
  5497. }
  5498. setp = ((void*)devices[i]) + settingoffset;
  5499. if (allset != *setp)
  5500. break;
  5501. }
  5502. commas = 0;
  5503. for (i = 0; i < total_devices; ++i)
  5504. {
  5505. setp = ((void*)devices[i]) + settingoffset;
  5506. defp = ((void*)devices[i]) + defoffset;
  5507. if (*setp != *defp)
  5508. {
  5509. for ( ; commas; --commas)
  5510. fputs(",", fcfg);
  5511. fprintf(fcfg, "%d", *setp);
  5512. }
  5513. ++commas;
  5514. }
  5515. fputs("\"", fcfg);
  5516. }
  5517. #define write_config_temps(fcfg, configname, settingname) \
  5518. _write_config_temps(fcfg, configname, offsetof(struct cgpu_info, settingname), offsetof(struct cgpu_info, settingname ## _default))
  5519. static
  5520. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5521. {
  5522. if (!elist)
  5523. return;
  5524. static struct string_elist *entry;
  5525. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5526. bool first = true;
  5527. DL_FOREACH(elist, entry)
  5528. {
  5529. const char * const s = entry->string;
  5530. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5531. first = false;
  5532. }
  5533. fprintf(fcfg, "\n]");
  5534. }
  5535. void write_config(FILE *fcfg)
  5536. {
  5537. int i;
  5538. /* Write pool values */
  5539. fputs("{\n\"pools\" : [", fcfg);
  5540. for(i = 0; i < total_pools; i++) {
  5541. struct pool *pool = pools[i];
  5542. if (pool->quota != 1) {
  5543. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5544. pool->quota,
  5545. json_escape(pool->rpc_url));
  5546. } else {
  5547. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5548. json_escape(pool->rpc_url));
  5549. }
  5550. if (pool->rpc_proxy)
  5551. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5552. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5553. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5554. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5555. if (pool->force_rollntime)
  5556. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5557. fprintf(fcfg, "\n\t}");
  5558. }
  5559. fputs("\n]\n", fcfg);
  5560. write_config_temps(fcfg, "temp-cutoff", cutofftemp);
  5561. write_config_temps(fcfg, "temp-target", targettemp);
  5562. #ifdef HAVE_OPENCL
  5563. if (nDevs) {
  5564. /* Write GPU device values */
  5565. fputs(",\n\"intensity\" : \"", fcfg);
  5566. for(i = 0; i < nDevs; i++)
  5567. {
  5568. if (i > 0)
  5569. fputc(',', fcfg);
  5570. if (gpus[i].dynamic)
  5571. fputc('d', fcfg);
  5572. else
  5573. fprintf(fcfg, "%d", gpus[i].intensity);
  5574. }
  5575. fputs("\",\n\"vectors\" : \"", fcfg);
  5576. for(i = 0; i < nDevs; i++)
  5577. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5578. gpus[i].vwidth);
  5579. fputs("\",\n\"worksize\" : \"", fcfg);
  5580. for(i = 0; i < nDevs; i++)
  5581. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5582. (int)gpus[i].work_size);
  5583. fputs("\",\n\"kernel\" : \"", fcfg);
  5584. for(i = 0; i < nDevs; i++) {
  5585. fprintf(fcfg, "%s", i > 0 ? "," : "");
  5586. switch (gpus[i].kernel) {
  5587. case KL_NONE: // Shouldn't happen
  5588. break;
  5589. case KL_POCLBM:
  5590. fprintf(fcfg, "poclbm");
  5591. break;
  5592. case KL_PHATK:
  5593. fprintf(fcfg, "phatk");
  5594. break;
  5595. case KL_DIAKGCN:
  5596. fprintf(fcfg, "diakgcn");
  5597. break;
  5598. case KL_DIABLO:
  5599. fprintf(fcfg, "diablo");
  5600. break;
  5601. case KL_SCRYPT:
  5602. fprintf(fcfg, "scrypt");
  5603. break;
  5604. }
  5605. }
  5606. #ifdef USE_SCRYPT
  5607. fputs("\",\n\"lookup-gap\" : \"", fcfg);
  5608. for(i = 0; i < nDevs; i++)
  5609. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5610. (int)gpus[i].opt_lg);
  5611. fputs("\",\n\"thread-concurrency\" : \"", fcfg);
  5612. for(i = 0; i < nDevs; i++)
  5613. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5614. (int)gpus[i].opt_tc);
  5615. fputs("\",\n\"shaders\" : \"", fcfg);
  5616. for(i = 0; i < nDevs; i++)
  5617. fprintf(fcfg, "%s%d", i > 0 ? "," : "",
  5618. (int)gpus[i].shaders);
  5619. #endif
  5620. #ifdef HAVE_ADL
  5621. fputs("\",\n\"gpu-engine\" : \"", fcfg);
  5622. for(i = 0; i < nDevs; i++)
  5623. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_engine, gpus[i].gpu_engine);
  5624. fputs("\",\n\"gpu-fan\" : \"", fcfg);
  5625. for(i = 0; i < nDevs; i++)
  5626. fprintf(fcfg, "%s%d-%d", i > 0 ? "," : "", gpus[i].min_fan, gpus[i].gpu_fan);
  5627. fputs("\",\n\"gpu-memclock\" : \"", fcfg);
  5628. for(i = 0; i < nDevs; i++)
  5629. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memclock);
  5630. fputs("\",\n\"gpu-memdiff\" : \"", fcfg);
  5631. for(i = 0; i < nDevs; i++)
  5632. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_memdiff);
  5633. fputs("\",\n\"gpu-powertune\" : \"", fcfg);
  5634. for(i = 0; i < nDevs; i++)
  5635. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].gpu_powertune);
  5636. fputs("\",\n\"gpu-vddc\" : \"", fcfg);
  5637. for(i = 0; i < nDevs; i++)
  5638. fprintf(fcfg, "%s%1.3f", i > 0 ? "," : "", gpus[i].gpu_vddc);
  5639. fputs("\",\n\"temp-overheat\" : \"", fcfg);
  5640. for(i = 0; i < nDevs; i++)
  5641. fprintf(fcfg, "%s%d", i > 0 ? "," : "", gpus[i].adl.overtemp);
  5642. #endif
  5643. fputs("\"", fcfg);
  5644. }
  5645. #endif
  5646. #ifdef HAVE_ADL
  5647. if (opt_reorder)
  5648. fprintf(fcfg, ",\n\"gpu-reorder\" : true");
  5649. #endif
  5650. #ifdef WANT_CPUMINE
  5651. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5652. #endif
  5653. /* Simple bool and int options */
  5654. struct opt_table *opt;
  5655. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5656. char *p, *name = strdup(opt->names);
  5657. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5658. if (p[1] != '-')
  5659. continue;
  5660. if (opt->type & OPT_NOARG &&
  5661. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5662. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5663. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5664. if (opt->type & OPT_HASARG &&
  5665. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5666. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5667. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5668. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5669. opt->desc != opt_hidden &&
  5670. 0 <= *(int *)opt->u.arg)
  5671. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5672. }
  5673. }
  5674. /* Special case options */
  5675. if (request_target_str)
  5676. {
  5677. if (request_pdiff == (long)request_pdiff)
  5678. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5679. else
  5680. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5681. }
  5682. fprintf(fcfg, ",\n\"shares\" : \"%d\"", opt_shares);
  5683. if (pool_strategy == POOL_BALANCE)
  5684. fputs(",\n\"balance\" : true", fcfg);
  5685. if (pool_strategy == POOL_LOADBALANCE)
  5686. fputs(",\n\"load-balance\" : true", fcfg);
  5687. if (pool_strategy == POOL_ROUNDROBIN)
  5688. fputs(",\n\"round-robin\" : true", fcfg);
  5689. if (pool_strategy == POOL_ROTATE)
  5690. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5691. #if defined(unix) || defined(__APPLE__)
  5692. if (opt_stderr_cmd && *opt_stderr_cmd)
  5693. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5694. #endif // defined(unix)
  5695. if (opt_kernel_path && *opt_kernel_path) {
  5696. char *kpath = strdup(opt_kernel_path);
  5697. if (kpath[strlen(kpath)-1] == '/')
  5698. kpath[strlen(kpath)-1] = 0;
  5699. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5700. free(kpath);
  5701. }
  5702. if (schedstart.enable)
  5703. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5704. if (schedstop.enable)
  5705. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5706. if (opt_socks_proxy && *opt_socks_proxy)
  5707. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5708. _write_config_string_elist(fcfg, "scan", scan_devices);
  5709. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5710. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5711. if (opt_api_allow)
  5712. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5713. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5714. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5715. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5716. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5717. if (*opt_api_mcast_des)
  5718. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5719. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5720. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5721. if (opt_api_groups)
  5722. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5723. if (opt_icarus_options)
  5724. fprintf(fcfg, ",\n\"icarus-options\" : \"%s\"", json_escape(opt_icarus_options));
  5725. if (opt_icarus_timing)
  5726. fprintf(fcfg, ",\n\"icarus-timing\" : \"%s\"", json_escape(opt_icarus_timing));
  5727. #ifdef USE_KLONDIKE
  5728. if (opt_klondike_options)
  5729. fprintf(fcfg, ",\n\"klondike-options\" : \"%s\"", json_escape(opt_klondike_options));
  5730. #endif
  5731. fputs("\n}\n", fcfg);
  5732. json_escape_free();
  5733. }
  5734. void zero_bestshare(void)
  5735. {
  5736. int i;
  5737. best_diff = 0;
  5738. memset(best_share, 0, 8);
  5739. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5740. for (i = 0; i < total_pools; i++) {
  5741. struct pool *pool = pools[i];
  5742. pool->best_diff = 0;
  5743. }
  5744. }
  5745. void zero_stats(void)
  5746. {
  5747. int i;
  5748. applog(LOG_DEBUG, "Zeroing stats");
  5749. cgtime(&total_tv_start);
  5750. miner_started = total_tv_start;
  5751. total_rolling = 0;
  5752. total_mhashes_done = 0;
  5753. total_getworks = 0;
  5754. total_accepted = 0;
  5755. total_rejected = 0;
  5756. hw_errors = 0;
  5757. total_stale = 0;
  5758. total_discarded = 0;
  5759. total_bytes_rcvd = total_bytes_sent = 0;
  5760. new_blocks = 0;
  5761. local_work = 0;
  5762. total_go = 0;
  5763. total_ro = 0;
  5764. total_secs = 1.0;
  5765. total_diff1 = 0;
  5766. total_bad_nonces = 0;
  5767. found_blocks = 0;
  5768. total_diff_accepted = 0;
  5769. total_diff_rejected = 0;
  5770. total_diff_stale = 0;
  5771. #ifdef HAVE_CURSES
  5772. awidth = rwidth = swidth = hwwidth = 1;
  5773. #endif
  5774. for (i = 0; i < total_pools; i++) {
  5775. struct pool *pool = pools[i];
  5776. pool->getwork_requested = 0;
  5777. pool->accepted = 0;
  5778. pool->rejected = 0;
  5779. pool->solved = 0;
  5780. pool->getwork_requested = 0;
  5781. pool->stale_shares = 0;
  5782. pool->discarded_work = 0;
  5783. pool->getfail_occasions = 0;
  5784. pool->remotefail_occasions = 0;
  5785. pool->last_share_time = 0;
  5786. pool->diff1 = 0;
  5787. pool->diff_accepted = 0;
  5788. pool->diff_rejected = 0;
  5789. pool->diff_stale = 0;
  5790. pool->last_share_diff = 0;
  5791. pool->cgminer_stats.start_tv = total_tv_start;
  5792. pool->cgminer_stats.getwork_calls = 0;
  5793. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5794. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5795. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5796. pool->cgminer_pool_stats.getwork_calls = 0;
  5797. pool->cgminer_pool_stats.getwork_attempts = 0;
  5798. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5799. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5800. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5801. pool->cgminer_pool_stats.min_diff = 0;
  5802. pool->cgminer_pool_stats.max_diff = 0;
  5803. pool->cgminer_pool_stats.min_diff_count = 0;
  5804. pool->cgminer_pool_stats.max_diff_count = 0;
  5805. pool->cgminer_pool_stats.times_sent = 0;
  5806. pool->cgminer_pool_stats.bytes_sent = 0;
  5807. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5808. pool->cgminer_pool_stats.times_received = 0;
  5809. pool->cgminer_pool_stats.bytes_received = 0;
  5810. pool->cgminer_pool_stats.net_bytes_received = 0;
  5811. }
  5812. zero_bestshare();
  5813. for (i = 0; i < total_devices; ++i) {
  5814. struct cgpu_info *cgpu = get_devices(i);
  5815. mutex_lock(&hash_lock);
  5816. cgpu->total_mhashes = 0;
  5817. cgpu->accepted = 0;
  5818. cgpu->rejected = 0;
  5819. cgpu->stale = 0;
  5820. cgpu->hw_errors = 0;
  5821. cgpu->utility = 0.0;
  5822. cgpu->utility_diff1 = 0;
  5823. cgpu->last_share_pool_time = 0;
  5824. cgpu->bad_nonces = 0;
  5825. cgpu->diff1 = 0;
  5826. cgpu->diff_accepted = 0;
  5827. cgpu->diff_rejected = 0;
  5828. cgpu->diff_stale = 0;
  5829. cgpu->last_share_diff = 0;
  5830. cgpu->thread_fail_init_count = 0;
  5831. cgpu->thread_zero_hash_count = 0;
  5832. cgpu->thread_fail_queue_count = 0;
  5833. cgpu->dev_sick_idle_60_count = 0;
  5834. cgpu->dev_dead_idle_600_count = 0;
  5835. cgpu->dev_nostart_count = 0;
  5836. cgpu->dev_over_heat_count = 0;
  5837. cgpu->dev_thermal_cutoff_count = 0;
  5838. cgpu->dev_comms_error_count = 0;
  5839. cgpu->dev_throttle_count = 0;
  5840. cgpu->cgminer_stats.start_tv = total_tv_start;
  5841. cgpu->cgminer_stats.getwork_calls = 0;
  5842. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5843. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5844. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5845. mutex_unlock(&hash_lock);
  5846. }
  5847. }
  5848. #ifdef HAVE_CURSES
  5849. static void display_pools(void)
  5850. {
  5851. struct pool *pool;
  5852. int selected, i, j;
  5853. char input;
  5854. opt_loginput = true;
  5855. immedok(logwin, true);
  5856. clear_logwin();
  5857. updated:
  5858. for (j = 0; j < total_pools; j++) {
  5859. for (i = 0; i < total_pools; i++) {
  5860. pool = pools[i];
  5861. if (pool->prio != j)
  5862. continue;
  5863. if (pool == current_pool())
  5864. wattron(logwin, A_BOLD);
  5865. if (pool->enabled != POOL_ENABLED)
  5866. wattron(logwin, A_DIM);
  5867. wlogprint("%d: ", pool->prio);
  5868. switch (pool->enabled) {
  5869. case POOL_ENABLED:
  5870. wlogprint("Enabled ");
  5871. break;
  5872. case POOL_DISABLED:
  5873. wlogprint("Disabled ");
  5874. break;
  5875. case POOL_REJECTING:
  5876. wlogprint("Rejectin ");
  5877. break;
  5878. }
  5879. if (pool->idle)
  5880. wlogprint("Dead ");
  5881. else
  5882. if (pool->has_stratum)
  5883. wlogprint("Strtm");
  5884. else
  5885. if (pool->lp_url && pool->proto != pool->lp_proto)
  5886. wlogprint("Mixed");
  5887. else
  5888. switch (pool->proto) {
  5889. case PLP_GETBLOCKTEMPLATE:
  5890. wlogprint(" GBT ");
  5891. break;
  5892. case PLP_GETWORK:
  5893. wlogprint("GWork");
  5894. break;
  5895. default:
  5896. wlogprint("Alive");
  5897. }
  5898. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  5899. pool->quota,
  5900. pool->pool_no,
  5901. pool->rpc_url, pool->rpc_user);
  5902. wattroff(logwin, A_BOLD | A_DIM);
  5903. break; //for (i = 0; i < total_pools; i++)
  5904. }
  5905. }
  5906. retry:
  5907. wlogprint("\nCurrent pool management strategy: %s\n",
  5908. strategies[pool_strategy].s);
  5909. if (pool_strategy == POOL_ROTATE)
  5910. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  5911. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  5912. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  5913. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  5914. wlogprint("Or press any other key to continue\n");
  5915. logwin_update();
  5916. input = getch();
  5917. if (!strncasecmp(&input, "a", 1)) {
  5918. input_pool(true);
  5919. goto updated;
  5920. } else if (!strncasecmp(&input, "r", 1)) {
  5921. if (total_pools <= 1) {
  5922. wlogprint("Cannot remove last pool");
  5923. goto retry;
  5924. }
  5925. selected = curses_int("Select pool number");
  5926. if (selected < 0 || selected >= total_pools) {
  5927. wlogprint("Invalid selection\n");
  5928. goto retry;
  5929. }
  5930. pool = pools[selected];
  5931. if (pool == current_pool())
  5932. switch_pools(NULL);
  5933. if (pool == current_pool()) {
  5934. wlogprint("Unable to remove pool due to activity\n");
  5935. goto retry;
  5936. }
  5937. disable_pool(pool);
  5938. remove_pool(pool);
  5939. goto updated;
  5940. } else if (!strncasecmp(&input, "s", 1)) {
  5941. selected = curses_int("Select pool number");
  5942. if (selected < 0 || selected >= total_pools) {
  5943. wlogprint("Invalid selection\n");
  5944. goto retry;
  5945. }
  5946. pool = pools[selected];
  5947. enable_pool(pool);
  5948. switch_pools(pool);
  5949. goto updated;
  5950. } else if (!strncasecmp(&input, "d", 1)) {
  5951. if (enabled_pools <= 1) {
  5952. wlogprint("Cannot disable last pool");
  5953. goto retry;
  5954. }
  5955. selected = curses_int("Select pool number");
  5956. if (selected < 0 || selected >= total_pools) {
  5957. wlogprint("Invalid selection\n");
  5958. goto retry;
  5959. }
  5960. pool = pools[selected];
  5961. disable_pool(pool);
  5962. if (pool == current_pool())
  5963. switch_pools(NULL);
  5964. goto updated;
  5965. } else if (!strncasecmp(&input, "e", 1)) {
  5966. selected = curses_int("Select pool number");
  5967. if (selected < 0 || selected >= total_pools) {
  5968. wlogprint("Invalid selection\n");
  5969. goto retry;
  5970. }
  5971. pool = pools[selected];
  5972. enable_pool(pool);
  5973. if (pool->prio < current_pool()->prio)
  5974. switch_pools(pool);
  5975. goto updated;
  5976. } else if (!strncasecmp(&input, "c", 1)) {
  5977. for (i = 0; i <= TOP_STRATEGY; i++)
  5978. wlogprint("%d: %s\n", i, strategies[i].s);
  5979. selected = curses_int("Select strategy number type");
  5980. if (selected < 0 || selected > TOP_STRATEGY) {
  5981. wlogprint("Invalid selection\n");
  5982. goto retry;
  5983. }
  5984. if (selected == POOL_ROTATE) {
  5985. opt_rotate_period = curses_int("Select interval in minutes");
  5986. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  5987. opt_rotate_period = 0;
  5988. wlogprint("Invalid selection\n");
  5989. goto retry;
  5990. }
  5991. }
  5992. pool_strategy = selected;
  5993. switch_pools(NULL);
  5994. goto updated;
  5995. } else if (!strncasecmp(&input, "i", 1)) {
  5996. selected = curses_int("Select pool number");
  5997. if (selected < 0 || selected >= total_pools) {
  5998. wlogprint("Invalid selection\n");
  5999. goto retry;
  6000. }
  6001. pool = pools[selected];
  6002. display_pool_summary(pool);
  6003. goto retry;
  6004. } else if (!strncasecmp(&input, "q", 1)) {
  6005. selected = curses_int("Select pool number");
  6006. if (selected < 0 || selected >= total_pools) {
  6007. wlogprint("Invalid selection\n");
  6008. goto retry;
  6009. }
  6010. pool = pools[selected];
  6011. selected = curses_int("Set quota");
  6012. if (selected < 0) {
  6013. wlogprint("Invalid negative quota\n");
  6014. goto retry;
  6015. }
  6016. pool->quota = selected;
  6017. adjust_quota_gcd();
  6018. goto updated;
  6019. } else if (!strncasecmp(&input, "f", 1)) {
  6020. opt_fail_only ^= true;
  6021. goto updated;
  6022. } else if (!strncasecmp(&input, "p", 1)) {
  6023. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6024. if (!prilist)
  6025. {
  6026. wlogprint("Not changing priorities\n");
  6027. goto retry;
  6028. }
  6029. int res = prioritize_pools(prilist, &i);
  6030. free(prilist);
  6031. switch (res) {
  6032. case MSG_NOPOOL:
  6033. wlogprint("No pools\n");
  6034. goto retry;
  6035. case MSG_MISPID:
  6036. wlogprint("Missing pool id parameter\n");
  6037. goto retry;
  6038. case MSG_INVPID:
  6039. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6040. goto retry;
  6041. case MSG_DUPPID:
  6042. wlogprint("Duplicate pool specified %d\n", i);
  6043. goto retry;
  6044. case MSG_POOLPRIO:
  6045. default:
  6046. goto updated;
  6047. }
  6048. } else
  6049. clear_logwin();
  6050. immedok(logwin, false);
  6051. opt_loginput = false;
  6052. }
  6053. static const char *summary_detail_level_str(void)
  6054. {
  6055. if (opt_compact)
  6056. return "compact";
  6057. if (opt_show_procs)
  6058. return "processors";
  6059. return "devices";
  6060. }
  6061. static void display_options(void)
  6062. {
  6063. int selected;
  6064. char input;
  6065. opt_loginput = true;
  6066. immedok(logwin, true);
  6067. retry:
  6068. clear_logwin();
  6069. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6070. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6071. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6072. "[L]og interval:%d\n[Z]ero statistics\n",
  6073. opt_debug_console ? "on" : "off",
  6074. want_per_device_stats? "on" : "off",
  6075. opt_quiet ? "on" : "off",
  6076. opt_log_output ? "on" : "off",
  6077. opt_protocol ? "on" : "off",
  6078. opt_worktime ? "on" : "off",
  6079. summary_detail_level_str(),
  6080. opt_log_interval);
  6081. wlogprint("Select an option or any other key to return\n");
  6082. logwin_update();
  6083. input = getch();
  6084. if (!strncasecmp(&input, "q", 1)) {
  6085. opt_quiet ^= true;
  6086. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6087. goto retry;
  6088. } else if (!strncasecmp(&input, "v", 1)) {
  6089. opt_log_output ^= true;
  6090. if (opt_log_output)
  6091. opt_quiet = false;
  6092. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6093. goto retry;
  6094. } else if (!strncasecmp(&input, "n", 1)) {
  6095. opt_log_output = false;
  6096. opt_debug_console = false;
  6097. opt_quiet = false;
  6098. opt_protocol = false;
  6099. opt_compact = false;
  6100. opt_show_procs = false;
  6101. devsummaryYOffset = 0;
  6102. want_per_device_stats = false;
  6103. wlogprint("Output mode reset to normal\n");
  6104. switch_logsize();
  6105. goto retry;
  6106. } else if (!strncasecmp(&input, "d", 1)) {
  6107. opt_debug = true;
  6108. opt_debug_console ^= true;
  6109. opt_log_output = opt_debug_console;
  6110. if (opt_debug_console)
  6111. opt_quiet = false;
  6112. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6113. goto retry;
  6114. } else if (!strncasecmp(&input, "m", 1)) {
  6115. if (opt_compact)
  6116. opt_compact = false;
  6117. else
  6118. if (!opt_show_procs)
  6119. opt_show_procs = true;
  6120. else
  6121. {
  6122. opt_compact = true;
  6123. opt_show_procs = false;
  6124. devsummaryYOffset = 0;
  6125. }
  6126. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6127. switch_logsize();
  6128. goto retry;
  6129. } else if (!strncasecmp(&input, "p", 1)) {
  6130. want_per_device_stats ^= true;
  6131. opt_log_output = want_per_device_stats;
  6132. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6133. goto retry;
  6134. } else if (!strncasecmp(&input, "r", 1)) {
  6135. opt_protocol ^= true;
  6136. if (opt_protocol)
  6137. opt_quiet = false;
  6138. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6139. goto retry;
  6140. } else if (!strncasecmp(&input, "c", 1))
  6141. clear_logwin();
  6142. else if (!strncasecmp(&input, "l", 1)) {
  6143. selected = curses_int("Interval in seconds");
  6144. if (selected < 0 || selected > 9999) {
  6145. wlogprint("Invalid selection\n");
  6146. goto retry;
  6147. }
  6148. opt_log_interval = selected;
  6149. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6150. goto retry;
  6151. } else if (!strncasecmp(&input, "s", 1)) {
  6152. opt_realquiet = true;
  6153. } else if (!strncasecmp(&input, "w", 1)) {
  6154. opt_worktime ^= true;
  6155. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6156. goto retry;
  6157. } else if (!strncasecmp(&input, "z", 1)) {
  6158. zero_stats();
  6159. goto retry;
  6160. } else
  6161. clear_logwin();
  6162. immedok(logwin, false);
  6163. opt_loginput = false;
  6164. }
  6165. #endif
  6166. void default_save_file(char *filename)
  6167. {
  6168. #if defined(unix) || defined(__APPLE__)
  6169. if (getenv("HOME") && *getenv("HOME")) {
  6170. strcpy(filename, getenv("HOME"));
  6171. strcat(filename, "/");
  6172. }
  6173. else
  6174. strcpy(filename, "");
  6175. strcat(filename, ".bfgminer/");
  6176. mkdir(filename, 0777);
  6177. #else
  6178. strcpy(filename, "");
  6179. #endif
  6180. strcat(filename, def_conf);
  6181. }
  6182. #ifdef HAVE_CURSES
  6183. static void set_options(void)
  6184. {
  6185. int selected;
  6186. char input;
  6187. opt_loginput = true;
  6188. immedok(logwin, true);
  6189. clear_logwin();
  6190. retry:
  6191. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6192. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6193. "[W]rite config file\n[B]FGMiner restart\n",
  6194. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6195. wlogprint("Select an option or any other key to return\n");
  6196. logwin_update();
  6197. input = getch();
  6198. if (!strncasecmp(&input, "q", 1)) {
  6199. selected = curses_int("Extra work items to queue");
  6200. if (selected < 0 || selected > 9999) {
  6201. wlogprint("Invalid selection\n");
  6202. goto retry;
  6203. }
  6204. opt_queue = selected;
  6205. goto retry;
  6206. } else if (!strncasecmp(&input, "l", 1)) {
  6207. if (want_longpoll)
  6208. stop_longpoll();
  6209. else
  6210. start_longpoll();
  6211. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6212. goto retry;
  6213. } else if (!strncasecmp(&input, "s", 1)) {
  6214. selected = curses_int("Set scantime in seconds");
  6215. if (selected < 0 || selected > 9999) {
  6216. wlogprint("Invalid selection\n");
  6217. goto retry;
  6218. }
  6219. opt_scantime = selected;
  6220. goto retry;
  6221. } else if (!strncasecmp(&input, "e", 1)) {
  6222. selected = curses_int("Set expiry time in seconds");
  6223. if (selected < 0 || selected > 9999) {
  6224. wlogprint("Invalid selection\n");
  6225. goto retry;
  6226. }
  6227. opt_expiry = selected;
  6228. goto retry;
  6229. } else if (!strncasecmp(&input, "r", 1)) {
  6230. selected = curses_int("Retries before failing (-1 infinite)");
  6231. if (selected < -1 || selected > 9999) {
  6232. wlogprint("Invalid selection\n");
  6233. goto retry;
  6234. }
  6235. opt_retries = selected;
  6236. goto retry;
  6237. } else if (!strncasecmp(&input, "w", 1)) {
  6238. FILE *fcfg;
  6239. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6240. default_save_file(filename);
  6241. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6242. str = curses_input(prompt);
  6243. if (str) {
  6244. struct stat statbuf;
  6245. strcpy(filename, str);
  6246. free(str);
  6247. if (!stat(filename, &statbuf)) {
  6248. wlogprint("File exists, overwrite?\n");
  6249. input = getch();
  6250. if (strncasecmp(&input, "y", 1))
  6251. goto retry;
  6252. }
  6253. }
  6254. fcfg = fopen(filename, "w");
  6255. if (!fcfg) {
  6256. wlogprint("Cannot open or create file\n");
  6257. goto retry;
  6258. }
  6259. write_config(fcfg);
  6260. fclose(fcfg);
  6261. goto retry;
  6262. } else if (!strncasecmp(&input, "b", 1)) {
  6263. wlogprint("Are you sure?\n");
  6264. input = getch();
  6265. if (!strncasecmp(&input, "y", 1))
  6266. app_restart();
  6267. else
  6268. clear_logwin();
  6269. } else
  6270. clear_logwin();
  6271. immedok(logwin, false);
  6272. opt_loginput = false;
  6273. }
  6274. int scan_serial(const char *);
  6275. static
  6276. void _managetui_msg(const char *repr, const char **msg)
  6277. {
  6278. if (*msg)
  6279. {
  6280. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6281. wattron(logwin, A_BOLD);
  6282. wlogprint("%s", *msg);
  6283. wattroff(logwin, A_BOLD);
  6284. *msg = NULL;
  6285. }
  6286. logwin_update();
  6287. }
  6288. void manage_device(void)
  6289. {
  6290. char logline[256];
  6291. const char *msg = NULL;
  6292. struct cgpu_info *cgpu;
  6293. const struct device_drv *drv;
  6294. opt_loginput = true;
  6295. selecting_device = true;
  6296. immedok(logwin, true);
  6297. devchange:
  6298. if (unlikely(!total_devices))
  6299. {
  6300. clear_logwin();
  6301. wlogprint("(no devices)\n");
  6302. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6303. _managetui_msg("(none)", &msg);
  6304. int input = getch();
  6305. switch (input)
  6306. {
  6307. case '+': case '=': // add new device
  6308. goto addnew;
  6309. default:
  6310. goto out;
  6311. }
  6312. }
  6313. cgpu = devices[selected_device];
  6314. drv = cgpu->drv;
  6315. refresh_devstatus();
  6316. refresh:
  6317. clear_logwin();
  6318. wlogprint("Select processor to manage using up/down arrow keys\n");
  6319. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6320. wattron(logwin, A_BOLD);
  6321. wlogprint("%s", logline);
  6322. wattroff(logwin, A_BOLD);
  6323. wlogprint("\n");
  6324. if (cgpu->dev_manufacturer)
  6325. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6326. else
  6327. if (cgpu->dev_product)
  6328. wlogprint(" %s\n", cgpu->dev_product);
  6329. if (cgpu->dev_serial)
  6330. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6331. if (cgpu->kname)
  6332. wlogprint("Kernel: %s\n", cgpu->kname);
  6333. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6334. drv->proc_wlogprint_status(cgpu);
  6335. wlogprint("\n");
  6336. // TODO: Last share at TIMESTAMP on pool N
  6337. // TODO: Custom device info/commands
  6338. if (cgpu->deven != DEV_ENABLED)
  6339. wlogprint("[E]nable ");
  6340. if (cgpu->deven != DEV_DISABLED)
  6341. wlogprint("[D]isable ");
  6342. if (drv->identify_device)
  6343. wlogprint("[I]dentify ");
  6344. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6345. drv->proc_tui_wlogprint_choices(cgpu);
  6346. wlogprint("\n");
  6347. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6348. _managetui_msg(cgpu->proc_repr, &msg);
  6349. while (true)
  6350. {
  6351. int input = getch();
  6352. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6353. switch (input) {
  6354. case 'd': case 'D':
  6355. if (cgpu->deven == DEV_DISABLED)
  6356. msg = "Processor already disabled\n";
  6357. else
  6358. {
  6359. cgpu->deven = DEV_DISABLED;
  6360. msg = "Processor being disabled\n";
  6361. }
  6362. goto refresh;
  6363. case 'e': case 'E':
  6364. if (cgpu->deven == DEV_ENABLED)
  6365. msg = "Processor already enabled\n";
  6366. else
  6367. {
  6368. proc_enable(cgpu);
  6369. msg = "Processor being enabled\n";
  6370. }
  6371. goto refresh;
  6372. case 'i': case 'I':
  6373. if (drv->identify_device && drv->identify_device(cgpu))
  6374. msg = "Identify command sent\n";
  6375. else
  6376. goto key_default;
  6377. goto refresh;
  6378. case KEY_DOWN:
  6379. if (selected_device >= total_devices - 1)
  6380. break;
  6381. ++selected_device;
  6382. goto devchange;
  6383. case KEY_UP:
  6384. if (selected_device <= 0)
  6385. break;
  6386. --selected_device;
  6387. goto devchange;
  6388. case KEY_NPAGE:
  6389. {
  6390. if (selected_device >= total_devices - 1)
  6391. break;
  6392. struct cgpu_info *mdev = devices[selected_device]->device;
  6393. do {
  6394. ++selected_device;
  6395. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6396. goto devchange;
  6397. }
  6398. case KEY_PPAGE:
  6399. {
  6400. if (selected_device <= 0)
  6401. break;
  6402. struct cgpu_info *mdev = devices[selected_device]->device;
  6403. do {
  6404. --selected_device;
  6405. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6406. goto devchange;
  6407. }
  6408. case '/': case '?': // find device
  6409. {
  6410. static char *pattern = NULL;
  6411. char *newpattern = curses_input("Enter pattern");
  6412. if (newpattern)
  6413. {
  6414. free(pattern);
  6415. pattern = newpattern;
  6416. }
  6417. else
  6418. if (!pattern)
  6419. pattern = calloc(1, 1);
  6420. int match = cgpu_search(pattern, selected_device + 1);
  6421. if (match == -1)
  6422. {
  6423. msg = "Couldn't find device\n";
  6424. goto refresh;
  6425. }
  6426. selected_device = match;
  6427. goto devchange;
  6428. }
  6429. case '+': case '=': // add new device
  6430. {
  6431. addnew:
  6432. clear_logwin();
  6433. _wlogprint(
  6434. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6435. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6436. "For example: erupter:"
  6437. #ifdef WIN32
  6438. "\\\\.\\COM40"
  6439. #elif defined(__APPLE__)
  6440. "/dev/cu.SLAB_USBtoUART"
  6441. #else
  6442. "/dev/ttyUSB39"
  6443. #endif
  6444. "\n"
  6445. );
  6446. char *scanser = curses_input("Enter target");
  6447. if (scan_serial(scanser))
  6448. {
  6449. selected_device = total_devices - 1;
  6450. msg = "Device scan succeeded\n";
  6451. }
  6452. else
  6453. msg = "No new devices found\n";
  6454. goto devchange;
  6455. }
  6456. case 'Q': case 'q':
  6457. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6458. case '\x1b': // ESC
  6459. case KEY_ENTER:
  6460. case '\r': // Ctrl-M on Windows, with nonl
  6461. #ifdef PADENTER
  6462. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6463. #endif
  6464. case '\n':
  6465. goto out;
  6466. default:
  6467. ;
  6468. key_default:
  6469. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6470. {
  6471. msg = drv->proc_tui_handle_choice(cgpu, input);
  6472. if (msg)
  6473. goto refresh;
  6474. }
  6475. }
  6476. }
  6477. out:
  6478. selecting_device = false;
  6479. clear_logwin();
  6480. immedok(logwin, false);
  6481. opt_loginput = false;
  6482. }
  6483. void show_help(void)
  6484. {
  6485. opt_loginput = true;
  6486. clear_logwin();
  6487. // NOTE: wlogprint is a macro with a buffer limit
  6488. _wlogprint(
  6489. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6490. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6491. "E: # shares * diff per 2kB bw | U: shares/minute | BS: best share ever found\n"
  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_HLINE
  6495. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  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_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6498. U8_HLINE U8_HLINE U8_HLINE U8_BTEE 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. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6502. "\n"
  6503. "devices/processors hashing (only for totals line), hottest temperature\n"
  6504. );
  6505. wlogprint(
  6506. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6507. , opt_log_interval);
  6508. _wlogprint(
  6509. "A: accepted shares | R: rejected+discarded(%% of total)\n"
  6510. "HW: hardware errors / %% nonces invalid\n"
  6511. "\n"
  6512. "Press any key to clear"
  6513. );
  6514. logwin_update();
  6515. getch();
  6516. clear_logwin();
  6517. opt_loginput = false;
  6518. }
  6519. static void *input_thread(void __maybe_unused *userdata)
  6520. {
  6521. RenameThread("input");
  6522. if (!curses_active)
  6523. return NULL;
  6524. while (1) {
  6525. int input;
  6526. input = getch();
  6527. switch (input) {
  6528. case 'h': case 'H': case '?':
  6529. show_help();
  6530. break;
  6531. case 'q': case 'Q':
  6532. kill_work();
  6533. return NULL;
  6534. case 'd': case 'D':
  6535. display_options();
  6536. break;
  6537. case 'm': case 'M':
  6538. manage_device();
  6539. break;
  6540. case 'p': case 'P':
  6541. display_pools();
  6542. break;
  6543. case 's': case 'S':
  6544. set_options();
  6545. break;
  6546. #ifdef HAVE_CURSES
  6547. case KEY_DOWN:
  6548. {
  6549. const int visible_lines = logcursor - devcursor;
  6550. const int invisible_lines = total_lines - visible_lines;
  6551. if (devsummaryYOffset <= -invisible_lines)
  6552. break;
  6553. devsummaryYOffset -= 2;
  6554. }
  6555. case KEY_UP:
  6556. if (devsummaryYOffset == 0)
  6557. break;
  6558. ++devsummaryYOffset;
  6559. refresh_devstatus();
  6560. break;
  6561. #endif
  6562. }
  6563. if (opt_realquiet) {
  6564. disable_curses();
  6565. break;
  6566. }
  6567. }
  6568. return NULL;
  6569. }
  6570. #endif
  6571. static void *api_thread(void *userdata)
  6572. {
  6573. struct thr_info *mythr = userdata;
  6574. pthread_detach(pthread_self());
  6575. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6576. RenameThread("rpc");
  6577. api(api_thr_id);
  6578. mythr->has_pth = false;
  6579. return NULL;
  6580. }
  6581. void thread_reportin(struct thr_info *thr)
  6582. {
  6583. cgtime(&thr->last);
  6584. thr->cgpu->status = LIFE_WELL;
  6585. thr->getwork = 0;
  6586. thr->cgpu->device_last_well = time(NULL);
  6587. }
  6588. void thread_reportout(struct thr_info *thr)
  6589. {
  6590. thr->getwork = time(NULL);
  6591. }
  6592. static void hashmeter(int thr_id, struct timeval *diff,
  6593. uint64_t hashes_done)
  6594. {
  6595. char logstatusline[256];
  6596. struct timeval temp_tv_end, total_diff;
  6597. double secs;
  6598. double local_secs;
  6599. static double local_mhashes_done = 0;
  6600. double local_mhashes = (double)hashes_done / 1000000.0;
  6601. bool showlog = false;
  6602. char cHr[h2bs_fmt_size[H2B_NOUNIT]], aHr[h2bs_fmt_size[H2B_NOUNIT]], uHr[h2bs_fmt_size[H2B_SPACED]];
  6603. char rejpcbuf[6];
  6604. char bnbuf[6];
  6605. struct thr_info *thr;
  6606. /* Update the last time this thread reported in */
  6607. if (thr_id >= 0) {
  6608. thr = get_thread(thr_id);
  6609. cgtime(&(thr->last));
  6610. thr->cgpu->device_last_well = time(NULL);
  6611. }
  6612. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6613. /* So we can call hashmeter from a non worker thread */
  6614. if (thr_id >= 0) {
  6615. struct cgpu_info *cgpu = thr->cgpu;
  6616. int threadobj = cgpu->threads ?: 1;
  6617. double thread_rolling = 0.0;
  6618. int i;
  6619. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6620. thr_id, hashes_done, hashes_done / 1000 / secs);
  6621. /* Rolling average for each thread and each device */
  6622. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6623. for (i = 0; i < threadobj; i++)
  6624. thread_rolling += cgpu->thr[i]->rolling;
  6625. mutex_lock(&hash_lock);
  6626. decay_time(&cgpu->rolling, thread_rolling, secs);
  6627. cgpu->total_mhashes += local_mhashes;
  6628. mutex_unlock(&hash_lock);
  6629. // If needed, output detailed, per-device stats
  6630. if (want_per_device_stats) {
  6631. struct timeval now;
  6632. struct timeval elapsed;
  6633. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6634. cgtime(&now);
  6635. timersub(&now, last_msg_tv, &elapsed);
  6636. if (opt_log_interval <= elapsed.tv_sec) {
  6637. struct cgpu_info *cgpu = thr->cgpu;
  6638. char logline[255];
  6639. *last_msg_tv = now;
  6640. get_statline(logline, sizeof(logline), cgpu);
  6641. if (!curses_active) {
  6642. printf("%s \r", logline);
  6643. fflush(stdout);
  6644. } else
  6645. applog(LOG_INFO, "%s", logline);
  6646. }
  6647. }
  6648. }
  6649. /* Totals are updated by all threads so can race without locking */
  6650. mutex_lock(&hash_lock);
  6651. cgtime(&temp_tv_end);
  6652. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6653. total_mhashes_done += local_mhashes;
  6654. local_mhashes_done += local_mhashes;
  6655. /* Only update with opt_log_interval */
  6656. if (total_diff.tv_sec < opt_log_interval)
  6657. goto out_unlock;
  6658. showlog = true;
  6659. cgtime(&total_tv_end);
  6660. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6661. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6662. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6663. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6664. total_secs = (double)total_diff.tv_sec +
  6665. ((double)total_diff.tv_usec / 1000000.0);
  6666. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6667. multi_format_unit_array2(
  6668. ((char*[]){cHr, aHr, uHr}),
  6669. ((size_t[]){h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_NOUNIT], h2bs_fmt_size[H2B_SPACED]}),
  6670. true, "h/s", H2B_SHORT,
  6671. 3,
  6672. 1e6*total_rolling,
  6673. 1e6*total_mhashes_done / total_secs,
  6674. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6675. #ifdef HAVE_CURSES
  6676. if (curses_active_locked()) {
  6677. float temp = 0;
  6678. struct cgpu_info *proc, *last_working_dev = NULL;
  6679. int i, working_devs = 0, working_procs = 0;
  6680. int divx;
  6681. bool bad = false;
  6682. // Find the highest temperature of all processors
  6683. for (i = 0; i < total_devices; ++i)
  6684. {
  6685. proc = get_devices(i);
  6686. if (proc->temp > temp)
  6687. temp = proc->temp;
  6688. if (unlikely(proc->deven == DEV_DISABLED))
  6689. ; // Just need to block it off from both conditions
  6690. else
  6691. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6692. {
  6693. if (proc->rolling > .1)
  6694. {
  6695. ++working_procs;
  6696. if (proc->device != last_working_dev)
  6697. {
  6698. ++working_devs;
  6699. last_working_dev = proc->device;
  6700. }
  6701. }
  6702. }
  6703. else
  6704. bad = true;
  6705. }
  6706. if (working_devs == working_procs)
  6707. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6708. else
  6709. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6710. divx = 7;
  6711. if (opt_show_procs && !opt_compact)
  6712. ++divx;
  6713. if (bad)
  6714. {
  6715. divx += sizeof(U8_BAD_START)-1;
  6716. strcpy(&statusline[divx], U8_BAD_END);
  6717. divx += sizeof(U8_BAD_END)-1;
  6718. }
  6719. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6720. format_statline(statusline, sizeof(statusline),
  6721. cHr, aHr,
  6722. uHr,
  6723. total_accepted,
  6724. total_rejected,
  6725. total_stale,
  6726. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6727. hw_errors,
  6728. total_bad_nonces, total_bad_nonces + total_diff1);
  6729. unlock_curses();
  6730. }
  6731. #endif
  6732. // Add a space
  6733. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6734. uHr[5] = ' ';
  6735. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6736. percentf4(bnbuf, sizeof(bnbuf), total_bad_nonces, total_diff1);
  6737. snprintf(logstatusline, sizeof(logstatusline),
  6738. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6739. want_per_device_stats ? "ALL " : "",
  6740. opt_log_interval,
  6741. cHr, aHr,
  6742. uHr,
  6743. total_accepted,
  6744. total_rejected,
  6745. total_stale,
  6746. rejpcbuf,
  6747. hw_errors,
  6748. bnbuf
  6749. );
  6750. local_mhashes_done = 0;
  6751. out_unlock:
  6752. mutex_unlock(&hash_lock);
  6753. if (showlog) {
  6754. if (!curses_active) {
  6755. printf("%s \r", logstatusline);
  6756. fflush(stdout);
  6757. } else
  6758. applog(LOG_INFO, "%s", logstatusline);
  6759. }
  6760. }
  6761. void hashmeter2(struct thr_info *thr)
  6762. {
  6763. struct timeval tv_now, tv_elapsed;
  6764. timerclear(&thr->tv_hashes_done);
  6765. cgtime(&tv_now);
  6766. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6767. /* Update the hashmeter at most 5 times per second */
  6768. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6769. tv_elapsed.tv_sec >= opt_log_interval) {
  6770. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6771. thr->hashes_done = 0;
  6772. thr->tv_lastupdate = tv_now;
  6773. }
  6774. }
  6775. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6776. struct stratum_share *sshare)
  6777. {
  6778. struct work *work = sshare->work;
  6779. share_result(val, res_val, err_val, work, false, "");
  6780. }
  6781. /* Parses stratum json responses and tries to find the id that the request
  6782. * matched to and treat it accordingly. */
  6783. bool parse_stratum_response(struct pool *pool, char *s)
  6784. {
  6785. json_t *val = NULL, *err_val, *res_val, *id_val;
  6786. struct stratum_share *sshare;
  6787. json_error_t err;
  6788. bool ret = false;
  6789. int id;
  6790. val = JSON_LOADS(s, &err);
  6791. if (!val) {
  6792. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  6793. goto out;
  6794. }
  6795. res_val = json_object_get(val, "result");
  6796. err_val = json_object_get(val, "error");
  6797. id_val = json_object_get(val, "id");
  6798. if (json_is_null(id_val) || !id_val) {
  6799. char *ss;
  6800. if (err_val)
  6801. ss = json_dumps(err_val, JSON_INDENT(3));
  6802. else
  6803. ss = strdup("(unknown reason)");
  6804. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  6805. free(ss);
  6806. goto out;
  6807. }
  6808. if (!json_is_integer(id_val)) {
  6809. if (json_is_string(id_val)
  6810. && !strncmp(json_string_value(id_val), "txlist", 6))
  6811. {
  6812. const bool is_array = json_is_array(res_val);
  6813. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  6814. is_array ? "transaction list" : "no-transaction-list response",
  6815. pool->pool_no, &json_string_value(id_val)[6]);
  6816. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id) || !is_array)
  6817. // We only care about a transaction list for the current job id
  6818. goto fishy;
  6819. // Check that the transactions actually hash to the merkle links
  6820. {
  6821. unsigned maxtx = 1 << pool->swork.merkles;
  6822. unsigned mintx = maxtx >> 1;
  6823. --maxtx;
  6824. unsigned acttx = (unsigned)json_array_size(res_val);
  6825. if (acttx < mintx || acttx > maxtx) {
  6826. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  6827. pool->pool_no, acttx, mintx, maxtx);
  6828. goto fishy;
  6829. }
  6830. // TODO: Check hashes match actual merkle links
  6831. }
  6832. pool_set_opaque(pool, false);
  6833. timer_unset(&pool->swork.tv_transparency);
  6834. fishy:
  6835. ret = true;
  6836. }
  6837. goto out;
  6838. }
  6839. id = json_integer_value(id_val);
  6840. mutex_lock(&sshare_lock);
  6841. HASH_FIND_INT(stratum_shares, &id, sshare);
  6842. if (sshare)
  6843. HASH_DEL(stratum_shares, sshare);
  6844. mutex_unlock(&sshare_lock);
  6845. if (!sshare) {
  6846. double pool_diff;
  6847. /* Since the share is untracked, we can only guess at what the
  6848. * work difficulty is based on the current pool diff. */
  6849. cg_rlock(&pool->data_lock);
  6850. pool_diff = pool->swork.diff;
  6851. cg_runlock(&pool->data_lock);
  6852. if (json_is_true(res_val)) {
  6853. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  6854. /* We don't know what device this came from so we can't
  6855. * attribute the work to the relevant cgpu */
  6856. mutex_lock(&stats_lock);
  6857. total_accepted++;
  6858. pool->accepted++;
  6859. total_diff_accepted += pool_diff;
  6860. pool->diff_accepted += pool_diff;
  6861. mutex_unlock(&stats_lock);
  6862. } else {
  6863. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  6864. mutex_lock(&stats_lock);
  6865. total_rejected++;
  6866. pool->rejected++;
  6867. total_diff_rejected += pool_diff;
  6868. pool->diff_rejected += pool_diff;
  6869. mutex_unlock(&stats_lock);
  6870. }
  6871. goto out;
  6872. }
  6873. else {
  6874. mutex_lock(&submitting_lock);
  6875. --total_submitting;
  6876. mutex_unlock(&submitting_lock);
  6877. }
  6878. stratum_share_result(val, res_val, err_val, sshare);
  6879. free_work(sshare->work);
  6880. free(sshare);
  6881. ret = true;
  6882. out:
  6883. if (val)
  6884. json_decref(val);
  6885. return ret;
  6886. }
  6887. static void shutdown_stratum(struct pool *pool)
  6888. {
  6889. // Shut down Stratum as if we never had it
  6890. pool->stratum_active = false;
  6891. pool->stratum_init = false;
  6892. pool->has_stratum = false;
  6893. shutdown(pool->sock, SHUT_RDWR);
  6894. free(pool->stratum_url);
  6895. if (pool->sockaddr_url == pool->stratum_url)
  6896. pool->sockaddr_url = NULL;
  6897. pool->stratum_url = NULL;
  6898. }
  6899. void clear_stratum_shares(struct pool *pool)
  6900. {
  6901. int my_mining_threads = mining_threads; // Cached outside of locking
  6902. struct stratum_share *sshare, *tmpshare;
  6903. struct work *work;
  6904. struct cgpu_info *cgpu;
  6905. double diff_cleared = 0;
  6906. double thr_diff_cleared[my_mining_threads];
  6907. int cleared = 0;
  6908. int thr_cleared[my_mining_threads];
  6909. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  6910. for (int i = 0; i < my_mining_threads; ++i)
  6911. {
  6912. thr_diff_cleared[i] = 0;
  6913. thr_cleared[i] = 0;
  6914. }
  6915. mutex_lock(&sshare_lock);
  6916. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  6917. work = sshare->work;
  6918. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  6919. HASH_DEL(stratum_shares, sshare);
  6920. sharelog("disconnect", work);
  6921. diff_cleared += sshare->work->work_difficulty;
  6922. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  6923. ++thr_cleared[work->thr_id];
  6924. free_work(sshare->work);
  6925. free(sshare);
  6926. cleared++;
  6927. }
  6928. }
  6929. mutex_unlock(&sshare_lock);
  6930. if (cleared) {
  6931. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  6932. mutex_lock(&stats_lock);
  6933. pool->stale_shares += cleared;
  6934. total_stale += cleared;
  6935. pool->diff_stale += diff_cleared;
  6936. total_diff_stale += diff_cleared;
  6937. for (int i = 0; i < my_mining_threads; ++i)
  6938. if (thr_cleared[i])
  6939. {
  6940. cgpu = get_thr_cgpu(i);
  6941. cgpu->diff_stale += thr_diff_cleared[i];
  6942. cgpu->stale += thr_cleared[i];
  6943. }
  6944. mutex_unlock(&stats_lock);
  6945. mutex_lock(&submitting_lock);
  6946. total_submitting -= cleared;
  6947. mutex_unlock(&submitting_lock);
  6948. }
  6949. }
  6950. static void resubmit_stratum_shares(struct pool *pool)
  6951. {
  6952. struct stratum_share *sshare, *tmpshare;
  6953. struct work *work;
  6954. unsigned resubmitted = 0;
  6955. mutex_lock(&sshare_lock);
  6956. mutex_lock(&submitting_lock);
  6957. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  6958. if (sshare->work->pool != pool)
  6959. continue;
  6960. HASH_DEL(stratum_shares, sshare);
  6961. work = sshare->work;
  6962. DL_APPEND(submit_waiting, work);
  6963. free(sshare);
  6964. ++resubmitted;
  6965. }
  6966. mutex_unlock(&submitting_lock);
  6967. mutex_unlock(&sshare_lock);
  6968. if (resubmitted) {
  6969. notifier_wake(submit_waiting_notifier);
  6970. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  6971. }
  6972. }
  6973. static void clear_pool_work(struct pool *pool)
  6974. {
  6975. struct work *work, *tmp;
  6976. int cleared = 0;
  6977. mutex_lock(stgd_lock);
  6978. HASH_ITER(hh, staged_work, work, tmp) {
  6979. if (work->pool == pool) {
  6980. HASH_DEL(staged_work, work);
  6981. free_work(work);
  6982. cleared++;
  6983. staged_full = false;
  6984. }
  6985. }
  6986. mutex_unlock(stgd_lock);
  6987. }
  6988. static int cp_prio(void)
  6989. {
  6990. int prio;
  6991. cg_rlock(&control_lock);
  6992. prio = currentpool->prio;
  6993. cg_runlock(&control_lock);
  6994. return prio;
  6995. }
  6996. /* We only need to maintain a secondary pool connection when we need the
  6997. * capacity to get work from the backup pools while still on the primary */
  6998. static bool cnx_needed(struct pool *pool)
  6999. {
  7000. struct pool *cp;
  7001. if (pool->enabled != POOL_ENABLED)
  7002. return false;
  7003. /* Balance strategies need all pools online */
  7004. if (pool_strategy == POOL_BALANCE)
  7005. return true;
  7006. if (pool_strategy == POOL_LOADBALANCE)
  7007. return true;
  7008. /* Idle stratum pool needs something to kick it alive again */
  7009. if (pool->has_stratum && pool->idle)
  7010. return true;
  7011. /* Getwork pools without opt_fail_only need backup pools up to be able
  7012. * to leak shares */
  7013. cp = current_pool();
  7014. if (cp == pool)
  7015. return true;
  7016. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7017. return true;
  7018. /* Keep the connection open to allow any stray shares to be submitted
  7019. * on switching pools for 2 minutes. */
  7020. if (!timer_passed(&pool->tv_last_work_time, NULL))
  7021. return true;
  7022. /* If the pool has only just come to life and is higher priority than
  7023. * the current pool keep the connection open so we can fail back to
  7024. * it. */
  7025. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7026. return true;
  7027. if (pool_unworkable(cp))
  7028. return true;
  7029. /* We've run out of work, bring anything back to life. */
  7030. if (no_work)
  7031. return true;
  7032. return false;
  7033. }
  7034. static void wait_lpcurrent(struct pool *pool);
  7035. static void pool_resus(struct pool *pool);
  7036. static void gen_stratum_work(struct pool *pool, struct work *work);
  7037. static void stratum_resumed(struct pool *pool)
  7038. {
  7039. if (!pool->stratum_notify)
  7040. return;
  7041. if (pool_tclear(pool, &pool->idle)) {
  7042. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7043. pool_resus(pool);
  7044. }
  7045. }
  7046. static bool supports_resume(struct pool *pool)
  7047. {
  7048. bool ret;
  7049. cg_rlock(&pool->data_lock);
  7050. ret = (pool->sessionid != NULL);
  7051. cg_runlock(&pool->data_lock);
  7052. return ret;
  7053. }
  7054. /* One stratum thread per pool that has stratum waits on the socket checking
  7055. * for new messages and for the integrity of the socket connection. We reset
  7056. * the connection based on the integrity of the receive side only as the send
  7057. * side will eventually expire data it fails to send. */
  7058. static void *stratum_thread(void *userdata)
  7059. {
  7060. struct pool *pool = (struct pool *)userdata;
  7061. pthread_detach(pthread_self());
  7062. char threadname[20];
  7063. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7064. RenameThread(threadname);
  7065. srand(time(NULL) + (intptr_t)userdata);
  7066. while (42) {
  7067. struct timeval timeout;
  7068. int sel_ret;
  7069. fd_set rd;
  7070. char *s;
  7071. int sock;
  7072. if (unlikely(!pool->has_stratum))
  7073. break;
  7074. sock = pool->sock;
  7075. /* Check to see whether we need to maintain this connection
  7076. * indefinitely or just bring it up when we switch to this
  7077. * pool */
  7078. if (sock == INVSOCK || (!sock_full(pool) && !cnx_needed(pool))) {
  7079. suspend_stratum(pool);
  7080. clear_stratum_shares(pool);
  7081. clear_pool_work(pool);
  7082. wait_lpcurrent(pool);
  7083. if (!restart_stratum(pool)) {
  7084. pool_died(pool);
  7085. while (!restart_stratum(pool)) {
  7086. if (pool->removed)
  7087. goto out;
  7088. cgsleep_ms(30000);
  7089. }
  7090. }
  7091. }
  7092. FD_ZERO(&rd);
  7093. FD_SET(sock, &rd);
  7094. timeout.tv_sec = 120;
  7095. timeout.tv_usec = 0;
  7096. /* If we fail to receive any notify messages for 2 minutes we
  7097. * assume the connection has been dropped and treat this pool
  7098. * as dead */
  7099. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7100. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7101. s = NULL;
  7102. } else
  7103. s = recv_line(pool);
  7104. if (!s) {
  7105. if (!pool->has_stratum)
  7106. break;
  7107. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7108. pool->getfail_occasions++;
  7109. total_go++;
  7110. mutex_lock(&pool->stratum_lock);
  7111. pool->stratum_active = pool->stratum_notify = false;
  7112. pool->sock = INVSOCK;
  7113. mutex_unlock(&pool->stratum_lock);
  7114. /* If the socket to our stratum pool disconnects, all
  7115. * submissions need to be discarded or resent. */
  7116. if (!supports_resume(pool))
  7117. clear_stratum_shares(pool);
  7118. else
  7119. resubmit_stratum_shares(pool);
  7120. clear_pool_work(pool);
  7121. if (pool == current_pool())
  7122. restart_threads();
  7123. if (restart_stratum(pool))
  7124. continue;
  7125. shutdown_stratum(pool);
  7126. pool_died(pool);
  7127. break;
  7128. }
  7129. /* Check this pool hasn't died while being a backup pool and
  7130. * has not had its idle flag cleared */
  7131. stratum_resumed(pool);
  7132. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7133. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7134. free(s);
  7135. if (pool->swork.clean) {
  7136. struct work *work = make_work();
  7137. /* Generate a single work item to update the current
  7138. * block database */
  7139. pool->swork.clean = false;
  7140. gen_stratum_work(pool, work);
  7141. /* Try to extract block height from coinbase scriptSig */
  7142. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7143. unsigned char cb_height_sz;
  7144. cb_height_sz = bin_height[-1];
  7145. if (cb_height_sz == 3) {
  7146. // FIXME: The block number will overflow this by AD 2173
  7147. uint32_t block_id = ((uint32_t*)work->data)[1];
  7148. uint32_t height = 0;
  7149. memcpy(&height, bin_height, 3);
  7150. height = le32toh(height);
  7151. have_block_height(block_id, height);
  7152. }
  7153. ++pool->work_restart_id;
  7154. if (test_work_current(work)) {
  7155. /* Only accept a work update if this stratum
  7156. * connection is from the current pool */
  7157. if (pool == current_pool()) {
  7158. restart_threads();
  7159. applog(
  7160. (opt_quiet_work_updates ? LOG_DEBUG : LOG_NOTICE),
  7161. "Stratum from pool %d requested work update", pool->pool_no);
  7162. }
  7163. } else
  7164. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7165. free_work(work);
  7166. }
  7167. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7168. // More than 4 timmills past since requested transactions
  7169. timer_unset(&pool->swork.tv_transparency);
  7170. pool_set_opaque(pool, true);
  7171. }
  7172. }
  7173. out:
  7174. return NULL;
  7175. }
  7176. static void init_stratum_thread(struct pool *pool)
  7177. {
  7178. have_longpoll = true;
  7179. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7180. quit(1, "Failed to create stratum thread");
  7181. }
  7182. static void *longpoll_thread(void *userdata);
  7183. static bool stratum_works(struct pool *pool)
  7184. {
  7185. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7186. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7187. return false;
  7188. if (pool->stratum_active)
  7189. return true;
  7190. if (!initiate_stratum(pool))
  7191. return false;
  7192. return true;
  7193. }
  7194. static bool pool_active(struct pool *pool, bool pinging)
  7195. {
  7196. struct timeval tv_getwork, tv_getwork_reply;
  7197. bool ret = false;
  7198. json_t *val;
  7199. CURL *curl;
  7200. int rolltime;
  7201. char *rpc_req;
  7202. struct work *work;
  7203. enum pool_protocol proto;
  7204. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7205. /* This is the central point we activate stratum when we can */
  7206. curl = curl_easy_init();
  7207. if (unlikely(!curl)) {
  7208. applog(LOG_ERR, "CURL initialisation failed");
  7209. return false;
  7210. }
  7211. if (!(want_gbt || want_getwork))
  7212. goto nohttp;
  7213. work = make_work();
  7214. /* Probe for GBT support on first pass */
  7215. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7216. tryagain:
  7217. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7218. work->pool = pool;
  7219. if (!rpc_req)
  7220. goto out;
  7221. pool->probed = false;
  7222. cgtime(&tv_getwork);
  7223. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7224. true, false, &rolltime, pool, false);
  7225. cgtime(&tv_getwork_reply);
  7226. free(rpc_req);
  7227. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7228. * and if so, switch to that in preference to getwork if it works */
  7229. if (pool->stratum_url && want_stratum && (pool->has_stratum || stratum_works(pool))) {
  7230. if (!pool->has_stratum) {
  7231. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7232. if (!pool->rpc_url)
  7233. pool->rpc_url = strdup(pool->stratum_url);
  7234. pool->has_stratum = true;
  7235. }
  7236. free_work(work);
  7237. if (val)
  7238. json_decref(val);
  7239. retry_stratum:
  7240. curl_easy_cleanup(curl);
  7241. /* We create the stratum thread for each pool just after
  7242. * successful authorisation. Once the init flag has been set
  7243. * we never unset it and the stratum thread is responsible for
  7244. * setting/unsetting the active flag */
  7245. bool init = pool_tset(pool, &pool->stratum_init);
  7246. if (!init) {
  7247. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7248. if (ret)
  7249. {
  7250. detect_algo = 2;
  7251. init_stratum_thread(pool);
  7252. }
  7253. else
  7254. pool_tclear(pool, &pool->stratum_init);
  7255. return ret;
  7256. }
  7257. return pool->stratum_active;
  7258. }
  7259. else if (pool->has_stratum)
  7260. shutdown_stratum(pool);
  7261. if (val) {
  7262. bool rc;
  7263. json_t *res;
  7264. res = json_object_get(val, "result");
  7265. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7266. goto badwork;
  7267. work->rolltime = rolltime;
  7268. rc = work_decode(pool, work, val);
  7269. if (rc) {
  7270. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7271. pool->pool_no, pool->rpc_url);
  7272. work->pool = pool;
  7273. copy_time(&work->tv_getwork, &tv_getwork);
  7274. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7275. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7276. calc_diff(work, 0);
  7277. update_last_work(work);
  7278. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7279. stage_work(work);
  7280. total_getworks++;
  7281. pool->getwork_requested++;
  7282. ret = true;
  7283. cgtime(&pool->tv_idle);
  7284. } else {
  7285. badwork:
  7286. json_decref(val);
  7287. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7288. pool->pool_no, pool->rpc_url);
  7289. pool->proto = proto = pool_protocol_fallback(proto);
  7290. if (PLP_NONE != proto)
  7291. goto tryagain;
  7292. free_work(work);
  7293. goto out;
  7294. }
  7295. json_decref(val);
  7296. if (proto != pool->proto) {
  7297. pool->proto = proto;
  7298. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7299. }
  7300. if (pool->lp_url)
  7301. goto out;
  7302. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7303. const struct blktmpl_longpoll_req *lp;
  7304. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7305. // NOTE: work_decode takes care of lp id
  7306. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7307. if (!pool->lp_url)
  7308. {
  7309. ret = false;
  7310. goto out;
  7311. }
  7312. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7313. }
  7314. else
  7315. if (pool->hdr_path && want_getwork) {
  7316. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7317. if (!pool->lp_url)
  7318. {
  7319. ret = false;
  7320. goto out;
  7321. }
  7322. pool->lp_proto = PLP_GETWORK;
  7323. } else
  7324. pool->lp_url = NULL;
  7325. if (want_longpoll && !pool->lp_started) {
  7326. pool->lp_started = true;
  7327. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7328. quit(1, "Failed to create pool longpoll thread");
  7329. }
  7330. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7331. pool->proto = proto;
  7332. goto tryagain;
  7333. } else {
  7334. free_work(work);
  7335. nohttp:
  7336. /* If we failed to parse a getwork, this could be a stratum
  7337. * url without the prefix stratum+tcp:// so let's check it */
  7338. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7339. pool->has_stratum = true;
  7340. goto retry_stratum;
  7341. }
  7342. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7343. pool->pool_no, pool->rpc_url);
  7344. if (!pinging)
  7345. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7346. }
  7347. out:
  7348. curl_easy_cleanup(curl);
  7349. return ret;
  7350. }
  7351. static void pool_resus(struct pool *pool)
  7352. {
  7353. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7354. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7355. else
  7356. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7357. }
  7358. static struct work *hash_pop(void)
  7359. {
  7360. struct work *work = NULL, *tmp;
  7361. int hc;
  7362. struct timespec ts;
  7363. retry:
  7364. mutex_lock(stgd_lock);
  7365. while (!HASH_COUNT(staged_work))
  7366. {
  7367. if (unlikely(staged_full))
  7368. {
  7369. if (likely(opt_queue < 10 + mining_threads))
  7370. {
  7371. ++opt_queue;
  7372. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7373. }
  7374. else
  7375. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7376. staged_full = false; // Let it fill up before triggering an underrun again
  7377. no_work = true;
  7378. }
  7379. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7380. pthread_cond_signal(&gws_cond);
  7381. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7382. {
  7383. run_cmd(cmd_idle);
  7384. pthread_cond_signal(&gws_cond);
  7385. pthread_cond_wait(&getq->cond, stgd_lock);
  7386. }
  7387. }
  7388. no_work = false;
  7389. hc = HASH_COUNT(staged_work);
  7390. /* Find clone work if possible, to allow masters to be reused */
  7391. if (hc > staged_rollable) {
  7392. HASH_ITER(hh, staged_work, work, tmp) {
  7393. if (!work_rollable(work))
  7394. break;
  7395. }
  7396. } else
  7397. work = staged_work;
  7398. if (can_roll(work) && should_roll(work))
  7399. {
  7400. // Instead of consuming it, force it to be cloned and grab the clone
  7401. mutex_unlock(stgd_lock);
  7402. clone_available();
  7403. goto retry;
  7404. }
  7405. HASH_DEL(staged_work, work);
  7406. if (work_rollable(work))
  7407. staged_rollable--;
  7408. /* Signal the getwork scheduler to look for more work */
  7409. pthread_cond_signal(&gws_cond);
  7410. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7411. pthread_cond_signal(&getq->cond);
  7412. mutex_unlock(stgd_lock);
  7413. work->pool->last_work_time = time(NULL);
  7414. cgtime(&work->pool->tv_last_work_time);
  7415. return work;
  7416. }
  7417. /* Clones work by rolling it if possible, and returning a clone instead of the
  7418. * original work item which gets staged again to possibly be rolled again in
  7419. * the future */
  7420. static struct work *clone_work(struct work *work)
  7421. {
  7422. int mrs = mining_threads + opt_queue - total_staged();
  7423. struct work *work_clone;
  7424. bool cloned;
  7425. if (mrs < 1)
  7426. return work;
  7427. cloned = false;
  7428. work_clone = make_clone(work);
  7429. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7430. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7431. stage_work(work_clone);
  7432. roll_work(work);
  7433. work_clone = make_clone(work);
  7434. /* Roll it again to prevent duplicates should this be used
  7435. * directly later on */
  7436. roll_work(work);
  7437. cloned = true;
  7438. }
  7439. if (cloned) {
  7440. stage_work(work);
  7441. return work_clone;
  7442. }
  7443. free_work(work_clone);
  7444. return work;
  7445. }
  7446. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7447. {
  7448. unsigned char hash1[32];
  7449. sha256(data, len, hash1);
  7450. sha256(hash1, 32, hash);
  7451. }
  7452. /* Diff 1 is a 256 bit unsigned integer of
  7453. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7454. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7455. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7456. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7457. {
  7458. uint64_t *data64, h64;
  7459. double d64;
  7460. d64 = diffone;
  7461. d64 /= diff;
  7462. d64 = ceil(d64);
  7463. h64 = d64;
  7464. memset(target, 0, 32);
  7465. if (d64 < 18446744073709551616.0) {
  7466. unsigned char *rtarget = target;
  7467. memset(rtarget, 0, 32);
  7468. if (opt_scrypt)
  7469. data64 = (uint64_t *)(rtarget + 2);
  7470. else
  7471. data64 = (uint64_t *)(rtarget + 4);
  7472. *data64 = htobe64(h64);
  7473. } else {
  7474. /* Support for the classic all FFs just-below-1 diff */
  7475. if (opt_scrypt)
  7476. memset(&target[2], 0xff, 30);
  7477. else
  7478. memset(&target[4], 0xff, 28);
  7479. }
  7480. }
  7481. void set_target(unsigned char *dest_target, double diff)
  7482. {
  7483. unsigned char rtarget[32];
  7484. bdiff_target_leadzero(rtarget, diff);
  7485. swab256(dest_target, rtarget);
  7486. if (opt_debug) {
  7487. char htarget[65];
  7488. bin2hex(htarget, rtarget, 32);
  7489. applog(LOG_DEBUG, "Generated target %s", htarget);
  7490. }
  7491. }
  7492. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7493. {
  7494. *dst = *src;
  7495. dst->job_id = strdup(src->job_id);
  7496. bytes_cpy(&dst->coinbase, &src->coinbase);
  7497. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7498. }
  7499. void stratum_work_clean(struct stratum_work * const swork)
  7500. {
  7501. free(swork->job_id);
  7502. bytes_free(&swork->coinbase);
  7503. bytes_free(&swork->merkle_bin);
  7504. }
  7505. /* Generates stratum based work based on the most recent notify information
  7506. * from the pool. This will keep generating work while a pool is down so we use
  7507. * other means to detect when the pool has died in stratum_thread */
  7508. static void gen_stratum_work(struct pool *pool, struct work *work)
  7509. {
  7510. clean_work(work);
  7511. cg_wlock(&pool->data_lock);
  7512. pool->swork.data_lock_p = &pool->data_lock;
  7513. bytes_resize(&work->nonce2, pool->n2size);
  7514. if (pool->nonce2sz < pool->n2size)
  7515. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7516. memcpy(bytes_buf(&work->nonce2),
  7517. #ifdef WORDS_BIGENDIAN
  7518. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7519. &((char*)&pool->nonce2)[pool->nonce2off],
  7520. #else
  7521. &pool->nonce2,
  7522. #endif
  7523. pool->nonce2sz);
  7524. pool->nonce2++;
  7525. work->pool = pool;
  7526. work->work_restart_id = work->pool->work_restart_id;
  7527. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7528. cgtime(&work->tv_staged);
  7529. }
  7530. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7531. {
  7532. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7533. uint8_t *merkle_bin;
  7534. uint32_t *data32, *swap32;
  7535. int i;
  7536. /* Generate coinbase */
  7537. coinbase = bytes_buf(&swork->coinbase);
  7538. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7539. /* Downgrade to a read lock to read off the variables */
  7540. if (swork->data_lock_p)
  7541. cg_dwlock(swork->data_lock_p);
  7542. /* Generate merkle root */
  7543. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7544. memcpy(merkle_sha, merkle_root, 32);
  7545. merkle_bin = bytes_buf(&swork->merkle_bin);
  7546. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7547. memcpy(merkle_sha + 32, merkle_bin, 32);
  7548. gen_hash(merkle_sha, merkle_root, 64);
  7549. memcpy(merkle_sha, merkle_root, 32);
  7550. }
  7551. data32 = (uint32_t *)merkle_sha;
  7552. swap32 = (uint32_t *)merkle_root;
  7553. flip32(swap32, data32);
  7554. memcpy(&work->data[0], swork->header1, 36);
  7555. memcpy(&work->data[36], merkle_root, 32);
  7556. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7557. memcpy(&work->data[72], swork->diffbits, 4);
  7558. memset(&work->data[76], 0, 4); // nonce
  7559. memcpy(&work->data[80], workpadding_bin, 48);
  7560. /* Store the stratum work diff to check it still matches the pool's
  7561. * stratum diff when submitting shares */
  7562. work->sdiff = swork->diff;
  7563. /* Copy parameters required for share submission */
  7564. work->job_id = strdup(swork->job_id);
  7565. work->nonce1 = strdup(nonce1);
  7566. if (swork->data_lock_p)
  7567. cg_runlock(swork->data_lock_p);
  7568. if (opt_debug)
  7569. {
  7570. char header[161];
  7571. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7572. bin2hex(header, work->data, 80);
  7573. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7574. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7575. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7576. }
  7577. calc_midstate(work);
  7578. set_target(work->target, work->sdiff);
  7579. local_work++;
  7580. work->stratum = true;
  7581. work->blk.nonce = 0;
  7582. work->id = total_work++;
  7583. work->longpoll = false;
  7584. work->getwork_mode = GETWORK_MODE_STRATUM;
  7585. /* Nominally allow a driver to ntime roll 60 seconds */
  7586. work->drv_rolllimit = 60;
  7587. calc_diff(work, 0);
  7588. }
  7589. void request_work(struct thr_info *thr)
  7590. {
  7591. struct cgpu_info *cgpu = thr->cgpu;
  7592. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7593. /* Tell the watchdog thread this thread is waiting on getwork and
  7594. * should not be restarted */
  7595. thread_reportout(thr);
  7596. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7597. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7598. {
  7599. if (proc->threads)
  7600. break;
  7601. thread_reportout(proc->thr[0]);
  7602. }
  7603. cgtime(&dev_stats->_get_start);
  7604. }
  7605. // FIXME: Make this non-blocking (and remove HACK above)
  7606. struct work *get_work(struct thr_info *thr)
  7607. {
  7608. const int thr_id = thr->id;
  7609. struct cgpu_info *cgpu = thr->cgpu;
  7610. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7611. struct cgminer_stats *pool_stats;
  7612. struct timeval tv_get;
  7613. struct work *work = NULL;
  7614. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7615. while (!work) {
  7616. work = hash_pop();
  7617. if (stale_work(work, false)) {
  7618. staged_full = false; // It wasn't really full, since it was stale :(
  7619. discard_work(work);
  7620. work = NULL;
  7621. wake_gws();
  7622. }
  7623. }
  7624. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7625. cgpu->proc_repr, work->id, thr_id);
  7626. work->thr_id = thr_id;
  7627. thread_reportin(thr);
  7628. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7629. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7630. {
  7631. if (proc->threads)
  7632. break;
  7633. thread_reportin(proc->thr[0]);
  7634. }
  7635. work->mined = true;
  7636. work->blk.nonce = 0;
  7637. cgtime(&tv_get);
  7638. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7639. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7640. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7641. dev_stats->getwork_wait_max = tv_get;
  7642. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7643. dev_stats->getwork_wait_min = tv_get;
  7644. ++dev_stats->getwork_calls;
  7645. pool_stats = &(work->pool->cgminer_stats);
  7646. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7647. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7648. pool_stats->getwork_wait_max = tv_get;
  7649. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7650. pool_stats->getwork_wait_min = tv_get;
  7651. ++pool_stats->getwork_calls;
  7652. return work;
  7653. }
  7654. static
  7655. void _submit_work_async(struct work *work)
  7656. {
  7657. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7658. mutex_lock(&submitting_lock);
  7659. ++total_submitting;
  7660. DL_APPEND(submit_waiting, work);
  7661. mutex_unlock(&submitting_lock);
  7662. notifier_wake(submit_waiting_notifier);
  7663. }
  7664. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7665. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7666. {
  7667. if (tv_work_found)
  7668. copy_time(&work->tv_work_found, tv_work_found);
  7669. _submit_work_async(work);
  7670. }
  7671. void inc_hw_errors2(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p)
  7672. {
  7673. struct cgpu_info * const cgpu = thr->cgpu;
  7674. if (bad_nonce_p)
  7675. {
  7676. if (bad_nonce_p == UNKNOWN_NONCE)
  7677. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7678. cgpu->proc_repr);
  7679. else
  7680. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7681. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7682. }
  7683. mutex_lock(&stats_lock);
  7684. hw_errors++;
  7685. ++cgpu->hw_errors;
  7686. if (bad_nonce_p)
  7687. {
  7688. ++total_bad_nonces;
  7689. ++cgpu->bad_nonces;
  7690. }
  7691. mutex_unlock(&stats_lock);
  7692. if (thr->cgpu->drv->hw_error)
  7693. thr->cgpu->drv->hw_error(thr);
  7694. }
  7695. void inc_hw_errors(struct thr_info *thr, const struct work *work, const uint32_t bad_nonce)
  7696. {
  7697. inc_hw_errors2(thr, work, work ? &bad_nonce : NULL);
  7698. }
  7699. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7700. {
  7701. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7702. hash_data(work->hash, work->data);
  7703. if (hash2_32[7] != 0)
  7704. return TNR_BAD;
  7705. if (!checktarget)
  7706. return TNR_GOOD;
  7707. if (!hash_target_check_v(work->hash, work->target))
  7708. return TNR_HIGH;
  7709. return TNR_GOOD;
  7710. }
  7711. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7712. {
  7713. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7714. *work_nonce = htole32(nonce);
  7715. #ifdef USE_SCRYPT
  7716. if (opt_scrypt)
  7717. // NOTE: Depends on scrypt_test return matching enum values
  7718. return scrypt_test(work->data, work->target, nonce);
  7719. #endif
  7720. return hashtest2(work, checktarget);
  7721. }
  7722. /* Returns true if nonce for work was a valid share */
  7723. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7724. {
  7725. return submit_noffset_nonce(thr, work, nonce, 0);
  7726. }
  7727. /* Allows drivers to submit work items where the driver has changed the ntime
  7728. * value by noffset. Must be only used with a work protocol that does not ntime
  7729. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7730. * the original work struct, but the copy of it only. */
  7731. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7732. int noffset)
  7733. {
  7734. struct work *work = make_work();
  7735. _copy_work(work, work_in, noffset);
  7736. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7737. struct timeval tv_work_found;
  7738. enum test_nonce2_result res;
  7739. bool ret = true;
  7740. thread_reportout(thr);
  7741. cgtime(&tv_work_found);
  7742. *work_nonce = htole32(nonce);
  7743. work->thr_id = thr->id;
  7744. /* Do one last check before attempting to submit the work */
  7745. /* Side effect: sets work->data for us */
  7746. res = test_nonce2(work, nonce);
  7747. if (unlikely(res == TNR_BAD))
  7748. {
  7749. inc_hw_errors(thr, work, nonce);
  7750. ret = false;
  7751. goto out;
  7752. }
  7753. mutex_lock(&stats_lock);
  7754. total_diff1++;
  7755. thr->cgpu->diff1++;
  7756. work->pool->diff1++;
  7757. thr->cgpu->last_device_valid_work = time(NULL);
  7758. mutex_unlock(&stats_lock);
  7759. if (noncelog_file)
  7760. noncelog(work);
  7761. if (res == TNR_HIGH)
  7762. {
  7763. // Share above target, normal
  7764. /* Check the diff of the share, even if it didn't reach the
  7765. * target, just to set the best share value if it's higher. */
  7766. share_diff(work);
  7767. goto out;
  7768. }
  7769. submit_work_async2(work, &tv_work_found);
  7770. work = NULL; // Taken by submit_work_async2
  7771. out:
  7772. if (work)
  7773. free_work(work);
  7774. thread_reportin(thr);
  7775. return ret;
  7776. }
  7777. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  7778. {
  7779. if (wdiff->tv_sec > opt_scantime ||
  7780. work->blk.nonce >= MAXTHREADS - hashes ||
  7781. hashes >= 0xfffffffe ||
  7782. stale_work(work, false))
  7783. return true;
  7784. return false;
  7785. }
  7786. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  7787. {
  7788. struct cgpu_info *proc = thr->cgpu;
  7789. if (proc->threads > 1)
  7790. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  7791. else
  7792. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  7793. }
  7794. // Called by asynchronous minerloops, when they find their processor should be disabled
  7795. void mt_disable_start(struct thr_info *mythr)
  7796. {
  7797. struct cgpu_info *cgpu = mythr->cgpu;
  7798. struct device_drv *drv = cgpu->drv;
  7799. if (drv->thread_disable)
  7800. drv->thread_disable(mythr);
  7801. hashmeter2(mythr);
  7802. if (mythr->prev_work)
  7803. free_work(mythr->prev_work);
  7804. mythr->prev_work = mythr->work;
  7805. mythr->work = NULL;
  7806. mythr->_job_transition_in_progress = false;
  7807. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  7808. mythr->rolling = mythr->cgpu->rolling = 0;
  7809. thread_reportout(mythr);
  7810. mythr->_mt_disable_called = true;
  7811. }
  7812. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  7813. * the driver tells us it's full so that it may extract the work item using
  7814. * the get_queued() function which adds it to the hashtable on
  7815. * cgpu->queued_work. */
  7816. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  7817. {
  7818. thread_reportout(mythr);
  7819. do {
  7820. bool need_work;
  7821. /* Do this lockless just to know if we need more unqueued work. */
  7822. need_work = (!cgpu->unqueued_work);
  7823. /* get_work is a blocking function so do it outside of lock
  7824. * to prevent deadlocks with other locks. */
  7825. if (need_work) {
  7826. struct work *work = get_work(mythr);
  7827. wr_lock(&cgpu->qlock);
  7828. /* Check we haven't grabbed work somehow between
  7829. * checking and picking up the lock. */
  7830. if (likely(!cgpu->unqueued_work))
  7831. cgpu->unqueued_work = work;
  7832. else
  7833. need_work = false;
  7834. wr_unlock(&cgpu->qlock);
  7835. if (unlikely(!need_work))
  7836. discard_work(work);
  7837. }
  7838. /* The queue_full function should be used by the driver to
  7839. * actually place work items on the physical device if it
  7840. * does have a queue. */
  7841. } while (drv->queue_full && !drv->queue_full(cgpu));
  7842. }
  7843. /* Add a work item to a cgpu's queued hashlist */
  7844. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  7845. {
  7846. cgpu->queued_count++;
  7847. HASH_ADD_INT(cgpu->queued_work, id, work);
  7848. }
  7849. /* This function is for retrieving one work item from the unqueued pointer and
  7850. * adding it to the hashtable of queued work. Code using this function must be
  7851. * able to handle NULL as a return which implies there is no work available. */
  7852. struct work *get_queued(struct cgpu_info *cgpu)
  7853. {
  7854. struct work *work = NULL;
  7855. wr_lock(&cgpu->qlock);
  7856. if (cgpu->unqueued_work) {
  7857. work = cgpu->unqueued_work;
  7858. __add_queued(cgpu, work);
  7859. cgpu->unqueued_work = NULL;
  7860. }
  7861. wr_unlock(&cgpu->qlock);
  7862. return work;
  7863. }
  7864. void add_queued(struct cgpu_info *cgpu, struct work *work)
  7865. {
  7866. wr_lock(&cgpu->qlock);
  7867. __add_queued(cgpu, work);
  7868. wr_unlock(&cgpu->qlock);
  7869. }
  7870. /* Get fresh work and add it to cgpu's queued hashlist */
  7871. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  7872. {
  7873. struct work *work = get_work(thr);
  7874. add_queued(cgpu, work);
  7875. return work;
  7876. }
  7877. /* This function is for finding an already queued work item in the
  7878. * given que hashtable. Code using this function must be able
  7879. * to handle NULL as a return which implies there is no matching work.
  7880. * The calling function must lock access to the que if it is required.
  7881. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7882. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7883. {
  7884. struct work *work, *tmp, *ret = NULL;
  7885. HASH_ITER(hh, que, work, tmp) {
  7886. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  7887. memcmp(work->data + offset, data, datalen) == 0) {
  7888. ret = work;
  7889. break;
  7890. }
  7891. }
  7892. return ret;
  7893. }
  7894. /* This function is for finding an already queued work item in the
  7895. * device's queued_work hashtable. Code using this function must be able
  7896. * to handle NULL as a return which implies there is no matching work.
  7897. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  7898. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7899. {
  7900. struct work *ret;
  7901. rd_lock(&cgpu->qlock);
  7902. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7903. rd_unlock(&cgpu->qlock);
  7904. return ret;
  7905. }
  7906. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7907. {
  7908. struct work *work, *ret = NULL;
  7909. rd_lock(&cgpu->qlock);
  7910. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7911. if (work)
  7912. ret = copy_work(work);
  7913. rd_unlock(&cgpu->qlock);
  7914. return ret;
  7915. }
  7916. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  7917. {
  7918. cgpu->queued_count--;
  7919. HASH_DEL(cgpu->queued_work, work);
  7920. }
  7921. /* This function should be used by queued device drivers when they're sure
  7922. * the work struct is no longer in use. */
  7923. void work_completed(struct cgpu_info *cgpu, struct work *work)
  7924. {
  7925. wr_lock(&cgpu->qlock);
  7926. __work_completed(cgpu, work);
  7927. wr_unlock(&cgpu->qlock);
  7928. free_work(work);
  7929. }
  7930. /* Combines find_queued_work_bymidstate and work_completed in one function
  7931. * withOUT destroying the work so the driver must free it. */
  7932. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  7933. {
  7934. struct work *work;
  7935. wr_lock(&cgpu->qlock);
  7936. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  7937. if (work)
  7938. __work_completed(cgpu, work);
  7939. wr_unlock(&cgpu->qlock);
  7940. return work;
  7941. }
  7942. static void flush_queue(struct cgpu_info *cgpu)
  7943. {
  7944. struct work *work = NULL;
  7945. wr_lock(&cgpu->qlock);
  7946. work = cgpu->unqueued_work;
  7947. cgpu->unqueued_work = NULL;
  7948. wr_unlock(&cgpu->qlock);
  7949. if (work) {
  7950. free_work(work);
  7951. applog(LOG_DEBUG, "Discarded queued work item");
  7952. }
  7953. }
  7954. /* This version of hash work is for devices that are fast enough to always
  7955. * perform a full nonce range and need a queue to maintain the device busy.
  7956. * Work creation and destruction is not done from within this function
  7957. * directly. */
  7958. void hash_queued_work(struct thr_info *mythr)
  7959. {
  7960. const long cycle = opt_log_interval / 5 ? : 1;
  7961. struct timeval tv_start = {0, 0}, tv_end;
  7962. struct cgpu_info *cgpu = mythr->cgpu;
  7963. struct device_drv *drv = cgpu->drv;
  7964. const int thr_id = mythr->id;
  7965. int64_t hashes_done = 0;
  7966. if (unlikely(cgpu->deven != DEV_ENABLED))
  7967. mt_disable(mythr);
  7968. while (likely(!cgpu->shutdown)) {
  7969. struct timeval diff;
  7970. int64_t hashes;
  7971. fill_queue(mythr, cgpu, drv, thr_id);
  7972. thread_reportin(mythr);
  7973. hashes = drv->scanwork(mythr);
  7974. /* Reset the bool here in case the driver looks for it
  7975. * synchronously in the scanwork loop. */
  7976. mythr->work_restart = false;
  7977. if (unlikely(hashes == -1 )) {
  7978. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  7979. cgpu->deven = DEV_DISABLED;
  7980. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  7981. mt_disable(mythr);
  7982. }
  7983. hashes_done += hashes;
  7984. cgtime(&tv_end);
  7985. timersub(&tv_end, &tv_start, &diff);
  7986. if (diff.tv_sec >= cycle) {
  7987. hashmeter(thr_id, &diff, hashes_done);
  7988. hashes_done = 0;
  7989. copy_time(&tv_start, &tv_end);
  7990. }
  7991. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  7992. mt_disable(mythr);
  7993. if (unlikely(mythr->work_restart)) {
  7994. flush_queue(cgpu);
  7995. if (drv->flush_work)
  7996. drv->flush_work(cgpu);
  7997. }
  7998. }
  7999. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8000. }
  8001. // Called by minerloop, when it is re-enabling a processor
  8002. void mt_disable_finish(struct thr_info *mythr)
  8003. {
  8004. struct device_drv *drv = mythr->cgpu->drv;
  8005. thread_reportin(mythr);
  8006. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8007. if (drv->thread_enable)
  8008. drv->thread_enable(mythr);
  8009. mythr->_mt_disable_called = false;
  8010. }
  8011. // Called by synchronous minerloops, when they find their processor should be disabled
  8012. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8013. void mt_disable(struct thr_info *mythr)
  8014. {
  8015. const struct cgpu_info * const cgpu = mythr->cgpu;
  8016. mt_disable_start(mythr);
  8017. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8018. do {
  8019. notifier_read(mythr->notifier);
  8020. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8021. mt_disable_finish(mythr);
  8022. }
  8023. enum {
  8024. STAT_SLEEP_INTERVAL = 1,
  8025. STAT_CTR_INTERVAL = 10000000,
  8026. FAILURE_INTERVAL = 30,
  8027. };
  8028. /* Stage another work item from the work returned in a longpoll */
  8029. 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)
  8030. {
  8031. bool rc;
  8032. work->rolltime = rolltime;
  8033. rc = work_decode(pool, work, val);
  8034. if (unlikely(!rc)) {
  8035. applog(LOG_ERR, "Could not convert longpoll data to work");
  8036. free_work(work);
  8037. return;
  8038. }
  8039. total_getworks++;
  8040. pool->getwork_requested++;
  8041. work->pool = pool;
  8042. copy_time(&work->tv_getwork, tv_lp);
  8043. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8044. calc_diff(work, 0);
  8045. if (pool->enabled == POOL_REJECTING)
  8046. work->mandatory = true;
  8047. work->longpoll = true;
  8048. work->getwork_mode = GETWORK_MODE_LP;
  8049. update_last_work(work);
  8050. /* We'll be checking this work item twice, but we already know it's
  8051. * from a new block so explicitly force the new block detection now
  8052. * rather than waiting for it to hit the stage thread. This also
  8053. * allows testwork to know whether LP discovered the block or not. */
  8054. test_work_current(work);
  8055. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8056. * the longpoll work from a pool that has been rejecting shares as a
  8057. * way to detect when the pool has recovered.
  8058. */
  8059. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8060. free_work(work);
  8061. return;
  8062. }
  8063. work = clone_work(work);
  8064. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8065. stage_work(work);
  8066. applog(LOG_DEBUG, "Converted longpoll data to work");
  8067. }
  8068. /* If we want longpoll, enable it for the chosen default pool, or, if
  8069. * the pool does not support longpoll, find the first one that does
  8070. * and use its longpoll support */
  8071. static struct pool *select_longpoll_pool(struct pool *cp)
  8072. {
  8073. int i;
  8074. if (cp->lp_url)
  8075. return cp;
  8076. for (i = 0; i < total_pools; i++) {
  8077. struct pool *pool = pools[i];
  8078. if (pool->has_stratum || pool->lp_url)
  8079. return pool;
  8080. }
  8081. return NULL;
  8082. }
  8083. /* This will make the longpoll thread wait till it's the current pool, or it
  8084. * has been flagged as rejecting, before attempting to open any connections.
  8085. */
  8086. static void wait_lpcurrent(struct pool *pool)
  8087. {
  8088. while (!cnx_needed(pool) && (pool->enabled == POOL_DISABLED ||
  8089. (pool != current_pool() && pool_strategy != POOL_LOADBALANCE &&
  8090. pool_strategy != POOL_BALANCE))) {
  8091. mutex_lock(&lp_lock);
  8092. pthread_cond_wait(&lp_cond, &lp_lock);
  8093. mutex_unlock(&lp_lock);
  8094. }
  8095. }
  8096. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8097. struct pool *pool = vpool;
  8098. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8099. pool->lp_socket = sock;
  8100. return sock;
  8101. }
  8102. static void *longpoll_thread(void *userdata)
  8103. {
  8104. struct pool *cp = (struct pool *)userdata;
  8105. /* This *pool is the source of the actual longpoll, not the pool we've
  8106. * tied it to */
  8107. struct timeval start, reply, end;
  8108. struct pool *pool = NULL;
  8109. char threadname[20];
  8110. CURL *curl = NULL;
  8111. int failures = 0;
  8112. char *lp_url;
  8113. int rolltime;
  8114. #ifndef HAVE_PTHREAD_CANCEL
  8115. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8116. #endif
  8117. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8118. RenameThread(threadname);
  8119. curl = curl_easy_init();
  8120. if (unlikely(!curl)) {
  8121. applog(LOG_ERR, "CURL initialisation failed");
  8122. return NULL;
  8123. }
  8124. retry_pool:
  8125. pool = select_longpoll_pool(cp);
  8126. if (!pool) {
  8127. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8128. while (!pool) {
  8129. cgsleep_ms(60000);
  8130. pool = select_longpoll_pool(cp);
  8131. }
  8132. }
  8133. if (pool->has_stratum) {
  8134. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8135. cp->rpc_url, pool->rpc_url);
  8136. goto out;
  8137. }
  8138. /* Any longpoll from any pool is enough for this to be true */
  8139. have_longpoll = true;
  8140. wait_lpcurrent(cp);
  8141. {
  8142. lp_url = pool->lp_url;
  8143. if (cp == pool)
  8144. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8145. else
  8146. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8147. }
  8148. while (42) {
  8149. json_t *val, *soval;
  8150. struct work *work = make_work();
  8151. char *lpreq;
  8152. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8153. work->pool = pool;
  8154. if (!lpreq)
  8155. {
  8156. free_work(work);
  8157. goto lpfail;
  8158. }
  8159. wait_lpcurrent(cp);
  8160. cgtime(&start);
  8161. /* Longpoll connections can be persistent for a very long time
  8162. * and any number of issues could have come up in the meantime
  8163. * so always establish a fresh connection instead of relying on
  8164. * a persistent one. */
  8165. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8166. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8167. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8168. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8169. lpreq, false, true, &rolltime, pool, false);
  8170. pool->lp_socket = CURL_SOCKET_BAD;
  8171. cgtime(&reply);
  8172. free(lpreq);
  8173. if (likely(val)) {
  8174. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8175. if (soval)
  8176. pool->submit_old = json_is_true(soval);
  8177. else
  8178. pool->submit_old = false;
  8179. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8180. failures = 0;
  8181. json_decref(val);
  8182. } else {
  8183. /* Some pools regularly drop the longpoll request so
  8184. * only see this as longpoll failure if it happens
  8185. * immediately and just restart it the rest of the
  8186. * time. */
  8187. cgtime(&end);
  8188. free_work(work);
  8189. if (end.tv_sec - start.tv_sec > 30)
  8190. continue;
  8191. if (failures == 1)
  8192. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8193. lpfail:
  8194. cgsleep_ms(30000);
  8195. }
  8196. if (pool != cp) {
  8197. pool = select_longpoll_pool(cp);
  8198. if (pool->has_stratum) {
  8199. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8200. cp->rpc_url, pool->rpc_url);
  8201. break;
  8202. }
  8203. if (unlikely(!pool))
  8204. goto retry_pool;
  8205. }
  8206. if (unlikely(pool->removed))
  8207. break;
  8208. }
  8209. out:
  8210. curl_easy_cleanup(curl);
  8211. return NULL;
  8212. }
  8213. static void stop_longpoll(void)
  8214. {
  8215. int i;
  8216. want_longpoll = false;
  8217. for (i = 0; i < total_pools; ++i)
  8218. {
  8219. struct pool *pool = pools[i];
  8220. if (unlikely(!pool->lp_started))
  8221. continue;
  8222. pool->lp_started = false;
  8223. pthread_cancel(pool->longpoll_thread);
  8224. }
  8225. have_longpoll = false;
  8226. }
  8227. static void start_longpoll(void)
  8228. {
  8229. int i;
  8230. want_longpoll = true;
  8231. for (i = 0; i < total_pools; ++i)
  8232. {
  8233. struct pool *pool = pools[i];
  8234. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8235. continue;
  8236. pool->lp_started = true;
  8237. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8238. quit(1, "Failed to create pool longpoll thread");
  8239. }
  8240. }
  8241. void reinit_device(struct cgpu_info *cgpu)
  8242. {
  8243. if (cgpu->drv->reinit_device)
  8244. cgpu->drv->reinit_device(cgpu);
  8245. }
  8246. static struct timeval rotate_tv;
  8247. /* We reap curls if they are unused for over a minute */
  8248. static void reap_curl(struct pool *pool)
  8249. {
  8250. struct curl_ent *ent, *iter;
  8251. struct timeval now;
  8252. int reaped = 0;
  8253. cgtime(&now);
  8254. mutex_lock(&pool->pool_lock);
  8255. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8256. if (pool->curls < 2)
  8257. break;
  8258. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8259. reaped++;
  8260. pool->curls--;
  8261. LL_DELETE(pool->curllist, ent);
  8262. curl_easy_cleanup(ent->curl);
  8263. free(ent);
  8264. }
  8265. }
  8266. mutex_unlock(&pool->pool_lock);
  8267. if (reaped)
  8268. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8269. }
  8270. static void *watchpool_thread(void __maybe_unused *userdata)
  8271. {
  8272. int intervals = 0;
  8273. #ifndef HAVE_PTHREAD_CANCEL
  8274. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8275. #endif
  8276. RenameThread("watchpool");
  8277. while (42) {
  8278. struct timeval now;
  8279. int i;
  8280. if (++intervals > 20)
  8281. intervals = 0;
  8282. cgtime(&now);
  8283. for (i = 0; i < total_pools; i++) {
  8284. struct pool *pool = pools[i];
  8285. if (!opt_benchmark)
  8286. reap_curl(pool);
  8287. /* Get a rolling utility per pool over 10 mins */
  8288. if (intervals > 19) {
  8289. int shares = pool->diff1 - pool->last_shares;
  8290. pool->last_shares = pool->diff1;
  8291. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8292. pool->shares = pool->utility;
  8293. }
  8294. if (pool->enabled == POOL_DISABLED)
  8295. continue;
  8296. /* Don't start testing any pools if the test threads
  8297. * from startup are still doing their first attempt. */
  8298. if (unlikely(pool->testing)) {
  8299. pthread_join(pool->test_thread, NULL);
  8300. }
  8301. /* Test pool is idle once every minute */
  8302. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8303. cgtime(&pool->tv_idle);
  8304. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8305. pool_resus(pool);
  8306. }
  8307. /* Only switch pools if the failback pool has been
  8308. * alive for more than 5 minutes to prevent
  8309. * intermittently failing pools from being used. */
  8310. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8311. now.tv_sec - pool->tv_idle.tv_sec > 300) {
  8312. applog(LOG_WARNING, "Pool %d %s stable for 5 mins",
  8313. pool->pool_no, pool->rpc_url);
  8314. switch_pools(NULL);
  8315. }
  8316. }
  8317. if (current_pool()->idle)
  8318. switch_pools(NULL);
  8319. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8320. cgtime(&rotate_tv);
  8321. switch_pools(NULL);
  8322. }
  8323. cgsleep_ms(30000);
  8324. }
  8325. return NULL;
  8326. }
  8327. void mt_enable(struct thr_info *thr)
  8328. {
  8329. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8330. notifier_wake(thr->notifier);
  8331. }
  8332. void proc_enable(struct cgpu_info *cgpu)
  8333. {
  8334. int j;
  8335. cgpu->deven = DEV_ENABLED;
  8336. for (j = cgpu->threads ?: 1; j--; )
  8337. mt_enable(cgpu->thr[j]);
  8338. }
  8339. #define device_recovered(cgpu) proc_enable(cgpu)
  8340. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8341. {
  8342. const struct device_drv * const drv = cgpu->drv;
  8343. struct string_elist *setstr_elist;
  8344. const char *p, *p2;
  8345. char replybuf[0x2000];
  8346. size_t L;
  8347. DL_FOREACH(opt_set_device_list, setstr_elist)
  8348. {
  8349. const char * const setstr = setstr_elist->string;
  8350. p = strchr(setstr, ':');
  8351. if (!p)
  8352. p = setstr;
  8353. {
  8354. L = p - setstr;
  8355. char pattern[L + 1];
  8356. if (L)
  8357. memcpy(pattern, setstr, L);
  8358. pattern[L] = '\0';
  8359. if (!cgpu_match(pattern, cgpu))
  8360. continue;
  8361. }
  8362. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8363. cgpu->proc_repr, __func__, setstr);
  8364. if (!drv->set_device)
  8365. {
  8366. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8367. cgpu->proc_repr, setstr);
  8368. continue;
  8369. }
  8370. if (p[0] == ':')
  8371. ++p;
  8372. p2 = strchr(p, '=');
  8373. if (!p2)
  8374. {
  8375. L = strlen(p);
  8376. p2 = "";
  8377. }
  8378. else
  8379. {
  8380. L = p2 - p;
  8381. ++p2;
  8382. }
  8383. char opt[L + 1];
  8384. if (L)
  8385. memcpy(opt, p, L);
  8386. opt[L] = '\0';
  8387. L = strlen(p2);
  8388. char setval[L + 1];
  8389. if (L)
  8390. memcpy(setval, p2, L);
  8391. setval[L] = '\0';
  8392. p = drv->set_device(cgpu, opt, setval, replybuf);
  8393. if (p)
  8394. applog(LOG_WARNING, "%"PRIpreprv": Applying rule %s: %s",
  8395. cgpu->proc_repr, setstr, p);
  8396. else
  8397. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s",
  8398. cgpu->proc_repr, setstr);
  8399. }
  8400. cgpu->already_set_defaults = true;
  8401. }
  8402. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8403. * the screen at regular intervals, and restarts threads if they appear to have
  8404. * died. */
  8405. #define WATCHDOG_SICK_TIME 60
  8406. #define WATCHDOG_DEAD_TIME 600
  8407. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8408. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8409. static void *watchdog_thread(void __maybe_unused *userdata)
  8410. {
  8411. const unsigned int interval = WATCHDOG_INTERVAL;
  8412. struct timeval zero_tv;
  8413. #ifndef HAVE_PTHREAD_CANCEL
  8414. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8415. #endif
  8416. RenameThread("watchdog");
  8417. memset(&zero_tv, 0, sizeof(struct timeval));
  8418. cgtime(&rotate_tv);
  8419. while (1) {
  8420. int i;
  8421. struct timeval now;
  8422. sleep(interval);
  8423. discard_stale();
  8424. hashmeter(-1, &zero_tv, 0);
  8425. #ifdef HAVE_CURSES
  8426. const int ts = total_staged();
  8427. if (curses_active_locked()) {
  8428. change_logwinsize();
  8429. curses_print_status(ts);
  8430. for (i = 0; i < total_devices; i++)
  8431. curses_print_devstatus(get_devices(i));
  8432. touchwin(statuswin);
  8433. wrefresh(statuswin);
  8434. touchwin(logwin);
  8435. wrefresh(logwin);
  8436. unlock_curses();
  8437. }
  8438. #endif
  8439. cgtime(&now);
  8440. if (!sched_paused && !should_run()) {
  8441. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8442. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8443. if (!schedstart.enable) {
  8444. quit(0, "Terminating execution as planned");
  8445. break;
  8446. }
  8447. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8448. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8449. sched_paused = true;
  8450. rd_lock(&mining_thr_lock);
  8451. for (i = 0; i < mining_threads; i++)
  8452. mining_thr[i]->pause = true;
  8453. rd_unlock(&mining_thr_lock);
  8454. } else if (sched_paused && should_run()) {
  8455. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8456. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8457. if (schedstop.enable)
  8458. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8459. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8460. sched_paused = false;
  8461. for (i = 0; i < mining_threads; i++) {
  8462. struct thr_info *thr;
  8463. thr = get_thread(i);
  8464. thr->pause = false;
  8465. }
  8466. for (i = 0; i < total_devices; ++i)
  8467. {
  8468. struct cgpu_info *cgpu = get_devices(i);
  8469. /* Don't touch disabled devices */
  8470. if (cgpu->deven == DEV_DISABLED)
  8471. continue;
  8472. proc_enable(cgpu);
  8473. }
  8474. }
  8475. for (i = 0; i < total_devices; ++i) {
  8476. struct cgpu_info *cgpu = get_devices(i);
  8477. if (!cgpu->disable_watchdog)
  8478. bfg_watchdog(cgpu, &now);
  8479. }
  8480. }
  8481. return NULL;
  8482. }
  8483. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8484. {
  8485. struct thr_info *thr = cgpu->thr[0];
  8486. enum dev_enable *denable;
  8487. char *dev_str = cgpu->proc_repr;
  8488. int gpu;
  8489. if (likely(drv_ready(cgpu)))
  8490. {
  8491. if (unlikely(!cgpu->already_set_defaults))
  8492. cgpu_set_defaults(cgpu);
  8493. if (cgpu->drv->get_stats)
  8494. cgpu->drv->get_stats(cgpu);
  8495. }
  8496. gpu = cgpu->device_id;
  8497. denable = &cgpu->deven;
  8498. #ifdef HAVE_ADL
  8499. if (adl_active && cgpu->has_adl)
  8500. gpu_autotune(gpu, denable);
  8501. if (opt_debug && cgpu->has_adl) {
  8502. int engineclock = 0, memclock = 0, activity = 0, fanspeed = 0, fanpercent = 0, powertune = 0;
  8503. float temp = 0, vddc = 0;
  8504. if (gpu_stats(gpu, &temp, &engineclock, &memclock, &vddc, &activity, &fanspeed, &fanpercent, &powertune))
  8505. applog(LOG_DEBUG, "%.1f C F: %d%%(%dRPM) E: %dMHz M: %dMHz V: %.3fV A: %d%% P: %d%%",
  8506. temp, fanpercent, fanspeed, engineclock, memclock, vddc, activity, powertune);
  8507. }
  8508. #endif
  8509. /* Thread is disabled */
  8510. if (*denable == DEV_DISABLED)
  8511. return;
  8512. else
  8513. if (*denable == DEV_RECOVER_ERR) {
  8514. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8515. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8516. dev_str);
  8517. if (cgpu->reinit_backoff < 300)
  8518. cgpu->reinit_backoff *= 2;
  8519. device_recovered(cgpu);
  8520. }
  8521. return;
  8522. }
  8523. else
  8524. if (*denable == DEV_RECOVER) {
  8525. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8526. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8527. dev_str);
  8528. device_recovered(cgpu);
  8529. }
  8530. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8531. return;
  8532. }
  8533. else
  8534. if (cgpu->temp > cgpu->cutofftemp)
  8535. {
  8536. applog(LOG_WARNING, "%s hit thermal cutoff limit, disabling!",
  8537. dev_str);
  8538. *denable = DEV_RECOVER;
  8539. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8540. run_cmd(cmd_idle);
  8541. }
  8542. if (thr->getwork) {
  8543. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8544. int thrid;
  8545. bool cgpu_idle = true;
  8546. thr->rolling = 0;
  8547. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8548. if (!cgpu->thr[thrid]->getwork)
  8549. cgpu_idle = false;
  8550. if (cgpu_idle) {
  8551. cgpu->rolling = 0;
  8552. cgpu->status = LIFE_WAIT;
  8553. }
  8554. }
  8555. return;
  8556. }
  8557. else if (cgpu->status == LIFE_WAIT)
  8558. cgpu->status = LIFE_WELL;
  8559. #ifdef WANT_CPUMINE
  8560. if (!strcmp(cgpu->drv->dname, "cpu"))
  8561. return;
  8562. #endif
  8563. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8564. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8565. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8566. cgpu->status = LIFE_WELL;
  8567. cgpu->device_last_well = time(NULL);
  8568. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8569. thr->rolling = cgpu->rolling = 0;
  8570. cgpu->status = LIFE_SICK;
  8571. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8572. cgtime(&thr->sick);
  8573. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8574. run_cmd(cmd_sick);
  8575. #ifdef HAVE_ADL
  8576. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8577. applog(LOG_ERR, "GPU still showing activity suggesting a hard hang.");
  8578. applog(LOG_ERR, "Will not attempt to auto-restart it.");
  8579. } else
  8580. #endif
  8581. if (opt_restart && cgpu->drv->reinit_device) {
  8582. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8583. reinit_device(cgpu);
  8584. }
  8585. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8586. cgpu->status = LIFE_DEAD;
  8587. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8588. cgtime(&thr->sick);
  8589. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8590. run_cmd(cmd_dead);
  8591. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8592. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8593. /* Attempt to restart a GPU that's sick or dead once every minute */
  8594. cgtime(&thr->sick);
  8595. #ifdef HAVE_ADL
  8596. if (adl_active && cgpu->has_adl && gpu_activity(gpu) > 50) {
  8597. /* Again do not attempt to restart a device that may have hard hung */
  8598. } else
  8599. #endif
  8600. if (opt_restart)
  8601. reinit_device(cgpu);
  8602. }
  8603. }
  8604. static void log_print_status(struct cgpu_info *cgpu)
  8605. {
  8606. char logline[255];
  8607. get_statline(logline, sizeof(logline), cgpu);
  8608. applog(LOG_WARNING, "%s", logline);
  8609. }
  8610. void print_summary(void)
  8611. {
  8612. struct timeval diff;
  8613. int hours, mins, secs, i;
  8614. double utility, efficiency = 0.0;
  8615. char xfer[17], bw[19];
  8616. int pool_secs;
  8617. timersub(&total_tv_end, &total_tv_start, &diff);
  8618. hours = diff.tv_sec / 3600;
  8619. mins = (diff.tv_sec % 3600) / 60;
  8620. secs = diff.tv_sec % 60;
  8621. utility = total_accepted / total_secs * 60;
  8622. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8623. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8624. applog(LOG_WARNING, "Started at %s", datestamp);
  8625. if (total_pools == 1)
  8626. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8627. #ifdef WANT_CPUMINE
  8628. if (opt_n_threads)
  8629. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8630. #endif
  8631. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8632. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8633. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8634. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8635. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8636. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8637. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8638. total_rejected, total_stale,
  8639. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8640. );
  8641. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8642. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8643. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8644. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8645. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8646. (float)total_bytes_rcvd,
  8647. (float)total_bytes_sent),
  8648. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8649. (float)(total_bytes_rcvd / total_secs),
  8650. (float)(total_bytes_sent / total_secs)));
  8651. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8652. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8653. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8654. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8655. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8656. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8657. if (total_pools > 1) {
  8658. for (i = 0; i < total_pools; i++) {
  8659. struct pool *pool = pools[i];
  8660. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8661. if (pool->solved)
  8662. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8663. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8664. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8665. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8666. pool->rejected, pool->stale_shares,
  8667. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8668. );
  8669. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8670. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8671. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8672. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8673. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8674. (float)pool->cgminer_pool_stats.net_bytes_received,
  8675. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8676. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8677. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8678. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8679. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8680. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8681. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8682. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8683. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8684. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8685. }
  8686. }
  8687. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8688. for (i = 0; i < total_devices; ++i) {
  8689. struct cgpu_info *cgpu = get_devices(i);
  8690. if ((!cgpu->proc_id) && cgpu->procs > 1)
  8691. {
  8692. // Device summary line
  8693. opt_show_procs = false;
  8694. log_print_status(cgpu);
  8695. opt_show_procs = true;
  8696. }
  8697. log_print_status(cgpu);
  8698. }
  8699. if (opt_shares) {
  8700. applog(LOG_WARNING, "Mined %.0f accepted shares of %d requested\n", total_diff_accepted, opt_shares);
  8701. if (opt_shares > total_diff_accepted)
  8702. applog(LOG_WARNING, "WARNING - Mined only %.0f shares of %d requested.", total_diff_accepted, opt_shares);
  8703. }
  8704. applog(LOG_WARNING, " ");
  8705. fflush(stderr);
  8706. fflush(stdout);
  8707. }
  8708. void _bfg_clean_up(bool restarting)
  8709. {
  8710. #ifdef HAVE_OPENCL
  8711. clear_adl(nDevs);
  8712. #endif
  8713. #ifdef HAVE_LIBUSB
  8714. if (likely(have_libusb))
  8715. libusb_exit(NULL);
  8716. #endif
  8717. cgtime(&total_tv_end);
  8718. #ifdef WIN32
  8719. timeEndPeriod(1);
  8720. #endif
  8721. if (!restarting) {
  8722. /* Attempting to disable curses or print a summary during a
  8723. * restart can lead to a deadlock. */
  8724. #ifdef HAVE_CURSES
  8725. disable_curses();
  8726. #endif
  8727. if (!opt_realquiet && successful_connect)
  8728. print_summary();
  8729. }
  8730. if (opt_n_threads)
  8731. free(cpus);
  8732. curl_global_cleanup();
  8733. }
  8734. void _quit(int status)
  8735. {
  8736. if (status) {
  8737. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  8738. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  8739. int *p = NULL;
  8740. // NOTE debugger can bypass with: p = &p
  8741. *p = status; // Segfault, hopefully dumping core
  8742. }
  8743. }
  8744. #if defined(unix) || defined(__APPLE__)
  8745. if (forkpid > 0) {
  8746. kill(forkpid, SIGTERM);
  8747. forkpid = 0;
  8748. }
  8749. #endif
  8750. exit(status);
  8751. }
  8752. #ifdef HAVE_CURSES
  8753. char *curses_input(const char *query)
  8754. {
  8755. char *input;
  8756. echo();
  8757. input = malloc(255);
  8758. if (!input)
  8759. quit(1, "Failed to malloc input");
  8760. leaveok(logwin, false);
  8761. wlogprint("%s:\n", query);
  8762. wgetnstr(logwin, input, 255);
  8763. if (!strlen(input))
  8764. {
  8765. free(input);
  8766. input = NULL;
  8767. }
  8768. leaveok(logwin, true);
  8769. noecho();
  8770. return input;
  8771. }
  8772. #endif
  8773. static bool pools_active = false;
  8774. static void *test_pool_thread(void *arg)
  8775. {
  8776. struct pool *pool = (struct pool *)arg;
  8777. if (pool_active(pool, false)) {
  8778. pool_tset(pool, &pool->lagging);
  8779. pool_tclear(pool, &pool->idle);
  8780. bool first_pool = false;
  8781. cg_wlock(&control_lock);
  8782. if (!pools_active) {
  8783. currentpool = pool;
  8784. if (pool->pool_no != 0)
  8785. first_pool = true;
  8786. pools_active = true;
  8787. }
  8788. cg_wunlock(&control_lock);
  8789. if (unlikely(first_pool))
  8790. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  8791. else
  8792. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  8793. switch_pools(NULL);
  8794. } else
  8795. pool_died(pool);
  8796. pool->testing = false;
  8797. return NULL;
  8798. }
  8799. /* Always returns true that the pool details were added unless we are not
  8800. * live, implying this is the only pool being added, so if no pools are
  8801. * active it returns false. */
  8802. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  8803. {
  8804. size_t siz;
  8805. pool->rpc_url = url;
  8806. pool->rpc_user = user;
  8807. pool->rpc_pass = pass;
  8808. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  8809. pool->rpc_userpass = malloc(siz);
  8810. if (!pool->rpc_userpass)
  8811. quit(1, "Failed to malloc userpass");
  8812. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  8813. pool->testing = true;
  8814. pool->idle = true;
  8815. enable_pool(pool);
  8816. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  8817. if (!live) {
  8818. pthread_join(pool->test_thread, NULL);
  8819. return pools_active;
  8820. }
  8821. return true;
  8822. }
  8823. #ifdef HAVE_CURSES
  8824. static bool input_pool(bool live)
  8825. {
  8826. char *url = NULL, *user = NULL, *pass = NULL;
  8827. struct pool *pool;
  8828. bool ret = false;
  8829. immedok(logwin, true);
  8830. wlogprint("Input server details.\n");
  8831. url = curses_input("URL");
  8832. if (!url)
  8833. goto out;
  8834. user = curses_input("Username");
  8835. if (!user)
  8836. goto out;
  8837. pass = curses_input("Password");
  8838. if (!pass)
  8839. pass = calloc(1, 1);
  8840. pool = add_pool();
  8841. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  8842. strncmp(url, "https://", 8)) {
  8843. char *httpinput;
  8844. httpinput = malloc(256);
  8845. if (!httpinput)
  8846. quit(1, "Failed to malloc httpinput");
  8847. strcpy(httpinput, "http://");
  8848. strncat(httpinput, url, 248);
  8849. free(url);
  8850. url = httpinput;
  8851. }
  8852. ret = add_pool_details(pool, live, url, user, pass);
  8853. out:
  8854. immedok(logwin, false);
  8855. if (!ret) {
  8856. if (url)
  8857. free(url);
  8858. if (user)
  8859. free(user);
  8860. if (pass)
  8861. free(pass);
  8862. }
  8863. return ret;
  8864. }
  8865. #endif
  8866. #if defined(unix) || defined(__APPLE__)
  8867. static void fork_monitor()
  8868. {
  8869. // Make a pipe: [readFD, writeFD]
  8870. int pfd[2];
  8871. int r = pipe(pfd);
  8872. if (r < 0) {
  8873. perror("pipe - failed to create pipe for --monitor");
  8874. exit(1);
  8875. }
  8876. // Make stderr write end of pipe
  8877. fflush(stderr);
  8878. r = dup2(pfd[1], 2);
  8879. if (r < 0) {
  8880. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  8881. exit(1);
  8882. }
  8883. r = close(pfd[1]);
  8884. if (r < 0) {
  8885. perror("close - failed to close write end of pipe for --monitor");
  8886. exit(1);
  8887. }
  8888. // Don't allow a dying monitor to kill the main process
  8889. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  8890. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  8891. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  8892. perror("signal - failed to edit signal mask for --monitor");
  8893. exit(1);
  8894. }
  8895. // Fork a child process
  8896. forkpid = fork();
  8897. if (forkpid < 0) {
  8898. perror("fork - failed to fork child process for --monitor");
  8899. exit(1);
  8900. }
  8901. // Child: launch monitor command
  8902. if (0 == forkpid) {
  8903. // Make stdin read end of pipe
  8904. r = dup2(pfd[0], 0);
  8905. if (r < 0) {
  8906. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  8907. exit(1);
  8908. }
  8909. close(pfd[0]);
  8910. if (r < 0) {
  8911. perror("close - in child, failed to close read end of pipe for --monitor");
  8912. exit(1);
  8913. }
  8914. // Launch user specified command
  8915. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  8916. perror("execl - in child failed to exec user specified command for --monitor");
  8917. exit(1);
  8918. }
  8919. // Parent: clean up unused fds and bail
  8920. r = close(pfd[0]);
  8921. if (r < 0) {
  8922. perror("close - failed to close read end of pipe for --monitor");
  8923. exit(1);
  8924. }
  8925. }
  8926. #endif // defined(unix)
  8927. #ifdef HAVE_CURSES
  8928. #ifdef USE_UNICODE
  8929. static
  8930. wchar_t select_unicode_char(const wchar_t *opt)
  8931. {
  8932. for ( ; *opt; ++opt)
  8933. if (iswprint(*opt))
  8934. return *opt;
  8935. return '?';
  8936. }
  8937. #endif
  8938. void enable_curses(void) {
  8939. int x;
  8940. __maybe_unused int y;
  8941. lock_curses();
  8942. if (curses_active) {
  8943. unlock_curses();
  8944. return;
  8945. }
  8946. #ifdef USE_UNICODE
  8947. if (use_unicode)
  8948. {
  8949. setlocale(LC_CTYPE, "");
  8950. if (iswprint(0xb0))
  8951. have_unicode_degrees = true;
  8952. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  8953. }
  8954. #endif
  8955. mainwin = initscr();
  8956. start_color();
  8957. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  8958. if (ERR != use_default_colors())
  8959. default_bgcolor = -1;
  8960. #endif
  8961. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  8962. {
  8963. menu_attr = COLOR_PAIR(1);
  8964. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  8965. attr_bad |= COLOR_PAIR(2);
  8966. }
  8967. keypad(mainwin, true);
  8968. getmaxyx(mainwin, y, x);
  8969. statuswin = newwin(logstart, x, 0, 0);
  8970. leaveok(statuswin, true);
  8971. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  8972. // We resize the window later anyway, so just start it off at 1 :)
  8973. logwin = newwin(1, 0, logcursor, 0);
  8974. idlok(logwin, true);
  8975. scrollok(logwin, true);
  8976. leaveok(logwin, true);
  8977. cbreak();
  8978. noecho();
  8979. nonl();
  8980. curses_active = true;
  8981. statusy = logstart;
  8982. unlock_curses();
  8983. }
  8984. #endif
  8985. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  8986. #ifndef WANT_CPUMINE
  8987. struct device_drv cpu_drv;
  8988. struct device_drv cpu_drv = {
  8989. .name = "CPU",
  8990. };
  8991. #endif
  8992. static int cgminer_id_count = 0;
  8993. static int device_line_id_count;
  8994. void register_device(struct cgpu_info *cgpu)
  8995. {
  8996. cgpu->deven = DEV_ENABLED;
  8997. wr_lock(&devices_lock);
  8998. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  8999. wr_unlock(&devices_lock);
  9000. if (!cgpu->proc_id)
  9001. cgpu->device_line_id = device_line_id_count++;
  9002. mining_threads += cgpu->threads ?: 1;
  9003. #ifdef HAVE_CURSES
  9004. adj_width(mining_threads, &dev_width);
  9005. #endif
  9006. rwlock_init(&cgpu->qlock);
  9007. cgpu->queued_work = NULL;
  9008. }
  9009. struct _cgpu_devid_counter {
  9010. char name[4];
  9011. int lastid;
  9012. UT_hash_handle hh;
  9013. };
  9014. void renumber_cgpu(struct cgpu_info *cgpu)
  9015. {
  9016. static struct _cgpu_devid_counter *devids = NULL;
  9017. struct _cgpu_devid_counter *d;
  9018. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9019. if (d)
  9020. cgpu->device_id = ++d->lastid;
  9021. else {
  9022. d = malloc(sizeof(*d));
  9023. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9024. cgpu->device_id = d->lastid = 0;
  9025. HASH_ADD_STR(devids, name, d);
  9026. }
  9027. }
  9028. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9029. {
  9030. sha256(buffer, length, digest);
  9031. return true;
  9032. }
  9033. #ifndef HAVE_PTHREAD_CANCEL
  9034. extern void setup_pthread_cancel_workaround();
  9035. extern struct sigaction pcwm_orig_term_handler;
  9036. #endif
  9037. bool bfg_need_detect_rescan;
  9038. extern void probe_device(struct lowlevel_device_info *);
  9039. static
  9040. void drv_detect_all()
  9041. {
  9042. rescan:
  9043. bfg_need_detect_rescan = false;
  9044. #ifdef HAVE_BFG_LOWLEVEL
  9045. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9046. LL_FOREACH_SAFE(infolist, info, infotmp)
  9047. probe_device(info);
  9048. LL_FOREACH_SAFE(infolist, info, infotmp)
  9049. pthread_join(info->probe_pth, NULL);
  9050. #endif
  9051. struct driver_registration *reg, *tmp;
  9052. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9053. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9054. {
  9055. const struct device_drv * const drv = reg->drv;
  9056. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9057. if (0 == (algos & algomatch) || !drv->drv_detect)
  9058. continue;
  9059. drv->drv_detect();
  9060. }
  9061. #ifdef HAVE_BFG_LOWLEVEL
  9062. lowlevel_scan_free();
  9063. #endif
  9064. if (bfg_need_detect_rescan)
  9065. {
  9066. applog(LOG_DEBUG, "Device rescan requested");
  9067. goto rescan;
  9068. }
  9069. }
  9070. static
  9071. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9072. {
  9073. struct thr_info *thr;
  9074. int j;
  9075. struct device_drv *api = cgpu->drv;
  9076. if (!cgpu->devtype)
  9077. cgpu->devtype = "PGA";
  9078. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9079. int threadobj = cgpu->threads;
  9080. if (!threadobj)
  9081. // Create a fake thread object to handle hashmeter etc
  9082. threadobj = 1;
  9083. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9084. cgpu->thr[threadobj] = NULL;
  9085. cgpu->status = LIFE_INIT;
  9086. if (opt_devices_enabled_list)
  9087. {
  9088. struct string_elist *enablestr_elist;
  9089. cgpu->deven = DEV_DISABLED;
  9090. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9091. {
  9092. const char * const enablestr = enablestr_elist->string;
  9093. if (cgpu_match(enablestr, cgpu))
  9094. {
  9095. cgpu->deven = DEV_ENABLED;
  9096. break;
  9097. }
  9098. }
  9099. }
  9100. cgpu->max_hashes = 0;
  9101. // Setup thread structs before starting any of the threads, in case they try to interact
  9102. for (j = 0; j < threadobj; ++j, ++*kp) {
  9103. thr = get_thread(*kp);
  9104. thr->id = *kp;
  9105. thr->cgpu = cgpu;
  9106. thr->device_thread = j;
  9107. thr->work_restart_notifier[1] = INVSOCK;
  9108. thr->mutex_request[1] = INVSOCK;
  9109. thr->_job_transition_in_progress = true;
  9110. timerclear(&thr->tv_morework);
  9111. thr->scanhash_working = true;
  9112. thr->hashes_done = 0;
  9113. timerclear(&thr->tv_hashes_done);
  9114. cgtime(&thr->tv_lastupdate);
  9115. thr->tv_poll.tv_sec = -1;
  9116. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9117. cgpu->thr[j] = thr;
  9118. }
  9119. if (!cgpu->device->threads)
  9120. notifier_init_invalid(cgpu->thr[0]->notifier);
  9121. else
  9122. if (!cgpu->threads)
  9123. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9124. else
  9125. for (j = 0; j < cgpu->threads; ++j)
  9126. {
  9127. thr = cgpu->thr[j];
  9128. notifier_init(thr->notifier);
  9129. }
  9130. }
  9131. static
  9132. void start_cgpu(struct cgpu_info *cgpu)
  9133. {
  9134. struct thr_info *thr;
  9135. int j;
  9136. for (j = 0; j < cgpu->threads; ++j) {
  9137. thr = cgpu->thr[j];
  9138. /* Enable threads for devices set not to mine but disable
  9139. * their queue in case we wish to enable them later */
  9140. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9141. continue;
  9142. thread_reportout(thr);
  9143. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9144. quit(1, "thread %d create failed", thr->id);
  9145. notifier_wake(thr->notifier);
  9146. }
  9147. if (cgpu->deven == DEV_ENABLED)
  9148. proc_enable(cgpu);
  9149. }
  9150. static
  9151. void _scan_serial(void *p)
  9152. {
  9153. const char *s = p;
  9154. struct string_elist *iter, *tmp;
  9155. struct string_elist *orig_scan_devices = scan_devices;
  9156. if (s)
  9157. {
  9158. // Make temporary scan_devices list
  9159. scan_devices = NULL;
  9160. string_elist_add("noauto", &scan_devices);
  9161. add_serial(s);
  9162. }
  9163. drv_detect_all();
  9164. if (s)
  9165. {
  9166. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9167. {
  9168. string_elist_del(&scan_devices, iter);
  9169. }
  9170. scan_devices = orig_scan_devices;
  9171. }
  9172. }
  9173. #ifdef HAVE_BFG_LOWLEVEL
  9174. static
  9175. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9176. {
  9177. if (!(false
  9178. || (info->serial && !strcasecmp(ser, info->serial))
  9179. || (info->path && !strcasecmp(ser, info->path ))
  9180. ))
  9181. {
  9182. char *devid = devpath_to_devid(ser);
  9183. if (!devid)
  9184. return false;
  9185. const bool different = strcmp(info->devid, devid);
  9186. free(devid);
  9187. if (different)
  9188. return false;
  9189. }
  9190. return true;
  9191. }
  9192. static
  9193. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9194. {
  9195. struct driver_registration *dreg;
  9196. char dname[dnamelen];
  9197. int i;
  9198. for (i = 0; i < dnamelen; ++i)
  9199. dname[i] = tolower(_dname[i]);
  9200. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9201. if (!dreg)
  9202. {
  9203. for (i = 0; i < dnamelen; ++i)
  9204. dname[i] = toupper(_dname[i]);
  9205. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9206. if (!dreg)
  9207. return NULL;
  9208. }
  9209. return dreg->drv;
  9210. }
  9211. static
  9212. bool _probe_device_internal(struct lowlevel_device_info * const info, const char * const dname, const size_t dnamelen)
  9213. {
  9214. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9215. if (!(drv && drv->lowl_probe))
  9216. return false;
  9217. return drv->lowl_probe(info);
  9218. }
  9219. static
  9220. void *probe_device_thread(void *p)
  9221. {
  9222. struct lowlevel_device_info * const infolist = p;
  9223. struct lowlevel_device_info *info = infolist;
  9224. {
  9225. char threadname[5 + strlen(info->devid) + 1];
  9226. sprintf(threadname, "probe_%s", info->devid);
  9227. RenameThread(threadname);
  9228. }
  9229. // If already in use, ignore
  9230. if (bfg_claim_any(NULL, NULL, info->devid))
  9231. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9232. __func__, info->product);
  9233. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9234. struct string_elist *sd_iter, *sd_tmp;
  9235. struct driver_registration *dreg, *dreg_tmp;
  9236. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9237. {
  9238. const char * const dname = sd_iter->string;
  9239. const char * const colon = strpbrk(dname, ":@");
  9240. if (!(colon && colon != dname))
  9241. continue;
  9242. const char * const ser = &colon[1];
  9243. LL_FOREACH2(infolist, info, same_devid_next)
  9244. {
  9245. if (!_probe_device_match(info, ser))
  9246. continue;
  9247. const size_t dnamelen = (colon - dname);
  9248. if (_probe_device_internal(info, dname, dnamelen))
  9249. return NULL;
  9250. }
  9251. }
  9252. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9253. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9254. {
  9255. const struct device_drv * const drv = dreg->drv;
  9256. // Check for "noauto" flag
  9257. // NOTE: driver-specific configuration overrides general
  9258. bool doauto = true;
  9259. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9260. {
  9261. const char * const dname = sd_iter->string;
  9262. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9263. const char *colon = strchr(dname, ':');
  9264. if (!colon)
  9265. colon = &dname[-1];
  9266. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9267. continue;
  9268. const ssize_t dnamelen = (colon - dname);
  9269. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9270. continue;
  9271. doauto = (tolower(colon[1]) == 'a');
  9272. if (dnamelen != -1)
  9273. break;
  9274. }
  9275. if (doauto && drv->lowl_match)
  9276. {
  9277. LL_FOREACH2(infolist, info, same_devid_next)
  9278. {
  9279. if (!drv->lowl_match(info))
  9280. continue;
  9281. if (drv->lowl_probe(info))
  9282. return NULL;
  9283. }
  9284. }
  9285. }
  9286. // probe driver(s) with 'all' enabled
  9287. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9288. {
  9289. const char * const dname = sd_iter->string;
  9290. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9291. const char * const colon = strchr(dname, ':');
  9292. if (!colon)
  9293. {
  9294. LL_FOREACH2(infolist, info, same_devid_next)
  9295. {
  9296. if (
  9297. #ifdef NEED_BFG_LOWL_VCOM
  9298. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9299. #endif
  9300. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9301. {
  9302. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9303. {
  9304. const struct device_drv * const drv = dreg->drv;
  9305. if (drv->lowl_probe_by_name_only)
  9306. continue;
  9307. if (!drv->lowl_probe)
  9308. continue;
  9309. if (drv->lowl_probe(info))
  9310. return NULL;
  9311. }
  9312. break;
  9313. }
  9314. }
  9315. continue;
  9316. }
  9317. if (strcasecmp(&colon[1], "all"))
  9318. continue;
  9319. const size_t dnamelen = (colon - dname);
  9320. LL_FOREACH2(infolist, info, same_devid_next)
  9321. {
  9322. if (_probe_device_internal(info, dname, dnamelen))
  9323. return NULL;
  9324. }
  9325. }
  9326. return NULL;
  9327. }
  9328. void probe_device(struct lowlevel_device_info * const info)
  9329. {
  9330. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9331. }
  9332. #endif
  9333. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9334. {
  9335. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9336. int devcount, i, mining_threads_new = 0;
  9337. unsigned int k;
  9338. struct cgpu_info *cgpu;
  9339. struct thr_info *thr;
  9340. void *p;
  9341. char *dummy = "\0";
  9342. mutex_lock(&mutex);
  9343. devcount = total_devices;
  9344. addfunc(arg);
  9345. if (!total_devices_new)
  9346. goto out;
  9347. wr_lock(&devices_lock);
  9348. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9349. if (unlikely(!p))
  9350. {
  9351. wr_unlock(&devices_lock);
  9352. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9353. goto out;
  9354. }
  9355. devices = p;
  9356. wr_unlock(&devices_lock);
  9357. for (i = 0; i < total_devices_new; ++i)
  9358. {
  9359. cgpu = devices_new[i];
  9360. mining_threads_new += cgpu->threads ?: 1;
  9361. }
  9362. wr_lock(&mining_thr_lock);
  9363. mining_threads_new += mining_threads;
  9364. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9365. if (unlikely(!p))
  9366. {
  9367. wr_unlock(&mining_thr_lock);
  9368. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9369. goto out;
  9370. }
  9371. mining_thr = p;
  9372. wr_unlock(&mining_thr_lock);
  9373. for (i = mining_threads; i < mining_threads_new; ++i) {
  9374. mining_thr[i] = calloc(1, sizeof(*thr));
  9375. if (!mining_thr[i])
  9376. {
  9377. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9378. for ( ; --i >= mining_threads; )
  9379. free(mining_thr[i]);
  9380. goto out;
  9381. }
  9382. }
  9383. k = mining_threads;
  9384. for (i = 0; i < total_devices_new; ++i)
  9385. {
  9386. cgpu = devices_new[i];
  9387. load_temp_config_cgpu(cgpu, &dummy, &dummy);
  9388. allocate_cgpu(cgpu, &k);
  9389. start_cgpu(cgpu);
  9390. register_device(cgpu);
  9391. ++total_devices;
  9392. }
  9393. #ifdef HAVE_CURSES
  9394. switch_logsize();
  9395. #endif
  9396. out:
  9397. total_devices_new = 0;
  9398. devcount = total_devices - devcount;
  9399. mutex_unlock(&mutex);
  9400. return devcount;
  9401. }
  9402. int scan_serial(const char *s)
  9403. {
  9404. return create_new_cgpus(_scan_serial, (void*)s);
  9405. }
  9406. static void probe_pools(void)
  9407. {
  9408. int i;
  9409. for (i = 0; i < total_pools; i++) {
  9410. struct pool *pool = pools[i];
  9411. pool->testing = true;
  9412. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9413. }
  9414. }
  9415. static void raise_fd_limits(void)
  9416. {
  9417. #ifdef HAVE_SETRLIMIT
  9418. struct rlimit fdlimit;
  9419. unsigned long old_soft_limit;
  9420. char frombuf[0x10] = "unlimited";
  9421. char hardbuf[0x10] = "unlimited";
  9422. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9423. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9424. old_soft_limit = fdlimit.rlim_cur;
  9425. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9426. fdlimit.rlim_cur = FD_SETSIZE;
  9427. else
  9428. fdlimit.rlim_cur = fdlimit.rlim_max;
  9429. if (fdlimit.rlim_max != RLIM_INFINITY)
  9430. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9431. if (old_soft_limit != RLIM_INFINITY)
  9432. snprintf(frombuf, sizeof(frombuf), "%lu", old_soft_limit);
  9433. if (fdlimit.rlim_cur == old_soft_limit)
  9434. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9435. old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9436. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9437. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9438. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9439. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9440. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9441. #else
  9442. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9443. #endif
  9444. }
  9445. extern void bfg_init_threadlocal();
  9446. extern void stratumsrv_start();
  9447. int main(int argc, char *argv[])
  9448. {
  9449. struct sigaction handler;
  9450. struct thr_info *thr;
  9451. struct block *block;
  9452. unsigned int k;
  9453. int i;
  9454. char *s;
  9455. #ifdef WIN32
  9456. LoadLibrary("backtrace.dll");
  9457. #endif
  9458. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9459. bfg_init_threadlocal();
  9460. #ifndef HAVE_PTHREAD_CANCEL
  9461. setup_pthread_cancel_workaround();
  9462. #endif
  9463. /* This dangerous functions tramples random dynamically allocated
  9464. * variables so do it before anything at all */
  9465. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  9466. quit(1, "Failed to curl_global_init");
  9467. initial_args = malloc(sizeof(char *) * (argc + 1));
  9468. for (i = 0; i < argc; i++)
  9469. initial_args[i] = strdup(argv[i]);
  9470. initial_args[argc] = NULL;
  9471. mutex_init(&hash_lock);
  9472. mutex_init(&console_lock);
  9473. cglock_init(&control_lock);
  9474. mutex_init(&stats_lock);
  9475. mutex_init(&sharelog_lock);
  9476. cglock_init(&ch_lock);
  9477. mutex_init(&sshare_lock);
  9478. rwlock_init(&blk_lock);
  9479. rwlock_init(&netacc_lock);
  9480. rwlock_init(&mining_thr_lock);
  9481. rwlock_init(&devices_lock);
  9482. mutex_init(&lp_lock);
  9483. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  9484. quit(1, "Failed to pthread_cond_init lp_cond");
  9485. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  9486. quit(1, "Failed to pthread_cond_init gws_cond");
  9487. notifier_init(submit_waiting_notifier);
  9488. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  9489. #ifdef WANT_CPUMINE
  9490. init_max_name_len();
  9491. #endif
  9492. handler.sa_handler = &sighandler;
  9493. handler.sa_flags = 0;
  9494. sigemptyset(&handler.sa_mask);
  9495. #ifdef HAVE_PTHREAD_CANCEL
  9496. sigaction(SIGTERM, &handler, &termhandler);
  9497. #else
  9498. // Need to let pthread_cancel emulation handle SIGTERM first
  9499. termhandler = pcwm_orig_term_handler;
  9500. pcwm_orig_term_handler = handler;
  9501. #endif
  9502. sigaction(SIGINT, &handler, &inthandler);
  9503. #ifndef WIN32
  9504. signal(SIGPIPE, SIG_IGN);
  9505. #else
  9506. timeBeginPeriod(1);
  9507. #endif
  9508. opt_kernel_path = CGMINER_PREFIX;
  9509. cgminer_path = alloca(PATH_MAX);
  9510. s = strdup(argv[0]);
  9511. strcpy(cgminer_path, dirname(s));
  9512. free(s);
  9513. strcat(cgminer_path, "/");
  9514. #ifdef WANT_CPUMINE
  9515. // Hack to make cgminer silent when called recursively on WIN32
  9516. int skip_to_bench = 0;
  9517. #if defined(WIN32)
  9518. char buf[32];
  9519. if (GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, 16))
  9520. skip_to_bench = 1;
  9521. if (GetEnvironmentVariable("CGMINER_BENCH_ALGO", buf, 16))
  9522. skip_to_bench = 1;
  9523. #endif // defined(WIN32)
  9524. #endif
  9525. devcursor = 8;
  9526. logstart = devcursor;
  9527. logcursor = logstart;
  9528. block = calloc(sizeof(struct block), 1);
  9529. if (unlikely(!block))
  9530. quit (1, "main OOM");
  9531. for (i = 0; i < 36; i++)
  9532. strcat(block->hash, "0");
  9533. HASH_ADD_STR(blocks, hash, block);
  9534. strcpy(current_block, block->hash);
  9535. mutex_init(&submitting_lock);
  9536. #ifdef HAVE_OPENCL
  9537. memset(gpus, 0, sizeof(gpus));
  9538. for (i = 0; i < MAX_GPUDEVICES; i++)
  9539. gpus[i].dynamic = true;
  9540. #endif
  9541. schedstart.tm.tm_sec = 1;
  9542. schedstop .tm.tm_sec = 1;
  9543. /* parse command line */
  9544. opt_register_table(opt_config_table,
  9545. "Options for both config file and command line");
  9546. opt_register_table(opt_cmdline_table,
  9547. "Options for command line only");
  9548. opt_parse(&argc, argv, applog_and_exit);
  9549. if (argc != 1)
  9550. quit(1, "Unexpected extra commandline arguments");
  9551. if (!config_loaded)
  9552. load_default_config();
  9553. #ifndef HAVE_PTHREAD_CANCEL
  9554. // Can't do this any earlier, or config isn't loaded
  9555. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  9556. #endif
  9557. #ifdef HAVE_PWD_H
  9558. struct passwd *user_info = NULL;
  9559. if (opt_setuid != NULL) {
  9560. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  9561. quit(1, "Unable to find setuid user information");
  9562. }
  9563. }
  9564. #endif
  9565. #ifdef HAVE_CHROOT
  9566. if (chroot_dir != NULL) {
  9567. #ifdef HAVE_PWD_H
  9568. if (user_info == NULL && getuid() == 0) {
  9569. applog(LOG_WARNING, "Running as root inside chroot");
  9570. }
  9571. #endif
  9572. if (chroot(chroot_dir) != 0) {
  9573. quit(1, "Unable to chroot");
  9574. }
  9575. if (chdir("/"))
  9576. quit(1, "Unable to chdir to chroot");
  9577. }
  9578. #endif
  9579. #ifdef HAVE_PWD_H
  9580. if (user_info != NULL) {
  9581. if (setgid((*user_info).pw_gid) != 0)
  9582. quit(1, "Unable to setgid");
  9583. if (setuid((*user_info).pw_uid) != 0)
  9584. quit(1, "Unable to setuid");
  9585. }
  9586. #endif
  9587. raise_fd_limits();
  9588. if (opt_benchmark) {
  9589. struct pool *pool;
  9590. if (opt_scrypt)
  9591. quit(1, "Cannot use benchmark mode with scrypt");
  9592. want_longpoll = false;
  9593. pool = add_pool();
  9594. pool->rpc_url = malloc(255);
  9595. strcpy(pool->rpc_url, "Benchmark");
  9596. pool->rpc_user = pool->rpc_url;
  9597. pool->rpc_pass = pool->rpc_url;
  9598. enable_pool(pool);
  9599. pool->idle = false;
  9600. successful_connect = true;
  9601. }
  9602. if (opt_unittest) {
  9603. test_cgpu_match();
  9604. test_intrange();
  9605. test_decimal_width();
  9606. utf8_test();
  9607. }
  9608. #ifdef HAVE_CURSES
  9609. if (opt_realquiet || opt_display_devs)
  9610. use_curses = false;
  9611. setlocale(LC_ALL, "C");
  9612. if (use_curses)
  9613. enable_curses();
  9614. #endif
  9615. #ifdef HAVE_LIBUSB
  9616. int err = libusb_init(NULL);
  9617. if (err)
  9618. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  9619. else
  9620. have_libusb = true;
  9621. #endif
  9622. applog(LOG_WARNING, "Started %s", packagename);
  9623. if (cnfbuf) {
  9624. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  9625. switch (fileconf_load) {
  9626. case 0:
  9627. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  9628. applog(LOG_WARNING, "Configuration file could not be used.");
  9629. break;
  9630. case -1:
  9631. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  9632. if (use_curses)
  9633. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  9634. break;
  9635. default:
  9636. break;
  9637. }
  9638. free(cnfbuf);
  9639. cnfbuf = NULL;
  9640. }
  9641. i = strlen(opt_kernel_path) + 2;
  9642. char __kernel_path[i];
  9643. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  9644. opt_kernel_path = __kernel_path;
  9645. if (want_per_device_stats)
  9646. opt_log_output = true;
  9647. #ifdef WANT_CPUMINE
  9648. #ifdef USE_SCRYPT
  9649. if (opt_scrypt)
  9650. set_scrypt_algo(&opt_algo);
  9651. else
  9652. #endif
  9653. if (0 <= opt_bench_algo) {
  9654. double rate = bench_algo_stage3(opt_bench_algo);
  9655. if (!skip_to_bench)
  9656. printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]);
  9657. else {
  9658. // Write result to shared memory for parent
  9659. #if defined(WIN32)
  9660. char unique_name[64];
  9661. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32) || GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) {
  9662. HANDLE map_handle = CreateFileMapping(
  9663. INVALID_HANDLE_VALUE, // use paging file
  9664. NULL, // default security attributes
  9665. PAGE_READWRITE, // read/write access
  9666. 0, // size: high 32-bits
  9667. 4096, // size: low 32-bits
  9668. unique_name // name of map object
  9669. );
  9670. if (NULL != map_handle) {
  9671. void *shared_mem = MapViewOfFile(
  9672. map_handle, // object to map view of
  9673. FILE_MAP_WRITE, // read/write access
  9674. 0, // high offset: map from
  9675. 0, // low offset: beginning
  9676. 0 // default: map entire file
  9677. );
  9678. if (NULL != shared_mem)
  9679. CopyMemory(shared_mem, &rate, sizeof(rate));
  9680. (void)UnmapViewOfFile(shared_mem);
  9681. }
  9682. (void)CloseHandle(map_handle);
  9683. }
  9684. #endif
  9685. }
  9686. exit(0);
  9687. }
  9688. #endif
  9689. bfg_devapi_init();
  9690. drv_detect_all();
  9691. total_devices = total_devices_new;
  9692. devices = devices_new;
  9693. total_devices_new = 0;
  9694. devices_new = NULL;
  9695. if (opt_display_devs) {
  9696. int devcount = 0;
  9697. applog(LOG_ERR, "Devices detected:");
  9698. for (i = 0; i < total_devices; ++i) {
  9699. struct cgpu_info *cgpu = devices[i];
  9700. char buf[0x100];
  9701. if (cgpu->device != cgpu)
  9702. continue;
  9703. if (cgpu->name)
  9704. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  9705. else
  9706. if (cgpu->dev_manufacturer)
  9707. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  9708. else
  9709. if (cgpu->dev_product)
  9710. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  9711. else
  9712. strcpy(buf, " Device");
  9713. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  9714. if (cgpu->dev_serial)
  9715. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  9716. if (cgpu->device_path)
  9717. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  9718. tailsprintf(buf, sizeof(buf), ")");
  9719. _applog(LOG_NOTICE, buf);
  9720. ++devcount;
  9721. }
  9722. quit(0, "%d devices listed", devcount);
  9723. }
  9724. mining_threads = 0;
  9725. for (i = 0; i < total_devices; ++i)
  9726. register_device(devices[i]);
  9727. if (!total_devices) {
  9728. applog(LOG_WARNING, "No devices detected!");
  9729. if (use_curses)
  9730. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  9731. else
  9732. applog(LOG_WARNING, "Waiting for devices");
  9733. }
  9734. load_temp_config();
  9735. #ifdef HAVE_CURSES
  9736. switch_logsize();
  9737. #endif
  9738. if (!total_pools) {
  9739. applog(LOG_WARNING, "Need to specify at least one pool server.");
  9740. #ifdef HAVE_CURSES
  9741. if (!use_curses || !input_pool(false))
  9742. #endif
  9743. quit(1, "Pool setup failed");
  9744. }
  9745. for (i = 0; i < total_pools; i++) {
  9746. struct pool *pool = pools[i];
  9747. size_t siz;
  9748. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9749. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9750. if (!pool->rpc_url)
  9751. quit(1, "No URI supplied for pool %u", i);
  9752. if (!pool->rpc_userpass) {
  9753. if (!pool->rpc_user || !pool->rpc_pass)
  9754. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  9755. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9756. pool->rpc_userpass = malloc(siz);
  9757. if (!pool->rpc_userpass)
  9758. quit(1, "Failed to malloc userpass");
  9759. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9760. }
  9761. }
  9762. /* Set the currentpool to pool with priority 0 */
  9763. validate_pool_priorities();
  9764. for (i = 0; i < total_pools; i++) {
  9765. struct pool *pool = pools[i];
  9766. if (!pool->prio)
  9767. currentpool = pool;
  9768. }
  9769. #ifdef HAVE_SYSLOG_H
  9770. if (use_syslog)
  9771. openlog(PACKAGE, LOG_PID, LOG_USER);
  9772. #endif
  9773. #if defined(unix) || defined(__APPLE__)
  9774. if (opt_stderr_cmd)
  9775. fork_monitor();
  9776. #endif // defined(unix)
  9777. mining_thr = calloc(mining_threads, sizeof(thr));
  9778. if (!mining_thr)
  9779. quit(1, "Failed to calloc mining_thr");
  9780. for (i = 0; i < mining_threads; i++) {
  9781. mining_thr[i] = calloc(1, sizeof(*thr));
  9782. if (!mining_thr[i])
  9783. quit(1, "Failed to calloc mining_thr[%d]", i);
  9784. }
  9785. total_control_threads = 6;
  9786. control_thr = calloc(total_control_threads, sizeof(*thr));
  9787. if (!control_thr)
  9788. quit(1, "Failed to calloc control_thr");
  9789. gwsched_thr_id = 0;
  9790. /* Create a unique get work queue */
  9791. getq = tq_new();
  9792. if (!getq)
  9793. quit(1, "Failed to create getq");
  9794. /* We use the getq mutex as the staged lock */
  9795. stgd_lock = &getq->mutex;
  9796. if (opt_benchmark)
  9797. goto begin_bench;
  9798. for (i = 0; i < total_pools; i++) {
  9799. struct pool *pool = pools[i];
  9800. enable_pool(pool);
  9801. pool->idle = true;
  9802. }
  9803. applog(LOG_NOTICE, "Probing for an alive pool");
  9804. do {
  9805. bool still_testing;
  9806. int i;
  9807. /* Look for at least one active pool before starting */
  9808. probe_pools();
  9809. do {
  9810. sleep(1);
  9811. if (pools_active)
  9812. break;
  9813. still_testing = false;
  9814. for (int i = 0; i < total_pools; ++i)
  9815. if (pools[i]->testing)
  9816. still_testing = true;
  9817. } while (still_testing);
  9818. if (!pools_active) {
  9819. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  9820. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  9821. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  9822. for (i = 0; i < total_pools; i++) {
  9823. struct pool *pool;
  9824. pool = pools[i];
  9825. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  9826. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  9827. }
  9828. #ifdef HAVE_CURSES
  9829. if (use_curses) {
  9830. halfdelay(150);
  9831. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  9832. if (getch() != ERR)
  9833. quit(0, "No servers could be used! Exiting.");
  9834. cbreak();
  9835. } else
  9836. #endif
  9837. quit(0, "No servers could be used! Exiting.");
  9838. }
  9839. } while (!pools_active);
  9840. #ifdef USE_SCRYPT
  9841. if (detect_algo == 1 && !opt_scrypt) {
  9842. applog(LOG_NOTICE, "Detected scrypt algorithm");
  9843. opt_scrypt = true;
  9844. }
  9845. #endif
  9846. detect_algo = 0;
  9847. begin_bench:
  9848. total_mhashes_done = 0;
  9849. for (i = 0; i < total_devices; i++) {
  9850. struct cgpu_info *cgpu = devices[i];
  9851. cgpu->rolling = cgpu->total_mhashes = 0;
  9852. }
  9853. cgtime(&total_tv_start);
  9854. cgtime(&total_tv_end);
  9855. miner_started = total_tv_start;
  9856. time_t miner_start_ts = time(NULL);
  9857. if (schedstart.tm.tm_sec)
  9858. localtime_r(&miner_start_ts, &schedstart.tm);
  9859. if (schedstop.tm.tm_sec)
  9860. localtime_r(&miner_start_ts, &schedstop .tm);
  9861. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  9862. // Initialise processors and threads
  9863. k = 0;
  9864. for (i = 0; i < total_devices; ++i) {
  9865. struct cgpu_info *cgpu = devices[i];
  9866. allocate_cgpu(cgpu, &k);
  9867. }
  9868. // Start threads
  9869. for (i = 0; i < total_devices; ++i) {
  9870. struct cgpu_info *cgpu = devices[i];
  9871. start_cgpu(cgpu);
  9872. }
  9873. #ifdef HAVE_OPENCL
  9874. for (i = 0; i < nDevs; i++)
  9875. pause_dynamic_threads(i);
  9876. #endif
  9877. #ifdef WANT_CPUMINE
  9878. applog(LOG_INFO, "%d cpu miner threads started, "
  9879. "using SHA256 '%s' algorithm.",
  9880. opt_n_threads,
  9881. algo_names[opt_algo]);
  9882. #endif
  9883. cgtime(&total_tv_start);
  9884. cgtime(&total_tv_end);
  9885. {
  9886. pthread_t submit_thread;
  9887. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  9888. quit(1, "submit_work thread create failed");
  9889. }
  9890. watchpool_thr_id = 1;
  9891. thr = &control_thr[watchpool_thr_id];
  9892. /* start watchpool thread */
  9893. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  9894. quit(1, "watchpool thread create failed");
  9895. pthread_detach(thr->pth);
  9896. watchdog_thr_id = 2;
  9897. thr = &control_thr[watchdog_thr_id];
  9898. /* start watchdog thread */
  9899. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  9900. quit(1, "watchdog thread create failed");
  9901. pthread_detach(thr->pth);
  9902. #ifdef HAVE_OPENCL
  9903. /* Create reinit gpu thread */
  9904. gpur_thr_id = 3;
  9905. thr = &control_thr[gpur_thr_id];
  9906. thr->q = tq_new();
  9907. if (!thr->q)
  9908. quit(1, "tq_new failed for gpur_thr_id");
  9909. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  9910. quit(1, "reinit_gpu thread create failed");
  9911. #endif
  9912. /* Create API socket thread */
  9913. api_thr_id = 4;
  9914. thr = &control_thr[api_thr_id];
  9915. if (thr_info_create(thr, NULL, api_thread, thr))
  9916. quit(1, "API thread create failed");
  9917. #ifdef USE_LIBMICROHTTPD
  9918. if (httpsrv_port != -1)
  9919. httpsrv_start(httpsrv_port);
  9920. #endif
  9921. #ifdef USE_LIBEVENT
  9922. if (stratumsrv_port != -1)
  9923. stratumsrv_start();
  9924. #endif
  9925. #ifdef HAVE_CURSES
  9926. /* Create curses input thread for keyboard input. Create this last so
  9927. * that we know all threads are created since this can call kill_work
  9928. * to try and shut down ll previous threads. */
  9929. input_thr_id = 5;
  9930. thr = &control_thr[input_thr_id];
  9931. if (thr_info_create(thr, NULL, input_thread, thr))
  9932. quit(1, "input thread create failed");
  9933. pthread_detach(thr->pth);
  9934. #endif
  9935. /* Just to be sure */
  9936. if (total_control_threads != 6)
  9937. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  9938. /* Once everything is set up, main() becomes the getwork scheduler */
  9939. while (42) {
  9940. int ts, max_staged = opt_queue;
  9941. struct pool *pool, *cp;
  9942. bool lagging = false;
  9943. struct curl_ent *ce;
  9944. struct work *work;
  9945. cp = current_pool();
  9946. /* If the primary pool is a getwork pool and cannot roll work,
  9947. * try to stage one extra work per mining thread */
  9948. if (!pool_localgen(cp) && !staged_rollable)
  9949. max_staged += mining_threads;
  9950. mutex_lock(stgd_lock);
  9951. ts = __total_staged();
  9952. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  9953. lagging = true;
  9954. /* Wait until hash_pop tells us we need to create more work */
  9955. if (ts > max_staged) {
  9956. staged_full = true;
  9957. pthread_cond_wait(&gws_cond, stgd_lock);
  9958. ts = __total_staged();
  9959. }
  9960. mutex_unlock(stgd_lock);
  9961. if (ts > max_staged)
  9962. continue;
  9963. work = make_work();
  9964. if (lagging && !pool_tset(cp, &cp->lagging)) {
  9965. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  9966. cp->getfail_occasions++;
  9967. total_go++;
  9968. }
  9969. pool = select_pool(lagging);
  9970. retry:
  9971. if (pool->has_stratum) {
  9972. while (!pool->stratum_active || !pool->stratum_notify) {
  9973. struct pool *altpool = select_pool(true);
  9974. if (altpool == pool && pool->has_stratum)
  9975. cgsleep_ms(5000);
  9976. pool = altpool;
  9977. goto retry;
  9978. }
  9979. gen_stratum_work(pool, work);
  9980. applog(LOG_DEBUG, "Generated stratum work");
  9981. stage_work(work);
  9982. continue;
  9983. }
  9984. if (pool->last_work_copy) {
  9985. mutex_lock(&pool->last_work_lock);
  9986. struct work *last_work = pool->last_work_copy;
  9987. if (!last_work)
  9988. {}
  9989. else
  9990. if (can_roll(last_work) && should_roll(last_work)) {
  9991. struct timeval tv_now;
  9992. cgtime(&tv_now);
  9993. free_work(work);
  9994. work = make_clone(pool->last_work_copy);
  9995. mutex_unlock(&pool->last_work_lock);
  9996. roll_work(work);
  9997. 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));
  9998. stage_work(work);
  9999. continue;
  10000. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10001. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10002. } else {
  10003. free_work(last_work);
  10004. pool->last_work_copy = NULL;
  10005. }
  10006. mutex_unlock(&pool->last_work_lock);
  10007. }
  10008. if (clone_available()) {
  10009. applog(LOG_DEBUG, "Cloned getwork work");
  10010. free_work(work);
  10011. continue;
  10012. }
  10013. if (opt_benchmark) {
  10014. get_benchmark_work(work);
  10015. applog(LOG_DEBUG, "Generated benchmark work");
  10016. stage_work(work);
  10017. continue;
  10018. }
  10019. work->pool = pool;
  10020. ce = pop_curl_entry3(pool, 2);
  10021. /* obtain new work from bitcoin via JSON-RPC */
  10022. if (!get_upstream_work(work, ce->curl)) {
  10023. struct pool *next_pool;
  10024. /* Make sure the pool just hasn't stopped serving
  10025. * requests but is up as we'll keep hammering it */
  10026. push_curl_entry(ce, pool);
  10027. ++pool->seq_getfails;
  10028. pool_died(pool);
  10029. next_pool = select_pool(!opt_fail_only);
  10030. if (pool == next_pool) {
  10031. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10032. cgsleep_ms(5000);
  10033. } else {
  10034. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10035. pool = next_pool;
  10036. }
  10037. goto retry;
  10038. }
  10039. if (ts >= max_staged)
  10040. pool_tclear(pool, &pool->lagging);
  10041. if (pool_tclear(pool, &pool->idle))
  10042. pool_resus(pool);
  10043. applog(LOG_DEBUG, "Generated getwork work");
  10044. stage_work(work);
  10045. push_curl_entry(ce, pool);
  10046. }
  10047. return 0;
  10048. }