1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
|
# Hey Emacs, this is a -*- shell-script -*- !!! :-)
# Augment PATH with relevant stubs/ directories. We do this by actually
# setting PATH, and also by setting $EVENTSCRIPTS_PATH and then
# prepending that to $PATH in rc.local to avoid the PATH reset in
# functions.
EVENTSCRIPTS_PATH=""
if [ -d "${TEST_SUBDIR}/stubs" ] ; then
EVENTSCRIPTS_PATH="${TEST_SUBDIR}/stubs"
fi
export EVENTSCRIPTS_PATH
PATH="${EVENTSCRIPTS_PATH}:${PATH}"
export EVENTSCRIPTS_TESTS_VAR_DIR="${TEST_VAR_DIR}/unit_eventscripts"
if [ -d "$EVENTSCRIPTS_TESTS_VAR_DIR" -a \
"$EVENTSCRIPTS_TESTS_VAR_DIR" != "/unit_eventscripts" ] ; then
rm -r "$EVENTSCRIPTS_TESTS_VAR_DIR"
fi
mkdir -p "$EVENTSCRIPTS_TESTS_VAR_DIR"
export CTDB_VARDIR="$EVENTSCRIPTS_TESTS_VAR_DIR/ctdb"
export CTDB_LOGFILE="${EVENTSCRIPTS_TESTS_VAR_DIR}/log.ctdb"
touch "$CTDB_LOGFILE" || die "Unable to create CTDB_LOGFILE=$CTDB_LOGFILE"
if [ -d "${TEST_SUBDIR}/etc" ] ; then
cp -a "${TEST_SUBDIR}/etc" "$EVENTSCRIPTS_TESTS_VAR_DIR"
export CTDB_ETCDIR="${EVENTSCRIPTS_TESTS_VAR_DIR}/etc"
else
die "Unable to setup \$CTDB_ETCDIR"
fi
if [ -d "${TEST_SUBDIR}/etc-ctdb" ] ; then
cp -prL "${TEST_SUBDIR}/etc-ctdb" "$EVENTSCRIPTS_TESTS_VAR_DIR"
export CTDB_BASE="${EVENTSCRIPTS_TESTS_VAR_DIR}/etc-ctdb"
else
die "Unable to set \$CTDB_BASE"
fi
export CTDB_BASE
if [ ! -d "${CTDB_BASE}/events.d" ] ; then
cat <<EOF
ERROR: Directory ${CTDB_BASE}/events.d does not exist.
That means that no eventscripts can be tested.
One possible explanation:
You have CTDB installed via RPMs (or similar), so the regular
CTDB_BASE directory is in /etc/ctdb/
BUT
You have done a regular "configure" and "make install" so the tests
are installed under /usr/local/.
If so, one possible hack to fix this is to create a symlink:
ln -s /etc/ctdb /usr/local/etc/ctdb
This is nasty but it works... :-)
EOF
exit 1
fi
######################################################################
if "$TEST_VERBOSE" ; then
debug () { echo "$@" ; }
else
debug () { : ; }
fi
eventscripts_tests_cleanup_hooks=""
# This loses quoting!
eventscripts_test_add_cleanup ()
{
eventscripts_tests_cleanup_hooks="${eventscripts_tests_cleanup_hooks}${eventscripts_tests_cleanup_hooks:+ ; }$*"
}
trap 'eval $eventscripts_tests_cleanup_hooks' 0
######################################################################
# General setup fakery
setup_generic ()
{
debug "Setting up shares (3 existing shares)"
# Create 3 fake shares/exports.
export FAKE_SHARES=""
for i in $(seq 1 3) ; do
_s="${EVENTSCRIPTS_TESTS_VAR_DIR}/shares/${i}_existing"
mkdir -p "$_s"
FAKE_SHARES="${FAKE_SHARES}${FAKE_SHARES:+ }${_s}"
done
export FAKE_PROC_NET_BONDING="$EVENTSCRIPTS_TESTS_VAR_DIR/proc-net-bonding"
mkdir -p "$FAKE_PROC_NET_BONDING"
rm -f "$FAKE_PROC_NET_BONDING"/*
export FAKE_ETHTOOL_LINK_DOWN="$EVENTSCRIPTS_TESTS_VAR_DIR/ethtool-link-down"
mkdir -p "$FAKE_ETHTOOL_LINK_DOWN"
rm -f "$FAKE_ETHTOOL_LINK_DOWN"/*
# This can only have 2 levels. We don't want to resort to usings
# something dangerous like "rm -r" setup time.
export FAKE_IP_STATE="$EVENTSCRIPTS_TESTS_VAR_DIR/fake-ip-state"
mkdir -p "$FAKE_IP_STATE"
rm -f "$FAKE_IP_STATE"/*/*
rm -f "$FAKE_IP_STATE"/* 2>/dev/null || true
rmdir "$FAKE_IP_STATE"/* 2>/dev/null || true
export CTDB_DBDIR="${EVENTSCRIPTS_TESTS_VAR_DIR}/db"
mkdir -p "${CTDB_DBDIR}/persistent"
export FAKE_TDBTOOL_SUPPORTS_CHECK="yes"
export FAKE_TDB_IS_OK
export FAKE_DATE_OUTPUT
export FAKE_NETSTAT_TCP_ESTABLISHED FAKE_TCP_LISTEN FAKE_NETSTAT_UNIX_LISTEN
export FAKE_NETSTAT_TCP_ESTABLISHED_FILE=$(mktemp --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
}
tcp_port_down ()
{
for _i ; do
debug "Marking TCP port \"${_i}\" as not listening"
FAKE_TCP_LISTEN=$(echo "$FAKE_TCP_LISTEN" | sed -r -e "s@[[:space:]]*[\.0-9]+:${_i}@@g")
done
}
shares_missing ()
{
_fmt="$1" ; shift
# Replace some shares with non-existent ones.
_t=""
_n=1
_nl="
"
export MISSING_SHARES_TEXT=""
for _i in $FAKE_SHARES ; do
if [ $_n = "$1" ] ; then
shift
_i="${_i%_existing}_missing"
debug "Replacing share $_n with missing share \"$_i\""
rmdir "$_i" 2>/dev/null || true
MISSING_SHARES_TEXT="${MISSING_SHARES_TEXT}${MISSING_SHARES_TEXT:+${_nl}}"$(printf "$_fmt" "${_i}")
fi
_t="${_t}${_t:+ }${_i}"
_n=$(($_n + 1))
done
FAKE_SHARES="$_t"
}
# Setup some fake /proc/net/bonding files with just enough info for
# the eventscripts.
# arg1 is interface name, arg2 is currently active slave (use "None"
# if none), arg3 is MII status ("up" or "down").
setup_bond ()
{
_iface="$1"
_slave="${2:-${_iface}_sl_0}"
_mii_s="${3:-up}"
_mii_subs="${4:-${_mii_s:-up}}"
echo "Setting $_iface to be a bond with active slave $_slave and MII status $_mii_s"
cat >"${FAKE_PROC_NET_BONDING}/$_iface" <<EOF
Bonding Mode: IEEE 802.3ad Dynamic link aggregation
Currently Active Slave: $_slave
# Status of the bond
MII Status: $_mii_s
# Status of 1st pretend adapter
MII Status: $_mii_subs
# Status of 2nd pretend adapter
MII Status: $_mii_subs
EOF
}
ethtool_interfaces_down ()
{
for _i ; do
echo "Marking interface $_i DOWN for ethtool"
touch "${FAKE_ETHTOOL_LINK_DOWN}/${_i}"
done
}
ethtool_interfaces_up ()
{
for _i ; do
echo "Marking interface $_i UP for ethtool"
rm -f "${FAKE_ETHTOOL_LINK_DOWN}/${_i}"
done
}
setup_nmap_output_filter ()
{
OUT_FILTER="-e 's@^(DEBUG: # Nmap 5.21 scan initiated) .+ (as:)@\1 DATE \2@' -e 's@^(DEBUG: # Nmap done at) .+ (--)@\1 DATE \2@'"
}
dump_routes ()
{
echo "# ip rule show"
ip rule show
ip rule show |
while read _p _x _i _x _t ; do
# Remove trailing colon after priority/preference.
_p="${_p%:}"
# Only remove rules that match our priority/preference.
[ "$CTDB_PER_IP_ROUTING_RULE_PREF" = "$_p" ] || continue
echo "# ip route show table $_t"
ip route show table "$_t"
done
}
# Copied from 13.per_ip_routing for now... so this is lazy testing :-(
ipv4_host_addr_to_net ()
{
_host="$1"
_maskbits="$2"
# Convert the host address to an unsigned long by splitting out
# the octets and doing the math.
_host_ul=0
for _o in $(export IFS="." ; echo $_host) ; do
_host_ul=$(( ($_host_ul << 8) + $_o)) # work around Emacs color bug
done
# Calculate the mask and apply it.
_mask_ul=$(( 0xffffffff << (32 - $_maskbits) ))
_net_ul=$(( $_host_ul & $_mask_ul ))
# Now convert to a network address one byte at a time.
_net=""
for _o in $(seq 1 4) ; do
_net="$(($_net_ul & 255))${_net:+.}${_net}"
_net_ul=$(($_net_ul >> 8))
done
echo "${_net}/${_maskbits}"
}
######################################################################
# CTDB fakery
# Evaluate an expression that probably calls functions or uses
# variables from the CTDB functions file. This is used for test
# initialisation.
eventscript_call ()
{
(
. "$CTDB_BASE/functions"
"$@"
)
}
# Set output for ctdb command. Option 1st argument is return code.
ctdb_set_output ()
{
_out="$EVENTSCRIPTS_TESTS_VAR_DIR/ctdb.out"
cat >"$_out"
_rc="$EVENTSCRIPTS_TESTS_VAR_DIR/ctdb.rc"
echo "${1:-0}" >"$_rc"
eventscripts_test_add_cleanup "rm -f $_out $_rc"
}
setup_ctdb ()
{
setup_generic
export FAKE_CTDB_NUMNODES="${1:-3}"
echo "Setting up CTDB with ${FAKE_CTDB_NUMNODES} fake nodes"
export FAKE_CTDB_PNN="${2:-0}"
echo "Setting up CTDB with PNN ${FAKE_CTDB_PNN}"
export CTDB_PUBLIC_ADDRESSES="${CTDB_BASE}/public_addresses"
if [ -n "$3" ] ; then
echo "Setting up CTDB_PUBLIC_ADDRESSES: $3"
CTDB_PUBLIC_ADDRESSES=$(mktemp)
for _i in $3 ; do
_ip="${_i%@*}"
_ifaces="${_i#*@}"
echo "${_ip} ${_ifaces}" >>"$CTDB_PUBLIC_ADDRESSES"
done
eventscripts_test_add_cleanup "rm -f $CTDB_PUBLIC_ADDRESSES"
fi
export FAKE_CTDB_STATE="$EVENTSCRIPTS_TESTS_VAR_DIR/fake-ctdb"
export FAKE_CTDB_IFACES_DOWN="$FAKE_CTDB_STATE/ifaces-down"
mkdir -p "$FAKE_CTDB_IFACES_DOWN"
rm -f "$FAKE_CTDB_IFACES_DOWN"/*
export FAKE_CTDB_SCRIPTSTATUS="$FAKE_CTDB_STATE/scriptstatus"
mkdir -p "$FAKE_CTDB_SCRIPTSTATUS"
rm -f "$FAKE_CTDB_SCRIPTSTATUS"/*
export CTDB_PARTIALLY_ONLINE_INTERFACES
}
setup_memcheck ()
{
setup_ctdb
_swap_total="5857276"
if [ "$1" = "bad" ] ; then
_swap_free=" 4352"
_mem_cached=" 112"
_mem_free=" 468"
else
_swap_free="$_swap_total"
_mem_cached="1112"
_mem_free="1468"
fi
export FAKE_PROC_MEMINFO="\
MemTotal: 3940712 kB
MemFree: 225268 kB
Buffers: 146120 kB
Cached: 1139348 kB
SwapCached: 56016 kB
Active: 2422104 kB
Inactive: 1019928 kB
Active(anon): 1917580 kB
Inactive(anon): 523080 kB
Active(file): 504524 kB
Inactive(file): 496848 kB
Unevictable: 4844 kB
Mlocked: 4844 kB
SwapTotal: ${_swap_total} kB
SwapFree: ${_swap_free} kB
..."
export FAKE_FREE_M="\
total used free shared buffers cached
Mem: 3848 3634 213 0 142 ${_mem_cached}
-/+ buffers/cache: 2379 ${_mem_free}
Swap: 5719 246 5473"
export CTDB_MONITOR_FREE_MEMORY
export CTDB_MONITOR_FREE_MEMORY_WARN
export CTDB_CHECK_SWAP_IS_NOT_USED
}
ctdb_get_interfaces ()
{
# The echo/subshell forces all the output onto 1 line.
echo $(ctdb ifaces -Y | awk -F: 'FNR > 1 {print $2}')
}
ctdb_get_1_interface ()
{
_t=$(ctdb_get_interfaces)
echo ${_t%% *}
}
# Print all public addresses as: interface IP maskbits
# Each line is suitable for passing to takeip/releaseip
ctdb_get_all_public_addresses ()
{
_f="${CTDB_PUBLIC_ADDRESSES:-${CTDB_BASE}/public_addresses}"
while IFS="/$IFS" read _ip _maskbits _ifaces ; do
echo "$_ifaces $_ip $_maskbits"
done <"$_f"
}
# Print public addresses on this node as: interface IP maskbits
# Each line is suitable for passing to takeip/releaseip
ctdb_get_my_public_addresses ()
{
ctdb ip -v -Y | {
read _x # skip header line
while IFS=":" read _x _ip _x _iface _x ; do
[ -n "$_iface" ] || continue
while IFS="/$IFS" read _i _maskbits _x ; do
if [ "$_ip" = "$_i" ] ; then
echo $_iface $_ip $_maskbits
break
fi
done <"${CTDB_PUBLIC_ADDRESSES:-${CTDB_BASE}/public_addresses}"
done
}
}
# Prints the 1st public address as: interface IP maskbits
# This is suitable for passing to takeip/releaseip
ctdb_get_1_public_address ()
{
ctdb_get_my_public_addresses | { head -n 1 ; cat >/dev/null ; }
}
ctdb_not_implemented ()
{
export CTDB_NOT_IMPLEMENTED="$1"
ctdb_not_implemented="\
DEBUG: ctdb: command \"$1\" not implemented in stub"
}
ctdb_fake_scriptstatus ()
{
_code="$1"
_status="$2"
_err_out="$3"
_d1=$(date '+%s.%N')
_d2=$(date '+%s.%N')
echo "$_code $_status $_err_out" >"$FAKE_CTDB_SCRIPTSTATUS/$script"
}
######################################################################
setup_ctdb_policy_routing ()
{
service_name="per_ip_routing"
export CTDB_PER_IP_ROUTING_CONF="$CTDB_BASE/policy_routing"
export CTDB_PER_IP_ROUTING_RULE_PREF=100
export CTDB_PER_IP_ROUTING_TABLE_ID_LOW=1000
export CTDB_PER_IP_ROUTING_TABLE_ID_HIGH=2000
# Tests need to create and populate this file
rm -f "$CTDB_PER_IP_ROUTING_CONF"
}
# Create policy routing configuration in $CTDB_PER_IP_ROUTING_CONF.
# $1 is the number of assigned IPs to use (<num>, all), defaulting to
# 1. If $2 is "default" then a default route is also added.
create_policy_routing_config ()
{
_num_ips="${1:-1}"
_should_add_default="$2"
ctdb_get_my_public_addresses |
if [ "$_num_ips" = "all" ] ; then
cat
else
{ head -n "$_num_ips" ; cat >/dev/null ; }
fi |
while read _dev _ip _bits ; do
_net=$(ipv4_host_addr_to_net "$_ip" "$_bits")
_gw="${_net%.*}.1" # a dumb, calculated default
echo "$_ip $_net"
if [ "$_should_add_default" = "default" ] ; then
echo "$_ip 0.0.0.0/0 $_gw"
fi
done >"$CTDB_PER_IP_ROUTING_CONF"
}
# Check the routes against those that are expected. $1 is the number
# of assigned IPs to use (<num>, all), defaulting to 1. If $2 is
# "default" then expect default routes to have been added.
check_routes ()
{
_num_ips="${1:-1}"
_should_add_default="$2"
_policy_rules=""
_policy_routes=""
ctdb_get_my_public_addresses |
if [ "$_num_ips" = "all" ] ; then
cat
else
{ head -n "$_num_ips" ; cat >/dev/null ; }
fi | {
while read _dev _ip _bits ; do
_net=$(ipv4_host_addr_to_net "$_ip" "$_bits")
_gw="${_net%.*}.1" # a dumb, calculated default
_policy_rules="${_policy_rules}
${CTDB_PER_IP_ROUTING_RULE_PREF}: from $_ip lookup ctdb.$_ip "
_policy_routes="${_policy_routes}
# ip route show table ctdb.$_ip
$_net dev $_dev scope link "
if [ "$_should_add_default" = "default" ] ; then
_policy_routes="${_policy_routes}
default via $_gw dev $_dev "
fi
done
ok <<EOF
# ip rule show
0: from all lookup local ${_policy_rules}
32766: from all lookup main
32767: from all lookup default ${_policy_routes}
EOF
simple_test_command dump_routes
}
}
######################################################################
setup_ctdb_natgw ()
{
debug "Setting up NAT gateway"
natgw_config_dir="${TEST_VAR_DIR}/natgw_config"
mkdir -p "$natgw_config_dir"
# These will accumulate, 1 per test... but will be cleaned up at
# the end.
export CTDB_NATGW_NODES=$(mktemp --tmpdir="$natgw_config_dir")
# Read from stdin
while read _ip _master _dev ; do
echo "$_ip"
if [ "$_master" = "master" ] ; then
export FAKE_CTDB_NATGW_MASTER="$_ip"
fi
done >"$CTDB_NATGW_NODES"
# Assume all of the nodes are on a /24 network and have IPv4
# addresses:
read _ip <"$CTDB_NATGW_NODES"
export CTDB_NATGW_PRIVATE_NETWORK="${_ip%.*}.0/24"
# These are fixed. Probably don't use the same network for the
# private node IPs. To unset the default gateway just set it to
# "". :-)
export CTDB_NATGW_PUBLIC_IP="10.1.1.121/24"
export CTDB_NATGW_PUBLIC_IFACE="eth1"
export CTDB_NATGW_DEFAULT_GATEWAY="10.1.1.254"
export CTDB_NATGW_SLAVE_ONLY=""
}
ok_natgw_master_ip_addr_show ()
{
_mac=$(echo "$CTDB_NATGW_PUBLIC_IFACE" | md5sum | sed -r -e 's@(..)(..)(..)(..)(..)(..).*@\1:\2:\3:\4:\5:\6@')
# This is based on CTDB_NATGW_PUBLIC_IP
_brd="10.1.1.255"
ok <<EOF
1: ${CTDB_NATGW_PUBLIC_IFACE}: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether ${_mac} brd ff:ff:ff:ff:ff:ff
inet ${CTDB_NATGW_PUBLIC_IP} brd ${_brd} scope global ${CTDB_NATGW_PUBLIC_IFACE}
valid_lft forever preferred_lft forever
EOF
}
ok_natgw_slave_ip_addr_show ()
{
_mac=$(echo "$CTDB_NATGW_PUBLIC_IFACE" | md5sum | sed -r -e 's@(..)(..)(..)(..)(..)(..).*@\1:\2:\3:\4:\5:\6@')
ok <<EOF
1: ${CTDB_NATGW_PUBLIC_IFACE}: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether ${_mac} brd ff:ff:ff:ff:ff:ff
EOF
}
ok_natgw_master_static_routes ()
{
_nl="
"
_t=""
for _i in $CTDB_NATGW_STATIC_ROUTES ; do
# This is intentionally different to the code in 11.natgw ;-)
case "$_i" in
*@*)
_net=$(echo "$_i" | sed -e 's|@.*||')
_gw=$(echo "$_i" | sed -e 's|.*@||')
;;
*)
_net="$_i"
_gw="$CTDB_NATGW_DEFAULT_GATEWAY"
esac
[ -n "$_gw" ] || continue
_t="${_t}${_t:+${_nl}}"
_t="${_t}${_net} via ${_gw} dev ethXXX metric 10 "
done
ok "$_t"
}
ok_natgw_slave_static_routes ()
{
_nl="
"
_t=""
for _i in $CTDB_NATGW_STATIC_ROUTES ; do
# This is intentionally different to the code in 11.natgw ;-)
_net=$(echo "$_i" | sed -e 's|@.*||')
# The interface for the private network isn't specified as
# part of the NATGW configuration and isn't part of the
# command to add the route. It is implicitly added by "ip
# route" but our stub doesn't do this and adds "ethXXX".
_t="${_t}${_t:+${_nl}}"
_t="${_t}${_net} via ${FAKE_CTDB_NATGW_MASTER} dev ethXXX metric 10 "
done
ok "$_t"
}
######################################################################
# Samba/winbind fakery
setup_samba ()
{
setup_ctdb
service_name="samba"
if [ "$1" != "down" ] ; then
debug "Marking Samba services as up, listening and managed by CTDB"
# Get into known state.
eventscript_call ctdb_service_managed
# All possible service names for all known distros.
for i in "smb" "nmb" "samba" ; do
service "$i" force-started
done
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGED_SERVICES="foo samba bar"
export FAKE_TCP_LISTEN="0.0.0.0:445 0.0.0.0:139"
export FAKE_WBINFO_FAIL="no"
# Some things in 50.samba are backgrounded and waited for. If
# we don't sleep at all then timeouts can happen. This avoids
# that... :-)
export FAKE_SLEEP_FORCE=0.1
else
debug "Marking Samba services as down, not listening and not managed by CTDB"
# Get into known state.
eventscript_call ctdb_service_unmanaged
# All possible service names for all known distros.
for i in "smb" "nmb" "samba" ; do
service "$i" force-stopped
done
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGED_SERVICES="foo bar"
unset CTDB_MANAGES_SAMBA
export FAKE_TCP_LISTEN=""
export FAKE_WBINFO_FAIL="yes"
fi
# This is ugly but if this file isn't removed before each test
# then configuration changes between tests don't stick.
rm -f "$CTDB_VARDIR/state/samba/smb.conf.cache"
}
setup_winbind ()
{
setup_ctdb
service_name="winbind"
if [ "$1" != "down" ] ; then
debug "Marking Winbind service as up and managed by CTDB"
# Get into known state.
eventscript_call ctdb_service_managed
service "winbind" force-started
export CTDB_MANAGED_SERVICES="foo winbind bar"
export FAKE_WBINFO_FAIL="no"
else
debug "Marking Winbind service as down and not managed by CTDB"
# Get into known state.
eventscript_call ctdb_service_unmanaged
service "winbind" force-stopped
export CTDB_MANAGED_SERVICES="foo bar"
unset CTDB_MANAGES_WINBIND
export FAKE_WBINFO_FAIL="yes"
fi
}
wbinfo_down ()
{
debug "Making wbinfo commands fail"
FAKE_WBINFO_FAIL="yes"
}
######################################################################
# NFS fakery
setup_nfs ()
{
setup_ctdb
service_name="nfs"
export FAKE_RPCINFO_SERVICES=""
export CTDB_NFS_SKIP_SHARE_CHECK="no"
export CTDB_MONITOR_NFS_THREAD_COUNT RPCNFSDCOUNT FAKE_NFSD_THREAD_PIDS
export CTDB_NFS_DUMP_STUCK_THREADS
# Reset the failcounts for nfs services.
eventscript_call eval rm -f '$ctdb_fail_dir/nfs_*'
if [ "$1" != "down" ] ; then
debug "Setting up NFS environment: all RPC services up, NFS managed by CTDB"
eventscript_call ctdb_service_managed
service "nfs" force-started # might not be enough
export CTDB_MANAGED_SERVICES="foo nfs bar"
rpc_services_up "nfs" "mountd" "rquotad" "nlockmgr" "status"
else
debug "Setting up NFS environment: all RPC services down, NFS not managed by CTDB"
eventscript_call ctdb_service_unmanaged
service "nfs" force-stopped # might not be enough
eventscript_call startstop_nfs stop
export CTDB_MANAGED_SERVICES="foo bar"
unset CTDB_MANAGES_NFS
fi
}
setup_nfs_ganesha ()
{
setup_nfs "$@"
export CTDB_NFS_SERVER_MODE="ganesha"
if [ "$1" != "down" ] ; then
export CTDB_MANAGES_NFS="yes"
fi
# We do not support testing the Ganesha-nfsd-specific part of the
# eventscript.
export CTDB_SKIP_GANESHA_NFSD_CHECK="yes"
export CTDB_NFS_SKIP_SHARE_CHECK="yes"
}
rpc_services_down ()
{
for _i ; do
debug "Marking RPC service \"${_i}\" as unavailable"
FAKE_RPCINFO_SERVICES=$(echo "$FAKE_RPCINFO_SERVICES" | sed -r -e "s@[[:space:]]*${_i}:[0-9]+:[0-9]+@@g")
done
}
rpc_services_up ()
{
for _i ; do
debug "Marking RPC service \"${_i}\" as available"
case "$_i" in
nfs) _t="2:3" ;;
mountd) _t="1:3" ;;
rquotad) _t="1:2" ;;
nlockmgr) _t="3:4" ;;
status) _t="1:1" ;;
*) die "Internal error - unsupported RPC service \"${_i}\"" ;;
esac
FAKE_RPCINFO_SERVICES="${FAKE_RPCINFO_SERVICES}${FAKE_RPCINFO_SERVICES:+ }${_i}:${_t}"
done
}
# Set the required result for a particular RPC program having failed
# for a certain number of iterations. This is probably still a work
# in progress. Note that we could hook aggressively
# nfs_check_rpc_service() to try to implement this but we're better
# off testing nfs_check_rpc_service() using independent code... even
# if it is incomplete and hacky. So, if the 60.nfs eventscript
# changes and the tests start to fail then it may be due to this
# function being incomplete.
rpc_set_service_failure_response ()
{
_progname="$1"
# The number of failures defaults to the iteration number. This
# will be true when we fail from the 1st iteration... but we need
# the flexibility to set the number of failures.
_numfails="${2:-${iteration}}"
_etc="$CTDB_ETCDIR" # shortcut for readability
for _c in "$_etc/sysconfig/nfs" "$_etc/default/nfs" "$_etc/ctdb/sysconfig/nfs" ; do
if [ -r "$_c" ] ; then
. "$_c"
break
fi
done
# A handy newline. :-)
_nl="
"
# Default
ok_null
_file=$(ls "${CTDB_BASE}/nfs-rpc-checks.d/"[0-9][0-9]."${_progname}.check")
[ -r "$_file" ] || die "RPC check file \"$_file\" does not exist or is not unique"
while read _op _li _actions ; do
# Skip comments
case "$_op" in
\#*) continue ;;
esac
_hit=false
if [ "$_op" != "%" ] ; then
if [ $_numfails $_op $_li ] ; then
_hit=true
fi
else
if [ $(($_numfails $_op $_li)) -eq 0 ] ; then
_hit=true
fi
fi
if $_hit ; then
_out=""
_rc=0
for _action in $_actions ; do
case "$_action" in
verbose)
_ver=1
_pn="$_progname"
case "$_progname" in
nfsd) _ver=3 ; _pn="nfs" ;;
lockd) _ver=4 ; _pn="nlockmgr" ;;
statd) _pn="status" ;;
esac
_out="\
ERROR: $_pn failed RPC check:
rpcinfo: RPC: Program not registered
program $_pn version $_ver is not available"
;;
restart*)
_p="rpc.${_progname}"
case "$_action" in
*:b) _bg="&" ;;
*) _bg="" ;;
esac
case "$_progname" in
nfsd)
_t="\
Trying to restart NFS service"
if [ -n "$CTDB_NFS_DUMP_STUCK_THREADS" ] ; then
for _pid in $FAKE_NFSD_THREAD_PIDS ; do
_t="\
$_t
${_bg}Stack trace for stuck nfsd thread [${_pid}]:
${_bg}[<ffffffff87654321>] fake_stack_trace_for_pid_${_pid}/stack+0x0/0xff"
done
fi
_t="\
${_t}
${_bg}Starting nfslock: OK
${_bg}Starting nfs: OK"
;;
lockd)
_t="\
Trying to restart lock manager service
${_bg}Starting nfslock: OK"
;;
*)
_t="Trying to restart $_progname [${_p}]"
esac
_out="${_out}${_out:+${_nl}}${_t}"
;;
unhealthy)
_rc=1
esac
done
required_result $_rc "$_out"
return
fi
done <"$_file"
}
######################################################################
# VSFTPD fakery
setup_vsftpd ()
{
service_name="vsftpd"
if [ "$1" != "down" ] ; then
die "setup_vsftpd up not implemented!!!"
else
debug "Setting up VSFTPD environment: service down, not managed by CTDB"
eventscript_call ctdb_service_unmanaged
service vsftpd force-stopped
export CTDB_MANAGED_SERVICES="foo"
unset CTDB_MANAGES_VSFTPD
fi
}
######################################################################
# HTTPD fakery
setup_httpd ()
{
if [ "$1" != "down" ] ; then
die "setup_httpd up not implemented!!!"
else
debug "Setting up HTTPD environment: service down, not managed by CTDB"
for service_name in "apache2" "httpd" ; do
eventscript_call ctdb_service_unmanaged
service "$service_name" force-stopped
done
export CTDB_MANAGED_SERVICES="foo"
unset CTDB_MANAGES_HTTPD
fi
}
######################################################################
# multipathd fakery
setup_multipathd ()
{
for i ; do
case "$i" in
\!*)
_t="${i#!}"
echo "Marking ${_t} as having no active paths"
FAKE_MULTIPATH_FAILURES="${FAKE_MULTIPATH_FAILURES}${FAKE_MULTIPATH+FAILURES:+ }${_t}"
;;
*)
_t="$i"
esac
CTDB_MONITOR_MPDEVICES="${CTDB_MONITOR_MPDEVICES}${CTDB_MONITOR_MPDEVICES:+ }${_t}"
done
export CTDB_MONITOR_MPDEVICES FAKE_MULTIPATH_FAILURES
export FAKE_SLEEP_FORCE=0.1
}
######################################################################
# Result and test functions
# Set some globals and print the summary.
define_test ()
{
desc="$1"
_f=$(basename "$0" ".sh")
# Remaining format should be NN.service.event.NNN or NN.service.NNN:
_num="${_f##*.}"
_f="${_f%.*}"
case "$_f" in
*.*.*)
script="${_f%.*}"
event="${_f##*.}"
;;
*.*)
script="$_f"
unset event
;;
*)
die "Internal error - unknown testcase filename format"
esac
printf "%-17s %-10s %-4s - %s\n\n" "$script" "$event" "$_num" "$desc"
}
_extra_header ()
{
cat <<EOF
CTDB_BASE="$CTDB_BASE"
CTDB_ETCDIR="$CTDB_ETCDIR"
ctdb client is "$(which ctdb)"
EOF
}
# Run an eventscript once. The test passes if the return code and
# output match those required.
# Any args are passed to the eventscript.
simple_test ()
{
[ -n "$event" ] || die 'simple_test: $event not set'
_extra_header=$(_extra_header)
echo "Running eventscript \"$script $event${1:+ }$*\""
_shell=""
if $TEST_COMMAND_TRACE ; then
_shell="sh -x"
else
_shell="sh"
fi
_out=$($_shell "${CTDB_BASE}/events.d/$script" "$event" "$@" 2>&1)
result_check "$_extra_header"
}
simple_test_event ()
{
# If something has previously failed then don't continue.
: ${_passed:=true}
$_passed || return 1
event="$1" ; shift
echo "=================================================="
simple_test "$@"
}
simple_test_command ()
{
# If something has previously failed then don't continue.
: ${_passed:=true}
$_passed || return 1
echo "=================================================="
echo "Running command \"$*\""
_out=$("$@" 2>&1)
result_check
}
check_ctdb_logfile ()
{
# If something has previously failed then don't continue.
: ${_passed:=true}
$_passed || return 1
echo "=================================================="
echo "Checking CTDB_LOGFILE=\"${CTDB_LOGFILE}\""
_out=$(cat "$CTDB_LOGFILE" 2>&1)
result_check
}
# Run an eventscript iteratively.
# - 1st argument is the number of iterations.
# - 2nd argument is something to eval to do setup for every iteration.
# The easiest thing to do here is to define a function and pass it
# here.
# - Subsequent arguments come in pairs: an iteration number and
# something to eval for that iteration. Each time an iteration
# number is matched the associated argument is given to eval after
# the default setup is done. The iteration numbers need to be given
# in ascending order.
#
# Some optional args can be given *before* these, surrounded by extra
# "--" args. These args are passed to the eventscript. Quoting is
# lost.
#
# One use of the 2nd and further arguments is to call
# required_result() to change what is expected of a particular
# iteration.
iterate_test ()
{
[ -n "$event" ] || die 'simple_test: $event not set'
args=""
if [ "$1" = "--" ] ; then
shift
while [ "$1" != "--" ] ; do
args="${args}${args:+ }$1"
shift
done
shift
fi
_repeats="$1"
_setup_default="$2"
shift 2
echo "Running $_repeats iterations of \"$script $event\" $args"
_result=true
for iteration in $(seq 1 $_repeats) ; do
# This is inefficient because the iteration-specific setup
# might completely replace the default one. However, running
# the default is good because it allows you to revert to a
# particular result without needing to specify it explicitly.
eval $_setup_default
if [ $iteration = "$1" ] ; then
eval $2
shift 2
fi
_shell=""
if $TEST_COMMAND_TRACE ; then
_shell="sh -x"
else
_shell="sh"
fi
_out=$($_shell "${CTDB_BASE}/events.d/$script" "$event" $args 2>&1)
_rc=$?
if [ -n "$OUT_FILTER" ] ; then
_fout=$(echo "$_out" | eval sed -r $OUT_FILTER)
else
_fout="$_out"
fi
if [ "$_fout" = "$required_output" -a $_rc = $required_rc ] ; then
_passed=true
else
_passed=false
_result=false
fi
result_print "$_passed" "$_out" "$_rc" "Iteration $iteration"
done
result_footer "$_result" "$(_extra_header)"
}
|