]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
3231. [bug] named could fail to send a uncompressable zone.
authorMark Andrews <marka@isc.org>
Thu, 1 Dec 2011 00:53:58 +0000 (00:53 +0000)
committerMark Andrews <marka@isc.org>
Thu, 1 Dec 2011 00:53:58 +0000 (00:53 +0000)
                        [RT #26796]

3230.   [bug[           'dig axfr' failed to properly handle a multi-message
                        axfr with a serial of 0. [RT #26796]

CHANGES
bin/dig/dighost.c
bin/named/xfrout.c
bin/tests/system/xfer/clean.sh
bin/tests/system/xfer/ns4/named.conf.base
bin/tests/system/xfer/ns4/root.db.in [new file with mode: 0644]
bin/tests/system/xfer/setup.sh
bin/tests/system/xfer/tests.sh

diff --git a/CHANGES b/CHANGES
index 234e67f3c99639dfc6b0e1d4d092e83cd1b654d0..b8e595b10590af51ec2994b83e358b082a98943d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+3231.  [bug]           named could fail to send a uncompressable zone.
+                       [RT #26796]
+
+3230.  [bug[           'dig axfr' failed to properly handle a multi-message
+                       axfr with a serial of 0. [RT #26796]
+
 3229.  [bug]           Fix local variable to struct var assignment
                        found by CLANG warning.
 
index 4892603d9b2adebcd12785f67b88ba487bde43ad..743885b0393fb5cbcad9ad53cb1e206acb991244 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dighost.c,v 1.343 2011/11/30 00:48:51 marka Exp $ */
+/* $Id: dighost.c,v 1.344 2011/12/01 00:53:58 marka Exp $ */
 
 /*! \file
  *  \note
@@ -82,6 +82,7 @@
 #include <isc/print.h>
 #include <isc/random.h>
 #include <isc/result.h>
+#include <isc/serial.h>
 #include <isc/string.h>
 #include <isc/task.h>
 #include <isc/timer.h>
@@ -743,7 +744,7 @@ make_empty_lookup(void) {
        looknew->xfr_q = NULL;
        looknew->current_query = NULL;
        looknew->doing_xfr = ISC_FALSE;
-       looknew->ixfr_serial = ISC_FALSE;
+       looknew->ixfr_serial = 0;
        looknew->trace = ISC_FALSE;
        looknew->trace_root = ISC_FALSE;
        looknew->identify = ISC_FALSE;
@@ -2869,8 +2870,10 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
        dns_rdataset_t *rdataset = NULL;
        dns_rdata_t rdata = DNS_RDATA_INIT;
        dns_rdata_soa_t soa;
-       isc_uint32_t serial;
+       isc_uint32_t ixfr_serial = query->lookup->ixfr_serial, serial;
        isc_result_t result;
+       isc_boolean_t ixfr = query->lookup->rdtype == dns_rdatatype_ixfr;
+       isc_boolean_t axfr = query->lookup->rdtype == dns_rdatatype_axfr;
 
        debug("check_for_more_data()");
 
@@ -2920,6 +2923,7 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
                                        query->second_rr_rcvd = ISC_TRUE;
                                        query->second_rr_serial = 0;
                                        debug("got the second rr as nonsoa");
+                                       axfr = ISC_TRUE;
                                        goto next_rdata;
                                }
 
@@ -2929,6 +2933,7 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
                                 */
                                if (rdata.type != dns_rdatatype_soa)
                                        goto next_rdata;
+
                                /* Now we have an SOA.  Work with it. */
                                debug("got an SOA");
                                result = dns_rdata_tostruct(&rdata, &soa, NULL);
@@ -2938,15 +2943,17 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
                                if (!query->first_soa_rcvd) {
                                        query->first_soa_rcvd = ISC_TRUE;
                                        query->first_rr_serial = serial;
-                                       debug("this is the first %d",
-                                              query->lookup->ixfr_serial);
-                                       if (query->lookup->ixfr_serial >=
-                                           serial)
+                                       debug("this is the first serial %u",
+                                             serial);
+                                       if (ixfr && isc_serial_ge(ixfr_serial,
+                                                                 serial)) {
+                                               debug("got up to date "
+                                                     "response");
                                                goto doexit;
+                                       }
                                        goto next_rdata;
                                }
-                               if (query->lookup->rdtype ==
-                                   dns_rdatatype_axfr) {
+                               if (axfr) {
                                        debug("doing axfr, got second SOA");
                                        goto doexit;
                                }
@@ -2956,22 +2963,12 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
                                                      "empty zone");
                                                goto doexit;
                                        }
-                                       debug("this is the second %d",
-                                              query->lookup->ixfr_serial);
+                                       debug("this is the second serial %u",
+                                             serial);
                                        query->second_rr_rcvd = ISC_TRUE;
                                        query->second_rr_serial = serial;
                                        goto next_rdata;
                                }
-                               if (query->second_rr_serial == 0) {
-                                       /*
-                                        * If the second RR was a non-SOA
-                                        * record, and we're getting any
-                                        * other SOA, then this is an
-                                        * AXFR, and we're done.
-                                        */
-                                       debug("done, since axfr");
-                                       goto doexit;
-                               }
                                /*
                                 * If we get to this point, we're doing an
                                 * IXFR and have to start really looking
@@ -2987,7 +2984,7 @@ check_for_more_data(dig_query_t *query, dns_message_t *msg,
                                        debug("done with ixfr");
                                        goto doexit;
                                }
-                               debug("meaningless soa %d", serial);
+                               debug("meaningless soa %u", serial);
                        next_rdata:
                                result = dns_rdataset_next(rdataset);
                        } while (result == ISC_R_SUCCESS);
index dc9e69c949a38207e8e76960eacde27d1180990f..43eec8e899bc28997a3fcd97f5c22ab46bd88c7b 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: xfrout.c,v 1.142 2011/07/28 04:27:26 marka Exp $ */
+/* $Id: xfrout.c,v 1.143 2011/12/01 00:53:58 marka Exp $ */
 
 #include <config.h>
 
@@ -1286,6 +1286,13 @@ sendstream(xfrout_ctx_t *xfr) {
                if (xfr->lasttsig != NULL)
                        isc_buffer_free(&xfr->lasttsig);
 
+               /*
+                * Account for reserved space.
+                */
+               if (xfr->tsigkey != NULL)
+                       INSIST(msg->reserved != 0U);
+               isc_buffer_add(&xfr->buf, msg->reserved);
+
                /*
                 * Include a question section in the first message only.
                 * BIND 8.2.1 will not recognize an IXFR if it does not
@@ -1324,9 +1331,13 @@ sendstream(xfrout_ctx_t *xfr) {
                        ISC_LIST_APPEND(qname->list, qrdataset, link);
 
                        dns_message_addname(msg, qname, DNS_SECTION_QUESTION);
-               }
-               else
+               } else {
+                       /*
+                        * Reserve space for the 12-byte message header
+                        */
+                       isc_buffer_add(&xfr->buf, 12);
                        msg->tcp_continuation = 1;
+               }
        }
 
        /*
index e0c19c2b9d94058deb8321f0eb480da9c5a3f90e..5aa36f373f5c81fe8412821e005c888b11d785d6 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: clean.sh,v 1.16 2011/03/12 04:59:47 tbox Exp $
+# $Id: clean.sh,v 1.17 2011/12/01 00:53:58 marka Exp $
 
 #
 # Clean up after zone transfer tests.
 
 rm -f dig.out.ns1 dig.out.ns2 dig.out.ns3
 rm -f dig.out.ns5 dig.out.ns6 dig.out.ns7
+rm -f axfr.out
 rm -f ns1/slave.db
 rm -f ns2/example.db ns2/tsigzone.db ns2/example.db.jnl
 rm -f ns3/example.bk ns3/tsigzone.bk ns3/example.bk.jnl
 rm -f ns3/master.bk ns3/master.bk.jnl
-rm -f ns4/named.conf ns4/nil.db
+rm -f ns4/named.conf ns4/nil.db ns4/root.db
 rm -f ns6/*.db ns6/*.bk ns6/*.jnl
 rm -f ns7/*.db ns7/*.bk ns7/*.jnl
 
index 98df2295b45413be5ca2ee099253bc1a3f82e645..231fcfaef6da53b2a7617fc1e0ab92d6dc5e937c 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named.conf.base,v 1.2 2011/03/04 22:01:01 each Exp $ */
+/* $Id: named.conf.base,v 1.3 2011/12/01 00:53:58 marka Exp $ */
 
 options {
        query-source address 10.53.0.4;
@@ -46,3 +46,8 @@ key tsig_key. {
 controls {
        inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
 };
+
+zone "." {
+       type master;
+       file "root.db";
+};
diff --git a/bin/tests/system/xfer/ns4/root.db.in b/bin/tests/system/xfer/ns4/root.db.in
new file mode 100644 (file)
index 0000000..701dd92
--- /dev/null
@@ -0,0 +1,4 @@
+; Copyright
+@ 0 SOA . . 0 0 0 0 0
+@ 0 NS .
+@ 0 A 10.53.0.4
index 1c5961fea1ab32f467f7dce3647f9f3df60e31f6..8a9be85638b0089ac326325807f58ae97b80ea2d 100644 (file)
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: setup.sh,v 1.8 2011/03/11 00:43:53 marka Exp $
+# $Id: setup.sh,v 1.9 2011/12/01 00:53:58 marka Exp $
+
+SYSTEMTESTTOP=..
+. $SYSTEMTESTTOP/conf.sh
 
 sh clean.sh
 
@@ -26,4 +29,6 @@ sh ../genzone.sh 6 3 >ns6/master.db
 sh ../genzone.sh 7 >ns7/master2.db
 
 rm -f ns4/*.db ns4/*.jnl
+cp -f ns4/root.db.in ns4/root.db
+$PERL -e 'for ($i=0;$i<10000;$i++){ printf("x%u 0 in a 10.53.0.1\n", $i);}' >> ns4/root.db
 cp -f ns4/named.conf.base ns4/named.conf
index ce8eb3e645580484d5e3f5a124edddc0c1425527..a11519dfedf2f6a0564a05897e3988377b6afc61 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: tests.sh,v 1.34 2011/03/11 00:43:53 marka Exp $
+# $Id: tests.sh,v 1.35 2011/12/01 00:53:58 marka Exp $
 
 SYSTEMTESTTOP=..
 . $SYSTEMTESTTOP/conf.sh
@@ -201,6 +201,14 @@ test -f ns7/slave.bk.jnl || tmp=1
 if test $tmp != 0 ; then echo "I:failed"; fi
 status=`expr $status + $tmp`
 
+echo "I:check that a multi-message uncompressable zone transfers"
+$DIG axfr . -p 5300 @10.53.0.4 | grep SOA > axfr.out
+if test `wc -l < axfr.out` != 2
+then
+        echo "I:failed"
+        status=`expr $status + 1`
+fi
+
 # now we test transfers with assorted TSIG glitches
 DIGCMD="$DIG $DIGOPTS @10.53.0.4 -p 5300"
 SENDCMD="$PERL ../send.pl 10.53.0.5 5301"