#!/bin/sh # # Copyright (C) 2011, 2012, 2014-2017 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # $Id: tests.sh,v 1.4 2011/06/10 01:32:37 each Exp $ SYSTEMTESTTOP=.. . $SYSTEMTESTTOP/conf.sh DIGOPTS="+tcp +noadd +nosea +nostat +noquest +nocomm +nocmd" DIGCMD="$DIG $DIGOPTS @10.53.0.2 -p 5300" RNDCCMD="$RNDC -s 10.53.0.2 -p 9953 -c ../common/rndc.conf" status=0 n=0 n=`expr $n + 1` echo "I:preparing ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > /dev/null 2>&1 < /dev/null && break sleep 1 done grep "addition 1" ns2/nil.db > /dev/null 2>&1 || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking journal file is still present ($n)" ret=0 [ -s ns2/nil.db.jnl ] || { echo "I: 'test -s ns2/nil.db.jnl' failed when it shouldn't have"; ret=1; } if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking zone not writable ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > /dev/null 2>&1 < dig.out.1.test$n grep 'addition 2' dig.out.1.test$n >/dev/null && ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` echo "I:rndc thaw" $RNDCCMD thaw | sed 's/^/I:ns2 /' n=`expr $n + 1` echo "I:checking zone now writable ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.1.test$n 2>&1 < dig.out.1.test$n grep 'addition 3' dig.out.1.test$n >/dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` echo "I:rndc sync" ret=0 $RNDCCMD sync nil | sed 's/^/I:ns2 /' n=`expr $n + 1` echo "I:checking zone was dumped ($n)" ret=0 for i in 1 2 3 4 5 6 7 8 9 10 do grep "addition 3" ns2/nil.db > /dev/null && break sleep 1 done grep "addition 3" ns2/nil.db > /dev/null 2>&1 || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking journal file is still present ($n)" ret=0 [ -s ns2/nil.db.jnl ] || { echo "I: 'test -s ns2/nil.db.jnl' failed when it shouldn't have"; ret=1; } if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking zone is still writable ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.1.test$n 2>&1 < dig.out.1.test$n grep 'addition 4' dig.out.1.test$n > /dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` echo "I:rndc sync -clean" ret=0 $RNDCCMD sync -clean nil | sed 's/^/I:ns2 /' n=`expr $n + 1` echo "I:checking zone was dumped ($n)" ret=0 for i in 1 2 3 4 5 6 7 8 9 10 do grep "addition 4" ns2/nil.db > /dev/null && break sleep 1 done grep "addition 4" ns2/nil.db > /dev/null 2>&1 || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking journal file is deleted ($n)" ret=0 [ -s ns2/nil.db.jnl ] && { echo "I: 'test -s ns2/nil.db.jnl' failed when it shouldn't have"; ret=1; } if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking zone is still writable ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > /dev/null 2>&1 < dig.out.1.test$n grep 'addition 4' dig.out.1.test$n >/dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking other journal files not removed ($n)" ret=0 [ -s ns2/other.db.jnl ] || { echo "I: 'test -s ns2/other.db.jnl' failed when it shouldn't have"; ret=1; } if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` echo "I:cleaning all zones" $RNDCCMD sync -clean | sed 's/^/I:ns2 /' n=`expr $n + 1` echo "I:checking all journals removed ($n)" ret=0 [ -s ns2/nil.db.jnl ] && { echo "I: 'test -s ns2/nil.db.jnl' succeeded when it shouldn't have"; ret=1; } [ -s ns2/other.db.jnl ] && { echo "I: 'test -s ns2/other.db.jnl' succeeded when it shouldn't have"; ret=1; } if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking that freezing static zones is not allowed ($n)" ret=0 $RNDCCMD freeze static > rndc.out.1.test$n 2>&1 grep 'not dynamic' rndc.out.1.test$n > /dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking that journal is removed when serial is changed before thaw ($n)" ret=0 sleep 1 $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.1.test$n 2>&1 <&1 | sed 's/^/I:ns2 /' for i in 1 2 3 4 5 6 7 8 9 10 do grep "addition 6" ns2/other.db > /dev/null && break sleep 1 done serial=`awk '$3 == "serial" {print $1}' ns2/other.db` newserial=`expr $serial + 1` sed s/$serial/$newserial/ ns2/other.db > ns2/other.db.new echo 'frozen TXT "frozen addition"' >> ns2/other.db.new mv -f ns2/other.db.new ns2/other.db $RNDCCMD thaw 2>&1 | sed 's/^/I:ns2 /' sleep 1 [ -f ns2/other.db.jnl ] && { echo "I: 'test -f ns2/other.db.jnl' succeeded when it shouldn't have"; ret=1; } $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.2.test$n 2>&1 < dig.out.1.test$n grep 'addition 6' dig.out.1.test$n >/dev/null || ret=1 $DIGCMD text7.other. TXT > dig.out.2.test$n grep 'addition 7' dig.out.2.test$n >/dev/null || ret=1 $DIGCMD frozen.other. TXT > dig.out.3.test$n grep 'frozen addition' dig.out.3.test$n >/dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:checking that journal is kept when ixfr-from-differences is in use ($n)" ret=0 $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.1.test$n 2>&1 <&1 | sed 's/^/I:ns2 /' for i in 1 2 3 4 5 6 7 8 9 10 do grep "addition 6" ns2/nil.db > /dev/null && break sleep 1 done serial=`awk '$3 == "serial" {print $1}' ns2/nil.db` newserial=`expr $serial + 1` sed s/$serial/$newserial/ ns2/nil.db > ns2/nil.db.new echo 'frozen TXT "frozen addition"' >> ns2/nil.db.new mv -f ns2/nil.db.new ns2/nil.db $RNDCCMD thaw 2>&1 | sed 's/^/I:ns2 /' sleep 1 [ -s ns2/nil.db.jnl ] || { echo "I: 'test -s ns2/nil.db.jnl' failed when it shouldn't have"; ret=1; } $NSUPDATE -p 5300 -k ns2/session.key > nsupdate.out.2.test$n 2>&1 < dig.out.1.test$n grep 'addition 6' dig.out.1.test$n > /dev/null || ret=1 $DIGCMD text7.nil. TXT > dig.out.2.test$n grep 'addition 7' dig.out.2.test$n > /dev/null || ret=1 $DIGCMD frozen.nil. TXT > dig.out.3.test$n grep 'frozen addition' dig.out.3.test$n >/dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:test using second key ($n)" ret=0 $RNDC -s 10.53.0.2 -p 9953 -c ns2/secondkey.conf status > /dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:test 'rndc dumpdb' on a empty cache ($n)" ret=0 $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf dumpdb > /dev/null || ret=1 for i in 1 2 3 4 5 6 7 8 9 do tmp=0 grep "Dump complete" ns3/named_dump.db > /dev/null || tmp=1 [ $tmp -eq 0 ] && break sleep 1 done [ $tmp -eq 1 ] && ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:testing rndc with null command ($n)" ret=0 $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:testing rndc with unknown control channel command ($n)" ret=0 $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf obviouslynotacommand >/dev/null 2>&1 && ret=1 # rndc: 'obviouslynotacommand' failed: unknown command if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:testing rndc with querylog command ($n)" ret=0 # first enable it with querylog on option $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf querylog on >/dev/null 2>&1 || ret=1 grep "query logging is now on" ns3/named.run > /dev/null || ret=1 # query for builtin and check if query was logged $DIG @10.53.0.3 -p 5300 -c ch -t txt foo12345.bind > /dev/null || ret 1 grep "query: foo12345.bind CH TXT" ns3/named.run > /dev/null || ret=1 # toggle query logging and check again $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf querylog >/dev/null 2>&1 || ret=1 grep "query logging is now off" ns3/named.run > /dev/null || ret=1 # query for another builtin zone and check if query was logged $DIG @10.53.0.3 -p 5300 -c ch -t txt foo9876.bind > /dev/null || ret 1 grep "query: foo9876.bind CH TXT" ns3/named.run > /dev/null && ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:testing rndc with a token containing a space ($n)" ret=0 $RNDC -s 10.53.0.4 -p 9953 -c ../common/rndc.conf flush '"view with a space"' 2>&1 > rndc.out.1.test$n || ret=1 grep "not found" rndc.out.1.test$n > /dev/null && ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:test 'rndc reconfig' with a broken config ($n)" ret=0 $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf reconfig > /dev/null || ret=1 sleep 1 mv ns3/named.conf ns3/named.conf.save echo "error error error" >> ns3/named.conf $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf reconfig > rndc.out.1.test$n 2>&1 && ret=1 grep "rndc: 'reconfig' failed: unexpected token" rndc.out.1.test$n > /dev/null || ret=1 mv ns3/named.conf.save ns3/named.conf sleep 1 $RNDC -s 10.53.0.3 -p 9953 -c ../common/rndc.conf reconfig > /dev/null || ret=1 sleep 1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:verify that the full command is logged ($n)" ret=0 $RNDCCMD null with extra arguments > /dev/null 2>&1 grep "received control channel command 'null with extra arguments'" ns2/named.run > /dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` n=`expr $n + 1` echo "I:check 'rndc \"\"' is handled ($n)" ret=0 $RNDCCMD "" > rndc.out.1.test$n 2>&1 && ret=1 grep "rndc: '' failed: failure" rndc.out.1.test$n > /dev/null if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret` echo "I:exit status: $status" [ $status -eq 0 ] || exit 1