bind10-messages.xml 279 KB

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