3283. [bug] Raw zones with with more than 512 records in a RRset

failed to load. [RT #27863]
This commit is contained in:
Mark Andrews
2012-02-13 23:46:24 +00:00
parent 3f261b3f7d
commit 4c34112a69
9 changed files with 80 additions and 12 deletions

View File

@@ -12,7 +12,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: compile.sh,v 1.9 2011/12/22 07:32:40 each Exp $
# $Id: compile.sh,v 1.10 2012/02/13 23:46:24 marka Exp $
../named-compilezone -D -F raw -o example.db.raw example \
example.db > /dev/null 2>&1
@@ -22,3 +22,4 @@
example.db > /dev/null 2>&1
../named-compilezone -D -F raw -L 3333 -o example.db.serial.raw example \
example.db > /dev/null 2>&1
../named-compilezone -D -F raw -o large.db.raw large large.db > /dev/null 2>&1

View File

@@ -0,0 +1,27 @@
; Copyright (C) 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
; copyright notice and this permission notice appear in all copies.
;
; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
; AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
; INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
; LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
; OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
; PERFORMANCE OF THIS SOFTWARE.
; $Id: large.db.in,v 1.2 2012/02/13 23:46:24 marka Exp $
$TTL 1D
@ IN SOA ns hostmaster (
1
3600
1800
1814400
3
)
NS ns
ns A 10.53.0.1

View File

@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: named.conf,v 1.7 2011/12/08 16:07:20 each Exp $ */
/* $Id: named.conf,v 1.8 2012/02/13 23:46:24 marka Exp $ */
// NS1
@@ -59,3 +59,10 @@ zone "transfer3" {
file "example.db";
allow-transfer { any; };
};
zone "large" {
type master;
file "large.db.raw";
masterfile-format raw;
allow-transfer { any; };
};