miner.c 306 KB

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