mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-04 17:24:47 -04:00
453 lines
13 KiB
Bash
453 lines
13 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.
|
|
|
|
if test -n "$PERL"
|
|
then
|
|
if $PERL -e "use IO::Socket::INET6;" 2> /dev/null
|
|
then
|
|
TESTSOCK6="$PERL $TOP/bin/tests/system/testsock6.pl"
|
|
else
|
|
TESTSOCK6=false
|
|
fi
|
|
else
|
|
TESTSOCK6=false
|
|
fi
|
|
|
|
export LANG=C
|
|
|
|
. ${TOP}/version
|
|
|
|
#
|
|
# Common lists of system tests to run.
|
|
#
|
|
# The "stress" test is not run by default since it creates enough
|
|
# load on the machine to make it unusable to other users.
|
|
# The "dialup", "delzone", and "dupsigs" tests are also not run by
|
|
# default because they take a very long time to complete.
|
|
#
|
|
# The following tests are hard-coded to use ports 5300 and 9953. For
|
|
# this reason, these must be run sequentially.
|
|
#
|
|
# Sequential tests that only run on unix/linux should be added to
|
|
# SEQUENTIAL_UNIX in conf.sh.in; those that only run on windows should
|
|
# be added to SEQUENTIAL_WINDOWS in conf.sh.win32.
|
|
#
|
|
SEQUENTIAL_COMMON="ecdsa eddsa tkey"
|
|
|
|
#
|
|
# These tests can use ports assigned by the caller (other than 5300
|
|
# and 9953). Because separate blocks of ports can be used for teach
|
|
# test, these tests can be run in parallel.
|
|
#
|
|
# Parallel tests that only run on unix/linux should be added to
|
|
# PARALLEL_UNIX in conf.sh.in; those that only run on windows should
|
|
# be added to PARALLEL_WINDOWS in conf.sh.win32.
|
|
#
|
|
# Note: some of the longer-running tests such as serve-stale and
|
|
# rpzrecurse are scheduled first, in order to get more benefit from
|
|
# parallelism.
|
|
#
|
|
PARALLEL_COMMON="dnssec rpzrecurse serve-stale \
|
|
acl additional addzone allow-query auth autosign \
|
|
builtin cacheclean case catz cds chain \
|
|
checkconf checknames checkzone \
|
|
cookie database digdelv dlv dlz dlzexternal \
|
|
dns64 dscp dsdigest dyndb \
|
|
ednscompliance emptyzones \
|
|
fetchlimit filter-aaaa formerr forward \
|
|
geoip2 glue idna inline integrity ixfr \
|
|
keepalive legacy limits \
|
|
masterfile masterformat metadata mirror mkeys \
|
|
names notify nslookup nsupdate nzd2nzf \
|
|
padding pending pipelined qmin \
|
|
reclimit redirect resolver rndc rootkeysentinel rpz \
|
|
rrchecker rrl rrsetorder rsabigexponent runtime \
|
|
sfcache smartsign sortlist \
|
|
spf staticstub statistics statschannel stub synthfromdnssec \
|
|
tcp tools tsig tsiggss ttl \
|
|
unknown upforwd verify views wildcard \
|
|
xfer xferquota zero zonechecks"
|
|
|
|
#
|
|
# Set up color-coded test output
|
|
#
|
|
if [ ${SYSTEMTEST_FORCE_COLOR:-0} -eq 1 ] || test -t 1 && type tput > /dev/null 2>&1 && tput setaf 7 > /dev/null 2>&1 ; then
|
|
COLOR_END=`tput setaf 4` # blue
|
|
COLOR_FAIL=`tput setaf 1` # red
|
|
COLOR_INFO=`tput bold` # bold
|
|
COLOR_NONE=`tput sgr0`
|
|
COLOR_PASS=`tput setaf 2` # green
|
|
COLOR_START=`tput setaf 4` # blue
|
|
COLOR_WARN=`tput setaf 3` # yellow
|
|
else
|
|
# set to empty strings so printf succeeds
|
|
COLOR_END=''
|
|
COLOR_FAIL=''
|
|
COLOR_INFO=''
|
|
COLOR_NONE=''
|
|
COLOR_PASS=''
|
|
COLOR_START=''
|
|
COLOR_WARN=''
|
|
fi
|
|
|
|
if type printf > /dev/null 2>&1
|
|
then
|
|
echofail () {
|
|
printf "${COLOR_FAIL}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
echowarn () {
|
|
printf "${COLOR_WARN}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
echopass () {
|
|
printf "${COLOR_PASS}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
echoinfo () {
|
|
printf "${COLOR_INFO}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
echostart () {
|
|
printf "${COLOR_START}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
echoend () {
|
|
printf "${COLOR_END}%s${COLOR_NONE}\n" "$*"
|
|
}
|
|
else
|
|
echofail () {
|
|
echo "$*"
|
|
}
|
|
echowarn () {
|
|
echo "$*"
|
|
}
|
|
echopass () {
|
|
echo "$*"
|
|
}
|
|
echoinfo () {
|
|
echo "$*"
|
|
}
|
|
echostart () {
|
|
echo "$*"
|
|
}
|
|
echoend () {
|
|
echo "$*"
|
|
}
|
|
fi
|
|
|
|
SYSTESTDIR="`basename $PWD`"
|
|
|
|
echo_i() {
|
|
echo "$@" | while read __LINE ; do
|
|
echoinfo "I:$SYSTESTDIR:$__LINE"
|
|
done
|
|
}
|
|
|
|
echo_ic() {
|
|
echo "$@" | while read __LINE ; do
|
|
echoinfo "I:$SYSTESTDIR: $__LINE"
|
|
done
|
|
}
|
|
|
|
cat_i() {
|
|
while read __LINE ; do
|
|
echoinfo "I:$SYSTESTDIR:$__LINE"
|
|
done
|
|
}
|
|
|
|
echo_d() {
|
|
echo "$@" | while read __LINE ; do
|
|
echoinfo "D:$SYSTESTDIR:$__LINE"
|
|
done
|
|
}
|
|
|
|
cat_d() {
|
|
while read __LINE ; do
|
|
echoinfo "D:$SYSTESTDIR:$__LINE"
|
|
done
|
|
}
|
|
|
|
digcomp() {
|
|
output=`$PERL $SYSTEMTESTTOP/digcomp.pl "$@"`
|
|
result=$?
|
|
[ -n "$output" ] && { echo "digcomp failed:"; echo "$output"; } | cat_i
|
|
return $result
|
|
}
|
|
|
|
#
|
|
# Useful variables in test scripts
|
|
#
|
|
|
|
# Default algorithm for testing.
|
|
DEFAULT_ALGORITHM=ECDSAP256SHA256
|
|
DEFAULT_ALGORITHM_NUMBER=13
|
|
DEFAULT_BITS=256
|
|
|
|
# This is an alternative algorithm for test cases that require more than
|
|
# one algorithm (for example algorithm rollover). Must be different from
|
|
# DEFAULT_ALGORITHM.
|
|
ALTERNATIVE_ALGORITHM=RSASHA256
|
|
ALTERNATIVE_ALGORITHM_NUMBER=8
|
|
ALTERNATIVE_BITS=1280
|
|
|
|
# This is an algorithm that is used for tests against the
|
|
# "disable-algorithms" configuration option. Must be different from above
|
|
# algorithms.
|
|
DISABLED_ALGORITHM=ECDSAP384SHA384
|
|
DISABLED_ALGORITHM_NUMBER=14
|
|
DISABLED_BITS=384
|
|
|
|
#
|
|
# Useful functions in test scripts
|
|
#
|
|
|
|
# keyfile_to_keys_section: helper function for keyfile_to_*_keys() which
|
|
# converts keyfile data into a configuration section using the supplied
|
|
# parameters
|
|
keyfile_to_keys_section() {
|
|
section_name=$1
|
|
key_prefix=$2
|
|
shift
|
|
shift
|
|
echo "$section_name {"
|
|
for keyname in $*; do
|
|
awk '!/^; /{
|
|
printf "\t\""$1"\" "
|
|
printf "'"$key_prefix "'"
|
|
printf $4 " " $5 " " $6 " \""
|
|
for (i=7; i<=NF; i++) printf $i
|
|
printf "\";\n"
|
|
}' $keyname.key
|
|
done
|
|
echo "};"
|
|
}
|
|
|
|
# keyfile_to_static_keys: convert key data contained in the keyfile(s)
|
|
# provided to a *static* "dnssec-keys" section suitable for including in a
|
|
# resolver's configuration file
|
|
keyfile_to_static_keys() {
|
|
keyfile_to_keys_section "dnssec-keys" "static-key" $*
|
|
}
|
|
|
|
# keyfile_to_initial_keys: convert key data contained in the keyfile(s)
|
|
# provided to an *initialzing* "dnssec-keys" section suitable for including
|
|
# in a resolver's configuration file
|
|
keyfile_to_initial_keys() {
|
|
keyfile_to_keys_section "dnssec-keys" "initial-key" $*
|
|
}
|
|
|
|
# keyfile_to_key_id: convert a key file name to a key ID
|
|
#
|
|
# For a given key file name (e.g. "Kexample.+013+06160") provided as $1,
|
|
# print the key ID with leading zeros stripped ("6160" for the
|
|
# aforementioned example).
|
|
keyfile_to_key_id() {
|
|
echo "$1" | sed "s/.*+0\{0,4\}//"
|
|
}
|
|
|
|
# nextpart*() - functions for reading files incrementally
|
|
#
|
|
# These functions aim to facilitate looking for (or waiting for)
|
|
# messages which may be logged more than once throughout the lifetime of
|
|
# a given named instance by outputting just the part of the file which
|
|
# has been appended since the last time we read it.
|
|
#
|
|
# Calling some of these functions causes temporary *.prev files to be
|
|
# created that need to be cleaned up manually (usually by a given system
|
|
# test's clean.sh script).
|
|
#
|
|
# Note that unlike other nextpart*() functions, nextpartread() is not
|
|
# meant to be directly used in system tests; its sole purpose is to
|
|
# reduce code duplication below.
|
|
#
|
|
# A quick usage example:
|
|
#
|
|
# $ echo line1 > named.log
|
|
# $ echo line2 >> named.log
|
|
# $ nextpart named.log
|
|
# line1
|
|
# line2
|
|
# $ echo line3 >> named.log
|
|
# $ nextpart named.log
|
|
# line3
|
|
# $ nextpart named.log
|
|
# $ echo line4 >> named.log
|
|
# $ nextpartpeek named.log
|
|
# line4
|
|
# $ nextpartpeek named.log
|
|
# line4
|
|
# $ nextpartreset named.log
|
|
# $ nextpartpeek named.log
|
|
# line1
|
|
# line2
|
|
# line3
|
|
# line4
|
|
# $ nextpart named.log
|
|
# line1
|
|
# line2
|
|
# line3
|
|
# line4
|
|
# $ nextpart named.log
|
|
# $
|
|
|
|
# nextpartreset: reset the marker used by nextpart() and nextpartpeek()
|
|
# so that it points to the start of the given file
|
|
nextpartreset() {
|
|
echo "0" > $1.prev
|
|
}
|
|
|
|
# nextpartread: read everything that's been appended to a file since the
|
|
# last time nextpart() was called and print it to stdout, print the
|
|
# total number of lines read from that file so far to stderr
|
|
nextpartread() {
|
|
[ -f $1.prev ] || nextpartreset $1
|
|
prev=`cat $1.prev`
|
|
awk "NR > $prev "'{ print }
|
|
END { print NR > "/dev/stderr" }' $1
|
|
}
|
|
|
|
# nextpart: read everything that's been appended to a file since the
|
|
# last time nextpart() was called
|
|
nextpart() {
|
|
nextpartread $1 2> $1.prev.tmp
|
|
mv $1.prev.tmp $1.prev
|
|
}
|
|
|
|
# nextpartpeek: read everything that's been appended to a file since the
|
|
# last time nextpart() was called
|
|
nextpartpeek() {
|
|
nextpartread $1 2> /dev/null
|
|
}
|
|
|
|
rndc_reload() {
|
|
echo_i "`$RNDC -c ../common/rndc.conf -s $2 -p ${CONTROLPORT} reload $3 2>&1 | sed 's/^/'$1' /'`"
|
|
# reloading single zone is synchronous, if we're reloading whole server
|
|
# we need to wait for reload to finish
|
|
if [ -z "$3" ]; then
|
|
for __try in 0 1 2 3 4 5 6 7 8 9; do
|
|
$RNDC -c ../common/rndc.conf -s $2 -p ${CONTROLPORT} status | grep "reload/reconfig in progress" > /dev/null || break
|
|
sleep 1
|
|
done
|
|
fi
|
|
}
|
|
|
|
rndc_reconfig() {
|
|
echo_i "`$RNDC -c ../common/rndc.conf -s $2 -p ${CONTROLPORT} reconfig 2>&1 | sed 's/^/'$1' /'`"
|
|
for __try in 0 1 2 3 4 5 6 7 8 9; do
|
|
$RNDC -c ../common/rndc.conf -s $2 -p ${CONTROLPORT} status | grep "reload/reconfig in progress" > /dev/null || break
|
|
sleep 1
|
|
done
|
|
}
|
|
|
|
# get_dig_xfer_stats: extract transfer statistics from dig output stored
|
|
# in $1, converting them to a format used by some system tests.
|
|
get_dig_xfer_stats() {
|
|
LOGFILE="$1"
|
|
sed -n "s/^;; XFR size: .*messages \([0-9][0-9]*\).*/messages=\1/p" "${LOGFILE}"
|
|
sed -n "s/^;; XFR size: \([0-9][0-9]*\) records.*/records=\1/p" "${LOGFILE}"
|
|
sed -n "s/^;; XFR size: .*bytes \([0-9][0-9]*\).*/bytes=\1/p" "${LOGFILE}"
|
|
}
|
|
|
|
# get_named_xfer_stats: from named log file $1, extract transfer
|
|
# statistics for the last transfer for peer $2 and zone $3 (from a log
|
|
# message which has to contain the string provided in $4), converting
|
|
# them to a format used by some system tests.
|
|
get_named_xfer_stats() {
|
|
LOGFILE="$1"
|
|
PEER="`echo $2 | sed 's/\./\\\\./g'`"
|
|
ZONE="`echo $3 | sed 's/\./\\\\./g'`"
|
|
MESSAGE="$4"
|
|
grep " ${PEER}#.*${MESSAGE}:" "${LOGFILE}" | \
|
|
sed -n "s/.* '${ZONE}\/.* \([0-9][0-9]*\) messages.*/messages=\1/p" | tail -1
|
|
grep " ${PEER}#.*${MESSAGE}:" "${LOGFILE}" | \
|
|
sed -n "s/.* '${ZONE}\/.* \([0-9][0-9]*\) records.*/records=\1/p" | tail -1
|
|
grep " ${PEER}#.*${MESSAGE}:" "${LOGFILE}" | \
|
|
sed -n "s/.* '${ZONE}\/.* \([0-9][0-9]*\) bytes.*/bytes=\1/p" | tail -1
|
|
}
|
|
|
|
# copy_setports - Copy Configuration File and Replace Ports
|
|
#
|
|
# Convenience function to copy a configuration file, replacing the tokens
|
|
# QUERYPORT, CONTROLPORT and EXTRAPORT[1-8] with the values of the equivalent
|
|
# environment variables. (These values are set by "run.sh", which calls the
|
|
# scripts invoking this function.)
|
|
#
|
|
# Usage:
|
|
# copy_setports infile outfile
|
|
#
|
|
copy_setports() {
|
|
# The indirect method of handling the substitution of the PORT variables
|
|
# (defining "atsign" then substituting for it in the "sed" statement) is
|
|
# required to prevent the "Configure" script (in the win32utils/ directory)
|
|
# from replacing the <at>PORT<at> substitution tokens when it processes
|
|
# this file and produces conf.sh.
|
|
atsign="@"
|
|
sed -e "s/${atsign}PORT${atsign}/${PORT}/g" \
|
|
-e "s/${atsign}EXTRAPORT1${atsign}/${EXTRAPORT1}/g" \
|
|
-e "s/${atsign}EXTRAPORT2${atsign}/${EXTRAPORT2}/g" \
|
|
-e "s/${atsign}EXTRAPORT3${atsign}/${EXTRAPORT3}/g" \
|
|
-e "s/${atsign}EXTRAPORT4${atsign}/${EXTRAPORT4}/g" \
|
|
-e "s/${atsign}EXTRAPORT5${atsign}/${EXTRAPORT5}/g" \
|
|
-e "s/${atsign}EXTRAPORT6${atsign}/${EXTRAPORT6}/g" \
|
|
-e "s/${atsign}EXTRAPORT7${atsign}/${EXTRAPORT7}/g" \
|
|
-e "s/${atsign}EXTRAPORT8${atsign}/${EXTRAPORT8}/g" \
|
|
-e "s/${atsign}CONTROLPORT${atsign}/${CONTROLPORT}/g" \
|
|
-e "s/${atsign}DEFAULT_ALGORITHM${atsign}/${DEFAULT_ALGORITHM}/g" \
|
|
-e "s/${atsign}DEFAULT_ALGORITHM_NUMBER${atsign}/${DEFAULT_ALGORITHM_NUMBER}/g" \
|
|
-e "s/${atsign}DEFAULT_BITS${atsign}/${DEFAULT_BITS}/g" \
|
|
-e "s/${atsign}ALTERNATIVE_ALGORITHM${atsign}/${ALTERNATIVE_ALGORITHM}/g" \
|
|
-e "s/${atsign}ALTERNATIVE_ALGORITHM_NUMBER${atsign}/${ALTERNATIVE_ALGORITHM_NUMBER}/g" \
|
|
-e "s/${atsign}ALTERNATIVE_BITS${atsign}/${ALTERNATIVE_BITS}/g" \
|
|
-e "s/${atsign}DISABLED_ALGORITHM${atsign}/${DISABLED_ALGORITHM}/g" \
|
|
-e "s/${atsign}DISABLED_ALGORITHM_NUMBER${atsign}/${DISABLED_ALGORITHM_NUMBER}/g" \
|
|
-e "s/${atsign}DISABLED_BITS${atsign}/${DISABLED_BITS}/g" \
|
|
$1 > $2
|
|
}
|
|
|
|
#
|
|
# Export command paths
|
|
#
|
|
export ARPANAME
|
|
export BIGKEY
|
|
export CDS
|
|
export CHECKZONE
|
|
export DESCRIPTION
|
|
export DIG
|
|
export FEATURETEST
|
|
export FSTRM_CAPTURE
|
|
export GENCHECK
|
|
export JOURNALPRINT
|
|
export KEYCREATE
|
|
export KEYDELETE
|
|
export KEYFRLAB
|
|
export KEYGEN
|
|
export KEYSETTOOL
|
|
export KEYSIGNER
|
|
export KRB5_CONFIG
|
|
export MAKEJOURNAL
|
|
export MDIG
|
|
export NAMED
|
|
export NSEC3HASH
|
|
export NSLOOKUP
|
|
export NSUPDATE
|
|
export NZD2NZF
|
|
export PERL
|
|
export PIPEQUERIES
|
|
export PK11DEL
|
|
export PK11GEN
|
|
export PK11LIST
|
|
export PSSUSPEND
|
|
export PYTHON
|
|
export RESOLVE
|
|
export RNDC
|
|
export RRCHECKER
|
|
export SAMPLEUPDATE
|
|
export SIGNER
|
|
export SUBDIRS
|
|
export TESTSOCK6
|
|
export TSIGKEYGEN
|
|
export WIRETEST
|