]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
return FORMERR when question section is empty if COOKIE is not present
authorMukund Sivaraman <muks@isc.org>
Tue, 15 May 2018 18:37:17 +0000 (00:07 +0530)
committerEvan Hunt <each@isc.org>
Tue, 26 Jun 2018 20:50:15 +0000 (13:50 -0700)
bin/tests/system/cookie/tests.sh
bin/tests/system/formerr/tests.sh
lib/ns/client.c

index bb96cbde0196a624c3e08ba3ae78a82ef995a4c1..17d782e0ea09bee5f4987b0ee9d730294728fdf9 100755 (executable)
@@ -54,6 +54,24 @@ do
         status=`expr $status + $ret`
 done
 
+n=`expr $n + 1`
+echo_i "checking RCODE=FORMERR to query without question section and without COOKIE option ($n)"
+ret=0
+$DIG $DIGOPTS +qr +header-only +nocookie version.bind txt ch @10.53.0.1 > dig.out.test$n
+grep COOKIE: dig.out.test$n > /dev/null && ret=1
+grep "status: FORMERR" dig.out.test$n > /dev/null || ret=1
+if [ $ret != 0 ]; then echo_i "failed"; fi
+status=`expr $status + $ret`
+
+n=`expr $n + 1`
+echo_i "checking RCODE=NOERROR to query without question section and with COOKIE option ($n)"
+ret=0
+$DIG $DIGOPTS +qr +header-only +cookie version.bind txt ch @10.53.0.1 > dig.out.test$n
+grep COOKIE: dig.out.test$n > /dev/null || ret=1
+grep "status: NOERROR" dig.out.test$n > /dev/null || ret=1
+if [ $ret != 0 ]; then echo_i "failed"; fi
+status=`expr $status + $ret`
+
 n=`expr $n + 1`
 echo_i "checking COOKIE token returned to empty COOKIE option ($n)"
 ret=0
index c88b18022f1a894006c710900d08535e943ea13c..d8b91e87542b7353a6938b3d1958ffaf8a4fc06b 100644 (file)
@@ -14,7 +14,7 @@ SYSTEMTESTTOP=..
 
 status=0
 
-echo_i "test name to long"
+echo_i "test name too long"
 $PERL formerr.pl -a 10.53.0.1 -p ${PORT} nametoolong > nametoolong.out
 ans=`grep got: nametoolong.out`
 if [ "${ans}" != "got: 000080010000000000000000" ];
@@ -30,11 +30,12 @@ then
        echo_i "failed"; status=`expr $status + 1`;
 fi
 
-# this one is now NOERROR
-echo_i "no questions"
+# this would be NOERROR if it included a COOKIE option,
+# but is a FORMERR without one.
+echo_i "empty question section (and no COOKIE option)"
 $PERL formerr.pl -a 10.53.0.1 -p ${PORT} noquestions > noquestions.out
 ans=`grep got: noquestions.out`
-if [ "${ans}" != "got: 000080000000000000000000" ];
+if [ "${ans}" != "got: 000080010000000000000000" ];
 then
        echo_i "failed"; status=`expr $status + 1`;
 fi
index e0aa915c7b670c9eedcff1bdc909225ebf8693c6..2dc4434c0c882c1004e36ea6819fed9e01739ee4 100644 (file)
@@ -2552,9 +2552,10 @@ ns__client_request(isc_task_t *task, isc_event_t *event) {
        }
 
        if (client->message->rdclass == 0) {
-               if ((client->attributes & NS_CLIENTATTR_WANTCOOKIE) != 0 ||
-                   (client->message->opcode == dns_opcode_query &&
-                    client->message->counts[DNS_SECTION_QUESTION] == 0U)) {
+               if ((client->attributes & NS_CLIENTATTR_WANTCOOKIE) != 0 &&
+                   client->message->opcode == dns_opcode_query &&
+                   client->message->counts[DNS_SECTION_QUESTION] == 0U)
+               {
                        result = dns_message_reply(client->message, ISC_TRUE);
                        if (result != ISC_R_SUCCESS) {
                                ns_client_error(client, result);