ctdb-scripts: Remove functions startstop_nfs() and startstop_nfslock()
[Samba.git] / ctdb / tests / eventscripts / scripts / local.sh
blob6bcf08278ae53a8041924b5b482800bfc2e431ad
1 # Hey Emacs, this is a -*- shell-script -*- !!! :-)
3 # Augment PATH with relevant stubs/ directories. We do this by actually
4 # setting PATH, and also by setting $EVENTSCRIPTS_PATH and then
5 # prepending that to $PATH in rc.local to avoid the PATH reset in
6 # functions.
8 EVENTSCRIPTS_PATH=""
10 if [ -d "${TEST_SUBDIR}/stubs" ] ; then
11 EVENTSCRIPTS_PATH="${TEST_SUBDIR}/stubs"
12 case "$EVENTSCRIPTS_PATH" in
13 /*) : ;;
14 *) EVENTSCRIPTS_PATH="${PWD}/${EVENTSCRIPTS_PATH}" ;;
15 esac
18 export EVENTSCRIPTS_PATH
20 PATH="${EVENTSCRIPTS_PATH}:${PATH}"
22 export EVENTSCRIPTS_TESTS_VAR_DIR="${TEST_VAR_DIR}/unit_eventscripts"
23 if [ -d "$EVENTSCRIPTS_TESTS_VAR_DIR" -a \
24 "$EVENTSCRIPTS_TESTS_VAR_DIR" != "/unit_eventscripts" ] ; then
25 rm -r "$EVENTSCRIPTS_TESTS_VAR_DIR"
27 mkdir -p "$EVENTSCRIPTS_TESTS_VAR_DIR"
28 export CTDB_VARDIR="$EVENTSCRIPTS_TESTS_VAR_DIR/ctdb"
30 export CTDB_LOGGING="file:${EVENTSCRIPTS_TESTS_VAR_DIR}/log.ctdb"
31 touch "${CTDB_LOGGING#file:}" || \
32 die "Unable to setup logging for \"$CTDB_LOGGING\""
34 if [ -d "${TEST_SUBDIR}/etc" ] ; then
35 cp -a "${TEST_SUBDIR}/etc" "$EVENTSCRIPTS_TESTS_VAR_DIR"
36 export CTDB_ETCDIR="${EVENTSCRIPTS_TESTS_VAR_DIR}/etc"
37 else
38 die "Unable to setup \$CTDB_ETCDIR"
41 if [ -d "${TEST_SUBDIR}/etc-ctdb" ] ; then
42 cp -prL "${TEST_SUBDIR}/etc-ctdb" "$EVENTSCRIPTS_TESTS_VAR_DIR"
43 export CTDB_BASE="${EVENTSCRIPTS_TESTS_VAR_DIR}/etc-ctdb"
44 else
45 die "Unable to set \$CTDB_BASE"
47 export CTDB_BASE
49 if [ ! -d "${CTDB_BASE}/events.d" ] ; then
50 cat <<EOF
51 ERROR: Directory ${CTDB_BASE}/events.d does not exist.
53 That means that no eventscripts can be tested.
55 One possible explanation:
57 You have CTDB installed via RPMs (or similar), so the regular
58 CTDB_BASE directory is in /etc/ctdb/
60 BUT
62 You have done a regular "configure" and "make install" so the tests
63 are installed under /usr/local/.
65 If so, one possible hack to fix this is to create a symlink:
67 ln -s /etc/ctdb /usr/local/etc/ctdb
69 This is nasty but it works... :-)
70 EOF
71 exit 1
74 ######################################################################
76 if "$TEST_VERBOSE" ; then
77 debug () { echo "$@" ; }
78 else
79 debug () { : ; }
82 ######################################################################
84 # General setup fakery
86 setup_generic ()
88 debug "Setting up shares (3 existing shares)"
89 # Create 3 fake shares/exports.
90 export FAKE_SHARES=""
91 for i in $(seq 1 3) ; do
92 _s="${EVENTSCRIPTS_TESTS_VAR_DIR}/shares/${i}_existing"
93 mkdir -p "$_s"
94 FAKE_SHARES="${FAKE_SHARES}${FAKE_SHARES:+ }${_s}"
95 done
97 export FAKE_PROC_NET_BONDING="$EVENTSCRIPTS_TESTS_VAR_DIR/proc-net-bonding"
98 mkdir -p "$FAKE_PROC_NET_BONDING"
99 rm -f "$FAKE_PROC_NET_BONDING"/*
101 export FAKE_ETHTOOL_LINK_DOWN="$EVENTSCRIPTS_TESTS_VAR_DIR/ethtool-link-down"
102 mkdir -p "$FAKE_ETHTOOL_LINK_DOWN"
103 rm -f "$FAKE_ETHTOOL_LINK_DOWN"/*
105 # This can only have 2 levels. We don't want to resort to usings
106 # something dangerous like "rm -r" setup time.
107 export FAKE_IP_STATE="$EVENTSCRIPTS_TESTS_VAR_DIR/fake-ip-state"
108 mkdir -p "$FAKE_IP_STATE"
109 rm -f "$FAKE_IP_STATE"/*/*
110 rm -f "$FAKE_IP_STATE"/* 2>/dev/null || true
111 rmdir "$FAKE_IP_STATE"/* 2>/dev/null || true
114 export CTDB_DBDIR="${EVENTSCRIPTS_TESTS_VAR_DIR}/db"
115 mkdir -p "${CTDB_DBDIR}/persistent"
117 export FAKE_TDBTOOL_SUPPORTS_CHECK="yes"
118 export FAKE_TDB_IS_OK
119 export FAKE_DATE_OUTPUT
121 export FAKE_NETSTAT_TCP_ESTABLISHED FAKE_TCP_LISTEN FAKE_NETSTAT_UNIX_LISTEN
122 export FAKE_NETSTAT_TCP_ESTABLISHED_FILE=$(mktemp --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
125 tcp_port_down ()
127 for _i ; do
128 debug "Marking TCP port \"${_i}\" as not listening"
129 FAKE_TCP_LISTEN=$(echo "$FAKE_TCP_LISTEN" | sed -r -e "s@[[:space:]]*[\.0-9]+:${_i}@@g")
130 done
133 shares_missing ()
135 _fmt="$1" ; shift
137 # Replace some shares with non-existent ones.
138 _t=""
139 _n=1
140 _nl="
142 export MISSING_SHARES_TEXT=""
143 for _i in $FAKE_SHARES ; do
144 if [ $_n = "$1" ] ; then
145 shift
146 _i="${_i%_existing}_missing"
147 debug "Replacing share $_n with missing share \"$_i\""
148 rmdir "$_i" 2>/dev/null || true
149 MISSING_SHARES_TEXT="${MISSING_SHARES_TEXT}${MISSING_SHARES_TEXT:+${_nl}}"$(printf "$_fmt" "${_i}")
151 _t="${_t}${_t:+ }${_i}"
152 _n=$(($_n + 1))
153 done
154 FAKE_SHARES="$_t"
157 # Setup some fake /proc/net/bonding files with just enough info for
158 # the eventscripts.
160 # arg1 is interface name, arg2 is currently active slave (use "None"
161 # if none), arg3 is MII status ("up" or "down").
162 setup_bond ()
164 _iface="$1"
165 _slave="${2:-${_iface}_sl_0}"
166 _mii_s="${3:-up}"
167 _mii_subs="${4:-${_mii_s:-up}}"
168 echo "Setting $_iface to be a bond with active slave $_slave and MII status $_mii_s"
169 cat >"${FAKE_PROC_NET_BONDING}/$_iface" <<EOF
170 Bonding Mode: IEEE 802.3ad Dynamic link aggregation
171 Currently Active Slave: $_slave
172 # Status of the bond
173 MII Status: $_mii_s
174 # Status of 1st pretend adapter
175 MII Status: $_mii_subs
176 # Status of 2nd pretend adapter
177 MII Status: $_mii_subs
181 ethtool_interfaces_down ()
183 for _i ; do
184 echo "Marking interface $_i DOWN for ethtool"
185 touch "${FAKE_ETHTOOL_LINK_DOWN}/${_i}"
186 done
189 ethtool_interfaces_up ()
191 for _i ; do
192 echo "Marking interface $_i UP for ethtool"
193 rm -f "${FAKE_ETHTOOL_LINK_DOWN}/${_i}"
194 done
197 dump_routes ()
199 echo "# ip rule show"
200 ip rule show
202 ip rule show |
203 while read _p _x _i _x _t ; do
204 # Remove trailing colon after priority/preference.
205 _p="${_p%:}"
206 # Only remove rules that match our priority/preference.
207 [ "$CTDB_PER_IP_ROUTING_RULE_PREF" = "$_p" ] || continue
209 echo "# ip route show table $_t"
210 ip route show table "$_t"
211 done
214 # Copied from 13.per_ip_routing for now... so this is lazy testing :-(
215 ipv4_host_addr_to_net ()
217 _host="$1"
218 _maskbits="$2"
220 # Convert the host address to an unsigned long by splitting out
221 # the octets and doing the math.
222 _host_ul=0
223 for _o in $(export IFS="." ; echo $_host) ; do
224 _host_ul=$(( ($_host_ul << 8) + $_o)) # work around Emacs color bug
225 done
227 # Calculate the mask and apply it.
228 _mask_ul=$(( 0xffffffff << (32 - $_maskbits) ))
229 _net_ul=$(( $_host_ul & $_mask_ul ))
231 # Now convert to a network address one byte at a time.
232 _net=""
233 for _o in $(seq 1 4) ; do
234 _net="$(($_net_ul & 255))${_net:+.}${_net}"
235 _net_ul=$(($_net_ul >> 8))
236 done
238 echo "${_net}/${_maskbits}"
241 ######################################################################
243 # CTDB fakery
245 # Evaluate an expression that probably calls functions or uses
246 # variables from the CTDB functions file. This is used for test
247 # initialisation.
248 eventscript_call ()
251 . "$CTDB_BASE/functions"
252 "$@"
256 # For now this creates the same public addresses each time. However,
257 # it could be made more flexible.
258 setup_public_addresses ()
260 if [ -f "$CTDB_PUBLIC_ADDRESSES" -a \
261 "${CTDB_PUBLIC_ADDRESSES%/*}" = "$EVENTSCRIPTS_TESTS_VAR_DIR" ] ; then
262 rm "$CTDB_PUBLIC_ADDRESSES"
265 export CTDB_PUBLIC_ADDRESSES=$(mktemp \
266 --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR" \
267 "public-addresses-XXXXXXXX")
269 echo "Setting up CTDB_PUBLIC_ADDRESSES=${CTDB_PUBLIC_ADDRESSES}"
270 cat >"$CTDB_PUBLIC_ADDRESSES" <<EOF
271 10.0.0.1/24 dev123
272 10.0.0.2/24 dev123
273 10.0.0.3/24 dev123
274 10.0.0.4/24 dev123
275 10.0.0.5/24 dev123
276 10.0.0.6/24 dev123
277 10.0.1.1/24 dev456
278 10.0.1.2/24 dev456
279 10.0.1.3/24 dev456
283 # Need to cope with ctdb_get_pnn(). If a test changes PNN then it
284 # needs to be using a different state directory, otherwise the wrong
285 # PNN can already be cached in the state directory.
286 ctdb_set_pnn ()
288 export FAKE_CTDB_PNN="$1"
289 echo "Setting up PNN ${FAKE_CTDB_PNN}"
291 export CTDB_VARDIR="$EVENTSCRIPTS_TESTS_VAR_DIR/ctdb/${FAKE_CTDB_PNN}"
292 mkdir -p "$CTDB_VARDIR"
295 setup_ctdb ()
297 setup_generic
299 export FAKE_CTDB_NUMNODES="${1:-3}"
300 echo "Setting up CTDB with ${FAKE_CTDB_NUMNODES} fake nodes"
302 ctdb_set_pnn "${2:-0}"
304 setup_public_addresses
306 export FAKE_CTDB_STATE="$EVENTSCRIPTS_TESTS_VAR_DIR/fake-ctdb"
308 export FAKE_CTDB_EXTRA_CONFIG="$EVENTSCRIPTS_TESTS_VAR_DIR/fake-config.sh"
309 rm -f "$FAKE_CTDB_EXTRA_CONFIG"
311 export FAKE_CTDB_IFACES_DOWN="$FAKE_CTDB_STATE/ifaces-down"
312 mkdir -p "$FAKE_CTDB_IFACES_DOWN"
313 rm -f "$FAKE_CTDB_IFACES_DOWN"/*
315 export FAKE_CTDB_SCRIPTSTATUS="$FAKE_CTDB_STATE/scriptstatus"
316 mkdir -p "$FAKE_CTDB_SCRIPTSTATUS"
317 rm -f "$FAKE_CTDB_SCRIPTSTATUS"/*
319 export CTDB_PARTIALLY_ONLINE_INTERFACES
321 export FAKE_CTDB_TUNABLES_OK="MonitorInterval TDBMutexEnabled DatabaseHashSize"
322 export FAKE_CTDB_TUNABLES_OBSOLETE="EventScriptUnhealthyOnTimeout"
325 setup_config ()
327 cat >"$FAKE_CTDB_EXTRA_CONFIG"
330 setup_memcheck ()
332 setup_ctdb
334 _swap_total="5857276"
336 if [ "$1" = "bad" ] ; then
337 _swap_free=" 4352"
338 _mem_cached=" 112"
339 _mem_free=" 468"
340 else
341 _swap_free="$_swap_total"
342 _mem_cached="1112"
343 _mem_free="1468"
346 export FAKE_PROC_MEMINFO="\
347 MemTotal: 3940712 kB
348 MemFree: 225268 kB
349 Buffers: 146120 kB
350 Cached: 1139348 kB
351 SwapCached: 56016 kB
352 Active: 2422104 kB
353 Inactive: 1019928 kB
354 Active(anon): 1917580 kB
355 Inactive(anon): 523080 kB
356 Active(file): 504524 kB
357 Inactive(file): 496848 kB
358 Unevictable: 4844 kB
359 Mlocked: 4844 kB
360 SwapTotal: ${_swap_total} kB
361 SwapFree: ${_swap_free} kB
362 ..."
364 export FAKE_FREE_M="\
365 total used free shared buffers cached
366 Mem: 3848 3634 213 0 142 ${_mem_cached}
367 -/+ buffers/cache: 2379 ${_mem_free}
368 Swap: 5719 246 5473"
370 export CTDB_MONITOR_FREE_MEMORY
371 export CTDB_MONITOR_FREE_MEMORY_WARN
372 export CTDB_CHECK_SWAP_IS_NOT_USED
375 ctdb_get_interfaces ()
377 # The echo/subshell forces all the output onto 1 line.
378 echo $(ctdb ifaces -X | awk -F'|' 'FNR > 1 {print $2}')
381 ctdb_get_1_interface ()
383 _t=$(ctdb_get_interfaces)
384 echo ${_t%% *}
387 # Print all public addresses as: interface IP maskbits
388 # Each line is suitable for passing to takeip/releaseip
389 ctdb_get_all_public_addresses ()
391 _f="${CTDB_PUBLIC_ADDRESSES:-${CTDB_BASE}/public_addresses}"
392 while IFS="/$IFS" read _ip _maskbits _ifaces ; do
393 echo "$_ifaces $_ip $_maskbits"
394 done <"$_f"
397 # Print public addresses on this node as: interface IP maskbits
398 # Each line is suitable for passing to takeip/releaseip
399 ctdb_get_my_public_addresses ()
401 ctdb ip -v -X | {
402 read _x # skip header line
404 while IFS="|" read _x _ip _x _iface _x ; do
405 [ -n "$_iface" ] || continue
406 while IFS="/$IFS" read _i _maskbits _x ; do
407 if [ "$_ip" = "$_i" ] ; then
408 echo $_iface $_ip $_maskbits
409 break
411 done <"${CTDB_PUBLIC_ADDRESSES:-${CTDB_BASE}/public_addresses}"
412 done
416 # Prints the 1st public address as: interface IP maskbits
417 # This is suitable for passing to takeip/releaseip
418 ctdb_get_1_public_address ()
420 ctdb_get_my_public_addresses | { head -n 1 ; cat >/dev/null ; }
423 ctdb_not_implemented ()
425 export CTDB_NOT_IMPLEMENTED="$1"
426 ctdb_not_implemented="\
427 DEBUG: ctdb: command \"$1\" not implemented in stub"
430 ctdb_fake_scriptstatus ()
432 _code="$1"
433 _status="$2"
434 _err_out="$3"
436 _d1=$(date '+%s.%N')
437 _d2=$(date '+%s.%N')
439 echo "$_code $_status $_err_out" >"$FAKE_CTDB_SCRIPTSTATUS/$script"
442 ######################################################################
444 setup_ctdb_policy_routing ()
446 service_name="per_ip_routing"
448 export CTDB_PER_IP_ROUTING_CONF="$CTDB_BASE/policy_routing"
449 export CTDB_PER_IP_ROUTING_RULE_PREF=100
450 export CTDB_PER_IP_ROUTING_TABLE_ID_LOW=1000
451 export CTDB_PER_IP_ROUTING_TABLE_ID_HIGH=2000
453 # Tests need to create and populate this file
454 rm -f "$CTDB_PER_IP_ROUTING_CONF"
457 # Create policy routing configuration in $CTDB_PER_IP_ROUTING_CONF.
458 # $1 is the number of assigned IPs to use (<num>, all), defaulting to
459 # 1. If $2 is "default" then a default route is also added.
460 create_policy_routing_config ()
462 _num_ips="${1:-1}"
463 _should_add_default="$2"
465 ctdb_get_my_public_addresses |
466 if [ "$_num_ips" = "all" ] ; then
468 else
469 { head -n "$_num_ips" ; cat >/dev/null ; }
470 fi |
471 while read _dev _ip _bits ; do
472 _net=$(ipv4_host_addr_to_net "$_ip" "$_bits")
473 _gw="${_net%.*}.1" # a dumb, calculated default
475 echo "$_ip $_net"
477 if [ "$_should_add_default" = "default" ] ; then
478 echo "$_ip 0.0.0.0/0 $_gw"
480 done >"$CTDB_PER_IP_ROUTING_CONF"
483 # Check the routes against those that are expected. $1 is the number
484 # of assigned IPs to use (<num>, all), defaulting to 1. If $2 is
485 # "default" then expect default routes to have been added.
486 check_routes ()
488 _num_ips="${1:-1}"
489 _should_add_default="$2"
491 _policy_rules=""
492 _policy_routes=""
494 ctdb_get_my_public_addresses |
495 if [ "$_num_ips" = "all" ] ; then
497 else
498 { head -n "$_num_ips" ; cat >/dev/null ; }
499 fi | {
500 while read _dev _ip _bits ; do
501 _net=$(ipv4_host_addr_to_net "$_ip" "$_bits")
502 _gw="${_net%.*}.1" # a dumb, calculated default
504 _policy_rules="${_policy_rules}
505 ${CTDB_PER_IP_ROUTING_RULE_PREF}: from $_ip lookup ctdb.$_ip "
506 _policy_routes="${_policy_routes}
507 # ip route show table ctdb.$_ip
508 $_net dev $_dev scope link "
510 if [ "$_should_add_default" = "default" ] ; then
511 _policy_routes="${_policy_routes}
512 default via $_gw dev $_dev "
514 done
516 ok <<EOF
517 # ip rule show
518 0: from all lookup local ${_policy_rules}
519 32766: from all lookup main
520 32767: from all lookup default ${_policy_routes}
523 simple_test_command dump_routes
524 } || test_fail
527 ######################################################################
529 ctdb_catdb_format_pairs ()
531 _count=0
533 while read _k _v ; do
534 _kn=$(echo -n "$_k" | wc -c)
535 _vn=$(echo -n "$_v" | wc -c)
536 cat <<EOF
537 key(${_kn}) = "${_k}"
538 dmaster: 0
539 rsn: 1
540 data(${_vn}) = "${_v}"
543 _count=$(($_count + 1))
544 done
546 echo "Dumped ${_count} records"
549 check_ctdb_tdb_statd_state ()
551 ctdb_get_my_public_addresses |
552 while read _x _sip _x ; do
553 for _cip ; do
554 echo "statd-state@${_sip}@${_cip}" "$FAKE_DATE_OUTPUT"
555 done
556 done |
557 ctdb_catdb_format_pairs | {
559 simple_test_command ctdb catdb ctdb.tdb
560 } || test_fail
563 check_statd_callout_smnotify ()
565 _state_even=$(( $(date '+%s') / 2 * 2))
566 _state_odd=$(($_state_even + 1))
568 nfs_load_config
570 ctdb_get_my_public_addresses |
571 while read _x _sip _x ; do
572 for _cip ; do
573 cat <<EOF
574 --client=${_cip} --ip=${_sip} --server=${_sip} --stateval=${_state_even}
575 --client=${_cip} --ip=${_sip} --server=${NFS_HOSTNAME} --stateval=${_state_even}
576 --client=${_cip} --ip=${_sip} --server=${_sip} --stateval=${_state_odd}
577 --client=${_cip} --ip=${_sip} --server=${NFS_HOSTNAME} --stateval=${_state_odd}
579 done
580 done | {
582 simple_test_event "notify"
583 } || test_fail
586 ######################################################################
588 setup_ctdb_natgw ()
590 debug "Setting up NAT gateway"
592 natgw_config_dir="${TEST_VAR_DIR}/natgw_config"
593 mkdir -p "$natgw_config_dir"
595 # These will accumulate, 1 per test... but will be cleaned up at
596 # the end.
597 export CTDB_NATGW_NODES=$(mktemp --tmpdir="$natgw_config_dir")
599 # Read from stdin
600 while read _ip _master _dev ; do
601 echo "$_ip"
602 if [ "$_master" = "master" ] ; then
603 export FAKE_CTDB_NATGW_MASTER="$_ip"
605 done >"$CTDB_NATGW_NODES"
607 # Assume all of the nodes are on a /24 network and have IPv4
608 # addresses:
609 read _ip <"$CTDB_NATGW_NODES"
610 export CTDB_NATGW_PRIVATE_NETWORK="${_ip%.*}.0/24"
612 # These are fixed. Probably don't use the same network for the
613 # private node IPs. To unset the default gateway just set it to
614 # "". :-)
615 export CTDB_NATGW_PUBLIC_IP="10.1.1.121/24"
616 export CTDB_NATGW_PUBLIC_IFACE="eth1"
617 export CTDB_NATGW_DEFAULT_GATEWAY="10.1.1.254"
618 export CTDB_NATGW_SLAVE_ONLY=""
621 ok_natgw_master_ip_addr_show ()
623 _mac=$(echo "$CTDB_NATGW_PUBLIC_IFACE" | md5sum | sed -r -e 's@(..)(..)(..)(..)(..)(..).*@\1:\2:\3:\4:\5:\6@')
625 # This is based on CTDB_NATGW_PUBLIC_IP
626 _brd="10.1.1.255"
628 ok <<EOF
629 1: ${CTDB_NATGW_PUBLIC_IFACE}: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
630 link/ether ${_mac} brd ff:ff:ff:ff:ff:ff
631 inet ${CTDB_NATGW_PUBLIC_IP} brd ${_brd} scope global ${CTDB_NATGW_PUBLIC_IFACE}
632 valid_lft forever preferred_lft forever
636 ok_natgw_slave_ip_addr_show ()
638 _mac=$(echo "$CTDB_NATGW_PUBLIC_IFACE" | md5sum | sed -r -e 's@(..)(..)(..)(..)(..)(..).*@\1:\2:\3:\4:\5:\6@')
639 ok <<EOF
640 1: ${CTDB_NATGW_PUBLIC_IFACE}: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
641 link/ether ${_mac} brd ff:ff:ff:ff:ff:ff
645 ok_natgw_master_static_routes ()
647 _nl="
649 _t=""
650 for _i in $CTDB_NATGW_STATIC_ROUTES ; do
651 # This is intentionally different to the code in 11.natgw ;-)
652 case "$_i" in
653 *@*)
654 _net=$(echo "$_i" | sed -e 's|@.*||')
655 _gw=$(echo "$_i" | sed -e 's|.*@||')
658 _net="$_i"
659 _gw="$CTDB_NATGW_DEFAULT_GATEWAY"
660 esac
662 [ -n "$_gw" ] || continue
663 _t="${_t}${_t:+${_nl}}"
664 _t="${_t}${_net} via ${_gw} dev ethXXX metric 10 "
665 done
666 _t=$(echo "$_t" | sort)
667 ok "$_t"
670 ok_natgw_slave_static_routes ()
672 _nl="
674 _t=""
675 for _i in $CTDB_NATGW_STATIC_ROUTES ; do
676 # This is intentionally different to the code in 11.natgw ;-)
677 _net=$(echo "$_i" | sed -e 's|@.*||')
679 # The interface for the private network isn't specified as
680 # part of the NATGW configuration and isn't part of the
681 # command to add the route. It is implicitly added by "ip
682 # route" but our stub doesn't do this and adds "ethXXX".
683 _t="${_t}${_t:+${_nl}}"
684 _t="${_t}${_net} via ${FAKE_CTDB_NATGW_MASTER} dev ethXXX metric 10 "
685 done
686 _t=$(echo "$_t" | sort)
687 ok "$_t"
690 ######################################################################
692 # Samba/winbind fakery
694 setup_samba ()
696 setup_ctdb
698 service_name="samba"
700 if [ "$1" != "down" ] ; then
702 debug "Marking Samba services as up, listening and managed by CTDB"
703 # Get into known state.
704 eventscript_call ctdb_service_managed
706 # All possible service names for all known distros.
707 for i in "smb" "nmb" "samba" ; do
708 service "$i" force-started
709 done
711 export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
712 export CTDB_MANAGED_SERVICES="foo samba bar"
714 export FAKE_TCP_LISTEN="0.0.0.0:445 0.0.0.0:139"
715 export FAKE_WBINFO_FAIL="no"
717 # Some things in 50.samba are backgrounded and waited for. If
718 # we don't sleep at all then timeouts can happen. This avoids
719 # that... :-)
720 export FAKE_SLEEP_FORCE=0.1
721 else
722 debug "Marking Samba services as down, not listening and not managed by CTDB"
723 # Get into known state.
724 eventscript_call ctdb_service_unmanaged
726 # All possible service names for all known distros.
727 for i in "smb" "nmb" "samba" ; do
728 service "$i" force-stopped
729 done
731 export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
732 export CTDB_MANAGED_SERVICES="foo bar"
733 unset CTDB_MANAGES_SAMBA
735 export FAKE_TCP_LISTEN=""
736 export FAKE_WBINFO_FAIL="yes"
740 setup_winbind ()
742 setup_ctdb
744 service_name="winbind"
746 if [ "$1" != "down" ] ; then
748 debug "Marking Winbind service as up and managed by CTDB"
749 # Get into known state.
750 eventscript_call ctdb_service_managed
752 service "winbind" force-started
754 export CTDB_MANAGED_SERVICES="foo winbind bar"
756 export FAKE_WBINFO_FAIL="no"
758 else
759 debug "Marking Winbind service as down and not managed by CTDB"
760 # Get into known state.
761 eventscript_call ctdb_service_unmanaged
763 service "winbind" force-stopped
765 export CTDB_MANAGED_SERVICES="foo bar"
766 unset CTDB_MANAGES_WINBIND
768 export FAKE_WBINFO_FAIL="yes"
772 wbinfo_down ()
774 debug "Making wbinfo commands fail"
775 FAKE_WBINFO_FAIL="yes"
778 ######################################################################
780 # NFS fakery
782 setup_nfs ()
784 setup_ctdb
786 service_name="nfs"
788 export FAKE_RPCINFO_SERVICES=""
790 export CTDB_NFS_SKIP_SHARE_CHECK="no"
792 export RPCNFSDCOUNT
793 export CTDB_NFS_DUMP_STUCK_THREADS
795 # Reset the failcounts for nfs services.
796 eventscript_call eval rm -f '$ctdb_fail_dir/nfs_*'
798 if [ "$1" != "down" ] ; then
799 debug "Setting up NFS environment: all RPC services up, NFS managed by CTDB"
801 eventscript_call ctdb_service_managed
802 service "nfs" force-started
803 service "nfslock" force-started
805 export CTDB_MANAGED_SERVICES="foo nfs bar"
807 rpc_services_up "nfs" "mountd" "rquotad" "nlockmgr" "status"
809 nfs_setup_fake_threads "nfsd"
810 nfs_setup_fake_threads "rpc.foobar" # Just set the variable to empty
811 else
812 debug "Setting up NFS environment: all RPC services down, NFS not managed by CTDB"
814 eventscript_call ctdb_service_unmanaged
815 service "nfs" force-stopped
816 service "nfslock" force-stopped
818 export CTDB_MANAGED_SERVICES="foo bar"
819 unset CTDB_MANAGES_NFS
822 # This is really nasty. However, when we test NFS we don't
823 # actually test statd-callout. If we leave it there then left
824 # over, backgrounded instances of statd-callout will do horrible
825 # things with the "ctdb ip" stub and cause the actual
826 # statd-callout tests that follow to fail.
827 rm "${CTDB_BASE}/statd-callout"
830 setup_nfs_ganesha ()
832 setup_nfs "$@"
833 export CTDB_NFS_SERVER_MODE="ganesha"
834 if [ "$1" != "down" ] ; then
835 export CTDB_MANAGES_NFS="yes"
838 # We do not support testing the Ganesha-nfsd-specific part of the
839 # eventscript.
840 export CTDB_SKIP_GANESHA_NFSD_CHECK="yes"
841 export CTDB_NFS_SKIP_SHARE_CHECK="yes"
844 rpc_services_down ()
846 for _i ; do
847 debug "Marking RPC service \"${_i}\" as unavailable"
848 FAKE_RPCINFO_SERVICES=$(echo "$FAKE_RPCINFO_SERVICES" | sed -r -e "s@[[:space:]]*${_i}:[0-9]+:[0-9]+@@g")
849 done
852 rpc_services_up ()
854 for _i ; do
855 debug "Marking RPC service \"${_i}\" as available"
856 case "$_i" in
857 nfs) _t="2:3" ;;
858 mountd) _t="1:3" ;;
859 rquotad) _t="1:2" ;;
860 nlockmgr) _t="3:4" ;;
861 status) _t="1:1" ;;
862 *) die "Internal error - unsupported RPC service \"${_i}\"" ;;
863 esac
865 FAKE_RPCINFO_SERVICES="${FAKE_RPCINFO_SERVICES}${FAKE_RPCINFO_SERVICES:+ }${_i}:${_t}"
866 done
870 nfs_load_config ()
872 _etc="$CTDB_ETCDIR" # shortcut for readability
873 for _c in "$_etc/sysconfig/nfs" "$_etc/default/nfs" "$_etc/ctdb/sysconfig/nfs" ; do
874 if [ -r "$_c" ] ; then
875 . "$_c"
876 break
878 done
881 nfs_setup_fake_threads ()
883 _prog="$1" ; shift
885 case "$_prog" in
886 nfsd)
887 export PROCFS_PATH=$(mktemp -d --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
888 _threads="${PROCFS_PATH}/fs/nfsd/threads"
889 mkdir -p $(dirname "$_threads")
890 echo $# >"$_threads"
891 export FAKE_NFSD_THREAD_PIDS="$*"
894 export FAKE_RPC_THREAD_PIDS="$*"
896 esac
899 program_stack_traces ()
901 _prog="$1"
902 _max="${2:-1}"
904 _count=1
905 for _pid in ${FAKE_NFSD_THREAD_PIDS:-$FAKE_RPC_THREAD_PIDS} ; do
906 [ $_count -le $_max ] || break
908 cat <<EOF
909 Stack trace for ${_prog}[${_pid}]:
910 [<ffffffff87654321>] fake_stack_trace_for_pid_${_pid}/stack+0x0/0xff
912 _count=$(($_count + 1))
913 done
916 guess_output ()
918 case "$1" in
919 $CTDB_NFS_CALLOUT\ start\ nlockmgr)
920 echo "&Starting nfslock: OK"
922 $CTDB_NFS_CALLOUT\ start\ nfs)
923 cat <<EOF
924 &Starting nfslock: OK
925 &Starting nfs: OK
929 : # Nothing
930 esac
933 # Set the required result for a particular RPC program having failed
934 # for a certain number of iterations. This is probably still a work
935 # in progress. Note that we could hook aggressively
936 # nfs_check_rpc_service() to try to implement this but we're better
937 # off testing nfs_check_rpc_service() using independent code... even
938 # if it is incomplete and hacky. So, if the 60.nfs eventscript
939 # changes and the tests start to fail then it may be due to this
940 # function being incomplete.
941 rpc_set_service_failure_response ()
943 _rpc_service="$1"
944 _numfails="${2:-1}" # default 1
946 # Default
947 ok_null
948 if [ $_numfails -eq 0 ] ; then
949 return
952 nfs_load_config
954 # A handy newline. :-)
955 _nl="
958 _dir="${CTDB_NFS_CHECKS_DIR:-${CTDB_BASE}/nfs-checks.d}"
960 _file=$(ls "$_dir"/[0-9][0-9]."${_rpc_service}.check")
961 [ -r "$_file" ] || die "RPC check file \"$_file\" does not exist or is not unique"
963 _out=$(mktemp --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
964 _rc_file=$(mktemp --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
967 # Subshell to restrict scope variables...
969 # Defaults
970 family="tcp"
971 version=""
972 unhealthy_after=1
973 restart_every=0
974 service_stop_cmd=""
975 service_start_cmd=""
976 service_debug_cmd=""
978 # Don't bother syntax checking, eventscript does that...
979 . "$_file"
981 # Just use the first version, default to 1. This is dumb but
982 # handles all the cases that we care about now...
983 if [ -n "$version" ] ; then
984 _ver="${version%% *}"
985 else
986 _ver=1
988 _rpc_check_out="\
989 $_rpc_service failed RPC check:
990 rpcinfo: RPC: Program not registered
991 program $_rpc_service version $_ver is not available"
993 if [ $unhealthy_after -gt 0 -a $_numfails -ge $unhealthy_after ] ; then
994 _unhealthy=true
995 echo 1 >"$_rc_file"
996 echo "ERROR: ${_rpc_check_out}" >>"$_out"
997 else
998 _unhealthy=false
999 echo 0 >"$_rc_file"
1002 if [ $restart_every -gt 0 -a $(($_numfails % $restart_every)) -eq 0 ] ; then
1003 if ! $_unhealthy ; then
1004 echo "WARNING: ${_rpc_check_out}" >>"$_out"
1007 echo "Trying to restart service \"${_rpc_service}\"..." >>"$_out"
1009 if [ -n "$service_debug_cmd" ] ; then
1010 $service_debug_cmd 2>&1 >>"$_out"
1013 guess_output "$service_start_cmd" >>"$_out"
1017 read _rc <"$_rc_file"
1018 required_result $_rc <"$_out"
1020 rm -f "$_out" "$_rc_file"
1023 ######################################################################
1025 # VSFTPD fakery
1027 setup_vsftpd ()
1029 service_name="vsftpd"
1031 if [ "$1" != "down" ] ; then
1032 die "setup_vsftpd up not implemented!!!"
1033 else
1034 debug "Setting up VSFTPD environment: service down, not managed by CTDB"
1036 eventscript_call ctdb_service_unmanaged
1037 service vsftpd force-stopped
1039 export CTDB_MANAGED_SERVICES="foo"
1040 unset CTDB_MANAGES_VSFTPD
1044 ######################################################################
1046 # HTTPD fakery
1048 setup_httpd ()
1050 if [ "$1" != "down" ] ; then
1051 die "setup_httpd up not implemented!!!"
1052 else
1053 debug "Setting up HTTPD environment: service down, not managed by CTDB"
1055 for service_name in "apache2" "httpd" ; do
1056 eventscript_call ctdb_service_unmanaged
1057 service "$service_name" force-stopped
1058 done
1060 export CTDB_MANAGED_SERVICES="foo"
1061 unset CTDB_MANAGES_HTTPD
1065 ######################################################################
1067 # multipathd fakery
1069 setup_multipathd ()
1071 for i ; do
1072 case "$i" in
1073 \!*)
1074 _t="${i#!}"
1075 echo "Marking ${_t} as having no active paths"
1076 FAKE_MULTIPATH_FAILURES="${FAKE_MULTIPATH_FAILURES}${FAKE_MULTIPATH+FAILURES:+ }${_t}"
1079 _t="$i"
1080 esac
1081 CTDB_MONITOR_MPDEVICES="${CTDB_MONITOR_MPDEVICES}${CTDB_MONITOR_MPDEVICES:+ }${_t}"
1082 done
1084 export CTDB_MONITOR_MPDEVICES FAKE_MULTIPATH_FAILURES
1085 export FAKE_SLEEP_FORCE=0.1
1088 ######################################################################
1090 # Result and test functions
1092 # Set some globals and print the summary.
1093 define_test ()
1095 desc="$1"
1097 _f=$(basename "$0" ".sh")
1099 # Remaining format should be NN.service.event.NNN or NN.service.NNN:
1100 _num="${_f##*.}"
1101 _f="${_f%.*}"
1103 case "$_f" in
1104 [0-9][0-9].*.*)
1105 script="${_f%.*}"
1106 event="${_f##*.}"
1107 script_dir="${CTDB_BASE}/events.d"
1109 [0-9][0-9].*)
1110 script="$_f"
1111 unset event
1112 script_dir="${CTDB_BASE}/events.d"
1114 *.*)
1115 script="${_f%.*}"
1116 event="${_f##*.}"
1117 script_dir="${CTDB_BASE}"
1120 script="${_f%.*}"
1121 unset event
1122 script_dir="${CTDB_BASE}"
1123 esac
1125 [ -r "${script_dir}/${script}" ] || \
1126 die "Internal error - unable to find script \"${script_dir}/${script}\""
1128 printf "%-17s %-10s %-4s - %s\n\n" "$script" "$event" "$_num" "$desc"
1131 # Run an eventscript once. The test passes if the return code and
1132 # output match those required.
1134 # Any args are passed to the eventscript.
1136 simple_test ()
1138 [ -n "$event" ] || die 'simple_test: $event not set'
1140 args="$@"
1142 test_header ()
1144 echo "Running script \"$script $event${args:+ }$args\""
1147 extra_header ()
1149 cat <<EOF
1151 ##################################################
1152 CTDB_BASE="$CTDB_BASE"
1153 CTDB_ETCDIR="$CTDB_ETCDIR"
1154 ctdb client is "$(which ctdb)"
1155 ip command is "$(which ip)"
1159 script_test "${script_dir}/${script}" "$event" "$@"
1161 reset_test_header
1162 reset_extra_header
1165 simple_test_event ()
1167 # If something has previously failed then don't continue.
1168 : ${_passed:=true}
1169 $_passed || return 1
1171 event="$1" ; shift
1172 echo "=================================================="
1173 simple_test "$@"
1176 simple_test_command ()
1178 unit_test "$@"
1181 # Run an NFS eventscript iteratively.
1183 # - 1st argument is the number of iterations.
1185 # - 2nd argument is the NFS/RPC service being tested
1187 # rpcinfo is used on each iteration to test the availability of the
1188 # service
1190 # If this is not set or null then no RPC service is checked and the
1191 # required output is not reset on each iteration. This is useful in
1192 # baseline tests to confirm that the eventscript and test
1193 # infrastructure is working correctly.
1195 # - Subsequent arguments come in pairs: an iteration number and
1196 # something to eval before that iteration. Each time an iteration
1197 # number is matched the associated argument is given to eval after
1198 # the default setup is done. The iteration numbers need to be given
1199 # in ascending order.
1201 # These arguments can allow a service to be started or stopped
1202 # before a particular iteration.
1204 nfs_iterate_test ()
1206 _repeats="$1"
1207 _rpc_service="$2"
1208 if [ -n "$2" ] ; then
1209 shift 2
1210 else
1211 shift
1214 echo "Running $_repeats iterations of \"$script $event\" $args"
1216 _iterate_failcount=0
1217 for _iteration in $(seq 1 $_repeats) ; do
1218 # This is not a numerical comparison because $1 will often not
1219 # be set.
1220 if [ "$_iteration" = "$1" ] ; then
1221 debug "##################################################"
1222 eval "$2"
1223 debug "##################################################"
1224 shift 2
1226 if [ -n "$_rpc_service" ] ; then
1227 if rpcinfo -T tcp localhost "$_rpc_service" >/dev/null 2>&1 ; then
1228 _iterate_failcount=0
1229 else
1230 _iterate_failcount=$(($_iterate_failcount + 1))
1232 rpc_set_service_failure_response "$_rpc_service" $_iterate_failcount
1234 _out=$(simple_test 2>&1)
1235 _ret=$?
1236 if "$TEST_VERBOSE" || [ $_ret -ne 0 ] ; then
1237 echo "##################################################"
1238 echo "Iteration ${_iteration}:"
1239 echo "$_out"
1241 if [ $_ret -ne 0 ] ; then
1242 exit $_ret
1244 done