miner.c 317 KB

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