From: Eric Bollengier Date: Tue, 26 May 2009 13:45:05 +0000 (+0000) Subject: ebl Apply Steve Polyack patch to add DirSourceAddress and FDSourceAddress X-Git-Tag: Release-7.0.0~3005 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a0fe515f34a5b71752a1d143844bb4cbc94516e5;p=bacula%2Fbacula ebl Apply Steve Polyack patch to add DirSourceAddress and FDSourceAddress directives. That permits to choose the outgoing interface. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8864 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/regress/DartTestfile.txt.in b/regress/DartTestfile.txt.in index da0b92b837..c3c3f666e9 100644 --- a/regress/DartTestfile.txt.in +++ b/regress/DartTestfile.txt.in @@ -57,6 +57,7 @@ ADD_TEST(disk:2drive-concurrent-test "@regressdir@/tests/2drive-concurrent-test" ADD_TEST(disk:2drive-incremental-2disk "@regressdir@/tests/2drive-incremental-2disk") ADD_TEST(disk:2drive-swap-test "@regressdir@/tests/2drive-swap-test") ADD_TEST(disk:2drive-2job-test "@regressdir@/tests/2drive-2job-test") +ADD_TEST(disk:source-addr-test "@regressdir@/tests/source-addr-test") ADD_TEST(disk:stats-test "@regressdir@/tests/stats-test") ADD_TEST(disk:three-pool-test "@regressdir@/tests/three-pool-test") ADD_TEST(disk:tls-test "@regressdir@/tests/tls-test") diff --git a/regress/all-disk-tests b/regress/all-disk-tests index 4de54856d2..f9b036071b 100755 --- a/regress/all-disk-tests +++ b/regress/all-disk-tests @@ -42,6 +42,7 @@ nice tests/restore2-by-file-test nice tests/restore-by-file-test nice tests/restore-disk-seek-test nice tests/runscript-test +nice tests/source-addr-test nice tests/stats-test nice tests/six-vol-test nice tests/span-vol-test diff --git a/regress/tests/source-addr-test b/regress/tests/source-addr-test new file mode 100755 index 0000000000..060b9110c5 --- /dev/null +++ b/regress/tests/source-addr-test @@ -0,0 +1,110 @@ +#!/bin/sh +# +# Run a simple backup of the Bacula build directory +# then restore it. +# +TestName="source-addr-test" +JobName=backup +. scripts/functions + +scripts/cleanup +scripts/copy-confs + +# +# Zap out any schedule in default conf file so that +# it doesn't start during our test +# +outf="tmp/sed_tmp" +echo "s% Schedule =%# Schedule =%g" >${outf} +cp $scripts/bacula-dir.conf $tmp/1 +sed -f ${outf} $tmp/1 >$scripts/bacula-dir.conf + +PATH=$PATH:/sbin:/usr/sbin +# +# Deduce a primary IP address by examining +# the interface defined by INTERFACE= +# +os=`uname` +if [ $os = 'FreeBSD' ]; then + INTERFACE=bge0 + IP=`ifconfig ${INTERFACE} | perl -ne '/inet (.+?) / && print $1'` +elif [ $os = 'Linux' ]; then + INTERFACE=eth0 + IP=`ifconfig ${INTERFACE} | perl -ne '/inet addr:(.+?) / && print $1'` +else + echo "Can't run this test on $os" + exit 0 +fi +outf="tmp/sed_tmp" +echo "s/PidDirectory/DirSourceAddress=$IP; PidDirectory/g" > $outf +echo "s/Address =/Address = 127.0.0.1 #/g" >> $outf +cp $scripts/bacula-dir.conf $tmp/1 +sed -f ${outf} ${cwd}/tmp/1 > $scripts/bacula-dir.conf + +# Set source address on the FD as well +echo "s/Pid Directory/FDSourceAddress=$IP; Pid Directory/g" >$outf +cp $scripts/bacula-fd.conf $tmp/2 +sed -f ${outf} ${cwd}/tmp/2 > $scripts/bacula-fd.conf + +DIRPORT=$BASEPORT +FDPORT=$(($BASEPORT + 1)) +SDPORT=$(($BASEPORT + 2)) + +change_jobname Client1 $JobName +start_test + +cat <${cwd}/tmp/bconcmds +@output /dev/null +messages +@$out ${cwd}/tmp/log1.out +@#label volume=TestVolume001 storage=File pool=Default +@#setdebug level=100 storage=File +run job=$JobName yes +@sleep 3 +messages +quit +END_OF_DATA + +run_bacula + +print_debug "Connections to SD sourced from ${IP}:" +netstat -tan | grep -e "127.0.0.1(.|:)$SDPORT .* ${IP}" > $tmp/log3.out +if [ $? -ne 0 ]; then + bstat=2 + print_debug "Couldn't detect a connection to the SD sourced from SourceAddress ${IP}" +fi + +print_debug "Connections to FD sourced from ${IP}:" +netstat -tan | grep -e "127.0.0.1(.|:)$FDPORT .* ${IP}" >> $tmp/log3.out +if [ $? -ne 0 ]; then + bstat=2 + print_debug "Couldn't detect a connection to the FD sourced from SourceAddress ${IP}" +fi + + +cat <${cwd}/tmp/bconcmds +@output /dev/null +messages +@$out ${cwd}/tmp/log1.out +label volume=TestVolume001 storage=File pool=Default +@#setdebug level=100 storage=File +wait +messages +@# +@# now do a restore +@# +@$out ${cwd}/tmp/log2.out +restore where=${cwd}/tmp/bacula-restores select all done +yes +wait +messages +@$out +quit +END_OF_DATA + +run_bconsole +check_for_zombie_jobs storage=File +stop_bacula +check_two_logs +check_restore_diff +end_test