datasrc_messages.mes 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  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_CACHE_ZONE_NOTFOUND Zone %1/%2 not found on data source '%3' to cache
  58. During data source configuration, a zone is to be loaded (cached) in
  59. to memory from the underlying data source, but the zone is not found
  60. in the data source. This particular zone was not loaded, but data
  61. source configuration continues, possibly loading other zones into
  62. memory. This is basically some kind of configuration or operation
  63. error: either the name is incorrect in the configuration, or the zone
  64. has been removed from the data source without updating the configuration.
  65. % DATASRC_CHECK_ERROR post-load check of zone %1/%2 failed: %3
  66. The zone was loaded into the data source successfully, but the content fails
  67. basic sanity checks. See the message if you want to know what exactly is wrong
  68. with the data. The data can not be used and previous version, if any, will be
  69. preserved.
  70. % DATASRC_CHECK_WARNING %1/%2: %3
  71. The zone was loaded into the data source successfully, but there's some problem
  72. with the content. The problem does not stop the new version from being used
  73. (though there may be other problems that do, see DATASRC_CHECK_ERROR),
  74. but it should still be checked and fixed. See the message to know what exactly
  75. is wrong with the data.
  76. % DATASRC_DATABASE_ADDDIFF updated diff table for add: %1 %2 %3
  77. Debug message. A difference record for adding a record to the zone is being
  78. appended to the difference table. The name, type and rdata of the record is
  79. logged.
  80. % DATASRC_DATABASE_ADDNSEC3 added NSEC3 RR: %1 %2
  81. Debug message. A new NSEC3 record is added to the table. The hash and the rdata
  82. is logged.
  83. % DATASRC_DATABASE_ADDRR added RR: %1 %2 %3
  84. Debug message. A new resource record is added to the table. The name, type and
  85. rdata is logged.
  86. % DATASRC_DATABASE_COVER_NSEC_UNSUPPORTED %1 doesn't support DNSSEC when asked for NSEC data covering %2
  87. The datasource tried to provide an NSEC proof that the named domain does not
  88. exist, but the database backend doesn't support DNSSEC. No proof is included
  89. in the answer as a result.
  90. % DATASRC_DATABASE_DELETEDIFF updated diff table for delete: %1 %2 %3
  91. Debug message. A difference record for removing a record from the zone is being
  92. appended to the difference table. The name, type and rdata of the record is
  93. logged.
  94. % DATASRC_DATABASE_DELETENSEC3 deleted NSEC3 RR: %1 %2
  95. Debug message. An NSEC3 record is removed from the table. The name, type and
  96. rdata is logged.
  97. % DATASRC_DATABASE_DELETERR deleted RR: %1 %2 %3
  98. Debug message. A resource record is removed from the table. The name, type and
  99. rdata is logged.
  100. % DATASRC_DATABASE_FINDNSEC3 Looking for NSEC3 for %1 in %2 mode
  101. Debug information. A search in an database data source for NSEC3 that
  102. matches or covers the given name is being started.
  103. % DATASRC_DATABASE_FINDNSEC3_COVER found a covering NSEC3 for %1 at label count %2: %3
  104. Debug information. An NSEC3 that covers the given name is found and
  105. being returned. The found NSEC3 RRset is also displayed. When the shown label
  106. count is smaller than that of the given name, the matching NSEC3 is for a
  107. superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH). The
  108. found NSEC3 RRset is also displayed.
  109. % DATASRC_DATABASE_FINDNSEC3_MATCH found a matching NSEC3 for %1 at label count %2: %3
  110. Debug information. An NSEC3 that matches (a possibly superdomain of)
  111. the given name is found and being returned. When the shown label
  112. count is smaller than that of the given name, the matching NSEC3 is
  113. for a superdomain of the given name (see DATASRC_DATABSE_FINDNSEC3_TRYHASH).
  114. The found NSEC3 RRset is also displayed.
  115. % DATASRC_DATABASE_FINDNSEC3_TRYHASH looking for NSEC3 for %1 at label count %2 (hash %3)
  116. Debug information. In an attempt of finding an NSEC3 for the give name,
  117. (a possibly superdomain of) the name is hashed and searched for in the
  118. NSEC3 name space. When the shown label count is smaller than that of the
  119. shown name, the search tries the superdomain name that share the shown
  120. (higher) label count of the shown name (e.g., for
  121. www.example.com. with shown label count of 3, example.com. is being
  122. tried, as "." is 1 label long).
  123. % DATASRC_DATABASE_FINDNSEC3_TRYHASH_PREV looking for previous NSEC3 for %1 at label count %2 (hash %3)
  124. Debug information. An exact match on hash (see
  125. DATASRC_DATABASE_FINDNSEC3_TRYHASH) was unsuccessful. We get the previous hash
  126. to that one instead.
  127. % DATASRC_DATABASE_FIND_RECORDS looking in datasource %1 for record %2/%3/%4
  128. Debug information. The database data source is looking up records with the given
  129. name and type in the database.
  130. % DATASRC_DATABASE_FIND_TTL_MISMATCH TTL values differ in %1 for elements of %2/%3/%4, setting to %5
  131. The datasource backend provided resource records for the given RRset with
  132. different TTL values. This isn't allowed on the wire and is considered
  133. an error, so we set it to the lowest value we found (but we don't modify the
  134. database). The data in database should be checked and fixed.
  135. % DATASRC_DATABASE_FOUND_ANY search in datasource %1 resulted in returning all records of %2
  136. The data returned by the database backend contained data for the given domain
  137. name, so all the RRsets of the domain are returned.
  138. % DATASRC_DATABASE_FOUND_CNAME search in datasource %1 for %2/%3/%4 found CNAME, resulting in %5
  139. When searching the domain for a name a CNAME was found at that name.
  140. Even though it was not the RR type being sought, it is returned. (The
  141. caller may want to continue the lookup by replacing the query name with
  142. the canonical name and restarting the query with the original RR type.)
  143. % DATASRC_DATABASE_FOUND_DELEGATION Found delegation at %2 in %1
  144. When searching for a domain, the program met a delegation to a different zone
  145. at the given domain name. It will return that one instead.
  146. % DATASRC_DATABASE_FOUND_DELEGATION_EXACT search in datasource %1 for %2/%3/%4 found delegation at %5
  147. The program found the domain requested, but it is a delegation point to a
  148. different zone, therefore it is not authoritative for this domain name.
  149. It will return the NS record instead.
  150. % DATASRC_DATABASE_FOUND_DNAME Found DNAME at %2 in %1
  151. When searching for a domain, the program met a DNAME redirection to a different
  152. place in the domain space at the given domain name. It will return that one
  153. instead.
  154. % DATASRC_DATABASE_FOUND_EMPTY_NONTERMINAL empty non-terminal %2 in %1
  155. The domain name does not have any RRs associated with it, so it doesn't
  156. exist in the database. However, it has a subdomain, so it does exist
  157. in the DNS address space. This type of domain is known as an "empty
  158. non-terminal" and so we return NXRRSET instead of NXDOMAIN.
  159. % DATASRC_DATABASE_FOUND_NXDOMAIN search in datasource %1 resulted in NXDOMAIN for %2/%3/%4
  160. The data returned by the database backend did not contain any data for the given
  161. domain name, class and type.
  162. % DATASRC_DATABASE_FOUND_NXRRSET search in datasource %1 for %2/%3/%4 resulted in NXRRSET
  163. The data returned by the database backend contained data for the given domain
  164. name and class, but not for the given type.
  165. % DATASRC_DATABASE_FOUND_NXRRSET_NSEC search in datasource %1 for %2/%3/%4 resulted in RRset %5
  166. A search in the database for RRs for the specified name, type and class has
  167. located RRs that match the name and class but not the type. DNSSEC information
  168. has been requested and returned.
  169. % DATASRC_DATABASE_FOUND_RRSET search in datasource %1 resulted in RRset %2
  170. The data returned by the database backend contained data for the given domain
  171. name, and it either matches the type or has a relevant type. The RRset that is
  172. returned is printed.
  173. % DATASRC_DATABASE_ITERATE iterating zone %1
  174. The program is reading the whole zone, eg. not searching for data, but going
  175. through each of the RRsets there.
  176. % DATASRC_DATABASE_ITERATE_END iterating zone finished
  177. While iterating through the zone, the program reached end of the data.
  178. % DATASRC_DATABASE_ITERATE_NEXT next RRset in zone is %1/%2
  179. While iterating through the zone, the program extracted next RRset from it.
  180. The name and RRtype of the RRset is indicated in the message.
  181. % DATASRC_DATABASE_ITERATE_TTL_MISMATCH TTL values differ for RRs of %1/%2/%3, setting to %4
  182. While iterating through the zone, the time to live for RRs of the
  183. given RRset were found to be different. Since an RRset cannot have
  184. multiple TTLs, we set it to the lowest value we found (but we don't
  185. modify the database). This is what the client would do when such RRs
  186. were given in a DNS response according to RFC2181. The data in
  187. database should be checked and fixed.
  188. % DATASRC_DATABASE_JOURNALREADER_BADDATA failed to convert a diff to RRset in %1/%2 on %3 between %4 and %5: %6
  189. This is an error message indicating that a zone's diff is broken and
  190. the data source library failed to convert it to a valid RRset. The
  191. most likely cause of this is that someone has manually modified the
  192. zone's diff in the database and inserted invalid data as a result.
  193. The zone's name and class, database name, and the start and end
  194. serials, and an additional detail of the error are shown in the
  195. message. The administrator should examine the diff in the database
  196. to find any invalid data and fix it.
  197. % DATASRC_DATABASE_JOURNALREADER_END %1/%2 on %3 from %4 to %5
  198. This is a debug message indicating that the program (successfully)
  199. reaches the end of sequences of a zone's differences. The zone's name
  200. and class, database name, and the start and end serials are shown in
  201. the message.
  202. % DATASRC_DATABASE_JOURNALREADER_NEXT %1/%2 in %3/%4 on %5
  203. This is a debug message indicating that the program retrieves one
  204. difference in difference sequences of a zone and successfully converts
  205. it to an RRset. The zone's name and class, database name, and the
  206. name and RR type of the retrieved diff are shown in the message.
  207. % DATASRC_DATABASE_JOURNALREADER_START %1/%2 on %3 from %4 to %5
  208. This is a debug message indicating that the program starts reading
  209. a zone's difference sequences from a database-based data source. The
  210. zone's name and class, database name, and the start and end serials
  211. are shown in the message.
  212. % DATASRC_DATABASE_NO_MATCH not match for %2/%3/%4 in %1
  213. No match (not even a wildcard) was found in the named data source for the given
  214. name/type/class in the data source.
  215. % DATASRC_DATABASE_TRANSACTION_ROLLBACKFAIL failed to roll back transaction on %1: %2
  216. A transaction on the database was rolled back without committing the
  217. changes to the database, but the rollback itself unexpectedly fails.
  218. The higher level implementation does not expect it to fail, so this means
  219. either a serious operational error in the underlying data source (such as a
  220. system failure of a database) or software bug in the underlying data source
  221. implementation. In either case if this message is logged the administrator
  222. should carefully examine the underlying data source to see what exactly
  223. happens and whether the data is still valid.
  224. % DATASRC_DATABASE_UPDATER_COMMIT updates committed for '%1/%2' on %3
  225. Debug information. A set of updates to a zone has been successfully
  226. committed to the corresponding database backend. The zone name,
  227. its class and the database name are printed.
  228. % DATASRC_DATABASE_UPDATER_CREATED zone updater created for '%1/%2' on %3
  229. Debug information. A zone updater object is created to make updates to
  230. the shown zone on the shown backend database.
  231. % DATASRC_DATABASE_UPDATER_DESTROYED zone updater destroyed for '%1/%2' on %3
  232. Debug information. A zone updater object is destroyed, either successfully
  233. or after failure of, making updates to the shown zone on the shown backend
  234. database.
  235. % DATASRC_DATABASE_UPDATER_ROLLBACK zone updates roll-backed for '%1/%2' on %3
  236. A zone updater is being destroyed without committing the changes.
  237. This would typically mean the update attempt was aborted due to some
  238. error, but may also be a bug of the application that forgets committing
  239. the changes. The intermediate changes made through the updater won't
  240. be applied to the underlying database. The zone name, its class, and
  241. the underlying database name are shown in the log message.
  242. % DATASRC_DATABASE_UPDATER_ROLLBACKFAIL failed to roll back zone updates for '%1/%2' on %3: %4
  243. A zone updater is being destroyed without committing the changes to
  244. the database, and attempts to rollback incomplete updates, but it
  245. unexpectedly fails. The higher level implementation does not expect
  246. it to fail, so this means either a serious operational error in the
  247. underlying data source (such as a system failure of a database) or
  248. software bug in the underlying data source implementation. In either
  249. case if this message is logged the administrator should carefully
  250. examine the underlying data source to see what exactly happens and
  251. whether the data is still valid. The zone name, its class, and the
  252. underlying database name as well as the error message thrown from the
  253. database module are shown in the log message.
  254. % DATASRC_DATABASE_WILDCARD_ANY search in datasource %1 resulted in wildcard match type ANY on %2
  255. The database doesn't contain directly matching name. When searching
  256. for a wildcard match, a wildcard record matching the name of the query
  257. containing some RRsets was found. All the RRsets of the node are returned.
  258. % DATASRC_DATABASE_WILDCARD_CANCEL_NS canceled wildcard match on %3 because %2 contains NS (data source %1)
  259. The database was queried to provide glue data and it didn't find direct match.
  260. It could create it from given wildcard, but matching wildcards is forbidden
  261. under a zone cut, which was found. Therefore the delegation will be returned
  262. instead.
  263. % DATASRC_DATABASE_WILDCARD_CANCEL_SUB wildcard %2 can't be used to construct %3 because %4 exists in %1
  264. The answer could be constructed using the wildcard, but the given subdomain
  265. exists, therefore this name is something like empty non-terminal (actually,
  266. from the protocol point of view, it is empty non-terminal, but the code
  267. discovers it differently).
  268. % DATASRC_DATABASE_WILDCARD_CNAME search in datasource %1 for %2/%3/%4 found wildcard CNAME at %5, resulting in %6
  269. The database doesn't contain directly matching name. When searching
  270. for a wildcard match, a CNAME RR was found at a wildcard record
  271. matching the name. This is returned as the result of the search.
  272. % DATASRC_DATABASE_WILDCARD_EMPTY found subdomains of %2 which is a wildcard match for %3 in %1
  273. The given wildcard matches the name being sough but it as an empty
  274. nonterminal (e.g. there's nothing at *.example.com but something like
  275. subdomain.*.example.org, do exist: so *.example.org exists in the
  276. namespace but has no RRs associated with it). This will produce NXRRSET.
  277. % DATASRC_DATABASE_WILDCARD_MATCH search in datasource %1 resulted in wildcard match at %2 with RRset %3
  278. The database doesn't contain directly matching name. When searching
  279. for a wildcard match, a wildcard record matching the name and type of
  280. the query was found. The data at this point is returned.
  281. % DATASRC_DATABASE_WILDCARD_NS search in datasource %1 for %2/%3/%4 found wildcard delegation at %5, resulting in %6
  282. The database doesn't contain directly matching name. When searching
  283. for a wildcard match, an NS RR was found at a wildcard record matching
  284. the name. This is returned as the result of the search.
  285. % DATASRC_DATABASE_WILDCARD_NXRRSET search in datasource %1 for %2/%3/%4 resulted in wildcard NXRRSET at %5
  286. The database doesn't contain directly matching name. When searching
  287. for a wildcard match, a matching wildcard entry was found but it did
  288. not contain RRs the requested type. AN NXRRSET indication is returned.
  289. % DATASRC_DO_QUERY handling query for '%1/%2'
  290. A debug message indicating that a query for the given name and RR type is being
  291. processed.
  292. % DATASRC_LIST_CACHE_PENDING in-memory cache for data source '%1' is not yet writable, pending load
  293. While (re)configuring data source clients, zone data of the shown data
  294. source cannot be loaded to in-memory cache at that point because the
  295. cache is not yet ready for writing. This can happen for shared-memory
  296. type of cache, in which case the cache will be reset later, either
  297. by a higher level application or by a command from other module.
  298. % DATASRC_LIST_NOT_CACHED zones in data source %1 for class %2 not cached, cache disabled globally. Will not be available.
  299. The process disabled caching of RR data completely. However, this data source
  300. is provided from a master file and it can be served from memory cache only.
  301. Therefore, the entire data source will not be available for this process. If
  302. this is a problem, you should configure the zones of that data source to some
  303. database backend (sqlite3, for example) and use it from there.
  304. % DATASRC_LIBRARY_ERROR failure loading %1 datasource library for class %2: %3
  305. There was a problem loading the dynamic library for a data source. This
  306. backend is hence not available, and any data sources that use this
  307. backend will not be available.
  308. % DATASRC_LOAD_ZONE_ERROR Error loading zone %1/%2 on data source '%3': %4
  309. During data source configuration, an error was found in the zone data
  310. when it was being loaded in to memory on the shown data source. This
  311. particular zone was not loaded, but data source configuration
  312. continues, possibly loading other zones into memory. Subsequent lookups
  313. will treat this zone as broken. The specific error is shown in the
  314. message, and should be addressed.
  315. % DATASRC_MASTER_LOAD_ERROR %1:%2: Zone '%3/%4' contains error: %5
  316. There's an error in the given master file. The zone won't be loaded for
  317. this reason. Parsing might follow, so you might get further errors and
  318. warnings to fix everything at once. But in case the error is serious enough,
  319. the parser might just give up or get confused and generate false errors
  320. afterwards.
  321. % DATASRC_MASTER_LOAD_WARN %1:%2: Zone '%3/%4' has a potential problem: %5
  322. There's something suspicious in the master file. This is a warning only.
  323. It may be a problem or it may be harmless, but it should be checked.
  324. This problem does not stop the zone from being loaded.
  325. % DATASRC_META_ADD adding a data source into meta data source
  326. This is a debug message issued during startup or reconfiguration.
  327. Another data source is being added into the meta data source.
  328. % DATASRC_META_ADD_CLASS_MISMATCH mismatch between classes '%1' and '%2'
  329. It was attempted to add a data source into a meta data source, but their
  330. classes do not match.
  331. % DATASRC_META_REMOVE removing data source from meta data source
  332. Debug information. A data source is being removed from meta data source.
  333. % DATASRC_QUERY_ADD_NSEC adding NSEC record for '%1'
  334. Debug information. A NSEC record covering this zone is being added.
  335. % DATASRC_QUERY_ADD_NSEC3 adding NSEC3 record of zone '%1'
  336. Debug information. A NSEC3 record for the given zone is being added to the
  337. response message.
  338. % DATASRC_QUERY_ADD_RRSET adding RRset '%1/%2' to message
  339. Debug information. An RRset is being added to the response message.
  340. % DATASRC_QUERY_ADD_SOA adding SOA of '%1'
  341. Debug information. A SOA record of the given zone is being added to the
  342. authority section of the response message.
  343. % DATASRC_QUERY_AUTH_FAIL the underlying data source failed with %1
  344. The underlying data source failed to answer the authoritative query. 1 means
  345. some error, 2 is not implemented. The data source should have logged the
  346. specific error already.
  347. % DATASRC_QUERY_BAD_REFERRAL bad referral to '%1'
  348. The domain lives in another zone. But it is not possible to generate referral
  349. information for it.
  350. % DATASRC_QUERY_CACHED data for %1/%2 found in hotspot cache
  351. Debug information. The requested data were found in the hotspot cache, so
  352. no query is sent to the real data source.
  353. % DATASRC_QUERY_CHECK_CACHE checking hotspot cache for '%1/%2'
  354. Debug information. While processing a query, lookup to the hotspot cache
  355. is being made.
  356. % DATASRC_QUERY_COPY_AUTH copying authoritative section into message
  357. Debug information. The whole referral information is being copied into the
  358. response message.
  359. % DATASRC_QUERY_DELEGATION looking for delegation on the path to '%1'
  360. Debug information. The software is trying to identify delegation points on the
  361. way down to the given domain.
  362. % DATASRC_QUERY_EMPTY_CNAME CNAME at '%1' is empty
  363. A CNAME chain was being followed and an entry was found that pointed
  364. to a domain name that had no RRsets associated with it. As a result,
  365. the query cannot be answered. This indicates a problem with supplied data.
  366. % DATASRC_QUERY_EMPTY_DNAME the DNAME on '%1' is empty
  367. During an attempt to synthesize CNAME from this DNAME it was discovered the
  368. DNAME is empty (it has no records). This indicates problem with supplied data.
  369. % DATASRC_QUERY_FAIL query failed
  370. Some subtask of query processing failed. The reason should have been reported
  371. already and a SERVFAIL will be returned to the querying system.
  372. % DATASRC_QUERY_FOLLOW_CNAME following CNAME at '%1'
  373. Debug information. The domain is a CNAME (or a DNAME and a CNAME for it
  374. has already been created) and the search is following this chain.
  375. % DATASRC_QUERY_GET_MX_ADDITIONAL addition of A/AAAA for '%1' requested by MX '%2'
  376. Debug information. While processing a query, a MX record was met. It
  377. references the mentioned address, so A/AAAA records for it are looked up
  378. and put it into the additional section.
  379. % DATASRC_QUERY_GET_NS_ADDITIONAL addition of A/AAAA for '%1' requested by NS '%2'
  380. Debug information. While processing a query, a NS record was met. It
  381. references the mentioned address, so A/AAAA records for it are looked up
  382. and put it into the additional section.
  383. % DATASRC_QUERY_GLUE_FAIL the underlying data source failed with %1
  384. The underlying data source failed to answer the glue query. 1 means some error,
  385. 2 is not implemented. The data source should have logged the specific error
  386. already.
  387. % DATASRC_QUERY_INVALID_OP invalid query operation requested
  388. This indicates a programmer error. The DO_QUERY was called with unknown
  389. operation code.
  390. % DATASRC_QUERY_IS_AUTH auth query (%1/%2)
  391. Debug information. The last DO_QUERY is an auth query.
  392. % DATASRC_QUERY_IS_GLUE glue query (%1/%2)
  393. Debug information. The last DO_QUERY is a query for glue addresses.
  394. % DATASRC_QUERY_IS_NOGLUE query for non-glue addresses (%1/%2)
  395. Debug information. The last DO_QUERY is a query for addresses that are not
  396. glue.
  397. % DATASRC_QUERY_IS_REF query for referral (%1/%2)
  398. Debug information. The last DO_QUERY is a query for referral information.
  399. % DATASRC_QUERY_IS_SIMPLE simple query (%1/%2)
  400. Debug information. The last DO_QUERY is a simple query.
  401. % DATASRC_QUERY_MISPLACED_TASK task of this type should not be here
  402. This indicates a programming error. A task was found in the internal task
  403. queue, but this kind of task wasn't designed to be inside the queue (it should
  404. be handled right away, not queued).
  405. % DATASRC_QUERY_MISSING_NS missing NS records for '%1'
  406. NS records should have been put into the authority section. However, this zone
  407. has none. This indicates problem with provided data.
  408. % DATASRC_QUERY_MISSING_SOA the zone '%1' has no SOA
  409. The answer should have been a negative one (eg. of nonexistence of something).
  410. To do so, a SOA record should be put into the authority section, but the zone
  411. does not have one. This indicates problem with provided data.
  412. % DATASRC_QUERY_NOGLUE_FAIL the underlying data source failed with %1
  413. The underlying data source failed to answer the no-glue query. 1 means some
  414. error, 2 is not implemented. The data source should have logged the specific
  415. error already.
  416. % DATASRC_QUERY_NO_CACHE_ANY_AUTH ignoring hotspot cache for ANY query (%1/%2 in %3 class)
  417. Debug information. The hotspot cache is ignored for authoritative ANY queries
  418. for consistency reasons.
  419. % DATASRC_QUERY_NO_CACHE_ANY_SIMPLE ignoring hotspot cache for ANY query (%1/%2 in %3 class)
  420. Debug information. The hotspot cache is ignored for ANY queries for consistency
  421. reasons.
  422. % DATASRC_QUERY_NO_DS_NSEC there's no DS record in the '%1' zone
  423. An attempt to add a NSEC record into the message failed, because the zone does
  424. not have any DS record. This indicates problem with the provided data.
  425. % DATASRC_QUERY_NO_DS_NSEC3 there's no DS record in the '%1' zone
  426. An attempt to add a NSEC3 record into the message failed, because the zone does
  427. not have any DS record. This indicates problem with the provided data.
  428. % DATASRC_QUERY_NO_ZONE no zone containing '%1' in class '%2'
  429. Debug information. Lookup of domain failed because the datasource
  430. has no zone that contains the domain. Maybe someone sent a query
  431. to the wrong server for some reason. This may also happen when
  432. looking in the datasource for addresses for NS records.
  433. % DATASRC_QUERY_PROCESS processing query '%1/%2' in the '%3' class
  434. Debug information. A sure query is being processed now.
  435. % DATASRC_QUERY_PROVE_NX_FAIL unable to prove nonexistence of '%1'
  436. The user wants DNSSEC and we discovered the entity doesn't exist (either
  437. domain or the record). But there was an error getting NSEC/NSEC3 record
  438. to prove the nonexistence.
  439. % DATASRC_QUERY_REF_FAIL the underlying data source failed with %1
  440. The underlying data source failed to answer the query for referral information.
  441. 1 means some error, 2 is not implemented. The data source should have logged
  442. the specific error already.
  443. % DATASRC_QUERY_RRSIG unable to answer RRSIG query for %1
  444. The server is unable to answer a direct query for RRSIG type, but was asked
  445. to do so.
  446. % DATASRC_QUERY_SIMPLE_FAIL the underlying data source failed with %1
  447. The underlying data source failed to answer the simple query. 1 means some
  448. error, 2 is not implemented. The data source should have logged the specific
  449. error already.
  450. % DATASRC_QUERY_SYNTH_CNAME synthesizing CNAME from DNAME on '%1'
  451. This is a debug message. While answering a query, a DNAME was encountered. The
  452. DNAME itself will be returned, along with a synthesized CNAME for clients that
  453. do not understand the DNAME RR.
  454. % DATASRC_QUERY_TASK_FAIL task failed with %1
  455. The query subtask failed. The reason should have been reported by the subtask
  456. already. The code is 1 for error, 2 for not implemented.
  457. % DATASRC_QUERY_TOO_MANY_CNAMES CNAME chain limit exceeded at '%1'
  458. A CNAME led to another CNAME and it led to another, and so on. After 16
  459. CNAMEs, the software gave up. Long CNAME chains are discouraged, and this
  460. might possibly be a loop as well. Note that some of the CNAMEs might have
  461. been synthesized from DNAMEs. This indicates problem with supplied data.
  462. % DATASRC_QUERY_UNKNOWN_RESULT unknown result of subtask
  463. This indicates a programmer error. The answer of subtask doesn't look like
  464. anything known.
  465. % DATASRC_QUERY_WILDCARD looking for a wildcard covering '%1'
  466. Debug information. A direct match wasn't found, so a wildcard covering the
  467. domain is being looked for now.
  468. % DATASRC_QUERY_WILDCARD_FAIL error processing wildcard for '%1'
  469. During an attempt to cover the domain by a wildcard an error happened. The
  470. exact kind was hopefully already reported.
  471. % DATASRC_QUERY_WILDCARD_PROVE_NX_FAIL unable to prove nonexistence of '%1' (%2)
  472. While processing a wildcard, it wasn't possible to prove nonexistence of the
  473. given domain or record. The code is 1 for error and 2 for not implemented.
  474. % DATASRC_QUERY_WILDCARD_REFERRAL unable to find referral info for '%1' (%2)
  475. While processing a wildcard, a referral was met. But it wasn't possible to get
  476. enough information for it. The code is 1 for error, 2 for not implemented.
  477. % DATASRC_STATIC_CLASS_NOT_CH static data source can handle CH class only
  478. An error message indicating that a query requesting a RR for a class other
  479. that CH was sent to the static data source (which only handles CH queries).
  480. % DATASRC_STATIC_CREATE creating the static datasource
  481. Debug information. The static data source (the one holding stuff like
  482. version.bind) is being created.
  483. % DATASRC_STATIC_FIND looking for '%1/%2'
  484. Debug information. This resource record set is being looked up in the static
  485. data source.
  486. % DATASRC_UNEXPECTED_QUERY_STATE unexpected query state
  487. This indicates a programming error. An internal task of unknown type was
  488. generated.