mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '379-trust-anchor-telemetry-log-should-include-client-ip-address' into 'master'
Resolve "trust anchor telemetry log should include client IP address" Closes #379 See merge request isc-projects/bind9!476
This commit is contained in:
commit
5ae0906b23
5 changed files with 11 additions and 8 deletions
11
CHANGES
11
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4992. [bug] The wrong address was being logged for trust anchor
|
||||
telemetry queries. [GL #379]
|
||||
|
||||
4991. [bug] "rndc reconfig" was incorrectly handling zones whose
|
||||
"mirror" setting was changed. [GL #381]
|
||||
|
||||
|
|
@ -818,8 +821,8 @@
|
|||
|
||||
4760. [func] Add glue cache statistics counters. [RT #46028]
|
||||
|
||||
4759. [func] Add logging channel "trust-anchor-telementry" to
|
||||
record trust-anchor-telementry in incoming requests.
|
||||
4759. [func] Add logging channel "trust-anchor-telemetry" to
|
||||
record trust-anchor-telemetry in incoming requests.
|
||||
Both _ta-XXXX.<anchor>/NULL and EDNS KEY-TAG options
|
||||
are logged. [RT #46124]
|
||||
|
||||
|
|
@ -888,10 +891,10 @@
|
|||
tests when running on terminals that support them.
|
||||
[RT #45977]
|
||||
|
||||
4744. [bug] Suppress trust-anchor-telementry queries if
|
||||
4744. [bug] Suppress trust-anchor-telemetry queries if
|
||||
validation is disabled. [RT #46131]
|
||||
|
||||
4743. [func] Exclude trust-anchor-telementry queries from
|
||||
4743. [func] Exclude trust-anchor-telemetry queries from
|
||||
synth-from-dnssec processing. [RT #46123]
|
||||
|
||||
4742. [func] Synthesis of responses from DNSSEC-verified records.
|
||||
|
|
|
|||
|
|
@ -1320,7 +1320,7 @@ dns_name_isula(const dns_name_t *owner);
|
|||
isc_boolean_t
|
||||
dns_name_istat(const dns_name_t *name);
|
||||
/*
|
||||
* Determine if 'name' is a potential 'trust-anchor-telementry' name.
|
||||
* Determine if 'name' is a potential 'trust-anchor-telemetry' name.
|
||||
*/
|
||||
|
||||
ISC_LANG_ENDDECLS
|
||||
|
|
|
|||
|
|
@ -2687,7 +2687,7 @@ dns_name_istat(const dns_name_t *name) {
|
|||
|
||||
/*
|
||||
* Is there at least one trust anchor reported and is the
|
||||
* label length consistent with a trust-anchor-telementry label.
|
||||
* label length consistent with a trust-anchor-telemetry label.
|
||||
*/
|
||||
if ((len < 8) || (len - 3) % 5 != 0) {
|
||||
return (ISC_FALSE);
|
||||
|
|
|
|||
|
|
@ -278,7 +278,7 @@ ATF_TC_BODY(compression, tc) {
|
|||
|
||||
ATF_TC(istat);
|
||||
ATF_TC_HEAD(istat, tc) {
|
||||
atf_tc_set_md_var(tc, "descr", "is trust-anchor-telementry test");
|
||||
atf_tc_set_md_var(tc, "descr", "is trust-anchor-telemetry test");
|
||||
}
|
||||
ATF_TC_BODY(istat, tc) {
|
||||
dns_fixedname_t fixed;
|
||||
|
|
|
|||
|
|
@ -10815,7 +10815,7 @@ log_tat(ns_client_t *client) {
|
|||
|
||||
isc_netaddr_fromsockaddr(&netaddr, &client->peeraddr);
|
||||
dns_name_format(client->query.qname, namebuf, sizeof(namebuf));
|
||||
isc_netaddr_format(&client->destaddr, clientbuf, sizeof(clientbuf));
|
||||
isc_netaddr_format(&netaddr, clientbuf, sizeof(clientbuf));
|
||||
dns_rdataclass_format(client->view->rdclass, classname,
|
||||
sizeof(classname));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue