The rewrite of BIND 9 build system is a large work and cannot be reasonable split into separate merge requests. Addition of the automake has a positive effect on the readability and maintainability of the build system as it is more declarative, it allows conditional and we are able to drop all of the custom make code that BIND 9 developed over the years to overcome the deficiencies of autoconf + custom Makefile.in files. This squashed commit contains following changes: - conversion (or rather fresh rewrite) of all Makefile.in files to Makefile.am by using automake - the libtool is now properly integrated with automake (the way we used it was rather hackish as the only official way how to use libtool is via automake - the dynamic module loading was rewritten from a custom patchwork to libtool's libltdl (which includes the patchwork to support module loading on different systems internally) - conversion of the unit test executor from kyua to automake parallel driver - conversion of the system test executor from custom make/shell to automake parallel driver - The GSSAPI has been refactored, the custom SPNEGO on the basis that all major KRB5/GSSAPI (mit-krb5, heimdal and Windows) implementations support SPNEGO mechanism. - The various defunct tests from bin/tests have been removed: bin/tests/optional and bin/tests/pkcs11 - The text files generated from the MD files have been removed, the MarkDown has been designed to be readable by both humans and computers - The xsl header is now generated by a simple sed command instead of perl helper - The <irs/platform.h> header has been removed - cleanups of configure.ac script to make it more simpler, addition of multiple macros (there's still work to be done though) - the tarball can now be prepared with `make dist` - the system tests are partially able to run in oot build Here's a list of unfinished work that needs to be completed in subsequent merge requests: - `make distcheck` doesn't yet work (because of system tests oot run is not yet finished) - documentation is not yet built, there's a different merge request with docbook to sphinx-build rst conversion that needs to be rebased and adapted on top of the automake - msvc build is non functional yet and we need to decide whether we will just cross-compile bind9 using mingw-w64 or fix the msvc build - contributed dlz modules are not included neither in the autoconf nor automake
211 lines
6.6 KiB
Bash
211 lines
6.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
pzone=parent.nil pfile=parent.db
|
|
czone=child.parent.nil cfile=child.db
|
|
status=0
|
|
n=1
|
|
|
|
echo_i "setting key timers"
|
|
$SETTIME -A now+15s `cat rolling.key` > /dev/null
|
|
|
|
inact=$(keyfile_to_key_id "$(cat inact.key)")
|
|
ksk=$(keyfile_to_key_id "$(cat ksk.key)")
|
|
pending=$(keyfile_to_key_id "$(cat pending.key)")
|
|
postrev=$(keyfile_to_key_id "$(cat postrev.key)")
|
|
prerev=$(keyfile_to_key_id "$(cat prerev.key)")
|
|
rolling=$(keyfile_to_key_id "$(cat rolling.key)")
|
|
standby=$(keyfile_to_key_id "$(cat standby.key)")
|
|
zsk=$(keyfile_to_key_id "$(cat zsk.key)")
|
|
|
|
echo_i "signing zones"
|
|
$SIGNER -Sg -o $czone $cfile > /dev/null
|
|
$SIGNER -Sg -o $pzone $pfile > /dev/null
|
|
|
|
awk '$2 ~ /RRSIG/ {
|
|
type = $3;
|
|
getline;
|
|
id = $3;
|
|
if ($4 ~ /'${czone}'/) {
|
|
print type, id
|
|
}
|
|
}' < ${cfile}.signed > sigs
|
|
|
|
awk '$2 ~ /DNSKEY/ {
|
|
flags = $3;
|
|
while ($0 !~ /key id =/)
|
|
getline;
|
|
id = $NF;
|
|
print flags, id;
|
|
}' < ${cfile}.signed > keys
|
|
|
|
echo_i "checking that KSK signed DNSKEY only ($n)"
|
|
ret=0
|
|
grep "DNSKEY $ksk"'$' sigs > /dev/null || ret=1
|
|
grep "SOA $ksk"'$' sigs > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that ZSK signed ($n)"
|
|
ret=0
|
|
grep "SOA $zsk"'$' sigs > /dev/null || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that standby ZSK did not sign ($n)"
|
|
ret=0
|
|
grep " $standby"'$' sigs > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that inactive key did not sign ($n)"
|
|
ret=0
|
|
grep " $inact"'$' sigs > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that pending key was not published ($n)"
|
|
ret=0
|
|
grep " $pending"'$' keys > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that standby KSK did not sign but is delegated ($n)"
|
|
ret=0
|
|
grep " $rolling"'$' sigs > /dev/null && ret=1
|
|
grep " $rolling"'$' keys > /dev/null || ret=1
|
|
egrep "DS[ ]*$rolling[ ]" ${pfile}.signed > /dev/null || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that key was revoked ($n)"
|
|
ret=0
|
|
grep " $prerev"'$' keys > /dev/null && ret=1
|
|
grep " $postrev"'$' keys > /dev/null || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking that revoked key self-signed ($n)"
|
|
ret=0
|
|
grep "DNSKEY $postrev"'$' sigs > /dev/null || ret=1
|
|
grep "SOA $postrev"'$' sigs > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "waiting 20 seconds for key changes to occur"
|
|
sleep 20
|
|
|
|
echo_i "re-signing zone"
|
|
$SIGNER -Sg -o $czone -f ${cfile}.new ${cfile}.signed > /dev/null
|
|
|
|
echo_i "checking that standby KSK is now active ($n)"
|
|
ret=0
|
|
grep "DNSKEY $rolling"'$' sigs > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking update of an old-style key ($n)"
|
|
ret=0
|
|
# printing metadata should not work with an old-style key
|
|
$SETTIME -pall `cat oldstyle.key` > /dev/null 2>&1 && ret=1
|
|
$SETTIME -f `cat oldstyle.key` > /dev/null 2>&1 || ret=1
|
|
# but now it should
|
|
$SETTIME -pall `cat oldstyle.key` > /dev/null 2>&1 || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking warning about permissions change on key with dnssec-settime ($n)"
|
|
uname=`uname -o 2> /dev/null`
|
|
if [ Cygwin == "$uname" ]; then
|
|
echo_i "Cygwin detected, skipping"
|
|
else
|
|
ret=0
|
|
# settime should print a warning about changing the permissions
|
|
chmod 644 `cat oldstyle.key`.private
|
|
$SETTIME -P none `cat oldstyle.key` > settime1.test$n 2>&1 || ret=1
|
|
grep "warning: Permissions on the file.*have changed" settime1.test$n > /dev/null 2>&1 || ret=1
|
|
$SETTIME -P none `cat oldstyle.key` > settime2.test$n 2>&1 || ret=1
|
|
grep "warning: Permissions on the file.*have changed" settime2.test$n > /dev/null 2>&1 && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
fi
|
|
|
|
echo_i "checking warning about delete date < inactive date with dnssec-settime ($n)"
|
|
ret=0
|
|
# settime should print a warning about delete < inactive
|
|
$SETTIME -I now+15s -D now `cat oldstyle.key` > tmp.out 2>&1 || ret=1
|
|
grep "warning" tmp.out > /dev/null 2>&1 || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking no warning about delete date < inactive date with dnssec-settime when delete date is unset ($n)"
|
|
ret=0
|
|
$SETTIME -D none `cat oldstyle.key` > tmp.out 2>&1 || ret=1
|
|
$SETTIME -p all `cat oldstyle.key` > tmp.out 2>&1 || ret=1
|
|
grep "warning" tmp.out > /dev/null 2>&1 && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking warning about delete date < inactive date with dnssec-keygen ($n)"
|
|
ret=0
|
|
# keygen should print a warning about delete < inactive
|
|
$KEYGEN -q -a rsasha1 -I now+15s -D now $czone > tmp.out 2>&1 || ret=1
|
|
grep "warning" tmp.out > /dev/null 2>&1 || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking correct behavior setting activation without publication date ($n)"
|
|
ret=0
|
|
key=`$KEYGEN -q -a rsasha1 -A +1w $czone`
|
|
pub=`$SETTIME -upP $key | awk '{print $2}'`
|
|
act=`$SETTIME -upA $key | awk '{print $2}'`
|
|
[ $pub -eq $act ] || ret=1
|
|
key=`$KEYGEN -q -a rsasha1 -A +1w -i 1d $czone`
|
|
pub=`$SETTIME -upP $key | awk '{print $2}'`
|
|
act=`$SETTIME -upA $key | awk '{print $2}'`
|
|
[ $pub -lt $act ] || ret=1
|
|
key=`$KEYGEN -q -a rsasha1 -A +1w -P never $czone`
|
|
pub=`$SETTIME -upP $key | awk '{print $2}'`
|
|
[ $pub = "UNSET" ] || ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "checking calculation of dates for a successor key ($n)"
|
|
ret=0
|
|
oldkey=`$KEYGEN -a RSASHA1 -q $czone`
|
|
newkey=`$KEYGEN -a RSASHA1 -q $czone`
|
|
$SETTIME -A -2d -I +2d $oldkey > settime1.test$n 2>&1 || ret=1
|
|
$SETTIME -i 1d -S $oldkey $newkey > settime2.test$n 2>&1 || ret=1
|
|
$SETTIME -pA $newkey | grep "1970" > /dev/null && ret=1
|
|
n=`expr $n + 1`
|
|
if [ $ret != 0 ]; then echo_i "failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo_i "exit status: $status"
|
|
[ $status -eq 0 ] || exit 1
|