3 trap 'print_summary && touch $TF_FAIL && \
4 echo "test-framework exiting on error"' ERR
8 export EJOURNAL=${EJOURNAL:-""}
9 export REFORMAT=${REFORMAT:-""}
10 export WRITECONF=${WRITECONF:-""}
11 export VERBOSE=${VERBOSE:-false}
12 export CATASTROPHE=${CATASTROPHE:-/proc/sys/lnet/catastrophe}
15 export GSS_PIPEFS=false
16 export IDENTITY_UPCALL=default
18 export JOBSTATS_AUTO=${JOBSTATS_AUTO:-1}
19 export JOBID_VAR=${JOBID_VAR:-"procname_uid"}
21 # LOAD_LLOOP: LU-409: only load llite_lloop module if kernel < 2.6.32 or
22 # LOAD_LLOOP is true. LOAD_LLOOP is false by default.
23 export LOAD_LLOOP=${LOAD_LLOOP:-false}
25 #export PDSH="pdsh -S -Rssh -w"
27 # function used by scripts run on remote nodes
28 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
29 . $LUSTRE/tests/functions.sh
30 . $LUSTRE/tests/yaml.sh
32 export LD_LIBRARY_PATH=${LUSTRE}/utils:${LD_LIBRARY_PATH}
34 LUSTRE_TESTS_CFG_DIR=${LUSTRE_TESTS_CFG_DIR:-${LUSTRE}/tests/cfg}
36 EXCEPT_LIST_FILE=${EXCEPT_LIST_FILE:-${LUSTRE_TESTS_CFG_DIR}/tests-to-skip.sh}
38 if [ -f "$EXCEPT_LIST_FILE" ]; then
39 echo "Reading test skip list from $EXCEPT_LIST_FILE"
44 # check config files for options in decreasing order of preference
45 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/lustre.conf ] &&
46 MODPROBECONF=/etc/modprobe.d/lustre.conf
47 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/Lustre ] &&
48 MODPROBECONF=/etc/modprobe.d/Lustre
49 [ -z "$MODPROBECONF" -a -f /etc/modprobe.conf ] &&
50 MODPROBECONF=/etc/modprobe.conf
54 [[ $DIR/ = $MOUNT/* ]] || \
55 { failed=1 && echo "DIR=$DIR not in $MOUNT. Aborting."; }
56 [[ $DIR1/ = $MOUNT1/* ]] || \
57 { failed=1 && echo "DIR1=$DIR1 not in $MOUNT1. Aborting."; }
58 [[ $DIR2/ = $MOUNT2/* ]] || \
59 { failed=1 && echo "DIR2=$DIR2 not in $MOUNT2. Aborting"; }
61 [ -n "$failed" ] && exit 99 || true
65 echo "usage: $0 [-r] [-f cfgfile]"
73 [ "$TESTSUITE" == "lfsck" ] && return 0
74 [ -n "$ONLY" ] && echo "WARNING: ONLY is set to $(echo $ONLY)"
76 local form="%-13s %-17s %-9s %s %s\n"
77 printf "$form" "status" "script" "Total(sec)" "E(xcluded) S(low)"
78 echo "------------------------------------------------------------------------------------"
79 for O in $DEFAULT_SUITES; do
80 O=$(echo $O | tr "-" "_" | tr "[:lower:]" "[:upper:]")
81 [ "${!O}" = "no" ] && continue || true
82 local o=$(echo $O | tr "[:upper:]_" "[:lower:]-")
83 local log=${TMP}/${o}.log
84 if is_sanity_benchmark $o; then
85 log=${TMP}/sanity-benchmark.log
90 local status=Unfinished
92 skipped=$(grep excluded $log | awk '{ printf " %s", $3 }' | sed 's/test_//g')
93 slow=$(egrep "^PASS|^FAIL" $log | tr -d "("| sed s/s\)$//g | sort -nr -k 3 | head -5 | awk '{ print $2":"$3"s" }')
94 total=$(grep duration $log | awk '{ print $2}')
95 if [ "${!O}" = "done" ]; then
99 local durations=$(egrep "^PASS|^FAIL" $log | tr -d "("| sed s/s\)$//g | awk '{ print $2":"$3"|" }')
100 details=$(printf "%s\n%s %s %s\n" "$details" "DDETAILS" "$O" "$(echo $durations)")
103 printf "$form" $status "$O" "${total}" "E=$skipped"
104 printf "$form" "-" "-" "-" "S=$(echo $slow)"
107 for O in $DEFAULT_SUITES; do
108 O=$(echo $O | tr "-" "_" | tr "[:lower:]" "[:upper:]")
109 if [ "${!O}" = "no" ]; then
110 printf "$form" "Skipped" "$O" ""
114 # print the detailed tests durations if DDETAILS=true
121 export LUSTRE=`absolute_path $LUSTRE`
122 export TESTSUITE=`basename $0 .sh`
123 export TEST_FAILED=false
124 export FAIL_ON_SKIP_ENV=${FAIL_ON_SKIP_ENV:-false}
126 export MKE2FS=$MKE2FS
127 if [ -z "$MKE2FS" ]; then
128 if which mkfs.ldiskfs >/dev/null 2>&1; then
129 export MKE2FS=mkfs.ldiskfs
135 export DEBUGFS=$DEBUGFS
136 if [ -z "$DEBUGFS" ]; then
137 if which debugfs.ldiskfs >/dev/null 2>&1; then
138 export DEBUGFS=debugfs.ldiskfs
140 export DEBUGFS=debugfs
144 export TUNE2FS=$TUNE2FS
145 if [ -z "$TUNE2FS" ]; then
146 if which tunefs.ldiskfs >/dev/null 2>&1; then
147 export TUNE2FS=tunefs.ldiskfs
149 export TUNE2FS=tune2fs
153 export E2LABEL=$E2LABEL
154 if [ -z "$E2LABEL" ]; then
155 if which label.ldiskfs >/dev/null 2>&1; then
156 export E2LABEL=label.ldiskfs
158 export E2LABEL=e2label
162 export DUMPE2FS=$DUMPE2FS
163 if [ -z "$DUMPE2FS" ]; then
164 if which dumpfs.ldiskfs >/dev/null 2>&1; then
165 export DUMPE2FS=dumpfs.ldiskfs
167 export DUMPE2FS=dumpe2fs
171 export E2FSCK=$E2FSCK
172 if [ -z "$E2FSCK" ]; then
173 if which fsck.ldiskfs >/dev/null 2>&1; then
174 export E2FSCK=fsck.ldiskfs
180 export LFSCK_BIN=${LFSCK_BIN:-lfsck}
181 export LFSCK_ALWAYS=${LFSCK_ALWAYS:-"no"} # check fs after each test suite
182 export FSCK_MAX_ERR=4 # File system errors left uncorrected
184 export ZFS=${ZFS:-zfs}
185 export ZPOOL=${ZPOOL:-zpool}
186 export ZDB=${ZDB:-zdb}
188 #[ -d /r ] && export ROOT=${ROOT:-/r}
189 export TMP=${TMP:-$ROOT/tmp}
190 export TESTSUITELOG=${TMP}/${TESTSUITE}.log
191 export LOGDIR=${LOGDIR:-${TMP}/test_logs/$(date +%s)}
192 export TESTLOG_PREFIX=$LOGDIR/$TESTSUITE
194 export HOSTNAME=${HOSTNAME:-$(hostname -s)}
195 if ! echo $PATH | grep -q $LUSTRE/utils; then
196 export PATH=$LUSTRE/utils:$PATH
198 if ! echo $PATH | grep -q $LUSTRE/utils/gss; then
199 export PATH=$LUSTRE/utils/gss:$PATH
201 if ! echo $PATH | grep -q $LUSTRE/tests; then
202 export PATH=$LUSTRE/tests:$PATH
204 if ! echo $PATH | grep -q $LUSTRE/../lustre-iokit/sgpdd-survey; then
205 export PATH=$LUSTRE/../lustre-iokit/sgpdd-survey:$PATH
207 export LST=${LST:-"$LUSTRE/../lnet/utils/lst"}
208 [ ! -f "$LST" ] && export LST=$(which lst)
209 export SGPDDSURVEY=${SGPDDSURVEY:-"$LUSTRE/../lustre-iokit/sgpdd-survey/sgpdd-survey")}
210 [ ! -f "$SGPDDSURVEY" ] && export SGPDDSURVEY=$(which sgpdd-survey)
211 # Ubuntu, at least, has a truncate command in /usr/bin
212 # so fully path our truncate command.
213 export TRUNCATE=${TRUNCATE:-$LUSTRE/tests/truncate}
214 export MDSRATE=${MDSRATE:-"$LUSTRE/tests/mpi/mdsrate"}
215 [ ! -f "$MDSRATE" ] && export MDSRATE=$(which mdsrate 2> /dev/null)
216 if ! echo $PATH | grep -q $LUSTRE/tests/racer; then
217 export PATH=$LUSTRE/tests/racer:$PATH:
219 if ! echo $PATH | grep -q $LUSTRE/tests/mpi; then
220 export PATH=$LUSTRE/tests/mpi:$PATH
222 export RSYNC_RSH=${RSYNC_RSH:-rsh}
224 export LCTL=${LCTL:-"$LUSTRE/utils/lctl"}
225 [ ! -f "$LCTL" ] && export LCTL=$(which lctl)
226 export LFS=${LFS:-"$LUSTRE/utils/lfs"}
227 [ ! -f "$LFS" ] && export LFS=$(which lfs)
228 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
229 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
231 export L_GETIDENTITY=${L_GETIDENTITY:-"$LUSTRE/utils/l_getidentity"}
232 if [ ! -f "$L_GETIDENTITY" ]; then
233 if `which l_getidentity > /dev/null 2>&1`; then
234 export L_GETIDENTITY=$(which l_getidentity)
236 export L_GETIDENTITY=NONE
239 export LL_DECODE_FILTER_FID=${LL_DECODE_FILTER_FID:-"$LUSTRE/utils/ll_decode_filter_fid"}
240 [ ! -f "$LL_DECODE_FILTER_FID" ] && export LL_DECODE_FILTER_FID="ll_decode_filter_fid"
241 export MKFS=${MKFS:-"$LUSTRE/utils/mkfs.lustre"}
242 [ ! -f "$MKFS" ] && export MKFS="mkfs.lustre"
243 export TUNEFS=${TUNEFS:-"$LUSTRE/utils/tunefs.lustre"}
244 [ ! -f "$TUNEFS" ] && export TUNEFS="tunefs.lustre"
245 export CHECKSTAT="${CHECKSTAT:-"checkstat -v"} "
246 export LUSTRE_RMMOD=${LUSTRE_RMMOD:-$LUSTRE/scripts/lustre_rmmod}
247 [ ! -f "$LUSTRE_RMMOD" ] &&
248 export LUSTRE_RMMOD=$(which lustre_rmmod 2> /dev/null)
249 export LFS_MIGRATE=${LFS_MIGRATE:-$LUSTRE/scripts/lfs_migrate}
250 [ ! -f "$LFS_MIGRATE" ] &&
251 export LFS_MIGRATE=$(which lfs_migrate 2> /dev/null)
252 export NAME=${NAME:-local}
253 export LGSSD=${LGSSD:-"$LUSTRE/utils/gss/lgssd"}
254 [ "$GSS_PIPEFS" = "true" ] && [ ! -f "$LGSSD" ] && \
255 export LGSSD=$(which lgssd)
256 export LSVCGSSD=${LSVCGSSD:-"$LUSTRE/utils/gss/lsvcgssd"}
257 [ ! -f "$LSVCGSSD" ] && export LSVCGSSD=$(which lsvcgssd 2> /dev/null)
258 export KRB5DIR=${KRB5DIR:-"/usr/kerberos"}
260 export SAVE_PWD=${SAVE_PWD:-$LUSTRE/tests}
263 if [ "$ACCEPTOR_PORT" ]; then
264 export PORT_OPT="--port $ACCEPTOR_PORT"
269 echo "Using GSS/krb5 ptlrpc security flavor"
270 which lgss_keyring > /dev/null 2>&1 || \
271 error_exit "built with gss disabled! SEC=$SEC"
282 IDENTITY_UPCALL=false
285 USE_OFD=${USE_OFD:-yes}
286 [ "$USE_OFD" = "yes" ] && LOAD_MODULES_REMOTE=true
288 export LOAD_MODULES_REMOTE=${LOAD_MODULES_REMOTE:-false}
290 # Paths on remote nodes, if different
291 export RLUSTRE=${RLUSTRE:-$LUSTRE}
292 export RPWD=${RPWD:-$PWD}
293 export I_MOUNTED=${I_MOUNTED:-"no"}
294 if [ ! -f /lib/modules/$(uname -r)/kernel/fs/lustre/mds.ko -a \
295 ! -f /lib/modules/$(uname -r)/updates/kernel/fs/lustre/mds.ko -a \
296 ! -f `dirname $0`/../mds/mds.ko ]; then
297 export CLIENTMODSONLY=yes
300 export SHUTDOWN_ATTEMPTS=${SHUTDOWN_ATTEMPTS:-3}
304 while getopts "rvwf:" opt $*; do
307 r) REFORMAT=--reformat;;
309 w) WRITECONF=writeconf;;
314 shift $((OPTIND - 1))
317 # print the durations of each test if "true"
318 DDETAILS=${DDETAILS:-false}
319 [ "$TESTSUITELOG" ] && rm -f $TESTSUITELOG || true
327 ncpts=$(do_facet $facet "lctl get_param -n " \
328 "cpu_partition_table 2>/dev/null| wc -l" || echo 1)
330 if [ $ncpts -eq 0 ]; then
338 # split arguments like "1.8.6-wc3" into "1", "8", "6", "wc3"
339 eval set -- $(tr "[:punct:]" " " <<< $*)
341 echo -n $((($1 << 16) | ($2 << 8) | $3))
344 export LINUX_VERSION=$(uname -r | sed -e "s/[-.]/ /3" -e "s/ .*//")
345 export LINUX_VERSION_CODE=$(version_code ${LINUX_VERSION//\./ })
348 /sbin/lsmod | grep -q "^\<$1\>"
351 # Load a module on the system where this is running.
353 # Synopsis: load_module module_name [module arguments for insmod/modprobe]
355 # If module arguments are not given but MODOPTS_<MODULE> is set, then its value
356 # will be used as the arguments. Otherwise arguments will be obtained from
357 # /etc/modprobe.conf, from /etc/modprobe.d/Lustre, or else none will be used.
364 BASE=`basename $module $EXT`
366 module_loaded ${BASE} && return
368 # If no module arguments were passed, get them from $MODOPTS_<MODULE>, else from
370 if [ $# -eq 0 ]; then
371 # $MODOPTS_<MODULE>; we could use associative arrays, but that's not in
372 # Bash until 4.x, so we resort to eval.
373 optvar="MODOPTS_$(basename $module | tr a-z A-Z)"
374 eval set -- \$$optvar
375 if [ $# -eq 0 -a -n "$MODPROBECONF" ]; then
376 # Nothing in $MODOPTS_<MODULE>; try modprobe.conf
377 set -- $(grep -P "^options\\s+${BASE}" $MODPROBECONF)
378 # Get rid of "options $module"
379 (($# > 0)) && shift 2
381 # Ensure we have accept=all for lnet
382 if [ $(basename $module) = lnet ]; then
383 # OK, this is a bit wordy...
384 local arg accept_all_present=false
386 [ "$arg" = accept=all ] && accept_all_present=true
388 $accept_all_present || set -- "$@" accept=all
393 [ $# -gt 0 ] && echo "${module} options: '$*'"
395 # Note that insmod will ignore anything in modprobe.conf, which is why we're
396 # passing options on the command-line.
397 if [ "$BASE" == "lnet_selftest" ] && \
398 [ -f ${LUSTRE}/../lnet/selftest/${module}${EXT} ]; then
399 insmod ${LUSTRE}/../lnet/selftest/${module}${EXT}
400 elif [ -f ${LUSTRE}/${module}${EXT} ]; then
401 insmod ${LUSTRE}/${module}${EXT} "$@"
403 # must be testing a "make install" or "rpm" installation
404 # note failed to load ptlrpc_gss is considered not fatal
405 if [ "$BASE" == "ptlrpc_gss" ]; then
406 modprobe $BASE "$@" 2>/dev/null || echo "gss/krb5 is not supported"
413 llite_lloop_enabled() {
414 local n1=$(uname -r | cut -d. -f1)
415 local n2=$(uname -r | cut -d. -f2)
416 local n3=$(uname -r | cut -d- -f1 | cut -d. -f3)
418 # load the llite_lloop module for < 2.6.32 kernels
419 if [[ $n1 -lt 2 ]] || [[ $n1 -eq 2 && $n2 -lt 6 ]] || \
420 [[ $n1 -eq 2 && $n2 -eq 6 && $n3 -lt 32 ]] || \
427 load_modules_local() {
428 [ $(facet_fstype ost1) == "zfs" ] && export USE_OFD=yes
430 if [ -n "$MODPROBE" ]; then
432 echo "Using modprobe to load modules"
436 echo Loading modules from $LUSTRE
440 if [ -f /sys/devices/system/cpu/online ]; then
441 ncpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/online) + 1))
442 echo "detected $ncpus online CPUs by sysfs"
444 ncpus=$(getconf _NPROCESSORS_CONF 2>/dev/null)
446 if [ $rc -eq 0 ]; then
447 echo "detected $ncpus online CPUs by getconf"
449 echo "Can't detect number of CPUs"
454 # if there is only one CPU core, libcfs can only create one partition
455 # if there is more than 4 CPU cores, libcfs should create multiple CPU
456 # partitions. So we just force libcfs to create 2 partitions for
457 # system with 2 or 4 cores
458 if [ $ncpus -le 4 ] && [ $ncpus -gt 1 ]; then
459 # force to enable multiple CPU partitions
460 echo "Force libcfs to create 2 CPU partitions"
461 MODOPTS_LIBCFS="cpu_npartitions=2 $MODOPTS_LIBCFS"
463 echo "libcfs will create CPU partition based on online CPUs"
466 load_module ../libcfs/libcfs/libcfs
468 [ "$PTLDEBUG" ] && lctl set_param debug="$PTLDEBUG"
469 [ "$SUBSYSTEM" ] && lctl set_param subsystem_debug="${SUBSYSTEM# }"
470 load_module ../lnet/lnet/lnet
471 LNETLND=${LNETLND:-"socklnd/ksocklnd"}
472 load_module ../lnet/klnds/$LNETLND
473 load_module lvfs/lvfs
474 load_module obdclass/obdclass
475 load_module ptlrpc/ptlrpc
476 load_module ptlrpc/gss/ptlrpc_gss
484 load_module obdecho/obdecho
485 if ! client_only; then
486 SYMLIST=/proc/kallsyms
487 grep -q crc16 $SYMLIST || { modprobe crc16 2>/dev/null || true; }
488 grep -q -w jbd $SYMLIST || { modprobe jbd 2>/dev/null || true; }
489 grep -q -w jbd2 $SYMLIST || { modprobe jbd2 2>/dev/null || true; }
490 [ "$LQUOTA" != "no" ] && load_module quota/lquota $LQUOTAOPTS
491 if [[ $(node_fstypes $HOSTNAME) == *zfs* ]]; then
493 load_module osd-zfs/osd_zfs
498 if [[ $(node_fstypes $HOSTNAME) == *ldiskfs* ]]; then
500 # This block shall be moved up beside osd-zfs as soon
501 # as osd-ldiskfs stops using mdd symbols.
503 grep -q exportfs_decode_fh $SYMLIST ||
504 { modprobe exportfs 2> /dev/null || true; }
505 load_module ../ldiskfs/ldiskfs/ldiskfs
506 load_module lvfs/fsfilt_ldiskfs
507 load_module osd-ldiskfs/osd_ldiskfs
518 load_module llite/lustre
519 llite_lloop_enabled && load_module llite/llite_lloop
520 [ -d /r ] && OGDB=${OGDB:-"/r/tmp"}
522 rm -f $OGDB/ogdb-$HOSTNAME
523 $LCTL modules > $OGDB/ogdb-$HOSTNAME
525 # 'mount' doesn't look in $PATH, just sbin
526 if [ -f $LUSTRE/utils/mount.lustre ] && \
527 ! grep -qe "/sbin/mount\.lustre " /proc/mounts; then
528 [ ! -f /sbin/mount.lustre ] && touch /sbin/mount.lustre
529 mount --bind $LUSTRE/utils/mount.lustre /sbin/mount.lustre || true
536 # load modules on remote nodes optionally
537 # lustre-tests have to be installed on these nodes
538 if $LOAD_MODULES_REMOTE; then
539 local list=$(comma_list $(remote_nodes_list))
540 if [ -n "$list" ]; then
541 echo "loading modules on: '$list'"
542 do_rpc_nodes "$list" load_modules_local
548 LEAK_LUSTRE=$(dmesg | tail -n 30 | grep "obd_memory.*leaked" || true)
549 LEAK_PORTALS=$(dmesg | tail -n 20 | grep "Portals memory leaked" || true)
550 if [ "$LEAK_LUSTRE" -o "$LEAK_PORTALS" ]; then
551 echo "$LEAK_LUSTRE" 1>&2
552 echo "$LEAK_PORTALS" 1>&2
553 mv $TMP/debug $TMP/debug-leak.`date +%s` || true
554 echo "Memory leaks detected"
555 [ -n "$IGNORE_LEAK" ] && { echo "ignoring leaks" && return 0; } || true
561 wait_exit_ST client # bug 12845
563 $LUSTRE_RMMOD ldiskfs || return 2
565 if $LOAD_MODULES_REMOTE; then
566 local list=$(comma_list $(remote_nodes_list))
567 if [ -n "$list" ]; then
568 echo "unloading modules on: '$list'"
569 do_rpc_nodes "$list" $LUSTRE_RMMOD ldiskfs
570 do_rpc_nodes "$list" check_mem_leak
574 if grep -qe "/sbin/mount\.lustre" /proc/mounts; then
575 umount /sbin/mount.lustre || true
576 [ -w /sbin/mount.lustre -a ! -s /sbin/mount.lustre ] && \
577 rm -f /sbin/mount.lustre || true
580 check_mem_leak || return 254
582 echo "modules unloaded."
586 check_gss_daemon_nodes() {
590 do_nodesv $list "num=\\\$(ps -o cmd -C $dname | grep $dname | wc -l);
591 if [ \\\"\\\$num\\\" -ne 1 ]; then
592 echo \\\$num instance of $dname;
597 check_gss_daemon_facet() {
601 num=`do_facet $facet ps -o cmd -C $dname | grep $dname | wc -l`
602 if [ $num -ne 1 ]; then
603 echo "$num instance of $dname on $facet"
612 echo Stopping $@ on $list
613 do_nodes $list "killall -2 $@ 2>/dev/null || true"
616 # start gss daemons on all nodes, or
617 # "daemon" on "list" if set
618 start_gss_daemons() {
622 if [ "$list" ] && [ "$daemon" ] ; then
623 echo "Starting gss daemon on nodes: $list"
624 do_nodes $list "$daemon" || return 8
628 local list=$(comma_list $(mdts_nodes))
630 echo "Starting gss daemon on mds: $list"
631 do_nodes $list "$LSVCGSSD -v" || return 1
633 do_nodes $list "$LGSSD -v" || return 2
636 list=$(comma_list $(osts_nodes))
637 echo "Starting gss daemon on ost: $list"
638 do_nodes $list "$LSVCGSSD -v" || return 3
639 # starting on clients
641 local clients=${CLIENTS:-`hostname`}
643 echo "Starting $LGSSD on clients $clients "
644 do_nodes $clients "$LGSSD -v" || return 4
647 # wait daemons entering "stable" status
651 # check daemons are running
653 list=$(comma_list $(mdts_nodes) $(osts_nodes))
654 check_gss_daemon_nodes $list lsvcgssd || return 5
656 list=$(comma_list $(mdts_nodes))
657 check_gss_daemon_nodes $list lgssd || return 6
660 check_gss_daemon_nodes $clients lgssd || return 7
665 local list=$(comma_list $(mdts_nodes))
667 send_sigint $list lsvcgssd lgssd
669 list=$(comma_list $(osts_nodes))
670 send_sigint $list lsvcgssd
672 list=${CLIENTS:-`hostname`}
673 send_sigint $list lgssd
678 if ! module_loaded ptlrpc_gss; then
679 load_module ptlrpc/gss/ptlrpc_gss
680 module_loaded ptlrpc_gss ||
681 error_exit "init_gss : GSS=$GSS, but gss/krb5 is not supported!"
683 start_gss_daemons || error_exit "start gss daemon failed! rc=$?"
685 if [ -n "$LGSS_KEYRING_DEBUG" ]; then
686 echo $LGSS_KEYRING_DEBUG > /proc/fs/lustre/sptlrpc/gss/lgss_keyring/debug_level
694 # maybe cleanup credential cache?
701 echo -n $facet | sed -e 's/^fs[0-9]\+//' -e 's/[0-9]\+//' |
702 tr '[:lower:]' '[:upper:]'
708 if [ $facet == mgs ]; then
712 echo -n $facet | sed -e 's/^fs[0-9]\+//' | sed -e 's/^[a-z]\+//'
720 if [ -n "${!var}" ]; then
725 var=$(facet_type $facet)FSTYPE
726 if [ -n "${!var}" ]; then
731 if [ -n "$FSTYPE" ]; then
743 local facets=$(get_facets)
746 for facet in ${facets//,/ }; do
747 if [ $node == $(facet_host $facet) ] ||
748 [ $node == "$(facet_failover_host $facet)" ]; then
749 fstype=$(facet_fstype $facet)
750 if [[ $fstypes != *$fstype* ]]; then
751 fstypes+="${fstypes:+,}$fstype"
762 local fstype=$(facet_fstype $facet)
766 label=$(do_facet ${facet} "$E2LABEL ${dev} 2>/dev/null");;
768 label=$(do_facet ${facet} "$ZFS get -H -o value lustre:svname \
769 ${dev} 2>/dev/null");;
771 error "unknown fstype!";;
779 local device=$(mdsdevname $num)
780 local label=$(devicelabel mds$num ${device} | grep -v "CMD: ")
786 local device=$(ostdevname $num)
787 local label=$(devicelabel ost$num ${device} | grep -v "CMD: ")
792 # This and set_obdfilter_param() shall be used to access OSD parameters
793 # once existed under "obdfilter":
798 # writethrough_cache_enable
800 get_obdfilter_param() {
802 local device=${2:-$FSNAME-OST*}
805 do_nodes $nodes "$LCTL get_param -n obdfilter.$device.$name \
806 osd-*.$device.$name 2>&1" | grep -v 'Found no match'
809 set_obdfilter_param() {
811 local device=${2:-$FSNAME-OST*}
815 do_nodes $nodes "$LCTL set_param -n obdfilter.$device.$name=$value \
816 osd-*.$device.$name=$value 2>&1" | grep -v 'Found no match'
820 local dz=${1:-$DEBUG_SIZE}
822 if [ -f /sys/devices/system/cpu/possible ]; then
823 local cpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/possible)+1))
825 local cpus=$(getconf _NPROCESSORS_CONF)
828 # bug 19944, adjust size to be -gt num_possible_cpus()
829 # promise 2MB for every cpu at least
830 if [ -n "$cpus" ] && [ $((cpus * 2)) -gt $dz ]; then
833 lctl set_param debug_mb=$dz
836 set_default_debug () {
837 local debug=${1:-"$PTLDEBUG"}
838 local subsys=${2:-"$SUBSYSTEM"}
839 local debug_size=${3:-$DEBUG_SIZE}
841 [ -n "$debug" ] && lctl set_param debug="$debug" >/dev/null
842 [ -n "$subsys" ] && lctl set_param subsystem_debug="${subsys# }" >/dev/null
844 [ -n "$debug_size" ] && set_debug_size $debug_size > /dev/null
847 set_default_debug_nodes () {
850 if [[ ,$nodes, = *,$HOSTNAME,* ]]; then
851 nodes=$(exclude_items_from_list "$nodes" "$HOSTNAME")
855 do_rpc_nodes "$nodes" set_default_debug \
856 \\\"$PTLDEBUG\\\" \\\"$SUBSYSTEM\\\" $DEBUG_SIZE || true
859 set_default_debug_facet () {
861 local node=$(facet_active_host $facet)
862 [ -z "$node" ] && echo "No host defined for facet $facet" && exit 1
864 set_default_debug_nodes $node
869 local facets=${1:-$(get_facets)}
872 for facet in ${facets//,/ }; do
875 [ $RC -eq 0 ] && continue
877 if [ "$TESTSUITE.$TESTNAME" = "replay-dual.test_0a" ]; then
878 skip "Restart of $facet failed!." && touch $LU482_FAILED
880 error "Restart of $facet failed!"
887 # Add argument "arg" (e.g., "loop") to the comma-separated list
888 # of arguments for option "opt" (e.g., "-o") on command
889 # line "opts" (e.g., "-o flock").
895 local opt_pattern="\([[:space:]]\+\|^\)$opt"
897 if echo "$opts" | grep -q $opt_pattern; then
898 opts=$(echo "$opts" | sed -e \
899 "s/$opt_pattern[[:space:]]*[^[:space:]]\+/&,$arg/")
901 opts+="${opts:+ }$opt $arg"
909 local dev=$(facet_active $facet)_dev
910 local opt=${facet}_opt
911 local mntpt=$(facet_mntpt $facet)
912 local opts="${!opt} $@"
914 if [ $(facet_fstype $facet) == ldiskfs ] &&
915 ! do_facet $facet test -b ${!dev}; then
916 opts=$(csa_add "$opts" -o loop)
919 echo "Starting ${facet}: $opts ${!dev} $mntpt"
920 # for testing LU-482 error handling in mount_facets() and test_0a()
921 if [ -f $TMP/test-lu482-trigger ]; then
924 do_facet ${facet} "mkdir -p $mntpt; mount -t lustre $opts \
928 if [ $RC -ne 0 ]; then
929 echo "Start of ${!dev} on ${facet} failed ${RC}"
931 set_default_debug_facet $facet
933 label=$(devicelabel ${facet} ${!dev})
934 [ -z "$label" ] && echo no label for ${!dev} && exit 1
935 eval export ${facet}_svc=${label}
936 echo Started ${label}
941 # start facet device options
947 eval export ${facet}_dev=${device}
948 eval export ${facet}_opt=\"$@\"
950 local varname=${facet}failover_dev
951 if [ -n "${!varname}" ] ; then
952 eval export ${facet}failover_dev=${!varname}
954 eval export ${facet}failover_dev=$device
957 local mntpt=$(facet_mntpt $facet)
958 do_facet ${facet} mkdir -p $mntpt
959 eval export ${facet}_MOUNT=$mntpt
966 # When a ZFS OSD is made read-only by replay_barrier(), its pool is "freezed".
967 # Because stopping corresponding target may not clear this in-memory state, we
968 # need to zap the pool from memory by exporting and reimporting the pool.
970 # Although the uberblocks are not updated when a pool is freezed, transactions
971 # are still written to the disks. Modified blocks may be cached in memory when
972 # tests try reading them back. The export-and-reimport process also evicts any
973 # cached pool data from memory to provide the correct "data loss" semantics.
977 local fstype=$(facet_fstype $facet)
982 if [ "${fstype}" == "zfs" ]; then
983 _dev=$(facet_active $facet)_dev
984 dev=${!_dev} # expand _dev to its value, e.g. ${mds1_dev}
985 poolname="${dev%%/*}" # poolname is string before "/"
987 if [ "${poolname}" == "" ]; then
988 echo "invalid dataset name: $dev"
991 do_facet $facet "cp /etc/zfs/zpool.cache /tmp/zpool.cache.back"
992 do_facet $facet "$ZPOOL export ${poolname}"
993 do_facet $facet "$ZPOOL import -f -c /tmp/zpool.cache.back \
1002 local HOST=`facet_active_host $facet`
1003 [ -z $HOST ] && echo stop: no host for $facet && return 0
1005 local mntpt=$(facet_mntpt $facet)
1006 running=$(do_facet ${facet} "grep -c $mntpt' ' /proc/mounts") || true
1007 if [ ${running} -ne 0 ]; then
1008 echo "Stopping $mntpt (opts:$@) on $HOST"
1009 do_facet ${facet} umount -d $@ $mntpt
1012 # umount should block, but we should wait for unrelated obd's
1013 # like the MGS or MGC to also stop.
1014 wait_exit_ST ${facet}
1017 # save quota version (both administrative and operational quotas)
1018 # add an additional parameter if mountpoint is ever different from $MOUNT
1020 # XXX This function is kept for interoperability with old server (< 2.3.50),
1021 # it should be removed whenever we drop the interoperability for such
1023 quota_save_version() {
1024 local fsname=${2:-$FSNAME}
1026 local ver=$(tr -c -d "123" <<< $spec)
1027 local type=$(tr -c -d "ug" <<< $spec)
1029 [ -n "$ver" -a "$ver" != "3" ] && error "wrong quota version specifier"
1031 [ -n "$type" ] && { $LFS quotacheck -$type $MOUNT || error "quotacheck has failed"; }
1033 do_facet mgs "lctl conf_param ${fsname}-MDT*.mdd.quota_type=$spec"
1035 local osts=$(get_facets OST)
1036 for ost in ${osts//,/ }; do
1038 do_facet mgs "lctl conf_param ${!varsvc}.ost.quota_type=$spec"
1042 # client could mount several lustre
1044 # XXX This function is kept for interoperability with old server (< 2.3.50),
1045 # it should be removed whenever we drop the interoperability for such
1048 local fsname=${1:-$FSNAME}
1050 do_facet mgs lctl get_param mdd.${fsname}-MDT*.quota_type || rc=$?
1051 do_nodes $(comma_list $(osts_nodes)) \
1052 lctl get_param obdfilter.${fsname}-OST*.quota_type || rc=$?
1056 # XXX This function is kept for interoperability with old server (< 2.3.50),
1057 # it should be removed whenever we drop the interoperability for such
1059 restore_quota_old() {
1060 local mntpt=${1:-$MOUNT}
1061 local quota_type=$(quota_type $FSNAME | grep MDT | cut -d "=" -f2)
1062 if [ ! "$old_QUOTA_TYPE" ] ||
1063 [ "$quota_type" = "$old_QUOTA_TYPE" ]; then
1066 quota_save_version $old_QUOTA_TYPE
1069 # XXX This function is kept for interoperability with old server (< 2.3.50),
1070 # it should be removed whenever we drop the interoperability for such
1075 # no quota enforcement for now and accounting works out of the box
1078 # We need save the original quota_type params, and restore them after testing
1080 # Suppose that quota type the same on mds and ost
1081 local quota_type=$(quota_type | grep MDT | cut -d "=" -f2)
1082 [ ${PIPESTATUS[0]} -eq 0 ] || error "quota_type failed!"
1083 echo "[HOST:$HOSTNAME] [old_quota_type:$quota_type] [new_quota_type:$QUOTA_TYPE]"
1084 if [ "$quota_type" != "$QUOTA_TYPE" ]; then
1085 export old_QUOTA_TYPE=$quota_type
1086 quota_save_version $QUOTA_TYPE
1088 qtype=$(tr -c -d "ug" <<< $QUOTA_TYPE)
1089 $LFS quotacheck -$qtype $mntpt || error "quotacheck has failed for $type"
1092 local quota_usrs=$QUOTA_USERS
1094 # get_filesystem_size
1095 local disksz=$(lfs df $mntpt | grep "filesystem summary:" | awk '{print $3}')
1096 local blk_soft=$((disksz + 1024))
1097 local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1099 local Inodes=$(lfs df -i $mntpt | grep "filesystem summary:" | awk '{print $3}')
1100 local i_soft=$Inodes
1101 local i_hard=$((i_soft + i_soft / 20))
1103 echo "Total disk size: $disksz block-softlimit: $blk_soft block-hardlimit:
1104 $blk_hard inode-softlimit: $i_soft inode-hardlimit: $i_hard"
1107 for usr in $quota_usrs; do
1108 echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1110 cmd="$LFS setquota -$type $usr -b $blk_soft -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1112 eval $cmd || error "$cmd FAILED!"
1114 # display the quota status
1115 echo "Quota settings for $usr : "
1116 $LFS quota -v -u $usr $mntpt || true
1120 # get mdt quota type
1122 local varsvc=${SINGLEMDS}_svc
1123 do_facet $SINGLEMDS $LCTL get_param -n \
1124 osd-$FSTYPE.${!varsvc}.quota_slave.enabled
1127 # get ost quota type
1129 # All OSTs should have same quota type
1130 local varsvc=ost1_svc
1131 do_facet ost1 $LCTL get_param -n \
1132 osd-$FSTYPE.${!varsvc}.quota_slave.enabled
1135 # restore old quota type settings
1137 if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1142 if [ "$old_MDT_QUOTA_TYPE" ]; then
1143 do_facet mgs $LCTL conf_param \
1144 $FSNAME.quota.mdt=$old_MDT_QUOTA_TYPE
1146 if [ "$old_OST_QUOTA_TYPE" ]; then
1147 do_facet mgs $LCTL conf_param \
1148 $FSNAME.quota.ost=$old_OST_QUOTA_TYPE
1153 if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1160 # save old quota type & set new quota type
1161 local mdt_qtype=$(mdt_quota_type)
1162 local ost_qtype=$(ost_quota_type)
1164 echo "[HOST:$HOSTNAME] [old_mdt_qtype:$mdt_qtype]" \
1165 "[old_ost_qtype:$ost_qtype] [new_qtype:$QUOTA_TYPE]"
1167 export old_MDT_QUOTA_TYPE=$mdt_qtype
1168 export old_OST_QUOTA_TYPE=$ost_qtype
1170 do_facet mgs $LCTL conf_param $FSNAME.quota.mdt=$QUOTA_TYPE ||
1171 error "set mdt quota type failed"
1172 do_facet mgs $LCTL conf_param $FSNAME.quota.ost=$QUOTA_TYPE ||
1173 error "set ost quota type failed"
1175 local quota_usrs=$QUOTA_USERS
1177 # get_filesystem_size
1178 local disksz=$(lfs df $mntpt | grep "filesystem summary:" |
1180 local blk_soft=$((disksz + 1024))
1181 local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1183 local inodes=$(lfs df -i $mntpt | grep "filesystem summary:" |
1185 local i_soft=$inodes
1186 local i_hard=$((i_soft + i_soft / 20))
1188 echo "Total disk size: $disksz block-softlimit: $blk_soft" \
1189 "block-hardlimit: $blk_hard inode-softlimit: $i_soft" \
1190 "inode-hardlimit: $i_hard"
1193 for usr in $quota_usrs; do
1194 echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1196 cmd="$LFS setquota -$type $usr -b $blk_soft"
1197 cmd="$cmd -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1199 eval $cmd || error "$cmd FAILED!"
1201 # display the quota status
1202 echo "Quota settings for $usr : "
1203 $LFS quota -v -u $usr $mntpt || true
1210 local OPTIONS=${3:-$MOUNTOPT}
1212 local device=$MGSNID:/$FSNAME
1213 if [ -z "$mnt" -o -z "$FSNAME" ]; then
1214 echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
1218 echo "Starting client: $client: $OPTIONS $device $mnt"
1219 do_node $client mkdir -p $mnt
1220 do_node $client mount -t lustre $OPTIONS $device $mnt || return 1
1222 set_default_debug_nodes $client
1234 [ "$3" ] && force=-f
1235 local running=$(do_node $client "grep -c $mnt' ' /proc/mounts") || true
1236 if [ $running -ne 0 ]; then
1237 echo "Stopping client $client $mnt (opts:$force)"
1238 do_node $client lsof -t $mnt || need_kill=no
1239 if [ "x$force" != "x" -a "x$need_kill" != "xno" ]; then
1240 pids=$(do_node $client lsof -t $mnt | sort -u);
1241 if [ -n $pids ]; then
1242 do_node $client kill -9 $pids || true
1246 busy=$(do_node $client "umount $force $mnt 2>&1" | grep -c "busy") || true
1247 if [ $busy -ne 0 ] ; then
1248 echo "$mnt is still busy, wait one second" && sleep 1
1249 do_node $client umount $force $mnt
1254 # nodes is comma list
1255 sanity_mount_check_nodes () {
1261 # FIXME: assume that all cluster nodes run the same os
1262 [ "$(uname)" = Linux ] || return 0
1265 for mnt in $mnts ; do
1266 do_nodes $nodes "running=\\\$(grep -c $mnt' ' /proc/mounts);
1267 mpts=\\\$(mount | grep -c $mnt' ');
1268 if [ \\\$running -ne \\\$mpts ]; then
1269 echo \\\$(hostname) env are INSANE!;
1272 [ $? -eq 0 ] || rc=1
1277 sanity_mount_check_servers () {
1278 [ "$CLIENTONLY" ] &&
1279 { echo "CLIENTONLY mode, skip mount_check_servers"; return 0; } || true
1280 echo Checking servers environments
1282 # FIXME: modify get_facets to display all facets wo params
1283 local facets="$(get_facets OST),$(get_facets MDS),mgs"
1287 for facet in ${facets//,/ }; do
1288 node=$(facet_host ${facet})
1289 mntpt=$(facet_mntpt $facet)
1290 sanity_mount_check_nodes $node $mntpt ||
1291 { error "server $node environments are insane!"; return 1; }
1295 sanity_mount_check_clients () {
1296 local clients=${1:-$CLIENTS}
1297 local mntpt=${2:-$MOUNT}
1298 local mntpt2=${3:-$MOUNT2}
1300 [ -z $clients ] && clients=$(hostname)
1301 echo Checking clients $clients environments
1303 sanity_mount_check_nodes $clients $mntpt $mntpt2 ||
1304 error "clients environments are insane!"
1307 sanity_mount_check () {
1308 sanity_mount_check_servers || return 1
1309 sanity_mount_check_clients || return 2
1312 # mount clients if not mouted
1313 zconf_mount_clients() {
1316 local OPTIONS=${3:-$MOUNTOPT}
1318 local device=$MGSNID:/$FSNAME
1319 if [ -z "$mnt" -o -z "$FSNAME" ]; then
1320 echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
1324 echo "Starting client $clients: $OPTIONS $device $mnt"
1327 running=\\\$(mount | grep -c $mnt' ');
1329 if [ \\\$running -eq 0 ] ; then
1331 mount -t lustre $OPTIONS $device $mnt;
1334 exit \\\$rc" || return ${PIPESTATUS[0]}
1336 echo "Started clients $clients: "
1337 do_nodes $clients "mount | grep $mnt' '"
1339 set_default_debug_nodes $clients
1344 zconf_umount_clients() {
1349 [ "$3" ] && force=-f
1351 echo "Stopping clients: $clients $mnt (opts:$force)"
1352 do_nodes $clients "running=\\\$(grep -c $mnt' ' /proc/mounts);
1353 if [ \\\$running -ne 0 ] ; then
1354 echo Stopping client \\\$(hostname) $mnt opts:$force;
1355 lsof $mnt || need_kill=no;
1356 if [ "x$force" != "x" -a "x\\\$need_kill" != "xno" ]; then
1357 pids=\\\$(lsof -t $mnt | sort -u);
1358 if [ -n \\\"\\\$pids\\\" ]; then
1362 while umount $force $mnt 2>&1 | grep -q "busy"; do
1363 echo "$mnt is still busy, wait one second" && sleep 1;
1370 echo + $POWER_DOWN $node
1374 shutdown_node_hard () {
1376 local attempts=$SHUTDOWN_ATTEMPTS
1378 for i in $(seq $attempts) ; do
1381 wait_for_function --quiet "! ping -w 3 -c 1 $host" 5 1 && return 0
1382 echo "waiting for $host to fail attempts=$attempts"
1383 [ $i -lt $attempts ] || \
1384 { echo "$host still pingable after power down! attempts=$attempts" && return 1; }
1390 local mnt=${2:-$MOUNT}
1393 if [ "$FAILURE_MODE" = HARD ]; then
1394 shutdown_node_hard $client
1396 zconf_umount_clients $client $mnt -f
1402 local facets="$(get_facets OST),$(get_facets MDS)"
1405 combined_mgs_mds || facets="$facets,mgs"
1407 for facet in ${facets//,/ }; do
1408 if [ $(facet_active_host $facet) == $host ]; then
1409 affected="$affected $facet"
1413 echo $(comma_list $affected)
1418 local host=${2:-$(facet_host $facet)}
1420 local label=$(convert_facet2label $facet)
1421 do_node $host $LCTL dl | awk '{print $4}' | grep -q -x $label
1424 facets_up_on_host () {
1426 local facets=$(facets_on_host $host)
1429 for facet in ${facets//,/ }; do
1430 if $(facet_up $facet $host); then
1431 affected_up="$affected_up $facet"
1435 echo $(comma_list $affected_up)
1441 if [ "$FAILURE_MODE" = HARD ]; then
1442 shutdown_node_hard $(facet_active_host $facet)
1450 echo + $POWER_UP $node
1463 if [ "$FAILURE_MODE" = HARD ]; then
1464 reboot_node $(facet_active_host $facet)
1466 refresh_disk ${facet}
1473 if [ "$FAILURE_MODE" = HARD ]; then
1483 for facet in ${facets//,/ }; do
1484 hosts=$(expand_list $hosts $(facet_host $facet) )
1490 _check_progs_installed () {
1494 for prog in $progs; do
1495 if ! [ "$(which $prog)" -o "${!prog}" ]; then
1496 echo $prog missing on $(hostname)
1503 check_progs_installed () {
1507 do_rpc_nodes "$nodes" _check_progs_installed $@
1510 # recovery-scale functions
1512 echo __$(echo $1 | tr '-' '_' | tr '.' '_')
1515 start_client_load() {
1518 local var=$(node_var_name $client)_load
1519 eval export ${var}=$load
1521 do_node $client "PATH=$PATH MOUNT=$MOUNT ERRORS_OK=$ERRORS_OK \
1522 BREAK_ON_ERROR=$BREAK_ON_ERROR \
1523 END_RUN_FILE=$END_RUN_FILE \
1524 LOAD_PID_FILE=$LOAD_PID_FILE \
1525 TESTLOG_PREFIX=$TESTLOG_PREFIX \
1526 TESTNAME=$TESTNAME \
1527 DBENCH_LIB=$DBENCH_LIB \
1528 DBENCH_SRC=$DBENCH_SRC \
1531 log "Started client load: ${load} on $client"
1533 # get the children process IDs
1534 local pids=$(ps --ppid $ppid -o pid= | xargs)
1535 CLIENT_LOAD_PIDS="$CLIENT_LOAD_PIDS $ppid $pids"
1539 start_client_loads () {
1540 local -a clients=(${1//,/ })
1541 local numloads=${#CLIENT_LOADS[@]}
1544 for ((nodenum=0; nodenum < ${#clients[@]}; nodenum++ )); do
1545 testnum=$((nodenum % numloads))
1546 start_client_load ${clients[nodenum]} ${CLIENT_LOADS[testnum]}
1548 # bug 22169: wait the background threads to start
1552 # only for remote client
1553 check_client_load () {
1555 local var=$(node_var_name $client)_load
1556 local TESTLOAD=run_${!var}.sh
1558 ps auxww | grep -v grep | grep $client | grep -q "$TESTLOAD" || return 1
1560 # bug 18914: try to connect several times not only when
1561 # check ps, but while check_catastrophe also
1564 while [ $RC = 254 -a $tries -gt 0 ]; do
1568 if ! check_catastrophe $client; then
1570 if [ $RC -eq 254 ]; then
1571 # FIXME: not sure how long we shuold sleep here
1575 echo "check catastrophe failed: RC=$RC "
1579 # We can continue try to connect if RC=254
1580 # Just print the warning about this
1581 if [ $RC = 254 ]; then
1582 echo "got a return status of $RC from do_node while checking catastrophe on $client"
1585 # see if the load is still on the client
1588 while [ $RC = 254 -a $tries -gt 0 ]; do
1592 if ! do_node $client "ps auxwww | grep -v grep | grep -q $TESTLOAD"; then
1597 if [ $RC = 254 ]; then
1598 echo "got a return status of $RC from do_node while checking (catastrophe and 'ps') the client load on $client"
1599 # see if we can diagnose a bit why this is
1604 check_client_loads () {
1605 local clients=${1//,/ }
1609 for client in $clients; do
1610 check_client_load $client
1612 if [ "$rc" != 0 ]; then
1613 log "Client load failed on node $client, rc=$rc"
1619 restart_client_loads () {
1620 local clients=${1//,/ }
1621 local expectedfail=${2:-""}
1625 for client in $clients; do
1626 check_client_load $client
1628 if [ "$rc" != 0 -a "$expectedfail" ]; then
1629 local var=$(node_var_name $client)_load
1630 start_client_load $client ${!var}
1631 echo "Restarted client load ${!var}: on $client. Checking ..."
1632 check_client_load $client
1634 if [ "$rc" != 0 ]; then
1635 log "Client load failed to restart on node $client, rc=$rc"
1636 # failure one client load means test fail
1637 # we do not need to check other
1646 # Start vmstat and save its process ID in a file.
1651 [ -z "$nodes" -o -z "$pid_file" ] && return 0
1654 "vmstat 1 > $TESTLOG_PREFIX.$TESTNAME.vmstat.\\\$(hostname -s).log \
1655 2>/dev/null </dev/null & echo \\\$! > $pid_file"
1658 # Display the nodes on which client loads failed.
1659 print_end_run_file() {
1663 [ -s $file ] || return 0
1665 echo "Found the END_RUN_FILE file: $file"
1668 # A client load will stop if it finds the END_RUN_FILE file.
1669 # That does not mean the client load actually failed though.
1670 # The first node in END_RUN_FILE is the one we are interested in.
1673 if [ -n "$node" ]; then
1674 local var=$(node_var_name $node)_load
1676 local prefix=$TESTLOG_PREFIX
1677 [ -n "$TESTNAME" ] && prefix=$prefix.$TESTNAME
1678 local stdout_log=$prefix.run_${!var}_stdout.$node.log
1679 local debug_log=$(echo $stdout_log | sed 's/\(.*\)stdout/\1debug/')
1681 echo "Client load ${!var} failed on node $node:"
1687 # Stop the process which had its PID saved in a file.
1692 [ -z "$nodes" -o -z "$pid_file" ] && return 0
1694 do_nodes $nodes "test -f $pid_file &&
1695 { kill -s TERM \\\$(cat $pid_file); rm -f $pid_file; }" || true
1698 # Stop all client loads.
1699 stop_client_loads() {
1700 local nodes=${1:-$CLIENTS}
1703 # stop the client loads
1704 stop_process $nodes $pid_file
1706 # clean up the processes that started them
1707 [ -n "$CLIENT_LOAD_PIDS" ] && kill -9 $CLIENT_LOAD_PIDS 2>/dev/null || true
1709 # End recovery-scale functions
1711 # verify that lustre actually cleaned up properly
1713 [ -f $CATASTROPHE ] && [ `cat $CATASTROPHE` -ne 0 ] && \
1714 error "LBUG/LASSERT detected"
1715 BUSY=`dmesg | grep -i destruct || true`
1716 if [ "$BUSY" ]; then
1718 [ -e $TMP/debug ] && mv $TMP/debug $TMP/debug-busy.`date +%s`
1722 check_mem_leak || exit 204
1724 [ "`lctl dl 2> /dev/null | wc -l`" -gt 0 ] && lctl dl &&
1725 echo "$TESTSUITE: lustre didn't clean up..." 1>&2 &&
1728 if module_loaded lnet || module_loaded libcfs; then
1729 echo "$TESTSUITE: modules still loaded..." 1>&2
1747 RESULT=$(do_node $node "$TEST")
1748 if [ "$RESULT" == "$FINAL" ]; then
1749 [ -z "$RESULT" -o $WAIT -le $sleep ] ||
1750 echo "Updated after ${WAIT}s: wanted '$FINAL' got '$RESULT'"
1753 [ $WAIT -ge $MAX ] && break
1754 [ $((WAIT % print)) -eq 0 ] &&
1755 echo "Waiting $((MAX - WAIT)) secs for update"
1756 WAIT=$((WAIT + sleep))
1759 echo "Update not seen after ${MAX}s: wanted '$FINAL' got '$RESULT'"
1763 wait_update_facet() {
1766 wait_update $(facet_active_host $facet) "$@"
1770 do_node $(osts_nodes) "lctl set_param -n osd*.*OS*.force_sync 1" 2>&1 |
1771 grep -v 'Found no match'
1774 wait_delete_completed_mds() {
1775 local MAX_WAIT=${1:-20}
1777 local stime=`date +%s`
1782 # find MDS with pending deletions
1783 for node in $(mdts_nodes); do
1784 changes=$(do_node $node "lctl get_param -n osc.*MDT*.sync_*" \
1785 2>/dev/null | calc_sum)
1786 if [ -z "$changes" ] || [ $changes -eq 0 ]; then
1789 mds2sync="$mds2sync $node"
1791 if [ "$mds2sync" == "" ]; then
1794 mds2sync=$(comma_list $mds2sync)
1796 # sync MDS transactions
1797 do_nodes $mds2sync "lctl set_param -n osd*.*MD*.force_sync 1"
1799 # wait till all changes are sent and commmitted by OSTs
1800 # for ldiskfs space is released upon execution, but DMU
1801 # do this upon commit
1804 while [ "$WAIT" -ne "$MAX_WAIT" ]; do
1805 changes=$(do_nodes $mds2sync "lctl get_param -n osc.*MDT*.sync_*" \
1807 #echo "$node: $changes changes on all"
1808 if [ "$changes" -eq "0" ]; then
1810 #echo "delete took $((etime - stime)) seconds"
1818 echo "Delete is not completed in $((etime - stime)) seconds"
1819 do_nodes $mds2sync "lctl get_param osc.*MDT*.sync_*"
1825 # we can use "for" here because we are waiting the slowest
1826 for host in ${hostlist//,/ }; do
1827 check_network "$host" 900
1829 while ! do_nodes $hostlist hostname > /dev/null; do sleep 5; done
1836 for facet in ${facetlist//,/ }; do
1837 hostlist=$(expand_list $hostlist $(facet_active_host $facet))
1839 wait_for_host $hostlist
1842 _wait_recovery_complete () {
1845 # Use default policy if $2 is not passed by caller.
1846 local MAX=${2:-$(max_recovery_time)}
1851 while [ $WAIT -lt $MAX ]; do
1852 STATUS=$(lctl get_param -n $param | grep status)
1854 [[ $STATUS = "status: COMPLETE" || $STATUS = "status: INACTIVE" ]] && return 0
1857 echo "Waiting $((MAX - WAIT)) secs for $param recovery done. $STATUS"
1859 echo "$param recovery not done in $MAX sec. $STATUS"
1863 wait_recovery_complete () {
1866 # with an assumption that at_max is the same on all nodes
1867 local MAX=${2:-$(max_recovery_time)}
1870 if [ "$FAILURE_MODE" = HARD ]; then
1871 facets=$(facets_on_host $(facet_active_host $facet))
1873 echo affected facets: $facets
1875 # we can use "for" here because we are waiting the slowest
1876 for facet in ${facets//,/ }; do
1877 local var_svc=${facet}_svc
1878 local param="*.${!var_svc}.recovery_status"
1880 local host=$(facet_active_host $facet)
1881 do_rpc_nodes "$host" _wait_recovery_complete $param $MAX
1885 wait_mds_ost_sync () {
1886 # just because recovery is done doesn't mean we've finished
1887 # orphan cleanup. Wait for llogs to get synchronized.
1888 echo "Waiting for orphan cleanup..."
1889 # MAX value includes time needed for MDS-OST reconnection
1890 local MAX=$(( TIMEOUT * 2 ))
1892 while [ $WAIT -lt $MAX ]; do
1893 local -a sync=($(do_nodes $(comma_list $(osts_nodes)) \
1894 "$LCTL get_param -n obdfilter.*.mds_sync"))
1897 for ((i=0; i<${#sync[@]}; i++)); do
1898 [ ${sync[$i]} -eq 0 ] && continue
1899 # there is a not finished MDS-OST synchronization
1903 sleep 2 # increase waiting time and cover statfs cache
1904 [ ${con} -eq 1 ] && return 0
1905 echo "Waiting $WAIT secs for $facet mds-ost sync done."
1908 echo "$facet recovery not done in $MAX sec. $STATUS"
1912 wait_destroy_complete () {
1913 echo "Waiting for local destroys to complete"
1914 # MAX value shouldn't be big as this mean server responsiveness
1915 # never increase this just to make test pass but investigate
1916 # why it takes so long time
1919 while [ $WAIT -lt $MAX ]; do
1920 local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
1924 for ((i=0; i<${#RPCs[@]}; i++)); do
1925 [ ${RPCs[$i]} -eq 0 ] && continue
1926 # there are still some destroy RPCs in flight
1931 [ ${con} -eq 1 ] && return 0 # done waiting
1932 echo "Waiting ${WAIT}s for local destroys to complete"
1935 echo "Local destroys weren't done in $MAX sec."
1939 wait_delete_completed() {
1940 wait_delete_completed_mds $1 || return $?
1941 wait_destroy_complete
1950 # conf-sanity 31 takes a long time cleanup
1951 while [ $WAIT -lt 300 ]; do
1952 running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
1953 [ -z "${running}" ] && return 0
1954 echo "waited $WAIT for${running}"
1955 [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
1957 WAIT=$((WAIT + INTERVAL))
1959 echo "service didn't stop after $WAIT seconds. Still running:"
1964 wait_remote_prog () {
1970 [ "$PDSH" = "no_dsh" ] && return 0
1972 while [ $WAIT -lt $2 ]; do
1973 running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
1974 [ -z "${running}" ] && return 0 || true
1975 echo "waited $WAIT for: "
1977 [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
1979 WAIT=$((WAIT + INTERVAL))
1981 local pids=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
1982 [ -z "$pids" ] && return 0
1983 echo "$PDSH processes still exists after $WAIT seconds. Still running: $pids"
1984 # FIXME: not portable
1985 for pid in $pids; do
1986 cat /proc/${pid}/status || true
1987 cat /proc/${pid}/wchan || true
1989 kill -9 $pid || true
1998 # not every config has many clients
2000 if [ ! -z "$CLIENTS" ]; then
2001 $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
2003 stat -f $MOUNT > /dev/null
2009 # usually checked on particular client or locally
2011 if [ ! -z "$client" ]; then
2012 $PDSH $client "stat -f $MOUNT" > /dev/null
2014 stat -f $MOUNT > /dev/null
2022 client_reconnect() {
2023 uname -n >> $MOUNT/recon
2024 if [ -z "$CLIENTS" ]; then
2025 df $MOUNT; uname -n >> $MOUNT/recon
2027 do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
2029 echo Connected clients:
2031 ls -l $MOUNT/recon > /dev/null
2035 affected_facets () {
2038 local host=$(facet_active_host $facet)
2039 local affected=$facet
2041 if [ "$FAILURE_MODE" = HARD ]; then
2042 affected=$(facets_up_on_host $host)
2050 local host=$(facet_active_host $facet)
2052 echo "Failing $facet on node $host"
2054 local affected=$(affected_facets $facet)
2056 shutdown_facet $facet
2058 echo affected facets: $affected
2060 [ -n "$sleep_time" ] && sleep $sleep_time
2064 change_active $affected
2066 wait_for_facet $affected
2067 # start mgs first if it is affected
2068 if ! combined_mgs_mds && list_member $affected mgs; then
2069 mount_facet mgs || error "Restart of mgs failed"
2071 # FIXME; has to be changed to mount all facets concurrently
2072 affected=$(exclude_items_from_list $affected mgs)
2073 mount_facets $affected
2082 do_facet $facet "sync; sync; sync"
2085 # make sure there will be no seq change
2086 local clients=${CLIENTS:-$HOSTNAME}
2087 local f=fsa-\\\$\(hostname\)
2088 do_nodes $clients "mcreate $MOUNT/$f; rm $MOUNT/$f"
2089 do_nodes $clients "if [ -d $MOUNT2 ]; then mcreate $MOUNT2/$f; rm $MOUNT2/$f; fi"
2091 local svc=${facet}_svc
2092 do_facet $facet $LCTL --device %${!svc} notransno
2093 do_facet $facet $LCTL --device %${!svc} readonly
2094 do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2095 $LCTL mark "local REPLAY BARRIER on ${!svc}"
2098 replay_barrier_nodf() {
2099 local facet=$1 echo running=${running}
2100 do_facet $facet "sync; sync; sync"
2101 local svc=${facet}_svc
2102 echo Replay barrier on ${!svc}
2103 do_facet $facet $LCTL --device %${!svc} notransno
2104 do_facet $facet $LCTL --device %${!svc} readonly
2105 do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2106 $LCTL mark "local REPLAY BARRIER on ${!svc}"
2109 replay_barrier_nosync() {
2110 local facet=$1 echo running=${running}
2111 local svc=${facet}_svc
2112 echo Replay barrier on ${!svc}
2113 do_facet $facet $LCTL --device %${!svc} notransno
2114 do_facet $facet $LCTL --device %${!svc} readonly
2115 do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2116 $LCTL mark "local REPLAY BARRIER on ${!svc}"
2119 mds_evict_client() {
2120 UUID=`lctl get_param -n mdc.${mds1_svc}-mdc-*.uuid`
2121 do_facet mds1 "lctl set_param -n mdt.${mds1_svc}.evict_client $UUID"
2124 ost_evict_client() {
2125 UUID=`lctl get_param -n devices| grep ${ost1_svc}-osc- | egrep -v 'MDT' | awk '{print $5}'`
2126 do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.evict_client $UUID"
2130 facet_failover $* || error "failover: $?"
2131 clients_up || error "post-failover df: $?"
2136 facet_failover $facet
2142 refresh_disk ${facet}
2143 change_active $facet
2144 wait_for_facet $facet
2145 mount_facet $facet -o abort_recovery
2146 clients_up || echo "first df failed: $?"
2147 clients_up || error "post-failover df: $?"
2151 echo There is no lmc. This is mountconf, baby.
2155 host_nids_address() {
2159 if [ -n "$kind" ]; then
2160 nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
2162 nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
2168 if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2174 if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2175 ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | awk '{print $1}'`
2176 if [ -z "$ID" ]; then
2177 echo "Could not get a ptl id for $1..."
2186 h2name_or_ip "$1" "tcp"
2191 if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2192 if type __h2elan >/dev/null 2>&1; then
2195 ID=`echo $1 | sed 's/[^0-9]*//g'`
2203 h2name_or_ip "$1" "o2ib"
2207 # This enables variables in cfg/"setup".sh files to support the pdsh HOSTLIST
2208 # expressions format. As a bonus we can then just pass in those variables
2209 # to pdsh. What this function does is take a HOSTLIST type string and
2210 # expand it into a space deliminated list for us.
2218 [ -z "$hostlist" ] && return
2220 # Translate the case of [..],..,[..] to [..] .. [..]
2221 list="${hostlist/],/] }"
2223 [[ "$front" == *,* ]] && {
2226 list=${list/${old}/${new}}
2229 for item in $list; do
2230 # Test if we have any []'s at all
2231 if [ "$item" != "${item/\[/}" ]; then {
2232 # Expand the [*] into list
2236 if [ "$name" != "$item" ]; then
2237 group=${item#$name[*}
2240 for range in ${group//,/ }; do
2244 # Number of leading zeros
2247 end=$(echo $end | sed 's/0*//')
2248 [[ -z "$end" ]] && end=0
2249 [[ $padlen2 -gt $padlen ]] && {
2250 [[ $padlen2 -eq ${#end} ]] && padlen2=0
2253 begin=$(echo $begin | sed 's/0*//')
2254 [ -z $begin ] && begin=0
2256 for num in $(seq -f "%0${padlen}g" $begin $end); do
2257 value="${name#*,}${num}${back}"
2258 [ "$value" != "${value/\[/}" ] && {
2259 value=$(hostlist_expand "$value")
2261 myList="$myList $value"
2266 myList="$myList $item"
2269 myList=${myList//,/ }
2270 myList=${myList:1} # Remove first character which is a space
2272 # Filter any duplicates without sorting
2274 myList="${list%% *}"
2276 while [[ "$list" != ${myList##* } ]]; do
2277 list=${list//${list%% *} /}
2278 myList="$myList ${list%% *}"
2280 myList="${myList%* }";
2282 # We can select an object at a offset in the list
2285 for item in $myList; do
2287 [ $cnt -eq $offset ] && {
2291 [ $(get_node_count $myList) -ne 1 ] && myList=""
2299 [ "$facet" == client ] && echo -n $HOSTNAME && return
2300 varname=${facet}_HOST
2301 if [ -z "${!varname}" ]; then
2302 if [ "${facet:0:3}" == "ost" ]; then
2303 eval ${facet}_HOST=${ost_HOST}
2309 facet_failover_host() {
2313 var=${facet}failover_HOST
2314 if [ -n "${!var}" ]; then
2319 if [[ $facet == ost* ]]; then
2320 var=ostfailover_HOST
2321 if [ -n "${!var}" ]; then
2330 local activevar=${facet}active
2332 if [ -f $TMP/${facet}active ] ; then
2333 source $TMP/${facet}active
2336 active=${!activevar}
2337 if [ -z "$active" ] ; then
2344 facet_active_host() {
2346 local active=`facet_active $facet`
2347 if [ "$facet" == client ]; then
2350 echo `facet_host $active`
2358 facetlist=$(exclude_items_from_list $facetlist mgs)
2360 for facet in ${facetlist//,/ }; do
2361 local failover=${facet}failover
2362 local host=`facet_host $failover`
2363 [ -z "$host" ] && return
2365 local curactive=`facet_active $facet`
2366 if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
2367 eval export ${facet}active=$facet
2369 eval export ${facet}active=$failover
2371 # save the active host for this facet
2372 local activevar=${facet}active
2373 echo "$activevar=${!activevar}" > $TMP/$activevar
2374 [[ $facet = mds1 ]] && combined_mgs_mds && \
2375 echo "mgsactive=${!activevar}" > $TMP/mgsactive
2376 local TO=`facet_active_host $facet`
2377 echo "Failover $facet to $TO"
2383 # do not stripe off hostname if verbose, bug 19215
2384 if [ x$1 = x--verbose ]; then
2392 if [ "$HOST" = "$HOSTNAME" ]; then
2394 elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
2395 echo "cannot run remote command on $HOST with $myPDSH"
2399 echo "CMD: $HOST $@" >&2
2400 $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2403 if [ "$myPDSH" = "rsh" ]; then
2404 # we need this because rsh does not return exit code of an executed command
2405 local command_status="$TMP/cs"
2406 rsh $HOST ":> $command_status"
2407 rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
2408 cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
2409 echo command failed >$command_status"
2410 [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
2415 # print HOSTNAME for myPDSH="no_dsh"
2416 if [[ $myPDSH = no_dsh ]]; then
2417 $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
2419 $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
2422 $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
2424 return ${PIPESTATUS[0]}
2428 do_node --verbose "$@"
2431 single_local_node () {
2432 [ "$1" = "$HOSTNAME" ]
2435 # Outputs environment variable assignments that should be passed to remote nodes
2439 local facets=$(get_facets)
2442 for var in ${!MODOPTS_*}; do
2444 echo -n " ${var}=\"$value\""
2447 echo -n " USE_OFD=$USE_OFD"
2449 for facet in ${facets//,/ }; do
2451 if [ -n "${!var}" ]; then
2452 echo -n " $var=${!var}"
2456 for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
2457 if [ -n "${!var}" ]; then
2458 echo -n " $var=${!var}"
2462 if [ -n "$FSTYPE" ]; then
2463 echo -n " FSTYPE=$FSTYPE"
2469 # do not stripe off hostname if verbose, bug 19215
2470 if [ x$1 = x--verbose ]; then
2478 if single_local_node $rnodes; then
2480 do_nodev $rnodes "$@"
2482 do_node $rnodes "$@"
2487 # This is part from do_node
2490 [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
2491 echo "cannot run remote command on $rnodes with $myPDSH" && return 128
2493 export FANOUT=$(get_node_count "${rnodes//,/ }")
2495 echo "CMD: $rnodes $@" >&2
2496 $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2499 # do not replace anything from pdsh output if -N is used
2500 # -N Disable hostname: prefix on lines of output.
2501 if $verbose || [[ $myPDSH = *-N* ]]; then
2502 $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
2504 $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
2506 return ${PIPESTATUS[0]}
2512 local HOST=`facet_active_host $facet`
2513 [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
2517 # Function: do_facet_random_file $FACET $FILE $SIZE
2518 # Creates FILE with random content on the given FACET of given SIZE
2520 do_facet_random_file() {
2524 local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
2525 do_facet $facet "$cmd 2>/dev/null"
2528 do_facet_create_file() {
2532 local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
2533 do_facet $facet "$cmd 2>/dev/null"
2537 do_nodes --verbose "$@"
2543 # make sure its not already running
2545 rm -f $TMP/${facet}active
2546 [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
2547 do_facet ${facet} $MKFS $*
2554 local fstype=$(facet_fstype ost$num)
2558 #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2559 eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2561 #dataset name is independent of vdev device names
2562 eval DEVPTR=${FSNAME}-ost${num}/ost${num};;
2564 error "unknown fstype!";;
2574 local fstype=$(facet_fstype ost$num)
2578 # vdevs are not supported by ldiskfs
2581 #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2582 eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2584 error "unknown fstype!";;
2594 local fstype=$(facet_fstype mds$num)
2598 #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2599 eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2601 #dataset name is independent of vdev device names
2602 eval DEVPTR=${FSNAME}-mdt${num}/mdt${num};;
2604 error "unknown fstype!";;
2614 local fstype=$(facet_fstype mds$num)
2618 # vdevs are not supported by ldiskfs
2621 #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2622 eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2624 error "unknown fstype!";;
2633 local fstype=$(facet_fstype mds$num)
2637 #if $MGSDEV isn't defined, default is $MDSDEV1
2638 eval DEVPTR=${!DEVNAME:=${MDSDEV1}};;
2640 #dataset name is independent of vdev device names
2641 eval DEVPTR=${FSNAME}-mgs/mgs;;
2643 error "unknown fstype!";;
2652 local fstype=$(facet_fstype mds$num)
2656 # vdevs are not supported by ldiskfs
2659 #if $MGSDEV isn't defined, default is $MGSDEV1
2660 eval VDEVPTR=${!DEVNAME:=${MDSDEV1}};;
2662 error "unknown fstype!";;
2670 [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
2672 local var=${facet}_MOUNT
2673 eval mntpt=${!var:-${MOUNT%/*}/$facet}
2682 # make sure we are using the primary server, so test-framework will
2683 # be able to clean up properly.
2684 activemds=`facet_active mds1`
2685 if [ $activemds != "mds1" ]; then
2689 local clients=$CLIENTS
2690 [ -z $clients ] && clients=$(hostname)
2692 zconf_umount_clients $clients $MOUNT "$*" || true
2693 [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
2695 [ "$CLIENTONLY" ] && return
2696 # The add fn does rm ${facet}active file, this would be enough
2697 # if we use do_facet <facet> only after the facet added, but
2698 # currently we use do_facet mds in local.sh
2699 for num in `seq $MDSCOUNT`; do
2701 rm -f ${TMP}/mds${num}active
2703 combined_mgs_mds && rm -f $TMP/mgsactive
2705 for num in `seq $OSTCOUNT`; do
2707 rm -f $TMP/ost${num}active
2710 if ! combined_mgs_mds ; then
2717 cleanup_echo_devs () {
2718 local devs=$($LCTL dl | grep echo | awk '{print $4}')
2720 for dev in $devs; do
2721 $LCTL --device $dev cleanup
2722 $LCTL --device $dev detach
2727 nfs_client_mode && return
2736 combined_mgs_mds () {
2737 [[ $MDSDEV1 = $MGSDEV ]] && [[ $mds1_HOST = $mgs_HOST ]]
2741 echo -n "$1" | tr '[:upper:]' '[:lower:]'
2745 echo -n "$1" | tr '[:lower:]' '[:upper:]'
2750 local type=$(facet_type $facet)
2751 local index=$(($(facet_number $facet) - 1))
2752 local fstype=$(facet_fstype $facet)
2757 if [ $type == MGS ] && combined_mgs_mds; then
2761 if [ $type == MGS ] || ( [ $type == MDS ] && combined_mgs_mds ); then
2764 opts="--mgsnode=$MGSNID"
2767 if [ $type != MGS ]; then
2768 opts+=" --fsname=$FSNAME --$(lower ${type/MDS/MDT}) --index=$index"
2771 var=${facet}failover_HOST
2772 if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
2773 opts+=" --failnode=$(h2$NETTYPE ${!var})"
2776 opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
2777 opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
2779 if [ $type == MDS ]; then
2780 opts+=${SECLEVEL:+" --param=mdt.sec_level"}
2781 opts+=${MDSCAPA:+" --param-mdt.capa=$MDSCAPA"}
2782 opts+=${STRIPE_BYTES:+" --param=lov.stripesize=$STRIPE_BYTES"}
2783 opts+=${STRIPES_PER_OBJ:+" --param=lov.stripecount=$STRIPES_PER_OBJ"}
2784 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
2786 if [ $fstype == ldiskfs ]; then
2787 fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
2788 fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
2792 if [ $type == OST ]; then
2793 opts+=${SECLEVEL:+" --param=ost.sec_level"}
2794 opts+=${OSSCAPA:+" --param=ost.capa=$OSSCAPA"}
2796 if [ $fstype == ldiskfs ]; then
2797 fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
2801 opts+=" --backfstype=$fstype"
2804 if [ -n "${!var}" ]; then
2805 opts+=" --device-size=${!var}"
2808 var=$(upper $fstype)_MKFS_OPTS
2809 fs_mkfs_opts+=${!var:+" ${!var}"}
2811 var=${type}_FS_MKFS_OPTS
2812 fs_mkfs_opts+=${!var:+" ${!var}"}
2814 if [ -n "${fs_mkfs_opts## }" ]; then
2815 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
2819 opts+=${!var:+" ${!var}"}
2832 # We need ldiskfs here, may as well load them all
2834 [ "$CLIENTONLY" ] && return
2835 echo Formatting mgs, mds, osts
2836 if ! combined_mgs_mds ; then
2837 echo "Format mgs: $(mgsdevname)"
2838 add mgs $(mkfs_opts mgs) --reformat $(mgsdevname) \
2839 $(mgsvdevname) ${quiet:+>/dev/null} || exit 10
2842 for num in `seq $MDSCOUNT`; do
2843 echo "Format mds$num: $(mdsdevname $num)"
2844 add mds$num $(mkfs_opts mds$num) --reformat \
2845 $(mdsdevname $num) $(mdsvdevname $num) \
2846 ${quiet:+>/dev/null} || exit 10
2849 for num in `seq $OSTCOUNT`; do
2850 echo "Format ost$num: $(ostdevname $num)"
2851 add ost$num $(mkfs_opts ost$num) --reformat \
2852 $(ostdevname $num) $(ostvdevname ${num}) \
2853 ${quiet:+>/dev/null} || exit 10
2858 grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
2862 grep " $1 " /proc/mounts && zconf_umount `hostname` $*
2866 # 0: success, the old identity set already.
2867 # 1: success, the old identity does not set.
2872 local j=`expr $num - 1`
2873 local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
2875 if [ -z "$MDT" ]; then
2879 local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
2882 do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
2884 do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
2887 do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
2889 if [ $old = "NONE" ]; then
2898 zconf_umount `hostname` $1 || error "umount failed"
2899 zconf_mount `hostname` $1 || error "mount failed"
2902 writeconf_facet () {
2906 do_facet $facet "$TUNEFS --writeconf $dev"
2910 for num in `seq $MDSCOUNT`; do
2911 DEVNAME=$(mdsdevname $num)
2912 writeconf_facet mds$num $DEVNAME
2915 for num in `seq $OSTCOUNT`; do
2916 DEVNAME=$(ostdevname $num)
2917 writeconf_facet ost$num $DEVNAME
2922 nfs_client_mode && return
2924 sanity_mount_check ||
2925 error "environments are insane!"
2929 if [ -z "$CLIENTONLY" ]; then
2930 echo Setup mgs, mdt, osts
2931 echo $WRITECONF | grep -q "writeconf" && \
2933 if ! combined_mgs_mds ; then
2934 start mgs $(mgsdevname) $MGS_MOUNT_OPTS
2937 for num in `seq $MDSCOUNT`; do
2938 DEVNAME=$(mdsdevname $num)
2939 start mds$num $DEVNAME $MDS_MOUNT_OPTS
2941 # We started mds, now we should set failover variables properly.
2942 # Set mds${num}failover_HOST if it is not set (the default failnode).
2943 local varname=mds${num}failover_HOST
2944 if [ -z "${!varname}" ]; then
2945 eval mds${num}failover_HOST=$(facet_host mds$num)
2948 if [ $IDENTITY_UPCALL != "default" ]; then
2949 switch_identity $num $IDENTITY_UPCALL
2952 for num in `seq $OSTCOUNT`; do
2953 DEVNAME=$(ostdevname $num)
2954 start ost$num $DEVNAME $OST_MOUNT_OPTS
2956 # We started ost$num, now we should set ost${num}failover variable properly.
2957 # Set ost${num}failover_HOST if it is not set (the default failnode).
2958 varname=ost${num}failover_HOST
2959 if [ -z "${!varname}" ]; then
2960 eval ost${num}failover_HOST=$(facet_host ost${num})
2968 # wait a while to allow sptlrpc configuration be propogated to targets,
2969 # only needed when mounting new target devices.
2974 [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
2976 [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
2979 if [ "$MOUNT_2" ]; then
2980 mount_client $MOUNT2
2981 [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
2986 # by remounting mdt before ost, initial connect from mdt to ost might
2987 # timeout because ost is not ready yet. wait some time to its fully
2988 # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
2989 # by a context negotiation rpc with $TIMEOUT.
2990 # FIXME better by monitoring import status.
2993 sleep $((TIMEOUT + 5))
2999 mounted_lustre_filesystems() {
3000 awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
3003 init_facet_vars () {
3004 [ "$CLIENTONLY" ] && return 0
3011 eval export ${facet}_dev=${device}
3012 eval export ${facet}_opt=\"$@\"
3014 local dev=${facet}_dev
3016 # We need to loop for the label
3017 # in case its not initialized yet.
3018 for wait_time in {0,1,3,5,10}; do
3020 if [ $wait_time -gt 0 ]; then
3021 echo "${!dev} not yet initialized,"\
3022 "waiting ${wait_time} seconds."
3026 local label=$(devicelabel ${facet} ${!dev})
3028 # Check to make sure the label does
3029 # not include ffff at the end of the label.
3030 # This indicates it has not been initialized yet.
3032 if [[ $label =~ [f|F]{4}$ ]]; then
3033 # label is not initialized, unset the result
3034 # and either try again or fail
3041 [ -z "$label" ] && echo no label for ${!dev} && exit 1
3043 eval export ${facet}_svc=${label}
3045 local varname=${facet}failover_HOST
3046 if [ -z "${!varname}" ]; then
3047 eval $varname=$(facet_host $facet)
3050 # ${facet}failover_dev is set in cfg file
3051 varname=${facet}failover_dev
3052 if [ -n "${!varname}" ] ; then
3053 eval export ${facet}failover_dev=${!varname}
3055 eval export ${facet}failover_dev=$device
3058 # get mount point of already mounted device
3059 # is facet_dev is already mounted then use the real
3060 # mount point of this facet; otherwise use $(facet_mntpt $facet)
3061 # i.e. ${facet}_MOUNT if specified by user or default
3062 local mntpt=$(do_facet ${facet} cat /proc/mounts | \
3063 awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
3064 if [ -z $mntpt ]; then
3065 mntpt=$(facet_mntpt $facet)
3067 eval export ${facet}_MOUNT=$mntpt
3070 init_facets_vars () {
3073 if ! remote_mds_nodsh; then
3074 for num in `seq $MDSCOUNT`; do
3075 DEVNAME=`mdsdevname $num`
3076 init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
3080 combined_mgs_mds || init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
3082 remote_ost_nodsh && return
3084 for num in `seq $OSTCOUNT`; do
3085 DEVNAME=`ostdevname $num`
3086 init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
3090 osc_ensure_active () {
3095 while [ $period -lt $timeout ]; do
3096 count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
3097 if [ $count -eq 0 ]; then
3101 echo "There are $count OST are inactive, wait $period seconds, and try again"
3103 period=$((period+3))
3106 [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
3109 set_conf_param_and_check() {
3113 local ORIG=$(do_facet $myfacet "$TEST")
3114 if [ $# -gt 3 ]; then
3120 echo "Setting $PARAM from $ORIG to $FINAL"
3121 do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
3122 error "conf_param $PARAM failed"
3124 wait_update $(facet_host $myfacet) "$TEST" "$FINAL" ||
3125 error "check $PARAM failed!"
3128 init_param_vars () {
3130 TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3132 log "Using TIMEOUT=$TIMEOUT"
3134 osc_ensure_active $SINGLEMDS $TIMEOUT
3135 osc_ensure_active client $TIMEOUT
3138 if [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ]; then
3140 elif [ $JOBSTATS_AUTO -ne 0 ]; then
3141 echo "enable jobstats, set job scheduler as $JOBID_VAR"
3142 jobid_var=$JOBID_VAR
3144 jobid_var=`$LCTL get_param -n jobid_var`
3145 if [ $jobid_var != "disable" ]; then
3146 echo "disable jobstats as required"
3153 if [ $jobid_var == $JOBID_VAR -o $jobid_var == "disable" ]; then
3154 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$jobid_var
3155 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
3156 $jobid_var || return 1
3159 if [ $QUOTA_AUTO -ne 0 ]; then
3160 if [ "$ENABLE_QUOTA" ]; then
3161 echo "enable quota as required"
3162 setup_quota $MOUNT || return 2
3164 echo "disable quota as required"
3165 # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
3171 nfs_client_mode () {
3172 if [ "$NFSCLIENT" ]; then
3173 echo "NFSCLIENT mode: setup, cleanup, check config skipped"
3174 local clients=$CLIENTS
3175 [ -z $clients ] && clients=$(hostname)
3177 # FIXME: remove hostname when 19215 fixed
3178 do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
3179 declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " " $2}'`)
3180 if [[ ${#nfsexport[@]} -eq 0 ]]; then
3181 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
3183 do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T ${nfsexport[1]}"
3189 check_config_client () {
3192 local mounted=$(mount | grep " $mntpt ")
3193 if [ "$CLIENTONLY" ]; then
3195 # CLIENTONLY should not depend on *_HOST settings
3196 local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
3197 # in theory someone could create a new,
3198 # client-only config file that assumed lustre was already
3199 # configured and didn't set the MGSNID. If MGSNID is not set,
3200 # then we should use the mgs nid currently being used
3201 # as the default value. bug 18021
3202 [[ x$MGSNID = x ]] &&
3205 if [[ x$mgc != xMGC$MGSNID ]]; then
3206 if [ "$mgs_HOST" ]; then
3207 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
3208 # [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
3209 # error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
3215 local myMGS_host=$mgs_HOST
3216 if [ "$NETTYPE" = "ptl" ]; then
3217 myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//)
3220 echo Checking config lustre mounted on $mntpt
3221 local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
3222 mgshost=$(echo $mgshost | awk -F: '{print $1}')
3224 # if [ "$mgshost" != "$myMGS_host" ]; then
3225 # log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
3226 # Please use correct config or set mds_HOST correctly!"
3231 check_config_clients () {
3232 local clients=${CLIENTS:-$HOSTNAME}
3235 nfs_client_mode && return
3237 do_rpc_nodes "$clients" check_config_client $mntpt
3239 sanity_mount_check || error "environments are insane!"
3243 local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3244 local cltimeout=$(lctl get_param -n timeout)
3245 if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
3246 error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
3253 [ -z $mntpt ] && return 1
3254 local mounted=$(mounted_lustre_filesystems)
3256 echo $mounted' ' | grep -w -q $mntpt' '
3260 [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
3264 # empty lustre filesystem may have empty directories lost+found and .lustre
3266 [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
3267 -print | wc -l) = 1 ] || return 1
3268 [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found && return 0
3269 [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre && return 0
3273 check_and_setup_lustre() {
3274 nfs_client_mode && return
3276 local MOUNTED=$(mounted_lustre_filesystems)
3280 # both MOUNT and MOUNT2 are not mounted
3281 if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
3282 [ "$REFORMAT" ] && formatall
3283 # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
3285 is_mounted $MOUNT || error "NAME=$NAME not mounted"
3286 export I_MOUNTED=yes
3290 elif is_mounted $MOUNT2; then
3292 # MOUNT2 is mounted, while MOUNT_2 is not set
3293 if ! [ "$MOUNT_2" ]; then
3294 cleanup_mount $MOUNT2
3295 export I_UMOUNTED2=yes
3298 # MOUNT2 is mounted, MOUNT_2 is set
3300 # FIXME: what to do if check_config failed?
3302 # 1) remote client has mounted other Lustre fs ?
3303 # 2) it has insane env ?
3304 # let's try umount MOUNT2 on all clients and mount it again:
3305 if ! check_config_clients $MOUNT2; then
3306 cleanup_mount $MOUNT2
3307 restore_mount $MOUNT2
3308 export I_MOUNTED2=yes
3313 # MOUNT is mounted MOUNT2 is not mounted
3314 elif [ "$MOUNT_2" ]; then
3315 restore_mount $MOUNT2
3316 export I_MOUNTED2=yes
3320 # FIXME: what to do if check_config failed?
3322 # 1) remote client has mounted other Lustre fs?
3323 # 2) lustre is mounted on remote_clients atall ?
3324 check_config_clients $MOUNT
3328 set_default_debug_nodes $(comma_list $(nodes_list))
3336 if [ "$ONLY" == "setup" ]; then
3342 local clients=${CLIENTS:-$HOSTNAME}
3345 zconf_mount_clients $clients $mntpt
3349 local clients=${CLIENTS:-$HOSTNAME}
3352 zconf_umount_clients $clients $mntpt
3355 cleanup_and_setup_lustre() {
3356 if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
3357 lctl set_param debug=0 || true
3359 if [ "$ONLY" == "cleanup" ]; then
3363 check_and_setup_lustre
3366 # Get all of the server target devices from a given server node and type.
3373 if [ "$type" == ost ]; then
3374 devs=$(get_obdfilter_param $node "" mntdev)
3376 devs=$(do_node $node \
3377 "lctl get_param -n osd-*.$FSNAME-M*.mntdev")
3379 for dev in $devs; do
3381 *loop*) do_node $node "losetup $dev" | \
3382 sed -e "s/.*(//" -e "s/).*//" ;;
3388 # Get all of the server target devices.
3393 MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
3397 for node in $(osts_nodes); do
3398 OSTDEVS[i]=$(get_mnt_devs $node ost)
3403 # Run e2fsck on MDT or OST device.
3409 df > /dev/null # update statfs data on disk
3410 local cmd="$E2FSCK -d -v -t -t -f -n $extra_opts $target_dev"
3413 do_node $node $cmd || rc=$?
3414 [ $rc -le $FSCK_MAX_ERR ] || \
3415 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3419 # verify a directory is shared among nodes.
3420 check_shared_dir() {
3423 [ -z "$dir" ] && return 1
3424 do_rpc_nodes "$(comma_list $(nodes_list))" check_logdir $dir
3425 check_write_access $dir || return 1
3429 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
3435 [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
3436 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
3438 check_shared_dir $SHARED_DIRECTORY ||
3439 error "$SHARED_DIRECTORY isn't a shared directory"
3441 export MDSDB=$SHARED_DIRECTORY/mdsdb
3442 export OSTDB=$SHARED_DIRECTORY/ostdb
3444 [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
3446 run_e2fsck $(mdts_nodes) $MDTDEV "--mdsdb $MDSDB"
3451 for node in $(osts_nodes); do
3452 for dev in ${OSTDEVS[i]}; do
3453 run_e2fsck $node $dev "--mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
3454 OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
3455 ostidx=$((ostidx + 1))
3462 local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
3466 [ $rc -le $FSCK_MAX_ERR ] || \
3467 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3468 echo "lfsck finished with rc=$rc"
3470 rm -rvf $MDSDB* $OSTDB* || true
3474 check_and_cleanup_lustre() {
3475 if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
3481 if is_mounted $MOUNT; then
3482 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
3483 error "remove sub-test dirs failed"
3484 [ "$ENABLE_QUOTA" ] && restore_quota || true
3487 if [ "$I_UMOUNTED2" = "yes" ]; then
3488 restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
3491 if [ "$I_MOUNTED2" = "yes" ]; then
3492 cleanup_mount $MOUNT2
3495 if [ "$I_MOUNTED" = "yes" ]; then
3496 cleanupall -f || error "cleanup failed"
3504 wait_for_function () {
3507 # suppress fn both stderr and stdout
3508 if [ "$1" = "--quiet" ]; then
3510 quiet=" > /dev/null 2>&1"
3522 eval $fn $quiet && return 0
3524 wait=$((wait + sleep))
3525 [ $wait -lt $max ] || return 1
3526 echo waiting $fn, $((max - wait)) secs left ...
3536 echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
3537 if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
3538 echo "Network not available!"
3542 echo `date +"%H:%M:%S (%s)"` network interface is UP
3550 # Convert a space-delimited list to a comma-delimited list. If the input is
3551 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
3553 # echo is used to convert newlines to spaces, since it doesn't
3554 # introduce a trailing space as using "tr '\n' ' '" does
3555 echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
3561 echo $list | grep -qw $item
3564 # list, excluded are the comma separated lists
3565 exclude_items_from_list () {
3571 for item in ${excluded//,/ }; do
3572 list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
3574 echo $(comma_list $list)
3577 # list, expand are the comma separated lists
3579 local list=${1//,/ }
3580 local expand=${2//,/ }
3583 expanded=$(for i in $list $expand; do echo $i; done | sort -u)
3584 echo $(comma_list $expanded)
3587 testslist_filter () {
3588 local script=$LUSTRE/tests/${TESTSUITE}.sh
3590 [ -f $script ] || return 0
3592 local start_at=$START_AT
3593 local stop_at=$STOP_AT
3595 local var=${TESTSUITE//-/_}_START_AT
3596 [ x"${!var}" != x ] && start_at=${!var}
3597 var=${TESTSUITE//-/_}_STOP_AT
3598 [ x"${!var}" != x ] && stop_at=${!var}
3600 sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
3601 awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
3602 /^'${start_at}'$/ {flag = 0}
3603 {if (flag == 1) print $0}
3604 /^'${stop_at}'$/ { flag = 1 }'
3608 (cd `dirname $1`; echo $PWD/`basename $1`)
3612 local types=${1:-"OST MDS MGS"}
3616 for entry in $types; do
3617 local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
3618 local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
3621 MGS ) list="$list $name";;
3622 MDS|OST ) local count=${type}COUNT
3623 for ((i=1; i<=${!count}; i++)) do
3624 list="$list ${name}$i"
3626 * ) error "Invalid facet type"
3630 echo $(comma_list $list)
3633 ##################################
3634 # Adaptive Timeouts funcs
3637 # only check mds, we assume at_max is the same on all nodes
3638 local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
3639 if [ $at_max -eq 0 ]; then
3650 # suppose that all ost-s have the same $at value set
3651 [ $facet != "ost" ] || facet=ost1
3653 do_facet $facet "lctl get_param -n $at"
3671 if [ $facet == "ost" ]; then
3672 facet=$(get_facets OST)
3673 elif [ $facet == "mds" ]; then
3674 facet=$(get_facets MDS)
3676 hosts=$(expand_list $hosts $(facets_hosts $facet))
3679 do_nodes $hosts lctl set_param at_max=$at_max
3682 ##################################
3686 # OBD_FAIL_MDS_ALL_REQUEST_NET
3688 do_facet $SINGLEMDS lctl set_param fail_loc=0x123
3689 do_facet client "$1" || RC=$?
3690 do_facet $SINGLEMDS lctl set_param fail_loc=0
3695 # OBD_FAIL_MDS_ALL_REPLY_NET
3697 do_facet $SINGLEMDS lctl set_param fail_loc=0x122
3698 do_facet client "$@" || RC=$?
3699 do_facet $SINGLEMDS lctl set_param fail_loc=0
3703 drop_reint_reply() {
3704 # OBD_FAIL_MDS_REINT_NET_REP
3706 do_facet $SINGLEMDS lctl set_param fail_loc=0x119
3707 do_facet client "$@" || RC=$?
3708 do_facet $SINGLEMDS lctl set_param fail_loc=0
3713 #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3715 do_facet ost1 lctl set_param fail_loc=0x214
3716 do_facet client "$1" || RC=$?
3717 do_facet client "sync"
3718 do_facet ost1 lctl set_param fail_loc=0
3722 drop_ldlm_cancel() {
3723 #define OBD_FAIL_LDLM_CANCEL_NET 0x304
3725 local list=$(comma_list $(mdts_nodes) $(osts_nodes))
3726 do_nodes $list lctl set_param fail_loc=0x304
3728 do_facet client "$@" || RC=$?
3730 do_nodes $list lctl set_param fail_loc=0
3734 drop_bl_callback() {
3735 #define OBD_FAIL_LDLM_BL_CALLBACK_NET 0x305
3737 do_facet client lctl set_param fail_loc=0x305
3738 do_facet client "$@" || RC=$?
3739 do_facet client lctl set_param fail_loc=0
3744 #define OBD_FAIL_LDLM_REPLY 0x30c
3746 do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
3747 do_facet client "$@" || RC=$?
3748 do_facet $SINGLEMDS lctl set_param fail_loc=0
3756 echo "clearing fail_loc on $facet"
3757 do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
3760 set_nodes_failloc () {
3761 do_nodes $(comma_list $1) lctl set_param fail_loc=$2
3764 cancel_lru_locks() {
3765 $LCTL mark "cancel_lru_locks $1 start"
3766 for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
3767 $LCTL set_param -n $d=clear
3769 $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
3770 $LCTL mark "cancel_lru_locks $1 stop"
3775 NR_CPU=$(grep -c "processor" /proc/cpuinfo)
3776 DEFAULT_LRU_SIZE=$((100 * NR_CPU))
3777 echo "$DEFAULT_LRU_SIZE"
3782 lctl set_param ldlm.namespaces.*$1*.lru_size=0
3785 lru_resize_disable()
3787 lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
3792 for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
3793 if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
3794 echo there is still data in page cache $FILE ?
3795 lctl get_param -n $FILE
3803 DEBUGSAVE="$(lctl get_param -n debug)"
3807 [ -n "$DEBUGSAVE" ] && \
3808 do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
3813 DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
3816 debug_size_restore() {
3817 [ -n "$DEBUG_SIZE_SAVED" ] && \
3818 do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
3822 start_full_debug_logging() {
3827 local DEBUG_SIZE=150
3829 do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
3830 do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
3833 stop_full_debug_logging() {
3838 # prints bash call stack
3841 for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
3842 local s=${BASH_SOURCE[$i]}
3843 local l=${BASH_LINENO[$i-1]}
3844 local f=${FUNCNAME[$i]}
3845 echo " = $s:$l:$f()"
3849 ##################################
3851 ##################################
3854 local TYPE=${TYPE:-"FAIL"}
3857 # do not dump logs if $1=false
3858 if [ "x$1" = "xfalse" ]; then
3863 log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
3867 # We need to dump the logs on all nodes
3869 gather_logs $(comma_list $(nodes_list))
3873 [ "$TESTSUITELOG" ] &&
3874 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
3875 echo "$@" > $LOGDIR/err
3880 local log=$TESTSUITELOG
3882 [ -f "$log" ] && grep -q FAIL $log && status=1
3895 # use only if we are ignoring failures for this test, bugno required.
3896 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
3897 # e.g. error_ignore 5494 "your message"
3899 local TYPE="IGNORE (bz$1)"
3904 error_and_remount() {
3906 remount_client $MOUNT
3911 $FAIL_ON_SKIP_ENV && error false $@ || skip $@
3916 log " SKIP: $TESTSUITE $TESTNAME $@"
3918 if [[ -n "$ALWAYS_SKIPPED" ]]; then
3919 skip_logged $TESTNAME "$@"
3922 echo "$@" > $LOGDIR/skip
3925 [[ -n "$TESTSUITELOG" ]] &&
3926 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
3929 build_test_filter() {
3930 EXCEPT="$EXCEPT $(testslist_filter)"
3932 [ "$ONLY" ] && log "only running test `echo $ONLY`"
3936 [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
3937 log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
3938 [ "$EXCEPT_SLOW" ] && \
3939 log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
3940 for E in $EXCEPT; do
3941 eval EXCEPT_${E}=true
3943 for E in $ALWAYS_EXCEPT; do
3944 eval EXCEPT_ALWAYS_${E}=true
3946 for E in $EXCEPT_SLOW; do
3947 eval EXCEPT_SLOW_${E}=true
3949 for G in $GRANT_CHECK_LIST; do
3950 eval GCHECK_ONLY_${G}=true
3955 if [[ $1 = [a-z]* ]]; then
3962 # print a newline if the last test was skipped
3963 export LAST_SKIPPED=
3964 export ALWAYS_SKIPPED=
3966 # Main entry into test-framework. This is called with the name and
3967 # description of a test. The name is used to find the function to run
3968 # the test using "test_$name".
3970 # This supports a variety of methods of specifying specific test to
3971 # run or not run. These need to be documented...
3976 export base=`basetest $1`
3977 if [ ! -z "$ONLY" ]; then
3979 if [ ${!testname}x != x ]; then
3980 [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
3981 run_one_logged $1 "$2"
3985 if [ ${!testname}x != x ]; then
3986 [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
3987 run_one_logged $1 "$2"
3998 if [ ${!testname}x != x ]; then
3999 TESTNAME=test_$1 skip "skipping excluded test $1"
4002 testname=EXCEPT_$base
4003 if [ ${!testname}x != x ]; then
4004 TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4007 testname=EXCEPT_ALWAYS_$1
4008 if [ ${!testname}x != x ]; then
4009 TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4012 testname=EXCEPT_ALWAYS_$base
4013 if [ ${!testname}x != x ]; then
4014 TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4017 testname=EXCEPT_SLOW_$1
4018 if [ ${!testname}x != x ]; then
4019 TESTNAME=test_$1 skip "skipping SLOW test $1"
4022 testname=EXCEPT_SLOW_$base
4023 if [ ${!testname}x != x ]; then
4024 TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4030 run_one_logged $1 "$2"
4037 module_loaded lnet || load_modules
4049 do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
4054 strace -o $TMP/$1.strace -ttt $*
4056 log "FINISHED: $*: rc $RC"
4063 banner test complete, duration $duration sec
4064 [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
4065 echo duration $duration >>$TESTSUITELOG
4069 # Set TEST_STATUS here. It will be used for logging the result.
4072 if [[ -f $LOGDIR/err ]]; then
4074 elif [[ -f $LOGDIR/skip ]]; then
4077 echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
4081 local FFREE=$(do_node $SINGLEMDS \
4082 lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
4083 local FTOTAL=$(do_node $SINGLEMDS \
4084 lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
4086 [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
4090 echo -n "Resetting fail_loc on all nodes..."
4091 do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
4097 # Log a message (on all nodes) padded with "=" before and after.
4098 # Also appends a timestamp and prepends the testsuite name.
4101 EQUALS="===================================================================================================="
4103 msg="== ${TESTSUITE} $*"
4105 [[ $last != "=" && $last != " " ]] && msg="$msg "
4106 msg=$(printf '%s%.*s' "$msg" $((${#EQUALS} - ${#msg})) $EQUALS )
4107 # always include at least == after the message
4108 log "$msg== $(date +"%H:%M:%S (%s)")"
4112 # Run a single test function and cleanup after it.
4114 # This function should be run in a subshell so the test func can
4115 # exit() without stopping the whole script.
4120 tfile=f.${TESTSUITE}.${testnum}
4121 export tdir=d0.${TESTSUITE}/d${base}
4122 export TESTNAME=test_$testnum
4123 local SAVE_UMASK=`umask`