miner.c 288 KB

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