miner.c 310 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188
  1. /*
  2. * Copyright 2011-2013 Con Kolivas
  3. * Copyright 2011-2013 Luke Dashjr
  4. * Copyright 2012-2013 Andrew Smith
  5. * Copyright 2010 Jeff Garzik
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 3 of the License, or (at your option)
  10. * any later version. See COPYING for more details.
  11. */
  12. #include "config.h"
  13. #ifdef HAVE_CURSES
  14. #ifdef USE_UNICODE
  15. #define PDC_WIDE
  16. #endif
  17. // Must be before stdbool, since pdcurses typedefs bool :/
  18. #include <curses.h>
  19. #endif
  20. #include <ctype.h>
  21. #include <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <stdbool.h>
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <sys/time.h>
  31. #include <time.h>
  32. #include <math.h>
  33. #include <stdarg.h>
  34. #include <assert.h>
  35. #include <signal.h>
  36. #include <wctype.h>
  37. #include <sys/stat.h>
  38. #include <sys/types.h>
  39. #include <dirent.h>
  40. #ifdef HAVE_PWD_H
  41. #include <pwd.h>
  42. #endif
  43. #ifndef WIN32
  44. #include <sys/resource.h>
  45. #include <sys/socket.h>
  46. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  47. #include <libudev.h>
  48. #include <sys/epoll.h>
  49. #define HAVE_BFG_HOTPLUG
  50. #endif
  51. #else
  52. #include <winsock2.h>
  53. #include <windows.h>
  54. #include <dbt.h>
  55. #define HAVE_BFG_HOTPLUG
  56. #endif
  57. #include <ccan/opt/opt.h>
  58. #include <jansson.h>
  59. #include <curl/curl.h>
  60. #include <libgen.h>
  61. #include <sha2.h>
  62. #include <utlist.h>
  63. #include <blkmaker.h>
  64. #include <blkmaker_jansson.h>
  65. #include <blktemplate.h>
  66. #include "compat.h"
  67. #include "deviceapi.h"
  68. #include "logging.h"
  69. #include "miner.h"
  70. #include "adl.h"
  71. #include "driver-cpu.h"
  72. #include "driver-opencl.h"
  73. #include "scrypt.h"
  74. #ifdef USE_AVALON
  75. #include "driver-avalon.h"
  76. #endif
  77. #ifdef HAVE_BFG_LOWLEVEL
  78. #include "lowlevel.h"
  79. #endif
  80. #if defined(unix) || defined(__APPLE__)
  81. #include <errno.h>
  82. #include <fcntl.h>
  83. #include <sys/wait.h>
  84. #endif
  85. #ifdef USE_SCRYPT
  86. #include "scrypt.h"
  87. #endif
  88. #if defined(USE_AVALON) || defined(USE_BITFORCE) || defined(USE_ICARUS) || defined(USE_MODMINER) || defined(USE_NANOFURY) || defined(USE_X6500) || defined(USE_ZTEX)
  89. # define USE_FPGA
  90. #endif
  91. enum bfg_quit_summary {
  92. BQS_DEFAULT,
  93. BQS_NONE,
  94. BQS_DEVS,
  95. BQS_PROCS,
  96. BQS_DETAILED,
  97. };
  98. struct strategies strategies[] = {
  99. { "Failover" },
  100. { "Round Robin" },
  101. { "Rotate" },
  102. { "Load Balance" },
  103. { "Balance" },
  104. };
  105. static char packagename[256];
  106. bool opt_protocol;
  107. bool opt_dev_protocol;
  108. static bool opt_benchmark;
  109. static bool want_longpoll = true;
  110. static bool want_gbt = true;
  111. static bool want_getwork = true;
  112. #if BLKMAKER_VERSION > 1
  113. struct _cbscript_t {
  114. char *data;
  115. size_t sz;
  116. };
  117. static struct _cbscript_t opt_coinbase_script;
  118. static uint32_t template_nonce;
  119. #endif
  120. #if BLKMAKER_VERSION > 0
  121. char *opt_coinbase_sig;
  122. #endif
  123. static enum bfg_quit_summary opt_quit_summary = BQS_DEFAULT;
  124. static bool include_serial_in_statline;
  125. char *request_target_str;
  126. float request_pdiff = 1.0;
  127. double request_bdiff;
  128. static bool want_stratum = true;
  129. bool have_longpoll;
  130. int opt_skip_checks;
  131. bool want_per_device_stats;
  132. bool use_syslog;
  133. bool opt_quiet_work_updates = true;
  134. bool opt_quiet;
  135. bool opt_realquiet;
  136. int loginput_size;
  137. bool opt_compact;
  138. bool opt_show_procs;
  139. const int opt_cutofftemp = 95;
  140. int opt_hysteresis = 3;
  141. static int opt_retries = -1;
  142. int opt_fail_pause = 5;
  143. int opt_log_interval = 20;
  144. int opt_queue = 1;
  145. int opt_scantime = 60;
  146. int opt_expiry = 120;
  147. int opt_expiry_lp = 3600;
  148. unsigned long long global_hashrate;
  149. static bool opt_unittest = false;
  150. unsigned long global_quota_gcd = 1;
  151. time_t last_getwork;
  152. #ifdef HAVE_OPENCL
  153. int opt_dynamic_interval = 7;
  154. int nDevs;
  155. int opt_g_threads = -1;
  156. #endif
  157. #ifdef USE_SCRYPT
  158. static char detect_algo = 1;
  159. bool opt_scrypt;
  160. #else
  161. static char detect_algo;
  162. #endif
  163. bool opt_restart = true;
  164. #ifdef USE_LIBMICROHTTPD
  165. #include "httpsrv.h"
  166. int httpsrv_port = -1;
  167. #endif
  168. #ifdef USE_LIBEVENT
  169. int stratumsrv_port = -1;
  170. #endif
  171. const
  172. int rescan_delay_ms = 1000;
  173. #ifdef HAVE_BFG_HOTPLUG
  174. bool opt_hotplug = 1;
  175. const
  176. int hotplug_delay_ms = 100;
  177. #else
  178. const bool opt_hotplug;
  179. #endif
  180. struct string_elist *scan_devices;
  181. static struct string_elist *opt_set_device_list;
  182. bool opt_force_dev_init;
  183. static struct string_elist *opt_devices_enabled_list;
  184. static bool opt_display_devs;
  185. int total_devices;
  186. struct cgpu_info **devices;
  187. int total_devices_new;
  188. struct cgpu_info **devices_new;
  189. bool have_opencl;
  190. int opt_n_threads = -1;
  191. int mining_threads;
  192. int num_processors;
  193. #ifdef HAVE_CURSES
  194. bool use_curses = true;
  195. #else
  196. bool use_curses;
  197. #endif
  198. #ifdef HAVE_LIBUSB
  199. bool have_libusb;
  200. #endif
  201. static bool opt_submit_stale = true;
  202. static float opt_shares;
  203. static int opt_submit_threads = 0x40;
  204. bool opt_fail_only;
  205. int opt_fail_switch_delay = 300;
  206. bool opt_autofan;
  207. bool opt_autoengine;
  208. bool opt_noadl;
  209. char *opt_api_allow = NULL;
  210. char *opt_api_groups;
  211. char *opt_api_description = PACKAGE_STRING;
  212. int opt_api_port = 4028;
  213. bool opt_api_listen;
  214. bool opt_api_mcast;
  215. char *opt_api_mcast_addr = API_MCAST_ADDR;
  216. char *opt_api_mcast_code = API_MCAST_CODE;
  217. char *opt_api_mcast_des = "";
  218. int opt_api_mcast_port = 4028;
  219. bool opt_api_network;
  220. bool opt_delaynet;
  221. bool opt_disable_pool;
  222. bool opt_disable_client_reconnect = false;
  223. static bool no_work;
  224. bool opt_worktime;
  225. bool opt_weighed_stats;
  226. char *opt_kernel_path;
  227. char *cgminer_path;
  228. #if defined(USE_BITFORCE)
  229. bool opt_bfl_noncerange;
  230. #endif
  231. #define QUIET (opt_quiet || opt_realquiet)
  232. struct thr_info *control_thr;
  233. struct thr_info **mining_thr;
  234. static int gwsched_thr_id;
  235. static int watchpool_thr_id;
  236. static int watchdog_thr_id;
  237. #ifdef HAVE_CURSES
  238. static int input_thr_id;
  239. #endif
  240. int gpur_thr_id;
  241. static int api_thr_id;
  242. static int total_control_threads;
  243. pthread_mutex_t hash_lock;
  244. static pthread_mutex_t *stgd_lock;
  245. pthread_mutex_t console_lock;
  246. cglock_t ch_lock;
  247. static pthread_rwlock_t blk_lock;
  248. static pthread_mutex_t sshare_lock;
  249. pthread_rwlock_t netacc_lock;
  250. pthread_rwlock_t mining_thr_lock;
  251. pthread_rwlock_t devices_lock;
  252. static pthread_mutex_t lp_lock;
  253. static pthread_cond_t lp_cond;
  254. pthread_cond_t gws_cond;
  255. bool shutting_down;
  256. double total_rolling;
  257. double total_mhashes_done;
  258. static struct timeval total_tv_start, total_tv_end;
  259. static struct timeval miner_started;
  260. cglock_t control_lock;
  261. pthread_mutex_t stats_lock;
  262. static pthread_mutex_t submitting_lock;
  263. static int total_submitting;
  264. static struct work *submit_waiting;
  265. notifier_t submit_waiting_notifier;
  266. int hw_errors;
  267. int total_accepted, total_rejected;
  268. int total_getworks, total_stale, total_discarded;
  269. uint64_t total_bytes_rcvd, total_bytes_sent;
  270. double total_diff1, total_bad_diff1;
  271. double total_diff_accepted, total_diff_rejected, total_diff_stale;
  272. static int staged_rollable;
  273. unsigned int new_blocks;
  274. unsigned int found_blocks;
  275. unsigned int local_work;
  276. unsigned int total_go, total_ro;
  277. struct pool **pools;
  278. static struct pool *currentpool = NULL;
  279. int total_pools, enabled_pools;
  280. enum pool_strategy pool_strategy = POOL_FAILOVER;
  281. int opt_rotate_period;
  282. static int total_urls, total_users, total_passes;
  283. static
  284. #ifndef HAVE_CURSES
  285. const
  286. #endif
  287. bool curses_active;
  288. #ifdef HAVE_CURSES
  289. #if !(defined(PDCURSES) || defined(NCURSES_VERSION))
  290. const
  291. #endif
  292. short default_bgcolor = COLOR_BLACK;
  293. static int attr_title = A_BOLD;
  294. #endif
  295. static
  296. #if defined(HAVE_CURSES) && defined(USE_UNICODE)
  297. bool use_unicode;
  298. static
  299. bool have_unicode_degrees;
  300. static
  301. wchar_t unicode_micro = 'u';
  302. #else
  303. const bool use_unicode;
  304. static
  305. const bool have_unicode_degrees;
  306. static
  307. const char unicode_micro = 'u';
  308. #endif
  309. #ifdef HAVE_CURSES
  310. #define U8_BAD_START "\xef\x80\x81"
  311. #define U8_BAD_END "\xef\x80\x80"
  312. #define AS_BAD(x) U8_BAD_START x U8_BAD_END
  313. bool selecting_device;
  314. unsigned selected_device;
  315. #endif
  316. static char current_block[40];
  317. /* Protected by ch_lock */
  318. static char *current_hash;
  319. static uint32_t current_block_id;
  320. char *current_fullhash;
  321. static char datestamp[40];
  322. static char blocktime[32];
  323. time_t block_time;
  324. static char best_share[ALLOC_H2B_SHORTV] = "0";
  325. double current_diff = 0xFFFFFFFFFFFFFFFFULL;
  326. static char block_diff[ALLOC_H2B_SHORTV];
  327. static char net_hashrate[ALLOC_H2B_SHORT];
  328. double best_diff = 0;
  329. static bool known_blkheight_current;
  330. static uint32_t known_blkheight;
  331. static uint32_t known_blkheight_blkid;
  332. static uint64_t block_subsidy;
  333. struct block {
  334. char hash[40];
  335. UT_hash_handle hh;
  336. int block_no;
  337. };
  338. static struct block *blocks = NULL;
  339. int swork_id;
  340. /* For creating a hash database of stratum shares submitted that have not had
  341. * a response yet */
  342. struct stratum_share {
  343. UT_hash_handle hh;
  344. bool block;
  345. struct work *work;
  346. int id;
  347. };
  348. static struct stratum_share *stratum_shares = NULL;
  349. char *opt_socks_proxy = NULL;
  350. static const char def_conf[] = "bfgminer.conf";
  351. static bool config_loaded;
  352. static int include_count;
  353. #define JSON_INCLUDE_CONF "include"
  354. #define JSON_LOAD_ERROR "JSON decode of file '%s' failed\n %s"
  355. #define JSON_LOAD_ERROR_LEN strlen(JSON_LOAD_ERROR)
  356. #define JSON_MAX_DEPTH 10
  357. #define JSON_MAX_DEPTH_ERR "Too many levels of JSON includes (limit 10) or a loop"
  358. char *cmd_idle, *cmd_sick, *cmd_dead;
  359. #if defined(unix) || defined(__APPLE__)
  360. static char *opt_stderr_cmd = NULL;
  361. static int forkpid;
  362. #endif // defined(unix)
  363. #ifdef HAVE_CHROOT
  364. char *chroot_dir;
  365. #endif
  366. #ifdef HAVE_PWD_H
  367. char *opt_setuid;
  368. #endif
  369. struct sigaction termhandler, inthandler;
  370. struct thread_q *getq;
  371. static int total_work;
  372. static bool staged_full;
  373. struct work *staged_work = NULL;
  374. struct schedtime {
  375. bool enable;
  376. struct tm tm;
  377. };
  378. struct schedtime schedstart;
  379. struct schedtime schedstop;
  380. bool sched_paused;
  381. static bool time_before(struct tm *tm1, struct tm *tm2)
  382. {
  383. if (tm1->tm_hour < tm2->tm_hour)
  384. return true;
  385. if (tm1->tm_hour == tm2->tm_hour && tm1->tm_min < tm2->tm_min)
  386. return true;
  387. return false;
  388. }
  389. static bool should_run(void)
  390. {
  391. struct tm tm;
  392. time_t tt;
  393. bool within_range;
  394. if (!schedstart.enable && !schedstop.enable)
  395. return true;
  396. tt = time(NULL);
  397. localtime_r(&tt, &tm);
  398. // NOTE: This is delicately balanced so that should_run is always false if schedstart==schedstop
  399. if (time_before(&schedstop.tm, &schedstart.tm))
  400. within_range = (time_before(&tm, &schedstop.tm) || !time_before(&tm, &schedstart.tm));
  401. else
  402. within_range = (time_before(&tm, &schedstop.tm) && !time_before(&tm, &schedstart.tm));
  403. if (within_range && !schedstop.enable)
  404. /* This is a once off event with no stop time set */
  405. schedstart.enable = false;
  406. return within_range;
  407. }
  408. void get_datestamp(char *f, size_t fsiz, time_t tt)
  409. {
  410. struct tm _tm;
  411. struct tm *tm = &_tm;
  412. if (tt == INVALID_TIMESTAMP)
  413. tt = time(NULL);
  414. localtime_r(&tt, tm);
  415. snprintf(f, fsiz, "[%d-%02d-%02d %02d:%02d:%02d]",
  416. tm->tm_year + 1900,
  417. tm->tm_mon + 1,
  418. tm->tm_mday,
  419. tm->tm_hour,
  420. tm->tm_min,
  421. tm->tm_sec);
  422. }
  423. static
  424. void get_timestamp(char *f, size_t fsiz, time_t tt)
  425. {
  426. struct tm _tm;
  427. struct tm *tm = &_tm;
  428. localtime_r(&tt, tm);
  429. snprintf(f, fsiz, "[%02d:%02d:%02d]",
  430. tm->tm_hour,
  431. tm->tm_min,
  432. tm->tm_sec);
  433. }
  434. static void applog_and_exit(const char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  435. static char exit_buf[512];
  436. static void applog_and_exit(const char *fmt, ...)
  437. {
  438. va_list ap;
  439. va_start(ap, fmt);
  440. vsnprintf(exit_buf, sizeof(exit_buf), fmt, ap);
  441. va_end(ap);
  442. _applog(LOG_ERR, exit_buf);
  443. exit(1);
  444. }
  445. char *devpath_to_devid(const char *devpath)
  446. {
  447. #ifndef WIN32
  448. struct stat my_stat;
  449. if (stat(devpath, &my_stat))
  450. return NULL;
  451. char *devs = malloc(6 + (sizeof(dev_t) * 2) + 1);
  452. memcpy(devs, "dev_t:", 6);
  453. bin2hex(&devs[6], &my_stat.st_rdev, sizeof(dev_t));
  454. #else
  455. if (!strncmp(devpath, "\\\\.\\", 4))
  456. devpath += 4;
  457. if (strncasecmp(devpath, "COM", 3) || !devpath[3])
  458. return NULL;
  459. devpath += 3;
  460. char *p;
  461. strtol(devpath, &p, 10);
  462. if (p[0])
  463. return NULL;
  464. const int sz = (p - devpath);
  465. char *devs = malloc(4 + sz + 1);
  466. sprintf(devs, "com:%s", devpath);
  467. #endif
  468. return devs;
  469. }
  470. static
  471. bool devpaths_match(const char * const ap, const char * const bp)
  472. {
  473. char * const a = devpath_to_devid(ap);
  474. if (!a)
  475. return false;
  476. char * const b = devpath_to_devid(bp);
  477. bool rv = false;
  478. if (b)
  479. {
  480. rv = !strcmp(a, b);
  481. free(b);
  482. }
  483. free(a);
  484. return rv;
  485. }
  486. static
  487. int proc_letter_to_number(const char *s, const char ** const rem)
  488. {
  489. int n = 0, c;
  490. for ( ; s[0]; ++s)
  491. {
  492. if (unlikely(n > INT_MAX / 26))
  493. break;
  494. c = tolower(s[0]) - 'a';
  495. if (unlikely(c < 0 || c > 25))
  496. break;
  497. if (unlikely(INT_MAX - c < n))
  498. break;
  499. n = (n * 26) + c;
  500. }
  501. *rem = s;
  502. return n;
  503. }
  504. static
  505. bool cgpu_match(const char * const pattern, const struct cgpu_info * const cgpu)
  506. {
  507. // all - matches anything
  508. // d0 - matches all processors of device 0
  509. // d0-3 - matches all processors of device 0, 1, 2, or 3
  510. // d0a - matches first processor of device 0
  511. // 0 - matches processor 0
  512. // 0-4 - matches processors 0, 1, 2, 3, or 4
  513. // ___ - matches all processors on all devices using driver/name ___
  514. // ___0 - matches all processors of 0th device using driver/name ___
  515. // ___0a - matches first processor of 0th device using driver/name ___
  516. // @* - matches device with serial or path *
  517. // @*@a - matches first processor of device with serial or path *
  518. // ___@* - matches device with serial or path * using driver/name ___
  519. if (!strcasecmp(pattern, "all"))
  520. return true;
  521. const struct device_drv * const drv = cgpu->drv;
  522. const char *p = pattern, *p2;
  523. size_t L;
  524. int n, i, c = -1;
  525. int n2;
  526. int proc_first = -1, proc_last = -1;
  527. struct cgpu_info *device;
  528. if (!(strncasecmp(drv->dname, p, (L = strlen(drv->dname)))
  529. && strncasecmp(drv-> name, p, (L = strlen(drv-> name)))))
  530. // dname or name
  531. p = &pattern[L];
  532. else
  533. if (p[0] == 'd' && (isdigit(p[1]) || p[1] == '-'))
  534. // d#
  535. ++p;
  536. else
  537. if (isdigit(p[0]) || p[0] == '@' || p[0] == '-')
  538. // # or @
  539. {}
  540. else
  541. return false;
  542. L = p - pattern;
  543. while (isspace(p[0]))
  544. ++p;
  545. if (p[0] == '@')
  546. {
  547. // Serial/path
  548. const char * const ser = &p[1];
  549. for (p = ser; p[0] != '@' && p[0] != '\0'; ++p)
  550. {}
  551. p2 = (p[0] == '@') ? &p[1] : p;
  552. const size_t serlen = (p - ser);
  553. p = "";
  554. n = n2 = 0;
  555. const char * const devpath = cgpu->device_path ?: "";
  556. const char * const devser = cgpu->dev_serial ?: "";
  557. if ((!strncmp(devpath, ser, serlen)) && devpath[serlen] == '\0')
  558. {} // Match
  559. else
  560. if ((!strncmp(devser, ser, serlen)) && devser[serlen] == '\0')
  561. {} // Match
  562. else
  563. {
  564. char devpath2[serlen + 1];
  565. memcpy(devpath2, ser, serlen);
  566. devpath2[serlen] = '\0';
  567. if (!devpaths_match(devpath, ser))
  568. return false;
  569. }
  570. }
  571. else
  572. {
  573. if (isdigit(p[0]))
  574. n = strtol(p, (void*)&p2, 0);
  575. else
  576. {
  577. n = 0;
  578. p2 = p;
  579. }
  580. if (p2[0] == '-')
  581. {
  582. ++p2;
  583. if (p2[0] && isdigit(p2[0]))
  584. n2 = strtol(p2, (void*)&p2, 0);
  585. else
  586. n2 = INT_MAX;
  587. }
  588. else
  589. n2 = n;
  590. if (p == pattern)
  591. {
  592. if (!p[0])
  593. return true;
  594. if (p2 && p2[0])
  595. goto invsyntax;
  596. for (i = n; i <= n2; ++i)
  597. {
  598. if (i >= total_devices)
  599. break;
  600. if (cgpu == devices[i])
  601. return true;
  602. }
  603. return false;
  604. }
  605. }
  606. if (p2[0])
  607. {
  608. proc_first = proc_letter_to_number(&p2[0], &p2);
  609. if (p2[0] == '-')
  610. {
  611. ++p2;
  612. if (p2[0])
  613. proc_last = proc_letter_to_number(p2, &p2);
  614. else
  615. proc_last = INT_MAX;
  616. }
  617. else
  618. proc_last = proc_first;
  619. if (p2[0])
  620. goto invsyntax;
  621. }
  622. if (L > 1 || tolower(pattern[0]) != 'd' || !p[0])
  623. {
  624. if ((L == 3 && !strncasecmp(pattern, drv->name, 3)) ||
  625. (!L) ||
  626. (L == strlen(drv->dname) && !strncasecmp(pattern, drv->dname, L)))
  627. {} // Matched name or dname
  628. else
  629. return false;
  630. if (p[0] && (cgpu->device_id < n || cgpu->device_id > n2))
  631. return false;
  632. if (proc_first != -1 && (cgpu->proc_id < proc_first || cgpu->proc_id > proc_last))
  633. return false;
  634. return true;
  635. }
  636. // d#
  637. c = -1;
  638. for (i = 0; ; ++i)
  639. {
  640. if (i == total_devices)
  641. return false;
  642. if (devices[i]->device != devices[i])
  643. continue;
  644. ++c;
  645. if (c < n)
  646. continue;
  647. if (c > n2)
  648. break;
  649. for (device = devices[i]; device; device = device->next_proc)
  650. {
  651. if (proc_first != -1 && (device->proc_id < proc_first || device->proc_id > proc_last))
  652. continue;
  653. if (device == cgpu)
  654. return true;
  655. }
  656. }
  657. return false;
  658. invsyntax:
  659. applog(LOG_WARNING, "%s: Invalid syntax: %s", __func__, pattern);
  660. return false;
  661. }
  662. #define TEST_CGPU_MATCH(pattern) \
  663. if (!cgpu_match(pattern, &cgpu)) \
  664. applog(LOG_ERR, "%s: Pattern \"%s\" should have matched!", __func__, pattern); \
  665. // END TEST_CGPU_MATCH
  666. #define TEST_CGPU_NOMATCH(pattern) \
  667. if (cgpu_match(pattern, &cgpu)) \
  668. applog(LOG_ERR, "%s: Pattern \"%s\" should NOT have matched!", __func__, pattern); \
  669. // END TEST_CGPU_MATCH
  670. static __maybe_unused
  671. void test_cgpu_match()
  672. {
  673. struct device_drv drv = {
  674. .dname = "test",
  675. .name = "TST",
  676. };
  677. struct cgpu_info cgpu = {
  678. .drv = &drv,
  679. .device = &cgpu,
  680. .device_id = 1,
  681. .proc_id = 1,
  682. .proc_repr = "TST 1b",
  683. }, cgpu0a = {
  684. .drv = &drv,
  685. .device = &cgpu0a,
  686. .device_id = 0,
  687. .proc_id = 0,
  688. .proc_repr = "TST 0a",
  689. }, cgpu1a = {
  690. .drv = &drv,
  691. .device = &cgpu0a,
  692. .device_id = 1,
  693. .proc_id = 0,
  694. .proc_repr = "TST 1a",
  695. };
  696. struct cgpu_info *devices_list[3] = {&cgpu0a, &cgpu1a, &cgpu,};
  697. devices = devices_list;
  698. total_devices = 3;
  699. TEST_CGPU_MATCH("all")
  700. TEST_CGPU_MATCH("d1")
  701. TEST_CGPU_NOMATCH("d2")
  702. TEST_CGPU_MATCH("d0-5")
  703. TEST_CGPU_NOMATCH("d0-0")
  704. TEST_CGPU_NOMATCH("d2-5")
  705. TEST_CGPU_MATCH("d-1")
  706. TEST_CGPU_MATCH("d1-")
  707. TEST_CGPU_NOMATCH("d-0")
  708. TEST_CGPU_NOMATCH("d2-")
  709. TEST_CGPU_MATCH("2")
  710. TEST_CGPU_NOMATCH("3")
  711. TEST_CGPU_MATCH("1-2")
  712. TEST_CGPU_MATCH("2-3")
  713. TEST_CGPU_NOMATCH("1-1")
  714. TEST_CGPU_NOMATCH("3-4")
  715. TEST_CGPU_MATCH("TST")
  716. TEST_CGPU_MATCH("test")
  717. TEST_CGPU_MATCH("tst")
  718. TEST_CGPU_MATCH("TEST")
  719. TEST_CGPU_NOMATCH("TSF")
  720. TEST_CGPU_NOMATCH("TS")
  721. TEST_CGPU_NOMATCH("TSTF")
  722. TEST_CGPU_MATCH("TST1")
  723. TEST_CGPU_MATCH("test1")
  724. TEST_CGPU_MATCH("TST0-1")
  725. TEST_CGPU_MATCH("TST 1")
  726. TEST_CGPU_MATCH("TST 1-2")
  727. TEST_CGPU_MATCH("TEST 1-2")
  728. TEST_CGPU_NOMATCH("TST2")
  729. TEST_CGPU_NOMATCH("TST2-3")
  730. TEST_CGPU_NOMATCH("TST0-0")
  731. TEST_CGPU_MATCH("TST1b")
  732. TEST_CGPU_MATCH("tst1b")
  733. TEST_CGPU_NOMATCH("TST1c")
  734. TEST_CGPU_NOMATCH("TST1bb")
  735. TEST_CGPU_MATCH("TST0-1b")
  736. TEST_CGPU_NOMATCH("TST0-1c")
  737. TEST_CGPU_MATCH("TST1a-d")
  738. TEST_CGPU_NOMATCH("TST1a-a")
  739. TEST_CGPU_NOMATCH("TST1-a")
  740. TEST_CGPU_NOMATCH("TST1c-z")
  741. TEST_CGPU_NOMATCH("TST1c-")
  742. TEST_CGPU_MATCH("@")
  743. TEST_CGPU_NOMATCH("@abc")
  744. TEST_CGPU_MATCH("@@b")
  745. TEST_CGPU_NOMATCH("@@c")
  746. TEST_CGPU_MATCH("TST@")
  747. TEST_CGPU_NOMATCH("TST@abc")
  748. TEST_CGPU_MATCH("TST@@b")
  749. TEST_CGPU_NOMATCH("TST@@c")
  750. TEST_CGPU_MATCH("TST@@b-f")
  751. TEST_CGPU_NOMATCH("TST@@c-f")
  752. TEST_CGPU_NOMATCH("TST@@-a")
  753. cgpu.device_path = "/dev/test";
  754. cgpu.dev_serial = "testy";
  755. TEST_CGPU_MATCH("TST@/dev/test")
  756. TEST_CGPU_MATCH("TST@testy")
  757. TEST_CGPU_NOMATCH("TST@")
  758. TEST_CGPU_NOMATCH("TST@/dev/test5@b")
  759. TEST_CGPU_NOMATCH("TST@testy3@b")
  760. TEST_CGPU_MATCH("TST@/dev/test@b")
  761. TEST_CGPU_MATCH("TST@testy@b")
  762. TEST_CGPU_NOMATCH("TST@/dev/test@c")
  763. TEST_CGPU_NOMATCH("TST@testy@c")
  764. cgpu.device_path = "usb:000:999";
  765. TEST_CGPU_MATCH("TST@usb:000:999")
  766. drv.dname = "test7";
  767. TEST_CGPU_MATCH("test7")
  768. TEST_CGPU_MATCH("TEST7")
  769. TEST_CGPU_NOMATCH("test&")
  770. TEST_CGPU_MATCH("test7 1-2")
  771. TEST_CGPU_MATCH("test7@testy@b")
  772. }
  773. static
  774. int cgpu_search(const char * const pattern, const int first)
  775. {
  776. int i;
  777. struct cgpu_info *cgpu;
  778. #define CHECK_CGPU_SEARCH do{ \
  779. cgpu = get_devices(i); \
  780. if (cgpu_match(pattern, cgpu)) \
  781. return i; \
  782. }while(0)
  783. for (i = first; i < total_devices; ++i)
  784. CHECK_CGPU_SEARCH;
  785. for (i = 0; i < first; ++i)
  786. CHECK_CGPU_SEARCH;
  787. #undef CHECK_CGPU_SEARCH
  788. return -1;
  789. }
  790. static pthread_mutex_t sharelog_lock;
  791. static FILE *sharelog_file = NULL;
  792. struct thr_info *get_thread(int thr_id)
  793. {
  794. struct thr_info *thr;
  795. rd_lock(&mining_thr_lock);
  796. thr = mining_thr[thr_id];
  797. rd_unlock(&mining_thr_lock);
  798. return thr;
  799. }
  800. static struct cgpu_info *get_thr_cgpu(int thr_id)
  801. {
  802. struct thr_info *thr = get_thread(thr_id);
  803. return thr->cgpu;
  804. }
  805. struct cgpu_info *get_devices(int id)
  806. {
  807. struct cgpu_info *cgpu;
  808. rd_lock(&devices_lock);
  809. cgpu = devices[id];
  810. rd_unlock(&devices_lock);
  811. return cgpu;
  812. }
  813. static pthread_mutex_t noncelog_lock = PTHREAD_MUTEX_INITIALIZER;
  814. static FILE *noncelog_file = NULL;
  815. static
  816. void noncelog(const struct work * const work)
  817. {
  818. const int thr_id = work->thr_id;
  819. const struct cgpu_info *proc = get_thr_cgpu(thr_id);
  820. char buf[0x200], hash[65], data[161], midstate[65];
  821. int rv;
  822. size_t ret;
  823. bin2hex(hash, work->hash, 32);
  824. bin2hex(data, work->data, 80);
  825. bin2hex(midstate, work->midstate, 32);
  826. // timestamp,proc,hash,data,midstate
  827. rv = snprintf(buf, sizeof(buf), "%lu,%s,%s,%s,%s\n",
  828. (unsigned long)time(NULL), proc->proc_repr_ns,
  829. hash, data, midstate);
  830. if (unlikely(rv < 1))
  831. {
  832. applog(LOG_ERR, "noncelog printf error");
  833. return;
  834. }
  835. mutex_lock(&noncelog_lock);
  836. ret = fwrite(buf, rv, 1, noncelog_file);
  837. fflush(noncelog_file);
  838. mutex_unlock(&noncelog_lock);
  839. if (ret != 1)
  840. applog(LOG_ERR, "noncelog fwrite error");
  841. }
  842. static void sharelog(const char*disposition, const struct work*work)
  843. {
  844. char target[(sizeof(work->target) * 2) + 1];
  845. char hash[(sizeof(work->hash) * 2) + 1];
  846. char data[(sizeof(work->data) * 2) + 1];
  847. struct cgpu_info *cgpu;
  848. unsigned long int t;
  849. struct pool *pool;
  850. int thr_id, rv;
  851. char s[1024];
  852. size_t ret;
  853. if (!sharelog_file)
  854. return;
  855. thr_id = work->thr_id;
  856. cgpu = get_thr_cgpu(thr_id);
  857. pool = work->pool;
  858. t = work->ts_getwork + timer_elapsed(&work->tv_getwork, &work->tv_work_found);
  859. bin2hex(target, work->target, sizeof(work->target));
  860. bin2hex(hash, work->hash, sizeof(work->hash));
  861. bin2hex(data, work->data, sizeof(work->data));
  862. // timestamp,disposition,target,pool,dev,thr,sharehash,sharedata
  863. 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);
  864. if (rv >= (int)(sizeof(s)))
  865. s[sizeof(s) - 1] = '\0';
  866. else if (rv < 0) {
  867. applog(LOG_ERR, "sharelog printf error");
  868. return;
  869. }
  870. mutex_lock(&sharelog_lock);
  871. ret = fwrite(s, rv, 1, sharelog_file);
  872. fflush(sharelog_file);
  873. mutex_unlock(&sharelog_lock);
  874. if (ret != 1)
  875. applog(LOG_ERR, "sharelog fwrite error");
  876. }
  877. static char *getwork_req = "{\"method\": \"getwork\", \"params\": [], \"id\":0}\n";
  878. /* Adjust all the pools' quota to the greatest common denominator after a pool
  879. * has been added or the quotas changed. */
  880. void adjust_quota_gcd(void)
  881. {
  882. unsigned long gcd, lowest_quota = ~0UL, quota;
  883. struct pool *pool;
  884. int i;
  885. for (i = 0; i < total_pools; i++) {
  886. pool = pools[i];
  887. quota = pool->quota;
  888. if (!quota)
  889. continue;
  890. if (quota < lowest_quota)
  891. lowest_quota = quota;
  892. }
  893. if (likely(lowest_quota < ~0UL)) {
  894. gcd = lowest_quota;
  895. for (i = 0; i < total_pools; i++) {
  896. pool = pools[i];
  897. quota = pool->quota;
  898. if (!quota)
  899. continue;
  900. while (quota % gcd)
  901. gcd--;
  902. }
  903. } else
  904. gcd = 1;
  905. for (i = 0; i < total_pools; i++) {
  906. pool = pools[i];
  907. pool->quota_used *= global_quota_gcd;
  908. pool->quota_used /= gcd;
  909. pool->quota_gcd = pool->quota / gcd;
  910. }
  911. global_quota_gcd = gcd;
  912. applog(LOG_DEBUG, "Global quota greatest common denominator set to %lu", gcd);
  913. }
  914. /* Return value is ignored if not called from add_pool_details */
  915. struct pool *add_pool(void)
  916. {
  917. struct pool *pool;
  918. pool = calloc(sizeof(struct pool), 1);
  919. if (!pool)
  920. quit(1, "Failed to malloc pool in add_pool");
  921. pool->pool_no = pool->prio = total_pools;
  922. mutex_init(&pool->last_work_lock);
  923. mutex_init(&pool->pool_lock);
  924. if (unlikely(pthread_cond_init(&pool->cr_cond, NULL)))
  925. quit(1, "Failed to pthread_cond_init in add_pool");
  926. cglock_init(&pool->data_lock);
  927. mutex_init(&pool->stratum_lock);
  928. timer_unset(&pool->swork.tv_transparency);
  929. /* Make sure the pool doesn't think we've been idle since time 0 */
  930. pool->tv_idle.tv_sec = ~0UL;
  931. cgtime(&pool->cgminer_stats.start_tv);
  932. pool->rpc_proxy = NULL;
  933. pool->quota = 1;
  934. pool->sock = INVSOCK;
  935. pool->lp_socket = CURL_SOCKET_BAD;
  936. if (opt_benchmark)
  937. {
  938. // Don't add to pools array, but immediately remove it
  939. remove_pool(pool);
  940. return pool;
  941. }
  942. pools = realloc(pools, sizeof(struct pool *) * (total_pools + 2));
  943. pools[total_pools++] = pool;
  944. adjust_quota_gcd();
  945. return pool;
  946. }
  947. /* Pool variant of test and set */
  948. static bool pool_tset(struct pool *pool, bool *var)
  949. {
  950. bool ret;
  951. mutex_lock(&pool->pool_lock);
  952. ret = *var;
  953. *var = true;
  954. mutex_unlock(&pool->pool_lock);
  955. return ret;
  956. }
  957. bool pool_tclear(struct pool *pool, bool *var)
  958. {
  959. bool ret;
  960. mutex_lock(&pool->pool_lock);
  961. ret = *var;
  962. *var = false;
  963. mutex_unlock(&pool->pool_lock);
  964. return ret;
  965. }
  966. struct pool *current_pool(void)
  967. {
  968. struct pool *pool;
  969. cg_rlock(&control_lock);
  970. pool = currentpool;
  971. cg_runlock(&control_lock);
  972. return pool;
  973. }
  974. // Copied from ccan/opt/helpers.c
  975. static char *arg_bad(const char *fmt, const char *arg)
  976. {
  977. char *str = malloc(strlen(fmt) + strlen(arg));
  978. sprintf(str, fmt, arg);
  979. return str;
  980. }
  981. static
  982. char *opt_set_floatval(const char *arg, float *f)
  983. {
  984. char *endp;
  985. errno = 0;
  986. *f = strtof(arg, &endp);
  987. if (*endp || !arg[0])
  988. return arg_bad("'%s' is not a number", arg);
  989. if (errno)
  990. return arg_bad("'%s' is out of range", arg);
  991. return NULL;
  992. }
  993. static
  994. void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
  995. {
  996. snprintf(buf, OPT_SHOW_LEN, "%.1f", *f);
  997. }
  998. static
  999. char *set_bool_ignore_arg(const char * const arg, bool * const b)
  1000. {
  1001. return opt_set_bool(b);
  1002. }
  1003. char *set_int_range(const char *arg, int *i, int min, int max)
  1004. {
  1005. char *err = opt_set_intval(arg, i);
  1006. if (err)
  1007. return err;
  1008. if (*i < min || *i > max)
  1009. return "Value out of range";
  1010. return NULL;
  1011. }
  1012. static char *set_int_0_to_9999(const char *arg, int *i)
  1013. {
  1014. return set_int_range(arg, i, 0, 9999);
  1015. }
  1016. static char *set_int_1_to_65535(const char *arg, int *i)
  1017. {
  1018. return set_int_range(arg, i, 1, 65535);
  1019. }
  1020. static char *set_int_0_to_10(const char *arg, int *i)
  1021. {
  1022. return set_int_range(arg, i, 0, 10);
  1023. }
  1024. static char *set_int_1_to_10(const char *arg, int *i)
  1025. {
  1026. return set_int_range(arg, i, 1, 10);
  1027. }
  1028. char *set_strdup(const char *arg, char **p)
  1029. {
  1030. *p = strdup((char *)arg);
  1031. return NULL;
  1032. }
  1033. #if BLKMAKER_VERSION > 1
  1034. static char *set_b58addr(const char *arg, struct _cbscript_t *p)
  1035. {
  1036. size_t scriptsz = blkmk_address_to_script(NULL, 0, arg);
  1037. if (!scriptsz)
  1038. return "Invalid address";
  1039. char *script = malloc(scriptsz);
  1040. if (blkmk_address_to_script(script, scriptsz, arg) != scriptsz) {
  1041. free(script);
  1042. return "Failed to convert address to script";
  1043. }
  1044. p->data = script;
  1045. p->sz = scriptsz;
  1046. return NULL;
  1047. }
  1048. #endif
  1049. static
  1050. char *set_quit_summary(const char * const arg)
  1051. {
  1052. if (!(strcasecmp(arg, "none") && strcasecmp(arg, "no")))
  1053. opt_quit_summary = BQS_NONE;
  1054. else
  1055. if (!(strcasecmp(arg, "devs") && strcasecmp(arg, "devices")))
  1056. opt_quit_summary = BQS_DEVS;
  1057. else
  1058. if (!(strcasecmp(arg, "procs") && strcasecmp(arg, "processors") && strcasecmp(arg, "chips") && strcasecmp(arg, "cores")))
  1059. opt_quit_summary = BQS_PROCS;
  1060. else
  1061. if (!(strcasecmp(arg, "detailed") && strcasecmp(arg, "detail") && strcasecmp(arg, "all")))
  1062. opt_quit_summary = BQS_DETAILED;
  1063. else
  1064. return "Quit summary must be one of none/devs/procs/detailed";
  1065. return NULL;
  1066. }
  1067. static void bdiff_target_leadzero(unsigned char *target, double diff);
  1068. char *set_request_diff(const char *arg, float *p)
  1069. {
  1070. unsigned char target[32];
  1071. char *e = opt_set_floatval(arg, p);
  1072. if (e)
  1073. return e;
  1074. request_bdiff = (double)*p * 0.9999847412109375;
  1075. bdiff_target_leadzero(target, request_bdiff);
  1076. request_target_str = malloc(65);
  1077. bin2hex(request_target_str, target, 32);
  1078. return NULL;
  1079. }
  1080. #ifdef NEED_BFG_LOWL_VCOM
  1081. extern struct lowlevel_device_info *_vcom_devinfo_findorcreate(struct lowlevel_device_info **, const char *);
  1082. #ifdef WIN32
  1083. void _vcom_devinfo_scan_querydosdevice(struct lowlevel_device_info ** const devinfo_list)
  1084. {
  1085. char dev[PATH_MAX];
  1086. char *devp = dev;
  1087. size_t bufLen = 0x100;
  1088. tryagain: ;
  1089. char buf[bufLen];
  1090. if (!QueryDosDevice(NULL, buf, bufLen)) {
  1091. if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
  1092. bufLen *= 2;
  1093. applog(LOG_DEBUG, "QueryDosDevice returned insufficent buffer error; enlarging to %lx", (unsigned long)bufLen);
  1094. goto tryagain;
  1095. }
  1096. applogr(, LOG_WARNING, "Error occurred trying to enumerate COM ports with QueryDosDevice");
  1097. }
  1098. size_t tLen;
  1099. memcpy(devp, "\\\\.\\", 4);
  1100. devp = &devp[4];
  1101. for (char *t = buf; *t; t += tLen) {
  1102. tLen = strlen(t) + 1;
  1103. if (strncmp("COM", t, 3))
  1104. continue;
  1105. memcpy(devp, t, tLen);
  1106. // NOTE: We depend on _vcom_devinfo_findorcreate to further check that there's a number (and only a number) on the end
  1107. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1108. }
  1109. }
  1110. #else
  1111. void _vcom_devinfo_scan_lsdev(struct lowlevel_device_info ** const devinfo_list)
  1112. {
  1113. char dev[PATH_MAX];
  1114. char *devp = dev;
  1115. DIR *D;
  1116. struct dirent *de;
  1117. const char devdir[] = "/dev";
  1118. const size_t devdirlen = sizeof(devdir) - 1;
  1119. char *devpath = devp;
  1120. char *devfile = devpath + devdirlen + 1;
  1121. D = opendir(devdir);
  1122. if (!D)
  1123. applogr(, LOG_DEBUG, "No /dev directory to look for VCOM devices in");
  1124. memcpy(devpath, devdir, devdirlen);
  1125. devpath[devdirlen] = '/';
  1126. while ( (de = readdir(D)) ) {
  1127. if (!strncmp(de->d_name, "cu.", 3)
  1128. //don't probe Bluetooth devices - causes bus errors and segfaults
  1129. && strncmp(de->d_name, "cu.Bluetooth", 12))
  1130. goto trydev;
  1131. if (strncmp(de->d_name, "tty", 3))
  1132. continue;
  1133. if (strncmp(&de->d_name[3], "USB", 3) && strncmp(&de->d_name[3], "ACM", 3))
  1134. continue;
  1135. trydev:
  1136. strcpy(devfile, de->d_name);
  1137. _vcom_devinfo_findorcreate(devinfo_list, dev);
  1138. }
  1139. closedir(D);
  1140. }
  1141. #endif
  1142. #endif
  1143. static char *add_serial(const char *arg)
  1144. {
  1145. string_elist_add(arg, &scan_devices);
  1146. return NULL;
  1147. }
  1148. static
  1149. char *opt_string_elist_add(const char *arg, struct string_elist **elist)
  1150. {
  1151. string_elist_add(arg, elist);
  1152. return NULL;
  1153. }
  1154. bool get_intrange(const char *arg, int *val1, int *val2)
  1155. {
  1156. // NOTE: This could be done with sscanf, but its %n is broken in strange ways on Windows
  1157. char *p, *p2;
  1158. *val1 = strtol(arg, &p, 0);
  1159. if (arg == p)
  1160. // Zero-length ending number, invalid
  1161. return false;
  1162. while (true)
  1163. {
  1164. if (!p[0])
  1165. {
  1166. *val2 = *val1;
  1167. return true;
  1168. }
  1169. if (p[0] == '-')
  1170. break;
  1171. if (!isspace(p[0]))
  1172. // Garbage, invalid
  1173. return false;
  1174. ++p;
  1175. }
  1176. p2 = &p[1];
  1177. *val2 = strtol(p2, &p, 0);
  1178. if (p2 == p)
  1179. // Zero-length ending number, invalid
  1180. return false;
  1181. while (true)
  1182. {
  1183. if (!p[0])
  1184. return true;
  1185. if (!isspace(p[0]))
  1186. // Garbage, invalid
  1187. return false;
  1188. ++p;
  1189. }
  1190. }
  1191. static
  1192. void _test_intrange(const char *s, const int v[2])
  1193. {
  1194. int a[2];
  1195. if (!get_intrange(s, &a[0], &a[1]))
  1196. applog(LOG_ERR, "Test \"%s\" failed: returned false", s);
  1197. for (int i = 0; i < 2; ++i)
  1198. if (unlikely(a[i] != v[i]))
  1199. applog(LOG_ERR, "Test \"%s\" failed: value %d should be %d but got %d", s, i, v[i], a[i]);
  1200. }
  1201. #define _test_intrange(s, ...) _test_intrange(s, (int[]){ __VA_ARGS__ })
  1202. static
  1203. void _test_intrange_fail(const char *s)
  1204. {
  1205. int a[2];
  1206. if (get_intrange(s, &a[0], &a[1]))
  1207. applog(LOG_ERR, "Test !\"%s\" failed: returned true with %d and %d", s, a[0], a[1]);
  1208. }
  1209. static
  1210. void test_intrange()
  1211. {
  1212. _test_intrange("-1--2", -1, -2);
  1213. _test_intrange("-1-2", -1, 2);
  1214. _test_intrange("1--2", 1, -2);
  1215. _test_intrange("1-2", 1, 2);
  1216. _test_intrange("111-222", 111, 222);
  1217. _test_intrange(" 11 - 22 ", 11, 22);
  1218. _test_intrange("+11-+22", 11, 22);
  1219. _test_intrange("-1", -1, -1);
  1220. _test_intrange_fail("all");
  1221. _test_intrange_fail("1-");
  1222. _test_intrange_fail("");
  1223. _test_intrange_fail("1-54x");
  1224. }
  1225. static char *set_devices(char *arg)
  1226. {
  1227. if (*arg) {
  1228. if (*arg == '?') {
  1229. opt_display_devs = true;
  1230. return NULL;
  1231. }
  1232. } else
  1233. return "Invalid device parameters";
  1234. string_elist_add(arg, &opt_devices_enabled_list);
  1235. return NULL;
  1236. }
  1237. static char *set_balance(enum pool_strategy *strategy)
  1238. {
  1239. *strategy = POOL_BALANCE;
  1240. return NULL;
  1241. }
  1242. static char *set_loadbalance(enum pool_strategy *strategy)
  1243. {
  1244. *strategy = POOL_LOADBALANCE;
  1245. return NULL;
  1246. }
  1247. static char *set_rotate(const char *arg, int *i)
  1248. {
  1249. pool_strategy = POOL_ROTATE;
  1250. return set_int_range(arg, i, 0, 9999);
  1251. }
  1252. static char *set_rr(enum pool_strategy *strategy)
  1253. {
  1254. *strategy = POOL_ROUNDROBIN;
  1255. return NULL;
  1256. }
  1257. /* Detect that url is for a stratum protocol either via the presence of
  1258. * stratum+tcp or by detecting a stratum server response */
  1259. bool detect_stratum(struct pool *pool, char *url)
  1260. {
  1261. if (!extract_sockaddr(url, &pool->sockaddr_url, &pool->stratum_port))
  1262. return false;
  1263. if (!strncasecmp(url, "stratum+tcp://", 14)) {
  1264. pool->rpc_url = strdup(url);
  1265. pool->has_stratum = true;
  1266. pool->stratum_url = pool->sockaddr_url;
  1267. return true;
  1268. }
  1269. return false;
  1270. }
  1271. static struct pool *add_url(void)
  1272. {
  1273. total_urls++;
  1274. if (total_urls > total_pools)
  1275. add_pool();
  1276. return pools[total_urls - 1];
  1277. }
  1278. static void setup_url(struct pool *pool, char *arg)
  1279. {
  1280. if (detect_stratum(pool, arg))
  1281. return;
  1282. opt_set_charp(arg, &pool->rpc_url);
  1283. if (strncmp(arg, "http://", 7) &&
  1284. strncmp(arg, "https://", 8)) {
  1285. const size_t L = strlen(arg);
  1286. char *httpinput;
  1287. httpinput = malloc(8 + L);
  1288. if (!httpinput)
  1289. quit(1, "Failed to malloc httpinput");
  1290. sprintf(httpinput, "http://%s", arg);
  1291. pool->rpc_url = httpinput;
  1292. }
  1293. }
  1294. static char *set_url(char *arg)
  1295. {
  1296. struct pool *pool = add_url();
  1297. setup_url(pool, arg);
  1298. return NULL;
  1299. }
  1300. static char *set_quota(char *arg)
  1301. {
  1302. char *semicolon = strchr(arg, ';'), *url;
  1303. int len, qlen, quota;
  1304. struct pool *pool;
  1305. if (!semicolon)
  1306. return "No semicolon separated quota;URL pair found";
  1307. len = strlen(arg);
  1308. *semicolon = '\0';
  1309. qlen = strlen(arg);
  1310. if (!qlen)
  1311. return "No parameter for quota found";
  1312. len -= qlen + 1;
  1313. if (len < 1)
  1314. return "No parameter for URL found";
  1315. quota = atoi(arg);
  1316. if (quota < 0)
  1317. return "Invalid negative parameter for quota set";
  1318. url = arg + qlen + 1;
  1319. pool = add_url();
  1320. setup_url(pool, url);
  1321. pool->quota = quota;
  1322. applog(LOG_INFO, "Setting pool %d to quota %d", pool->pool_no, pool->quota);
  1323. adjust_quota_gcd();
  1324. return NULL;
  1325. }
  1326. static char *set_user(const char *arg)
  1327. {
  1328. struct pool *pool;
  1329. total_users++;
  1330. if (total_users > total_pools)
  1331. add_pool();
  1332. pool = pools[total_users - 1];
  1333. opt_set_charp(arg, &pool->rpc_user);
  1334. return NULL;
  1335. }
  1336. static char *set_pass(const char *arg)
  1337. {
  1338. struct pool *pool;
  1339. total_passes++;
  1340. if (total_passes > total_pools)
  1341. add_pool();
  1342. pool = pools[total_passes - 1];
  1343. opt_set_charp(arg, &pool->rpc_pass);
  1344. return NULL;
  1345. }
  1346. static char *set_userpass(const char *arg)
  1347. {
  1348. struct pool *pool;
  1349. char *updup;
  1350. if (total_users != total_passes)
  1351. return "User + pass options must be balanced before userpass";
  1352. ++total_users;
  1353. ++total_passes;
  1354. if (total_users > total_pools)
  1355. add_pool();
  1356. pool = pools[total_users - 1];
  1357. updup = strdup(arg);
  1358. opt_set_charp(arg, &pool->rpc_userpass);
  1359. pool->rpc_user = strtok(updup, ":");
  1360. if (!pool->rpc_user)
  1361. return "Failed to find : delimited user info";
  1362. pool->rpc_pass = strtok(NULL, ":");
  1363. if (!pool->rpc_pass)
  1364. pool->rpc_pass = "";
  1365. return NULL;
  1366. }
  1367. static char *set_pool_priority(const char *arg)
  1368. {
  1369. struct pool *pool;
  1370. if (!total_pools)
  1371. return "Usage of --pool-priority before pools are defined does not make sense";
  1372. pool = pools[total_pools - 1];
  1373. opt_set_intval(arg, &pool->prio);
  1374. return NULL;
  1375. }
  1376. static char *set_pool_proxy(const char *arg)
  1377. {
  1378. struct pool *pool;
  1379. if (!total_pools)
  1380. return "Usage of --pool-proxy before pools are defined does not make sense";
  1381. if (!our_curl_supports_proxy_uris())
  1382. return "Your installed cURL library does not support proxy URIs. At least version 7.21.7 is required.";
  1383. pool = pools[total_pools - 1];
  1384. opt_set_charp(arg, &pool->rpc_proxy);
  1385. return NULL;
  1386. }
  1387. static char *set_pool_force_rollntime(const char *arg)
  1388. {
  1389. struct pool *pool;
  1390. if (!total_pools)
  1391. return "Usage of --force-rollntime before pools are defined does not make sense";
  1392. pool = pools[total_pools - 1];
  1393. opt_set_intval(arg, &pool->force_rollntime);
  1394. return NULL;
  1395. }
  1396. static char *enable_debug(bool *flag)
  1397. {
  1398. *flag = true;
  1399. opt_debug_console = true;
  1400. /* Turn on verbose output, too. */
  1401. opt_log_output = true;
  1402. return NULL;
  1403. }
  1404. static char *set_schedtime(const char *arg, struct schedtime *st)
  1405. {
  1406. if (sscanf(arg, "%d:%d", &st->tm.tm_hour, &st->tm.tm_min) != 2)
  1407. {
  1408. if (strcasecmp(arg, "now"))
  1409. return "Invalid time set, should be HH:MM";
  1410. } else
  1411. schedstop.tm.tm_sec = 0;
  1412. if (st->tm.tm_hour > 23 || st->tm.tm_min > 59 || st->tm.tm_hour < 0 || st->tm.tm_min < 0)
  1413. return "Invalid time set.";
  1414. st->enable = true;
  1415. return NULL;
  1416. }
  1417. static
  1418. char *set_log_file(char *arg)
  1419. {
  1420. char *r = "";
  1421. long int i = strtol(arg, &r, 10);
  1422. int fd, stderr_fd = fileno(stderr);
  1423. if ((!*r) && i >= 0 && i <= INT_MAX)
  1424. fd = i;
  1425. else
  1426. if (!strcmp(arg, "-"))
  1427. {
  1428. fd = fileno(stdout);
  1429. if (unlikely(fd == -1))
  1430. return "Standard output missing for log-file";
  1431. }
  1432. else
  1433. {
  1434. fd = open(arg, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
  1435. if (unlikely(fd == -1))
  1436. return "Failed to open log-file";
  1437. }
  1438. close(stderr_fd);
  1439. if (unlikely(-1 == dup2(fd, stderr_fd)))
  1440. return "Failed to dup2 for log-file";
  1441. close(fd);
  1442. return NULL;
  1443. }
  1444. static
  1445. char *_bfgopt_set_file(const char *arg, FILE **F, const char *mode, const char *purpose)
  1446. {
  1447. char *r = "";
  1448. long int i = strtol(arg, &r, 10);
  1449. static char *err = NULL;
  1450. const size_t errbufsz = 0x100;
  1451. free(err);
  1452. err = NULL;
  1453. if ((!*r) && i >= 0 && i <= INT_MAX) {
  1454. *F = fdopen((int)i, mode);
  1455. if (!*F)
  1456. {
  1457. err = malloc(errbufsz);
  1458. snprintf(err, errbufsz, "Failed to open fd %d for %s",
  1459. (int)i, purpose);
  1460. return err;
  1461. }
  1462. } else if (!strcmp(arg, "-")) {
  1463. *F = (mode[0] == 'a') ? stdout : stdin;
  1464. if (!*F)
  1465. {
  1466. err = malloc(errbufsz);
  1467. snprintf(err, errbufsz, "Standard %sput missing for %s",
  1468. (mode[0] == 'a') ? "out" : "in", purpose);
  1469. return err;
  1470. }
  1471. } else {
  1472. *F = fopen(arg, mode);
  1473. if (!*F)
  1474. {
  1475. err = malloc(errbufsz);
  1476. snprintf(err, errbufsz, "Failed to open %s for %s",
  1477. arg, purpose);
  1478. return err;
  1479. }
  1480. }
  1481. return NULL;
  1482. }
  1483. static char *set_noncelog(char *arg)
  1484. {
  1485. return _bfgopt_set_file(arg, &noncelog_file, "a", "nonce log");
  1486. }
  1487. static char *set_sharelog(char *arg)
  1488. {
  1489. return _bfgopt_set_file(arg, &sharelog_file, "a", "share log");
  1490. }
  1491. static
  1492. void _add_set_device_option(const char * const func, const char * const buf)
  1493. {
  1494. applog(LOG_DEBUG, "%s: Using --set-device %s", func, buf);
  1495. string_elist_add(buf, &opt_set_device_list);
  1496. }
  1497. #define add_set_device_option(...) do{ \
  1498. char _tmp1718[0x100]; \
  1499. snprintf(_tmp1718, sizeof(_tmp1718), __VA_ARGS__); \
  1500. _add_set_device_option(__func__, _tmp1718); \
  1501. }while(0)
  1502. char *set_temp_cutoff(char *arg)
  1503. {
  1504. if (strchr(arg, ','))
  1505. return "temp-cutoff no longer supports comma-delimited syntax, use --set-device for better control";
  1506. applog(LOG_WARNING, "temp-cutoff is deprecated! Use --set-device for better control");
  1507. add_set_device_option("all:temp-cutoff=%s", arg);
  1508. return NULL;
  1509. }
  1510. char *set_temp_target(char *arg)
  1511. {
  1512. if (strchr(arg, ','))
  1513. return "temp-target no longer supports comma-delimited syntax, use --set-device for better control";
  1514. applog(LOG_WARNING, "temp-target is deprecated! Use --set-device for better control");
  1515. add_set_device_option("all:temp-target=%s", arg);
  1516. return NULL;
  1517. }
  1518. #ifdef HAVE_OPENCL
  1519. static
  1520. char *set_no_opencl_binaries(__maybe_unused void * const dummy)
  1521. {
  1522. applog(LOG_WARNING, "The --no-opencl-binaries option is deprecated! Use --set-device OCL:binary=no");
  1523. add_set_device_option("OCL:binary=no");
  1524. return NULL;
  1525. }
  1526. #endif
  1527. static
  1528. char *disable_pool_redirect(__maybe_unused void * const dummy)
  1529. {
  1530. opt_disable_client_reconnect = true;
  1531. want_stratum = false;
  1532. return NULL;
  1533. }
  1534. static char *set_api_allow(const char *arg)
  1535. {
  1536. opt_set_charp(arg, &opt_api_allow);
  1537. return NULL;
  1538. }
  1539. static char *set_api_groups(const char *arg)
  1540. {
  1541. opt_set_charp(arg, &opt_api_groups);
  1542. return NULL;
  1543. }
  1544. static char *set_api_description(const char *arg)
  1545. {
  1546. opt_set_charp(arg, &opt_api_description);
  1547. return NULL;
  1548. }
  1549. static char *set_api_mcast_des(const char *arg)
  1550. {
  1551. opt_set_charp(arg, &opt_api_mcast_des);
  1552. return NULL;
  1553. }
  1554. #ifdef USE_ICARUS
  1555. extern const struct bfg_set_device_definition icarus_set_device_funcs[];
  1556. static char *set_icarus_options(const char *arg)
  1557. {
  1558. if (strchr(arg, ','))
  1559. return "icarus-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1560. applog(LOG_WARNING, "icarus-options is deprecated! See README.FPGA for better control");
  1561. char *opts = strdup(arg), *argdup;
  1562. argdup = opts;
  1563. const struct bfg_set_device_definition *sdf = icarus_set_device_funcs;
  1564. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1565. char *saveptr, *opt;
  1566. for (int i = 0; i < 4; ++i, ++sdf)
  1567. {
  1568. opt = strtok_r(opts, ":", &saveptr);
  1569. opts = NULL;
  1570. if (!opt)
  1571. break;
  1572. if (!opt[0])
  1573. continue;
  1574. for (int j = 0; j < 4; ++j)
  1575. add_set_device_option("%s:%s=%s", drivers[j], sdf->optname, opt);
  1576. }
  1577. free(argdup);
  1578. return NULL;
  1579. }
  1580. static char *set_icarus_timing(const char *arg)
  1581. {
  1582. if (strchr(arg, ','))
  1583. return "icarus-timing no longer supports comma-delimited syntax, see README.FPGA for better control";
  1584. applog(LOG_WARNING, "icarus-timing is deprecated! See README.FPGA for better control");
  1585. const char *drivers[] = {"antminer", "cairnsmore", "erupter", "icarus"};
  1586. for (int j = 0; j < 4; ++j)
  1587. add_set_device_option("%s:timing=%s", drivers[j], arg);
  1588. return NULL;
  1589. }
  1590. #endif
  1591. #ifdef USE_AVALON
  1592. extern const struct bfg_set_device_definition avalon_set_device_funcs[];
  1593. static char *set_avalon_options(const char *arg)
  1594. {
  1595. if (strchr(arg, ','))
  1596. return "avalon-options no longer supports comma-delimited syntax, see README.FPGA for better control";
  1597. applog(LOG_WARNING, "avalon-options is deprecated! See README.FPGA for better control");
  1598. char *opts = strdup(arg), *argdup;
  1599. argdup = opts;
  1600. const struct bfg_set_device_definition *sdf = avalon_set_device_funcs;
  1601. char *saveptr, *opt;
  1602. for (int i = 0; i < 5; ++i, ++sdf)
  1603. {
  1604. opt = strtok_r(opts, ":", &saveptr);
  1605. opts = NULL;
  1606. if (!opt)
  1607. break;
  1608. if (!opt[0])
  1609. continue;
  1610. add_set_device_option("avalon:%s=%s", sdf->optname, opt);
  1611. }
  1612. free(argdup);
  1613. return NULL;
  1614. }
  1615. #endif
  1616. #ifdef USE_KLONDIKE
  1617. static char *set_klondike_options(const char *arg)
  1618. {
  1619. int hashclock;
  1620. double temptarget;
  1621. switch (sscanf(arg, "%d:%lf", &hashclock, &temptarget))
  1622. {
  1623. default:
  1624. return "Unrecognised --klondike-options";
  1625. case 2:
  1626. add_set_device_option("klondike:temp-target=%lf", temptarget);
  1627. // fallthru
  1628. case 1:
  1629. add_set_device_option("klondike:clock=%d", hashclock);
  1630. }
  1631. applog(LOG_WARNING, "klondike-options is deprecated! Use --set-device for better control");
  1632. return NULL;
  1633. }
  1634. #endif
  1635. __maybe_unused
  1636. static char *set_null(const char __maybe_unused *arg)
  1637. {
  1638. return NULL;
  1639. }
  1640. /* These options are available from config file or commandline */
  1641. static struct opt_table opt_config_table[] = {
  1642. #ifdef WANT_CPUMINE
  1643. OPT_WITH_ARG("--algo",
  1644. set_algo, show_algo, &opt_algo,
  1645. "Specify sha256 implementation for CPU mining:\n"
  1646. "\tfastauto*\tQuick benchmark at startup to pick a working algorithm\n"
  1647. "\tauto\t\tBenchmark at startup and pick fastest algorithm"
  1648. "\n\tc\t\tLinux kernel sha256, implemented in C"
  1649. #ifdef WANT_SSE2_4WAY
  1650. "\n\t4way\t\ttcatm's 4-way SSE2 implementation"
  1651. #endif
  1652. #ifdef WANT_VIA_PADLOCK
  1653. "\n\tvia\t\tVIA padlock implementation"
  1654. #endif
  1655. "\n\tcryptopp\tCrypto++ C/C++ implementation"
  1656. #ifdef WANT_CRYPTOPP_ASM32
  1657. "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
  1658. #endif
  1659. #ifdef WANT_X8632_SSE2
  1660. "\n\tsse2_32\t\tSSE2 32 bit implementation for i386 machines"
  1661. #endif
  1662. #ifdef WANT_X8664_SSE2
  1663. "\n\tsse2_64\t\tSSE2 64 bit implementation for x86_64 machines"
  1664. #endif
  1665. #ifdef WANT_X8664_SSE4
  1666. "\n\tsse4_64\t\tSSE4.1 64 bit implementation for x86_64 machines"
  1667. #endif
  1668. #ifdef WANT_ALTIVEC_4WAY
  1669. "\n\taltivec_4way\tAltivec implementation for PowerPC G4 and G5 machines"
  1670. #endif
  1671. ),
  1672. OPT_WITH_ARG("-a",
  1673. set_algo, show_algo, &opt_algo,
  1674. opt_hidden),
  1675. #endif
  1676. OPT_WITH_ARG("--api-allow",
  1677. set_api_allow, NULL, NULL,
  1678. "Allow API access only to the given list of [G:]IP[/Prefix] addresses[/subnets]"),
  1679. OPT_WITH_ARG("--api-description",
  1680. set_api_description, NULL, NULL,
  1681. "Description placed in the API status header, default: BFGMiner version"),
  1682. OPT_WITH_ARG("--api-groups",
  1683. set_api_groups, NULL, NULL,
  1684. "API one letter groups G:cmd:cmd[,P:cmd:*...] defining the cmds a groups can use"),
  1685. OPT_WITHOUT_ARG("--api-listen",
  1686. opt_set_bool, &opt_api_listen,
  1687. "Enable API, default: disabled"),
  1688. OPT_WITHOUT_ARG("--api-mcast",
  1689. opt_set_bool, &opt_api_mcast,
  1690. "Enable API Multicast listener, default: disabled"),
  1691. OPT_WITH_ARG("--api-mcast-addr",
  1692. opt_set_charp, opt_show_charp, &opt_api_mcast_addr,
  1693. "API Multicast listen address"),
  1694. OPT_WITH_ARG("--api-mcast-code",
  1695. opt_set_charp, opt_show_charp, &opt_api_mcast_code,
  1696. "Code expected in the API Multicast message, don't use '-'"),
  1697. OPT_WITH_ARG("--api-mcast-des",
  1698. set_api_mcast_des, NULL, NULL,
  1699. "Description appended to the API Multicast reply, default: ''"),
  1700. OPT_WITH_ARG("--api-mcast-port",
  1701. set_int_1_to_65535, opt_show_intval, &opt_api_mcast_port,
  1702. "API Multicast listen port"),
  1703. OPT_WITHOUT_ARG("--api-network",
  1704. opt_set_bool, &opt_api_network,
  1705. "Allow API (if enabled) to listen on/for any address, default: only 127.0.0.1"),
  1706. OPT_WITH_ARG("--api-port",
  1707. set_int_1_to_65535, opt_show_intval, &opt_api_port,
  1708. "Port number of miner API"),
  1709. #ifdef HAVE_ADL
  1710. OPT_WITHOUT_ARG("--auto-fan",
  1711. opt_set_bool, &opt_autofan,
  1712. opt_hidden),
  1713. OPT_WITHOUT_ARG("--auto-gpu",
  1714. opt_set_bool, &opt_autoengine,
  1715. opt_hidden),
  1716. #endif
  1717. OPT_WITHOUT_ARG("--balance",
  1718. set_balance, &pool_strategy,
  1719. "Change multipool strategy from failover to even share balance"),
  1720. OPT_WITHOUT_ARG("--benchmark",
  1721. opt_set_bool, &opt_benchmark,
  1722. "Run BFGMiner in benchmark mode - produces no shares"),
  1723. #if defined(USE_BITFORCE)
  1724. OPT_WITHOUT_ARG("--bfl-range",
  1725. opt_set_bool, &opt_bfl_noncerange,
  1726. "Use nonce range on bitforce devices if supported"),
  1727. #endif
  1728. #ifdef HAVE_CHROOT
  1729. OPT_WITH_ARG("--chroot-dir",
  1730. opt_set_charp, NULL, &chroot_dir,
  1731. "Chroot to a directory right after startup"),
  1732. #endif
  1733. OPT_WITH_ARG("--cmd-idle",
  1734. opt_set_charp, NULL, &cmd_idle,
  1735. "Execute a command when a device is allowed to be idle (rest or wait)"),
  1736. OPT_WITH_ARG("--cmd-sick",
  1737. opt_set_charp, NULL, &cmd_sick,
  1738. "Execute a command when a device is declared sick"),
  1739. OPT_WITH_ARG("--cmd-dead",
  1740. opt_set_charp, NULL, &cmd_dead,
  1741. "Execute a command when a device is declared dead"),
  1742. #if BLKMAKER_VERSION > 1
  1743. OPT_WITH_ARG("--coinbase-addr",
  1744. set_b58addr, NULL, &opt_coinbase_script,
  1745. "Set coinbase payout address for solo mining"),
  1746. OPT_WITH_ARG("--coinbase-address|--coinbase-payout|--cbaddress|--cbaddr|--cb-address|--cb-addr|--payout",
  1747. set_b58addr, NULL, &opt_coinbase_script,
  1748. opt_hidden),
  1749. #endif
  1750. #if BLKMAKER_VERSION > 0
  1751. OPT_WITH_ARG("--coinbase-sig",
  1752. set_strdup, NULL, &opt_coinbase_sig,
  1753. "Set coinbase signature when possible"),
  1754. OPT_WITH_ARG("--coinbase|--cbsig|--cb-sig|--cb|--prayer",
  1755. set_strdup, NULL, &opt_coinbase_sig,
  1756. opt_hidden),
  1757. #endif
  1758. #ifdef HAVE_CURSES
  1759. OPT_WITHOUT_ARG("--compact",
  1760. opt_set_bool, &opt_compact,
  1761. "Use compact display without per device statistics"),
  1762. #endif
  1763. #ifdef WANT_CPUMINE
  1764. OPT_WITH_ARG("--cpu-threads",
  1765. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1766. "Number of miner CPU threads"),
  1767. OPT_WITH_ARG("-t",
  1768. force_nthreads_int, opt_show_intval, &opt_n_threads,
  1769. opt_hidden),
  1770. #endif
  1771. OPT_WITHOUT_ARG("--debug|-D",
  1772. enable_debug, &opt_debug,
  1773. "Enable debug output"),
  1774. OPT_WITHOUT_ARG("--debuglog",
  1775. opt_set_bool, &opt_debug,
  1776. "Enable debug logging"),
  1777. OPT_WITHOUT_ARG("--device-protocol-dump",
  1778. opt_set_bool, &opt_dev_protocol,
  1779. "Verbose dump of device protocol-level activities"),
  1780. OPT_WITH_ARG("--device|-d",
  1781. set_devices, NULL, NULL,
  1782. "Enable only devices matching pattern (default: all)"),
  1783. OPT_WITHOUT_ARG("--disable-rejecting",
  1784. opt_set_bool, &opt_disable_pool,
  1785. "Automatically disable pools that continually reject shares"),
  1786. #ifdef USE_LIBMICROHTTPD
  1787. OPT_WITH_ARG("--http-port",
  1788. opt_set_intval, opt_show_intval, &httpsrv_port,
  1789. "Port number to listen on for HTTP getwork miners (-1 means disabled)"),
  1790. #endif
  1791. OPT_WITH_ARG("--expiry",
  1792. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1793. "Upper bound on how many seconds after getting work we consider a share from it stale (w/o longpoll active)"),
  1794. OPT_WITH_ARG("-E",
  1795. set_int_0_to_9999, opt_show_intval, &opt_expiry,
  1796. opt_hidden),
  1797. OPT_WITH_ARG("--expiry-lp",
  1798. set_int_0_to_9999, opt_show_intval, &opt_expiry_lp,
  1799. "Upper bound on how many seconds after getting work we consider a share from it stale (with longpoll active)"),
  1800. OPT_WITHOUT_ARG("--failover-only",
  1801. opt_set_bool, &opt_fail_only,
  1802. "Don't leak work to backup pools when primary pool is lagging"),
  1803. OPT_WITH_ARG("--failover-switch-delay",
  1804. set_int_1_to_65535, opt_show_intval, &opt_fail_switch_delay,
  1805. "Delay in seconds before switching back to a failed pool"),
  1806. #ifdef USE_FPGA
  1807. OPT_WITHOUT_ARG("--force-dev-init",
  1808. opt_set_bool, &opt_force_dev_init,
  1809. "Always initialize devices when possible (such as bitstream uploads to some FPGAs)"),
  1810. #endif
  1811. #ifdef HAVE_OPENCL
  1812. OPT_WITH_ARG("--gpu-dyninterval",
  1813. set_int_1_to_65535, opt_show_intval, &opt_dynamic_interval,
  1814. opt_hidden),
  1815. OPT_WITH_ARG("--gpu-platform",
  1816. set_int_0_to_9999, opt_show_intval, &opt_platform_id,
  1817. "Select OpenCL platform ID to use for GPU mining"),
  1818. OPT_WITH_ARG("--gpu-threads|-g",
  1819. set_gpu_threads, opt_show_intval, &opt_g_threads,
  1820. opt_hidden),
  1821. #ifdef HAVE_ADL
  1822. OPT_WITH_ARG("--gpu-engine",
  1823. set_gpu_engine, NULL, NULL,
  1824. opt_hidden),
  1825. OPT_WITH_ARG("--gpu-fan",
  1826. set_gpu_fan, NULL, NULL,
  1827. opt_hidden),
  1828. OPT_WITH_ARG("--gpu-map",
  1829. set_gpu_map, NULL, NULL,
  1830. "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
  1831. OPT_WITH_ARG("--gpu-memclock",
  1832. set_gpu_memclock, NULL, NULL,
  1833. opt_hidden),
  1834. OPT_WITH_ARG("--gpu-memdiff",
  1835. set_gpu_memdiff, NULL, NULL,
  1836. opt_hidden),
  1837. OPT_WITH_ARG("--gpu-powertune",
  1838. set_gpu_powertune, NULL, NULL,
  1839. opt_hidden),
  1840. OPT_WITHOUT_ARG("--gpu-reorder",
  1841. opt_set_bool, &opt_reorder,
  1842. "Attempt to reorder GPU devices according to PCI Bus ID"),
  1843. OPT_WITH_ARG("--gpu-vddc",
  1844. set_gpu_vddc, NULL, NULL,
  1845. opt_hidden),
  1846. #endif
  1847. #ifdef USE_SCRYPT
  1848. OPT_WITH_ARG("--lookup-gap",
  1849. set_lookup_gap, NULL, NULL,
  1850. opt_hidden),
  1851. #endif
  1852. OPT_WITH_ARG("--intensity|-I",
  1853. set_intensity, NULL, NULL,
  1854. opt_hidden),
  1855. #endif
  1856. #if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
  1857. OPT_WITH_ARG("--kernel-path",
  1858. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1859. "Specify a path to where bitstream and kernel files are"),
  1860. OPT_WITH_ARG("-K",
  1861. opt_set_charp, opt_show_charp, &opt_kernel_path,
  1862. opt_hidden),
  1863. #endif
  1864. #ifdef HAVE_OPENCL
  1865. OPT_WITH_ARG("--kernel|-k",
  1866. set_kernel, NULL, NULL,
  1867. opt_hidden),
  1868. #endif
  1869. #ifdef USE_ICARUS
  1870. OPT_WITH_ARG("--icarus-options",
  1871. set_icarus_options, NULL, NULL,
  1872. opt_hidden),
  1873. OPT_WITH_ARG("--icarus-timing",
  1874. set_icarus_timing, NULL, NULL,
  1875. opt_hidden),
  1876. #endif
  1877. #ifdef USE_AVALON
  1878. OPT_WITH_ARG("--avalon-options",
  1879. set_avalon_options, NULL, NULL,
  1880. opt_hidden),
  1881. #endif
  1882. #ifdef USE_KLONDIKE
  1883. OPT_WITH_ARG("--klondike-options",
  1884. set_klondike_options, NULL, NULL,
  1885. "Set klondike options clock:temptarget"),
  1886. #endif
  1887. OPT_WITHOUT_ARG("--load-balance",
  1888. set_loadbalance, &pool_strategy,
  1889. "Change multipool strategy from failover to quota based balance"),
  1890. OPT_WITH_ARG("--log|-l",
  1891. set_int_0_to_9999, opt_show_intval, &opt_log_interval,
  1892. "Interval in seconds between log output"),
  1893. OPT_WITH_ARG("--log-file|-L",
  1894. set_log_file, NULL, NULL,
  1895. "Append log file for output messages"),
  1896. OPT_WITH_ARG("--logfile",
  1897. set_log_file, NULL, NULL,
  1898. opt_hidden),
  1899. OPT_WITHOUT_ARG("--log-microseconds",
  1900. opt_set_bool, &opt_log_microseconds,
  1901. "Include microseconds in log output"),
  1902. #if defined(unix) || defined(__APPLE__)
  1903. OPT_WITH_ARG("--monitor|-m",
  1904. opt_set_charp, NULL, &opt_stderr_cmd,
  1905. "Use custom pipe cmd for output messages"),
  1906. #endif // defined(unix)
  1907. OPT_WITHOUT_ARG("--net-delay",
  1908. opt_set_bool, &opt_delaynet,
  1909. "Impose small delays in networking to avoid overloading slow routers"),
  1910. OPT_WITHOUT_ARG("--no-adl",
  1911. opt_set_bool, &opt_noadl,
  1912. #ifdef HAVE_ADL
  1913. "Disable the ATI display library used for monitoring and setting GPU parameters"
  1914. #else
  1915. opt_hidden
  1916. #endif
  1917. ),
  1918. OPT_WITHOUT_ARG("--no-gbt",
  1919. opt_set_invbool, &want_gbt,
  1920. "Disable getblocktemplate support"),
  1921. OPT_WITHOUT_ARG("--no-getwork",
  1922. opt_set_invbool, &want_getwork,
  1923. "Disable getwork support"),
  1924. OPT_WITHOUT_ARG("--no-hotplug",
  1925. #ifdef HAVE_BFG_HOTPLUG
  1926. opt_set_invbool, &opt_hotplug,
  1927. "Disable hotplug detection"
  1928. #else
  1929. set_null, &opt_hotplug,
  1930. opt_hidden
  1931. #endif
  1932. ),
  1933. OPT_WITHOUT_ARG("--no-longpoll",
  1934. opt_set_invbool, &want_longpoll,
  1935. "Disable X-Long-Polling support"),
  1936. OPT_WITHOUT_ARG("--no-pool-disable",
  1937. opt_set_invbool, &opt_disable_pool,
  1938. opt_hidden),
  1939. OPT_WITHOUT_ARG("--no-client-reconnect",
  1940. opt_set_invbool, &opt_disable_client_reconnect,
  1941. opt_hidden),
  1942. OPT_WITHOUT_ARG("--no-pool-redirect",
  1943. disable_pool_redirect, NULL,
  1944. "Ignore pool requests to redirect to another server"),
  1945. OPT_WITHOUT_ARG("--no-restart",
  1946. opt_set_invbool, &opt_restart,
  1947. "Do not attempt to restart devices that hang"
  1948. ),
  1949. OPT_WITHOUT_ARG("--no-show-processors",
  1950. opt_set_invbool, &opt_show_procs,
  1951. opt_hidden),
  1952. OPT_WITHOUT_ARG("--no-show-procs",
  1953. opt_set_invbool, &opt_show_procs,
  1954. opt_hidden),
  1955. OPT_WITHOUT_ARG("--no-stratum",
  1956. opt_set_invbool, &want_stratum,
  1957. "Disable Stratum detection"),
  1958. OPT_WITHOUT_ARG("--no-submit-stale",
  1959. opt_set_invbool, &opt_submit_stale,
  1960. "Don't submit shares if they are detected as stale"),
  1961. #ifdef HAVE_OPENCL
  1962. OPT_WITHOUT_ARG("--no-opencl-binaries",
  1963. set_no_opencl_binaries, NULL,
  1964. opt_hidden),
  1965. #endif
  1966. OPT_WITHOUT_ARG("--no-unicode",
  1967. #ifdef USE_UNICODE
  1968. opt_set_invbool, &use_unicode,
  1969. "Don't use Unicode characters in TUI"
  1970. #else
  1971. set_null, &use_unicode,
  1972. opt_hidden
  1973. #endif
  1974. ),
  1975. OPT_WITH_ARG("--noncelog",
  1976. set_noncelog, NULL, NULL,
  1977. "Create log of all nonces found"),
  1978. OPT_WITH_ARG("--pass|-p",
  1979. set_pass, NULL, NULL,
  1980. "Password for bitcoin JSON-RPC server"),
  1981. OPT_WITHOUT_ARG("--per-device-stats",
  1982. opt_set_bool, &want_per_device_stats,
  1983. "Force verbose mode and output per-device statistics"),
  1984. OPT_WITH_ARG("--userpass|-O", // duplicate to ensure config loads it before pool-priority
  1985. set_userpass, NULL, NULL,
  1986. opt_hidden),
  1987. OPT_WITH_ARG("--pool-priority",
  1988. set_pool_priority, NULL, NULL,
  1989. "Priority for just the previous-defined pool"),
  1990. OPT_WITH_ARG("--pool-proxy|-x",
  1991. set_pool_proxy, NULL, NULL,
  1992. "Proxy URI to use for connecting to just the previous-defined pool"),
  1993. OPT_WITH_ARG("--force-rollntime", // NOTE: must be after --pass for config file ordering
  1994. set_pool_force_rollntime, NULL, NULL,
  1995. opt_hidden),
  1996. OPT_WITHOUT_ARG("--protocol-dump|-P",
  1997. opt_set_bool, &opt_protocol,
  1998. "Verbose dump of protocol-level activities"),
  1999. OPT_WITH_ARG("--queue|-Q",
  2000. set_int_0_to_9999, opt_show_intval, &opt_queue,
  2001. "Minimum number of work items to have queued (0+)"),
  2002. OPT_WITHOUT_ARG("--quiet|-q",
  2003. opt_set_bool, &opt_quiet,
  2004. "Disable logging output, display status and errors"),
  2005. OPT_WITHOUT_ARG("--quiet-work-updates|--quiet-work-update",
  2006. opt_set_bool, &opt_quiet_work_updates,
  2007. opt_hidden),
  2008. OPT_WITH_ARG("--quit-summary",
  2009. set_quit_summary, NULL, NULL,
  2010. "Summary printed when you quit: none/devs/procs/detailed"),
  2011. OPT_WITH_ARG("--quota|-U",
  2012. set_quota, NULL, NULL,
  2013. "quota;URL combination for server with load-balance strategy quotas"),
  2014. OPT_WITHOUT_ARG("--real-quiet",
  2015. opt_set_bool, &opt_realquiet,
  2016. "Disable all output"),
  2017. OPT_WITH_ARG("--request-diff",
  2018. set_request_diff, opt_show_floatval, &request_pdiff,
  2019. "Request a specific difficulty from pools"),
  2020. OPT_WITH_ARG("--retries",
  2021. opt_set_intval, opt_show_intval, &opt_retries,
  2022. "Number of times to retry failed submissions before giving up (-1 means never)"),
  2023. OPT_WITH_ARG("--retry-pause",
  2024. set_null, NULL, NULL,
  2025. opt_hidden),
  2026. OPT_WITH_ARG("--rotate",
  2027. set_rotate, opt_show_intval, &opt_rotate_period,
  2028. "Change multipool strategy from failover to regularly rotate at N minutes"),
  2029. OPT_WITHOUT_ARG("--round-robin",
  2030. set_rr, &pool_strategy,
  2031. "Change multipool strategy from failover to round robin on failure"),
  2032. OPT_WITH_ARG("--scan|-S",
  2033. add_serial, NULL, NULL,
  2034. "Configure how to scan for mining devices"),
  2035. OPT_WITH_ARG("--scan-device|--scan-serial|--devscan",
  2036. add_serial, NULL, NULL,
  2037. opt_hidden),
  2038. OPT_WITH_ARG("--scan-time",
  2039. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2040. "Upper bound on time spent scanning current work, in seconds"),
  2041. OPT_WITH_ARG("-s",
  2042. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2043. opt_hidden),
  2044. OPT_WITH_ARG("--scantime",
  2045. set_int_0_to_9999, opt_show_intval, &opt_scantime,
  2046. opt_hidden),
  2047. OPT_WITH_ARG("--sched-start",
  2048. set_schedtime, NULL, &schedstart,
  2049. "Set a time of day in HH:MM to start mining (a once off without a stop time)"),
  2050. OPT_WITH_ARG("--sched-stop",
  2051. set_schedtime, NULL, &schedstop,
  2052. "Set a time of day in HH:MM to stop mining (will quit without a start time)"),
  2053. #ifdef USE_SCRYPT
  2054. OPT_WITHOUT_ARG("--scrypt",
  2055. opt_set_bool, &opt_scrypt,
  2056. "Use the scrypt algorithm for mining (non-bitcoin)"),
  2057. #endif
  2058. OPT_WITH_ARG("--set-device|--set",
  2059. opt_string_elist_add, NULL, &opt_set_device_list,
  2060. "Set default parameters on devices; eg, NFY:osc6_bits=50"),
  2061. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2062. OPT_WITH_ARG("--shaders",
  2063. set_shaders, NULL, NULL,
  2064. opt_hidden),
  2065. #endif
  2066. #ifdef HAVE_PWD_H
  2067. OPT_WITH_ARG("--setuid",
  2068. opt_set_charp, NULL, &opt_setuid,
  2069. "Username of an unprivileged user to run as"),
  2070. #endif
  2071. OPT_WITH_ARG("--sharelog",
  2072. set_sharelog, NULL, NULL,
  2073. "Append share log to file"),
  2074. OPT_WITH_ARG("--shares",
  2075. opt_set_floatval, NULL, &opt_shares,
  2076. "Quit after mining 2^32 * N hashes worth of shares (default: unlimited)"),
  2077. OPT_WITHOUT_ARG("--show-processors",
  2078. opt_set_bool, &opt_show_procs,
  2079. "Show per processor statistics in summary"),
  2080. OPT_WITHOUT_ARG("--show-procs",
  2081. opt_set_bool, &opt_show_procs,
  2082. opt_hidden),
  2083. OPT_WITH_ARG("--skip-security-checks",
  2084. set_int_0_to_9999, NULL, &opt_skip_checks,
  2085. "Skip security checks sometimes to save bandwidth; only check 1/<arg>th of the time (default: never skip)"),
  2086. OPT_WITH_ARG("--socks-proxy",
  2087. opt_set_charp, NULL, &opt_socks_proxy,
  2088. "Set socks proxy (host:port)"),
  2089. #ifdef USE_LIBEVENT
  2090. OPT_WITH_ARG("--stratum-port",
  2091. opt_set_intval, opt_show_intval, &stratumsrv_port,
  2092. "Port number to listen on for stratum miners (-1 means disabled)"),
  2093. #endif
  2094. OPT_WITHOUT_ARG("--submit-stale",
  2095. opt_set_bool, &opt_submit_stale,
  2096. opt_hidden),
  2097. OPT_WITH_ARG("--submit-threads",
  2098. opt_set_intval, opt_show_intval, &opt_submit_threads,
  2099. "Minimum number of concurrent share submissions (default: 64)"),
  2100. #ifdef HAVE_SYSLOG_H
  2101. OPT_WITHOUT_ARG("--syslog",
  2102. opt_set_bool, &use_syslog,
  2103. "Use system log for output messages (default: standard error)"),
  2104. #endif
  2105. OPT_WITH_ARG("--temp-cutoff",
  2106. set_temp_cutoff, NULL, &opt_cutofftemp,
  2107. opt_hidden),
  2108. OPT_WITH_ARG("--temp-hysteresis",
  2109. set_int_1_to_10, opt_show_intval, &opt_hysteresis,
  2110. "Set how much the temperature can fluctuate outside limits when automanaging speeds"),
  2111. #ifdef HAVE_ADL
  2112. OPT_WITH_ARG("--temp-overheat",
  2113. set_temp_overheat, opt_show_intval, &opt_overheattemp,
  2114. opt_hidden),
  2115. #endif
  2116. OPT_WITH_ARG("--temp-target",
  2117. set_temp_target, NULL, NULL,
  2118. opt_hidden),
  2119. OPT_WITHOUT_ARG("--text-only|-T",
  2120. opt_set_invbool, &use_curses,
  2121. #ifdef HAVE_CURSES
  2122. "Disable ncurses formatted screen output"
  2123. #else
  2124. opt_hidden
  2125. #endif
  2126. ),
  2127. #if defined(USE_SCRYPT) && defined(HAVE_OPENCL)
  2128. OPT_WITH_ARG("--thread-concurrency",
  2129. set_thread_concurrency, NULL, NULL,
  2130. opt_hidden),
  2131. #endif
  2132. #ifdef USE_UNICODE
  2133. OPT_WITHOUT_ARG("--unicode",
  2134. opt_set_bool, &use_unicode,
  2135. "Use Unicode characters in TUI"),
  2136. #endif
  2137. OPT_WITH_ARG("--url|-o",
  2138. set_url, NULL, NULL,
  2139. "URL for bitcoin JSON-RPC server"),
  2140. OPT_WITH_ARG("--user|-u",
  2141. set_user, NULL, NULL,
  2142. "Username for bitcoin JSON-RPC server"),
  2143. #ifdef HAVE_OPENCL
  2144. OPT_WITH_ARG("--vectors|-v",
  2145. set_vector, NULL, NULL,
  2146. opt_hidden),
  2147. #endif
  2148. OPT_WITHOUT_ARG("--verbose",
  2149. opt_set_bool, &opt_log_output,
  2150. "Log verbose output to stderr as well as status output"),
  2151. OPT_WITHOUT_ARG("--verbose-work-updates|--verbose-work-update",
  2152. opt_set_invbool, &opt_quiet_work_updates,
  2153. opt_hidden),
  2154. OPT_WITHOUT_ARG("--weighed-stats",
  2155. opt_set_bool, &opt_weighed_stats,
  2156. "Display statistics weighed to difficulty 1"),
  2157. #ifdef HAVE_OPENCL
  2158. OPT_WITH_ARG("--worksize|-w",
  2159. set_worksize, NULL, NULL,
  2160. opt_hidden),
  2161. #endif
  2162. OPT_WITHOUT_ARG("--unittest",
  2163. opt_set_bool, &opt_unittest, opt_hidden),
  2164. OPT_WITH_ARG("--userpass|-O",
  2165. set_userpass, NULL, NULL,
  2166. "Username:Password pair for bitcoin JSON-RPC server"),
  2167. OPT_WITHOUT_ARG("--worktime",
  2168. opt_set_bool, &opt_worktime,
  2169. "Display extra work time debug information"),
  2170. OPT_WITH_ARG("--pools",
  2171. opt_set_bool, NULL, NULL, opt_hidden),
  2172. OPT_ENDTABLE
  2173. };
  2174. static char *load_config(const char *arg, void __maybe_unused *unused);
  2175. static int fileconf_load;
  2176. static char *parse_config(json_t *config, bool fileconf)
  2177. {
  2178. static char err_buf[200];
  2179. struct opt_table *opt;
  2180. json_t *val;
  2181. if (fileconf && !fileconf_load)
  2182. fileconf_load = 1;
  2183. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  2184. char *p, *name, *sp;
  2185. /* We don't handle subtables. */
  2186. assert(!(opt->type & OPT_SUBTABLE));
  2187. if (!opt->names)
  2188. continue;
  2189. /* Pull apart the option name(s). */
  2190. name = strdup(opt->names);
  2191. for (p = strtok_r(name, "|", &sp); p; p = strtok_r(NULL, "|", &sp)) {
  2192. char *err = "Invalid value";
  2193. /* Ignore short options. */
  2194. if (p[1] != '-')
  2195. continue;
  2196. val = json_object_get(config, p+2);
  2197. if (!val)
  2198. continue;
  2199. if (opt->type & OPT_HASARG) {
  2200. if (json_is_string(val)) {
  2201. err = opt->cb_arg(json_string_value(val),
  2202. opt->u.arg);
  2203. } else if (json_is_number(val)) {
  2204. char buf[256], *p, *q;
  2205. snprintf(buf, 256, "%f", json_number_value(val));
  2206. if ( (p = strchr(buf, '.')) ) {
  2207. // Trim /\.0*$/ to work properly with integer-only arguments
  2208. q = p;
  2209. while (*(++q) == '0') {}
  2210. if (*q == '\0')
  2211. *p = '\0';
  2212. }
  2213. err = opt->cb_arg(buf, opt->u.arg);
  2214. } else if (json_is_array(val)) {
  2215. int n, size = json_array_size(val);
  2216. err = NULL;
  2217. for (n = 0; n < size && !err; n++) {
  2218. if (json_is_string(json_array_get(val, n)))
  2219. err = opt->cb_arg(json_string_value(json_array_get(val, n)), opt->u.arg);
  2220. else if (json_is_object(json_array_get(val, n)))
  2221. err = parse_config(json_array_get(val, n), false);
  2222. }
  2223. }
  2224. } else if (opt->type & OPT_NOARG) {
  2225. if (json_is_true(val))
  2226. err = opt->cb(opt->u.arg);
  2227. else if (json_is_boolean(val)) {
  2228. if (opt->cb == (void*)opt_set_bool)
  2229. err = opt_set_invbool(opt->u.arg);
  2230. else if (opt->cb == (void*)opt_set_invbool)
  2231. err = opt_set_bool(opt->u.arg);
  2232. }
  2233. }
  2234. if (err) {
  2235. /* Allow invalid values to be in configuration
  2236. * file, just skipping over them provided the
  2237. * JSON is still valid after that. */
  2238. if (fileconf) {
  2239. applog(LOG_ERR, "Invalid config option %s: %s", p, err);
  2240. fileconf_load = -1;
  2241. } else {
  2242. snprintf(err_buf, sizeof(err_buf), "Parsing JSON option %s: %s",
  2243. p, err);
  2244. return err_buf;
  2245. }
  2246. }
  2247. }
  2248. free(name);
  2249. }
  2250. val = json_object_get(config, JSON_INCLUDE_CONF);
  2251. if (val && json_is_string(val))
  2252. return load_config(json_string_value(val), NULL);
  2253. return NULL;
  2254. }
  2255. char *cnfbuf = NULL;
  2256. static char *load_config(const char *arg, void __maybe_unused *unused)
  2257. {
  2258. json_error_t err;
  2259. json_t *config;
  2260. char *json_error;
  2261. size_t siz;
  2262. if (!cnfbuf)
  2263. cnfbuf = strdup(arg);
  2264. if (++include_count > JSON_MAX_DEPTH)
  2265. return JSON_MAX_DEPTH_ERR;
  2266. #if JANSSON_MAJOR_VERSION > 1
  2267. config = json_load_file(arg, 0, &err);
  2268. #else
  2269. config = json_load_file(arg, &err);
  2270. #endif
  2271. if (!json_is_object(config)) {
  2272. siz = JSON_LOAD_ERROR_LEN + strlen(arg) + strlen(err.text);
  2273. json_error = malloc(siz);
  2274. if (!json_error)
  2275. quit(1, "Malloc failure in json error");
  2276. snprintf(json_error, siz, JSON_LOAD_ERROR, arg, err.text);
  2277. return json_error;
  2278. }
  2279. config_loaded = true;
  2280. /* Parse the config now, so we can override it. That can keep pointers
  2281. * so don't free config object. */
  2282. return parse_config(config, true);
  2283. }
  2284. static void load_default_config(void)
  2285. {
  2286. cnfbuf = malloc(PATH_MAX);
  2287. #if defined(unix)
  2288. if (getenv("HOME") && *getenv("HOME")) {
  2289. strcpy(cnfbuf, getenv("HOME"));
  2290. strcat(cnfbuf, "/");
  2291. } else
  2292. strcpy(cnfbuf, "");
  2293. char *dirp = cnfbuf + strlen(cnfbuf);
  2294. strcpy(dirp, ".bfgminer/");
  2295. strcat(dirp, def_conf);
  2296. if (access(cnfbuf, R_OK))
  2297. // No BFGMiner config, try Cgminer's...
  2298. strcpy(dirp, ".cgminer/cgminer.conf");
  2299. #else
  2300. strcpy(cnfbuf, "");
  2301. strcat(cnfbuf, def_conf);
  2302. #endif
  2303. if (!access(cnfbuf, R_OK))
  2304. load_config(cnfbuf, NULL);
  2305. else {
  2306. free(cnfbuf);
  2307. cnfbuf = NULL;
  2308. }
  2309. }
  2310. extern const char *opt_argv0;
  2311. static char *opt_verusage_and_exit(const char *extra)
  2312. {
  2313. puts(packagename);
  2314. printf(" Lowlevel:%s\n", BFG_LOWLLIST);
  2315. printf(" Drivers:%s\n", BFG_DRIVERLIST);
  2316. printf(" Algorithms:%s\n", BFG_ALGOLIST);
  2317. printf(" Options:%s\n", BFG_OPTLIST);
  2318. printf("%s", opt_usage(opt_argv0, extra));
  2319. fflush(stdout);
  2320. exit(0);
  2321. }
  2322. /* These options are parsed before anything else */
  2323. static struct opt_table opt_early_table[] = {
  2324. OPT_EARLY_WITH_ARG("--config|-c",
  2325. set_bool_ignore_arg, NULL, &config_loaded,
  2326. opt_hidden),
  2327. OPT_EARLY_WITHOUT_ARG("--no-config",
  2328. opt_set_bool, &config_loaded,
  2329. "Inhibit loading default config file"),
  2330. OPT_ENDTABLE
  2331. };
  2332. /* These options are available from commandline only */
  2333. static struct opt_table opt_cmdline_table[] = {
  2334. OPT_WITH_ARG("--config|-c",
  2335. load_config, NULL, NULL,
  2336. "Load a JSON-format configuration file\n"
  2337. "See example.conf for an example configuration."),
  2338. OPT_EARLY_WITHOUT_ARG("--no-config",
  2339. opt_set_bool, &config_loaded,
  2340. "Inhibit loading default config file"),
  2341. OPT_WITHOUT_ARG("--help|-h",
  2342. opt_verusage_and_exit, NULL,
  2343. "Print this message"),
  2344. #ifdef HAVE_OPENCL
  2345. OPT_WITHOUT_ARG("--ndevs|-n",
  2346. print_ndevs_and_exit, &nDevs,
  2347. opt_hidden),
  2348. #endif
  2349. OPT_WITHOUT_ARG("--version|-V",
  2350. opt_version_and_exit, packagename,
  2351. "Display version and exit"),
  2352. OPT_ENDTABLE
  2353. };
  2354. static bool jobj_binary(const json_t *obj, const char *key,
  2355. void *buf, size_t buflen, bool required)
  2356. {
  2357. const char *hexstr;
  2358. json_t *tmp;
  2359. tmp = json_object_get(obj, key);
  2360. if (unlikely(!tmp)) {
  2361. if (unlikely(required))
  2362. applog(LOG_ERR, "JSON key '%s' not found", key);
  2363. return false;
  2364. }
  2365. hexstr = json_string_value(tmp);
  2366. if (unlikely(!hexstr)) {
  2367. applog(LOG_ERR, "JSON key '%s' is not a string", key);
  2368. return false;
  2369. }
  2370. if (!hex2bin(buf, hexstr, buflen))
  2371. return false;
  2372. return true;
  2373. }
  2374. static void calc_midstate(struct work *work)
  2375. {
  2376. union {
  2377. unsigned char c[64];
  2378. uint32_t i[16];
  2379. } data;
  2380. swap32yes(&data.i[0], work->data, 16);
  2381. sha256_ctx ctx;
  2382. sha256_init(&ctx);
  2383. sha256_update(&ctx, data.c, 64);
  2384. memcpy(work->midstate, ctx.h, sizeof(work->midstate));
  2385. swap32tole(work->midstate, work->midstate, 8);
  2386. }
  2387. static struct work *make_work(void)
  2388. {
  2389. struct work *work = calloc(1, sizeof(struct work));
  2390. if (unlikely(!work))
  2391. quit(1, "Failed to calloc work in make_work");
  2392. cg_wlock(&control_lock);
  2393. work->id = total_work++;
  2394. cg_wunlock(&control_lock);
  2395. return work;
  2396. }
  2397. /* This is the central place all work that is about to be retired should be
  2398. * cleaned to remove any dynamically allocated arrays within the struct */
  2399. void clean_work(struct work *work)
  2400. {
  2401. free(work->job_id);
  2402. bytes_free(&work->nonce2);
  2403. free(work->nonce1);
  2404. if (work->device_data_free_func)
  2405. work->device_data_free_func(work);
  2406. if (work->tmpl) {
  2407. struct pool *pool = work->pool;
  2408. mutex_lock(&pool->pool_lock);
  2409. bool free_tmpl = !--*work->tmpl_refcount;
  2410. mutex_unlock(&pool->pool_lock);
  2411. if (free_tmpl) {
  2412. blktmpl_free(work->tmpl);
  2413. free(work->tmpl_refcount);
  2414. }
  2415. }
  2416. memset(work, 0, sizeof(struct work));
  2417. }
  2418. /* All dynamically allocated work structs should be freed here to not leak any
  2419. * ram from arrays allocated within the work struct */
  2420. void free_work(struct work *work)
  2421. {
  2422. clean_work(work);
  2423. free(work);
  2424. }
  2425. 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";
  2426. // Must only be called with ch_lock held!
  2427. static
  2428. void __update_block_title(const unsigned char *hash_swap)
  2429. {
  2430. if (hash_swap) {
  2431. char tmp[17];
  2432. // Only provided when the block has actually changed
  2433. free(current_hash);
  2434. current_hash = malloc(3 /* ... */ + 16 /* block hash segment */ + 1);
  2435. bin2hex(tmp, &hash_swap[24], 8);
  2436. memset(current_hash, '.', 3);
  2437. memcpy(&current_hash[3], tmp, 17);
  2438. known_blkheight_current = false;
  2439. } else if (likely(known_blkheight_current)) {
  2440. return;
  2441. }
  2442. if (current_block_id == known_blkheight_blkid) {
  2443. // FIXME: The block number will overflow this sometime around AD 2025-2027
  2444. if (known_blkheight < 1000000) {
  2445. memmove(&current_hash[3], &current_hash[11], 8);
  2446. snprintf(&current_hash[11], 20-11, " #%6u", known_blkheight);
  2447. }
  2448. known_blkheight_current = true;
  2449. }
  2450. }
  2451. static
  2452. void have_block_height(uint32_t block_id, uint32_t blkheight)
  2453. {
  2454. if (known_blkheight == blkheight)
  2455. return;
  2456. applog(LOG_DEBUG, "Learned that block id %08" PRIx32 " is height %" PRIu32, (uint32_t)be32toh(block_id), blkheight);
  2457. cg_wlock(&ch_lock);
  2458. known_blkheight = blkheight;
  2459. known_blkheight_blkid = block_id;
  2460. block_subsidy = 5000000000LL >> (blkheight / 210000);
  2461. if (block_id == current_block_id)
  2462. __update_block_title(NULL);
  2463. cg_wunlock(&ch_lock);
  2464. }
  2465. static
  2466. void pool_set_opaque(struct pool *pool, bool opaque)
  2467. {
  2468. if (pool->swork.opaque == opaque)
  2469. return;
  2470. pool->swork.opaque = opaque;
  2471. if (opaque)
  2472. applog(LOG_WARNING, "Pool %u is hiding block contents from us",
  2473. pool->pool_no);
  2474. else
  2475. applog(LOG_NOTICE, "Pool %u now providing block contents to us",
  2476. pool->pool_no);
  2477. }
  2478. bool pool_may_redirect_to(struct pool * const pool, const char * const uri)
  2479. {
  2480. const char *p = strchr(pool->rpc_url, '#');
  2481. if (unlikely(p && strstr(&p[1], "redirect")))
  2482. return true;
  2483. return match_domains(pool->rpc_url, strlen(pool->rpc_url), uri, strlen(uri));
  2484. }
  2485. static bool work_decode(struct pool *pool, struct work *work, json_t *val)
  2486. {
  2487. json_t *res_val = json_object_get(val, "result");
  2488. json_t *tmp_val;
  2489. bool ret = false;
  2490. if (unlikely(detect_algo == 1)) {
  2491. json_t *tmp = json_object_get(res_val, "algorithm");
  2492. const char *v = tmp ? json_string_value(tmp) : "";
  2493. if (strncasecmp(v, "scrypt", 6))
  2494. detect_algo = 2;
  2495. }
  2496. if (work->tmpl) {
  2497. struct timeval tv_now;
  2498. cgtime(&tv_now);
  2499. const char *err = blktmpl_add_jansson(work->tmpl, res_val, tv_now.tv_sec);
  2500. if (err) {
  2501. applog(LOG_ERR, "blktmpl error: %s", err);
  2502. return false;
  2503. }
  2504. work->rolltime = blkmk_time_left(work->tmpl, tv_now.tv_sec);
  2505. #if BLKMAKER_VERSION > 1
  2506. if (opt_coinbase_script.sz)
  2507. {
  2508. bool newcb;
  2509. #if BLKMAKER_VERSION > 2
  2510. blkmk_init_generation2(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz, &newcb);
  2511. #else
  2512. newcb = !work->tmpl->cbtxn;
  2513. blkmk_init_generation(work->tmpl, opt_coinbase_script.data, opt_coinbase_script.sz);
  2514. #endif
  2515. if (newcb)
  2516. {
  2517. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, &template_nonce, sizeof(template_nonce));
  2518. if (ae < (ssize_t)sizeof(template_nonce))
  2519. 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);
  2520. ++template_nonce;
  2521. }
  2522. }
  2523. #endif
  2524. #if BLKMAKER_VERSION > 0
  2525. {
  2526. ssize_t ae = blkmk_append_coinbase_safe(work->tmpl, opt_coinbase_sig, 101);
  2527. static bool appenderr = false;
  2528. if (ae <= 0) {
  2529. if (opt_coinbase_sig) {
  2530. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Cannot append coinbase signature at all on pool %u (%"PRId64")", pool->pool_no, (int64_t)ae);
  2531. appenderr = true;
  2532. }
  2533. } else if (ae >= 3 || opt_coinbase_sig) {
  2534. const char *cbappend = opt_coinbase_sig;
  2535. const char full[] = PACKAGE " " VERSION;
  2536. if (!cbappend) {
  2537. if ((size_t)ae >= sizeof(full) - 1)
  2538. cbappend = full;
  2539. else if ((size_t)ae >= sizeof(PACKAGE) - 1)
  2540. cbappend = PACKAGE;
  2541. else
  2542. cbappend = "BFG";
  2543. }
  2544. size_t cbappendsz = strlen(cbappend);
  2545. static bool truncatewarning = false;
  2546. if (cbappendsz <= (size_t)ae) {
  2547. if (cbappendsz < (size_t)ae)
  2548. // If we have space, include the trailing \0
  2549. ++cbappendsz;
  2550. ae = cbappendsz;
  2551. truncatewarning = false;
  2552. } else {
  2553. char *tmp = malloc(ae + 1);
  2554. memcpy(tmp, opt_coinbase_sig, ae);
  2555. tmp[ae] = '\0';
  2556. applog((truncatewarning ? LOG_DEBUG : LOG_WARNING),
  2557. "Pool %u truncating appended coinbase signature at %"PRId64" bytes: %s(%s)",
  2558. pool->pool_no, (int64_t)ae, tmp, &opt_coinbase_sig[ae]);
  2559. free(tmp);
  2560. truncatewarning = true;
  2561. }
  2562. ae = blkmk_append_coinbase_safe(work->tmpl, cbappend, ae);
  2563. if (ae <= 0) {
  2564. applog((appenderr ? LOG_DEBUG : LOG_WARNING), "Error appending coinbase signature (%"PRId64")", (int64_t)ae);
  2565. appenderr = true;
  2566. } else
  2567. appenderr = false;
  2568. }
  2569. }
  2570. #endif
  2571. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  2572. return false;
  2573. swap32yes(work->data, work->data, 80 / 4);
  2574. memcpy(&work->data[80], workpadding_bin, 48);
  2575. const struct blktmpl_longpoll_req *lp;
  2576. if ((lp = blktmpl_get_longpoll(work->tmpl)) && ((!pool->lp_id) || strcmp(lp->id, pool->lp_id))) {
  2577. free(pool->lp_id);
  2578. pool->lp_id = strdup(lp->id);
  2579. #if 0 /* This just doesn't work :( */
  2580. curl_socket_t sock = pool->lp_socket;
  2581. if (sock != CURL_SOCKET_BAD) {
  2582. pool->lp_socket = CURL_SOCKET_BAD;
  2583. applog(LOG_WARNING, "Pool %u long poll request hanging, reconnecting", pool->pool_no);
  2584. shutdown(sock, SHUT_RDWR);
  2585. }
  2586. #endif
  2587. }
  2588. }
  2589. else
  2590. if (unlikely(!jobj_binary(res_val, "data", work->data, sizeof(work->data), true))) {
  2591. applog(LOG_ERR, "JSON inval data");
  2592. return false;
  2593. }
  2594. if (!jobj_binary(res_val, "midstate", work->midstate, sizeof(work->midstate), false)) {
  2595. // Calculate it ourselves
  2596. applog(LOG_DEBUG, "Calculating midstate locally");
  2597. calc_midstate(work);
  2598. }
  2599. if (unlikely(!jobj_binary(res_val, "target", work->target, sizeof(work->target), true))) {
  2600. applog(LOG_ERR, "JSON inval target");
  2601. return false;
  2602. }
  2603. if (work->tmpl) {
  2604. for (size_t i = 0; i < sizeof(work->target) / 2; ++i)
  2605. {
  2606. int p = (sizeof(work->target) - 1) - i;
  2607. unsigned char c = work->target[i];
  2608. work->target[i] = work->target[p];
  2609. work->target[p] = c;
  2610. }
  2611. }
  2612. if ( (tmp_val = json_object_get(res_val, "height")) ) {
  2613. uint32_t blkheight = json_number_value(tmp_val);
  2614. uint32_t block_id = ((uint32_t*)work->data)[1];
  2615. have_block_height(block_id, blkheight);
  2616. }
  2617. memset(work->hash, 0, sizeof(work->hash));
  2618. cgtime(&work->tv_staged);
  2619. pool_set_opaque(pool, !work->tmpl);
  2620. ret = true;
  2621. return ret;
  2622. }
  2623. /* Returns whether the pool supports local work generation or not. */
  2624. static bool pool_localgen(struct pool *pool)
  2625. {
  2626. return (pool->last_work_copy || pool->has_stratum);
  2627. }
  2628. int dev_from_id(int thr_id)
  2629. {
  2630. struct cgpu_info *cgpu = get_thr_cgpu(thr_id);
  2631. return cgpu->device_id;
  2632. }
  2633. /* Create an exponentially decaying average over the opt_log_interval */
  2634. void decay_time(double *f, double fadd, double fsecs)
  2635. {
  2636. double ftotal, fprop;
  2637. fprop = 1.0 - 1 / (exp(fsecs / (double)opt_log_interval));
  2638. ftotal = 1.0 + fprop;
  2639. *f += (fadd * fprop);
  2640. *f /= ftotal;
  2641. }
  2642. static int __total_staged(void)
  2643. {
  2644. return HASH_COUNT(staged_work);
  2645. }
  2646. static int total_staged(void)
  2647. {
  2648. int ret;
  2649. mutex_lock(stgd_lock);
  2650. ret = __total_staged();
  2651. mutex_unlock(stgd_lock);
  2652. return ret;
  2653. }
  2654. #ifdef HAVE_CURSES
  2655. WINDOW *mainwin, *statuswin, *logwin;
  2656. #endif
  2657. double total_secs = 1.0;
  2658. static char statusline[256];
  2659. /* logstart is where the log window should start */
  2660. static int devcursor, logstart, logcursor;
  2661. #ifdef HAVE_CURSES
  2662. /* statusy is where the status window goes up to in cases where it won't fit at startup */
  2663. static int statusy;
  2664. static int devsummaryYOffset;
  2665. static int total_lines;
  2666. #endif
  2667. #ifdef HAVE_OPENCL
  2668. struct cgpu_info gpus[MAX_GPUDEVICES]; /* Maximum number apparently possible */
  2669. #endif
  2670. struct cgpu_info *cpus;
  2671. bool _bfg_console_cancel_disabled;
  2672. int _bfg_console_prev_cancelstate;
  2673. #ifdef HAVE_CURSES
  2674. #define lock_curses() bfg_console_lock()
  2675. #define unlock_curses() bfg_console_unlock()
  2676. static bool curses_active_locked(void)
  2677. {
  2678. bool ret;
  2679. lock_curses();
  2680. ret = curses_active;
  2681. if (!ret)
  2682. unlock_curses();
  2683. return ret;
  2684. }
  2685. // Cancellable getch
  2686. int my_cancellable_getch(void)
  2687. {
  2688. // This only works because the macro only hits direct getch() calls
  2689. typedef int (*real_getch_t)(void);
  2690. const real_getch_t real_getch = __real_getch;
  2691. int type, rv;
  2692. bool sct;
  2693. sct = !pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &type);
  2694. rv = real_getch();
  2695. if (sct)
  2696. pthread_setcanceltype(type, &type);
  2697. return rv;
  2698. }
  2699. #ifdef PDCURSES
  2700. static
  2701. int bfg_wresize(WINDOW *win, int lines, int columns)
  2702. {
  2703. int rv = wresize(win, lines, columns);
  2704. int x, y;
  2705. getyx(win, y, x);
  2706. if (unlikely(y >= lines || x >= columns))
  2707. {
  2708. if (y >= lines)
  2709. y = lines - 1;
  2710. if (x >= columns)
  2711. x = columns - 1;
  2712. wmove(win, y, x);
  2713. }
  2714. return rv;
  2715. }
  2716. #else
  2717. # define bfg_wresize wresize
  2718. #endif
  2719. #endif
  2720. void tailsprintf(char *buf, size_t bufsz, const char *fmt, ...)
  2721. {
  2722. va_list ap;
  2723. size_t presz = strlen(buf);
  2724. va_start(ap, fmt);
  2725. vsnprintf(&buf[presz], bufsz - presz, fmt, ap);
  2726. va_end(ap);
  2727. }
  2728. double stats_elapsed(struct cgminer_stats *stats)
  2729. {
  2730. struct timeval now;
  2731. double elapsed;
  2732. if (stats->start_tv.tv_sec == 0)
  2733. elapsed = total_secs;
  2734. else {
  2735. cgtime(&now);
  2736. elapsed = tdiff(&now, &stats->start_tv);
  2737. }
  2738. if (elapsed < 1.0)
  2739. elapsed = 1.0;
  2740. return elapsed;
  2741. }
  2742. bool drv_ready(struct cgpu_info *cgpu)
  2743. {
  2744. switch (cgpu->status) {
  2745. case LIFE_INIT:
  2746. case LIFE_DEAD2:
  2747. return false;
  2748. default:
  2749. return true;
  2750. }
  2751. }
  2752. double cgpu_utility(struct cgpu_info *cgpu)
  2753. {
  2754. double dev_runtime = cgpu_runtime(cgpu);
  2755. return cgpu->utility = cgpu->accepted / dev_runtime * 60;
  2756. }
  2757. #define suffix_string(val, buf, bufsiz, sigdigits) do{ \
  2758. _Static_assert(sigdigits == 0, "suffix_string only supported with sigdigits==0"); \
  2759. format_unit3(buf, bufsiz, FUP_DIFF, "", H2B_SHORTV, val, -1); \
  2760. }while(0)
  2761. static float
  2762. utility_to_hashrate(double utility)
  2763. {
  2764. return utility * 0x4444444;
  2765. }
  2766. static const char*_unitchar = "pn\xb5m kMGTPEZY?";
  2767. static const int _unitbase = 4;
  2768. static
  2769. void pick_unit(float hashrate, unsigned char *unit)
  2770. {
  2771. unsigned char i;
  2772. if (hashrate == 0)
  2773. {
  2774. if (*unit < _unitbase)
  2775. *unit = _unitbase;
  2776. return;
  2777. }
  2778. hashrate *= 1e12;
  2779. for (i = 0; i < *unit; ++i)
  2780. hashrate /= 1e3;
  2781. // 1000 but with tolerance for floating-point rounding, avoid showing "1000.0"
  2782. while (hashrate >= 999.95)
  2783. {
  2784. hashrate /= 1e3;
  2785. if (likely(_unitchar[*unit] != '?'))
  2786. ++*unit;
  2787. }
  2788. }
  2789. #define hashrate_pick_unit(hashrate, unit) pick_unit(hashrate, unit)
  2790. enum h2bs_fmt {
  2791. H2B_NOUNIT, // "xxx.x"
  2792. H2B_SHORT, // "xxx.xMH/s"
  2793. H2B_SPACED, // "xxx.x MH/s"
  2794. H2B_SHORTV, // Like H2B_SHORT, but omit space for base unit
  2795. };
  2796. enum bfu_floatprec {
  2797. FUP_INTEGER,
  2798. FUP_HASHES,
  2799. FUP_BTC,
  2800. FUP_DIFF,
  2801. };
  2802. static
  2803. int format_unit3(char *buf, size_t sz, enum bfu_floatprec fprec, const char *measurement, enum h2bs_fmt fmt, float hashrate, signed char unitin)
  2804. {
  2805. char *s = buf;
  2806. unsigned char prec, i, unit;
  2807. int rv = 0;
  2808. if (unitin == -1)
  2809. {
  2810. unit = 0;
  2811. hashrate_pick_unit(hashrate, &unit);
  2812. }
  2813. else
  2814. unit = unitin;
  2815. hashrate *= 1e12;
  2816. for (i = 0; i < unit; ++i)
  2817. hashrate /= 1000;
  2818. switch (fprec)
  2819. {
  2820. case FUP_HASHES:
  2821. // 100 but with tolerance for floating-point rounding, max "99.99" then "100.0"
  2822. if (hashrate >= 99.995 || unit < 6)
  2823. prec = 1;
  2824. else
  2825. prec = 2;
  2826. _SNP("%5.*f", prec, hashrate);
  2827. break;
  2828. case FUP_INTEGER:
  2829. _SNP("%3d", (int)hashrate);
  2830. break;
  2831. case FUP_BTC:
  2832. if (hashrate >= 99.995)
  2833. prec = 0;
  2834. else
  2835. prec = 2;
  2836. _SNP("%5.*f", prec, hashrate);
  2837. break;
  2838. case FUP_DIFF:
  2839. if (unit > _unitbase)
  2840. _SNP("%.3g", hashrate);
  2841. else
  2842. _SNP("%u", (unsigned int)hashrate);
  2843. }
  2844. if (fmt != H2B_NOUNIT)
  2845. {
  2846. char uc[3] = {_unitchar[unit], '\0'};
  2847. switch (fmt) {
  2848. case H2B_SPACED:
  2849. _SNP(" ");
  2850. default:
  2851. break;
  2852. case H2B_SHORTV:
  2853. if (isspace(uc[0]))
  2854. uc[0] = '\0';
  2855. }
  2856. if (uc[0] == '\xb5')
  2857. // Convert to UTF-8
  2858. snprintf(uc, sizeof(uc), "%s", U8_MICRO);
  2859. _SNP("%s%s", uc, measurement);
  2860. }
  2861. return rv;
  2862. }
  2863. #define format_unit2(buf, sz, floatprec, measurement, fmt, n, unit) \
  2864. format_unit3(buf, sz, floatprec ? FUP_HASHES : FUP_INTEGER, measurement, fmt, n, unit)
  2865. static
  2866. 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)
  2867. {
  2868. unsigned char unit = 0;
  2869. bool allzero = true;
  2870. int i;
  2871. size_t delimsz = 0;
  2872. char *buf = buflist[0];
  2873. size_t bufsz = bufszlist[0];
  2874. size_t itemwidth = (floatprec ? 5 : 3);
  2875. if (!isarray)
  2876. delimsz = strlen(delim);
  2877. for (i = 0; i < count; ++i)
  2878. if (numbers[i] != 0)
  2879. {
  2880. pick_unit(numbers[i], &unit);
  2881. allzero = false;
  2882. }
  2883. if (allzero)
  2884. unit = _unitbase;
  2885. --count;
  2886. for (i = 0; i < count; ++i)
  2887. {
  2888. format_unit2(buf, bufsz, floatprec, NULL, H2B_NOUNIT, numbers[i], unit);
  2889. if (isarray)
  2890. {
  2891. buf = buflist[i + 1];
  2892. bufsz = bufszlist[i + 1];
  2893. }
  2894. else
  2895. {
  2896. buf += itemwidth;
  2897. bufsz -= itemwidth;
  2898. if (delimsz > bufsz)
  2899. delimsz = bufsz;
  2900. memcpy(buf, delim, delimsz);
  2901. buf += delimsz;
  2902. bufsz -= delimsz;
  2903. }
  2904. }
  2905. // Last entry has the unit
  2906. format_unit2(buf, bufsz, floatprec, measurement, fmt, numbers[count], unit);
  2907. return buflist[0];
  2908. }
  2909. #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)
  2910. #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)
  2911. static
  2912. int percentf3(char * const buf, size_t sz, double p, const double t)
  2913. {
  2914. char *s = buf;
  2915. int rv = 0;
  2916. if (!p)
  2917. _SNP("none");
  2918. else
  2919. if (t <= p)
  2920. _SNP("100%%");
  2921. else
  2922. {
  2923. p /= t;
  2924. if (p < 0.00995) // 0.01 but with tolerance for floating-point rounding, max ".99%"
  2925. _SNP(".%02.0f%%", p * 10000); // ".01%"
  2926. else
  2927. if (p < 0.0995) // 0.1 but with tolerance for floating-point rounding, max "9.9%"
  2928. _SNP("%.1f%%", p * 100); // "9.1%"
  2929. else
  2930. _SNP("%3.0f%%", p * 100); // " 99%"
  2931. }
  2932. return rv;
  2933. }
  2934. #define percentf4(buf, bufsz, p, t) percentf3(buf, bufsz, p, p + t)
  2935. static
  2936. void test_decimal_width()
  2937. {
  2938. // The pipe character at end of each line should perfectly line up
  2939. char printbuf[512];
  2940. char testbuf1[64];
  2941. char testbuf2[64];
  2942. char testbuf3[64];
  2943. char testbuf4[64];
  2944. double testn;
  2945. int width;
  2946. int saved;
  2947. // Hotspots around 0.1 and 0.01
  2948. saved = -1;
  2949. for (testn = 0.09; testn <= 0.11; testn += 0.000001) {
  2950. percentf3(testbuf1, sizeof(testbuf1), testn, 1.0);
  2951. percentf3(testbuf2, sizeof(testbuf2), testn, 10.0);
  2952. width = snprintf(printbuf, sizeof(printbuf), "%10g %s %s |", testn, testbuf1, testbuf2);
  2953. if (unlikely((saved != -1) && (width != saved))) {
  2954. applog(LOG_ERR, "Test width mismatch in percentf3! %d not %d at %10g", width, saved, testn);
  2955. applog(LOG_ERR, "%s", printbuf);
  2956. }
  2957. saved = width;
  2958. }
  2959. // Hotspot around 100 (but test this in several units because format_unit2 also has unit<2 check)
  2960. saved = -1;
  2961. for (testn = 99.0; testn <= 101.0; testn += 0.0001) {
  2962. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2963. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2964. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2965. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s |", testn, testbuf1, testbuf2, testbuf3);
  2966. width = utf8_strlen(printbuf);
  2967. if (unlikely((saved != -1) && (width != saved))) {
  2968. applog(LOG_ERR, "Test width mismatch in format_unit2! %d not %d at %10g", width, saved, testn);
  2969. applog(LOG_ERR, "%s", printbuf);
  2970. }
  2971. saved = width;
  2972. }
  2973. // Hotspot around unit transition boundary in pick_unit
  2974. saved = -1;
  2975. for (testn = 999.0; testn <= 1001.0; testn += 0.0001) {
  2976. format_unit2(testbuf1, sizeof(testbuf1), true, "x", H2B_SHORT, testn , -1);
  2977. format_unit2(testbuf2, sizeof(testbuf2), true, "x", H2B_SHORT, testn * 1e3, -1);
  2978. format_unit2(testbuf3, sizeof(testbuf3), true, "x", H2B_SHORT, testn * 1e6, -1);
  2979. format_unit2(testbuf4, sizeof(testbuf4), true, "x", H2B_SHORT, testn * 1e9, -1);
  2980. snprintf(printbuf, sizeof(printbuf), "%10g %s %s %s %s |", testn, testbuf1, testbuf2, testbuf3, testbuf4);
  2981. width = utf8_strlen(printbuf);
  2982. if (unlikely((saved != -1) && (width != saved))) {
  2983. applog(LOG_ERR, "Test width mismatch in pick_unit! %d not %d at %10g", width, saved, testn);
  2984. applog(LOG_ERR, "%s", printbuf);
  2985. }
  2986. saved = width;
  2987. }
  2988. }
  2989. #ifdef HAVE_CURSES
  2990. static void adj_width(int var, int *length);
  2991. #endif
  2992. #ifdef HAVE_CURSES
  2993. static int awidth = 1, rwidth = 1, swidth = 1, hwwidth = 1;
  2994. static
  2995. 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)
  2996. {
  2997. char rejpcbuf[6];
  2998. char bnbuf[6];
  2999. adj_width(accepted, &awidth);
  3000. adj_width(rejected, &rwidth);
  3001. adj_width(stale, &swidth);
  3002. adj_width(hwerrs, &hwwidth);
  3003. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3004. percentf3(bnbuf, sizeof(bnbuf), bad_diff1, allnonces);
  3005. tailsprintf(buf, bufsz, "%s/%s/%s | A:%*d R:%*d+%*d(%s) HW:%*d/%s",
  3006. cHr, aHr, uHr,
  3007. awidth, accepted,
  3008. rwidth, rejected,
  3009. swidth, stale,
  3010. rejpcbuf,
  3011. hwwidth, hwerrs,
  3012. bnbuf
  3013. );
  3014. }
  3015. static
  3016. const char *pool_proto_str(const struct pool * const pool)
  3017. {
  3018. if (pool->idle)
  3019. return "Dead ";
  3020. if (pool->has_stratum)
  3021. return "Strtm";
  3022. if (pool->lp_url && pool->proto != pool->lp_proto)
  3023. return "Mixed";
  3024. switch (pool->proto)
  3025. {
  3026. case PLP_GETBLOCKTEMPLATE:
  3027. return " GBT ";
  3028. case PLP_GETWORK:
  3029. return "GWork";
  3030. default:
  3031. return "Alive";
  3032. }
  3033. }
  3034. #endif
  3035. static inline
  3036. void temperature_column(char *buf, size_t bufsz, bool maybe_unicode, const float * const temp)
  3037. {
  3038. if (!(use_unicode && have_unicode_degrees))
  3039. maybe_unicode = false;
  3040. if (temp && *temp > 0.)
  3041. if (maybe_unicode)
  3042. snprintf(buf, bufsz, "%4.1f"U8_DEGREE"C", *temp);
  3043. else
  3044. snprintf(buf, bufsz, "%4.1fC", *temp);
  3045. else
  3046. {
  3047. if (temp)
  3048. snprintf(buf, bufsz, " ");
  3049. if (maybe_unicode)
  3050. tailsprintf(buf, bufsz, " ");
  3051. }
  3052. tailsprintf(buf, bufsz, " | ");
  3053. }
  3054. void get_statline3(char *buf, size_t bufsz, struct cgpu_info *cgpu, bool for_curses, bool opt_show_procs)
  3055. {
  3056. #ifndef HAVE_CURSES
  3057. assert(for_curses == false);
  3058. #endif
  3059. struct device_drv *drv = cgpu->drv;
  3060. enum h2bs_fmt hashrate_style = for_curses ? H2B_SHORT : H2B_SPACED;
  3061. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[max(ALLOC_H2B_SHORT, ALLOC_H2B_SPACED)+3+1];
  3062. char rejpcbuf[6];
  3063. char bnbuf[6];
  3064. double dev_runtime;
  3065. if (!opt_show_procs)
  3066. cgpu = cgpu->device;
  3067. dev_runtime = cgpu_runtime(cgpu);
  3068. double rolling, mhashes;
  3069. int accepted, rejected, stale;
  3070. double waccepted;
  3071. double wnotaccepted;
  3072. int hwerrs;
  3073. double bad_diff1, good_diff1;
  3074. rolling = mhashes = waccepted = wnotaccepted = 0;
  3075. accepted = rejected = stale = hwerrs = bad_diff1 = good_diff1 = 0;
  3076. {
  3077. struct cgpu_info *slave = cgpu;
  3078. for (int i = 0; i < cgpu->procs; ++i, (slave = slave->next_proc))
  3079. {
  3080. slave->utility = slave->accepted / dev_runtime * 60;
  3081. slave->utility_diff1 = slave->diff_accepted / dev_runtime * 60;
  3082. rolling += slave->rolling;
  3083. mhashes += slave->total_mhashes;
  3084. if (opt_weighed_stats)
  3085. {
  3086. accepted += slave->diff_accepted;
  3087. rejected += slave->diff_rejected;
  3088. stale += slave->diff_stale;
  3089. }
  3090. else
  3091. {
  3092. accepted += slave->accepted;
  3093. rejected += slave->rejected;
  3094. stale += slave->stale;
  3095. }
  3096. waccepted += slave->diff_accepted;
  3097. wnotaccepted += slave->diff_rejected + slave->diff_stale;
  3098. hwerrs += slave->hw_errors;
  3099. bad_diff1 += slave->bad_diff1;
  3100. good_diff1 += slave->diff1;
  3101. if (opt_show_procs)
  3102. break;
  3103. }
  3104. }
  3105. double wtotal = (waccepted + wnotaccepted);
  3106. multi_format_unit_array2(
  3107. ((char*[]){cHr, aHr, uHr}),
  3108. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  3109. true, "h/s", hashrate_style,
  3110. 3,
  3111. 1e6*rolling,
  3112. 1e6*mhashes / dev_runtime,
  3113. utility_to_hashrate(good_diff1 * (wtotal ? (waccepted / wtotal) : 1) * 60 / dev_runtime));
  3114. // Processor representation
  3115. #ifdef HAVE_CURSES
  3116. if (for_curses)
  3117. {
  3118. if (opt_show_procs)
  3119. snprintf(buf, bufsz, " %"PRIprepr": ", cgpu->proc_repr);
  3120. else
  3121. snprintf(buf, bufsz, " %s: ", cgpu->dev_repr);
  3122. }
  3123. else
  3124. #endif
  3125. snprintf(buf, bufsz, "%s ", opt_show_procs ? cgpu->proc_repr_ns : cgpu->dev_repr_ns);
  3126. if (include_serial_in_statline && cgpu->dev_serial)
  3127. tailsprintf(buf, bufsz, "[serial=%s] ", cgpu->dev_serial);
  3128. if (unlikely(cgpu->status == LIFE_INIT))
  3129. {
  3130. tailsprintf(buf, bufsz, "Initializing...");
  3131. return;
  3132. }
  3133. {
  3134. const size_t bufln = strlen(buf);
  3135. const size_t abufsz = (bufln >= bufsz) ? 0 : (bufsz - bufln);
  3136. if (likely(cgpu->status != LIFE_DEAD2) && drv->override_statline_temp2 && drv->override_statline_temp2(buf, bufsz, cgpu, opt_show_procs))
  3137. temperature_column(&buf[bufln], abufsz, for_curses, NULL);
  3138. else
  3139. {
  3140. float temp = cgpu->temp;
  3141. if (!opt_show_procs)
  3142. {
  3143. // Find the highest temperature of all processors
  3144. struct cgpu_info *proc = cgpu;
  3145. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3146. if (proc->temp > temp)
  3147. temp = proc->temp;
  3148. }
  3149. temperature_column(&buf[bufln], abufsz, for_curses, &temp);
  3150. }
  3151. }
  3152. #ifdef HAVE_CURSES
  3153. if (for_curses)
  3154. {
  3155. const char *cHrStatsOpt[] = {AS_BAD("DEAD "), AS_BAD("SICK "), "OFF ", AS_BAD("REST "), AS_BAD(" ERR "), AS_BAD("WAIT "), cHr};
  3156. const char *cHrStats;
  3157. int cHrStatsI = (sizeof(cHrStatsOpt) / sizeof(*cHrStatsOpt)) - 1;
  3158. bool all_dead = true, all_off = true, all_rdrv = true;
  3159. struct cgpu_info *proc = cgpu;
  3160. for (int i = 0; i < cgpu->procs; ++i, (proc = proc->next_proc))
  3161. {
  3162. switch (cHrStatsI) {
  3163. default:
  3164. if (proc->status == LIFE_WAIT)
  3165. cHrStatsI = 5;
  3166. case 5:
  3167. if (proc->deven == DEV_RECOVER_ERR)
  3168. cHrStatsI = 4;
  3169. case 4:
  3170. if (proc->deven == DEV_RECOVER)
  3171. cHrStatsI = 3;
  3172. case 3:
  3173. if (proc->status == LIFE_SICK || proc->status == LIFE_DEAD || proc->status == LIFE_DEAD2)
  3174. {
  3175. cHrStatsI = 1;
  3176. all_off = false;
  3177. }
  3178. else
  3179. {
  3180. if (likely(proc->deven == DEV_ENABLED))
  3181. all_off = false;
  3182. if (proc->deven != DEV_RECOVER_DRV)
  3183. all_rdrv = false;
  3184. }
  3185. case 1:
  3186. break;
  3187. }
  3188. if (likely(proc->status != LIFE_DEAD && proc->status != LIFE_DEAD2))
  3189. all_dead = false;
  3190. if (opt_show_procs)
  3191. break;
  3192. }
  3193. if (unlikely(all_dead))
  3194. cHrStatsI = 0;
  3195. else
  3196. if (unlikely(all_off))
  3197. cHrStatsI = 2;
  3198. cHrStats = cHrStatsOpt[cHrStatsI];
  3199. if (cHrStatsI == 2 && all_rdrv)
  3200. cHrStats = " RST ";
  3201. format_statline(buf, bufsz,
  3202. cHrStats,
  3203. aHr, uHr,
  3204. accepted, rejected, stale,
  3205. wnotaccepted, waccepted,
  3206. hwerrs,
  3207. bad_diff1, bad_diff1 + good_diff1);
  3208. }
  3209. else
  3210. #endif
  3211. {
  3212. percentf4(rejpcbuf, sizeof(rejpcbuf), wnotaccepted, waccepted);
  3213. percentf4(bnbuf, sizeof(bnbuf), bad_diff1, good_diff1);
  3214. tailsprintf(buf, bufsz, "%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  3215. opt_log_interval,
  3216. cHr, aHr, uHr,
  3217. accepted,
  3218. rejected,
  3219. stale,
  3220. rejpcbuf,
  3221. hwerrs,
  3222. bnbuf
  3223. );
  3224. }
  3225. }
  3226. #define get_statline(buf, bufsz, cgpu) get_statline3(buf, bufsz, cgpu, false, opt_show_procs)
  3227. #define get_statline2(buf, bufsz, cgpu, for_curses) get_statline3(buf, bufsz, cgpu, for_curses, opt_show_procs)
  3228. static void text_print_status(int thr_id)
  3229. {
  3230. struct cgpu_info *cgpu;
  3231. char logline[256];
  3232. cgpu = get_thr_cgpu(thr_id);
  3233. if (cgpu) {
  3234. get_statline(logline, sizeof(logline), cgpu);
  3235. printf("%s\n", logline);
  3236. }
  3237. }
  3238. #ifdef HAVE_CURSES
  3239. static int attr_bad = A_BOLD;
  3240. #ifdef WIN32
  3241. #define swprintf snwprintf
  3242. #endif
  3243. static
  3244. void bfg_waddstr(WINDOW *win, const char *s)
  3245. {
  3246. const char *p = s;
  3247. int32_t w;
  3248. int wlen;
  3249. unsigned char stop_ascii = (use_unicode ? '|' : 0x80);
  3250. while (true)
  3251. {
  3252. while (likely(p[0] == '\n' || (p[0] >= 0x20 && p[0] < stop_ascii)))
  3253. {
  3254. // Printable ASCII
  3255. ++p;
  3256. }
  3257. if (p != s)
  3258. waddnstr(win, s, p - s);
  3259. w = utf8_decode(p, &wlen);
  3260. s = p += wlen;
  3261. switch(w)
  3262. {
  3263. // NOTE: U+F000-U+F7FF are reserved for font hacks
  3264. case '\0':
  3265. return;
  3266. case 0xb5: // micro symbol
  3267. w = unicode_micro;
  3268. goto default_addch;
  3269. case 0xf000: // "bad" off
  3270. wattroff(win, attr_bad);
  3271. break;
  3272. case 0xf001: // "bad" on
  3273. wattron(win, attr_bad);
  3274. break;
  3275. #ifdef USE_UNICODE
  3276. case '|':
  3277. wadd_wch(win, WACS_VLINE);
  3278. break;
  3279. #endif
  3280. case 0x2500: // BOX DRAWINGS LIGHT HORIZONTAL
  3281. case 0x2534: // BOX DRAWINGS LIGHT UP AND HORIZONTAL
  3282. if (!use_unicode)
  3283. {
  3284. waddch(win, '-');
  3285. break;
  3286. }
  3287. #ifdef USE_UNICODE
  3288. wadd_wch(win, (w == 0x2500) ? WACS_HLINE : WACS_BTEE);
  3289. break;
  3290. #endif
  3291. case 0x2022:
  3292. if (w > WCHAR_MAX || !iswprint(w))
  3293. w = '*';
  3294. default:
  3295. default_addch:
  3296. if (w > WCHAR_MAX || !(iswprint(w) || w == '\n'))
  3297. {
  3298. #if REPLACEMENT_CHAR <= WCHAR_MAX
  3299. if (iswprint(REPLACEMENT_CHAR))
  3300. w = REPLACEMENT_CHAR;
  3301. else
  3302. #endif
  3303. w = '?';
  3304. }
  3305. {
  3306. #ifdef USE_UNICODE
  3307. wchar_t wbuf[0x10];
  3308. int wbuflen = sizeof(wbuf) / sizeof(*wbuf);
  3309. wbuflen = swprintf(wbuf, wbuflen, L"%lc", (wint_t)w);
  3310. waddnwstr(win, wbuf, wbuflen);
  3311. #else
  3312. wprintw(win, "%lc", (wint_t)w);
  3313. #endif
  3314. }
  3315. }
  3316. }
  3317. }
  3318. static inline
  3319. void bfg_hline(WINDOW *win, int y)
  3320. {
  3321. int maxx, __maybe_unused maxy;
  3322. getmaxyx(win, maxy, maxx);
  3323. #ifdef USE_UNICODE
  3324. if (use_unicode)
  3325. mvwhline_set(win, y, 0, WACS_HLINE, maxx);
  3326. else
  3327. #endif
  3328. mvwhline(win, y, 0, '-', maxx);
  3329. }
  3330. // Spaces until end of line, using current attributes (ie, not completely clear)
  3331. static
  3332. void bfg_wspctoeol(WINDOW * const win, const int offset)
  3333. {
  3334. int x, maxx;
  3335. int __maybe_unused y;
  3336. getmaxyx(win, y, maxx);
  3337. getyx(win, y, x);
  3338. const int space_count = (maxx - x) - offset;
  3339. // Check for negative - terminal too narrow
  3340. if (space_count <= 0)
  3341. return;
  3342. char buf[space_count];
  3343. memset(buf, ' ', space_count);
  3344. waddnstr(win, buf, space_count);
  3345. }
  3346. static int menu_attr = A_REVERSE;
  3347. #define CURBUFSIZ 256
  3348. #define cg_mvwprintw(win, y, x, fmt, ...) do { \
  3349. char tmp42[CURBUFSIZ]; \
  3350. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3351. wmove(win, y, x); \
  3352. bfg_waddstr(win, tmp42); \
  3353. } while (0)
  3354. #define cg_wprintw(win, fmt, ...) do { \
  3355. char tmp42[CURBUFSIZ]; \
  3356. snprintf(tmp42, sizeof(tmp42), fmt, ##__VA_ARGS__); \
  3357. bfg_waddstr(win, tmp42); \
  3358. } while (0)
  3359. static bool pool_unworkable(const struct pool *);
  3360. /* Must be called with curses mutex lock held and curses_active */
  3361. static void curses_print_status(const int ts)
  3362. {
  3363. struct pool *pool = currentpool;
  3364. struct timeval now, tv;
  3365. float efficiency;
  3366. double income;
  3367. int logdiv;
  3368. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  3369. wattron(statuswin, attr_title);
  3370. cg_mvwprintw(statuswin, 0, 0, " " PACKAGE " version " VERSION " - Started: %s", datestamp);
  3371. timer_set_now(&now);
  3372. {
  3373. unsigned int days, hours;
  3374. div_t d;
  3375. timersub(&now, &miner_started, &tv);
  3376. d = div(tv.tv_sec, 86400);
  3377. days = d.quot;
  3378. d = div(d.rem, 3600);
  3379. hours = d.quot;
  3380. d = div(d.rem, 60);
  3381. cg_wprintw(statuswin, " - [%3u day%c %02d:%02d:%02d]"
  3382. , days
  3383. , (days == 1) ? ' ' : 's'
  3384. , hours
  3385. , d.quot
  3386. , d.rem
  3387. );
  3388. }
  3389. bfg_wspctoeol(statuswin, 0);
  3390. wattroff(statuswin, attr_title);
  3391. wattron(statuswin, menu_attr);
  3392. wmove(statuswin, 1, 0);
  3393. bfg_waddstr(statuswin, " [M]anage devices [P]ool management [S]ettings [D]isplay options ");
  3394. bfg_wspctoeol(statuswin, 14);
  3395. bfg_waddstr(statuswin, "[H]elp [Q]uit ");
  3396. wattroff(statuswin, menu_attr);
  3397. if ((pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE) && enabled_pools > 1) {
  3398. char poolinfo[20], poolinfo2[20];
  3399. int poolinfooff = 0, poolinfo2off, workable_pools = 0;
  3400. double lowdiff = DBL_MAX, highdiff = -1;
  3401. struct pool *lowdiff_pool = pools[0], *highdiff_pool = pools[0];
  3402. time_t oldest_work_restart = time(NULL) + 1;
  3403. struct pool *oldest_work_restart_pool = pools[0];
  3404. for (int i = 0; i < total_pools; ++i)
  3405. {
  3406. if (pool_unworkable(pools[i]))
  3407. continue;
  3408. // NOTE: Only set pool var when it's workable; if only one is, it gets used by single-pool code
  3409. pool = pools[i];
  3410. ++workable_pools;
  3411. if (poolinfooff < sizeof(poolinfo))
  3412. poolinfooff += snprintf(&poolinfo[poolinfooff], sizeof(poolinfo) - poolinfooff, "%u,", pool->pool_no);
  3413. struct cgminer_pool_stats * const pool_stats = &pool->cgminer_pool_stats;
  3414. if (pool_stats->last_diff < lowdiff)
  3415. {
  3416. lowdiff = pool_stats->last_diff;
  3417. lowdiff_pool = pool;
  3418. }
  3419. if (pool_stats->last_diff > highdiff)
  3420. {
  3421. highdiff = pool_stats->last_diff;
  3422. highdiff_pool = pool;
  3423. }
  3424. if (oldest_work_restart >= pool->work_restart_time)
  3425. {
  3426. oldest_work_restart = pool->work_restart_time;
  3427. oldest_work_restart_pool = pool;
  3428. }
  3429. }
  3430. if (workable_pools == 1)
  3431. goto one_workable_pool;
  3432. poolinfo2off = snprintf(poolinfo2, sizeof(poolinfo2), "%u (", workable_pools);
  3433. if (poolinfooff > sizeof(poolinfo2) - poolinfo2off - 1)
  3434. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s...)", (int)(sizeof(poolinfo2) - poolinfo2off - 5), poolinfo);
  3435. else
  3436. snprintf(&poolinfo2[poolinfo2off], sizeof(poolinfo2) - poolinfo2off, "%.*s)%*s", (int)(poolinfooff - 1), poolinfo, (int)(sizeof(poolinfo2)), "");
  3437. cg_mvwprintw(statuswin, 2, 0, " Pools: %s Diff:%s%s%s %c LU:%s",
  3438. poolinfo2,
  3439. lowdiff_pool->diff,
  3440. (lowdiff == highdiff) ? "" : "-",
  3441. (lowdiff == highdiff) ? "" : highdiff_pool->diff,
  3442. have_longpoll ? '+' : '-',
  3443. oldest_work_restart_pool->work_restart_timestamp);
  3444. }
  3445. else
  3446. {
  3447. one_workable_pool: ;
  3448. char pooladdr[19];
  3449. {
  3450. const char *rawaddr = pool->sockaddr_url;
  3451. BFGINIT(rawaddr, pool->rpc_url);
  3452. size_t pooladdrlen = strlen(rawaddr);
  3453. if (pooladdrlen > 20)
  3454. snprintf(pooladdr, sizeof(pooladdr), "...%s", &rawaddr[pooladdrlen - (sizeof(pooladdr) - 4)]);
  3455. else
  3456. snprintf(pooladdr, sizeof(pooladdr), "%*s", -(int)(sizeof(pooladdr) - 1), rawaddr);
  3457. }
  3458. cg_mvwprintw(statuswin, 2, 0, " Pool%2u: %s Diff:%s %c%s LU:%s User:%s",
  3459. pool->pool_no, pooladdr, pool->diff,
  3460. have_longpoll ? '+' : '-', pool_proto_str(pool),
  3461. pool->work_restart_timestamp,
  3462. pool->rpc_user);
  3463. }
  3464. wclrtoeol(statuswin);
  3465. cg_mvwprintw(statuswin, 3, 0, " Block: %s Diff:%s (%s) Started: %s",
  3466. current_hash, block_diff, net_hashrate, blocktime);
  3467. income = total_diff_accepted * 3600 * block_subsidy / total_secs / current_diff;
  3468. char bwstr[(ALLOC_H2B_SHORT*2)+3+1], incomestr[ALLOC_H2B_SHORT+6+1];
  3469. format_unit3(incomestr, sizeof(incomestr), FUP_BTC, "BTC/hr", H2B_SHORT, income/1e8, -1);
  3470. cg_mvwprintw(statuswin, 4, 0, " ST:%d F:%d NB:%d AS:%d BW:[%s] E:%.2f I:%s BS:%s",
  3471. ts,
  3472. total_go + total_ro,
  3473. new_blocks,
  3474. total_submitting,
  3475. multi_format_unit2(bwstr, sizeof(bwstr),
  3476. false, "B/s", H2B_SHORT, "/", 2,
  3477. (float)(total_bytes_rcvd / total_secs),
  3478. (float)(total_bytes_sent / total_secs)),
  3479. efficiency,
  3480. incomestr,
  3481. best_share);
  3482. wclrtoeol(statuswin);
  3483. mvwaddstr(statuswin, 5, 0, " ");
  3484. bfg_waddstr(statuswin, statusline);
  3485. wclrtoeol(statuswin);
  3486. logdiv = statusy - 1;
  3487. bfg_hline(statuswin, 6);
  3488. bfg_hline(statuswin, logdiv);
  3489. #ifdef USE_UNICODE
  3490. if (use_unicode)
  3491. {
  3492. int offset = 8 /* device */ + 5 /* temperature */ + 1 /* padding space */;
  3493. if (opt_show_procs && !opt_compact)
  3494. ++offset; // proc letter
  3495. if (have_unicode_degrees)
  3496. ++offset; // degrees symbol
  3497. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3498. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3499. offset += 24; // hashrates etc
  3500. mvwadd_wch(statuswin, 6, offset, WACS_PLUS);
  3501. mvwadd_wch(statuswin, logdiv, offset, WACS_BTEE);
  3502. }
  3503. #endif
  3504. }
  3505. static void adj_width(int var, int *length)
  3506. {
  3507. if ((int)(log10(var) + 1) > *length)
  3508. (*length)++;
  3509. }
  3510. static int dev_width;
  3511. static void curses_print_devstatus(struct cgpu_info *cgpu)
  3512. {
  3513. char logline[256];
  3514. int ypos;
  3515. if (opt_compact)
  3516. return;
  3517. /* Check this isn't out of the window size */
  3518. if (opt_show_procs)
  3519. ypos = cgpu->cgminer_id;
  3520. else
  3521. {
  3522. if (cgpu->proc_id)
  3523. return;
  3524. ypos = cgpu->device_line_id;
  3525. }
  3526. ypos += devsummaryYOffset;
  3527. if (ypos < 0)
  3528. return;
  3529. ypos += devcursor - 1;
  3530. if (ypos >= statusy - 1)
  3531. return;
  3532. if (wmove(statuswin, ypos, 0) == ERR)
  3533. return;
  3534. get_statline2(logline, sizeof(logline), cgpu, true);
  3535. if (selecting_device && (opt_show_procs ? (selected_device == cgpu->cgminer_id) : (devices[selected_device]->device == cgpu)))
  3536. wattron(statuswin, A_REVERSE);
  3537. bfg_waddstr(statuswin, logline);
  3538. wattroff(statuswin, A_REVERSE);
  3539. wclrtoeol(statuswin);
  3540. }
  3541. static
  3542. void _refresh_devstatus(const bool already_have_lock) {
  3543. if ((!opt_compact) && (already_have_lock || curses_active_locked())) {
  3544. int i;
  3545. if (unlikely(!total_devices))
  3546. {
  3547. const int ypos = devcursor - 1;
  3548. if (ypos < statusy - 1 && wmove(statuswin, ypos, 0) != ERR)
  3549. {
  3550. wattron(statuswin, attr_bad);
  3551. bfg_waddstr(statuswin, "NO DEVICES FOUND: Press 'M' and '+' to add");
  3552. wclrtoeol(statuswin);
  3553. wattroff(statuswin, attr_bad);
  3554. }
  3555. }
  3556. for (i = 0; i < total_devices; i++)
  3557. curses_print_devstatus(get_devices(i));
  3558. touchwin(statuswin);
  3559. wrefresh(statuswin);
  3560. if (!already_have_lock)
  3561. unlock_curses();
  3562. }
  3563. }
  3564. #define refresh_devstatus() _refresh_devstatus(false)
  3565. #endif
  3566. static void print_status(int thr_id)
  3567. {
  3568. if (!curses_active)
  3569. text_print_status(thr_id);
  3570. }
  3571. #ifdef HAVE_CURSES
  3572. static
  3573. bool set_statusy(int maxy)
  3574. {
  3575. if (loginput_size)
  3576. {
  3577. maxy -= loginput_size;
  3578. if (maxy < 0)
  3579. maxy = 0;
  3580. }
  3581. if (logstart < maxy)
  3582. maxy = logstart;
  3583. if (statusy == maxy)
  3584. return false;
  3585. statusy = maxy;
  3586. logcursor = statusy;
  3587. return true;
  3588. }
  3589. /* Check for window resize. Called with curses mutex locked */
  3590. static inline void change_logwinsize(void)
  3591. {
  3592. int x, y, logx, logy;
  3593. getmaxyx(mainwin, y, x);
  3594. if (x < 80 || y < 25)
  3595. return;
  3596. if (y > statusy + 2 && statusy < logstart) {
  3597. set_statusy(y - 2);
  3598. mvwin(logwin, logcursor, 0);
  3599. bfg_wresize(statuswin, statusy, x);
  3600. }
  3601. y -= logcursor;
  3602. getmaxyx(logwin, logy, logx);
  3603. /* Detect screen size change */
  3604. if (x != logx || y != logy)
  3605. bfg_wresize(logwin, y, x);
  3606. }
  3607. static void check_winsizes(void)
  3608. {
  3609. if (!use_curses)
  3610. return;
  3611. if (curses_active_locked()) {
  3612. int y, x;
  3613. x = getmaxx(statuswin);
  3614. if (set_statusy(LINES - 2))
  3615. {
  3616. erase();
  3617. bfg_wresize(statuswin, statusy, x);
  3618. getmaxyx(mainwin, y, x);
  3619. y -= logcursor;
  3620. bfg_wresize(logwin, y, x);
  3621. mvwin(logwin, logcursor, 0);
  3622. }
  3623. unlock_curses();
  3624. }
  3625. }
  3626. static int device_line_id_count;
  3627. static void switch_logsize(void)
  3628. {
  3629. if (curses_active_locked()) {
  3630. if (opt_compact) {
  3631. logstart = devcursor - 1;
  3632. logcursor = logstart + 1;
  3633. } else {
  3634. total_lines = (opt_show_procs ? total_devices : device_line_id_count) ?: 1;
  3635. logstart = devcursor + total_lines;
  3636. logcursor = logstart;
  3637. }
  3638. unlock_curses();
  3639. }
  3640. check_winsizes();
  3641. }
  3642. /* For mandatory printing when mutex is already locked */
  3643. void _wlog(const char *str)
  3644. {
  3645. static bool newline;
  3646. size_t end = strlen(str) - 1;
  3647. if (newline)
  3648. bfg_waddstr(logwin, "\n");
  3649. if (str[end] == '\n')
  3650. {
  3651. char *s;
  3652. newline = true;
  3653. s = alloca(end + 1);
  3654. memcpy(s, str, end);
  3655. s[end] = '\0';
  3656. str = s;
  3657. }
  3658. else
  3659. newline = false;
  3660. bfg_waddstr(logwin, str);
  3661. }
  3662. /* Mandatory printing */
  3663. void _wlogprint(const char *str)
  3664. {
  3665. if (curses_active_locked()) {
  3666. _wlog(str);
  3667. unlock_curses();
  3668. }
  3669. }
  3670. #endif
  3671. #ifdef HAVE_CURSES
  3672. bool _log_curses_only(int prio, const char *datetime, const char *str)
  3673. {
  3674. bool high_prio;
  3675. high_prio = (prio == LOG_WARNING || prio == LOG_ERR);
  3676. if (curses_active)
  3677. {
  3678. if (!loginput_size || high_prio) {
  3679. wlog(" %s %s\n", datetime, str);
  3680. if (high_prio) {
  3681. touchwin(logwin);
  3682. wrefresh(logwin);
  3683. }
  3684. }
  3685. return true;
  3686. }
  3687. return false;
  3688. }
  3689. void clear_logwin(void)
  3690. {
  3691. if (curses_active_locked()) {
  3692. wclear(logwin);
  3693. unlock_curses();
  3694. }
  3695. }
  3696. void logwin_update(void)
  3697. {
  3698. if (curses_active_locked()) {
  3699. touchwin(logwin);
  3700. wrefresh(logwin);
  3701. unlock_curses();
  3702. }
  3703. }
  3704. #endif
  3705. static void enable_pool(struct pool *pool)
  3706. {
  3707. if (pool->enabled != POOL_ENABLED) {
  3708. enabled_pools++;
  3709. pool->enabled = POOL_ENABLED;
  3710. }
  3711. }
  3712. #ifdef HAVE_CURSES
  3713. static void disable_pool(struct pool *pool)
  3714. {
  3715. if (pool->enabled == POOL_ENABLED)
  3716. enabled_pools--;
  3717. pool->enabled = POOL_DISABLED;
  3718. }
  3719. #endif
  3720. static void reject_pool(struct pool *pool)
  3721. {
  3722. if (pool->enabled == POOL_ENABLED)
  3723. enabled_pools--;
  3724. pool->enabled = POOL_REJECTING;
  3725. }
  3726. static double share_diff(const struct work *);
  3727. static
  3728. void share_result_msg(const struct work *work, const char *disp, const char *reason, bool resubmit, const char *worktime) {
  3729. struct cgpu_info *cgpu;
  3730. const unsigned char *hashpart = &work->hash[opt_scrypt ? 26 : 24];
  3731. char shrdiffdisp[ALLOC_H2B_SHORTV];
  3732. const double tgtdiff = work->work_difficulty;
  3733. char tgtdiffdisp[ALLOC_H2B_SHORTV];
  3734. char where[20];
  3735. cgpu = get_thr_cgpu(work->thr_id);
  3736. suffix_string(work->share_diff, shrdiffdisp, sizeof(shrdiffdisp), 0);
  3737. suffix_string(tgtdiff, tgtdiffdisp, sizeof(tgtdiffdisp), 0);
  3738. if (total_pools > 1)
  3739. snprintf(where, sizeof(where), " pool %d", work->pool->pool_no);
  3740. else
  3741. where[0] = '\0';
  3742. applog(LOG_NOTICE, "%s %02x%02x%02x%02x %"PRIprepr"%s Diff %s/%s%s %s%s",
  3743. disp,
  3744. (unsigned)hashpart[3], (unsigned)hashpart[2], (unsigned)hashpart[1], (unsigned)hashpart[0],
  3745. cgpu->proc_repr,
  3746. where,
  3747. shrdiffdisp, tgtdiffdisp,
  3748. reason,
  3749. resubmit ? "(resubmit)" : "",
  3750. worktime
  3751. );
  3752. }
  3753. static bool test_work_current(struct work *);
  3754. static void _submit_work_async(struct work *);
  3755. static
  3756. void maybe_local_submit(const struct work *work)
  3757. {
  3758. #if BLKMAKER_VERSION > 3
  3759. if (unlikely(work->block && work->tmpl))
  3760. {
  3761. // This is a block with a full template (GBT)
  3762. // Regardless of the result, submit to local bitcoind(s) as well
  3763. struct work *work_cp;
  3764. char *p;
  3765. for (int i = 0; i < total_pools; ++i)
  3766. {
  3767. p = strchr(pools[i]->rpc_url, '#');
  3768. if (likely(!(p && strstr(&p[1], "allblocks"))))
  3769. continue;
  3770. applog(LOG_DEBUG, "Attempting submission of full block to pool %d", pools[i]->pool_no);
  3771. work_cp = copy_work(work);
  3772. work_cp->pool = pools[i];
  3773. work_cp->do_foreign_submit = true;
  3774. _submit_work_async(work_cp);
  3775. }
  3776. }
  3777. #endif
  3778. }
  3779. /* Theoretically threads could race when modifying accepted and
  3780. * rejected values but the chance of two submits completing at the
  3781. * same time is zero so there is no point adding extra locking */
  3782. static void
  3783. share_result(json_t *val, json_t *res, json_t *err, const struct work *work,
  3784. /*char *hashshow,*/ bool resubmit, char *worktime)
  3785. {
  3786. struct pool *pool = work->pool;
  3787. struct cgpu_info *cgpu;
  3788. cgpu = get_thr_cgpu(work->thr_id);
  3789. if ((json_is_null(err) || !err) && (json_is_null(res) || json_is_true(res))) {
  3790. mutex_lock(&stats_lock);
  3791. cgpu->accepted++;
  3792. total_accepted++;
  3793. pool->accepted++;
  3794. cgpu->diff_accepted += work->work_difficulty;
  3795. total_diff_accepted += work->work_difficulty;
  3796. pool->diff_accepted += work->work_difficulty;
  3797. mutex_unlock(&stats_lock);
  3798. pool->seq_rejects = 0;
  3799. cgpu->last_share_pool = pool->pool_no;
  3800. cgpu->last_share_pool_time = time(NULL);
  3801. cgpu->last_share_diff = work->work_difficulty;
  3802. pool->last_share_time = cgpu->last_share_pool_time;
  3803. pool->last_share_diff = work->work_difficulty;
  3804. applog(LOG_DEBUG, "PROOF OF WORK RESULT: true (yay!!!)");
  3805. if (!QUIET) {
  3806. share_result_msg(work, "Accepted", "", resubmit, worktime);
  3807. }
  3808. sharelog("accept", work);
  3809. if (opt_shares && total_diff_accepted >= opt_shares) {
  3810. applog(LOG_WARNING, "Successfully mined %g accepted shares as requested and exiting.", opt_shares);
  3811. kill_work();
  3812. return;
  3813. }
  3814. /* Detect if a pool that has been temporarily disabled for
  3815. * continually rejecting shares has started accepting shares.
  3816. * This will only happen with the work returned from a
  3817. * longpoll */
  3818. if (unlikely(pool->enabled == POOL_REJECTING)) {
  3819. applog(LOG_WARNING, "Rejecting pool %d now accepting shares, re-enabling!", pool->pool_no);
  3820. enable_pool(pool);
  3821. switch_pools(NULL);
  3822. }
  3823. if (unlikely(work->block)) {
  3824. // Force moving on to this new block :)
  3825. struct work fakework;
  3826. memset(&fakework, 0, sizeof(fakework));
  3827. fakework.pool = work->pool;
  3828. // Copy block version, bits, and time from share
  3829. memcpy(&fakework.data[ 0], &work->data[ 0], 4);
  3830. memcpy(&fakework.data[68], &work->data[68], 8);
  3831. // Set prevblock to winning hash (swap32'd)
  3832. swap32yes(&fakework.data[4], &work->hash[0], 32 / 4);
  3833. test_work_current(&fakework);
  3834. }
  3835. } else {
  3836. mutex_lock(&stats_lock);
  3837. cgpu->rejected++;
  3838. total_rejected++;
  3839. pool->rejected++;
  3840. cgpu->diff_rejected += work->work_difficulty;
  3841. total_diff_rejected += work->work_difficulty;
  3842. pool->diff_rejected += work->work_difficulty;
  3843. pool->seq_rejects++;
  3844. mutex_unlock(&stats_lock);
  3845. applog(LOG_DEBUG, "PROOF OF WORK RESULT: false (booooo)");
  3846. if (!QUIET) {
  3847. char where[20];
  3848. char disposition[36] = "reject";
  3849. char reason[32];
  3850. strcpy(reason, "");
  3851. if (total_pools > 1)
  3852. snprintf(where, sizeof(where), "pool %d", work->pool->pool_no);
  3853. else
  3854. strcpy(where, "");
  3855. if (!json_is_string(res))
  3856. res = json_object_get(val, "reject-reason");
  3857. if (res) {
  3858. const char *reasontmp = json_string_value(res);
  3859. size_t reasonLen = strlen(reasontmp);
  3860. if (reasonLen > 28)
  3861. reasonLen = 28;
  3862. reason[0] = ' '; reason[1] = '(';
  3863. memcpy(2 + reason, reasontmp, reasonLen);
  3864. reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
  3865. memcpy(disposition + 7, reasontmp, reasonLen);
  3866. disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
  3867. } else if (work->stratum && err && json_is_array(err)) {
  3868. json_t *reason_val = json_array_get(err, 1);
  3869. char *reason_str;
  3870. if (reason_val && json_is_string(reason_val)) {
  3871. reason_str = (char *)json_string_value(reason_val);
  3872. snprintf(reason, 31, " (%s)", reason_str);
  3873. }
  3874. }
  3875. share_result_msg(work, "Rejected", reason, resubmit, worktime);
  3876. sharelog(disposition, work);
  3877. }
  3878. /* Once we have more than a nominal amount of sequential rejects,
  3879. * at least 10 and more than 3 mins at the current utility,
  3880. * disable the pool because some pool error is likely to have
  3881. * ensued. Do not do this if we know the share just happened to
  3882. * be stale due to networking delays.
  3883. */
  3884. if (pool->seq_rejects > 10 && !work->stale && opt_disable_pool && enabled_pools > 1) {
  3885. double utility = total_accepted / total_secs * 60;
  3886. if (pool->seq_rejects > utility * 3) {
  3887. applog(LOG_WARNING, "Pool %d rejected %d sequential shares, disabling!",
  3888. pool->pool_no, pool->seq_rejects);
  3889. reject_pool(pool);
  3890. if (pool == current_pool())
  3891. switch_pools(NULL);
  3892. pool->seq_rejects = 0;
  3893. }
  3894. }
  3895. }
  3896. maybe_local_submit(work);
  3897. }
  3898. static char *submit_upstream_work_request(struct work *work)
  3899. {
  3900. char *hexstr = NULL;
  3901. char *s, *sd;
  3902. struct pool *pool = work->pool;
  3903. if (work->tmpl) {
  3904. json_t *req;
  3905. unsigned char data[80];
  3906. swap32yes(data, work->data, 80 / 4);
  3907. #if BLKMAKER_VERSION > 3
  3908. if (work->do_foreign_submit)
  3909. req = blkmk_submit_foreign_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3910. else
  3911. #endif
  3912. req = blkmk_submit_jansson(work->tmpl, data, work->dataid, le32toh(*((uint32_t*)&work->data[76])));
  3913. s = json_dumps(req, 0);
  3914. json_decref(req);
  3915. sd = malloc(161);
  3916. bin2hex(sd, data, 80);
  3917. } else {
  3918. /* build hex string */
  3919. hexstr = malloc((sizeof(work->data) * 2) + 1);
  3920. bin2hex(hexstr, work->data, sizeof(work->data));
  3921. /* build JSON-RPC request */
  3922. s = strdup("{\"method\": \"getwork\", \"params\": [ \"");
  3923. s = realloc_strcat(s, hexstr);
  3924. s = realloc_strcat(s, "\" ], \"id\":1}");
  3925. free(hexstr);
  3926. sd = s;
  3927. }
  3928. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->rpc_url, sd);
  3929. if (work->tmpl)
  3930. free(sd);
  3931. else
  3932. s = realloc_strcat(s, "\n");
  3933. return s;
  3934. }
  3935. static bool submit_upstream_work_completed(struct work *work, bool resubmit, struct timeval *ptv_submit, json_t *val) {
  3936. json_t *res, *err;
  3937. bool rc = false;
  3938. int thr_id = work->thr_id;
  3939. struct pool *pool = work->pool;
  3940. struct timeval tv_submit_reply;
  3941. time_t ts_submit_reply;
  3942. char worktime[200] = "";
  3943. cgtime(&tv_submit_reply);
  3944. ts_submit_reply = time(NULL);
  3945. if (unlikely(!val)) {
  3946. applog(LOG_INFO, "submit_upstream_work json_rpc_call failed");
  3947. if (!pool_tset(pool, &pool->submit_fail)) {
  3948. total_ro++;
  3949. pool->remotefail_occasions++;
  3950. applog(LOG_WARNING, "Pool %d communication failure, caching submissions", pool->pool_no);
  3951. }
  3952. goto out;
  3953. } else if (pool_tclear(pool, &pool->submit_fail))
  3954. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  3955. res = json_object_get(val, "result");
  3956. err = json_object_get(val, "error");
  3957. if (!QUIET) {
  3958. if (opt_worktime) {
  3959. char workclone[20];
  3960. struct tm _tm;
  3961. struct tm *tm, tm_getwork, tm_submit_reply;
  3962. tm = &_tm;
  3963. double getwork_time = tdiff((struct timeval *)&(work->tv_getwork_reply),
  3964. (struct timeval *)&(work->tv_getwork));
  3965. double getwork_to_work = tdiff((struct timeval *)&(work->tv_work_start),
  3966. (struct timeval *)&(work->tv_getwork_reply));
  3967. double work_time = tdiff((struct timeval *)&(work->tv_work_found),
  3968. (struct timeval *)&(work->tv_work_start));
  3969. double work_to_submit = tdiff(ptv_submit,
  3970. (struct timeval *)&(work->tv_work_found));
  3971. double submit_time = tdiff(&tv_submit_reply, ptv_submit);
  3972. int diffplaces = 3;
  3973. localtime_r(&work->ts_getwork, tm);
  3974. memcpy(&tm_getwork, tm, sizeof(struct tm));
  3975. localtime_r(&ts_submit_reply, tm);
  3976. memcpy(&tm_submit_reply, tm, sizeof(struct tm));
  3977. if (work->clone) {
  3978. snprintf(workclone, sizeof(workclone), "C:%1.3f",
  3979. tdiff((struct timeval *)&(work->tv_cloned),
  3980. (struct timeval *)&(work->tv_getwork_reply)));
  3981. }
  3982. else
  3983. strcpy(workclone, "O");
  3984. if (work->work_difficulty < 1)
  3985. diffplaces = 6;
  3986. snprintf(worktime, sizeof(worktime),
  3987. " <-%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",
  3988. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 32 : 28])),
  3989. (unsigned long)be32toh(*(uint32_t *)&(work->data[opt_scrypt ? 28 : 24])),
  3990. work->getwork_mode, diffplaces, work->work_difficulty,
  3991. tm_getwork.tm_hour, tm_getwork.tm_min,
  3992. tm_getwork.tm_sec, getwork_time, workclone,
  3993. getwork_to_work, work_time, work_to_submit, submit_time,
  3994. tm_submit_reply.tm_hour, tm_submit_reply.tm_min,
  3995. tm_submit_reply.tm_sec);
  3996. }
  3997. }
  3998. share_result(val, res, err, work, resubmit, worktime);
  3999. if (!opt_realquiet)
  4000. print_status(thr_id);
  4001. if (!want_per_device_stats) {
  4002. char logline[256];
  4003. struct cgpu_info *cgpu;
  4004. cgpu = get_thr_cgpu(thr_id);
  4005. get_statline(logline, sizeof(logline), cgpu);
  4006. applog(LOG_INFO, "%s", logline);
  4007. }
  4008. json_decref(val);
  4009. rc = true;
  4010. out:
  4011. return rc;
  4012. }
  4013. /* Specifies whether we can use this pool for work or not. */
  4014. static bool pool_unworkable(const struct pool * const pool)
  4015. {
  4016. if (pool->idle)
  4017. return true;
  4018. if (pool->enabled != POOL_ENABLED)
  4019. return true;
  4020. if (pool->has_stratum && !pool->stratum_active)
  4021. return true;
  4022. return false;
  4023. }
  4024. static
  4025. bool pool_actively_desired(const struct pool * const pool, const struct pool *cp)
  4026. {
  4027. if (pool->enabled != POOL_ENABLED)
  4028. return false;
  4029. if (pool_strategy == POOL_LOADBALANCE || pool_strategy == POOL_BALANCE)
  4030. return true;
  4031. if (!cp)
  4032. cp = current_pool();
  4033. return (pool == cp);
  4034. }
  4035. static
  4036. bool pool_actively_in_use(const struct pool * const pool, const struct pool *cp)
  4037. {
  4038. return (!pool_unworkable(pool)) && pool_actively_desired(pool, cp);
  4039. }
  4040. /* In balanced mode, the amount of diff1 solutions per pool is monitored as a
  4041. * rolling average per 10 minutes and if pools start getting more, it biases
  4042. * away from them to distribute work evenly. The share count is reset to the
  4043. * rolling average every 10 minutes to not send all work to one pool after it
  4044. * has been disabled/out for an extended period. */
  4045. static struct pool *select_balanced(struct pool *cp)
  4046. {
  4047. int i, lowest = cp->shares;
  4048. struct pool *ret = cp;
  4049. for (i = 0; i < total_pools; i++) {
  4050. struct pool *pool = pools[i];
  4051. if (pool_unworkable(pool))
  4052. continue;
  4053. if (pool->shares < lowest) {
  4054. lowest = pool->shares;
  4055. ret = pool;
  4056. }
  4057. }
  4058. ret->shares++;
  4059. return ret;
  4060. }
  4061. static bool pool_active(struct pool *, bool pinging);
  4062. static void pool_died(struct pool *);
  4063. static struct pool *priority_pool(int choice);
  4064. static bool pool_unusable(struct pool *pool);
  4065. /* Select any active pool in a rotating fashion when loadbalance is chosen if
  4066. * it has any quota left. */
  4067. static inline struct pool *select_pool(bool lagging)
  4068. {
  4069. static int rotating_pool = 0;
  4070. struct pool *pool, *cp;
  4071. bool avail = false;
  4072. int tested, i;
  4073. cp = current_pool();
  4074. retry:
  4075. if (pool_strategy == POOL_BALANCE) {
  4076. pool = select_balanced(cp);
  4077. goto out;
  4078. }
  4079. if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
  4080. pool = cp;
  4081. goto out;
  4082. } else
  4083. pool = NULL;
  4084. for (i = 0; i < total_pools; i++) {
  4085. struct pool *tp = pools[i];
  4086. if (tp->quota_used < tp->quota_gcd) {
  4087. avail = true;
  4088. break;
  4089. }
  4090. }
  4091. /* There are no pools with quota, so reset them. */
  4092. if (!avail) {
  4093. for (i = 0; i < total_pools; i++)
  4094. pools[i]->quota_used = 0;
  4095. if (++rotating_pool >= total_pools)
  4096. rotating_pool = 0;
  4097. }
  4098. /* Try to find the first pool in the rotation that is usable */
  4099. tested = 0;
  4100. while (!pool && tested++ < total_pools) {
  4101. pool = pools[rotating_pool];
  4102. if (pool->quota_used++ < pool->quota_gcd) {
  4103. if (!pool_unworkable(pool))
  4104. break;
  4105. /* Failover-only flag for load-balance means distribute
  4106. * unused quota to priority pool 0. */
  4107. if (opt_fail_only)
  4108. priority_pool(0)->quota_used--;
  4109. }
  4110. pool = NULL;
  4111. if (++rotating_pool >= total_pools)
  4112. rotating_pool = 0;
  4113. }
  4114. /* If there are no alive pools with quota, choose according to
  4115. * priority. */
  4116. if (!pool) {
  4117. for (i = 0; i < total_pools; i++) {
  4118. struct pool *tp = priority_pool(i);
  4119. if (!pool_unusable(tp)) {
  4120. pool = tp;
  4121. break;
  4122. }
  4123. }
  4124. }
  4125. /* If still nothing is usable, use the current pool */
  4126. if (!pool)
  4127. pool = cp;
  4128. out:
  4129. if (!pool_actively_in_use(pool, cp))
  4130. {
  4131. if (!pool_active(pool, false))
  4132. {
  4133. pool_died(pool);
  4134. goto retry;
  4135. }
  4136. pool_tclear(pool, &pool->idle);
  4137. }
  4138. applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
  4139. return pool;
  4140. }
  4141. static double DIFFEXACTONE = 26959946667150639794667015087019630673637144422540572481103610249215.0;
  4142. static const uint64_t diffone = 0xFFFF000000000000ull;
  4143. static double target_diff(const unsigned char *target)
  4144. {
  4145. double targ = 0;
  4146. signed int i;
  4147. for (i = 31; i >= 0; --i)
  4148. targ = (targ * 0x100) + target[i];
  4149. return DIFFEXACTONE / (targ ?: 1);
  4150. }
  4151. /*
  4152. * Calculate the work share difficulty
  4153. */
  4154. static void calc_diff(struct work *work, int known)
  4155. {
  4156. struct cgminer_pool_stats *pool_stats = &(work->pool->cgminer_pool_stats);
  4157. double difficulty;
  4158. if (!known) {
  4159. work->work_difficulty = target_diff(work->target);
  4160. } else
  4161. work->work_difficulty = known;
  4162. difficulty = work->work_difficulty;
  4163. pool_stats->last_diff = difficulty;
  4164. suffix_string(difficulty, work->pool->diff, sizeof(work->pool->diff), 0);
  4165. if (difficulty == pool_stats->min_diff)
  4166. pool_stats->min_diff_count++;
  4167. else if (difficulty < pool_stats->min_diff || pool_stats->min_diff == 0) {
  4168. pool_stats->min_diff = difficulty;
  4169. pool_stats->min_diff_count = 1;
  4170. }
  4171. if (difficulty == pool_stats->max_diff)
  4172. pool_stats->max_diff_count++;
  4173. else if (difficulty > pool_stats->max_diff) {
  4174. pool_stats->max_diff = difficulty;
  4175. pool_stats->max_diff_count = 1;
  4176. }
  4177. }
  4178. static
  4179. void setup_benchmark_pool()
  4180. {
  4181. struct pool *pool;
  4182. want_longpoll = false;
  4183. // Temporarily disable opt_benchmark to avoid auto-removal
  4184. opt_benchmark = false;
  4185. pool = add_pool();
  4186. opt_benchmark = true;
  4187. pool->rpc_url = malloc(255);
  4188. strcpy(pool->rpc_url, "Benchmark");
  4189. pool->rpc_user = pool->rpc_url;
  4190. pool->rpc_pass = pool->rpc_url;
  4191. enable_pool(pool);
  4192. pool->idle = false;
  4193. successful_connect = true;
  4194. }
  4195. void get_benchmark_work(struct work *work)
  4196. {
  4197. static uint32_t blkhdr[20];
  4198. for (int i = 18; i >= 0; --i)
  4199. if (++blkhdr[i])
  4200. break;
  4201. memcpy(&work->data[ 0], blkhdr, 80);
  4202. memcpy(&work->data[80], workpadding_bin, 48);
  4203. calc_midstate(work);
  4204. set_target(work->target, 1.0);
  4205. work->mandatory = true;
  4206. work->pool = pools[0];
  4207. cgtime(&work->tv_getwork);
  4208. copy_time(&work->tv_getwork_reply, &work->tv_getwork);
  4209. copy_time(&work->tv_staged, &work->tv_getwork);
  4210. work->getwork_mode = GETWORK_MODE_BENCHMARK;
  4211. calc_diff(work, 0);
  4212. }
  4213. static void wake_gws(void);
  4214. static void update_last_work(struct work *work)
  4215. {
  4216. if (!work->tmpl)
  4217. // Only save GBT jobs, since rollntime isn't coordinated well yet
  4218. return;
  4219. struct pool *pool = work->pool;
  4220. mutex_lock(&pool->last_work_lock);
  4221. if (pool->last_work_copy)
  4222. free_work(pool->last_work_copy);
  4223. pool->last_work_copy = copy_work(work);
  4224. pool->last_work_copy->work_restart_id = pool->work_restart_id;
  4225. mutex_unlock(&pool->last_work_lock);
  4226. }
  4227. static
  4228. void gbt_req_target(json_t *req)
  4229. {
  4230. json_t *j;
  4231. json_t *n;
  4232. if (!request_target_str)
  4233. return;
  4234. j = json_object_get(req, "params");
  4235. if (!j)
  4236. {
  4237. n = json_array();
  4238. if (!n)
  4239. return;
  4240. if (json_object_set_new(req, "params", n))
  4241. goto erradd;
  4242. j = n;
  4243. }
  4244. n = json_array_get(j, 0);
  4245. if (!n)
  4246. {
  4247. n = json_object();
  4248. if (!n)
  4249. return;
  4250. if (json_array_append_new(j, n))
  4251. goto erradd;
  4252. }
  4253. j = n;
  4254. n = json_string(request_target_str);
  4255. if (!n)
  4256. return;
  4257. if (json_object_set_new(j, "target", n))
  4258. goto erradd;
  4259. return;
  4260. erradd:
  4261. json_decref(n);
  4262. }
  4263. static char *prepare_rpc_req2(struct work *work, enum pool_protocol proto, const char *lpid, bool probe)
  4264. {
  4265. char *rpc_req;
  4266. clean_work(work);
  4267. switch (proto) {
  4268. case PLP_GETWORK:
  4269. work->getwork_mode = GETWORK_MODE_POOL;
  4270. return strdup(getwork_req);
  4271. case PLP_GETBLOCKTEMPLATE:
  4272. work->getwork_mode = GETWORK_MODE_GBT;
  4273. work->tmpl_refcount = malloc(sizeof(*work->tmpl_refcount));
  4274. if (!work->tmpl_refcount)
  4275. return NULL;
  4276. work->tmpl = blktmpl_create();
  4277. if (!work->tmpl)
  4278. goto gbtfail2;
  4279. *work->tmpl_refcount = 1;
  4280. gbt_capabilities_t caps = blktmpl_addcaps(work->tmpl);
  4281. if (!caps)
  4282. goto gbtfail;
  4283. caps |= GBT_LONGPOLL;
  4284. #if BLKMAKER_VERSION > 1
  4285. if (opt_coinbase_script.sz)
  4286. caps |= GBT_CBVALUE;
  4287. #endif
  4288. json_t *req = blktmpl_request_jansson(caps, lpid);
  4289. if (!req)
  4290. goto gbtfail;
  4291. if (probe)
  4292. gbt_req_target(req);
  4293. rpc_req = json_dumps(req, 0);
  4294. if (!rpc_req)
  4295. goto gbtfail;
  4296. json_decref(req);
  4297. return rpc_req;
  4298. default:
  4299. return NULL;
  4300. }
  4301. return NULL;
  4302. gbtfail:
  4303. blktmpl_free(work->tmpl);
  4304. work->tmpl = NULL;
  4305. gbtfail2:
  4306. free(work->tmpl_refcount);
  4307. work->tmpl_refcount = NULL;
  4308. return NULL;
  4309. }
  4310. #define prepare_rpc_req(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, false)
  4311. #define prepare_rpc_req_probe(work, proto, lpid) prepare_rpc_req2(work, proto, lpid, true)
  4312. static const char *pool_protocol_name(enum pool_protocol proto)
  4313. {
  4314. switch (proto) {
  4315. case PLP_GETBLOCKTEMPLATE:
  4316. return "getblocktemplate";
  4317. case PLP_GETWORK:
  4318. return "getwork";
  4319. default:
  4320. return "UNKNOWN";
  4321. }
  4322. }
  4323. static enum pool_protocol pool_protocol_fallback(enum pool_protocol proto)
  4324. {
  4325. switch (proto) {
  4326. case PLP_GETBLOCKTEMPLATE:
  4327. if (want_getwork)
  4328. return PLP_GETWORK;
  4329. default:
  4330. return PLP_NONE;
  4331. }
  4332. }
  4333. static bool get_upstream_work(struct work *work, CURL *curl)
  4334. {
  4335. struct pool *pool = work->pool;
  4336. struct cgminer_pool_stats *pool_stats = &(pool->cgminer_pool_stats);
  4337. struct timeval tv_elapsed;
  4338. json_t *val = NULL;
  4339. bool rc = false;
  4340. char *url;
  4341. enum pool_protocol proto;
  4342. char *rpc_req;
  4343. if (pool->proto == PLP_NONE)
  4344. pool->proto = PLP_GETBLOCKTEMPLATE;
  4345. tryagain:
  4346. rpc_req = prepare_rpc_req(work, pool->proto, NULL);
  4347. work->pool = pool;
  4348. if (!rpc_req)
  4349. return false;
  4350. applog(LOG_DEBUG, "DBG: sending %s get RPC call: %s", pool->rpc_url, rpc_req);
  4351. url = pool->rpc_url;
  4352. cgtime(&work->tv_getwork);
  4353. val = json_rpc_call(curl, url, pool->rpc_userpass, rpc_req, false,
  4354. false, &work->rolltime, pool, false);
  4355. pool_stats->getwork_attempts++;
  4356. free(rpc_req);
  4357. if (likely(val)) {
  4358. rc = work_decode(pool, work, val);
  4359. if (unlikely(!rc))
  4360. applog(LOG_DEBUG, "Failed to decode work in get_upstream_work");
  4361. } else if (PLP_NONE != (proto = pool_protocol_fallback(pool->proto))) {
  4362. applog(LOG_WARNING, "Pool %u failed getblocktemplate request; falling back to getwork protocol", pool->pool_no);
  4363. pool->proto = proto;
  4364. goto tryagain;
  4365. } else
  4366. applog(LOG_DEBUG, "Failed json_rpc_call in get_upstream_work");
  4367. cgtime(&work->tv_getwork_reply);
  4368. timersub(&(work->tv_getwork_reply), &(work->tv_getwork), &tv_elapsed);
  4369. pool_stats->getwork_wait_rolling += ((double)tv_elapsed.tv_sec + ((double)tv_elapsed.tv_usec / 1000000)) * 0.63;
  4370. pool_stats->getwork_wait_rolling /= 1.63;
  4371. timeradd(&tv_elapsed, &(pool_stats->getwork_wait), &(pool_stats->getwork_wait));
  4372. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_max), >)) {
  4373. pool_stats->getwork_wait_max.tv_sec = tv_elapsed.tv_sec;
  4374. pool_stats->getwork_wait_max.tv_usec = tv_elapsed.tv_usec;
  4375. }
  4376. if (timercmp(&tv_elapsed, &(pool_stats->getwork_wait_min), <)) {
  4377. pool_stats->getwork_wait_min.tv_sec = tv_elapsed.tv_sec;
  4378. pool_stats->getwork_wait_min.tv_usec = tv_elapsed.tv_usec;
  4379. }
  4380. pool_stats->getwork_calls++;
  4381. work->pool = pool;
  4382. work->longpoll = false;
  4383. calc_diff(work, 0);
  4384. total_getworks++;
  4385. pool->getwork_requested++;
  4386. if (rc)
  4387. update_last_work(work);
  4388. if (likely(val))
  4389. json_decref(val);
  4390. return rc;
  4391. }
  4392. #ifdef HAVE_CURSES
  4393. static void disable_curses(void)
  4394. {
  4395. if (curses_active_locked()) {
  4396. use_curses = false;
  4397. curses_active = false;
  4398. leaveok(logwin, false);
  4399. leaveok(statuswin, false);
  4400. leaveok(mainwin, false);
  4401. nocbreak();
  4402. echo();
  4403. delwin(logwin);
  4404. delwin(statuswin);
  4405. delwin(mainwin);
  4406. endwin();
  4407. #ifdef WIN32
  4408. // Move the cursor to after curses output.
  4409. HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
  4410. CONSOLE_SCREEN_BUFFER_INFO csbi;
  4411. COORD coord;
  4412. if (GetConsoleScreenBufferInfo(hout, &csbi)) {
  4413. coord.X = 0;
  4414. coord.Y = csbi.dwSize.Y - 1;
  4415. SetConsoleCursorPosition(hout, coord);
  4416. }
  4417. #endif
  4418. unlock_curses();
  4419. }
  4420. }
  4421. #endif
  4422. static void __kill_work(void)
  4423. {
  4424. struct cgpu_info *cgpu;
  4425. struct thr_info *thr;
  4426. int i;
  4427. if (!successful_connect)
  4428. return;
  4429. applog(LOG_INFO, "Received kill message");
  4430. shutting_down = true;
  4431. applog(LOG_DEBUG, "Prompting submit_work thread to finish");
  4432. notifier_wake(submit_waiting_notifier);
  4433. #ifdef USE_LIBMICROHTTPD
  4434. httpsrv_stop();
  4435. #endif
  4436. applog(LOG_DEBUG, "Killing off watchpool thread");
  4437. /* Kill the watchpool thread */
  4438. thr = &control_thr[watchpool_thr_id];
  4439. thr_info_cancel(thr);
  4440. applog(LOG_DEBUG, "Killing off watchdog thread");
  4441. /* Kill the watchdog thread */
  4442. thr = &control_thr[watchdog_thr_id];
  4443. thr_info_cancel(thr);
  4444. applog(LOG_DEBUG, "Shutting down mining threads");
  4445. for (i = 0; i < mining_threads; i++) {
  4446. thr = get_thread(i);
  4447. if (!thr)
  4448. continue;
  4449. cgpu = thr->cgpu;
  4450. if (!cgpu)
  4451. continue;
  4452. if (!cgpu->threads)
  4453. continue;
  4454. cgpu->shutdown = true;
  4455. thr->work_restart = true;
  4456. notifier_wake(thr->notifier);
  4457. notifier_wake(thr->work_restart_notifier);
  4458. }
  4459. sleep(1);
  4460. applog(LOG_DEBUG, "Killing off mining threads");
  4461. /* Kill the mining threads*/
  4462. for (i = 0; i < mining_threads; i++) {
  4463. thr = get_thread(i);
  4464. if (!thr)
  4465. continue;
  4466. cgpu = thr->cgpu;
  4467. if (cgpu->threads)
  4468. {
  4469. applog(LOG_WARNING, "Killing %"PRIpreprv, thr->cgpu->proc_repr);
  4470. thr_info_cancel(thr);
  4471. }
  4472. cgpu->status = LIFE_DEAD2;
  4473. }
  4474. /* Stop the others */
  4475. applog(LOG_DEBUG, "Killing off API thread");
  4476. thr = &control_thr[api_thr_id];
  4477. thr_info_cancel(thr);
  4478. }
  4479. /* This should be the common exit path */
  4480. void kill_work(void)
  4481. {
  4482. __kill_work();
  4483. quit(0, "Shutdown signal received.");
  4484. }
  4485. static
  4486. #ifdef WIN32
  4487. #ifndef _WIN64
  4488. const
  4489. #endif
  4490. #endif
  4491. char **initial_args;
  4492. void _bfg_clean_up(bool);
  4493. void app_restart(void)
  4494. {
  4495. applog(LOG_WARNING, "Attempting to restart %s", packagename);
  4496. __kill_work();
  4497. _bfg_clean_up(true);
  4498. #if defined(unix) || defined(__APPLE__)
  4499. if (forkpid > 0) {
  4500. kill(forkpid, SIGTERM);
  4501. forkpid = 0;
  4502. }
  4503. #endif
  4504. execv(initial_args[0], initial_args);
  4505. applog(LOG_WARNING, "Failed to restart application");
  4506. }
  4507. static void sighandler(int __maybe_unused sig)
  4508. {
  4509. /* Restore signal handlers so we can still quit if kill_work fails */
  4510. sigaction(SIGTERM, &termhandler, NULL);
  4511. sigaction(SIGINT, &inthandler, NULL);
  4512. kill_work();
  4513. }
  4514. static void start_longpoll(void);
  4515. static void stop_longpoll(void);
  4516. /* Called with pool_lock held. Recruit an extra curl if none are available for
  4517. * this pool. */
  4518. static void recruit_curl(struct pool *pool)
  4519. {
  4520. struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
  4521. if (unlikely(!ce))
  4522. quit(1, "Failed to calloc in recruit_curl");
  4523. ce->curl = curl_easy_init();
  4524. if (unlikely(!ce->curl))
  4525. quit(1, "Failed to init in recruit_curl");
  4526. LL_PREPEND(pool->curllist, ce);
  4527. pool->curls++;
  4528. }
  4529. /* Grab an available curl if there is one. If not, then recruit extra curls
  4530. * unless we are in a submit_fail situation, or we have opt_delaynet enabled
  4531. * and there are already 5 curls in circulation. Limit total number to the
  4532. * number of mining threads per pool as well to prevent blasting a pool during
  4533. * network delays/outages. */
  4534. static struct curl_ent *pop_curl_entry3(struct pool *pool, int blocking)
  4535. {
  4536. int curl_limit = opt_delaynet ? 5 : (mining_threads + opt_queue) * 2;
  4537. bool recruited = false;
  4538. struct curl_ent *ce;
  4539. mutex_lock(&pool->pool_lock);
  4540. retry:
  4541. if (!pool->curls) {
  4542. recruit_curl(pool);
  4543. recruited = true;
  4544. } else if (!pool->curllist) {
  4545. if (blocking < 2 && pool->curls >= curl_limit && (blocking || pool->curls >= opt_submit_threads)) {
  4546. if (!blocking) {
  4547. mutex_unlock(&pool->pool_lock);
  4548. return NULL;
  4549. }
  4550. pthread_cond_wait(&pool->cr_cond, &pool->pool_lock);
  4551. goto retry;
  4552. } else {
  4553. recruit_curl(pool);
  4554. recruited = true;
  4555. }
  4556. }
  4557. ce = pool->curllist;
  4558. LL_DELETE(pool->curllist, ce);
  4559. mutex_unlock(&pool->pool_lock);
  4560. if (recruited)
  4561. applog(LOG_DEBUG, "Recruited curl for pool %d", pool->pool_no);
  4562. return ce;
  4563. }
  4564. static struct curl_ent *pop_curl_entry2(struct pool *pool, bool blocking)
  4565. {
  4566. return pop_curl_entry3(pool, blocking ? 1 : 0);
  4567. }
  4568. __maybe_unused
  4569. static struct curl_ent *pop_curl_entry(struct pool *pool)
  4570. {
  4571. return pop_curl_entry3(pool, 1);
  4572. }
  4573. static void push_curl_entry(struct curl_ent *ce, struct pool *pool)
  4574. {
  4575. mutex_lock(&pool->pool_lock);
  4576. if (!ce || !ce->curl)
  4577. quithere(1, "Attempted to add NULL");
  4578. LL_PREPEND(pool->curllist, ce);
  4579. cgtime(&ce->tv);
  4580. pthread_cond_broadcast(&pool->cr_cond);
  4581. mutex_unlock(&pool->pool_lock);
  4582. }
  4583. bool stale_work(struct work *work, bool share);
  4584. static inline bool should_roll(struct work *work)
  4585. {
  4586. struct timeval now;
  4587. time_t expiry;
  4588. if (!pool_actively_in_use(work->pool, NULL))
  4589. return false;
  4590. if (stale_work(work, false))
  4591. return false;
  4592. if (work->rolltime > opt_scantime)
  4593. expiry = work->rolltime;
  4594. else
  4595. expiry = opt_scantime;
  4596. expiry = expiry * 2 / 3;
  4597. /* We shouldn't roll if we're unlikely to get one shares' duration
  4598. * work out of doing so */
  4599. cgtime(&now);
  4600. if (now.tv_sec - work->tv_staged.tv_sec > expiry)
  4601. return false;
  4602. return true;
  4603. }
  4604. /* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
  4605. * reject blocks as invalid. */
  4606. static inline bool can_roll(struct work *work)
  4607. {
  4608. if (work->stratum)
  4609. return false;
  4610. if (!(work->pool && !work->clone))
  4611. return false;
  4612. if (work->tmpl) {
  4613. if (stale_work(work, false))
  4614. return false;
  4615. return blkmk_work_left(work->tmpl);
  4616. }
  4617. return (work->rolltime &&
  4618. work->rolls < 7000 && !stale_work(work, false));
  4619. }
  4620. static void roll_work(struct work *work)
  4621. {
  4622. if (work->tmpl) {
  4623. struct timeval tv_now;
  4624. cgtime(&tv_now);
  4625. if (blkmk_get_data(work->tmpl, work->data, 80, tv_now.tv_sec, NULL, &work->dataid) < 76)
  4626. applog(LOG_ERR, "Failed to get next data from template; spinning wheels!");
  4627. swap32yes(work->data, work->data, 80 / 4);
  4628. calc_midstate(work);
  4629. applog(LOG_DEBUG, "Successfully rolled extranonce to dataid %u", work->dataid);
  4630. } else {
  4631. uint32_t *work_ntime;
  4632. uint32_t ntime;
  4633. work_ntime = (uint32_t *)(work->data + 68);
  4634. ntime = be32toh(*work_ntime);
  4635. ntime++;
  4636. *work_ntime = htobe32(ntime);
  4637. applog(LOG_DEBUG, "Successfully rolled time header in work");
  4638. }
  4639. local_work++;
  4640. work->rolls++;
  4641. work->blk.nonce = 0;
  4642. /* This is now a different work item so it needs a different ID for the
  4643. * hashtable */
  4644. work->id = total_work++;
  4645. }
  4646. /* Duplicates any dynamically allocated arrays within the work struct to
  4647. * prevent a copied work struct from freeing ram belonging to another struct */
  4648. static void _copy_work(struct work *work, const struct work *base_work, int noffset)
  4649. {
  4650. int id = work->id;
  4651. clean_work(work);
  4652. memcpy(work, base_work, sizeof(struct work));
  4653. /* Keep the unique new id assigned during make_work to prevent copied
  4654. * work from having the same id. */
  4655. work->id = id;
  4656. if (base_work->job_id)
  4657. work->job_id = strdup(base_work->job_id);
  4658. if (base_work->nonce1)
  4659. work->nonce1 = strdup(base_work->nonce1);
  4660. bytes_cpy(&work->nonce2, &base_work->nonce2);
  4661. if (base_work->tmpl) {
  4662. struct pool *pool = work->pool;
  4663. mutex_lock(&pool->pool_lock);
  4664. ++*work->tmpl_refcount;
  4665. mutex_unlock(&pool->pool_lock);
  4666. }
  4667. if (noffset)
  4668. {
  4669. uint32_t *work_ntime = (uint32_t *)(work->data + 68);
  4670. uint32_t ntime = be32toh(*work_ntime);
  4671. ntime += noffset;
  4672. *work_ntime = htobe32(ntime);
  4673. }
  4674. if (work->device_data_dup_func)
  4675. work->device_data = work->device_data_dup_func(work);
  4676. }
  4677. /* Generates a copy of an existing work struct, creating fresh heap allocations
  4678. * for all dynamically allocated arrays within the struct */
  4679. struct work *copy_work(const struct work *base_work)
  4680. {
  4681. struct work *work = make_work();
  4682. _copy_work(work, base_work, 0);
  4683. return work;
  4684. }
  4685. void __copy_work(struct work *work, const struct work *base_work)
  4686. {
  4687. _copy_work(work, base_work, 0);
  4688. }
  4689. static struct work *make_clone(struct work *work)
  4690. {
  4691. struct work *work_clone = copy_work(work);
  4692. work_clone->clone = true;
  4693. cgtime((struct timeval *)&(work_clone->tv_cloned));
  4694. work_clone->longpoll = false;
  4695. work_clone->mandatory = false;
  4696. /* Make cloned work appear slightly older to bias towards keeping the
  4697. * master work item which can be further rolled */
  4698. work_clone->tv_staged.tv_sec -= 1;
  4699. return work_clone;
  4700. }
  4701. static void stage_work(struct work *work);
  4702. static bool clone_available(void)
  4703. {
  4704. struct work *work_clone = NULL, *work, *tmp;
  4705. bool cloned = false;
  4706. mutex_lock(stgd_lock);
  4707. if (!staged_rollable)
  4708. goto out_unlock;
  4709. HASH_ITER(hh, staged_work, work, tmp) {
  4710. if (can_roll(work) && should_roll(work)) {
  4711. roll_work(work);
  4712. work_clone = make_clone(work);
  4713. applog(LOG_DEBUG, "%s: Rolling work %d to %d", __func__, work->id, work_clone->id);
  4714. roll_work(work);
  4715. cloned = true;
  4716. break;
  4717. }
  4718. }
  4719. out_unlock:
  4720. mutex_unlock(stgd_lock);
  4721. if (cloned) {
  4722. applog(LOG_DEBUG, "Pushing cloned available work to stage thread");
  4723. stage_work(work_clone);
  4724. }
  4725. return cloned;
  4726. }
  4727. static void pool_died(struct pool *pool)
  4728. {
  4729. if (!pool_tset(pool, &pool->idle)) {
  4730. cgtime(&pool->tv_idle);
  4731. if (pool == current_pool()) {
  4732. applog(LOG_WARNING, "Pool %d %s not responding!", pool->pool_no, pool->rpc_url);
  4733. switch_pools(NULL);
  4734. } else
  4735. applog(LOG_INFO, "Pool %d %s failed to return work", pool->pool_no, pool->rpc_url);
  4736. }
  4737. }
  4738. bool stale_work(struct work *work, bool share)
  4739. {
  4740. unsigned work_expiry;
  4741. struct pool *pool;
  4742. uint32_t block_id;
  4743. unsigned getwork_delay;
  4744. if (opt_benchmark)
  4745. return false;
  4746. block_id = ((uint32_t*)work->data)[1];
  4747. pool = work->pool;
  4748. /* Technically the rolltime should be correct but some pools
  4749. * advertise a broken expire= that is lower than a meaningful
  4750. * scantime */
  4751. if (work->rolltime >= opt_scantime || work->tmpl)
  4752. work_expiry = work->rolltime;
  4753. else
  4754. work_expiry = opt_expiry;
  4755. unsigned max_expiry = (have_longpoll ? opt_expiry_lp : opt_expiry);
  4756. if (work_expiry > max_expiry)
  4757. work_expiry = max_expiry;
  4758. if (share) {
  4759. /* If the share isn't on this pool's latest block, it's stale */
  4760. if (pool->block_id && pool->block_id != block_id)
  4761. {
  4762. applog(LOG_DEBUG, "Share stale due to block mismatch (%08lx != %08lx)", (long)block_id, (long)pool->block_id);
  4763. return true;
  4764. }
  4765. /* If the pool doesn't want old shares, then any found in work before
  4766. * the most recent longpoll is stale */
  4767. if ((!pool->submit_old) && work->work_restart_id != pool->work_restart_id)
  4768. {
  4769. applog(LOG_DEBUG, "Share stale due to mandatory work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4770. return true;
  4771. }
  4772. } else {
  4773. /* If this work isn't for the latest Bitcoin block, it's stale */
  4774. /* But only care about the current pool if failover-only */
  4775. if (enabled_pools <= 1 || opt_fail_only) {
  4776. if (pool->block_id && block_id != pool->block_id)
  4777. {
  4778. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 1 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4779. return true;
  4780. }
  4781. } else {
  4782. if (block_id != current_block_id)
  4783. {
  4784. applog(LOG_DEBUG, "Work stale due to block mismatch (%08lx != 0 ? %08lx : %08lx)", (long)block_id, (long)pool->block_id, (long)current_block_id);
  4785. return true;
  4786. }
  4787. }
  4788. /* If the pool has asked us to restart since this work, it's stale */
  4789. if (work->work_restart_id != pool->work_restart_id)
  4790. {
  4791. applog(LOG_DEBUG, "Work stale due to work update (%02x != %02x)", work->work_restart_id, pool->work_restart_id);
  4792. return true;
  4793. }
  4794. if (pool->has_stratum && work->job_id) {
  4795. bool same_job;
  4796. if (!pool->stratum_active || !pool->stratum_notify) {
  4797. applog(LOG_DEBUG, "Work stale due to stratum inactive");
  4798. return true;
  4799. }
  4800. same_job = true;
  4801. cg_rlock(&pool->data_lock);
  4802. if (strcmp(work->job_id, pool->swork.job_id))
  4803. same_job = false;
  4804. cg_runlock(&pool->data_lock);
  4805. if (!same_job) {
  4806. applog(LOG_DEBUG, "Work stale due to stratum job_id mismatch");
  4807. return true;
  4808. }
  4809. }
  4810. /* Factor in the average getwork delay of this pool, rounding it up to
  4811. * the nearest second */
  4812. getwork_delay = pool->cgminer_pool_stats.getwork_wait_rolling * 5 + 1;
  4813. if (unlikely(work_expiry <= getwork_delay + 5))
  4814. work_expiry = 5;
  4815. else
  4816. work_expiry -= getwork_delay;
  4817. }
  4818. int elapsed_since_staged = timer_elapsed(&work->tv_staged, NULL);
  4819. if (elapsed_since_staged > work_expiry) {
  4820. applog(LOG_DEBUG, "%s stale due to expiry (%d >= %u)", share?"Share":"Work", elapsed_since_staged, work_expiry);
  4821. return true;
  4822. }
  4823. /* If the user only wants strict failover, any work from a pool other than
  4824. * the current one is always considered stale */
  4825. if (opt_fail_only && !share && !work->mandatory && !pool_actively_in_use(pool, NULL))
  4826. {
  4827. applog(LOG_DEBUG, "Work stale due to fail only pool mismatch (pool %u vs %u)", pool->pool_no, current_pool()->pool_no);
  4828. return true;
  4829. }
  4830. return false;
  4831. }
  4832. static double share_diff(const struct work *work)
  4833. {
  4834. double ret;
  4835. bool new_best = false;
  4836. ret = target_diff(work->hash);
  4837. cg_wlock(&control_lock);
  4838. if (unlikely(ret > best_diff)) {
  4839. new_best = true;
  4840. best_diff = ret;
  4841. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  4842. }
  4843. if (unlikely(ret > work->pool->best_diff))
  4844. work->pool->best_diff = ret;
  4845. cg_wunlock(&control_lock);
  4846. if (unlikely(new_best))
  4847. applog(LOG_INFO, "New best share: %s", best_share);
  4848. return ret;
  4849. }
  4850. static void regen_hash(struct work *work)
  4851. {
  4852. hash_data(work->hash, work->data);
  4853. }
  4854. static void rebuild_hash(struct work *work)
  4855. {
  4856. if (opt_scrypt)
  4857. scrypt_regenhash(work);
  4858. else
  4859. regen_hash(work);
  4860. work->share_diff = share_diff(work);
  4861. if (unlikely(work->share_diff >= current_diff)) {
  4862. work->block = true;
  4863. work->pool->solved++;
  4864. found_blocks++;
  4865. work->mandatory = true;
  4866. applog(LOG_NOTICE, "Found block for pool %d!", work->pool->pool_no);
  4867. }
  4868. }
  4869. static void submit_discard_share2(const char *reason, struct work *work)
  4870. {
  4871. struct cgpu_info *cgpu = get_thr_cgpu(work->thr_id);
  4872. sharelog(reason, work);
  4873. mutex_lock(&stats_lock);
  4874. ++total_stale;
  4875. ++cgpu->stale;
  4876. ++(work->pool->stale_shares);
  4877. total_diff_stale += work->work_difficulty;
  4878. cgpu->diff_stale += work->work_difficulty;
  4879. work->pool->diff_stale += work->work_difficulty;
  4880. mutex_unlock(&stats_lock);
  4881. }
  4882. static void submit_discard_share(struct work *work)
  4883. {
  4884. submit_discard_share2("discard", work);
  4885. }
  4886. struct submit_work_state {
  4887. struct work *work;
  4888. bool resubmit;
  4889. struct curl_ent *ce;
  4890. int failures;
  4891. struct timeval tv_staleexpire;
  4892. char *s;
  4893. struct timeval tv_submit;
  4894. struct submit_work_state *next;
  4895. };
  4896. static int my_curl_timer_set(__maybe_unused CURLM *curlm, long timeout_ms, void *userp)
  4897. {
  4898. long *p_timeout_us = userp;
  4899. const long max_ms = LONG_MAX / 1000;
  4900. if (max_ms < timeout_ms)
  4901. timeout_ms = max_ms;
  4902. *p_timeout_us = timeout_ms * 1000;
  4903. return 0;
  4904. }
  4905. static void sws_has_ce(struct submit_work_state *sws)
  4906. {
  4907. struct pool *pool = sws->work->pool;
  4908. sws->s = submit_upstream_work_request(sws->work);
  4909. cgtime(&sws->tv_submit);
  4910. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4911. }
  4912. static struct submit_work_state *begin_submission(struct work *work)
  4913. {
  4914. struct pool *pool;
  4915. struct submit_work_state *sws = NULL;
  4916. pool = work->pool;
  4917. sws = malloc(sizeof(*sws));
  4918. *sws = (struct submit_work_state){
  4919. .work = work,
  4920. };
  4921. rebuild_hash(work);
  4922. if (stale_work(work, true)) {
  4923. work->stale = true;
  4924. if (opt_submit_stale)
  4925. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as user requested", pool->pool_no);
  4926. else if (pool->submit_old)
  4927. applog(LOG_NOTICE, "Pool %d stale share detected, submitting as pool requested", pool->pool_no);
  4928. else {
  4929. applog(LOG_NOTICE, "Pool %d stale share detected, discarding", pool->pool_no);
  4930. submit_discard_share(work);
  4931. goto out;
  4932. }
  4933. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4934. }
  4935. if (work->stratum) {
  4936. char *s;
  4937. s = malloc(1024);
  4938. sws->s = s;
  4939. } else {
  4940. /* submit solution to bitcoin via JSON-RPC */
  4941. sws->ce = pop_curl_entry2(pool, false);
  4942. if (sws->ce) {
  4943. sws_has_ce(sws);
  4944. } else {
  4945. sws->next = pool->sws_waiting_on_curl;
  4946. pool->sws_waiting_on_curl = sws;
  4947. if (sws->next)
  4948. applog(LOG_DEBUG, "submit_thread queuing submission");
  4949. else
  4950. applog(LOG_WARNING, "submit_thread queuing submissions (see --submit-threads)");
  4951. }
  4952. }
  4953. return sws;
  4954. out:
  4955. free(sws);
  4956. return NULL;
  4957. }
  4958. static bool retry_submission(struct submit_work_state *sws)
  4959. {
  4960. struct work *work = sws->work;
  4961. struct pool *pool = work->pool;
  4962. sws->resubmit = true;
  4963. if ((!work->stale) && stale_work(work, true)) {
  4964. work->stale = true;
  4965. if (opt_submit_stale)
  4966. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as user requested", pool->pool_no);
  4967. else if (pool->submit_old)
  4968. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, will retry as pool requested", pool->pool_no);
  4969. else {
  4970. applog(LOG_NOTICE, "Pool %d share became stale during submission failure, discarding", pool->pool_no);
  4971. submit_discard_share(work);
  4972. return false;
  4973. }
  4974. timer_set_delay_from_now(&sws->tv_staleexpire, 300000000);
  4975. }
  4976. if (unlikely((opt_retries >= 0) && (++sws->failures > opt_retries))) {
  4977. applog(LOG_ERR, "Pool %d failed %d submission retries, discarding", pool->pool_no, opt_retries);
  4978. submit_discard_share(work);
  4979. return false;
  4980. }
  4981. else if (work->stale) {
  4982. if (unlikely(opt_retries < 0 && timer_passed(&sws->tv_staleexpire, NULL)))
  4983. {
  4984. applog(LOG_NOTICE, "Pool %d stale share failed to submit for 5 minutes, discarding", pool->pool_no);
  4985. submit_discard_share(work);
  4986. return false;
  4987. }
  4988. }
  4989. /* pause, then restart work-request loop */
  4990. applog(LOG_INFO, "json_rpc_call failed on submit_work, retrying");
  4991. cgtime(&sws->tv_submit);
  4992. json_rpc_call_async(sws->ce->curl, pool->rpc_url, pool->rpc_userpass, sws->s, false, pool, true, sws);
  4993. return true;
  4994. }
  4995. static void free_sws(struct submit_work_state *sws)
  4996. {
  4997. free(sws->s);
  4998. free_work(sws->work);
  4999. free(sws);
  5000. }
  5001. static void *submit_work_thread(__maybe_unused void *userdata)
  5002. {
  5003. int wip = 0;
  5004. CURLM *curlm;
  5005. long curlm_timeout_us = -1;
  5006. struct timeval curlm_timer;
  5007. struct submit_work_state *sws, **swsp;
  5008. struct submit_work_state *write_sws = NULL;
  5009. unsigned tsreduce = 0;
  5010. pthread_detach(pthread_self());
  5011. RenameThread("submit_work");
  5012. applog(LOG_DEBUG, "Creating extra submit work thread");
  5013. curlm = curl_multi_init();
  5014. curlm_timeout_us = -1;
  5015. curl_multi_setopt(curlm, CURLMOPT_TIMERDATA, &curlm_timeout_us);
  5016. curl_multi_setopt(curlm, CURLMOPT_TIMERFUNCTION, my_curl_timer_set);
  5017. fd_set rfds, wfds, efds;
  5018. int maxfd;
  5019. struct timeval tv_timeout, tv_now;
  5020. int n;
  5021. CURLMsg *cm;
  5022. FD_ZERO(&rfds);
  5023. while (1) {
  5024. mutex_lock(&submitting_lock);
  5025. total_submitting -= tsreduce;
  5026. tsreduce = 0;
  5027. if (FD_ISSET(submit_waiting_notifier[0], &rfds)) {
  5028. notifier_read(submit_waiting_notifier);
  5029. }
  5030. // Receive any new submissions
  5031. while (submit_waiting) {
  5032. struct work *work = submit_waiting;
  5033. DL_DELETE(submit_waiting, work);
  5034. if ( (sws = begin_submission(work)) ) {
  5035. if (sws->ce)
  5036. curl_multi_add_handle(curlm, sws->ce->curl);
  5037. else if (sws->s) {
  5038. sws->next = write_sws;
  5039. write_sws = sws;
  5040. }
  5041. ++wip;
  5042. }
  5043. else {
  5044. --total_submitting;
  5045. free_work(work);
  5046. }
  5047. }
  5048. if (unlikely(shutting_down && !wip))
  5049. break;
  5050. mutex_unlock(&submitting_lock);
  5051. FD_ZERO(&rfds);
  5052. FD_ZERO(&wfds);
  5053. FD_ZERO(&efds);
  5054. tv_timeout.tv_sec = -1;
  5055. // Setup cURL with select
  5056. // Need to call perform to ensure the timeout gets updated
  5057. curl_multi_perform(curlm, &n);
  5058. curl_multi_fdset(curlm, &rfds, &wfds, &efds, &maxfd);
  5059. if (curlm_timeout_us >= 0)
  5060. {
  5061. timer_set_delay_from_now(&curlm_timer, curlm_timeout_us);
  5062. reduce_timeout_to(&tv_timeout, &curlm_timer);
  5063. }
  5064. // Setup waiting stratum submissions with select
  5065. for (sws = write_sws; sws; sws = sws->next)
  5066. {
  5067. struct pool *pool = sws->work->pool;
  5068. int fd = pool->sock;
  5069. if (fd == INVSOCK || (!pool->stratum_init) || !pool->stratum_notify)
  5070. continue;
  5071. FD_SET(fd, &wfds);
  5072. set_maxfd(&maxfd, fd);
  5073. }
  5074. // Setup "submit waiting" notifier with select
  5075. FD_SET(submit_waiting_notifier[0], &rfds);
  5076. set_maxfd(&maxfd, submit_waiting_notifier[0]);
  5077. // Wait for something interesting to happen :)
  5078. cgtime(&tv_now);
  5079. if (select(maxfd+1, &rfds, &wfds, &efds, select_timeout(&tv_timeout, &tv_now)) < 0) {
  5080. FD_ZERO(&rfds);
  5081. continue;
  5082. }
  5083. // Handle any stratum ready-to-write results
  5084. for (swsp = &write_sws; (sws = *swsp); ) {
  5085. struct work *work = sws->work;
  5086. struct pool *pool = work->pool;
  5087. int fd = pool->sock;
  5088. bool sessionid_match;
  5089. if (fd == INVSOCK || (!pool->stratum_init) || (!pool->stratum_notify) || !FD_ISSET(fd, &wfds)) {
  5090. next_write_sws:
  5091. // TODO: Check if stale, possibly discard etc
  5092. swsp = &sws->next;
  5093. continue;
  5094. }
  5095. cg_rlock(&pool->data_lock);
  5096. // 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
  5097. // NOTE: Worst case scenario for a false positive: the pool rejects it as H-not-zero
  5098. sessionid_match = (!pool->nonce1) || !strcmp(work->nonce1, pool->nonce1);
  5099. cg_runlock(&pool->data_lock);
  5100. if (!sessionid_match)
  5101. {
  5102. applog(LOG_DEBUG, "No matching session id for resubmitting stratum share");
  5103. submit_discard_share2("disconnect", work);
  5104. ++tsreduce;
  5105. next_write_sws_del:
  5106. // Clear the fd from wfds, to avoid potentially blocking on other submissions to the same socket
  5107. FD_CLR(fd, &wfds);
  5108. // Delete sws for this submission, since we're done with it
  5109. *swsp = sws->next;
  5110. free_sws(sws);
  5111. --wip;
  5112. continue;
  5113. }
  5114. char *s = sws->s;
  5115. struct stratum_share *sshare = calloc(sizeof(struct stratum_share), 1);
  5116. int sshare_id;
  5117. uint32_t nonce;
  5118. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  5119. char noncehex[9];
  5120. char ntimehex[9];
  5121. sshare->work = copy_work(work);
  5122. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  5123. nonce = *((uint32_t *)(work->data + 76));
  5124. bin2hex(noncehex, (const unsigned char *)&nonce, 4);
  5125. bin2hex(ntimehex, (void *)&work->data[68], 4);
  5126. mutex_lock(&sshare_lock);
  5127. /* Give the stratum share a unique id */
  5128. sshare_id =
  5129. sshare->id = swork_id++;
  5130. HASH_ADD_INT(stratum_shares, id, sshare);
  5131. snprintf(s, 1024, "{\"params\": [\"%s\", \"%s\", \"%s\", \"%s\", \"%s\"], \"id\": %d, \"method\": \"mining.submit\"}",
  5132. pool->rpc_user, work->job_id, nonce2hex, ntimehex, noncehex, sshare->id);
  5133. mutex_unlock(&sshare_lock);
  5134. applog(LOG_DEBUG, "DBG: sending %s submit RPC call: %s", pool->stratum_url, s);
  5135. if (likely(stratum_send(pool, s, strlen(s)))) {
  5136. if (pool_tclear(pool, &pool->submit_fail))
  5137. applog(LOG_WARNING, "Pool %d communication resumed, submitting work", pool->pool_no);
  5138. applog(LOG_DEBUG, "Successfully submitted, adding to stratum_shares db");
  5139. goto next_write_sws_del;
  5140. } else if (!pool_tset(pool, &pool->submit_fail)) {
  5141. // Undo stuff
  5142. mutex_lock(&sshare_lock);
  5143. // NOTE: Need to find it again in case something else has consumed it already (like the stratum-disconnect resubmitter...)
  5144. HASH_FIND_INT(stratum_shares, &sshare_id, sshare);
  5145. if (sshare)
  5146. HASH_DEL(stratum_shares, sshare);
  5147. mutex_unlock(&sshare_lock);
  5148. if (sshare)
  5149. {
  5150. free_work(sshare->work);
  5151. free(sshare);
  5152. }
  5153. applog(LOG_WARNING, "Pool %d stratum share submission failure", pool->pool_no);
  5154. total_ro++;
  5155. pool->remotefail_occasions++;
  5156. if (!sshare)
  5157. goto next_write_sws_del;
  5158. goto next_write_sws;
  5159. }
  5160. }
  5161. // Handle any cURL activities
  5162. curl_multi_perform(curlm, &n);
  5163. while( (cm = curl_multi_info_read(curlm, &n)) ) {
  5164. if (cm->msg == CURLMSG_DONE)
  5165. {
  5166. bool finished;
  5167. json_t *val = json_rpc_call_completed(cm->easy_handle, cm->data.result, false, NULL, &sws);
  5168. curl_multi_remove_handle(curlm, cm->easy_handle);
  5169. finished = submit_upstream_work_completed(sws->work, sws->resubmit, &sws->tv_submit, val);
  5170. if (!finished) {
  5171. if (retry_submission(sws))
  5172. curl_multi_add_handle(curlm, sws->ce->curl);
  5173. else
  5174. finished = true;
  5175. }
  5176. if (finished) {
  5177. --wip;
  5178. ++tsreduce;
  5179. struct pool *pool = sws->work->pool;
  5180. if (pool->sws_waiting_on_curl) {
  5181. pool->sws_waiting_on_curl->ce = sws->ce;
  5182. sws_has_ce(pool->sws_waiting_on_curl);
  5183. pool->sws_waiting_on_curl = pool->sws_waiting_on_curl->next;
  5184. curl_multi_add_handle(curlm, sws->ce->curl);
  5185. } else {
  5186. push_curl_entry(sws->ce, sws->work->pool);
  5187. }
  5188. free_sws(sws);
  5189. }
  5190. }
  5191. }
  5192. }
  5193. assert(!write_sws);
  5194. mutex_unlock(&submitting_lock);
  5195. curl_multi_cleanup(curlm);
  5196. applog(LOG_DEBUG, "submit_work thread exiting");
  5197. return NULL;
  5198. }
  5199. /* Find the pool that currently has the highest priority */
  5200. static struct pool *priority_pool(int choice)
  5201. {
  5202. struct pool *ret = NULL;
  5203. int i;
  5204. for (i = 0; i < total_pools; i++) {
  5205. struct pool *pool = pools[i];
  5206. if (pool->prio == choice) {
  5207. ret = pool;
  5208. break;
  5209. }
  5210. }
  5211. if (unlikely(!ret)) {
  5212. applog(LOG_ERR, "WTF No pool %d found!", choice);
  5213. return pools[choice];
  5214. }
  5215. return ret;
  5216. }
  5217. int prioritize_pools(char *param, int *pid)
  5218. {
  5219. char *ptr, *next;
  5220. int i, pr, prio = 0;
  5221. if (total_pools == 0) {
  5222. return MSG_NOPOOL;
  5223. }
  5224. if (param == NULL || *param == '\0') {
  5225. return MSG_MISPID;
  5226. }
  5227. bool pools_changed[total_pools];
  5228. int new_prio[total_pools];
  5229. for (i = 0; i < total_pools; ++i)
  5230. pools_changed[i] = false;
  5231. next = param;
  5232. while (next && *next) {
  5233. ptr = next;
  5234. next = strchr(ptr, ',');
  5235. if (next)
  5236. *(next++) = '\0';
  5237. i = atoi(ptr);
  5238. if (i < 0 || i >= total_pools) {
  5239. *pid = i;
  5240. return MSG_INVPID;
  5241. }
  5242. if (pools_changed[i]) {
  5243. *pid = i;
  5244. return MSG_DUPPID;
  5245. }
  5246. pools_changed[i] = true;
  5247. new_prio[i] = prio++;
  5248. }
  5249. // Only change them if no errors
  5250. for (i = 0; i < total_pools; i++) {
  5251. if (pools_changed[i])
  5252. pools[i]->prio = new_prio[i];
  5253. }
  5254. // In priority order, cycle through the unchanged pools and append them
  5255. for (pr = 0; pr < total_pools; pr++)
  5256. for (i = 0; i < total_pools; i++) {
  5257. if (!pools_changed[i] && pools[i]->prio == pr) {
  5258. pools[i]->prio = prio++;
  5259. pools_changed[i] = true;
  5260. break;
  5261. }
  5262. }
  5263. if (current_pool()->prio)
  5264. switch_pools(NULL);
  5265. return MSG_POOLPRIO;
  5266. }
  5267. void validate_pool_priorities(void)
  5268. {
  5269. // TODO: this should probably do some sort of logging
  5270. int i, j;
  5271. bool used[total_pools];
  5272. bool valid[total_pools];
  5273. for (i = 0; i < total_pools; i++)
  5274. used[i] = valid[i] = false;
  5275. for (i = 0; i < total_pools; i++) {
  5276. if (pools[i]->prio >=0 && pools[i]->prio < total_pools) {
  5277. if (!used[pools[i]->prio]) {
  5278. valid[i] = true;
  5279. used[pools[i]->prio] = true;
  5280. }
  5281. }
  5282. }
  5283. for (i = 0; i < total_pools; i++) {
  5284. if (!valid[i]) {
  5285. for (j = 0; j < total_pools; j++) {
  5286. if (!used[j]) {
  5287. applog(LOG_WARNING, "Pool %d priority changed from %d to %d", i, pools[i]->prio, j);
  5288. pools[i]->prio = j;
  5289. used[j] = true;
  5290. break;
  5291. }
  5292. }
  5293. }
  5294. }
  5295. }
  5296. static void clear_pool_work(struct pool *pool);
  5297. /* Specifies whether we can switch to this pool or not. */
  5298. static bool pool_unusable(struct pool *pool)
  5299. {
  5300. if (pool->idle)
  5301. return true;
  5302. if (pool->enabled != POOL_ENABLED)
  5303. return true;
  5304. return false;
  5305. }
  5306. void switch_pools(struct pool *selected)
  5307. {
  5308. struct pool *pool, *last_pool;
  5309. int i, pool_no, next_pool;
  5310. cg_wlock(&control_lock);
  5311. last_pool = currentpool;
  5312. pool_no = currentpool->pool_no;
  5313. /* Switch selected to pool number 0 and move the rest down */
  5314. if (selected) {
  5315. if (selected->prio != 0) {
  5316. for (i = 0; i < total_pools; i++) {
  5317. pool = pools[i];
  5318. if (pool->prio < selected->prio)
  5319. pool->prio++;
  5320. }
  5321. selected->prio = 0;
  5322. }
  5323. }
  5324. switch (pool_strategy) {
  5325. /* All of these set to the master pool */
  5326. case POOL_BALANCE:
  5327. case POOL_FAILOVER:
  5328. case POOL_LOADBALANCE:
  5329. for (i = 0; i < total_pools; i++) {
  5330. pool = priority_pool(i);
  5331. if (pool_unusable(pool))
  5332. continue;
  5333. pool_no = pool->pool_no;
  5334. break;
  5335. }
  5336. break;
  5337. /* Both of these simply increment and cycle */
  5338. case POOL_ROUNDROBIN:
  5339. case POOL_ROTATE:
  5340. if (selected && !selected->idle) {
  5341. pool_no = selected->pool_no;
  5342. break;
  5343. }
  5344. next_pool = pool_no;
  5345. /* Select the next alive pool */
  5346. for (i = 1; i < total_pools; i++) {
  5347. next_pool++;
  5348. if (next_pool >= total_pools)
  5349. next_pool = 0;
  5350. pool = pools[next_pool];
  5351. if (pool_unusable(pool))
  5352. continue;
  5353. pool_no = next_pool;
  5354. break;
  5355. }
  5356. break;
  5357. default:
  5358. break;
  5359. }
  5360. currentpool = pools[pool_no];
  5361. pool = currentpool;
  5362. cg_wunlock(&control_lock);
  5363. /* Set the lagging flag to avoid pool not providing work fast enough
  5364. * messages in failover only mode since we have to get all fresh work
  5365. * as in restart_threads */
  5366. if (opt_fail_only)
  5367. pool_tset(pool, &pool->lagging);
  5368. if (pool != last_pool)
  5369. {
  5370. pool->block_id = 0;
  5371. if (pool_strategy != POOL_LOADBALANCE && pool_strategy != POOL_BALANCE) {
  5372. applog(LOG_WARNING, "Switching to pool %d %s", pool->pool_no, pool->rpc_url);
  5373. if (pool_localgen(pool) || opt_fail_only)
  5374. clear_pool_work(last_pool);
  5375. }
  5376. }
  5377. mutex_lock(&lp_lock);
  5378. pthread_cond_broadcast(&lp_cond);
  5379. mutex_unlock(&lp_lock);
  5380. }
  5381. static void discard_work(struct work *work)
  5382. {
  5383. if (!work->clone && !work->rolls && !work->mined) {
  5384. if (work->pool) {
  5385. work->pool->discarded_work++;
  5386. work->pool->quota_used--;
  5387. work->pool->works--;
  5388. }
  5389. total_discarded++;
  5390. applog(LOG_DEBUG, "Discarded work");
  5391. } else
  5392. applog(LOG_DEBUG, "Discarded cloned or rolled work");
  5393. free_work(work);
  5394. }
  5395. static void wake_gws(void)
  5396. {
  5397. mutex_lock(stgd_lock);
  5398. pthread_cond_signal(&gws_cond);
  5399. mutex_unlock(stgd_lock);
  5400. }
  5401. static void discard_stale(void)
  5402. {
  5403. struct work *work, *tmp;
  5404. int stale = 0;
  5405. mutex_lock(stgd_lock);
  5406. HASH_ITER(hh, staged_work, work, tmp) {
  5407. if (stale_work(work, false)) {
  5408. HASH_DEL(staged_work, work);
  5409. discard_work(work);
  5410. stale++;
  5411. staged_full = false;
  5412. }
  5413. }
  5414. pthread_cond_signal(&gws_cond);
  5415. mutex_unlock(stgd_lock);
  5416. if (stale)
  5417. applog(LOG_DEBUG, "Discarded %d stales that didn't match current hash", stale);
  5418. }
  5419. bool stale_work_future(struct work *work, bool share, unsigned long ustime)
  5420. {
  5421. bool rv;
  5422. struct timeval tv, orig;
  5423. ldiv_t d;
  5424. d = ldiv(ustime, 1000000);
  5425. tv = (struct timeval){
  5426. .tv_sec = d.quot,
  5427. .tv_usec = d.rem,
  5428. };
  5429. orig = work->tv_staged;
  5430. timersub(&orig, &tv, &work->tv_staged);
  5431. rv = stale_work(work, share);
  5432. work->tv_staged = orig;
  5433. return rv;
  5434. }
  5435. static
  5436. void pool_update_work_restart_time(struct pool * const pool)
  5437. {
  5438. pool->work_restart_time = time(NULL);
  5439. get_timestamp(pool->work_restart_timestamp, sizeof(pool->work_restart_timestamp), pool->work_restart_time);
  5440. }
  5441. static void restart_threads(void)
  5442. {
  5443. struct pool *cp = current_pool();
  5444. int i;
  5445. struct thr_info *thr;
  5446. /* Artificially set the lagging flag to avoid pool not providing work
  5447. * fast enough messages after every long poll */
  5448. pool_tset(cp, &cp->lagging);
  5449. /* Discard staged work that is now stale */
  5450. discard_stale();
  5451. rd_lock(&mining_thr_lock);
  5452. for (i = 0; i < mining_threads; i++)
  5453. {
  5454. thr = mining_thr[i];
  5455. thr->work_restart = true;
  5456. }
  5457. for (i = 0; i < mining_threads; i++)
  5458. {
  5459. thr = mining_thr[i];
  5460. notifier_wake(thr->work_restart_notifier);
  5461. }
  5462. rd_unlock(&mining_thr_lock);
  5463. }
  5464. static
  5465. void blkhashstr(char *rv, const unsigned char *hash)
  5466. {
  5467. unsigned char hash_swap[32];
  5468. swap256(hash_swap, hash);
  5469. swap32tole(hash_swap, hash_swap, 32 / 4);
  5470. bin2hex(rv, hash_swap, 32);
  5471. }
  5472. static void set_curblock(char *hexstr, unsigned char *hash)
  5473. {
  5474. unsigned char hash_swap[32];
  5475. current_block_id = ((uint32_t*)hash)[0];
  5476. strcpy(current_block, hexstr);
  5477. swap256(hash_swap, hash);
  5478. swap32tole(hash_swap, hash_swap, 32 / 4);
  5479. cg_wlock(&ch_lock);
  5480. block_time = time(NULL);
  5481. __update_block_title(hash_swap);
  5482. free(current_fullhash);
  5483. current_fullhash = malloc(65);
  5484. bin2hex(current_fullhash, hash_swap, 32);
  5485. get_timestamp(blocktime, sizeof(blocktime), block_time);
  5486. cg_wunlock(&ch_lock);
  5487. applog(LOG_INFO, "New block: %s diff %s (%s)", current_hash, block_diff, net_hashrate);
  5488. }
  5489. /* Search to see if this string is from a block that has been seen before */
  5490. static bool block_exists(char *hexstr)
  5491. {
  5492. struct block *s;
  5493. rd_lock(&blk_lock);
  5494. HASH_FIND_STR(blocks, hexstr, s);
  5495. rd_unlock(&blk_lock);
  5496. if (s)
  5497. return true;
  5498. return false;
  5499. }
  5500. /* Tests if this work is from a block that has been seen before */
  5501. static inline bool from_existing_block(struct work *work)
  5502. {
  5503. char hexstr[37];
  5504. bool ret;
  5505. bin2hex(hexstr, work->data + 8, 18);
  5506. ret = block_exists(hexstr);
  5507. return ret;
  5508. }
  5509. static int block_sort(struct block *blocka, struct block *blockb)
  5510. {
  5511. return blocka->block_no - blockb->block_no;
  5512. }
  5513. static void set_blockdiff(const struct work *work)
  5514. {
  5515. unsigned char target[32];
  5516. double diff;
  5517. uint64_t diff64;
  5518. real_block_target(target, work->data);
  5519. diff = target_diff(target);
  5520. diff64 = diff;
  5521. suffix_string(diff64, block_diff, sizeof(block_diff), 0);
  5522. format_unit2(net_hashrate, sizeof(net_hashrate),
  5523. true, "h/s", H2B_SHORT, diff * 7158278, -1);
  5524. if (unlikely(current_diff != diff))
  5525. applog(LOG_NOTICE, "Network difficulty changed to %s (%s)", block_diff, net_hashrate);
  5526. current_diff = diff;
  5527. }
  5528. static bool test_work_current(struct work *work)
  5529. {
  5530. bool ret = true;
  5531. char hexstr[65];
  5532. if (work->mandatory)
  5533. return ret;
  5534. uint32_t block_id = ((uint32_t*)(work->data))[1];
  5535. /* Hack to work around dud work sneaking into test */
  5536. bin2hex(hexstr, work->data + 8, 18);
  5537. if (!strncmp(hexstr, "000000000000000000000000000000000000", 36))
  5538. goto out_free;
  5539. struct pool * const pool = work->pool;
  5540. /* Search to see if this block exists yet and if not, consider it a
  5541. * new block and set the current block details to this one */
  5542. if (!block_exists(hexstr))
  5543. {
  5544. struct block *s = calloc(sizeof(struct block), 1);
  5545. int deleted_block = 0;
  5546. ret = false;
  5547. if (unlikely(!s))
  5548. quit (1, "test_work_current OOM");
  5549. strcpy(s->hash, hexstr);
  5550. s->block_no = new_blocks++;
  5551. wr_lock(&blk_lock);
  5552. /* Only keep the last hour's worth of blocks in memory since
  5553. * work from blocks before this is virtually impossible and we
  5554. * want to prevent memory usage from continually rising */
  5555. if (HASH_COUNT(blocks) > 6)
  5556. {
  5557. struct block *oldblock;
  5558. HASH_SORT(blocks, block_sort);
  5559. oldblock = blocks;
  5560. deleted_block = oldblock->block_no;
  5561. HASH_DEL(blocks, oldblock);
  5562. free(oldblock);
  5563. }
  5564. HASH_ADD_STR(blocks, hash, s);
  5565. set_blockdiff(work);
  5566. wr_unlock(&blk_lock);
  5567. pool->block_id = block_id;
  5568. pool_update_work_restart_time(pool);
  5569. if (deleted_block)
  5570. applog(LOG_DEBUG, "Deleted block %d from database", deleted_block);
  5571. #if BLKMAKER_VERSION > 1
  5572. template_nonce = 0;
  5573. #endif
  5574. set_curblock(hexstr, &work->data[4]);
  5575. if (unlikely(new_blocks == 1))
  5576. goto out_free;
  5577. if (!work->stratum)
  5578. {
  5579. if (work->longpoll)
  5580. {
  5581. applog(LOG_NOTICE, "Longpoll from pool %d detected new block",
  5582. pool->pool_no);
  5583. }
  5584. else
  5585. if (have_longpoll)
  5586. applog(LOG_NOTICE, "New block detected on network before longpoll");
  5587. else
  5588. applog(LOG_NOTICE, "New block detected on network");
  5589. }
  5590. restart_threads();
  5591. }
  5592. else
  5593. {
  5594. bool restart = false;
  5595. if (unlikely(pool->block_id != block_id))
  5596. {
  5597. bool was_active = pool->block_id != 0;
  5598. pool->block_id = block_id;
  5599. pool_update_work_restart_time(pool);
  5600. if (!work->longpoll)
  5601. update_last_work(work);
  5602. if (was_active)
  5603. {
  5604. // Pool actively changed block
  5605. if (pool == current_pool())
  5606. restart = true;
  5607. if (block_id == current_block_id)
  5608. {
  5609. // Caught up, only announce if this pool is the one in use
  5610. if (restart)
  5611. applog(LOG_NOTICE, "%s %d caught up to new block",
  5612. work->longpoll ? "Longpoll from pool" : "Pool",
  5613. pool->pool_no);
  5614. }
  5615. else
  5616. {
  5617. // Switched to a block we know, but not the latest... why?
  5618. // This might detect pools trying to double-spend or 51%,
  5619. // but let's not make any accusations until it's had time
  5620. // in the real world.
  5621. blkhashstr(hexstr, &work->data[4]);
  5622. applog(LOG_WARNING, "%s %d is issuing work for an old block: %s",
  5623. work->longpoll ? "Longpoll from pool" : "Pool",
  5624. pool->pool_no,
  5625. hexstr);
  5626. }
  5627. }
  5628. }
  5629. if (work->longpoll)
  5630. {
  5631. struct pool * const cp = current_pool();
  5632. ++pool->work_restart_id;
  5633. update_last_work(work);
  5634. pool_update_work_restart_time(pool);
  5635. applog(
  5636. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  5637. "Longpoll from pool %d requested work update",
  5638. pool->pool_no);
  5639. if ((!restart) && pool == cp)
  5640. restart = true;
  5641. }
  5642. if (restart)
  5643. restart_threads();
  5644. }
  5645. work->longpoll = false;
  5646. out_free:
  5647. return ret;
  5648. }
  5649. static int tv_sort(struct work *worka, struct work *workb)
  5650. {
  5651. return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec;
  5652. }
  5653. static bool work_rollable(struct work *work)
  5654. {
  5655. return (!work->clone && work->rolltime);
  5656. }
  5657. static bool hash_push(struct work *work)
  5658. {
  5659. bool rc = true;
  5660. mutex_lock(stgd_lock);
  5661. if (work_rollable(work))
  5662. staged_rollable++;
  5663. if (likely(!getq->frozen)) {
  5664. HASH_ADD_INT(staged_work, id, work);
  5665. HASH_SORT(staged_work, tv_sort);
  5666. } else
  5667. rc = false;
  5668. pthread_cond_broadcast(&getq->cond);
  5669. mutex_unlock(stgd_lock);
  5670. return rc;
  5671. }
  5672. static void stage_work(struct work *work)
  5673. {
  5674. applog(LOG_DEBUG, "Pushing work %d from pool %d to hash queue",
  5675. work->id, work->pool->pool_no);
  5676. work->work_restart_id = work->pool->work_restart_id;
  5677. work->pool->last_work_time = time(NULL);
  5678. cgtime(&work->pool->tv_last_work_time);
  5679. test_work_current(work);
  5680. work->pool->works++;
  5681. hash_push(work);
  5682. }
  5683. #ifdef HAVE_CURSES
  5684. int curses_int(const char *query)
  5685. {
  5686. int ret;
  5687. char *cvar;
  5688. cvar = curses_input(query);
  5689. if (unlikely(!cvar))
  5690. return -1;
  5691. ret = atoi(cvar);
  5692. free(cvar);
  5693. return ret;
  5694. }
  5695. #endif
  5696. #ifdef HAVE_CURSES
  5697. static bool input_pool(bool live);
  5698. #endif
  5699. #ifdef HAVE_CURSES
  5700. static void display_pool_summary(struct pool *pool)
  5701. {
  5702. double efficiency = 0.0;
  5703. char xfer[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+4+1], bw[ALLOC_H2B_NOUNIT+ALLOC_H2B_SPACED+6+1];
  5704. int pool_secs;
  5705. if (curses_active_locked()) {
  5706. wlog("Pool: %s\n", pool->rpc_url);
  5707. if (pool->solved)
  5708. wlog("SOLVED %d BLOCK%s!\n", pool->solved, pool->solved > 1 ? "S" : "");
  5709. if (!pool->has_stratum)
  5710. wlog("%s own long-poll support\n", pool->lp_url ? "Has" : "Does not have");
  5711. wlog(" Queued work requests: %d\n", pool->getwork_requested);
  5712. wlog(" Share submissions: %d\n", pool->accepted + pool->rejected);
  5713. wlog(" Accepted shares: %d\n", pool->accepted);
  5714. wlog(" Rejected shares: %d + %d stale (%.2f%%)\n",
  5715. pool->rejected, pool->stale_shares,
  5716. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  5717. );
  5718. wlog(" Accepted difficulty shares: %1.f\n", pool->diff_accepted);
  5719. wlog(" Rejected difficulty shares: %1.f\n", pool->diff_rejected);
  5720. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  5721. wlog(" Network transfer: %s (%s)\n",
  5722. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  5723. (float)pool->cgminer_pool_stats.net_bytes_received,
  5724. (float)pool->cgminer_pool_stats.net_bytes_sent),
  5725. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  5726. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  5727. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  5728. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  5729. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  5730. wlog(" Efficiency (accepted * difficulty / 2 KB): %.2f\n", efficiency);
  5731. wlog(" Items worked on: %d\n", pool->works);
  5732. wlog(" Stale submissions discarded due to new blocks: %d\n", pool->stale_shares);
  5733. wlog(" Unable to get work from server occasions: %d\n", pool->getfail_occasions);
  5734. wlog(" Submitting work remotely delay occasions: %d\n\n", pool->remotefail_occasions);
  5735. unlock_curses();
  5736. }
  5737. }
  5738. #endif
  5739. /* We can't remove the memory used for this struct pool because there may
  5740. * still be work referencing it. We just remove it from the pools list */
  5741. void remove_pool(struct pool *pool)
  5742. {
  5743. int i, last_pool = total_pools - 1;
  5744. struct pool *other;
  5745. /* Boost priority of any lower prio than this one */
  5746. for (i = 0; i < total_pools; i++) {
  5747. other = pools[i];
  5748. if (other->prio > pool->prio)
  5749. other->prio--;
  5750. }
  5751. if (pool->pool_no < last_pool) {
  5752. /* Swap the last pool for this one */
  5753. (pools[last_pool])->pool_no = pool->pool_no;
  5754. pools[pool->pool_no] = pools[last_pool];
  5755. }
  5756. /* Give it an invalid number */
  5757. pool->pool_no = total_pools;
  5758. pool->removed = true;
  5759. pool->has_stratum = false;
  5760. total_pools--;
  5761. }
  5762. /* add a mutex if this needs to be thread safe in the future */
  5763. static struct JE {
  5764. char *buf;
  5765. struct JE *next;
  5766. } *jedata = NULL;
  5767. static void json_escape_free()
  5768. {
  5769. struct JE *jeptr = jedata;
  5770. struct JE *jenext;
  5771. jedata = NULL;
  5772. while (jeptr) {
  5773. jenext = jeptr->next;
  5774. free(jeptr->buf);
  5775. free(jeptr);
  5776. jeptr = jenext;
  5777. }
  5778. }
  5779. static
  5780. char *json_escape(const char *str)
  5781. {
  5782. struct JE *jeptr;
  5783. char *buf, *ptr;
  5784. /* 2x is the max, may as well just allocate that */
  5785. ptr = buf = malloc(strlen(str) * 2 + 1);
  5786. jeptr = malloc(sizeof(*jeptr));
  5787. jeptr->buf = buf;
  5788. jeptr->next = jedata;
  5789. jedata = jeptr;
  5790. while (*str) {
  5791. if (*str == '\\' || *str == '"')
  5792. *(ptr++) = '\\';
  5793. *(ptr++) = *(str++);
  5794. }
  5795. *ptr = '\0';
  5796. return buf;
  5797. }
  5798. static
  5799. void _write_config_string_elist(FILE *fcfg, const char *configname, struct string_elist * const elist)
  5800. {
  5801. if (!elist)
  5802. return;
  5803. static struct string_elist *entry;
  5804. fprintf(fcfg, ",\n\"%s\" : [", configname);
  5805. bool first = true;
  5806. DL_FOREACH(elist, entry)
  5807. {
  5808. const char * const s = entry->string;
  5809. fprintf(fcfg, "%s\n\t\"%s\"", first ? "" : ",", json_escape(s));
  5810. first = false;
  5811. }
  5812. fprintf(fcfg, "\n]");
  5813. }
  5814. void write_config(FILE *fcfg)
  5815. {
  5816. int i;
  5817. /* Write pool values */
  5818. fputs("{\n\"pools\" : [", fcfg);
  5819. for(i = 0; i < total_pools; i++) {
  5820. struct pool *pool = pools[i];
  5821. if (pool->quota != 1) {
  5822. fprintf(fcfg, "%s\n\t{\n\t\t\"quota\" : \"%d;%s\",", i > 0 ? "," : "",
  5823. pool->quota,
  5824. json_escape(pool->rpc_url));
  5825. } else {
  5826. fprintf(fcfg, "%s\n\t{\n\t\t\"url\" : \"%s\",", i > 0 ? "," : "",
  5827. json_escape(pool->rpc_url));
  5828. }
  5829. if (pool->rpc_proxy)
  5830. fprintf(fcfg, "\n\t\t\"pool-proxy\" : \"%s\",", json_escape(pool->rpc_proxy));
  5831. fprintf(fcfg, "\n\t\t\"user\" : \"%s\",", json_escape(pool->rpc_user));
  5832. fprintf(fcfg, "\n\t\t\"pass\" : \"%s\",", json_escape(pool->rpc_pass));
  5833. fprintf(fcfg, "\n\t\t\"pool-priority\" : \"%d\"", pool->prio);
  5834. if (pool->force_rollntime)
  5835. fprintf(fcfg, ",\n\t\t\"force-rollntime\" : %d", pool->force_rollntime);
  5836. fprintf(fcfg, "\n\t}");
  5837. }
  5838. fputs("\n]\n", fcfg);
  5839. #ifdef HAVE_OPENCL
  5840. write_config_opencl(fcfg);
  5841. #endif
  5842. #ifdef WANT_CPUMINE
  5843. fprintf(fcfg, ",\n\"algo\" : \"%s\"", algo_names[opt_algo]);
  5844. #endif
  5845. /* Simple bool and int options */
  5846. struct opt_table *opt;
  5847. for (opt = opt_config_table; opt->type != OPT_END; opt++) {
  5848. char *p, *name = strdup(opt->names);
  5849. for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) {
  5850. if (p[1] != '-')
  5851. continue;
  5852. if (opt->type & OPT_NOARG &&
  5853. ((void *)opt->cb == (void *)opt_set_bool || (void *)opt->cb == (void *)opt_set_invbool) &&
  5854. (*(bool *)opt->u.arg == ((void *)opt->cb == (void *)opt_set_bool)))
  5855. fprintf(fcfg, ",\n\"%s\" : true", p+2);
  5856. if (opt->type & OPT_HASARG &&
  5857. ((void *)opt->cb_arg == (void *)set_int_0_to_9999 ||
  5858. (void *)opt->cb_arg == (void *)set_int_1_to_65535 ||
  5859. (void *)opt->cb_arg == (void *)set_int_0_to_10 ||
  5860. (void *)opt->cb_arg == (void *)set_int_1_to_10) &&
  5861. opt->desc != opt_hidden &&
  5862. 0 <= *(int *)opt->u.arg)
  5863. fprintf(fcfg, ",\n\"%s\" : \"%d\"", p+2, *(int *)opt->u.arg);
  5864. }
  5865. }
  5866. /* Special case options */
  5867. if (request_target_str)
  5868. {
  5869. if (request_pdiff == (long)request_pdiff)
  5870. fprintf(fcfg, ",\n\"request-diff\" : %ld", (long)request_pdiff);
  5871. else
  5872. fprintf(fcfg, ",\n\"request-diff\" : %f", request_pdiff);
  5873. }
  5874. fprintf(fcfg, ",\n\"shares\" : %g", opt_shares);
  5875. if (pool_strategy == POOL_BALANCE)
  5876. fputs(",\n\"balance\" : true", fcfg);
  5877. if (pool_strategy == POOL_LOADBALANCE)
  5878. fputs(",\n\"load-balance\" : true", fcfg);
  5879. if (pool_strategy == POOL_ROUNDROBIN)
  5880. fputs(",\n\"round-robin\" : true", fcfg);
  5881. if (pool_strategy == POOL_ROTATE)
  5882. fprintf(fcfg, ",\n\"rotate\" : \"%d\"", opt_rotate_period);
  5883. #if defined(unix) || defined(__APPLE__)
  5884. if (opt_stderr_cmd && *opt_stderr_cmd)
  5885. fprintf(fcfg, ",\n\"monitor\" : \"%s\"", json_escape(opt_stderr_cmd));
  5886. #endif // defined(unix)
  5887. if (opt_kernel_path && *opt_kernel_path) {
  5888. char *kpath = strdup(opt_kernel_path);
  5889. if (kpath[strlen(kpath)-1] == '/')
  5890. kpath[strlen(kpath)-1] = 0;
  5891. fprintf(fcfg, ",\n\"kernel-path\" : \"%s\"", json_escape(kpath));
  5892. free(kpath);
  5893. }
  5894. if (schedstart.enable)
  5895. fprintf(fcfg, ",\n\"sched-time\" : \"%d:%d\"", schedstart.tm.tm_hour, schedstart.tm.tm_min);
  5896. if (schedstop.enable)
  5897. fprintf(fcfg, ",\n\"stop-time\" : \"%d:%d\"", schedstop.tm.tm_hour, schedstop.tm.tm_min);
  5898. if (opt_socks_proxy && *opt_socks_proxy)
  5899. fprintf(fcfg, ",\n\"socks-proxy\" : \"%s\"", json_escape(opt_socks_proxy));
  5900. _write_config_string_elist(fcfg, "scan", scan_devices);
  5901. #ifdef USE_LIBMICROHTTPD
  5902. if (httpsrv_port != -1)
  5903. fprintf(fcfg, ",\n\"http-port\" : %d", httpsrv_port);
  5904. #endif
  5905. #ifdef USE_LIBEVENT
  5906. if (stratumsrv_port != -1)
  5907. fprintf(fcfg, ",\n\"stratum-port\" : %d", stratumsrv_port);
  5908. #endif
  5909. _write_config_string_elist(fcfg, "device", opt_devices_enabled_list);
  5910. _write_config_string_elist(fcfg, "set-device", opt_set_device_list);
  5911. if (opt_api_allow)
  5912. fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow));
  5913. if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0)
  5914. fprintf(fcfg, ",\n\"api-mcast-addr\" : \"%s\"", json_escape(opt_api_mcast_addr));
  5915. if (strcmp(opt_api_mcast_code, API_MCAST_CODE) != 0)
  5916. fprintf(fcfg, ",\n\"api-mcast-code\" : \"%s\"", json_escape(opt_api_mcast_code));
  5917. if (*opt_api_mcast_des)
  5918. fprintf(fcfg, ",\n\"api-mcast-des\" : \"%s\"", json_escape(opt_api_mcast_des));
  5919. if (strcmp(opt_api_description, PACKAGE_STRING) != 0)
  5920. fprintf(fcfg, ",\n\"api-description\" : \"%s\"", json_escape(opt_api_description));
  5921. if (opt_api_groups)
  5922. fprintf(fcfg, ",\n\"api-groups\" : \"%s\"", json_escape(opt_api_groups));
  5923. fputs("\n}\n", fcfg);
  5924. json_escape_free();
  5925. }
  5926. void zero_bestshare(void)
  5927. {
  5928. int i;
  5929. best_diff = 0;
  5930. suffix_string(best_diff, best_share, sizeof(best_share), 0);
  5931. for (i = 0; i < total_pools; i++) {
  5932. struct pool *pool = pools[i];
  5933. pool->best_diff = 0;
  5934. }
  5935. }
  5936. void zero_stats(void)
  5937. {
  5938. int i;
  5939. applog(LOG_DEBUG, "Zeroing stats");
  5940. cgtime(&total_tv_start);
  5941. miner_started = total_tv_start;
  5942. total_rolling = 0;
  5943. total_mhashes_done = 0;
  5944. total_getworks = 0;
  5945. total_accepted = 0;
  5946. total_rejected = 0;
  5947. hw_errors = 0;
  5948. total_stale = 0;
  5949. total_discarded = 0;
  5950. total_bytes_rcvd = total_bytes_sent = 0;
  5951. new_blocks = 0;
  5952. local_work = 0;
  5953. total_go = 0;
  5954. total_ro = 0;
  5955. total_secs = 1.0;
  5956. total_diff1 = 0;
  5957. total_bad_diff1 = 0;
  5958. found_blocks = 0;
  5959. total_diff_accepted = 0;
  5960. total_diff_rejected = 0;
  5961. total_diff_stale = 0;
  5962. #ifdef HAVE_CURSES
  5963. awidth = rwidth = swidth = hwwidth = 1;
  5964. #endif
  5965. for (i = 0; i < total_pools; i++) {
  5966. struct pool *pool = pools[i];
  5967. pool->getwork_requested = 0;
  5968. pool->accepted = 0;
  5969. pool->rejected = 0;
  5970. pool->solved = 0;
  5971. pool->getwork_requested = 0;
  5972. pool->stale_shares = 0;
  5973. pool->discarded_work = 0;
  5974. pool->getfail_occasions = 0;
  5975. pool->remotefail_occasions = 0;
  5976. pool->last_share_time = 0;
  5977. pool->diff1 = 0;
  5978. pool->diff_accepted = 0;
  5979. pool->diff_rejected = 0;
  5980. pool->diff_stale = 0;
  5981. pool->last_share_diff = 0;
  5982. pool->cgminer_stats.start_tv = total_tv_start;
  5983. pool->cgminer_stats.getwork_calls = 0;
  5984. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5985. pool->cgminer_stats.getwork_wait_max.tv_sec = 0;
  5986. pool->cgminer_stats.getwork_wait_max.tv_usec = 0;
  5987. pool->cgminer_pool_stats.getwork_calls = 0;
  5988. pool->cgminer_pool_stats.getwork_attempts = 0;
  5989. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  5990. pool->cgminer_pool_stats.getwork_wait_max.tv_sec = 0;
  5991. pool->cgminer_pool_stats.getwork_wait_max.tv_usec = 0;
  5992. pool->cgminer_pool_stats.min_diff = 0;
  5993. pool->cgminer_pool_stats.max_diff = 0;
  5994. pool->cgminer_pool_stats.min_diff_count = 0;
  5995. pool->cgminer_pool_stats.max_diff_count = 0;
  5996. pool->cgminer_pool_stats.times_sent = 0;
  5997. pool->cgminer_pool_stats.bytes_sent = 0;
  5998. pool->cgminer_pool_stats.net_bytes_sent = 0;
  5999. pool->cgminer_pool_stats.times_received = 0;
  6000. pool->cgminer_pool_stats.bytes_received = 0;
  6001. pool->cgminer_pool_stats.net_bytes_received = 0;
  6002. }
  6003. zero_bestshare();
  6004. for (i = 0; i < total_devices; ++i) {
  6005. struct cgpu_info *cgpu = get_devices(i);
  6006. mutex_lock(&hash_lock);
  6007. cgpu->total_mhashes = 0;
  6008. cgpu->accepted = 0;
  6009. cgpu->rejected = 0;
  6010. cgpu->stale = 0;
  6011. cgpu->hw_errors = 0;
  6012. cgpu->utility = 0.0;
  6013. cgpu->utility_diff1 = 0;
  6014. cgpu->last_share_pool_time = 0;
  6015. cgpu->bad_diff1 = 0;
  6016. cgpu->diff1 = 0;
  6017. cgpu->diff_accepted = 0;
  6018. cgpu->diff_rejected = 0;
  6019. cgpu->diff_stale = 0;
  6020. cgpu->last_share_diff = 0;
  6021. cgpu->thread_fail_init_count = 0;
  6022. cgpu->thread_zero_hash_count = 0;
  6023. cgpu->thread_fail_queue_count = 0;
  6024. cgpu->dev_sick_idle_60_count = 0;
  6025. cgpu->dev_dead_idle_600_count = 0;
  6026. cgpu->dev_nostart_count = 0;
  6027. cgpu->dev_over_heat_count = 0;
  6028. cgpu->dev_thermal_cutoff_count = 0;
  6029. cgpu->dev_comms_error_count = 0;
  6030. cgpu->dev_throttle_count = 0;
  6031. cgpu->cgminer_stats.start_tv = total_tv_start;
  6032. cgpu->cgminer_stats.getwork_calls = 0;
  6033. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  6034. cgpu->cgminer_stats.getwork_wait_max.tv_sec = 0;
  6035. cgpu->cgminer_stats.getwork_wait_max.tv_usec = 0;
  6036. mutex_unlock(&hash_lock);
  6037. }
  6038. }
  6039. #ifdef HAVE_CURSES
  6040. static
  6041. void loginput_mode(const int size)
  6042. {
  6043. clear_logwin();
  6044. loginput_size = size;
  6045. check_winsizes();
  6046. }
  6047. static void display_pools(void)
  6048. {
  6049. struct pool *pool;
  6050. int selected, i, j;
  6051. char input;
  6052. loginput_mode(7 + total_pools);
  6053. immedok(logwin, true);
  6054. updated:
  6055. for (j = 0; j < total_pools; j++) {
  6056. for (i = 0; i < total_pools; i++) {
  6057. pool = pools[i];
  6058. if (pool->prio != j)
  6059. continue;
  6060. if (pool == current_pool())
  6061. wattron(logwin, A_BOLD);
  6062. if (pool->enabled != POOL_ENABLED)
  6063. wattron(logwin, A_DIM);
  6064. wlogprint("%d: ", pool->prio);
  6065. switch (pool->enabled) {
  6066. case POOL_ENABLED:
  6067. wlogprint("Enabled ");
  6068. break;
  6069. case POOL_DISABLED:
  6070. wlogprint("Disabled ");
  6071. break;
  6072. case POOL_REJECTING:
  6073. wlogprint("Rejectin ");
  6074. break;
  6075. }
  6076. _wlogprint(pool_proto_str(pool));
  6077. wlogprint(" Quota %d Pool %d: %s User:%s\n",
  6078. pool->quota,
  6079. pool->pool_no,
  6080. pool->rpc_url, pool->rpc_user);
  6081. wattroff(logwin, A_BOLD | A_DIM);
  6082. break; //for (i = 0; i < total_pools; i++)
  6083. }
  6084. }
  6085. retry:
  6086. wlogprint("\nCurrent pool management strategy: %s\n",
  6087. strategies[pool_strategy].s);
  6088. if (pool_strategy == POOL_ROTATE)
  6089. wlogprint("Set to rotate every %d minutes\n", opt_rotate_period);
  6090. wlogprint("[F]ailover only %s\n", opt_fail_only ? "enabled" : "disabled");
  6091. wlogprint("Pool [A]dd [R]emove [D]isable [E]nable [P]rioritize [Q]uota change\n");
  6092. wlogprint("[C]hange management strategy [S]witch pool [I]nformation\n");
  6093. wlogprint("Or press any other key to continue\n");
  6094. logwin_update();
  6095. input = getch();
  6096. if (!strncasecmp(&input, "a", 1)) {
  6097. if (opt_benchmark)
  6098. {
  6099. wlogprint("Cannot add pools in benchmark mode");
  6100. goto retry;
  6101. }
  6102. input_pool(true);
  6103. goto updated;
  6104. } else if (!strncasecmp(&input, "r", 1)) {
  6105. if (total_pools <= 1) {
  6106. wlogprint("Cannot remove last pool");
  6107. goto retry;
  6108. }
  6109. selected = curses_int("Select pool number");
  6110. if (selected < 0 || selected >= total_pools) {
  6111. wlogprint("Invalid selection\n");
  6112. goto retry;
  6113. }
  6114. pool = pools[selected];
  6115. if (pool == current_pool())
  6116. switch_pools(NULL);
  6117. if (pool == current_pool()) {
  6118. wlogprint("Unable to remove pool due to activity\n");
  6119. goto retry;
  6120. }
  6121. disable_pool(pool);
  6122. remove_pool(pool);
  6123. goto updated;
  6124. } else if (!strncasecmp(&input, "s", 1)) {
  6125. selected = curses_int("Select pool number");
  6126. if (selected < 0 || selected >= total_pools) {
  6127. wlogprint("Invalid selection\n");
  6128. goto retry;
  6129. }
  6130. pool = pools[selected];
  6131. enable_pool(pool);
  6132. switch_pools(pool);
  6133. goto updated;
  6134. } else if (!strncasecmp(&input, "d", 1)) {
  6135. if (enabled_pools <= 1) {
  6136. wlogprint("Cannot disable last pool");
  6137. goto retry;
  6138. }
  6139. selected = curses_int("Select pool number");
  6140. if (selected < 0 || selected >= total_pools) {
  6141. wlogprint("Invalid selection\n");
  6142. goto retry;
  6143. }
  6144. pool = pools[selected];
  6145. disable_pool(pool);
  6146. if (pool == current_pool())
  6147. switch_pools(NULL);
  6148. goto updated;
  6149. } else if (!strncasecmp(&input, "e", 1)) {
  6150. selected = curses_int("Select pool number");
  6151. if (selected < 0 || selected >= total_pools) {
  6152. wlogprint("Invalid selection\n");
  6153. goto retry;
  6154. }
  6155. pool = pools[selected];
  6156. enable_pool(pool);
  6157. if (pool->prio < current_pool()->prio)
  6158. switch_pools(pool);
  6159. goto updated;
  6160. } else if (!strncasecmp(&input, "c", 1)) {
  6161. for (i = 0; i <= TOP_STRATEGY; i++)
  6162. wlogprint("%d: %s\n", i, strategies[i].s);
  6163. selected = curses_int("Select strategy number type");
  6164. if (selected < 0 || selected > TOP_STRATEGY) {
  6165. wlogprint("Invalid selection\n");
  6166. goto retry;
  6167. }
  6168. if (selected == POOL_ROTATE) {
  6169. opt_rotate_period = curses_int("Select interval in minutes");
  6170. if (opt_rotate_period < 0 || opt_rotate_period > 9999) {
  6171. opt_rotate_period = 0;
  6172. wlogprint("Invalid selection\n");
  6173. goto retry;
  6174. }
  6175. }
  6176. pool_strategy = selected;
  6177. switch_pools(NULL);
  6178. goto updated;
  6179. } else if (!strncasecmp(&input, "i", 1)) {
  6180. selected = curses_int("Select pool number");
  6181. if (selected < 0 || selected >= total_pools) {
  6182. wlogprint("Invalid selection\n");
  6183. goto retry;
  6184. }
  6185. pool = pools[selected];
  6186. display_pool_summary(pool);
  6187. goto retry;
  6188. } else if (!strncasecmp(&input, "q", 1)) {
  6189. selected = curses_int("Select pool number");
  6190. if (selected < 0 || selected >= total_pools) {
  6191. wlogprint("Invalid selection\n");
  6192. goto retry;
  6193. }
  6194. pool = pools[selected];
  6195. selected = curses_int("Set quota");
  6196. if (selected < 0) {
  6197. wlogprint("Invalid negative quota\n");
  6198. goto retry;
  6199. }
  6200. pool->quota = selected;
  6201. adjust_quota_gcd();
  6202. goto updated;
  6203. } else if (!strncasecmp(&input, "f", 1)) {
  6204. opt_fail_only ^= true;
  6205. goto updated;
  6206. } else if (!strncasecmp(&input, "p", 1)) {
  6207. char *prilist = curses_input("Enter new pool priority (comma separated list)");
  6208. if (!prilist)
  6209. {
  6210. wlogprint("Not changing priorities\n");
  6211. goto retry;
  6212. }
  6213. int res = prioritize_pools(prilist, &i);
  6214. free(prilist);
  6215. switch (res) {
  6216. case MSG_NOPOOL:
  6217. wlogprint("No pools\n");
  6218. goto retry;
  6219. case MSG_MISPID:
  6220. wlogprint("Missing pool id parameter\n");
  6221. goto retry;
  6222. case MSG_INVPID:
  6223. wlogprint("Invalid pool id %d - range is 0 - %d\n", i, total_pools - 1);
  6224. goto retry;
  6225. case MSG_DUPPID:
  6226. wlogprint("Duplicate pool specified %d\n", i);
  6227. goto retry;
  6228. case MSG_POOLPRIO:
  6229. default:
  6230. goto updated;
  6231. }
  6232. }
  6233. immedok(logwin, false);
  6234. loginput_mode(0);
  6235. }
  6236. static const char *summary_detail_level_str(void)
  6237. {
  6238. if (opt_compact)
  6239. return "compact";
  6240. if (opt_show_procs)
  6241. return "processors";
  6242. return "devices";
  6243. }
  6244. static void display_options(void)
  6245. {
  6246. int selected;
  6247. char input;
  6248. immedok(logwin, true);
  6249. loginput_mode(12);
  6250. retry:
  6251. clear_logwin();
  6252. wlogprint("[N]ormal [C]lear [S]ilent mode (disable all output)\n");
  6253. wlogprint("[D]ebug:%s\n[P]er-device:%s\n[Q]uiet:%s\n[V]erbose:%s\n"
  6254. "[R]PC debug:%s\n[W]orkTime details:%s\nsu[M]mary detail level:%s\n"
  6255. "[L]og interval:%d\nS[T]atistical counts: %s\n[Z]ero statistics\n",
  6256. opt_debug_console ? "on" : "off",
  6257. want_per_device_stats? "on" : "off",
  6258. opt_quiet ? "on" : "off",
  6259. opt_log_output ? "on" : "off",
  6260. opt_protocol ? "on" : "off",
  6261. opt_worktime ? "on" : "off",
  6262. summary_detail_level_str(),
  6263. opt_log_interval,
  6264. opt_weighed_stats ? "weighed" : "absolute");
  6265. wlogprint("Select an option or any other key to return\n");
  6266. logwin_update();
  6267. input = getch();
  6268. if (!strncasecmp(&input, "q", 1)) {
  6269. opt_quiet ^= true;
  6270. wlogprint("Quiet mode %s\n", opt_quiet ? "enabled" : "disabled");
  6271. goto retry;
  6272. } else if (!strncasecmp(&input, "v", 1)) {
  6273. opt_log_output ^= true;
  6274. if (opt_log_output)
  6275. opt_quiet = false;
  6276. wlogprint("Verbose mode %s\n", opt_log_output ? "enabled" : "disabled");
  6277. goto retry;
  6278. } else if (!strncasecmp(&input, "n", 1)) {
  6279. opt_log_output = false;
  6280. opt_debug_console = false;
  6281. opt_quiet = false;
  6282. opt_protocol = false;
  6283. opt_compact = false;
  6284. opt_show_procs = false;
  6285. devsummaryYOffset = 0;
  6286. want_per_device_stats = false;
  6287. wlogprint("Output mode reset to normal\n");
  6288. switch_logsize();
  6289. goto retry;
  6290. } else if (!strncasecmp(&input, "d", 1)) {
  6291. opt_debug = true;
  6292. opt_debug_console ^= true;
  6293. opt_log_output = opt_debug_console;
  6294. if (opt_debug_console)
  6295. opt_quiet = false;
  6296. wlogprint("Debug mode %s\n", opt_debug_console ? "enabled" : "disabled");
  6297. goto retry;
  6298. } else if (!strncasecmp(&input, "m", 1)) {
  6299. if (opt_compact)
  6300. opt_compact = false;
  6301. else
  6302. if (!opt_show_procs)
  6303. opt_show_procs = true;
  6304. else
  6305. {
  6306. opt_compact = true;
  6307. opt_show_procs = false;
  6308. devsummaryYOffset = 0;
  6309. }
  6310. wlogprint("su[M]mary detail level changed to: %s\n", summary_detail_level_str());
  6311. switch_logsize();
  6312. goto retry;
  6313. } else if (!strncasecmp(&input, "p", 1)) {
  6314. want_per_device_stats ^= true;
  6315. opt_log_output = want_per_device_stats;
  6316. wlogprint("Per-device stats %s\n", want_per_device_stats ? "enabled" : "disabled");
  6317. goto retry;
  6318. } else if (!strncasecmp(&input, "r", 1)) {
  6319. opt_protocol ^= true;
  6320. if (opt_protocol)
  6321. opt_quiet = false;
  6322. wlogprint("RPC protocol debugging %s\n", opt_protocol ? "enabled" : "disabled");
  6323. goto retry;
  6324. } else if (!strncasecmp(&input, "c", 1))
  6325. clear_logwin();
  6326. else if (!strncasecmp(&input, "l", 1)) {
  6327. selected = curses_int("Interval in seconds");
  6328. if (selected < 0 || selected > 9999) {
  6329. wlogprint("Invalid selection\n");
  6330. goto retry;
  6331. }
  6332. opt_log_interval = selected;
  6333. wlogprint("Log interval set to %d seconds\n", opt_log_interval);
  6334. goto retry;
  6335. } else if (!strncasecmp(&input, "s", 1)) {
  6336. opt_realquiet = true;
  6337. } else if (!strncasecmp(&input, "w", 1)) {
  6338. opt_worktime ^= true;
  6339. wlogprint("WorkTime details %s\n", opt_worktime ? "enabled" : "disabled");
  6340. goto retry;
  6341. } else if (!strncasecmp(&input, "t", 1)) {
  6342. opt_weighed_stats ^= true;
  6343. wlogprint("Now displaying %s statistics\n", opt_weighed_stats ? "weighed" : "absolute");
  6344. goto retry;
  6345. } else if (!strncasecmp(&input, "z", 1)) {
  6346. zero_stats();
  6347. goto retry;
  6348. }
  6349. immedok(logwin, false);
  6350. loginput_mode(0);
  6351. }
  6352. #endif
  6353. void default_save_file(char *filename)
  6354. {
  6355. #if defined(unix) || defined(__APPLE__)
  6356. if (getenv("HOME") && *getenv("HOME")) {
  6357. strcpy(filename, getenv("HOME"));
  6358. strcat(filename, "/");
  6359. }
  6360. else
  6361. strcpy(filename, "");
  6362. strcat(filename, ".bfgminer/");
  6363. mkdir(filename, 0777);
  6364. #else
  6365. strcpy(filename, "");
  6366. #endif
  6367. strcat(filename, def_conf);
  6368. }
  6369. #ifdef HAVE_CURSES
  6370. static void set_options(void)
  6371. {
  6372. int selected;
  6373. char input;
  6374. immedok(logwin, true);
  6375. loginput_mode(8);
  6376. retry:
  6377. wlogprint("\n[L]ongpoll: %s\n", want_longpoll ? "On" : "Off");
  6378. wlogprint("[Q]ueue: %d\n[S]cantime: %d\n[E]xpiry: %d\n[R]etries: %d\n"
  6379. "[W]rite config file\n[B]FGMiner restart\n",
  6380. opt_queue, opt_scantime, opt_expiry, opt_retries);
  6381. wlogprint("Select an option or any other key to return\n");
  6382. logwin_update();
  6383. input = getch();
  6384. if (!strncasecmp(&input, "q", 1)) {
  6385. selected = curses_int("Extra work items to queue");
  6386. if (selected < 0 || selected > 9999) {
  6387. wlogprint("Invalid selection\n");
  6388. goto retry;
  6389. }
  6390. opt_queue = selected;
  6391. goto retry;
  6392. } else if (!strncasecmp(&input, "l", 1)) {
  6393. if (want_longpoll)
  6394. stop_longpoll();
  6395. else
  6396. start_longpoll();
  6397. applog(LOG_WARNING, "Longpoll %s", want_longpoll ? "enabled" : "disabled");
  6398. goto retry;
  6399. } else if (!strncasecmp(&input, "s", 1)) {
  6400. selected = curses_int("Set scantime in seconds");
  6401. if (selected < 0 || selected > 9999) {
  6402. wlogprint("Invalid selection\n");
  6403. goto retry;
  6404. }
  6405. opt_scantime = selected;
  6406. goto retry;
  6407. } else if (!strncasecmp(&input, "e", 1)) {
  6408. selected = curses_int("Set expiry time in seconds");
  6409. if (selected < 0 || selected > 9999) {
  6410. wlogprint("Invalid selection\n");
  6411. goto retry;
  6412. }
  6413. opt_expiry = selected;
  6414. goto retry;
  6415. } else if (!strncasecmp(&input, "r", 1)) {
  6416. selected = curses_int("Retries before failing (-1 infinite)");
  6417. if (selected < -1 || selected > 9999) {
  6418. wlogprint("Invalid selection\n");
  6419. goto retry;
  6420. }
  6421. opt_retries = selected;
  6422. goto retry;
  6423. } else if (!strncasecmp(&input, "w", 1)) {
  6424. FILE *fcfg;
  6425. char *str, filename[PATH_MAX], prompt[PATH_MAX + 50];
  6426. default_save_file(filename);
  6427. snprintf(prompt, sizeof(prompt), "Config filename to write (Enter for default) [%s]", filename);
  6428. str = curses_input(prompt);
  6429. if (str) {
  6430. struct stat statbuf;
  6431. strcpy(filename, str);
  6432. free(str);
  6433. if (!stat(filename, &statbuf)) {
  6434. wlogprint("File exists, overwrite?\n");
  6435. input = getch();
  6436. if (strncasecmp(&input, "y", 1))
  6437. goto retry;
  6438. }
  6439. }
  6440. fcfg = fopen(filename, "w");
  6441. if (!fcfg) {
  6442. wlogprint("Cannot open or create file\n");
  6443. goto retry;
  6444. }
  6445. write_config(fcfg);
  6446. fclose(fcfg);
  6447. goto retry;
  6448. } else if (!strncasecmp(&input, "b", 1)) {
  6449. wlogprint("Are you sure?\n");
  6450. input = getch();
  6451. if (!strncasecmp(&input, "y", 1))
  6452. app_restart();
  6453. else
  6454. clear_logwin();
  6455. } else
  6456. clear_logwin();
  6457. loginput_mode(0);
  6458. immedok(logwin, false);
  6459. }
  6460. int scan_serial(const char *);
  6461. static
  6462. void _managetui_msg(const char *repr, const char **msg)
  6463. {
  6464. if (*msg)
  6465. {
  6466. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": %s", repr, *msg);
  6467. wattron(logwin, A_BOLD);
  6468. wlogprint("%s", *msg);
  6469. wattroff(logwin, A_BOLD);
  6470. *msg = NULL;
  6471. }
  6472. logwin_update();
  6473. }
  6474. void manage_device(void)
  6475. {
  6476. char logline[256];
  6477. const char *msg = NULL;
  6478. struct cgpu_info *cgpu;
  6479. const struct device_drv *drv;
  6480. selecting_device = true;
  6481. immedok(logwin, true);
  6482. loginput_mode(12);
  6483. devchange:
  6484. if (unlikely(!total_devices))
  6485. {
  6486. clear_logwin();
  6487. wlogprint("(no devices)\n");
  6488. wlogprint("[Plus] Add device(s) [Enter] Close device manager\n");
  6489. _managetui_msg("(none)", &msg);
  6490. int input = getch();
  6491. switch (input)
  6492. {
  6493. case '+': case '=': // add new device
  6494. goto addnew;
  6495. default:
  6496. goto out;
  6497. }
  6498. }
  6499. cgpu = devices[selected_device];
  6500. drv = cgpu->drv;
  6501. refresh_devstatus();
  6502. refresh:
  6503. clear_logwin();
  6504. wlogprint("Select processor to manage using up/down arrow keys\n");
  6505. get_statline3(logline, sizeof(logline), cgpu, true, true);
  6506. wattron(logwin, A_BOLD);
  6507. wlogprint("%s", logline);
  6508. wattroff(logwin, A_BOLD);
  6509. wlogprint("\n");
  6510. if (cgpu->dev_manufacturer)
  6511. wlogprint(" %s from %s\n", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  6512. else
  6513. if (cgpu->dev_product)
  6514. wlogprint(" %s\n", cgpu->dev_product);
  6515. if (cgpu->dev_serial)
  6516. wlogprint("Serial: %s\n", cgpu->dev_serial);
  6517. if (cgpu->kname)
  6518. wlogprint("Kernel: %s\n", cgpu->kname);
  6519. if (drv->proc_wlogprint_status && likely(cgpu->status != LIFE_INIT))
  6520. drv->proc_wlogprint_status(cgpu);
  6521. wlogprint("\n");
  6522. // TODO: Last share at TIMESTAMP on pool N
  6523. // TODO: Custom device info/commands
  6524. if (cgpu->deven != DEV_ENABLED)
  6525. wlogprint("[E]nable ");
  6526. if (cgpu->deven != DEV_DISABLED)
  6527. wlogprint("[D]isable ");
  6528. if (drv->identify_device)
  6529. wlogprint("[I]dentify ");
  6530. if (drv->proc_tui_wlogprint_choices && likely(cgpu->status != LIFE_INIT))
  6531. drv->proc_tui_wlogprint_choices(cgpu);
  6532. wlogprint("\n");
  6533. wlogprint("[Slash] Find processor [Plus] Add device(s) [Enter] Close device manager\n");
  6534. _managetui_msg(cgpu->proc_repr, &msg);
  6535. while (true)
  6536. {
  6537. int input = getch();
  6538. applog(LOG_DEBUG, "ManageTUI: %"PRIpreprv": (choice %d)", cgpu->proc_repr, input);
  6539. switch (input) {
  6540. case 'd': case 'D':
  6541. if (cgpu->deven == DEV_DISABLED)
  6542. msg = "Processor already disabled\n";
  6543. else
  6544. {
  6545. cgpu->deven = DEV_DISABLED;
  6546. msg = "Processor being disabled\n";
  6547. }
  6548. goto refresh;
  6549. case 'e': case 'E':
  6550. if (cgpu->deven == DEV_ENABLED)
  6551. msg = "Processor already enabled\n";
  6552. else
  6553. {
  6554. proc_enable(cgpu);
  6555. msg = "Processor being enabled\n";
  6556. }
  6557. goto refresh;
  6558. case 'i': case 'I':
  6559. if (drv->identify_device && drv->identify_device(cgpu))
  6560. msg = "Identify command sent\n";
  6561. else
  6562. goto key_default;
  6563. goto refresh;
  6564. case KEY_DOWN:
  6565. if (selected_device >= total_devices - 1)
  6566. break;
  6567. ++selected_device;
  6568. goto devchange;
  6569. case KEY_UP:
  6570. if (selected_device <= 0)
  6571. break;
  6572. --selected_device;
  6573. goto devchange;
  6574. case KEY_NPAGE:
  6575. {
  6576. if (selected_device >= total_devices - 1)
  6577. break;
  6578. struct cgpu_info *mdev = devices[selected_device]->device;
  6579. do {
  6580. ++selected_device;
  6581. } while (devices[selected_device]->device == mdev && selected_device < total_devices - 1);
  6582. goto devchange;
  6583. }
  6584. case KEY_PPAGE:
  6585. {
  6586. if (selected_device <= 0)
  6587. break;
  6588. struct cgpu_info *mdev = devices[selected_device]->device;
  6589. do {
  6590. --selected_device;
  6591. } while (devices[selected_device]->device == mdev && selected_device > 0);
  6592. goto devchange;
  6593. }
  6594. case '/': case '?': // find device
  6595. {
  6596. static char *pattern = NULL;
  6597. char *newpattern = curses_input("Enter pattern");
  6598. if (newpattern)
  6599. {
  6600. free(pattern);
  6601. pattern = newpattern;
  6602. }
  6603. else
  6604. if (!pattern)
  6605. pattern = calloc(1, 1);
  6606. int match = cgpu_search(pattern, selected_device + 1);
  6607. if (match == -1)
  6608. {
  6609. msg = "Couldn't find device\n";
  6610. goto refresh;
  6611. }
  6612. selected_device = match;
  6613. goto devchange;
  6614. }
  6615. case '+': case '=': // add new device
  6616. {
  6617. addnew:
  6618. clear_logwin();
  6619. _wlogprint(
  6620. "Enter \"auto\", \"all\", or a serial port to probe for mining devices.\n"
  6621. "Prefix by a driver name and colon to only probe a specific driver.\n"
  6622. "For example: erupter:"
  6623. #ifdef WIN32
  6624. "\\\\.\\COM40"
  6625. #elif defined(__APPLE__)
  6626. "/dev/cu.SLAB_USBtoUART"
  6627. #else
  6628. "/dev/ttyUSB39"
  6629. #endif
  6630. "\n"
  6631. );
  6632. char *scanser = curses_input("Enter target");
  6633. if (scan_serial(scanser))
  6634. {
  6635. selected_device = total_devices - 1;
  6636. msg = "Device scan succeeded\n";
  6637. }
  6638. else
  6639. msg = "No new devices found\n";
  6640. goto devchange;
  6641. }
  6642. case 'Q': case 'q':
  6643. case KEY_BREAK: case KEY_BACKSPACE: case KEY_CANCEL: case KEY_CLOSE: case KEY_EXIT:
  6644. case '\x1b': // ESC
  6645. case KEY_ENTER:
  6646. case '\r': // Ctrl-M on Windows, with nonl
  6647. #ifdef PADENTER
  6648. case PADENTER: // pdcurses, used by Enter key on Windows with nonl
  6649. #endif
  6650. case '\n':
  6651. goto out;
  6652. default:
  6653. ;
  6654. key_default:
  6655. if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
  6656. {
  6657. msg = drv->proc_tui_handle_choice(cgpu, input);
  6658. if (msg)
  6659. goto refresh;
  6660. }
  6661. }
  6662. }
  6663. out:
  6664. selecting_device = false;
  6665. loginput_mode(0);
  6666. immedok(logwin, false);
  6667. }
  6668. void show_help(void)
  6669. {
  6670. loginput_mode(11);
  6671. // NOTE: wlogprint is a macro with a buffer limit
  6672. _wlogprint(
  6673. "LU: oldest explicit work update currently being used for new work\n"
  6674. "ST: work in queue | F: network fails | NB: new blocks detected\n"
  6675. "AS: shares being submitted | BW: bandwidth (up/down)\n"
  6676. "E: # shares * diff per 2kB bw | I: expected income | BS: best share ever found\n"
  6677. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6678. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6679. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6680. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE
  6681. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6682. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6683. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_BTEE U8_HLINE U8_HLINE U8_HLINE
  6684. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6685. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6686. U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE U8_HLINE
  6687. "\n"
  6688. "devices/processors hashing (only for totals line), hottest temperature\n"
  6689. );
  6690. wlogprint(
  6691. "hashrates: %ds decaying / all-time average / all-time average (effective)\n"
  6692. , opt_log_interval);
  6693. _wlogprint(
  6694. "A: accepted shares | R: rejected+discarded(% of total)\n"
  6695. "HW: hardware errors / % nonces invalid\n"
  6696. "\n"
  6697. "Press any key to clear"
  6698. );
  6699. logwin_update();
  6700. getch();
  6701. loginput_mode(0);
  6702. }
  6703. static void *input_thread(void __maybe_unused *userdata)
  6704. {
  6705. RenameThread("input");
  6706. if (!curses_active)
  6707. return NULL;
  6708. while (1) {
  6709. int input;
  6710. input = getch();
  6711. switch (input) {
  6712. case 'h': case 'H': case '?':
  6713. case KEY_F(1):
  6714. show_help();
  6715. break;
  6716. case 'q': case 'Q':
  6717. kill_work();
  6718. return NULL;
  6719. case 'd': case 'D':
  6720. display_options();
  6721. break;
  6722. case 'm': case 'M':
  6723. manage_device();
  6724. break;
  6725. case 'p': case 'P':
  6726. display_pools();
  6727. break;
  6728. case 's': case 'S':
  6729. set_options();
  6730. break;
  6731. #ifdef HAVE_CURSES
  6732. case KEY_DOWN:
  6733. {
  6734. const int visible_lines = logcursor - devcursor;
  6735. const int invisible_lines = total_lines - visible_lines;
  6736. if (devsummaryYOffset <= -invisible_lines)
  6737. break;
  6738. devsummaryYOffset -= 2;
  6739. }
  6740. case KEY_UP:
  6741. if (devsummaryYOffset == 0)
  6742. break;
  6743. ++devsummaryYOffset;
  6744. refresh_devstatus();
  6745. break;
  6746. case KEY_NPAGE:
  6747. {
  6748. const int visible_lines = logcursor - devcursor;
  6749. const int invisible_lines = total_lines - visible_lines;
  6750. if (devsummaryYOffset - visible_lines <= -invisible_lines)
  6751. devsummaryYOffset = -invisible_lines;
  6752. else
  6753. devsummaryYOffset -= visible_lines;
  6754. refresh_devstatus();
  6755. break;
  6756. }
  6757. case KEY_PPAGE:
  6758. {
  6759. const int visible_lines = logcursor - devcursor;
  6760. if (devsummaryYOffset + visible_lines >= 0)
  6761. devsummaryYOffset = 0;
  6762. else
  6763. devsummaryYOffset += visible_lines;
  6764. refresh_devstatus();
  6765. break;
  6766. }
  6767. #endif
  6768. }
  6769. if (opt_realquiet) {
  6770. disable_curses();
  6771. break;
  6772. }
  6773. }
  6774. return NULL;
  6775. }
  6776. #endif
  6777. static void *api_thread(void *userdata)
  6778. {
  6779. struct thr_info *mythr = userdata;
  6780. pthread_detach(pthread_self());
  6781. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  6782. RenameThread("rpc");
  6783. api(api_thr_id);
  6784. mythr->has_pth = false;
  6785. return NULL;
  6786. }
  6787. void thread_reportin(struct thr_info *thr)
  6788. {
  6789. cgtime(&thr->last);
  6790. thr->cgpu->status = LIFE_WELL;
  6791. thr->getwork = 0;
  6792. thr->cgpu->device_last_well = time(NULL);
  6793. }
  6794. void thread_reportout(struct thr_info *thr)
  6795. {
  6796. thr->getwork = time(NULL);
  6797. }
  6798. static void hashmeter(int thr_id, struct timeval *diff,
  6799. uint64_t hashes_done)
  6800. {
  6801. char logstatusline[256];
  6802. struct timeval temp_tv_end, total_diff;
  6803. double secs;
  6804. double local_secs;
  6805. static double local_mhashes_done = 0;
  6806. double local_mhashes = (double)hashes_done / 1000000.0;
  6807. bool showlog = false;
  6808. char cHr[ALLOC_H2B_NOUNIT+1], aHr[ALLOC_H2B_NOUNIT+1], uHr[ALLOC_H2B_SPACED+3+1];
  6809. char rejpcbuf[6];
  6810. char bnbuf[6];
  6811. struct thr_info *thr;
  6812. /* Update the last time this thread reported in */
  6813. if (thr_id >= 0) {
  6814. thr = get_thread(thr_id);
  6815. cgtime(&(thr->last));
  6816. thr->cgpu->device_last_well = time(NULL);
  6817. }
  6818. secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0);
  6819. /* So we can call hashmeter from a non worker thread */
  6820. if (thr_id >= 0) {
  6821. struct cgpu_info *cgpu = thr->cgpu;
  6822. int threadobj = cgpu->threads ?: 1;
  6823. double thread_rolling = 0.0;
  6824. int i;
  6825. applog(LOG_DEBUG, "[thread %d: %"PRIu64" hashes, %.1f khash/sec]",
  6826. thr_id, hashes_done, hashes_done / 1000 / secs);
  6827. /* Rolling average for each thread and each device */
  6828. decay_time(&thr->rolling, local_mhashes / secs, secs);
  6829. for (i = 0; i < threadobj; i++)
  6830. thread_rolling += cgpu->thr[i]->rolling;
  6831. mutex_lock(&hash_lock);
  6832. decay_time(&cgpu->rolling, thread_rolling, secs);
  6833. cgpu->total_mhashes += local_mhashes;
  6834. mutex_unlock(&hash_lock);
  6835. // If needed, output detailed, per-device stats
  6836. if (want_per_device_stats) {
  6837. struct timeval now;
  6838. struct timeval elapsed;
  6839. struct timeval *last_msg_tv = opt_show_procs ? &thr->cgpu->last_message_tv : &thr->cgpu->device->last_message_tv;
  6840. cgtime(&now);
  6841. timersub(&now, last_msg_tv, &elapsed);
  6842. if (opt_log_interval <= elapsed.tv_sec) {
  6843. struct cgpu_info *cgpu = thr->cgpu;
  6844. char logline[255];
  6845. *last_msg_tv = now;
  6846. get_statline(logline, sizeof(logline), cgpu);
  6847. if (!curses_active) {
  6848. printf("%s \r", logline);
  6849. fflush(stdout);
  6850. } else
  6851. applog(LOG_INFO, "%s", logline);
  6852. }
  6853. }
  6854. }
  6855. /* Totals are updated by all threads so can race without locking */
  6856. mutex_lock(&hash_lock);
  6857. cgtime(&temp_tv_end);
  6858. timersub(&temp_tv_end, &total_tv_end, &total_diff);
  6859. total_mhashes_done += local_mhashes;
  6860. local_mhashes_done += local_mhashes;
  6861. /* Only update with opt_log_interval */
  6862. if (total_diff.tv_sec < opt_log_interval)
  6863. goto out_unlock;
  6864. showlog = true;
  6865. cgtime(&total_tv_end);
  6866. local_secs = (double)total_diff.tv_sec + ((double)total_diff.tv_usec / 1000000.0);
  6867. decay_time(&total_rolling, local_mhashes_done / local_secs, local_secs);
  6868. global_hashrate = ((unsigned long long)lround(total_rolling)) * 1000000;
  6869. timersub(&total_tv_end, &total_tv_start, &total_diff);
  6870. total_secs = (double)total_diff.tv_sec +
  6871. ((double)total_diff.tv_usec / 1000000.0);
  6872. double wtotal = (total_diff_accepted + total_diff_rejected + total_diff_stale);
  6873. multi_format_unit_array2(
  6874. ((char*[]){cHr, aHr, uHr}),
  6875. ((size_t[]){sizeof(cHr), sizeof(aHr), sizeof(uHr)}),
  6876. true, "h/s", H2B_SHORT,
  6877. 3,
  6878. 1e6*total_rolling,
  6879. 1e6*total_mhashes_done / total_secs,
  6880. utility_to_hashrate(total_diff1 * (wtotal ? (total_diff_accepted / wtotal) : 1) * 60 / total_secs));
  6881. int ui_accepted, ui_rejected, ui_stale;
  6882. if (opt_weighed_stats)
  6883. {
  6884. ui_accepted = total_diff_accepted;
  6885. ui_rejected = total_diff_rejected;
  6886. ui_stale = total_diff_stale;
  6887. }
  6888. else
  6889. {
  6890. ui_accepted = total_accepted;
  6891. ui_rejected = total_rejected;
  6892. ui_stale = total_stale;
  6893. }
  6894. #ifdef HAVE_CURSES
  6895. if (curses_active_locked()) {
  6896. float temp = 0;
  6897. struct cgpu_info *proc, *last_working_dev = NULL;
  6898. int i, working_devs = 0, working_procs = 0;
  6899. int divx;
  6900. bool bad = false;
  6901. // Find the highest temperature of all processors
  6902. for (i = 0; i < total_devices; ++i)
  6903. {
  6904. proc = get_devices(i);
  6905. if (proc->temp > temp)
  6906. temp = proc->temp;
  6907. if (unlikely(proc->deven == DEV_DISABLED))
  6908. ; // Just need to block it off from both conditions
  6909. else
  6910. if (likely(proc->status == LIFE_WELL && proc->deven == DEV_ENABLED))
  6911. {
  6912. if (proc->rolling > .1)
  6913. {
  6914. ++working_procs;
  6915. if (proc->device != last_working_dev)
  6916. {
  6917. ++working_devs;
  6918. last_working_dev = proc->device;
  6919. }
  6920. }
  6921. }
  6922. else
  6923. bad = true;
  6924. }
  6925. if (working_devs == working_procs)
  6926. snprintf(statusline, sizeof(statusline), "%s%d ", bad ? U8_BAD_START : "", working_devs);
  6927. else
  6928. snprintf(statusline, sizeof(statusline), "%s%d/%d ", bad ? U8_BAD_START : "", working_devs, working_procs);
  6929. divx = 7;
  6930. if (opt_show_procs && !opt_compact)
  6931. ++divx;
  6932. if (bad)
  6933. {
  6934. divx += sizeof(U8_BAD_START)-1;
  6935. strcpy(&statusline[divx], U8_BAD_END);
  6936. divx += sizeof(U8_BAD_END)-1;
  6937. }
  6938. temperature_column(&statusline[divx], sizeof(statusline)-divx, true, &temp);
  6939. format_statline(statusline, sizeof(statusline),
  6940. cHr, aHr,
  6941. uHr,
  6942. ui_accepted,
  6943. ui_rejected,
  6944. ui_stale,
  6945. total_diff_rejected + total_diff_stale, total_diff_accepted,
  6946. hw_errors,
  6947. total_bad_diff1, total_bad_diff1 + total_diff1);
  6948. unlock_curses();
  6949. }
  6950. #endif
  6951. // Add a space
  6952. memmove(&uHr[6], &uHr[5], strlen(&uHr[5]) + 1);
  6953. uHr[5] = ' ';
  6954. percentf4(rejpcbuf, sizeof(rejpcbuf), total_diff_rejected + total_diff_stale, total_diff_accepted);
  6955. percentf4(bnbuf, sizeof(bnbuf), total_bad_diff1, total_diff1);
  6956. snprintf(logstatusline, sizeof(logstatusline),
  6957. "%s%ds:%s avg:%s u:%s | A:%d R:%d+%d(%s) HW:%d/%s",
  6958. want_per_device_stats ? "ALL " : "",
  6959. opt_log_interval,
  6960. cHr, aHr,
  6961. uHr,
  6962. ui_accepted,
  6963. ui_rejected,
  6964. ui_stale,
  6965. rejpcbuf,
  6966. hw_errors,
  6967. bnbuf
  6968. );
  6969. local_mhashes_done = 0;
  6970. out_unlock:
  6971. mutex_unlock(&hash_lock);
  6972. if (showlog) {
  6973. if (!curses_active) {
  6974. printf("%s \r", logstatusline);
  6975. fflush(stdout);
  6976. } else
  6977. applog(LOG_INFO, "%s", logstatusline);
  6978. }
  6979. }
  6980. void hashmeter2(struct thr_info *thr)
  6981. {
  6982. struct timeval tv_now, tv_elapsed;
  6983. timerclear(&thr->tv_hashes_done);
  6984. cgtime(&tv_now);
  6985. timersub(&tv_now, &thr->tv_lastupdate, &tv_elapsed);
  6986. /* Update the hashmeter at most 5 times per second */
  6987. if ((thr->hashes_done && (tv_elapsed.tv_sec > 0 || tv_elapsed.tv_usec > 200000)) ||
  6988. tv_elapsed.tv_sec >= opt_log_interval) {
  6989. hashmeter(thr->id, &tv_elapsed, thr->hashes_done);
  6990. thr->hashes_done = 0;
  6991. thr->tv_lastupdate = tv_now;
  6992. }
  6993. }
  6994. static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
  6995. struct stratum_share *sshare)
  6996. {
  6997. struct work *work = sshare->work;
  6998. share_result(val, res_val, err_val, work, false, "");
  6999. }
  7000. /* Parses stratum json responses and tries to find the id that the request
  7001. * matched to and treat it accordingly. */
  7002. bool parse_stratum_response(struct pool *pool, char *s)
  7003. {
  7004. json_t *val = NULL, *err_val, *res_val, *id_val;
  7005. struct stratum_share *sshare;
  7006. json_error_t err;
  7007. bool ret = false;
  7008. int id;
  7009. val = JSON_LOADS(s, &err);
  7010. if (!val) {
  7011. applog(LOG_INFO, "JSON decode failed(%d): %s", err.line, err.text);
  7012. goto out;
  7013. }
  7014. res_val = json_object_get(val, "result");
  7015. err_val = json_object_get(val, "error");
  7016. id_val = json_object_get(val, "id");
  7017. if (json_is_null(id_val) || !id_val) {
  7018. char *ss;
  7019. if (err_val)
  7020. ss = json_dumps(err_val, JSON_INDENT(3));
  7021. else
  7022. ss = strdup("(unknown reason)");
  7023. applog(LOG_INFO, "JSON-RPC non method decode failed: %s", ss);
  7024. free(ss);
  7025. goto out;
  7026. }
  7027. if (!json_is_integer(id_val)) {
  7028. if (json_is_string(id_val)
  7029. && !strncmp(json_string_value(id_val), "txlist", 6))
  7030. {
  7031. const bool is_array = json_is_array(res_val);
  7032. applog(LOG_DEBUG, "Received %s for pool %u job %s",
  7033. is_array ? "transaction list" : "no-transaction-list response",
  7034. pool->pool_no, &json_string_value(id_val)[6]);
  7035. if (!is_array)
  7036. {
  7037. // No need to wait for a timeout
  7038. timer_unset(&pool->swork.tv_transparency);
  7039. pool_set_opaque(pool, true);
  7040. goto fishy;
  7041. }
  7042. if (strcmp(json_string_value(id_val) + 6, pool->swork.job_id))
  7043. // We only care about a transaction list for the current job id
  7044. goto fishy;
  7045. // Check that the transactions actually hash to the merkle links
  7046. {
  7047. unsigned maxtx = 1 << pool->swork.merkles;
  7048. unsigned mintx = maxtx >> 1;
  7049. --maxtx;
  7050. unsigned acttx = (unsigned)json_array_size(res_val);
  7051. if (acttx < mintx || acttx > maxtx) {
  7052. applog(LOG_WARNING, "Pool %u is sending mismatched block contents to us (%u is not %u-%u)",
  7053. pool->pool_no, acttx, mintx, maxtx);
  7054. goto fishy;
  7055. }
  7056. // TODO: Check hashes match actual merkle links
  7057. }
  7058. pool_set_opaque(pool, false);
  7059. timer_unset(&pool->swork.tv_transparency);
  7060. fishy:
  7061. ret = true;
  7062. }
  7063. goto out;
  7064. }
  7065. id = json_integer_value(id_val);
  7066. mutex_lock(&sshare_lock);
  7067. HASH_FIND_INT(stratum_shares, &id, sshare);
  7068. if (sshare)
  7069. HASH_DEL(stratum_shares, sshare);
  7070. mutex_unlock(&sshare_lock);
  7071. if (!sshare) {
  7072. double pool_diff;
  7073. /* Since the share is untracked, we can only guess at what the
  7074. * work difficulty is based on the current pool diff. */
  7075. cg_rlock(&pool->data_lock);
  7076. pool_diff = pool->swork.diff;
  7077. cg_runlock(&pool->data_lock);
  7078. if (json_is_true(res_val)) {
  7079. applog(LOG_NOTICE, "Accepted untracked stratum share from pool %d", pool->pool_no);
  7080. /* We don't know what device this came from so we can't
  7081. * attribute the work to the relevant cgpu */
  7082. mutex_lock(&stats_lock);
  7083. total_accepted++;
  7084. pool->accepted++;
  7085. total_diff_accepted += pool_diff;
  7086. pool->diff_accepted += pool_diff;
  7087. mutex_unlock(&stats_lock);
  7088. } else {
  7089. applog(LOG_NOTICE, "Rejected untracked stratum share from pool %d", pool->pool_no);
  7090. mutex_lock(&stats_lock);
  7091. total_rejected++;
  7092. pool->rejected++;
  7093. total_diff_rejected += pool_diff;
  7094. pool->diff_rejected += pool_diff;
  7095. mutex_unlock(&stats_lock);
  7096. }
  7097. goto out;
  7098. }
  7099. else {
  7100. mutex_lock(&submitting_lock);
  7101. --total_submitting;
  7102. mutex_unlock(&submitting_lock);
  7103. }
  7104. stratum_share_result(val, res_val, err_val, sshare);
  7105. free_work(sshare->work);
  7106. free(sshare);
  7107. ret = true;
  7108. out:
  7109. if (val)
  7110. json_decref(val);
  7111. return ret;
  7112. }
  7113. static void shutdown_stratum(struct pool *pool)
  7114. {
  7115. // Shut down Stratum as if we never had it
  7116. pool->stratum_active = false;
  7117. pool->stratum_init = false;
  7118. pool->has_stratum = false;
  7119. shutdown(pool->sock, SHUT_RDWR);
  7120. free(pool->stratum_url);
  7121. if (pool->sockaddr_url == pool->stratum_url)
  7122. pool->sockaddr_url = NULL;
  7123. pool->stratum_url = NULL;
  7124. }
  7125. void clear_stratum_shares(struct pool *pool)
  7126. {
  7127. int my_mining_threads = mining_threads; // Cached outside of locking
  7128. struct stratum_share *sshare, *tmpshare;
  7129. struct work *work;
  7130. struct cgpu_info *cgpu;
  7131. double diff_cleared = 0;
  7132. double thr_diff_cleared[my_mining_threads];
  7133. int cleared = 0;
  7134. int thr_cleared[my_mining_threads];
  7135. // NOTE: This is per-thread rather than per-device to avoid getting devices lock in stratum_shares loop
  7136. for (int i = 0; i < my_mining_threads; ++i)
  7137. {
  7138. thr_diff_cleared[i] = 0;
  7139. thr_cleared[i] = 0;
  7140. }
  7141. mutex_lock(&sshare_lock);
  7142. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7143. work = sshare->work;
  7144. if (sshare->work->pool == pool && work->thr_id < my_mining_threads) {
  7145. HASH_DEL(stratum_shares, sshare);
  7146. sharelog("disconnect", work);
  7147. diff_cleared += sshare->work->work_difficulty;
  7148. thr_diff_cleared[work->thr_id] += work->work_difficulty;
  7149. ++thr_cleared[work->thr_id];
  7150. free_work(sshare->work);
  7151. free(sshare);
  7152. cleared++;
  7153. }
  7154. }
  7155. mutex_unlock(&sshare_lock);
  7156. if (cleared) {
  7157. applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
  7158. mutex_lock(&stats_lock);
  7159. pool->stale_shares += cleared;
  7160. total_stale += cleared;
  7161. pool->diff_stale += diff_cleared;
  7162. total_diff_stale += diff_cleared;
  7163. for (int i = 0; i < my_mining_threads; ++i)
  7164. if (thr_cleared[i])
  7165. {
  7166. cgpu = get_thr_cgpu(i);
  7167. cgpu->diff_stale += thr_diff_cleared[i];
  7168. cgpu->stale += thr_cleared[i];
  7169. }
  7170. mutex_unlock(&stats_lock);
  7171. mutex_lock(&submitting_lock);
  7172. total_submitting -= cleared;
  7173. mutex_unlock(&submitting_lock);
  7174. }
  7175. }
  7176. static void resubmit_stratum_shares(struct pool *pool)
  7177. {
  7178. struct stratum_share *sshare, *tmpshare;
  7179. struct work *work;
  7180. unsigned resubmitted = 0;
  7181. mutex_lock(&sshare_lock);
  7182. mutex_lock(&submitting_lock);
  7183. HASH_ITER(hh, stratum_shares, sshare, tmpshare) {
  7184. if (sshare->work->pool != pool)
  7185. continue;
  7186. HASH_DEL(stratum_shares, sshare);
  7187. work = sshare->work;
  7188. DL_APPEND(submit_waiting, work);
  7189. free(sshare);
  7190. ++resubmitted;
  7191. }
  7192. mutex_unlock(&submitting_lock);
  7193. mutex_unlock(&sshare_lock);
  7194. if (resubmitted) {
  7195. notifier_wake(submit_waiting_notifier);
  7196. applog(LOG_DEBUG, "Resubmitting %u shares due to stratum disconnect on pool %u", resubmitted, pool->pool_no);
  7197. }
  7198. }
  7199. static void clear_pool_work(struct pool *pool)
  7200. {
  7201. struct work *work, *tmp;
  7202. int cleared = 0;
  7203. mutex_lock(stgd_lock);
  7204. HASH_ITER(hh, staged_work, work, tmp) {
  7205. if (work->pool == pool) {
  7206. HASH_DEL(staged_work, work);
  7207. free_work(work);
  7208. cleared++;
  7209. staged_full = false;
  7210. }
  7211. }
  7212. mutex_unlock(stgd_lock);
  7213. }
  7214. static int cp_prio(void)
  7215. {
  7216. int prio;
  7217. cg_rlock(&control_lock);
  7218. prio = currentpool->prio;
  7219. cg_runlock(&control_lock);
  7220. return prio;
  7221. }
  7222. /* We only need to maintain a secondary pool connection when we need the
  7223. * capacity to get work from the backup pools while still on the primary */
  7224. static bool cnx_needed(struct pool *pool)
  7225. {
  7226. struct pool *cp;
  7227. if (pool->enabled != POOL_ENABLED)
  7228. return false;
  7229. /* Idle stratum pool needs something to kick it alive again */
  7230. if (pool->has_stratum && pool->idle)
  7231. return true;
  7232. /* Getwork pools without opt_fail_only need backup pools up to be able
  7233. * to leak shares */
  7234. cp = current_pool();
  7235. if (pool_actively_desired(pool, cp))
  7236. return true;
  7237. if (!pool_localgen(cp) && (!opt_fail_only || !cp->hdr_path))
  7238. return true;
  7239. /* Keep the connection open to allow any stray shares to be submitted
  7240. * on switching pools for 2 minutes. */
  7241. if (timer_elapsed(&pool->tv_last_work_time, NULL) < 120)
  7242. return true;
  7243. /* If the pool has only just come to life and is higher priority than
  7244. * the current pool keep the connection open so we can fail back to
  7245. * it. */
  7246. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7247. return true;
  7248. if (pool_unworkable(cp))
  7249. return true;
  7250. /* We've run out of work, bring anything back to life. */
  7251. if (no_work)
  7252. return true;
  7253. return false;
  7254. }
  7255. static void wait_lpcurrent(struct pool *pool);
  7256. static void pool_resus(struct pool *pool);
  7257. static void gen_stratum_work(struct pool *pool, struct work *work);
  7258. static void stratum_resumed(struct pool *pool)
  7259. {
  7260. if (!pool->stratum_notify)
  7261. return;
  7262. if (pool_tclear(pool, &pool->idle)) {
  7263. applog(LOG_INFO, "Stratum connection to pool %d resumed", pool->pool_no);
  7264. pool_resus(pool);
  7265. }
  7266. }
  7267. static bool supports_resume(struct pool *pool)
  7268. {
  7269. bool ret;
  7270. cg_rlock(&pool->data_lock);
  7271. ret = (pool->sessionid != NULL);
  7272. cg_runlock(&pool->data_lock);
  7273. return ret;
  7274. }
  7275. /* One stratum thread per pool that has stratum waits on the socket checking
  7276. * for new messages and for the integrity of the socket connection. We reset
  7277. * the connection based on the integrity of the receive side only as the send
  7278. * side will eventually expire data it fails to send. */
  7279. static void *stratum_thread(void *userdata)
  7280. {
  7281. struct pool *pool = (struct pool *)userdata;
  7282. pthread_detach(pthread_self());
  7283. char threadname[20];
  7284. snprintf(threadname, 20, "stratum%u", pool->pool_no);
  7285. RenameThread(threadname);
  7286. srand(time(NULL) + (intptr_t)userdata);
  7287. while (42) {
  7288. struct timeval timeout;
  7289. int sel_ret;
  7290. fd_set rd;
  7291. char *s;
  7292. int sock;
  7293. if (unlikely(!pool->has_stratum))
  7294. break;
  7295. /* Check to see whether we need to maintain this connection
  7296. * indefinitely or just bring it up when we switch to this
  7297. * pool */
  7298. while (true)
  7299. {
  7300. sock = pool->sock;
  7301. if (sock == INVSOCK)
  7302. applog(LOG_DEBUG, "Pool %u: Invalid socket, suspending",
  7303. pool->pool_no);
  7304. else
  7305. if (!sock_full(pool) && !cnx_needed(pool))
  7306. applog(LOG_DEBUG, "Pool %u: Connection not needed, suspending",
  7307. pool->pool_no);
  7308. else
  7309. break;
  7310. suspend_stratum(pool);
  7311. clear_stratum_shares(pool);
  7312. clear_pool_work(pool);
  7313. wait_lpcurrent(pool);
  7314. if (!restart_stratum(pool)) {
  7315. pool_died(pool);
  7316. while (!restart_stratum(pool)) {
  7317. if (pool->removed)
  7318. goto out;
  7319. cgsleep_ms(30000);
  7320. }
  7321. }
  7322. }
  7323. FD_ZERO(&rd);
  7324. FD_SET(sock, &rd);
  7325. timeout.tv_sec = 120;
  7326. timeout.tv_usec = 0;
  7327. /* If we fail to receive any notify messages for 2 minutes we
  7328. * assume the connection has been dropped and treat this pool
  7329. * as dead */
  7330. if (!sock_full(pool) && (sel_ret = select(sock + 1, &rd, NULL, NULL, &timeout)) < 1) {
  7331. applog(LOG_DEBUG, "Stratum select failed on pool %d with value %d", pool->pool_no, sel_ret);
  7332. s = NULL;
  7333. } else
  7334. s = recv_line(pool);
  7335. if (!s) {
  7336. if (!pool->has_stratum)
  7337. break;
  7338. applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
  7339. pool->getfail_occasions++;
  7340. total_go++;
  7341. mutex_lock(&pool->stratum_lock);
  7342. pool->stratum_active = pool->stratum_notify = false;
  7343. pool->sock = INVSOCK;
  7344. mutex_unlock(&pool->stratum_lock);
  7345. /* If the socket to our stratum pool disconnects, all
  7346. * submissions need to be discarded or resent. */
  7347. if (!supports_resume(pool))
  7348. clear_stratum_shares(pool);
  7349. else
  7350. resubmit_stratum_shares(pool);
  7351. clear_pool_work(pool);
  7352. if (pool == current_pool())
  7353. restart_threads();
  7354. if (restart_stratum(pool))
  7355. continue;
  7356. shutdown_stratum(pool);
  7357. pool_died(pool);
  7358. break;
  7359. }
  7360. /* Check this pool hasn't died while being a backup pool and
  7361. * has not had its idle flag cleared */
  7362. stratum_resumed(pool);
  7363. if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
  7364. applog(LOG_INFO, "Unknown stratum msg: %s", s);
  7365. free(s);
  7366. if (pool->swork.clean) {
  7367. struct work *work = make_work();
  7368. /* Generate a single work item to update the current
  7369. * block database */
  7370. pool->swork.clean = false;
  7371. gen_stratum_work(pool, work);
  7372. /* Try to extract block height from coinbase scriptSig */
  7373. uint8_t *bin_height = &bytes_buf(&pool->swork.coinbase)[4 /*version*/ + 1 /*txin count*/ + 36 /*prevout*/ + 1 /*scriptSig len*/ + 1 /*push opcode*/];
  7374. unsigned char cb_height_sz;
  7375. cb_height_sz = bin_height[-1];
  7376. if (cb_height_sz == 3) {
  7377. // FIXME: The block number will overflow this by AD 2173
  7378. uint32_t block_id = ((uint32_t*)work->data)[1];
  7379. uint32_t height = 0;
  7380. memcpy(&height, bin_height, 3);
  7381. height = le32toh(height);
  7382. have_block_height(block_id, height);
  7383. }
  7384. ++pool->work_restart_id;
  7385. pool_update_work_restart_time(pool);
  7386. if (test_work_current(work)) {
  7387. /* Only accept a work update if this stratum
  7388. * connection is from the current pool */
  7389. struct pool * const cp = current_pool();
  7390. if (pool == cp)
  7391. restart_threads();
  7392. applog(
  7393. ((!opt_quiet_work_updates) && pool_actively_in_use(pool, cp) ? LOG_NOTICE : LOG_DEBUG),
  7394. "Stratum from pool %d requested work update", pool->pool_no);
  7395. } else
  7396. applog(LOG_NOTICE, "Stratum from pool %d detected new block", pool->pool_no);
  7397. free_work(work);
  7398. }
  7399. if (timer_passed(&pool->swork.tv_transparency, NULL)) {
  7400. // More than 4 timmills past since requested transactions
  7401. timer_unset(&pool->swork.tv_transparency);
  7402. pool_set_opaque(pool, true);
  7403. }
  7404. }
  7405. out:
  7406. return NULL;
  7407. }
  7408. static void init_stratum_thread(struct pool *pool)
  7409. {
  7410. have_longpoll = true;
  7411. if (unlikely(pthread_create(&pool->stratum_thread, NULL, stratum_thread, (void *)pool)))
  7412. quit(1, "Failed to create stratum thread");
  7413. }
  7414. static void *longpoll_thread(void *userdata);
  7415. static bool stratum_works(struct pool *pool)
  7416. {
  7417. applog(LOG_INFO, "Testing pool %d stratum %s", pool->pool_no, pool->stratum_url);
  7418. if (!extract_sockaddr(pool->stratum_url, &pool->sockaddr_url, &pool->stratum_port))
  7419. return false;
  7420. if (pool->stratum_active)
  7421. return true;
  7422. if (!initiate_stratum(pool))
  7423. return false;
  7424. return true;
  7425. }
  7426. static bool pool_active(struct pool *pool, bool pinging)
  7427. {
  7428. struct timeval tv_now, tv_getwork, tv_getwork_reply;
  7429. bool ret = false;
  7430. json_t *val;
  7431. CURL *curl;
  7432. int rolltime;
  7433. char *rpc_req;
  7434. struct work *work;
  7435. enum pool_protocol proto;
  7436. if (pool->stratum_init)
  7437. return pool->stratum_active;
  7438. timer_set_now(&tv_now);
  7439. if (timer_isset(&pool->tv_last_work_time) && timer_elapsed(&pool->tv_last_work_time, &tv_now) < 60)
  7440. return true;
  7441. if (pool->idle && timer_elapsed(&pool->tv_idle, &tv_now) < 30)
  7442. return false;
  7443. applog(LOG_INFO, "Testing pool %s", pool->rpc_url);
  7444. /* This is the central point we activate stratum when we can */
  7445. curl = curl_easy_init();
  7446. if (unlikely(!curl)) {
  7447. applog(LOG_ERR, "CURL initialisation failed");
  7448. return false;
  7449. }
  7450. if (!(want_gbt || want_getwork))
  7451. goto nohttp;
  7452. work = make_work();
  7453. /* Probe for GBT support on first pass */
  7454. proto = want_gbt ? PLP_GETBLOCKTEMPLATE : PLP_GETWORK;
  7455. tryagain:
  7456. rpc_req = prepare_rpc_req_probe(work, proto, NULL);
  7457. work->pool = pool;
  7458. if (!rpc_req)
  7459. goto out;
  7460. pool->probed = false;
  7461. cgtime(&tv_getwork);
  7462. val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass, rpc_req,
  7463. true, false, &rolltime, pool, false);
  7464. cgtime(&tv_getwork_reply);
  7465. free(rpc_req);
  7466. /* Detect if a http getwork pool has an X-Stratum header at startup,
  7467. * and if so, switch to that in preference to getwork if it works */
  7468. if (pool->stratum_url && want_stratum && pool_may_redirect_to(pool, pool->stratum_url) && (pool->has_stratum || stratum_works(pool))) {
  7469. if (!pool->has_stratum) {
  7470. applog(LOG_NOTICE, "Switching pool %d %s to %s", pool->pool_no, pool->rpc_url, pool->stratum_url);
  7471. if (!pool->rpc_url)
  7472. pool->rpc_url = strdup(pool->stratum_url);
  7473. pool->has_stratum = true;
  7474. }
  7475. free_work(work);
  7476. if (val)
  7477. json_decref(val);
  7478. retry_stratum:
  7479. curl_easy_cleanup(curl);
  7480. /* We create the stratum thread for each pool just after
  7481. * successful authorisation. Once the init flag has been set
  7482. * we never unset it and the stratum thread is responsible for
  7483. * setting/unsetting the active flag */
  7484. bool init = pool_tset(pool, &pool->stratum_init);
  7485. if (!init) {
  7486. bool ret = initiate_stratum(pool) && auth_stratum(pool);
  7487. if (ret)
  7488. {
  7489. detect_algo = 2;
  7490. init_stratum_thread(pool);
  7491. }
  7492. else
  7493. pool_tclear(pool, &pool->stratum_init);
  7494. return ret;
  7495. }
  7496. return pool->stratum_active;
  7497. }
  7498. else if (pool->has_stratum)
  7499. shutdown_stratum(pool);
  7500. if (val) {
  7501. bool rc;
  7502. json_t *res;
  7503. res = json_object_get(val, "result");
  7504. if ((!json_is_object(res)) || (proto == PLP_GETBLOCKTEMPLATE && !json_object_get(res, "bits")))
  7505. goto badwork;
  7506. work->rolltime = rolltime;
  7507. rc = work_decode(pool, work, val);
  7508. if (rc) {
  7509. applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
  7510. pool->pool_no, pool->rpc_url);
  7511. work->pool = pool;
  7512. copy_time(&work->tv_getwork, &tv_getwork);
  7513. copy_time(&work->tv_getwork_reply, &tv_getwork_reply);
  7514. work->getwork_mode = GETWORK_MODE_TESTPOOL;
  7515. calc_diff(work, 0);
  7516. update_last_work(work);
  7517. applog(LOG_DEBUG, "Pushing pooltest work to base pool");
  7518. stage_work(work);
  7519. total_getworks++;
  7520. pool->getwork_requested++;
  7521. ret = true;
  7522. cgtime(&pool->tv_idle);
  7523. } else {
  7524. badwork:
  7525. json_decref(val);
  7526. applog(LOG_DEBUG, "Successfully retrieved but FAILED to decipher work from pool %u %s",
  7527. pool->pool_no, pool->rpc_url);
  7528. pool->proto = proto = pool_protocol_fallback(proto);
  7529. if (PLP_NONE != proto)
  7530. goto tryagain;
  7531. free_work(work);
  7532. goto out;
  7533. }
  7534. json_decref(val);
  7535. if (proto != pool->proto) {
  7536. pool->proto = proto;
  7537. applog(LOG_INFO, "Selected %s protocol for pool %u", pool_protocol_name(proto), pool->pool_no);
  7538. }
  7539. if (pool->lp_url)
  7540. goto out;
  7541. /* Decipher the longpoll URL, if any, and store it in ->lp_url */
  7542. const struct blktmpl_longpoll_req *lp;
  7543. if (work->tmpl && (lp = blktmpl_get_longpoll(work->tmpl))) {
  7544. // NOTE: work_decode takes care of lp id
  7545. pool->lp_url = lp->uri ? absolute_uri(lp->uri, pool->rpc_url) : pool->rpc_url;
  7546. if (!pool->lp_url)
  7547. {
  7548. ret = false;
  7549. goto out;
  7550. }
  7551. pool->lp_proto = PLP_GETBLOCKTEMPLATE;
  7552. }
  7553. else
  7554. if (pool->hdr_path && want_getwork) {
  7555. pool->lp_url = absolute_uri(pool->hdr_path, pool->rpc_url);
  7556. if (!pool->lp_url)
  7557. {
  7558. ret = false;
  7559. goto out;
  7560. }
  7561. pool->lp_proto = PLP_GETWORK;
  7562. } else
  7563. pool->lp_url = NULL;
  7564. if (want_longpoll && !pool->lp_started) {
  7565. pool->lp_started = true;
  7566. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  7567. quit(1, "Failed to create pool longpoll thread");
  7568. }
  7569. } else if (PLP_NONE != (proto = pool_protocol_fallback(proto))) {
  7570. pool->proto = proto;
  7571. goto tryagain;
  7572. } else {
  7573. free_work(work);
  7574. nohttp:
  7575. /* If we failed to parse a getwork, this could be a stratum
  7576. * url without the prefix stratum+tcp:// so let's check it */
  7577. if (extract_sockaddr(pool->rpc_url, &pool->sockaddr_url, &pool->stratum_port) && initiate_stratum(pool)) {
  7578. pool->has_stratum = true;
  7579. goto retry_stratum;
  7580. }
  7581. applog(LOG_DEBUG, "FAILED to retrieve work from pool %u %s",
  7582. pool->pool_no, pool->rpc_url);
  7583. if (!pinging)
  7584. applog(LOG_WARNING, "Pool %u slow/down or URL or credentials invalid", pool->pool_no);
  7585. }
  7586. out:
  7587. curl_easy_cleanup(curl);
  7588. return ret;
  7589. }
  7590. static void pool_resus(struct pool *pool)
  7591. {
  7592. if (pool_strategy == POOL_FAILOVER && pool->prio < cp_prio())
  7593. applog(LOG_WARNING, "Pool %d %s alive, testing stability", pool->pool_no, pool->rpc_url);
  7594. else
  7595. applog(LOG_INFO, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  7596. }
  7597. static struct work *hash_pop(void)
  7598. {
  7599. struct work *work = NULL, *tmp;
  7600. int hc;
  7601. struct timespec ts;
  7602. retry:
  7603. mutex_lock(stgd_lock);
  7604. while (!HASH_COUNT(staged_work))
  7605. {
  7606. if (unlikely(staged_full))
  7607. {
  7608. if (likely(opt_queue < 10 + mining_threads))
  7609. {
  7610. ++opt_queue;
  7611. applog(LOG_WARNING, "Staged work underrun; increasing queue minimum to %d", opt_queue);
  7612. }
  7613. else
  7614. applog(LOG_WARNING, "Staged work underrun; not automatically increasing above %d", opt_queue);
  7615. staged_full = false; // Let it fill up before triggering an underrun again
  7616. no_work = true;
  7617. }
  7618. ts = (struct timespec){ .tv_sec = opt_log_interval, };
  7619. pthread_cond_signal(&gws_cond);
  7620. if (ETIMEDOUT == pthread_cond_timedwait(&getq->cond, stgd_lock, &ts))
  7621. {
  7622. run_cmd(cmd_idle);
  7623. pthread_cond_signal(&gws_cond);
  7624. pthread_cond_wait(&getq->cond, stgd_lock);
  7625. }
  7626. }
  7627. no_work = false;
  7628. hc = HASH_COUNT(staged_work);
  7629. /* Find clone work if possible, to allow masters to be reused */
  7630. if (hc > staged_rollable) {
  7631. HASH_ITER(hh, staged_work, work, tmp) {
  7632. if (!work_rollable(work))
  7633. break;
  7634. }
  7635. } else
  7636. work = staged_work;
  7637. if (can_roll(work) && should_roll(work))
  7638. {
  7639. // Instead of consuming it, force it to be cloned and grab the clone
  7640. mutex_unlock(stgd_lock);
  7641. clone_available();
  7642. goto retry;
  7643. }
  7644. HASH_DEL(staged_work, work);
  7645. if (work_rollable(work))
  7646. staged_rollable--;
  7647. /* Signal the getwork scheduler to look for more work */
  7648. pthread_cond_signal(&gws_cond);
  7649. /* Signal hash_pop again in case there are mutliple hash_pop waiters */
  7650. pthread_cond_signal(&getq->cond);
  7651. mutex_unlock(stgd_lock);
  7652. work->pool->last_work_time = time(NULL);
  7653. cgtime(&work->pool->tv_last_work_time);
  7654. return work;
  7655. }
  7656. /* Clones work by rolling it if possible, and returning a clone instead of the
  7657. * original work item which gets staged again to possibly be rolled again in
  7658. * the future */
  7659. static struct work *clone_work(struct work *work)
  7660. {
  7661. int mrs = mining_threads + opt_queue - total_staged();
  7662. struct work *work_clone;
  7663. bool cloned;
  7664. if (mrs < 1)
  7665. return work;
  7666. cloned = false;
  7667. work_clone = make_clone(work);
  7668. while (mrs-- > 0 && can_roll(work) && should_roll(work)) {
  7669. applog(LOG_DEBUG, "Pushing rolled converted work to stage thread");
  7670. stage_work(work_clone);
  7671. roll_work(work);
  7672. work_clone = make_clone(work);
  7673. /* Roll it again to prevent duplicates should this be used
  7674. * directly later on */
  7675. roll_work(work);
  7676. cloned = true;
  7677. }
  7678. if (cloned) {
  7679. stage_work(work);
  7680. return work_clone;
  7681. }
  7682. free_work(work_clone);
  7683. return work;
  7684. }
  7685. void gen_hash(unsigned char *data, unsigned char *hash, int len)
  7686. {
  7687. unsigned char hash1[32];
  7688. sha256(data, len, hash1);
  7689. sha256(hash1, 32, hash);
  7690. }
  7691. /* Diff 1 is a 256 bit unsigned integer of
  7692. * 0x00000000ffff0000000000000000000000000000000000000000000000000000
  7693. * so we use a big endian 64 bit unsigned integer centred on the 5th byte to
  7694. * cover a huge range of difficulty targets, though not all 256 bits' worth */
  7695. static void bdiff_target_leadzero(unsigned char *target, double diff)
  7696. {
  7697. uint64_t *data64, h64;
  7698. double d64;
  7699. d64 = diffone;
  7700. d64 /= diff;
  7701. d64 = ceil(d64);
  7702. h64 = d64;
  7703. memset(target, 0, 32);
  7704. if (d64 < 18446744073709551616.0) {
  7705. unsigned char *rtarget = target;
  7706. memset(rtarget, 0, 32);
  7707. if (opt_scrypt)
  7708. data64 = (uint64_t *)(rtarget + 2);
  7709. else
  7710. data64 = (uint64_t *)(rtarget + 4);
  7711. *data64 = htobe64(h64);
  7712. } else {
  7713. /* Support for the classic all FFs just-below-1 diff */
  7714. if (opt_scrypt)
  7715. memset(&target[2], 0xff, 30);
  7716. else
  7717. memset(&target[4], 0xff, 28);
  7718. }
  7719. }
  7720. void set_target(unsigned char *dest_target, double diff)
  7721. {
  7722. unsigned char rtarget[32];
  7723. bdiff_target_leadzero(rtarget, diff);
  7724. swab256(dest_target, rtarget);
  7725. if (opt_debug) {
  7726. char htarget[65];
  7727. bin2hex(htarget, rtarget, 32);
  7728. applog(LOG_DEBUG, "Generated target %s", htarget);
  7729. }
  7730. }
  7731. void stratum_work_cpy(struct stratum_work * const dst, const struct stratum_work * const src)
  7732. {
  7733. *dst = *src;
  7734. dst->job_id = strdup(src->job_id);
  7735. bytes_cpy(&dst->coinbase, &src->coinbase);
  7736. bytes_cpy(&dst->merkle_bin, &src->merkle_bin);
  7737. }
  7738. void stratum_work_clean(struct stratum_work * const swork)
  7739. {
  7740. free(swork->job_id);
  7741. bytes_free(&swork->coinbase);
  7742. bytes_free(&swork->merkle_bin);
  7743. }
  7744. /* Generates stratum based work based on the most recent notify information
  7745. * from the pool. This will keep generating work while a pool is down so we use
  7746. * other means to detect when the pool has died in stratum_thread */
  7747. static void gen_stratum_work(struct pool *pool, struct work *work)
  7748. {
  7749. clean_work(work);
  7750. cg_wlock(&pool->data_lock);
  7751. pool->swork.data_lock_p = &pool->data_lock;
  7752. bytes_resize(&work->nonce2, pool->n2size);
  7753. if (pool->nonce2sz < pool->n2size)
  7754. memset(&bytes_buf(&work->nonce2)[pool->nonce2sz], 0, pool->n2size - pool->nonce2sz);
  7755. memcpy(bytes_buf(&work->nonce2),
  7756. #ifdef WORDS_BIGENDIAN
  7757. // NOTE: On big endian, the most significant bits are stored at the end, so skip the LSBs
  7758. &((char*)&pool->nonce2)[pool->nonce2off],
  7759. #else
  7760. &pool->nonce2,
  7761. #endif
  7762. pool->nonce2sz);
  7763. pool->nonce2++;
  7764. work->pool = pool;
  7765. work->work_restart_id = work->pool->work_restart_id;
  7766. gen_stratum_work2(work, &pool->swork, pool->nonce1);
  7767. cgtime(&work->tv_staged);
  7768. }
  7769. void gen_stratum_work2(struct work *work, struct stratum_work *swork, const char *nonce1)
  7770. {
  7771. unsigned char *coinbase, merkle_root[32], merkle_sha[64];
  7772. uint8_t *merkle_bin;
  7773. uint32_t *data32, *swap32;
  7774. int i;
  7775. /* Generate coinbase */
  7776. coinbase = bytes_buf(&swork->coinbase);
  7777. memcpy(&coinbase[swork->nonce2_offset], bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7778. /* Downgrade to a read lock to read off the variables */
  7779. if (swork->data_lock_p)
  7780. cg_dwlock(swork->data_lock_p);
  7781. /* Generate merkle root */
  7782. gen_hash(coinbase, merkle_root, bytes_len(&swork->coinbase));
  7783. memcpy(merkle_sha, merkle_root, 32);
  7784. merkle_bin = bytes_buf(&swork->merkle_bin);
  7785. for (i = 0; i < swork->merkles; ++i, merkle_bin += 32) {
  7786. memcpy(merkle_sha + 32, merkle_bin, 32);
  7787. gen_hash(merkle_sha, merkle_root, 64);
  7788. memcpy(merkle_sha, merkle_root, 32);
  7789. }
  7790. data32 = (uint32_t *)merkle_sha;
  7791. swap32 = (uint32_t *)merkle_root;
  7792. flip32(swap32, data32);
  7793. memcpy(&work->data[0], swork->header1, 36);
  7794. memcpy(&work->data[36], merkle_root, 32);
  7795. *((uint32_t*)&work->data[68]) = htobe32(swork->ntime + timer_elapsed(&swork->tv_received, NULL));
  7796. memcpy(&work->data[72], swork->diffbits, 4);
  7797. memset(&work->data[76], 0, 4); // nonce
  7798. memcpy(&work->data[80], workpadding_bin, 48);
  7799. /* Store the stratum work diff to check it still matches the pool's
  7800. * stratum diff when submitting shares */
  7801. work->sdiff = swork->diff;
  7802. /* Copy parameters required for share submission */
  7803. work->job_id = strdup(swork->job_id);
  7804. work->nonce1 = strdup(nonce1);
  7805. if (swork->data_lock_p)
  7806. cg_runlock(swork->data_lock_p);
  7807. if (opt_debug)
  7808. {
  7809. char header[161];
  7810. char nonce2hex[(bytes_len(&work->nonce2) * 2) + 1];
  7811. bin2hex(header, work->data, 80);
  7812. bin2hex(nonce2hex, bytes_buf(&work->nonce2), bytes_len(&work->nonce2));
  7813. applog(LOG_DEBUG, "Generated stratum header %s", header);
  7814. applog(LOG_DEBUG, "Work job_id %s nonce2 %s", work->job_id, nonce2hex);
  7815. }
  7816. calc_midstate(work);
  7817. set_target(work->target, work->sdiff);
  7818. local_work++;
  7819. work->stratum = true;
  7820. work->blk.nonce = 0;
  7821. work->id = total_work++;
  7822. work->longpoll = false;
  7823. work->getwork_mode = GETWORK_MODE_STRATUM;
  7824. /* Nominally allow a driver to ntime roll 60 seconds */
  7825. work->drv_rolllimit = 60;
  7826. calc_diff(work, 0);
  7827. }
  7828. void request_work(struct thr_info *thr)
  7829. {
  7830. struct cgpu_info *cgpu = thr->cgpu;
  7831. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7832. /* Tell the watchdog thread this thread is waiting on getwork and
  7833. * should not be restarted */
  7834. thread_reportout(thr);
  7835. // HACK: Since get_work still blocks, reportout all processors dependent on this thread
  7836. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7837. {
  7838. if (proc->threads)
  7839. break;
  7840. thread_reportout(proc->thr[0]);
  7841. }
  7842. cgtime(&dev_stats->_get_start);
  7843. }
  7844. // FIXME: Make this non-blocking (and remove HACK above)
  7845. struct work *get_work(struct thr_info *thr)
  7846. {
  7847. const int thr_id = thr->id;
  7848. struct cgpu_info *cgpu = thr->cgpu;
  7849. struct cgminer_stats *dev_stats = &(cgpu->cgminer_stats);
  7850. struct cgminer_stats *pool_stats;
  7851. struct timeval tv_get;
  7852. struct work *work = NULL;
  7853. applog(LOG_DEBUG, "%"PRIpreprv": Popping work from get queue to get work", cgpu->proc_repr);
  7854. while (!work) {
  7855. work = hash_pop();
  7856. if (stale_work(work, false)) {
  7857. staged_full = false; // It wasn't really full, since it was stale :(
  7858. discard_work(work);
  7859. work = NULL;
  7860. wake_gws();
  7861. }
  7862. }
  7863. last_getwork = time(NULL);
  7864. applog(LOG_DEBUG, "%"PRIpreprv": Got work %d from get queue to get work for thread %d",
  7865. cgpu->proc_repr, work->id, thr_id);
  7866. work->thr_id = thr_id;
  7867. thread_reportin(thr);
  7868. // HACK: Since get_work still blocks, reportin all processors dependent on this thread
  7869. for (struct cgpu_info *proc = thr->cgpu->next_proc; proc; proc = proc->next_proc)
  7870. {
  7871. if (proc->threads)
  7872. break;
  7873. thread_reportin(proc->thr[0]);
  7874. }
  7875. work->mined = true;
  7876. work->blk.nonce = 0;
  7877. cgtime(&tv_get);
  7878. timersub(&tv_get, &dev_stats->_get_start, &tv_get);
  7879. timeradd(&tv_get, &dev_stats->getwork_wait, &dev_stats->getwork_wait);
  7880. if (timercmp(&tv_get, &dev_stats->getwork_wait_max, >))
  7881. dev_stats->getwork_wait_max = tv_get;
  7882. if (timercmp(&tv_get, &dev_stats->getwork_wait_min, <))
  7883. dev_stats->getwork_wait_min = tv_get;
  7884. ++dev_stats->getwork_calls;
  7885. pool_stats = &(work->pool->cgminer_stats);
  7886. timeradd(&tv_get, &pool_stats->getwork_wait, &pool_stats->getwork_wait);
  7887. if (timercmp(&tv_get, &pool_stats->getwork_wait_max, >))
  7888. pool_stats->getwork_wait_max = tv_get;
  7889. if (timercmp(&tv_get, &pool_stats->getwork_wait_min, <))
  7890. pool_stats->getwork_wait_min = tv_get;
  7891. ++pool_stats->getwork_calls;
  7892. if (work->work_difficulty < 1)
  7893. {
  7894. if (unlikely(work->work_difficulty < cgpu->min_nonce_diff))
  7895. {
  7896. applog(LOG_WARNING, "%"PRIpreprv": Using work with lower difficulty than device supports",
  7897. cgpu->proc_repr);
  7898. work->nonce_diff = cgpu->min_nonce_diff;
  7899. }
  7900. else
  7901. work->nonce_diff = work->work_difficulty;
  7902. }
  7903. else
  7904. work->nonce_diff = 1;
  7905. return work;
  7906. }
  7907. static
  7908. void _submit_work_async(struct work *work)
  7909. {
  7910. applog(LOG_DEBUG, "Pushing submit work to work thread");
  7911. if (opt_benchmark)
  7912. {
  7913. json_t * const jn = json_null();
  7914. rebuild_hash(work);
  7915. share_result(jn, jn, jn, work, false, "");
  7916. free_work(work);
  7917. return;
  7918. }
  7919. mutex_lock(&submitting_lock);
  7920. ++total_submitting;
  7921. DL_APPEND(submit_waiting, work);
  7922. mutex_unlock(&submitting_lock);
  7923. notifier_wake(submit_waiting_notifier);
  7924. }
  7925. /* Submit a copy of the tested, statistic recorded work item asynchronously */
  7926. static void submit_work_async2(struct work *work, struct timeval *tv_work_found)
  7927. {
  7928. if (tv_work_found)
  7929. copy_time(&work->tv_work_found, tv_work_found);
  7930. _submit_work_async(work);
  7931. }
  7932. void inc_hw_errors3(struct thr_info *thr, const struct work *work, const uint32_t *bad_nonce_p, float nonce_diff)
  7933. {
  7934. struct cgpu_info * const cgpu = thr->cgpu;
  7935. if (bad_nonce_p)
  7936. {
  7937. if (bad_nonce_p == UNKNOWN_NONCE)
  7938. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce - HW error",
  7939. cgpu->proc_repr);
  7940. else
  7941. applog(LOG_DEBUG, "%"PRIpreprv": invalid nonce (%08lx) - HW error",
  7942. cgpu->proc_repr, (unsigned long)be32toh(*bad_nonce_p));
  7943. }
  7944. mutex_lock(&stats_lock);
  7945. hw_errors++;
  7946. ++cgpu->hw_errors;
  7947. if (bad_nonce_p)
  7948. {
  7949. total_bad_diff1 += nonce_diff;
  7950. cgpu->bad_diff1 += nonce_diff;
  7951. }
  7952. mutex_unlock(&stats_lock);
  7953. if (thr->cgpu->drv->hw_error)
  7954. thr->cgpu->drv->hw_error(thr);
  7955. }
  7956. enum test_nonce2_result hashtest2(struct work *work, bool checktarget)
  7957. {
  7958. uint32_t *hash2_32 = (uint32_t *)&work->hash[0];
  7959. hash_data(work->hash, work->data);
  7960. if (hash2_32[7] != 0)
  7961. return TNR_BAD;
  7962. if (!checktarget)
  7963. return TNR_GOOD;
  7964. if (!hash_target_check_v(work->hash, work->target))
  7965. return TNR_HIGH;
  7966. return TNR_GOOD;
  7967. }
  7968. enum test_nonce2_result _test_nonce2(struct work *work, uint32_t nonce, bool checktarget)
  7969. {
  7970. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7971. *work_nonce = htole32(nonce);
  7972. #ifdef USE_SCRYPT
  7973. if (opt_scrypt)
  7974. // NOTE: Depends on scrypt_test return matching enum values
  7975. return scrypt_test(work->data, work->target, nonce);
  7976. #endif
  7977. return hashtest2(work, checktarget);
  7978. }
  7979. /* Returns true if nonce for work was a valid share */
  7980. bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
  7981. {
  7982. return submit_noffset_nonce(thr, work, nonce, 0);
  7983. }
  7984. /* Allows drivers to submit work items where the driver has changed the ntime
  7985. * value by noffset. Must be only used with a work protocol that does not ntime
  7986. * roll itself intrinsically to generate work (eg stratum). We do not touch
  7987. * the original work struct, but the copy of it only. */
  7988. bool submit_noffset_nonce(struct thr_info *thr, struct work *work_in, uint32_t nonce,
  7989. int noffset)
  7990. {
  7991. struct work *work = make_work();
  7992. _copy_work(work, work_in, noffset);
  7993. uint32_t *work_nonce = (uint32_t *)(work->data + 64 + 12);
  7994. struct timeval tv_work_found;
  7995. enum test_nonce2_result res;
  7996. bool ret = true;
  7997. thread_reportout(thr);
  7998. cgtime(&tv_work_found);
  7999. *work_nonce = htole32(nonce);
  8000. work->thr_id = thr->id;
  8001. /* Do one last check before attempting to submit the work */
  8002. /* Side effect: sets work->data for us */
  8003. res = test_nonce2(work, nonce);
  8004. if (unlikely(res == TNR_BAD))
  8005. {
  8006. inc_hw_errors(thr, work, nonce);
  8007. ret = false;
  8008. goto out;
  8009. }
  8010. mutex_lock(&stats_lock);
  8011. total_diff1 += work->nonce_diff;
  8012. thr ->cgpu->diff1 += work->nonce_diff;
  8013. work->pool->diff1 += work->nonce_diff;
  8014. thr->cgpu->last_device_valid_work = time(NULL);
  8015. mutex_unlock(&stats_lock);
  8016. if (noncelog_file)
  8017. noncelog(work);
  8018. if (res == TNR_HIGH)
  8019. {
  8020. // Share above target, normal
  8021. /* Check the diff of the share, even if it didn't reach the
  8022. * target, just to set the best share value if it's higher. */
  8023. share_diff(work);
  8024. goto out;
  8025. }
  8026. submit_work_async2(work, &tv_work_found);
  8027. work = NULL; // Taken by submit_work_async2
  8028. out:
  8029. if (work)
  8030. free_work(work);
  8031. thread_reportin(thr);
  8032. return ret;
  8033. }
  8034. bool abandon_work(struct work *work, struct timeval *wdiff, uint64_t hashes)
  8035. {
  8036. if (wdiff->tv_sec > opt_scantime ||
  8037. work->blk.nonce >= 0xfffffffe - hashes ||
  8038. hashes >= 0xfffffffe ||
  8039. stale_work(work, false))
  8040. return true;
  8041. return false;
  8042. }
  8043. void __thr_being_msg(int prio, struct thr_info *thr, const char *being)
  8044. {
  8045. struct cgpu_info *proc = thr->cgpu;
  8046. if (proc->threads > 1)
  8047. applog(prio, "%"PRIpreprv" (thread %d) %s", proc->proc_repr, thr->id, being);
  8048. else
  8049. applog(prio, "%"PRIpreprv" %s", proc->proc_repr, being);
  8050. }
  8051. // Called by asynchronous minerloops, when they find their processor should be disabled
  8052. void mt_disable_start(struct thr_info *mythr)
  8053. {
  8054. struct cgpu_info *cgpu = mythr->cgpu;
  8055. struct device_drv *drv = cgpu->drv;
  8056. if (drv->thread_disable)
  8057. drv->thread_disable(mythr);
  8058. hashmeter2(mythr);
  8059. __thr_being_msg(LOG_WARNING, mythr, "being disabled");
  8060. mythr->rolling = mythr->cgpu->rolling = 0;
  8061. thread_reportout(mythr);
  8062. mythr->_mt_disable_called = true;
  8063. }
  8064. /* Put a new unqueued work item in cgpu->unqueued_work under cgpu->qlock till
  8065. * the driver tells us it's full so that it may extract the work item using
  8066. * the get_queued() function which adds it to the hashtable on
  8067. * cgpu->queued_work. */
  8068. static void fill_queue(struct thr_info *mythr, struct cgpu_info *cgpu, struct device_drv *drv, const int thr_id)
  8069. {
  8070. thread_reportout(mythr);
  8071. do {
  8072. bool need_work;
  8073. /* Do this lockless just to know if we need more unqueued work. */
  8074. need_work = (!cgpu->unqueued_work);
  8075. /* get_work is a blocking function so do it outside of lock
  8076. * to prevent deadlocks with other locks. */
  8077. if (need_work) {
  8078. struct work *work = get_work(mythr);
  8079. wr_lock(&cgpu->qlock);
  8080. /* Check we haven't grabbed work somehow between
  8081. * checking and picking up the lock. */
  8082. if (likely(!cgpu->unqueued_work))
  8083. cgpu->unqueued_work = work;
  8084. else
  8085. need_work = false;
  8086. wr_unlock(&cgpu->qlock);
  8087. if (unlikely(!need_work))
  8088. discard_work(work);
  8089. }
  8090. /* The queue_full function should be used by the driver to
  8091. * actually place work items on the physical device if it
  8092. * does have a queue. */
  8093. } while (drv->queue_full && !drv->queue_full(cgpu));
  8094. }
  8095. /* Add a work item to a cgpu's queued hashlist */
  8096. void __add_queued(struct cgpu_info *cgpu, struct work *work)
  8097. {
  8098. cgpu->queued_count++;
  8099. HASH_ADD_INT(cgpu->queued_work, id, work);
  8100. }
  8101. /* This function is for retrieving one work item from the unqueued pointer and
  8102. * adding it to the hashtable of queued work. Code using this function must be
  8103. * able to handle NULL as a return which implies there is no work available. */
  8104. struct work *get_queued(struct cgpu_info *cgpu)
  8105. {
  8106. struct work *work = NULL;
  8107. wr_lock(&cgpu->qlock);
  8108. if (cgpu->unqueued_work) {
  8109. work = cgpu->unqueued_work;
  8110. if (unlikely(stale_work(work, false))) {
  8111. discard_work(work);
  8112. work = NULL;
  8113. wake_gws();
  8114. } else
  8115. __add_queued(cgpu, work);
  8116. cgpu->unqueued_work = NULL;
  8117. }
  8118. wr_unlock(&cgpu->qlock);
  8119. return work;
  8120. }
  8121. void add_queued(struct cgpu_info *cgpu, struct work *work)
  8122. {
  8123. wr_lock(&cgpu->qlock);
  8124. __add_queued(cgpu, work);
  8125. wr_unlock(&cgpu->qlock);
  8126. }
  8127. /* Get fresh work and add it to cgpu's queued hashlist */
  8128. struct work *get_queue_work(struct thr_info *thr, struct cgpu_info *cgpu, int thr_id)
  8129. {
  8130. struct work *work = get_work(thr);
  8131. add_queued(cgpu, work);
  8132. return work;
  8133. }
  8134. /* This function is for finding an already queued work item in the
  8135. * given que hashtable. Code using this function must be able
  8136. * to handle NULL as a return which implies there is no matching work.
  8137. * The calling function must lock access to the que if it is required.
  8138. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8139. struct work *__find_work_bymidstate(struct work *que, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8140. {
  8141. struct work *work, *tmp, *ret = NULL;
  8142. HASH_ITER(hh, que, work, tmp) {
  8143. if (memcmp(work->midstate, midstate, midstatelen) == 0 &&
  8144. memcmp(work->data + offset, data, datalen) == 0) {
  8145. ret = work;
  8146. break;
  8147. }
  8148. }
  8149. return ret;
  8150. }
  8151. /* This function is for finding an already queued work item in the
  8152. * device's queued_work hashtable. Code using this function must be able
  8153. * to handle NULL as a return which implies there is no matching work.
  8154. * The common values for midstatelen, offset, datalen are 32, 64, 12 */
  8155. struct work *find_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8156. {
  8157. struct work *ret;
  8158. rd_lock(&cgpu->qlock);
  8159. ret = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8160. rd_unlock(&cgpu->qlock);
  8161. return ret;
  8162. }
  8163. struct work *clone_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8164. {
  8165. struct work *work, *ret = NULL;
  8166. rd_lock(&cgpu->qlock);
  8167. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8168. if (work)
  8169. ret = copy_work(work);
  8170. rd_unlock(&cgpu->qlock);
  8171. return ret;
  8172. }
  8173. void __work_completed(struct cgpu_info *cgpu, struct work *work)
  8174. {
  8175. cgpu->queued_count--;
  8176. HASH_DEL(cgpu->queued_work, work);
  8177. }
  8178. /* This function should be used by queued device drivers when they're sure
  8179. * the work struct is no longer in use. */
  8180. void work_completed(struct cgpu_info *cgpu, struct work *work)
  8181. {
  8182. wr_lock(&cgpu->qlock);
  8183. __work_completed(cgpu, work);
  8184. wr_unlock(&cgpu->qlock);
  8185. free_work(work);
  8186. }
  8187. /* Combines find_queued_work_bymidstate and work_completed in one function
  8188. * withOUT destroying the work so the driver must free it. */
  8189. struct work *take_queued_work_bymidstate(struct cgpu_info *cgpu, char *midstate, size_t midstatelen, char *data, int offset, size_t datalen)
  8190. {
  8191. struct work *work;
  8192. wr_lock(&cgpu->qlock);
  8193. work = __find_work_bymidstate(cgpu->queued_work, midstate, midstatelen, data, offset, datalen);
  8194. if (work)
  8195. __work_completed(cgpu, work);
  8196. wr_unlock(&cgpu->qlock);
  8197. return work;
  8198. }
  8199. static void flush_queue(struct cgpu_info *cgpu)
  8200. {
  8201. struct work *work = NULL;
  8202. wr_lock(&cgpu->qlock);
  8203. work = cgpu->unqueued_work;
  8204. cgpu->unqueued_work = NULL;
  8205. wr_unlock(&cgpu->qlock);
  8206. if (work) {
  8207. free_work(work);
  8208. applog(LOG_DEBUG, "Discarded queued work item");
  8209. }
  8210. }
  8211. /* This version of hash work is for devices that are fast enough to always
  8212. * perform a full nonce range and need a queue to maintain the device busy.
  8213. * Work creation and destruction is not done from within this function
  8214. * directly. */
  8215. void hash_queued_work(struct thr_info *mythr)
  8216. {
  8217. const long cycle = opt_log_interval / 5 ? : 1;
  8218. struct timeval tv_start = {0, 0}, tv_end;
  8219. struct cgpu_info *cgpu = mythr->cgpu;
  8220. struct device_drv *drv = cgpu->drv;
  8221. const int thr_id = mythr->id;
  8222. int64_t hashes_done = 0;
  8223. if (unlikely(cgpu->deven != DEV_ENABLED))
  8224. mt_disable(mythr);
  8225. while (likely(!cgpu->shutdown)) {
  8226. struct timeval diff;
  8227. int64_t hashes;
  8228. fill_queue(mythr, cgpu, drv, thr_id);
  8229. thread_reportin(mythr);
  8230. hashes = drv->scanwork(mythr);
  8231. /* Reset the bool here in case the driver looks for it
  8232. * synchronously in the scanwork loop. */
  8233. mythr->work_restart = false;
  8234. if (unlikely(hashes == -1 )) {
  8235. applog(LOG_ERR, "%s %d failure, disabling!", drv->name, cgpu->device_id);
  8236. cgpu->deven = DEV_DISABLED;
  8237. dev_error(cgpu, REASON_THREAD_ZERO_HASH);
  8238. mt_disable(mythr);
  8239. }
  8240. hashes_done += hashes;
  8241. cgtime(&tv_end);
  8242. timersub(&tv_end, &tv_start, &diff);
  8243. if (diff.tv_sec >= cycle) {
  8244. hashmeter(thr_id, &diff, hashes_done);
  8245. hashes_done = 0;
  8246. copy_time(&tv_start, &tv_end);
  8247. }
  8248. if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED))
  8249. mt_disable(mythr);
  8250. if (unlikely(mythr->work_restart)) {
  8251. flush_queue(cgpu);
  8252. if (drv->flush_work)
  8253. drv->flush_work(cgpu);
  8254. }
  8255. }
  8256. // cgpu->deven = DEV_DISABLED; set in miner_thread
  8257. }
  8258. // Called by minerloop, when it is re-enabling a processor
  8259. void mt_disable_finish(struct thr_info *mythr)
  8260. {
  8261. struct device_drv *drv = mythr->cgpu->drv;
  8262. thread_reportin(mythr);
  8263. __thr_being_msg(LOG_WARNING, mythr, "being re-enabled");
  8264. if (drv->thread_enable)
  8265. drv->thread_enable(mythr);
  8266. mythr->_mt_disable_called = false;
  8267. }
  8268. // Called by synchronous minerloops, when they find their processor should be disabled
  8269. // Calls mt_disable_start, waits until it's re-enabled, then calls mt_disable_finish
  8270. void mt_disable(struct thr_info *mythr)
  8271. {
  8272. const struct cgpu_info * const cgpu = mythr->cgpu;
  8273. mt_disable_start(mythr);
  8274. applog(LOG_DEBUG, "Waiting for wakeup notification in miner thread");
  8275. do {
  8276. notifier_read(mythr->notifier);
  8277. } while (mythr->pause || cgpu->deven != DEV_ENABLED);
  8278. mt_disable_finish(mythr);
  8279. }
  8280. enum {
  8281. STAT_SLEEP_INTERVAL = 1,
  8282. STAT_CTR_INTERVAL = 10000000,
  8283. FAILURE_INTERVAL = 30,
  8284. };
  8285. /* Stage another work item from the work returned in a longpoll */
  8286. 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)
  8287. {
  8288. bool rc;
  8289. work->rolltime = rolltime;
  8290. rc = work_decode(pool, work, val);
  8291. if (unlikely(!rc)) {
  8292. applog(LOG_ERR, "Could not convert longpoll data to work");
  8293. free_work(work);
  8294. return;
  8295. }
  8296. total_getworks++;
  8297. pool->getwork_requested++;
  8298. work->pool = pool;
  8299. copy_time(&work->tv_getwork, tv_lp);
  8300. copy_time(&work->tv_getwork_reply, tv_lp_reply);
  8301. calc_diff(work, 0);
  8302. if (pool->enabled == POOL_REJECTING)
  8303. work->mandatory = true;
  8304. work->longpoll = true;
  8305. work->getwork_mode = GETWORK_MODE_LP;
  8306. update_last_work(work);
  8307. /* We'll be checking this work item twice, but we already know it's
  8308. * from a new block so explicitly force the new block detection now
  8309. * rather than waiting for it to hit the stage thread. This also
  8310. * allows testwork to know whether LP discovered the block or not. */
  8311. test_work_current(work);
  8312. /* Don't use backup LPs as work if we have failover-only enabled. Use
  8313. * the longpoll work from a pool that has been rejecting shares as a
  8314. * way to detect when the pool has recovered.
  8315. */
  8316. if (pool != current_pool() && opt_fail_only && pool->enabled != POOL_REJECTING) {
  8317. free_work(work);
  8318. return;
  8319. }
  8320. work = clone_work(work);
  8321. applog(LOG_DEBUG, "Pushing converted work to stage thread");
  8322. stage_work(work);
  8323. applog(LOG_DEBUG, "Converted longpoll data to work");
  8324. }
  8325. /* If we want longpoll, enable it for the chosen default pool, or, if
  8326. * the pool does not support longpoll, find the first one that does
  8327. * and use its longpoll support */
  8328. static struct pool *select_longpoll_pool(struct pool *cp)
  8329. {
  8330. int i;
  8331. if (cp->lp_url)
  8332. return cp;
  8333. for (i = 0; i < total_pools; i++) {
  8334. struct pool *pool = pools[i];
  8335. if (pool->has_stratum || pool->lp_url)
  8336. return pool;
  8337. }
  8338. return NULL;
  8339. }
  8340. /* This will make the longpoll thread wait till it's the current pool, or it
  8341. * has been flagged as rejecting, before attempting to open any connections.
  8342. */
  8343. static void wait_lpcurrent(struct pool *pool)
  8344. {
  8345. while (!cnx_needed(pool))
  8346. {
  8347. mutex_lock(&lp_lock);
  8348. pthread_cond_wait(&lp_cond, &lp_lock);
  8349. mutex_unlock(&lp_lock);
  8350. }
  8351. }
  8352. static curl_socket_t save_curl_socket(void *vpool, __maybe_unused curlsocktype purpose, struct curl_sockaddr *addr) {
  8353. struct pool *pool = vpool;
  8354. curl_socket_t sock = socket(addr->family, addr->socktype, addr->protocol);
  8355. pool->lp_socket = sock;
  8356. return sock;
  8357. }
  8358. static void *longpoll_thread(void *userdata)
  8359. {
  8360. struct pool *cp = (struct pool *)userdata;
  8361. /* This *pool is the source of the actual longpoll, not the pool we've
  8362. * tied it to */
  8363. struct timeval start, reply, end;
  8364. struct pool *pool = NULL;
  8365. char threadname[20];
  8366. CURL *curl = NULL;
  8367. int failures = 0;
  8368. char *lp_url;
  8369. int rolltime;
  8370. #ifndef HAVE_PTHREAD_CANCEL
  8371. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8372. #endif
  8373. snprintf(threadname, 20, "longpoll%u", cp->pool_no);
  8374. RenameThread(threadname);
  8375. curl = curl_easy_init();
  8376. if (unlikely(!curl)) {
  8377. applog(LOG_ERR, "CURL initialisation failed");
  8378. return NULL;
  8379. }
  8380. retry_pool:
  8381. pool = select_longpoll_pool(cp);
  8382. if (!pool) {
  8383. applog(LOG_WARNING, "No suitable long-poll found for %s", cp->rpc_url);
  8384. while (!pool) {
  8385. cgsleep_ms(60000);
  8386. pool = select_longpoll_pool(cp);
  8387. }
  8388. }
  8389. if (pool->has_stratum) {
  8390. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8391. cp->rpc_url, pool->rpc_url);
  8392. goto out;
  8393. }
  8394. /* Any longpoll from any pool is enough for this to be true */
  8395. have_longpoll = true;
  8396. wait_lpcurrent(cp);
  8397. {
  8398. lp_url = pool->lp_url;
  8399. if (cp == pool)
  8400. applog(LOG_WARNING, "Long-polling activated for %s (%s)", lp_url, pool_protocol_name(pool->lp_proto));
  8401. else
  8402. applog(LOG_WARNING, "Long-polling activated for %s via %s (%s)", cp->rpc_url, lp_url, pool_protocol_name(pool->lp_proto));
  8403. }
  8404. while (42) {
  8405. json_t *val, *soval;
  8406. struct work *work = make_work();
  8407. char *lpreq;
  8408. lpreq = prepare_rpc_req(work, pool->lp_proto, pool->lp_id);
  8409. work->pool = pool;
  8410. if (!lpreq)
  8411. {
  8412. free_work(work);
  8413. goto lpfail;
  8414. }
  8415. wait_lpcurrent(cp);
  8416. cgtime(&start);
  8417. /* Longpoll connections can be persistent for a very long time
  8418. * and any number of issues could have come up in the meantime
  8419. * so always establish a fresh connection instead of relying on
  8420. * a persistent one. */
  8421. curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1);
  8422. curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, save_curl_socket);
  8423. curl_easy_setopt(curl, CURLOPT_OPENSOCKETDATA, pool);
  8424. val = json_rpc_call(curl, lp_url, pool->rpc_userpass,
  8425. lpreq, false, true, &rolltime, pool, false);
  8426. pool->lp_socket = CURL_SOCKET_BAD;
  8427. cgtime(&reply);
  8428. free(lpreq);
  8429. if (likely(val)) {
  8430. soval = json_object_get(json_object_get(val, "result"), "submitold");
  8431. if (soval)
  8432. pool->submit_old = json_is_true(soval);
  8433. else
  8434. pool->submit_old = false;
  8435. convert_to_work(val, rolltime, pool, work, &start, &reply);
  8436. failures = 0;
  8437. json_decref(val);
  8438. } else {
  8439. /* Some pools regularly drop the longpoll request so
  8440. * only see this as longpoll failure if it happens
  8441. * immediately and just restart it the rest of the
  8442. * time. */
  8443. cgtime(&end);
  8444. free_work(work);
  8445. if (end.tv_sec - start.tv_sec > 30)
  8446. continue;
  8447. if (failures == 1)
  8448. applog(LOG_WARNING, "longpoll failed for %s, retrying every 30s", lp_url);
  8449. lpfail:
  8450. cgsleep_ms(30000);
  8451. }
  8452. if (pool != cp) {
  8453. pool = select_longpoll_pool(cp);
  8454. if (pool->has_stratum) {
  8455. applog(LOG_WARNING, "Block change for %s detection via %s stratum",
  8456. cp->rpc_url, pool->rpc_url);
  8457. break;
  8458. }
  8459. if (unlikely(!pool))
  8460. goto retry_pool;
  8461. }
  8462. if (unlikely(pool->removed))
  8463. break;
  8464. }
  8465. out:
  8466. curl_easy_cleanup(curl);
  8467. return NULL;
  8468. }
  8469. static void stop_longpoll(void)
  8470. {
  8471. int i;
  8472. want_longpoll = false;
  8473. for (i = 0; i < total_pools; ++i)
  8474. {
  8475. struct pool *pool = pools[i];
  8476. if (unlikely(!pool->lp_started))
  8477. continue;
  8478. pool->lp_started = false;
  8479. pthread_cancel(pool->longpoll_thread);
  8480. }
  8481. have_longpoll = false;
  8482. }
  8483. static void start_longpoll(void)
  8484. {
  8485. int i;
  8486. want_longpoll = true;
  8487. for (i = 0; i < total_pools; ++i)
  8488. {
  8489. struct pool *pool = pools[i];
  8490. if (unlikely(pool->removed || pool->lp_started || !pool->lp_url))
  8491. continue;
  8492. pool->lp_started = true;
  8493. if (unlikely(pthread_create(&pool->longpoll_thread, NULL, longpoll_thread, (void *)pool)))
  8494. quit(1, "Failed to create pool longpoll thread");
  8495. }
  8496. }
  8497. void reinit_device(struct cgpu_info *cgpu)
  8498. {
  8499. if (cgpu->drv->reinit_device)
  8500. cgpu->drv->reinit_device(cgpu);
  8501. }
  8502. static struct timeval rotate_tv;
  8503. /* We reap curls if they are unused for over a minute */
  8504. static void reap_curl(struct pool *pool)
  8505. {
  8506. struct curl_ent *ent, *iter;
  8507. struct timeval now;
  8508. int reaped = 0;
  8509. cgtime(&now);
  8510. mutex_lock(&pool->pool_lock);
  8511. LL_FOREACH_SAFE(pool->curllist, ent, iter) {
  8512. if (pool->curls < 2)
  8513. break;
  8514. if (now.tv_sec - ent->tv.tv_sec > 300) {
  8515. reaped++;
  8516. pool->curls--;
  8517. LL_DELETE(pool->curllist, ent);
  8518. curl_easy_cleanup(ent->curl);
  8519. free(ent);
  8520. }
  8521. }
  8522. mutex_unlock(&pool->pool_lock);
  8523. if (reaped)
  8524. applog(LOG_DEBUG, "Reaped %d curl%s from pool %d", reaped, reaped > 1 ? "s" : "", pool->pool_no);
  8525. }
  8526. static void *watchpool_thread(void __maybe_unused *userdata)
  8527. {
  8528. int intervals = 0;
  8529. #ifndef HAVE_PTHREAD_CANCEL
  8530. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8531. #endif
  8532. RenameThread("watchpool");
  8533. while (42) {
  8534. struct timeval now;
  8535. int i;
  8536. if (++intervals > 20)
  8537. intervals = 0;
  8538. cgtime(&now);
  8539. for (i = 0; i < total_pools; i++) {
  8540. struct pool *pool = pools[i];
  8541. if (!opt_benchmark)
  8542. reap_curl(pool);
  8543. /* Get a rolling utility per pool over 10 mins */
  8544. if (intervals > 19) {
  8545. int shares = pool->diff1 - pool->last_shares;
  8546. pool->last_shares = pool->diff1;
  8547. pool->utility = (pool->utility + (double)shares * 0.63) / 1.63;
  8548. pool->shares = pool->utility;
  8549. }
  8550. if (pool->enabled == POOL_DISABLED)
  8551. continue;
  8552. /* Don't start testing any pools if the test threads
  8553. * from startup are still doing their first attempt. */
  8554. if (unlikely(pool->testing)) {
  8555. pthread_join(pool->test_thread, NULL);
  8556. }
  8557. /* Test pool is idle once every minute */
  8558. if (pool->idle && now.tv_sec - pool->tv_idle.tv_sec > 30) {
  8559. cgtime(&pool->tv_idle);
  8560. if (pool_active(pool, true) && pool_tclear(pool, &pool->idle))
  8561. pool_resus(pool);
  8562. }
  8563. /* Only switch pools if the failback pool has been
  8564. * alive for more than 5 minutes (default) to prevent
  8565. * intermittently failing pools from being used. */
  8566. if (!pool->idle && pool_strategy == POOL_FAILOVER && pool->prio < cp_prio() &&
  8567. now.tv_sec - pool->tv_idle.tv_sec > opt_fail_switch_delay) {
  8568. if (opt_fail_switch_delay % 60)
  8569. applog(LOG_WARNING, "Pool %d %s stable for %d second%s",
  8570. pool->pool_no, pool->rpc_url,
  8571. opt_fail_switch_delay,
  8572. (opt_fail_switch_delay == 1 ? "" : "s"));
  8573. else
  8574. applog(LOG_WARNING, "Pool %d %s stable for %d minute%s",
  8575. pool->pool_no, pool->rpc_url,
  8576. opt_fail_switch_delay / 60,
  8577. (opt_fail_switch_delay == 60 ? "" : "s"));
  8578. switch_pools(NULL);
  8579. }
  8580. }
  8581. if (current_pool()->idle)
  8582. switch_pools(NULL);
  8583. if (pool_strategy == POOL_ROTATE && now.tv_sec - rotate_tv.tv_sec > 60 * opt_rotate_period) {
  8584. cgtime(&rotate_tv);
  8585. switch_pools(NULL);
  8586. }
  8587. cgsleep_ms(30000);
  8588. }
  8589. return NULL;
  8590. }
  8591. void mt_enable(struct thr_info *thr)
  8592. {
  8593. applog(LOG_DEBUG, "Waking up thread %d", thr->id);
  8594. notifier_wake(thr->notifier);
  8595. }
  8596. void proc_enable(struct cgpu_info *cgpu)
  8597. {
  8598. int j;
  8599. cgpu->deven = DEV_ENABLED;
  8600. for (j = cgpu->threads ?: 1; j--; )
  8601. mt_enable(cgpu->thr[j]);
  8602. }
  8603. #define device_recovered(cgpu) proc_enable(cgpu)
  8604. void cgpu_set_defaults(struct cgpu_info * const cgpu)
  8605. {
  8606. struct string_elist *setstr_elist;
  8607. const char *p, *p2;
  8608. char replybuf[0x2000];
  8609. size_t L;
  8610. DL_FOREACH(opt_set_device_list, setstr_elist)
  8611. {
  8612. const char * const setstr = setstr_elist->string;
  8613. p = strchr(setstr, ':');
  8614. if (!p)
  8615. p = setstr;
  8616. {
  8617. L = p - setstr;
  8618. char pattern[L + 1];
  8619. if (L)
  8620. memcpy(pattern, setstr, L);
  8621. pattern[L] = '\0';
  8622. if (!cgpu_match(pattern, cgpu))
  8623. continue;
  8624. }
  8625. applog(LOG_DEBUG, "%"PRIpreprv": %s: Matched with set default: %s",
  8626. cgpu->proc_repr, __func__, setstr);
  8627. if (p[0] == ':')
  8628. ++p;
  8629. p2 = strchr(p, '=');
  8630. if (!p2)
  8631. {
  8632. L = strlen(p);
  8633. p2 = "";
  8634. }
  8635. else
  8636. {
  8637. L = p2 - p;
  8638. ++p2;
  8639. }
  8640. char opt[L + 1];
  8641. if (L)
  8642. memcpy(opt, p, L);
  8643. opt[L] = '\0';
  8644. L = strlen(p2);
  8645. char setval[L + 1];
  8646. if (L)
  8647. memcpy(setval, p2, L);
  8648. setval[L] = '\0';
  8649. enum bfg_set_device_replytype success;
  8650. p = proc_set_device(cgpu, opt, setval, replybuf, &success);
  8651. switch (success)
  8652. {
  8653. case SDR_OK:
  8654. applog(LOG_DEBUG, "%"PRIpreprv": Applied rule %s%s%s",
  8655. cgpu->proc_repr, setstr,
  8656. p ? ": " : "", p ?: "");
  8657. break;
  8658. case SDR_ERR:
  8659. case SDR_HELP:
  8660. case SDR_UNKNOWN:
  8661. applog(LOG_DEBUG, "%"PRIpreprv": Applying rule %s: %s",
  8662. cgpu->proc_repr, setstr, p);
  8663. break;
  8664. case SDR_AUTO:
  8665. case SDR_NOSUPP:
  8666. applog(LOG_WARNING, "%"PRIpreprv": set_device is not implemented (trying to apply rule: %s)",
  8667. cgpu->proc_repr, setstr);
  8668. }
  8669. }
  8670. cgpu->already_set_defaults = true;
  8671. }
  8672. 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)
  8673. {
  8674. struct device_drv dummy_drv = *drv;
  8675. struct cgpu_info dummy_cgpu = {
  8676. .drv = &dummy_drv,
  8677. .device = &dummy_cgpu,
  8678. .device_id = -1,
  8679. .proc_id = -1,
  8680. .device_data = userp,
  8681. .device_path = devpath,
  8682. .dev_serial = serial,
  8683. };
  8684. strcpy(dummy_cgpu.proc_repr, drv->name);
  8685. switch (mode)
  8686. {
  8687. case 0:
  8688. dummy_drv.set_device = datap;
  8689. break;
  8690. case 1:
  8691. dummy_drv.set_device = NULL;
  8692. dummy_cgpu.set_device_funcs = datap;
  8693. break;
  8694. }
  8695. cgpu_set_defaults(&dummy_cgpu);
  8696. }
  8697. /* Makes sure the hashmeter keeps going even if mining threads stall, updates
  8698. * the screen at regular intervals, and restarts threads if they appear to have
  8699. * died. */
  8700. #define WATCHDOG_SICK_TIME 60
  8701. #define WATCHDOG_DEAD_TIME 600
  8702. #define WATCHDOG_SICK_COUNT (WATCHDOG_SICK_TIME/WATCHDOG_INTERVAL)
  8703. #define WATCHDOG_DEAD_COUNT (WATCHDOG_DEAD_TIME/WATCHDOG_INTERVAL)
  8704. static void *watchdog_thread(void __maybe_unused *userdata)
  8705. {
  8706. const unsigned int interval = WATCHDOG_INTERVAL;
  8707. struct timeval zero_tv;
  8708. #ifndef HAVE_PTHREAD_CANCEL
  8709. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  8710. #endif
  8711. RenameThread("watchdog");
  8712. memset(&zero_tv, 0, sizeof(struct timeval));
  8713. cgtime(&rotate_tv);
  8714. while (1) {
  8715. int i;
  8716. struct timeval now;
  8717. sleep(interval);
  8718. discard_stale();
  8719. hashmeter(-1, &zero_tv, 0);
  8720. #ifdef HAVE_CURSES
  8721. const int ts = total_staged();
  8722. if (curses_active_locked()) {
  8723. change_logwinsize();
  8724. curses_print_status(ts);
  8725. _refresh_devstatus(true);
  8726. touchwin(logwin);
  8727. wrefresh(logwin);
  8728. unlock_curses();
  8729. }
  8730. #endif
  8731. cgtime(&now);
  8732. if (!sched_paused && !should_run()) {
  8733. applog(LOG_WARNING, "Pausing execution as per stop time %02d:%02d scheduled",
  8734. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8735. if (!schedstart.enable) {
  8736. quit(0, "Terminating execution as planned");
  8737. break;
  8738. }
  8739. applog(LOG_WARNING, "Will restart execution as scheduled at %02d:%02d",
  8740. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8741. sched_paused = true;
  8742. rd_lock(&mining_thr_lock);
  8743. for (i = 0; i < mining_threads; i++)
  8744. mining_thr[i]->pause = true;
  8745. rd_unlock(&mining_thr_lock);
  8746. } else if (sched_paused && should_run()) {
  8747. applog(LOG_WARNING, "Restarting execution as per start time %02d:%02d scheduled",
  8748. schedstart.tm.tm_hour, schedstart.tm.tm_min);
  8749. if (schedstop.enable)
  8750. applog(LOG_WARNING, "Will pause execution as scheduled at %02d:%02d",
  8751. schedstop.tm.tm_hour, schedstop.tm.tm_min);
  8752. sched_paused = false;
  8753. for (i = 0; i < mining_threads; i++) {
  8754. struct thr_info *thr;
  8755. thr = get_thread(i);
  8756. thr->pause = false;
  8757. }
  8758. for (i = 0; i < total_devices; ++i)
  8759. {
  8760. struct cgpu_info *cgpu = get_devices(i);
  8761. /* Don't touch disabled devices */
  8762. if (cgpu->deven == DEV_DISABLED)
  8763. continue;
  8764. proc_enable(cgpu);
  8765. }
  8766. }
  8767. for (i = 0; i < total_devices; ++i) {
  8768. struct cgpu_info *cgpu = get_devices(i);
  8769. if (!cgpu->disable_watchdog)
  8770. bfg_watchdog(cgpu, &now);
  8771. }
  8772. }
  8773. return NULL;
  8774. }
  8775. void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
  8776. {
  8777. struct thr_info *thr = cgpu->thr[0];
  8778. enum dev_enable *denable;
  8779. char *dev_str = cgpu->proc_repr;
  8780. if (likely(drv_ready(cgpu)))
  8781. {
  8782. if (unlikely(!cgpu->already_set_defaults))
  8783. cgpu_set_defaults(cgpu);
  8784. if (cgpu->drv->get_stats)
  8785. cgpu->drv->get_stats(cgpu);
  8786. }
  8787. denable = &cgpu->deven;
  8788. if (cgpu->drv->watchdog)
  8789. cgpu->drv->watchdog(cgpu, tvp_now);
  8790. /* Thread is disabled */
  8791. if (*denable == DEV_DISABLED)
  8792. return;
  8793. else
  8794. if (*denable == DEV_RECOVER_ERR) {
  8795. if (opt_restart && timer_elapsed(&cgpu->tv_device_last_not_well, NULL) > cgpu->reinit_backoff) {
  8796. applog(LOG_NOTICE, "Attempting to reinitialize %s",
  8797. dev_str);
  8798. if (cgpu->reinit_backoff < 300)
  8799. cgpu->reinit_backoff *= 2;
  8800. device_recovered(cgpu);
  8801. }
  8802. return;
  8803. }
  8804. else
  8805. if (*denable == DEV_RECOVER) {
  8806. if (opt_restart && cgpu->temp < cgpu->targettemp) {
  8807. applog(LOG_NOTICE, "%s recovered to temperature below target, re-enabling",
  8808. dev_str);
  8809. device_recovered(cgpu);
  8810. }
  8811. dev_error_update(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8812. return;
  8813. }
  8814. else
  8815. if (cgpu->temp > cgpu->cutofftemp)
  8816. {
  8817. applog(LOG_WARNING, "%s hit thermal cutoff limit at %dC, disabling!",
  8818. dev_str, (int)cgpu->temp);
  8819. *denable = DEV_RECOVER;
  8820. dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);
  8821. run_cmd(cmd_idle);
  8822. }
  8823. if (thr->getwork) {
  8824. if (cgpu->status == LIFE_WELL && thr->getwork < tvp_now->tv_sec - opt_log_interval) {
  8825. int thrid;
  8826. bool cgpu_idle = true;
  8827. thr->rolling = 0;
  8828. for (thrid = 0; thrid < cgpu->threads; ++thrid)
  8829. if (!cgpu->thr[thrid]->getwork)
  8830. cgpu_idle = false;
  8831. if (cgpu_idle) {
  8832. cgpu->rolling = 0;
  8833. cgpu->status = LIFE_WAIT;
  8834. }
  8835. }
  8836. return;
  8837. }
  8838. else if (cgpu->status == LIFE_WAIT)
  8839. cgpu->status = LIFE_WELL;
  8840. #ifdef WANT_CPUMINE
  8841. if (!strcmp(cgpu->drv->dname, "cpu"))
  8842. return;
  8843. #endif
  8844. if (cgpu->status != LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec < WATCHDOG_SICK_TIME)) {
  8845. if (likely(cgpu->status != LIFE_INIT && cgpu->status != LIFE_INIT2))
  8846. applog(LOG_ERR, "%s: Recovered, declaring WELL!", dev_str);
  8847. cgpu->status = LIFE_WELL;
  8848. cgpu->device_last_well = time(NULL);
  8849. } else if (cgpu->status == LIFE_WELL && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_SICK_TIME)) {
  8850. thr->rolling = cgpu->rolling = 0;
  8851. cgpu->status = LIFE_SICK;
  8852. applog(LOG_ERR, "%s: Idle for more than 60 seconds, declaring SICK!", dev_str);
  8853. cgtime(&thr->sick);
  8854. dev_error(cgpu, REASON_DEV_SICK_IDLE_60);
  8855. run_cmd(cmd_sick);
  8856. if (opt_restart && cgpu->drv->reinit_device) {
  8857. applog(LOG_ERR, "%s: Attempting to restart", dev_str);
  8858. reinit_device(cgpu);
  8859. }
  8860. } else if (cgpu->status == LIFE_SICK && (tvp_now->tv_sec - thr->last.tv_sec > WATCHDOG_DEAD_TIME)) {
  8861. cgpu->status = LIFE_DEAD;
  8862. applog(LOG_ERR, "%s: Not responded for more than 10 minutes, declaring DEAD!", dev_str);
  8863. cgtime(&thr->sick);
  8864. dev_error(cgpu, REASON_DEV_DEAD_IDLE_600);
  8865. run_cmd(cmd_dead);
  8866. } else if (tvp_now->tv_sec - thr->sick.tv_sec > 60 &&
  8867. (cgpu->status == LIFE_SICK || cgpu->status == LIFE_DEAD)) {
  8868. /* Attempt to restart a GPU that's sick or dead once every minute */
  8869. cgtime(&thr->sick);
  8870. if (opt_restart)
  8871. reinit_device(cgpu);
  8872. }
  8873. }
  8874. static void log_print_status(struct cgpu_info *cgpu)
  8875. {
  8876. char logline[255];
  8877. get_statline(logline, sizeof(logline), cgpu);
  8878. applog(LOG_WARNING, "%s", logline);
  8879. }
  8880. void print_summary(void)
  8881. {
  8882. struct timeval diff;
  8883. int hours, mins, secs, i;
  8884. double utility, efficiency = 0.0;
  8885. char xfer[(ALLOC_H2B_SPACED*2)+4+1], bw[(ALLOC_H2B_SPACED*2)+6+1];
  8886. int pool_secs;
  8887. timersub(&total_tv_end, &total_tv_start, &diff);
  8888. hours = diff.tv_sec / 3600;
  8889. mins = (diff.tv_sec % 3600) / 60;
  8890. secs = diff.tv_sec % 60;
  8891. utility = total_accepted / total_secs * 60;
  8892. efficiency = total_bytes_xfer ? total_diff_accepted * 2048. / total_bytes_xfer : 0.0;
  8893. applog(LOG_WARNING, "\nSummary of runtime statistics:\n");
  8894. applog(LOG_WARNING, "Started at %s", datestamp);
  8895. if (total_pools == 1)
  8896. applog(LOG_WARNING, "Pool: %s", pools[0]->rpc_url);
  8897. #ifdef WANT_CPUMINE
  8898. if (opt_n_threads > 0)
  8899. applog(LOG_WARNING, "CPU hasher algorithm used: %s", algo_names[opt_algo]);
  8900. #endif
  8901. applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
  8902. applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
  8903. applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
  8904. applog(LOG_WARNING, "Best share difficulty: %s", best_share);
  8905. applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
  8906. applog(LOG_WARNING, "Accepted shares: %d", total_accepted);
  8907. applog(LOG_WARNING, "Rejected shares: %d + %d stale (%.2f%%)",
  8908. total_rejected, total_stale,
  8909. (float)(total_rejected + total_stale) / (float)(total_rejected + total_stale + total_accepted)
  8910. );
  8911. applog(LOG_WARNING, "Accepted difficulty shares: %1.f", total_diff_accepted);
  8912. applog(LOG_WARNING, "Rejected difficulty shares: %1.f", total_diff_rejected);
  8913. applog(LOG_WARNING, "Hardware errors: %d", hw_errors);
  8914. applog(LOG_WARNING, "Network transfer: %s (%s)",
  8915. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8916. (float)total_bytes_rcvd,
  8917. (float)total_bytes_sent),
  8918. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8919. (float)(total_bytes_rcvd / total_secs),
  8920. (float)(total_bytes_sent / total_secs)));
  8921. applog(LOG_WARNING, "Efficiency (accepted shares * difficulty / 2 KB): %.2f", efficiency);
  8922. applog(LOG_WARNING, "Utility (accepted shares / min): %.2f/min\n", utility);
  8923. applog(LOG_WARNING, "Unable to get work from server occasions: %d", total_go);
  8924. applog(LOG_WARNING, "Work items generated locally: %d", local_work);
  8925. applog(LOG_WARNING, "Submitting work remotely delay occasions: %d", total_ro);
  8926. applog(LOG_WARNING, "New blocks detected on network: %d\n", new_blocks);
  8927. if (total_pools > 1) {
  8928. for (i = 0; i < total_pools; i++) {
  8929. struct pool *pool = pools[i];
  8930. applog(LOG_WARNING, "Pool: %s", pool->rpc_url);
  8931. if (pool->solved)
  8932. applog(LOG_WARNING, "SOLVED %d BLOCK%s!", pool->solved, pool->solved > 1 ? "S" : "");
  8933. applog(LOG_WARNING, " Share submissions: %d", pool->accepted + pool->rejected);
  8934. applog(LOG_WARNING, " Accepted shares: %d", pool->accepted);
  8935. applog(LOG_WARNING, " Rejected shares: %d + %d stale (%.2f%%)",
  8936. pool->rejected, pool->stale_shares,
  8937. (float)(pool->rejected + pool->stale_shares) / (float)(pool->rejected + pool->stale_shares + pool->accepted)
  8938. );
  8939. applog(LOG_WARNING, " Accepted difficulty shares: %1.f", pool->diff_accepted);
  8940. applog(LOG_WARNING, " Rejected difficulty shares: %1.f", pool->diff_rejected);
  8941. pool_secs = timer_elapsed(&pool->cgminer_stats.start_tv, NULL);
  8942. applog(LOG_WARNING, " Network transfer: %s (%s)",
  8943. multi_format_unit2(xfer, sizeof(xfer), true, "B", H2B_SPACED, " / ", 2,
  8944. (float)pool->cgminer_pool_stats.net_bytes_received,
  8945. (float)pool->cgminer_pool_stats.net_bytes_sent),
  8946. multi_format_unit2(bw, sizeof(bw), true, "B/s", H2B_SPACED, " / ", 2,
  8947. (float)(pool->cgminer_pool_stats.net_bytes_received / pool_secs),
  8948. (float)(pool->cgminer_pool_stats.net_bytes_sent / pool_secs)));
  8949. uint64_t pool_bytes_xfer = pool->cgminer_pool_stats.net_bytes_received + pool->cgminer_pool_stats.net_bytes_sent;
  8950. efficiency = pool_bytes_xfer ? pool->diff_accepted * 2048. / pool_bytes_xfer : 0.0;
  8951. applog(LOG_WARNING, " Efficiency (accepted * difficulty / 2 KB): %.2f", efficiency);
  8952. applog(LOG_WARNING, " Items worked on: %d", pool->works);
  8953. applog(LOG_WARNING, " Unable to get work from server occasions: %d", pool->getfail_occasions);
  8954. applog(LOG_WARNING, " Submitting work remotely delay occasions: %d\n", pool->remotefail_occasions);
  8955. }
  8956. }
  8957. if (opt_quit_summary != BQS_NONE)
  8958. {
  8959. if (opt_quit_summary == BQS_DETAILED)
  8960. include_serial_in_statline = true;
  8961. applog(LOG_WARNING, "Summary of per device statistics:\n");
  8962. for (i = 0; i < total_devices; ++i) {
  8963. struct cgpu_info *cgpu = get_devices(i);
  8964. if (!cgpu->proc_id)
  8965. {
  8966. // Device summary line
  8967. opt_show_procs = false;
  8968. log_print_status(cgpu);
  8969. opt_show_procs = true;
  8970. }
  8971. if ((opt_quit_summary == BQS_PROCS || opt_quit_summary == BQS_DETAILED) && cgpu->procs > 1)
  8972. log_print_status(cgpu);
  8973. }
  8974. }
  8975. if (opt_shares) {
  8976. applog(LOG_WARNING, "Mined %g accepted shares of %g requested\n", total_diff_accepted, opt_shares);
  8977. if (opt_shares > total_diff_accepted)
  8978. applog(LOG_WARNING, "WARNING - Mined only %g shares of %g requested.", total_diff_accepted, opt_shares);
  8979. }
  8980. applog(LOG_WARNING, " ");
  8981. fflush(stderr);
  8982. fflush(stdout);
  8983. }
  8984. void _bfg_clean_up(bool restarting)
  8985. {
  8986. #ifdef HAVE_OPENCL
  8987. clear_adl(nDevs);
  8988. #endif
  8989. #ifdef HAVE_LIBUSB
  8990. if (likely(have_libusb))
  8991. libusb_exit(NULL);
  8992. #endif
  8993. cgtime(&total_tv_end);
  8994. #ifdef WIN32
  8995. timeEndPeriod(1);
  8996. #endif
  8997. if (!restarting) {
  8998. /* Attempting to disable curses or print a summary during a
  8999. * restart can lead to a deadlock. */
  9000. #ifdef HAVE_CURSES
  9001. disable_curses();
  9002. #endif
  9003. if (!opt_realquiet && successful_connect)
  9004. print_summary();
  9005. }
  9006. if (opt_n_threads > 0)
  9007. free(cpus);
  9008. curl_global_cleanup();
  9009. #ifdef WIN32
  9010. WSACleanup();
  9011. #endif
  9012. }
  9013. void _quit(int status)
  9014. {
  9015. if (status) {
  9016. const char *ev = getenv("__BFGMINER_SEGFAULT_ERRQUIT");
  9017. if (unlikely(ev && ev[0] && ev[0] != '0')) {
  9018. int *p = NULL;
  9019. // NOTE debugger can bypass with: p = &p
  9020. *p = status; // Segfault, hopefully dumping core
  9021. }
  9022. }
  9023. #if defined(unix) || defined(__APPLE__)
  9024. if (forkpid > 0) {
  9025. kill(forkpid, SIGTERM);
  9026. forkpid = 0;
  9027. }
  9028. #endif
  9029. exit(status);
  9030. }
  9031. #ifdef HAVE_CURSES
  9032. char *curses_input(const char *query)
  9033. {
  9034. char *input;
  9035. echo();
  9036. input = malloc(255);
  9037. if (!input)
  9038. quit(1, "Failed to malloc input");
  9039. leaveok(logwin, false);
  9040. wlogprint("%s:\n", query);
  9041. wgetnstr(logwin, input, 255);
  9042. if (!strlen(input))
  9043. {
  9044. free(input);
  9045. input = NULL;
  9046. }
  9047. leaveok(logwin, true);
  9048. noecho();
  9049. return input;
  9050. }
  9051. #endif
  9052. static bool pools_active = false;
  9053. static void *test_pool_thread(void *arg)
  9054. {
  9055. struct pool *pool = (struct pool *)arg;
  9056. if (pool_active(pool, false)) {
  9057. pool_tset(pool, &pool->lagging);
  9058. pool_tclear(pool, &pool->idle);
  9059. bool first_pool = false;
  9060. cg_wlock(&control_lock);
  9061. if (!pools_active) {
  9062. currentpool = pool;
  9063. if (pool->pool_no != 0)
  9064. first_pool = true;
  9065. pools_active = true;
  9066. }
  9067. cg_wunlock(&control_lock);
  9068. if (unlikely(first_pool))
  9069. applog(LOG_NOTICE, "Switching to pool %d %s - first alive pool", pool->pool_no, pool->rpc_url);
  9070. else
  9071. applog(LOG_NOTICE, "Pool %d %s alive", pool->pool_no, pool->rpc_url);
  9072. switch_pools(NULL);
  9073. } else
  9074. pool_died(pool);
  9075. pool->testing = false;
  9076. return NULL;
  9077. }
  9078. /* Always returns true that the pool details were added unless we are not
  9079. * live, implying this is the only pool being added, so if no pools are
  9080. * active it returns false. */
  9081. bool add_pool_details(struct pool *pool, bool live, char *url, char *user, char *pass)
  9082. {
  9083. size_t siz;
  9084. pool->rpc_url = url;
  9085. pool->rpc_user = user;
  9086. pool->rpc_pass = pass;
  9087. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  9088. pool->rpc_userpass = malloc(siz);
  9089. if (!pool->rpc_userpass)
  9090. quit(1, "Failed to malloc userpass");
  9091. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  9092. pool->testing = true;
  9093. pool->idle = true;
  9094. enable_pool(pool);
  9095. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9096. if (!live) {
  9097. pthread_join(pool->test_thread, NULL);
  9098. return pools_active;
  9099. }
  9100. return true;
  9101. }
  9102. #ifdef HAVE_CURSES
  9103. static bool input_pool(bool live)
  9104. {
  9105. char *url = NULL, *user = NULL, *pass = NULL;
  9106. struct pool *pool;
  9107. bool ret = false;
  9108. immedok(logwin, true);
  9109. wlogprint("Input server details.\n");
  9110. url = curses_input("URL");
  9111. if (!url)
  9112. goto out;
  9113. user = curses_input("Username");
  9114. if (!user)
  9115. goto out;
  9116. pass = curses_input("Password");
  9117. if (!pass)
  9118. pass = calloc(1, 1);
  9119. pool = add_pool();
  9120. if (!detect_stratum(pool, url) && strncmp(url, "http://", 7) &&
  9121. strncmp(url, "https://", 8)) {
  9122. char *httpinput;
  9123. httpinput = malloc(256);
  9124. if (!httpinput)
  9125. quit(1, "Failed to malloc httpinput");
  9126. strcpy(httpinput, "http://");
  9127. strncat(httpinput, url, 248);
  9128. free(url);
  9129. url = httpinput;
  9130. }
  9131. ret = add_pool_details(pool, live, url, user, pass);
  9132. out:
  9133. immedok(logwin, false);
  9134. if (!ret) {
  9135. if (url)
  9136. free(url);
  9137. if (user)
  9138. free(user);
  9139. if (pass)
  9140. free(pass);
  9141. }
  9142. return ret;
  9143. }
  9144. #endif
  9145. #if defined(unix) || defined(__APPLE__)
  9146. static void fork_monitor()
  9147. {
  9148. // Make a pipe: [readFD, writeFD]
  9149. int pfd[2];
  9150. int r = pipe(pfd);
  9151. if (r < 0) {
  9152. perror("pipe - failed to create pipe for --monitor");
  9153. exit(1);
  9154. }
  9155. // Make stderr write end of pipe
  9156. fflush(stderr);
  9157. r = dup2(pfd[1], 2);
  9158. if (r < 0) {
  9159. perror("dup2 - failed to alias stderr to write end of pipe for --monitor");
  9160. exit(1);
  9161. }
  9162. r = close(pfd[1]);
  9163. if (r < 0) {
  9164. perror("close - failed to close write end of pipe for --monitor");
  9165. exit(1);
  9166. }
  9167. // Don't allow a dying monitor to kill the main process
  9168. sighandler_t sr0 = signal(SIGPIPE, SIG_IGN);
  9169. sighandler_t sr1 = signal(SIGPIPE, SIG_IGN);
  9170. if (SIG_ERR == sr0 || SIG_ERR == sr1) {
  9171. perror("signal - failed to edit signal mask for --monitor");
  9172. exit(1);
  9173. }
  9174. // Fork a child process
  9175. forkpid = fork();
  9176. if (forkpid < 0) {
  9177. perror("fork - failed to fork child process for --monitor");
  9178. exit(1);
  9179. }
  9180. // Child: launch monitor command
  9181. if (0 == forkpid) {
  9182. // Make stdin read end of pipe
  9183. r = dup2(pfd[0], 0);
  9184. if (r < 0) {
  9185. perror("dup2 - in child, failed to alias read end of pipe to stdin for --monitor");
  9186. exit(1);
  9187. }
  9188. close(pfd[0]);
  9189. if (r < 0) {
  9190. perror("close - in child, failed to close read end of pipe for --monitor");
  9191. exit(1);
  9192. }
  9193. // Launch user specified command
  9194. execl("/bin/bash", "/bin/bash", "-c", opt_stderr_cmd, (char*)NULL);
  9195. perror("execl - in child failed to exec user specified command for --monitor");
  9196. exit(1);
  9197. }
  9198. // Parent: clean up unused fds and bail
  9199. r = close(pfd[0]);
  9200. if (r < 0) {
  9201. perror("close - failed to close read end of pipe for --monitor");
  9202. exit(1);
  9203. }
  9204. }
  9205. #endif // defined(unix)
  9206. #ifdef HAVE_CURSES
  9207. #ifdef USE_UNICODE
  9208. static
  9209. wchar_t select_unicode_char(const wchar_t *opt)
  9210. {
  9211. for ( ; *opt; ++opt)
  9212. if (iswprint(*opt))
  9213. return *opt;
  9214. return '?';
  9215. }
  9216. #endif
  9217. void enable_curses(void) {
  9218. int x;
  9219. __maybe_unused int y;
  9220. lock_curses();
  9221. if (curses_active) {
  9222. unlock_curses();
  9223. return;
  9224. }
  9225. #ifdef USE_UNICODE
  9226. if (use_unicode)
  9227. {
  9228. setlocale(LC_CTYPE, "");
  9229. if (iswprint(0xb0))
  9230. have_unicode_degrees = true;
  9231. unicode_micro = select_unicode_char(L"\xb5\u03bcu");
  9232. }
  9233. #endif
  9234. mainwin = initscr();
  9235. start_color();
  9236. #if defined(PDCURSES) || defined(NCURSES_VERSION)
  9237. if (ERR != use_default_colors())
  9238. default_bgcolor = -1;
  9239. #endif
  9240. if (has_colors() && ERR != init_pair(1, COLOR_WHITE, COLOR_BLUE))
  9241. {
  9242. menu_attr = COLOR_PAIR(1);
  9243. if (ERR != init_pair(2, COLOR_RED, default_bgcolor))
  9244. attr_bad |= COLOR_PAIR(2);
  9245. }
  9246. keypad(mainwin, true);
  9247. getmaxyx(mainwin, y, x);
  9248. statuswin = newwin(logstart, x, 0, 0);
  9249. leaveok(statuswin, true);
  9250. // For whatever reason, PDCurses crashes if the logwin is initialized to height y-logcursor
  9251. // We resize the window later anyway, so just start it off at 1 :)
  9252. logwin = newwin(1, 0, logcursor, 0);
  9253. idlok(logwin, true);
  9254. scrollok(logwin, true);
  9255. leaveok(logwin, true);
  9256. cbreak();
  9257. noecho();
  9258. nonl();
  9259. curses_active = true;
  9260. statusy = logstart;
  9261. unlock_curses();
  9262. }
  9263. #endif
  9264. /* TODO: fix need a dummy CPU device_drv even if no support for CPU mining */
  9265. #ifndef WANT_CPUMINE
  9266. struct device_drv cpu_drv;
  9267. struct device_drv cpu_drv = {
  9268. .name = "CPU",
  9269. };
  9270. #endif
  9271. static int cgminer_id_count = 0;
  9272. static int device_line_id_count;
  9273. void register_device(struct cgpu_info *cgpu)
  9274. {
  9275. cgpu->deven = DEV_ENABLED;
  9276. wr_lock(&devices_lock);
  9277. devices[cgpu->cgminer_id = cgminer_id_count++] = cgpu;
  9278. wr_unlock(&devices_lock);
  9279. if (!cgpu->proc_id)
  9280. cgpu->device_line_id = device_line_id_count++;
  9281. mining_threads += cgpu->threads ?: 1;
  9282. #ifdef HAVE_CURSES
  9283. adj_width(mining_threads, &dev_width);
  9284. #endif
  9285. rwlock_init(&cgpu->qlock);
  9286. cgpu->queued_work = NULL;
  9287. }
  9288. struct _cgpu_devid_counter {
  9289. char name[4];
  9290. int lastid;
  9291. UT_hash_handle hh;
  9292. };
  9293. void renumber_cgpu(struct cgpu_info *cgpu)
  9294. {
  9295. static struct _cgpu_devid_counter *devids = NULL;
  9296. struct _cgpu_devid_counter *d;
  9297. HASH_FIND_STR(devids, cgpu->drv->name, d);
  9298. if (d)
  9299. cgpu->device_id = ++d->lastid;
  9300. else {
  9301. d = malloc(sizeof(*d));
  9302. memcpy(d->name, cgpu->drv->name, sizeof(d->name));
  9303. cgpu->device_id = d->lastid = 0;
  9304. HASH_ADD_STR(devids, name, d);
  9305. }
  9306. // Build repr strings
  9307. sprintf(cgpu->dev_repr, "%s%2u", cgpu->drv->name, cgpu->device_id % 100);
  9308. sprintf(cgpu->dev_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id % 100);
  9309. strcpy(cgpu->proc_repr, cgpu->dev_repr);
  9310. sprintf(cgpu->proc_repr_ns, "%s%u", cgpu->drv->name, cgpu->device_id);
  9311. const int lpcount = cgpu->procs;
  9312. if (lpcount > 1)
  9313. {
  9314. int ns;
  9315. struct cgpu_info *slave;
  9316. int lpdigits = 1;
  9317. for (int i = lpcount; i > 26 && lpdigits < 3; i /= 26)
  9318. ++lpdigits;
  9319. memset(&cgpu->proc_repr[5], 'a', lpdigits);
  9320. cgpu->proc_repr[5 + lpdigits] = '\0';
  9321. ns = strlen(cgpu->proc_repr_ns);
  9322. strcpy(&cgpu->proc_repr_ns[ns], &cgpu->proc_repr[5]);
  9323. slave = cgpu;
  9324. for (int i = 1; i < lpcount; ++i)
  9325. {
  9326. slave = slave->next_proc;
  9327. strcpy(slave->proc_repr, cgpu->proc_repr);
  9328. strcpy(slave->proc_repr_ns, cgpu->proc_repr_ns);
  9329. for (int x = i, y = lpdigits; --y, x; x /= 26)
  9330. {
  9331. slave->proc_repr_ns[ns + y] =
  9332. slave->proc_repr[5 + y] += (x % 26);
  9333. }
  9334. }
  9335. }
  9336. }
  9337. static bool my_blkmaker_sha256_callback(void *digest, const void *buffer, size_t length)
  9338. {
  9339. sha256(buffer, length, digest);
  9340. return true;
  9341. }
  9342. static
  9343. int drv_algo_check(const struct device_drv * const drv)
  9344. {
  9345. const int algomatch = opt_scrypt ? POW_SCRYPT : POW_SHA256D;
  9346. const supported_algos_t algos = drv->supported_algos ?: POW_SHA256D;
  9347. return (algos & algomatch);
  9348. }
  9349. #ifndef HAVE_PTHREAD_CANCEL
  9350. extern void setup_pthread_cancel_workaround();
  9351. extern struct sigaction pcwm_orig_term_handler;
  9352. #endif
  9353. bool bfg_need_detect_rescan;
  9354. extern void probe_device(struct lowlevel_device_info *);
  9355. static void schedule_rescan(const struct timeval *);
  9356. static
  9357. void drv_detect_all()
  9358. {
  9359. bool rescanning = false;
  9360. rescan:
  9361. bfg_need_detect_rescan = false;
  9362. #ifdef HAVE_BFG_LOWLEVEL
  9363. struct lowlevel_device_info * const infolist = lowlevel_scan(), *info, *infotmp;
  9364. LL_FOREACH_SAFE(infolist, info, infotmp)
  9365. probe_device(info);
  9366. LL_FOREACH_SAFE(infolist, info, infotmp)
  9367. pthread_join(info->probe_pth, NULL);
  9368. #endif
  9369. struct driver_registration *reg, *tmp;
  9370. BFG_FOREACH_DRIVER_BY_PRIORITY(reg, tmp)
  9371. {
  9372. const struct device_drv * const drv = reg->drv;
  9373. if (!(drv_algo_check(drv) && drv->drv_detect))
  9374. continue;
  9375. drv->drv_detect();
  9376. }
  9377. #ifdef HAVE_BFG_LOWLEVEL
  9378. lowlevel_scan_free();
  9379. #endif
  9380. if (bfg_need_detect_rescan)
  9381. {
  9382. if (rescanning)
  9383. {
  9384. applog(LOG_DEBUG, "Device rescan requested a second time, delaying");
  9385. struct timeval tv_when;
  9386. timer_set_delay_from_now(&tv_when, rescan_delay_ms * 1000);
  9387. schedule_rescan(&tv_when);
  9388. }
  9389. else
  9390. {
  9391. rescanning = true;
  9392. applog(LOG_DEBUG, "Device rescan requested");
  9393. goto rescan;
  9394. }
  9395. }
  9396. }
  9397. static
  9398. void allocate_cgpu(struct cgpu_info *cgpu, unsigned int *kp)
  9399. {
  9400. struct thr_info *thr;
  9401. int j;
  9402. struct device_drv *api = cgpu->drv;
  9403. cgpu->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  9404. int threadobj = cgpu->threads;
  9405. if (!threadobj)
  9406. // Create a fake thread object to handle hashmeter etc
  9407. threadobj = 1;
  9408. cgpu->thr = calloc(threadobj + 1, sizeof(*cgpu->thr));
  9409. cgpu->thr[threadobj] = NULL;
  9410. cgpu->status = LIFE_INIT;
  9411. if (opt_devices_enabled_list)
  9412. {
  9413. struct string_elist *enablestr_elist;
  9414. cgpu->deven = DEV_DISABLED;
  9415. DL_FOREACH(opt_devices_enabled_list, enablestr_elist)
  9416. {
  9417. const char * const enablestr = enablestr_elist->string;
  9418. if (cgpu_match(enablestr, cgpu))
  9419. {
  9420. cgpu->deven = DEV_ENABLED;
  9421. break;
  9422. }
  9423. }
  9424. }
  9425. cgpu->max_hashes = 0;
  9426. BFGINIT(cgpu->min_nonce_diff, 1);
  9427. BFGINIT(cgpu->cutofftemp, opt_cutofftemp);
  9428. BFGINIT(cgpu->targettemp, cgpu->cutofftemp - 6);
  9429. // Setup thread structs before starting any of the threads, in case they try to interact
  9430. for (j = 0; j < threadobj; ++j, ++*kp) {
  9431. thr = get_thread(*kp);
  9432. thr->id = *kp;
  9433. thr->cgpu = cgpu;
  9434. thr->device_thread = j;
  9435. thr->work_restart_notifier[1] = INVSOCK;
  9436. thr->mutex_request[1] = INVSOCK;
  9437. thr->_job_transition_in_progress = true;
  9438. timerclear(&thr->tv_morework);
  9439. thr->scanhash_working = true;
  9440. thr->hashes_done = 0;
  9441. timerclear(&thr->tv_hashes_done);
  9442. cgtime(&thr->tv_lastupdate);
  9443. thr->tv_poll.tv_sec = -1;
  9444. thr->_max_nonce = api->can_limit_work ? api->can_limit_work(thr) : 0xffffffff;
  9445. cgpu->thr[j] = thr;
  9446. }
  9447. if (!cgpu->device->threads)
  9448. notifier_init_invalid(cgpu->thr[0]->notifier);
  9449. else
  9450. if (!cgpu->threads)
  9451. memcpy(&cgpu->thr[0]->notifier, &cgpu->device->thr[0]->notifier, sizeof(cgpu->thr[0]->notifier));
  9452. else
  9453. for (j = 0; j < cgpu->threads; ++j)
  9454. {
  9455. thr = cgpu->thr[j];
  9456. notifier_init(thr->notifier);
  9457. }
  9458. }
  9459. static
  9460. void start_cgpu(struct cgpu_info *cgpu)
  9461. {
  9462. struct thr_info *thr;
  9463. int j;
  9464. for (j = 0; j < cgpu->threads; ++j) {
  9465. thr = cgpu->thr[j];
  9466. /* Enable threads for devices set not to mine but disable
  9467. * their queue in case we wish to enable them later */
  9468. if (cgpu->drv->thread_prepare && !cgpu->drv->thread_prepare(thr))
  9469. continue;
  9470. thread_reportout(thr);
  9471. if (unlikely(thr_info_create(thr, NULL, miner_thread, thr)))
  9472. quit(1, "thread %d create failed", thr->id);
  9473. notifier_wake(thr->notifier);
  9474. }
  9475. if (cgpu->deven == DEV_ENABLED)
  9476. proc_enable(cgpu);
  9477. }
  9478. static
  9479. void _scan_serial(void *p)
  9480. {
  9481. const char *s = p;
  9482. struct string_elist *iter, *tmp;
  9483. struct string_elist *orig_scan_devices = scan_devices;
  9484. if (s)
  9485. {
  9486. // Make temporary scan_devices list
  9487. scan_devices = NULL;
  9488. string_elist_add("noauto", &scan_devices);
  9489. add_serial(s);
  9490. }
  9491. drv_detect_all();
  9492. if (s)
  9493. {
  9494. DL_FOREACH_SAFE(scan_devices, iter, tmp)
  9495. {
  9496. string_elist_del(&scan_devices, iter);
  9497. }
  9498. scan_devices = orig_scan_devices;
  9499. }
  9500. }
  9501. #ifdef HAVE_BFG_LOWLEVEL
  9502. static
  9503. bool _probe_device_match(const struct lowlevel_device_info * const info, const char * const ser)
  9504. {
  9505. if (!(false
  9506. || (info->serial && !strcasecmp(ser, info->serial))
  9507. || (info->path && !strcasecmp(ser, info->path ))
  9508. || (info->devid && !strcasecmp(ser, info->devid ))
  9509. ))
  9510. {
  9511. char *devid = devpath_to_devid(ser);
  9512. if (!devid)
  9513. return false;
  9514. const bool different = strcmp(info->devid, devid);
  9515. free(devid);
  9516. if (different)
  9517. return false;
  9518. }
  9519. return true;
  9520. }
  9521. static
  9522. const struct device_drv *_probe_device_find_drv(const char * const _dname, const size_t dnamelen)
  9523. {
  9524. struct driver_registration *dreg;
  9525. char dname[dnamelen];
  9526. int i;
  9527. for (i = 0; i < dnamelen; ++i)
  9528. dname[i] = tolower(_dname[i]);
  9529. BFG_FIND_DRV_BY_DNAME(dreg, dname, dnamelen);
  9530. if (!dreg)
  9531. {
  9532. for (i = 0; i < dnamelen; ++i)
  9533. dname[i] = toupper(_dname[i]);
  9534. BFG_FIND_DRV_BY_NAME(dreg, dname, dnamelen);
  9535. if (!dreg)
  9536. return NULL;
  9537. }
  9538. if (!drv_algo_check(dreg->drv))
  9539. return NULL;
  9540. return dreg->drv;
  9541. }
  9542. static
  9543. void *probe_device_thread(void *p)
  9544. {
  9545. struct lowlevel_device_info * const infolist = p;
  9546. struct lowlevel_device_info *info = infolist;
  9547. bool request_rescan = false;
  9548. {
  9549. char threadname[5 + strlen(info->devid) + 1];
  9550. sprintf(threadname, "probe_%s", info->devid);
  9551. RenameThread(threadname);
  9552. }
  9553. // If already in use, ignore
  9554. if (bfg_claim_any(NULL, NULL, info->devid))
  9555. applogr(NULL, LOG_DEBUG, "%s: \"%s\" already in use",
  9556. __func__, info->product);
  9557. // if lowlevel device matches specific user assignment, probe requested driver(s)
  9558. struct string_elist *sd_iter, *sd_tmp;
  9559. struct driver_registration *dreg, *dreg_tmp;
  9560. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9561. {
  9562. const char * const dname = sd_iter->string;
  9563. const char * const colon = strpbrk(dname, ":@");
  9564. if (!(colon && colon != dname))
  9565. continue;
  9566. const char * const ser = &colon[1];
  9567. LL_FOREACH2(infolist, info, same_devid_next)
  9568. {
  9569. if (!_probe_device_match(info, ser))
  9570. continue;
  9571. const size_t dnamelen = (colon - dname);
  9572. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9573. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9574. continue;
  9575. if (drv->lowl_probe(info))
  9576. return NULL;
  9577. else
  9578. if (opt_hotplug)
  9579. request_rescan = true;
  9580. }
  9581. }
  9582. // probe driver(s) with auto enabled and matching VID/PID/Product/etc of device
  9583. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9584. {
  9585. const struct device_drv * const drv = dreg->drv;
  9586. if (!drv_algo_check(drv))
  9587. continue;
  9588. // Check for "noauto" flag
  9589. // NOTE: driver-specific configuration overrides general
  9590. bool doauto = true;
  9591. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9592. {
  9593. const char * const dname = sd_iter->string;
  9594. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9595. const char *colon = strchr(dname, ':');
  9596. if (!colon)
  9597. colon = &dname[-1];
  9598. if (strcasecmp("noauto", &colon[1]) && strcasecmp("auto", &colon[1]))
  9599. continue;
  9600. const ssize_t dnamelen = (colon - dname);
  9601. if (dnamelen >= 0 && _probe_device_find_drv(dname, dnamelen) != drv)
  9602. continue;
  9603. doauto = (tolower(colon[1]) == 'a');
  9604. if (dnamelen != -1)
  9605. break;
  9606. }
  9607. if (doauto && drv->lowl_match)
  9608. {
  9609. LL_FOREACH2(infolist, info, same_devid_next)
  9610. {
  9611. if (!drv->lowl_match(info))
  9612. continue;
  9613. if (drv->lowl_probe(info))
  9614. return NULL;
  9615. else
  9616. if (opt_hotplug)
  9617. bfg_need_detect_rescan = true;
  9618. }
  9619. }
  9620. }
  9621. // probe driver(s) with 'all' enabled
  9622. DL_FOREACH_SAFE(scan_devices, sd_iter, sd_tmp)
  9623. {
  9624. const char * const dname = sd_iter->string;
  9625. // NOTE: Only checking flags here, NOT path/serial, so @ is unacceptable
  9626. const char * const colon = strchr(dname, ':');
  9627. if (!colon)
  9628. {
  9629. LL_FOREACH2(infolist, info, same_devid_next)
  9630. {
  9631. if (
  9632. #ifdef NEED_BFG_LOWL_VCOM
  9633. (info->lowl == &lowl_vcom && !strcasecmp(dname, "all")) ||
  9634. #endif
  9635. _probe_device_match(info, (dname[0] == '@') ? &dname[1] : dname))
  9636. {
  9637. BFG_FOREACH_DRIVER_BY_PRIORITY(dreg, dreg_tmp)
  9638. {
  9639. const struct device_drv * const drv = dreg->drv;
  9640. if (!drv_algo_check(drv))
  9641. continue;
  9642. if (drv->lowl_probe_by_name_only)
  9643. continue;
  9644. if (!drv->lowl_probe)
  9645. continue;
  9646. if (drv->lowl_probe(info))
  9647. return NULL;
  9648. }
  9649. if (opt_hotplug)
  9650. request_rescan = true;
  9651. break;
  9652. }
  9653. }
  9654. continue;
  9655. }
  9656. if (strcasecmp(&colon[1], "all"))
  9657. continue;
  9658. const size_t dnamelen = (colon - dname);
  9659. LL_FOREACH2(infolist, info, same_devid_next)
  9660. {
  9661. const struct device_drv * const drv = _probe_device_find_drv(dname, dnamelen);
  9662. if (!(drv && drv->lowl_probe && drv_algo_check(drv)))
  9663. continue;
  9664. if (drv->lowl_probe(info))
  9665. return NULL;
  9666. }
  9667. }
  9668. // Only actually request a rescan if we never found any cgpu
  9669. if (request_rescan)
  9670. bfg_need_detect_rescan = true;
  9671. return NULL;
  9672. }
  9673. void probe_device(struct lowlevel_device_info * const info)
  9674. {
  9675. pthread_create(&info->probe_pth, NULL, probe_device_thread, info);
  9676. }
  9677. #endif
  9678. int create_new_cgpus(void (*addfunc)(void*), void *arg)
  9679. {
  9680. static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  9681. int devcount, i, mining_threads_new = 0;
  9682. unsigned int k;
  9683. struct cgpu_info *cgpu;
  9684. struct thr_info *thr;
  9685. void *p;
  9686. mutex_lock(&mutex);
  9687. devcount = total_devices;
  9688. addfunc(arg);
  9689. if (!total_devices_new)
  9690. goto out;
  9691. wr_lock(&devices_lock);
  9692. p = realloc(devices, sizeof(struct cgpu_info *) * (total_devices + total_devices_new + 1));
  9693. if (unlikely(!p))
  9694. {
  9695. wr_unlock(&devices_lock);
  9696. applog(LOG_ERR, "scan_serial: realloc failed trying to grow devices array");
  9697. goto out;
  9698. }
  9699. devices = p;
  9700. wr_unlock(&devices_lock);
  9701. for (i = 0; i < total_devices_new; ++i)
  9702. {
  9703. cgpu = devices_new[i];
  9704. mining_threads_new += cgpu->threads ?: 1;
  9705. }
  9706. wr_lock(&mining_thr_lock);
  9707. mining_threads_new += mining_threads;
  9708. p = realloc(mining_thr, sizeof(struct thr_info *) * mining_threads_new);
  9709. if (unlikely(!p))
  9710. {
  9711. wr_unlock(&mining_thr_lock);
  9712. applog(LOG_ERR, "scan_serial: realloc failed trying to grow mining_thr");
  9713. goto out;
  9714. }
  9715. mining_thr = p;
  9716. wr_unlock(&mining_thr_lock);
  9717. for (i = mining_threads; i < mining_threads_new; ++i) {
  9718. mining_thr[i] = calloc(1, sizeof(*thr));
  9719. if (!mining_thr[i])
  9720. {
  9721. applog(LOG_ERR, "scan_serial: Failed to calloc mining_thr[%d]", i);
  9722. for ( ; --i >= mining_threads; )
  9723. free(mining_thr[i]);
  9724. goto out;
  9725. }
  9726. }
  9727. k = mining_threads;
  9728. for (i = 0; i < total_devices_new; ++i)
  9729. {
  9730. cgpu = devices_new[i];
  9731. allocate_cgpu(cgpu, &k);
  9732. }
  9733. for (i = 0; i < total_devices_new; ++i)
  9734. {
  9735. cgpu = devices_new[i];
  9736. start_cgpu(cgpu);
  9737. register_device(cgpu);
  9738. ++total_devices;
  9739. }
  9740. #ifdef HAVE_CURSES
  9741. switch_logsize();
  9742. #endif
  9743. out:
  9744. total_devices_new = 0;
  9745. devcount = total_devices - devcount;
  9746. mutex_unlock(&mutex);
  9747. return devcount;
  9748. }
  9749. int scan_serial(const char *s)
  9750. {
  9751. return create_new_cgpus(_scan_serial, (void*)s);
  9752. }
  9753. static pthread_mutex_t rescan_mutex = PTHREAD_MUTEX_INITIALIZER;
  9754. static bool rescan_active;
  9755. static struct timeval tv_rescan;
  9756. static notifier_t rescan_notifier;
  9757. static
  9758. void *rescan_thread(__maybe_unused void *p)
  9759. {
  9760. pthread_detach(pthread_self());
  9761. RenameThread("rescan");
  9762. struct timeval tv_timeout, tv_now;
  9763. fd_set rfds;
  9764. while (true)
  9765. {
  9766. mutex_lock(&rescan_mutex);
  9767. tv_timeout = tv_rescan;
  9768. if (!timer_isset(&tv_timeout))
  9769. {
  9770. rescan_active = false;
  9771. mutex_unlock(&rescan_mutex);
  9772. break;
  9773. }
  9774. mutex_unlock(&rescan_mutex);
  9775. FD_ZERO(&rfds);
  9776. FD_SET(rescan_notifier[0], &rfds);
  9777. const int maxfd = rescan_notifier[0];
  9778. timer_set_now(&tv_now);
  9779. if (select(maxfd+1, &rfds, NULL, NULL, select_timeout(&tv_timeout, &tv_now)) > 0)
  9780. notifier_read(rescan_notifier);
  9781. mutex_lock(&rescan_mutex);
  9782. if (timer_passed(&tv_rescan, NULL))
  9783. {
  9784. timer_unset(&tv_rescan);
  9785. mutex_unlock(&rescan_mutex);
  9786. applog(LOG_DEBUG, "Rescan timer expired, triggering");
  9787. scan_serial(NULL);
  9788. }
  9789. else
  9790. mutex_unlock(&rescan_mutex);
  9791. }
  9792. return NULL;
  9793. }
  9794. static
  9795. void _schedule_rescan(const struct timeval * const tvp_when)
  9796. {
  9797. if (rescan_active)
  9798. {
  9799. if (timercmp(tvp_when, &tv_rescan, <))
  9800. applog(LOG_DEBUG, "schedule_rescan: New schedule is before current, waiting it out");
  9801. else
  9802. {
  9803. applog(LOG_DEBUG, "schedule_rescan: New schedule is after current, delaying rescan");
  9804. tv_rescan = *tvp_when;
  9805. }
  9806. return;
  9807. }
  9808. applog(LOG_DEBUG, "schedule_rescan: Scheduling rescan (no rescans currently pending)");
  9809. tv_rescan = *tvp_when;
  9810. rescan_active = true;
  9811. static pthread_t pth;
  9812. if (unlikely(pthread_create(&pth, NULL, rescan_thread, NULL)))
  9813. applog(LOG_ERR, "Failed to start rescan thread");
  9814. }
  9815. static
  9816. void schedule_rescan(const struct timeval * const tvp_when)
  9817. {
  9818. mutex_lock(&rescan_mutex);
  9819. _schedule_rescan(tvp_when);
  9820. mutex_unlock(&rescan_mutex);
  9821. }
  9822. #ifdef HAVE_BFG_HOTPLUG
  9823. static
  9824. void hotplug_trigger()
  9825. {
  9826. applog(LOG_DEBUG, "%s: Scheduling rescan immediately", __func__);
  9827. struct timeval tv_now;
  9828. timer_set_now(&tv_now);
  9829. schedule_rescan(&tv_now);
  9830. }
  9831. #endif
  9832. #if defined(HAVE_LIBUDEV) && defined(HAVE_SYS_EPOLL_H)
  9833. static
  9834. void *hotplug_thread(__maybe_unused void *p)
  9835. {
  9836. pthread_detach(pthread_self());
  9837. RenameThread("hotplug");
  9838. struct udev * const udev = udev_new();
  9839. if (unlikely(!udev))
  9840. applogfailr(NULL, LOG_ERR, "udev_new");
  9841. struct udev_monitor * const mon = udev_monitor_new_from_netlink(udev, "udev");
  9842. if (unlikely(!mon))
  9843. applogfailr(NULL, LOG_ERR, "udev_monitor_new_from_netlink");
  9844. if (unlikely(udev_monitor_enable_receiving(mon)))
  9845. applogfailr(NULL, LOG_ERR, "udev_monitor_enable_receiving");
  9846. const int epfd = epoll_create(1);
  9847. if (unlikely(epfd == -1))
  9848. applogfailr(NULL, LOG_ERR, "epoll_create");
  9849. {
  9850. const int fd = udev_monitor_get_fd(mon);
  9851. struct epoll_event ev = {
  9852. .events = EPOLLIN | EPOLLPRI,
  9853. .data.fd = fd,
  9854. };
  9855. if (epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &ev))
  9856. applogfailr(NULL, LOG_ERR, "epoll_ctl");
  9857. }
  9858. struct epoll_event ev;
  9859. int rv;
  9860. bool pending = false;
  9861. while (true)
  9862. {
  9863. rv = epoll_wait(epfd, &ev, 1, pending ? hotplug_delay_ms : -1);
  9864. if (rv == -1)
  9865. {
  9866. if (errno == EAGAIN || errno == EINTR)
  9867. continue;
  9868. break;
  9869. }
  9870. if (!rv)
  9871. {
  9872. hotplug_trigger();
  9873. pending = false;
  9874. continue;
  9875. }
  9876. struct udev_device * const device = udev_monitor_receive_device(mon);
  9877. if (!device)
  9878. continue;
  9879. const char * const action = udev_device_get_action(device);
  9880. applog(LOG_DEBUG, "%s: Received %s event", __func__, action);
  9881. if (strcmp(action, "add"))
  9882. continue;
  9883. pending = true;
  9884. }
  9885. applogfailr(NULL, LOG_ERR, "epoll_wait");
  9886. }
  9887. #elif defined(WIN32)
  9888. static UINT_PTR _hotplug_wintimer_id;
  9889. VOID CALLBACK hotplug_win_timer(HWND hwnd, UINT msg, UINT_PTR idEvent, DWORD dwTime)
  9890. {
  9891. KillTimer(NULL, _hotplug_wintimer_id);
  9892. _hotplug_wintimer_id = 0;
  9893. hotplug_trigger();
  9894. }
  9895. LRESULT CALLBACK hotplug_win_callback(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  9896. {
  9897. if (msg == WM_DEVICECHANGE && wParam == DBT_DEVNODES_CHANGED)
  9898. {
  9899. applog(LOG_DEBUG, "%s: Received DBT_DEVNODES_CHANGED event", __func__);
  9900. _hotplug_wintimer_id = SetTimer(NULL, _hotplug_wintimer_id, hotplug_delay_ms, hotplug_win_timer);
  9901. }
  9902. return DefWindowProc(hwnd, msg, wParam, lParam);
  9903. }
  9904. static
  9905. void *hotplug_thread(__maybe_unused void *p)
  9906. {
  9907. pthread_detach(pthread_self());
  9908. WNDCLASS DummyWinCls = {
  9909. .lpszClassName = "BFGDummyWinCls",
  9910. .lpfnWndProc = hotplug_win_callback,
  9911. };
  9912. ATOM a = RegisterClass(&DummyWinCls);
  9913. if (unlikely(!a))
  9914. applogfailinfor(NULL, LOG_ERR, "RegisterClass", "%d", (int)GetLastError());
  9915. HWND hwnd = CreateWindow((void*)(intptr_t)a, NULL, WS_OVERLAPPED, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, NULL);
  9916. if (unlikely(!hwnd))
  9917. applogfailinfor(NULL, LOG_ERR, "CreateWindow", "%d", (int)GetLastError());
  9918. MSG msg;
  9919. while (GetMessage(&msg, NULL, 0, 0))
  9920. {
  9921. TranslateMessage(&msg);
  9922. DispatchMessage(&msg);
  9923. }
  9924. quit(0, "WM_QUIT received");
  9925. return NULL;
  9926. }
  9927. #endif
  9928. #ifdef HAVE_BFG_HOTPLUG
  9929. static
  9930. void hotplug_start()
  9931. {
  9932. pthread_t pth;
  9933. if (unlikely(pthread_create(&pth, NULL, hotplug_thread, NULL)))
  9934. applog(LOG_ERR, "Failed to start hotplug thread");
  9935. }
  9936. #endif
  9937. static void probe_pools(void)
  9938. {
  9939. int i;
  9940. for (i = 0; i < total_pools; i++) {
  9941. struct pool *pool = pools[i];
  9942. pool->testing = true;
  9943. pthread_create(&pool->test_thread, NULL, test_pool_thread, (void *)pool);
  9944. }
  9945. }
  9946. static void raise_fd_limits(void)
  9947. {
  9948. #ifdef HAVE_SETRLIMIT
  9949. struct rlimit fdlimit;
  9950. rlim_t old_soft_limit;
  9951. char frombuf[0x10] = "unlimited";
  9952. char hardbuf[0x10] = "unlimited";
  9953. if (getrlimit(RLIMIT_NOFILE, &fdlimit))
  9954. applogr(, LOG_DEBUG, "setrlimit: Failed to getrlimit(RLIMIT_NOFILE)");
  9955. old_soft_limit = fdlimit.rlim_cur;
  9956. if (fdlimit.rlim_max > FD_SETSIZE || fdlimit.rlim_max == RLIM_INFINITY)
  9957. fdlimit.rlim_cur = FD_SETSIZE;
  9958. else
  9959. fdlimit.rlim_cur = fdlimit.rlim_max;
  9960. if (fdlimit.rlim_max != RLIM_INFINITY)
  9961. snprintf(hardbuf, sizeof(hardbuf), "%lu", (unsigned long)fdlimit.rlim_max);
  9962. if (old_soft_limit != RLIM_INFINITY)
  9963. snprintf(frombuf, sizeof(frombuf), "%lu", (unsigned long)old_soft_limit);
  9964. if (fdlimit.rlim_cur == old_soft_limit)
  9965. applogr(, LOG_DEBUG, "setrlimit: Soft fd limit not being changed from %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9966. (unsigned long)old_soft_limit, (unsigned long)FD_SETSIZE, hardbuf);
  9967. if (setrlimit(RLIMIT_NOFILE, &fdlimit))
  9968. applogr(, LOG_DEBUG, "setrlimit: Failed to change soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9969. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9970. applog(LOG_DEBUG, "setrlimit: Changed soft fd limit from %s to %lu (FD_SETSIZE=%lu; hard limit=%s)",
  9971. frombuf, (unsigned long)fdlimit.rlim_cur, (unsigned long)FD_SETSIZE, hardbuf);
  9972. #else
  9973. applog(LOG_DEBUG, "setrlimit: Not supported by platform");
  9974. #endif
  9975. }
  9976. extern void bfg_init_threadlocal();
  9977. extern void stratumsrv_start();
  9978. int main(int argc, char *argv[])
  9979. {
  9980. struct sigaction handler;
  9981. struct thr_info *thr;
  9982. struct block *block;
  9983. unsigned int k;
  9984. int i;
  9985. int rearrange_pools = 0;
  9986. char *s;
  9987. #ifdef WIN32
  9988. LoadLibrary("backtrace.dll");
  9989. #endif
  9990. blkmk_sha256_impl = my_blkmaker_sha256_callback;
  9991. bfg_init_threadlocal();
  9992. #ifndef HAVE_PTHREAD_CANCEL
  9993. setup_pthread_cancel_workaround();
  9994. #endif
  9995. bfg_init_checksums();
  9996. #ifdef WIN32
  9997. {
  9998. WSADATA wsa;
  9999. i = WSAStartup(MAKEWORD(2, 2), &wsa);
  10000. if (i)
  10001. quit(1, "Failed to initialise Winsock: %s", bfg_strerror(i, BST_SOCKET));
  10002. }
  10003. #endif
  10004. /* This dangerous functions tramples random dynamically allocated
  10005. * variables so do it before anything at all */
  10006. if (unlikely(curl_global_init(CURL_GLOBAL_ALL)))
  10007. quit(1, "Failed to curl_global_init");
  10008. initial_args = malloc(sizeof(char *) * (argc + 1));
  10009. for (i = 0; i < argc; i++)
  10010. initial_args[i] = strdup(argv[i]);
  10011. initial_args[argc] = NULL;
  10012. mutex_init(&hash_lock);
  10013. mutex_init(&console_lock);
  10014. cglock_init(&control_lock);
  10015. mutex_init(&stats_lock);
  10016. mutex_init(&sharelog_lock);
  10017. cglock_init(&ch_lock);
  10018. mutex_init(&sshare_lock);
  10019. rwlock_init(&blk_lock);
  10020. rwlock_init(&netacc_lock);
  10021. rwlock_init(&mining_thr_lock);
  10022. rwlock_init(&devices_lock);
  10023. mutex_init(&lp_lock);
  10024. if (unlikely(pthread_cond_init(&lp_cond, NULL)))
  10025. quit(1, "Failed to pthread_cond_init lp_cond");
  10026. if (unlikely(pthread_cond_init(&gws_cond, NULL)))
  10027. quit(1, "Failed to pthread_cond_init gws_cond");
  10028. notifier_init(submit_waiting_notifier);
  10029. timer_unset(&tv_rescan);
  10030. notifier_init(rescan_notifier);
  10031. snprintf(packagename, sizeof(packagename), "%s %s", PACKAGE, VERSION);
  10032. #ifdef WANT_CPUMINE
  10033. init_max_name_len();
  10034. #endif
  10035. handler.sa_handler = &sighandler;
  10036. handler.sa_flags = 0;
  10037. sigemptyset(&handler.sa_mask);
  10038. #ifdef HAVE_PTHREAD_CANCEL
  10039. sigaction(SIGTERM, &handler, &termhandler);
  10040. #else
  10041. // Need to let pthread_cancel emulation handle SIGTERM first
  10042. termhandler = pcwm_orig_term_handler;
  10043. pcwm_orig_term_handler = handler;
  10044. #endif
  10045. sigaction(SIGINT, &handler, &inthandler);
  10046. #ifndef WIN32
  10047. signal(SIGPIPE, SIG_IGN);
  10048. #else
  10049. timeBeginPeriod(1);
  10050. #endif
  10051. opt_kernel_path = CGMINER_PREFIX;
  10052. cgminer_path = alloca(PATH_MAX);
  10053. s = strdup(argv[0]);
  10054. strcpy(cgminer_path, dirname(s));
  10055. free(s);
  10056. strcat(cgminer_path, "/");
  10057. #if defined(WANT_CPUMINE) && defined(WIN32)
  10058. {
  10059. char buf[32];
  10060. int gev = GetEnvironmentVariable("BFGMINER_BENCH_ALGO", buf, sizeof(buf));
  10061. if (gev > 0 && gev < sizeof(buf))
  10062. {
  10063. setup_benchmark_pool();
  10064. double rate = bench_algo_stage3(atoi(buf));
  10065. // Write result to shared memory for parent
  10066. char unique_name[64];
  10067. if (GetEnvironmentVariable("BFGMINER_SHARED_MEM", unique_name, 32))
  10068. {
  10069. HANDLE map_handle = CreateFileMapping(
  10070. INVALID_HANDLE_VALUE, // use paging file
  10071. NULL, // default security attributes
  10072. PAGE_READWRITE, // read/write access
  10073. 0, // size: high 32-bits
  10074. 4096, // size: low 32-bits
  10075. unique_name // name of map object
  10076. );
  10077. if (NULL != map_handle) {
  10078. void *shared_mem = MapViewOfFile(
  10079. map_handle, // object to map view of
  10080. FILE_MAP_WRITE, // read/write access
  10081. 0, // high offset: map from
  10082. 0, // low offset: beginning
  10083. 0 // default: map entire file
  10084. );
  10085. if (NULL != shared_mem)
  10086. CopyMemory(shared_mem, &rate, sizeof(rate));
  10087. (void)UnmapViewOfFile(shared_mem);
  10088. }
  10089. (void)CloseHandle(map_handle);
  10090. }
  10091. exit(0);
  10092. }
  10093. }
  10094. #endif
  10095. devcursor = 8;
  10096. logstart = devcursor;
  10097. logcursor = logstart;
  10098. block = calloc(sizeof(struct block), 1);
  10099. if (unlikely(!block))
  10100. quit (1, "main OOM");
  10101. for (i = 0; i < 36; i++)
  10102. strcat(block->hash, "0");
  10103. HASH_ADD_STR(blocks, hash, block);
  10104. strcpy(current_block, block->hash);
  10105. mutex_init(&submitting_lock);
  10106. #ifdef HAVE_OPENCL
  10107. opencl_early_init();
  10108. #endif
  10109. schedstart.tm.tm_sec = 1;
  10110. schedstop .tm.tm_sec = 1;
  10111. opt_register_table(opt_early_table, NULL);
  10112. opt_register_table(opt_config_table, NULL);
  10113. opt_register_table(opt_cmdline_table, NULL);
  10114. opt_early_parse(argc, argv, applog_and_exit);
  10115. if (!config_loaded)
  10116. {
  10117. load_default_config();
  10118. rearrange_pools = total_pools;
  10119. }
  10120. opt_free_table();
  10121. /* parse command line */
  10122. opt_register_table(opt_config_table,
  10123. "Options for both config file and command line");
  10124. opt_register_table(opt_cmdline_table,
  10125. "Options for command line only");
  10126. opt_parse(&argc, argv, applog_and_exit);
  10127. if (argc != 1)
  10128. quit(1, "Unexpected extra commandline arguments");
  10129. if (rearrange_pools && rearrange_pools < total_pools)
  10130. {
  10131. // Prioritise commandline pools before default-config pools
  10132. for (i = 0; i < rearrange_pools; ++i)
  10133. pools[i]->prio += rearrange_pools;
  10134. for ( ; i < total_pools; ++i)
  10135. pools[i]->prio -= rearrange_pools;
  10136. }
  10137. #ifndef HAVE_PTHREAD_CANCEL
  10138. // Can't do this any earlier, or config isn't loaded
  10139. applog(LOG_DEBUG, "pthread_cancel workaround in use");
  10140. #endif
  10141. #ifdef HAVE_PWD_H
  10142. struct passwd *user_info = NULL;
  10143. if (opt_setuid != NULL) {
  10144. if ((user_info = getpwnam(opt_setuid)) == NULL) {
  10145. quit(1, "Unable to find setuid user information");
  10146. }
  10147. }
  10148. #endif
  10149. #ifdef HAVE_CHROOT
  10150. if (chroot_dir != NULL) {
  10151. #ifdef HAVE_PWD_H
  10152. if (user_info == NULL && getuid() == 0) {
  10153. applog(LOG_WARNING, "Running as root inside chroot");
  10154. }
  10155. #endif
  10156. if (chroot(chroot_dir) != 0) {
  10157. quit(1, "Unable to chroot");
  10158. }
  10159. if (chdir("/"))
  10160. quit(1, "Unable to chdir to chroot");
  10161. }
  10162. #endif
  10163. #ifdef HAVE_PWD_H
  10164. if (user_info != NULL) {
  10165. if (setgid((*user_info).pw_gid) != 0)
  10166. quit(1, "Unable to setgid");
  10167. if (setuid((*user_info).pw_uid) != 0)
  10168. quit(1, "Unable to setuid");
  10169. }
  10170. #endif
  10171. raise_fd_limits();
  10172. if (opt_benchmark) {
  10173. while (total_pools)
  10174. remove_pool(pools[0]);
  10175. setup_benchmark_pool();
  10176. }
  10177. if (opt_unittest) {
  10178. test_cgpu_match();
  10179. test_intrange();
  10180. test_decimal_width();
  10181. test_domain_funcs();
  10182. utf8_test();
  10183. }
  10184. #ifdef HAVE_CURSES
  10185. if (opt_realquiet || opt_display_devs)
  10186. use_curses = false;
  10187. setlocale(LC_ALL, "C");
  10188. if (use_curses)
  10189. enable_curses();
  10190. #endif
  10191. #ifdef HAVE_LIBUSB
  10192. int err = libusb_init(NULL);
  10193. if (err)
  10194. applog(LOG_WARNING, "libusb_init() failed err %d", err);
  10195. else
  10196. have_libusb = true;
  10197. #endif
  10198. applog(LOG_WARNING, "Started %s", packagename);
  10199. if (cnfbuf) {
  10200. applog(LOG_NOTICE, "Loaded configuration file %s", cnfbuf);
  10201. switch (fileconf_load) {
  10202. case 0:
  10203. applog(LOG_WARNING, "Fatal JSON error in configuration file.");
  10204. applog(LOG_WARNING, "Configuration file could not be used.");
  10205. break;
  10206. case -1:
  10207. applog(LOG_WARNING, "Error in configuration file, partially loaded.");
  10208. if (use_curses)
  10209. applog(LOG_WARNING, "Start BFGMiner with -T to see what failed to load.");
  10210. break;
  10211. default:
  10212. break;
  10213. }
  10214. free(cnfbuf);
  10215. cnfbuf = NULL;
  10216. }
  10217. i = strlen(opt_kernel_path) + 2;
  10218. char __kernel_path[i];
  10219. snprintf(__kernel_path, i, "%s/", opt_kernel_path);
  10220. opt_kernel_path = __kernel_path;
  10221. if (want_per_device_stats)
  10222. opt_log_output = true;
  10223. #ifdef WANT_CPUMINE
  10224. #ifdef USE_SCRYPT
  10225. if (opt_scrypt)
  10226. set_scrypt_algo(&opt_algo);
  10227. #endif
  10228. #endif
  10229. bfg_devapi_init();
  10230. drv_detect_all();
  10231. total_devices = total_devices_new;
  10232. devices = devices_new;
  10233. total_devices_new = 0;
  10234. devices_new = NULL;
  10235. if (opt_display_devs) {
  10236. int devcount = 0;
  10237. applog(LOG_ERR, "Devices detected:");
  10238. for (i = 0; i < total_devices; ++i) {
  10239. struct cgpu_info *cgpu = devices[i];
  10240. char buf[0x100];
  10241. if (cgpu->device != cgpu)
  10242. continue;
  10243. if (cgpu->name)
  10244. snprintf(buf, sizeof(buf), " %s", cgpu->name);
  10245. else
  10246. if (cgpu->dev_manufacturer)
  10247. snprintf(buf, sizeof(buf), " %s by %s", (cgpu->dev_product ?: "Device"), cgpu->dev_manufacturer);
  10248. else
  10249. if (cgpu->dev_product)
  10250. snprintf(buf, sizeof(buf), " %s", cgpu->dev_product);
  10251. else
  10252. strcpy(buf, " Device");
  10253. tailsprintf(buf, sizeof(buf), " (driver=%s; procs=%d", cgpu->drv->dname, cgpu->procs);
  10254. if (cgpu->dev_serial)
  10255. tailsprintf(buf, sizeof(buf), "; serial=%s", cgpu->dev_serial);
  10256. if (cgpu->device_path)
  10257. tailsprintf(buf, sizeof(buf), "; path=%s", cgpu->device_path);
  10258. tailsprintf(buf, sizeof(buf), ")");
  10259. _applog(LOG_NOTICE, buf);
  10260. ++devcount;
  10261. }
  10262. quit(0, "%d devices listed", devcount);
  10263. }
  10264. mining_threads = 0;
  10265. for (i = 0; i < total_devices; ++i)
  10266. register_device(devices[i]);
  10267. if (!total_devices) {
  10268. applog(LOG_WARNING, "No devices detected!");
  10269. if (use_curses)
  10270. applog(LOG_WARNING, "Waiting for devices; press 'M+' to add, or 'Q' to quit");
  10271. else
  10272. applog(LOG_WARNING, "Waiting for devices");
  10273. }
  10274. if (opt_quit_summary == BQS_DEFAULT)
  10275. {
  10276. if (total_devices < 25)
  10277. opt_quit_summary = BQS_PROCS;
  10278. else
  10279. opt_quit_summary = BQS_DEVS;
  10280. }
  10281. #ifdef HAVE_CURSES
  10282. switch_logsize();
  10283. #endif
  10284. if (!total_pools) {
  10285. applog(LOG_WARNING, "Need to specify at least one pool server.");
  10286. #ifdef HAVE_CURSES
  10287. if (!use_curses || !input_pool(false))
  10288. #endif
  10289. quit(1, "Pool setup failed");
  10290. }
  10291. for (i = 0; i < total_pools; i++) {
  10292. struct pool *pool = pools[i];
  10293. size_t siz;
  10294. pool->cgminer_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10295. pool->cgminer_pool_stats.getwork_wait_min.tv_sec = MIN_SEC_UNSET;
  10296. if (!pool->rpc_url)
  10297. quit(1, "No URI supplied for pool %u", i);
  10298. if (!pool->rpc_userpass) {
  10299. if (!pool->rpc_user || !pool->rpc_pass)
  10300. quit(1, "No login credentials supplied for pool %u %s", i, pool->rpc_url);
  10301. siz = strlen(pool->rpc_user) + strlen(pool->rpc_pass) + 2;
  10302. pool->rpc_userpass = malloc(siz);
  10303. if (!pool->rpc_userpass)
  10304. quit(1, "Failed to malloc userpass");
  10305. snprintf(pool->rpc_userpass, siz, "%s:%s", pool->rpc_user, pool->rpc_pass);
  10306. }
  10307. }
  10308. /* Set the currentpool to pool with priority 0 */
  10309. validate_pool_priorities();
  10310. for (i = 0; i < total_pools; i++) {
  10311. struct pool *pool = pools[i];
  10312. if (!pool->prio)
  10313. currentpool = pool;
  10314. }
  10315. #ifdef HAVE_SYSLOG_H
  10316. if (use_syslog)
  10317. openlog(PACKAGE, LOG_PID, LOG_USER);
  10318. #endif
  10319. #if defined(unix) || defined(__APPLE__)
  10320. if (opt_stderr_cmd)
  10321. fork_monitor();
  10322. #endif // defined(unix)
  10323. mining_thr = calloc(mining_threads, sizeof(thr));
  10324. if (!mining_thr)
  10325. quit(1, "Failed to calloc mining_thr");
  10326. for (i = 0; i < mining_threads; i++) {
  10327. mining_thr[i] = calloc(1, sizeof(*thr));
  10328. if (!mining_thr[i])
  10329. quit(1, "Failed to calloc mining_thr[%d]", i);
  10330. }
  10331. total_control_threads = 6;
  10332. control_thr = calloc(total_control_threads, sizeof(*thr));
  10333. if (!control_thr)
  10334. quit(1, "Failed to calloc control_thr");
  10335. gwsched_thr_id = 0;
  10336. /* Create a unique get work queue */
  10337. getq = tq_new();
  10338. if (!getq)
  10339. quit(1, "Failed to create getq");
  10340. /* We use the getq mutex as the staged lock */
  10341. stgd_lock = &getq->mutex;
  10342. if (opt_benchmark)
  10343. goto begin_bench;
  10344. for (i = 0; i < total_pools; i++) {
  10345. struct pool *pool = pools[i];
  10346. enable_pool(pool);
  10347. pool->idle = true;
  10348. }
  10349. applog(LOG_NOTICE, "Probing for an alive pool");
  10350. do {
  10351. bool still_testing;
  10352. int i;
  10353. /* Look for at least one active pool before starting */
  10354. probe_pools();
  10355. do {
  10356. sleep(1);
  10357. if (pools_active)
  10358. break;
  10359. still_testing = false;
  10360. for (int i = 0; i < total_pools; ++i)
  10361. if (pools[i]->testing)
  10362. still_testing = true;
  10363. } while (still_testing);
  10364. if (!pools_active) {
  10365. applog(LOG_ERR, "No servers were found that could be used to get work from.");
  10366. applog(LOG_ERR, "Please check the details from the list below of the servers you have input");
  10367. applog(LOG_ERR, "Most likely you have input the wrong URL, forgotten to add a port, or have not set up workers");
  10368. for (i = 0; i < total_pools; i++) {
  10369. struct pool *pool;
  10370. pool = pools[i];
  10371. applog(LOG_WARNING, "Pool: %d URL: %s User: %s Password: %s",
  10372. i, pool->rpc_url, pool->rpc_user, pool->rpc_pass);
  10373. }
  10374. #ifdef HAVE_CURSES
  10375. if (use_curses) {
  10376. halfdelay(150);
  10377. applog(LOG_ERR, "Press any key to exit, or BFGMiner will try again in 15s.");
  10378. if (getch() != ERR)
  10379. quit(0, "No servers could be used! Exiting.");
  10380. cbreak();
  10381. } else
  10382. #endif
  10383. quit(0, "No servers could be used! Exiting.");
  10384. }
  10385. } while (!pools_active);
  10386. #ifdef USE_SCRYPT
  10387. if (detect_algo == 1 && !opt_scrypt) {
  10388. applog(LOG_NOTICE, "Detected scrypt algorithm");
  10389. opt_scrypt = true;
  10390. }
  10391. #endif
  10392. detect_algo = 0;
  10393. begin_bench:
  10394. total_mhashes_done = 0;
  10395. for (i = 0; i < total_devices; i++) {
  10396. struct cgpu_info *cgpu = devices[i];
  10397. cgpu->rolling = cgpu->total_mhashes = 0;
  10398. }
  10399. cgtime(&total_tv_start);
  10400. cgtime(&total_tv_end);
  10401. miner_started = total_tv_start;
  10402. time_t miner_start_ts = time(NULL);
  10403. if (schedstart.tm.tm_sec)
  10404. localtime_r(&miner_start_ts, &schedstart.tm);
  10405. if (schedstop.tm.tm_sec)
  10406. localtime_r(&miner_start_ts, &schedstop .tm);
  10407. get_datestamp(datestamp, sizeof(datestamp), miner_start_ts);
  10408. // Initialise processors and threads
  10409. k = 0;
  10410. for (i = 0; i < total_devices; ++i) {
  10411. struct cgpu_info *cgpu = devices[i];
  10412. allocate_cgpu(cgpu, &k);
  10413. }
  10414. // Start threads
  10415. for (i = 0; i < total_devices; ++i) {
  10416. struct cgpu_info *cgpu = devices[i];
  10417. start_cgpu(cgpu);
  10418. }
  10419. #ifdef HAVE_OPENCL
  10420. for (i = 0; i < nDevs; i++)
  10421. pause_dynamic_threads(i);
  10422. #endif
  10423. #ifdef WANT_CPUMINE
  10424. if (opt_n_threads > 0)
  10425. applog(LOG_INFO, "%d cpu miner threads started, using '%s' algorithm.",
  10426. opt_n_threads, algo_names[opt_algo]);
  10427. #endif
  10428. cgtime(&total_tv_start);
  10429. cgtime(&total_tv_end);
  10430. if (!opt_benchmark)
  10431. {
  10432. pthread_t submit_thread;
  10433. if (unlikely(pthread_create(&submit_thread, NULL, submit_work_thread, NULL)))
  10434. quit(1, "submit_work thread create failed");
  10435. }
  10436. watchpool_thr_id = 1;
  10437. thr = &control_thr[watchpool_thr_id];
  10438. /* start watchpool thread */
  10439. if (thr_info_create(thr, NULL, watchpool_thread, NULL))
  10440. quit(1, "watchpool thread create failed");
  10441. pthread_detach(thr->pth);
  10442. watchdog_thr_id = 2;
  10443. thr = &control_thr[watchdog_thr_id];
  10444. /* start watchdog thread */
  10445. if (thr_info_create(thr, NULL, watchdog_thread, NULL))
  10446. quit(1, "watchdog thread create failed");
  10447. pthread_detach(thr->pth);
  10448. #ifdef HAVE_OPENCL
  10449. /* Create reinit gpu thread */
  10450. gpur_thr_id = 3;
  10451. thr = &control_thr[gpur_thr_id];
  10452. thr->q = tq_new();
  10453. if (!thr->q)
  10454. quit(1, "tq_new failed for gpur_thr_id");
  10455. if (thr_info_create(thr, NULL, reinit_gpu, thr))
  10456. quit(1, "reinit_gpu thread create failed");
  10457. #endif
  10458. /* Create API socket thread */
  10459. api_thr_id = 4;
  10460. thr = &control_thr[api_thr_id];
  10461. if (thr_info_create(thr, NULL, api_thread, thr))
  10462. quit(1, "API thread create failed");
  10463. #ifdef USE_LIBMICROHTTPD
  10464. if (httpsrv_port != -1)
  10465. httpsrv_start(httpsrv_port);
  10466. #endif
  10467. #ifdef USE_LIBEVENT
  10468. if (stratumsrv_port != -1)
  10469. stratumsrv_start();
  10470. #endif
  10471. #ifdef HAVE_BFG_HOTPLUG
  10472. if (opt_hotplug && !opt_scrypt)
  10473. hotplug_start();
  10474. #endif
  10475. #ifdef HAVE_CURSES
  10476. /* Create curses input thread for keyboard input. Create this last so
  10477. * that we know all threads are created since this can call kill_work
  10478. * to try and shut down ll previous threads. */
  10479. input_thr_id = 5;
  10480. thr = &control_thr[input_thr_id];
  10481. if (thr_info_create(thr, NULL, input_thread, thr))
  10482. quit(1, "input thread create failed");
  10483. pthread_detach(thr->pth);
  10484. #endif
  10485. /* Just to be sure */
  10486. if (total_control_threads != 6)
  10487. quit(1, "incorrect total_control_threads (%d) should be 7", total_control_threads);
  10488. /* Once everything is set up, main() becomes the getwork scheduler */
  10489. while (42) {
  10490. int ts, max_staged = opt_queue;
  10491. struct pool *pool, *cp;
  10492. bool lagging = false;
  10493. struct curl_ent *ce;
  10494. struct work *work;
  10495. cp = current_pool();
  10496. // Generally, each processor needs a new work, and all at once during work restarts
  10497. max_staged += mining_threads;
  10498. mutex_lock(stgd_lock);
  10499. ts = __total_staged();
  10500. if (!pool_localgen(cp) && !ts && !opt_fail_only)
  10501. lagging = true;
  10502. /* Wait until hash_pop tells us we need to create more work */
  10503. if (ts > max_staged) {
  10504. staged_full = true;
  10505. pthread_cond_wait(&gws_cond, stgd_lock);
  10506. ts = __total_staged();
  10507. }
  10508. mutex_unlock(stgd_lock);
  10509. if (ts > max_staged)
  10510. continue;
  10511. work = make_work();
  10512. if (lagging && !pool_tset(cp, &cp->lagging)) {
  10513. applog(LOG_WARNING, "Pool %d not providing work fast enough", cp->pool_no);
  10514. cp->getfail_occasions++;
  10515. total_go++;
  10516. }
  10517. pool = select_pool(lagging);
  10518. retry:
  10519. if (pool->has_stratum) {
  10520. while (!pool->stratum_active || !pool->stratum_notify) {
  10521. struct pool *altpool = select_pool(true);
  10522. if (altpool == pool && pool->has_stratum)
  10523. cgsleep_ms(5000);
  10524. pool = altpool;
  10525. goto retry;
  10526. }
  10527. gen_stratum_work(pool, work);
  10528. applog(LOG_DEBUG, "Generated stratum work");
  10529. stage_work(work);
  10530. continue;
  10531. }
  10532. if (pool->last_work_copy) {
  10533. mutex_lock(&pool->last_work_lock);
  10534. struct work *last_work = pool->last_work_copy;
  10535. if (!last_work)
  10536. {}
  10537. else
  10538. if (can_roll(last_work) && should_roll(last_work)) {
  10539. struct timeval tv_now;
  10540. cgtime(&tv_now);
  10541. free_work(work);
  10542. work = make_clone(pool->last_work_copy);
  10543. mutex_unlock(&pool->last_work_lock);
  10544. roll_work(work);
  10545. 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));
  10546. stage_work(work);
  10547. continue;
  10548. } else if (last_work->tmpl && pool->proto == PLP_GETBLOCKTEMPLATE && blkmk_work_left(last_work->tmpl) > (unsigned long)mining_threads) {
  10549. // Don't free last_work_copy, since it is used to detect upstream provides plenty of work per template
  10550. } else {
  10551. free_work(last_work);
  10552. pool->last_work_copy = NULL;
  10553. }
  10554. mutex_unlock(&pool->last_work_lock);
  10555. }
  10556. if (clone_available()) {
  10557. applog(LOG_DEBUG, "Cloned getwork work");
  10558. free_work(work);
  10559. continue;
  10560. }
  10561. if (opt_benchmark) {
  10562. get_benchmark_work(work);
  10563. applog(LOG_DEBUG, "Generated benchmark work");
  10564. stage_work(work);
  10565. continue;
  10566. }
  10567. work->pool = pool;
  10568. ce = pop_curl_entry3(pool, 2);
  10569. /* obtain new work from bitcoin via JSON-RPC */
  10570. if (!get_upstream_work(work, ce->curl)) {
  10571. struct pool *next_pool;
  10572. /* Make sure the pool just hasn't stopped serving
  10573. * requests but is up as we'll keep hammering it */
  10574. push_curl_entry(ce, pool);
  10575. ++pool->seq_getfails;
  10576. pool_died(pool);
  10577. next_pool = select_pool(!opt_fail_only);
  10578. if (pool == next_pool) {
  10579. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, retrying in 5s", pool->pool_no);
  10580. cgsleep_ms(5000);
  10581. } else {
  10582. applog(LOG_DEBUG, "Pool %d json_rpc_call failed on get work, failover activated", pool->pool_no);
  10583. pool = next_pool;
  10584. }
  10585. goto retry;
  10586. }
  10587. if (ts >= max_staged)
  10588. pool_tclear(pool, &pool->lagging);
  10589. if (pool_tclear(pool, &pool->idle))
  10590. pool_resus(pool);
  10591. applog(LOG_DEBUG, "Generated getwork work");
  10592. stage_work(work);
  10593. push_curl_entry(ce, pool);
  10594. }
  10595. return 0;
  10596. }