#!/usr/bin/perl -wi ( $IDENT = '@(#)zsu: update DNS zone serial number' ) =~ s/^[^:]*: *//; # # edit zone file in-place # only update files where the SOA indicates we are authoritative # only update serial numbers in format (yy)yymmddn(n) # see inline POD documentation for details # # Returns: 0 if success, 1 if failure # #--------------------------------- =head1 NAME B - update serial numbers in DNS zone files =head1 SYNOPSIS B [B<-cdfhLv>] I ... =head1 README B updates serial numbers in DNS zone files. =head1 DESCRIPTION After any changes are made to a DNS zone file, the serial number must be increased -- otherwise changes will not propagate to the slave servers (secondaries). B handles the serial number update automatically, while preserving everything else in the file. Forgetting to increase the serial number is one of the most common causes of hair loss among DNS administrators! =head2 Introduction B expects one or more zonefile names as arguments. The command zsu /etc/db.local 0.0.127.in-add.arpa /var/named/db.example.com will update the serial numbers in each of the three zone files listed. B is most commonly used as part of a revision control system for zone files, just before changes are committed to a repository. The following simple script demonstrates this. The script expects a single zonefile name as an argument, and relies on ci/co/rcsdiff (all parts of RCS, from F ): #!/bin/sh co -l $1 vi $1 rcsdiff -q $1 > /dev/null if [ ! $? ]; then zsu -cf $1 ci -u $1 fi B will ignore zone files where the originating host in the C record does not match the local hostname. Use the B<-f> option to override this check. =head2 Details B works with the standard C serial number format, which is derived from the current date and a counter to distinguish multiple changes made the same day. B tries very hard to increase the serial number while keeping its format. B works with 2 or 4 digit years and 1 or 2 digit counters, so it will also try to work with formats C, C and C. Other formats are currently not dealt with, and B will skip zone files containing serial numbers in such formats. Unsupported formats include YYYYMMDDmm, where mm is time since midnight expressed in 15-minute units, or good old NNNN flat integer counters. I could add support for YYYYMMDDmm if there is demand. NNNN format counters are not dealt with since they usually indicate that some kind of DNS management system is in place, and most such systems want to manage the serial numbers themselves. B understands standard zonefile syntax and will attempt to change the first SOA record found in each of the zones specified. B will silently ignore zone files which do not appear to be for the local host to prevent changes to zone files on slave servers. Use the B<-f> option to force updates even if the origin in the SOA record fails to match the hostname as determined by B. When the serial number indicates a date in the future, B will continue to use the future date, as long as the counter can still be incremented while retaining the date format. In verbose mode, a warning is issued when encountering such a timewarp. In a future release, serial number wraparound (see RFC 1982) may be supported to help fix inadvertent timewarps. Use the B<-c> option to allow B to change the format when necessary (by default B will just complain about these situations). Changing the format is necessary if using two-digit years and the century has changed, or if YYMMDDNN format is used and NN is 99, or if a 1 digit counter has reached 9. =head1 OPTIONS =over 6 =item B<-c> Change serial number format if necessary (otherwise will simply warn about overflow and similar errors, and leave the zone file intact). Do not use B<-c> if other programs rely on the serial format! =item B<-d> Print debugging information. =item B<-f> Force update, even if this host is not SOA origin. =item B<-h> Display a brief help message. =item B<-L> Show the software license. =item B<-v> Verbose mode. Show the progress of the program. =back =head1 PREREQUISITES You need Perl installed. See F for details. The latest versions have been tested with perl 5.005_03 but should also work with other 5.x versions (including 5.6.1) and with perl 4.036. There may be a problem with the dependency on C under 5.8.x; this is awaiting confirmation. =head1 EXAMPLES The first few lines of a zone file will typically look something like: ; some comments @ IN SOA myhost.example.com. hostmaster.example.com. ( 1998021503 ; the serial number 28800 ; refresh If the system date was 12 August 2001 and you updated the zone with B, this snippet would end up as: ; some comments @ IN SOA myhost.example.com. hostmaster.example.com. ( 2001081200 ; the serial number 28800 ; refresh Here is a table of what would be done to some other serial numbers, if the system date was 12 August 2001: original zsu zsu -c ----------- ---------------- ---------------- 9712231 9712232 9712232 97122301 97122302 97122302 199712231 199712232 199712232 1997122301 1997122302 1997122302 9712239 warn: no change 200108120 97122399 warn: no change 2001081200 199712239 warn: no change 200108120 1997122399 warn: no change 2001081200 0108129 warn: no change 01081210 01081299 warn: no change 2001081200 200108129 warn: no change 2001081210 2001081299 warn: no change warn: no change =head1 BUGS The hostname checking in B is known to be buggy; for instance it will fail to produce a warning if it needs a domain name, but domainname returns just whitespace. Please report other programming errors to me. =head1 SEE ALSO named(8) =head1 AUTHOR Copyright 1994-2004 Andras Salamon Candras@dns.netE>. =head1 HISTORY Version 1.17 moved to POD documentation. Version 1.16 renamed the F file to F, and fixed the availability information. Version 1.15 fixed handling of C records where the serial is on the same line as the C tag. Thanks to Frederic Marchand for picking up the problem and suggesting a solution. Single line C records now also don't require parentheses, as per RFC 1034. Version 1.14 added documentation fixes, moved the distribution location, and noted where to get B in the documentation. Version 1.13 fixed various problems with 2-digit year and 1-digit counter formats. B is now able to change the format when appropriate, ie. when the century has changed, or if C format is used and C is 99, or if a 1 digit counter has reached 9. The B<-c> option is new; previously the serial number format was silently changed when necessary. Use B<-c> for the old behaviour. =head1 AVAILABILITY The latest version of B is available from F and also from I, at F and in F (coming soon). =head1 SCRIPT CATEGORIES Networking VersionControl/CVS Unix/System_administration =cut # internal variables #--------------------------------- ( $BCMD = $0 ) =~ s/.*\///; ( $REVISION ) = ( '$Revision: 1.18 $' =~ /[^\d\.]*([\d\.]*)/ ); $HELPSTRING = "For help, type: $BCMD -h"; $USAGE = "Usage: $BCMD [-cdfhLv] zone ..."; $exitcode = 0; # parse command line arguments #----------------------------- require 'getopts.pl'; $opt_c = $opt_d = $opt_f = $opt_h = $opt_L = $opt_v = ''; if ( ! &Getopts('cdfhLv') ) { print STDERR "$USAGE\n$HELPSTRING\n"; exit 2; } if ( $opt_h ) { print < This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. If you do not already have a copy of the GNU General Public License, you can obtain a copy by anonymous ftp from prep.ai.mit.edu (file COPYING in directory /pub/gnu) or write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. EOT exit 0; } $VERBOSE = $opt_v || $DEBUG; $DEBUG = $opt_d; if ( @ARGV < 1 ) { print STDERR "$USAGE\n$HELPSTRING\n"; exit 2; } # Set up fully qualified host name #--------------------------------- # zone files must have originating host fully qualified, since information # from outside zone may be necessary to understand non-FQ domain names if ( ! $opt_f ) { ( $myhost = `hostname` || `uname -n` ) =~ s/\s*$//; if ( $myhost !~ /\./ ) { if ( ! ( $mydom = `domainname` ) ) { warn "cannot get FQDN of host" if $VERBOSE; } else { if ( $mydom !~ /^\./ ) { $mydom = ".$mydom"; } $myhost .= $mydom; } } if ( $myhost !~ /\.$/ ) { $myhost .= '.'; } } # warn about converting N to NN format #---------------------------------- sub bump { local( $o_count ) = ( @_ ); warn "$ARGV: converting to nn format serial" if $VERBOSE && $o_count eq '9' && $opt_c; $o_count + 1; } # generate a sensible serial number, based on the existing one # # try to use today's date as returned by ctime(3) # update count if serial has today's date already # preserve yy format if used # needs to detect RFC 1982 2^31 hack! #---------------------------------- sub generate_new { local( $o_serial ) = ( @_ ); $n_serial = $o_serial; # note assumption that years are in range [1900, 2199] ( $o_c, $o_y, $o_m, $o_d, $o_count ) = ( $o_serial =~ /^(19|20|21)?(\d\d)(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])(\d\d?)$/ ); unless ( defined $o_y && defined $o_m && defined $o_d && defined $o_count ) { warn "$ARGV: serial $o_serial does not match heuristics, leaving as is"; $exitcode ++; } else { $o_date = $o_y.$o_m.$o_d; $o_c = '' unless defined $o_c; ( $mday, $mon, $year ) = ( localtime( time ) )[3..5]; $mon ++; # change 0..11 to 1..12 $year += 1900 if $year < 1900; # fix 1900-offset years printf STDERR "local date: %04d/%02d/%02d\n", $year, $mon, $mday if $DEBUG; # default is to generate new yyyy format date with 0 counter $n_y = $year % 100; $n_c = ( $year - $n_y ) / 100; $n_date = sprintf "%02d%02d%02d", $n_y, $mon, $mday; $n_count = 0; # two cases: check if counter can be bumped, if necessary if ( ( $o_count =~ /\d\d/ && $o_count < 99 ) || ( $o_count =~ /^\d$/ && ( $o_count < 9 || $opt_c ) ) ) { print STDERR "can bump serial\n" if $DEBUG; # try to keep yy format dates, if currently being used if ( $o_c eq '' ) { print STDERR "currently using yy format dates\n" if $DEBUG; if ( $n_date > $o_date ) { print STDERR "keeping yy format\n" if $DEBUG; $n_c = $o_c; } elsif ( $n_date == $o_date ) { print STDERR "keeping yy format, bumping count\n" if $DEBUG; ( $n_c, $n_count ) = ( $o_c, bump( $o_count ) ); } else { if ( $opt_c ) { warn "$ARGV: converting to yyyy format serial" if $VERBOSE; } else { warn "$ARGV: need -c to convert $o_serial to yyyy format, leaving as is"; ( $n_c, $n_date, $n_count ) = ( $o_c, $o_date, $o_count ); $exitcode ++; } } } else { # already using yyyy format if ( $n_c.$n_date < $o_c.$o_date ) { # should use 2^31 hack here, see RFC 1982 # for now, keep future date and bump count warn "$ARGV: serial $o_serial is in future, processing" if $VERBOSE; print STDERR "$n_c,$n_date vs. $o_c,$o_date\n" if $DEBUG; ( $n_c, $n_date, $n_count ) = ( $o_c, $o_date, bump( $o_count ) ); } elsif ( $n_c.$n_date == $o_c.$o_date ) { print STDERR "yyyy format, bumping count\n" if $DEBUG; $n_count = bump( $o_count ); } # else use yyyy format } } else { # can't bump counter if ( $n_c.$n_date <= $o_c.$o_date ) { # problem: out of counts and zone date is too new # should use 2^31 hack if new < old, see RFC 1982 warn "$ARGV: cannot increment $o_serial, leaving as is"; ( $n_c, $n_date, $n_count ) = ( $o_c, $o_date, $o_count ); $exitcode ++; } # else use yyyy format } $n_serial = sprintf "%s%06d%0*d", $n_c, $n_date, ( ( $o_count =~ /^\d$/ ) ? 1 : 2 ), $n_count; } print STDERR "New serial: $n_serial\n" if $DEBUG; $n_serial; } # now parse zone file #-------------------- # state table: 0 looking for SOA # 1 found SOA, looking for serial # 2 found serial, looking for next file $state = 0; while ( <> ) { if ( $state == 0 ) { # ... SOA zone_origin zone_contact ( serial ... # ^ $1 ^ $2 ^ $3 ^ $4 ^ $5 # $4 will be '' if serial is on subsequent line, see state1 if ( /^([^;]*\bSOA\b\s+)([^\s;]+)(\s+[^\s;]+\s+\(?\s*)([^\s;]*)(.*)/i ) { if ( $opt_f || ( $2 eq $myhost ) ) { $ours = 1; } else { $ours = 0; $state = 2; } if ( $ours ) { if ( "$4" ne '' ) { $before_serial = $1 . $2 . $3; $o_serial = $4; $after_serial = $5; if ( $o_serial !~ /^[\d.]+$/ ) { warn "$ARGV: cannot parse serial number, skipping" if $VERBOSE; $ours = 0; $exitcode ++; } else { $_ = $before_serial . &generate_new( $o_serial ) . $after_serial . "\n"; print STDERR "--> $_ <--\n" if $DEBUG; } $state = 2; } else { $state = 1; } } else { # not ours, don't change warn "$ARGV: origin non-local, skipping" if $VERBOSE; } } } elsif ( $state == 1 ) { if ( ! /^\s*;/ ) { # not commented, so serial should be here if ( /^(\s*)([0-9.]+)(.*)/ ) { $_ = $1 . &generate_new( $2 ) ."$3\n"; $state = 2; print STDERR "--> $_ <--\n" if $DEBUG; } else { warn "$ARGV: cannot parse SOA record, skipping" if $VERBOSE; $exitcode ++; } } # skip comment lines between `(' and serial } elsif ( $state == 2 ) { $state = 0 if eof; } else { die "internal error: state $state, quitting"; } } continue { print; } if ( $state == 2 ) { warn "internal error: did not detect end of last file" if $VERBOSE; $exitcode ++; } elsif ( $state == 1 ) { warn "$ARGV: could not locate serial number, skipping" if $VERBOSE; $exitcode ++; } exit $exitcode; # $Log: zsu,v $ # Revision 1.18 2004/03/13 08:46:54 andras # updated documentation: timewarp added, script categories removed indent # slight formatting changes # # Revision 1.17 2004/03/10 15:39:03 andras # moved to pod # # Revision 1.16 2004/02/29 20:18:57 andras # updated copyright date # # Revision 1.15 2002/01/22 16:03:39 andras # serial on same line was broken in perl5: fix from Frederic Marchand # ( is only needed if multiline RR, fixed # # Revision 1.14 2001/08/31 17:36:21 andras # added software location # # Revision 1.13 2001/08/11 22:45:02 andras # rewrote format handling # added -c option to allow silent format changes # changed code style # added more text to help # lots of comments # verbose mode now flags format changes and other useful info only # added -w flag and cleaned up code to avoid warnings # # Revision 1.12 1999/02/26 14:30:52 andras # now understands yy and yyyy formats # will shift yy to yyyy if y2k or if run out of nn's # # Revision 1.11 1996/04/02 10:20:43 andras # updated contact info # # Revision 1.10 1995/12/28 11:52:06 andras # perl5: quoted @'s # # Revision 1.9 1995/11/17 13:50:05 andras # added force option # # Revision 1.8 1995/11/17 12:49:06 andras # now handles yyyymmddn(n) formats also # # Revision 1.7 1995/10/27 11:19:56 andras # fixed multifile handling and $ours detection # # Revision 1.6 1995/10/27 10:45:06 andras # fixed state table; now goes back to 0 at eof # used to ignore second and subsequent files # # Revision 1.5 1995/05/15 16:16:23 andras # fixed hstname typo # # Revision 1.4 1995/05/09 00:38:34 andras # added in command line processing # # Revision 1.3 1995/05/08 20:45:59 andras # now supposed to understand a fairly general zone format # tested OK on standard format primary # tested OK on easy secondary # tested OK on secondary with serial in future # # Revision 1.2 1995/04/26 07:52:57 andras # cleaner logic # # Revision 1.1 1994/10/25 10:13:47 andras # Initial revision #