From e8ae1736557c7f4ad50112e7b74675db88b6b040 Mon Sep 17 00:00:00 2001
From: Evan Hunt
zonestatus
+ [zone
+ [class
+ [view]]]+ Displays the current status of the given zone, + including the master file name and any include + files from which it was loaded, when it was most + recently loaded, the current serial number, the + number of nodes, whether the zone supports + dynamic updates, whether the zone is DNSSEC + signed, whether it uses automatic DNSSEC key + management or inline signing, and the scheduled + refresh or expiry times for the zone. +
statsWrite server statistics to the statistics file. @@ -968,7 +983,7 @@ controls {
Certain UNIX signals cause the name server to take specific actions, as described in the following table. These signals can diff --git a/doc/arm/Bv9ARM.ch04.html b/doc/arm/Bv9ARM.ch04.html index 2c6f75c1d1..9f09f8463e 100644 --- a/doc/arm/Bv9ARM.ch04.html +++ b/doc/arm/Bv9ARM.ch04.html @@ -14,7 +14,7 @@ - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. --> - +
@@ -49,59 +49,59 @@Setting up different views, or visibility, of the DNS space to internal and external resolvers is usually referred to as a @@ -286,7 +286,7 @@
Let's say a company named Example, Inc.
(example.com)
@@ -543,7 +543,7 @@ nameserver 172.16.72.4
A shared secret is generated to be shared between host1 and host2. An arbitrary key name is chosen: "host1-host2.". The key name must @@ -551,7 +551,7 @@ nameserver 172.16.72.4
The following command will generate a 128-bit (16 byte) HMAC-SHA256 key as described above. Longer keys are better, but shorter keys @@ -575,7 +575,7 @@ nameserver 172.16.72.4
The shared secret is simply a random sequence of bits, encoded in base-64. Most ASCII strings are valid base-64 strings (assuming @@ -590,7 +590,7 @@ nameserver 172.16.72.4
This is beyond the scope of DNS. A secure transport mechanism should be used. This could be secure FTP, ssh, telephone, etc. @@ -598,7 +598,7 @@ nameserver 172.16.72.4
Imagine host1 and host 2 are @@ -625,7 +625,7 @@ key host1-host2. {
Since keys are shared between two hosts only, the server must
be told when keys are to be used. The following is added to the named.conf file
@@ -657,7 +657,7 @@ server 10.1.2.3 {
BIND allows IP addresses and ranges to be specified in ACL @@ -684,7 +684,7 @@ allow-update { key host1-host2. ;};
The processing of TSIG signed messages can result in several errors. If a signed message is sent to a non-TSIG aware @@ -710,7 +710,7 @@ allow-update { key host1-host2. ;};
TKEY is a mechanism for automatically generating a shared secret between two hosts. There are several "modes" of @@ -746,7 +746,7 @@ allow-update { key host1-host2. ;};
BIND 9 partially supports DNSSEC SIG(0) transaction signatures as specified in RFC 2535 and RFC 2931. @@ -807,7 +807,7 @@ allow-update { key host1-host2. ;};
The dnssec-keygen program is used to generate keys. @@ -863,7 +863,7 @@ allow-update { key host1-host2. ;};
The dnssec-signzone program is used to sign a zone. @@ -905,7 +905,7 @@ allow-update { key host1-host2. ;};
To enable named to respond appropriately to DNS requests from DNSSEC aware clients, @@ -1065,7 +1065,7 @@ options { from insecure to signed and back again. A secure zone can use either NSEC or NSEC3 chains.
+Converting from insecure to secureChanging a zone from insecure to secure can be done in two ways: using a dynamic DNS update, or the auto-dnssec zone option.
@@ -1091,7 +1091,7 @@ options { well. An NSEC chain will be generated as part of the initial signing process. +Dynamic DNS update methodTo insert the keys via dynamic update:
% nsupdate
@@ -1127,7 +1127,7 @@ options {
While the initial signing and NSEC/NSEC3 chain generation
is happening, other updates are possible as well.
+Fully automatic zone signing
To enable automatic signing, add the
auto-dnssec option to the zone statement in
named.conf.
@@ -1183,7 +1183,7 @@ options {
configuration. If this has not been done, the configuration will
fail.
+Private-type records
The state of the signing process is signaled by
private-type records (with a default type value of 65534). When
signing is complete, these records will have a nonzero value for
@@ -1224,12 +1224,12 @@ options {
+DNSKEY rollovers
As with insecure-to-secure conversions, rolling DNSSEC
keys can be done in two ways: using a dynamic DNS update, or the
auto-dnssec zone option.
+Dynamic DNS update method
To perform key rollovers via dynamic update, you need to add
the K* files for the new keys so that
named can find them. You can then add the new
@@ -1251,7 +1251,7 @@ options {
named will clean out any signatures generated
by the old key after the update completes.
+Automatic key rollovers
When a new key reaches its activation date (as set by
dnssec-keygen or dnssec-settime),
if the auto-dnssec zone option is set to
@@ -1266,27 +1266,27 @@ options {
completes in 30 days, after which it will be safe to remove the
old key from the DNSKEY RRset.
+NSEC3PARAM rollovers via UPDATE
Add the new NSEC3PARAM record via dynamic update. When the
new NSEC3 chain has been generated, the NSEC3PARAM flag field
will be zero. At this point you can remove the old NSEC3PARAM
record. The old chain will be removed after the update request
completes.
+Converting from NSEC to NSEC3
To do this, you just need to add an NSEC3PARAM record. When
the conversion is complete, the NSEC chain will have been removed
and the NSEC3PARAM record will have a zero flag field. The NSEC3
chain will be generated before the NSEC chain is
destroyed.
+Converting from NSEC3 to NSEC
To do this, use nsupdate to
remove all NSEC3PARAM records with a zero flag
field. The NSEC chain will be generated before the NSEC3 chain is
removed.
+Converting from secure to insecure
To convert a signed zone to unsigned using dynamic DNS,
delete all the DNSKEY records from the zone apex using
nsupdate. All signatures, NSEC or NSEC3 chains,
@@ -1301,14 +1301,14 @@ options {
allow instead (or it will re-sign).
+Periodic re-signing
In any secure zone which supports dynamic updates, named
will periodically re-sign RRsets which have not been re-signed as
a result of some update action. The signature lifetimes will be
adjusted so as to spread the re-sign load over time rather than
all at once.
+NSEC3 and OPTOUT
named only supports creating new NSEC3 chains
where all the NSEC3 records in the zone have the same OPTOUT
@@ -1330,7 +1330,7 @@ options {
configuration files.
To configure a validating resolver to use RFC 5011 to
maintain a trust anchor, configure the trust anchor using a
managed-keys statement. Information about
@@ -1341,7 +1341,7 @@ options {
To set up an authoritative zone for RFC 5011 trust anchor
maintenance, generate two (or more) key signing keys (KSKs) for
the zone. Sign the zone with one of them; this is the "active"
@@ -1415,7 +1415,7 @@ $ dnssec-signzone -S -K keys example.net<
Debian Linux, Solaris x86 and Windows Server 2003.
See the HSM vendor documentation for information about
installing, initializing, testing and troubleshooting the
HSM.
@@ -1492,7 +1492,7 @@ $ patch -p1 -d openssl-0.9.8s \
when we configure BIND 9.
The AEP Keyper is a highly secure key storage device,
but does not provide hardware cryptographic acceleration. It
can carry out cryptographic operations, but it is probably
@@ -1524,7 +1524,7 @@ $ ./Configure linux-generic32 -m32 -pthread \
The SCA-6000 PKCS #11 provider is installed as a system
library, libpkcs11. It is a true crypto accelerator, up to 4
times faster than any CPU, so the flavor shall be
@@ -1546,7 +1546,7 @@ $ ./Configure solaris64-x86_64-cc \
SoftHSM is a software library provided by the OpenDNSSEC
project (http://www.opendnssec.org) which provides a PKCS#11
interface to a virtual HSM, implemented in the form of encrypted
@@ -1606,12 +1606,12 @@ $ ./Configure linux-x86_64 -pthread \
When building BIND 9, the location of the custom-built
OpenSSL library must be specified via configure.
To link with the PKCS #11 provider, threads must be
enabled in the BIND 9 build.
The PKCS #11 library for the AEP Keyper is currently
@@ -1627,7 +1627,7 @@ $ ./configure CC="gcc -m32" --enable-threads \
To link with the PKCS #11 provider, threads must be
enabled in the BIND 9 build.
@@ -1645,7 +1645,7 @@ $ ./configure CC="cc -xarch=amd64" --enable-thre
$ cd ../bind9
$ ./configure --enable-threads \
@@ -1662,7 +1662,7 @@ $ ./configure --enable-threads \
BIND 9 includes a minimal set of tools to operate the
HSM, including
pkcs11-keygen to generate a new key pair
@@ -1680,7 +1680,7 @@ $ ./configure --enable-threads \
First, we must set up the runtime environment so the
OpenSSL and PKCS #11 libraries can be loaded:
@@ -1768,7 +1768,7 @@ example.net.signed
The OpenSSL engine can be specified in
named and all of the BIND
dnssec-* tools by using the "-E
@@ -1789,7 +1789,7 @@ $ dnssec-signzone -E '' -S example.net
If you want
named to dynamically re-sign zones using HSM
keys, and/or to to sign new records inserted via nsupdate, then
@@ -1825,7 +1825,7 @@ $ dnssec-signzone -E '' -S example.net
BIND 9 fully supports all currently
defined forms of IPv6 name to address and address to name
@@ -1863,7 +1863,7 @@ $ dnssec-signzone -E '' -S example.net
The IPv6 AAAA record is a parallel to the IPv4 A record,
and, unlike the deprecated A6 record, specifies the entire
@@ -1882,7 +1882,7 @@ host 3600 IN AAAA 2001:db8::1
When looking up an address in nibble format, the address
components are simply reversed, just as in IPv4, and
diff --git a/doc/arm/Bv9ARM.ch05.html b/doc/arm/Bv9ARM.ch05.html
index 12ee499254..a9965404f9 100644
--- a/doc/arm/Bv9ARM.ch05.html
+++ b/doc/arm/Bv9ARM.ch05.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -45,13 +45,13 @@
Table of Contents
Traditionally applications have been linked with a stub resolver
library that sends recursive DNS queries to a local caching name
diff --git a/doc/arm/Bv9ARM.ch06.html b/doc/arm/Bv9ARM.ch06.html
index 3347b384d0..37eab02b06 100644
--- a/doc/arm/Bv9ARM.ch06.html
+++ b/doc/arm/Bv9ARM.ch06.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -48,58 +48,58 @@
Configuration File Elements
Configuration File Grammar
-- acl Statement Grammar
+- acl Statement Grammar
- acl Statement Definition and
Usage
-- controls Statement Grammar
+- controls Statement Grammar
- controls Statement Definition and
Usage
-- include Statement Grammar
-- include Statement Definition and
+
- include Statement Grammar
+- include Statement Definition and
Usage
-- key Statement Grammar
-- key Statement Definition and Usage
-- logging Statement Grammar
-- logging Statement Definition and
+
- key Statement Grammar
+- key Statement Definition and Usage
+- logging Statement Grammar
+- logging Statement Definition and
Usage
-- lwres Statement Grammar
-- lwres Statement Definition and Usage
-- masters Statement Grammar
-- masters Statement Definition and
+
- lwres Statement Grammar
+- lwres Statement Definition and Usage
+- masters Statement Grammar
+- masters Statement Definition and
Usage
-- options Statement Grammar
+- options Statement Grammar
- options Statement Definition and
Usage
- server Statement Grammar
- server Statement Definition and
Usage
- statistics-channels Statement Grammar
-- statistics-channels Statement Definition and
+
- statistics-channels Statement Definition and
Usage
- trusted-keys Statement Grammar
-- trusted-keys Statement Definition
+
- trusted-keys Statement Definition
and Usage
-- managed-keys Statement Grammar
+- managed-keys Statement Grammar
- managed-keys Statement Definition
and Usage
- view Statement Grammar
-- view Statement Definition and Usage
+- view Statement Definition and Usage
- zone
Statement Grammar
-- zone Statement Definition and Usage
+- zone Statement Definition and Usage
-Zone File
+Zone File
- Types of Resource Records and When to Use Them
-- Discussion of MX Records
+- Discussion of MX Records
- Setting TTLs
-- Inverse Mapping in IPv4
-- Other Zone File Directives
-- BIND Master File Extension: the $GENERATE Directive
+- Inverse Mapping in IPv4
+- Other Zone File Directives
+- BIND Master File Extension: the $GENERATE Directive
- Additional File Formats
BIND9 Statistics
@@ -477,7 +477,7 @@
Address Match Lists
address_match_list = address_match_list_element ;
[ address_match_list_element; ... ]
address_match_list_element = [ ! ] (ip_address [/length] |
@@ -486,7 +486,7 @@
Address match lists are primarily used to determine access
control for various server operations. They are also used in
@@ -570,7 +570,7 @@
The BIND 9 comment syntax allows for
comments to appear
@@ -580,7 +580,7 @@
/* This is a BIND comment as in C */
@@ -596,7 +596,7 @@
Comments may appear anywhere that whitespace may appear in
a BIND configuration file.
@@ -850,7 +850,7 @@
acl acl-name {
address_match_list
};
@@ -932,7 +932,7 @@
controls {
[ inet ( ip_addr | * ) [ port ip_port ]
allow { address_match_list }
@@ -1056,12 +1056,12 @@
include filename;
The include statement inserts the
@@ -1076,7 +1076,7 @@
key key_id {
algorithm string;
secret string;
@@ -1085,7 +1085,7 @@
The key statement defines a shared
secret key for use with TSIG (see the section called “TSIG”)
@@ -1132,7 +1132,7 @@
logging {
[ channel channel_name {
( file path_name
@@ -1156,7 +1156,7 @@
The logging statement configures a
@@ -1190,7 +1190,7 @@
All log output goes to one or more channels;
you can make as many of them as you want.
@@ -1774,7 +1774,7 @@ category notify { null; };
The query-errors category is
specifically intended for debugging purposes: To identify
@@ -2002,7 +2002,7 @@ badresp:1,adberr:0,findfail:0,valfail:0]
This is the grammar of the lwres
statement in the named.conf file:
@@ -2018,7 +2018,7 @@ badresp:1,adberr:0,findfail:0,valfail:0]
The lwres statement configures the
name
@@ -2069,7 +2069,7 @@ badresp:1,adberr:0,findfail:0,valfail:0]
masters name [port ip_port] { ( masters_list |
ip_addr [port ip_port] [key key] ) ; [...] };
@@ -2077,7 +2077,7 @@ badresp:1,adberr:0,findfail:0,valfail:0]
masters
lists allow for a common set of masters to be easily used by
@@ -2087,7 +2087,7 @@ badresp:1,adberr:0,findfail:0,valfail:0]
This is the grammar of the options
statement in the named.conf file:
@@ -3724,7 +3724,7 @@ options {
The forwarding facility can be used to create a large site-wide
cache on a few servers, reducing traffic over links to external
@@ -3768,7 +3768,7 @@ options {
Dual-stack servers are used as servers of last resort to work
around
@@ -3979,7 +3979,7 @@ options {
The interfaces and ports that the server will answer queries
from may be specified using the listen-on option. listen-on takes
@@ -4447,7 +4447,7 @@ avoid-v6-udp-ports {};
use-v4-udp-ports,
avoid-v4-udp-ports,
@@ -4489,7 +4489,7 @@ avoid-v6-udp-ports { 40000; range 50000 60000; };
The server's usage of many system resources can be limited.
Scaled values are allowed when specifying resource limits. For
@@ -4651,7 +4651,7 @@ avoid-v6-udp-ports { 40000; range 50000 60000; };
- cleaning-interval
@@ -5509,7 +5509,7 @@ avoid-v6-udp-ports { 40000; range 50000 60000; };
BIND 9 provides the ability to filter
out DNS responses from external DNS servers containing
@@ -5632,7 +5632,7 @@ deny-answer-aliases { "example.net"; };
BIND 9 includes an intentionally limited
mechanism to modify DNS responses for recursive requests
@@ -6068,7 +6068,7 @@ ns.domain.com.rpz-nsdname CNAME .
The statistics-channels statement
@@ -6128,7 +6128,7 @@ ns.domain.com.rpz-nsdname CNAME .
The trusted-keys statement defines
@@ -6168,7 +6168,7 @@ ns.domain.com.rpz-nsdname CNAME .
managed-keys {
string initial-key number number number string ;
[ string initial-key number number number string ; [...]]
@@ -6303,7 +6303,7 @@ ns.domain.com.rpz-nsdname CNAME .
The view statement is a powerful
feature
@@ -6604,10 +6604,10 @@ zone zone_name [
@@ -6887,7 +6887,7 @@ zone zone_name [
The zone's name may optionally be followed by a class. If
a class is not specified, class IN (for Internet),
@@ -6909,7 +6909,7 @@ zone zone_name [
- allow-notify
@@ -7820,7 +7820,7 @@ example.com. NS ns2.example.net.
@@ -7833,7 +7833,7 @@ example.com. NS ns2.example.net.
A domain name identifies a node. Each node has a set of
resource information, which may be empty. The set of resource
@@ -8570,7 +8570,7 @@ example.com. NS ns2.example.net.
RRs are represented in binary form in the packets of the DNS
protocol, and are usually represented in highly encoded form
@@ -8773,7 +8773,7 @@ example.com. NS ns2.example.net.
As described above, domain servers store information as a
series of resource records, each of which contains a particular
@@ -9029,7 +9029,7 @@ example.com. NS ns2.example.net.
Reverse name resolution (that is, translation from IP address
to name) is achieved by means of the in-addr.arpa domain
@@ -9090,7 +9090,7 @@ example.com. NS ns2.example.net.
The Master File Format was initially defined in RFC 1035 and
has subsequently been extended. While the Master File Format
@@ -9105,7 +9105,7 @@ example.com. NS ns2.example.net.
When used in the label (or name) field, the asperand or
at-sign (@) symbol represents the current origin.
@@ -9116,7 +9116,7 @@ example.com. NS ns2.example.net.
Syntax: $ORIGIN
domain-name
@@ -9145,7 +9145,7 @@ WWW.EXAMPLE.COM. CNAME MAIN-SERVER.EXAMPLE.COM.
Syntax: $INCLUDE
filename
@@ -9181,7 +9181,7 @@ WWW.EXAMPLE.COM. CNAME MAIN-SERVER.EXAMPLE.COM.
Syntax: $TTL
default-ttl
@@ -9200,7 +9200,7 @@ WWW.EXAMPLE.COM. CNAME MAIN-SERVER.EXAMPLE.COM.
Syntax: $GENERATE
range
@@ -9624,7 +9624,7 @@ HOST-127.EXAMPLE. MX 0 .
@@ -10181,7 +10181,7 @@ HOST-127.EXAMPLE. MX 0 .
@@ -10335,7 +10335,7 @@ HOST-127.EXAMPLE. MX 0 .
@@ -10718,7 +10718,7 @@ HOST-127.EXAMPLE. MX 0 .
Socket I/O statistics counters are defined per socket
types, which are
@@ -10873,7 +10873,7 @@ HOST-127.EXAMPLE. MX 0 .
Most statistics counters that were available
in BIND 8 are also supported in
diff --git a/doc/arm/Bv9ARM.ch07.html b/doc/arm/Bv9ARM.ch07.html
index c719a7eb02..6d664f879c 100644
--- a/doc/arm/Bv9ARM.ch07.html
+++ b/doc/arm/Bv9ARM.ch07.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -46,10 +46,10 @@
Table of Contents
@@ -121,7 +121,7 @@ zone "example.com" {
On UNIX servers, it is possible to run BIND
@@ -147,7 +147,7 @@ zone "example.com" {
In order for a chroot environment
to
@@ -175,7 +175,7 @@ zone "example.com" {
Prior to running the named daemon,
use
diff --git a/doc/arm/Bv9ARM.ch08.html b/doc/arm/Bv9ARM.ch08.html
index 53aa7dd120..ef91977b58 100644
--- a/doc/arm/Bv9ARM.ch08.html
+++ b/doc/arm/Bv9ARM.ch08.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -45,18 +45,18 @@
Table of Contents
The best solution to solving installation and
configuration issues is to take preventative measures by setting
@@ -68,7 +68,7 @@
Zone serial numbers are just numbers — they aren't
date related. A lot of people set them to a number that
@@ -95,7 +95,7 @@
The Internet Systems Consortium
(ISC) offers a wide range
diff --git a/doc/arm/Bv9ARM.ch09.html b/doc/arm/Bv9ARM.ch09.html
index c8aad6658a..491ce9f439 100644
--- a/doc/arm/Bv9ARM.ch09.html
+++ b/doc/arm/Bv9ARM.ch09.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -45,31 +45,31 @@
Table of Contents
Standards
-[RFC974] Mail Routing and the Domain System. January 1986.
+[RFC974] Mail Routing and the Domain System. January 1986.
@@ -278,42 +278,42 @@
Proposed Standards
-[RFC1995] Incremental Zone Transfer in DNS. August 1996.
+[RFC1995] Incremental Zone Transfer in DNS. August 1996.
-[RFC1996] A Mechanism for Prompt Notification of Zone Changes. August 1996.
+[RFC1996] A Mechanism for Prompt Notification of Zone Changes. August 1996.
-[RFC2136] Dynamic Updates in the Domain Name System. April 1997.
+[RFC2136] Dynamic Updates in the Domain Name System. April 1997.
-[RFC2671] Extension Mechanisms for DNS (EDNS0). August 1997.
+[RFC2671] Extension Mechanisms for DNS (EDNS0). August 1997.
-[RFC2672] Non-Terminal DNS Name Redirection. August 1999.
+[RFC2672] Non-Terminal DNS Name Redirection. August 1999.
-[RFC2845] Secret Key Transaction Authentication for DNS (TSIG). May 2000.
+[RFC2845] Secret Key Transaction Authentication for DNS (TSIG). May 2000.
-[RFC2930] Secret Key Establishment for DNS (TKEY RR). September 2000.
+[RFC2930] Secret Key Establishment for DNS (TKEY RR). September 2000.
-[RFC2931] DNS Request and Transaction Signatures (SIG(0)s). September 2000.
+[RFC2931] DNS Request and Transaction Signatures (SIG(0)s). September 2000.
-[RFC3007] Secure Domain Name System (DNS) Dynamic Update. November 2000.
+[RFC3007] Secure Domain Name System (DNS) Dynamic Update. November 2000.
-[RFC3645] Generic Security Service Algorithm for Secret
+[RFC3645] Generic Security Service Algorithm for Secret
Key Transaction Authentication for DNS
(GSS-TSIG). October 2003.
@@ -322,19 +322,19 @@
DNS Security Proposed Standards
-[RFC3225] Indicating Resolver Support of DNSSEC. December 2001.
+[RFC3225] Indicating Resolver Support of DNSSEC. December 2001.
-[RFC3833] Threat Analysis of the Domain Name System (DNS). August 2004.
+[RFC3833] Threat Analysis of the Domain Name System (DNS). August 2004.
-[RFC4033] DNS Security Introduction and Requirements. March 2005.
+[RFC4033] DNS Security Introduction and Requirements. March 2005.
-[RFC4034] Resource Records for the DNS Security Extensions. March 2005.
+[RFC4034] Resource Records for the DNS Security Extensions. March 2005.
-[RFC4035] Protocol Modifications for the DNS
+[RFC4035] Protocol Modifications for the DNS
Security Extensions. March 2005.
@@ -342,146 +342,146 @@
Other Important RFCs About DNS
Implementation
-[RFC1535] A Security Problem and Proposed Correction With Widely
+[RFC1535] A Security Problem and Proposed Correction With Widely
Deployed DNS Software.. October 1993.
-[RFC1536] Common DNS Implementation
+[RFC1536] Common DNS Implementation
Errors and Suggested Fixes. October 1993.
-[RFC4074] Common Misbehaviour Against DNS
+[RFC4074] Common Misbehaviour Against DNS
Queries for IPv6 Addresses. May 2005.
Resource Record Types
-[RFC1706] DNS NSAP Resource Records. October 1994.
+[RFC1706] DNS NSAP Resource Records. October 1994.
-[RFC2168] Resolution of Uniform Resource Identifiers using
+[RFC2168] Resolution of Uniform Resource Identifiers using
the Domain Name System. June 1997.
-[RFC1876] A Means for Expressing Location Information in the
+[RFC1876] A Means for Expressing Location Information in the
Domain
Name System. January 1996.
-[RFC2052] A DNS RR for Specifying the
+[RFC2052] A DNS RR for Specifying the
Location of
Services.. October 1996.
-[RFC2163] Using the Internet DNS to
+[RFC2163] Using the Internet DNS to
Distribute MIXER
Conformant Global Address Mapping. January 1998.
-[RFC2230] Key Exchange Delegation Record for the DNS. October 1997.
+[RFC2230] Key Exchange Delegation Record for the DNS. October 1997.
-[RFC2536] DSA KEYs and SIGs in the Domain Name System (DNS). March 1999.
+[RFC2536] DSA KEYs and SIGs in the Domain Name System (DNS). March 1999.
-[RFC2537] RSA/MD5 KEYs and SIGs in the Domain Name System (DNS). March 1999.
+[RFC2537] RSA/MD5 KEYs and SIGs in the Domain Name System (DNS). March 1999.
-[RFC2538] Storing Certificates in the Domain Name System (DNS). March 1999.
+[RFC2538] Storing Certificates in the Domain Name System (DNS). March 1999.
-[RFC2539] Storage of Diffie-Hellman Keys in the Domain Name System (DNS). March 1999.
+[RFC2539] Storage of Diffie-Hellman Keys in the Domain Name System (DNS). March 1999.
-[RFC2540] Detached Domain Name System (DNS) Information. March 1999.
+[RFC2540] Detached Domain Name System (DNS) Information. March 1999.
-[RFC2782] A DNS RR for specifying the location of services (DNS SRV). February 2000.
+[RFC2782] A DNS RR for specifying the location of services (DNS SRV). February 2000.
-[RFC2915] The Naming Authority Pointer (NAPTR) DNS Resource Record. September 2000.
+[RFC2915] The Naming Authority Pointer (NAPTR) DNS Resource Record. September 2000.
-[RFC3110] RSA/SHA-1 SIGs and RSA KEYs in the Domain Name System (DNS). May 2001.
+[RFC3110] RSA/SHA-1 SIGs and RSA KEYs in the Domain Name System (DNS). May 2001.
-[RFC3123] A DNS RR Type for Lists of Address Prefixes (APL RR). June 2001.
+[RFC3123] A DNS RR Type for Lists of Address Prefixes (APL RR). June 2001.
DNS and the Internet
-[RFC1101] DNS Encoding of Network Names
+[RFC1101] DNS Encoding of Network Names
and Other Types. April 1989.
-[RFC1123] Requirements for Internet Hosts - Application and
+[RFC1123] Requirements for Internet Hosts - Application and
Support. October 1989.
-[RFC1591] Domain Name System Structure and Delegation. March 1994.
+[RFC1591] Domain Name System Structure and Delegation. March 1994.
-[RFC2317] Classless IN-ADDR.ARPA Delegation. March 1998.
+[RFC2317] Classless IN-ADDR.ARPA Delegation. March 1998.
DNS Operations
-[RFC1033] Domain administrators operations guide.. November 1987.
+[RFC1033] Domain administrators operations guide.. November 1987.
-[RFC1912] Common DNS Operational and
+[RFC1912] Common DNS Operational and
Configuration Errors. February 1996.
Internationalized Domain Names
-[RFC2825] A Tangled Web: Issues of I18N, Domain Names,
+[RFC2825] A Tangled Web: Issues of I18N, Domain Names,
and the Other Internet protocols. May 2000.
-[RFC3490] Internationalizing Domain Names in Applications (IDNA). March 2003.
+[RFC3490] Internationalizing Domain Names in Applications (IDNA). March 2003.
@@ -497,47 +497,47 @@
-[RFC1464] Using the Domain Name System To Store Arbitrary String
+[RFC1464] Using the Domain Name System To Store Arbitrary String
Attributes. May 1993.
-[RFC1713] Tools for DNS Debugging. November 1994.
+[RFC1713] Tools for DNS Debugging. November 1994.
-[RFC2240] A Legal Basis for Domain Name Allocation. November 1997.
+[RFC2240] A Legal Basis for Domain Name Allocation. November 1997.
-[RFC2345] Domain Names and Company Name Retrieval. May 1998.
+[RFC2345] Domain Names and Company Name Retrieval. May 1998.
-[RFC2352] A Convention For Using Legal Names as Domain Names. May 1998.
+[RFC2352] A Convention For Using Legal Names as Domain Names. May 1998.
-[RFC3071] Reflections on the DNS, RFC 1591, and Categories of Domains. February 2001.
+[RFC3071] Reflections on the DNS, RFC 1591, and Categories of Domains. February 2001.
-[RFC3258] Distributing Authoritative Name Servers via
+[RFC3258] Distributing Authoritative Name Servers via
Shared Unicast Addresses. April 2002.
-[RFC3901] DNS IPv6 Transport Operational Guidelines. September 2004.
+[RFC3901] DNS IPv6 Transport Operational Guidelines. September 2004.
Obsolete and Unimplemented Experimental RFC
-[RFC1712] DNS Encoding of Geographical
+[RFC1712] DNS Encoding of Geographical
Location. November 1994.
@@ -551,39 +551,39 @@
-[RFC2065] Domain Name System Security Extensions. January 1997.
+[RFC2065] Domain Name System Security Extensions. January 1997.
-[RFC2137] Secure Domain Name System Dynamic Update. April 1997.
+[RFC2137] Secure Domain Name System Dynamic Update. April 1997.
-[RFC2535] Domain Name System Security Extensions. March 1999.
+[RFC2535] Domain Name System Security Extensions. March 1999.
-[RFC3008] Domain Name System Security (DNSSEC)
+[RFC3008] Domain Name System Security (DNSSEC)
Signing Authority. November 2000.
-[RFC3090] DNS Security Extension Clarification on Zone Status. March 2001.
+[RFC3090] DNS Security Extension Clarification on Zone Status. March 2001.
-[RFC3445] Limiting the Scope of the KEY Resource Record (RR). December 2002.
+[RFC3445] Limiting the Scope of the KEY Resource Record (RR). December 2002.
-[RFC3655] Redefinition of DNS Authenticated Data (AD) bit. November 2003.
+[RFC3655] Redefinition of DNS Authenticated Data (AD) bit. November 2003.
-[RFC3658] Delegation Signer (DS) Resource Record (RR). December 2003.
+[RFC3658] Delegation Signer (DS) Resource Record (RR). December 2003.
-[RFC3755] Legacy Resolver Compatibility for Delegation Signer (DS). May 2004.
+[RFC3755] Legacy Resolver Compatibility for Delegation Signer (DS). May 2004.
-[RFC3757] Domain Name System KEY (DNSKEY) Resource Record
+[RFC3757] Domain Name System KEY (DNSKEY) Resource Record
(RR) Secure Entry Point (SEP) Flag. April 2004.
-[RFC3845] DNS Security (DNSSEC) NextSECure (NSEC) RDATA Format. August 2004.
+[RFC3845] DNS Security (DNSSEC) NextSECure (NSEC) RDATA Format. August 2004.
@@ -604,14 +604,14 @@
-DNS and BIND. Copyright © 1998 Sebastopol, CA: O'Reilly and Associates.
+DNS and BIND. Copyright © 1998 Sebastopol, CA: O'Reilly and Associates.
@@ -648,7 +648,7 @@
GNU make is required to build the export libraries (other
part of BIND 9 can still be built with other types of make). In
the reminder of this document, "make" means GNU make. Note that
@@ -657,7 +657,7 @@
$ ./configure --enable-exportlib [other flags]
$ make
@@ -672,7 +672,7 @@ $ make
$ cd lib/export
$ make install
@@ -694,7 +694,7 @@ $ make install
Currently, win32 is not supported for the export
library. (Normal BIND 9 application can be built as
@@ -734,7 +734,7 @@ $ make
The IRS library supports an "advanced" configuration file
related to the DNS library for configuration parameters that
would be beyond the capability of the
@@ -752,14 +752,14 @@ $ make
Some sample application programs using this API are
provided for reference. The following is a brief description of
these applications.
It sends a query of a given name (of a given optional RR type) to a
specified recursive server, and prints the result as a list of
@@ -823,7 +823,7 @@ $ make
Similar to "sample", but accepts a list
of (query) domain names as a separate file and resolves the names
@@ -864,7 +864,7 @@ $ make
It sends a query to a specified server, and
prints the response with minimal processing. It doesn't act as a
@@ -905,7 +905,7 @@ $ make
This is a test program
to check getaddrinfo() and getnameinfo() behavior. It takes a
@@ -922,7 +922,7 @@ $ make
It accepts a single update command as a
command-line argument, sends an update request message to the
@@ -1017,7 +1017,7 @@ $ sample-update -a sample-update -k Kxxx.+nnn+mm
It checks a set
of domains to see the name servers of the domains behave
@@ -1074,7 +1074,7 @@ $ sample-update -a sample-update -k Kxxx.+nnn+mm
As of this writing, there is no formal "manual" of the
libraries, except this document, header files (some of them
provide pretty detailed explanations), and sample application
diff --git a/doc/arm/Bv9ARM.html b/doc/arm/Bv9ARM.html
index b2b27d90c1..842d1422eb 100644
--- a/doc/arm/Bv9ARM.html
+++ b/doc/arm/Bv9ARM.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -83,7 +83,7 @@
Name Server Operations
4. Advanced DNS Features
@@ -92,64 +92,64 @@
Dynamic Update
Incremental Zone Transfers (IXFR)
-Split DNS
-
+Split DNS
+
TSIG
-- Generate Shared Keys for Each Pair of Hosts
-- Copying the Shared Secret to Both Machines
-- Informing the Servers of the Key's Existence
-- Instructing the Server to Use the Key
-- TSIG Key Based Access Control
-- Errors
+- Generate Shared Keys for Each Pair of Hosts
+- Copying the Shared Secret to Both Machines
+- Informing the Servers of the Key's Existence
+- Instructing the Server to Use the Key
+- TSIG Key Based Access Control
+- Errors
-TKEY
-SIG(0)
+TKEY
+SIG(0)
DNSSEC
DNSSEC, Dynamic Zones, and Automatic Signing
-- Converting from insecure to secure
-- Dynamic DNS update method
-- Fully automatic zone signing
-- Private-type records
-- DNSKEY rollovers
-- Dynamic DNS update method
-- Automatic key rollovers
-- NSEC3PARAM rollovers via UPDATE
-- Converting from NSEC to NSEC3
-- Converting from NSEC3 to NSEC
-- Converting from secure to insecure
-- Periodic re-signing
-- NSEC3 and OPTOUT
+- Converting from insecure to secure
+- Dynamic DNS update method
+- Fully automatic zone signing
+- Private-type records
+- DNSKEY rollovers
+- Dynamic DNS update method
+- Automatic key rollovers
+- NSEC3PARAM rollovers via UPDATE
+- Converting from NSEC to NSEC3
+- Converting from NSEC3 to NSEC
+- Converting from secure to insecure
+- Periodic re-signing
+- NSEC3 and OPTOUT
Dynamic Trust Anchor Management
PKCS #11 (Cryptoki) support
-- Prerequisites
-- Building BIND 9 with PKCS#11
-- PKCS #11 Tools
-- Using the HSM
-- Specifying the engine on the command line
-- Running named with automatic zone re-signing
+- Prerequisites
+- Building BIND 9 with PKCS#11
+- PKCS #11 Tools
+- Using the HSM
+- Specifying the engine on the command line
+- Running named with automatic zone re-signing
-IPv6 Support in BIND 9
+IPv6 Support in BIND 9
5. The BIND 9 Lightweight Resolver
6. BIND 9 Configuration Reference
@@ -157,58 +157,58 @@
Configuration File Elements
Configuration File Grammar
-- acl Statement Grammar
+- acl Statement Grammar
- acl Statement Definition and
Usage
-- controls Statement Grammar
+- controls Statement Grammar
- controls Statement Definition and
Usage
-- include Statement Grammar
-- include Statement Definition and
+
- include Statement Grammar
+- include Statement Definition and
Usage
-- key Statement Grammar
-- key Statement Definition and Usage
-- logging Statement Grammar
-- logging Statement Definition and
+
- key Statement Grammar
+- key Statement Definition and Usage
+- logging Statement Grammar
+- logging Statement Definition and
Usage
-- lwres Statement Grammar
-- lwres Statement Definition and Usage
-- masters Statement Grammar
-- masters Statement Definition and
+
- lwres Statement Grammar
+- lwres Statement Definition and Usage
+- masters Statement Grammar
+- masters Statement Definition and
Usage
-- options Statement Grammar
+- options Statement Grammar
- options Statement Definition and
Usage
- server Statement Grammar
- server Statement Definition and
Usage
- statistics-channels Statement Grammar
-- statistics-channels Statement Definition and
+
- statistics-channels Statement Definition and
Usage
- trusted-keys Statement Grammar
-- trusted-keys Statement Definition
+
- trusted-keys Statement Definition
and Usage
-- managed-keys Statement Grammar
+- managed-keys Statement Grammar
- managed-keys Statement Definition
and Usage
- view Statement Grammar
-- view Statement Definition and Usage
+- view Statement Definition and Usage
- zone
Statement Grammar
-- zone Statement Definition and Usage
+- zone Statement Definition and Usage
-Zone File
+Zone File
- Types of Resource Records and When to Use Them
-- Discussion of MX Records
+- Discussion of MX Records
- Setting TTLs
-- Inverse Mapping in IPv4
-- Other Zone File Directives
-- BIND Master File Extension: the $GENERATE Directive
+- Inverse Mapping in IPv4
+- Other Zone File Directives
+- BIND Master File Extension: the $GENERATE Directive
- Additional File Formats
BIND9 Statistics
@@ -217,41 +217,41 @@
7. BIND 9 Security Considerations
8. Troubleshooting
A. Appendices
I. Manual pages
diff --git a/doc/arm/man.arpaname.html b/doc/arm/man.arpaname.html
index 02be5360ff..c341390800 100644
--- a/doc/arm/man.arpaname.html
+++ b/doc/arm/man.arpaname.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,20 +50,20 @@
arpaname {ipaddress ...}
-DESCRIPTION
+DESCRIPTION
arpaname translates IP addresses (IPv4 and
IPv6) to the corresponding IN-ADDR.ARPA or IP6.ARPA names.
diff --git a/doc/arm/man.ddns-confgen.html b/doc/arm/man.ddns-confgen.html
index 20c31b7dbc..35ad5a248b 100644
--- a/doc/arm/man.ddns-confgen.html
+++ b/doc/arm/man.ddns-confgen.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
ddns-confgen [-a algorithm] [-h] [-k keyname] [-r randomfile] [ -s name | -z zone ] [-q] [name]
-DESCRIPTION
+DESCRIPTION
ddns-confgen
generates a key for use by nsupdate
and named. It simplifies configuration
@@ -77,7 +77,7 @@
diff --git a/doc/arm/man.dig.html b/doc/arm/man.dig.html
index 66a362974e..e3b93f78f4 100644
--- a/doc/arm/man.dig.html
+++ b/doc/arm/man.dig.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -52,7 +52,7 @@
dig [global-queryopt...] [query...]
-DESCRIPTION
+DESCRIPTION
dig
(domain information groper) is a flexible tool
for interrogating DNS name servers. It performs DNS lookups and
@@ -98,7 +98,7 @@
-OPTIONS
+OPTIONS
The -b option sets the source IP address of the query
to address. This must be a valid
@@ -248,7 +248,7 @@
-QUERY OPTIONS
+QUERY OPTIONS
dig
provides a number of query options which affect
the way in which lookups are made and the results displayed. Some of
@@ -599,7 +599,7 @@
-MULTIPLE QUERIES
+MULTIPLE QUERIES
The BIND 9 implementation of dig
supports
@@ -645,7 +645,7 @@ dig +qr www.isc.org any -x 127.0.0.1 isc.org ns +noqr
-IDN SUPPORT
+IDN SUPPORT
If dig has been built with IDN (internationalized
domain name) support, it can accept and display non-ASCII domain names.
@@ -659,14 +659,14 @@ dig +qr www.isc.org any -x 127.0.0.1 isc.org ns +noqr
-SEE ALSO
+SEE ALSO
host(1),
named(8),
dnssec-keygen(8),
@@ -674,7 +674,7 @@ dig +qr www.isc.org any -x 127.0.0.1 isc.org ns +noqr
-BUGS
+BUGS
There are probably too many query options.
diff --git a/doc/arm/man.dnssec-dsfromkey.html b/doc/arm/man.dnssec-dsfromkey.html
index 6a89acb016..28e4ac6953 100644
--- a/doc/arm/man.dnssec-dsfromkey.html
+++ b/doc/arm/man.dnssec-dsfromkey.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -51,14 +51,14 @@
dnssec-dsfromkey {-s} [-1] [-2] [-a alg] [-K directory] [-l domain] [-s] [-c class] [-T TTL] [-f file] [-A] [-v level] {dnsname}
-DESCRIPTION
+DESCRIPTION
dnssec-dsfromkey
outputs the Delegation Signer (DS) resource record (RR), as defined in
RFC 3658 and RFC 4509, for the given key(s).
-FILES
+FILES
The keyfile can be designed by the key identification
Knnnn.+aaa+iiiii or the full file name
@@ -163,13 +163,13 @@
-SEE ALSO
+SEE ALSO
dnssec-keygen(8),
dnssec-signzone(8),
BIND 9 Administrator Reference Manual,
@@ -179,7 +179,7 @@
diff --git a/doc/arm/man.dnssec-keyfromlabel.html b/doc/arm/man.dnssec-keyfromlabel.html
index f62273570e..1a631c5ecd 100644
--- a/doc/arm/man.dnssec-keyfromlabel.html
+++ b/doc/arm/man.dnssec-keyfromlabel.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
dnssec-keyfromlabel {-l label} [-3] [-a algorithm] [-A date/offset] [-c class] [-D date/offset] [-E engine] [-f flag] [-G] [-I date/offset] [-k] [-K directory] [-L ttl] [-n nametype] [-P date/offset] [-p protocol] [-R date/offset] [-t type] [-v level] [-y] {name}
-DESCRIPTION
+DESCRIPTION
dnssec-keyfromlabel
gets keys with the given label from a crypto hardware and builds
key files for DNSSEC (Secure DNS), as defined in RFC 2535
@@ -63,7 +63,7 @@
-TIMING OPTIONS
+TIMING OPTIONS
Dates can be expressed in the format YYYYMMDD or YYYYMMDDHHMMSS.
If the argument begins with a '+' or '-', it is interpreted as
@@ -238,7 +238,7 @@
-GENERATED KEY FILES
+GENERATED KEY FILES
When dnssec-keyfromlabel completes
successfully,
@@ -277,7 +277,7 @@
-SEE ALSO
+SEE ALSO
dnssec-keygen(8),
dnssec-signzone(8),
BIND 9 Administrator Reference Manual,
@@ -285,7 +285,7 @@
diff --git a/doc/arm/man.dnssec-keygen.html b/doc/arm/man.dnssec-keygen.html
index 954c8099d2..f12ad738c8 100644
--- a/doc/arm/man.dnssec-keygen.html
+++ b/doc/arm/man.dnssec-keygen.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
dnssec-keygen [-a algorithm] [-b keysize] [-n nametype] [-3] [-A date/offset] [-C] [-c class] [-D date/offset] [-E engine] [-e] [-f flag] [-G] [-g generator] [-h] [-I date/offset] [-i interval] [-K directory] [-L ttl] [-k] [-P date/offset] [-p protocol] [-q] [-R date/offset] [-r randomdev] [-S key] [-s strength] [-t type] [-v level] [-z] {name}
-DESCRIPTION
+DESCRIPTION
dnssec-keygen
generates keys for DNSSEC (Secure DNS), as defined in RFC 2535
and RFC 4034. It can also generate keys for use with
@@ -64,7 +64,7 @@
-TIMING OPTIONS
+TIMING OPTIONS
Dates can be expressed in the format YYYYMMDD or YYYYMMDDHHMMSS.
If the argument begins with a '+' or '-', it is interpreted as
@@ -346,7 +346,7 @@
-EXAMPLE
+EXAMPLE
To generate a 768-bit DSA key for the domain
example.com, the following command would be
@@ -413,7 +413,7 @@
-SEE ALSO
+SEE ALSO
dnssec-signzone(8),
BIND 9 Administrator Reference Manual,
RFC 2539,
@@ -422,7 +422,7 @@
diff --git a/doc/arm/man.dnssec-revoke.html b/doc/arm/man.dnssec-revoke.html
index 605d77a478..ee20536519 100644
--- a/doc/arm/man.dnssec-revoke.html
+++ b/doc/arm/man.dnssec-revoke.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
dnssec-revoke [-hr] [-v level] [-K directory] [-E engine] [-f] [-R] {keyfile}
-DESCRIPTION
+DESCRIPTION
dnssec-revoke
reads a DNSSEC key file, sets the REVOKED bit on the key as defined
in RFC 5011, and creates a new pair of key files containing the
@@ -58,7 +58,7 @@
diff --git a/doc/arm/man.dnssec-settime.html b/doc/arm/man.dnssec-settime.html
index c4a18b3363..59180174c6 100644
--- a/doc/arm/man.dnssec-settime.html
+++ b/doc/arm/man.dnssec-settime.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
dnssec-settime [-f] [-K directory] [-L ttl] [-P date/offset] [-A date/offset] [-R date/offset] [-I date/offset] [-D date/offset] [-h] [-v level] [-E engine] {keyfile}
-DESCRIPTION
+DESCRIPTION
dnssec-settime
reads a DNSSEC private key file and sets the key timing metadata
as specified by the -P, -A,
@@ -76,7 +76,7 @@
-TIMING OPTIONS
+TIMING OPTIONS
Dates can be expressed in the format YYYYMMDD or YYYYMMDDHHMMSS.
If the argument begins with a '+' or '-', it is interpreted as
@@ -197,7 +197,7 @@
-PRINTING OPTIONS
+PRINTING OPTIONS
dnssec-settime can also be used to print the
timing metadata associated with a key.
@@ -223,7 +223,7 @@
-SEE ALSO
+SEE ALSO
dnssec-keygen(8),
dnssec-signzone(8),
BIND 9 Administrator Reference Manual,
@@ -231,7 +231,7 @@
diff --git a/doc/arm/man.dnssec-signzone.html b/doc/arm/man.dnssec-signzone.html
index 32e9545980..7589a5865f 100644
--- a/doc/arm/man.dnssec-signzone.html
+++ b/doc/arm/man.dnssec-signzone.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
dnssec-signzone [-a] [-c class] [-d directory] [-D] [-E engine] [-e end-time] [-f output-file] [-g] [-h] [-K directory] [-k key] [-L serial] [-l domain] [-i interval] [-I input-format] [-j jitter] [-N soa-serial-format] [-o origin] [-O output-format] [-P] [-p] [-R] [-r randomdev] [-S] [-s start-time] [-T ttl] [-t] [-u] [-v level] [-X extended end-time] [-x] [-z] [-3 salt] [-H iterations] [-A] {zonefile} [key...]
-DESCRIPTION
+DESCRIPTION
dnssec-signzone
signs a zone. It generates
NSEC and RRSIG records and produces a signed version of the
@@ -61,7 +61,7 @@
-EXAMPLE
+EXAMPLE
The following command signs the example.com
zone with the DSA key generated by dnssec-keygen
@@ -494,14 +494,14 @@ db.example.com.signed
%
diff --git a/doc/arm/man.genrandom.html b/doc/arm/man.genrandom.html
index 0aa8397b61..303564537f 100644
--- a/doc/arm/man.genrandom.html
+++ b/doc/arm/man.genrandom.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
genrandom [-n number] {size} {filename}
-DESCRIPTION
+DESCRIPTION
genrandom
generates a file or a set of files containing a specified quantity
@@ -59,7 +59,7 @@
diff --git a/doc/arm/man.host.html b/doc/arm/man.host.html
index 8c15499b61..3bedabf2a2 100644
--- a/doc/arm/man.host.html
+++ b/doc/arm/man.host.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
host [-aCdlnrsTwv] [-c class] [-N ndots] [-R number] [-t type] [-W wait] [-m flag] [-4] [-6] {name} [server]
-DESCRIPTION
+DESCRIPTION
host
is a simple utility for performing DNS lookups.
It is normally used to convert names to IP addresses and vice versa.
@@ -202,7 +202,7 @@
-IDN SUPPORT
+IDN SUPPORT
If host has been built with IDN (internationalized
domain name) support, it can accept and display non-ASCII domain names.
@@ -216,12 +216,12 @@
-SEE ALSO
+SEE ALSO
dig(1),
named(8).
diff --git a/doc/arm/man.isc-hmac-fixup.html b/doc/arm/man.isc-hmac-fixup.html
index 328918ad29..0a3382e38d 100644
--- a/doc/arm/man.isc-hmac-fixup.html
+++ b/doc/arm/man.isc-hmac-fixup.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
isc-hmac-fixup {algorithm} {secret}
-DESCRIPTION
+DESCRIPTION
Versions of BIND 9 up to and including BIND 9.6 had a bug causing
HMAC-SHA* TSIG keys which were longer than the digest length of the
@@ -76,7 +76,7 @@
-SECURITY CONSIDERATIONS
+SECURITY CONSIDERATIONS
Secrets that have been converted by isc-hmac-fixup
are shortened, but as this is how the HMAC protocol works in
@@ -87,14 +87,14 @@
diff --git a/doc/arm/man.named-checkconf.html b/doc/arm/man.named-checkconf.html
index a56d73c3a6..27fd101a38 100644
--- a/doc/arm/man.named-checkconf.html
+++ b/doc/arm/man.named-checkconf.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
named-checkconf [-h] [-v] [-j] [-t directory] {filename} [-p] [-z]
-DESCRIPTION
+DESCRIPTION
named-checkconf
checks the syntax, but not the semantics, of a
named configuration file. The file is parsed
@@ -70,7 +70,7 @@
-RETURN VALUES
+RETURN VALUES
named-checkconf
returns an exit status of 1 if
errors were detected and 0 otherwise.
diff --git a/doc/arm/man.named-checkzone.html b/doc/arm/man.named-checkzone.html
index ae97f0a6d3..4799c6f230 100644
--- a/doc/arm/man.named-checkzone.html
+++ b/doc/arm/man.named-checkzone.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -51,7 +51,7 @@
named-compilezone [-d] [-j] [-q] [-v] [-c class] [-C mode] [-f format] [-F format] [-i mode] [-k mode] [-m mode] [-n mode] [-L serial] [-r mode] [-s style] [-t directory] [-w directory] [-D] [-W mode] {-o filename} {zonename} {filename}
-DESCRIPTION
+DESCRIPTION
named-checkzone
checks the syntax and integrity of a zone file. It performs the
same checks as named does when loading a
@@ -71,7 +71,7 @@
-RETURN VALUES
+RETURN VALUES
named-checkzone
returns an exit status of 1 if
errors were detected and 0 otherwise.
diff --git a/doc/arm/man.named-journalprint.html b/doc/arm/man.named-journalprint.html
index d0d6fd6924..d4234a3dfd 100644
--- a/doc/arm/man.named-journalprint.html
+++ b/doc/arm/man.named-journalprint.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
named-journalprint {journal}
-DESCRIPTION
+DESCRIPTION
named-journalprint
prints the contents of a zone journal file in a human-readable
@@ -76,7 +76,7 @@
diff --git a/doc/arm/man.named.html b/doc/arm/man.named.html
index 9619876579..0790cb1e08 100644
--- a/doc/arm/man.named.html
+++ b/doc/arm/man.named.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
named [-4] [-6] [-c config-file] [-d debug-level] [-E engine-name] [-f] [-g] [-m flag] [-n #cpus] [-p port] [-s] [-S #max-socks] [-t directory] [-U #listeners] [-u user] [-v] [-V] [-x cache-file]
-DESCRIPTION
+DESCRIPTION
named
is a Domain Name System (DNS) server,
part of the BIND 9 distribution from ISC. For more
@@ -65,7 +65,7 @@
-SIGNALS
+SIGNALS
In routine operation, signals should not be used to control
the nameserver; rndc should be used
@@ -276,7 +276,7 @@
-CONFIGURATION
+CONFIGURATION
The named configuration file is too complex
to describe in detail here. A complete description is provided
@@ -293,7 +293,7 @@
diff --git a/doc/arm/man.nsec3hash.html b/doc/arm/man.nsec3hash.html
index e248ca306c..c6965252b0 100644
--- a/doc/arm/man.nsec3hash.html
+++ b/doc/arm/man.nsec3hash.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -48,7 +48,7 @@
nsec3hash {salt} {algorithm} {iterations} {domain}
-DESCRIPTION
+DESCRIPTION
nsec3hash generates an NSEC3 hash based on
a set of NSEC3 parameters. This can be used to check the validity
@@ -56,7 +56,7 @@
diff --git a/doc/arm/man.nsupdate.html b/doc/arm/man.nsupdate.html
index 257fb7dc59..22cfac81d2 100644
--- a/doc/arm/man.nsupdate.html
+++ b/doc/arm/man.nsupdate.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
nsupdate [-d] [-D] [[-g] | [-o] | [-l] | [-y [hmac:]keyname:secret] | [-k keyfile]] [-t timeout] [-u udptimeout] [-r udpretries] [-R randomdev] [-v] [filename]
-DESCRIPTION
+DESCRIPTION
nsupdate
is used to submit Dynamic DNS Update requests as defined in RFC 2136
to a name server.
@@ -210,7 +210,7 @@
-BUGS
+BUGS
The TSIG key is redundantly stored in two separate files.
This is a consequence of nsupdate using the DST library
diff --git a/doc/arm/man.rndc-confgen.html b/doc/arm/man.rndc-confgen.html
index 98ce84602c..2431aca0af 100644
--- a/doc/arm/man.rndc-confgen.html
+++ b/doc/arm/man.rndc-confgen.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
rndc-confgen [-a] [-b keysize] [-c keyfile] [-h] [-k keyname] [-p port] [-r randomfile] [-s address] [-t chrootdir] [-u user]
-DESCRIPTION
+DESCRIPTION
rndc-confgen
generates configuration files
for rndc. It can be used as a
@@ -66,7 +66,7 @@
diff --git a/doc/arm/man.rndc.conf.html b/doc/arm/man.rndc.conf.html
index 2927a6b385..07741a4bbd 100644
--- a/doc/arm/man.rndc.conf.html
+++ b/doc/arm/man.rndc.conf.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
rndc.conf
-DESCRIPTION
+DESCRIPTION
rndc.conf is the configuration file
for rndc, the BIND 9 name server control
utility. This file has a similar structure and syntax to
@@ -135,7 +135,7 @@
-NAME SERVER CONFIGURATION
+NAME SERVER CONFIGURATION
The name server must be configured to accept rndc connections and
to recognize the key specified in the rndc.conf
@@ -219,7 +219,7 @@
diff --git a/doc/arm/man.rndc.html b/doc/arm/man.rndc.html
index d292e92cd3..84db636055 100644
--- a/doc/arm/man.rndc.html
+++ b/doc/arm/man.rndc.html
@@ -14,7 +14,7 @@
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-->
-
+
@@ -50,7 +50,7 @@
rndc [-b source-address] [-c config-file] [-k key-file] [-s server] [-p port] [-V] [-y key_id] {command}
-DESCRIPTION
+DESCRIPTION
rndc
controls the operation of a name
server. It supersedes the ndc utility
@@ -79,7 +79,7 @@
-OPTIONS
+OPTIONS
- -b
source-address
@@ -151,7 +151,7 @@
-LIMITATIONS
+LIMITATIONS
rndc
does not yet support all the commands of
the BIND 8 ndc utility.
@@ -165,7 +165,7 @@
diff --git a/doc/doxygen/.cvsignore b/doc/doxygen/.cvsignore
deleted file mode 100644
index 1d4c377b30..0000000000
--- a/doc/doxygen/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Doxyfile
-Makefile
-doxygen-input-filter
-html
-xml
diff --git a/doc/misc/.cvsignore b/doc/misc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/doc/misc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/doc/private/SRCID b/doc/private/SRCID
index 5b141cac74..5c5f10661b 100644
--- a/doc/private/SRCID
+++ b/doc/private/SRCID
@@ -1,6 +1,6 @@
-# $Id: SRCID,v 1.1162.2.37 2012/03/01 00:16:29 tbox Exp $
+# $Id: SRCID,v 1.1207 2012/03/01 00:16:54 tbox Exp $
#
# This file must follow /bin/sh rules. It is imported directly via
# configure.
#
-SRCID="( $Date: 2012/03/01 00:16:29 $ )"
+SRCID="( $Date: 2012/03/01 00:16:54 $ )"
diff --git a/doc/private/branches b/doc/private/branches
index 6dd49b2ba1..1c1ff86ff6 100644
--- a/doc/private/branches
+++ b/doc/private/branches
@@ -418,6 +418,7 @@ rt25333 new each // 2011-08-02 20:37 +0000
rt25358 new each // 2011-08-09 02:41 +0000
rt25419 new each // 2011-09-14 19:56 +0000
rt25419a new ckb // 2011-12-14 21:32 +0000
+rt25419b new each // 2012-02-07 00:12 +0000
rt25452 new each // 2011-09-06 17:14 +0000
rt25541_v96 new each // 2011-08-19 00:13 +0000
rt25541_v97 new each // 2011-08-18 23:51 +0000
@@ -441,6 +442,8 @@ rt26632 new marka // 2011-11-30 05:18 +0000
rt26676 new each // 2011-12-08 19:52 +0000
rt26676alt new marka // 2011-12-21 06:32 +0000
rt26677 new marka // 2011-11-29 23:26 +0000
+rt26786 new each // 2012-02-16 16:17 +0000
+rt26786_v97 new each // 2012-02-21 22:17 +0000
rt26805 new marka // 2012-01-23 04:28 +0000
rt26830 new marka // 2011-11-30 22:58 +0000
rt26845 new marka // 2011-12-08 09:35 +0000
@@ -460,6 +463,7 @@ rt27057_custom_ATT_v9_8_1 new smann // 2012-01-05 15:51 +0000
rt27057a_custom_ATT_v9_8_1 new smann // 2012-01-11 16:28 +0000
rt27087 new marka // 2011-12-18 21:43 +0000
rt27139 new marka // 2011-12-21 05:08 +0000
+rt27173 new smann // 2012-02-03 19:47 +0000
rt27185 new marka // 2011-12-24 00:24 +0000
rt27292 new each // 2012-01-04 22:43 +0000
rt27308 new each // 2012-01-07 01:19 +0000
@@ -467,6 +471,25 @@ rt27336 new marka // 2012-01-25 02:57 +0000
rt27344 new each // 2012-01-09 23:58 +0000
rt27497 new marka // 2012-01-17 05:38 +0000
rt27557 new marka // 2012-01-24 00:01 +0000
+rt27596 new marka // 2012-02-14 05:02 +0000
+rt27650 new each // 2012-01-30 20:46 +0000
+rt27650_v9_8 new marka // 2012-01-31 04:42 +0000
+rt27653 new marka // 2012-01-30 06:10 +0000
+rt27678 new each // 2012-01-31 16:38 +0000
+rt27693 new marka // 2012-02-01 09:31 +0000
+rt27696 new marka // 2012-02-06 03:57 +0000
+rt27696a new fdupont // 2012-02-07 15:22 +0000
+rt27696a_base new fdupont // 2012-02-07 15:37 +0000
+rt27738 new each // 2012-02-07 18:13 +0000
+rt27782 new marka // 2012-02-07 05:00 +0000
+rt27792 new marka // 2012-02-08 02:19 +0000
+rt27863 new marka // 2012-02-12 22:54 +0000
+rt27884 new marka // 2012-02-13 03:42 +0000
+rt27925 new marka // 2012-02-15 03:53 +0000
+rt28028 new marka // 2012-02-21 06:43 +0000
+rt28036 new marka // 2012-02-22 20:31 +0000
+rt28039 new marka // 2012-02-27 05:38 +0000
+rt28040 new marka // 2012-02-22 04:52 +0000
shane_dbbackend open
skan open explorer
skan-metazones1 private explorer
@@ -545,6 +568,7 @@ v9_8 new marka // 2011-01-30 00:18 +0000
v9_8_0_patch new each // 2011-04-27 15:35 +0000
v9_8_1_forensics new marka // 2011-11-16 23:52 +0000
v9_8_1_patch new marka // 2011-11-16 09:05 +0000
+v9_9 new each // 2012-01-30 01:28 +0000
win64 new marka // 2010-11-04 00:17 +0000
win64sizet new marka // 2010-11-08 05:04 +0000
diff --git a/doc/xsl/.cvsignore b/doc/xsl/.cvsignore
deleted file mode 100644
index 6168a7e25b..0000000000
--- a/doc/xsl/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-isc-docbook-chunk.xsl
-isc-docbook-html.xsl
-isc-docbook-latex.xsl
-isc-manpage.xsl
diff --git a/docutil/.cvsignore b/docutil/.cvsignore
deleted file mode 100644
index 55711bde03..0000000000
--- a/docutil/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-docbook2man-wrapper.sh
diff --git a/lib/.cvsignore b/lib/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/bind9/.cvsignore b/lib/bind9/.cvsignore
deleted file mode 100644
index b3b8e7617f..0000000000
--- a/lib/bind9/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-.libs
-*.la
-*.lo
diff --git a/lib/bind9/include/.cvsignore b/lib/bind9/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/bind9/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/bind9/include/bind9/.cvsignore b/lib/bind9/include/bind9/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/bind9/include/bind9/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/dns/.cvsignore b/lib/dns/.cvsignore
deleted file mode 100644
index b204723d93..0000000000
--- a/lib/dns/.cvsignore
+++ /dev/null
@@ -1,7 +0,0 @@
-Makefile
-timestamp
-code.h
-gen
-.libs
-*.la
-*.lo
diff --git a/lib/dns/api b/lib/dns/api
index 2c1bf668b7..332a0c5447 100644
--- a/lib/dns/api
+++ b/lib/dns/api
@@ -3,6 +3,6 @@
# 9.7: 60-79
# 9.8: 80-89
# 9.9: 90-109
-LIBINTERFACE = 94
+LIBINTERFACE = 93
LIBREVISION = 0
-LIBAGE = 1
+LIBAGE = 0
diff --git a/lib/dns/include/.cvsignore b/lib/dns/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/dns/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/dns/include/dns/.cvsignore b/lib/dns/include/dns/.cvsignore
deleted file mode 100644
index 5aa676e52e..0000000000
--- a/lib/dns/include/dns/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-enumtype.h
-enumclass.h
-rdatastruct.h
diff --git a/lib/dns/include/dns/master.h b/lib/dns/include/dns/master.h
index 4cf34c4008..e76b055263 100644
--- a/lib/dns/include/dns/master.h
+++ b/lib/dns/include/dns/master.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004-2009, 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: master.h,v 1.55 2011/12/09 23:47:05 tbox Exp $ */
+/* $Id: master.h,v 1.57 2012/01/31 23:47:33 tbox Exp $ */
#ifndef DNS_MASTER_H
#define DNS_MASTER_H 1
@@ -103,6 +103,13 @@ typedef struct {
/* followed by encoded owner name, and then rdata */
} dns_masterrawrdataset_t;
+/*
+ * Method prototype: a callback to register each include file as
+ * it is encountered.
+ */
+typedef void
+(*dns_masterincludecb_t)(const char *file, void *arg);
+
/***
*** Function
***/
@@ -137,6 +144,18 @@ dns_master_loadfile3(const char *master_file,
isc_mem_t *mctx,
dns_masterformat_t format);
+isc_result_t
+dns_master_loadfile4(const char *master_file,
+ dns_name_t *top,
+ dns_name_t *origin,
+ dns_rdataclass_t zclass,
+ unsigned int options,
+ isc_uint32_t resign,
+ dns_rdatacallbacks_t *callbacks,
+ dns_masterincludecb_t include_cb,
+ void *include_arg, isc_mem_t *mctx,
+ dns_masterformat_t format);
+
isc_result_t
dns_master_loadstream(FILE *stream,
dns_name_t *top,
@@ -200,6 +219,20 @@ dns_master_loadfileinc3(const char *master_file,
dns_loadctx_t **ctxp, isc_mem_t *mctx,
dns_masterformat_t format);
+isc_result_t
+dns_master_loadfileinc4(const char *master_file,
+ dns_name_t *top,
+ dns_name_t *origin,
+ dns_rdataclass_t zclass,
+ unsigned int options,
+ isc_uint32_t resign,
+ dns_rdatacallbacks_t *callbacks,
+ isc_task_t *task,
+ dns_loaddonefunc_t done, void *done_arg,
+ dns_loadctx_t **ctxp,
+ dns_masterincludecb_t include_cb, void *include_arg,
+ isc_mem_t *mctx, dns_masterformat_t format);
+
isc_result_t
dns_master_loadstreaminc(FILE *stream,
dns_name_t *top,
diff --git a/lib/dns/include/dns/zone.h b/lib/dns/include/dns/zone.h
index cd481d8c36..99439dc6bd 100644
--- a/lib/dns/include/dns/zone.h
+++ b/lib/dns/include/dns/zone.h
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zone.h,v 1.201.2.1 2012/02/22 00:35:53 each Exp $ */
+/* $Id: zone.h,v 1.204 2012/02/22 00:37:54 each Exp $ */
#ifndef DNS_ZONE_H
#define DNS_ZONE_H 1
@@ -2045,6 +2045,41 @@ dns_zone_synckeyzone(dns_zone_t *zone);
* maintenance timer.
*/
+isc_result_t
+dns_zone_getloadtime(dns_zone_t *zone, isc_time_t *loadtime);
+/*%
+ * Return the time when the zone was last loaded.
+ */
+
+isc_result_t
+dns_zone_getrefreshtime(dns_zone_t *zone, isc_time_t *refreshtime);
+/*%
+ * Return the time when the (slave) zone will need to be refreshed.
+ */
+
+isc_result_t
+dns_zone_getexpiretime(dns_zone_t *zone, isc_time_t *expiretime);
+/*%
+ * Return the time when the (slave) zone will expire.
+ */
+
+isc_result_t
+dns_zone_getrefreshkeytime(dns_zone_t *zone, isc_time_t *refreshkeytime);
+/*%
+ * Return the time of the next scheduled DNSSEC key event.
+ */
+
+unsigned int
+dns_zone_getincludes(dns_zone_t *zone, char ***includesp);
+/*%
+ * Return the number include files that were encountered
+ * during load. If the number is greater than zero, 'includesp'
+ * will point to an array containing the filenames.
+ *
+ * The array and its contents need to be freed using isc_mem_free.
+ */
+
ISC_LANG_ENDDECLS
+
#endif /* DNS_ZONE_H */
diff --git a/lib/dns/include/dst/.cvsignore b/lib/dns/include/dst/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/dns/include/dst/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/dns/master.c b/lib/dns/master.c
index 6ac1c61d95..0bf22f0430 100644
--- a/lib/dns/master.c
+++ b/lib/dns/master.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: master.c,v 1.181.36.2 2012/02/14 23:46:49 tbox Exp $ */
+/* $Id: master.c,v 1.184 2012/02/13 23:46:24 marka Exp $ */
/*! \file */
@@ -145,6 +145,9 @@ struct dns_loadctx {
isc_uint32_t references;
dns_incctx_t *inc;
isc_uint32_t resign;
+
+ dns_masterincludecb_t include_cb;
+ void *include_arg;
};
struct dns_incctx {
@@ -512,8 +515,9 @@ loadctx_create(dns_masterformat_t format, isc_mem_t *mctx,
unsigned int options, isc_uint32_t resign, dns_name_t *top,
dns_rdataclass_t zclass, dns_name_t *origin,
dns_rdatacallbacks_t *callbacks, isc_task_t *task,
- dns_loaddonefunc_t done, void *done_arg, isc_lex_t *lex,
- dns_loadctx_t **lctxp)
+ dns_loaddonefunc_t done, void *done_arg,
+ dns_masterincludecb_t include_cb, void *include_arg,
+ isc_lex_t *lex, dns_loadctx_t **lctxp)
{
dns_loadctx_t *lctx;
isc_result_t result;
@@ -588,6 +592,8 @@ loadctx_create(dns_masterformat_t format, isc_mem_t *mctx,
lctx->zclass = zclass;
lctx->resign = resign;
lctx->result = ISC_R_SUCCESS;
+ lctx->include_cb = include_cb;
+ lctx->include_arg = include_arg;
dns_fixedname_init(&lctx->fixed_top);
lctx->top = dns_fixedname_name(&lctx->fixed_top);
@@ -2044,6 +2050,9 @@ pushfile(const char *master_file, dns_name_t *origin, dns_loadctx_t *lctx) {
goto cleanup;
new->parent = ictx;
lctx->inc = new;
+
+ if (lctx->include_cb != NULL)
+ lctx->include_cb(master_file, lctx->include_arg);
return (ISC_R_SUCCESS);
cleanup:
@@ -2401,8 +2410,9 @@ dns_master_loadfile(const char *master_file, dns_name_t *top,
dns_rdataclass_t zclass, unsigned int options,
dns_rdatacallbacks_t *callbacks, isc_mem_t *mctx)
{
- return (dns_master_loadfile3(master_file, top, origin, zclass, options,
- 0, callbacks, mctx, dns_masterformat_text));
+ return (dns_master_loadfile4(master_file, top, origin, zclass, options,
+ 0, callbacks, NULL, NULL, mctx,
+ dns_masterformat_text));
}
isc_result_t
@@ -2412,8 +2422,8 @@ dns_master_loadfile2(const char *master_file, dns_name_t *top,
dns_rdatacallbacks_t *callbacks, isc_mem_t *mctx,
dns_masterformat_t format)
{
- return (dns_master_loadfile3(master_file, top, origin, zclass, options,
- 0, callbacks, mctx, format));
+ return (dns_master_loadfile4(master_file, top, origin, zclass, options,
+ 0, callbacks, NULL, NULL, mctx, format));
}
isc_result_t
@@ -2422,13 +2432,26 @@ dns_master_loadfile3(const char *master_file, dns_name_t *top,
unsigned int options, isc_uint32_t resign,
dns_rdatacallbacks_t *callbacks, isc_mem_t *mctx,
dns_masterformat_t format)
+{
+ return (dns_master_loadfile4(master_file, top, origin, zclass, options,
+ resign, callbacks, NULL, NULL, mctx,
+ format));
+}
+
+isc_result_t
+dns_master_loadfile4(const char *master_file, dns_name_t *top,
+ dns_name_t *origin, dns_rdataclass_t zclass,
+ unsigned int options, isc_uint32_t resign,
+ dns_rdatacallbacks_t *callbacks,
+ dns_masterincludecb_t include_cb, void *include_arg,
+ isc_mem_t *mctx, dns_masterformat_t format)
{
dns_loadctx_t *lctx = NULL;
isc_result_t result;
result = loadctx_create(format, mctx, options, resign, top, zclass,
- origin, callbacks, NULL, NULL, NULL, NULL,
- &lctx);
+ origin, callbacks, NULL, NULL, NULL,
+ include_cb, include_arg, NULL, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
@@ -2451,9 +2474,9 @@ dns_master_loadfileinc(const char *master_file, dns_name_t *top,
isc_task_t *task, dns_loaddonefunc_t done,
void *done_arg, dns_loadctx_t **lctxp, isc_mem_t *mctx)
{
- return (dns_master_loadfileinc3(master_file, top, origin, zclass,
+ return (dns_master_loadfileinc4(master_file, top, origin, zclass,
options, 0, callbacks, task, done,
- done_arg, lctxp, mctx,
+ done_arg, lctxp, NULL, NULL, mctx,
dns_masterformat_text));
}
@@ -2465,9 +2488,10 @@ dns_master_loadfileinc2(const char *master_file, dns_name_t *top,
void *done_arg, dns_loadctx_t **lctxp, isc_mem_t *mctx,
dns_masterformat_t format)
{
- return (dns_master_loadfileinc3(master_file, top, origin, zclass,
+ return (dns_master_loadfileinc4(master_file, top, origin, zclass,
options, 0, callbacks, task, done,
- done_arg, lctxp, mctx, format));
+ done_arg, lctxp, NULL, NULL, mctx,
+ format));
}
isc_result_t
@@ -2478,6 +2502,22 @@ dns_master_loadfileinc3(const char *master_file, dns_name_t *top,
dns_loaddonefunc_t done, void *done_arg,
dns_loadctx_t **lctxp, isc_mem_t *mctx,
dns_masterformat_t format)
+{
+ return (dns_master_loadfileinc4(master_file, top, origin, zclass,
+ options, resign, callbacks, task,
+ done, done_arg, lctxp, NULL, NULL,
+ mctx, format));
+}
+
+isc_result_t
+dns_master_loadfileinc4(const char *master_file, dns_name_t *top,
+ dns_name_t *origin, dns_rdataclass_t zclass,
+ unsigned int options, isc_uint32_t resign,
+ dns_rdatacallbacks_t *callbacks,
+ isc_task_t *task, dns_loaddonefunc_t done,
+ void *done_arg, dns_loadctx_t **lctxp,
+ dns_masterincludecb_t include_cb, void *include_arg,
+ isc_mem_t *mctx, dns_masterformat_t format)
{
dns_loadctx_t *lctx = NULL;
isc_result_t result;
@@ -2486,8 +2526,8 @@ dns_master_loadfileinc3(const char *master_file, dns_name_t *top,
REQUIRE(done != NULL);
result = loadctx_create(format, mctx, options, resign, top, zclass,
- origin, callbacks, task, done, done_arg, NULL,
- &lctx);
+ origin, callbacks, task, done, done_arg,
+ include_cb, include_arg, NULL, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
@@ -2518,7 +2558,7 @@ dns_master_loadstream(FILE *stream, dns_name_t *top, dns_name_t *origin,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, NULL, NULL, NULL,
- NULL, &lctx);
+ NULL, NULL, NULL, &lctx);
if (result != ISC_R_SUCCESS)
goto cleanup;
@@ -2551,7 +2591,7 @@ dns_master_loadstreaminc(FILE *stream, dns_name_t *top, dns_name_t *origin,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, task, done,
- done_arg, NULL, &lctx);
+ done_arg, NULL, NULL, NULL, &lctx);
if (result != ISC_R_SUCCESS)
goto cleanup;
@@ -2584,7 +2624,7 @@ dns_master_loadbuffer(isc_buffer_t *buffer, dns_name_t *top,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, NULL, NULL, NULL,
- NULL, &lctx);
+ NULL, NULL, NULL, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
@@ -2617,7 +2657,7 @@ dns_master_loadbufferinc(isc_buffer_t *buffer, dns_name_t *top,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, task, done,
- done_arg, NULL, &lctx);
+ done_arg, NULL, NULL, NULL, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
@@ -2649,7 +2689,7 @@ dns_master_loadlexer(isc_lex_t *lex, dns_name_t *top,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, NULL, NULL, NULL,
- lex, &lctx);
+ NULL, NULL, lex, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
@@ -2677,7 +2717,7 @@ dns_master_loadlexerinc(isc_lex_t *lex, dns_name_t *top,
result = loadctx_create(dns_masterformat_text, mctx, options, 0, top,
zclass, origin, callbacks, task, done,
- done_arg, lex, &lctx);
+ done_arg, NULL, NULL, lex, &lctx);
if (result != ISC_R_SUCCESS)
return (result);
diff --git a/lib/dns/rbtdb.c b/lib/dns/rbtdb.c
index 8852de9cd9..a6422f219f 100644
--- a/lib/dns/rbtdb.c
+++ b/lib/dns/rbtdb.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: rbtdb.c,v 1.326.16.4 2012/02/15 12:29:39 marka Exp $ */
+/* $Id: rbtdb.c,v 1.330 2012/02/17 00:18:18 marka Exp $ */
/*! \file */
diff --git a/lib/dns/request.c b/lib/dns/request.c
index f09b48977e..f5a62a7619 100644
--- a/lib/dns/request.c
+++ b/lib/dns/request.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: request.c,v 1.89.250.2 2012/02/07 23:46:57 tbox Exp $ */
+/* $Id: request.c,v 1.91 2012/02/07 23:47:24 tbox Exp $ */
/*! \file */
diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
index 4bd3606615..cf647f9ca8 100644
--- a/lib/dns/resolver.c
+++ b/lib/dns/resolver.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: resolver.c,v 1.446.38.2 2012/02/14 23:46:49 tbox Exp $ */
+/* $Id: resolver.c,v 1.448 2012/02/14 23:47:15 tbox Exp $ */
/*! \file */
diff --git a/lib/dns/tests/.cvsignore b/lib/dns/tests/.cvsignore
deleted file mode 100644
index 6abab36d4a..0000000000
--- a/lib/dns/tests/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-atf.out
-*_test
diff --git a/lib/dns/tests/master_test.c b/lib/dns/tests/master_test.c
index 82d2efd481..22ca62e007 100644
--- a/lib/dns/tests/master_test.c
+++ b/lib/dns/tests/master_test.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2012 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
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: master_test.c,v 1.7 2011/12/08 16:07:22 each Exp $ */
+/* $Id: master_test.c,v 1.10 2012/02/01 00:20:09 marka Exp $ */
/*! \file */
@@ -47,6 +47,12 @@
static dns_masterrawheader_t header;
static isc_boolean_t headerset;
+dns_name_t dns_origin;
+char origin[sizeof(TEST_ORIGIN)];
+unsigned char name_buf[BUFLEN];
+dns_rdatacallbacks_t callbacks;
+char *include_file = NULL;
+
static isc_result_t
add_callback(void *arg, dns_name_t *owner, dns_rdataset_t *dataset);
@@ -74,16 +80,12 @@ rawdata_callback(dns_zone_t *zone, dns_masterrawheader_t *h) {
headerset = ISC_TRUE;
}
-static int
-test_master(const char *testfile, dns_masterformat_t format) {
+static isc_result_t
+setup_master() {
isc_result_t result;
int len;
- char origin[sizeof(TEST_ORIGIN)];
- dns_name_t dns_origin;
isc_buffer_t source;
isc_buffer_t target;
- unsigned char name_buf[BUFLEN];
- dns_rdatacallbacks_t callbacks;
strcpy(origin, TEST_ORIGIN);
len = strlen(origin);
@@ -103,6 +105,13 @@ test_master(const char *testfile, dns_masterformat_t format) {
callbacks.add = add_callback;
callbacks.rawdata = rawdata_callback;
callbacks.zone = NULL;
+
+ return (result);
+}
+
+static isc_result_t
+test_master(const char *testfile, dns_masterformat_t format) {
+ isc_result_t result;
headerset = ISC_FALSE;
result = dns_master_loadfile2(testfile, &dns_origin, &dns_origin,
dns_rdataclass_in, ISC_TRUE,
@@ -110,6 +119,12 @@ test_master(const char *testfile, dns_masterformat_t format) {
return (result);
}
+static void
+include_callback(const char *filename, void *arg) {
+ char **argp = (char **) arg;
+ *argp = isc_mem_strdup(mctx, filename);
+}
+
/*
* Individual unit tests
*/
@@ -128,6 +143,7 @@ ATF_TC_BODY(load, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master1.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -151,6 +167,7 @@ ATF_TC_BODY(unexpected, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master2.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_UNEXPECTEDEND);
@@ -174,6 +191,7 @@ ATF_TC_BODY(noowner, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master3.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, DNS_R_NOOWNER);
@@ -198,6 +216,7 @@ ATF_TC_BODY(nottl, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master4.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -221,6 +240,7 @@ ATF_TC_BODY(badclass, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master5.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, DNS_R_BADCLASS);
@@ -242,6 +262,7 @@ ATF_TC_BODY(dnskey, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master6.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -264,6 +285,7 @@ ATF_TC_BODY(dnsnokey, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master7.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -285,6 +307,7 @@ ATF_TC_BODY(include, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master8.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, DNS_R_SEENINCLUDE);
@@ -292,6 +315,37 @@ ATF_TC_BODY(include, tc) {
dns_test_end();
}
+/* Include file list test */
+ATF_TC(master_includelist);
+ATF_TC_HEAD(master_includelist, tc) {
+ atf_tc_set_md_var(tc, "descr", "dns_master_loadfile4() returns "
+ "names of included file");
+}
+ATF_TC_BODY(master_includelist, tc) {
+ isc_result_t result;
+ char *filename = NULL;
+
+ UNUSED(tc);
+
+ result = dns_test_begin(NULL, ISC_FALSE);
+ ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+
+ setup_master();
+ result = dns_master_loadfile4("testdata/master/master8.data",
+ &dns_origin, &dns_origin,
+ dns_rdataclass_in, 0, ISC_TRUE,
+ &callbacks, include_callback,
+ &filename, mctx, dns_masterformat_text);
+ ATF_CHECK_EQ(result, DNS_R_SEENINCLUDE);
+ ATF_CHECK(filename != NULL);
+ if (filename != NULL) {
+ ATF_CHECK_STREQ(filename, "testdata/master/master7.data");
+ isc_mem_free(mctx, filename);
+ }
+
+ dns_test_end();
+}
+
/* Include failure test */
ATF_TC(includefail);
ATF_TC_HEAD(includefail, tc) {
@@ -306,6 +360,7 @@ ATF_TC_BODY(includefail, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master9.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, DNS_R_BADCLASS);
@@ -328,6 +383,7 @@ ATF_TC_BODY(blanklines, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master10.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -349,6 +405,7 @@ ATF_TC_BODY(leadingzero, tc) {
result = dns_test_begin(NULL, ISC_FALSE);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("testdata/master/master11.data",
dns_masterformat_text);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
@@ -415,6 +472,7 @@ ATF_TC_BODY(loadraw, tc) {
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
/* Raw format version 0 */
+ setup_master();
result = test_master("testdata/master/master12.data",
dns_masterformat_raw);
ATF_CHECK_STREQ(isc_result_totext(result), "success");
@@ -422,6 +480,7 @@ ATF_TC_BODY(loadraw, tc) {
ATF_CHECK_EQ(header.flags, 0);
/* Raw format version 1, no source serial */
+ setup_master();
result = test_master("testdata/master/master13.data",
dns_masterformat_raw);
ATF_CHECK_STREQ(isc_result_totext(result), "success");
@@ -429,6 +488,7 @@ ATF_TC_BODY(loadraw, tc) {
ATF_CHECK_EQ(header.flags, 0);
/* Raw format version 1, source serial == 2011120101 */
+ setup_master();
result = test_master("testdata/master/master14.data",
dns_masterformat_raw);
ATF_CHECK_STREQ(isc_result_totext(result), "success");
@@ -485,6 +545,7 @@ ATF_TC_BODY(dumpraw, tc) {
dns_masterformat_raw);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("test.dump", dns_masterformat_raw);
ATF_CHECK_STREQ(isc_result_totext(result), "success");
ATF_CHECK(headerset);
@@ -500,6 +561,7 @@ ATF_TC_BODY(dumpraw, tc) {
dns_masterformat_raw, &header);
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
+ setup_master();
result = test_master("test.dump", dns_masterformat_raw);
ATF_CHECK_STREQ(isc_result_totext(result), "success");
ATF_CHECK(headerset);
@@ -524,6 +586,7 @@ ATF_TP_ADD_TCS(tp) {
ATF_TP_ADD_TC(tp, dnskey);
ATF_TP_ADD_TC(tp, dnsnokey);
ATF_TP_ADD_TC(tp, include);
+ ATF_TP_ADD_TC(tp, master_includelist);
ATF_TP_ADD_TC(tp, includefail);
ATF_TP_ADD_TC(tp, blanklines);
ATF_TP_ADD_TC(tp, leadingzero);
diff --git a/lib/dns/tests/testdata/master/.cvsignore b/lib/dns/tests/testdata/master/.cvsignore
deleted file mode 100644
index 384d54f7a2..0000000000
--- a/lib/dns/tests/testdata/master/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-master12.data
-master13.data
-master14.data
diff --git a/lib/dns/validator.c b/lib/dns/validator.c
index 6655a53403..16557b80ab 100644
--- a/lib/dns/validator.c
+++ b/lib/dns/validator.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: validator.c,v 1.208.72.2 2012/02/15 23:46:20 tbox Exp $ */
+/* $Id: validator.c,v 1.210 2012/02/15 21:19:59 tbox Exp $ */
#include
diff --git a/lib/dns/zone.c b/lib/dns/zone.c
index ef47a2053d..efa188af4f 100644
--- a/lib/dns/zone.c
+++ b/lib/dns/zone.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zone.c,v 1.667.2.7 2012/02/29 21:31:06 each Exp $ */
+/* $Id: zone.c,v 1.675 2012/02/23 07:09:29 tbox Exp $ */
/*! \file */
@@ -150,6 +150,7 @@ typedef struct dns_nsec3chain dns_nsec3chain_t;
typedef ISC_LIST(dns_nsec3chain_t) dns_nsec3chainlist_t;
typedef struct dns_keyfetch dns_keyfetch_t;
typedef struct dns_asyncload dns_asyncload_t;
+typedef struct dns_include dns_include_t;
#define DNS_ZONE_CHECKLOCK
#ifdef DNS_ZONE_CHECKLOCK
@@ -203,6 +204,8 @@ struct dns_zone {
unsigned int irefs;
dns_name_t origin;
char *masterfile;
+ ISC_LIST(dns_include_t) includes; /* Include files */
+ unsigned int nincludes;
dns_masterformat_t masterformat;
char *journal;
isc_int32_t journalsize;
@@ -617,6 +620,14 @@ struct dns_asyncload {
void *loaded_arg;
};
+/*%
+ * Reference to an include file encountered during loading
+ */
+struct dns_include {
+ char *name;
+ ISC_LINK(dns_include_t) link;
+};
+
#define HOUR 3600
#define DAY (24*HOUR)
#define MONTH (30*DAY)
@@ -805,6 +816,8 @@ dns_zone_create(dns_zone_t **zonep, isc_mem_t *mctx) {
zone->strrdclass = NULL;
zone->strviewname = NULL;
zone->masterfile = NULL;
+ ISC_LIST_INIT(zone->includes);
+ zone->nincludes = 0;
zone->masterformat = dns_masterformat_none;
zone->keydirectory = NULL;
zone->journalsize = -1;
@@ -942,6 +955,7 @@ zone_free(dns_zone_t *zone) {
isc_mem_t *mctx = NULL;
dns_signing_t *signing;
dns_nsec3chain_t *nsec3chain;
+ dns_include_t *include;
REQUIRE(DNS_ZONE_VALID(zone));
REQUIRE(isc_refcount_current(&zone->erefs) == 0);
@@ -982,6 +996,13 @@ zone_free(dns_zone_t *zone) {
dns_dbiterator_destroy(&nsec3chain->dbiterator);
isc_mem_put(zone->mctx, nsec3chain, sizeof *nsec3chain);
}
+ for (include = ISC_LIST_HEAD(zone->includes);
+ include != NULL;
+ include = ISC_LIST_HEAD(zone->includes)) {
+ ISC_LIST_UNLINK(zone->includes, include, link);
+ isc_mem_free(zone->mctx, include->name);
+ isc_mem_put(zone->mctx, include, sizeof *include);
+ }
if (zone->masterfile != NULL)
isc_mem_free(zone->mctx, zone->masterfile);
zone->masterfile = NULL;
@@ -1813,6 +1834,30 @@ get_master_options(dns_zone_t *zone) {
return (options);
}
+static void
+zone_registerinclude(const char *filename, void *arg) {
+ dns_zone_t *zone = (dns_zone_t *) arg;
+ dns_include_t *inc = NULL;
+
+ REQUIRE(DNS_ZONE_VALID(zone));
+
+ if (filename == NULL)
+ return;
+
+ inc = isc_mem_get(zone->mctx, sizeof(dns_include_t));
+ if (inc == NULL)
+ return;
+ inc->name = isc_mem_strdup(zone->mctx, filename);
+ if (inc->name == NULL) {
+ isc_mem_put(zone->mctx, inc, sizeof(dns_include_t));
+ return;
+ }
+ ISC_LINK_INIT(inc, link);
+
+ ISC_LIST_APPEND(zone->includes, inc, link);
+ zone->nincludes++;
+}
+
static void
zone_gotreadhandle(isc_task_t *task, isc_event_t *event) {
dns_load_t *load = event->ev_arg;
@@ -1829,14 +1874,16 @@ zone_gotreadhandle(isc_task_t *task, isc_event_t *event) {
options = get_master_options(load->zone);
- result = dns_master_loadfileinc3(load->zone->masterfile,
+ result = dns_master_loadfileinc4(load->zone->masterfile,
dns_db_origin(load->db),
dns_db_origin(load->db),
load->zone->rdclass, options,
load->zone->sigresigninginterval,
&load->callbacks, task,
zone_loaddone, load,
- &load->zone->lctx, load->zone->mctx,
+ &load->zone->lctx,
+ zone_registerinclude,
+ load->zone, load->zone->mctx,
load->zone->masterformat);
if (result != ISC_R_SUCCESS && result != DNS_R_CONTINUE &&
result != DNS_R_SEENINCLUDE)
@@ -1986,11 +2033,13 @@ zone_startload(dns_db_t *db, dns_zone_t *zone, isc_time_t loadtime) {
zone_idetach(&callbacks.zone);
return (result);
}
- result = dns_master_loadfile3(zone->masterfile,
+ result = dns_master_loadfile4(zone->masterfile,
&zone->origin, &zone->origin,
zone->rdclass, options,
zone->sigresigninginterval,
- &callbacks, zone->mctx,
+ &callbacks,
+ zone_registerinclude,
+ zone, zone->mctx,
zone->masterformat);
tresult = dns_db_endload(db, &callbacks.add_private);
if (result == ISC_R_SUCCESS)
@@ -15735,6 +15784,7 @@ dns_zone_nscheck(dns_zone_t *zone, dns_db_t *db, dns_dbversion_t *version,
void
dns_zone_setadded(dns_zone_t *zone, isc_boolean_t added) {
REQUIRE(DNS_ZONE_VALID(zone));
+
LOCK_ZONE(zone);
zone->added = added;
UNLOCK_ZONE(zone);
@@ -16302,3 +16352,77 @@ dns_zone_setnsec3param(dns_zone_t *zone, isc_uint8_t hash, isc_uint8_t flags,
UNLOCK_ZONE(zone);
return (result);
}
+
+isc_result_t
+dns_zone_getloadtime(dns_zone_t *zone, isc_time_t *loadtime) {
+ REQUIRE(DNS_ZONE_VALID(zone));
+ REQUIRE(loadtime != NULL);
+
+ LOCK_ZONE(zone);
+ *loadtime = zone->loadtime;
+ UNLOCK_ZONE(zone);
+ return (ISC_R_SUCCESS);
+}
+
+isc_result_t
+dns_zone_getexpiretime(dns_zone_t *zone, isc_time_t *expiretime) {
+ REQUIRE(DNS_ZONE_VALID(zone));
+ REQUIRE(expiretime != NULL);
+
+ LOCK_ZONE(zone);
+ *expiretime = zone->expiretime;
+ UNLOCK_ZONE(zone);
+ return (ISC_R_SUCCESS);
+}
+
+isc_result_t
+dns_zone_getrefreshtime(dns_zone_t *zone, isc_time_t *refreshtime) {
+ REQUIRE(DNS_ZONE_VALID(zone));
+ REQUIRE(refreshtime != NULL);
+
+ LOCK_ZONE(zone);
+ *refreshtime = zone->refreshtime;
+ UNLOCK_ZONE(zone);
+ return (ISC_R_SUCCESS);
+}
+
+isc_result_t
+dns_zone_getrefreshkeytime(dns_zone_t *zone, isc_time_t *refreshkeytime) {
+ REQUIRE(DNS_ZONE_VALID(zone));
+ REQUIRE(refreshkeytime != NULL);
+
+ LOCK_ZONE(zone);
+ *refreshkeytime = zone->refreshkeytime;
+ UNLOCK_ZONE(zone);
+ return (ISC_R_SUCCESS);
+}
+
+unsigned int
+dns_zone_getincludes(dns_zone_t *zone, char ***includesp) {
+ dns_include_t *include;
+ char **array = NULL;
+ unsigned int n = 0;
+
+ REQUIRE(DNS_ZONE_VALID(zone));
+ REQUIRE(includesp != NULL && *includesp == NULL);
+
+ LOCK_ZONE(zone);
+ if (zone->nincludes == 0)
+ goto done;
+
+ array = isc_mem_allocate(zone->mctx, sizeof(char *) * zone->nincludes);
+ if (array == NULL)
+ goto done;
+ for (include = ISC_LIST_HEAD(zone->includes);
+ include != NULL;
+ include = ISC_LIST_NEXT(include, link)) {
+ INSIST(n < zone->nincludes);
+ array[n++] = isc_mem_strdup(zone->mctx, include->name);
+ }
+ INSIST(n == zone->nincludes);
+ *includesp = array;
+
+ done:
+ UNLOCK_ZONE(zone);
+ return (n);
+}
diff --git a/lib/export/.cvsignore b/lib/export/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/dns/.cvsignore b/lib/export/dns/.cvsignore
deleted file mode 100644
index 6ee29f9529..0000000000
--- a/lib/export/dns/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-code.h
-gen
-timestamp
diff --git a/lib/export/dns/include/.cvsignore b/lib/export/dns/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/dns/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/dns/include/dns/.cvsignore b/lib/export/dns/include/dns/.cvsignore
deleted file mode 100644
index 960dd99eeb..0000000000
--- a/lib/export/dns/include/dns/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-enumclass.h
-enumtype.h
-rdatastruct.h
diff --git a/lib/export/dns/include/dst/.cvsignore b/lib/export/dns/include/dst/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/dns/include/dst/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/irs/.cvsignore b/lib/export/irs/.cvsignore
deleted file mode 100644
index 8df5b29f00..0000000000
--- a/lib/export/irs/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-timestamp
diff --git a/lib/export/irs/include/.cvsignore b/lib/export/irs/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/irs/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/irs/include/irs/.cvsignore b/lib/export/irs/include/irs/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/irs/include/irs/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/.cvsignore b/lib/export/isc/.cvsignore
deleted file mode 100644
index 8df5b29f00..0000000000
--- a/lib/export/isc/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-timestamp
diff --git a/lib/export/isc/include/.cvsignore b/lib/export/isc/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/include/isc/.cvsignore b/lib/export/isc/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/nls/.cvsignore b/lib/export/isc/nls/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/nls/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/nothreads/.cvsignore b/lib/export/isc/nothreads/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/nothreads/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/nothreads/include/.cvsignore b/lib/export/isc/nothreads/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/nothreads/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/nothreads/include/isc/.cvsignore b/lib/export/isc/nothreads/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/nothreads/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/pthreads/.cvsignore b/lib/export/isc/pthreads/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/pthreads/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/pthreads/include/.cvsignore b/lib/export/isc/pthreads/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/pthreads/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/pthreads/include/isc/.cvsignore b/lib/export/isc/pthreads/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/pthreads/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/unix/.cvsignore b/lib/export/isc/unix/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/unix/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/unix/include/.cvsignore b/lib/export/isc/unix/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/unix/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isc/unix/include/isc/.cvsignore b/lib/export/isc/unix/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isc/unix/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isccfg/.cvsignore b/lib/export/isccfg/.cvsignore
deleted file mode 100644
index 8df5b29f00..0000000000
--- a/lib/export/isccfg/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-timestamp
diff --git a/lib/export/isccfg/include/.cvsignore b/lib/export/isccfg/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isccfg/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/isccfg/include/isccfg/.cvsignore b/lib/export/isccfg/include/isccfg/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/export/isccfg/include/isccfg/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/export/samples/.cvsignore b/lib/export/samples/.cvsignore
deleted file mode 100644
index 5e42ccc5a3..0000000000
--- a/lib/export/samples/.cvsignore
+++ /dev/null
@@ -1,8 +0,0 @@
-Makefile
-Makefile-postinstall
-nsprobe
-sample
-sample-async
-sample-gai
-sample-request
-sample-update
diff --git a/lib/irs/.cvsignore b/lib/irs/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/irs/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/irs/include/.cvsignore b/lib/irs/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/irs/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/irs/include/irs/.cvsignore b/lib/irs/include/irs/.cvsignore
deleted file mode 100644
index 67360141e7..0000000000
--- a/lib/irs/include/irs/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-netdb.h
-platform.h
diff --git a/lib/isc/.cvsignore b/lib/isc/.cvsignore
deleted file mode 100644
index b3b8e7617f..0000000000
--- a/lib/isc/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-.libs
-*.la
-*.lo
diff --git a/lib/isc/alpha/.cvsignore b/lib/isc/alpha/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/alpha/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/alpha/include/.cvsignore b/lib/isc/alpha/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/alpha/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/alpha/include/isc/.cvsignore b/lib/isc/alpha/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/alpha/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/ia64/.cvsignore b/lib/isc/ia64/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/ia64/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/ia64/include/.cvsignore b/lib/isc/ia64/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/ia64/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/ia64/include/isc/.cvsignore b/lib/isc/ia64/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/ia64/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/include/.cvsignore b/lib/isc/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/include/isc/.cvsignore b/lib/isc/include/isc/.cvsignore
deleted file mode 100644
index 6dd03c914c..0000000000
--- a/lib/isc/include/isc/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-platform.h
diff --git a/lib/isc/include/isc/Makefile.in b/lib/isc/include/isc/Makefile.in
index 7c125a6123..7bbb938fad 100644
--- a/lib/isc/include/isc/Makefile.in
+++ b/lib/isc/include/isc/Makefile.in
@@ -13,7 +13,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: Makefile.in,v 1.68.630.2 2012/02/28 23:46:24 tbox Exp $
+# $Id: Makefile.in,v 1.70 2012/02/28 23:46:59 tbox Exp $
srcdir = @srcdir@
VPATH = @srcdir@
diff --git a/lib/isc/mips/.cvsignore b/lib/isc/mips/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/mips/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/mips/include/.cvsignore b/lib/isc/mips/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/mips/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/mips/include/isc/.cvsignore b/lib/isc/mips/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/mips/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/nls/.cvsignore b/lib/isc/nls/.cvsignore
deleted file mode 100644
index 1c44159d27..0000000000
--- a/lib/isc/nls/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-.libs
-*.la
-*.lo
diff --git a/lib/isc/noatomic/.cvsignore b/lib/isc/noatomic/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/noatomic/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/noatomic/include/.cvsignore b/lib/isc/noatomic/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/noatomic/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/noatomic/include/isc/.cvsignore b/lib/isc/noatomic/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/noatomic/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/nothreads/.cvsignore b/lib/isc/nothreads/.cvsignore
deleted file mode 100644
index 1c44159d27..0000000000
--- a/lib/isc/nothreads/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-.libs
-*.la
-*.lo
diff --git a/lib/isc/nothreads/include/.cvsignore b/lib/isc/nothreads/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/nothreads/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/nothreads/include/isc/.cvsignore b/lib/isc/nothreads/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/nothreads/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/powerpc/.cvsignore b/lib/isc/powerpc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/powerpc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/powerpc/include/.cvsignore b/lib/isc/powerpc/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/powerpc/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/powerpc/include/isc/.cvsignore b/lib/isc/powerpc/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/powerpc/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/pthreads/.cvsignore b/lib/isc/pthreads/.cvsignore
deleted file mode 100644
index 1c44159d27..0000000000
--- a/lib/isc/pthreads/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-.libs
-*.la
-*.lo
diff --git a/lib/isc/pthreads/include/.cvsignore b/lib/isc/pthreads/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/pthreads/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/pthreads/include/isc/.cvsignore b/lib/isc/pthreads/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/pthreads/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/sparc64/.cvsignore b/lib/isc/sparc64/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/sparc64/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/sparc64/include/.cvsignore b/lib/isc/sparc64/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/sparc64/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/sparc64/include/isc/.cvsignore b/lib/isc/sparc64/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/sparc64/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/tests/.cvsignore b/lib/isc/tests/.cvsignore
deleted file mode 100644
index 6abab36d4a..0000000000
--- a/lib/isc/tests/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-atf.out
-*_test
diff --git a/lib/isc/unix/.cvsignore b/lib/isc/unix/.cvsignore
deleted file mode 100644
index 1c44159d27..0000000000
--- a/lib/isc/unix/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-.libs
-*.la
-*.lo
diff --git a/lib/isc/unix/include/.cvsignore b/lib/isc/unix/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/unix/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/unix/include/isc/.cvsignore b/lib/isc/unix/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/unix/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/unix/stdio.c b/lib/isc/unix/stdio.c
index 7f88000368..c6b76f9b86 100644
--- a/lib/isc/unix/stdio.c
+++ b/lib/isc/unix/stdio.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: stdio.c,v 1.11.20.2 2012/02/29 23:46:55 tbox Exp $ */
+/* $Id: stdio.c,v 1.13 2012/02/29 23:47:21 tbox Exp $ */
#include
diff --git a/lib/isc/win32/.cvsignore b/lib/isc/win32/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/win32/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/win32/include/.cvsignore b/lib/isc/win32/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/win32/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/win32/include/isc/.cvsignore b/lib/isc/win32/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/win32/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/win32/socket.c b/lib/isc/win32/socket.c
index 8b801c28b1..593ccd44db 100644
--- a/lib/isc/win32/socket.c
+++ b/lib/isc/win32/socket.c
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: socket.c,v 1.93.52.2 2012/02/06 23:46:23 tbox Exp $ */
+/* $Id: socket.c,v 1.95 2012/02/06 23:46:49 tbox Exp $ */
/* This code uses functions which are only available on Server 2003 and
* higher, and Windows XP and higher.
diff --git a/lib/isc/x86_32/.cvsignore b/lib/isc/x86_32/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_32/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/x86_32/include/.cvsignore b/lib/isc/x86_32/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_32/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/x86_32/include/isc/.cvsignore b/lib/isc/x86_32/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_32/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/x86_64/.cvsignore b/lib/isc/x86_64/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_64/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/x86_64/include/.cvsignore b/lib/isc/x86_64/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_64/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isc/x86_64/include/isc/.cvsignore b/lib/isc/x86_64/include/isc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isc/x86_64/include/isc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isccc/.cvsignore b/lib/isccc/.cvsignore
deleted file mode 100644
index b3b8e7617f..0000000000
--- a/lib/isccc/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-.libs
-*.la
-*.lo
diff --git a/lib/isccc/include/.cvsignore b/lib/isccc/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isccc/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isccc/include/isccc/.cvsignore b/lib/isccc/include/isccc/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isccc/include/isccc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isccfg/.cvsignore b/lib/isccfg/.cvsignore
deleted file mode 100644
index b3b8e7617f..0000000000
--- a/lib/isccfg/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-.libs
-*.la
-*.lo
diff --git a/lib/isccfg/include/.cvsignore b/lib/isccfg/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isccfg/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/isccfg/include/isccfg/.cvsignore b/lib/isccfg/include/isccfg/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/isccfg/include/isccfg/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/.cvsignore b/lib/lwres/.cvsignore
deleted file mode 100644
index b3b8e7617f..0000000000
--- a/lib/lwres/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-.libs
-*.la
-*.lo
diff --git a/lib/lwres/include/.cvsignore b/lib/lwres/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/include/lwres/.cvsignore b/lib/lwres/include/lwres/.cvsignore
deleted file mode 100644
index 67360141e7..0000000000
--- a/lib/lwres/include/lwres/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-netdb.h
-platform.h
diff --git a/lib/lwres/man/.cvsignore b/lib/lwres/man/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/man/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/unix/.cvsignore b/lib/lwres/unix/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/unix/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/unix/include/.cvsignore b/lib/lwres/unix/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/unix/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/unix/include/lwres/.cvsignore b/lib/lwres/unix/include/lwres/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/unix/include/lwres/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/win32/.cvsignore b/lib/lwres/win32/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/win32/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/win32/include/.cvsignore b/lib/lwres/win32/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/win32/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/lwres/win32/include/lwres/.cvsignore b/lib/lwres/win32/include/lwres/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/lwres/win32/include/lwres/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/tests/.cvsignore b/lib/tests/.cvsignore
deleted file mode 100644
index cd674ca368..0000000000
--- a/lib/tests/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-timestamp
-*.lo
-*.la
-.libs
diff --git a/lib/tests/include/.cvsignore b/lib/tests/include/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/tests/include/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/lib/tests/include/tests/.cvsignore b/lib/tests/include/tests/.cvsignore
deleted file mode 100644
index f3c7a7c5da..0000000000
--- a/lib/tests/include/tests/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/make/.cvsignore b/make/.cvsignore
deleted file mode 100644
index 317ec27c1c..0000000000
--- a/make/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile
-includes
-rules
-mkdep
diff --git a/make/rules.in b/make/rules.in
index 5a688793d2..eeb1a34572 100644
--- a/make/rules.in
+++ b/make/rules.in
@@ -13,7 +13,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: rules.in,v 1.72.22.2 2012/01/31 23:47:02 tbox Exp $
+# $Id: rules.in,v 1.74 2012/01/31 23:47:33 tbox Exp $
###
### Common Makefile rules for BIND 9.
diff --git a/unit/.cvsignore b/unit/.cvsignore
deleted file mode 100644
index 6ff543b028..0000000000
--- a/unit/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-Makefile
-atf
-unittest.sh
diff --git a/unit/atf-src/.cvsignore b/unit/atf-src/.cvsignore
deleted file mode 100644
index 20c3d874f2..0000000000
--- a/unit/atf-src/.cvsignore
+++ /dev/null
@@ -1,11 +0,0 @@
-.libs
-Makefile
-autom4te.cache
-bconfig.h
-config.log
-config.status
-configure.lineno
-libatf-c++.la
-libatf-c.la
-libtool
-stamp-h1
diff --git a/unit/atf-src/atf-c++/.cvsignore b/unit/atf-src/atf-c++/.cvsignore
deleted file mode 100644
index 02680616ae..0000000000
--- a/unit/atf-src/atf-c++/.cvsignore
+++ /dev/null
@@ -1,16 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-c++.pc
-atf_c++_test
-build.lo
-build_test
-check.lo
-check_test
-config.lo
-config_test
-macros_test
-pkg_config_test
-tests.lo
-tests_test
-utils_test
diff --git a/unit/atf-src/atf-c++/detail/.cvsignore b/unit/atf-src/atf-c++/detail/.cvsignore
deleted file mode 100644
index 645b034586..0000000000
--- a/unit/atf-src/atf-c++/detail/.cvsignore
+++ /dev/null
@@ -1,24 +0,0 @@
-.deps
-.dirstamp
-.libs
-application.lo
-application_test
-env.lo
-env_test
-exceptions.lo
-exceptions_test
-expand.lo
-expand_test
-fs.lo
-fs_test
-libtest_helpers.la
-parser.lo
-parser_test
-process.lo
-process_test
-sanity_test
-test_helpers.lo
-text.lo
-text_test
-ui.lo
-ui_test
diff --git a/unit/atf-src/atf-c/.cvsignore b/unit/atf-src/atf-c/.cvsignore
deleted file mode 100644
index c6c159b760..0000000000
--- a/unit/atf-src/atf-c/.cvsignore
+++ /dev/null
@@ -1,22 +0,0 @@
-.deps
-defs.h
-.dirstamp
-.libs
-atf-c.pc
-atf_c_test
-build_test
-check_test
-config_test
-error_test
-libatf_c_la-build.lo
-libatf_c_la-check.lo
-libatf_c_la-config.lo
-libatf_c_la-error.lo
-libatf_c_la-tc.lo
-libatf_c_la-tp.lo
-libatf_c_la-utils.lo
-macros_test
-pkg_config_test
-tc_test
-tp_test
-utils_test
diff --git a/unit/atf-src/atf-c/detail/.cvsignore b/unit/atf-src/atf-c/detail/.cvsignore
deleted file mode 100644
index ea9b4e9278..0000000000
--- a/unit/atf-src/atf-c/detail/.cvsignore
+++ /dev/null
@@ -1,26 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf_c_detail_libtest_helpers_la-test_helpers.lo
-dynstr_test
-env_test
-fs_test
-libatf_c_la-dynstr.lo
-libatf_c_la-env.lo
-libatf_c_la-fs.lo
-libatf_c_la-list.lo
-libatf_c_la-map.lo
-libatf_c_la-process.lo
-libatf_c_la-sanity.lo
-libatf_c_la-text.lo
-libatf_c_la-tp_main.lo
-libatf_c_la-user.lo
-libtest_helpers.la
-list_test
-map_test
-process_helpers
-process_test
-sanity_test
-test_helpers_test
-text_test
-user_test
diff --git a/unit/atf-src/atf-config/.cvsignore b/unit/atf-src/atf-config/.cvsignore
deleted file mode 100644
index e902f59c67..0000000000
--- a/unit/atf-src/atf-config/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-config
-integration_test
diff --git a/unit/atf-src/atf-report/.cvsignore b/unit/atf-src/atf-report/.cvsignore
deleted file mode 100644
index 337d22a1dd..0000000000
--- a/unit/atf-src/atf-report/.cvsignore
+++ /dev/null
@@ -1,9 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-report
-fail_helper
-integration_test
-misc_helpers
-pass_helper
-reader_test
diff --git a/unit/atf-src/atf-run/.cvsignore b/unit/atf-src/atf-run/.cvsignore
deleted file mode 100644
index d36a5f8efa..0000000000
--- a/unit/atf-src/atf-run/.cvsignore
+++ /dev/null
@@ -1,19 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-run
-atffile_test
-bad_metadata_helper
-config_test
-expect_helpers
-fs_test
-integration_test
-io_test
-misc_helpers
-pass_helper
-requirements_test
-several_tcs_helper
-signals_test
-test_program_test
-user_test
-zero_tcs_helper
diff --git a/unit/atf-src/atf-sh/.cvsignore b/unit/atf-src/atf-sh/.cvsignore
deleted file mode 100644
index 837da623b8..0000000000
--- a/unit/atf-src/atf-sh/.cvsignore
+++ /dev/null
@@ -1,13 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-check
-atf-check_test
-atf-sh
-atf_check_test
-config_test
-integration_test
-misc_helpers
-normalize_test
-tc_test
-tp_test
diff --git a/unit/atf-src/atf-version/.cvsignore b/unit/atf-src/atf-version/.cvsignore
deleted file mode 100644
index 3e3a877637..0000000000
--- a/unit/atf-src/atf-version/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-.deps
-.dirstamp
-.libs
-atf-version
-revision.h
-revision.h.stamp
diff --git a/unit/atf-src/bootstrap/.cvsignore b/unit/atf-src/bootstrap/.cvsignore
deleted file mode 100644
index 5b7c16c63d..0000000000
--- a/unit/atf-src/bootstrap/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-.deps
-atconfig
diff --git a/unit/atf-src/doc/.cvsignore b/unit/atf-src/doc/.cvsignore
deleted file mode 100644
index 7c31856450..0000000000
--- a/unit/atf-src/doc/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-atf.7
diff --git a/unit/atf-src/test-programs/.cvsignore b/unit/atf-src/test-programs/.cvsignore
deleted file mode 100644
index e8b6d684d6..0000000000
--- a/unit/atf-src/test-programs/.cvsignore
+++ /dev/null
@@ -1,12 +0,0 @@
-.deps
-.dirstamp
-.libs
-c_helpers
-config_test
-cpp_helpers
-expect_test
-fork_test
-meta_data_test
-result_test
-sh_helpers
-srcdir_test
diff --git a/util/copyrights b/util/copyrights
index 2062158612..c1a10f703f 100644
--- a/util/copyrights
+++ b/util/copyrights
@@ -143,16 +143,16 @@
./bin/named/bind9.xsl.h X 2007,2008,2009,2011
./bin/named/bindkeys.pl PERL 2009,2010,2011
./bin/named/builtin.c C 2001,2002,2003,2004,2005,2007,2009,2010,2011,2012
-./bin/named/client.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011
+./bin/named/client.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012
./bin/named/config.c C 2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012
-./bin/named/control.c C 2001,2002,2003,2004,2005,2006,2007,2009,2010,2011
+./bin/named/control.c C 2001,2002,2003,2004,2005,2006,2007,2009,2010,2011,2012
./bin/named/controlconf.c C 2001,2002,2003,2004,2005,2006,2007,2008,2011
./bin/named/convertxsl.pl PERL 2006,2007,2008
./bin/named/include/dlz/dlz_dlopen_driver.h C 2011
./bin/named/include/named/builtin.h C 2001,2004,2005,2007
-./bin/named/include/named/client.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2011
+./bin/named/include/named/client.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2011,2012
./bin/named/include/named/config.h C 2001,2002,2004,2005,2006,2007,2009
-./bin/named/include/named/control.h C 2001,2002,2003,2004,2005,2006,2007,2009,2010,2011
+./bin/named/include/named/control.h C 2001,2002,2003,2004,2005,2006,2007,2009,2010,2011,2012
./bin/named/include/named/globals.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011
./bin/named/include/named/interfacemgr.h C 1999,2000,2001,2002,2004,2005,2007,2011
./bin/named/include/named/listenlist.h C 2000,2001,2004,2005,2007
@@ -166,7 +166,7 @@
./bin/named/include/named/notify.h C 1999,2000,2001,2004,2005,2007,2009
./bin/named/include/named/ns_smf_globals.h C 2005,2007
./bin/named/include/named/query.h C 1999,2000,2001,2002,2004,2005,2007,2010,2011
-./bin/named/include/named/server.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011
+./bin/named/include/named/server.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012
./bin/named/include/named/sortlist.h C 2000,2001,2004,2005,2006,2007
./bin/named/include/named/statschannel.h C 2008
./bin/named/include/named/tkeyconf.h C 1999,2000,2001,2004,2005,2006,2007
@@ -897,22 +897,22 @@
./bin/tests/system/filter-aaaa/conf/good8.conf CONF-C 2010
./bin/tests/system/filter-aaaa/filter-aaaa.c C 2010,2011
./bin/tests/system/filter-aaaa/ns1/named.conf CONF-C 2010
-./bin/tests/system/filter-aaaa/ns1/root.db ZONE 2010
+./bin/tests/system/filter-aaaa/ns1/root.db ZONE 2010,2012
./bin/tests/system/filter-aaaa/ns1/sign.sh SH 2010
-./bin/tests/system/filter-aaaa/ns1/signed.db.in ZONE 2010
-./bin/tests/system/filter-aaaa/ns1/unsigned.db ZONE 2010
+./bin/tests/system/filter-aaaa/ns1/signed.db.in ZONE 2010,2012
+./bin/tests/system/filter-aaaa/ns1/unsigned.db ZONE 2010,2012
./bin/tests/system/filter-aaaa/ns2/hints ZONE 2010
./bin/tests/system/filter-aaaa/ns2/named.conf CONF-C 2010
./bin/tests/system/filter-aaaa/ns3/hints ZONE 2010
./bin/tests/system/filter-aaaa/ns3/named.conf CONF-C 2010
./bin/tests/system/filter-aaaa/ns4/named.conf CONF-C 2010
-./bin/tests/system/filter-aaaa/ns4/root.db ZONE 2010
+./bin/tests/system/filter-aaaa/ns4/root.db ZONE 2010,2012
./bin/tests/system/filter-aaaa/ns4/sign.sh SH 2010
-./bin/tests/system/filter-aaaa/ns4/signed.db.in ZONE 2010
-./bin/tests/system/filter-aaaa/ns4/unsigned.db ZONE 2010
+./bin/tests/system/filter-aaaa/ns4/signed.db.in ZONE 2010,2012
+./bin/tests/system/filter-aaaa/ns4/unsigned.db ZONE 2010,2012
./bin/tests/system/filter-aaaa/prereq.sh SH 2010
./bin/tests/system/filter-aaaa/setup.sh SH 2010
-./bin/tests/system/filter-aaaa/tests.sh SH 2010
+./bin/tests/system/filter-aaaa/tests.sh SH 2010,2012
./bin/tests/system/forward/clean.sh SH 2000,2001,2004,2007
./bin/tests/system/forward/ns1/.cvsignore X 2000,2001
./bin/tests/system/forward/ns1/example.db X 2000,2001
@@ -1444,12 +1444,15 @@
./bin/tests/system/xferquota/tests.sh SH 2000,2001,2004,2007
./bin/tests/system/zonechecks/a.db ZONE 2004,2007
./bin/tests/system/zonechecks/aaaa.db ZONE 2004,2007
-./bin/tests/system/zonechecks/clean.sh SH 2004,2007
+./bin/tests/system/zonechecks/clean.sh SH 2004,2007,2012
./bin/tests/system/zonechecks/cname.db ZONE 2004,2007
./bin/tests/system/zonechecks/dname.db ZONE 2004,2007
./bin/tests/system/zonechecks/noaddress.db ZONE 2004,2007
+./bin/tests/system/zonechecks/ns1/named.conf CONF-C 2012
+./bin/tests/system/zonechecks/ns2/named.conf CONF-C 2012
./bin/tests/system/zonechecks/nxdomain.db ZONE 2004,2007
-./bin/tests/system/zonechecks/tests.sh SH 2004,2007,2009
+./bin/tests/system/zonechecks/setup.sh SH 2012
+./bin/tests/system/zonechecks/tests.sh SH 2004,2007,2009,2012
./bin/tests/t_api.pl PERL 1999,2000,2001,2004,2007
./bin/tests/task_test.c C 1998,1999,2000,2001,2004,2007
./bin/tests/tasks/.cvsignore X 1999,2000,2001
@@ -2234,7 +2237,7 @@
./lib/dns/include/dns/lib.h C 1999,2000,2001,2004,2005,2006,2007,2009
./lib/dns/include/dns/log.h C 1999,2000,2001,2003,2004,2005,2006,2007,2009,2011
./lib/dns/include/dns/lookup.h C 2000,2001,2004,2005,2006,2007,2009
-./lib/dns/include/dns/master.h C 1999,2000,2001,2002,2004,2005,2006,2007,2008,2009,2011
+./lib/dns/include/dns/master.h C 1999,2000,2001,2002,2004,2005,2006,2007,2008,2009,2011,2012
./lib/dns/include/dns/masterdump.h C 1999,2000,2001,2002,2004,2005,2006,2007,2008,2011
./lib/dns/include/dns/message.h C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010
./lib/dns/include/dns/name.h C 1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009,2010,2011
@@ -2470,7 +2473,7 @@
./lib/dns/tests/dbversion_test.c C 2011
./lib/dns/tests/dnstest.c C 2011
./lib/dns/tests/dnstest.h C 2011
-./lib/dns/tests/master_test.c C 2011
+./lib/dns/tests/master_test.c C 2011,2012
./lib/dns/tests/mkraw.pl PERL 2011
./lib/dns/tests/nsec3_test.c C 2012
./lib/dns/tests/private_test.c C 2011
diff --git a/util/kit.sh b/util/kit.sh
index 4d8c309590..0713fc2ab9 100644
--- a/util/kit.sh
+++ b/util/kit.sh
@@ -15,7 +15,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: kit.sh,v 1.45.2.1 2012/01/31 23:47:02 tbox Exp $
+# $Id: kit.sh,v 1.46 2012/01/30 23:47:17 tbox Exp $
# Make a release kit
#
diff --git a/util/mksymtbl.pl b/util/mksymtbl.pl
index 15e5fe34fd..e7fe61c9f0 100755
--- a/util/mksymtbl.pl
+++ b/util/mksymtbl.pl
@@ -14,13 +14,13 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: mksymtbl.pl,v 1.4.688.2 2012/01/31 23:47:03 tbox Exp $
+# $Id: mksymtbl.pl,v 1.6 2012/01/31 23:47:33 tbox Exp $
use strict;
use diagnostics;
$^W = 1;
-my $rev = '$Id: mksymtbl.pl,v 1.4.688.2 2012/01/31 23:47:03 tbox Exp $';
+my $rev = '$Id: mksymtbl.pl,v 1.6 2012/01/31 23:47:33 tbox Exp $';
$rev =~ s/\$//g;
$rev =~ s/,v//g;
$rev =~ s/Id: //;
diff --git a/version b/version
index eddbb3c681..090ef5850d 100644
--- a/version
+++ b/version
@@ -1,4 +1,4 @@
-# $Id: version,v 1.60.2.4 2012/02/23 08:46:54 marka Exp $
+# $Id: version,v 1.61 2012/01/31 01:15:59 each Exp $
#
# This file must follow /bin/sh rules. It is imported directly via
# configure.
@@ -6,5 +6,5 @@
MAJORVER=9
MINORVER=9
PATCHVER=0
-RELEASETYPE=
-RELEASEVER=
+RELEASETYPE=rc
+RELEASEVER=2