2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00

3993. [func] Dig now supports EDNS negotiation by default.

(dig +[no]ednsnegotiation). [RT #37604]
This commit is contained in:
Mark Andrews 2014-10-30 23:13:12 +11:00
parent a3ff24aaa5
commit 0f5144163c
7 changed files with 65 additions and 4 deletions

View File

@ -1,3 +1,6 @@
3993. [func] Dig now supports EDNS negotiation by default.
(dig +[no]ednsnegotiation). [RT #37604]
3992. [func] DiG can now send queries without questions 3992. [func] DiG can now send queries without questions
(dig +header-only). [RT #37599] (dig +header-only). [RT #37599]

View File

@ -195,6 +195,7 @@ help(void) {
" +ednsflags=### (Set EDNS flag bits)\n" " +ednsflags=### (Set EDNS flag bits)\n"
" +ednsopt=###[:value] (Send specified EDNS option)\n" " +ednsopt=###[:value] (Send specified EDNS option)\n"
" +noednsopt (Clear list of +ednsopt options)\n" " +noednsopt (Clear list of +ednsopt options)\n"
" +[no]ednsnegotiation (Set EDNS version negotiation)\n"
" +[no]search (Set whether to use searchlist)\n" " +[no]search (Set whether to use searchlist)\n"
" +[no]showsearch (Search with intermediate results)\n" " +[no]showsearch (Search with intermediate results)\n"
" +[no]defname (Ditto)\n" " +[no]defname (Ditto)\n"
@ -981,6 +982,10 @@ plus_option(char *option, isc_boolean_t is_batchfile,
"ednsflags"); "ednsflags");
lookup->ednsflags = num; lookup->ednsflags = num;
break; break;
case 'n':
FULLCHECK("ednsnegotiation");
lookup->ednsneg = state;
break;
case 'o': case 'o':
FULLCHECK("ednsopt"); FULLCHECK("ednsopt");
if (!state) { if (!state) {

View File

@ -590,6 +590,16 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term><option>+[no]ednsnegotiation</option></term>
<listitem>
<para>
Enable / disable EDNS version negotiation. By default
EDNS version negotiation is enabled.
</para>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term><option>+[no]ednsopt[=code[:value]]</option></term> <term><option>+[no]ednsopt[=code[:value]]</option></term>
<listitem> <listitem>

View File

@ -832,6 +832,7 @@ make_empty_lookup(void) {
#endif #endif
looknew->ednsopts = NULL; looknew->ednsopts = NULL;
looknew->ednsoptscnt = 0; looknew->ednsoptscnt = 0;
looknew->ednsneg = ISC_TRUE;
looknew->dscp = -1; looknew->dscp = -1;
dns_fixedname_init(&looknew->fdomain); dns_fixedname_init(&looknew->fdomain);
ISC_LINK_INIT(looknew, link); ISC_LINK_INIT(looknew, link);
@ -889,6 +890,7 @@ clone_lookup(dig_lookup_t *lookold, isc_boolean_t servers) {
#endif #endif
looknew->ednsopts = lookold->ednsopts; looknew->ednsopts = lookold->ednsopts;
looknew->ednsoptscnt = lookold->ednsoptscnt; looknew->ednsoptscnt = lookold->ednsoptscnt;
looknew->ednsneg = lookold->ednsneg;
#ifdef DIG_SIGCHASE #ifdef DIG_SIGCHASE
looknew->sigchase = lookold->sigchase; looknew->sigchase = lookold->sigchase;
#if DIG_SIGCHASE_TD #if DIG_SIGCHASE_TD
@ -3468,6 +3470,10 @@ process_opt(dig_lookup_t *l, dns_message_t *msg) {
} }
#endif #endif
static int
ednsvers(dns_rdataset_t *opt) {
return ((opt->ttl >> 16) & 0xff);
}
/*% /*%
* Event handler for recv complete. Perform whatever actions are necessary, * Event handler for recv complete. Perform whatever actions are necessary,
@ -3497,6 +3503,7 @@ recv_done(isc_task_t *task, isc_event_t *event) {
isc_region_t r; isc_region_t r;
isc_buffer_t *buf = NULL; isc_buffer_t *buf = NULL;
#endif #endif
int newedns;
UNUSED(task); UNUSED(task);
INSIST(!free_now); INSIST(!free_now);
@ -3728,6 +3735,25 @@ recv_done(isc_task_t *task, isc_event_t *event) {
goto udp_mismatch; goto udp_mismatch;
} }
} }
if (msg->rcode == dns_rcode_badvers && msg->opt != NULL &&
(newedns = ednsvers(msg->opt)) < l->edns && l->ednsneg) {
/*
* Add minimum EDNS version required checks here if needed.
*/
if (l->comments)
printf(";; BADVERS, retrying with EDNS version %u.\n",
newedns);
l->edns = newedns;
n = requeue_lookup(l, ISC_TRUE);
n->origin = query->lookup->origin;
dns_message_destroy(&msg);
isc_event_free(&event);
clear_query(query);
cancel_lookup(l);
check_next_lookup(l);
UNLOCK_LOOKUP;
return;
}
if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0 && if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0 &&
!l->ignore && !l->tcp_mode) { !l->ignore && !l->tcp_mode) {
if (l->comments) if (l->comments)

View File

@ -136,7 +136,8 @@ struct dig_lookup {
sit, sit,
#endif #endif
nsid, /*% Name Server ID (RFC 5001) */ nsid, /*% Name Server ID (RFC 5001) */
header_only; header_only,
ednsneg;
#ifdef DIG_SIGCHASE #ifdef DIG_SIGCHASE
isc_boolean_t sigchase; isc_boolean_t sigchase;
#if DIG_SIGCHASE_TD #if DIG_SIGCHASE_TD

View File

@ -48,7 +48,7 @@ status=`expr $status + $ret`
n=`expr $n + 1` n=`expr $n + 1`
echo "I:Unknown EDNS version ($n)" echo "I:Unknown EDNS version ($n)"
ret=0 reason= ret=0 reason=
$DIG -p 5300 @10.53.0.1 +norec +edns=100 soa $zone > dig.out$n $DIG -p 5300 @10.53.0.1 +norec +edns=100 +noednsneg soa $zone > dig.out$n
grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; } grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; }
grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; } grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; }
grep "IN.SOA." dig.out$n > /dev/null && { ret=1; reaons="soa"; } grep "IN.SOA." dig.out$n > /dev/null && { ret=1; reaons="soa"; }
@ -69,7 +69,7 @@ status=`expr $status + $ret`
n=`expr $n + 1` n=`expr $n + 1`
echo "I:Unknown EDNS version + option ($n)" echo "I:Unknown EDNS version + option ($n)"
ret=0 reason= ret=0 reason=
$DIG -p 5300 @10.53.0.1 +norec +edns=100 +ednsopt=100 soa $zone > dig.out$n $DIG -p 5300 @10.53.0.1 +norec +edns=100 +noednsneg +ednsopt=100 soa $zone > dig.out$n
grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; } grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; }
grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; } grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; }
grep "; OPT=100" dig.out$n > /dev/null && { ret=1; reason="option"; } grep "; OPT=100" dig.out$n > /dev/null && { ret=1; reason="option"; }
@ -91,7 +91,7 @@ status=`expr $status + $ret`
n=`expr $n + 1` n=`expr $n + 1`
echo "I:Unknown EDNS version + flag ($n)" echo "I:Unknown EDNS version + flag ($n)"
ret=0 reason= ret=0 reason=
$DIG -p 5300 @10.53.0.1 +norec +edns=100 +ednsflags=0x80 soa $zone > dig.out$n $DIG -p 5300 @10.53.0.1 +norec +edns=100 +noednsneg +ednsflags=0x80 soa $zone > dig.out$n
grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; } grep "status: BADVERS," dig.out$n > /dev/null || { ret=1; reason="status"; }
grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; } grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; }
grep "EDNS:.*MBZ" dig.out$n > /dev/null > /dev/null && { ret=1; reason="mbz"; } grep "EDNS:.*MBZ" dig.out$n > /dev/null > /dev/null && { ret=1; reason="mbz"; }
@ -100,5 +100,15 @@ if [ $ret != 0 ]; then echo "I:failed $reason"; fi
status=`expr $status + $ret` status=`expr $status + $ret`
n=`expr $n + 1` n=`expr $n + 1`
echo "I:DiG's EDNS negotiation ($n)"
ret=0 reason=
$DIG -p 5300 @10.53.0.1 +norec +edns=100 soa $zone > dig.out$n
grep "status: NOERROR," dig.out$n > /dev/null || { ret=1; reason="status"; }
grep "EDNS: version: 0," dig.out$n > /dev/null || { ret=1; reason="version"; }
grep "IN.SOA." dig.out$n > /dev/null || { ret=1; reason="soa"; }
if [ $ret != 0 ]; then echo "I:failed $reason"; fi
status=`expr $status + $ret`
n=`expr $n + 1`
echo "I:exit status: $status" echo "I:exit status: $status"
exit $status exit $status

View File

@ -127,6 +127,12 @@
yet-to-be-defined EDNS flags in DNS requests. yet-to-be-defined EDNS flags in DNS requests.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
<command>dig +[no]ednsnegotiation</command> can now be used enable /
disable EDNS version negotiation.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
<command>dig +header-only</command> can now be used to send <command>dig +header-only</command> can now be used to send