datasrc_messages.mes 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. $NAMESPACE isc::datasrc
  15. # \brief Messages for the data source library
  16. % DATASRC_BAD_NSEC3_NAME NSEC3 record has a bad owner name '%1'
  17. The software refuses to load NSEC3 records into a wildcard domain or
  18. the owner name has two or more labels below the zone origin.
  19. It isn't explicitly forbidden, but no sane zone wouldn have such names
  20. for NSEC3. BIND 9 also refuses NSEC3 at wildcard, so this behavior is
  21. compatible with BIND 9.
  22. % DATASRC_CACHE_CREATE creating the hotspot cache
  23. This is a debug message issued during startup when the hotspot cache
  24. is created.
  25. % DATASRC_CACHE_DESTROY destroying the hotspot cache
  26. Debug information. The hotspot cache is being destroyed.
  27. % DATASRC_CACHE_DISABLE disabling the hotspot cache
  28. A debug message issued when the hotspot cache is disabled.
  29. % DATASRC_CACHE_ENABLE enabling the hotspot cache
  30. A debug message issued when the hotspot cache is enabled.
  31. % DATASRC_CACHE_EXPIRED item '%1' in the hotspot cache has expired
  32. A debug message issued when a hotspot cache lookup located the item but it
  33. had expired. The item was removed and the program proceeded as if the item
  34. had not been found.
  35. % DATASRC_CACHE_FOUND the item '%1' was found
  36. Debug information. An item was successfully located in the hotspot cache.
  37. % DATASRC_CACHE_FULL hotspot cache is full, dropping oldest
  38. Debug information. After inserting an item into the hotspot cache, the
  39. maximum number of items was exceeded, so the least recently used item will
  40. be dropped. This should be directly followed by CACHE_REMOVE.
  41. % DATASRC_CACHE_INSERT inserting item '%1' into the hotspot cache
  42. A debug message indicating that a new item is being inserted into the hotspot
  43. cache.
  44. % DATASRC_CACHE_NOT_FOUND the item '%1' was not found in the hotspot cache
  45. A debug message issued when hotspot cache was searched for the specified
  46. item but it was not found.
  47. % DATASRC_CACHE_OLD_FOUND older instance of hotspot cache item '%1' found, replacing
  48. Debug information. While inserting an item into the hotspot cache, an older
  49. instance of an item with the same name was found; the old instance will be
  50. removed. This will be directly followed by CACHE_REMOVE.
  51. % DATASRC_CACHE_REMOVE removing '%1' from the hotspot cache
  52. Debug information. An item is being removed from the hotspot cache.
  53. % DATASRC_CACHE_SLOTS setting the hotspot cache size to '%1', dropping '%2' items
  54. The maximum allowed number of items of the hotspot cache is set to the given
  55. number. If there are too many, some of them will be dropped. The size of 0
  56. means no limit.
  57. % DATASRC_DATABASE_COVER_NSEC_UNSUPPORTED %1 doesn't support DNSSEC when asked for NSEC data covering %2
  58. The datasource tried to provide an NSEC proof that the named domain does not
  59. exist, but the database backend doesn't support DNSSEC. No proof is included
  60. in the answer as a result.
  61. % DATASRC_DATABASE_FINDNSEC3 Looking for NSEC3 for %1 in %2 mode
  62. Debug information. A search in an database data source for NSEC3 that
  63. matches or covers the given name is being started.
  64. % DATASRC_DATABASE_FINDNSEC3_COVER found a covering NSEC3 for %1 at label count %2: %3
  65. Debug information. An NSEC3 that covers the given name is found and
  66. being returned. The found NSEC3 RRset is also displayed. When the shown label
  67. count is smaller than that of the given name, the matching NSEC3 is for a
  68. superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH). The
  69. found NSEC3 RRset is also displayed.
  70. % DATASRC_DATABASE_FINDNSEC3_MATCH found a matching NSEC3 for %1 at label count %2: %3
  71. Debug information. An NSEC3 that matches (a possibly superdomain of)
  72. the given name is found and being returned. When the shown label
  73. count is smaller than that of the given name, the matching NSEC3 is
  74. for a superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH).
  75. The found NSEC3 RRset is also displayed.
  76. % DATASRC_DATABASE_FINDNSEC3_TRYHASH looking for NSEC3 for %1 at label count %2 (hash %3)
  77. Debug information. In an attempt of finding an NSEC3 for the give name,
  78. (a possibly superdomain of) the name is hashed and searched for in the
  79. NSEC3 name space. When the shown label count is smaller than that of the
  80. shown name, the search tries the superdomain name that share the shown
  81. (higher) label count of the shown name (e.g., for
  82. www.example.com. with shown label count of 3, example.com. is being
  83. tried, as "." is 1 label long).
  84. % DATASRC_DATABASE_FINDNSEC3_TRYHASH_PREV looking for previous NSEC3 for %1 at label count %2 (hash %3)
  85. Debug information. An exact match on hash (see
  86. DATASRC_DATABASE_FINDNSEC3_TRYHASH) was unsuccessful. We get the previous hash
  87. to that one instead.
  88. % DATASRC_DATABASE_FIND_RECORDS looking in datasource %1 for record %2/%3/%4
  89. Debug information. The database data source is looking up records with the given
  90. name and type in the database.
  91. % DATASRC_DATABASE_FIND_TTL_MISMATCH TTL values differ in %1 for elements of %2/%3/%4, setting to %5
  92. The datasource backend provided resource records for the given RRset with
  93. different TTL values. This isn't allowed on the wire and is considered
  94. an error, so we set it to the lowest value we found (but we don't modify the
  95. database). The data in database should be checked and fixed.
  96. % DATASRC_DATABASE_FOUND_ANY search in datasource %1 resulted in returning all records of %2
  97. The data returned by the database backend contained data for the given domain
  98. name, so all the RRsets of the domain are returned.
  99. % DATASRC_DATABASE_FOUND_CNAME search in datasource %1 for %2/%3/%4 found CNAME, resulting in %5
  100. When searching the domain for a name a CNAME was found at that name.
  101. Even though it was not the RR type being sought, it is returned. (The
  102. caller may want to continue the lookup by replacing the query name with
  103. the canonical name and restarting the query with the original RR type.)
  104. % DATASRC_DATABASE_FOUND_DELEGATION Found delegation at %2 in %1
  105. When searching for a domain, the program met a delegation to a different zone
  106. at the given domain name. It will return that one instead.
  107. % DATASRC_DATABASE_FOUND_DELEGATION_EXACT search in datasource %1 for %2/%3/%4 found delegation at %5
  108. The program found the domain requested, but it is a delegation point to a
  109. different zone, therefore it is not authoritative for this domain name.
  110. It will return the NS record instead.
  111. % DATASRC_DATABASE_FOUND_DNAME Found DNAME at %2 in %1
  112. When searching for a domain, the program met a DNAME redirection to a different
  113. place in the domain space at the given domain name. It will return that one
  114. instead.
  115. % DATASRC_DATABASE_FOUND_EMPTY_NONTERMINAL empty non-terminal %2 in %1
  116. The domain name does not have any RRs associated with it, so it doesn't
  117. exist in the database. However, it has a subdomain, so it does exist
  118. in the DNS address space. This type of domain is known as an "empty
  119. non-terminal" and so we return NXRRSET instead of NXDOMAIN.
  120. % DATASRC_DATABASE_FOUND_NXDOMAIN search in datasource %1 resulted in NXDOMAIN for %2/%3/%4
  121. The data returned by the database backend did not contain any data for the given
  122. domain name, class and type.
  123. % DATASRC_DATABASE_FOUND_NXRRSET search in datasource %1 for %2/%3/%4 resulted in NXRRSET
  124. The data returned by the database backend contained data for the given domain
  125. name and class, but not for the given type.
  126. % DATASRC_DATABASE_FOUND_NXRRSET_NSEC search in datasource %1 for %2/%3/%4 resulted in RRset %5
  127. A search in the database for RRs for the specified name, type and class has
  128. located RRs that match the name and class but not the type. DNSSEC information
  129. has been requested and returned.
  130. % DATASRC_DATABASE_FOUND_RRSET search in datasource %1 resulted in RRset %2
  131. The data returned by the database backend contained data for the given domain
  132. name, and it either matches the type or has a relevant type. The RRset that is
  133. returned is printed.
  134. % DATASRC_DATABASE_ITERATE iterating zone %1
  135. The program is reading the whole zone, eg. not searching for data, but going
  136. through each of the RRsets there.
  137. % DATASRC_DATABASE_ITERATE_END iterating zone finished
  138. While iterating through the zone, the program reached end of the data.
  139. % DATASRC_DATABASE_ITERATE_NEXT next RRset in zone is %1/%2
  140. While iterating through the zone, the program extracted next RRset from it.
  141. The name and RRtype of the RRset is indicated in the message.
  142. % DATASRC_DATABASE_ITERATE_TTL_MISMATCH TTL values differ for RRs of %1/%2/%3, setting to %4
  143. While iterating through the zone, the time to live for RRs of the
  144. given RRset were found to be different. Since an RRset cannot have
  145. multiple TTLs, we set it to the lowest value we found (but we don't
  146. modify the database). This is what the client would do when such RRs
  147. were given in a DNS response according to RFC2181. The data in
  148. database should be checked and fixed.
  149. % DATASRC_DATABASE_JOURNALREADER_END %1/%2 on %3 from %4 to %5
  150. This is a debug message indicating that the program (successfully)
  151. reaches the end of sequences of a zone's differences. The zone's name
  152. and class, database name, and the start and end serials are shown in
  153. the message.
  154. % DATASRC_DATABASE_JOURNALREADER_NEXT %1/%2 in %3/%4 on %5
  155. This is a debug message indicating that the program retrieves one
  156. difference in difference sequences of a zone and successfully converts
  157. it to an RRset. The zone's name and class, database name, and the
  158. name and RR type of the retrieved diff are shown in the message.
  159. % DATASRC_DATABASE_JOURNALREADER_START %1/%2 on %3 from %4 to %5
  160. This is a debug message indicating that the program starts reading
  161. a zone's difference sequences from a database-based data source. The
  162. zone's name and class, database name, and the start and end serials
  163. are shown in the message.
  164. % DATASRC_DATABASE_JOURNALREADER_BADDATA failed to convert a diff to RRset in %1/%2 on %3 between %4 and %5: %6
  165. This is an error message indicating that a zone's diff is broken and
  166. the data source library failed to convert it to a valid RRset. The
  167. most likely cause of this is that someone has manually modified the
  168. zone's diff in the database and inserted invalid data as a result.
  169. The zone's name and class, database name, and the start and end
  170. serials, and an additional detail of the error are shown in the
  171. message. The administrator should examine the diff in the database
  172. to find any invalid data and fix it.
  173. % DATASRC_DATABASE_NO_MATCH not match for %2/%3/%4 in %1
  174. No match (not even a wildcard) was found in the named data source for the given
  175. name/type/class in the data source.
  176. % DATASRC_DATABASE_TRANSACTION_ROLLBACKFAIL failed to roll back transaction on %1: %2
  177. A transaction on the database was rolled back without committing the
  178. changes to the database, but the rollback itself unexpectedly fails.
  179. The higher level implementation does not expect it to fail, so this means
  180. either a serious operational error in the underlying data source (such as a
  181. system failure of a database) or software bug in the underlying data source
  182. implementation. In either case if this message is logged the administrator
  183. should carefully examine the underlying data source to see what exactly
  184. happens and whether the data is still valid.
  185. % DATASRC_DATABASE_UPDATER_COMMIT updates committed for '%1/%2' on %3
  186. Debug information. A set of updates to a zone has been successfully
  187. committed to the corresponding database backend. The zone name,
  188. its class and the database name are printed.
  189. % DATASRC_DATABASE_UPDATER_CREATED zone updater created for '%1/%2' on %3
  190. Debug information. A zone updater object is created to make updates to
  191. the shown zone on the shown backend database.
  192. % DATASRC_DATABASE_UPDATER_DESTROYED zone updater destroyed for '%1/%2' on %3
  193. Debug information. A zone updater object is destroyed, either successfully
  194. or after failure of, making updates to the shown zone on the shown backend
  195. database.
  196. % DATASRC_DATABASE_UPDATER_ROLLBACK zone updates roll-backed for '%1/%2' on %3
  197. A zone updater is being destroyed without committing the changes.
  198. This would typically mean the update attempt was aborted due to some
  199. error, but may also be a bug of the application that forgets committing
  200. the changes. The intermediate changes made through the updater won't
  201. be applied to the underlying database. The zone name, its class, and
  202. the underlying database name are shown in the log message.
  203. % DATASRC_DATABASE_UPDATER_ROLLBACKFAIL failed to roll back zone updates for '%1/%2' on %3: %4
  204. A zone updater is being destroyed without committing the changes to
  205. the database, and attempts to rollback incomplete updates, but it
  206. unexpectedly fails. The higher level implementation does not expect
  207. it to fail, so this means either a serious operational error in the
  208. underlying data source (such as a system failure of a database) or
  209. software bug in the underlying data source implementation. In either
  210. case if this message is logged the administrator should carefully
  211. examine the underlying data source to see what exactly happens and
  212. whether the data is still valid. The zone name, its class, and the
  213. underlying database name as well as the error message thrown from the
  214. database module are shown in the log message.
  215. % DATASRC_DATABASE_WILDCARD_ANY search in datasource %1 resulted in wildcard match type ANY on %2
  216. The database doesn't contain directly matching name. When searching
  217. for a wildcard match, a wildcard record matching the name of the query
  218. containing some RRsets was found. All the RRsets of the node are returned.
  219. % DATASRC_DATABASE_WILDCARD_CANCEL_NS canceled wildcard match on %3 because %2 contains NS (data source %1)
  220. The database was queried to provide glue data and it didn't find direct match.
  221. It could create it from given wildcard, but matching wildcards is forbidden
  222. under a zone cut, which was found. Therefore the delegation will be returned
  223. instead.
  224. % DATASRC_DATABASE_WILDCARD_CANCEL_SUB wildcard %2 can't be used to construct %3 because %4 exists in %1
  225. The answer could be constructed using the wildcard, but the given subdomain
  226. exists, therefore this name is something like empty non-terminal (actually,
  227. from the protocol point of view, it is empty non-terminal, but the code
  228. discovers it differently).
  229. % DATASRC_DATABASE_WILDCARD_CNAME search in datasource %1 for %2/%3/%4 found wildcard CNAME at %5, resulting in %6
  230. The database doesn't contain directly matching name. When searching
  231. for a wildcard match, a CNAME RR was found at a wildcard record
  232. matching the name. This is returned as the result of the search.
  233. % DATASRC_DATABASE_WILDCARD_EMPTY found subdomains of %2 which is a wildcard match for %3 in %1
  234. The given wildcard matches the name being sough but it as an empty
  235. nonterminal (e.g. there's nothing at *.example.com but something like
  236. subdomain.*.example.org, do exist: so *.example.org exists in the
  237. namespace but has no RRs associated with it). This will produce NXRRSET.
  238. % DATASRC_DATABASE_WILDCARD_MATCH search in datasource %1 resulted in wildcard match at %2 with RRset %3
  239. The database doesn't contain directly matching name. When searching
  240. for a wildcard match, a wildcard record matching the name and type of
  241. the query was found. The data at this point is returned.
  242. % DATASRC_DATABASE_WILDCARD_NS search in datasource %1 for %2/%3/%4 found wildcard delegation at %5, resulting in %6
  243. The database doesn't contain directly matching name. When searching
  244. for a wildcard match, an NS RR was found at a wildcard record matching
  245. the name. This is returned as the result of the search.
  246. % DATASRC_DATABASE_WILDCARD_NXRRSET search in datasource %1 for %2/%3/%4 resulted in wildcard NXRRSET at %5
  247. The database doesn't contain directly matching name. When searching
  248. for a wildcard match, a matching wildcard entry was found but it did
  249. not contain RRs the requested type. AN NXRRSET indication is returned.
  250. % DATASRC_DO_QUERY handling query for '%1/%2'
  251. A debug message indicating that a query for the given name and RR type is being
  252. processed.
  253. % DATASRC_LIST_NOT_CACHED zone %1/%2 not cached, cache disabled globally. Will not be available.
  254. The process disabled caching of RR data completely. However, the given zone
  255. is provided as a master file and it can be served from memory cache only.
  256. Therefore, the zone will not be available for this process. If this is
  257. a problem, you should move the zone to some database backend (sqlite3, for
  258. example) and use it from there.
  259. % DATASRC_LOAD_FROM_FILE_ERROR Error loading zone %1: %2
  260. An error was found in the zone data when it was being loaded from a
  261. file. The zone was not loaded. The specific error is shown in the
  262. message, and should be addressed.
  263. % DATASRC_LOAD_FROM_ITERATOR_ERROR Error loading zone %1: %2
  264. An error was found in the zone data when it was being loaded from
  265. another data source. The zone was not loaded. The specific error is
  266. shown in the message, and should be addressed.
  267. % DATASRC_MASTER_LOAD_ERROR %1:%2: Zone '%3/%4' contains error: %5
  268. There's an error in the given master file. The zone won't be loaded for
  269. this reason. Parsing might follow, so you might get further errors and
  270. warnings to fix everything at once. But in case the error is serious enough,
  271. the parser might just give up or get confused and generate false errors
  272. afterwards.
  273. % DATASRC_MASTER_LOAD_WARN %1:%2: Zone '%3/%4' has a potential problem: %5
  274. There's something suspicious in the master file. This is a warning only.
  275. It may be a problem or it may be harmless, but it should be checked.
  276. This problem does not stop the zone from being loaded.
  277. % DATASRC_MEM_ADD_RRSET adding RRset '%1/%2' into zone '%3'
  278. Debug information. An RRset is being added to the in-memory data source.
  279. % DATASRC_MEM_ADD_WILDCARD adding wildcards for '%1'
  280. This is a debug message issued during the processing of a wildcard
  281. name. The internal domain name tree is scanned and some nodes are
  282. specially marked to allow the wildcard lookup to succeed.
  283. % DATASRC_MEM_ADD_ZONE adding zone '%1/%2'
  284. Debug information. A zone is being added into the in-memory data source.
  285. % DATASRC_MEM_ANY_SUCCESS ANY query for '%1' successful
  286. Debug information. The domain was found and an ANY type query is being answered
  287. by providing everything found inside the domain.
  288. % DATASRC_MEM_CNAME CNAME at the domain '%1'
  289. Debug information. The requested domain is an alias to a different domain,
  290. returning the CNAME instead.
  291. % DATASRC_MEM_CNAME_COEXIST can't add data to CNAME in domain '%1'
  292. This is the same problem as in MEM_CNAME_TO_NONEMPTY, but it happened the
  293. other way around -- adding some other data to CNAME.
  294. % DATASRC_MEM_CNAME_TO_NONEMPTY can't add CNAME to domain with other data in '%1'
  295. Someone or something tried to add a CNAME into a domain that already contains
  296. some other data. But the protocol forbids coexistence of CNAME with anything
  297. (RFC 1034, section 3.6.2). This indicates a problem with provided data.
  298. % DATASRC_MEM_CREATE creating zone '%1' in '%2' class
  299. Debug information. A representation of a zone for the in-memory data source is
  300. being created.
  301. % DATASRC_MEM_DELEG_FOUND delegation found at '%1'
  302. Debug information. A delegation point was found above the requested record.
  303. % DATASRC_MEM_DESTROY destroying zone '%1' in '%2' class
  304. Debug information. A zone from in-memory data source is being destroyed.
  305. % DATASRC_MEM_DNAME_ENCOUNTERED encountered a DNAME
  306. Debug information. While searching for the requested domain, a DNAME was
  307. encountered on the way. This may lead to redirection to a different domain and
  308. stop the search.
  309. % DATASRC_MEM_DNAME_FOUND DNAME found at '%1'
  310. Debug information. A DNAME was found instead of the requested information.
  311. % DATASRC_MEM_DNAME_NS DNAME and NS can't coexist in non-apex domain '%1'
  312. A request was made for DNAME and NS records to be put into the same
  313. domain which is not the apex (the top of the zone). This is forbidden
  314. by RFC 2672 (section 3) and indicates a problem with provided data.
  315. % DATASRC_MEM_DOMAIN_EMPTY requested domain '%1' is empty
  316. Debug information. The requested domain exists in the tree of domains, but
  317. it is empty. Therefore it doesn't contain the requested resource type.
  318. % DATASRC_MEM_DUP_RRSET duplicate RRset '%1/%2'
  319. An RRset is being inserted into in-memory data source for a second time. The
  320. original version must be removed first. Note that loading master files where an
  321. RRset is split into multiple locations is not supported yet.
  322. % DATASRC_MEM_EXACT_DELEGATION delegation at the exact domain '%1'
  323. Debug information. There's a NS record at the requested domain. This means
  324. this zone is not authoritative for the requested domain, but a delegation
  325. should be followed. The requested domain is an apex of some zone.
  326. % DATASRC_MEM_FIND find '%1/%2'
  327. Debug information. A search for the requested RRset is being started.
  328. % DATASRC_MEM_FINDNSEC3 finding NSEC3 for %1, mode %2
  329. Debug information. A search in an in-memory data source for NSEC3 that
  330. matches or covers the given name is being started.
  331. % DATASRC_MEM_FINDNSEC3_COVER found a covering NSEC3 for %1: %2
  332. Debug information. An NSEC3 that covers the given name is found and
  333. being returned. The found NSEC3 RRset is also displayed.
  334. % DATASRC_MEM_FINDNSEC3_MATCH found a matching NSEC3 for %1 at label count %2: %3
  335. Debug information. An NSEC3 that matches (a possibly superdomain of)
  336. the given name is found and being returned. When the shown label
  337. count is smaller than that of the given name, the matching NSEC3 is
  338. for a superdomain of the given name (see DATASRC_MEM_FINDNSEC3_TRYHASH).
  339. The found NSEC3 RRset is also displayed.
  340. % DATASRC_MEM_FINDNSEC3_TRYHASH looking for NSEC3 for %1 at label count %2 (hash %3)
  341. Debug information. In an attempt of finding an NSEC3 for the give name,
  342. (a possibly superdomain of) the name is hashed and searched for in the
  343. NSEC3 name space. When the shown label count is smaller than that of the
  344. shown name, the search tries the superdomain name that share the shown
  345. (higher) label count of the shown name (e.g., for
  346. www.example.com. with shown label count of 3, example.com. is being
  347. tried).
  348. % DATASRC_MEM_FIND_ZONE looking for zone '%1'
  349. Debug information. A zone object for this zone is being searched for in the
  350. in-memory data source.
  351. % DATASRC_MEM_LOAD loading zone '%1' from file '%2'
  352. Debug information. The content of master file is being loaded into the memory.
  353. % DATASRC_MEM_NOT_FOUND requested domain '%1' not found
  354. Debug information. The requested domain does not exist.
  355. % DATASRC_MEM_NO_NSEC3PARAM NSEC3PARAM is missing for NSEC3-signed zone %1/%2
  356. The in-memory data source has loaded a zone signed with NSEC3 RRs,
  357. but it doesn't have a NSEC3PARAM RR at the zone origin. It's likely that
  358. the zone is somehow broken, but this RR is not necessarily needed for
  359. handling lookups with NSEC3 in this data source, so it accepts the given
  360. content of the zone. Nevertheless the administrator should look into
  361. the integrity of the zone data.
  362. % DATASRC_MEM_NS_ENCOUNTERED encountered a NS
  363. Debug information. While searching for the requested domain, a NS was
  364. encountered on the way (a delegation). This may lead to stop of the search.
  365. % DATASRC_MEM_NXRRSET no such type '%1' at '%2'
  366. Debug information. The domain exists, but it doesn't hold any record of the
  367. requested type.
  368. % DATASRC_MEM_OUT_OF_ZONE domain '%1' doesn't belong to zone '%2'
  369. It was attempted to add the domain into a zone that shouldn't have it
  370. (eg. the domain is not subdomain of the zone origin). This indicates a
  371. problem with provided data.
  372. % DATASRC_MEM_RENAME renaming RRset from '%1' to '%2'
  373. Debug information. A RRset is being generated from a different RRset (most
  374. probably a wildcard). So it must be renamed to whatever the user asked for. In
  375. fact, it's impossible to rename RRsets with our libraries, so a new one is
  376. created and all resource records are copied over.
  377. % DATASRC_MEM_SINGLETON trying to add multiple RRs for domain '%1' and type '%2'
  378. Some resource types are singletons -- only one is allowed in a domain
  379. (for example CNAME or SOA). This indicates a problem with provided data.
  380. % DATASRC_MEM_SUCCESS query for '%1/%2' successful
  381. Debug information. The requested record was found.
  382. % DATASRC_MEM_SUPER_STOP stopped as '%1' is superdomain of a zone node, meaning it's empty
  383. Debug information. The search stopped because the requested domain was
  384. detected to be a superdomain of some existing node of zone (while there
  385. was no exact match). This means that the domain is an empty nonterminal,
  386. therefore it is treated as NXRRSET case (eg. the domain exists, but it
  387. doesn't have the requested record type).
  388. % DATASRC_MEM_SWAP swapping contents of two zone representations ('%1' and '%2')
  389. Debug information. The contents of two in-memory zones are being exchanged.
  390. This is usual practice to do some manipulation in exception-safe manner -- the
  391. new data are prepared in a different zone object and when it works, they are
  392. swapped. The old one contains the new data and the other one can be safely
  393. destroyed.
  394. % DATASRC_MEM_WILDCARD_CANCEL wildcard match canceled for '%1'
  395. Debug information. A domain above wildcard was reached, but there's something
  396. below the requested domain. Therefore the wildcard doesn't apply here. This
  397. behaviour is specified by RFC 1034, section 4.3.3.
  398. % DATASRC_MEM_WILDCARD_DNAME DNAME record in wildcard domain '%1'
  399. The software refuses to load DNAME records into a wildcard domain. It isn't
  400. explicitly forbidden, but the protocol is ambiguous about how this should
  401. behave and BIND 9 refuses that as well. Please describe your intention using
  402. different tools.
  403. % DATASRC_MEM_WILDCARD_NS NS record in wildcard domain '%1'
  404. The software refuses to load NS records into a wildcard domain. It isn't
  405. explicitly forbidden, but the protocol is ambiguous about how this should
  406. behave and BIND 9 refuses that as well. Please describe your intention using
  407. different tools.
  408. % DATASRC_META_ADD adding a data source into meta data source
  409. This is a debug message issued during startup or reconfiguration.
  410. Another data source is being added into the meta data source.
  411. % DATASRC_META_ADD_CLASS_MISMATCH mismatch between classes '%1' and '%2'
  412. It was attempted to add a data source into a meta data source, but their
  413. classes do not match.
  414. % DATASRC_META_REMOVE removing data source from meta data source
  415. Debug information. A data source is being removed from meta data source.
  416. % DATASRC_QUERY_ADD_NSEC adding NSEC record for '%1'
  417. Debug information. A NSEC record covering this zone is being added.
  418. % DATASRC_QUERY_ADD_NSEC3 adding NSEC3 record of zone '%1'
  419. Debug information. A NSEC3 record for the given zone is being added to the
  420. response message.
  421. % DATASRC_QUERY_ADD_RRSET adding RRset '%1/%2' to message
  422. Debug information. An RRset is being added to the response message.
  423. % DATASRC_QUERY_ADD_SOA adding SOA of '%1'
  424. Debug information. A SOA record of the given zone is being added to the
  425. authority section of the response message.
  426. % DATASRC_QUERY_AUTH_FAIL the underlying data source failed with %1
  427. The underlying data source failed to answer the authoritative query. 1 means
  428. some error, 2 is not implemented. The data source should have logged the
  429. specific error already.
  430. % DATASRC_QUERY_BAD_REFERRAL bad referral to '%1'
  431. The domain lives in another zone. But it is not possible to generate referral
  432. information for it.
  433. % DATASRC_QUERY_CACHED data for %1/%2 found in hotspot cache
  434. Debug information. The requested data were found in the hotspot cache, so
  435. no query is sent to the real data source.
  436. % DATASRC_QUERY_CHECK_CACHE checking hotspot cache for '%1/%2'
  437. Debug information. While processing a query, lookup to the hotspot cache
  438. is being made.
  439. % DATASRC_QUERY_COPY_AUTH copying authoritative section into message
  440. Debug information. The whole referral information is being copied into the
  441. response message.
  442. % DATASRC_QUERY_DELEGATION looking for delegation on the path to '%1'
  443. Debug information. The software is trying to identify delegation points on the
  444. way down to the given domain.
  445. % DATASRC_QUERY_EMPTY_CNAME CNAME at '%1' is empty
  446. A CNAME chain was being followed and an entry was found that pointed
  447. to a domain name that had no RRsets associated with it. As a result,
  448. the query cannot be answered. This indicates a problem with supplied data.
  449. % DATASRC_QUERY_EMPTY_DNAME the DNAME on '%1' is empty
  450. During an attempt to synthesize CNAME from this DNAME it was discovered the
  451. DNAME is empty (it has no records). This indicates problem with supplied data.
  452. % DATASRC_QUERY_FAIL query failed
  453. Some subtask of query processing failed. The reason should have been reported
  454. already and a SERVFAIL will be returned to the querying system.
  455. % DATASRC_QUERY_FOLLOW_CNAME following CNAME at '%1'
  456. Debug information. The domain is a CNAME (or a DNAME and a CNAME for it
  457. has already been created) and the search is following this chain.
  458. % DATASRC_QUERY_GET_MX_ADDITIONAL addition of A/AAAA for '%1' requested by MX '%2'
  459. Debug information. While processing a query, a MX record was met. It
  460. references the mentioned address, so A/AAAA records for it are looked up
  461. and put it into the additional section.
  462. % DATASRC_QUERY_GET_NS_ADDITIONAL addition of A/AAAA for '%1' requested by NS '%2'
  463. Debug information. While processing a query, a NS record was met. It
  464. references the mentioned address, so A/AAAA records for it are looked up
  465. and put it into the additional section.
  466. % DATASRC_QUERY_GLUE_FAIL the underlying data source failed with %1
  467. The underlying data source failed to answer the glue query. 1 means some error,
  468. 2 is not implemented. The data source should have logged the specific error
  469. already.
  470. % DATASRC_QUERY_INVALID_OP invalid query operation requested
  471. This indicates a programmer error. The DO_QUERY was called with unknown
  472. operation code.
  473. % DATASRC_QUERY_IS_AUTH auth query (%1/%2)
  474. Debug information. The last DO_QUERY is an auth query.
  475. % DATASRC_QUERY_IS_GLUE glue query (%1/%2)
  476. Debug information. The last DO_QUERY is a query for glue addresses.
  477. % DATASRC_QUERY_IS_NOGLUE query for non-glue addresses (%1/%2)
  478. Debug information. The last DO_QUERY is a query for addresses that are not
  479. glue.
  480. % DATASRC_QUERY_IS_REF query for referral (%1/%2)
  481. Debug information. The last DO_QUERY is a query for referral information.
  482. % DATASRC_QUERY_IS_SIMPLE simple query (%1/%2)
  483. Debug information. The last DO_QUERY is a simple query.
  484. % DATASRC_QUERY_MISPLACED_TASK task of this type should not be here
  485. This indicates a programming error. A task was found in the internal task
  486. queue, but this kind of task wasn't designed to be inside the queue (it should
  487. be handled right away, not queued).
  488. % DATASRC_QUERY_MISSING_NS missing NS records for '%1'
  489. NS records should have been put into the authority section. However, this zone
  490. has none. This indicates problem with provided data.
  491. % DATASRC_QUERY_MISSING_SOA the zone '%1' has no SOA
  492. The answer should have been a negative one (eg. of nonexistence of something).
  493. To do so, a SOA record should be put into the authority section, but the zone
  494. does not have one. This indicates problem with provided data.
  495. % DATASRC_QUERY_NOGLUE_FAIL the underlying data source failed with %1
  496. The underlying data source failed to answer the no-glue query. 1 means some
  497. error, 2 is not implemented. The data source should have logged the specific
  498. error already.
  499. % DATASRC_QUERY_NO_CACHE_ANY_AUTH ignoring hotspot cache for ANY query (%1/%2 in %3 class)
  500. Debug information. The hotspot cache is ignored for authoritative ANY queries
  501. for consistency reasons.
  502. % DATASRC_QUERY_NO_CACHE_ANY_SIMPLE ignoring hotspot cache for ANY query (%1/%2 in %3 class)
  503. Debug information. The hotspot cache is ignored for ANY queries for consistency
  504. reasons.
  505. % DATASRC_QUERY_NO_DS_NSEC there's no DS record in the '%1' zone
  506. An attempt to add a NSEC record into the message failed, because the zone does
  507. not have any DS record. This indicates problem with the provided data.
  508. % DATASRC_QUERY_NO_DS_NSEC3 there's no DS record in the '%1' zone
  509. An attempt to add a NSEC3 record into the message failed, because the zone does
  510. not have any DS record. This indicates problem with the provided data.
  511. % DATASRC_QUERY_NO_ZONE no zone containing '%1' in class '%2'
  512. Debug information. Lookup of domain failed because the datasource
  513. has no zone that contains the domain. Maybe someone sent a query
  514. to the wrong server for some reason. This may also happen when
  515. looking in the datasource for addresses for NS records.
  516. % DATASRC_QUERY_PROCESS processing query '%1/%2' in the '%3' class
  517. Debug information. A sure query is being processed now.
  518. % DATASRC_QUERY_PROVE_NX_FAIL unable to prove nonexistence of '%1'
  519. The user wants DNSSEC and we discovered the entity doesn't exist (either
  520. domain or the record). But there was an error getting NSEC/NSEC3 record
  521. to prove the nonexistence.
  522. % DATASRC_QUERY_REF_FAIL the underlying data source failed with %1
  523. The underlying data source failed to answer the query for referral information.
  524. 1 means some error, 2 is not implemented. The data source should have logged
  525. the specific error already.
  526. % DATASRC_QUERY_RRSIG unable to answer RRSIG query for %1
  527. The server is unable to answer a direct query for RRSIG type, but was asked
  528. to do so.
  529. % DATASRC_QUERY_SIMPLE_FAIL the underlying data source failed with %1
  530. The underlying data source failed to answer the simple query. 1 means some
  531. error, 2 is not implemented. The data source should have logged the specific
  532. error already.
  533. % DATASRC_QUERY_SYNTH_CNAME synthesizing CNAME from DNAME on '%1'
  534. This is a debug message. While answering a query, a DNAME was encountered. The
  535. DNAME itself will be returned, along with a synthesized CNAME for clients that
  536. do not understand the DNAME RR.
  537. % DATASRC_QUERY_TASK_FAIL task failed with %1
  538. The query subtask failed. The reason should have been reported by the subtask
  539. already. The code is 1 for error, 2 for not implemented.
  540. % DATASRC_QUERY_TOO_MANY_CNAMES CNAME chain limit exceeded at '%1'
  541. A CNAME led to another CNAME and it led to another, and so on. After 16
  542. CNAMEs, the software gave up. Long CNAME chains are discouraged, and this
  543. might possibly be a loop as well. Note that some of the CNAMEs might have
  544. been synthesized from DNAMEs. This indicates problem with supplied data.
  545. % DATASRC_QUERY_UNKNOWN_RESULT unknown result of subtask
  546. This indicates a programmer error. The answer of subtask doesn't look like
  547. anything known.
  548. % DATASRC_QUERY_WILDCARD looking for a wildcard covering '%1'
  549. Debug information. A direct match wasn't found, so a wildcard covering the
  550. domain is being looked for now.
  551. % DATASRC_QUERY_WILDCARD_FAIL error processing wildcard for '%1'
  552. During an attempt to cover the domain by a wildcard an error happened. The
  553. exact kind was hopefully already reported.
  554. % DATASRC_QUERY_WILDCARD_PROVE_NX_FAIL unable to prove nonexistence of '%1' (%2)
  555. While processing a wildcard, it wasn't possible to prove nonexistence of the
  556. given domain or record. The code is 1 for error and 2 for not implemented.
  557. % DATASRC_QUERY_WILDCARD_REFERRAL unable to find referral info for '%1' (%2)
  558. While processing a wildcard, a referral was met. But it wasn't possible to get
  559. enough information for it. The code is 1 for error, 2 for not implemented.
  560. % DATASRC_SQLITE_CLOSE closing SQLite database
  561. Debug information. The SQLite data source is closing the database file.
  562. % DATASRC_SQLITE_COMPATIBLE_VERSION database schema V%1.%2 not up to date (expecting V%3.%4) but is compatible
  563. The version of the SQLite3 database schema used to hold the zone data
  564. is not the latest one - the current version of BIND 10 was written
  565. with a later schema version in mind. However, the database is
  566. compatible with the current version of BIND 10, and BIND 10 will run
  567. without any problems.
  568. Consult the release notes for your version of BIND 10. Depending on
  569. the changes made to the database schema, it is possible that improved
  570. performance could result if the database were upgraded.
  571. % DATASRC_SQLITE_CONNCLOSE Closing sqlite database
  572. The database file is no longer needed and is being closed.
  573. % DATASRC_SQLITE_CONNOPEN Opening sqlite database file '%1'
  574. The database file is being opened so it can start providing data.
  575. % DATASRC_SQLITE_CREATE SQLite data source created
  576. Debug information. An instance of SQLite data source is being created.
  577. % DATASRC_SQLITE_DESTROY SQLite data source destroyed
  578. Debug information. An instance of SQLite data source is being destroyed.
  579. % DATASRC_SQLITE_DROPCONN SQLite3Database is being deinitialized
  580. The object around a database connection is being destroyed.
  581. % DATASRC_SQLITE_ENCLOSURE looking for zone containing '%1'
  582. Debug information. The SQLite data source is trying to identify which zone
  583. should hold this domain.
  584. % DATASRC_SQLITE_ENCLOSURE_NOT_FOUND no zone contains '%1'
  585. Debug information. The last SQLITE_ENCLOSURE query was unsuccessful; there's
  586. no such zone in our data.
  587. % DATASRC_SQLITE_FIND looking for RRset '%1/%2'
  588. Debug information. The SQLite data source is looking up a resource record
  589. set.
  590. % DATASRC_SQLITE_FINDADDRS looking for A/AAAA addresses for '%1'
  591. Debug information. The data source is looking up the addresses for given
  592. domain name.
  593. % DATASRC_SQLITE_FINDADDRS_BAD_CLASS class mismatch looking for addresses ('%1' and '%2')
  594. The SQLite data source was looking up A/AAAA addresses, but the data source
  595. contains different class than the query was for.
  596. % DATASRC_SQLITE_FINDEXACT looking for exact RRset '%1/%2'
  597. Debug information. The SQLite data source is looking up an exact resource
  598. record.
  599. % DATASRC_SQLITE_FINDEXACT_BAD_CLASS class mismatch looking for an RRset ('%1' and '%2')
  600. The SQLite data source was looking up an exact RRset, but the data source
  601. contains different class than the query was for.
  602. % DATASRC_SQLITE_FINDREC looking for record '%1/%2'
  603. Debug information. The SQLite data source is looking up records of given name
  604. and type in the database.
  605. % DATASRC_SQLITE_FINDREF looking for referral at '%1'
  606. Debug information. The SQLite data source is identifying if this domain is
  607. a referral and where it goes.
  608. % DATASRC_SQLITE_FINDREF_BAD_CLASS class mismatch looking for referral ('%1' and '%2')
  609. The SQLite data source was trying to identify if there's a referral. But
  610. it contains different class than the query was for.
  611. % DATASRC_SQLITE_FIND_BAD_CLASS class mismatch looking for an RRset ('%1' and '%2')
  612. The SQLite data source was looking up an RRset, but the data source contains
  613. different class than the query was for.
  614. % DATASRC_SQLITE_FIND_NSEC3 looking for NSEC3 in zone '%1' for hash '%2'
  615. Debug information. We're trying to look up a NSEC3 record in the SQLite data
  616. source.
  617. % DATASRC_SQLITE_FIND_NSEC3_NO_ZONE no such zone '%1'
  618. The SQLite data source was asked to provide a NSEC3 record for given zone.
  619. But it doesn't contain that zone.
  620. % DATASRC_SQLITE_INCOMPATIBLE_VERSION database schema V%1.%2 incompatible with version (V%3.%4) expected
  621. The version of the SQLite3 database schema used to hold the zone data
  622. is incompatible with the version expected by BIND 10. As a result,
  623. BIND 10 is unable to run using the database file as the data source.
  624. The database should be updated using the means described in the BIND
  625. 10 documentation.
  626. % DATASRC_SQLITE_NEWCONN SQLite3Database is being initialized
  627. A wrapper object to hold database connection is being initialized.
  628. % DATASRC_SQLITE_OPEN opening SQLite database '%1'
  629. Debug information. The SQLite data source is loading an SQLite database in
  630. the provided file.
  631. % DATASRC_SQLITE_PREVIOUS looking for name previous to '%1'
  632. This is a debug message. The name given was not found, so the program
  633. is searching for the next name higher up the hierarchy (e.g. if
  634. www.example.com were queried for and not found, the software searches
  635. for the "previous" name, example.com).
  636. % DATASRC_SQLITE_PREVIOUS_NO_ZONE no zone containing '%1'
  637. The name given was not found, so the program is searching for the next
  638. name higher up the hierarchy (e.g. if www.example.com were queried
  639. for and not found, the software searches for the "previous" name,
  640. example.com). However, this name is not contained in any zone in the
  641. data source. This is an error since it indicates a problem in the earlier
  642. processing of the query.
  643. % DATASRC_SQLITE_SETUP setting up new SQLite3 database in '%1'
  644. The database for SQLite data source was found empty. It is assumed this is the
  645. first run and it is being initialized with current schema. It'll still contain
  646. no data, but it will be ready for use. If this is indeed the first run of
  647. BIND 10, it is to be expected and completely harmless. If you just configured
  648. a data source to point to an existing file and you see this, you may have
  649. misspelled the file name.
  650. % DATASRC_SQLITE_SETUP_OLD_API setting up new SQLite database
  651. The database for SQLite data source was found empty. It is assumed this is the
  652. first run and it is being initialized with current schema. It'll still contain
  653. no data, but it will be ready for use. This is similar to DATASRC_SQLITE_SETUP
  654. message, but it is logged from the old API. You should never see it, since the
  655. API is deprecated.
  656. % DATASRC_STATIC_CLASS_NOT_CH static data source can handle CH class only
  657. An error message indicating that a query requesting a RR for a class other
  658. that CH was sent to the static data source (which only handles CH queries).
  659. % DATASRC_STATIC_CREATE creating the static datasource
  660. Debug information. The static data source (the one holding stuff like
  661. version.bind) is being created.
  662. % DATASRC_STATIC_FIND looking for '%1/%2'
  663. Debug information. This resource record set is being looked up in the static
  664. data source.
  665. % DATASRC_UNEXPECTED_QUERY_STATE unexpected query state
  666. This indicates a programming error. An internal task of unknown type was
  667. generated.