summaryrefslogtreecommitdiffstats
path: root/dnsdist.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:49:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 02:49:39 +0000
commit415f691ca3b48c8824aa2fbe88d75e3eb9cb4083 (patch)
treef81ebca12af11d3642f92c458f9faf3f30c552b0 /dnsdist.cc
parentAdding debian version 1.9.3-1. (diff)
downloaddnsdist-415f691ca3b48c8824aa2fbe88d75e3eb9cb4083.tar.xz
dnsdist-415f691ca3b48c8824aa2fbe88d75e3eb9cb4083.zip
Merging upstream version 1.9.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dnsdist.cc')
-rw-r--r--dnsdist.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/dnsdist.cc b/dnsdist.cc
index 0c99cf0..9369a55 100644
--- a/dnsdist.cc
+++ b/dnsdist.cc
@@ -1670,9 +1670,18 @@ ProcessQueryResult processQuery(DNSQuestion& dq, LocalHolders& holders, std::sha
/* we need an accurate ("real") value for the response and
to store into the IDS, but not for insertion into the
rings for example */
- struct timespec now;
+ timespec now{};
gettime(&now);
+ if ((dq.ids.qtype == QType::AXFR || dq.ids.qtype == QType::IXFR) && (dq.getProtocol() == dnsdist::Protocol::DoH || dq.getProtocol() == dnsdist::Protocol::DoQ || dq.getProtocol() == dnsdist::Protocol::DoH3)) {
+ dq.editHeader([](dnsheader& header) {
+ header.rcode = RCode::NotImp;
+ header.qr = true;
+ return true;
+ });
+ return processQueryAfterRules(dq, holders, selectedBackend);
+ }
+
if (!applyRulesToQuery(holders, dq, now)) {
return ProcessQueryResult::Drop;
}