From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id EA507385783A; Wed, 14 Oct 2020 09:34:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EA507385783A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] support: Provide a way to clear the RA bit in DNS server responses X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/master X-Git-Oldrev: 873e239a4c3d8ec235c27439c1bdc5bbf8aa1818 X-Git-Newrev: 08443b19965f48862b02c2fd7b33a39d66daf2ff Message-Id: <20201014093407.EA507385783A@sourceware.org> Date: Wed, 14 Oct 2020 09:34:07 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Oct 2020 09:34:08 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=08443b19965f48862b02c2fd7b33a39d66daf2ff commit 08443b19965f48862b02c2fd7b33a39d66daf2ff Author: Florian Weimer Date: Wed Oct 14 10:54:39 2020 +0200 support: Provide a way to clear the RA bit in DNS server responses Diff: --- support/resolv_test.c | 4 +++- support/resolv_test.h | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/support/resolv_test.c b/support/resolv_test.c index e343c4b516..9878a040a3 100644 --- a/support/resolv_test.c +++ b/support/resolv_test.c @@ -181,7 +181,9 @@ resolv_response_init (struct resolv_response_builder *b, b->buffer[2] |= b->query_buffer[2] & 0x01; /* Copy the RD bit. */ if (flags.tc) b->buffer[2] |= 0x02; - b->buffer[3] = 0x80 | flags.rcode; /* Always set RA. */ + b->buffer[3] = flags.rcode; + if (!flags.clear_ra) + b->buffer[3] |= 0x80; if (flags.ad) b->buffer[3] |= 0x20; diff --git a/support/resolv_test.h b/support/resolv_test.h index c46de32ff4..31a5c1c3e7 100644 --- a/support/resolv_test.h +++ b/support/resolv_test.h @@ -148,6 +148,10 @@ struct resolv_response_flags /* If true, the AD (authenticated data) flag will be set. */ bool ad; + /* If true, do not set the RA (recursion available) flag in the + response. */ + bool clear_ra; + /* Initial section count values. Can be used to artificially increase the counts, for malformed packet testing.*/ unsigned short qdcount;