bind10-messages.xml 282 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
  4. <!ENTITY mdash "&#x2014;" >
  5. <!ENTITY % version SYSTEM "version.ent">
  6. %version;
  7. ]>
  8. <!--
  9. This XML document is generated using the system_messages.py tool
  10. based on the .mes message files.
  11. Do not edit this file.
  12. -->
  13. <book>
  14. <?xml-stylesheet href="bind10-guide.css" type="text/css"?>
  15. <bookinfo>
  16. <title>BIND 10 Messages Manual</title>
  17. <copyright>
  18. <year>2011-2012</year><holder>Internet Systems Consortium, Inc.</holder>
  19. </copyright>
  20. <abstract>
  21. <para>BIND 10 is a Domain Name System (DNS) suite managed by
  22. Internet Systems Consortium (ISC). It includes DNS libraries
  23. and modular components for controlling authoritative and
  24. recursive DNS servers.
  25. </para>
  26. <para>
  27. This is the messages manual for BIND 10 version &__VERSION__;.
  28. The most up-to-date version of this document, along with
  29. other documents for BIND 10, can be found at
  30. <ulink url="http://bind10.isc.org/docs"/>.
  31. </para>
  32. </abstract>
  33. <releaseinfo>This is the messages manual for BIND 10 version
  34. &__VERSION__;.</releaseinfo>
  35. </bookinfo>
  36. <chapter id="intro">
  37. <title>Introduction</title>
  38. <para>
  39. This document lists each message that can be logged by the
  40. programs in the BIND 10 package. Each entry in this manual
  41. is of the form:
  42. <screen>IDENTIFICATION message-text</screen>
  43. ... where "IDENTIFICATION" is the message identification included
  44. in each message logged and "message-text" is the accompanying
  45. message text. The "message-text" may include placeholders of the
  46. form "%1", "%2" etc.; these parameters are replaced by relevant
  47. values when the message is logged.
  48. </para>
  49. <para>
  50. Each entry is also accompanied by a description giving more
  51. information about the circumstances that result in the message
  52. being logged.
  53. </para>
  54. <para>
  55. For information on configuring and using BIND 10 logging,
  56. refer to the <ulink url="bind10-guide.html">BIND 10 Guide</ulink>.
  57. </para>
  58. </chapter>
  59. <chapter id="messages">
  60. <title>BIND 10 Messages</title>
  61. <para>
  62. <variablelist>
  63. <varlistentry id="ASIODNS_FD_ADD_TCP">
  64. <term>ASIODNS_FD_ADD_TCP adding a new TCP server by opened fd %1</term>
  65. <listitem><para>
  66. A debug message informing about installing a file descriptor as a server.
  67. The file descriptor number is noted.
  68. </para></listitem>
  69. </varlistentry>
  70. <varlistentry id="ASIODNS_FD_ADD_UDP">
  71. <term>ASIODNS_FD_ADD_UDP adding a new UDP server by opened fd %1</term>
  72. <listitem><para>
  73. A debug message informing about installing a file descriptor as a server.
  74. The file descriptor number is noted.
  75. </para></listitem>
  76. </varlistentry>
  77. <varlistentry id="ASIODNS_FETCH_COMPLETED">
  78. <term>ASIODNS_FETCH_COMPLETED upstream fetch to %1(%2) has now completed</term>
  79. <listitem><para>
  80. A debug message, this records that the upstream fetch (a query made by the
  81. resolver on behalf of its client) to the specified address has completed.
  82. </para></listitem>
  83. </varlistentry>
  84. <varlistentry id="ASIODNS_FETCH_STOPPED">
  85. <term>ASIODNS_FETCH_STOPPED upstream fetch to %1(%2) has been stopped</term>
  86. <listitem><para>
  87. An external component has requested the halting of an upstream fetch. This
  88. is an allowed operation, and the message should only appear if debug is
  89. enabled.
  90. </para></listitem>
  91. </varlistentry>
  92. <varlistentry id="ASIODNS_OPEN_SOCKET">
  93. <term>ASIODNS_OPEN_SOCKET error %1 opening %2 socket to %3(%4)</term>
  94. <listitem><para>
  95. The asynchronous I/O code encountered an error when trying to open a socket
  96. of the specified protocol in order to send a message to the target address.
  97. The number of the system error that caused the problem is given in the
  98. message.
  99. </para></listitem>
  100. </varlistentry>
  101. <varlistentry id="ASIODNS_READ_DATA">
  102. <term>ASIODNS_READ_DATA error %1 reading %2 data from %3(%4)</term>
  103. <listitem><para>
  104. The asynchronous I/O code encountered an error when trying to read data from
  105. the specified address on the given protocol. The number of the system
  106. error that caused the problem is given in the message.
  107. </para></listitem>
  108. </varlistentry>
  109. <varlistentry id="ASIODNS_READ_TIMEOUT">
  110. <term>ASIODNS_READ_TIMEOUT receive timeout while waiting for data from %1(%2)</term>
  111. <listitem><para>
  112. An upstream fetch from the specified address timed out. This may happen for
  113. any number of reasons and is most probably a problem at the remote server
  114. or a problem on the network. The message will only appear if debug is
  115. enabled.
  116. </para></listitem>
  117. </varlistentry>
  118. <varlistentry id="ASIODNS_SEND_DATA">
  119. <term>ASIODNS_SEND_DATA error %1 sending data using %2 to %3(%4)</term>
  120. <listitem><para>
  121. The asynchronous I/O code encountered an error when trying to send data to
  122. the specified address on the given protocol. The number of the system
  123. error that caused the problem is given in the message.
  124. </para></listitem>
  125. </varlistentry>
  126. <varlistentry id="ASIODNS_UNKNOWN_ORIGIN">
  127. <term>ASIODNS_UNKNOWN_ORIGIN unknown origin for ASIO error code %1 (protocol: %2, address %3)</term>
  128. <listitem><para>
  129. An internal consistency check on the origin of a message from the
  130. asynchronous I/O module failed. This may indicate an internal error;
  131. please submit a bug report.
  132. </para></listitem>
  133. </varlistentry>
  134. <varlistentry id="ASIODNS_UNKNOWN_RESULT">
  135. <term>ASIODNS_UNKNOWN_RESULT unknown result (%1) when IOFetch::stop() was executed for I/O to %2(%3)</term>
  136. <listitem><para>
  137. An internal error indicating that the termination method of the resolver's
  138. upstream fetch class was called with an unknown result code (which is
  139. given in the message). Please submit a bug report.
  140. </para></listitem>
  141. </varlistentry>
  142. <varlistentry id="AUTH_AXFR_ERROR">
  143. <term>AUTH_AXFR_ERROR error handling AXFR request: %1</term>
  144. <listitem><para>
  145. This is a debug message produced by the authoritative server when it
  146. has encountered an error processing an AXFR request. The message gives
  147. the reason for the error, and the server will return a SERVFAIL code to
  148. the sender.
  149. </para></listitem>
  150. </varlistentry>
  151. <varlistentry id="AUTH_AXFR_UDP">
  152. <term>AUTH_AXFR_UDP AXFR query received over UDP</term>
  153. <listitem><para>
  154. This is a debug message output when the authoritative server has received
  155. an AXFR query over UDP. Use of UDP for AXFRs is not permitted by the
  156. protocol, so the server will return a FORMERR error to the sender.
  157. </para></listitem>
  158. </varlistentry>
  159. <varlistentry id="AUTH_COMMAND_FAILED">
  160. <term>AUTH_COMMAND_FAILED execution of command channel instruction '%1' failed: %2</term>
  161. <listitem><para>
  162. Execution of the specified command by the authoritative server failed. The
  163. message contains the reason for the failure.
  164. </para></listitem>
  165. </varlistentry>
  166. <varlistentry id="AUTH_CONFIG_CHANNEL_CREATED">
  167. <term>AUTH_CONFIG_CHANNEL_CREATED configuration session channel created</term>
  168. <listitem><para>
  169. This is a debug message indicating that authoritative server has created
  170. the channel to the configuration manager. It is issued during server
  171. startup is an indication that the initialization is proceeding normally.
  172. </para></listitem>
  173. </varlistentry>
  174. <varlistentry id="AUTH_CONFIG_CHANNEL_ESTABLISHED">
  175. <term>AUTH_CONFIG_CHANNEL_ESTABLISHED configuration session channel established</term>
  176. <listitem><para>
  177. This is a debug message indicating that authoritative server
  178. has established communication the configuration manager over the
  179. previously-created channel. It is issued during server startup is an
  180. indication that the initialization is proceeding normally.
  181. </para></listitem>
  182. </varlistentry>
  183. <varlistentry id="AUTH_CONFIG_CHANNEL_STARTED">
  184. <term>AUTH_CONFIG_CHANNEL_STARTED configuration session channel started</term>
  185. <listitem><para>
  186. This is a debug message, issued when the authoritative server has
  187. posted a request to be notified when new configuration information is
  188. available. It is issued during server startup is an indication that
  189. the initialization is proceeding normally.
  190. </para></listitem>
  191. </varlistentry>
  192. <varlistentry id="AUTH_CONFIG_LOAD_FAIL">
  193. <term>AUTH_CONFIG_LOAD_FAIL load of configuration failed: %1</term>
  194. <listitem><para>
  195. An attempt to configure the server with information from the configuration
  196. database during the startup sequence has failed. (The reason for
  197. the failure is given in the message.) The server will continue its
  198. initialization although it may not be configured in the desired way.
  199. </para></listitem>
  200. </varlistentry>
  201. <varlistentry id="AUTH_CONFIG_UPDATE_FAIL">
  202. <term>AUTH_CONFIG_UPDATE_FAIL update of configuration failed: %1</term>
  203. <listitem><para>
  204. At attempt to update the configuration the server with information
  205. from the configuration database has failed, the reason being given in
  206. the message.
  207. </para></listitem>
  208. </varlistentry>
  209. <varlistentry id="AUTH_DATA_SOURCE">
  210. <term>AUTH_DATA_SOURCE data source database file: %1</term>
  211. <listitem><para>
  212. This is a debug message produced by the authoritative server when it accesses a
  213. datebase data source, listing the file that is being accessed.
  214. </para></listitem>
  215. </varlistentry>
  216. <varlistentry id="AUTH_DNS_SERVICES_CREATED">
  217. <term>AUTH_DNS_SERVICES_CREATED DNS services created</term>
  218. <listitem><para>
  219. This is a debug message indicating that the component that will handling
  220. incoming queries for the authoritative server (DNSServices) has been
  221. successfully created. It is issued during server startup is an indication
  222. that the initialization is proceeding normally.
  223. </para></listitem>
  224. </varlistentry>
  225. <varlistentry id="AUTH_HEADER_PARSE_FAIL">
  226. <term>AUTH_HEADER_PARSE_FAIL unable to parse header in received DNS packet: %1</term>
  227. <listitem><para>
  228. This is a debug message, generated by the authoritative server when an
  229. attempt to parse the header of a received DNS packet has failed. (The
  230. reason for the failure is given in the message.) The server will drop the
  231. packet.
  232. </para></listitem>
  233. </varlistentry>
  234. <varlistentry id="AUTH_INVALID_STATISTICS_DATA">
  235. <term>AUTH_INVALID_STATISTICS_DATA invalid specification of statistics data specified</term>
  236. <listitem><para>
  237. An error was encountered when the authoritiative server specified
  238. statistics data which is invalid for the auth specification file.
  239. </para></listitem>
  240. </varlistentry>
  241. <varlistentry id="AUTH_LOAD_TSIG">
  242. <term>AUTH_LOAD_TSIG loading TSIG keys</term>
  243. <listitem><para>
  244. This is a debug message indicating that the authoritative server
  245. has requested the keyring holding TSIG keys from the configuration
  246. database. It is issued during server startup is an indication that the
  247. initialization is proceeding normally.
  248. </para></listitem>
  249. </varlistentry>
  250. <varlistentry id="AUTH_LOAD_ZONE">
  251. <term>AUTH_LOAD_ZONE loaded zone %1/%2</term>
  252. <listitem><para>
  253. This debug message is issued during the processing of the 'loadzone' command
  254. when the authoritative server has successfully loaded the named zone of the
  255. named class.
  256. </para></listitem>
  257. </varlistentry>
  258. <varlistentry id="AUTH_MEM_DATASRC_DISABLED">
  259. <term>AUTH_MEM_DATASRC_DISABLED memory data source is disabled for class %1</term>
  260. <listitem><para>
  261. This is a debug message reporting that the authoritative server has
  262. discovered that the memory data source is disabled for the given class.
  263. </para></listitem>
  264. </varlistentry>
  265. <varlistentry id="AUTH_MEM_DATASRC_ENABLED">
  266. <term>AUTH_MEM_DATASRC_ENABLED memory data source is enabled for class %1</term>
  267. <listitem><para>
  268. This is a debug message reporting that the authoritative server has
  269. discovered that the memory data source is enabled for the given class.
  270. </para></listitem>
  271. </varlistentry>
  272. <varlistentry id="AUTH_MESSAGE_FORWARD_ERROR">
  273. <term>AUTH_MESSAGE_FORWARD_ERROR failed to forward %1 request from %2: %3</term>
  274. <listitem><para>
  275. The authoritative server tried to forward some type DNS request
  276. message to a separate process (e.g., forwarding dynamic update
  277. requests to b10-ddns) to handle it, but it failed. The authoritative
  278. server returns SERVFAIL to the client on behalf of the separate
  279. process. The error could be configuration mismatch between b10-auth
  280. and the recipient component, or it may be because the requests are
  281. coming too fast and the receipient process cannot keep up with the
  282. rate, or some system level failure. In either case this means the
  283. BIND 10 system is not working as expected, so the administrator should
  284. look into the cause and address the issue. The log message includes
  285. the client's address (and port), and the error message sent from the
  286. lower layer that detects the failure.
  287. </para></listitem>
  288. </varlistentry>
  289. <varlistentry id="AUTH_NOTIFY_QUESTIONS">
  290. <term>AUTH_NOTIFY_QUESTIONS invalid number of questions (%1) in incoming NOTIFY</term>
  291. <listitem><para>
  292. This debug message is logged by the authoritative server when it receives
  293. a NOTIFY packet that contains zero or more than one question. (A valid
  294. NOTIFY packet contains one question.) The server will return a FORMERR
  295. error to the sender.
  296. </para></listitem>
  297. </varlistentry>
  298. <varlistentry id="AUTH_NOTIFY_RRTYPE">
  299. <term>AUTH_NOTIFY_RRTYPE invalid question RR type (%1) in incoming NOTIFY</term>
  300. <listitem><para>
  301. This debug message is logged by the authoritative server when it receives
  302. a NOTIFY packet that an RR type of something other than SOA in the
  303. question section. (The RR type received is included in the message.) The
  304. server will return a FORMERR error to the sender.
  305. </para></listitem>
  306. </varlistentry>
  307. <varlistentry id="AUTH_NO_STATS_SESSION">
  308. <term>AUTH_NO_STATS_SESSION session interface for statistics is not available</term>
  309. <listitem><para>
  310. The authoritative server had no session with the statistics module at the
  311. time it attempted to send it data: the attempt has been abandoned. This
  312. could be an error in configuration.
  313. </para></listitem>
  314. </varlistentry>
  315. <varlistentry id="AUTH_NO_XFRIN">
  316. <term>AUTH_NO_XFRIN received NOTIFY but XFRIN session is not running</term>
  317. <listitem><para>
  318. This is a debug message produced by the authoritative server when it receives
  319. a NOTIFY packet but the XFRIN process is not running. The packet will be
  320. dropped and nothing returned to the sender.
  321. </para></listitem>
  322. </varlistentry>
  323. <varlistentry id="AUTH_PACKET_PARSE_ERROR">
  324. <term>AUTH_PACKET_PARSE_ERROR unable to parse received DNS packet: %1</term>
  325. <listitem><para>
  326. This is a debug message, generated by the authoritative server when an
  327. attempt to parse a received DNS packet has failed due to something other
  328. than a protocol error. The reason for the failure is given in the message;
  329. the server will return a SERVFAIL error code to the sender.
  330. </para></listitem>
  331. </varlistentry>
  332. <varlistentry id="AUTH_PACKET_PROTOCOL_ERROR">
  333. <term>AUTH_PACKET_PROTOCOL_ERROR DNS packet protocol error: %1. Returning %2</term>
  334. <listitem><para>
  335. This is a debug message, generated by the authoritative server when an
  336. attempt to parse a received DNS packet has failed due to a protocol error.
  337. The reason for the failure is given in the message, as is the error code
  338. that will be returned to the sender.
  339. </para></listitem>
  340. </varlistentry>
  341. <varlistentry id="AUTH_PACKET_RECEIVED">
  342. <term>AUTH_PACKET_RECEIVED message received:\n%1</term>
  343. <listitem><para>
  344. This is a debug message output by the authoritative server when it
  345. receives a valid DNS packet.
  346. </para><para>
  347. Note: This message includes the packet received, rendered in the form of
  348. multiple lines of text. For this reason, it is suggested that this log message
  349. not be routed to the syslog file, where the multiple lines could confuse
  350. programs that expect a format of one message per line.
  351. </para></listitem>
  352. </varlistentry>
  353. <varlistentry id="AUTH_PROCESS_FAIL">
  354. <term>AUTH_PROCESS_FAIL message processing failure: %1</term>
  355. <listitem><para>
  356. This message is generated by the authoritative server when it has
  357. encountered an internal error whilst processing a received packet:
  358. the cause of the error is included in the message.
  359. </para><para>
  360. The server will return a SERVFAIL error code to the sender of the packet.
  361. This message indicates a potential error in the server. Please open a
  362. bug ticket for this issue.
  363. </para></listitem>
  364. </varlistentry>
  365. <varlistentry id="AUTH_RECEIVED_COMMAND">
  366. <term>AUTH_RECEIVED_COMMAND command '%1' received</term>
  367. <listitem><para>
  368. This is a debug message issued when the authoritative server has received
  369. a command on the command channel.
  370. </para></listitem>
  371. </varlistentry>
  372. <varlistentry id="AUTH_RECEIVED_NOTIFY">
  373. <term>AUTH_RECEIVED_NOTIFY received incoming NOTIFY for zone name %1, zone class %2</term>
  374. <listitem><para>
  375. This is a debug message reporting that an incoming NOTIFY was received.
  376. </para></listitem>
  377. </varlistentry>
  378. <varlistentry id="AUTH_RESPONSE_FAILURE">
  379. <term>AUTH_RESPONSE_FAILURE exception while building response to query: %1</term>
  380. <listitem><para>
  381. This is a debug message, generated by the authoritative server when an
  382. attempt to create a response to a received DNS packet has failed. The
  383. reason for the failure is given in the log message. A SERVFAIL response
  384. is sent back. The most likely cause of this is an error in the data
  385. source implementation; it is either creating bad responses or raising
  386. exceptions itself.
  387. </para></listitem>
  388. </varlistentry>
  389. <varlistentry id="AUTH_RESPONSE_FAILURE_UNKNOWN">
  390. <term>AUTH_RESPONSE_FAILURE_UNKNOWN unknown exception while building response to query</term>
  391. <listitem><para>
  392. This debug message is similar to AUTH_RESPONSE_FAILURE, but further
  393. details about the error are unknown, because it was signaled by something
  394. which is not an exception. This is definitely a bug.
  395. </para></listitem>
  396. </varlistentry>
  397. <varlistentry id="AUTH_RESPONSE_RECEIVED">
  398. <term>AUTH_RESPONSE_RECEIVED received response message, ignoring</term>
  399. <listitem><para>
  400. This is a debug message, this is output if the authoritative server
  401. receives a DNS packet with the QR bit set, i.e. a DNS response. The
  402. server ignores the packet as it only responds to question packets.
  403. </para></listitem>
  404. </varlistentry>
  405. <varlistentry id="AUTH_SEND_ERROR_RESPONSE">
  406. <term>AUTH_SEND_ERROR_RESPONSE sending an error response (%1 bytes):\n%2</term>
  407. <listitem><para>
  408. This is a debug message recording that the authoritative server is sending
  409. an error response to the originator of the query. A previous message will
  410. have recorded details of the failure.
  411. </para><para>
  412. Note: This message includes the packet sent, rendered in the form of
  413. multiple lines of text. For this reason, it is suggested that this log message
  414. not be routed to the syslog file, where the multiple lines could confuse
  415. programs that expect a format of one message per line.
  416. </para></listitem>
  417. </varlistentry>
  418. <varlistentry id="AUTH_SEND_NORMAL_RESPONSE">
  419. <term>AUTH_SEND_NORMAL_RESPONSE sending an error response (%1 bytes):\n%2</term>
  420. <listitem><para>
  421. This is a debug message recording that the authoritative server is sending
  422. a response to the originator of a query.
  423. </para><para>
  424. Note: This message includes the packet sent, rendered in the form of
  425. multiple lines of text. For this reason, it is suggested that this log message
  426. not be routed to the syslog file, where the multiple lines could confuse
  427. programs that expect a format of one message per line.
  428. </para></listitem>
  429. </varlistentry>
  430. <varlistentry id="AUTH_SERVER_CREATED">
  431. <term>AUTH_SERVER_CREATED server created</term>
  432. <listitem><para>
  433. An informational message indicating that the authoritative server process has
  434. been created and is initializing. The AUTH_SERVER_STARTED message will be
  435. output when initialization has successfully completed and the server starts
  436. accepting queries.
  437. </para></listitem>
  438. </varlistentry>
  439. <varlistentry id="AUTH_SERVER_FAILED">
  440. <term>AUTH_SERVER_FAILED server failed: %1</term>
  441. <listitem><para>
  442. The authoritative server has encountered a fatal error and is terminating. The
  443. reason for the failure is included in the message.
  444. </para></listitem>
  445. </varlistentry>
  446. <varlistentry id="AUTH_SERVER_STARTED">
  447. <term>AUTH_SERVER_STARTED server started</term>
  448. <listitem><para>
  449. Initialization of the authoritative server has completed successfully
  450. and it is entering the main loop, waiting for queries to arrive.
  451. </para></listitem>
  452. </varlistentry>
  453. <varlistentry id="AUTH_SHUTDOWN">
  454. <term>AUTH_SHUTDOWN asked to stop, doing so</term>
  455. <listitem><para>
  456. This is a debug message indicating the server was asked to shut down and it is
  457. complying to the request.
  458. </para></listitem>
  459. </varlistentry>
  460. <varlistentry id="AUTH_SQLITE3">
  461. <term>AUTH_SQLITE3 nothing to do for loading sqlite3</term>
  462. <listitem><para>
  463. This is a debug message indicating that the authoritative server has
  464. found that the data source it is loading is an SQLite3 data source,
  465. so no further validation is needed.
  466. </para></listitem>
  467. </varlistentry>
  468. <varlistentry id="AUTH_START_DDNS_FORWARDER">
  469. <term>AUTH_START_DDNS_FORWARDER DDNS UPDATE handling started</term>
  470. <listitem><para>
  471. This is a debug message indicating that b10-auth has received a message
  472. that it should internally forward UPDATE message to b10-ddns. When b10-ddns
  473. is not running, b10-auth will respond to UPDATE requests with rcode NOTIMP.
  474. When b10-ddns is running, b10-ddns will handle and respond to the UPDATE
  475. message.
  476. </para></listitem>
  477. </varlistentry>
  478. <varlistentry id="AUTH_STATS_CHANNEL_CREATED">
  479. <term>AUTH_STATS_CHANNEL_CREATED STATS session channel created</term>
  480. <listitem><para>
  481. This is a debug message indicating that the authoritative server has
  482. created a channel to the statistics process. It is issued during server
  483. startup is an indication that the initialization is proceeding normally.
  484. </para></listitem>
  485. </varlistentry>
  486. <varlistentry id="AUTH_STATS_CHANNEL_ESTABLISHED">
  487. <term>AUTH_STATS_CHANNEL_ESTABLISHED STATS session channel established</term>
  488. <listitem><para>
  489. This is a debug message indicating that the authoritative server
  490. has established communication over the previously created statistics
  491. channel. It is issued during server startup is an indication that the
  492. initialization is proceeding normally.
  493. </para></listitem>
  494. </varlistentry>
  495. <varlistentry id="AUTH_STATS_COMMS">
  496. <term>AUTH_STATS_COMMS communication error in sending statistics data: %1</term>
  497. <listitem><para>
  498. An error was encountered when the authoritative server tried to send data
  499. to the statistics daemon. The message includes additional information
  500. describing the reason for the failure.
  501. </para></listitem>
  502. </varlistentry>
  503. <varlistentry id="AUTH_STATS_TIMEOUT">
  504. <term>AUTH_STATS_TIMEOUT timeout while sending statistics data: %1</term>
  505. <listitem><para>
  506. The authoritative server sent data to the statistics daemon but received
  507. no acknowledgement within the specified time. The message includes
  508. additional information describing the reason for the failure.
  509. </para></listitem>
  510. </varlistentry>
  511. <varlistentry id="AUTH_STATS_TIMER_DISABLED">
  512. <term>AUTH_STATS_TIMER_DISABLED statistics timer has been disabled</term>
  513. <listitem><para>
  514. This is a debug message indicating that the statistics timer has been
  515. disabled in the authoritative server and no statistics information is
  516. being produced.
  517. </para></listitem>
  518. </varlistentry>
  519. <varlistentry id="AUTH_STATS_TIMER_SET">
  520. <term>AUTH_STATS_TIMER_SET statistics timer set to %1 second(s)</term>
  521. <listitem><para>
  522. This is a debug message indicating that the statistics timer has been
  523. enabled and that the authoritative server will produce statistics data
  524. at the specified interval.
  525. </para></listitem>
  526. </varlistentry>
  527. <varlistentry id="AUTH_STOP_DDNS_FORWARDER">
  528. <term>AUTH_STOP_DDNS_FORWARDER DDNS UPDATE handling stopped</term>
  529. <listitem><para>
  530. This is a debug message indicating that b10-auth has received a message
  531. that it should stop internally forwarding UPDATE message to b10-ddns.
  532. b10-auth will no longer forward UPDATE messages to b10-ddns, but will
  533. respond itself with error code NOTIMP.
  534. This message is also logged when the forwarding is restarted (for instance
  535. if b10-ddns is restarted and the internal connection needs to be created
  536. again), in which case it should be followed by AUTH_START_DDNS_FORWARDER.
  537. </para></listitem>
  538. </varlistentry>
  539. <varlistentry id="AUTH_UNSUPPORTED_OPCODE">
  540. <term>AUTH_UNSUPPORTED_OPCODE unsupported opcode: %1</term>
  541. <listitem><para>
  542. This is a debug message, produced when a received DNS packet being
  543. processed by the authoritative server has been found to contain an
  544. unsupported opcode. (The opcode is included in the message.) The server
  545. will return an error code of NOTIMPL to the sender.
  546. </para></listitem>
  547. </varlistentry>
  548. <varlistentry id="AUTH_XFRIN_CHANNEL_CREATED">
  549. <term>AUTH_XFRIN_CHANNEL_CREATED XFRIN session channel created</term>
  550. <listitem><para>
  551. This is a debug message indicating that the authoritative server has
  552. created a channel to the XFRIN (Transfer-in) process. It is issued
  553. during server startup is an indication that the initialization is
  554. proceeding normally.
  555. </para></listitem>
  556. </varlistentry>
  557. <varlistentry id="AUTH_XFRIN_CHANNEL_ESTABLISHED">
  558. <term>AUTH_XFRIN_CHANNEL_ESTABLISHED XFRIN session channel established</term>
  559. <listitem><para>
  560. This is a debug message indicating that the authoritative server has
  561. established communication over the previously-created channel to the
  562. XFRIN (Transfer-in) process. It is issued during server startup is an
  563. indication that the initialization is proceeding normally.
  564. </para></listitem>
  565. </varlistentry>
  566. <varlistentry id="AUTH_ZONEMGR_COMMS">
  567. <term>AUTH_ZONEMGR_COMMS error communicating with zone manager: %1</term>
  568. <listitem><para>
  569. This is a debug message output during the processing of a NOTIFY request.
  570. An error (listed in the message) has been encountered whilst communicating
  571. with the zone manager. The NOTIFY request will not be honored.
  572. </para></listitem>
  573. </varlistentry>
  574. <varlistentry id="AUTH_ZONEMGR_ERROR">
  575. <term>AUTH_ZONEMGR_ERROR received error response from zone manager: %1</term>
  576. <listitem><para>
  577. This is a debug message output during the processing of a NOTIFY
  578. request. The zone manager component has been informed of the request,
  579. but has returned an error response (which is included in the message). The
  580. NOTIFY request will not be honored.
  581. </para></listitem>
  582. </varlistentry>
  583. <varlistentry id="BIND10_CHECK_MSGQ_ALREADY_RUNNING">
  584. <term>BIND10_CHECK_MSGQ_ALREADY_RUNNING checking if msgq is already running</term>
  585. <listitem><para>
  586. The boss process is starting up and will now check if the message bus
  587. daemon is already running. If so, it will not be able to start, as it
  588. needs a dedicated message bus.
  589. </para></listitem>
  590. </varlistentry>
  591. <varlistentry id="BIND10_COMPONENT_FAILED">
  592. <term>BIND10_COMPONENT_FAILED component %1 (pid %2) failed: %3</term>
  593. <listitem><para>
  594. The process terminated, but the bind10 boss didn't expect it to, which means
  595. it must have failed.
  596. </para></listitem>
  597. </varlistentry>
  598. <varlistentry id="BIND10_COMPONENT_RESTART">
  599. <term>BIND10_COMPONENT_RESTART component %1 is about to restart</term>
  600. <listitem><para>
  601. The named component failed previously and we will try to restart it to provide
  602. as flawless service as possible, but it should be investigated what happened,
  603. as it could happen again.
  604. </para></listitem>
  605. </varlistentry>
  606. <varlistentry id="BIND10_COMPONENT_START">
  607. <term>BIND10_COMPONENT_START component %1 is starting</term>
  608. <listitem><para>
  609. The named component is about to be started by the boss process.
  610. </para></listitem>
  611. </varlistentry>
  612. <varlistentry id="BIND10_COMPONENT_START_EXCEPTION">
  613. <term>BIND10_COMPONENT_START_EXCEPTION component %1 failed to start: %2</term>
  614. <listitem><para>
  615. An exception (mentioned in the message) happened during the startup of the
  616. named component. The componet is not considered started and further actions
  617. will be taken about it.
  618. </para></listitem>
  619. </varlistentry>
  620. <varlistentry id="BIND10_COMPONENT_STOP">
  621. <term>BIND10_COMPONENT_STOP component %1 is being stopped</term>
  622. <listitem><para>
  623. A component is about to be asked to stop willingly by the boss.
  624. </para></listitem>
  625. </varlistentry>
  626. <varlistentry id="BIND10_COMPONENT_UNSATISFIED">
  627. <term>BIND10_COMPONENT_UNSATISFIED component %1 is required to run and failed</term>
  628. <listitem><para>
  629. A component failed for some reason (see previous messages). It is either a core
  630. component or needed component that was just started. In any case, the system
  631. can't continue without it and will terminate.
  632. </para></listitem>
  633. </varlistentry>
  634. <varlistentry id="BIND10_CONFIGURATOR_BUILD">
  635. <term>BIND10_CONFIGURATOR_BUILD building plan '%1' -&gt; '%2'</term>
  636. <listitem><para>
  637. A debug message. This indicates that the configurator is building a plan
  638. how to change configuration from the older one to newer one. This does no
  639. real work yet, it just does the planning what needs to be done.
  640. </para></listitem>
  641. </varlistentry>
  642. <varlistentry id="BIND10_CONFIGURATOR_PLAN_INTERRUPTED">
  643. <term>BIND10_CONFIGURATOR_PLAN_INTERRUPTED configurator plan interrupted, only %1 of %2 done</term>
  644. <listitem><para>
  645. There was an exception during some planned task. The plan will not continue and
  646. only some tasks of the plan were completed. The rest is aborted. The exception
  647. will be propagated.
  648. </para></listitem>
  649. </varlistentry>
  650. <varlistentry id="BIND10_CONFIGURATOR_RECONFIGURE">
  651. <term>BIND10_CONFIGURATOR_RECONFIGURE reconfiguring running components</term>
  652. <listitem><para>
  653. A different configuration of which components should be running is being
  654. installed. All components that are no longer needed will be stopped and
  655. newly introduced ones started. This happens at startup, when the configuration
  656. is read the first time, or when an operator changes configuration of the boss.
  657. </para></listitem>
  658. </varlistentry>
  659. <varlistentry id="BIND10_CONFIGURATOR_RUN">
  660. <term>BIND10_CONFIGURATOR_RUN running plan of %1 tasks</term>
  661. <listitem><para>
  662. A debug message. The configurator is about to execute a plan of actions it
  663. computed previously.
  664. </para></listitem>
  665. </varlistentry>
  666. <varlistentry id="BIND10_CONFIGURATOR_START">
  667. <term>BIND10_CONFIGURATOR_START bind10 component configurator is starting up</term>
  668. <listitem><para>
  669. The part that cares about starting and stopping the right component from the
  670. boss process is starting up. This happens only once at the startup of the
  671. boss process. It will start the basic set of processes now (the ones boss
  672. needs to read the configuration), the rest will be started after the
  673. configuration is known.
  674. </para></listitem>
  675. </varlistentry>
  676. <varlistentry id="BIND10_CONFIGURATOR_STOP">
  677. <term>BIND10_CONFIGURATOR_STOP bind10 component configurator is shutting down</term>
  678. <listitem><para>
  679. The part that cares about starting and stopping processes in the boss is
  680. shutting down. All started components will be shut down now (more precisely,
  681. asked to terminate by their own, if they fail to comply, other parts of
  682. the boss process will try to force them).
  683. </para></listitem>
  684. </varlistentry>
  685. <varlistentry id="BIND10_CONFIGURATOR_TASK">
  686. <term>BIND10_CONFIGURATOR_TASK performing task %1 on %2</term>
  687. <listitem><para>
  688. A debug message. The configurator is about to perform one task of the plan it
  689. is currently executing on the named component.
  690. </para></listitem>
  691. </varlistentry>
  692. <varlistentry id="BIND10_INVALID_STATISTICS_DATA">
  693. <term>BIND10_INVALID_STATISTICS_DATA invalid specification of statistics data specified</term>
  694. <listitem><para>
  695. An error was encountered when the boss module specified
  696. statistics data which is invalid for the boss specification file.
  697. </para></listitem>
  698. </varlistentry>
  699. <varlistentry id="BIND10_INVALID_USER">
  700. <term>BIND10_INVALID_USER invalid user: %1</term>
  701. <listitem><para>
  702. The boss process was started with the -u option, to drop root privileges
  703. and continue running as the specified user, but the user is unknown.
  704. </para></listitem>
  705. </varlistentry>
  706. <varlistentry id="BIND10_KILLING_ALL_PROCESSES">
  707. <term>BIND10_KILLING_ALL_PROCESSES killing all started processes</term>
  708. <listitem><para>
  709. The boss module was not able to start every process it needed to start
  710. during startup, and will now kill the processes that did get started.
  711. </para></listitem>
  712. </varlistentry>
  713. <varlistentry id="BIND10_KILL_PROCESS">
  714. <term>BIND10_KILL_PROCESS killing process %1</term>
  715. <listitem><para>
  716. The boss module is sending a kill signal to process with the given name,
  717. as part of the process of killing all started processes during a failed
  718. startup, as described for BIND10_KILLING_ALL_PROCESSES
  719. </para></listitem>
  720. </varlistentry>
  721. <varlistentry id="BIND10_LOST_SOCKET_CONSUMER">
  722. <term>BIND10_LOST_SOCKET_CONSUMER consumer %1 of sockets disconnected, considering all its sockets closed</term>
  723. <listitem><para>
  724. A connection from one of the applications which requested a socket was
  725. closed. This means the application has terminated, so all the sockets it was
  726. using are now closed and bind10 process can release them as well, unless the
  727. same sockets are used by yet another application.
  728. </para></listitem>
  729. </varlistentry>
  730. <varlistentry id="BIND10_MSGQ_ALREADY_RUNNING">
  731. <term>BIND10_MSGQ_ALREADY_RUNNING msgq daemon already running, cannot start</term>
  732. <listitem><para>
  733. There already appears to be a message bus daemon running. Either an
  734. old process was not shut down correctly, and needs to be killed, or
  735. another instance of BIND10, with the same msgq domain socket, is
  736. running, which needs to be stopped.
  737. </para></listitem>
  738. </varlistentry>
  739. <varlistentry id="BIND10_MSGQ_DISAPPEARED">
  740. <term>BIND10_MSGQ_DISAPPEARED msgq channel disappeared</term>
  741. <listitem><para>
  742. While listening on the message bus channel for messages, it suddenly
  743. disappeared. The msgq daemon may have died. This might lead to an
  744. inconsistent state of the system, and BIND 10 will now shut down.
  745. </para></listitem>
  746. </varlistentry>
  747. <varlistentry id="BIND10_NO_SOCKET">
  748. <term>BIND10_NO_SOCKET couldn't send a socket for token %1 because of error: %2</term>
  749. <listitem><para>
  750. An error occurred when the bind10 process was asked to send a socket file
  751. descriptor. The error is mentioned, most common reason is that the request
  752. is invalid and may not come from bind10 process at all.
  753. </para></listitem>
  754. </varlistentry>
  755. <varlistentry id="BIND10_PROCESS_ENDED">
  756. <term>BIND10_PROCESS_ENDED process %2 of %1 ended with status %3</term>
  757. <listitem><para>
  758. This indicates a process started previously terminated. The process id
  759. and component owning the process are indicated, as well as the exit code.
  760. This doesn't distinguish if the process was supposed to terminate or not.
  761. </para></listitem>
  762. </varlistentry>
  763. <varlistentry id="BIND10_READING_BOSS_CONFIGURATION">
  764. <term>BIND10_READING_BOSS_CONFIGURATION reading boss configuration</term>
  765. <listitem><para>
  766. The boss process is starting up, and will now process the initial
  767. configuration, as received from the configuration manager.
  768. </para></listitem>
  769. </varlistentry>
  770. <varlistentry id="BIND10_RECEIVED_COMMAND">
  771. <term>BIND10_RECEIVED_COMMAND received command: %1</term>
  772. <listitem><para>
  773. The boss module received a command and shall now process it. The command
  774. is printed.
  775. </para></listitem>
  776. </varlistentry>
  777. <varlistentry id="BIND10_RECEIVED_NEW_CONFIGURATION">
  778. <term>BIND10_RECEIVED_NEW_CONFIGURATION received new configuration: %1</term>
  779. <listitem><para>
  780. The boss module received a configuration update and is going to apply
  781. it now. The new configuration is printed.
  782. </para></listitem>
  783. </varlistentry>
  784. <varlistentry id="BIND10_RECEIVED_SIGNAL">
  785. <term>BIND10_RECEIVED_SIGNAL received signal %1</term>
  786. <listitem><para>
  787. The boss module received the given signal.
  788. </para></listitem>
  789. </varlistentry>
  790. <varlistentry id="BIND10_RESURRECTED_PROCESS">
  791. <term>BIND10_RESURRECTED_PROCESS resurrected %1 (PID %2)</term>
  792. <listitem><para>
  793. The given process has been restarted successfully, and is now running
  794. with the given process id.
  795. </para></listitem>
  796. </varlistentry>
  797. <varlistentry id="BIND10_RESURRECTING_PROCESS">
  798. <term>BIND10_RESURRECTING_PROCESS resurrecting dead %1 process...</term>
  799. <listitem><para>
  800. The given process has ended unexpectedly, and is now restarted.
  801. </para></listitem>
  802. </varlistentry>
  803. <varlistentry id="BIND10_SELECT_ERROR">
  804. <term>BIND10_SELECT_ERROR error in select() call: %1</term>
  805. <listitem><para>
  806. There was a fatal error in the call to select(), used to see if a child
  807. process has ended or if there is a message on the message bus. This
  808. should not happen under normal circumstances and is considered fatal,
  809. so BIND 10 will now shut down. The specific error is printed.
  810. </para></listitem>
  811. </varlistentry>
  812. <varlistentry id="BIND10_SEND_SIGKILL">
  813. <term>BIND10_SEND_SIGKILL sending SIGKILL to %1 (PID %2)</term>
  814. <listitem><para>
  815. The boss module is sending a SIGKILL signal to the given process.
  816. </para></listitem>
  817. </varlistentry>
  818. <varlistentry id="BIND10_SEND_SIGTERM">
  819. <term>BIND10_SEND_SIGTERM sending SIGTERM to %1 (PID %2)</term>
  820. <listitem><para>
  821. The boss module is sending a SIGTERM signal to the given process.
  822. </para></listitem>
  823. </varlistentry>
  824. <varlistentry id="BIND10_SETGID">
  825. <term>BIND10_SETGID setting GID to %1</term>
  826. <listitem><para>
  827. The boss switches the process group ID to the given value. This happens
  828. when BIND 10 starts with the -u option, and the group ID will be set to
  829. that of the specified user.
  830. </para></listitem>
  831. </varlistentry>
  832. <varlistentry id="BIND10_SETUID">
  833. <term>BIND10_SETUID setting UID to %1</term>
  834. <listitem><para>
  835. The boss switches the user it runs as to the given UID.
  836. </para></listitem>
  837. </varlistentry>
  838. <varlistentry id="BIND10_SHUTDOWN">
  839. <term>BIND10_SHUTDOWN stopping the server</term>
  840. <listitem><para>
  841. The boss process received a command or signal telling it to shut down.
  842. It will send a shutdown command to each process. The processes that do
  843. not shut down will then receive a SIGTERM signal. If that doesn't work,
  844. it shall send SIGKILL signals to the processes still alive.
  845. </para></listitem>
  846. </varlistentry>
  847. <varlistentry id="BIND10_SHUTDOWN_COMPLETE">
  848. <term>BIND10_SHUTDOWN_COMPLETE all processes ended, shutdown complete</term>
  849. <listitem><para>
  850. All child processes have been stopped, and the boss process will now
  851. stop itself.
  852. </para></listitem>
  853. </varlistentry>
  854. <varlistentry id="BIND10_SOCKCREATOR_BAD_CAUSE">
  855. <term>BIND10_SOCKCREATOR_BAD_CAUSE unknown error cause from socket creator: %1</term>
  856. <listitem><para>
  857. The socket creator reported an error when creating a socket. But the function
  858. which failed is unknown (not one of 'S' for socket or 'B' for bind).
  859. </para></listitem>
  860. </varlistentry>
  861. <varlistentry id="BIND10_SOCKCREATOR_BAD_RESPONSE">
  862. <term>BIND10_SOCKCREATOR_BAD_RESPONSE unknown response for socket request: %1</term>
  863. <listitem><para>
  864. The boss requested a socket from the creator, but the answer is unknown. This
  865. looks like a programmer error.
  866. </para></listitem>
  867. </varlistentry>
  868. <varlistentry id="BIND10_SOCKCREATOR_EOF">
  869. <term>BIND10_SOCKCREATOR_EOF eof while expecting data from socket creator</term>
  870. <listitem><para>
  871. There should be more data from the socket creator, but it closed the socket.
  872. It probably crashed.
  873. </para></listitem>
  874. </varlistentry>
  875. <varlistentry id="BIND10_SOCKCREATOR_INIT">
  876. <term>BIND10_SOCKCREATOR_INIT initializing socket creator parser</term>
  877. <listitem><para>
  878. The boss module initializes routines for parsing the socket creator
  879. protocol.
  880. </para></listitem>
  881. </varlistentry>
  882. <varlistentry id="BIND10_SOCKCREATOR_KILL">
  883. <term>BIND10_SOCKCREATOR_KILL killing the socket creator</term>
  884. <listitem><para>
  885. The socket creator is being terminated the aggressive way, by sending it
  886. sigkill. This should not happen usually.
  887. </para></listitem>
  888. </varlistentry>
  889. <varlistentry id="BIND10_SOCKCREATOR_TERMINATE">
  890. <term>BIND10_SOCKCREATOR_TERMINATE terminating socket creator</term>
  891. <listitem><para>
  892. The boss module sends a request to terminate to the socket creator.
  893. </para></listitem>
  894. </varlistentry>
  895. <varlistentry id="BIND10_SOCKCREATOR_TRANSPORT_ERROR">
  896. <term>BIND10_SOCKCREATOR_TRANSPORT_ERROR transport error when talking to the socket creator: %1</term>
  897. <listitem><para>
  898. Either sending or receiving data from the socket creator failed with the given
  899. error. The creator probably crashed or some serious OS-level problem happened,
  900. as the communication happens only on local host.
  901. </para></listitem>
  902. </varlistentry>
  903. <varlistentry id="BIND10_SOCKET_CREATED">
  904. <term>BIND10_SOCKET_CREATED successfully created socket %1</term>
  905. <listitem><para>
  906. The socket creator successfully created and sent a requested socket, it has
  907. the given file number.
  908. </para></listitem>
  909. </varlistentry>
  910. <varlistentry id="BIND10_SOCKET_ERROR">
  911. <term>BIND10_SOCKET_ERROR error on %1 call in the creator: %2/%3</term>
  912. <listitem><para>
  913. The socket creator failed to create the requested socket. It failed on the
  914. indicated OS API function with given error.
  915. </para></listitem>
  916. </varlistentry>
  917. <varlistentry id="BIND10_SOCKET_GET">
  918. <term>BIND10_SOCKET_GET requesting socket [%1]:%2 of type %3 from the creator</term>
  919. <listitem><para>
  920. The boss forwards a request for a socket to the socket creator.
  921. </para></listitem>
  922. </varlistentry>
  923. <varlistentry id="BIND10_STARTED_CC">
  924. <term>BIND10_STARTED_CC started configuration/command session</term>
  925. <listitem><para>
  926. Debug message given when BIND 10 has successfull started the object that
  927. handles configuration and commands.
  928. </para></listitem>
  929. </varlistentry>
  930. <varlistentry id="BIND10_STARTED_PROCESS">
  931. <term>BIND10_STARTED_PROCESS started %1</term>
  932. <listitem><para>
  933. The given process has successfully been started.
  934. </para></listitem>
  935. </varlistentry>
  936. <varlistentry id="BIND10_STARTED_PROCESS_PID">
  937. <term>BIND10_STARTED_PROCESS_PID started %1 (PID %2)</term>
  938. <listitem><para>
  939. The given process has successfully been started, and has the given PID.
  940. </para></listitem>
  941. </varlistentry>
  942. <varlistentry id="BIND10_STARTING">
  943. <term>BIND10_STARTING starting BIND10: %1</term>
  944. <listitem><para>
  945. Informational message on startup that shows the full version.
  946. </para></listitem>
  947. </varlistentry>
  948. <varlistentry id="BIND10_STARTING_CC">
  949. <term>BIND10_STARTING_CC starting configuration/command session</term>
  950. <listitem><para>
  951. Informational message given when BIND 10 is starting the session object
  952. that handles configuration and commands.
  953. </para></listitem>
  954. </varlistentry>
  955. <varlistentry id="BIND10_STARTING_PROCESS">
  956. <term>BIND10_STARTING_PROCESS starting process %1</term>
  957. <listitem><para>
  958. The boss module is starting the given process.
  959. </para></listitem>
  960. </varlistentry>
  961. <varlistentry id="BIND10_STARTING_PROCESS_PORT">
  962. <term>BIND10_STARTING_PROCESS_PORT starting process %1 (to listen on port %2)</term>
  963. <listitem><para>
  964. The boss module is starting the given process, which will listen on the
  965. given port number.
  966. </para></listitem>
  967. </varlistentry>
  968. <varlistentry id="BIND10_STARTING_PROCESS_PORT_ADDRESS">
  969. <term>BIND10_STARTING_PROCESS_PORT_ADDRESS starting process %1 (to listen on %2#%3)</term>
  970. <listitem><para>
  971. The boss module is starting the given process, which will listen on the
  972. given address and port number (written as &lt;address&gt;#&lt;port&gt;).
  973. </para></listitem>
  974. </varlistentry>
  975. <varlistentry id="BIND10_STARTUP_COMPLETE">
  976. <term>BIND10_STARTUP_COMPLETE BIND 10 started</term>
  977. <listitem><para>
  978. All modules have been successfully started, and BIND 10 is now running.
  979. </para></listitem>
  980. </varlistentry>
  981. <varlistentry id="BIND10_STARTUP_ERROR">
  982. <term>BIND10_STARTUP_ERROR error during startup: %1</term>
  983. <listitem><para>
  984. There was a fatal error when BIND10 was trying to start. The error is
  985. shown, and BIND10 will now shut down.
  986. </para></listitem>
  987. </varlistentry>
  988. <varlistentry id="BIND10_STARTUP_UNEXPECTED_MESSAGE">
  989. <term>BIND10_STARTUP_UNEXPECTED_MESSAGE unrecognised startup message %1</term>
  990. <listitem><para>
  991. During the startup process, a number of messages are exchanged between the
  992. Boss process and the processes it starts. This error is output when a
  993. message received by the Boss process is recognised as being of the
  994. correct format but is unexpected. It may be that processes are starting
  995. of sequence.
  996. </para></listitem>
  997. </varlistentry>
  998. <varlistentry id="BIND10_STARTUP_UNRECOGNISED_MESSAGE">
  999. <term>BIND10_STARTUP_UNRECOGNISED_MESSAGE unrecognised startup message %1</term>
  1000. <listitem><para>
  1001. During the startup process, a number of messages are exchanged between the
  1002. Boss process and the processes it starts. This error is output when a
  1003. message received by the Boss process is not recognised.
  1004. </para></listitem>
  1005. </varlistentry>
  1006. <varlistentry id="BIND10_START_AS_NON_ROOT_AUTH">
  1007. <term>BIND10_START_AS_NON_ROOT_AUTH starting b10-auth as a user, not root. This might fail.</term>
  1008. <listitem><para>
  1009. The authoritative server is being started or restarted without root privileges.
  1010. If the module needs these privileges, it may have problems starting.
  1011. Note that this issue should be resolved by the pending 'socket-creator'
  1012. process; once that has been implemented, modules should not need root
  1013. privileges anymore. See tickets #800 and #801 for more information.
  1014. </para></listitem>
  1015. </varlistentry>
  1016. <varlistentry id="BIND10_START_AS_NON_ROOT_RESOLVER">
  1017. <term>BIND10_START_AS_NON_ROOT_RESOLVER starting b10-resolver as a user, not root. This might fail.</term>
  1018. <listitem><para>
  1019. The resolver is being started or restarted without root privileges.
  1020. If the module needs these privileges, it may have problems starting.
  1021. Note that this issue should be resolved by the pending 'socket-creator'
  1022. process; once that has been implemented, modules should not need root
  1023. privileges anymore. See tickets #800 and #801 for more information.
  1024. </para></listitem>
  1025. </varlistentry>
  1026. <varlistentry id="BIND10_STOP_PROCESS">
  1027. <term>BIND10_STOP_PROCESS asking %1 to shut down</term>
  1028. <listitem><para>
  1029. The boss module is sending a shutdown command to the given module over
  1030. the message channel.
  1031. </para></listitem>
  1032. </varlistentry>
  1033. <varlistentry id="BIND10_UNKNOWN_CHILD_PROCESS_ENDED">
  1034. <term>BIND10_UNKNOWN_CHILD_PROCESS_ENDED unknown child pid %1 exited</term>
  1035. <listitem><para>
  1036. An unknown child process has exited. The PID is printed, but no further
  1037. action will be taken by the boss process.
  1038. </para></listitem>
  1039. </varlistentry>
  1040. <varlistentry id="BIND10_WAIT_CFGMGR">
  1041. <term>BIND10_WAIT_CFGMGR waiting for configuration manager process to initialize</term>
  1042. <listitem><para>
  1043. The configuration manager process is so critical to operation of BIND 10
  1044. that after starting it, the Boss module will wait for it to initialize
  1045. itself before continuing. This debug message is produced during the
  1046. wait and may be output zero or more times depending on how long it takes
  1047. the configuration manager to start up. The total length of time Boss
  1048. will wait for the configuration manager before reporting an error is
  1049. set with the command line --wait switch, which has a default value of
  1050. ten seconds.
  1051. </para></listitem>
  1052. </varlistentry>
  1053. <varlistentry id="CACHE_ENTRY_MISSING_RRSET">
  1054. <term>CACHE_ENTRY_MISSING_RRSET missing RRset to generate message for %1</term>
  1055. <listitem><para>
  1056. The cache tried to generate the complete answer message. It knows the structure
  1057. of the message, but some of the RRsets to be put there are not in cache (they
  1058. probably expired already). Therefore it pretends the message was not found.
  1059. </para></listitem>
  1060. </varlistentry>
  1061. <varlistentry id="CACHE_LOCALZONE_FOUND">
  1062. <term>CACHE_LOCALZONE_FOUND found entry with key %1 in local zone data</term>
  1063. <listitem><para>
  1064. Debug message, noting that the requested data was successfully found in the
  1065. local zone data of the cache.
  1066. </para></listitem>
  1067. </varlistentry>
  1068. <varlistentry id="CACHE_LOCALZONE_UNKNOWN">
  1069. <term>CACHE_LOCALZONE_UNKNOWN entry with key %1 not found in local zone data</term>
  1070. <listitem><para>
  1071. Debug message. The requested data was not found in the local zone data.
  1072. </para></listitem>
  1073. </varlistentry>
  1074. <varlistentry id="CACHE_LOCALZONE_UPDATE">
  1075. <term>CACHE_LOCALZONE_UPDATE updating local zone element at key %1</term>
  1076. <listitem><para>
  1077. Debug message issued when there's update to the local zone section of cache.
  1078. </para></listitem>
  1079. </varlistentry>
  1080. <varlistentry id="CACHE_MESSAGES_DEINIT">
  1081. <term>CACHE_MESSAGES_DEINIT deinitialized message cache</term>
  1082. <listitem><para>
  1083. Debug message. It is issued when the server deinitializes the message cache.
  1084. </para></listitem>
  1085. </varlistentry>
  1086. <varlistentry id="CACHE_MESSAGES_EXPIRED">
  1087. <term>CACHE_MESSAGES_EXPIRED found an expired message entry for %1 in the message cache</term>
  1088. <listitem><para>
  1089. Debug message. The requested data was found in the message cache, but it
  1090. already expired. Therefore the cache removes the entry and pretends it found
  1091. nothing.
  1092. </para></listitem>
  1093. </varlistentry>
  1094. <varlistentry id="CACHE_MESSAGES_FOUND">
  1095. <term>CACHE_MESSAGES_FOUND found a message entry for %1 in the message cache</term>
  1096. <listitem><para>
  1097. Debug message. We found the whole message in the cache, so it can be returned
  1098. to user without any other lookups.
  1099. </para></listitem>
  1100. </varlistentry>
  1101. <varlistentry id="CACHE_MESSAGES_INIT">
  1102. <term>CACHE_MESSAGES_INIT initialized message cache for %1 messages of class %2</term>
  1103. <listitem><para>
  1104. Debug message issued when a new message cache is issued. It lists the class
  1105. of messages it can hold and the maximum size of the cache.
  1106. </para></listitem>
  1107. </varlistentry>
  1108. <varlistentry id="CACHE_MESSAGES_REMOVE">
  1109. <term>CACHE_MESSAGES_REMOVE removing old instance of %1/%2/%3 first</term>
  1110. <listitem><para>
  1111. Debug message. This may follow CACHE_MESSAGES_UPDATE and indicates that, while
  1112. updating, the old instance is being removed prior of inserting a new one.
  1113. </para></listitem>
  1114. </varlistentry>
  1115. <varlistentry id="CACHE_MESSAGES_UNCACHEABLE">
  1116. <term>CACHE_MESSAGES_UNCACHEABLE not inserting uncacheable message %1/%2/%3</term>
  1117. <listitem><para>
  1118. Debug message, noting that the given message can not be cached. This is because
  1119. there's no SOA record in the message. See RFC 2308 section 5 for more
  1120. information.
  1121. </para></listitem>
  1122. </varlistentry>
  1123. <varlistentry id="CACHE_MESSAGES_UNKNOWN">
  1124. <term>CACHE_MESSAGES_UNKNOWN no entry for %1 found in the message cache</term>
  1125. <listitem><para>
  1126. Debug message. The message cache didn't find any entry for the given key.
  1127. </para></listitem>
  1128. </varlistentry>
  1129. <varlistentry id="CACHE_MESSAGES_UPDATE">
  1130. <term>CACHE_MESSAGES_UPDATE updating message entry %1/%2/%3</term>
  1131. <listitem><para>
  1132. Debug message issued when the message cache is being updated with a new
  1133. message. Either the old instance is removed or, if none is found, new one
  1134. is created.
  1135. </para></listitem>
  1136. </varlistentry>
  1137. <varlistentry id="CACHE_RESOLVER_DEEPEST">
  1138. <term>CACHE_RESOLVER_DEEPEST looking up deepest NS for %1/%2</term>
  1139. <listitem><para>
  1140. Debug message. The resolver cache is looking up the deepest known nameserver,
  1141. so the resolution doesn't have to start from the root.
  1142. </para></listitem>
  1143. </varlistentry>
  1144. <varlistentry id="CACHE_RESOLVER_INIT">
  1145. <term>CACHE_RESOLVER_INIT initializing resolver cache for class %1</term>
  1146. <listitem><para>
  1147. Debug message. The resolver cache is being created for this given class.
  1148. </para></listitem>
  1149. </varlistentry>
  1150. <varlistentry id="CACHE_RESOLVER_INIT_INFO">
  1151. <term>CACHE_RESOLVER_INIT_INFO initializing resolver cache for class %1</term>
  1152. <listitem><para>
  1153. Debug message, the resolver cache is being created for this given class. The
  1154. difference from CACHE_RESOLVER_INIT is only in different format of passed
  1155. information, otherwise it does the same.
  1156. </para></listitem>
  1157. </varlistentry>
  1158. <varlistentry id="CACHE_RESOLVER_LOCAL_MSG">
  1159. <term>CACHE_RESOLVER_LOCAL_MSG message for %1/%2 found in local zone data</term>
  1160. <listitem><para>
  1161. Debug message. The resolver cache found a complete message for the user query
  1162. in the zone data.
  1163. </para></listitem>
  1164. </varlistentry>
  1165. <varlistentry id="CACHE_RESOLVER_LOCAL_RRSET">
  1166. <term>CACHE_RESOLVER_LOCAL_RRSET RRset for %1/%2 found in local zone data</term>
  1167. <listitem><para>
  1168. Debug message. The resolver cache found a requested RRset in the local zone
  1169. data.
  1170. </para></listitem>
  1171. </varlistentry>
  1172. <varlistentry id="CACHE_RESOLVER_LOOKUP_MSG">
  1173. <term>CACHE_RESOLVER_LOOKUP_MSG looking up message in resolver cache for %1/%2</term>
  1174. <listitem><para>
  1175. Debug message. The resolver cache is trying to find a message to answer the
  1176. user query.
  1177. </para></listitem>
  1178. </varlistentry>
  1179. <varlistentry id="CACHE_RESOLVER_LOOKUP_RRSET">
  1180. <term>CACHE_RESOLVER_LOOKUP_RRSET looking up RRset in resolver cache for %1/%2</term>
  1181. <listitem><para>
  1182. Debug message. The resolver cache is trying to find an RRset (which usually
  1183. originates as internally from resolver).
  1184. </para></listitem>
  1185. </varlistentry>
  1186. <varlistentry id="CACHE_RESOLVER_NO_QUESTION">
  1187. <term>CACHE_RESOLVER_NO_QUESTION answer message for %1/%2 has empty question section</term>
  1188. <listitem><para>
  1189. The cache tried to fill in found data into the response message. But it
  1190. discovered the message contains no question section, which is invalid.
  1191. This is likely a programmer error, please submit a bug report.
  1192. </para></listitem>
  1193. </varlistentry>
  1194. <varlistentry id="CACHE_RESOLVER_UNKNOWN_CLASS_MSG">
  1195. <term>CACHE_RESOLVER_UNKNOWN_CLASS_MSG no cache for class %1</term>
  1196. <listitem><para>
  1197. Debug message. While trying to lookup a message in the resolver cache, it was
  1198. discovered there's no cache for this class at all. Therefore no message is
  1199. found.
  1200. </para></listitem>
  1201. </varlistentry>
  1202. <varlistentry id="CACHE_RESOLVER_UNKNOWN_CLASS_RRSET">
  1203. <term>CACHE_RESOLVER_UNKNOWN_CLASS_RRSET no cache for class %1</term>
  1204. <listitem><para>
  1205. Debug message. While trying to lookup an RRset in the resolver cache, it was
  1206. discovered there's no cache for this class at all. Therefore no data is found.
  1207. </para></listitem>
  1208. </varlistentry>
  1209. <varlistentry id="CACHE_RESOLVER_UPDATE_MSG">
  1210. <term>CACHE_RESOLVER_UPDATE_MSG updating message for %1/%2/%3</term>
  1211. <listitem><para>
  1212. Debug message. The resolver is updating a message in the cache.
  1213. </para></listitem>
  1214. </varlistentry>
  1215. <varlistentry id="CACHE_RESOLVER_UPDATE_RRSET">
  1216. <term>CACHE_RESOLVER_UPDATE_RRSET updating RRset for %1/%2/%3</term>
  1217. <listitem><para>
  1218. Debug message. The resolver is updating an RRset in the cache.
  1219. </para></listitem>
  1220. </varlistentry>
  1221. <varlistentry id="CACHE_RESOLVER_UPDATE_UNKNOWN_CLASS_MSG">
  1222. <term>CACHE_RESOLVER_UPDATE_UNKNOWN_CLASS_MSG no cache for class %1</term>
  1223. <listitem><para>
  1224. Debug message. While trying to insert a message into the cache, it was
  1225. discovered that there's no cache for the class of message. Therefore
  1226. the message will not be cached.
  1227. </para></listitem>
  1228. </varlistentry>
  1229. <varlistentry id="CACHE_RESOLVER_UPDATE_UNKNOWN_CLASS_RRSET">
  1230. <term>CACHE_RESOLVER_UPDATE_UNKNOWN_CLASS_RRSET no cache for class %1</term>
  1231. <listitem><para>
  1232. Debug message. While trying to insert an RRset into the cache, it was
  1233. discovered that there's no cache for the class of the RRset. Therefore
  1234. the message will not be cached.
  1235. </para></listitem>
  1236. </varlistentry>
  1237. <varlistentry id="CACHE_RRSET_EXPIRED">
  1238. <term>CACHE_RRSET_EXPIRED found expired RRset %1/%2/%3</term>
  1239. <listitem><para>
  1240. Debug message. The requested data was found in the RRset cache. However, it is
  1241. expired, so the cache removed it and is going to pretend nothing was found.
  1242. </para></listitem>
  1243. </varlistentry>
  1244. <varlistentry id="CACHE_RRSET_INIT">
  1245. <term>CACHE_RRSET_INIT initializing RRset cache for %1 RRsets of class %2</term>
  1246. <listitem><para>
  1247. Debug message. The RRset cache to hold at most this many RRsets for the given
  1248. class is being created.
  1249. </para></listitem>
  1250. </varlistentry>
  1251. <varlistentry id="CACHE_RRSET_LOOKUP">
  1252. <term>CACHE_RRSET_LOOKUP looking up %1/%2/%3 in RRset cache</term>
  1253. <listitem><para>
  1254. Debug message. The resolver is trying to look up data in the RRset cache.
  1255. </para></listitem>
  1256. </varlistentry>
  1257. <varlistentry id="CACHE_RRSET_NOT_FOUND">
  1258. <term>CACHE_RRSET_NOT_FOUND no RRset found for %1/%2/%3 in cache</term>
  1259. <listitem><para>
  1260. Debug message which can follow CACHE_RRSET_LOOKUP. This means the data is not
  1261. in the cache.
  1262. </para></listitem>
  1263. </varlistentry>
  1264. <varlistentry id="CACHE_RRSET_REMOVE_OLD">
  1265. <term>CACHE_RRSET_REMOVE_OLD removing old RRset for %1/%2/%3 to make space for new one</term>
  1266. <listitem><para>
  1267. Debug message which can follow CACHE_RRSET_UPDATE. During the update, the cache
  1268. removed an old instance of the RRset to replace it with the new one.
  1269. </para></listitem>
  1270. </varlistentry>
  1271. <varlistentry id="CACHE_RRSET_UNTRUSTED">
  1272. <term>CACHE_RRSET_UNTRUSTED not replacing old RRset for %1/%2/%3, it has higher trust level</term>
  1273. <listitem><para>
  1274. Debug message which can follow CACHE_RRSET_UPDATE. The cache already holds the
  1275. same RRset, but from more trusted source, so the old one is kept and new one
  1276. ignored.
  1277. </para></listitem>
  1278. </varlistentry>
  1279. <varlistentry id="CACHE_RRSET_UPDATE">
  1280. <term>CACHE_RRSET_UPDATE updating RRset %1/%2/%3 in the cache</term>
  1281. <listitem><para>
  1282. Debug message. The RRset is updating its data with this given RRset.
  1283. </para></listitem>
  1284. </varlistentry>
  1285. <varlistentry id="CC_ASYNC_READ_FAILED">
  1286. <term>CC_ASYNC_READ_FAILED asynchronous read failed (error code = %1)</term>
  1287. <listitem><para>
  1288. This marks a low level error, we tried to read data from the message queue
  1289. daemon asynchronously, but the ASIO library returned an error.
  1290. </para></listitem>
  1291. </varlistentry>
  1292. <varlistentry id="CC_CONN_ERROR">
  1293. <term>CC_CONN_ERROR error connecting to message queue (%1)</term>
  1294. <listitem><para>
  1295. It is impossible to reach the message queue daemon for the reason given. It
  1296. is unlikely there'll be reason for whatever program this currently is to
  1297. continue running, as the communication with the rest of BIND 10 is vital
  1298. for the components.
  1299. </para></listitem>
  1300. </varlistentry>
  1301. <varlistentry id="CC_DISCONNECT">
  1302. <term>CC_DISCONNECT disconnecting from message queue daemon</term>
  1303. <listitem><para>
  1304. The library is disconnecting from the message queue daemon. This debug message
  1305. indicates that the program is trying to shut down gracefully.
  1306. </para></listitem>
  1307. </varlistentry>
  1308. <varlistentry id="CC_ESTABLISH">
  1309. <term>CC_ESTABLISH trying to establish connection with message queue daemon at %1</term>
  1310. <listitem><para>
  1311. This debug message indicates that the command channel library is about to
  1312. connect to the message queue daemon, which should be listening on the UNIX-domain
  1313. socket listed in the output.
  1314. </para></listitem>
  1315. </varlistentry>
  1316. <varlistentry id="CC_ESTABLISHED">
  1317. <term>CC_ESTABLISHED successfully connected to message queue daemon</term>
  1318. <listitem><para>
  1319. This debug message indicates that the connection was successfully made, this
  1320. should follow CC_ESTABLISH.
  1321. </para></listitem>
  1322. </varlistentry>
  1323. <varlistentry id="CC_GROUP_RECEIVE">
  1324. <term>CC_GROUP_RECEIVE trying to receive a message</term>
  1325. <listitem><para>
  1326. Debug message, noting that a message is expected to come over the command
  1327. channel.
  1328. </para></listitem>
  1329. </varlistentry>
  1330. <varlistentry id="CC_GROUP_RECEIVED">
  1331. <term>CC_GROUP_RECEIVED message arrived ('%1', '%2')</term>
  1332. <listitem><para>
  1333. Debug message, noting that we successfully received a message (its envelope and
  1334. payload listed). This follows CC_GROUP_RECEIVE, but might happen some time
  1335. later, depending if we waited for it or just polled.
  1336. </para></listitem>
  1337. </varlistentry>
  1338. <varlistentry id="CC_GROUP_SEND">
  1339. <term>CC_GROUP_SEND sending message '%1' to group '%2'</term>
  1340. <listitem><para>
  1341. Debug message, we're about to send a message over the command channel.
  1342. </para></listitem>
  1343. </varlistentry>
  1344. <varlistentry id="CC_INVALID_LENGTHS">
  1345. <term>CC_INVALID_LENGTHS invalid length parameters (%1, %2)</term>
  1346. <listitem><para>
  1347. This happens when garbage comes over the command channel or some kind of
  1348. confusion happens in the program. The data received from the socket make no
  1349. sense if we interpret it as lengths of message. The first one is total length
  1350. of the message; the second is the length of the header. The header
  1351. and its length (2 bytes) is counted in the total length.
  1352. </para></listitem>
  1353. </varlistentry>
  1354. <varlistentry id="CC_LENGTH_NOT_READY">
  1355. <term>CC_LENGTH_NOT_READY length not ready</term>
  1356. <listitem><para>
  1357. There should be data representing the length of message on the socket, but it
  1358. is not there.
  1359. </para></listitem>
  1360. </varlistentry>
  1361. <varlistentry id="CC_NO_MESSAGE">
  1362. <term>CC_NO_MESSAGE no message ready to be received yet</term>
  1363. <listitem><para>
  1364. The program polled for incoming messages, but there was no message waiting.
  1365. This is a debug message which may happen only after CC_GROUP_RECEIVE.
  1366. </para></listitem>
  1367. </varlistentry>
  1368. <varlistentry id="CC_NO_MSGQ">
  1369. <term>CC_NO_MSGQ unable to connect to message queue (%1)</term>
  1370. <listitem><para>
  1371. It isn't possible to connect to the message queue daemon, for reason listed.
  1372. It is unlikely any program will be able continue without the communication.
  1373. </para></listitem>
  1374. </varlistentry>
  1375. <varlistentry id="CC_READ_ERROR">
  1376. <term>CC_READ_ERROR error reading data from command channel (%1)</term>
  1377. <listitem><para>
  1378. A low level error happened when the library tried to read data from the
  1379. command channel socket. The reason is listed.
  1380. </para></listitem>
  1381. </varlistentry>
  1382. <varlistentry id="CC_READ_EXCEPTION">
  1383. <term>CC_READ_EXCEPTION error reading data from command channel (%1)</term>
  1384. <listitem><para>
  1385. We received an exception while trying to read data from the command
  1386. channel socket. The reason is listed.
  1387. </para></listitem>
  1388. </varlistentry>
  1389. <varlistentry id="CC_REPLY">
  1390. <term>CC_REPLY replying to message from '%1' with '%2'</term>
  1391. <listitem><para>
  1392. Debug message, noting we're sending a response to the original message
  1393. with the given envelope.
  1394. </para></listitem>
  1395. </varlistentry>
  1396. <varlistentry id="CC_SET_TIMEOUT">
  1397. <term>CC_SET_TIMEOUT setting timeout to %1ms</term>
  1398. <listitem><para>
  1399. Debug message. A timeout for which the program is willing to wait for a reply
  1400. is being set.
  1401. </para></listitem>
  1402. </varlistentry>
  1403. <varlistentry id="CC_START_READ">
  1404. <term>CC_START_READ starting asynchronous read</term>
  1405. <listitem><para>
  1406. Debug message. From now on, when a message (or command) comes, it'll wake the
  1407. program and the library will automatically pass it over to correct place.
  1408. </para></listitem>
  1409. </varlistentry>
  1410. <varlistentry id="CC_SUBSCRIBE">
  1411. <term>CC_SUBSCRIBE subscribing to communication group %1</term>
  1412. <listitem><para>
  1413. Debug message. The program wants to receive messages addressed to this group.
  1414. </para></listitem>
  1415. </varlistentry>
  1416. <varlistentry id="CC_TIMEOUT">
  1417. <term>CC_TIMEOUT timeout reading data from command channel</term>
  1418. <listitem><para>
  1419. The program waited too long for data from the command channel (usually when it
  1420. sent a query to different program and it didn't answer for whatever reason).
  1421. </para></listitem>
  1422. </varlistentry>
  1423. <varlistentry id="CC_UNSUBSCRIBE">
  1424. <term>CC_UNSUBSCRIBE unsubscribing from communication group %1</term>
  1425. <listitem><para>
  1426. Debug message. The program no longer wants to receive messages addressed to
  1427. this group.
  1428. </para></listitem>
  1429. </varlistentry>
  1430. <varlistentry id="CC_WRITE_ERROR">
  1431. <term>CC_WRITE_ERROR error writing data to command channel (%1)</term>
  1432. <listitem><para>
  1433. A low level error happened when the library tried to write data to the command
  1434. channel socket.
  1435. </para></listitem>
  1436. </varlistentry>
  1437. <varlistentry id="CC_ZERO_LENGTH">
  1438. <term>CC_ZERO_LENGTH invalid message length (0)</term>
  1439. <listitem><para>
  1440. The library received a message length being zero, which makes no sense, since
  1441. all messages must contain at least the envelope.
  1442. </para></listitem>
  1443. </varlistentry>
  1444. <varlistentry id="CFGMGR_AUTOMATIC_CONFIG_DATABASE_UPDATE">
  1445. <term>CFGMGR_AUTOMATIC_CONFIG_DATABASE_UPDATE Updating configuration database from version %1 to %2</term>
  1446. <listitem><para>
  1447. An older version of the configuration database has been found, from which
  1448. there was an automatic upgrade path to the current version. These changes
  1449. are now applied, and no action from the administrator is necessary.
  1450. </para></listitem>
  1451. </varlistentry>
  1452. <varlistentry id="CFGMGR_BACKED_UP_CONFIG_FILE">
  1453. <term>CFGMGR_BACKED_UP_CONFIG_FILE Config file %1 was removed; a backup was made at %2</term>
  1454. <listitem><para>
  1455. BIND 10 has been started with the command to clear the configuration
  1456. file. The existing file has been backed up (moved) to the given file
  1457. name. A new configuration file will be created in the original location
  1458. when necessary.
  1459. </para></listitem>
  1460. </varlistentry>
  1461. <varlistentry id="CFGMGR_BAD_UPDATE_RESPONSE_FROM_MODULE">
  1462. <term>CFGMGR_BAD_UPDATE_RESPONSE_FROM_MODULE Unable to parse response from module %1: %2</term>
  1463. <listitem><para>
  1464. The configuration manager sent a configuration update to a module, but
  1465. the module responded with an answer that could not be parsed. The answer
  1466. message appears to be invalid JSON data, or not decodable to a string.
  1467. This is likely to be a problem in the module in question. The update is
  1468. assumed to have failed, and will not be stored.
  1469. </para></listitem>
  1470. </varlistentry>
  1471. <varlistentry id="CFGMGR_CC_SESSION_ERROR">
  1472. <term>CFGMGR_CC_SESSION_ERROR Error connecting to command channel: %1</term>
  1473. <listitem><para>
  1474. The configuration manager daemon was unable to connect to the messaging
  1475. system. The most likely cause is that msgq is not running.
  1476. </para></listitem>
  1477. </varlistentry>
  1478. <varlistentry id="CFGMGR_CONFIG_FILE">
  1479. <term>CFGMGR_CONFIG_FILE Configuration manager starting with configuration file: %1</term>
  1480. <listitem><para>
  1481. The configuration manager is starting, reading and saving the configuration
  1482. settings to the shown file.
  1483. </para></listitem>
  1484. </varlistentry>
  1485. <varlistentry id="CFGMGR_DATA_READ_ERROR">
  1486. <term>CFGMGR_DATA_READ_ERROR error reading configuration database from disk: %1</term>
  1487. <listitem><para>
  1488. There was a problem reading the persistent configuration data as stored
  1489. on disk. The file may be corrupted, or it is of a version from where
  1490. there is no automatic upgrade path. The file needs to be repaired or
  1491. removed. The configuration manager daemon will now shut down.
  1492. </para></listitem>
  1493. </varlistentry>
  1494. <varlistentry id="CFGMGR_IOERROR_WHILE_WRITING_CONFIGURATION">
  1495. <term>CFGMGR_IOERROR_WHILE_WRITING_CONFIGURATION Unable to write configuration file; configuration not stored: %1</term>
  1496. <listitem><para>
  1497. There was an IO error from the system while the configuration manager
  1498. was trying to write the configuration database to disk. The specific
  1499. error is given. The most likely cause is that the directory where
  1500. the file is stored does not exist, or is not writable. The updated
  1501. configuration is not stored.
  1502. </para></listitem>
  1503. </varlistentry>
  1504. <varlistentry id="CFGMGR_OSERROR_WHILE_WRITING_CONFIGURATION">
  1505. <term>CFGMGR_OSERROR_WHILE_WRITING_CONFIGURATION Unable to write configuration file; configuration not stored: %1</term>
  1506. <listitem><para>
  1507. There was an OS error from the system while the configuration manager
  1508. was trying to write the configuration database to disk. The specific
  1509. error is given. The most likely cause is that the system does not have
  1510. write access to the configuration database file. The updated
  1511. configuration is not stored.
  1512. </para></listitem>
  1513. </varlistentry>
  1514. <varlistentry id="CFGMGR_STOPPED_BY_KEYBOARD">
  1515. <term>CFGMGR_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  1516. <listitem><para>
  1517. There was a keyboard interrupt signal to stop the cfgmgr daemon. The
  1518. daemon will now shut down.
  1519. </para></listitem>
  1520. </varlistentry>
  1521. <varlistentry id="CMDCTL_BAD_CONFIG_DATA">
  1522. <term>CMDCTL_BAD_CONFIG_DATA error in config data: %1</term>
  1523. <listitem><para>
  1524. There was an error reading the updated configuration data. The specific
  1525. error is printed.
  1526. </para></listitem>
  1527. </varlistentry>
  1528. <varlistentry id="CMDCTL_BAD_PASSWORD">
  1529. <term>CMDCTL_BAD_PASSWORD bad password for user: %1</term>
  1530. <listitem><para>
  1531. A login attempt was made to b10-cmdctl, but the password was wrong.
  1532. Users can be managed with the tool b10-cmdctl-usermgr.
  1533. </para></listitem>
  1534. </varlistentry>
  1535. <varlistentry id="CMDCTL_CC_SESSION_ERROR">
  1536. <term>CMDCTL_CC_SESSION_ERROR error reading from cc channel: %1</term>
  1537. <listitem><para>
  1538. There was a problem reading from the command and control channel. The
  1539. most likely cause is that the message bus daemon is not running.
  1540. </para></listitem>
  1541. </varlistentry>
  1542. <varlistentry id="CMDCTL_CC_SESSION_TIMEOUT">
  1543. <term>CMDCTL_CC_SESSION_TIMEOUT timeout on cc channel</term>
  1544. <listitem><para>
  1545. A timeout occurred when waiting for essential data from the cc session.
  1546. This usually occurs when b10-cfgmgr is not running or not responding.
  1547. Since we are waiting for essential information, this is a fatal error,
  1548. and the cmdctl daemon will now shut down.
  1549. </para></listitem>
  1550. </varlistentry>
  1551. <varlistentry id="CMDCTL_COMMAND_ERROR">
  1552. <term>CMDCTL_COMMAND_ERROR error in command %1 to module %2: %3</term>
  1553. <listitem><para>
  1554. An error was encountered sending the given command to the given module.
  1555. Either there was a communication problem with the module, or the module
  1556. was not able to process the command, and sent back an error. The
  1557. specific error is printed in the message.
  1558. </para></listitem>
  1559. </varlistentry>
  1560. <varlistentry id="CMDCTL_COMMAND_SENT">
  1561. <term>CMDCTL_COMMAND_SENT command '%1' to module '%2' was sent</term>
  1562. <listitem><para>
  1563. This debug message indicates that the given command has been sent to
  1564. the given module.
  1565. </para></listitem>
  1566. </varlistentry>
  1567. <varlistentry id="CMDCTL_NO_SUCH_USER">
  1568. <term>CMDCTL_NO_SUCH_USER username not found in user database: %1</term>
  1569. <listitem><para>
  1570. A login attempt was made to b10-cmdctl, but the username was not known.
  1571. Users can be added with the tool b10-cmdctl-usermgr.
  1572. </para></listitem>
  1573. </varlistentry>
  1574. <varlistentry id="CMDCTL_NO_USER_ENTRIES_READ">
  1575. <term>CMDCTL_NO_USER_ENTRIES_READ failed to read user information, all users will be denied</term>
  1576. <listitem><para>
  1577. The b10-cmdctl daemon was unable to find any user data in the user
  1578. database file. Either it was unable to read the file (in which case
  1579. this message follows a message CMDCTL_USER_DATABASE_READ_ERROR
  1580. containing a specific error), or the file was empty. Users can be added
  1581. with the tool b10-cmdctl-usermgr.
  1582. </para></listitem>
  1583. </varlistentry>
  1584. <varlistentry id="CMDCTL_SEND_COMMAND">
  1585. <term>CMDCTL_SEND_COMMAND sending command %1 to module %2</term>
  1586. <listitem><para>
  1587. This debug message indicates that the given command is being sent to
  1588. the given module.
  1589. </para></listitem>
  1590. </varlistentry>
  1591. <varlistentry id="CMDCTL_SSL_SETUP_FAILURE_USER_DENIED">
  1592. <term>CMDCTL_SSL_SETUP_FAILURE_USER_DENIED failed to create an SSL connection (user denied): %1</term>
  1593. <listitem><para>
  1594. The user was denied because the SSL connection could not successfully
  1595. be set up. The specific error is given in the log message. Possible
  1596. causes may be that the ssl request itself was bad, or the local key or
  1597. certificate file could not be read.
  1598. </para></listitem>
  1599. </varlistentry>
  1600. <varlistentry id="CMDCTL_STARTED">
  1601. <term>CMDCTL_STARTED cmdctl is listening for connections on %1:%2</term>
  1602. <listitem><para>
  1603. The cmdctl daemon has started and is now listening for connections.
  1604. </para></listitem>
  1605. </varlistentry>
  1606. <varlistentry id="CMDCTL_STOPPED_BY_KEYBOARD">
  1607. <term>CMDCTL_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  1608. <listitem><para>
  1609. There was a keyboard interrupt signal to stop the cmdctl daemon. The
  1610. daemon will now shut down.
  1611. </para></listitem>
  1612. </varlistentry>
  1613. <varlistentry id="CMDCTL_UNCAUGHT_EXCEPTION">
  1614. <term>CMDCTL_UNCAUGHT_EXCEPTION uncaught exception: %1</term>
  1615. <listitem><para>
  1616. The b10-cmdctl daemon encountered an uncaught exception and
  1617. will now shut down. This is indicative of a programming error and
  1618. should not happen under normal circumstances. The exception message
  1619. is printed.
  1620. </para></listitem>
  1621. </varlistentry>
  1622. <varlistentry id="CMDCTL_USER_DATABASE_READ_ERROR">
  1623. <term>CMDCTL_USER_DATABASE_READ_ERROR failed to read user database file %1: %2</term>
  1624. <listitem><para>
  1625. The b10-cmdctl daemon was unable to read the user database file. The
  1626. file may be unreadable for the daemon, or it may be corrupted. In the
  1627. latter case, it can be recreated with b10-cmdctl-usermgr. The specific
  1628. error is printed in the log message.
  1629. </para></listitem>
  1630. </varlistentry>
  1631. <varlistentry id="CONFIG_CCSESSION_MSG">
  1632. <term>CONFIG_CCSESSION_MSG error in CC session message: %1</term>
  1633. <listitem><para>
  1634. There was a problem with an incoming message on the command and control
  1635. channel. The message does not appear to be a valid command, and is
  1636. missing a required element or contains an unknown data format. This
  1637. most likely means that another BIND10 module is sending a bad message.
  1638. The message itself is ignored by this module.
  1639. </para></listitem>
  1640. </varlistentry>
  1641. <varlistentry id="CONFIG_CCSESSION_MSG_INTERNAL">
  1642. <term>CONFIG_CCSESSION_MSG_INTERNAL error handling CC session message: %1</term>
  1643. <listitem><para>
  1644. There was an internal problem handling an incoming message on the command
  1645. and control channel. An unexpected exception was thrown, details of
  1646. which are appended to the message. The module will continue to run,
  1647. but will not send back an answer.
  1648. </para><para>
  1649. The most likely cause of this error is a programming error. Please raise
  1650. a bug report.
  1651. </para></listitem>
  1652. </varlistentry>
  1653. <varlistentry id="CONFIG_CCSESSION_STOPPING">
  1654. <term>CONFIG_CCSESSION_STOPPING error sending stopping message: %1</term>
  1655. <listitem><para>
  1656. There was a problem when sending a message signaling that the module using
  1657. this CCSession is stopping. This message is sent so that the rest of the
  1658. system is aware that the module is no longer running. Apart from logging
  1659. this message, the error itself is ignored, and the ModuleCCSession is
  1660. still stopped. The specific exception message is printed.
  1661. </para></listitem>
  1662. </varlistentry>
  1663. <varlistentry id="CONFIG_CCSESSION_STOPPING_UNKNOWN">
  1664. <term>CONFIG_CCSESSION_STOPPING_UNKNOWN unknown error sending stopping message</term>
  1665. <listitem><para>
  1666. Similar to CONFIG_CCSESSION_STOPPING, but in this case the exception that
  1667. is seen is not a standard exception, and further information is unknown.
  1668. This is a bug.
  1669. </para></listitem>
  1670. </varlistentry>
  1671. <varlistentry id="CONFIG_GET_FAIL">
  1672. <term>CONFIG_GET_FAIL error getting configuration from cfgmgr: %1</term>
  1673. <listitem><para>
  1674. The configuration manager returned an error when this module requested
  1675. the configuration. The full error message answer from the configuration
  1676. manager is appended to the log error. The most likely cause is that
  1677. the module is of a different (command specification) version than the
  1678. running configuration manager.
  1679. </para></listitem>
  1680. </varlistentry>
  1681. <varlistentry id="CONFIG_GET_FAILED">
  1682. <term>CONFIG_GET_FAILED error getting configuration from cfgmgr: %1</term>
  1683. <listitem><para>
  1684. The configuration manager returned an error response when the module
  1685. requested its configuration. The full error message answer from the
  1686. configuration manager is appended to the log error.
  1687. </para></listitem>
  1688. </varlistentry>
  1689. <varlistentry id="CONFIG_JSON_PARSE">
  1690. <term>CONFIG_JSON_PARSE JSON parse error in %1: %2</term>
  1691. <listitem><para>
  1692. There was an error parsing the JSON file. The given file does not appear
  1693. to be in valid JSON format. Please verify that the filename is correct
  1694. and that the contents are valid JSON.
  1695. </para></listitem>
  1696. </varlistentry>
  1697. <varlistentry id="CONFIG_LOG_CONFIG_ERRORS">
  1698. <term>CONFIG_LOG_CONFIG_ERRORS error(s) in logging configuration: %1</term>
  1699. <listitem><para>
  1700. There was a logging configuration update, but the internal validator
  1701. for logging configuration found that it contained errors. The errors
  1702. are shown, and the update is ignored.
  1703. </para></listitem>
  1704. </varlistentry>
  1705. <varlistentry id="CONFIG_LOG_EXPLICIT">
  1706. <term>CONFIG_LOG_EXPLICIT will use logging configuration for explicitly-named logger %1</term>
  1707. <listitem><para>
  1708. This is a debug message. When processing the "loggers" part of the
  1709. configuration file, the configuration library found an entry for the named
  1710. logger that matches the logger specification for the program. The logging
  1711. configuration for the program will be updated with the information.
  1712. </para></listitem>
  1713. </varlistentry>
  1714. <varlistentry id="CONFIG_LOG_IGNORE_EXPLICIT">
  1715. <term>CONFIG_LOG_IGNORE_EXPLICIT ignoring logging configuration for explicitly-named logger %1</term>
  1716. <listitem><para>
  1717. This is a debug message. When processing the "loggers" part of the
  1718. configuration file, the configuration library found an entry for the
  1719. named logger. As this does not match the logger specification for the
  1720. program, it has been ignored.
  1721. </para></listitem>
  1722. </varlistentry>
  1723. <varlistentry id="CONFIG_LOG_IGNORE_WILD">
  1724. <term>CONFIG_LOG_IGNORE_WILD ignoring logging configuration for wildcard logger %1</term>
  1725. <listitem><para>
  1726. This is a debug message. When processing the "loggers" part of the
  1727. configuration file, the configuration library found the named wildcard
  1728. entry (one containing the "*" character) that matched a logger already
  1729. matched by an explicitly named entry. The configuration is ignored.
  1730. </para></listitem>
  1731. </varlistentry>
  1732. <varlistentry id="CONFIG_LOG_WILD_MATCH">
  1733. <term>CONFIG_LOG_WILD_MATCH will use logging configuration for wildcard logger %1</term>
  1734. <listitem><para>
  1735. This is a debug message. When processing the "loggers" part of
  1736. the configuration file, the configuration library found the named
  1737. wildcard entry (one containing the "*" character) that matches a logger
  1738. specification in the program. The logging configuration for the program
  1739. will be updated with the information.
  1740. </para></listitem>
  1741. </varlistentry>
  1742. <varlistentry id="CONFIG_MOD_SPEC_FORMAT">
  1743. <term>CONFIG_MOD_SPEC_FORMAT module specification error in %1: %2</term>
  1744. <listitem><para>
  1745. The given file does not appear to be a valid specification file: details
  1746. are included in the message. Please verify that the filename is correct
  1747. and that its contents are a valid BIND10 module specification.
  1748. </para></listitem>
  1749. </varlistentry>
  1750. <varlistentry id="CONFIG_MOD_SPEC_REJECT">
  1751. <term>CONFIG_MOD_SPEC_REJECT module specification rejected by cfgmgr: %1</term>
  1752. <listitem><para>
  1753. The specification file for this module was rejected by the configuration
  1754. manager. The full error message answer from the configuration manager is
  1755. appended to the log error. The most likely cause is that the module is of
  1756. a different (specification file) version than the running configuration
  1757. manager.
  1758. </para></listitem>
  1759. </varlistentry>
  1760. <varlistentry id="CONFIG_OPEN_FAIL">
  1761. <term>CONFIG_OPEN_FAIL error opening %1: %2</term>
  1762. <listitem><para>
  1763. There was an error opening the given file. The reason for the failure
  1764. is included in the message.
  1765. </para></listitem>
  1766. </varlistentry>
  1767. <varlistentry id="CONFIG_SESSION_STOPPING_FAILED">
  1768. <term>CONFIG_SESSION_STOPPING_FAILED error sending stopping message: %1</term>
  1769. <listitem><para>
  1770. There was a problem when sending a message signaling that the module using
  1771. this CCSession is stopping. This message is sent so that the rest of the
  1772. system is aware that the module is no longer running. Apart from logging
  1773. this message, the error itself is ignored, and the ModuleCCSession is
  1774. still stopped. The specific exception message is printed.
  1775. </para></listitem>
  1776. </varlistentry>
  1777. <varlistentry id="DATASRC_BAD_NSEC3_NAME">
  1778. <term>DATASRC_BAD_NSEC3_NAME NSEC3 record has a bad owner name '%1'</term>
  1779. <listitem><para>
  1780. The software refuses to load NSEC3 records into a wildcard domain or
  1781. the owner name has two or more labels below the zone origin.
  1782. It isn't explicitly forbidden, but no sane zone wouldn have such names
  1783. for NSEC3. BIND 9 also refuses NSEC3 at wildcard, so this behavior is
  1784. compatible with BIND 9.
  1785. </para></listitem>
  1786. </varlistentry>
  1787. <varlistentry id="DATASRC_CACHE_CREATE">
  1788. <term>DATASRC_CACHE_CREATE creating the hotspot cache</term>
  1789. <listitem><para>
  1790. This is a debug message issued during startup when the hotspot cache
  1791. is created.
  1792. </para></listitem>
  1793. </varlistentry>
  1794. <varlistentry id="DATASRC_CACHE_DESTROY">
  1795. <term>DATASRC_CACHE_DESTROY destroying the hotspot cache</term>
  1796. <listitem><para>
  1797. Debug information. The hotspot cache is being destroyed.
  1798. </para></listitem>
  1799. </varlistentry>
  1800. <varlistentry id="DATASRC_CACHE_DISABLE">
  1801. <term>DATASRC_CACHE_DISABLE disabling the hotspot cache</term>
  1802. <listitem><para>
  1803. A debug message issued when the hotspot cache is disabled.
  1804. </para></listitem>
  1805. </varlistentry>
  1806. <varlistentry id="DATASRC_CACHE_ENABLE">
  1807. <term>DATASRC_CACHE_ENABLE enabling the hotspot cache</term>
  1808. <listitem><para>
  1809. A debug message issued when the hotspot cache is enabled.
  1810. </para></listitem>
  1811. </varlistentry>
  1812. <varlistentry id="DATASRC_CACHE_EXPIRED">
  1813. <term>DATASRC_CACHE_EXPIRED item '%1' in the hotspot cache has expired</term>
  1814. <listitem><para>
  1815. A debug message issued when a hotspot cache lookup located the item but it
  1816. had expired. The item was removed and the program proceeded as if the item
  1817. had not been found.
  1818. </para></listitem>
  1819. </varlistentry>
  1820. <varlistentry id="DATASRC_CACHE_FOUND">
  1821. <term>DATASRC_CACHE_FOUND the item '%1' was found</term>
  1822. <listitem><para>
  1823. Debug information. An item was successfully located in the hotspot cache.
  1824. </para></listitem>
  1825. </varlistentry>
  1826. <varlistentry id="DATASRC_CACHE_FULL">
  1827. <term>DATASRC_CACHE_FULL hotspot cache is full, dropping oldest</term>
  1828. <listitem><para>
  1829. Debug information. After inserting an item into the hotspot cache, the
  1830. maximum number of items was exceeded, so the least recently used item will
  1831. be dropped. This should be directly followed by CACHE_REMOVE.
  1832. </para></listitem>
  1833. </varlistentry>
  1834. <varlistentry id="DATASRC_CACHE_INSERT">
  1835. <term>DATASRC_CACHE_INSERT inserting item '%1' into the hotspot cache</term>
  1836. <listitem><para>
  1837. A debug message indicating that a new item is being inserted into the hotspot
  1838. cache.
  1839. </para></listitem>
  1840. </varlistentry>
  1841. <varlistentry id="DATASRC_CACHE_NOT_FOUND">
  1842. <term>DATASRC_CACHE_NOT_FOUND the item '%1' was not found in the hotspot cache</term>
  1843. <listitem><para>
  1844. A debug message issued when hotspot cache was searched for the specified
  1845. item but it was not found.
  1846. </para></listitem>
  1847. </varlistentry>
  1848. <varlistentry id="DATASRC_CACHE_OLD_FOUND">
  1849. <term>DATASRC_CACHE_OLD_FOUND older instance of hotspot cache item '%1' found, replacing</term>
  1850. <listitem><para>
  1851. Debug information. While inserting an item into the hotspot cache, an older
  1852. instance of an item with the same name was found; the old instance will be
  1853. removed. This will be directly followed by CACHE_REMOVE.
  1854. </para></listitem>
  1855. </varlistentry>
  1856. <varlistentry id="DATASRC_CACHE_REMOVE">
  1857. <term>DATASRC_CACHE_REMOVE removing '%1' from the hotspot cache</term>
  1858. <listitem><para>
  1859. Debug information. An item is being removed from the hotspot cache.
  1860. </para></listitem>
  1861. </varlistentry>
  1862. <varlistentry id="DATASRC_CACHE_SLOTS">
  1863. <term>DATASRC_CACHE_SLOTS setting the hotspot cache size to '%1', dropping '%2' items</term>
  1864. <listitem><para>
  1865. The maximum allowed number of items of the hotspot cache is set to the given
  1866. number. If there are too many, some of them will be dropped. The size of 0
  1867. means no limit.
  1868. </para></listitem>
  1869. </varlistentry>
  1870. <varlistentry id="DATASRC_DATABASE_COVER_NSEC_UNSUPPORTED">
  1871. <term>DATASRC_DATABASE_COVER_NSEC_UNSUPPORTED %1 doesn't support DNSSEC when asked for NSEC data covering %2</term>
  1872. <listitem><para>
  1873. The datasource tried to provide an NSEC proof that the named domain does not
  1874. exist, but the database backend doesn't support DNSSEC. No proof is included
  1875. in the answer as a result.
  1876. </para></listitem>
  1877. </varlistentry>
  1878. <varlistentry id="DATASRC_DATABASE_FINDNSEC3">
  1879. <term>DATASRC_DATABASE_FINDNSEC3 Looking for NSEC3 for %1 in %2 mode</term>
  1880. <listitem><para>
  1881. Debug information. A search in an database data source for NSEC3 that
  1882. matches or covers the given name is being started.
  1883. </para></listitem>
  1884. </varlistentry>
  1885. <varlistentry id="DATASRC_DATABASE_FINDNSEC3_COVER">
  1886. <term>DATASRC_DATABASE_FINDNSEC3_COVER found a covering NSEC3 for %1 at label count %2: %3</term>
  1887. <listitem><para>
  1888. Debug information. An NSEC3 that covers the given name is found and
  1889. being returned. The found NSEC3 RRset is also displayed. When the shown label
  1890. count is smaller than that of the given name, the matching NSEC3 is for a
  1891. superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH). The
  1892. found NSEC3 RRset is also displayed.
  1893. </para></listitem>
  1894. </varlistentry>
  1895. <varlistentry id="DATASRC_DATABASE_FINDNSEC3_MATCH">
  1896. <term>DATASRC_DATABASE_FINDNSEC3_MATCH found a matching NSEC3 for %1 at label count %2: %3</term>
  1897. <listitem><para>
  1898. Debug information. An NSEC3 that matches (a possibly superdomain of)
  1899. the given name is found and being returned. When the shown label
  1900. count is smaller than that of the given name, the matching NSEC3 is
  1901. for a superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH).
  1902. The found NSEC3 RRset is also displayed.
  1903. </para></listitem>
  1904. </varlistentry>
  1905. <varlistentry id="DATASRC_DATABASE_FINDNSEC3_TRYHASH">
  1906. <term>DATASRC_DATABASE_FINDNSEC3_TRYHASH looking for NSEC3 for %1 at label count %2 (hash %3)</term>
  1907. <listitem><para>
  1908. Debug information. In an attempt of finding an NSEC3 for the give name,
  1909. (a possibly superdomain of) the name is hashed and searched for in the
  1910. NSEC3 name space. When the shown label count is smaller than that of the
  1911. shown name, the search tries the superdomain name that share the shown
  1912. (higher) label count of the shown name (e.g., for
  1913. www.example.com. with shown label count of 3, example.com. is being
  1914. tried, as "." is 1 label long).
  1915. </para></listitem>
  1916. </varlistentry>
  1917. <varlistentry id="DATASRC_DATABASE_FINDNSEC3_TRYHASH_PREV">
  1918. <term>DATASRC_DATABASE_FINDNSEC3_TRYHASH_PREV looking for previous NSEC3 for %1 at label count %2 (hash %3)</term>
  1919. <listitem><para>
  1920. Debug information. An exact match on hash (see
  1921. DATASRC_DATABASE_FINDNSEC3_TRYHASH) was unsuccessful. We get the previous hash
  1922. to that one instead.
  1923. </para></listitem>
  1924. </varlistentry>
  1925. <varlistentry id="DATASRC_DATABASE_FIND_RECORDS">
  1926. <term>DATASRC_DATABASE_FIND_RECORDS looking in datasource %1 for record %2/%3/%4</term>
  1927. <listitem><para>
  1928. Debug information. The database data source is looking up records with the given
  1929. name and type in the database.
  1930. </para></listitem>
  1931. </varlistentry>
  1932. <varlistentry id="DATASRC_DATABASE_FIND_TTL_MISMATCH">
  1933. <term>DATASRC_DATABASE_FIND_TTL_MISMATCH TTL values differ in %1 for elements of %2/%3/%4, setting to %5</term>
  1934. <listitem><para>
  1935. The datasource backend provided resource records for the given RRset with
  1936. different TTL values. This isn't allowed on the wire and is considered
  1937. an error, so we set it to the lowest value we found (but we don't modify the
  1938. database). The data in database should be checked and fixed.
  1939. </para></listitem>
  1940. </varlistentry>
  1941. <varlistentry id="DATASRC_DATABASE_FOUND_ANY">
  1942. <term>DATASRC_DATABASE_FOUND_ANY search in datasource %1 resulted in returning all records of %2</term>
  1943. <listitem><para>
  1944. The data returned by the database backend contained data for the given domain
  1945. name, so all the RRsets of the domain are returned.
  1946. </para></listitem>
  1947. </varlistentry>
  1948. <varlistentry id="DATASRC_DATABASE_FOUND_CNAME">
  1949. <term>DATASRC_DATABASE_FOUND_CNAME search in datasource %1 for %2/%3/%4 found CNAME, resulting in %5</term>
  1950. <listitem><para>
  1951. When searching the domain for a name a CNAME was found at that name.
  1952. Even though it was not the RR type being sought, it is returned. (The
  1953. caller may want to continue the lookup by replacing the query name with
  1954. the canonical name and restarting the query with the original RR type.)
  1955. </para></listitem>
  1956. </varlistentry>
  1957. <varlistentry id="DATASRC_DATABASE_FOUND_DELEGATION">
  1958. <term>DATASRC_DATABASE_FOUND_DELEGATION Found delegation at %2 in %1</term>
  1959. <listitem><para>
  1960. When searching for a domain, the program met a delegation to a different zone
  1961. at the given domain name. It will return that one instead.
  1962. </para></listitem>
  1963. </varlistentry>
  1964. <varlistentry id="DATASRC_DATABASE_FOUND_DELEGATION_EXACT">
  1965. <term>DATASRC_DATABASE_FOUND_DELEGATION_EXACT search in datasource %1 for %2/%3/%4 found delegation at %5</term>
  1966. <listitem><para>
  1967. The program found the domain requested, but it is a delegation point to a
  1968. different zone, therefore it is not authoritative for this domain name.
  1969. It will return the NS record instead.
  1970. </para></listitem>
  1971. </varlistentry>
  1972. <varlistentry id="DATASRC_DATABASE_FOUND_DNAME">
  1973. <term>DATASRC_DATABASE_FOUND_DNAME Found DNAME at %2 in %1</term>
  1974. <listitem><para>
  1975. When searching for a domain, the program met a DNAME redirection to a different
  1976. place in the domain space at the given domain name. It will return that one
  1977. instead.
  1978. </para></listitem>
  1979. </varlistentry>
  1980. <varlistentry id="DATASRC_DATABASE_FOUND_EMPTY_NONTERMINAL">
  1981. <term>DATASRC_DATABASE_FOUND_EMPTY_NONTERMINAL empty non-terminal %2 in %1</term>
  1982. <listitem><para>
  1983. The domain name does not have any RRs associated with it, so it doesn't
  1984. exist in the database. However, it has a subdomain, so it does exist
  1985. in the DNS address space. This type of domain is known an an "empty
  1986. non-terminal" and so we return NXRRSET instead of NXDOMAIN.
  1987. </para></listitem>
  1988. </varlistentry>
  1989. <varlistentry id="DATASRC_DATABASE_FOUND_NXDOMAIN">
  1990. <term>DATASRC_DATABASE_FOUND_NXDOMAIN search in datasource %1 resulted in NXDOMAIN for %2/%3/%4</term>
  1991. <listitem><para>
  1992. The data returned by the database backend did not contain any data for the given
  1993. domain name, class and type.
  1994. </para></listitem>
  1995. </varlistentry>
  1996. <varlistentry id="DATASRC_DATABASE_FOUND_NXRRSET">
  1997. <term>DATASRC_DATABASE_FOUND_NXRRSET search in datasource %1 for %2/%3/%4 resulted in NXRRSET</term>
  1998. <listitem><para>
  1999. The data returned by the database backend contained data for the given domain
  2000. name and class, but not for the given type.
  2001. </para></listitem>
  2002. </varlistentry>
  2003. <varlistentry id="DATASRC_DATABASE_FOUND_NXRRSET_NSEC">
  2004. <term>DATASRC_DATABASE_FOUND_NXRRSET_NSEC search in datasource %1 for %2/%3/%4 resulted in RRset %5</term>
  2005. <listitem><para>
  2006. A search in the database for RRs for the specified name, type and class has
  2007. located RRs that match the name and class but not the type. DNSSEC information
  2008. has been requested and returned.
  2009. </para></listitem>
  2010. </varlistentry>
  2011. <varlistentry id="DATASRC_DATABASE_FOUND_RRSET">
  2012. <term>DATASRC_DATABASE_FOUND_RRSET search in datasource %1 resulted in RRset %2</term>
  2013. <listitem><para>
  2014. The data returned by the database backend contained data for the given domain
  2015. name, and it either matches the type or has a relevant type. The RRset that is
  2016. returned is printed.
  2017. </para></listitem>
  2018. </varlistentry>
  2019. <varlistentry id="DATASRC_DATABASE_ITERATE">
  2020. <term>DATASRC_DATABASE_ITERATE iterating zone %1</term>
  2021. <listitem><para>
  2022. The program is reading the whole zone, eg. not searching for data, but going
  2023. through each of the RRsets there.
  2024. </para></listitem>
  2025. </varlistentry>
  2026. <varlistentry id="DATASRC_DATABASE_ITERATE_END">
  2027. <term>DATASRC_DATABASE_ITERATE_END iterating zone finished</term>
  2028. <listitem><para>
  2029. While iterating through the zone, the program reached end of the data.
  2030. </para></listitem>
  2031. </varlistentry>
  2032. <varlistentry id="DATASRC_DATABASE_ITERATE_NEXT">
  2033. <term>DATASRC_DATABASE_ITERATE_NEXT next RRset in zone is %1/%2</term>
  2034. <listitem><para>
  2035. While iterating through the zone, the program extracted next RRset from it.
  2036. The name and RRtype of the RRset is indicated in the message.
  2037. </para></listitem>
  2038. </varlistentry>
  2039. <varlistentry id="DATASRC_DATABASE_ITERATE_TTL_MISMATCH">
  2040. <term>DATASRC_DATABASE_ITERATE_TTL_MISMATCH TTL values differ for RRs of %1/%2/%3, setting to %4</term>
  2041. <listitem><para>
  2042. While iterating through the zone, the time to live for RRs of the
  2043. given RRset were found to be different. Since an RRset cannot have
  2044. multiple TTLs, we set it to the lowest value we found (but we don't
  2045. modify the database). This is what the client would do when such RRs
  2046. were given in a DNS response according to RFC2181. The data in
  2047. database should be checked and fixed.
  2048. </para></listitem>
  2049. </varlistentry>
  2050. <varlistentry id="DATASRC_DATABASE_JOURNALREADER_END">
  2051. <term>DATASRC_DATABASE_JOURNALREADER_END %1/%2 on %3 from %4 to %5</term>
  2052. <listitem><para>
  2053. This is a debug message indicating that the program (successfully)
  2054. reaches the end of sequences of a zone's differences. The zone's name
  2055. and class, database name, and the start and end serials are shown in
  2056. the message.
  2057. </para></listitem>
  2058. </varlistentry>
  2059. <varlistentry id="DATASRC_DATABASE_JOURNALREADER_NEXT">
  2060. <term>DATASRC_DATABASE_JOURNALREADER_NEXT %1/%2 in %3/%4 on %5</term>
  2061. <listitem><para>
  2062. This is a debug message indicating that the program retrieves one
  2063. difference in difference sequences of a zone and successfully converts
  2064. it to an RRset. The zone's name and class, database name, and the
  2065. name and RR type of the retrieved diff are shown in the message.
  2066. </para></listitem>
  2067. </varlistentry>
  2068. <varlistentry id="DATASRC_DATABASE_JOURNALREADER_START">
  2069. <term>DATASRC_DATABASE_JOURNALREADER_START %1/%2 on %3 from %4 to %5</term>
  2070. <listitem><para>
  2071. This is a debug message indicating that the program starts reading
  2072. a zone's difference sequences from a database-based data source. The
  2073. zone's name and class, database name, and the start and end serials
  2074. are shown in the message.
  2075. </para></listitem>
  2076. </varlistentry>
  2077. <varlistentry id="DATASRC_DATABASE_JOURNALREADR_BADDATA">
  2078. <term>DATASRC_DATABASE_JOURNALREADR_BADDATA failed to convert a diff to RRset in %1/%2 on %3 between %4 and %5: %6</term>
  2079. <listitem><para>
  2080. This is an error message indicating that a zone's diff is broken and
  2081. the data source library failed to convert it to a valid RRset. The
  2082. most likely cause of this is that someone has manually modified the
  2083. zone's diff in the database and inserted invalid data as a result.
  2084. The zone's name and class, database name, and the start and end
  2085. serials, and an additional detail of the error are shown in the
  2086. message. The administrator should examine the diff in the database
  2087. to find any invalid data and fix it.
  2088. </para></listitem>
  2089. </varlistentry>
  2090. <varlistentry id="DATASRC_DATABASE_NO_MATCH">
  2091. <term>DATASRC_DATABASE_NO_MATCH not match for %2/%3/%4 in %1</term>
  2092. <listitem><para>
  2093. No match (not even a wildcard) was found in the named data source for the given
  2094. name/type/class in the data source.
  2095. </para></listitem>
  2096. </varlistentry>
  2097. <varlistentry id="DATASRC_DATABASE_UPDATER_COMMIT">
  2098. <term>DATASRC_DATABASE_UPDATER_COMMIT updates committed for '%1/%2' on %3</term>
  2099. <listitem><para>
  2100. Debug information. A set of updates to a zone has been successfully
  2101. committed to the corresponding database backend. The zone name,
  2102. its class and the database name are printed.
  2103. </para></listitem>
  2104. </varlistentry>
  2105. <varlistentry id="DATASRC_DATABASE_UPDATER_CREATED">
  2106. <term>DATASRC_DATABASE_UPDATER_CREATED zone updater created for '%1/%2' on %3</term>
  2107. <listitem><para>
  2108. Debug information. A zone updater object is created to make updates to
  2109. the shown zone on the shown backend database.
  2110. </para></listitem>
  2111. </varlistentry>
  2112. <varlistentry id="DATASRC_DATABASE_UPDATER_DESTROYED">
  2113. <term>DATASRC_DATABASE_UPDATER_DESTROYED zone updater destroyed for '%1/%2' on %3</term>
  2114. <listitem><para>
  2115. Debug information. A zone updater object is destroyed, either successfully
  2116. or after failure of, making updates to the shown zone on the shown backend
  2117. database.
  2118. </para></listitem>
  2119. </varlistentry>
  2120. <varlistentry id="DATASRC_DATABASE_UPDATER_ROLLBACK">
  2121. <term>DATASRC_DATABASE_UPDATER_ROLLBACK zone updates roll-backed for '%1/%2' on %3</term>
  2122. <listitem><para>
  2123. A zone updater is being destroyed without committing the changes.
  2124. This would typically mean the update attempt was aborted due to some
  2125. error, but may also be a bug of the application that forgets committing
  2126. the changes. The intermediate changes made through the updater won't
  2127. be applied to the underlying database. The zone name, its class, and
  2128. the underlying database name are shown in the log message.
  2129. </para></listitem>
  2130. </varlistentry>
  2131. <varlistentry id="DATASRC_DATABASE_UPDATER_ROLLBACKFAIL">
  2132. <term>DATASRC_DATABASE_UPDATER_ROLLBACKFAIL failed to roll back zone updates for '%1/%2' on %3: %4</term>
  2133. <listitem><para>
  2134. A zone updater is being destroyed without committing the changes to
  2135. the database, and attempts to rollback incomplete updates, but it
  2136. unexpectedly fails. The higher level implementation does not expect
  2137. it to fail, so this means either a serious operational error in the
  2138. underlying data source (such as a system failure of a database) or
  2139. software bug in the underlying data source implementation. In either
  2140. case if this message is logged the administrator should carefully
  2141. examine the underlying data source to see what exactly happens and
  2142. whether the data is still valid. The zone name, its class, and the
  2143. underlying database name as well as the error message thrown from the
  2144. database module are shown in the log message.
  2145. </para></listitem>
  2146. </varlistentry>
  2147. <varlistentry id="DATASRC_DATABASE_WILDCARD_ANY">
  2148. <term>DATASRC_DATABASE_WILDCARD_ANY search in datasource %1 resulted in wildcard match type ANY on %2</term>
  2149. <listitem><para>
  2150. The database doesn't contain directly matching name. When searching
  2151. for a wildcard match, a wildcard record matching the name of the query
  2152. containing some RRsets was found. All the RRsets of the node are returned.
  2153. </para></listitem>
  2154. </varlistentry>
  2155. <varlistentry id="DATASRC_DATABASE_WILDCARD_CANCEL_NS">
  2156. <term>DATASRC_DATABASE_WILDCARD_CANCEL_NS canceled wildcard match on %3 because %2 contains NS (data source %1)</term>
  2157. <listitem><para>
  2158. The database was queried to provide glue data and it didn't find direct match.
  2159. It could create it from given wildcard, but matching wildcards is forbidden
  2160. under a zone cut, which was found. Therefore the delegation will be returned
  2161. instead.
  2162. </para></listitem>
  2163. </varlistentry>
  2164. <varlistentry id="DATASRC_DATABASE_WILDCARD_CANCEL_SUB">
  2165. <term>DATASRC_DATABASE_WILDCARD_CANCEL_SUB wildcard %2 can't be used to construct %3 because %4 exists in %1</term>
  2166. <listitem><para>
  2167. The answer could be constructed using the wildcard, but the given subdomain
  2168. exists, therefore this name is something like empty non-terminal (actually,
  2169. from the protocol point of view, it is empty non-terminal, but the code
  2170. discovers it differently).
  2171. </para></listitem>
  2172. </varlistentry>
  2173. <varlistentry id="DATASRC_DATABASE_WILDCARD_CNAME">
  2174. <term>DATASRC_DATABASE_WILDCARD_CNAME search in datasource %1 for %2/%3/%4 found wildcard CNAME at %5, resulting in %6</term>
  2175. <listitem><para>
  2176. The database doesn't contain directly matching name. When searching
  2177. for a wildcard match, a CNAME RR was found at a wildcard record
  2178. matching the name. This is returned as the result of the search.
  2179. </para></listitem>
  2180. </varlistentry>
  2181. <varlistentry id="DATASRC_DATABASE_WILDCARD_EMPTY">
  2182. <term>DATASRC_DATABASE_WILDCARD_EMPTY found subdomains of %2 which is a wildcard match for %3 in %1</term>
  2183. <listitem><para>
  2184. The given wildcard matches the name being sough but it as an empty
  2185. nonterminal (e.g. there's nothing at *.example.com but something like
  2186. subdomain.*.example.org, do exist: so *.example.org exists in the
  2187. namespace but has no RRs assopciated with it). This will produce NXRRSET.
  2188. </para></listitem>
  2189. </varlistentry>
  2190. <varlistentry id="DATASRC_DATABASE_WILDCARD_MATCH">
  2191. <term>DATASRC_DATABASE_WILDCARD_MATCH search in datasource %1 resulted in wildcard match at %2 with RRset %3</term>
  2192. <listitem><para>
  2193. The database doesn't contain directly matching name. When searching
  2194. for a wildcard match, a wildcard record matching the name and type of
  2195. the query was found. The data at this point is returned.
  2196. </para></listitem>
  2197. </varlistentry>
  2198. <varlistentry id="DATASRC_DATABASE_WILDCARD_NS">
  2199. <term>DATASRC_DATABASE_WILDCARD_NS search in datasource %1 for %2/%3/%4 found wildcard delegation at %5, resulting in %6</term>
  2200. <listitem><para>
  2201. The database doesn't contain directly matching name. When searching
  2202. for a wildcard match, an NS RR was found at a wildcard record matching
  2203. the name. This is returned as the result of the search.
  2204. </para></listitem>
  2205. </varlistentry>
  2206. <varlistentry id="DATASRC_DATABASE_WILDCARD_NXRRSET">
  2207. <term>DATASRC_DATABASE_WILDCARD_NXRRSET search in datasource %1 for %2/%3/%4 resulted in wildcard NXRRSET at %5</term>
  2208. <listitem><para>
  2209. The database doesn't contain directly matching name. When searching
  2210. for a wildcard match, a matching wildcard entry was found but it did
  2211. not contain RRs the requested type. AN NXRRSET indication is returned.
  2212. </para></listitem>
  2213. </varlistentry>
  2214. <varlistentry id="DATASRC_DO_QUERY">
  2215. <term>DATASRC_DO_QUERY handling query for '%1/%2'</term>
  2216. <listitem><para>
  2217. A debug message indicating that a query for the given name and RR type is being
  2218. processed.
  2219. </para></listitem>
  2220. </varlistentry>
  2221. <varlistentry id="DATASRC_LIST_NOT_CACHED">
  2222. <term>DATASRC_LIST_NOT_CACHED zone %1/%2 not cached, cache disabled globally. Will not be available.</term>
  2223. <listitem><para>
  2224. The process disabled caching of RR data completely. However, the given zone
  2225. is provided as a master file and it can be served from memory cache only.
  2226. Therefore, the zone will not be available for this process. If this is
  2227. a problem, you should move the zone to some database backend (sqlite3, for
  2228. example) and use it from there.
  2229. </para></listitem>
  2230. </varlistentry>
  2231. <varlistentry id="DATASRC_MEM_ADD_RRSET">
  2232. <term>DATASRC_MEM_ADD_RRSET adding RRset '%1/%2' into zone '%3'</term>
  2233. <listitem><para>
  2234. Debug information. An RRset is being added to the in-memory data source.
  2235. </para></listitem>
  2236. </varlistentry>
  2237. <varlistentry id="DATASRC_MEM_ADD_WILDCARD">
  2238. <term>DATASRC_MEM_ADD_WILDCARD adding wildcards for '%1'</term>
  2239. <listitem><para>
  2240. This is a debug message issued during the processing of a wildcard
  2241. name. The internal domain name tree is scanned and some nodes are
  2242. specially marked to allow the wildcard lookup to succeed.
  2243. </para></listitem>
  2244. </varlistentry>
  2245. <varlistentry id="DATASRC_MEM_ADD_ZONE">
  2246. <term>DATASRC_MEM_ADD_ZONE adding zone '%1/%2'</term>
  2247. <listitem><para>
  2248. Debug information. A zone is being added into the in-memory data source.
  2249. </para></listitem>
  2250. </varlistentry>
  2251. <varlistentry id="DATASRC_MEM_ANY_SUCCESS">
  2252. <term>DATASRC_MEM_ANY_SUCCESS ANY query for '%1' successful</term>
  2253. <listitem><para>
  2254. Debug information. The domain was found and an ANY type query is being answered
  2255. by providing everything found inside the domain.
  2256. </para></listitem>
  2257. </varlistentry>
  2258. <varlistentry id="DATASRC_MEM_CNAME">
  2259. <term>DATASRC_MEM_CNAME CNAME at the domain '%1'</term>
  2260. <listitem><para>
  2261. Debug information. The requested domain is an alias to a different domain,
  2262. returning the CNAME instead.
  2263. </para></listitem>
  2264. </varlistentry>
  2265. <varlistentry id="DATASRC_MEM_CNAME_COEXIST">
  2266. <term>DATASRC_MEM_CNAME_COEXIST can't add data to CNAME in domain '%1'</term>
  2267. <listitem><para>
  2268. This is the same problem as in MEM_CNAME_TO_NONEMPTY, but it happened the
  2269. other way around -- adding some other data to CNAME.
  2270. </para></listitem>
  2271. </varlistentry>
  2272. <varlistentry id="DATASRC_MEM_CNAME_TO_NONEMPTY">
  2273. <term>DATASRC_MEM_CNAME_TO_NONEMPTY can't add CNAME to domain with other data in '%1'</term>
  2274. <listitem><para>
  2275. Someone or something tried to add a CNAME into a domain that already contains
  2276. some other data. But the protocol forbids coexistence of CNAME with anything
  2277. (RFC 1034, section 3.6.2). This indicates a problem with provided data.
  2278. </para></listitem>
  2279. </varlistentry>
  2280. <varlistentry id="DATASRC_MEM_CREATE">
  2281. <term>DATASRC_MEM_CREATE creating zone '%1' in '%2' class</term>
  2282. <listitem><para>
  2283. Debug information. A representation of a zone for the in-memory data source is
  2284. being created.
  2285. </para></listitem>
  2286. </varlistentry>
  2287. <varlistentry id="DATASRC_MEM_DELEG_FOUND">
  2288. <term>DATASRC_MEM_DELEG_FOUND delegation found at '%1'</term>
  2289. <listitem><para>
  2290. Debug information. A delegation point was found above the requested record.
  2291. </para></listitem>
  2292. </varlistentry>
  2293. <varlistentry id="DATASRC_MEM_DESTROY">
  2294. <term>DATASRC_MEM_DESTROY destroying zone '%1' in '%2' class</term>
  2295. <listitem><para>
  2296. Debug information. A zone from in-memory data source is being destroyed.
  2297. </para></listitem>
  2298. </varlistentry>
  2299. <varlistentry id="DATASRC_MEM_DNAME_ENCOUNTERED">
  2300. <term>DATASRC_MEM_DNAME_ENCOUNTERED encountered a DNAME</term>
  2301. <listitem><para>
  2302. Debug information. While searching for the requested domain, a DNAME was
  2303. encountered on the way. This may lead to redirection to a different domain and
  2304. stop the search.
  2305. </para></listitem>
  2306. </varlistentry>
  2307. <varlistentry id="DATASRC_MEM_DNAME_FOUND">
  2308. <term>DATASRC_MEM_DNAME_FOUND DNAME found at '%1'</term>
  2309. <listitem><para>
  2310. Debug information. A DNAME was found instead of the requested information.
  2311. </para></listitem>
  2312. </varlistentry>
  2313. <varlistentry id="DATASRC_MEM_DNAME_NS">
  2314. <term>DATASRC_MEM_DNAME_NS DNAME and NS can't coexist in non-apex domain '%1'</term>
  2315. <listitem><para>
  2316. A request was made for DNAME and NS records to be put into the same
  2317. domain which is not the apex (the top of the zone). This is forbidden
  2318. by RFC 2672 (section 3) and indicates a problem with provided data.
  2319. </para></listitem>
  2320. </varlistentry>
  2321. <varlistentry id="DATASRC_MEM_DOMAIN_EMPTY">
  2322. <term>DATASRC_MEM_DOMAIN_EMPTY requested domain '%1' is empty</term>
  2323. <listitem><para>
  2324. Debug information. The requested domain exists in the tree of domains, but
  2325. it is empty. Therefore it doesn't contain the requested resource type.
  2326. </para></listitem>
  2327. </varlistentry>
  2328. <varlistentry id="DATASRC_MEM_DUP_RRSET">
  2329. <term>DATASRC_MEM_DUP_RRSET duplicate RRset '%1/%2'</term>
  2330. <listitem><para>
  2331. An RRset is being inserted into in-memory data source for a second time. The
  2332. original version must be removed first. Note that loading master files where an
  2333. RRset is split into multiple locations is not supported yet.
  2334. </para></listitem>
  2335. </varlistentry>
  2336. <varlistentry id="DATASRC_MEM_EXACT_DELEGATION">
  2337. <term>DATASRC_MEM_EXACT_DELEGATION delegation at the exact domain '%1'</term>
  2338. <listitem><para>
  2339. Debug information. There's a NS record at the requested domain. This means
  2340. this zone is not authoritative for the requested domain, but a delegation
  2341. should be followed. The requested domain is an apex of some zone.
  2342. </para></listitem>
  2343. </varlistentry>
  2344. <varlistentry id="DATASRC_MEM_FIND">
  2345. <term>DATASRC_MEM_FIND find '%1/%2'</term>
  2346. <listitem><para>
  2347. Debug information. A search for the requested RRset is being started.
  2348. </para></listitem>
  2349. </varlistentry>
  2350. <varlistentry id="DATASRC_MEM_FINDNSEC3">
  2351. <term>DATASRC_MEM_FINDNSEC3 finding NSEC3 for %1, mode %2</term>
  2352. <listitem><para>
  2353. Debug information. A search in an in-memory data source for NSEC3 that
  2354. matches or covers the given name is being started.
  2355. </para></listitem>
  2356. </varlistentry>
  2357. <varlistentry id="DATASRC_MEM_FINDNSEC3_COVER">
  2358. <term>DATASRC_MEM_FINDNSEC3_COVER found a covering NSEC3 for %1: %2</term>
  2359. <listitem><para>
  2360. Debug information. An NSEC3 that covers the given name is found and
  2361. being returned. The found NSEC3 RRset is also displayed.
  2362. </para></listitem>
  2363. </varlistentry>
  2364. <varlistentry id="DATASRC_MEM_FINDNSEC3_MATCH">
  2365. <term>DATASRC_MEM_FINDNSEC3_MATCH found a matching NSEC3 for %1 at label count %2: %3</term>
  2366. <listitem><para>
  2367. Debug information. An NSEC3 that matches (a possibly superdomain of)
  2368. the given name is found and being returned. When the shown label
  2369. count is smaller than that of the given name, the matching NSEC3 is
  2370. for a superdomain of the given name (see DATASRC_MEM_FINDNSEC3_TRYHASH).
  2371. The found NSEC3 RRset is also displayed.
  2372. </para></listitem>
  2373. </varlistentry>
  2374. <varlistentry id="DATASRC_MEM_FINDNSEC3_TRYHASH">
  2375. <term>DATASRC_MEM_FINDNSEC3_TRYHASH looking for NSEC3 for %1 at label count %2 (hash %3)</term>
  2376. <listitem><para>
  2377. Debug information. In an attempt of finding an NSEC3 for the give name,
  2378. (a possibly superdomain of) the name is hashed and searched for in the
  2379. NSEC3 name space. When the shown label count is smaller than that of the
  2380. shown name, the search tries the superdomain name that share the shown
  2381. (higher) label count of the shown name (e.g., for
  2382. www.example.com. with shown label count of 3, example.com. is being
  2383. tried).
  2384. </para></listitem>
  2385. </varlistentry>
  2386. <varlistentry id="DATASRC_MEM_FIND_ZONE">
  2387. <term>DATASRC_MEM_FIND_ZONE looking for zone '%1'</term>
  2388. <listitem><para>
  2389. Debug information. A zone object for this zone is being searched for in the
  2390. in-memory data source.
  2391. </para></listitem>
  2392. </varlistentry>
  2393. <varlistentry id="DATASRC_MEM_LOAD">
  2394. <term>DATASRC_MEM_LOAD loading zone '%1' from file '%2'</term>
  2395. <listitem><para>
  2396. Debug information. The content of master file is being loaded into the memory.
  2397. </para></listitem>
  2398. </varlistentry>
  2399. <varlistentry id="DATASRC_MEM_NOT_FOUND">
  2400. <term>DATASRC_MEM_NOT_FOUND requested domain '%1' not found</term>
  2401. <listitem><para>
  2402. Debug information. The requested domain does not exist.
  2403. </para></listitem>
  2404. </varlistentry>
  2405. <varlistentry id="DATASRC_MEM_NO_NSEC3PARAM">
  2406. <term>DATASRC_MEM_NO_NSEC3PARAM NSEC3PARAM is missing for NSEC3-signed zone %1/%2</term>
  2407. <listitem><para>
  2408. The in-memory data source has loaded a zone signed with NSEC3 RRs,
  2409. but it doesn't have a NSEC3PARAM RR at the zone origin. It's likely that
  2410. the zone is somehow broken, but this RR is not necessarily needed for
  2411. handling lookups with NSEC3 in this data source, so it accepts the given
  2412. content of the zone. Nevertheless the administrator should look into
  2413. the integrity of the zone data.
  2414. </para></listitem>
  2415. </varlistentry>
  2416. <varlistentry id="DATASRC_MEM_NS_ENCOUNTERED">
  2417. <term>DATASRC_MEM_NS_ENCOUNTERED encountered a NS</term>
  2418. <listitem><para>
  2419. Debug information. While searching for the requested domain, a NS was
  2420. encountered on the way (a delegation). This may lead to stop of the search.
  2421. </para></listitem>
  2422. </varlistentry>
  2423. <varlistentry id="DATASRC_MEM_NXRRSET">
  2424. <term>DATASRC_MEM_NXRRSET no such type '%1' at '%2'</term>
  2425. <listitem><para>
  2426. Debug information. The domain exists, but it doesn't hold any record of the
  2427. requested type.
  2428. </para></listitem>
  2429. </varlistentry>
  2430. <varlistentry id="DATASRC_MEM_OUT_OF_ZONE">
  2431. <term>DATASRC_MEM_OUT_OF_ZONE domain '%1' doesn't belong to zone '%2'</term>
  2432. <listitem><para>
  2433. It was attempted to add the domain into a zone that shouldn't have it
  2434. (eg. the domain is not subdomain of the zone origin). This indicates a
  2435. problem with provided data.
  2436. </para></listitem>
  2437. </varlistentry>
  2438. <varlistentry id="DATASRC_MEM_RENAME">
  2439. <term>DATASRC_MEM_RENAME renaming RRset from '%1' to '%2'</term>
  2440. <listitem><para>
  2441. Debug information. A RRset is being generated from a different RRset (most
  2442. probably a wildcard). So it must be renamed to whatever the user asked for. In
  2443. fact, it's impossible to rename RRsets with our libraries, so a new one is
  2444. created and all resource records are copied over.
  2445. </para></listitem>
  2446. </varlistentry>
  2447. <varlistentry id="DATASRC_MEM_SINGLETON">
  2448. <term>DATASRC_MEM_SINGLETON trying to add multiple RRs for domain '%1' and type '%2'</term>
  2449. <listitem><para>
  2450. Some resource types are singletons -- only one is allowed in a domain
  2451. (for example CNAME or SOA). This indicates a problem with provided data.
  2452. </para></listitem>
  2453. </varlistentry>
  2454. <varlistentry id="DATASRC_MEM_SUCCESS">
  2455. <term>DATASRC_MEM_SUCCESS query for '%1/%2' successful</term>
  2456. <listitem><para>
  2457. Debug information. The requested record was found.
  2458. </para></listitem>
  2459. </varlistentry>
  2460. <varlistentry id="DATASRC_MEM_SUPER_STOP">
  2461. <term>DATASRC_MEM_SUPER_STOP stopped as '%1' is superdomain of a zone node, meaning it's empty</term>
  2462. <listitem><para>
  2463. Debug information. The search stopped because the requested domain was
  2464. detected to be a superdomain of some existing node of zone (while there
  2465. was no exact match). This means that the domain is an empty nonterminal,
  2466. therefore it is treated as NXRRSET case (eg. the domain exists, but it
  2467. doesn't have the requested record type).
  2468. </para></listitem>
  2469. </varlistentry>
  2470. <varlistentry id="DATASRC_MEM_SWAP">
  2471. <term>DATASRC_MEM_SWAP swapping contents of two zone representations ('%1' and '%2')</term>
  2472. <listitem><para>
  2473. Debug information. The contents of two in-memory zones are being exchanged.
  2474. This is usual practice to do some manipulation in exception-safe manner -- the
  2475. new data are prepared in a different zone object and when it works, they are
  2476. swapped. The old one contains the new data and the other one can be safely
  2477. destroyed.
  2478. </para></listitem>
  2479. </varlistentry>
  2480. <varlistentry id="DATASRC_MEM_WILDCARD_CANCEL">
  2481. <term>DATASRC_MEM_WILDCARD_CANCEL wildcard match canceled for '%1'</term>
  2482. <listitem><para>
  2483. Debug information. A domain above wildcard was reached, but there's something
  2484. below the requested domain. Therefore the wildcard doesn't apply here. This
  2485. behaviour is specified by RFC 1034, section 4.3.3
  2486. </para></listitem>
  2487. </varlistentry>
  2488. <varlistentry id="DATASRC_MEM_WILDCARD_DNAME">
  2489. <term>DATASRC_MEM_WILDCARD_DNAME DNAME record in wildcard domain '%1'</term>
  2490. <listitem><para>
  2491. The software refuses to load DNAME records into a wildcard domain. It isn't
  2492. explicitly forbidden, but the protocol is ambiguous about how this should
  2493. behave and BIND 9 refuses that as well. Please describe your intention using
  2494. different tools.
  2495. </para></listitem>
  2496. </varlistentry>
  2497. <varlistentry id="DATASRC_MEM_WILDCARD_NS">
  2498. <term>DATASRC_MEM_WILDCARD_NS NS record in wildcard domain '%1'</term>
  2499. <listitem><para>
  2500. The software refuses to load NS records into a wildcard domain. It isn't
  2501. explicitly forbidden, but the protocol is ambiguous about how this should
  2502. behave and BIND 9 refuses that as well. Please describe your intention using
  2503. different tools.
  2504. </para></listitem>
  2505. </varlistentry>
  2506. <varlistentry id="DATASRC_META_ADD">
  2507. <term>DATASRC_META_ADD adding a data source into meta data source</term>
  2508. <listitem><para>
  2509. This is a debug message issued during startup or reconfiguration.
  2510. Another data source is being added into the meta data source.
  2511. </para></listitem>
  2512. </varlistentry>
  2513. <varlistentry id="DATASRC_META_ADD_CLASS_MISMATCH">
  2514. <term>DATASRC_META_ADD_CLASS_MISMATCH mismatch between classes '%1' and '%2'</term>
  2515. <listitem><para>
  2516. It was attempted to add a data source into a meta data source, but their
  2517. classes do not match.
  2518. </para></listitem>
  2519. </varlistentry>
  2520. <varlistentry id="DATASRC_META_REMOVE">
  2521. <term>DATASRC_META_REMOVE removing data source from meta data source</term>
  2522. <listitem><para>
  2523. Debug information. A data source is being removed from meta data source.
  2524. </para></listitem>
  2525. </varlistentry>
  2526. <varlistentry id="DATASRC_QUERY_ADD_NSEC">
  2527. <term>DATASRC_QUERY_ADD_NSEC adding NSEC record for '%1'</term>
  2528. <listitem><para>
  2529. Debug information. A NSEC record covering this zone is being added.
  2530. </para></listitem>
  2531. </varlistentry>
  2532. <varlistentry id="DATASRC_QUERY_ADD_NSEC3">
  2533. <term>DATASRC_QUERY_ADD_NSEC3 adding NSEC3 record of zone '%1'</term>
  2534. <listitem><para>
  2535. Debug information. A NSEC3 record for the given zone is being added to the
  2536. response message.
  2537. </para></listitem>
  2538. </varlistentry>
  2539. <varlistentry id="DATASRC_QUERY_ADD_RRSET">
  2540. <term>DATASRC_QUERY_ADD_RRSET adding RRset '%1/%2' to message</term>
  2541. <listitem><para>
  2542. Debug information. An RRset is being added to the response message.
  2543. </para></listitem>
  2544. </varlistentry>
  2545. <varlistentry id="DATASRC_QUERY_ADD_SOA">
  2546. <term>DATASRC_QUERY_ADD_SOA adding SOA of '%1'</term>
  2547. <listitem><para>
  2548. Debug information. A SOA record of the given zone is being added to the
  2549. authority section of the response message.
  2550. </para></listitem>
  2551. </varlistentry>
  2552. <varlistentry id="DATASRC_QUERY_AUTH_FAIL">
  2553. <term>DATASRC_QUERY_AUTH_FAIL the underlying data source failed with %1</term>
  2554. <listitem><para>
  2555. The underlying data source failed to answer the authoritative query. 1 means
  2556. some error, 2 is not implemented. The data source should have logged the
  2557. specific error already.
  2558. </para></listitem>
  2559. </varlistentry>
  2560. <varlistentry id="DATASRC_QUERY_BAD_REFERRAL">
  2561. <term>DATASRC_QUERY_BAD_REFERRAL bad referral to '%1'</term>
  2562. <listitem><para>
  2563. The domain lives in another zone. But it is not possible to generate referral
  2564. information for it.
  2565. </para></listitem>
  2566. </varlistentry>
  2567. <varlistentry id="DATASRC_QUERY_CACHED">
  2568. <term>DATASRC_QUERY_CACHED data for %1/%2 found in hotspot cache</term>
  2569. <listitem><para>
  2570. Debug information. The requested data were found in the hotspot cache, so
  2571. no query is sent to the real data source.
  2572. </para></listitem>
  2573. </varlistentry>
  2574. <varlistentry id="DATASRC_QUERY_CHECK_CACHE">
  2575. <term>DATASRC_QUERY_CHECK_CACHE checking hotspot cache for '%1/%2'</term>
  2576. <listitem><para>
  2577. Debug information. While processing a query, lookup to the hotspot cache
  2578. is being made.
  2579. </para></listitem>
  2580. </varlistentry>
  2581. <varlistentry id="DATASRC_QUERY_COPY_AUTH">
  2582. <term>DATASRC_QUERY_COPY_AUTH copying authoritative section into message</term>
  2583. <listitem><para>
  2584. Debug information. The whole referral information is being copied into the
  2585. response message.
  2586. </para></listitem>
  2587. </varlistentry>
  2588. <varlistentry id="DATASRC_QUERY_DELEGATION">
  2589. <term>DATASRC_QUERY_DELEGATION looking for delegation on the path to '%1'</term>
  2590. <listitem><para>
  2591. Debug information. The software is trying to identify delegation points on the
  2592. way down to the given domain.
  2593. </para></listitem>
  2594. </varlistentry>
  2595. <varlistentry id="DATASRC_QUERY_EMPTY_CNAME">
  2596. <term>DATASRC_QUERY_EMPTY_CNAME CNAME at '%1' is empty</term>
  2597. <listitem><para>
  2598. A CNAME chain was being followed and an entry was found that pointed
  2599. to a domain name that had no RRsets associated with it. As a result,
  2600. the query cannot be answered. This indicates a problem with supplied data.
  2601. </para></listitem>
  2602. </varlistentry>
  2603. <varlistentry id="DATASRC_QUERY_EMPTY_DNAME">
  2604. <term>DATASRC_QUERY_EMPTY_DNAME the DNAME on '%1' is empty</term>
  2605. <listitem><para>
  2606. During an attempt to synthesize CNAME from this DNAME it was discovered the
  2607. DNAME is empty (it has no records). This indicates problem with supplied data.
  2608. </para></listitem>
  2609. </varlistentry>
  2610. <varlistentry id="DATASRC_QUERY_FAIL">
  2611. <term>DATASRC_QUERY_FAIL query failed</term>
  2612. <listitem><para>
  2613. Some subtask of query processing failed. The reason should have been reported
  2614. already and a SERVFAIL will be returned to the querying system.
  2615. </para></listitem>
  2616. </varlistentry>
  2617. <varlistentry id="DATASRC_QUERY_FOLLOW_CNAME">
  2618. <term>DATASRC_QUERY_FOLLOW_CNAME following CNAME at '%1'</term>
  2619. <listitem><para>
  2620. Debug information. The domain is a CNAME (or a DNAME and a CNAME for it
  2621. has already been created) and the search is following this chain.
  2622. </para></listitem>
  2623. </varlistentry>
  2624. <varlistentry id="DATASRC_QUERY_GET_MX_ADDITIONAL">
  2625. <term>DATASRC_QUERY_GET_MX_ADDITIONAL addition of A/AAAA for '%1' requested by MX '%2'</term>
  2626. <listitem><para>
  2627. Debug information. While processing a query, a MX record was met. It
  2628. references the mentioned address, so A/AAAA records for it are looked up
  2629. and put it into the additional section.
  2630. </para></listitem>
  2631. </varlistentry>
  2632. <varlistentry id="DATASRC_QUERY_GET_NS_ADDITIONAL">
  2633. <term>DATASRC_QUERY_GET_NS_ADDITIONAL addition of A/AAAA for '%1' requested by NS '%2'</term>
  2634. <listitem><para>
  2635. Debug information. While processing a query, a NS record was met. It
  2636. references the mentioned address, so A/AAAA records for it are looked up
  2637. and put it into the additional section.
  2638. </para></listitem>
  2639. </varlistentry>
  2640. <varlistentry id="DATASRC_QUERY_GLUE_FAIL">
  2641. <term>DATASRC_QUERY_GLUE_FAIL the underlying data source failed with %1</term>
  2642. <listitem><para>
  2643. The underlying data source failed to answer the glue query. 1 means some error,
  2644. 2 is not implemented. The data source should have logged the specific error
  2645. already.
  2646. </para></listitem>
  2647. </varlistentry>
  2648. <varlistentry id="DATASRC_QUERY_INVALID_OP">
  2649. <term>DATASRC_QUERY_INVALID_OP invalid query operation requested</term>
  2650. <listitem><para>
  2651. This indicates a programmer error. The DO_QUERY was called with unknown
  2652. operation code.
  2653. </para></listitem>
  2654. </varlistentry>
  2655. <varlistentry id="DATASRC_QUERY_IS_AUTH">
  2656. <term>DATASRC_QUERY_IS_AUTH auth query (%1/%2)</term>
  2657. <listitem><para>
  2658. Debug information. The last DO_QUERY is an auth query.
  2659. </para></listitem>
  2660. </varlistentry>
  2661. <varlistentry id="DATASRC_QUERY_IS_GLUE">
  2662. <term>DATASRC_QUERY_IS_GLUE glue query (%1/%2)</term>
  2663. <listitem><para>
  2664. Debug information. The last DO_QUERY is a query for glue addresses.
  2665. </para></listitem>
  2666. </varlistentry>
  2667. <varlistentry id="DATASRC_QUERY_IS_NOGLUE">
  2668. <term>DATASRC_QUERY_IS_NOGLUE query for non-glue addresses (%1/%2)</term>
  2669. <listitem><para>
  2670. Debug information. The last DO_QUERY is a query for addresses that are not
  2671. glue.
  2672. </para></listitem>
  2673. </varlistentry>
  2674. <varlistentry id="DATASRC_QUERY_IS_REF">
  2675. <term>DATASRC_QUERY_IS_REF query for referral (%1/%2)</term>
  2676. <listitem><para>
  2677. Debug information. The last DO_QUERY is a query for referral information.
  2678. </para></listitem>
  2679. </varlistentry>
  2680. <varlistentry id="DATASRC_QUERY_IS_SIMPLE">
  2681. <term>DATASRC_QUERY_IS_SIMPLE simple query (%1/%2)</term>
  2682. <listitem><para>
  2683. Debug information. The last DO_QUERY is a simple query.
  2684. </para></listitem>
  2685. </varlistentry>
  2686. <varlistentry id="DATASRC_QUERY_MISPLACED_TASK">
  2687. <term>DATASRC_QUERY_MISPLACED_TASK task of this type should not be here</term>
  2688. <listitem><para>
  2689. This indicates a programming error. A task was found in the internal task
  2690. queue, but this kind of task wasn't designed to be inside the queue (it should
  2691. be handled right away, not queued).
  2692. </para></listitem>
  2693. </varlistentry>
  2694. <varlistentry id="DATASRC_QUERY_MISSING_NS">
  2695. <term>DATASRC_QUERY_MISSING_NS missing NS records for '%1'</term>
  2696. <listitem><para>
  2697. NS records should have been put into the authority section. However, this zone
  2698. has none. This indicates problem with provided data.
  2699. </para></listitem>
  2700. </varlistentry>
  2701. <varlistentry id="DATASRC_QUERY_MISSING_SOA">
  2702. <term>DATASRC_QUERY_MISSING_SOA the zone '%1' has no SOA</term>
  2703. <listitem><para>
  2704. The answer should have been a negative one (eg. of nonexistence of something).
  2705. To do so, a SOA record should be put into the authority section, but the zone
  2706. does not have one. This indicates problem with provided data.
  2707. </para></listitem>
  2708. </varlistentry>
  2709. <varlistentry id="DATASRC_QUERY_NOGLUE_FAIL">
  2710. <term>DATASRC_QUERY_NOGLUE_FAIL the underlying data source failed with %1</term>
  2711. <listitem><para>
  2712. The underlying data source failed to answer the no-glue query. 1 means some
  2713. error, 2 is not implemented. The data source should have logged the specific
  2714. error already.
  2715. </para></listitem>
  2716. </varlistentry>
  2717. <varlistentry id="DATASRC_QUERY_NO_CACHE_ANY_AUTH">
  2718. <term>DATASRC_QUERY_NO_CACHE_ANY_AUTH ignoring hotspot cache for ANY query (%1/%2 in %3 class)</term>
  2719. <listitem><para>
  2720. Debug information. The hotspot cache is ignored for authoritative ANY queries
  2721. for consistency reasons.
  2722. </para></listitem>
  2723. </varlistentry>
  2724. <varlistentry id="DATASRC_QUERY_NO_CACHE_ANY_SIMPLE">
  2725. <term>DATASRC_QUERY_NO_CACHE_ANY_SIMPLE ignoring hotspot cache for ANY query (%1/%2 in %3 class)</term>
  2726. <listitem><para>
  2727. Debug information. The hotspot cache is ignored for ANY queries for consistency
  2728. reasons.
  2729. </para></listitem>
  2730. </varlistentry>
  2731. <varlistentry id="DATASRC_QUERY_NO_DS_NSEC">
  2732. <term>DATASRC_QUERY_NO_DS_NSEC there's no DS record in the '%1' zone</term>
  2733. <listitem><para>
  2734. An attempt to add a NSEC record into the message failed, because the zone does
  2735. not have any DS record. This indicates problem with the provided data.
  2736. </para></listitem>
  2737. </varlistentry>
  2738. <varlistentry id="DATASRC_QUERY_NO_DS_NSEC3">
  2739. <term>DATASRC_QUERY_NO_DS_NSEC3 there's no DS record in the '%1' zone</term>
  2740. <listitem><para>
  2741. An attempt to add a NSEC3 record into the message failed, because the zone does
  2742. not have any DS record. This indicates problem with the provided data.
  2743. </para></listitem>
  2744. </varlistentry>
  2745. <varlistentry id="DATASRC_QUERY_NO_ZONE">
  2746. <term>DATASRC_QUERY_NO_ZONE no zone containing '%1' in class '%2'</term>
  2747. <listitem><para>
  2748. Debug information. Lookup of domain failed because the datasource
  2749. has no zone that contains the domain. Maybe someone sent a query
  2750. to the wrong server for some reason. This may also happen when
  2751. looking in the datasource for addresses for NS records.
  2752. </para></listitem>
  2753. </varlistentry>
  2754. <varlistentry id="DATASRC_QUERY_PROCESS">
  2755. <term>DATASRC_QUERY_PROCESS processing query '%1/%2' in the '%3' class</term>
  2756. <listitem><para>
  2757. Debug information. A sure query is being processed now.
  2758. </para></listitem>
  2759. </varlistentry>
  2760. <varlistentry id="DATASRC_QUERY_PROVE_NX_FAIL">
  2761. <term>DATASRC_QUERY_PROVE_NX_FAIL unable to prove nonexistence of '%1'</term>
  2762. <listitem><para>
  2763. The user wants DNSSEC and we discovered the entity doesn't exist (either
  2764. domain or the record). But there was an error getting NSEC/NSEC3 record
  2765. to prove the nonexistence.
  2766. </para></listitem>
  2767. </varlistentry>
  2768. <varlistentry id="DATASRC_QUERY_REF_FAIL">
  2769. <term>DATASRC_QUERY_REF_FAIL the underlying data source failed with %1</term>
  2770. <listitem><para>
  2771. The underlying data source failed to answer the query for referral information.
  2772. 1 means some error, 2 is not implemented. The data source should have logged
  2773. the specific error already.
  2774. </para></listitem>
  2775. </varlistentry>
  2776. <varlistentry id="DATASRC_QUERY_RRSIG">
  2777. <term>DATASRC_QUERY_RRSIG unable to answer RRSIG query for %1</term>
  2778. <listitem><para>
  2779. The server is unable to answer a direct query for RRSIG type, but was asked
  2780. to do so.
  2781. </para></listitem>
  2782. </varlistentry>
  2783. <varlistentry id="DATASRC_QUERY_SIMPLE_FAIL">
  2784. <term>DATASRC_QUERY_SIMPLE_FAIL the underlying data source failed with %1</term>
  2785. <listitem><para>
  2786. The underlying data source failed to answer the simple query. 1 means some
  2787. error, 2 is not implemented. The data source should have logged the specific
  2788. error already.
  2789. </para></listitem>
  2790. </varlistentry>
  2791. <varlistentry id="DATASRC_QUERY_SYNTH_CNAME">
  2792. <term>DATASRC_QUERY_SYNTH_CNAME synthesizing CNAME from DNAME on '%1'</term>
  2793. <listitem><para>
  2794. This is a debug message. While answering a query, a DNAME was encountered. The
  2795. DNAME itself will be returned, along with a synthesized CNAME for clients that
  2796. do not understand the DNAME RR.
  2797. </para></listitem>
  2798. </varlistentry>
  2799. <varlistentry id="DATASRC_QUERY_TASK_FAIL">
  2800. <term>DATASRC_QUERY_TASK_FAIL task failed with %1</term>
  2801. <listitem><para>
  2802. The query subtask failed. The reason should have been reported by the subtask
  2803. already. The code is 1 for error, 2 for not implemented.
  2804. </para></listitem>
  2805. </varlistentry>
  2806. <varlistentry id="DATASRC_QUERY_TOO_MANY_CNAMES">
  2807. <term>DATASRC_QUERY_TOO_MANY_CNAMES CNAME chain limit exceeded at '%1'</term>
  2808. <listitem><para>
  2809. A CNAME led to another CNAME and it led to another, and so on. After 16
  2810. CNAMEs, the software gave up. Long CNAME chains are discouraged, and this
  2811. might possibly be a loop as well. Note that some of the CNAMEs might have
  2812. been synthesized from DNAMEs. This indicates problem with supplied data.
  2813. </para></listitem>
  2814. </varlistentry>
  2815. <varlistentry id="DATASRC_QUERY_UNKNOWN_RESULT">
  2816. <term>DATASRC_QUERY_UNKNOWN_RESULT unknown result of subtask</term>
  2817. <listitem><para>
  2818. This indicates a programmer error. The answer of subtask doesn't look like
  2819. anything known.
  2820. </para></listitem>
  2821. </varlistentry>
  2822. <varlistentry id="DATASRC_QUERY_WILDCARD">
  2823. <term>DATASRC_QUERY_WILDCARD looking for a wildcard covering '%1'</term>
  2824. <listitem><para>
  2825. Debug information. A direct match wasn't found, so a wildcard covering the
  2826. domain is being looked for now.
  2827. </para></listitem>
  2828. </varlistentry>
  2829. <varlistentry id="DATASRC_QUERY_WILDCARD_FAIL">
  2830. <term>DATASRC_QUERY_WILDCARD_FAIL error processing wildcard for '%1'</term>
  2831. <listitem><para>
  2832. During an attempt to cover the domain by a wildcard an error happened. The
  2833. exact kind was hopefully already reported.
  2834. </para></listitem>
  2835. </varlistentry>
  2836. <varlistentry id="DATASRC_QUERY_WILDCARD_PROVE_NX_FAIL">
  2837. <term>DATASRC_QUERY_WILDCARD_PROVE_NX_FAIL unable to prove nonexistence of '%1' (%2)</term>
  2838. <listitem><para>
  2839. While processing a wildcard, it wasn't possible to prove nonexistence of the
  2840. given domain or record. The code is 1 for error and 2 for not implemented.
  2841. </para></listitem>
  2842. </varlistentry>
  2843. <varlistentry id="DATASRC_QUERY_WILDCARD_REFERRAL">
  2844. <term>DATASRC_QUERY_WILDCARD_REFERRAL unable to find referral info for '%1' (%2)</term>
  2845. <listitem><para>
  2846. While processing a wildcard, a referral was met. But it wasn't possible to get
  2847. enough information for it. The code is 1 for error, 2 for not implemented.
  2848. </para></listitem>
  2849. </varlistentry>
  2850. <varlistentry id="DATASRC_SQLITE_CLOSE">
  2851. <term>DATASRC_SQLITE_CLOSE closing SQLite database</term>
  2852. <listitem><para>
  2853. Debug information. The SQLite data source is closing the database file.
  2854. </para></listitem>
  2855. </varlistentry>
  2856. <varlistentry id="DATASRC_SQLITE_COMPATIBLE_VERSION">
  2857. <term>DATASRC_SQLITE_COMPATIBLE_VERSION database schema V%1.%2 not up to date (expecting V%3.%4) but is compatible</term>
  2858. <listitem><para>
  2859. The version of the SQLite3 database schema used to hold the zone data
  2860. is not the latest one - the current version of BIND 10 was written
  2861. with a later schema version in mind. However, the database is
  2862. compatible with the current version of BIND 10, and BIND 10 will run
  2863. without any problems.
  2864. </para><para>
  2865. Consult the release notes for your version of BIND 10. Depending on
  2866. the changes made to the database schema, it is possible that improved
  2867. performance could result if the database were upgraded.
  2868. </para></listitem>
  2869. </varlistentry>
  2870. <varlistentry id="DATASRC_SQLITE_CONNCLOSE">
  2871. <term>DATASRC_SQLITE_CONNCLOSE Closing sqlite database</term>
  2872. <listitem><para>
  2873. The database file is no longer needed and is being closed.
  2874. </para></listitem>
  2875. </varlistentry>
  2876. <varlistentry id="DATASRC_SQLITE_CONNOPEN">
  2877. <term>DATASRC_SQLITE_CONNOPEN Opening sqlite database file '%1'</term>
  2878. <listitem><para>
  2879. The database file is being opened so it can start providing data.
  2880. </para></listitem>
  2881. </varlistentry>
  2882. <varlistentry id="DATASRC_SQLITE_CREATE">
  2883. <term>DATASRC_SQLITE_CREATE SQLite data source created</term>
  2884. <listitem><para>
  2885. Debug information. An instance of SQLite data source is being created.
  2886. </para></listitem>
  2887. </varlistentry>
  2888. <varlistentry id="DATASRC_SQLITE_DESTROY">
  2889. <term>DATASRC_SQLITE_DESTROY SQLite data source destroyed</term>
  2890. <listitem><para>
  2891. Debug information. An instance of SQLite data source is being destroyed.
  2892. </para></listitem>
  2893. </varlistentry>
  2894. <varlistentry id="DATASRC_SQLITE_DROPCONN">
  2895. <term>DATASRC_SQLITE_DROPCONN SQLite3Database is being deinitialized</term>
  2896. <listitem><para>
  2897. The object around a database connection is being destroyed.
  2898. </para></listitem>
  2899. </varlistentry>
  2900. <varlistentry id="DATASRC_SQLITE_ENCLOSURE">
  2901. <term>DATASRC_SQLITE_ENCLOSURE looking for zone containing '%1'</term>
  2902. <listitem><para>
  2903. Debug information. The SQLite data source is trying to identify which zone
  2904. should hold this domain.
  2905. </para></listitem>
  2906. </varlistentry>
  2907. <varlistentry id="DATASRC_SQLITE_ENCLOSURE_NOT_FOUND">
  2908. <term>DATASRC_SQLITE_ENCLOSURE_NOT_FOUND no zone contains '%1'</term>
  2909. <listitem><para>
  2910. Debug information. The last SQLITE_ENCLOSURE query was unsuccessful; there's
  2911. no such zone in our data.
  2912. </para></listitem>
  2913. </varlistentry>
  2914. <varlistentry id="DATASRC_SQLITE_FIND">
  2915. <term>DATASRC_SQLITE_FIND looking for RRset '%1/%2'</term>
  2916. <listitem><para>
  2917. Debug information. The SQLite data source is looking up a resource record
  2918. set.
  2919. </para></listitem>
  2920. </varlistentry>
  2921. <varlistentry id="DATASRC_SQLITE_FINDADDRS">
  2922. <term>DATASRC_SQLITE_FINDADDRS looking for A/AAAA addresses for '%1'</term>
  2923. <listitem><para>
  2924. Debug information. The data source is looking up the addresses for given
  2925. domain name.
  2926. </para></listitem>
  2927. </varlistentry>
  2928. <varlistentry id="DATASRC_SQLITE_FINDADDRS_BAD_CLASS">
  2929. <term>DATASRC_SQLITE_FINDADDRS_BAD_CLASS class mismatch looking for addresses ('%1' and '%2')</term>
  2930. <listitem><para>
  2931. The SQLite data source was looking up A/AAAA addresses, but the data source
  2932. contains different class than the query was for.
  2933. </para></listitem>
  2934. </varlistentry>
  2935. <varlistentry id="DATASRC_SQLITE_FINDEXACT">
  2936. <term>DATASRC_SQLITE_FINDEXACT looking for exact RRset '%1/%2'</term>
  2937. <listitem><para>
  2938. Debug information. The SQLite data source is looking up an exact resource
  2939. record.
  2940. </para></listitem>
  2941. </varlistentry>
  2942. <varlistentry id="DATASRC_SQLITE_FINDEXACT_BAD_CLASS">
  2943. <term>DATASRC_SQLITE_FINDEXACT_BAD_CLASS class mismatch looking for an RRset ('%1' and '%2')</term>
  2944. <listitem><para>
  2945. The SQLite data source was looking up an exact RRset, but the data source
  2946. contains different class than the query was for.
  2947. </para></listitem>
  2948. </varlistentry>
  2949. <varlistentry id="DATASRC_SQLITE_FINDREC">
  2950. <term>DATASRC_SQLITE_FINDREC looking for record '%1/%2'</term>
  2951. <listitem><para>
  2952. Debug information. The SQLite data source is looking up records of given name
  2953. and type in the database.
  2954. </para></listitem>
  2955. </varlistentry>
  2956. <varlistentry id="DATASRC_SQLITE_FINDREF">
  2957. <term>DATASRC_SQLITE_FINDREF looking for referral at '%1'</term>
  2958. <listitem><para>
  2959. Debug information. The SQLite data source is identifying if this domain is
  2960. a referral and where it goes.
  2961. </para></listitem>
  2962. </varlistentry>
  2963. <varlistentry id="DATASRC_SQLITE_FINDREF_BAD_CLASS">
  2964. <term>DATASRC_SQLITE_FINDREF_BAD_CLASS class mismatch looking for referral ('%1' and '%2')</term>
  2965. <listitem><para>
  2966. The SQLite data source was trying to identify if there's a referral. But
  2967. it contains different class than the query was for.
  2968. </para></listitem>
  2969. </varlistentry>
  2970. <varlistentry id="DATASRC_SQLITE_FIND_BAD_CLASS">
  2971. <term>DATASRC_SQLITE_FIND_BAD_CLASS class mismatch looking for an RRset ('%1' and '%2')</term>
  2972. <listitem><para>
  2973. The SQLite data source was looking up an RRset, but the data source contains
  2974. different class than the query was for.
  2975. </para></listitem>
  2976. </varlistentry>
  2977. <varlistentry id="DATASRC_SQLITE_FIND_NSEC3">
  2978. <term>DATASRC_SQLITE_FIND_NSEC3 looking for NSEC3 in zone '%1' for hash '%2'</term>
  2979. <listitem><para>
  2980. Debug information. We're trying to look up a NSEC3 record in the SQLite data
  2981. source.
  2982. </para></listitem>
  2983. </varlistentry>
  2984. <varlistentry id="DATASRC_SQLITE_FIND_NSEC3_NO_ZONE">
  2985. <term>DATASRC_SQLITE_FIND_NSEC3_NO_ZONE no such zone '%1'</term>
  2986. <listitem><para>
  2987. The SQLite data source was asked to provide a NSEC3 record for given zone.
  2988. But it doesn't contain that zone.
  2989. </para></listitem>
  2990. </varlistentry>
  2991. <varlistentry id="DATASRC_SQLITE_INCOMPATIBLE_VERSION">
  2992. <term>DATASRC_SQLITE_INCOMPATIBLE_VERSION database schema V%1.%2 incompatible with version (V%3.%4) expected</term>
  2993. <listitem><para>
  2994. The version of the SQLite3 database schema used to hold the zone data
  2995. is incompatible with the version expected by BIND 10. As a result,
  2996. BIND 10 is unable to run using the database file as the data source.
  2997. </para><para>
  2998. The database should be updated using the means described in the BIND
  2999. 10 documentation.
  3000. </para></listitem>
  3001. </varlistentry>
  3002. <varlistentry id="DATASRC_SQLITE_NEWCONN">
  3003. <term>DATASRC_SQLITE_NEWCONN SQLite3Database is being initialized</term>
  3004. <listitem><para>
  3005. A wrapper object to hold database connection is being initialized.
  3006. </para></listitem>
  3007. </varlistentry>
  3008. <varlistentry id="DATASRC_SQLITE_OPEN">
  3009. <term>DATASRC_SQLITE_OPEN opening SQLite database '%1'</term>
  3010. <listitem><para>
  3011. Debug information. The SQLite data source is loading an SQLite database in
  3012. the provided file.
  3013. </para></listitem>
  3014. </varlistentry>
  3015. <varlistentry id="DATASRC_SQLITE_PREVIOUS">
  3016. <term>DATASRC_SQLITE_PREVIOUS looking for name previous to '%1'</term>
  3017. <listitem><para>
  3018. This is a debug message. The name given was not found, so the program
  3019. is searching for the next name higher up the hierarchy (e.g. if
  3020. www.example.com were queried for and not found, the software searches
  3021. for the "previous" name, example.com).
  3022. </para></listitem>
  3023. </varlistentry>
  3024. <varlistentry id="DATASRC_SQLITE_PREVIOUS_NO_ZONE">
  3025. <term>DATASRC_SQLITE_PREVIOUS_NO_ZONE no zone containing '%1'</term>
  3026. <listitem><para>
  3027. The name given was not found, so the program is searching for the next
  3028. name higher up the hierarchy (e.g. if www.example.com were queried
  3029. for and not found, the software searches for the "previous" name,
  3030. example.com). However, this name is not contained in any zone in the
  3031. data source. This is an error since it indicates a problem in the earlier
  3032. processing of the query.
  3033. </para></listitem>
  3034. </varlistentry>
  3035. <varlistentry id="DATASRC_SQLITE_SETUP">
  3036. <term>DATASRC_SQLITE_SETUP setting up SQLite database</term>
  3037. <listitem><para>
  3038. The database for SQLite data source was found empty. It is assumed this is the
  3039. first run and it is being initialized with current schema. It'll still contain
  3040. no data, but it will be ready for use.
  3041. </para></listitem>
  3042. </varlistentry>
  3043. <varlistentry id="DATASRC_STATIC_CLASS_NOT_CH">
  3044. <term>DATASRC_STATIC_CLASS_NOT_CH static data source can handle CH class only</term>
  3045. <listitem><para>
  3046. An error message indicating that a query requesting a RR for a class other
  3047. that CH was sent to the static data source (which only handles CH queries).
  3048. </para></listitem>
  3049. </varlistentry>
  3050. <varlistentry id="DATASRC_STATIC_CREATE">
  3051. <term>DATASRC_STATIC_CREATE creating the static datasource</term>
  3052. <listitem><para>
  3053. Debug information. The static data source (the one holding stuff like
  3054. version.bind) is being created.
  3055. </para></listitem>
  3056. </varlistentry>
  3057. <varlistentry id="DATASRC_STATIC_FIND">
  3058. <term>DATASRC_STATIC_FIND looking for '%1/%2'</term>
  3059. <listitem><para>
  3060. Debug information. This resource record set is being looked up in the static
  3061. data source.
  3062. </para></listitem>
  3063. </varlistentry>
  3064. <varlistentry id="DATASRC_UNEXPECTED_QUERY_STATE">
  3065. <term>DATASRC_UNEXPECTED_QUERY_STATE unexpected query state</term>
  3066. <listitem><para>
  3067. This indicates a programming error. An internal task of unknown type was
  3068. generated.
  3069. </para></listitem>
  3070. </varlistentry>
  3071. <varlistentry id="DBUTIL_BACKUP">
  3072. <term>DBUTIL_BACKUP created backup of %1 in %2</term>
  3073. <listitem><para>
  3074. A backup for the given database file was created. Same of original file and
  3075. backup are given in the output message.
  3076. </para></listitem>
  3077. </varlistentry>
  3078. <varlistentry id="DBUTIL_CHECK_ERROR">
  3079. <term>DBUTIL_CHECK_ERROR unable to check database version: %1</term>
  3080. <listitem><para>
  3081. There was an error while trying to check the current version of the database
  3082. schema. The error is shown in the message.
  3083. </para></listitem>
  3084. </varlistentry>
  3085. <varlistentry id="DBUTIL_CHECK_NOCONFIRM">
  3086. <term>DBUTIL_CHECK_NOCONFIRM --noconfirm is not compatible with --check</term>
  3087. <listitem><para>
  3088. b10-dbutil was called with --check and --noconfirm. --noconfirm only has
  3089. meaning with --upgrade, so this is considered an error.
  3090. </para></listitem>
  3091. </varlistentry>
  3092. <varlistentry id="DBUTIL_CHECK_OK">
  3093. <term>DBUTIL_CHECK_OK this is the latest version of the database schema. No upgrade is required</term>
  3094. <listitem><para>
  3095. The database schema version has been checked, and is up to date.
  3096. No action is required.
  3097. </para></listitem>
  3098. </varlistentry>
  3099. <varlistentry id="DBUTIL_CHECK_UPGRADE_NEEDED">
  3100. <term>DBUTIL_CHECK_UPGRADE_NEEDED re-run this program with the --upgrade switch to upgrade</term>
  3101. <listitem><para>
  3102. The database schema version is not up to date, and an update is required.
  3103. Please run the dbutil tool again, with the --upgrade argument.
  3104. </para></listitem>
  3105. </varlistentry>
  3106. <varlistentry id="DBUTIL_COMMAND_NONE">
  3107. <term>DBUTIL_COMMAND_NONE must select one of --check or --upgrade</term>
  3108. <listitem><para>
  3109. b10-dbutil was called with neither --check nor --upgrade. One action must be
  3110. provided.
  3111. </para></listitem>
  3112. </varlistentry>
  3113. <varlistentry id="DBUTIL_COMMAND_UPGRADE_CHECK">
  3114. <term>DBUTIL_COMMAND_UPGRADE_CHECK --upgrade is not compatible with --check</term>
  3115. <listitem><para>
  3116. b10-dbutil was called with both the commands --upgrade and --check. Only one
  3117. action can be performed at a time.
  3118. </para></listitem>
  3119. </varlistentry>
  3120. <varlistentry id="DBUTIL_DATABASE_MAY_BE_CORRUPT">
  3121. <term>DBUTIL_DATABASE_MAY_BE_CORRUPT database file %1 may be corrupt, restore it from backup (%2)</term>
  3122. <listitem><para>
  3123. The upgrade failed while it was in progress; the database may now be in an
  3124. inconsistent state, and it is advised to restore it from the backup that was
  3125. created when b10-dbutil started.
  3126. </para></listitem>
  3127. </varlistentry>
  3128. <varlistentry id="DBUTIL_EXECUTE">
  3129. <term>DBUTIL_EXECUTE Executing SQL statement: %1</term>
  3130. <listitem><para>
  3131. Debug message; the given SQL statement is executed
  3132. </para></listitem>
  3133. </varlistentry>
  3134. <varlistentry id="DBUTIL_FILE">
  3135. <term>DBUTIL_FILE Database file: %1</term>
  3136. <listitem><para>
  3137. The database file that is being checked.
  3138. </para></listitem>
  3139. </varlistentry>
  3140. <varlistentry id="DBUTIL_NO_FILE">
  3141. <term>DBUTIL_NO_FILE must supply name of the database file to upgrade</term>
  3142. <listitem><para>
  3143. b10-dbutil was called without a database file. Currently, it cannot find this
  3144. file on its own, and it must be provided.
  3145. </para></listitem>
  3146. </varlistentry>
  3147. <varlistentry id="DBUTIL_STATEMENT_ERROR">
  3148. <term>DBUTIL_STATEMENT_ERROR failed to execute %1: %2</term>
  3149. <listitem><para>
  3150. The given database statement failed to execute. The error is shown in the
  3151. message.
  3152. </para></listitem>
  3153. </varlistentry>
  3154. <varlistentry id="DBUTIL_TOO_MANY_ARGUMENTS">
  3155. <term>DBUTIL_TOO_MANY_ARGUMENTS too many arguments to the command, maximum of one expected</term>
  3156. <listitem><para>
  3157. There were too many command-line arguments to b10-dbutil
  3158. </para></listitem>
  3159. </varlistentry>
  3160. <varlistentry id="DBUTIL_UPGRADE_CANCELED">
  3161. <term>DBUTIL_UPGRADE_CANCELED upgrade canceled; database has not been changed</term>
  3162. <listitem><para>
  3163. The user aborted the upgrade, and b10-dbutil will now exit.
  3164. </para></listitem>
  3165. </varlistentry>
  3166. <varlistentry id="DBUTIL_UPGRADE_DBUTIL">
  3167. <term>DBUTIL_UPGRADE_DBUTIL please get the latest version of b10-dbutil and re-run</term>
  3168. <listitem><para>
  3169. A database schema was found that was newer than this version of dbutil, which
  3170. is apparently out of date and should be upgraded itself.
  3171. </para></listitem>
  3172. </varlistentry>
  3173. <varlistentry id="DBUTIL_UPGRADE_FAILED">
  3174. <term>DBUTIL_UPGRADE_FAILED upgrade failed: %1</term>
  3175. <listitem><para>
  3176. While the upgrade was in progress, an unexpected error occurred. The error
  3177. is shown in the message.
  3178. </para></listitem>
  3179. </varlistentry>
  3180. <varlistentry id="DBUTIL_UPGRADE_NOT_ATTEMPTED">
  3181. <term>DBUTIL_UPGRADE_NOT_ATTEMPTED database upgrade was not attempted</term>
  3182. <listitem><para>
  3183. Due to the earlier failure, the database schema upgrade was not attempted,
  3184. and b10-dbutil will now exit.
  3185. </para></listitem>
  3186. </varlistentry>
  3187. <varlistentry id="DBUTIL_UPGRADE_NOT_NEEDED">
  3188. <term>DBUTIL_UPGRADE_NOT_NEEDED database already at latest version, no upgrade necessary</term>
  3189. <listitem><para>
  3190. b10-dbutil was told to upgrade the database schema, but it is already at the
  3191. latest version.
  3192. </para></listitem>
  3193. </varlistentry>
  3194. <varlistentry id="DBUTIL_UPGRADE_NOT_POSSIBLE">
  3195. <term>DBUTIL_UPGRADE_NOT_POSSIBLE database at a later version than this utility can support</term>
  3196. <listitem><para>
  3197. b10-dbutil was told to upgrade the database schema, but it is at a higher
  3198. version than this tool currently supports. Please update b10-dbutil and try
  3199. again.
  3200. </para></listitem>
  3201. </varlistentry>
  3202. <varlistentry id="DBUTIL_UPGRADE_PREPARATION_FAILED">
  3203. <term>DBUTIL_UPGRADE_PREPARATION_FAILED upgrade preparation failed: %1</term>
  3204. <listitem><para>
  3205. An unexpected error occurred while b10-dbutil was preparing to upgrade the
  3206. database schema. The error is shown in the message
  3207. </para></listitem>
  3208. </varlistentry>
  3209. <varlistentry id="DBUTIL_UPGRADE_SUCCESFUL">
  3210. <term>DBUTIL_UPGRADE_SUCCESFUL database upgrade successfully completed</term>
  3211. <listitem><para>
  3212. The database schema update was completed successfully.
  3213. </para></listitem>
  3214. </varlistentry>
  3215. <varlistentry id="DBUTIL_UPGRADING">
  3216. <term>DBUTIL_UPGRADING upgrading database from %1 to %2</term>
  3217. <listitem><para>
  3218. An upgrade is in progress, the versions of the current upgrade action are shown.
  3219. </para></listitem>
  3220. </varlistentry>
  3221. <varlistentry id="DBUTIL_VERSION_CURRENT">
  3222. <term>DBUTIL_VERSION_CURRENT database version %1</term>
  3223. <listitem><para>
  3224. The current version of the database schema.
  3225. </para></listitem>
  3226. </varlistentry>
  3227. <varlistentry id="DBUTIL_VERSION_HIGH">
  3228. <term>DBUTIL_VERSION_HIGH database is at a later version (%1) than this program can cope with (%2)</term>
  3229. <listitem><para>
  3230. The database schema is at a higher version than b10-dbutil knows about.
  3231. </para></listitem>
  3232. </varlistentry>
  3233. <varlistentry id="DBUTIL_VERSION_LOW">
  3234. <term>DBUTIL_VERSION_LOW database version %1, latest version is %2.</term>
  3235. <listitem><para>
  3236. The database schema is not up to date, the current version and the latest
  3237. version are in the message.
  3238. </para></listitem>
  3239. </varlistentry>
  3240. <varlistentry id="DDNS_ACCEPT_FAILURE">
  3241. <term>DDNS_ACCEPT_FAILURE error accepting a connection: %1</term>
  3242. <listitem><para>
  3243. There was a low-level error when we tried to accept an incoming connection
  3244. (probably coming from b10-auth). We continue serving on whatever other
  3245. connections we already have, but this connection is dropped. The reason
  3246. is logged.
  3247. </para></listitem>
  3248. </varlistentry>
  3249. <varlistentry id="DDNS_AUTH_DBFILE_UPDATE">
  3250. <term>DDNS_AUTH_DBFILE_UPDATE updated auth DB file to %1</term>
  3251. <listitem><para>
  3252. b10-ddns was notified of updates to the SQLite3 DB file that b10-auth
  3253. uses for the underlying data source and on which b10-ddns needs to
  3254. make updates. b10-ddns then updated its internal setup so further
  3255. updates would be made on the new DB.
  3256. </para></listitem>
  3257. </varlistentry>
  3258. <varlistentry id="DDNS_CC_SESSION_ERROR">
  3259. <term>DDNS_CC_SESSION_ERROR error reading from cc channel: %1</term>
  3260. <listitem><para>
  3261. There was a problem reading from the command and control channel. The
  3262. most likely cause is that the msgq process is not running.
  3263. </para></listitem>
  3264. </varlistentry>
  3265. <varlistentry id="DDNS_CC_SESSION_TIMEOUT_ERROR">
  3266. <term>DDNS_CC_SESSION_TIMEOUT_ERROR timeout waiting for cc response</term>
  3267. <listitem><para>
  3268. There was a problem reading a response from another module over the
  3269. command and control channel. The most likely cause is that the
  3270. configuration manager b10-cfgmgr is not running.
  3271. </para></listitem>
  3272. </varlistentry>
  3273. <varlistentry id="DDNS_CONFIG_ERROR">
  3274. <term>DDNS_CONFIG_ERROR error found in configuration data: %1</term>
  3275. <listitem><para>
  3276. The ddns process encountered an error when installing the configuration at
  3277. startup time. Details of the error are included in the log message.
  3278. </para></listitem>
  3279. </varlistentry>
  3280. <varlistentry id="DDNS_CONFIG_HANDLER_ERROR">
  3281. <term>DDNS_CONFIG_HANDLER_ERROR failed to update ddns configuration: %1</term>
  3282. <listitem><para>
  3283. An update to b10-ddns configuration was delivered but an error was
  3284. found while applying them. None of the delivered updates were applied
  3285. to the running b10-ddns system, and the server will keep running with
  3286. the existing configuration. If this happened in the initial
  3287. configuration setup, the server will be running with the default
  3288. configurations.
  3289. </para></listitem>
  3290. </varlistentry>
  3291. <varlistentry id="DDNS_DROP_CONN">
  3292. <term>DDNS_DROP_CONN dropping connection on file descriptor %1 because of error %2</term>
  3293. <listitem><para>
  3294. There was an error on a connection with the b10-auth server (or whatever
  3295. connects to the ddns daemon). This might be OK, for example when the
  3296. authoritative server shuts down, the connection would get closed. It also
  3297. can mean the system is busy and can't keep up or that the other side got
  3298. confused and sent bad data.
  3299. </para></listitem>
  3300. </varlistentry>
  3301. <varlistentry id="DDNS_GET_REMOTE_CONFIG_FAIL">
  3302. <term>DDNS_GET_REMOTE_CONFIG_FAIL failed to get %1 module configuration %2 times: %3</term>
  3303. <listitem><para>
  3304. b10-ddns tried to get configuration of some remote modules for its
  3305. operation, but it failed. The most likely cause of this is that the
  3306. remote module has not fully started up and b10-ddns couldn't get the
  3307. configuration in a timely fashion. b10-ddns attempts to retry it a
  3308. few times, imposing a short delay, hoping it eventually succeeds if
  3309. it's just a timing issue. The number of total failed attempts is also
  3310. logged. If it reaches an internal threshold b10-ddns considers it a
  3311. fatal error and terminates. Even in that case, if b10-ddns is
  3312. configured as a "dispensable" component (which is the default), the
  3313. parent bind10 process will restart it, and there will be another
  3314. chance of getting the remote configuration successfully. These are
  3315. not the optimal behavior, but it's believed to be sufficient in
  3316. practice (there would normally be no failure in the first place). If
  3317. it really causes an operational trouble other than having a few of
  3318. these log messages, please submit a bug report; there can be several
  3319. ways to make it more sophisticated. Another, less likely reason for
  3320. having this error is because the remote modules are not actually
  3321. configured to run. If that's the case fixing the configuration should
  3322. solve the problem - either by making sure the remote module will run
  3323. or by not running b10-ddns (without these remote modules b10-ddns is
  3324. not functional, so there's no point in running it in this case).
  3325. </para></listitem>
  3326. </varlistentry>
  3327. <varlistentry id="DDNS_MODULECC_SESSION_ERROR">
  3328. <term>DDNS_MODULECC_SESSION_ERROR error encountered by configuration/command module: %1</term>
  3329. <listitem><para>
  3330. There was a problem in the lower level module handling configuration and
  3331. control commands. This could happen for various reasons, but the most likely
  3332. cause is that the configuration database contains a syntax error and ddns
  3333. failed to start at initialization. A detailed error message from the module
  3334. will also be displayed.
  3335. </para></listitem>
  3336. </varlistentry>
  3337. <varlistentry id="DDNS_NEW_CONN">
  3338. <term>DDNS_NEW_CONN new connection on file descriptor %1 from %2</term>
  3339. <listitem><para>
  3340. Debug message. We received a connection and we are going to start handling
  3341. requests from it. The file descriptor number and the address where the request
  3342. comes from is logged. The connection is over a unix domain socket and is likely
  3343. coming from a b10-auth process.
  3344. </para></listitem>
  3345. </varlistentry>
  3346. <varlistentry id="DDNS_RECEIVED_AUTH_UPDATE">
  3347. <term>DDNS_RECEIVED_AUTH_UPDATE received configuration updates from auth server</term>
  3348. <listitem><para>
  3349. b10-ddns is notified of updates to b10-auth configuration
  3350. (including a report of the initial configuration) that b10-ddns might
  3351. be interested in.
  3352. </para></listitem>
  3353. </varlistentry>
  3354. <varlistentry id="DDNS_RECEIVED_SHUTDOWN_COMMAND">
  3355. <term>DDNS_RECEIVED_SHUTDOWN_COMMAND shutdown command received</term>
  3356. <listitem><para>
  3357. The ddns process received a shutdown command from the command channel
  3358. and will now shut down.
  3359. </para></listitem>
  3360. </varlistentry>
  3361. <varlistentry id="DDNS_RECEIVED_ZONEMGR_UPDATE">
  3362. <term>DDNS_RECEIVED_ZONEMGR_UPDATE received configuration updates from zonemgr</term>
  3363. <listitem><para>
  3364. b10-ddns is notified of updates to b10-zonemgr's configuration
  3365. (including a report of the initial configuration). It may possibly
  3366. contain changes to the secondary zones, in which case b10-ddns will
  3367. update its internal copy of that configuration.
  3368. </para></listitem>
  3369. </varlistentry>
  3370. <varlistentry id="DDNS_REQUEST_PARSE_FAIL">
  3371. <term>DDNS_REQUEST_PARSE_FAIL failed to parse update request: %1</term>
  3372. <listitem><para>
  3373. b10-ddns received an update request via b10-auth, but the received
  3374. data failed to pass minimum validation: it was either broken wire
  3375. format data for a valid DNS message (e.g. it's shorter than the
  3376. fixed-length header), or the opcode is not update, or TSIG is included
  3377. in the request but it fails to validate. Since b10-auth should have
  3378. performed this level of checks, such an error shouldn't be detected at
  3379. this stage and should rather be considered an internal bug. This
  3380. event is therefore logged at the error level, and the request is
  3381. simply dropped. Additional information of the error is also logged.
  3382. </para></listitem>
  3383. </varlistentry>
  3384. <varlistentry id="DDNS_REQUEST_TCP_QUOTA">
  3385. <term>DDNS_REQUEST_TCP_QUOTA reject TCP update client %1 (%2 running)</term>
  3386. <listitem><para>
  3387. b10-ddns received a new update request from a client over TCP, but
  3388. the number of TCP clients being handled by the server already reached
  3389. the configured quota, so the latest client was rejected by closing
  3390. the connection. The administrator may want to check the status of
  3391. b10-ddns, and if this happens even if the server is not very busy,
  3392. the quota may have to be increased. Or, if it's more likely to be
  3393. malicious or simply bogus clients that somehow keep the TCP connection
  3394. open for a long period, maybe they should be rejected with an
  3395. appropriate ACL configuration or some lower layer filtering. The
  3396. number of existing TCP clients are shown in the log, which should be
  3397. identical to the current quota.
  3398. </para></listitem>
  3399. </varlistentry>
  3400. <varlistentry id="DDNS_RESPONSE_SOCKET_ERROR">
  3401. <term>DDNS_RESPONSE_SOCKET_ERROR failed to send update response to %1: %2</term>
  3402. <listitem><para>
  3403. Network I/O error happens in sending an update response. The
  3404. client's address that caused the error and error details are also
  3405. logged.
  3406. </para></listitem>
  3407. </varlistentry>
  3408. <varlistentry id="DDNS_RESPONSE_TCP_SOCKET_ERROR">
  3409. <term>DDNS_RESPONSE_TCP_SOCKET_ERROR failed to complete sending update response to %1 over TCP</term>
  3410. <listitem><para>
  3411. b10-ddns had tried to send an update response over TCP, and it hadn't
  3412. been completed at that time, and a followup attempt to complete the
  3413. send operation failed due to some network I/O error. While a network
  3414. error can happen any time, this event is quite unexpected for two
  3415. reasons. First, since the size of a response to an update request
  3416. should be generally small, it's unlikely that the initial attempt
  3417. didn't fail but wasn't completed. Second, since the first attempt
  3418. succeeded and the TCP connection had been established in the first
  3419. place, it's more likely for the subsequent attempt to succeed. In any
  3420. case, there may not be able to do anything to fix it at the server
  3421. side, but the administrator may want to check the general reachability
  3422. with the client address.
  3423. </para></listitem>
  3424. </varlistentry>
  3425. <varlistentry id="DDNS_SECONDARY_ZONES_UPDATE">
  3426. <term>DDNS_SECONDARY_ZONES_UPDATE updated secondary zone list (%1 zones are listed)</term>
  3427. <listitem><para>
  3428. b10-ddns has successfully updated the internal copy of secondary zones
  3429. obtained from b10-zonemgr, based on a latest update to zonemgr's
  3430. configuration. The number of newly configured (unique) secondary
  3431. zones is logged.
  3432. </para></listitem>
  3433. </varlistentry>
  3434. <varlistentry id="DDNS_SECONDARY_ZONES_UPDATE_FAIL">
  3435. <term>DDNS_SECONDARY_ZONES_UPDATE_FAIL failed to update secondary zone list: %1</term>
  3436. <listitem><para>
  3437. An error message. b10-ddns was notified of updates to a list of
  3438. secondary zones from b10-zonemgr and tried to update its own internal
  3439. copy of the list, but it failed. This can happen if the configuration
  3440. contains an error, and b10-zonemgr should also reject that update.
  3441. Unfortunately, in the current implementation there is no way to ensure
  3442. that both zonemgr and ddns have consistent information when an update
  3443. contains an error; further, as of this writing zonemgr has a bug that
  3444. it could partially update the list of secondary zones if part of the
  3445. list has an error (see Trac ticket #2038). b10-ddns still keeps
  3446. running with the previous configuration, but it's strongly advisable
  3447. to check log messages from zonemgr, and if it indicates there can be
  3448. inconsistent state, it's better to restart the entire BIND 10 system
  3449. (just restarting b10-ddns wouldn't be enough, because zonemgr can have
  3450. partially updated configuration due to bug #2038). The log message
  3451. contains an error description, but it's intentionally kept simple as
  3452. it's primarily a matter of zonemgr. To know the details of the error,
  3453. log messages of zonemgr should be consulted.
  3454. </para></listitem>
  3455. </varlistentry>
  3456. <varlistentry id="DDNS_SESSION">
  3457. <term>DDNS_SESSION session arrived on file descriptor %1</term>
  3458. <listitem><para>
  3459. A debug message, informing there's some activity on the given file descriptor.
  3460. It will be either a request or the file descriptor will be closed. See
  3461. following log messages to see what of it.
  3462. </para></listitem>
  3463. </varlistentry>
  3464. <varlistentry id="DDNS_SHUTDOWN">
  3465. <term>DDNS_SHUTDOWN ddns server shutting down</term>
  3466. <listitem><para>
  3467. The ddns process is shutting down. It will no longer listen for new commands
  3468. or updates. Any command or update that is being addressed at this moment will
  3469. be completed, after which the process will exit.
  3470. </para></listitem>
  3471. </varlistentry>
  3472. <varlistentry id="DDNS_STARTED">
  3473. <term>DDNS_STARTED ddns server is running and listening for updates</term>
  3474. <listitem><para>
  3475. The ddns process has successfully started and is now ready to receive commands
  3476. and updates.
  3477. </para></listitem>
  3478. </varlistentry>
  3479. <varlistentry id="DDNS_START_FORWARDER_ERROR">
  3480. <term>DDNS_START_FORWARDER_ERROR Error from b10-auth when requesting DDNS UPDATE forwarding: %1</term>
  3481. <listitem><para>
  3482. There was an error response from b10-auth to the command to start
  3483. forwarding DDNS UPDATE messages to b10-ddns.
  3484. It is almost certain that DDNS UPDATE messages are not handled now, and that
  3485. they will be responded to with a NOTIMP error code, even though b10-ddns is
  3486. running.
  3487. The error message is printed, and additional information may be found in
  3488. the b10-auth log output. Since this is an error that is sent by the
  3489. b10-auth module, it should have more information as to what the actual
  3490. problem was.
  3491. </para></listitem>
  3492. </varlistentry>
  3493. <varlistentry id="DDNS_START_FORWARDER_FAIL">
  3494. <term>DDNS_START_FORWARDER_FAIL Error sending request for DDNS UPDATE forwarding to b10-auth: %1</term>
  3495. <listitem><para>
  3496. There was an error when attempting to send b10-auth the request to forward
  3497. DDNS UPDATE messages to the b10-ddns module. This points to an internal
  3498. problem using the inter-module messaging system.
  3499. This needs to be inspected, as it is almost certain that DDNS UPDATE messages
  3500. are not handled now.
  3501. The specific error is printed in the log message.
  3502. </para></listitem>
  3503. </varlistentry>
  3504. <varlistentry id="DDNS_STOPPED">
  3505. <term>DDNS_STOPPED ddns server has stopped</term>
  3506. <listitem><para>
  3507. The ddns process has successfully stopped and is no longer listening for or
  3508. handling commands or updates, and will now exit.
  3509. </para></listitem>
  3510. </varlistentry>
  3511. <varlistentry id="DDNS_STOPPED_BY_KEYBOARD">
  3512. <term>DDNS_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  3513. <listitem><para>
  3514. There was a keyboard interrupt signal to stop the ddns process. The
  3515. process will now shut down.
  3516. </para></listitem>
  3517. </varlistentry>
  3518. <varlistentry id="DDNS_STOP_FORWARDER_ERROR">
  3519. <term>DDNS_STOP_FORWARDER_ERROR Error from b10-auth when requesting to stop DDNS UPDATE forwarding: %1</term>
  3520. <listitem><para>
  3521. There was an error response from b10-auth to the command to stop
  3522. forwarding DDNS UPDATE messages to b10-ddns.
  3523. This specific error may not be fatal; instead of returning NOTIMP for future
  3524. DDNS UPDATE messages, it will return SERVFAIL. However, this does point to
  3525. an underlying problem in the messaging system, and should be inspected.
  3526. The error message is printed, and additional information may be found in
  3527. the b10-auth log output.
  3528. </para></listitem>
  3529. </varlistentry>
  3530. <varlistentry id="DDNS_STOP_FORWARDER_FAIL">
  3531. <term>DDNS_STOP_FORWARDER_FAIL Error sending request to stop DDNS UPDATE forwarding to b10-auth: %1</term>
  3532. <listitem><para>
  3533. There was an error when attempting to send b10-auth the request to stop
  3534. forwarding DDNS UPDATE messages to the b10-ddns module. This points to an
  3535. internal problem using the inter-module messaging system.
  3536. This specific error may not be fatal; instead of returning NOTIMP for future
  3537. DDNS UPDATE messages, it will return SERVFAIL. However, this does point to
  3538. an underlying problem in the messaging system, and should be inspected.
  3539. The specific error is printed in the log message.
  3540. </para></listitem>
  3541. </varlistentry>
  3542. <varlistentry id="DDNS_UNCAUGHT_EXCEPTION">
  3543. <term>DDNS_UNCAUGHT_EXCEPTION uncaught exception of type %1: %2</term>
  3544. <listitem><para>
  3545. The b10-ddns process encountered an uncaught exception and will now shut
  3546. down. This is indicative of a programming error and should not happen under
  3547. normal circumstances. The exception type and message are printed.
  3548. </para></listitem>
  3549. </varlistentry>
  3550. <varlistentry id="DDNS_UPDATE_NOTIFY">
  3551. <term>DDNS_UPDATE_NOTIFY notified %1 of updates to %2</term>
  3552. <listitem><para>
  3553. Debug message. b10-ddns has made updates to a zone based on an update
  3554. request and has successfully notified an external module of the updates.
  3555. The notified module will use that information for updating its own
  3556. state or any necessary protocol action such as zone reloading or sending
  3557. notify messages to secondary servers.
  3558. </para></listitem>
  3559. </varlistentry>
  3560. <varlistentry id="DDNS_UPDATE_NOTIFY_FAIL">
  3561. <term>DDNS_UPDATE_NOTIFY_FAIL failed to notify %1 of updates to %2: %3</term>
  3562. <listitem><para>
  3563. b10-ddns has made updates to a zone based on an update request and
  3564. tried to notify an external component of the updates, but the
  3565. notification fails. One possible cause of this is that the external
  3566. component is not really running and it times out in waiting for the
  3567. response, although it will be less likely to happen in practice
  3568. because these components will normally be configured to run when the
  3569. server provides the authoritative DNS service; ddns is rather optional
  3570. among them. If this happens, however, it will suspend b10-ddns for a
  3571. few seconds during which it cannot handle new requests (some may be
  3572. delayed, some may be dropped, depending on the volume of the incoming
  3573. requests). This is obviously bad, and if this error happens due to
  3574. this reason, the administrator should make sure the component in
  3575. question should be configured to run. For a longer term, b10-ddns
  3576. should be more robust about this case such as by making this
  3577. notification asynchronously and/or detecting the existence of the
  3578. external components to avoid hopeless notification in the first place.
  3579. Severity of this error for the receiving components depends on the
  3580. type of the component. If it's b10-xfrout, this means DNS notify
  3581. messages won't be sent to secondary servers of the zone. It's
  3582. suboptimal, but not necessarily critical as the secondary servers will
  3583. try to check the zone's status periodically. If it's b10-auth and the
  3584. notification was needed to have it reload the corresponding zone, it's
  3585. more serious because b10-auth won't be able to serve the new version
  3586. of the zone unless some explicit recovery action is taken. So the
  3587. administrator needs to examine this message and takes an appropriate
  3588. action. In either case, this notification is generally expected to
  3589. succeed; so the fact it fails itself means there's something wrong in
  3590. the BIND 10 system, and it would be advisable to check other log
  3591. messages.
  3592. </para></listitem>
  3593. </varlistentry>
  3594. <varlistentry id="LIBDDNS_DATASRC_ERROR">
  3595. <term>LIBDDNS_DATASRC_ERROR update client %1 failed due to data source error: %2</term>
  3596. <listitem><para>
  3597. An update attempt failed due to some error in the corresponding data
  3598. source. This is generally an unexpected event, but can still happen
  3599. for various reasons such as DB lock contention or a failure of the
  3600. backend DB server. The cause of the error is also logged. It's
  3601. advisable to check the message, and, if necessary, take an appropriate
  3602. action (e.g., restarting the DB server if it dies). If this message
  3603. is logged the data source isn't modified due to the
  3604. corresponding update request. When used by the b10-ddns, the server
  3605. will return a response with an RCODE of SERVFAIL.
  3606. </para></listitem>
  3607. </varlistentry>
  3608. <varlistentry id="LIBDDNS_PREREQ_FORMERR">
  3609. <term>LIBDDNS_PREREQ_FORMERR update client %1 for zone %2: Format error in prerequisite (%3). Non-zero TTL.</term>
  3610. <listitem><para>
  3611. The prerequisite with the given name, class and type is not well-formed.
  3612. The specific prerequisite is shown. In this case, it has a non-zero TTL value.
  3613. A FORMERR error response is sent to the client.
  3614. </para></listitem>
  3615. </varlistentry>
  3616. <varlistentry id="LIBDDNS_PREREQ_FORMERR_ANY">
  3617. <term>LIBDDNS_PREREQ_FORMERR_ANY update client %1 for zone %2: Format error in prerequisite (%3). Non-zero TTL or rdata found.</term>
  3618. <listitem><para>
  3619. The prerequisite with the given name, class and type is not well-formed.
  3620. The specific prerequisite is shown. In this case, it either has a non-zero
  3621. TTL value, or has rdata fields. A FORMERR error response is sent to the client.
  3622. </para></listitem>
  3623. </varlistentry>
  3624. <varlistentry id="LIBDDNS_PREREQ_FORMERR_CLASS">
  3625. <term>LIBDDNS_PREREQ_FORMERR_CLASS update client %1 for zone %2: Format error in prerequisite (%3). Bad class.</term>
  3626. <listitem><para>
  3627. The prerequisite with the given name, class and type is not well-formed.
  3628. The specific prerequisite is shown. In this case, the class of the
  3629. prerequisite should either match the class of the zone in the Zone Section,
  3630. or it should be ANY or NONE, and it is not. A FORMERR error response is sent
  3631. to the client.
  3632. </para></listitem>
  3633. </varlistentry>
  3634. <varlistentry id="LIBDDNS_PREREQ_FORMERR_NONE">
  3635. <term>LIBDDNS_PREREQ_FORMERR_NONE update client %1 for zone %2: Format error in prerequisite (%3). Non-zero TTL or rdata found.</term>
  3636. <listitem><para>
  3637. The prerequisite with the given name, class and type is not well-formed.
  3638. The specific prerequisite is shown. In this case, it either has a non-zero
  3639. TTL value, or has rdata fields. A FORMERR error response is sent to the client.
  3640. </para></listitem>
  3641. </varlistentry>
  3642. <varlistentry id="LIBDDNS_PREREQ_NAME_IN_USE_FAILED">
  3643. <term>LIBDDNS_PREREQ_NAME_IN_USE_FAILED update client %1 for zone %2: 'Name is in use' prerequisite not satisfied (%3), rcode: %4</term>
  3644. <listitem><para>
  3645. A DNS UPDATE prerequisite was not satisfied. The specific prerequisite that
  3646. was not satisfied is shown. The client is sent an error response with the
  3647. given rcode.
  3648. In this case, the specific prerequisite is 'Name is in use'. From RFC2136:
  3649. Name is in use. At least one RR with a specified NAME (in
  3650. the zone and class specified by the Zone Section) must exist.
  3651. Note that this prerequisite is NOT satisfied by empty
  3652. nonterminals.
  3653. </para></listitem>
  3654. </varlistentry>
  3655. <varlistentry id="LIBDDNS_PREREQ_NAME_NOT_IN_USE_FAILED">
  3656. <term>LIBDDNS_PREREQ_NAME_NOT_IN_USE_FAILED update client %1 for zone %2: 'Name is not in use' (%3) prerequisite not satisfied, rcode: %4</term>
  3657. <listitem><para>
  3658. A DNS UPDATE prerequisite was not satisfied. The specific prerequisite that
  3659. was not satisfied is shown. The client is sent an error response with the
  3660. given rcode.
  3661. In this case, the specific prerequisite is 'Name is not in use'.
  3662. From RFC2136:
  3663. Name is not in use. No RR of any type is owned by a
  3664. specified NAME. Note that this prerequisite IS satisfied by
  3665. empty nonterminals.
  3666. </para></listitem>
  3667. </varlistentry>
  3668. <varlistentry id="LIBDDNS_PREREQ_NOTZONE">
  3669. <term>LIBDDNS_PREREQ_NOTZONE update client %1 for zone %2: prerequisite not in zone (%3)</term>
  3670. <listitem><para>
  3671. A DDNS UPDATE prerequisite has a name that does not appear to be inside
  3672. the zone specified in the Zone section of the UPDATE message.
  3673. The specific prerequisite is shown. A NOTZONE error response is sent to
  3674. the client.
  3675. </para></listitem>
  3676. </varlistentry>
  3677. <varlistentry id="LIBDDNS_PREREQ_RRSET_DOES_NOT_EXIST_FAILED">
  3678. <term>LIBDDNS_PREREQ_RRSET_DOES_NOT_EXIST_FAILED update client %1 for zone %2: 'RRset does not exist' (%3) prerequisite not satisfied, rcode: %4</term>
  3679. <listitem><para>
  3680. A DNS UPDATE prerequisite was not satisfied. The specific prerequisite that
  3681. was not satisfied is shown. The client is sent an error response with the
  3682. given rcode.
  3683. In this case, the specific prerequisite is 'RRset does not exist'.
  3684. From RFC2136:
  3685. RRset does not exist. No RRs with a specified NAME and TYPE
  3686. (in the zone and class denoted by the Zone Section) can exist.
  3687. </para></listitem>
  3688. </varlistentry>
  3689. <varlistentry id="LIBDDNS_PREREQ_RRSET_EXISTS_FAILED">
  3690. <term>LIBDDNS_PREREQ_RRSET_EXISTS_FAILED update client %1 for zone %2: 'RRset exists (value independent)' (%3) prerequisite not satisfied, rcode: %4</term>
  3691. <listitem><para>
  3692. A DNS UPDATE prerequisite was not satisfied. The specific prerequisite that
  3693. was not satisfied is shown. The client is sent an error response with the
  3694. given rcode.
  3695. In this case, the specific prerequisite is 'RRset exists (value independent)'.
  3696. From RFC2136:
  3697. RRset exists (value dependent). A set of RRs with a
  3698. specified NAME and TYPE exists and has the same members
  3699. with the same RDATAs as the RRset specified here in this
  3700. Section.
  3701. </para></listitem>
  3702. </varlistentry>
  3703. <varlistentry id="LIBDDNS_PREREQ_RRSET_EXISTS_VAL_FAILED">
  3704. <term>LIBDDNS_PREREQ_RRSET_EXISTS_VAL_FAILED update client %1 for zone %2: 'RRset exists (value dependent)' (%3) prerequisite not satisfied, rcode: %4</term>
  3705. <listitem><para>
  3706. A DNS UPDATE prerequisite was not satisfied. The specific prerequisite that
  3707. was not satisfied is shown. The client is sent an error response with the
  3708. given rcode.
  3709. In this case, the specific prerequisite is 'RRset exists (value dependent)'.
  3710. From RFC2136:
  3711. RRset exists (value independent). At least one RR with a
  3712. specified NAME and TYPE (in the zone and class specified by
  3713. the Zone Section) must exist.
  3714. </para></listitem>
  3715. </varlistentry>
  3716. <varlistentry id="LIBDDNS_UPDATE_ADD_BAD_TYPE">
  3717. <term>LIBDDNS_UPDATE_ADD_BAD_TYPE update client %1 for zone %2: update addition RR bad type: %3</term>
  3718. <listitem><para>
  3719. The Update section of a DDNS update message contains a statement
  3720. that tries to add a record of an invalid type. Most likely the
  3721. record has an RRType that is considered a 'meta' type, which
  3722. cannot be zone content data. The specific record is shown.
  3723. A FORMERR response is sent back to the client.
  3724. </para></listitem>
  3725. </varlistentry>
  3726. <varlistentry id="LIBDDNS_UPDATE_APPROVED">
  3727. <term>LIBDDNS_UPDATE_APPROVED update client %1 for zone %2 approved</term>
  3728. <listitem><para>
  3729. Debug message. An update request was approved in terms of the zone's
  3730. update ACL.
  3731. </para></listitem>
  3732. </varlistentry>
  3733. <varlistentry id="LIBDDNS_UPDATE_BAD_CLASS">
  3734. <term>LIBDDNS_UPDATE_BAD_CLASS update client %1 for zone %2: bad class in update RR: %3</term>
  3735. <listitem><para>
  3736. The Update section of a DDNS update message contains an RRset with
  3737. a bad class. The class of the update RRset must be either the same
  3738. as the class in the Zone Section, ANY, or NONE.
  3739. A FORMERR response is sent back to the client.
  3740. </para></listitem>
  3741. </varlistentry>
  3742. <varlistentry id="LIBDDNS_UPDATE_DATASRC_ERROR">
  3743. <term>LIBDDNS_UPDATE_DATASRC_ERROR error in datasource during DDNS update: %1</term>
  3744. <listitem><para>
  3745. An error occured while committing the DDNS update changes to the
  3746. datasource. The specific error is printed. A SERVFAIL response is sent
  3747. back to the client.
  3748. </para></listitem>
  3749. </varlistentry>
  3750. <varlistentry id="LIBDDNS_UPDATE_DELETE_BAD_TYPE">
  3751. <term>LIBDDNS_UPDATE_DELETE_BAD_TYPE update client %1 for zone %2: update deletion RR bad type: %3</term>
  3752. <listitem><para>
  3753. The Update section of a DDNS update message contains a statement
  3754. that tries to delete an rrset of an invalid type. Most likely the
  3755. record has an RRType that is considered a 'meta' type, which
  3756. cannot be zone content data. The specific record is shown.
  3757. A FORMERR response is sent back to the client.
  3758. </para></listitem>
  3759. </varlistentry>
  3760. <varlistentry id="LIBDDNS_UPDATE_DELETE_NONZERO_TTL">
  3761. <term>LIBDDNS_UPDATE_DELETE_NONZERO_TTL update client %1 for zone %2: update deletion RR has non-zero TTL: %3</term>
  3762. <listitem><para>
  3763. The Update section of a DDNS update message contains a 'delete rrset'
  3764. statement with a non-zero TTL. This is not allowed by the protocol.
  3765. A FORMERR response is sent back to the client.
  3766. </para></listitem>
  3767. </varlistentry>
  3768. <varlistentry id="LIBDDNS_UPDATE_DELETE_RRSET_NOT_EMPTY">
  3769. <term>LIBDDNS_UPDATE_DELETE_RRSET_NOT_EMPTY update client %1 for zone %2: update deletion RR contains data %3</term>
  3770. <listitem><para>
  3771. The Update section of a DDNS update message contains a 'delete rrset'
  3772. statement with a non-empty RRset. This is not allowed by the protocol.
  3773. A FORMERR response is sent back to the client.
  3774. </para></listitem>
  3775. </varlistentry>
  3776. <varlistentry id="LIBDDNS_UPDATE_DELETE_RR_BAD_TYPE">
  3777. <term>LIBDDNS_UPDATE_DELETE_RR_BAD_TYPE update client %1 for zone %2: update deletion RR bad type: %3</term>
  3778. <listitem><para>
  3779. The Update section of a DDNS update message contains a statement
  3780. that tries to delete one or more rrs of an invalid type. Most
  3781. likely the records have an RRType that is considered a 'meta'
  3782. type, which cannot be zone content data. The specific record is
  3783. shown. A FORMERR response is sent back to the client.
  3784. </para></listitem>
  3785. </varlistentry>
  3786. <varlistentry id="LIBDDNS_UPDATE_DELETE_RR_NONZERO_TTL">
  3787. <term>LIBDDNS_UPDATE_DELETE_RR_NONZERO_TTL update client %1 for zone %2: update deletion RR has non-zero TTL: %3</term>
  3788. <listitem><para>
  3789. The Update section of a DDNS update message contains a 'delete rrs'
  3790. statement with a non-zero TTL. This is not allowed by the protocol.
  3791. A FORMERR response is sent back to the client.
  3792. </para></listitem>
  3793. </varlistentry>
  3794. <varlistentry id="LIBDDNS_UPDATE_DENIED">
  3795. <term>LIBDDNS_UPDATE_DENIED update client %1 for zone %2 denied</term>
  3796. <listitem><para>
  3797. Informational message. An update request was denied because it was
  3798. rejected by the zone's update ACL. When this library is used by
  3799. b10-ddns, the server will respond to the request with an RCODE of
  3800. REFUSED as described in Section 3.3 of RFC2136.
  3801. </para></listitem>
  3802. </varlistentry>
  3803. <varlistentry id="LIBDDNS_UPDATE_DROPPED">
  3804. <term>LIBDDNS_UPDATE_DROPPED update client %1 for zone %2 dropped</term>
  3805. <listitem><para>
  3806. Informational message. An update request was denied because it was
  3807. rejected by the zone's update ACL. When this library is used by
  3808. b10-ddns, the server will then completely ignore the request; no
  3809. response will be sent.
  3810. </para></listitem>
  3811. </varlistentry>
  3812. <varlistentry id="LIBDDNS_UPDATE_ERROR">
  3813. <term>LIBDDNS_UPDATE_ERROR update client %1 for zone %2: %3</term>
  3814. <listitem><para>
  3815. Debug message. An error is found in processing a dynamic update
  3816. request. This log message is used for general errors that are not
  3817. normally expected to happen. So, in general, it would mean some
  3818. problem in the client implementation or an interoperability issue
  3819. with this implementation. The client's address, the zone name and
  3820. class, and description of the error are logged.
  3821. </para></listitem>
  3822. </varlistentry>
  3823. <varlistentry id="LIBDDNS_UPDATE_FORWARD_FAIL">
  3824. <term>LIBDDNS_UPDATE_FORWARD_FAIL update client %1 for zone %2: update forwarding not supported</term>
  3825. <listitem><para>
  3826. Debug message. An update request is sent to a secondary server. This
  3827. is not necessarily invalid, but this implementation does not yet
  3828. support update forwarding as specified in Section 6 of RFC2136 and it
  3829. will simply return a response with an RCODE of NOTIMP to the client.
  3830. The client's address and the zone name/class are logged.
  3831. </para></listitem>
  3832. </varlistentry>
  3833. <varlistentry id="LIBDDNS_UPDATE_NOTAUTH">
  3834. <term>LIBDDNS_UPDATE_NOTAUTH update client %1 for zone %2: not authoritative for update zone</term>
  3835. <listitem><para>
  3836. Debug message. An update request was received for a zone for which
  3837. the receiving server doesn't have authority. In theory this is an
  3838. unexpected event, but there are client implementations that could send
  3839. update requests carelessly, so it may not necessarily be so uncommon
  3840. in practice. If possible, you may want to check the implementation or
  3841. configuration of those clients to suppress the requests. As specified
  3842. in Section 3.1 of RFC2136, the receiving server will return a response
  3843. with an RCODE of NOTAUTH.
  3844. </para></listitem>
  3845. </varlistentry>
  3846. <varlistentry id="LIBDDNS_UPDATE_NOTZONE">
  3847. <term>LIBDDNS_UPDATE_NOTZONE update client %1 for zone %2: update RR out of zone %3</term>
  3848. <listitem><para>
  3849. A DDNS UPDATE record has a name that does not appear to be inside
  3850. the zone specified in the Zone section of the UPDATE message.
  3851. The specific update record is shown. A NOTZONE error response is
  3852. sent to the client.
  3853. </para></listitem>
  3854. </varlistentry>
  3855. <varlistentry id="LIBDDNS_UPDATE_PREREQUISITE_FAILED">
  3856. <term>LIBDDNS_UPDATE_PREREQUISITE_FAILED prerequisite failed in update client %1 for zone %2: result code %3</term>
  3857. <listitem><para>
  3858. The handling of the prerequisite section (RFC2136 Section 3.2) found
  3859. that one of the prerequisites was not satisfied. The result code
  3860. should give more information on what prerequisite type failed.
  3861. If the result code is FORMERR, the prerequisite section was not well-formed.
  3862. An error response with the given result code is sent back to the client.
  3863. </para></listitem>
  3864. </varlistentry>
  3865. <varlistentry id="LIBDDNS_UPDATE_UNCAUGHT_EXCEPTION">
  3866. <term>LIBDDNS_UPDATE_UNCAUGHT_EXCEPTION update client %1 for zone %2: uncaught exception while processing update section: %3</term>
  3867. <listitem><para>
  3868. An uncaught exception was encountered while processing the Update
  3869. section of a DDNS message. The specific exception is shown in the log message.
  3870. To make sure DDNS service is not interrupted, this problem is caught instead
  3871. of reraised; The update is aborted, and a SERVFAIL is sent back to the client.
  3872. This is most probably a bug in the DDNS code, but *could* be caused by
  3873. the data source.
  3874. </para></listitem>
  3875. </varlistentry>
  3876. <varlistentry id="LIBXFRIN_DIFFERENT_TTL">
  3877. <term>LIBXFRIN_DIFFERENT_TTL multiple data with different TTLs (%1, %2) on %3/%4/%5. Adjusting %2 -&gt; %1.</term>
  3878. <listitem><para>
  3879. The xfrin module received an update containing multiple rdata changes for the
  3880. same RRset. But the TTLs of these don't match each other. As we combine them
  3881. together, the latter one gets overwritten to the earlier one in the sequence.
  3882. </para></listitem>
  3883. </varlistentry>
  3884. <varlistentry id="LIBXFRIN_NO_JOURNAL">
  3885. <term>LIBXFRIN_NO_JOURNAL disabled journaling for updates to %1 on %2</term>
  3886. <listitem><para>
  3887. An attempt was made to create a Diff object with journaling enabled, but
  3888. the underlying data source didn't support journaling (while still allowing
  3889. updates) and so the created object has it disabled. At a higher level this
  3890. means that the updates will be applied to the zone but subsequent IXFR requests
  3891. will result in a full zone transfer (i.e., an AXFR-style IXFR). Unless the
  3892. overhead of the full transfer is an issue this message can be ignored;
  3893. otherwise you may want to check why the journaling wasn't allowed on the
  3894. data source and either fix the issue or use a different type of data source.
  3895. </para></listitem>
  3896. </varlistentry>
  3897. <varlistentry id="LOGIMPL_ABOVE_MAX_DEBUG">
  3898. <term>LOGIMPL_ABOVE_MAX_DEBUG debug level of %1 is too high and will be set to the maximum of %2</term>
  3899. <listitem><para>
  3900. A message from the interface to the underlying logger implementation reporting
  3901. that the debug level (as set by an internally-created string DEBUGn, where n
  3902. is an integer, e.g. DEBUG22) is above the maximum allowed value and has
  3903. been reduced to that value. The appearance of this message may indicate
  3904. a programming error - please submit a bug report.
  3905. </para></listitem>
  3906. </varlistentry>
  3907. <varlistentry id="LOGIMPL_BAD_DEBUG_STRING">
  3908. <term>LOGIMPL_BAD_DEBUG_STRING debug string '%1' has invalid format</term>
  3909. <listitem><para>
  3910. A message from the interface to the underlying logger implementation
  3911. reporting that an internally-created string used to set the debug level
  3912. is not of the correct format (it should be of the form DEBUGn, where n
  3913. is an integer, e.g. DEBUG22). The appearance of this message indicates
  3914. a programming error - please submit a bug report.
  3915. </para></listitem>
  3916. </varlistentry>
  3917. <varlistentry id="LOGIMPL_BELOW_MIN_DEBUG">
  3918. <term>LOGIMPL_BELOW_MIN_DEBUG debug level of %1 is too low and will be set to the minimum of %2</term>
  3919. <listitem><para>
  3920. A message from the interface to the underlying logger implementation reporting
  3921. that the debug level (as set by an internally-created string DEBUGn, where n
  3922. is an integer, e.g. DEBUG22) is below the minimum allowed value and has
  3923. been increased to that value. The appearance of this message may indicate
  3924. a programming error - please submit a bug report.
  3925. </para></listitem>
  3926. </varlistentry>
  3927. <varlistentry id="LOG_BAD_DESTINATION">
  3928. <term>LOG_BAD_DESTINATION unrecognized log destination: %1</term>
  3929. <listitem><para>
  3930. A logger destination value was given that was not recognized. The
  3931. destination should be one of "console", "file", or "syslog".
  3932. </para></listitem>
  3933. </varlistentry>
  3934. <varlistentry id="LOG_BAD_SEVERITY">
  3935. <term>LOG_BAD_SEVERITY unrecognized log severity: %1</term>
  3936. <listitem><para>
  3937. A logger severity value was given that was not recognized. The severity
  3938. should be one of "DEBUG", "INFO", "WARN", "ERROR", "FATAL" or "NONE".
  3939. </para></listitem>
  3940. </varlistentry>
  3941. <varlistentry id="LOG_BAD_STREAM">
  3942. <term>LOG_BAD_STREAM bad log console output stream: %1</term>
  3943. <listitem><para>
  3944. Logging has been configured so that output is written to the terminal
  3945. (console) but the stream on which it is to be written is not recognised.
  3946. Allowed values are "stdout" and "stderr".
  3947. </para></listitem>
  3948. </varlistentry>
  3949. <varlistentry id="LOG_DUPLICATE_MESSAGE_ID">
  3950. <term>LOG_DUPLICATE_MESSAGE_ID duplicate message ID (%1) in compiled code</term>
  3951. <listitem><para>
  3952. During start-up, BIND 10 detected that the given message identification
  3953. had been defined multiple times in the BIND 10 code. This indicates a
  3954. programming error; please submit a bug report.
  3955. </para></listitem>
  3956. </varlistentry>
  3957. <varlistentry id="LOG_DUPLICATE_NAMESPACE">
  3958. <term>LOG_DUPLICATE_NAMESPACE line %1: duplicate $NAMESPACE directive found</term>
  3959. <listitem><para>
  3960. When reading a message file, more than one $NAMESPACE directive was found.
  3961. (This directive is used to set a C++ namespace when generating header
  3962. files during software development.) Such a condition is regarded as an
  3963. error and the read will be abandoned.
  3964. </para></listitem>
  3965. </varlistentry>
  3966. <varlistentry id="LOG_INPUT_OPEN_FAIL">
  3967. <term>LOG_INPUT_OPEN_FAIL unable to open message file %1 for input: %2</term>
  3968. <listitem><para>
  3969. The program was not able to open the specified input message file for
  3970. the reason given.
  3971. </para></listitem>
  3972. </varlistentry>
  3973. <varlistentry id="LOG_INVALID_MESSAGE_ID">
  3974. <term>LOG_INVALID_MESSAGE_ID line %1: invalid message identification '%2'</term>
  3975. <listitem><para>
  3976. An invalid message identification (ID) has been found during the read of
  3977. a message file. Message IDs should comprise only alphanumeric characters
  3978. and the underscore, and should not start with a digit.
  3979. </para></listitem>
  3980. </varlistentry>
  3981. <varlistentry id="LOG_LOCK_TEST_MESSAGE">
  3982. <term>LOG_LOCK_TEST_MESSAGE this is a test message.</term>
  3983. <listitem><para>
  3984. This is a log message used in testing.
  3985. </para></listitem>
  3986. </varlistentry>
  3987. <varlistentry id="LOG_NAMESPACE_EXTRA_ARGS">
  3988. <term>LOG_NAMESPACE_EXTRA_ARGS line %1: $NAMESPACE directive has too many arguments</term>
  3989. <listitem><para>
  3990. The $NAMESPACE directive in a message file takes a single argument, a
  3991. namespace in which all the generated symbol names are placed. This error
  3992. is generated when the compiler finds a $NAMESPACE directive with more
  3993. than one argument.
  3994. </para></listitem>
  3995. </varlistentry>
  3996. <varlistentry id="LOG_NAMESPACE_INVALID_ARG">
  3997. <term>LOG_NAMESPACE_INVALID_ARG line %1: $NAMESPACE directive has an invalid argument ('%2')</term>
  3998. <listitem><para>
  3999. The $NAMESPACE argument in a message file should be a valid C++ namespace.
  4000. This message is output if the simple check on the syntax of the string
  4001. carried out by the reader fails.
  4002. </para></listitem>
  4003. </varlistentry>
  4004. <varlistentry id="LOG_NAMESPACE_NO_ARGS">
  4005. <term>LOG_NAMESPACE_NO_ARGS line %1: no arguments were given to the $NAMESPACE directive</term>
  4006. <listitem><para>
  4007. The $NAMESPACE directive in a message file takes a single argument,
  4008. a C++ namespace in which all the generated symbol names are placed.
  4009. This error is generated when the compiler finds a $NAMESPACE directive
  4010. with no arguments.
  4011. </para></listitem>
  4012. </varlistentry>
  4013. <varlistentry id="LOG_NO_MESSAGE_ID">
  4014. <term>LOG_NO_MESSAGE_ID line %1: message definition line found without a message ID</term>
  4015. <listitem><para>
  4016. Within a message file, message are defined by lines starting with a "%".
  4017. The rest of the line should comprise the message ID and text describing
  4018. the message. This error indicates the message compiler found a line in
  4019. the message file comprising just the "%" and nothing else.
  4020. </para></listitem>
  4021. </varlistentry>
  4022. <varlistentry id="LOG_NO_MESSAGE_TEXT">
  4023. <term>LOG_NO_MESSAGE_TEXT line %1: line found containing a message ID ('%2') and no text</term>
  4024. <listitem><para>
  4025. Within a message file, message are defined by lines starting with a "%".
  4026. The rest of the line should comprise the message ID and text describing
  4027. the message. This error indicates the message compiler found a line
  4028. in the message file comprising just the "%" and message identification,
  4029. but no text.
  4030. </para></listitem>
  4031. </varlistentry>
  4032. <varlistentry id="LOG_NO_SUCH_MESSAGE">
  4033. <term>LOG_NO_SUCH_MESSAGE could not replace message text for '%1': no such message</term>
  4034. <listitem><para>
  4035. During start-up a local message file was read. A line with the listed
  4036. message identification was found in the file, but the identification is
  4037. not one contained in the compiled-in message dictionary. This message
  4038. may appear a number of times in the file, once for every such unknown
  4039. message identification.
  4040. </para><para>
  4041. There may be several reasons why this message may appear:
  4042. </para><para>
  4043. - The message ID has been mis-spelled in the local message file.
  4044. </para><para>
  4045. - The program outputting the message may not use that particular message
  4046. (e.g. it originates in a module not used by the program.)
  4047. </para><para>
  4048. - The local file was written for an earlier version of the BIND 10 software
  4049. and the later version no longer generates that message.
  4050. </para><para>
  4051. Whatever the reason, there is no impact on the operation of BIND 10.
  4052. </para></listitem>
  4053. </varlistentry>
  4054. <varlistentry id="LOG_OPEN_OUTPUT_FAIL">
  4055. <term>LOG_OPEN_OUTPUT_FAIL unable to open %1 for output: %2</term>
  4056. <listitem><para>
  4057. Originating within the logging code, the program was not able to open
  4058. the specified output file for the reason given.
  4059. </para></listitem>
  4060. </varlistentry>
  4061. <varlistentry id="LOG_PREFIX_EXTRA_ARGS">
  4062. <term>LOG_PREFIX_EXTRA_ARGS line %1: $PREFIX directive has too many arguments</term>
  4063. <listitem><para>
  4064. Within a message file, the $PREFIX directive takes a single argument,
  4065. a prefix to be added to the symbol names when a C++ file is created.
  4066. This error is generated when the compiler finds a $PREFIX directive with
  4067. more than one argument.
  4068. </para><para>
  4069. Note: the $PREFIX directive is deprecated and will be removed in a future
  4070. version of BIND 10.
  4071. </para></listitem>
  4072. </varlistentry>
  4073. <varlistentry id="LOG_PREFIX_INVALID_ARG">
  4074. <term>LOG_PREFIX_INVALID_ARG line %1: $PREFIX directive has an invalid argument ('%2')</term>
  4075. <listitem><para>
  4076. Within a message file, the $PREFIX directive takes a single argument,
  4077. a prefix to be added to the symbol names when a C++ file is created.
  4078. As such, it must adhere to restrictions on C++ symbol names (e.g. may
  4079. only contain alphanumeric characters or underscores, and may nor start
  4080. with a digit). A $PREFIX directive was found with an argument (given
  4081. in the message) that violates those restrictions.
  4082. </para><para>
  4083. Note: the $PREFIX directive is deprecated and will be removed in a future
  4084. version of BIND 10.
  4085. </para></listitem>
  4086. </varlistentry>
  4087. <varlistentry id="LOG_READING_LOCAL_FILE">
  4088. <term>LOG_READING_LOCAL_FILE reading local message file %1</term>
  4089. <listitem><para>
  4090. This is an informational message output by BIND 10 when it starts to read
  4091. a local message file. (A local message file may replace the text of
  4092. one of more messages; the ID of the message will not be changed though.)
  4093. </para></listitem>
  4094. </varlistentry>
  4095. <varlistentry id="LOG_READ_ERROR">
  4096. <term>LOG_READ_ERROR error reading from message file %1: %2</term>
  4097. <listitem><para>
  4098. The specified error was encountered reading from the named message file.
  4099. </para></listitem>
  4100. </varlistentry>
  4101. <varlistentry id="LOG_UNRECOGNISED_DIRECTIVE">
  4102. <term>LOG_UNRECOGNISED_DIRECTIVE line %1: unrecognised directive '%2'</term>
  4103. <listitem><para>
  4104. Within a message file, a line starting with a dollar symbol was found
  4105. (indicating the presence of a directive) but the first word on the line
  4106. (shown in the message) was not recognised.
  4107. </para></listitem>
  4108. </varlistentry>
  4109. <varlistentry id="LOG_WRITE_ERROR">
  4110. <term>LOG_WRITE_ERROR error writing to %1: %2</term>
  4111. <listitem><para>
  4112. The specified error was encountered by the message compiler when writing
  4113. to the named output file.
  4114. </para></listitem>
  4115. </varlistentry>
  4116. <varlistentry id="NOTIFY_OUT_DATASRC_ACCESS_FAILURE">
  4117. <term>NOTIFY_OUT_DATASRC_ACCESS_FAILURE failed to get access to data source: %1</term>
  4118. <listitem><para>
  4119. notify_out failed to get access to one of configured data sources.
  4120. Detailed error is shown in the log message. This can be either a
  4121. configuration error or installation setup failure.
  4122. </para></listitem>
  4123. </varlistentry>
  4124. <varlistentry id="NOTIFY_OUT_DATASRC_ZONE_NOT_FOUND">
  4125. <term>NOTIFY_OUT_DATASRC_ZONE_NOT_FOUND Zone %1 is not found</term>
  4126. <listitem><para>
  4127. notify_out attempted to get slave information of a zone but the zone
  4128. isn't found in the expected data source. This shouldn't happen,
  4129. because notify_out first identifies a list of available zones before
  4130. this process. So this means some critical inconsistency in the data
  4131. source or software bug.
  4132. </para></listitem>
  4133. </varlistentry>
  4134. <varlistentry id="NOTIFY_OUT_INVALID_ADDRESS">
  4135. <term>NOTIFY_OUT_INVALID_ADDRESS invalid address %1#%2: %3</term>
  4136. <listitem><para>
  4137. The notify_out library tried to send a notify message to the given
  4138. address, but it appears to be an invalid address. The configuration
  4139. for secondary nameservers might contain a typographic error, or a
  4140. different BIND 10 module has forgotten to validate its data before
  4141. sending this module a notify command. As such, this should normally
  4142. not happen, and points to an oversight in a different module.
  4143. </para></listitem>
  4144. </varlistentry>
  4145. <varlistentry id="NOTIFY_OUT_REPLY_BAD_OPCODE">
  4146. <term>NOTIFY_OUT_REPLY_BAD_OPCODE bad opcode in notify reply from %1#%2: %3</term>
  4147. <listitem><para>
  4148. The notify_out library sent a notify message to the nameserver at
  4149. the given address, but the response did not have the opcode set to
  4150. NOTIFY. The opcode in the response is printed. Since there was a
  4151. response, no more notifies will be sent to this server for this
  4152. notification event.
  4153. </para></listitem>
  4154. </varlistentry>
  4155. <varlistentry id="NOTIFY_OUT_REPLY_BAD_QID">
  4156. <term>NOTIFY_OUT_REPLY_BAD_QID bad QID in notify reply from %1#%2: got %3, should be %4</term>
  4157. <listitem><para>
  4158. The notify_out library sent a notify message to the nameserver at
  4159. the given address, but the query id in the response does not match
  4160. the one we sent. Since there was a response, no more notifies will
  4161. be sent to this server for this notification event.
  4162. </para></listitem>
  4163. </varlistentry>
  4164. <varlistentry id="NOTIFY_OUT_REPLY_BAD_QUERY_NAME">
  4165. <term>NOTIFY_OUT_REPLY_BAD_QUERY_NAME bad query name in notify reply from %1#%2: got %3, should be %4</term>
  4166. <listitem><para>
  4167. The notify_out library sent a notify message to the nameserver at
  4168. the given address, but the query name in the response does not match
  4169. the one we sent. Since there was a response, no more notifies will
  4170. be sent to this server for this notification event.
  4171. </para></listitem>
  4172. </varlistentry>
  4173. <varlistentry id="NOTIFY_OUT_REPLY_QR_NOT_SET">
  4174. <term>NOTIFY_OUT_REPLY_QR_NOT_SET QR flags set to 0 in reply to notify from %1#%2</term>
  4175. <listitem><para>
  4176. The notify_out library sent a notify message to the namesever at the
  4177. given address, but the reply did not have the QR bit set to one.
  4178. Since there was a response, no more notifies will be sent to this
  4179. server for this notification event.
  4180. </para></listitem>
  4181. </varlistentry>
  4182. <varlistentry id="NOTIFY_OUT_REPLY_UNCAUGHT_EXCEPTION">
  4183. <term>NOTIFY_OUT_REPLY_UNCAUGHT_EXCEPTION uncaught exception: %1</term>
  4184. <listitem><para>
  4185. There was an uncaught exception in the handling of a notify reply
  4186. message, either in the message parser, or while trying to extract data
  4187. from the parsed message. The error is printed, and notify_out will
  4188. treat the response as a bad message, but this does point to a
  4189. programming error, since all exceptions should have been caught
  4190. explicitly. Please file a bug report. Since there was a response,
  4191. no more notifies will be sent to this server for this notification
  4192. event.
  4193. </para></listitem>
  4194. </varlistentry>
  4195. <varlistentry id="NOTIFY_OUT_RETRY_EXCEEDED">
  4196. <term>NOTIFY_OUT_RETRY_EXCEEDED notify to %1#%2: number of retries (%3) exceeded</term>
  4197. <listitem><para>
  4198. The maximum number of retries for the notify target has been exceeded.
  4199. Either the address of the secondary nameserver is wrong, or it is not
  4200. responding.
  4201. </para></listitem>
  4202. </varlistentry>
  4203. <varlistentry id="NOTIFY_OUT_SENDING_NOTIFY">
  4204. <term>NOTIFY_OUT_SENDING_NOTIFY sending notify to %1#%2</term>
  4205. <listitem><para>
  4206. A notify message is sent to the secondary nameserver at the given
  4207. address.
  4208. </para></listitem>
  4209. </varlistentry>
  4210. <varlistentry id="NOTIFY_OUT_SOCKET_ERROR">
  4211. <term>NOTIFY_OUT_SOCKET_ERROR socket error sending notify to %1#%2: %3</term>
  4212. <listitem><para>
  4213. There was a network error while trying to send a notify message to
  4214. the given address. The address might be unreachable. The socket
  4215. error is printed and should provide more information.
  4216. </para></listitem>
  4217. </varlistentry>
  4218. <varlistentry id="NOTIFY_OUT_SOCKET_RECV_ERROR">
  4219. <term>NOTIFY_OUT_SOCKET_RECV_ERROR socket error reading notify reply from %1#%2: %3</term>
  4220. <listitem><para>
  4221. There was a network error while trying to read a notify reply
  4222. message from the given address. The socket error is printed and should
  4223. provide more information.
  4224. </para></listitem>
  4225. </varlistentry>
  4226. <varlistentry id="NOTIFY_OUT_TIMEOUT">
  4227. <term>NOTIFY_OUT_TIMEOUT retry notify to %1#%2</term>
  4228. <listitem><para>
  4229. The notify message to the given address (noted as address#port) has
  4230. timed out, and the message will be resent until the max retry limit
  4231. is reached.
  4232. </para></listitem>
  4233. </varlistentry>
  4234. <varlistentry id="NOTIFY_OUT_ZONE_BAD_SOA">
  4235. <term>NOTIFY_OUT_ZONE_BAD_SOA Zone %1 is invalid in terms of SOA</term>
  4236. <listitem><para>
  4237. This is a warning issued when the notify_out module finds a zone that
  4238. doesn't have an SOA RR or has multiple SOA RRs. Notify message won't
  4239. be sent to such a zone.
  4240. </para></listitem>
  4241. </varlistentry>
  4242. <varlistentry id="NOTIFY_OUT_ZONE_NO_NS">
  4243. <term>NOTIFY_OUT_ZONE_NO_NS Zone %1 doesn't have NS RR</term>
  4244. <listitem><para>
  4245. This is a warning issued when the notify_out module finds a zone that
  4246. doesn't have an NS RR. Notify message won't be sent to such a zone.
  4247. </para></listitem>
  4248. </varlistentry>
  4249. <varlistentry id="NSAS_EMPTY_RESPONSE">
  4250. <term>NSAS_EMPTY_RESPONSE response to query for %1 returned an empty answer section</term>
  4251. <listitem><para>
  4252. The NSAS (nameserver address store - part of the resolver) made a query
  4253. for information it needed. The query completed successfully but the
  4254. answer section in the response was empty.
  4255. </para></listitem>
  4256. </varlistentry>
  4257. <varlistentry id="NSAS_ERROR_RESPONSE">
  4258. <term>NSAS_ERROR_RESPONSE error response of %1 returned in query for %2</term>
  4259. <listitem><para>
  4260. The NSAS (nameserver address store - part of the resolver) made a query
  4261. for information it needed. The query completed successfully but the
  4262. RCODE in the response was something other than NOERROR.
  4263. </para></listitem>
  4264. </varlistentry>
  4265. <varlistentry id="NSAS_FIND_NS_ADDRESS">
  4266. <term>NSAS_FIND_NS_ADDRESS asking resolver to obtain A and AAAA records for %1</term>
  4267. <listitem><para>
  4268. A debug message issued when the NSAS (nameserver address store - part
  4269. of the resolver) is making a callback into the resolver to retrieve the
  4270. address records for the specified nameserver.
  4271. </para></listitem>
  4272. </varlistentry>
  4273. <varlistentry id="NSAS_FOUND_ADDRESS">
  4274. <term>NSAS_FOUND_ADDRESS found address %1 for %2</term>
  4275. <listitem><para>
  4276. A debug message issued when the NSAS (nameserver address store - part
  4277. of the resolver) has retrieved the given address for the specified
  4278. nameserver through an external query.
  4279. </para></listitem>
  4280. </varlistentry>
  4281. <varlistentry id="NSAS_LOOKUP_CANCEL">
  4282. <term>NSAS_LOOKUP_CANCEL lookup for zone %1 has been canceled</term>
  4283. <listitem><para>
  4284. A debug message issued when an NSAS (nameserver address store - part of
  4285. the resolver) lookup for a zone has been canceled.
  4286. </para></listitem>
  4287. </varlistentry>
  4288. <varlistentry id="NSAS_NS_LOOKUP_FAIL">
  4289. <term>NSAS_NS_LOOKUP_FAIL failed to lookup any %1 for %2</term>
  4290. <listitem><para>
  4291. A debug message issued when the NSAS (nameserver address store - part of
  4292. the resolver) has been unable to retrieve the specified resource record
  4293. for the specified nameserver. This is not necessarily a problem - the
  4294. nameserver may be unreachable, in which case the NSAS will try other
  4295. nameservers in the zone.
  4296. </para></listitem>
  4297. </varlistentry>
  4298. <varlistentry id="NSAS_NULL_RESPONSE">
  4299. <term>NSAS_NULL_RESPONSE got null message in success callback for query for %1</term>
  4300. <listitem><para>
  4301. The NSAS (nameserver address store - part of the resolver) made a query
  4302. for information it needed. The query completed successfully, but the
  4303. message passed to the callback was null.
  4304. </para><para>
  4305. This message indicates an internal error in the NSAS. Please raise a
  4306. bug report.
  4307. </para></listitem>
  4308. </varlistentry>
  4309. <varlistentry id="NSAS_SEARCH_ZONE_NS">
  4310. <term>NSAS_SEARCH_ZONE_NS searching NSAS for nameservers for zone %1</term>
  4311. <listitem><para>
  4312. A debug message output when a call is made to the NSAS (nameserver
  4313. address store - part of the resolver) to obtain the nameservers for
  4314. the specified zone.
  4315. </para></listitem>
  4316. </varlistentry>
  4317. <varlistentry id="NSAS_UPDATE_RTT">
  4318. <term>NSAS_UPDATE_RTT update RTT for %1: was %2 ms, is now %3 ms</term>
  4319. <listitem><para>
  4320. A NSAS (nameserver address store - part of the resolver) debug message
  4321. reporting the update of a round-trip time (RTT) for a query made to the
  4322. specified nameserver. The RTT has been updated using the value given
  4323. and the new RTT is displayed. (The RTT is subject to a calculation that
  4324. damps out sudden changes. As a result, the new RTT used by the NSAS in
  4325. future decisions of which nameserver to use is not necessarily equal to
  4326. the RTT reported.)
  4327. </para></listitem>
  4328. </varlistentry>
  4329. <varlistentry id="NSAS_WRONG_ANSWER">
  4330. <term>NSAS_WRONG_ANSWER queried for %1 RR of type/class %2/%3, received response %4/%5</term>
  4331. <listitem><para>
  4332. A NSAS (nameserver address store - part of the resolver) made a query for
  4333. a resource record of a particular type and class, but instead received
  4334. an answer with a different given type and class.
  4335. </para><para>
  4336. This message indicates an internal error in the NSAS. Please raise a
  4337. bug report.
  4338. </para></listitem>
  4339. </varlistentry>
  4340. <varlistentry id="PYSERVER_COMMON_DNS_TCP_SEND_DONE">
  4341. <term>PYSERVER_COMMON_DNS_TCP_SEND_DONE completed sending TCP message to %1 (%2 bytes in total)</term>
  4342. <listitem><para>
  4343. Debug message. A complete DNS message has been successfully
  4344. transmitted over a TCP connection, possibly after multiple send
  4345. operations. The destination address and the total size of the message
  4346. (including the 2-byte length field) are shown in the log message.
  4347. </para></listitem>
  4348. </varlistentry>
  4349. <varlistentry id="PYSERVER_COMMON_DNS_TCP_SEND_ERROR">
  4350. <term>PYSERVER_COMMON_DNS_TCP_SEND_ERROR failed to send TCP message to %1 (%2/%3 bytes sent): %4</term>
  4351. <listitem><para>
  4352. A DNS message has been attempted to be sent out over a TCP connection,
  4353. but it failed due to some network error. Although it's not expected
  4354. to happen too often, it can still happen for various reasons. The
  4355. administrator may want to examine the cause of the failure, which is
  4356. included in the log message, to see if it requires some action to
  4357. be taken at the server side. When this message is logged, the
  4358. corresponding TCP connection was closed immediately after the error
  4359. was detected.
  4360. </para></listitem>
  4361. </varlistentry>
  4362. <varlistentry id="PYSERVER_COMMON_DNS_TCP_SEND_PENDING">
  4363. <term>PYSERVER_COMMON_DNS_TCP_SEND_PENDING sent part TCP message to %1 (up to %2/%3 bytes)</term>
  4364. <listitem><para>
  4365. Debug message. A part of DNS message has been transmitted over a TCP
  4366. connection, and it's suspended because further attempt would block.
  4367. The destination address and the total size of the message that has
  4368. been transmitted so far (including the 2-byte length field) are shown
  4369. in the log message.
  4370. </para></listitem>
  4371. </varlistentry>
  4372. <varlistentry id="PYSERVER_COMMON_TSIG_KEYRING_DEINIT">
  4373. <term>PYSERVER_COMMON_TSIG_KEYRING_DEINIT Deinitializing global TSIG keyring</term>
  4374. <listitem><para>
  4375. A debug message noting that the global TSIG keyring is being removed from
  4376. memory. Most programs don't do that, they just exit, which is OK.
  4377. </para></listitem>
  4378. </varlistentry>
  4379. <varlistentry id="PYSERVER_COMMON_TSIG_KEYRING_INIT">
  4380. <term>PYSERVER_COMMON_TSIG_KEYRING_INIT Initializing global TSIG keyring</term>
  4381. <listitem><para>
  4382. A debug message noting the TSIG keyring storage is being prepared. It should
  4383. appear at most once in the lifetime of a program. The keyring still needs
  4384. to be loaded from configuration.
  4385. </para></listitem>
  4386. </varlistentry>
  4387. <varlistentry id="PYSERVER_COMMON_TSIG_KEYRING_UPDATE">
  4388. <term>PYSERVER_COMMON_TSIG_KEYRING_UPDATE Updating global TSIG keyring</term>
  4389. <listitem><para>
  4390. A debug message. The TSIG keyring is being (re)loaded from configuration.
  4391. This happens at startup or when the configuration changes. The old keyring
  4392. is removed and new one created with all the keys.
  4393. </para></listitem>
  4394. </varlistentry>
  4395. <varlistentry id="RESLIB_ANSWER">
  4396. <term>RESLIB_ANSWER answer received in response to query for &lt;%1&gt;</term>
  4397. <listitem><para>
  4398. A debug message reporting that an answer has been received to an upstream
  4399. query for the specified question. Previous debug messages will have
  4400. indicated the server to which the question was sent.
  4401. </para></listitem>
  4402. </varlistentry>
  4403. <varlistentry id="RESLIB_CNAME">
  4404. <term>RESLIB_CNAME CNAME received in response to query for &lt;%1&gt;</term>
  4405. <listitem><para>
  4406. A debug message recording that CNAME response has been received to an
  4407. upstream query for the specified question. Previous debug messages will
  4408. have indicated the server to which the question was sent.
  4409. </para></listitem>
  4410. </varlistentry>
  4411. <varlistentry id="RESLIB_DEEPEST">
  4412. <term>RESLIB_DEEPEST did not find &lt;%1&gt; in cache, deepest delegation found is %2</term>
  4413. <listitem><para>
  4414. A debug message, a cache lookup did not find the specified &lt;name,
  4415. class, type&gt; tuple in the cache; instead, the deepest delegation found
  4416. is indicated.
  4417. </para></listitem>
  4418. </varlistentry>
  4419. <varlistentry id="RESLIB_EMPTY_RESPONSE">
  4420. <term>RESLIB_EMPTY_RESPONSE empty response received to query for &lt;%1&gt;</term>
  4421. <listitem><para>
  4422. A debug message, the response to the specified query from an upstream
  4423. nameserver did not contain anything in the answer or authority sections,
  4424. although in all other respects it was a valid response. A SERVFAIL will
  4425. be returned to the system making the original query.
  4426. </para></listitem>
  4427. </varlistentry>
  4428. <varlistentry id="RESLIB_ERROR_RESPONSE">
  4429. <term>RESLIB_ERROR_RESPONSE unspecified error received in response to query for &lt;%1&gt;</term>
  4430. <listitem><para>
  4431. A debug message, the response to the specified query to an upstream
  4432. nameserver indicated that the response was classified as an erroneous
  4433. response, but that the nature of the error cannot be identified.
  4434. A SERVFAIL will be returned to the system making the original query.
  4435. </para></listitem>
  4436. </varlistentry>
  4437. <varlistentry id="RESLIB_EXTRADATA_RESPONSE">
  4438. <term>RESLIB_EXTRADATA_RESPONSE extra data in response to query for &lt;%1&gt;</term>
  4439. <listitem><para>
  4440. A debug message indicating that the response to the specified query
  4441. from an upstream nameserver contained too much data. This can happen if
  4442. an ANY query was sent and the answer section in the response contained
  4443. multiple RRs with different names. A SERVFAIL will be returned to the
  4444. system making the original query.
  4445. </para></listitem>
  4446. </varlistentry>
  4447. <varlistentry id="RESLIB_FOLLOW_CNAME">
  4448. <term>RESLIB_FOLLOW_CNAME following CNAME chain to &lt;%1&gt;</term>
  4449. <listitem><para>
  4450. A debug message, a CNAME response was received and another query is
  4451. being issued for the &lt;name, class, type&gt; tuple.
  4452. </para></listitem>
  4453. </varlistentry>
  4454. <varlistentry id="RESLIB_INVALID_NAMECLASS_RESPONSE">
  4455. <term>RESLIB_INVALID_NAMECLASS_RESPONSE invalid name or class in response to query for &lt;%1&gt;</term>
  4456. <listitem><para>
  4457. A debug message, the response to the specified query from an upstream
  4458. nameserver (as identified by the ID of the response) contained either
  4459. an answer not matching the query name or an answer having a different
  4460. class to that queried for. A SERVFAIL will be returned to the system
  4461. making the original query.
  4462. </para></listitem>
  4463. </varlistentry>
  4464. <varlistentry id="RESLIB_INVALID_QNAME_RESPONSE">
  4465. <term>RESLIB_INVALID_QNAME_RESPONSE invalid name or class in response to query for &lt;%1&gt;</term>
  4466. <listitem><para>
  4467. A debug message, the response to the specified query from an upstream
  4468. nameserver (as identified by the ID of the response) contained a name
  4469. in the question section that did not match that of the query. A SERVFAIL
  4470. will be returned to the system making the original query.
  4471. </para></listitem>
  4472. </varlistentry>
  4473. <varlistentry id="RESLIB_INVALID_TYPE_RESPONSE">
  4474. <term>RESLIB_INVALID_TYPE_RESPONSE invalid name or class in response to query for &lt;%1&gt;</term>
  4475. <listitem><para>
  4476. A debug message, the response to the specified query from an upstream
  4477. nameserver (as identified by the ID of the response) contained an
  4478. invalid type field. A SERVFAIL will be returned to the system making
  4479. the original query.
  4480. </para></listitem>
  4481. </varlistentry>
  4482. <varlistentry id="RESLIB_LONG_CHAIN">
  4483. <term>RESLIB_LONG_CHAIN CNAME received in response to query for &lt;%1&gt;: CNAME chain length exceeded</term>
  4484. <listitem><para>
  4485. A debug message recording that a CNAME response has been received to an upstream
  4486. query for the specified question (Previous debug messages will have indicated
  4487. the server to which the question was sent). However, receipt of this CNAME
  4488. has meant that the resolver has exceeded the CNAME chain limit (a CNAME chain
  4489. is where on CNAME points to another) and so an error is being returned.
  4490. </para></listitem>
  4491. </varlistentry>
  4492. <varlistentry id="RESLIB_MULTIPLE_CLASS_RESPONSE">
  4493. <term>RESLIB_MULTIPLE_CLASS_RESPONSE response to query for &lt;%1&gt; contained multiple RRsets with different classes</term>
  4494. <listitem><para>
  4495. A debug message reporting that the response to an upstream query for
  4496. the specified name contained multiple RRsets in the answer and not all
  4497. were of the same class. This is a violation of the standard and so a
  4498. SERVFAIL will be returned.
  4499. </para></listitem>
  4500. </varlistentry>
  4501. <varlistentry id="RESLIB_NOTSINGLE_RESPONSE">
  4502. <term>RESLIB_NOTSINGLE_RESPONSE response to query for &lt;%1&gt; was not a response</term>
  4503. <listitem><para>
  4504. A debug message, the response to the specified query from an upstream
  4505. nameserver was a CNAME that had mutiple RRs in the RRset. This is
  4506. an invalid response according to the standards so a SERVFAIL will be
  4507. returned to the system making the original query.
  4508. </para></listitem>
  4509. </varlistentry>
  4510. <varlistentry id="RESLIB_NOT_ONE_QNAME_RESPONSE">
  4511. <term>RESLIB_NOT_ONE_QNAME_RESPONSE not one question in response to query for &lt;%1&gt;</term>
  4512. <listitem><para>
  4513. A debug message, the response to the specified query from an upstream
  4514. nameserver (as identified by the ID of the response) did not contain
  4515. one name in the question section as required by the standard. A SERVFAIL
  4516. will be returned to the system making the original query.
  4517. </para></listitem>
  4518. </varlistentry>
  4519. <varlistentry id="RESLIB_NOT_RESPONSE">
  4520. <term>RESLIB_NOT_RESPONSE response to query for &lt;%1&gt; was not a response</term>
  4521. <listitem><para>
  4522. A debug message, the response to the specified query from an upstream
  4523. nameserver (as identified by the ID of the response) did not have the QR
  4524. bit set (thus indicating that the packet was a query, not a response).
  4525. A SERVFAIL will be returned to the system making the original query.
  4526. </para></listitem>
  4527. </varlistentry>
  4528. <varlistentry id="RESLIB_NO_NS_RRSET">
  4529. <term>RESLIB_NO_NS_RRSET no NS RRSet in referral response received to query for &lt;%1&gt;</term>
  4530. <listitem><para>
  4531. A debug message, this indicates that a response was received for the specified
  4532. query and was categorized as a referral. However, the received message did
  4533. not contain any NS RRsets. This may indicate a programming error in the
  4534. response classification code.
  4535. </para></listitem>
  4536. </varlistentry>
  4537. <varlistentry id="RESLIB_NSAS_LOOKUP">
  4538. <term>RESLIB_NSAS_LOOKUP looking up nameserver for zone %1 in the NSAS</term>
  4539. <listitem><para>
  4540. A debug message, the RunningQuery object is querying the NSAS for the
  4541. nameservers for the specified zone.
  4542. </para></listitem>
  4543. </varlistentry>
  4544. <varlistentry id="RESLIB_NXDOM_NXRR">
  4545. <term>RESLIB_NXDOM_NXRR NXDOMAIN/NXRRSET received in response to query for &lt;%1&gt;</term>
  4546. <listitem><para>
  4547. A debug message recording that either a NXDOMAIN or an NXRRSET response has
  4548. been received to an upstream query for the specified question. Previous debug
  4549. messages will have indicated the server to which the question was sent.
  4550. </para></listitem>
  4551. </varlistentry>
  4552. <varlistentry id="RESLIB_OPCODE_RESPONSE">
  4553. <term>RESLIB_OPCODE_RESPONSE response to query for &lt;%1&gt; did not have query opcode</term>
  4554. <listitem><para>
  4555. A debug message, the response to the specified query from an upstream
  4556. nameserver was a response that did not have the opcode set to that of
  4557. a query. According to the standards, this is an invalid response to
  4558. the query that was made, so a SERVFAIL will be returned to the system
  4559. making the original query.
  4560. </para></listitem>
  4561. </varlistentry>
  4562. <varlistentry id="RESLIB_PROTOCOL">
  4563. <term>RESLIB_PROTOCOL protocol error in answer for %1: %3</term>
  4564. <listitem><para>
  4565. A debug message indicating that a protocol error was received. As there
  4566. are no retries left, an error will be reported.
  4567. </para></listitem>
  4568. </varlistentry>
  4569. <varlistentry id="RESLIB_PROTOCOL_RETRY">
  4570. <term>RESLIB_PROTOCOL_RETRY protocol error in answer for %1: %2 (retries left: %3)</term>
  4571. <listitem><para>
  4572. A debug message indicating that a protocol error was received and that
  4573. the resolver is repeating the query to the same nameserver. After this
  4574. repeated query, there will be the indicated number of retries left.
  4575. </para></listitem>
  4576. </varlistentry>
  4577. <varlistentry id="RESLIB_RCODE_ERROR">
  4578. <term>RESLIB_RCODE_ERROR response to query for &lt;%1&gt; returns RCODE of %2</term>
  4579. <listitem><para>
  4580. A debug message, the response to the specified query indicated an error
  4581. that is not covered by a specific code path. A SERVFAIL will be returned.
  4582. </para></listitem>
  4583. </varlistentry>
  4584. <varlistentry id="RESLIB_RECQ_CACHE_FIND">
  4585. <term>RESLIB_RECQ_CACHE_FIND found &lt;%1&gt; in the cache (resolve() instance %2)</term>
  4586. <listitem><para>
  4587. This is a debug message and indicates that a RecursiveQuery object found the
  4588. the specified &lt;name, class, type&gt; tuple in the cache. The instance number
  4589. at the end of the message indicates which of the two resolve() methods has
  4590. been called.
  4591. </para></listitem>
  4592. </varlistentry>
  4593. <varlistentry id="RESLIB_RECQ_CACHE_NO_FIND">
  4594. <term>RESLIB_RECQ_CACHE_NO_FIND did not find &lt;%1&gt; in the cache, starting RunningQuery (resolve() instance %2)</term>
  4595. <listitem><para>
  4596. This is a debug message and indicates that the look in the cache made by the
  4597. RecursiveQuery::resolve() method did not find an answer, so a new RunningQuery
  4598. object has been created to resolve the question. The instance number at
  4599. the end of the message indicates which of the two resolve() methods has
  4600. been called.
  4601. </para></listitem>
  4602. </varlistentry>
  4603. <varlistentry id="RESLIB_REFERRAL">
  4604. <term>RESLIB_REFERRAL referral received in response to query for &lt;%1&gt;</term>
  4605. <listitem><para>
  4606. A debug message recording that a referral response has been received to an
  4607. upstream query for the specified question. Previous debug messages will
  4608. have indicated the server to which the question was sent.
  4609. </para></listitem>
  4610. </varlistentry>
  4611. <varlistentry id="RESLIB_REFER_ZONE">
  4612. <term>RESLIB_REFER_ZONE referred to zone %1</term>
  4613. <listitem><para>
  4614. A debug message indicating that the last referral message was to the specified
  4615. zone.
  4616. </para></listitem>
  4617. </varlistentry>
  4618. <varlistentry id="RESLIB_RESOLVE">
  4619. <term>RESLIB_RESOLVE asked to resolve &lt;%1&gt; (resolve() instance %2)</term>
  4620. <listitem><para>
  4621. A debug message, the RecursiveQuery::resolve method has been called to resolve
  4622. the specified &lt;name, class, type&gt; tuple. The first action will be to lookup
  4623. the specified tuple in the cache. The instance number at the end of the
  4624. message indicates which of the two resolve() methods has been called.
  4625. </para></listitem>
  4626. </varlistentry>
  4627. <varlistentry id="RESLIB_RRSET_FOUND">
  4628. <term>RESLIB_RRSET_FOUND found single RRset in the cache when querying for &lt;%1&gt; (resolve() instance %2)</term>
  4629. <listitem><para>
  4630. A debug message, indicating that when RecursiveQuery::resolve queried the
  4631. cache, a single RRset was found which was put in the answer. The instance
  4632. number at the end of the message indicates which of the two resolve()
  4633. methods has been called.
  4634. </para></listitem>
  4635. </varlistentry>
  4636. <varlistentry id="RESLIB_RTT">
  4637. <term>RESLIB_RTT round-trip time of last query calculated as %1 ms</term>
  4638. <listitem><para>
  4639. A debug message giving the round-trip time of the last query and response.
  4640. </para></listitem>
  4641. </varlistentry>
  4642. <varlistentry id="RESLIB_RUNQ_CACHE_FIND">
  4643. <term>RESLIB_RUNQ_CACHE_FIND found &lt;%1&gt; in the cache</term>
  4644. <listitem><para>
  4645. This is a debug message and indicates that a RunningQuery object found
  4646. the specified &lt;name, class, type&gt; tuple in the cache.
  4647. </para></listitem>
  4648. </varlistentry>
  4649. <varlistentry id="RESLIB_RUNQ_CACHE_LOOKUP">
  4650. <term>RESLIB_RUNQ_CACHE_LOOKUP looking up up &lt;%1&gt; in the cache</term>
  4651. <listitem><para>
  4652. This is a debug message and indicates that a RunningQuery object has made
  4653. a call to its doLookup() method to look up the specified &lt;name, class, type&gt;
  4654. tuple, the first action of which will be to examine the cache.
  4655. </para></listitem>
  4656. </varlistentry>
  4657. <varlistentry id="RESLIB_RUNQ_FAIL">
  4658. <term>RESLIB_RUNQ_FAIL failure callback - nameservers are unreachable</term>
  4659. <listitem><para>
  4660. A debug message indicating that a RunningQuery's failure callback has been
  4661. called because all nameservers for the zone in question are unreachable.
  4662. </para></listitem>
  4663. </varlistentry>
  4664. <varlistentry id="RESLIB_RUNQ_SUCCESS">
  4665. <term>RESLIB_RUNQ_SUCCESS success callback - sending query to %1</term>
  4666. <listitem><para>
  4667. A debug message indicating that a RunningQuery's success callback has been
  4668. called because a nameserver has been found, and that a query is being sent
  4669. to the specified nameserver.
  4670. </para></listitem>
  4671. </varlistentry>
  4672. <varlistentry id="RESLIB_TCP_TRUNCATED">
  4673. <term>RESLIB_TCP_TRUNCATED TCP response to query for %1 was truncated</term>
  4674. <listitem><para>
  4675. This is a debug message logged when a response to the specified query to an
  4676. upstream nameserver returned a response with the TC (truncation) bit set. This
  4677. is treated as an error by the code.
  4678. </para></listitem>
  4679. </varlistentry>
  4680. <varlistentry id="RESLIB_TEST_SERVER">
  4681. <term>RESLIB_TEST_SERVER setting test server to %1(%2)</term>
  4682. <listitem><para>
  4683. This is a warning message only generated in unit tests. It indicates
  4684. that all upstream queries from the resolver are being routed to the
  4685. specified server, regardless of the address of the nameserver to which
  4686. the query would normally be routed. If seen during normal operation,
  4687. please submit a bug report.
  4688. </para></listitem>
  4689. </varlistentry>
  4690. <varlistentry id="RESLIB_TEST_UPSTREAM">
  4691. <term>RESLIB_TEST_UPSTREAM sending upstream query for &lt;%1&gt; to test server at %2</term>
  4692. <listitem><para>
  4693. This is a debug message and should only be seen in unit tests. A query for
  4694. the specified &lt;name, class, type&gt; tuple is being sent to a test nameserver
  4695. whose address is given in the message.
  4696. </para></listitem>
  4697. </varlistentry>
  4698. <varlistentry id="RESLIB_TIMEOUT">
  4699. <term>RESLIB_TIMEOUT query &lt;%1&gt; to %2 timed out</term>
  4700. <listitem><para>
  4701. A debug message indicating that the specified upstream query has timed out and
  4702. there are no retries left.
  4703. </para></listitem>
  4704. </varlistentry>
  4705. <varlistentry id="RESLIB_TIMEOUT_RETRY">
  4706. <term>RESLIB_TIMEOUT_RETRY query &lt;%1&gt; to %2 timed out, re-trying (retries left: %3)</term>
  4707. <listitem><para>
  4708. A debug message indicating that the specified query has timed out and that
  4709. the resolver is repeating the query to the same nameserver. After this
  4710. repeated query, there will be the indicated number of retries left.
  4711. </para></listitem>
  4712. </varlistentry>
  4713. <varlistentry id="RESLIB_TRUNCATED">
  4714. <term>RESLIB_TRUNCATED response to query for &lt;%1&gt; was truncated, re-querying over TCP</term>
  4715. <listitem><para>
  4716. A debug message, this indicates that the response to the specified query was
  4717. truncated and that the resolver will be re-querying over TCP. There are
  4718. various reasons why responses may be truncated, so this message is normal and
  4719. gives no cause for concern.
  4720. </para></listitem>
  4721. </varlistentry>
  4722. <varlistentry id="RESLIB_UPSTREAM">
  4723. <term>RESLIB_UPSTREAM sending upstream query for &lt;%1&gt; to %2</term>
  4724. <listitem><para>
  4725. A debug message indicating that a query for the specified &lt;name, class, type&gt;
  4726. tuple is being sent to a nameserver whose address is given in the message.
  4727. </para></listitem>
  4728. </varlistentry>
  4729. <varlistentry id="RESOLVER_AXFR_TCP">
  4730. <term>RESOLVER_AXFR_TCP AXFR request received over TCP</term>
  4731. <listitem><para>
  4732. This is a debug message output when the resolver received a request for
  4733. an AXFR (full transfer of a zone) over TCP. Only authoritative servers
  4734. are able to handle AXFR requests, so the resolver will return an error
  4735. message to the sender with the RCODE set to NOTIMP.
  4736. </para></listitem>
  4737. </varlistentry>
  4738. <varlistentry id="RESOLVER_AXFR_UDP">
  4739. <term>RESOLVER_AXFR_UDP AXFR request received over UDP</term>
  4740. <listitem><para>
  4741. This is a debug message output when the resolver received a request for
  4742. an AXFR (full transfer of a zone) over UDP. Only authoritative servers
  4743. are able to handle AXFR requests (and in any case, an AXFR request should
  4744. be sent over TCP), so the resolver will return an error message to the
  4745. sender with the RCODE set to NOTIMP.
  4746. </para></listitem>
  4747. </varlistentry>
  4748. <varlistentry id="RESOLVER_CLIENT_TIME_SMALL">
  4749. <term>RESOLVER_CLIENT_TIME_SMALL client timeout of %1 is too small</term>
  4750. <listitem><para>
  4751. During the update of the resolver's configuration parameters, the value
  4752. of the client timeout was found to be too small. The configuration
  4753. update was abandoned and the parameters were not changed.
  4754. </para></listitem>
  4755. </varlistentry>
  4756. <varlistentry id="RESOLVER_CONFIG_CHANNEL">
  4757. <term>RESOLVER_CONFIG_CHANNEL configuration channel created</term>
  4758. <listitem><para>
  4759. This is a debug message output when the resolver has successfully
  4760. established a connection to the configuration channel.
  4761. </para></listitem>
  4762. </varlistentry>
  4763. <varlistentry id="RESOLVER_CONFIG_ERROR">
  4764. <term>RESOLVER_CONFIG_ERROR error in configuration: %1</term>
  4765. <listitem><para>
  4766. An error was detected in a configuration update received by the
  4767. resolver. This may be in the format of the configuration message (in
  4768. which case this is a programming error) or it may be in the data supplied
  4769. (in which case it is a user error). The reason for the error, included
  4770. in the message, will give more details. The configuration update is
  4771. not applied and the resolver parameters were not changed.
  4772. </para></listitem>
  4773. </varlistentry>
  4774. <varlistentry id="RESOLVER_CONFIG_LOADED">
  4775. <term>RESOLVER_CONFIG_LOADED configuration loaded</term>
  4776. <listitem><para>
  4777. This is a debug message output when the resolver configuration has been
  4778. successfully loaded.
  4779. </para></listitem>
  4780. </varlistentry>
  4781. <varlistentry id="RESOLVER_CONFIG_UPDATED">
  4782. <term>RESOLVER_CONFIG_UPDATED configuration updated: %1</term>
  4783. <listitem><para>
  4784. This is a debug message output when the resolver configuration is being
  4785. updated with the specified information.
  4786. </para></listitem>
  4787. </varlistentry>
  4788. <varlistentry id="RESOLVER_CREATED">
  4789. <term>RESOLVER_CREATED main resolver object created</term>
  4790. <listitem><para>
  4791. This is a debug message indicating that the main resolver object has
  4792. been created.
  4793. </para></listitem>
  4794. </varlistentry>
  4795. <varlistentry id="RESOLVER_DNS_MESSAGE_RECEIVED">
  4796. <term>RESOLVER_DNS_MESSAGE_RECEIVED DNS message received: %1</term>
  4797. <listitem><para>
  4798. This is a debug message from the resolver listing the contents of a
  4799. received DNS message.
  4800. </para></listitem>
  4801. </varlistentry>
  4802. <varlistentry id="RESOLVER_DNS_MESSAGE_SENT">
  4803. <term>RESOLVER_DNS_MESSAGE_SENT DNS message of %1 bytes sent: %2</term>
  4804. <listitem><para>
  4805. This is a debug message containing details of the response returned by
  4806. the resolver to the querying system.
  4807. </para></listitem>
  4808. </varlistentry>
  4809. <varlistentry id="RESOLVER_FAILED">
  4810. <term>RESOLVER_FAILED resolver failed, reason: %1</term>
  4811. <listitem><para>
  4812. This is an error message output when an unhandled exception is caught
  4813. by the resolver. After this, the resolver will shut itself down.
  4814. Please submit a bug report.
  4815. </para></listitem>
  4816. </varlistentry>
  4817. <varlistentry id="RESOLVER_FORWARD_ADDRESS">
  4818. <term>RESOLVER_FORWARD_ADDRESS setting forward address %1(%2)</term>
  4819. <listitem><para>
  4820. If the resolver is running in forward mode, this message will appear
  4821. during startup to list the forward address. If multiple addresses are
  4822. specified, it will appear once for each address.
  4823. </para></listitem>
  4824. </varlistentry>
  4825. <varlistentry id="RESOLVER_FORWARD_QUERY">
  4826. <term>RESOLVER_FORWARD_QUERY processing forward query</term>
  4827. <listitem><para>
  4828. This is a debug message indicating that a query received by the resolver
  4829. has passed a set of checks (message is well-formed, it is allowed by the
  4830. ACL, it is a supported opcode, etc.) and is being forwarded to upstream
  4831. servers.
  4832. </para></listitem>
  4833. </varlistentry>
  4834. <varlistentry id="RESOLVER_HEADER_ERROR">
  4835. <term>RESOLVER_HEADER_ERROR message received, exception when processing header: %1</term>
  4836. <listitem><para>
  4837. This is a debug message from the resolver noting that an exception
  4838. occurred during the processing of a received packet. The packet has
  4839. been dropped.
  4840. </para></listitem>
  4841. </varlistentry>
  4842. <varlistentry id="RESOLVER_IXFR">
  4843. <term>RESOLVER_IXFR IXFR request received</term>
  4844. <listitem><para>
  4845. This is a debug message indicating that the resolver received a request
  4846. for an IXFR (incremental transfer of a zone). Only authoritative servers
  4847. are able to handle IXFR requests, so the resolver will return an error
  4848. message to the sender with the RCODE set to NOTIMP.
  4849. </para></listitem>
  4850. </varlistentry>
  4851. <varlistentry id="RESOLVER_LOOKUP_TIME_SMALL">
  4852. <term>RESOLVER_LOOKUP_TIME_SMALL lookup timeout of %1 is too small</term>
  4853. <listitem><para>
  4854. During the update of the resolver's configuration parameters, the value
  4855. of the lookup timeout was found to be too small. The configuration
  4856. update will not be applied.
  4857. </para></listitem>
  4858. </varlistentry>
  4859. <varlistentry id="RESOLVER_MESSAGE_ERROR">
  4860. <term>RESOLVER_MESSAGE_ERROR error parsing received message: %1 - returning %2</term>
  4861. <listitem><para>
  4862. This is a debug message noting that parsing of the body of a received
  4863. message by the resolver failed due to some error (although the parsing of
  4864. the header succeeded). The message parameters give a textual description
  4865. of the problem and the RCODE returned.
  4866. </para></listitem>
  4867. </varlistentry>
  4868. <varlistentry id="RESOLVER_NEGATIVE_RETRIES">
  4869. <term>RESOLVER_NEGATIVE_RETRIES negative number of retries (%1) specified in the configuration</term>
  4870. <listitem><para>
  4871. This error is issued when a resolver configuration update has specified
  4872. a negative retry count: only zero or positive values are valid. The
  4873. configuration update was abandoned and the parameters were not changed.
  4874. </para></listitem>
  4875. </varlistentry>
  4876. <varlistentry id="RESOLVER_NON_IN_PACKET">
  4877. <term>RESOLVER_NON_IN_PACKET non-IN class request received, returning REFUSED message</term>
  4878. <listitem><para>
  4879. This debug message is issued when resolver has received a DNS packet that
  4880. was not IN (Internet) class. The resolver cannot handle such packets,
  4881. so is returning a REFUSED response to the sender.
  4882. </para></listitem>
  4883. </varlistentry>
  4884. <varlistentry id="RESOLVER_NORMAL_QUERY">
  4885. <term>RESOLVER_NORMAL_QUERY processing normal query</term>
  4886. <listitem><para>
  4887. This is a debug message indicating that the query received by the resolver
  4888. has passed a set of checks (message is well-formed, it is allowed by the
  4889. ACL, it is a supported opcode, etc.) and is being processed by the resolver.
  4890. </para></listitem>
  4891. </varlistentry>
  4892. <varlistentry id="RESOLVER_NOTIFY_RECEIVED">
  4893. <term>RESOLVER_NOTIFY_RECEIVED NOTIFY arrived but server is not authoritative</term>
  4894. <listitem><para>
  4895. The resolver has received a NOTIFY message. As the server is not
  4896. authoritative it cannot process it, so it returns an error message to
  4897. the sender with the RCODE set to NOTAUTH.
  4898. </para></listitem>
  4899. </varlistentry>
  4900. <varlistentry id="RESOLVER_NOT_ONE_QUESTION">
  4901. <term>RESOLVER_NOT_ONE_QUESTION query contained %1 questions, exactly one question was expected</term>
  4902. <listitem><para>
  4903. This debug message indicates that the resolver received a query that
  4904. contained the number of entries in the question section detailed in
  4905. the message. This is a malformed message, as a DNS query must contain
  4906. only one question. The resolver will return a message to the sender
  4907. with the RCODE set to FORMERR.
  4908. </para></listitem>
  4909. </varlistentry>
  4910. <varlistentry id="RESOLVER_NO_ROOT_ADDRESS">
  4911. <term>RESOLVER_NO_ROOT_ADDRESS no root addresses available</term>
  4912. <listitem><para>
  4913. A warning message issued during resolver startup, this indicates that
  4914. no root addresses have been set. This may be because the resolver will
  4915. get them from a priming query.
  4916. </para></listitem>
  4917. </varlistentry>
  4918. <varlistentry id="RESOLVER_PARSE_ERROR">
  4919. <term>RESOLVER_PARSE_ERROR error parsing received message: %1 - returning %2</term>
  4920. <listitem><para>
  4921. This is a debug message noting that the resolver received a message and
  4922. the parsing of the body of the message failed due to some non-protocol
  4923. related reason (although the parsing of the header succeeded).
  4924. The message parameters give a textual description of the problem and
  4925. the RCODE returned.
  4926. </para></listitem>
  4927. </varlistentry>
  4928. <varlistentry id="RESOLVER_PRINT_COMMAND">
  4929. <term>RESOLVER_PRINT_COMMAND print message command, arguments are: %1</term>
  4930. <listitem><para>
  4931. This debug message is logged when a "print_message" command is received
  4932. by the resolver over the command channel.
  4933. </para></listitem>
  4934. </varlistentry>
  4935. <varlistentry id="RESOLVER_PROTOCOL_ERROR">
  4936. <term>RESOLVER_PROTOCOL_ERROR protocol error parsing received message: %1 - returning %2</term>
  4937. <listitem><para>
  4938. This is a debug message noting that the resolver received a message and
  4939. the parsing of the body of the message failed due to some protocol error
  4940. (although the parsing of the header succeeded). The message parameters
  4941. give a textual description of the problem and the RCODE returned.
  4942. </para></listitem>
  4943. </varlistentry>
  4944. <varlistentry id="RESOLVER_QUERY_ACCEPTED">
  4945. <term>RESOLVER_QUERY_ACCEPTED query accepted: '%1/%2/%3' from %4</term>
  4946. <listitem><para>
  4947. This debug message is produced by the resolver when an incoming query
  4948. is accepted in terms of the query ACL. The log message shows the query
  4949. in the form of &lt;query name&gt;/&lt;query type&gt;/&lt;query class&gt;, and the client
  4950. that sends the query in the form of &lt;Source IP address&gt;#&lt;source port&gt;.
  4951. </para></listitem>
  4952. </varlistentry>
  4953. <varlistentry id="RESOLVER_QUERY_DROPPED">
  4954. <term>RESOLVER_QUERY_DROPPED query dropped: '%1/%2/%3' from %4</term>
  4955. <listitem><para>
  4956. This is an informational message that indicates an incoming query has
  4957. been dropped by the resolver because of the query ACL. Unlike the
  4958. RESOLVER_QUERY_REJECTED case, the server does not return any response.
  4959. The log message shows the query in the form of &lt;query name&gt;/&lt;query
  4960. type&gt;/&lt;query class&gt;, and the client that sends the query in the form of
  4961. &lt;Source IP address&gt;#&lt;source port&gt;.
  4962. </para></listitem>
  4963. </varlistentry>
  4964. <varlistentry id="RESOLVER_QUERY_REJECTED">
  4965. <term>RESOLVER_QUERY_REJECTED query rejected: '%1/%2/%3' from %4</term>
  4966. <listitem><para>
  4967. This is an informational message that indicates an incoming query has
  4968. been rejected by the resolver because of the query ACL. This results
  4969. in a response with an RCODE of REFUSED. The log message shows the query
  4970. in the form of &lt;query name&gt;/&lt;query type&gt;/&lt;query class&gt;, and the client
  4971. that sends the query in the form of &lt;Source IP address&gt;#&lt;source port&gt;.
  4972. </para></listitem>
  4973. </varlistentry>
  4974. <varlistentry id="RESOLVER_QUERY_SETUP">
  4975. <term>RESOLVER_QUERY_SETUP query setup</term>
  4976. <listitem><para>
  4977. This is a debug message noting that the resolver is creating a
  4978. RecursiveQuery object.
  4979. </para></listitem>
  4980. </varlistentry>
  4981. <varlistentry id="RESOLVER_QUERY_SHUTDOWN">
  4982. <term>RESOLVER_QUERY_SHUTDOWN query shutdown</term>
  4983. <listitem><para>
  4984. This is a debug message noting that the resolver is destroying a
  4985. RecursiveQuery object.
  4986. </para></listitem>
  4987. </varlistentry>
  4988. <varlistentry id="RESOLVER_QUERY_TIME_SMALL">
  4989. <term>RESOLVER_QUERY_TIME_SMALL query timeout of %1 is too small</term>
  4990. <listitem><para>
  4991. During the update of the resolver's configuration parameters, the value
  4992. of the query timeout was found to be too small. The configuration
  4993. parameters were not changed.
  4994. </para></listitem>
  4995. </varlistentry>
  4996. <varlistentry id="RESOLVER_RECEIVED_MESSAGE">
  4997. <term>RESOLVER_RECEIVED_MESSAGE resolver has received a DNS message</term>
  4998. <listitem><para>
  4999. This is a debug message indicating that the resolver has received a
  5000. DNS message. Depending on the debug settings, subsequent log output
  5001. will indicate the nature of the message.
  5002. </para></listitem>
  5003. </varlistentry>
  5004. <varlistentry id="RESOLVER_RECURSIVE">
  5005. <term>RESOLVER_RECURSIVE running in recursive mode</term>
  5006. <listitem><para>
  5007. This is an informational message that appears at startup noting that
  5008. the resolver is running in recursive mode.
  5009. </para></listitem>
  5010. </varlistentry>
  5011. <varlistentry id="RESOLVER_SERVICE_CREATED">
  5012. <term>RESOLVER_SERVICE_CREATED service object created</term>
  5013. <listitem><para>
  5014. This debug message is output when resolver creates the main service object
  5015. (which handles the received queries).
  5016. </para></listitem>
  5017. </varlistentry>
  5018. <varlistentry id="RESOLVER_SET_PARAMS">
  5019. <term>RESOLVER_SET_PARAMS query timeout: %1, client timeout: %2, lookup timeout: %3, retry count: %4</term>
  5020. <listitem><para>
  5021. This debug message lists the parameters being set for the resolver. These are:
  5022. query timeout: the timeout (in ms) used for queries originated by the resolver
  5023. to upstream servers. Client timeout: the interval to resolve a query by
  5024. a client: after this time, the resolver sends back a SERVFAIL to the client
  5025. whilst continuing to resolve the query. Lookup timeout: the time at which the
  5026. resolver gives up trying to resolve a query. Retry count: the number of times
  5027. the resolver will retry a query to an upstream server if it gets a timeout.
  5028. </para><para>
  5029. The client and lookup timeouts require a bit more explanation. The
  5030. resolution of the client query might require a large number of queries to
  5031. upstream nameservers. Even if none of these queries timeout, the total time
  5032. taken to perform all the queries may exceed the client timeout. When this
  5033. happens, a SERVFAIL is returned to the client, but the resolver continues
  5034. with the resolution process; data received is added to the cache. However,
  5035. there comes a time - the lookup timeout - when even the resolver gives up.
  5036. At this point it will wait for pending upstream queries to complete or
  5037. timeout and drop the query.
  5038. </para></listitem>
  5039. </varlistentry>
  5040. <varlistentry id="RESOLVER_SET_QUERY_ACL">
  5041. <term>RESOLVER_SET_QUERY_ACL query ACL is configured</term>
  5042. <listitem><para>
  5043. This debug message is generated when a new query ACL is configured for
  5044. the resolver.
  5045. </para></listitem>
  5046. </varlistentry>
  5047. <varlistentry id="RESOLVER_SET_ROOT_ADDRESS">
  5048. <term>RESOLVER_SET_ROOT_ADDRESS setting root address %1(%2)</term>
  5049. <listitem><para>
  5050. This message gives the address of one of the root servers used by the
  5051. resolver. It is output during startup and may appear multiple times,
  5052. once for each root server address.
  5053. </para></listitem>
  5054. </varlistentry>
  5055. <varlistentry id="RESOLVER_SHUTDOWN">
  5056. <term>RESOLVER_SHUTDOWN resolver shutdown complete</term>
  5057. <listitem><para>
  5058. This informational message is output when the resolver has shut down.
  5059. </para></listitem>
  5060. </varlistentry>
  5061. <varlistentry id="RESOLVER_SHUTDOWN_RECEIVED">
  5062. <term>RESOLVER_SHUTDOWN_RECEIVED received command to shut down</term>
  5063. <listitem><para>
  5064. A debug message noting that the server was asked to terminate and is
  5065. complying to the request.
  5066. </para></listitem>
  5067. </varlistentry>
  5068. <varlistentry id="RESOLVER_STARTED">
  5069. <term>RESOLVER_STARTED resolver started</term>
  5070. <listitem><para>
  5071. This informational message is output by the resolver when all initialization
  5072. has been completed and it is entering its main loop.
  5073. </para></listitem>
  5074. </varlistentry>
  5075. <varlistentry id="RESOLVER_STARTING">
  5076. <term>RESOLVER_STARTING starting resolver with command line '%1'</term>
  5077. <listitem><para>
  5078. An informational message, this is output when the resolver starts up.
  5079. </para></listitem>
  5080. </varlistentry>
  5081. <varlistentry id="RESOLVER_UNEXPECTED_RESPONSE">
  5082. <term>RESOLVER_UNEXPECTED_RESPONSE received unexpected response, ignoring</term>
  5083. <listitem><para>
  5084. This is a debug message noting that the resolver received a DNS response
  5085. packet on the port on which is it listening for queries. The packet
  5086. has been ignored.
  5087. </para></listitem>
  5088. </varlistentry>
  5089. <varlistentry id="RESOLVER_UNSUPPORTED_OPCODE">
  5090. <term>RESOLVER_UNSUPPORTED_OPCODE opcode %1 not supported by the resolver</term>
  5091. <listitem><para>
  5092. This is debug message output when the resolver received a message with an
  5093. unsupported opcode (it can only process QUERY opcodes). It will return
  5094. a message to the sender with the RCODE set to NOTIMP.
  5095. </para></listitem>
  5096. </varlistentry>
  5097. <varlistentry id="SOCKETREQUESTOR_CREATED">
  5098. <term>SOCKETREQUESTOR_CREATED Socket requestor created for application %1</term>
  5099. <listitem><para>
  5100. Debug message. A socket requesor (client of the socket creator) is created
  5101. for the corresponding application. Normally this should happen at most
  5102. one time throughout the lifetime of the application.
  5103. </para></listitem>
  5104. </varlistentry>
  5105. <varlistentry id="SOCKETREQUESTOR_DESTROYED">
  5106. <term>SOCKETREQUESTOR_DESTROYED Socket requestor destoryed</term>
  5107. <listitem><para>
  5108. Debug message. The socket requestor created at SOCKETREQUESTOR_CREATED
  5109. has been destroyed. This event is generally unexpected other than in
  5110. test cases.
  5111. </para></listitem>
  5112. </varlistentry>
  5113. <varlistentry id="SOCKETREQUESTOR_GETSOCKET">
  5114. <term>SOCKETREQUESTOR_GETSOCKET Received a %1 socket for [%2]:%3, FD=%4, token=%5, path=%6</term>
  5115. <listitem><para>
  5116. Debug message. The socket requestor for the corresponding application
  5117. has requested a socket for a set of address, port and protocol (shown
  5118. in the log message) and successfully got it from the creator. The
  5119. corresponding file descriptor and the associated "token" (an internal
  5120. ID used between the creator and requestor) are shown in the log
  5121. message.
  5122. </para></listitem>
  5123. </varlistentry>
  5124. <varlistentry id="SOCKETREQUESTOR_RELEASESOCKET">
  5125. <term>SOCKETREQUESTOR_RELEASESOCKET Released a socket of token %1</term>
  5126. <listitem><para>
  5127. Debug message. The socket requestor has released a socket passed by
  5128. the creator. The associated token of the socket is shown in the
  5129. log message. If the corresponding SOCKETREQUESTOR_GETSOCKET was logged
  5130. more detailed information of the socket can be identified by matching
  5131. the token.
  5132. </para></listitem>
  5133. </varlistentry>
  5134. <varlistentry id="SRVCOMM_ADDRESSES_NOT_LIST">
  5135. <term>SRVCOMM_ADDRESSES_NOT_LIST the address and port specification is not a list in %1</term>
  5136. <listitem><para>
  5137. This points to an error in configuration. What was supposed to be a list of
  5138. IP address - port pairs isn't a list at all but something else.
  5139. </para></listitem>
  5140. </varlistentry>
  5141. <varlistentry id="SRVCOMM_ADDRESS_FAIL">
  5142. <term>SRVCOMM_ADDRESS_FAIL failed to listen on addresses (%1)</term>
  5143. <listitem><para>
  5144. The server failed to bind to one of the address/port pair it should according
  5145. to configuration, for reason listed in the message (usually because that pair
  5146. is already used by other service or missing privileges). The server will try
  5147. to recover and bind the address/port pairs it was listening to before (if any).
  5148. </para></listitem>
  5149. </varlistentry>
  5150. <varlistentry id="SRVCOMM_ADDRESS_MISSING">
  5151. <term>SRVCOMM_ADDRESS_MISSING address specification is missing "address" or "port" element in %1</term>
  5152. <listitem><para>
  5153. This points to an error in configuration. An address specification in the
  5154. configuration is missing either an address or port and so cannot be used. The
  5155. specification causing the error is given in the message.
  5156. </para></listitem>
  5157. </varlistentry>
  5158. <varlistentry id="SRVCOMM_ADDRESS_TYPE">
  5159. <term>SRVCOMM_ADDRESS_TYPE address specification type is invalid in %1</term>
  5160. <listitem><para>
  5161. This points to an error in configuration. An address specification in the
  5162. configuration malformed. The specification causing the error is given in the
  5163. message. A valid specification contains an address part (which must be a string
  5164. and must represent a valid IPv4 or IPv6 address) and port (which must be an
  5165. integer in the range valid for TCP/UDP ports on your system).
  5166. </para></listitem>
  5167. </varlistentry>
  5168. <varlistentry id="SRVCOMM_ADDRESS_UNRECOVERABLE">
  5169. <term>SRVCOMM_ADDRESS_UNRECOVERABLE failed to recover original addresses also (%1)</term>
  5170. <listitem><para>
  5171. The recovery of old addresses after SRVCOMM_ADDRESS_FAIL also failed for
  5172. the reason listed.
  5173. </para><para>
  5174. The condition indicates problems with the server and/or the system on
  5175. which it is running. The server will continue running to allow
  5176. reconfiguration, but will not be listening on any address or port until
  5177. an administrator does so.
  5178. </para></listitem>
  5179. </varlistentry>
  5180. <varlistentry id="SRVCOMM_ADDRESS_VALUE">
  5181. <term>SRVCOMM_ADDRESS_VALUE address to set: %1#%2</term>
  5182. <listitem><para>
  5183. Debug message. This lists one address and port value of the set of
  5184. addresses we are going to listen on (eg. there will be one log message
  5185. per pair). This appears only after SRVCOMM_SET_LISTEN, but might
  5186. be hidden, as it has higher debug level.
  5187. </para></listitem>
  5188. </varlistentry>
  5189. <varlistentry id="SRVCOMM_EXCEPTION_ALLOC">
  5190. <term>SRVCOMM_EXCEPTION_ALLOC exception when allocating a socket: %1</term>
  5191. <listitem><para>
  5192. The process tried to allocate a socket using the socket creator, but an error
  5193. occurred. But it is not one of the errors we are sure are "safe". In this case
  5194. it is unclear if the unsuccessful communication left the process and the bind10
  5195. process in inconsistent state, so the process is going to abort to prevent
  5196. further problems in that area.
  5197. </para><para>
  5198. This is probably a bug in the code, but it could be caused by other unusual
  5199. conditions (like insufficient memory, deleted socket file used for
  5200. communication).
  5201. </para></listitem>
  5202. </varlistentry>
  5203. <varlistentry id="SRVCOMM_KEYS_DEINIT">
  5204. <term>SRVCOMM_KEYS_DEINIT deinitializing TSIG keyring</term>
  5205. <listitem><para>
  5206. Debug message indicating that the server is deinitializing the TSIG keyring.
  5207. </para></listitem>
  5208. </varlistentry>
  5209. <varlistentry id="SRVCOMM_KEYS_INIT">
  5210. <term>SRVCOMM_KEYS_INIT initializing TSIG keyring</term>
  5211. <listitem><para>
  5212. Debug message indicating that the server is initializing the global TSIG
  5213. keyring. This should be seen only at server start.
  5214. </para></listitem>
  5215. </varlistentry>
  5216. <varlistentry id="SRVCOMM_KEYS_UPDATE">
  5217. <term>SRVCOMM_KEYS_UPDATE updating TSIG keyring</term>
  5218. <listitem><para>
  5219. Debug message indicating new keyring is being loaded from configuration (either
  5220. on startup or as a result of configuration update).
  5221. </para></listitem>
  5222. </varlistentry>
  5223. <varlistentry id="SRVCOMM_PORT_RANGE">
  5224. <term>SRVCOMM_PORT_RANGE port out of valid range (%1 in %2)</term>
  5225. <listitem><para>
  5226. This points to an error in configuration. The port in an address
  5227. specification is outside the valid range of 0 to 65535.
  5228. </para></listitem>
  5229. </varlistentry>
  5230. <varlistentry id="SRVCOMM_SET_LISTEN">
  5231. <term>SRVCOMM_SET_LISTEN setting addresses to listen to</term>
  5232. <listitem><para>
  5233. Debug message, noting that the server is about to start listening on a
  5234. different set of IP addresses and ports than before.
  5235. </para></listitem>
  5236. </varlistentry>
  5237. <varlistentry id="SRVCOMM_UNKNOWN_EXCEPTION_ALLOC">
  5238. <term>SRVCOMM_UNKNOWN_EXCEPTION_ALLOC unknown exception when allocating a socket</term>
  5239. <listitem><para>
  5240. The situation is the same as in the SRVCOMM_EXCEPTION_ALLOC case, but further
  5241. details about the error are unknown, because it was signaled by throwing
  5242. something not being an exception. This is definitely a bug.
  5243. </para></listitem>
  5244. </varlistentry>
  5245. <varlistentry id="STATHTTPD_BAD_OPTION_VALUE">
  5246. <term>STATHTTPD_BAD_OPTION_VALUE bad command line argument: %1</term>
  5247. <listitem><para>
  5248. The stats-httpd module was called with a bad command-line argument
  5249. and will not start.
  5250. </para></listitem>
  5251. </varlistentry>
  5252. <varlistentry id="STATHTTPD_CC_SESSION_ERROR">
  5253. <term>STATHTTPD_CC_SESSION_ERROR error connecting to message bus: %1</term>
  5254. <listitem><para>
  5255. The stats-httpd module was unable to connect to the BIND 10 command
  5256. and control bus. A likely problem is that the message bus daemon
  5257. (b10-msgq) is not running. The stats-httpd module will now shut down.
  5258. </para></listitem>
  5259. </varlistentry>
  5260. <varlistentry id="STATHTTPD_CLOSING">
  5261. <term>STATHTTPD_CLOSING closing %1#%2</term>
  5262. <listitem><para>
  5263. The stats-httpd daemon will stop listening for requests on the given
  5264. address and port number.
  5265. </para></listitem>
  5266. </varlistentry>
  5267. <varlistentry id="STATHTTPD_CLOSING_CC_SESSION">
  5268. <term>STATHTTPD_CLOSING_CC_SESSION stopping cc session</term>
  5269. <listitem><para>
  5270. Debug message indicating that the stats-httpd module is disconnecting
  5271. from the command and control bus.
  5272. </para></listitem>
  5273. </varlistentry>
  5274. <varlistentry id="STATHTTPD_HANDLE_CONFIG">
  5275. <term>STATHTTPD_HANDLE_CONFIG reading configuration: %1</term>
  5276. <listitem><para>
  5277. The stats-httpd daemon has received new configuration data and will now
  5278. process it. The (changed) data is printed.
  5279. </para></listitem>
  5280. </varlistentry>
  5281. <varlistentry id="STATHTTPD_RECEIVED_SHUTDOWN_COMMAND">
  5282. <term>STATHTTPD_RECEIVED_SHUTDOWN_COMMAND shutdown command received</term>
  5283. <listitem><para>
  5284. A shutdown command was sent to the stats-httpd module, and it will
  5285. now shut down.
  5286. </para></listitem>
  5287. </varlistentry>
  5288. <varlistentry id="STATHTTPD_RECEIVED_STATUS_COMMAND">
  5289. <term>STATHTTPD_RECEIVED_STATUS_COMMAND received command to return status</term>
  5290. <listitem><para>
  5291. A status command was sent to the stats-httpd module, and it will
  5292. respond with 'Stats Httpd is up.' and its PID.
  5293. </para></listitem>
  5294. </varlistentry>
  5295. <varlistentry id="STATHTTPD_RECEIVED_UNKNOWN_COMMAND">
  5296. <term>STATHTTPD_RECEIVED_UNKNOWN_COMMAND received unknown command: %1</term>
  5297. <listitem><para>
  5298. An unknown command has been sent to the stats-httpd module. The
  5299. stats-httpd module will respond with an error, and the command will
  5300. be ignored.
  5301. </para></listitem>
  5302. </varlistentry>
  5303. <varlistentry id="STATHTTPD_SERVER_DATAERROR">
  5304. <term>STATHTTPD_SERVER_DATAERROR HTTP server data error: %1</term>
  5305. <listitem><para>
  5306. An internal error occurred while handling an HTTP request. An HTTP 404
  5307. response will be sent back, and the specific error is printed. This
  5308. is an error condition that likely points the specified data
  5309. corresponding to the requested URI is incorrect.
  5310. </para></listitem>
  5311. </varlistentry>
  5312. <varlistentry id="STATHTTPD_SERVER_ERROR">
  5313. <term>STATHTTPD_SERVER_ERROR HTTP server error: %1</term>
  5314. <listitem><para>
  5315. An internal error occurred while handling an HTTP request. An HTTP 500
  5316. response will be sent back, and the specific error is printed. This
  5317. is an error condition that likely points to a module that is not
  5318. responding correctly to statistic requests.
  5319. </para></listitem>
  5320. </varlistentry>
  5321. <varlistentry id="STATHTTPD_SERVER_INIT_ERROR">
  5322. <term>STATHTTPD_SERVER_INIT_ERROR HTTP server initialization error: %1</term>
  5323. <listitem><para>
  5324. There was a problem initializing the HTTP server in the stats-httpd
  5325. module upon receiving its configuration data. The most likely cause
  5326. is a port binding problem or a bad configuration value. The specific
  5327. error is printed in the message. The new configuration is ignored,
  5328. and an error is sent back.
  5329. </para></listitem>
  5330. </varlistentry>
  5331. <varlistentry id="STATHTTPD_SHUTDOWN">
  5332. <term>STATHTTPD_SHUTDOWN shutting down</term>
  5333. <listitem><para>
  5334. The stats-httpd daemon is shutting down.
  5335. </para></listitem>
  5336. </varlistentry>
  5337. <varlistentry id="STATHTTPD_STARTED">
  5338. <term>STATHTTPD_STARTED listening on %1#%2</term>
  5339. <listitem><para>
  5340. The stats-httpd daemon will now start listening for requests on the
  5341. given address and port number.
  5342. </para></listitem>
  5343. </varlistentry>
  5344. <varlistentry id="STATHTTPD_STARTING_CC_SESSION">
  5345. <term>STATHTTPD_STARTING_CC_SESSION starting cc session</term>
  5346. <listitem><para>
  5347. Debug message indicating that the stats-httpd module is connecting to
  5348. the command and control bus.
  5349. </para></listitem>
  5350. </varlistentry>
  5351. <varlistentry id="STATHTTPD_START_SERVER_INIT_ERROR">
  5352. <term>STATHTTPD_START_SERVER_INIT_ERROR HTTP server initialization error: %1</term>
  5353. <listitem><para>
  5354. There was a problem initializing the HTTP server in the stats-httpd
  5355. module upon startup. The most likely cause is that it was not able
  5356. to bind to the listening port. The specific error is printed, and the
  5357. module will shut down.
  5358. </para></listitem>
  5359. </varlistentry>
  5360. <varlistentry id="STATHTTPD_STOPPED_BY_KEYBOARD">
  5361. <term>STATHTTPD_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  5362. <listitem><para>
  5363. There was a keyboard interrupt signal to stop the stats-httpd
  5364. daemon. The daemon will now shut down.
  5365. </para></listitem>
  5366. </varlistentry>
  5367. <varlistentry id="STATHTTPD_UNKNOWN_CONFIG_ITEM">
  5368. <term>STATHTTPD_UNKNOWN_CONFIG_ITEM unknown configuration item: %1</term>
  5369. <listitem><para>
  5370. The stats-httpd daemon received a configuration update from the
  5371. configuration manager. However, one of the items in the
  5372. configuration is unknown. The new configuration is ignored, and an
  5373. error is sent back. As possible cause is that there was an upgrade
  5374. problem, and the stats-httpd version is out of sync with the rest of
  5375. the system.
  5376. </para></listitem>
  5377. </varlistentry>
  5378. <varlistentry id="STATS_BAD_OPTION_VALUE">
  5379. <term>STATS_BAD_OPTION_VALUE bad command line argument: %1</term>
  5380. <listitem><para>
  5381. The stats module was called with a bad command-line argument and will
  5382. not start.
  5383. </para></listitem>
  5384. </varlistentry>
  5385. <varlistentry id="STATS_CC_SESSION_ERROR">
  5386. <term>STATS_CC_SESSION_ERROR error connecting to message bus: %1</term>
  5387. <listitem><para>
  5388. The stats module was unable to connect to the BIND 10 command and
  5389. control bus. A likely problem is that the message bus daemon
  5390. (b10-msgq) is not running. The stats module will now shut down.
  5391. </para></listitem>
  5392. </varlistentry>
  5393. <varlistentry id="STATS_RECEIVED_NEW_CONFIG">
  5394. <term>STATS_RECEIVED_NEW_CONFIG received new configuration: %1</term>
  5395. <listitem><para>
  5396. This debug message is printed when the stats module has received a
  5397. configuration update from the configuration manager.
  5398. </para></listitem>
  5399. </varlistentry>
  5400. <varlistentry id="STATS_RECEIVED_SHOWSCHEMA_ALL_COMMAND">
  5401. <term>STATS_RECEIVED_SHOWSCHEMA_ALL_COMMAND received command to show all statistics schema</term>
  5402. <listitem><para>
  5403. The stats module received a command to show all statistics schemas of all modules.
  5404. </para></listitem>
  5405. </varlistentry>
  5406. <varlistentry id="STATS_RECEIVED_SHOWSCHEMA_NAME_COMMAND">
  5407. <term>STATS_RECEIVED_SHOWSCHEMA_NAME_COMMAND received command to show statistics schema for %1</term>
  5408. <listitem><para>
  5409. The stats module received a command to show the specified statistics schema of the specified module.
  5410. </para></listitem>
  5411. </varlistentry>
  5412. <varlistentry id="STATS_RECEIVED_SHOW_ALL_COMMAND">
  5413. <term>STATS_RECEIVED_SHOW_ALL_COMMAND received command to show all statistics</term>
  5414. <listitem><para>
  5415. The stats module received a command to show all statistics that it has
  5416. collected.
  5417. </para></listitem>
  5418. </varlistentry>
  5419. <varlistentry id="STATS_RECEIVED_SHOW_NAME_COMMAND">
  5420. <term>STATS_RECEIVED_SHOW_NAME_COMMAND received command to show statistics for %1</term>
  5421. <listitem><para>
  5422. The stats module received a command to show the statistics that it has
  5423. collected for the given item.
  5424. </para></listitem>
  5425. </varlistentry>
  5426. <varlistentry id="STATS_RECEIVED_SHUTDOWN_COMMAND">
  5427. <term>STATS_RECEIVED_SHUTDOWN_COMMAND shutdown command received</term>
  5428. <listitem><para>
  5429. A shutdown command was sent to the stats module and it will now shut down.
  5430. </para></listitem>
  5431. </varlistentry>
  5432. <varlistentry id="STATS_RECEIVED_STATUS_COMMAND">
  5433. <term>STATS_RECEIVED_STATUS_COMMAND received command to return status</term>
  5434. <listitem><para>
  5435. A status command was sent to the stats module. It will return a
  5436. response indicating that it is running normally.
  5437. </para></listitem>
  5438. </varlistentry>
  5439. <varlistentry id="STATS_RECEIVED_UNKNOWN_COMMAND">
  5440. <term>STATS_RECEIVED_UNKNOWN_COMMAND received unknown command: %1</term>
  5441. <listitem><para>
  5442. An unknown command has been sent to the stats module. The stats module
  5443. will respond with an error and the command will be ignored.
  5444. </para></listitem>
  5445. </varlistentry>
  5446. <varlistentry id="STATS_SEND_REQUEST_BOSS">
  5447. <term>STATS_SEND_REQUEST_BOSS requesting boss to send statistics</term>
  5448. <listitem><para>
  5449. This debug message is printed when a request is sent to the boss module
  5450. to send its data to the stats module.
  5451. </para></listitem>
  5452. </varlistentry>
  5453. <varlistentry id="STATS_STARTING">
  5454. <term>STATS_STARTING starting</term>
  5455. <listitem><para>
  5456. The stats module will be now starting.
  5457. </para></listitem>
  5458. </varlistentry>
  5459. <varlistentry id="STATS_START_ERROR">
  5460. <term>STATS_START_ERROR stats module error: %1</term>
  5461. <listitem><para>
  5462. An internal error occurred while starting the stats module. The stats
  5463. module will be now shutting down.
  5464. </para></listitem>
  5465. </varlistentry>
  5466. <varlistentry id="STATS_STOPPED_BY_KEYBOARD">
  5467. <term>STATS_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  5468. <listitem><para>
  5469. There was a keyboard interrupt signal to stop the stats module. The
  5470. daemon will now shut down.
  5471. </para></listitem>
  5472. </varlistentry>
  5473. <varlistentry id="STATS_UNKNOWN_COMMAND_IN_SPEC">
  5474. <term>STATS_UNKNOWN_COMMAND_IN_SPEC unknown command in specification file: %1</term>
  5475. <listitem><para>
  5476. The specification file for the stats module contains a command that
  5477. is unknown in the implementation. The most likely cause is an
  5478. installation problem, where the specification file stats.spec is
  5479. from a different version of BIND 10 than the stats module itself.
  5480. Please check your installation.
  5481. </para></listitem>
  5482. </varlistentry>
  5483. <varlistentry id="XFRIN_AUTH_LOADZONE">
  5484. <term>XFRIN_AUTH_LOADZONE sending Auth loadzone for origin=%1, class=%2</term>
  5485. <listitem><para>
  5486. There was a successful zone transfer. We send the "loadzone" command for the
  5487. zone to b10-auth.
  5488. </para></listitem>
  5489. </varlistentry>
  5490. <varlistentry id="XFRIN_AXFR_INCONSISTENT_SOA">
  5491. <term>XFRIN_AXFR_INCONSISTENT_SOA AXFR SOAs are inconsistent for %1: %2 expected, %3 received</term>
  5492. <listitem><para>
  5493. The serial fields of the first and last SOAs of AXFR (including AXFR-style
  5494. IXFR) are not the same. According to RFC 5936 these two SOAs must be the
  5495. "same" (not only for the serial), but it is still not clear what the
  5496. receiver should do if this condition does not hold. There was a discussion
  5497. about this at the IETF dnsext wg:
  5498. http://www.ietf.org/mail-archive/web/dnsext/current/msg07908.html
  5499. and the general feeling seems that it would be better to reject the
  5500. transfer if a mismatch is detected. On the other hand, also as noted
  5501. in that email thread, neither BIND 9 nor NSD performs any comparison
  5502. on the SOAs. For now, we only check the serials (ignoring other fields)
  5503. and only leave a warning log message when a mismatch is found. If it
  5504. turns out to happen with a real world primary server implementation
  5505. and that server actually feeds broken data (e.g. mixed versions of
  5506. zone), we can consider a stricter action.
  5507. </para></listitem>
  5508. </varlistentry>
  5509. <varlistentry id="XFRIN_BAD_MASTER_ADDR_FORMAT">
  5510. <term>XFRIN_BAD_MASTER_ADDR_FORMAT bad format for master address: %1</term>
  5511. <listitem><para>
  5512. The given master address is not a valid IP address.
  5513. </para></listitem>
  5514. </varlistentry>
  5515. <varlistentry id="XFRIN_BAD_MASTER_PORT_FORMAT">
  5516. <term>XFRIN_BAD_MASTER_PORT_FORMAT bad format for master port: %1</term>
  5517. <listitem><para>
  5518. The master port as read from the configuration is not a valid port number.
  5519. </para></listitem>
  5520. </varlistentry>
  5521. <varlistentry id="XFRIN_BAD_TSIG_KEY_STRING">
  5522. <term>XFRIN_BAD_TSIG_KEY_STRING bad TSIG key string: %1</term>
  5523. <listitem><para>
  5524. The TSIG key string as read from the configuration does not represent
  5525. a valid TSIG key.
  5526. </para></listitem>
  5527. </varlistentry>
  5528. <varlistentry id="XFRIN_BAD_ZONE_CLASS">
  5529. <term>XFRIN_BAD_ZONE_CLASS Invalid zone class: %1</term>
  5530. <listitem><para>
  5531. The zone class as read from the configuration is not a valid DNS class.
  5532. </para></listitem>
  5533. </varlistentry>
  5534. <varlistentry id="XFRIN_CC_SESSION_ERROR">
  5535. <term>XFRIN_CC_SESSION_ERROR error reading from cc channel: %1</term>
  5536. <listitem><para>
  5537. There was a problem reading from the command and control channel. The
  5538. most likely cause is that xfrin the msgq daemon is not running.
  5539. </para></listitem>
  5540. </varlistentry>
  5541. <varlistentry id="XFRIN_COMMAND_ERROR">
  5542. <term>XFRIN_COMMAND_ERROR error while executing command '%1': %2</term>
  5543. <listitem><para>
  5544. There was an error while the given command was being processed. The
  5545. error is given in the log message.
  5546. </para></listitem>
  5547. </varlistentry>
  5548. <varlistentry id="XFRIN_CONNECT_MASTER">
  5549. <term>XFRIN_CONNECT_MASTER error connecting to master at %1: %2</term>
  5550. <listitem><para>
  5551. There was an error opening a connection to the master. The error is
  5552. shown in the log message.
  5553. </para></listitem>
  5554. </varlistentry>
  5555. <varlistentry id="XFRIN_GOT_INCREMENTAL_RESP">
  5556. <term>XFRIN_GOT_INCREMENTAL_RESP got incremental response for %1</term>
  5557. <listitem><para>
  5558. In an attempt of IXFR processing, the begenning SOA of the first difference
  5559. (following the initial SOA that specified the final SOA for all the
  5560. differences) was found. This means a connection for xfrin tried IXFR
  5561. and really aot a response for incremental updates.
  5562. </para></listitem>
  5563. </varlistentry>
  5564. <varlistentry id="XFRIN_GOT_NONINCREMENTAL_RESP">
  5565. <term>XFRIN_GOT_NONINCREMENTAL_RESP got nonincremental response for %1</term>
  5566. <listitem><para>
  5567. Non incremental transfer was detected at the "first data" of a transfer,
  5568. which is the RR following the initial SOA. Non incremental transfer is
  5569. either AXFR or AXFR-style IXFR. In the latter case, it means that
  5570. in a response to IXFR query the first data is not SOA or its SOA serial
  5571. is not equal to the requested SOA serial.
  5572. </para></listitem>
  5573. </varlistentry>
  5574. <varlistentry id="XFRIN_IMPORT_DNS">
  5575. <term>XFRIN_IMPORT_DNS error importing python DNS module: %1</term>
  5576. <listitem><para>
  5577. There was an error importing the python DNS module pydnspp. The most
  5578. likely cause is a PYTHONPATH problem.
  5579. </para></listitem>
  5580. </varlistentry>
  5581. <varlistentry id="XFRIN_IXFR_TRANSFER_SUCCESS">
  5582. <term>XFRIN_IXFR_TRANSFER_SUCCESS incremental IXFR transfer of zone %1 succeeded (messages: %2, changesets: %3, deletions: %4, additions: %5, bytes: %6, run time: %7 seconds, %8 bytes/second)</term>
  5583. <listitem><para>
  5584. The IXFR transfer for the given zone was successful.
  5585. The provided information contains the following values:
  5586. </para><para>
  5587. messages: Number of overhead DNS messages in the transfer.
  5588. </para><para>
  5589. changesets: Number of difference sequences.
  5590. </para><para>
  5591. deletions: Number of Resource Records deleted by all the changesets combined,
  5592. including the SOA records.
  5593. </para><para>
  5594. additions: Number of Resource Records added by all the changesets combined,
  5595. including the SOA records.
  5596. </para><para>
  5597. bytes: Full size of the transfer data on the wire.
  5598. </para><para>
  5599. run time: Time (in seconds) the complete ixfr took.
  5600. </para><para>
  5601. bytes/second: Transfer speed.
  5602. </para><para>
  5603. Note that there is no cross-checking of additions and deletions; if the same
  5604. RR gets added and deleted in multiple changesets, it is counted each time;
  5605. therefore, for each changeset, there should at least be 1 deletion and 1
  5606. addition (the updated SOA record).
  5607. </para></listitem>
  5608. </varlistentry>
  5609. <varlistentry id="XFRIN_IXFR_UPTODATE">
  5610. <term>XFRIN_IXFR_UPTODATE IXFR requested serial for %1 is %2, master has %3, not updating</term>
  5611. <listitem><para>
  5612. The first SOA record in an IXFR response indicates the zone's serial
  5613. at the primary server is not newer than the client's. This is
  5614. basically unexpected event because normally the client first checks
  5615. the SOA serial by an SOA query, but can still happen if the transfer
  5616. is manually invoked or (although unlikely) there is a rapid change at
  5617. the primary server between the SOA and IXFR queries. The client
  5618. implementation confirms the whole response is this single SOA, and
  5619. aborts the transfer just like a successful case.
  5620. </para></listitem>
  5621. </varlistentry>
  5622. <varlistentry id="XFRIN_MSGQ_SEND_ERROR">
  5623. <term>XFRIN_MSGQ_SEND_ERROR error while contacting %1 and %2</term>
  5624. <listitem><para>
  5625. There was a problem sending a message to the xfrout module or the
  5626. zone manager. This most likely means that the msgq daemon has quit or
  5627. was killed.
  5628. </para></listitem>
  5629. </varlistentry>
  5630. <varlistentry id="XFRIN_MSGQ_SEND_ERROR_AUTH">
  5631. <term>XFRIN_MSGQ_SEND_ERROR_AUTH error while contacting %1</term>
  5632. <listitem><para>
  5633. There was a problem sending a message to b10-auth. This most likely
  5634. means that the msgq daemon has quit or was killed.
  5635. </para></listitem>
  5636. </varlistentry>
  5637. <varlistentry id="XFRIN_MSGQ_SEND_ERROR_ZONE_MANAGER">
  5638. <term>XFRIN_MSGQ_SEND_ERROR_ZONE_MANAGER error while contacting %1</term>
  5639. <listitem><para>
  5640. There was a problem sending a message to the zone manager. This most
  5641. likely means that the msgq daemon has quit or was killed.
  5642. </para></listitem>
  5643. </varlistentry>
  5644. <varlistentry id="XFRIN_NOTIFY_UNKNOWN_MASTER">
  5645. <term>XFRIN_NOTIFY_UNKNOWN_MASTER got notification to retransfer zone %1 from %2, expected %3</term>
  5646. <listitem><para>
  5647. The system received a notify for the given zone, but the address it came
  5648. from does not match the master address in the Xfrin configuration. The notify
  5649. is ignored. This may indicate that the configuration for the master is wrong,
  5650. that a wrong machine is sending notifies, or that fake notifies are being sent.
  5651. </para></listitem>
  5652. </varlistentry>
  5653. <varlistentry id="XFRIN_RETRANSFER_UNKNOWN_ZONE">
  5654. <term>XFRIN_RETRANSFER_UNKNOWN_ZONE got notification to retransfer unknown zone %1</term>
  5655. <listitem><para>
  5656. There was an internal command to retransfer the given zone, but the
  5657. zone is not known to the system. This may indicate that the configuration
  5658. for xfrin is incomplete, or there was a typographical error in the
  5659. zone name in the configuration.
  5660. </para></listitem>
  5661. </varlistentry>
  5662. <varlistentry id="XFRIN_STARTED">
  5663. <term>XFRIN_STARTED xfrin started</term>
  5664. <listitem><para>
  5665. This informational message is output by xfrin when all initialization
  5666. has been completed and it is entering its main loop.
  5667. </para></listitem>
  5668. </varlistentry>
  5669. <varlistentry id="XFRIN_STOPPED_BY_KEYBOARD">
  5670. <term>XFRIN_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  5671. <listitem><para>
  5672. There was a keyboard interrupt signal to stop the xfrin daemon. The
  5673. daemon will now shut down.
  5674. </para></listitem>
  5675. </varlistentry>
  5676. <varlistentry id="XFRIN_TRANSFER_SUCCESS">
  5677. <term>XFRIN_TRANSFER_SUCCESS full %1 transfer of zone %2 succeeded (messages: %3, records: %4, bytes: %5, run time: %6 seconds, %7 bytes/second)</term>
  5678. <listitem><para>
  5679. The AXFR transfer of the given zone was successful.
  5680. The provided information contains the following values:
  5681. </para><para>
  5682. messages: Number of overhead DNS messages in the transfer
  5683. </para><para>
  5684. records: Number of Resource Records in the full transfer, excluding the
  5685. final SOA record that marks the end of the AXFR.
  5686. </para><para>
  5687. bytes: Full size of the transfer data on the wire.
  5688. </para><para>
  5689. run time: Time (in seconds) the complete axfr took
  5690. </para><para>
  5691. bytes/second: Transfer speed
  5692. </para></listitem>
  5693. </varlistentry>
  5694. <varlistentry id="XFRIN_UNKNOWN_ERROR">
  5695. <term>XFRIN_UNKNOWN_ERROR unknown error: %1</term>
  5696. <listitem><para>
  5697. An uncaught exception was raised while running the xfrin daemon. The
  5698. exception message is printed in the log message.
  5699. </para></listitem>
  5700. </varlistentry>
  5701. <varlistentry id="XFRIN_XFR_OTHER_FAILURE">
  5702. <term>XFRIN_XFR_OTHER_FAILURE %1 transfer of zone %2 failed: %3</term>
  5703. <listitem><para>
  5704. The XFR transfer for the given zone has failed due to a problem outside
  5705. of the xfrin module. Possible reasons are a broken DNS message or failure
  5706. in database connection. The error is shown in the log message.
  5707. </para></listitem>
  5708. </varlistentry>
  5709. <varlistentry id="XFRIN_XFR_PROCESS_FAILURE">
  5710. <term>XFRIN_XFR_PROCESS_FAILURE %1 transfer of zone %2/%3 failed: %4</term>
  5711. <listitem><para>
  5712. An XFR session failed outside the main protocol handling. This
  5713. includes an error at the data source level at the initialization
  5714. phase, unexpected failure in the network connection setup to the
  5715. master server, or even more unexpected failure due to unlikely events
  5716. such as memory allocation failure. Details of the error are shown in
  5717. the log message. In general, these errors are not really expected
  5718. ones, and indicate an installation error or a program bug. The
  5719. session handler thread tries to clean up all intermediate resources
  5720. even on these errors, but it may be incomplete. So, if this log
  5721. message continuously appears, system resource consumption should be
  5722. checked, and you may even want to disable the corresponding transfers.
  5723. You may also want to file a bug report if this message appears so
  5724. often.
  5725. </para></listitem>
  5726. </varlistentry>
  5727. <varlistentry id="XFRIN_XFR_TRANSFER_FAILURE">
  5728. <term>XFRIN_XFR_TRANSFER_FAILURE %1 transfer of zone %2 with %3 failed: %4</term>
  5729. <listitem><para>
  5730. The XFR transfer for the given zone has failed due to an internal error.
  5731. The error is shown in the log message.
  5732. </para></listitem>
  5733. </varlistentry>
  5734. <varlistentry id="XFRIN_XFR_TRANSFER_FALLBACK">
  5735. <term>XFRIN_XFR_TRANSFER_FALLBACK falling back from IXFR to AXFR for %1</term>
  5736. <listitem><para>
  5737. The IXFR transfer of the given zone failed. This might happen in many cases,
  5738. such that the remote server doesn't support IXFR, we don't have the SOA record
  5739. (or the zone at all), we are out of sync, etc. In many of these situations,
  5740. AXFR could still work. Therefore we try that one in case it helps.
  5741. </para></listitem>
  5742. </varlistentry>
  5743. <varlistentry id="XFRIN_XFR_TRANSFER_PROTOCOL_ERROR">
  5744. <term>XFRIN_XFR_TRANSFER_PROTOCOL_ERROR %1 transfer of zone %2 with %3 failed: %4</term>
  5745. <listitem><para>
  5746. The XFR transfer for the given zone has failed due to a protocol
  5747. error, such as an unexpected response from the primary server. The
  5748. error is shown in the log message. It may be because the primary
  5749. server implementation is broken or (although less likely) there was
  5750. some attack attempt, but it can also happen due to configuration
  5751. mismatch such as the remote server does not have authority for the
  5752. zone any more but the local configuration hasn't been updated. So it
  5753. is recommended to check the primary server configuration.
  5754. </para></listitem>
  5755. </varlistentry>
  5756. <varlistentry id="XFRIN_XFR_TRANSFER_STARTED">
  5757. <term>XFRIN_XFR_TRANSFER_STARTED %1 transfer of zone %2 started</term>
  5758. <listitem><para>
  5759. A connection to the master server has been made, the serial value in
  5760. the SOA record has been checked, and a zone transfer has been started.
  5761. </para></listitem>
  5762. </varlistentry>
  5763. <varlistentry id="XFRIN_ZONE_CREATED">
  5764. <term>XFRIN_ZONE_CREATED Zone %1 not found in the given data source, newly created</term>
  5765. <listitem><para>
  5766. On starting an xfrin session, it is identified that the zone to be
  5767. transferred is not found in the data source. This can happen if a
  5768. secondary DNS server first tries to perform AXFR from a primary server
  5769. without creating the zone image beforehand (e.g. by b10-loadzone). As
  5770. of this writing the xfrin process provides backward compatible
  5771. behavior to previous versions: creating a new one in the data source
  5772. not to surprise existing users too much. This is probably not a good
  5773. idea, however, in terms of who should be responsible for managing
  5774. zones at a higher level. In future it is more likely that a separate
  5775. zone management framework is provided, and the situation where the
  5776. given zone isn't found in xfrout will be treated as an error.
  5777. </para></listitem>
  5778. </varlistentry>
  5779. <varlistentry id="XFRIN_ZONE_MULTIPLE_SOA">
  5780. <term>XFRIN_ZONE_MULTIPLE_SOA Zone %1 has %2 SOA RRs</term>
  5781. <listitem><para>
  5782. On starting an xfrin session, it is identified that the zone to be
  5783. transferred has multiple SOA RRs. Such a zone is broken, but could be
  5784. accidentally configured especially in a data source using "non
  5785. captive" backend database. The implementation ignores entire SOA RRs
  5786. and tries to continue processing as if the zone were empty. This
  5787. means subsequent AXFR can succeed and possibly replace the zone with
  5788. valid content, but an IXFR attempt will fail.
  5789. </para></listitem>
  5790. </varlistentry>
  5791. <varlistentry id="XFRIN_ZONE_NO_SOA">
  5792. <term>XFRIN_ZONE_NO_SOA Zone %1 does not have SOA</term>
  5793. <listitem><para>
  5794. On starting an xfrin session, it is identified that the zone to be
  5795. transferred does not have an SOA RR in the data source. This is not
  5796. necessarily an error; if a secondary DNS server first tries to perform
  5797. transfer from a primary server, the zone can be empty, and therefore
  5798. doesn't have an SOA. Subsequent AXFR will fill in the zone; if the
  5799. attempt is IXFR it will fail in query creation.
  5800. </para></listitem>
  5801. </varlistentry>
  5802. <varlistentry id="XFRIN_ZONE_SERIAL_AHEAD">
  5803. <term>XFRIN_ZONE_SERIAL_AHEAD Serial number (%1) for %2 received from master %3 &lt; ours (%4)</term>
  5804. <listitem><para>
  5805. The response to an SOA query prior to xfr indicated that the zone's
  5806. SOA serial at the primary server is smaller than that of the xfrin
  5807. client. This is not necessarily an error especially if that
  5808. particular primary server is another secondary server which hasn't got
  5809. the latest version of the zone. But if the primary server is known to
  5810. be the real source of the zone, some unexpected inconsistency may have
  5811. happened, and you may want to take a closer look. In this case xfrin
  5812. doesn't perform subsequent zone transfer.
  5813. </para></listitem>
  5814. </varlistentry>
  5815. <varlistentry id="XFROUT_BAD_TSIG_KEY_STRING">
  5816. <term>XFROUT_BAD_TSIG_KEY_STRING bad TSIG key string: %1</term>
  5817. <listitem><para>
  5818. The TSIG key string as read from the configuration does not represent
  5819. a valid TSIG key.
  5820. </para></listitem>
  5821. </varlistentry>
  5822. <varlistentry id="XFROUT_CC_SESSION_ERROR">
  5823. <term>XFROUT_CC_SESSION_ERROR error reading from cc channel: %1</term>
  5824. <listitem><para>
  5825. There was a problem reading from the command and control channel. The
  5826. most likely cause is that the msgq daemon is not running.
  5827. </para></listitem>
  5828. </varlistentry>
  5829. <varlistentry id="XFROUT_CC_SESSION_TIMEOUT_ERROR">
  5830. <term>XFROUT_CC_SESSION_TIMEOUT_ERROR timeout waiting for cc response</term>
  5831. <listitem><para>
  5832. There was a problem reading a response from another module over the
  5833. command and control channel. The most likely cause is that the
  5834. configuration manager b10-cfgmgr is not running.
  5835. </para></listitem>
  5836. </varlistentry>
  5837. <varlistentry id="XFROUT_CONFIG_ERROR">
  5838. <term>XFROUT_CONFIG_ERROR error found in configuration data: %1</term>
  5839. <listitem><para>
  5840. The xfrout process encountered an error when installing the configuration at
  5841. startup time. Details of the error are included in the log message.
  5842. </para></listitem>
  5843. </varlistentry>
  5844. <varlistentry id="XFROUT_FETCH_REQUEST_ERROR">
  5845. <term>XFROUT_FETCH_REQUEST_ERROR socket error while fetching a request from the auth daemon</term>
  5846. <listitem><para>
  5847. There was a socket error while contacting the b10-auth daemon to
  5848. fetch a transfer request. The auth daemon may have shutdown.
  5849. </para></listitem>
  5850. </varlistentry>
  5851. <varlistentry id="XFROUT_HANDLE_QUERY_ERROR">
  5852. <term>XFROUT_HANDLE_QUERY_ERROR error while handling query: %1</term>
  5853. <listitem><para>
  5854. There was a general error handling an xfrout query. The error is shown
  5855. in the message. In principle this error should not appear, and points
  5856. to an oversight catching exceptions in the right place. However, to
  5857. ensure the daemon keeps running, this error is caught and reported.
  5858. </para></listitem>
  5859. </varlistentry>
  5860. <varlistentry id="XFROUT_IMPORT">
  5861. <term>XFROUT_IMPORT error importing python module: %1</term>
  5862. <listitem><para>
  5863. There was an error importing a python module. One of the modules needed
  5864. by xfrout could not be found. This suggests that either some libraries
  5865. are missing on the system, or the PYTHONPATH variable is not correct.
  5866. The specific place where this library needs to be depends on your
  5867. system and your specific installation.
  5868. </para></listitem>
  5869. </varlistentry>
  5870. <varlistentry id="XFROUT_IXFR_MULTIPLE_SOA">
  5871. <term>XFROUT_IXFR_MULTIPLE_SOA IXFR client %1: authority section has multiple SOAs</term>
  5872. <listitem><para>
  5873. An IXFR request was received with more than one SOA RRs in the authority
  5874. section. The xfrout daemon rejects the request with an RCODE of
  5875. FORMERR.
  5876. </para></listitem>
  5877. </varlistentry>
  5878. <varlistentry id="XFROUT_IXFR_NO_JOURNAL_SUPPORT">
  5879. <term>XFROUT_IXFR_NO_JOURNAL_SUPPORT IXFR client %1, %2: journaling not supported in the data source, falling back to AXFR</term>
  5880. <listitem><para>
  5881. An IXFR request was received but the underlying data source did
  5882. not support journaling. The xfrout daemon fell back to AXFR-style
  5883. IXFR.
  5884. </para></listitem>
  5885. </varlistentry>
  5886. <varlistentry id="XFROUT_IXFR_NO_SOA">
  5887. <term>XFROUT_IXFR_NO_SOA IXFR client %1: missing SOA</term>
  5888. <listitem><para>
  5889. An IXFR request was received with no SOA RR in the authority section.
  5890. The xfrout daemon rejects the request with an RCODE of FORMERR.
  5891. </para></listitem>
  5892. </varlistentry>
  5893. <varlistentry id="XFROUT_IXFR_NO_VERSION">
  5894. <term>XFROUT_IXFR_NO_VERSION IXFR client %1, %2: version (%3 to %4) not in journal, falling back to AXFR</term>
  5895. <listitem><para>
  5896. An IXFR request was received, but the requested range of differences
  5897. were not found in the data source. The xfrout daemon fell back to
  5898. AXFR-style IXFR.
  5899. </para></listitem>
  5900. </varlistentry>
  5901. <varlistentry id="XFROUT_IXFR_NO_ZONE">
  5902. <term>XFROUT_IXFR_NO_ZONE IXFR client %1, %2: zone not found with journal</term>
  5903. <listitem><para>
  5904. The requested zone in IXFR was not found in the data source
  5905. even though the xfrout daemon sucessfully found the SOA RR of the zone
  5906. in the data source. This can happen if the administrator removed the
  5907. zone from the data source within the small duration between these
  5908. operations, but it's more likely to be a bug or broken data source.
  5909. Unless you know why this message was logged, and especially if it
  5910. happens often, it's advisable to check whether the data source is
  5911. valid for this zone. The xfrout daemon considers it a possible,
  5912. though unlikely, event, and returns a response with an RCODE of
  5913. NOTAUTH.
  5914. </para></listitem>
  5915. </varlistentry>
  5916. <varlistentry id="XFROUT_IXFR_UPTODATE">
  5917. <term>XFROUT_IXFR_UPTODATE IXFR client %1, %2: client version is new enough (theirs=%3, ours=%4)</term>
  5918. <listitem><para>
  5919. An IXFR request was received, but the client's SOA version is the same as
  5920. or newer than that of the server. The xfrout server responds to the
  5921. request with the answer section being just one SOA of that version.
  5922. Note: as of this wrting the 'newer version' cannot be identified due to
  5923. the lack of support for the serial number arithmetic. This will soon
  5924. be implemented.
  5925. </para></listitem>
  5926. </varlistentry>
  5927. <varlistentry id="XFROUT_MODULECC_SESSION_ERROR">
  5928. <term>XFROUT_MODULECC_SESSION_ERROR error encountered by configuration/command module: %1</term>
  5929. <listitem><para>
  5930. There was a problem in the lower level module handling configuration and
  5931. control commands. This could happen for various reasons, but the most likely
  5932. cause is that the configuration database contains a syntax error and xfrout
  5933. failed to start at initialization. A detailed error message from the module
  5934. will also be displayed.
  5935. </para></listitem>
  5936. </varlistentry>
  5937. <varlistentry id="XFROUT_NEW_CONFIG">
  5938. <term>XFROUT_NEW_CONFIG Update xfrout configuration</term>
  5939. <listitem><para>
  5940. New configuration settings have been sent from the configuration
  5941. manager. The xfrout daemon will now apply them.
  5942. </para></listitem>
  5943. </varlistentry>
  5944. <varlistentry id="XFROUT_NEW_CONFIG_DONE">
  5945. <term>XFROUT_NEW_CONFIG_DONE Update xfrout configuration done</term>
  5946. <listitem><para>
  5947. The xfrout daemon is now done reading the new configuration settings
  5948. received from the configuration manager.
  5949. </para></listitem>
  5950. </varlistentry>
  5951. <varlistentry id="XFROUT_NOTIFY_COMMAND">
  5952. <term>XFROUT_NOTIFY_COMMAND received command to send notifies for %1/%2</term>
  5953. <listitem><para>
  5954. The xfrout daemon received a command on the command channel that
  5955. NOTIFY packets should be sent for the given zone.
  5956. </para></listitem>
  5957. </varlistentry>
  5958. <varlistentry id="XFROUT_PARSE_QUERY_ERROR">
  5959. <term>XFROUT_PARSE_QUERY_ERROR error parsing query: %1</term>
  5960. <listitem><para>
  5961. There was a parse error while reading an incoming query. The parse
  5962. error is shown in the log message. A remote client sent a packet we
  5963. do not understand or support. The xfrout request will be ignored.
  5964. In general, this should only occur for unexpected problems like
  5965. memory allocation failures, as the query should already have been
  5966. parsed by the b10-auth daemon, before it was passed here.
  5967. </para></listitem>
  5968. </varlistentry>
  5969. <varlistentry id="XFROUT_PROCESS_REQUEST_ERROR">
  5970. <term>XFROUT_PROCESS_REQUEST_ERROR error processing transfer request: %1</term>
  5971. <listitem><para>
  5972. There was an error in receiving a transfer request from b10-auth.
  5973. This is generally an unexpected event, but is possible when, for
  5974. example, b10-auth terminates in the middle of forwarding the request.
  5975. When this happens it's unlikely to be recoverable with the same
  5976. communication session with b10-auth, so b10-xfrout drops it and
  5977. waits for a new session. In any case, this error indicates that
  5978. there's something very wrong in the system, so it's advisable to check
  5979. the over all status of the BIND 10 system.
  5980. </para></listitem>
  5981. </varlistentry>
  5982. <varlistentry id="XFROUT_QUERY_DROPPED">
  5983. <term>XFROUT_QUERY_DROPPED %1 client %2: request to transfer %3 dropped</term>
  5984. <listitem><para>
  5985. The xfrout process silently dropped a request to transfer zone to
  5986. given host. This is required by the ACLs. The %2 represents the IP
  5987. address and port of the peer requesting the transfer, and the %3
  5988. represents the zone name and class.
  5989. </para></listitem>
  5990. </varlistentry>
  5991. <varlistentry id="XFROUT_QUERY_QUOTA_EXCCEEDED">
  5992. <term>XFROUT_QUERY_QUOTA_EXCCEEDED %1 client %2: request denied due to quota (%3)</term>
  5993. <listitem><para>
  5994. The xfr request was rejected because the server was already handling
  5995. the maximum number of allowable transfers as specified in the transfers_out
  5996. configuration parameter, which is also shown in the log message. The
  5997. request was immediately responded and terminated with an RCODE of REFUSED.
  5998. This can happen for a busy xfrout server, and you may want to increase
  5999. this parameter; if the server is being too busy due to requests from
  6000. unexpected clients you may want to restrict the legitimate clients
  6001. with ACL.
  6002. </para></listitem>
  6003. </varlistentry>
  6004. <varlistentry id="XFROUT_QUERY_REJECTED">
  6005. <term>XFROUT_QUERY_REJECTED %1 client %2: request to transfer %3 rejected</term>
  6006. <listitem><para>
  6007. The xfrout process rejected (by REFUSED rcode) a request to transfer zone to
  6008. given host. This is because of ACLs. The %2 represents the IP
  6009. address and port of the peer requesting the transfer, and the %3
  6010. represents the zone name and class.
  6011. </para></listitem>
  6012. </varlistentry>
  6013. <varlistentry id="XFROUT_RECEIVED_SHUTDOWN_COMMAND">
  6014. <term>XFROUT_RECEIVED_SHUTDOWN_COMMAND shutdown command received</term>
  6015. <listitem><para>
  6016. The xfrout daemon received a shutdown command from the command channel
  6017. and will now shut down.
  6018. </para></listitem>
  6019. </varlistentry>
  6020. <varlistentry id="XFROUT_RECEIVE_FILE_DESCRIPTOR_ERROR">
  6021. <term>XFROUT_RECEIVE_FILE_DESCRIPTOR_ERROR error receiving the file descriptor for an XFR connection</term>
  6022. <listitem><para>
  6023. There was an error receiving the file descriptor for the transfer
  6024. request from b10-auth. There can be several reasons for this, but
  6025. the most likely cause is that b10-auth terminates for some reason
  6026. (maybe it's a bug of b10-auth, maybe it's an intentional restart by
  6027. the administrator), so depending on how this happens it may or may not
  6028. be a serious error. But in any case this is not expected to happen
  6029. frequently, and it's advisable to figure out how this happened if
  6030. this message is logged. Even if this error happens xfrout will reset
  6031. its internal state and will keep receiving further requests. So
  6032. if it's just a temporary restart of b10-auth the administrator does
  6033. not have to do anything.
  6034. </para></listitem>
  6035. </varlistentry>
  6036. <varlistentry id="XFROUT_REMOVE_OLD_UNIX_SOCKET_FILE_ERROR">
  6037. <term>XFROUT_REMOVE_OLD_UNIX_SOCKET_FILE_ERROR error removing unix socket file %1: %2</term>
  6038. <listitem><para>
  6039. The unix socket file xfrout needs for contact with the auth daemon
  6040. already exists, and needs to be removed first, but there is a problem
  6041. removing it. It is likely that we do not have permission to remove
  6042. this file. The specific error is show in the log message. The xfrout
  6043. daemon will shut down.
  6044. </para></listitem>
  6045. </varlistentry>
  6046. <varlistentry id="XFROUT_REMOVE_UNIX_SOCKET_FILE_ERROR">
  6047. <term>XFROUT_REMOVE_UNIX_SOCKET_FILE_ERROR error clearing unix socket file %1: %2</term>
  6048. <listitem><para>
  6049. When shutting down, the xfrout daemon tried to clear the unix socket
  6050. file used for communication with the auth daemon. It failed to remove
  6051. the file. The reason for the failure is given in the error message.
  6052. </para></listitem>
  6053. </varlistentry>
  6054. <varlistentry id="XFROUT_SOCKET_SELECT_ERROR">
  6055. <term>XFROUT_SOCKET_SELECT_ERROR error while calling select() on request socket: %1</term>
  6056. <listitem><para>
  6057. There was an error while calling select() on the socket that informs
  6058. the xfrout daemon that a new xfrout request has arrived. This should
  6059. be a result of rare local error such as memory allocation failure and
  6060. shouldn't happen under normal conditions. The error is included in the
  6061. log message.
  6062. </para></listitem>
  6063. </varlistentry>
  6064. <varlistentry id="XFROUT_STARTED">
  6065. <term>XFROUT_STARTED xfrout started</term>
  6066. <listitem><para>
  6067. This informational message is output by xfrout when all initialization
  6068. has been completed and it is entering its main loop.
  6069. </para></listitem>
  6070. </varlistentry>
  6071. <varlistentry id="XFROUT_STOPPED_BY_KEYBOARD">
  6072. <term>XFROUT_STOPPED_BY_KEYBOARD keyboard interrupt, shutting down</term>
  6073. <listitem><para>
  6074. There was a keyboard interrupt signal to stop the xfrout daemon. The
  6075. daemon will now shut down.
  6076. </para></listitem>
  6077. </varlistentry>
  6078. <varlistentry id="XFROUT_STOPPING">
  6079. <term>XFROUT_STOPPING the xfrout daemon is shutting down</term>
  6080. <listitem><para>
  6081. The current transfer is aborted, as the xfrout daemon is shutting down.
  6082. </para></listitem>
  6083. </varlistentry>
  6084. <varlistentry id="XFROUT_UNIX_SOCKET_FILE_IN_USE">
  6085. <term>XFROUT_UNIX_SOCKET_FILE_IN_USE another xfrout process seems to be using the unix socket file %1</term>
  6086. <listitem><para>
  6087. While starting up, the xfrout daemon tried to clear the unix domain
  6088. socket needed for contacting the b10-auth daemon to pass requests
  6089. on, but the file is in use. The most likely cause is that another
  6090. xfrout daemon process is still running. This xfrout daemon (the one
  6091. printing this message) will not start.
  6092. </para></listitem>
  6093. </varlistentry>
  6094. <varlistentry id="XFROUT_XFR_TRANSFER_CHECK_ERROR">
  6095. <term>XFROUT_XFR_TRANSFER_CHECK_ERROR %1 client %2: check for transfer of %3 failed: %4</term>
  6096. <listitem><para>
  6097. Pre-response check for an incomding XFR request failed unexpectedly.
  6098. The most likely cause of this is that some low level error in the data
  6099. source, but it may also be other general (more unlikely) errors such
  6100. as memory shortage. Some detail of the error is also included in the
  6101. message. The xfrout server tries to return a SERVFAIL response in this case.
  6102. </para></listitem>
  6103. </varlistentry>
  6104. <varlistentry id="XFROUT_XFR_TRANSFER_DONE">
  6105. <term>XFROUT_XFR_TRANSFER_DONE %1 client %2: transfer of %3 complete</term>
  6106. <listitem><para>
  6107. The transfer of the given zone has been completed successfully, or was
  6108. aborted due to a shutdown event.
  6109. </para></listitem>
  6110. </varlistentry>
  6111. <varlistentry id="XFROUT_XFR_TRANSFER_ERROR">
  6112. <term>XFROUT_XFR_TRANSFER_ERROR %1 client %2: error transferring zone %3: %4</term>
  6113. <listitem><para>
  6114. An uncaught exception was encountered while sending the response to
  6115. an AXFR query. The error message of the exception is included in the
  6116. log message, but this error most likely points to incomplete exception
  6117. handling in the code.
  6118. </para></listitem>
  6119. </varlistentry>
  6120. <varlistentry id="XFROUT_XFR_TRANSFER_FAILED">
  6121. <term>XFROUT_XFR_TRANSFER_FAILED %1 client %2: transfer of %3 failed, rcode: %4</term>
  6122. <listitem><para>
  6123. A transfer out for the given zone failed. An error response is sent
  6124. to the client. The given rcode is the rcode that is set in the error
  6125. response. This is either NOTAUTH (we are not authoritative for the
  6126. zone), SERVFAIL (our internal database is missing the SOA record for
  6127. the zone), or REFUSED (the limit of simultaneous outgoing AXFR
  6128. transfers, as specified by the configuration value
  6129. Xfrout/max_transfers_out, has been reached).
  6130. </para></listitem>
  6131. </varlistentry>
  6132. <varlistentry id="XFROUT_XFR_TRANSFER_STARTED">
  6133. <term>XFROUT_XFR_TRANSFER_STARTED %1 client %2: transfer of zone %3 has started</term>
  6134. <listitem><para>
  6135. A transfer out of the given zone has started.
  6136. </para></listitem>
  6137. </varlistentry>
  6138. <varlistentry id="ZONEMGR_CCSESSION_ERROR">
  6139. <term>ZONEMGR_CCSESSION_ERROR command channel session error: %1</term>
  6140. <listitem><para>
  6141. An error was encountered on the command channel. The message indicates
  6142. the nature of the error.
  6143. </para></listitem>
  6144. </varlistentry>
  6145. <varlistentry id="ZONEMGR_JITTER_TOO_BIG">
  6146. <term>ZONEMGR_JITTER_TOO_BIG refresh_jitter is too big, setting to 0.5</term>
  6147. <listitem><para>
  6148. The value specified in the configuration for the refresh jitter is too large
  6149. so its value has been set to the maximum of 0.5.
  6150. </para></listitem>
  6151. </varlistentry>
  6152. <varlistentry id="ZONEMGR_KEYBOARD_INTERRUPT">
  6153. <term>ZONEMGR_KEYBOARD_INTERRUPT exiting zonemgr process as result of keyboard interrupt</term>
  6154. <listitem><para>
  6155. An informational message output when the zone manager was being run at a
  6156. terminal and it was terminated via a keyboard interrupt signal.
  6157. </para></listitem>
  6158. </varlistentry>
  6159. <varlistentry id="ZONEMGR_LOAD_ZONE">
  6160. <term>ZONEMGR_LOAD_ZONE loading zone %1 (class %2)</term>
  6161. <listitem><para>
  6162. This is a debug message indicating that the zone of the specified class
  6163. is being loaded.
  6164. </para></listitem>
  6165. </varlistentry>
  6166. <varlistentry id="ZONEMGR_NO_MASTER_ADDRESS">
  6167. <term>ZONEMGR_NO_MASTER_ADDRESS internal BIND 10 command did not contain address of master</term>
  6168. <listitem><para>
  6169. A command received by the zone manager from the Auth module did not
  6170. contain the address of the master server from which a NOTIFY message
  6171. was received. This may be due to an internal programming error; please
  6172. submit a bug report.
  6173. </para></listitem>
  6174. </varlistentry>
  6175. <varlistentry id="ZONEMGR_NO_SOA">
  6176. <term>ZONEMGR_NO_SOA zone %1 (class %2) does not have an SOA record</term>
  6177. <listitem><para>
  6178. When loading the named zone of the specified class the zone manager
  6179. discovered that the data did not contain an SOA record. The load has
  6180. been abandoned.
  6181. </para></listitem>
  6182. </varlistentry>
  6183. <varlistentry id="ZONEMGR_NO_TIMER_THREAD">
  6184. <term>ZONEMGR_NO_TIMER_THREAD trying to stop zone timer thread but it is not running</term>
  6185. <listitem><para>
  6186. An attempt was made to stop the timer thread (used to track when zones
  6187. should be refreshed) but it was not running. This may indicate an
  6188. internal program error. Please submit a bug report.
  6189. </para></listitem>
  6190. </varlistentry>
  6191. <varlistentry id="ZONEMGR_NO_ZONE_CLASS">
  6192. <term>ZONEMGR_NO_ZONE_CLASS internal BIND 10 command did not contain class of zone</term>
  6193. <listitem><para>
  6194. A command received by the zone manager from another BIND 10 module did
  6195. not contain the class of the zone on which the zone manager should act.
  6196. This may be due to an internal programming error; please submit a
  6197. bug report.
  6198. </para></listitem>
  6199. </varlistentry>
  6200. <varlistentry id="ZONEMGR_NO_ZONE_NAME">
  6201. <term>ZONEMGR_NO_ZONE_NAME internal BIND 10 command did not contain name of zone</term>
  6202. <listitem><para>
  6203. A command received by the zone manager from another BIND 10 module did
  6204. not contain the name of the zone on which the zone manager should act.
  6205. This may be due to an internal programming error; please submit a
  6206. bug report.
  6207. </para></listitem>
  6208. </varlistentry>
  6209. <varlistentry id="ZONEMGR_RECEIVE_NOTIFY">
  6210. <term>ZONEMGR_RECEIVE_NOTIFY received NOTIFY command for zone %1 (class %2)</term>
  6211. <listitem><para>
  6212. This is a debug message indicating that the zone manager has received a
  6213. NOTIFY command over the command channel. The command is sent by the Auth
  6214. process when it is acting as a slave server for the zone and causes the
  6215. zone manager to record the master server for the zone and start a timer;
  6216. when the timer expires, the master will be polled to see if it contains
  6217. new data.
  6218. </para></listitem>
  6219. </varlistentry>
  6220. <varlistentry id="ZONEMGR_RECEIVE_SHUTDOWN">
  6221. <term>ZONEMGR_RECEIVE_SHUTDOWN received SHUTDOWN command</term>
  6222. <listitem><para>
  6223. This is a debug message indicating that the zone manager has received
  6224. a SHUTDOWN command over the command channel from the Boss process.
  6225. It will act on this command and shut down.
  6226. </para></listitem>
  6227. </varlistentry>
  6228. <varlistentry id="ZONEMGR_RECEIVE_UNKNOWN">
  6229. <term>ZONEMGR_RECEIVE_UNKNOWN received unknown command '%1'</term>
  6230. <listitem><para>
  6231. This is a warning message indicating that the zone manager has received
  6232. the stated command over the command channel. The command is not known
  6233. to the zone manager and although the command is ignored, its receipt
  6234. may indicate an internal error. Please submit a bug report.
  6235. </para></listitem>
  6236. </varlistentry>
  6237. <varlistentry id="ZONEMGR_RECEIVE_XFRIN_FAILED">
  6238. <term>ZONEMGR_RECEIVE_XFRIN_FAILED received XFRIN FAILED command for zone %1 (class %2)</term>
  6239. <listitem><para>
  6240. This is a debug message indicating that the zone manager has received
  6241. an XFRIN FAILED command over the command channel. The command is sent
  6242. by the Xfrin process when a transfer of zone data into the system has
  6243. failed, and causes the zone manager to schedule another transfer attempt.
  6244. </para></listitem>
  6245. </varlistentry>
  6246. <varlistentry id="ZONEMGR_RECEIVE_XFRIN_SUCCESS">
  6247. <term>ZONEMGR_RECEIVE_XFRIN_SUCCESS received XFRIN SUCCESS command for zone %1 (class %2)</term>
  6248. <listitem><para>
  6249. This is a debug message indicating that the zone manager has received
  6250. an XFRIN SUCCESS command over the command channel. The command is sent
  6251. by the Xfrin process when the transfer of zone data into the system has
  6252. succeeded, and causes the data to be loaded and served by BIND 10.
  6253. </para></listitem>
  6254. </varlistentry>
  6255. <varlistentry id="ZONEMGR_REFRESH_ZONE">
  6256. <term>ZONEMGR_REFRESH_ZONE refreshing zone %1 (class %2)</term>
  6257. <listitem><para>
  6258. The zone manager is refreshing the named zone of the specified class
  6259. with updated information.
  6260. </para></listitem>
  6261. </varlistentry>
  6262. <varlistentry id="ZONEMGR_SELECT_ERROR">
  6263. <term>ZONEMGR_SELECT_ERROR error with select(): %1</term>
  6264. <listitem><para>
  6265. An attempt to wait for input from a socket failed. The failing operation
  6266. is a call to the operating system's select() function, which failed for
  6267. the given reason.
  6268. </para></listitem>
  6269. </varlistentry>
  6270. <varlistentry id="ZONEMGR_SEND_FAIL">
  6271. <term>ZONEMGR_SEND_FAIL failed to send command to %1, session has been closed</term>
  6272. <listitem><para>
  6273. The zone manager attempted to send a command to the named BIND 10 module,
  6274. but the send failed. The session between the modules has been closed.
  6275. </para></listitem>
  6276. </varlistentry>
  6277. <varlistentry id="ZONEMGR_SESSION_ERROR">
  6278. <term>ZONEMGR_SESSION_ERROR unable to establish session to command channel daemon</term>
  6279. <listitem><para>
  6280. The zonemgr process was not able to be started because it could not
  6281. connect to the command channel daemon. The most usual cause of this
  6282. problem is that the daemon is not running.
  6283. </para></listitem>
  6284. </varlistentry>
  6285. <varlistentry id="ZONEMGR_SESSION_TIMEOUT">
  6286. <term>ZONEMGR_SESSION_TIMEOUT timeout on session to command channel daemon</term>
  6287. <listitem><para>
  6288. The zonemgr process was not able to be started because it timed out when
  6289. connecting to the command channel daemon. The most usual cause of this
  6290. problem is that the daemon is not running.
  6291. </para></listitem>
  6292. </varlistentry>
  6293. <varlistentry id="ZONEMGR_SHUTDOWN">
  6294. <term>ZONEMGR_SHUTDOWN zone manager has shut down</term>
  6295. <listitem><para>
  6296. A debug message, output when the zone manager has shut down completely.
  6297. </para></listitem>
  6298. </varlistentry>
  6299. <varlistentry id="ZONEMGR_STARTED">
  6300. <term>ZONEMGR_STARTED zonemgr started</term>
  6301. <listitem><para>
  6302. This informational message is output by zonemgr when all initialization
  6303. has been completed and it is entering its main loop.
  6304. </para></listitem>
  6305. </varlistentry>
  6306. <varlistentry id="ZONEMGR_STARTING">
  6307. <term>ZONEMGR_STARTING zone manager starting</term>
  6308. <listitem><para>
  6309. A debug message output when the zone manager starts up.
  6310. </para></listitem>
  6311. </varlistentry>
  6312. <varlistentry id="ZONEMGR_TIMER_THREAD_RUNNING">
  6313. <term>ZONEMGR_TIMER_THREAD_RUNNING trying to start timer thread but one is already running</term>
  6314. <listitem><para>
  6315. This message is issued when an attempt is made to start the timer
  6316. thread (which keeps track of when zones need a refresh) but one is
  6317. already running. It indicates either an error in the program logic or
  6318. a problem with stopping a previous instance of the timer. Please submit
  6319. a bug report.
  6320. </para></listitem>
  6321. </varlistentry>
  6322. <varlistentry id="ZONEMGR_UNKNOWN_ZONE_FAIL">
  6323. <term>ZONEMGR_UNKNOWN_ZONE_FAIL zone %1 (class %2) is not known to the zone manager</term>
  6324. <listitem><para>
  6325. An XFRIN operation has failed but the zone that was the subject of the
  6326. operation is not being managed by the zone manager. This can be either the
  6327. result of a bindctl command to transfer in a currently unknown (or mistyped)
  6328. zone, or, if this error appears without the administrator giving transfer
  6329. commands, it can indicate an error in the program, as it should not have
  6330. initiated transfers of unknown zones on its own.
  6331. </para></listitem>
  6332. </varlistentry>
  6333. <varlistentry id="ZONEMGR_UNKNOWN_ZONE_NOTIFIED">
  6334. <term>ZONEMGR_UNKNOWN_ZONE_NOTIFIED notified zone %1 (class %2) is not known to the zone manager</term>
  6335. <listitem><para>
  6336. A NOTIFY was received but the zone that was the subject of the operation
  6337. is not being managed by the zone manager. This may indicate an error
  6338. in the program (as the operation should not have been initiated if this
  6339. were the case). Please submit a bug report.
  6340. </para></listitem>
  6341. </varlistentry>
  6342. <varlistentry id="ZONEMGR_UNKNOWN_ZONE_SUCCESS">
  6343. <term>ZONEMGR_UNKNOWN_ZONE_SUCCESS zone %1 (class %2) is not known to the zone manager</term>
  6344. <listitem><para>
  6345. An XFRIN operation has succeeded but the zone received is not being
  6346. managed by the zone manager. This may indicate an error in the program
  6347. (as the operation should not have been initiated if this were the case).
  6348. Please submit a bug report.
  6349. </para></listitem>
  6350. </varlistentry>
  6351. </variablelist>
  6352. </para>
  6353. </chapter>
  6354. </book>