Whamcloud - gitweb
LU-6992 test: wait device to be registered
[fs/lustre-release.git] / lustre / tests / test-framework.sh
1 #!/bin/bash
2
3 trap 'print_summary && touch $TF_FAIL && \
4     echo "test-framework exiting on error"' ERR
5 set -e
6 #set -x
7
8 export LANG=en_US
9 export REFORMAT=${REFORMAT:-""}
10 export WRITECONF=${WRITECONF:-""}
11 export VERBOSE=${VERBOSE:-false}
12 export GSS=false
13 export GSS_KRB5=false
14 export GSS_PIPEFS=false
15 export IDENTITY_UPCALL=default
16 export QUOTA_AUTO=1
17 # specify environment variable containing batch job name for server statistics
18 export JOBID_VAR=${JOBID_VAR:-"procname_uid"}  # or "existing" or "disable"
19
20 # LOAD_LLOOP: LU-409: only load llite_lloop module if kernel < 2.6.32 or
21 #             LOAD_LLOOP is true. LOAD_LLOOP is false by default.
22 export LOAD_LLOOP=${LOAD_LLOOP:-false}
23
24 #export PDSH="pdsh -S -Rssh -w"
25 export MOUNT_CMD=${MOUNT_CMD:-"mount -t lustre"}
26 export UMOUNT=${UMOUNT:-"umount -d"}
27 # sles12 umount has a issue with -d option
28 [ -e /etc/SuSE-release ] && grep -w VERSION /etc/SuSE-release | grep -wq 12 && {
29         export UMOUNT="umount"
30 }
31
32 # function used by scripts run on remote nodes
33 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
34 . $LUSTRE/tests/functions.sh
35 . $LUSTRE/tests/yaml.sh
36
37 export LD_LIBRARY_PATH=${LUSTRE}/utils:${LD_LIBRARY_PATH}
38
39 LUSTRE_TESTS_CFG_DIR=${LUSTRE_TESTS_CFG_DIR:-${LUSTRE}/tests/cfg}
40
41 EXCEPT_LIST_FILE=${EXCEPT_LIST_FILE:-${LUSTRE_TESTS_CFG_DIR}/tests-to-skip.sh}
42
43 if [ -f "$EXCEPT_LIST_FILE" ]; then
44     echo "Reading test skip list from $EXCEPT_LIST_FILE"
45     cat $EXCEPT_LIST_FILE
46     . $EXCEPT_LIST_FILE
47 fi
48
49 # check config files for options in decreasing order of preference
50 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/lustre.conf ] &&
51     MODPROBECONF=/etc/modprobe.d/lustre.conf
52 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/Lustre ] &&
53     MODPROBECONF=/etc/modprobe.d/Lustre
54 [ -z "$MODPROBECONF" -a -f /etc/modprobe.conf ] &&
55     MODPROBECONF=/etc/modprobe.conf
56
57 assert_DIR () {
58     local failed=""
59     [[ $DIR/ = $MOUNT/* ]] || \
60         { failed=1 && echo "DIR=$DIR not in $MOUNT. Aborting."; }
61     [[ $DIR1/ = $MOUNT1/* ]] || \
62         { failed=1 && echo "DIR1=$DIR1 not in $MOUNT1. Aborting."; }
63     [[ $DIR2/ = $MOUNT2/* ]] || \
64         { failed=1 && echo "DIR2=$DIR2 not in $MOUNT2. Aborting"; }
65
66     [ -n "$failed" ] && exit 99 || true
67 }
68
69 usage() {
70     echo "usage: $0 [-r] [-f cfgfile]"
71     echo "       -r: reformat"
72
73     exit
74 }
75
76 print_summary () {
77     trap 0
78         [ -z "$DEFAULT_SUITES"] && return 0
79     [ "$TESTSUITE" == "lfsck" ] && return 0
80     [ -n "$ONLY" ] && echo "WARNING: ONLY is set to $(echo $ONLY)"
81     local details
82     local form="%-13s %-17s %-9s %s %s\n"
83     printf "$form" "status" "script" "Total(sec)" "E(xcluded) S(low)"
84     echo "------------------------------------------------------------------------------------"
85     for O in $DEFAULT_SUITES; do
86         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
87         [ "${!O}" = "no" ] && continue || true
88         local o=$(echo $O  | tr "[:upper:]_" "[:lower:]-")
89         local log=${TMP}/${o}.log
90         if is_sanity_benchmark $o; then
91             log=${TMP}/sanity-benchmark.log
92         fi
93         local slow=
94         local skipped=
95         local total=
96         local status=Unfinished
97         if [ -f $log ]; then
98                 skipped=$(grep excluded $log | awk '{ printf " %s", $3 }' |
99                         sed 's/test_//g')
100                 slow=$(egrep "^PASS|^FAIL" $log | tr -d "("| sed s/s\)$//g |
101                         sort -nr -k 3  | head -n5 |  awk '{ print $2":"$3"s" }')
102                 total=$(grep duration $log | awk '{ print $2 }')
103                 if [ "${!O}" = "done" ]; then
104                         status=Done
105                 fi
106                 if $DDETAILS; then
107                         local durations=$(egrep "^PASS|^FAIL" $log |
108                                 tr -d "("| sed s/s\)$//g |
109                                 awk '{ print $2":"$3"|" }')
110                         details=$(printf "%s\n%s %s %s\n" "$details" \
111                                 "DDETAILS" "$O" "$(echo $durations)")
112                 fi
113         fi
114         printf "$form" $status "$O" "${total}" "E=$skipped"
115         printf "$form" "-" "-" "-" "S=$(echo $slow)"
116     done
117
118     for O in $DEFAULT_SUITES; do
119         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
120         if [ "${!O}" = "no" ]; then
121             printf "$form" "Skipped" "$O" ""
122         fi
123     done
124
125     # print the detailed tests durations if DDETAILS=true
126     if $DDETAILS; then
127         echo "$details"
128     fi
129 }
130
131 init_test_env() {
132         export LUSTRE=$(absolute_path $LUSTRE)
133         export TESTSUITE=$(basename $0 .sh)
134         export TEST_FAILED=false
135         export FAIL_ON_SKIP_ENV=${FAIL_ON_SKIP_ENV:-false}
136         export RPC_MODE=${RPC_MODE:-false}
137
138     export MKE2FS=$MKE2FS
139     if [ -z "$MKE2FS" ]; then
140         if which mkfs.ldiskfs >/dev/null 2>&1; then
141             export MKE2FS=mkfs.ldiskfs
142         else
143             export MKE2FS=mke2fs
144         fi
145     fi
146
147     export DEBUGFS=$DEBUGFS
148     if [ -z "$DEBUGFS" ]; then
149         if which debugfs.ldiskfs >/dev/null 2>&1; then
150             export DEBUGFS=debugfs.ldiskfs
151         else
152             export DEBUGFS=debugfs
153         fi
154     fi
155
156     export TUNE2FS=$TUNE2FS
157     if [ -z "$TUNE2FS" ]; then
158         if which tunefs.ldiskfs >/dev/null 2>&1; then
159             export TUNE2FS=tunefs.ldiskfs
160         else
161             export TUNE2FS=tune2fs
162         fi
163     fi
164
165     export E2LABEL=$E2LABEL
166     if [ -z "$E2LABEL" ]; then
167         if which label.ldiskfs >/dev/null 2>&1; then
168             export E2LABEL=label.ldiskfs
169         else
170             export E2LABEL=e2label
171         fi
172     fi
173
174     export DUMPE2FS=$DUMPE2FS
175     if [ -z "$DUMPE2FS" ]; then
176         if which dumpfs.ldiskfs >/dev/null 2>&1; then
177             export DUMPE2FS=dumpfs.ldiskfs
178         else
179             export DUMPE2FS=dumpe2fs
180         fi
181     fi
182
183     export E2FSCK=$E2FSCK
184     if [ -z "$E2FSCK" ]; then
185         if which fsck.ldiskfs >/dev/null 2>&1; then
186             export E2FSCK=fsck.ldiskfs
187         else
188             export E2FSCK=e2fsck
189         fi
190     fi
191
192         export RESIZE2FS=$RESIZE2FS
193         if [ -z "$RESIZE2FS" ]; then
194                 if which resizefs.ldiskfs >/dev/null 2>&1; then
195                         export RESIZE2FS=resizefs.ldiskfs
196                 else
197                         export RESIZE2FS=resize2fs
198                 fi
199         fi
200
201     export LFSCK_BIN=${LFSCK_BIN:-lfsck}
202     export LFSCK_ALWAYS=${LFSCK_ALWAYS:-"no"} # check fs after each test suite
203     export FSCK_MAX_ERR=4   # File system errors left uncorrected
204
205         export ZFS=${ZFS:-zfs}
206         export ZPOOL=${ZPOOL:-zpool}
207         export ZDB=${ZDB:-zdb}
208         export PARTPROBE=${PARTPROBE:-partprobe}
209
210     #[ -d /r ] && export ROOT=${ROOT:-/r}
211     export TMP=${TMP:-$ROOT/tmp}
212     export TESTSUITELOG=${TMP}/${TESTSUITE}.log
213     export LOGDIR=${LOGDIR:-${TMP}/test_logs/$(date +%s)}
214     export TESTLOG_PREFIX=$LOGDIR/$TESTSUITE
215
216     export HOSTNAME=${HOSTNAME:-$(hostname -s)}
217     if ! echo $PATH | grep -q $LUSTRE/utils; then
218         export PATH=$LUSTRE/utils:$PATH
219     fi
220     if ! echo $PATH | grep -q $LUSTRE/utils/gss; then
221         export PATH=$LUSTRE/utils/gss:$PATH
222     fi
223     if ! echo $PATH | grep -q $LUSTRE/tests; then
224         export PATH=$LUSTRE/tests:$PATH
225     fi
226     if ! echo $PATH | grep -q $LUSTRE/../lustre-iokit/sgpdd-survey; then
227         export PATH=$LUSTRE/../lustre-iokit/sgpdd-survey:$PATH
228     fi
229     export LST=${LST:-"$LUSTRE/../lnet/utils/lst"}
230     [ ! -f "$LST" ] && export LST=$(which lst)
231     export SGPDDSURVEY=${SGPDDSURVEY:-"$LUSTRE/../lustre-iokit/sgpdd-survey/sgpdd-survey")}
232     [ ! -f "$SGPDDSURVEY" ] && export SGPDDSURVEY=$(which sgpdd-survey)
233         export MCREATE=${MCREATE:-mcreate}
234     # Ubuntu, at least, has a truncate command in /usr/bin
235     # so fully path our truncate command.
236     export TRUNCATE=${TRUNCATE:-$LUSTRE/tests/truncate}
237         export FSX=${FSX:-$LUSTRE/tests/fsx}
238     export MDSRATE=${MDSRATE:-"$LUSTRE/tests/mpi/mdsrate"}
239     [ ! -f "$MDSRATE" ] && export MDSRATE=$(which mdsrate 2> /dev/null)
240     if ! echo $PATH | grep -q $LUSTRE/tests/racer; then
241         export PATH=$LUSTRE/tests/racer:$PATH:
242     fi
243     if ! echo $PATH | grep -q $LUSTRE/tests/mpi; then
244         export PATH=$LUSTRE/tests/mpi:$PATH
245     fi
246     export RSYNC_RSH=${RSYNC_RSH:-rsh}
247
248     export LCTL=${LCTL:-"$LUSTRE/utils/lctl"}
249     [ ! -f "$LCTL" ] && export LCTL=$(which lctl)
250     export LFS=${LFS:-"$LUSTRE/utils/lfs"}
251     [ ! -f "$LFS" ] && export LFS=$(which lfs)
252     SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
253     GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
254
255     export L_GETIDENTITY=${L_GETIDENTITY:-"$LUSTRE/utils/l_getidentity"}
256     if [ ! -f "$L_GETIDENTITY" ]; then
257         if `which l_getidentity > /dev/null 2>&1`; then
258             export L_GETIDENTITY=$(which l_getidentity)
259         else
260             export L_GETIDENTITY=NONE
261         fi
262     fi
263     export LL_DECODE_FILTER_FID=${LL_DECODE_FILTER_FID:-"$LUSTRE/utils/ll_decode_filter_fid"}
264     [ ! -f "$LL_DECODE_FILTER_FID" ] && export LL_DECODE_FILTER_FID="ll_decode_filter_fid"
265     export MKFS=${MKFS:-"$LUSTRE/utils/mkfs.lustre"}
266     [ ! -f "$MKFS" ] && export MKFS="mkfs.lustre"
267     export TUNEFS=${TUNEFS:-"$LUSTRE/utils/tunefs.lustre"}
268     [ ! -f "$TUNEFS" ] && export TUNEFS="tunefs.lustre"
269     export CHECKSTAT="${CHECKSTAT:-"checkstat -v"} "
270     export LUSTRE_RMMOD=${LUSTRE_RMMOD:-$LUSTRE/scripts/lustre_rmmod}
271     [ ! -f "$LUSTRE_RMMOD" ] &&
272         export LUSTRE_RMMOD=$(which lustre_rmmod 2> /dev/null)
273     export LFS_MIGRATE=${LFS_MIGRATE:-$LUSTRE/scripts/lfs_migrate}
274     [ ! -f "$LFS_MIGRATE" ] &&
275         export LFS_MIGRATE=$(which lfs_migrate 2> /dev/null)
276     export LR_READER=${LR_READER:-"$LUSTRE/utils/lr_reader"}
277     [ ! -f "$LR_READER" ] && export LR_READER=$(which lr_reader 2> /dev/null)
278     [ -z "$LR_READER" ] && export LR_READER="/usr/sbin/lr_reader"
279     export NAME=${NAME:-local}
280     export LGSSD=${LGSSD:-"$LUSTRE/utils/gss/lgssd"}
281     [ "$GSS_PIPEFS" = "true" ] && [ ! -f "$LGSSD" ] && \
282         export LGSSD=$(which lgssd)
283     export LSVCGSSD=${LSVCGSSD:-"$LUSTRE/utils/gss/lsvcgssd"}
284     [ ! -f "$LSVCGSSD" ] && export LSVCGSSD=$(which lsvcgssd 2> /dev/null)
285     export KRB5DIR=${KRB5DIR:-"/usr/kerberos"}
286     export DIR2
287     export SAVE_PWD=${SAVE_PWD:-$LUSTRE/tests}
288     export AT_MAX_PATH
289
290     if [ "$ACCEPTOR_PORT" ]; then
291         export PORT_OPT="--port $ACCEPTOR_PORT"
292     fi
293
294     case "x$SEC" in
295         xkrb5*)
296             echo "Using GSS/krb5 ptlrpc security flavor"
297             which lgss_keyring > /dev/null 2>&1 || \
298                 error_exit "built with gss disabled! SEC=$SEC"
299             GSS=true
300             GSS_KRB5=true
301             ;;
302     esac
303
304     case "x$IDUP" in
305         xtrue)
306             IDENTITY_UPCALL=true
307             ;;
308         xfalse)
309             IDENTITY_UPCALL=false
310             ;;
311     esac
312
313     export LOAD_MODULES_REMOTE=${LOAD_MODULES_REMOTE:-false}
314
315     # Paths on remote nodes, if different
316     export RLUSTRE=${RLUSTRE:-$LUSTRE}
317     export RPWD=${RPWD:-$PWD}
318     export I_MOUNTED=${I_MOUNTED:-"no"}
319         if [ ! -f /lib/modules/$(uname -r)/kernel/fs/lustre/mdt.ko -a \
320              ! -f /lib/modules/$(uname -r)/updates/kernel/fs/lustre/mdt.ko -a \
321              ! -f /lib/modules/$(uname -r)/extra/kernel/fs/lustre/mdt.ko -a \
322              ! -f $LUSTRE/mdt/mdt.ko ]; then
323             export CLIENTMODSONLY=yes
324         fi
325
326         export SHUTDOWN_ATTEMPTS=${SHUTDOWN_ATTEMPTS:-3}
327         export OSD_TRACK_DECLARES_LBUG=${OSD_TRACK_DECLARES_LBUG:-"yes"}
328
329     # command line
330
331     while getopts "rvwf:" opt $*; do
332         case $opt in
333             f) CONFIG=$OPTARG;;
334             r) REFORMAT=--reformat;;
335             v) VERBOSE=true;;
336             w) WRITECONF=writeconf;;
337             \?) usage;;
338         esac
339     done
340
341     shift $((OPTIND - 1))
342     ONLY=${ONLY:-$*}
343
344         # print the durations of each test if "true"
345         DDETAILS=${DDETAILS:-false}
346         [ "$TESTSUITELOG" ] && rm -f $TESTSUITELOG || true
347         if ! $RPC_MODE; then
348                 rm -f $TMP/*active
349         fi
350
351         export TF_FAIL=${TF_FAIL:-$TMP/tf.fail}
352 }
353
354 check_cpt_number() {
355         local facet=$1
356         local ncpts
357
358         ncpts=$(do_facet $facet "lctl get_param -n " \
359                 "cpu_partition_table 2>/dev/null| wc -l" || echo 1)
360
361         if [ $ncpts -eq 0 ]; then
362                 echo "1"
363         else
364                 echo $ncpts
365         fi
366 }
367
368 # Return a numeric version code based on a version string.  The version
369 # code is useful for comparison two version strings to see which is newer.
370 version_code() {
371         # split arguments like "1.8.6-wc3" into "1", "8", "6", "wc3"
372         eval set -- $(tr "[:punct:]" " " <<< $*)
373
374         echo -n "$((($1 << 16) | ($2 << 8) | $3))"
375 }
376
377 export LINUX_VERSION=$(uname -r | sed -e "s/\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/")
378 export LINUX_VERSION_CODE=$(version_code ${LINUX_VERSION//\./ })
379
380 # Report the Lustre build version string (e.g. 1.8.7.3 or 2.4.1).
381 #
382 # usage: lustre_build_version
383 #
384 # All Lustre versions support "lctl get_param" to report the version of the
385 # code running in the kernel (what our tests are interested in), but it
386 # doesn't work without modules loaded.  If that fails, use "lctl version"
387 # instead, which is easy to parse and works without the kernel modules,
388 # but was only added in 2.6.50.  If that also fails, fall back to calling
389 # "lctl lustre_build_version" which prints either (or both) the userspace
390 # and kernel build versions, but is deprecated and should eventually be
391 # removed.
392 #
393 # output: prints version string to stdout in dotted-decimal format
394 lustre_build_version() {
395         local facet=${1:-client}
396
397         # lustre: 2.6.52
398         # kernel: patchless_client
399         # build: v2_6_92_0-gadb3ee4-2.6.32-431.29.2.el6_lustre.x86_64
400         local VER=$(do_facet $facet $LCTL get_param -n version 2> /dev/null |
401                     awk '/lustre: / { print $2 }')
402         # lctl 2.6.50
403         [ -z "$VER" ] && VER=$(do_facet $facet $LCTL --version 2>/dev/null |
404                                awk '{ print $2 }')
405         # Lustre version: 2.5.3-gfcfd782-CHANGED-2.6.32.26-175.fc12.x86_64
406         # lctl   version: 2.5.3-gfcfd782-CHANGED-2.6.32.26-175.fc12.x86_64
407         [ -z "$VER" ] && VER=$(do_facet $facet $LCTL lustre_build_version |
408                                awk '/version:/ { print $3; exit; }')
409         sed -e 's/^v//' -e 's/-.*//' -e 's/_/./g' <<<$VER
410 }
411
412 # Report the Lustre numeric build version code for the supplied facet.
413 lustre_version_code() {
414         version_code $(lustre_build_version $1)
415 }
416
417 module_loaded () {
418         /sbin/lsmod | grep -q "^\<$1\>"
419 }
420
421 # Load a module on the system where this is running.
422 #
423 # usage: load_module module_name [module arguments for insmod/modprobe]
424 #
425 # If module arguments are not given but MODOPTS_<MODULE> is set, then its value
426 # will be used as the arguments.  Otherwise arguments will be obtained from
427 # /etc/modprobe.conf, from /etc/modprobe.d/Lustre, or else none will be used.
428 #
429 load_module() {
430     local optvar
431     EXT=".ko"
432     module=$1
433     shift
434     BASE=$(basename $module $EXT)
435
436     module_loaded ${BASE} && return
437
438     # If no module arguments were passed, get them from $MODOPTS_<MODULE>,
439     # else from modprobe.conf
440     if [ $# -eq 0 ]; then
441         # $MODOPTS_<MODULE>; we could use associative arrays, but that's not in
442         # Bash until 4.x, so we resort to eval.
443         optvar="MODOPTS_$(basename $module | tr a-z A-Z)"
444         eval set -- \$$optvar
445         if [ $# -eq 0 -a -n "$MODPROBECONF" ]; then
446                 # Nothing in $MODOPTS_<MODULE>; try modprobe.conf
447                 local opt
448                 opt=$(awk -v var="^options $BASE" '$0 ~ var \
449                         {gsub("'"options $BASE"'",""); print}' $MODPROBECONF)
450                 set -- $(echo -n $opt)
451
452                 # Ensure we have accept=all for lnet
453                 if [ $(basename $module) = lnet ]; then
454                         # OK, this is a bit wordy...
455                         local arg accept_all_present=false
456
457                         for arg in "$@"; do
458                                 [ "$arg" = accept=all ] && \
459                                         accept_all_present=true
460                         done
461                         $accept_all_present || set -- "$@" accept=all
462                 fi
463                 export $optvar="$*"
464         fi
465     fi
466
467     [ $# -gt 0 ] && echo "${module} options: '$*'"
468
469         # Note that insmod will ignore anything in modprobe.conf, which is why
470         # we're passing options on the command-line.
471         if [[ "$BASE" == "lnet_selftest" ]] &&
472                 [[ -f ${LUSTRE}/../lnet/selftest/${module}${EXT} ]]; then
473                 insmod ${LUSTRE}/../lnet/selftest/${module}${EXT}
474         elif [[ -f ${LUSTRE}/${module}${EXT} ]]; then
475                 [[ "$BASE" != "ptlrpc_gss" ]] || modprobe sunrpc
476                 insmod ${LUSTRE}/${module}${EXT} "$@"
477         else
478                 # must be testing a "make install" or "rpm" installation
479                 # note failed to load ptlrpc_gss is considered not fatal
480                 if [[ "$BASE" == "ptlrpc_gss" ]]; then
481                         modprobe $BASE "$@" 2>/dev/null ||
482                                 echo "gss/krb5 is not supported"
483                 else
484                         modprobe $BASE "$@"
485                 fi
486         fi
487 }
488
489 llite_lloop_enabled() {
490     local n1=$(uname -r | cut -d. -f1)
491     local n2=$(uname -r | cut -d. -f2)
492     local n3=$(uname -r | cut -d- -f1 | cut -d. -f3)
493
494     # load the llite_lloop module for < 2.6.32 kernels
495     if [[ $n1 -lt 2 ]] || [[ $n1 -eq 2 && $n2 -lt 6 ]] || \
496        [[ $n1 -eq 2 && $n2 -eq 6 && $n3 -lt 32 ]] || \
497         $LOAD_LLOOP; then
498         return 0
499     fi
500     return 1
501 }
502
503 load_modules_local() {
504         if [ -n "$MODPROBE" ]; then
505                 # use modprobe
506                 echo "Using modprobe to load modules"
507                 return 0
508         fi
509
510         echo Loading modules from $LUSTRE
511
512         local ncpus
513
514         if [ -f /sys/devices/system/cpu/online ]; then
515                 ncpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/online) + 1))
516                 echo "detected $ncpus online CPUs by sysfs"
517         else
518                 ncpus=$(getconf _NPROCESSORS_CONF 2>/dev/null)
519                 local rc=$?
520                 if [ $rc -eq 0 ]; then
521                         echo "detected $ncpus online CPUs by getconf"
522                 else
523                         echo "Can't detect number of CPUs"
524                         ncpus=1
525                 fi
526         fi
527
528         # if there is only one CPU core, libcfs can only create one partition
529         # if there is more than 4 CPU cores, libcfs should create multiple CPU
530         # partitions. So we just force libcfs to create 2 partitions for
531         # system with 2 or 4 cores
532         if [ $ncpus -le 4 ] && [ $ncpus -gt 1 ]; then
533                 # force to enable multiple CPU partitions
534                 echo "Force libcfs to create 2 CPU partitions"
535                 MODOPTS_LIBCFS="cpu_npartitions=2 $MODOPTS_LIBCFS"
536         else
537                 echo "libcfs will create CPU partition based on online CPUs"
538         fi
539
540         load_module ../libcfs/libcfs/libcfs
541
542     [ "$PTLDEBUG" ] && lctl set_param debug="$PTLDEBUG"
543     [ "$SUBSYSTEM" ] && lctl set_param subsystem_debug="${SUBSYSTEM# }"
544     load_module ../lnet/lnet/lnet
545         case $NETTYPE in
546         o2ib)
547                 LNETLND="o2iblnd/ko2iblnd"
548                 ;;
549         *)
550                 ;;
551         esac
552     LNETLND=${LNETLND:-"socklnd/ksocklnd"}
553     load_module ../lnet/klnds/$LNETLND
554     load_module obdclass/obdclass
555     load_module ptlrpc/ptlrpc
556     load_module ptlrpc/gss/ptlrpc_gss
557     load_module fld/fld
558     load_module fid/fid
559     load_module lmv/lmv
560     load_module mdc/mdc
561     load_module osc/osc
562     load_module lov/lov
563     load_module mgc/mgc
564     load_module obdecho/obdecho
565     if ! client_only; then
566         SYMLIST=/proc/kallsyms
567         grep -q crc16 $SYMLIST || { modprobe crc16 2>/dev/null || true; }
568         grep -q -w jbd $SYMLIST || { modprobe jbd 2>/dev/null || true; }
569         grep -q -w jbd2 $SYMLIST || { modprobe jbd2 2>/dev/null || true; }
570                 load_module lfsck/lfsck
571                 [ "$LQUOTA" != "no" ] && load_module quota/lquota $LQUOTAOPTS
572                 if [[ $(node_fstypes $HOSTNAME) == *zfs* ]]; then
573                         modprobe zfs
574                         load_module osd-zfs/osd_zfs
575                 fi
576                 if [[ $(node_fstypes $HOSTNAME) == *ldiskfs* ]]; then
577                         grep -q exportfs_decode_fh $SYMLIST ||
578                                 { modprobe exportfs 2> /dev/null || true; }
579                         load_module ../ldiskfs/ldiskfs
580                         load_module osd-ldiskfs/osd_ldiskfs
581                 fi
582                 load_module mgs/mgs
583                 load_module mdd/mdd
584                 load_module mdt/mdt
585                 load_module ost/ost
586                 load_module lod/lod
587                 load_module osp/osp
588                 load_module ofd/ofd
589                 load_module osp/osp
590     fi
591
592         load_module llite/lustre
593         llite_lloop_enabled && load_module llite/llite_lloop
594         [ -d /r ] && OGDB=${OGDB:-"/r/tmp"}
595         OGDB=${OGDB:-$TMP}
596         rm -f $OGDB/ogdb-$HOSTNAME
597         $LCTL modules > $OGDB/ogdb-$HOSTNAME
598
599         # 'mount' doesn't look in $PATH, just sbin
600         local mount_lustre=$LUSTRE/utils/mount.lustre
601         if [ -f $mount_lustre ]; then
602                 local sbin_mount=$(readlink -f /sbin)/mount.lustre
603                 if grep -qw "$sbin_mount" /proc/mounts; then
604                         cmp -s $mount_lustre $sbin_mount || umount $sbin_mount
605                 fi
606                 if ! grep -qw "$sbin_mount" /proc/mounts; then
607                         [ ! -f "$sbin_mount" ] && touch "$sbin_mount"
608                         if [ ! -s "$sbin_mount" -a -w "$sbin_mount" ]; then
609                                 cat <<- EOF > "$sbin_mount"
610                                 #!/bin/sh
611                                 #STUB MARK
612                                 echo "This $sbin_mount just a mountpoint." 1>&2
613                                 echo "It is never supposed to be run." 1>&2
614                                 logger -p emerg -- "using stub $sbin_mount $@"
615                                 exit 1
616                                 EOF
617                                 chmod a+x $sbin_mount
618                         fi
619                         mount --bind $mount_lustre $sbin_mount ||
620                                 error "can't bind $mount_lustre to $sbin_mount"
621                 fi
622         fi
623 }
624
625 load_modules () {
626         load_modules_local
627         # bug 19124
628         # load modules on remote nodes optionally
629         # lustre-tests have to be installed on these nodes
630         if $LOAD_MODULES_REMOTE; then
631                 local list=$(comma_list $(remote_nodes_list))
632                 if [ -n "$list" ]; then
633                         echo "loading modules on: '$list'"
634                         do_rpc_nodes "$list" load_modules_local
635                 fi
636         fi
637 }
638
639 check_mem_leak () {
640     LEAK_LUSTRE=$(dmesg | tail -n 30 | grep "obd_memory.*leaked" || true)
641     LEAK_PORTALS=$(dmesg | tail -n 20 | grep "Portals memory leaked" || true)
642     if [ "$LEAK_LUSTRE" -o "$LEAK_PORTALS" ]; then
643         echo "$LEAK_LUSTRE" 1>&2
644         echo "$LEAK_PORTALS" 1>&2
645         mv $TMP/debug $TMP/debug-leak.`date +%s` || true
646         echo "Memory leaks detected"
647         [ -n "$IGNORE_LEAK" ] && { echo "ignoring leaks" && return 0; } || true
648         return 1
649     fi
650 }
651
652 unload_modules() {
653         wait_exit_ST client # bug 12845
654
655         $LUSTRE_RMMOD ldiskfs || return 2
656
657         if $LOAD_MODULES_REMOTE; then
658                 local list=$(comma_list $(remote_nodes_list))
659                 if [ -n "$list" ]; then
660                         echo "unloading modules on: '$list'"
661                         do_rpc_nodes "$list" $LUSTRE_RMMOD ldiskfs
662                         do_rpc_nodes "$list" check_mem_leak
663                 fi
664         fi
665
666         local sbin_mount=$(readlink -f /sbin)/mount.lustre
667         if grep -qe "$sbin_mount " /proc/mounts; then
668                 umount $sbin_mount || true
669                 [ -s $sbin_mount ] && ! grep -q "STUB MARK" $sbin_mount ||
670                         rm -f $sbin_mount
671         fi
672
673         check_mem_leak || return 254
674
675         echo "modules unloaded."
676         return 0
677 }
678
679 fs_log_size() {
680         local facet=${1:-$SINGLEMDS}
681         local fstype=$(facet_fstype $facet)
682         local size=0
683         case $fstype in
684                 ldiskfs) size=50;; # largest seen is 44, leave some headroom
685                 zfs)     size=400;; # largest seen is 384
686         esac
687
688         echo -n $size
689 }
690
691 check_gss_daemon_nodes() {
692     local list=$1
693     dname=$2
694
695     do_nodesv $list "num=\\\$(ps -o cmd -C $dname | grep $dname | wc -l);
696 if [ \\\"\\\$num\\\" -ne 1 ]; then
697     echo \\\$num instance of $dname;
698     exit 1;
699 fi; "
700 }
701
702 check_gss_daemon_facet() {
703     facet=$1
704     dname=$2
705
706     num=`do_facet $facet ps -o cmd -C $dname | grep $dname | wc -l`
707     if [ $num -ne 1 ]; then
708         echo "$num instance of $dname on $facet"
709         return 1
710     fi
711     return 0
712 }
713
714 send_sigint() {
715     local list=$1
716     shift
717     echo Stopping $@ on $list
718     do_nodes $list "killall -2 $@ 2>/dev/null || true"
719 }
720
721 # start gss daemons on all nodes, or
722 # "daemon" on "list" if set
723 start_gss_daemons() {
724     local list=$1
725     local daemon=$2
726
727     if [ "$list" ] && [ "$daemon" ] ; then
728         echo "Starting gss daemon on nodes: $list"
729         do_nodes $list "$daemon" || return 8
730         return 0
731     fi
732
733     local list=$(comma_list $(mdts_nodes))
734     echo "Starting gss daemon on mds: $list"
735     do_nodes $list "$LSVCGSSD -v" || return 1
736     if $GSS_PIPEFS; then
737         do_nodes $list "$LGSSD -v" || return 2
738     fi
739
740     list=$(comma_list $(osts_nodes))
741     echo "Starting gss daemon on ost: $list"
742     do_nodes $list "$LSVCGSSD -v" || return 3
743     # starting on clients
744
745     local clients=${CLIENTS:-`hostname`}
746     if $GSS_PIPEFS; then
747         echo "Starting $LGSSD on clients $clients "
748         do_nodes $clients  "$LGSSD -v" || return 4
749     fi
750
751     # wait daemons entering "stable" status
752     sleep 5
753
754     #
755     # check daemons are running
756     #
757     list=$(comma_list $(mdts_nodes) $(osts_nodes))
758     check_gss_daemon_nodes $list lsvcgssd || return 5
759     if $GSS_PIPEFS; then
760         list=$(comma_list $(mdts_nodes))
761         check_gss_daemon_nodes $list lgssd || return 6
762     fi
763     if $GSS_PIPEFS; then
764         check_gss_daemon_nodes $clients lgssd || return 7
765     fi
766 }
767
768 stop_gss_daemons() {
769     local list=$(comma_list $(mdts_nodes))
770
771     send_sigint $list lsvcgssd lgssd
772
773     list=$(comma_list $(osts_nodes))
774     send_sigint $list lsvcgssd
775
776     list=${CLIENTS:-`hostname`}
777     send_sigint $list lgssd
778 }
779
780 init_gss() {
781     if $GSS; then
782         if ! module_loaded ptlrpc_gss; then
783             load_module ptlrpc/gss/ptlrpc_gss
784             module_loaded ptlrpc_gss ||
785                 error_exit "init_gss : GSS=$GSS, but gss/krb5 is not supported!"
786         fi
787         if $GSS_KRB5; then
788                 start_gss_daemons || error_exit "start gss daemon failed! rc=$?"
789         fi
790
791         if [ -n "$LGSS_KEYRING_DEBUG" ]; then
792                 lctl set_param -n \
793                     sptlrpc.gss.lgss_keyring.debug_level=$LGSS_KEYRING_DEBUG
794         fi
795     fi
796 }
797
798 cleanup_gss() {
799     if $GSS; then
800         stop_gss_daemons
801         # maybe cleanup credential cache?
802     fi
803 }
804
805 facet_svc() {
806         local facet=$1
807         local var=${facet}_svc
808
809         echo -n ${!var}
810 }
811
812 facet_type() {
813         local facet=$1
814
815         echo -n $facet | sed -e 's/^fs[0-9]\+//' -e 's/[0-9_]\+//' |
816                 tr '[:lower:]' '[:upper:]'
817 }
818
819 facet_number() {
820         local facet=$1
821
822         if [ $facet == mgs ]; then
823                 return 1
824         fi
825
826         echo -n $facet | sed -e 's/^fs[0-9]\+//' | sed -e 's/^[a-z]\+//'
827 }
828
829 facet_fstype() {
830         local facet=$1
831         local var
832
833         var=${facet}_FSTYPE
834         if [ -n "${!var}" ]; then
835                 echo -n ${!var}
836                 return
837         fi
838
839         var=$(facet_type $facet)FSTYPE
840         if [ -n "${!var}" ]; then
841                 echo -n ${!var}
842                 return
843         fi
844
845         if [ -n "$FSTYPE" ]; then
846                 echo -n $FSTYPE
847                 return
848         fi
849
850         if [[ $facet == mgs ]] && combined_mgs_mds; then
851                 facet_fstype mds1
852                 return
853         fi
854
855         return 1
856 }
857
858 node_fstypes() {
859         local node=$1
860         local fstypes
861         local fstype
862         local facets=$(get_facets)
863         local facet
864
865         for facet in ${facets//,/ }; do
866                 if [ $node == $(facet_host $facet) ] ||
867                    [ $node == "$(facet_failover_host $facet)" ]; then
868                         fstype=$(facet_fstype $facet)
869                         if [[ $fstypes != *$fstype* ]]; then
870                                 fstypes+="${fstypes:+,}$fstype"
871                         fi
872                 fi
873         done
874         echo -n $fstypes
875 }
876
877 facet_index() {
878         local facet=$1
879         local num=$(facet_number $facet)
880         local index
881
882         if [[ $(facet_type $facet) = OST ]]; then
883                 index=OSTINDEX${num}
884                 if [[ -n "${!index}" ]]; then
885                         echo -n ${!index}
886                         return
887                 fi
888
889                 index=${OST_INDICES[num - 1]}
890         fi
891
892         [[ -n "$index" ]] || index=$((num - 1))
893         echo -n $index
894 }
895
896 devicelabel() {
897         local facet=$1
898         local dev=$2
899         local label
900         local fstype=$(facet_fstype $facet)
901
902         case $fstype in
903         ldiskfs)
904                 label=$(do_facet ${facet} "$E2LABEL ${dev} 2>/dev/null");;
905         zfs)
906                 label=$(do_facet ${facet} "$ZFS get -H -o value lustre:svname \
907                                            ${dev} 2>/dev/null");;
908         *)
909                 error "unknown fstype!";;
910         esac
911
912         echo -n $label
913 }
914
915 mdsdevlabel() {
916         local num=$1
917         local device=$(mdsdevname $num)
918         local label=$(devicelabel mds$num ${device} | grep -v "CMD: ")
919         echo -n $label
920 }
921
922 ostdevlabel() {
923         local num=$1
924         local device=$(ostdevname $num)
925         local label=$(devicelabel ost$num ${device} | grep -v "CMD: ")
926         echo -n $label
927 }
928
929 #
930 # Get the device of a facet.
931 #
932 facet_device() {
933         local facet=$1
934         local device
935
936         case $facet in
937                 mgs) device=$(mgsdevname) ;;
938                 mds*) device=$(mdsdevname $(facet_number $facet)) ;;
939                 ost*) device=$(ostdevname $(facet_number $facet)) ;;
940                 fs2mds) device=$(mdsdevname 1_2) ;;
941                 fs2ost) device=$(ostdevname 1_2) ;;
942                 fs3ost) device=$(ostdevname 2_2) ;;
943                 *) ;;
944         esac
945
946         echo -n $device
947 }
948
949 #
950 # Get the virtual device of a facet.
951 #
952 facet_vdevice() {
953         local facet=$1
954         local device
955
956         case $facet in
957                 mgs) device=$(mgsvdevname) ;;
958                 mds*) device=$(mdsvdevname $(facet_number $facet)) ;;
959                 ost*) device=$(ostvdevname $(facet_number $facet)) ;;
960                 fs2mds) device=$(mdsvdevname 1_2) ;;
961                 fs2ost) device=$(ostvdevname 1_2) ;;
962                 fs3ost) device=$(ostvdevname 2_2) ;;
963                 *) ;;
964         esac
965
966         echo -n $device
967 }
968
969 #
970 # Re-read the partition table on failover partner host.
971 # After a ZFS storage pool is created on a shared device, the partition table
972 # on the device may change. However, the operating system on the failover
973 # host may not notice the change automatically. Without the up-to-date partition
974 # block devices, 'zpool import ..' cannot find the labels, whose positions are
975 # relative to partition rather than disk beginnings.
976 #
977 # This function performs partprobe on the failover host to make it re-read the
978 # partition table.
979 #
980 refresh_partition_table() {
981         local facet=$1
982         local device=$2
983         local host
984
985         host=$(facet_passive_host $facet)
986         if [[ -n "$host" ]]; then
987                 do_node $host "$PARTPROBE $device"
988         fi
989 }
990
991 #
992 # Get ZFS storage pool name.
993 #
994 zpool_name() {
995         local facet=$1
996         local device
997         local poolname
998
999         device=$(facet_device $facet)
1000         # poolname is string before "/"
1001         poolname="${device%%/*}"
1002
1003         echo -n $poolname
1004 }
1005
1006 #
1007 # Create ZFS storage pool.
1008 #
1009 create_zpool() {
1010         local facet=$1
1011         local poolname=$2
1012         local vdev=$3
1013         shift 3
1014         local opts=${@:-"-o cachefile=none"}
1015
1016         do_facet $facet "$ZPOOL list -H $poolname >/dev/null 2>&1 ||
1017                 $ZPOOL create -f $opts $poolname $vdev"
1018 }
1019
1020 #
1021 # Create ZFS file system.
1022 #
1023 create_zfs() {
1024         local facet=$1
1025         local dataset=$2
1026         shift 2
1027         local opts=${@:-"-o mountpoint=legacy"}
1028
1029         do_facet $facet "$ZFS list -H $dataset >/dev/null 2>&1 ||
1030                 $ZFS create $opts $dataset"
1031 }
1032
1033 #
1034 # Export ZFS storage pool.
1035 # Before exporting the pool, all datasets within the pool should be unmounted.
1036 #
1037 export_zpool() {
1038         local facet=$1
1039         shift
1040         local opts="$@"
1041         local poolname
1042
1043         poolname=$(zpool_name $facet)
1044
1045         if [[ -n "$poolname" ]]; then
1046                 do_facet $facet "! $ZPOOL list -H $poolname >/dev/null 2>&1 ||
1047                         grep -q ^$poolname/ /proc/mounts ||
1048                         $ZPOOL export $opts $poolname"
1049         fi
1050 }
1051
1052 #
1053 # Destroy ZFS storage pool.
1054 # Destroy the given pool and free up any devices for other use. This command
1055 # tries to unmount any active datasets before destroying the pool.
1056 # -f    Force any active datasets contained within the pool to be unmounted.
1057 #
1058 destroy_zpool() {
1059         local facet=$1
1060         local poolname=${2:-$(zpool_name $facet)}
1061
1062         if [[ -n "$poolname" ]]; then
1063                 do_facet $facet "! $ZPOOL list -H $poolname >/dev/null 2>&1 ||
1064                         $ZPOOL destroy -f $poolname"
1065         fi
1066 }
1067
1068 #
1069 # Import ZFS storage pool.
1070 # Force importing, even if the pool appears to be potentially active.
1071 #
1072 import_zpool() {
1073         local facet=$1
1074         shift
1075         local opts=${@:-"-o cachefile=none"}
1076         local poolname
1077
1078         poolname=$(zpool_name $facet)
1079
1080         if [[ -n "$poolname" ]]; then
1081                 opts+=" -d $(dirname $(facet_vdevice $facet))"
1082                 do_facet $facet "$ZPOOL list -H $poolname >/dev/null 2>&1 ||
1083                         $ZPOOL import -f $opts $poolname"
1084         fi
1085 }
1086
1087 #
1088 # Set the "cachefile=none" property on ZFS storage pool so that the pool
1089 # is not automatically imported on system startup.
1090 #
1091 # In a failover environment, this will provide resource level fencing which
1092 # will ensure that the same ZFS storage pool will not be imported concurrently
1093 # on different nodes.
1094 #
1095 disable_zpool_cache() {
1096         local facet=$1
1097         local poolname
1098
1099         poolname=$(zpool_name $facet)
1100
1101         if [[ -n "$poolname" ]]; then
1102                 do_facet $facet "$ZPOOL set cachefile=none $poolname"
1103         fi
1104 }
1105
1106 #
1107 # This and set_osd_param() shall be used to access OSD parameters
1108 # once existed under "obdfilter":
1109 #
1110 #   mntdev
1111 #   stats
1112 #   read_cache_enable
1113 #   writethrough_cache_enable
1114 #
1115 get_osd_param() {
1116         local nodes=$1
1117         local device=${2:-$FSNAME-OST*}
1118         local name=$3
1119
1120         do_nodes $nodes "$LCTL get_param -n obdfilter.$device.$name \
1121                 osd-*.$device.$name 2>&1" | grep -v 'Found no match'
1122 }
1123
1124 set_osd_param() {
1125         local nodes=$1
1126         local device=${2:-$FSNAME-OST*}
1127         local name=$3
1128         local value=$4
1129
1130         do_nodes $nodes "$LCTL set_param -n obdfilter.$device.$name=$value \
1131                 osd-*.$device.$name=$value 2>&1" | grep -v 'Found no match'
1132 }
1133
1134 set_debug_size () {
1135     local dz=${1:-$DEBUG_SIZE}
1136
1137     if [ -f /sys/devices/system/cpu/possible ]; then
1138         local cpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/possible)+1))
1139     else
1140         local cpus=$(getconf _NPROCESSORS_CONF)
1141     fi
1142
1143     # bug 19944, adjust size to be -gt num_possible_cpus()
1144     # promise 2MB for every cpu at least
1145     if [ -n "$cpus" ] && [ $((cpus * 2)) -gt $dz ]; then
1146         dz=$((cpus * 2))
1147     fi
1148     lctl set_param debug_mb=$dz
1149 }
1150
1151 set_default_debug () {
1152     local debug=${1:-"$PTLDEBUG"}
1153     local subsys=${2:-"$SUBSYSTEM"}
1154     local debug_size=${3:-$DEBUG_SIZE}
1155
1156     [ -n "$debug" ] && lctl set_param debug="$debug" >/dev/null
1157     [ -n "$subsys" ] && lctl set_param subsystem_debug="${subsys# }" >/dev/null
1158
1159     [ -n "$debug_size" ] && set_debug_size $debug_size > /dev/null
1160 }
1161
1162 set_default_debug_nodes () {
1163         local nodes="$1"
1164
1165         if [[ ,$nodes, = *,$HOSTNAME,* ]]; then
1166                 nodes=$(exclude_items_from_list "$nodes" "$HOSTNAME")
1167                 set_default_debug
1168         fi
1169
1170         do_rpc_nodes "$nodes" set_default_debug \
1171                 \\\"$PTLDEBUG\\\" \\\"$SUBSYSTEM\\\" $DEBUG_SIZE || true
1172 }
1173
1174 set_default_debug_facet () {
1175     local facet=$1
1176     local node=$(facet_active_host $facet)
1177     [ -z "$node" ] && echo "No host defined for facet $facet" && exit 1
1178
1179     set_default_debug_nodes $node
1180 }
1181
1182 # Facet functions
1183 mount_facets () {
1184         local facets=${1:-$(get_facets)}
1185         local facet
1186
1187         for facet in ${facets//,/ }; do
1188                 mount_facet $facet
1189                 local RC=$?
1190                 [ $RC -eq 0 ] && continue
1191
1192                 if [ "$TESTSUITE.$TESTNAME" = "replay-dual.test_0a" ]; then
1193                         skip "Restart of $facet failed!." && touch $LU482_FAILED
1194                 else
1195                         error "Restart of $facet failed!"
1196                 fi
1197                 return $RC
1198         done
1199 }
1200
1201 #
1202 # Add argument "arg" (e.g., "loop") to the comma-separated list
1203 # of arguments for option "opt" (e.g., "-o") on command
1204 # line "opts" (e.g., "-o flock").
1205 #
1206 csa_add() {
1207         local opts=$1
1208         local opt=$2
1209         local arg=$3
1210         local opt_pattern="\([[:space:]]\+\|^\)$opt"
1211
1212         if echo "$opts" | grep -q $opt_pattern; then
1213                 opts=$(echo "$opts" | sed -e \
1214                         "s/$opt_pattern[[:space:]]*[^[:space:]]\+/&,$arg/")
1215         else
1216                 opts+="${opts:+ }$opt $arg"
1217         fi
1218         echo -n "$opts"
1219 }
1220
1221 mount_facet() {
1222         local facet=$1
1223         shift
1224         local dev=$(facet_active $facet)_dev
1225         local opt=${facet}_opt
1226         local mntpt=$(facet_mntpt $facet)
1227         local opts="${!opt} $@"
1228
1229         if [ $(facet_fstype $facet) == ldiskfs ] &&
1230            ! do_facet $facet test -b ${!dev}; then
1231                 opts=$(csa_add "$opts" -o loop)
1232         fi
1233
1234         if [[ $(facet_fstype $facet) == zfs ]]; then
1235                 # import ZFS storage pool
1236                 import_zpool $facet || return ${PIPESTATUS[0]}
1237         fi
1238
1239         echo "Starting ${facet}: $opts ${!dev} $mntpt"
1240         # for testing LU-482 error handling in mount_facets() and test_0a()
1241         if [ -f $TMP/test-lu482-trigger ]; then
1242                 RC=2
1243         else
1244                 do_facet ${facet} "mkdir -p $mntpt; $MOUNT_CMD $opts \
1245                                    ${!dev} $mntpt"
1246                 RC=${PIPESTATUS[0]}
1247         fi
1248
1249         if [ $RC -ne 0 ]; then
1250                 echo "Start of ${!dev} on ${facet} failed ${RC}"
1251                 return $RC
1252         fi
1253
1254         set_default_debug_facet $facet
1255
1256         if [[ $facet == mds* ]]; then
1257                 do_facet $facet \
1258                 lctl set_param -n mdt.${FSNAME}*.enable_remote_dir=1 2>/dev/null
1259         fi
1260
1261         if [[ $opts =~ .*nosvc.* ]]; then
1262                 echo "Start ${!dev} without service"
1263         else
1264                 local fstype=$(facet_fstype $facet)
1265
1266                 case $fstype in
1267                 ldiskfs)
1268                         wait_update_facet ${facet} "$E2LABEL ${!dev} \
1269                                 2>/dev/null | grep -E ':[a-zA-Z]{3}[0-9]{4}'" \
1270                                 "" || error "${!dev} failed to initialize!";;
1271                 zfs)
1272                         wait_update_facet ${facet} "$ZFS get -H -o value \
1273                                 lustre:svname ${!dev} 2>/dev/null | \
1274                                 grep -E ':[a-zA-Z]{3}[0-9]{4}'" "" ||
1275                                 error "${!dev} failed to initialize!";;
1276
1277                 *)
1278                         error "unknown fstype!";;
1279                 esac
1280         fi
1281
1282         label=$(devicelabel ${facet} ${!dev})
1283         [ -z "$label" ] && echo no label for ${!dev} && exit 1
1284         eval export ${facet}_svc=${label}
1285         echo Started ${label}
1286
1287         return $RC
1288 }
1289
1290 # start facet device options
1291 start() {
1292     local facet=$1
1293     shift
1294     local device=$1
1295     shift
1296     eval export ${facet}_dev=${device}
1297     eval export ${facet}_opt=\"$@\"
1298
1299     local varname=${facet}failover_dev
1300     if [ -n "${!varname}" ] ; then
1301         eval export ${facet}failover_dev=${!varname}
1302     else
1303         eval export ${facet}failover_dev=$device
1304     fi
1305
1306         local mntpt=$(facet_mntpt $facet)
1307         do_facet ${facet} mkdir -p $mntpt
1308         eval export ${facet}_MOUNT=$mntpt
1309         mount_facet ${facet}
1310         RC=$?
1311
1312         if [[ $facet == mds* ]]; then
1313                 do_facet $facet \
1314                         lctl set_param -n mdt.${FSNAME}*.enable_remote_dir=1 \
1315                                 2>/dev/null
1316         fi
1317
1318         return $RC
1319 }
1320
1321 stop() {
1322     local running
1323     local facet=$1
1324     shift
1325     local HOST=`facet_active_host $facet`
1326     [ -z $HOST ] && echo stop: no host for $facet && return 0
1327
1328     local mntpt=$(facet_mntpt $facet)
1329     running=$(do_facet ${facet} "grep -c $mntpt' ' /proc/mounts") || true
1330     if [ ${running} -ne 0 ]; then
1331         echo "Stopping $mntpt (opts:$@) on $HOST"
1332         do_facet ${facet} $UMOUNT $@ $mntpt
1333     fi
1334
1335         # umount should block, but we should wait for unrelated obd's
1336         # like the MGS or MGC to also stop.
1337         wait_exit_ST ${facet} || return ${PIPESTATUS[0]}
1338
1339         if [[ $(facet_fstype $facet) == zfs ]]; then
1340                 # export ZFS storage pool
1341                 export_zpool $facet
1342         fi
1343 }
1344
1345 # save quota version (both administrative and operational quotas)
1346 # add an additional parameter if mountpoint is ever different from $MOUNT
1347 #
1348 # XXX This function is kept for interoperability with old server (< 2.3.50),
1349 #     it should be removed whenever we drop the interoperability for such
1350 #     server.
1351 quota_save_version() {
1352     local fsname=${2:-$FSNAME}
1353     local spec=$1
1354     local ver=$(tr -c -d "123" <<< $spec)
1355     local type=$(tr -c -d "ug" <<< $spec)
1356
1357     [ -n "$ver" -a "$ver" != "3" ] && error "wrong quota version specifier"
1358
1359     [ -n "$type" ] && { $LFS quotacheck -$type $MOUNT || error "quotacheck has failed"; }
1360
1361     do_facet mgs "lctl conf_param ${fsname}-MDT*.mdd.quota_type=$spec"
1362     local varsvc
1363     local osts=$(get_facets OST)
1364     for ost in ${osts//,/ }; do
1365         varsvc=${ost}_svc
1366         do_facet mgs "lctl conf_param ${!varsvc}.ost.quota_type=$spec"
1367     done
1368 }
1369
1370 # client could mount several lustre
1371 #
1372 # XXX This function is kept for interoperability with old server (< 2.3.50),
1373 #     it should be removed whenever we drop the interoperability for such
1374 #     server.
1375 quota_type() {
1376         local fsname=${1:-$FSNAME}
1377         local rc=0
1378         do_facet $SINGLEMDS lctl get_param mdd.${fsname}-MDT*.quota_type ||
1379                 rc=$?
1380         do_nodes $(comma_list $(osts_nodes)) \
1381                 lctl get_param obdfilter.${fsname}-OST*.quota_type || rc=$?
1382         return $rc
1383 }
1384
1385 # XXX This function is kept for interoperability with old server (< 2.3.50),
1386 #     it should be removed whenever we drop the interoperability for such
1387 #     server.
1388 restore_quota_old() {
1389         local mntpt=${1:-$MOUNT}
1390         local quota_type=$(quota_type $FSNAME | grep MDT | cut -d "=" -f2)
1391         if [ ! "$old_QUOTA_TYPE" ] ||
1392                 [ "$quota_type" = "$old_QUOTA_TYPE" ]; then
1393                 return
1394         fi
1395         quota_save_version $old_QUOTA_TYPE
1396 }
1397
1398 # XXX This function is kept for interoperability with old server (< 2.3.50),
1399 #     it should be removed whenever we drop the interoperability for such
1400 #     server.
1401 setup_quota_old(){
1402         local mntpt=$1
1403
1404         # no quota enforcement for now and accounting works out of the box
1405         return
1406
1407     # We need save the original quota_type params, and restore them after testing
1408
1409     # Suppose that quota type the same on mds and ost
1410     local quota_type=$(quota_type | grep MDT | cut -d "=" -f2)
1411     [ ${PIPESTATUS[0]} -eq 0 ] || error "quota_type failed!"
1412     echo "[HOST:$HOSTNAME] [old_quota_type:$quota_type] [new_quota_type:$QUOTA_TYPE]"
1413     if [ "$quota_type" != "$QUOTA_TYPE" ]; then
1414         export old_QUOTA_TYPE=$quota_type
1415         quota_save_version $QUOTA_TYPE
1416     else
1417         qtype=$(tr -c -d "ug" <<< $QUOTA_TYPE)
1418         $LFS quotacheck -$qtype $mntpt || error "quotacheck has failed for $type"
1419     fi
1420
1421     local quota_usrs=$QUOTA_USERS
1422
1423     # get_filesystem_size
1424     local disksz=$(lfs_df $mntpt | grep "summary"  | awk '{print $2}')
1425     local blk_soft=$((disksz + 1024))
1426     local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1427
1428     local Inodes=$(lfs_df -i $mntpt | grep "summary"  | awk '{print $2}')
1429     local i_soft=$Inodes
1430     local i_hard=$((i_soft + i_soft / 20))
1431
1432     echo "Total disk size: $disksz  block-softlimit: $blk_soft block-hardlimit:
1433         $blk_hard inode-softlimit: $i_soft inode-hardlimit: $i_hard"
1434
1435     local cmd
1436     for usr in $quota_usrs; do
1437         echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1438         for type in u g; do
1439             cmd="$LFS setquota -$type $usr -b $blk_soft -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1440             echo "+ $cmd"
1441             eval $cmd || error "$cmd FAILED!"
1442         done
1443         # display the quota status
1444         echo "Quota settings for $usr : "
1445         $LFS quota -v -u $usr $mntpt || true
1446     done
1447 }
1448
1449 # get mdt quota type
1450 mdt_quota_type() {
1451         local varsvc=${SINGLEMDS}_svc
1452         do_facet $SINGLEMDS $LCTL get_param -n \
1453                 osd-$(facet_fstype $SINGLEMDS).${!varsvc}.quota_slave.enabled
1454 }
1455
1456 # get ost quota type
1457 ost_quota_type() {
1458         # All OSTs should have same quota type
1459         local varsvc=ost1_svc
1460         do_facet ost1 $LCTL get_param -n \
1461                 osd-$(facet_fstype ost1).${!varsvc}.quota_slave.enabled
1462 }
1463
1464 # restore old quota type settings
1465 restore_quota() {
1466         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1467                 restore_quota_old
1468                 return
1469         fi
1470
1471         if [ "$old_MDT_QUOTA_TYPE" ]; then
1472                 do_facet mgs $LCTL conf_param \
1473                         $FSNAME.quota.mdt=$old_MDT_QUOTA_TYPE
1474         fi
1475         if [ "$old_OST_QUOTA_TYPE" ]; then
1476                 do_facet mgs $LCTL conf_param \
1477                         $FSNAME.quota.ost=$old_OST_QUOTA_TYPE
1478         fi
1479 }
1480
1481 # Handle the case when there is a space in the lfs df
1482 # "filesystem summary" line the same as when there is no space.
1483 # This will allow fixing the "lfs df" summary line in the future.
1484 lfs_df() {
1485         $LFS df $* | sed -e 's/filesystem /filesystem_/'
1486 }
1487
1488 # Get free inodes on the MDT specified by mdt index, free indoes on
1489 # the whole filesystem will be returned when index == -1.
1490 mdt_free_inodes() {
1491         local index=$1
1492         local free_inodes
1493         local mdt_uuid
1494
1495         if [ $index -eq -1 ]; then
1496                 mdt_uuid="summary"
1497         else
1498                 mdt_uuid=$(mdtuuid_from_index $index)
1499         fi
1500
1501         free_inodes=$(lfs_df -i $MOUNT | grep $mdt_uuid | awk '{print $4}')
1502         echo $free_inodes
1503 }
1504
1505 setup_quota(){
1506         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1507                 setup_quota_old $1
1508                 return
1509         fi
1510
1511         local mntpt=$1
1512
1513         # save old quota type & set new quota type
1514         local mdt_qtype=$(mdt_quota_type)
1515         local ost_qtype=$(ost_quota_type)
1516
1517         echo "[HOST:$HOSTNAME] [old_mdt_qtype:$mdt_qtype]" \
1518                 "[old_ost_qtype:$ost_qtype] [new_qtype:$QUOTA_TYPE]"
1519
1520         export old_MDT_QUOTA_TYPE=$mdt_qtype
1521         export old_OST_QUOTA_TYPE=$ost_qtype
1522
1523         do_facet mgs $LCTL conf_param $FSNAME.quota.mdt=$QUOTA_TYPE ||
1524                 error "set mdt quota type failed"
1525         do_facet mgs $LCTL conf_param $FSNAME.quota.ost=$QUOTA_TYPE ||
1526                 error "set ost quota type failed"
1527
1528         local quota_usrs=$QUOTA_USERS
1529
1530         # get_filesystem_size
1531         local disksz=$(lfs_df $mntpt | grep "summary" | awk '{print $2}')
1532         local blk_soft=$((disksz + 1024))
1533         local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1534
1535         local inodes=$(lfs_df -i $mntpt | grep "summary" | awk '{print $2}')
1536         local i_soft=$inodes
1537         local i_hard=$((i_soft + i_soft / 20))
1538
1539         echo "Total disk size: $disksz  block-softlimit: $blk_soft" \
1540                 "block-hardlimit: $blk_hard inode-softlimit: $i_soft" \
1541                 "inode-hardlimit: $i_hard"
1542
1543         local cmd
1544         for usr in $quota_usrs; do
1545                 echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1546                 for type in u g; do
1547                         cmd="$LFS setquota -$type $usr -b $blk_soft"
1548                         cmd="$cmd -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1549                         echo "+ $cmd"
1550                         eval $cmd || error "$cmd FAILED!"
1551                 done
1552                 # display the quota status
1553                 echo "Quota settings for $usr : "
1554                 $LFS quota -v -u $usr $mntpt || true
1555         done
1556 }
1557
1558 zconf_mount() {
1559     local client=$1
1560     local mnt=$2
1561     local opts=${3:-$MOUNT_OPTS}
1562     opts=${opts:+-o $opts}
1563     local flags=${4:-$MOUNT_FLAGS}
1564
1565     local device=$MGSNID:/$FSNAME
1566     if [ -z "$mnt" -o -z "$FSNAME" ]; then
1567         echo Bad zconf mount command: opt=$flags $opts dev=$device mnt=$mnt
1568         exit 1
1569     fi
1570
1571     echo "Starting client: $client: $flags $opts $device $mnt"
1572     do_node $client mkdir -p $mnt
1573     do_node $client $MOUNT_CMD $flags $opts $device $mnt || return 1
1574
1575     set_default_debug_nodes $client
1576
1577     return 0
1578 }
1579
1580 zconf_umount() {
1581     local client=$1
1582     local mnt=$2
1583     local force
1584     local busy 
1585     local need_kill
1586
1587     [ "$3" ] && force=-f
1588     local running=$(do_node $client "grep -c $mnt' ' /proc/mounts") || true
1589     if [ $running -ne 0 ]; then
1590         echo "Stopping client $client $mnt (opts:$force)"
1591         do_node $client lsof -t $mnt || need_kill=no
1592         if [ "x$force" != "x" -a "x$need_kill" != "xno" ]; then
1593             pids=$(do_node $client lsof -t $mnt | sort -u);
1594             if [ -n $pids ]; then
1595                 do_node $client kill -9 $pids || true
1596             fi
1597         fi
1598
1599         busy=$(do_node $client "umount $force $mnt 2>&1" | grep -c "busy") || true
1600         if [ $busy -ne 0 ] ; then
1601             echo "$mnt is still busy, wait one second" && sleep 1
1602             do_node $client umount $force $mnt
1603         fi
1604     fi
1605 }
1606
1607 # nodes is comma list
1608 sanity_mount_check_nodes () {
1609     local nodes=$1
1610     shift
1611     local mnts="$@"
1612     local mnt
1613
1614     # FIXME: assume that all cluster nodes run the same os
1615     [ "$(uname)" = Linux ] || return 0
1616
1617     local rc=0
1618     for mnt in $mnts ; do
1619         do_nodes $nodes "running=\\\$(grep -c $mnt' ' /proc/mounts);
1620 mpts=\\\$(mount | grep -c $mnt' ');
1621 if [ \\\$running -ne \\\$mpts ]; then
1622     echo \\\$(hostname) env are INSANE!;
1623     exit 1;
1624 fi"
1625     [ $? -eq 0 ] || rc=1 
1626     done
1627     return $rc
1628 }
1629
1630 sanity_mount_check_servers () {
1631     [ "$CLIENTONLY" ] && 
1632         { echo "CLIENTONLY mode, skip mount_check_servers"; return 0; } || true
1633     echo Checking servers environments
1634
1635     # FIXME: modify get_facets to display all facets wo params
1636     local facets="$(get_facets OST),$(get_facets MDS),mgs"
1637     local node
1638     local mntpt
1639     local facet
1640     for facet in ${facets//,/ }; do
1641         node=$(facet_host ${facet})
1642         mntpt=$(facet_mntpt $facet)
1643         sanity_mount_check_nodes $node $mntpt ||
1644             { error "server $node environments are insane!"; return 1; }
1645     done
1646 }
1647
1648 sanity_mount_check_clients () {
1649     local clients=${1:-$CLIENTS}
1650     local mntpt=${2:-$MOUNT}
1651     local mntpt2=${3:-$MOUNT2}
1652
1653     [ -z $clients ] && clients=$(hostname)
1654     echo Checking clients $clients environments
1655
1656     sanity_mount_check_nodes $clients $mntpt $mntpt2 ||
1657        error "clients environments are insane!"
1658 }
1659
1660 sanity_mount_check () {
1661     sanity_mount_check_servers || return 1
1662     sanity_mount_check_clients || return 2
1663 }
1664
1665 # mount clients if not mouted
1666 zconf_mount_clients() {
1667     local clients=$1
1668     local mnt=$2
1669     local opts=${3:-$MOUNT_OPTS}
1670     opts=${opts:+-o $opts}
1671     local flags=${4:-$MOUNT_FLAGS}
1672
1673     local device=$MGSNID:/$FSNAME
1674     if [ -z "$mnt" -o -z "$FSNAME" ]; then
1675         echo Bad zconf mount command: opt=$flags $opts dev=$device mnt=$mnt
1676         exit 1
1677     fi
1678
1679     echo "Starting client $clients: $flags $opts $device $mnt"
1680
1681     do_nodes $clients "
1682 running=\\\$(mount | grep -c $mnt' ');
1683 rc=0;
1684 if [ \\\$running -eq 0 ] ; then
1685     mkdir -p $mnt;
1686     $MOUNT_CMD $flags $opts $device $mnt;
1687     rc=\\\$?;
1688 fi;
1689 exit \\\$rc" || return ${PIPESTATUS[0]}
1690
1691     echo "Started clients $clients: "
1692     do_nodes $clients "mount | grep $mnt' '"
1693
1694     set_default_debug_nodes $clients
1695
1696     return 0
1697 }
1698
1699 zconf_umount_clients() {
1700     local clients=$1
1701     local mnt=$2
1702     local force
1703
1704     [ "$3" ] && force=-f
1705
1706     echo "Stopping clients: $clients $mnt (opts:$force)"
1707     do_nodes $clients "running=\\\$(grep -c $mnt' ' /proc/mounts);
1708 if [ \\\$running -ne 0 ] ; then
1709 echo Stopping client \\\$(hostname) $mnt opts:$force;
1710 lsof $mnt || need_kill=no;
1711 if [ "x$force" != "x" -a "x\\\$need_kill" != "xno" ]; then
1712     pids=\\\$(lsof -t $mnt | sort -u);
1713     if [ -n \\\"\\\$pids\\\" ]; then
1714              kill -9 \\\$pids;
1715     fi
1716 fi;
1717 while umount $force $mnt 2>&1 | grep -q "busy"; do
1718     echo "$mnt is still busy, wait one second" && sleep 1;
1719 done;
1720 fi"
1721 }
1722
1723 shutdown_node () {
1724     local node=$1
1725     echo + $POWER_DOWN $node
1726     $POWER_DOWN $node
1727 }
1728
1729 shutdown_node_hard () {
1730     local host=$1
1731     local attempts=$SHUTDOWN_ATTEMPTS
1732
1733     for i in $(seq $attempts) ; do
1734         shutdown_node $host
1735         sleep 1
1736         wait_for_function --quiet "! ping -w 3 -c 1 $host" 5 1 && return 0
1737         echo "waiting for $host to fail attempts=$attempts"
1738         [ $i -lt $attempts ] || \
1739             { echo "$host still pingable after power down! attempts=$attempts" && return 1; } 
1740     done
1741 }
1742
1743 shutdown_client() {
1744     local client=$1
1745     local mnt=${2:-$MOUNT}
1746     local attempts=3
1747
1748     if [ "$FAILURE_MODE" = HARD ]; then
1749         shutdown_node_hard $client
1750     else
1751        zconf_umount_clients $client $mnt -f
1752     fi
1753 }
1754
1755 facets_on_host () {
1756     local host=$1
1757     local facets="$(get_facets OST),$(get_facets MDS)"
1758     local affected
1759
1760     combined_mgs_mds || facets="$facets,mgs"
1761
1762     for facet in ${facets//,/ }; do
1763         if [ $(facet_active_host $facet) == $host ]; then
1764            affected="$affected $facet"
1765         fi
1766     done
1767
1768     echo $(comma_list $affected)
1769 }
1770
1771 facet_up() {
1772         local facet=$1
1773         local host=${2:-$(facet_host $facet)}
1774
1775         local label=$(convert_facet2label $facet)
1776         do_node $host $LCTL dl | awk '{ print $4 }' | grep -q "^$label\$"
1777 }
1778
1779 facets_up_on_host () {
1780     local host=$1
1781     local facets=$(facets_on_host $host)
1782     local affected_up
1783
1784     for facet in ${facets//,/ }; do
1785         if $(facet_up $facet $host); then
1786             affected_up="$affected_up $facet"
1787         fi
1788     done
1789
1790     echo $(comma_list $affected_up)
1791 }
1792
1793 shutdown_facet() {
1794     local facet=$1
1795
1796     if [ "$FAILURE_MODE" = HARD ]; then
1797         shutdown_node_hard $(facet_active_host $facet)
1798     else
1799         stop $facet
1800     fi
1801 }
1802
1803 reboot_node() {
1804     local node=$1
1805     echo + $POWER_UP $node
1806     $POWER_UP $node
1807 }
1808
1809 remount_facet() {
1810     local facet=$1
1811
1812     stop $facet
1813     mount_facet $facet
1814 }
1815
1816 reboot_facet() {
1817         local facet=$1
1818         if [ "$FAILURE_MODE" = HARD ]; then
1819                 reboot_node $(facet_active_host $facet)
1820         else
1821                 sleep 10
1822         fi
1823 }
1824
1825 boot_node() {
1826     local node=$1
1827     if [ "$FAILURE_MODE" = HARD ]; then
1828        reboot_node $node
1829        wait_for_host $node
1830     fi
1831 }
1832
1833 facets_hosts () {
1834     local facets=$1
1835     local hosts
1836
1837     for facet in ${facets//,/ }; do
1838         hosts=$(expand_list $hosts $(facet_host $facet) )
1839     done
1840
1841     echo $hosts
1842 }
1843
1844 _check_progs_installed () {
1845     local progs=$@
1846     local rc=0
1847
1848     for prog in $progs; do
1849         if ! [ "$(which $prog)"  -o  "${!prog}" ]; then
1850            echo $prog missing on $(hostname)
1851            rc=1
1852         fi
1853     done
1854     return $rc
1855 }
1856
1857 check_progs_installed () {
1858         local nodes=$1
1859         shift
1860
1861         do_rpc_nodes "$nodes" _check_progs_installed $@
1862 }
1863
1864 # recovery-scale functions
1865 node_var_name() {
1866     echo __$(echo $1 | tr '-' '_' | tr '.' '_')
1867 }
1868
1869 start_client_load() {
1870     local client=$1
1871     local load=$2
1872     local var=$(node_var_name $client)_load
1873     eval export ${var}=$load
1874
1875     do_node $client "PATH=$PATH MOUNT=$MOUNT ERRORS_OK=$ERRORS_OK \
1876 BREAK_ON_ERROR=$BREAK_ON_ERROR \
1877 END_RUN_FILE=$END_RUN_FILE \
1878 LOAD_PID_FILE=$LOAD_PID_FILE \
1879 TESTLOG_PREFIX=$TESTLOG_PREFIX \
1880 TESTNAME=$TESTNAME \
1881 DBENCH_LIB=$DBENCH_LIB \
1882 DBENCH_SRC=$DBENCH_SRC \
1883 CLIENT_COUNT=$((CLIENTCOUNT - 1)) \
1884 LFS=$LFS \
1885 run_${load}.sh" &
1886     local ppid=$!
1887     log "Started client load: ${load} on $client"
1888
1889     # get the children process IDs
1890     local pids=$(ps --ppid $ppid -o pid= | xargs)
1891     CLIENT_LOAD_PIDS="$CLIENT_LOAD_PIDS $ppid $pids"
1892     return 0
1893 }
1894
1895 start_client_loads () {
1896     local -a clients=(${1//,/ })
1897     local numloads=${#CLIENT_LOADS[@]}
1898     local testnum
1899
1900     for ((nodenum=0; nodenum < ${#clients[@]}; nodenum++ )); do
1901         testnum=$((nodenum % numloads))
1902         start_client_load ${clients[nodenum]} ${CLIENT_LOADS[testnum]}
1903     done
1904     # bug 22169: wait the background threads to start
1905     sleep 2
1906 }
1907
1908 # only for remote client
1909 check_client_load () {
1910     local client=$1
1911     local var=$(node_var_name $client)_load
1912     local TESTLOAD=run_${!var}.sh
1913
1914     ps auxww | grep -v grep | grep $client | grep -q "$TESTLOAD" || return 1
1915
1916     # bug 18914: try to connect several times not only when
1917     # check ps, but  while check_catastrophe also
1918     local tries=3
1919     local RC=254
1920     while [ $RC = 254 -a $tries -gt 0 ]; do
1921         let tries=$tries-1
1922         # assume success
1923         RC=0
1924         if ! check_catastrophe $client; then
1925             RC=${PIPESTATUS[0]}
1926             if [ $RC -eq 254 ]; then
1927                 # FIXME: not sure how long we shuold sleep here
1928                 sleep 10
1929                 continue
1930             fi
1931             echo "check catastrophe failed: RC=$RC "
1932             return $RC
1933         fi
1934     done
1935     # We can continue try to connect if RC=254
1936     # Just print the warning about this
1937     if [ $RC = 254 ]; then
1938         echo "got a return status of $RC from do_node while checking catastrophe on $client"
1939     fi
1940
1941     # see if the load is still on the client
1942     tries=3
1943     RC=254
1944     while [ $RC = 254 -a $tries -gt 0 ]; do
1945         let tries=$tries-1
1946         # assume success
1947         RC=0
1948         if ! do_node $client "ps auxwww | grep -v grep | grep -q $TESTLOAD"; then
1949             RC=${PIPESTATUS[0]}
1950             sleep 30
1951         fi
1952     done
1953     if [ $RC = 254 ]; then
1954         echo "got a return status of $RC from do_node while checking (catastrophe and 'ps') the client load on $client"
1955         # see if we can diagnose a bit why this is
1956     fi
1957
1958     return $RC
1959 }
1960 check_client_loads () {
1961    local clients=${1//,/ }
1962    local client=
1963    local rc=0
1964
1965    for client in $clients; do
1966       check_client_load $client
1967       rc=${PIPESTATUS[0]}
1968       if [ "$rc" != 0 ]; then
1969         log "Client load failed on node $client, rc=$rc"
1970         return $rc
1971       fi
1972    done
1973 }
1974
1975 restart_client_loads () {
1976     local clients=${1//,/ }
1977     local expectedfail=${2:-""}
1978     local client=
1979     local rc=0
1980
1981     for client in $clients; do
1982         check_client_load $client
1983         rc=${PIPESTATUS[0]}
1984         if [ "$rc" != 0 -a "$expectedfail" ]; then
1985             local var=$(node_var_name $client)_load
1986             start_client_load $client ${!var}
1987             echo "Restarted client load ${!var}: on $client. Checking ..."
1988             check_client_load $client
1989             rc=${PIPESTATUS[0]}
1990             if [ "$rc" != 0 ]; then
1991                 log "Client load failed to restart on node $client, rc=$rc"
1992                 # failure one client load means test fail
1993                 # we do not need to check other
1994                 return $rc
1995             fi
1996         else
1997             return $rc
1998         fi
1999     done
2000 }
2001
2002 # Start vmstat and save its process ID in a file.
2003 start_vmstat() {
2004     local nodes=$1
2005     local pid_file=$2
2006
2007     [ -z "$nodes" -o -z "$pid_file" ] && return 0
2008
2009     do_nodes $nodes \
2010         "vmstat 1 > $TESTLOG_PREFIX.$TESTNAME.vmstat.\\\$(hostname -s).log \
2011         2>/dev/null </dev/null & echo \\\$! > $pid_file"
2012 }
2013
2014 # Display the nodes on which client loads failed.
2015 print_end_run_file() {
2016     local file=$1
2017     local node
2018
2019     [ -s $file ] || return 0
2020
2021     echo "Found the END_RUN_FILE file: $file"
2022     cat $file
2023
2024     # A client load will stop if it finds the END_RUN_FILE file.
2025     # That does not mean the client load actually failed though.
2026     # The first node in END_RUN_FILE is the one we are interested in.
2027     read node < $file
2028
2029     if [ -n "$node" ]; then
2030         local var=$(node_var_name $node)_load
2031
2032         local prefix=$TESTLOG_PREFIX
2033         [ -n "$TESTNAME" ] && prefix=$prefix.$TESTNAME
2034         local stdout_log=$prefix.run_${!var}_stdout.$node.log
2035         local debug_log=$(echo $stdout_log | sed 's/\(.*\)stdout/\1debug/')
2036
2037         echo "Client load ${!var} failed on node $node:"
2038         echo "$stdout_log"
2039         echo "$debug_log"
2040     fi
2041 }
2042
2043 # Stop the process which had its PID saved in a file.
2044 stop_process() {
2045     local nodes=$1
2046     local pid_file=$2
2047
2048     [ -z "$nodes" -o -z "$pid_file" ] && return 0
2049
2050     do_nodes $nodes "test -f $pid_file &&
2051         { kill -s TERM \\\$(cat $pid_file); rm -f $pid_file; }" || true
2052 }
2053
2054 # Stop all client loads.
2055 stop_client_loads() {
2056     local nodes=${1:-$CLIENTS}
2057     local pid_file=$2
2058
2059     # stop the client loads
2060     stop_process $nodes $pid_file
2061
2062     # clean up the processes that started them
2063     [ -n "$CLIENT_LOAD_PIDS" ] && kill -9 $CLIENT_LOAD_PIDS 2>/dev/null || true
2064 }
2065 # End recovery-scale functions
2066
2067 # verify that lustre actually cleaned up properly
2068 cleanup_check() {
2069         VAR=$(lctl get_param -n catastrophe 2>&1)
2070         if [ $? = 0 ] ; then
2071                 if [ $VAR != 0 ]; then
2072                         error "LBUG/LASSERT detected"
2073                 fi
2074         fi
2075         BUSY=$(dmesg | grep -i destruct || true)
2076         if [ -n "$BUSY" ]; then
2077                 echo "$BUSY" 1>&2
2078                 [ -e $TMP/debug ] && mv $TMP/debug $TMP/debug-busy.$(date +%s)
2079                 exit 205
2080         fi
2081
2082         check_mem_leak || exit 204
2083
2084         [[ $($LCTL dl 2>/dev/null | wc -l) -gt 0 ]] && $LCTL dl &&
2085                 echo "$TESTSUITE: lustre didn't clean up..." 1>&2 &&
2086                 return 202 || true
2087
2088         if module_loaded lnet || module_loaded libcfs; then
2089                 echo "$TESTSUITE: modules still loaded..." 1>&2
2090                 /sbin/lsmod 1>&2
2091                 return 203
2092         fi
2093         return 0
2094 }
2095
2096 wait_update () {
2097         local verbose=false
2098         if [[ "$1" == "--verbose" ]]; then
2099                 shift
2100                 verbose=true
2101         fi
2102
2103         local node=$1
2104         local TEST=$2
2105         local FINAL=$3
2106         local MAX=${4:-90}
2107         local RESULT
2108         local PREV_RESULT
2109         local WAIT=0
2110         local sleep=1
2111         local print=10
2112
2113         PREV_RESULT=$(do_node $node "$TEST")
2114         while [ true ]; do
2115                 RESULT=$(do_node $node "$TEST")
2116                 if [[ "$RESULT" == "$FINAL" ]]; then
2117                         [[ -z "$RESULT" || $WAIT -le $sleep ]] ||
2118                                 echo "Updated after ${WAIT}s: wanted '$FINAL'"\
2119                                      "got '$RESULT'"
2120                         return 0
2121                 fi
2122                 if [[ $verbose && "$RESULT" != "$PREV_RESULT" ]]; then
2123                         echo "Changed after ${WAIT}s: from '$PREV_RESULT'"\
2124                              "to '$RESULT'"
2125                         PREV_RESULT=$RESULT
2126                 fi
2127                 [[ $WAIT -ge $MAX ]] && break
2128                 [[ $((WAIT % print)) -eq 0 ]] &&
2129                         echo "Waiting $((MAX - WAIT)) secs for update"
2130                 WAIT=$((WAIT + sleep))
2131                 sleep $sleep
2132         done
2133         echo "Update not seen after ${MAX}s: wanted '$FINAL' got '$RESULT'"
2134         return 3
2135 }
2136
2137 wait_update_facet() {
2138         local facet=$1
2139         shift
2140         wait_update $(facet_active_host $facet) "$@"
2141 }
2142
2143 sync_all_data() {
2144         do_nodes $(comma_list $(mdts_nodes)) \
2145             "lctl set_param -n osd*.*MDT*.force_sync 1"
2146         do_nodes $(comma_list $(osts_nodes)) \
2147             "lctl set_param -n osd*.*OS*.force_sync 1" 2>&1 |
2148                 grep -v 'Found no match'
2149 }
2150
2151 wait_delete_completed_mds() {
2152         local MAX_WAIT=${1:-20}
2153         # for ZFS, waiting more time for DMUs to be committed
2154         local ZFS_WAIT=${2:-5}
2155         local mds2sync=""
2156         local stime=$(date +%s)
2157         local etime
2158         local node
2159         local changes
2160
2161         # find MDS with pending deletions
2162         for node in $(mdts_nodes); do
2163                 changes=$(do_node $node "$LCTL get_param -n osc.*MDT*.sync_*" \
2164                         2>/dev/null | calc_sum)
2165                 if [[ $changes -eq 0 ]]; then
2166                         continue
2167                 fi
2168                 mds2sync="$mds2sync $node"
2169         done
2170         if [ -z "$mds2sync" ]; then
2171                 return
2172         fi
2173         mds2sync=$(comma_list $mds2sync)
2174
2175         # sync MDS transactions
2176         do_nodes $mds2sync "$LCTL set_param -n osd*.*MD*.force_sync 1"
2177
2178         # wait till all changes are sent and commmitted by OSTs
2179         # for ldiskfs space is released upon execution, but DMU
2180         # do this upon commit
2181
2182         local WAIT=0
2183         while [[ $WAIT -ne $MAX_WAIT ]]; do
2184                 changes=$(do_nodes $mds2sync \
2185                         "$LCTL get_param -n osc.*MDT*.sync_*" | calc_sum)
2186                 #echo "$node: $changes changes on all"
2187                 if [[ $changes -eq 0 ]]; then
2188                         etime=$(date +%s)
2189                         #echo "delete took $((etime - stime)) seconds"
2190
2191                         # the occupied disk space will be released
2192                         # only after DMUs are committed
2193                         if [[ $(facet_fstype $SINGLEMDS) == zfs ]]; then
2194                                 echo "sleep $ZFS_WAIT for ZFS OSD"
2195                                 sleep $ZFS_WAIT
2196                         fi
2197
2198                         return
2199                 fi
2200                 sleep 1
2201                 WAIT=$(( WAIT + 1))
2202         done
2203
2204         etime=$(date +%s)
2205         echo "Delete is not completed in $((etime - stime)) seconds"
2206         do_nodes $mds2sync "$LCTL get_param osc.*MDT*.sync_*"
2207 }
2208
2209 wait_for_host() {
2210     local hostlist=$1
2211
2212     # we can use "for" here because we are waiting the slowest
2213     for host in ${hostlist//,/ }; do
2214         check_network "$host" 900
2215     done
2216     while ! do_nodes $hostlist hostname  > /dev/null; do sleep 5; done
2217 }
2218
2219 wait_for_facet() {
2220     local facetlist=$1
2221     local hostlist
2222
2223     for facet in ${facetlist//,/ }; do
2224         hostlist=$(expand_list $hostlist $(facet_active_host $facet))
2225     done
2226     wait_for_host $hostlist
2227 }
2228
2229 _wait_recovery_complete () {
2230     local param=$1
2231
2232     # Use default policy if $2 is not passed by caller.
2233     local MAX=${2:-$(max_recovery_time)}
2234
2235     local WAIT=0
2236     local STATUS=
2237
2238     while [ $WAIT -lt $MAX ]; do
2239         STATUS=$(lctl get_param -n $param | grep status)
2240         echo $param $STATUS
2241         [[ $STATUS = "status: COMPLETE" || $STATUS = "status: INACTIVE" ]] && return 0
2242         sleep 5
2243         WAIT=$((WAIT + 5))
2244         echo "Waiting $((MAX - WAIT)) secs for $param recovery done. $STATUS"
2245     done
2246     echo "$param recovery not done in $MAX sec. $STATUS"
2247     return 1
2248 }
2249
2250 wait_recovery_complete () {
2251     local facet=$1
2252
2253     # with an assumption that at_max is the same on all nodes
2254     local MAX=${2:-$(max_recovery_time)}
2255
2256     local facets=$facet
2257     if [ "$FAILURE_MODE" = HARD ]; then
2258         facets=$(facets_on_host $(facet_active_host $facet))
2259     fi
2260     echo affected facets: $facets
2261
2262         # we can use "for" here because we are waiting the slowest
2263         for facet in ${facets//,/ }; do
2264                 local var_svc=${facet}_svc
2265                 local param="*.${!var_svc}.recovery_status"
2266
2267                 local host=$(facet_active_host $facet)
2268                 do_rpc_nodes "$host" _wait_recovery_complete $param $MAX
2269         done
2270 }
2271
2272 wait_mds_ost_sync () {
2273         # just because recovery is done doesn't mean we've finished
2274         # orphan cleanup. Wait for llogs to get synchronized.
2275         echo "Waiting for orphan cleanup..."
2276         # MAX value includes time needed for MDS-OST reconnection
2277         local MAX=$(( TIMEOUT * 2 ))
2278         local WAIT_TIMEOUT=${1:-$MAX}
2279         local WAIT=0
2280         local new_wait=true
2281         local list=$(comma_list $(mdts_nodes))
2282         local cmd="$LCTL get_param -n osp.*osc*.old_sync_processed"
2283         if ! do_facet $SINGLEMDS \
2284                 "$LCTL list_param osp.*osc*.old_sync_processed 2> /dev/null"
2285         then
2286                 # old way, use mds_sync
2287                 new_wait=false
2288                 list=$(comma_list $(osts_nodes))
2289                 cmd="$LCTL get_param -n obdfilter.*.mds_sync"
2290         fi
2291
2292         echo "wait $WAIT_TIMEOUT secs maximumly for $list mds-ost sync done."
2293         while [ $WAIT -lt $WAIT_TIMEOUT ]; do
2294                 local -a sync=($(do_nodes $list "$cmd"))
2295                 local con=1
2296                 local i
2297                 for ((i=0; i<${#sync[@]}; i++)); do
2298                         if $new_wait; then
2299                                 [ ${sync[$i]} -eq 1 ] && continue
2300                         else
2301                                 [ ${sync[$i]} -eq 0 ] && continue
2302                         fi
2303                         # there is a not finished MDS-OST synchronization
2304                         con=0
2305                         break;
2306                 done
2307                 sleep 2 # increase waiting time and cover statfs cache
2308                 [ ${con} -eq 1 ] && return 0
2309                 echo "Waiting $WAIT secs for $list $i mds-ost sync done."
2310                 WAIT=$((WAIT + 2))
2311         done
2312
2313         # show which nodes are not finished.
2314         do_nodes $list "$cmd"
2315         echo "$facet recovery node $i not done in $WAIT_TIMEOUT sec. $STATUS"
2316         return 1
2317 }
2318
2319 wait_destroy_complete () {
2320         echo "Waiting for local destroys to complete"
2321         # MAX value shouldn't be big as this mean server responsiveness
2322         # never increase this just to make test pass but investigate
2323         # why it takes so long time
2324         local MAX=5
2325         local WAIT=0
2326         while [ $WAIT -lt $MAX ]; do
2327                 local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
2328                 local con=1
2329                 local i
2330
2331                 for ((i=0; i<${#RPCs[@]}; i++)); do
2332                         [ ${RPCs[$i]} -eq 0 ] && continue
2333                         # there are still some destroy RPCs in flight
2334                         con=0
2335                         break;
2336                 done
2337                 sleep 1
2338                 [ ${con} -eq 1 ] && return 0 # done waiting
2339                 echo "Waiting ${WAIT}s for local destroys to complete"
2340                 WAIT=$((WAIT + 1))
2341         done
2342         echo "Local destroys weren't done in $MAX sec."
2343         return 1
2344 }
2345
2346 wait_delete_completed() {
2347         wait_delete_completed_mds $1 || return $?
2348         wait_destroy_complete
2349 }
2350
2351 wait_exit_ST () {
2352     local facet=$1
2353
2354     local WAIT=0
2355     local INTERVAL=1
2356     local running
2357     # conf-sanity 31 takes a long time cleanup
2358     while [ $WAIT -lt 300 ]; do
2359         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
2360         [ -z "${running}" ] && return 0
2361         echo "waited $WAIT for${running}"
2362         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
2363         sleep $INTERVAL
2364         WAIT=$((WAIT + INTERVAL))
2365     done
2366     echo "service didn't stop after $WAIT seconds.  Still running:"
2367     echo ${running}
2368     return 1
2369 }
2370
2371 wait_remote_prog () {
2372    local prog=$1
2373    local WAIT=0
2374    local INTERVAL=5
2375    local rc=0
2376
2377    [ "$PDSH" = "no_dsh" ] && return 0
2378
2379    while [ $WAIT -lt $2 ]; do
2380         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
2381         [ -z "${running}" ] && return 0 || true
2382         echo "waited $WAIT for: "
2383         echo "$running"
2384         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
2385         sleep $INTERVAL
2386         WAIT=$((WAIT + INTERVAL))
2387     done
2388     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
2389     [ -z "$pids" ] && return 0
2390     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
2391     # FIXME: not portable
2392     for pid in $pids; do
2393         cat /proc/${pid}/status || true
2394         cat /proc/${pid}/wchan || true
2395         echo "Killing $pid"
2396         kill -9 $pid || true
2397         sleep 1
2398         ps -P $pid && rc=1
2399     done
2400
2401     return $rc
2402 }
2403
2404 clients_up() {
2405     # not every config has many clients
2406     sleep 1
2407     if [ ! -z "$CLIENTS" ]; then
2408         $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
2409     else
2410         stat -f $MOUNT > /dev/null
2411     fi
2412 }
2413
2414 client_up() {
2415     local client=$1
2416     # usually checked on particular client or locally
2417     sleep 1
2418     if [ ! -z "$client" ]; then
2419         $PDSH $client "stat -f $MOUNT" > /dev/null
2420     else
2421         stat -f $MOUNT > /dev/null
2422     fi
2423 }
2424
2425 client_evicted() {
2426     ! client_up $1
2427 }
2428
2429 client_reconnect_try() {
2430     uname -n >> $MOUNT/recon
2431     if [ -z "$CLIENTS" ]; then
2432         df $MOUNT; uname -n >> $MOUNT/recon
2433     else
2434         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
2435     fi
2436     echo Connected clients:
2437     cat $MOUNT/recon
2438     ls -l $MOUNT/recon > /dev/null
2439     rm $MOUNT/recon
2440 }
2441
2442 client_reconnect() {
2443         # one client_reconnect_try call does not always do the job...
2444         while true ; do
2445                 client_reconnect_try && break
2446                 sleep 1
2447         done
2448 }
2449
2450 affected_facets () {
2451     local facet=$1
2452
2453     local host=$(facet_active_host $facet)
2454     local affected=$facet
2455
2456     if [ "$FAILURE_MODE" = HARD ]; then
2457         affected=$(facets_up_on_host $host)
2458     fi
2459     echo $affected
2460 }
2461
2462 facet_failover() {
2463         local facets=$1
2464         local sleep_time=$2
2465         local -a affecteds
2466         local facet
2467         local total=0
2468         local index=0
2469         local skip
2470
2471         #Because it will only get up facets, we need get affected
2472         #facets before shutdown
2473         #For HARD Failure mode, it needs make sure facets on the same
2474         #HOST will only be shutdown and reboot once
2475         for facet in ${facets//,/ }; do
2476                 local affected_facet
2477                 skip=0
2478                 #check whether facet has been included in other affected facets
2479                 for ((index=0; index<$total; index++)); do
2480                         [[ *,$facet,* == ,${affecteds[index]}, ]] && skip=1
2481                 done
2482
2483                 if [ $skip -eq 0 ]; then
2484                         affecteds[$total]=$(affected_facets $facet)
2485                         total=$((total+1))
2486                 fi
2487         done
2488
2489         for ((index=0; index<$total; index++)); do
2490                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2491                 local host=$(facet_active_host $facet)
2492                 echo "Failing ${affecteds[index]} on $host"
2493                 shutdown_facet $facet
2494         done
2495
2496         for ((index=0; index<$total; index++)); do
2497                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2498                 echo reboot facets: ${affecteds[index]}
2499
2500                 reboot_facet $facet
2501
2502                 change_active ${affecteds[index]}
2503
2504                 wait_for_facet ${affecteds[index]}
2505                 # start mgs first if it is affected
2506                 if ! combined_mgs_mds &&
2507                         list_member ${affecteds[index]} mgs; then
2508                         mount_facet mgs || error "Restart of mgs failed"
2509                 fi
2510                 # FIXME; has to be changed to mount all facets concurrently
2511                 affected=$(exclude_items_from_list ${affecteds[index]} mgs)
2512                 echo mount facets: ${affecteds[index]}
2513                 mount_facets ${affecteds[index]}
2514         done
2515 }
2516
2517 obd_name() {
2518     local facet=$1
2519 }
2520
2521 replay_barrier() {
2522         local facet=$1
2523         do_facet $facet "sync; sync; sync"
2524         df $MOUNT
2525
2526         # make sure there will be no seq change
2527         local clients=${CLIENTS:-$HOSTNAME}
2528         local f=fsa-\\\$\(hostname\)
2529         do_nodes $clients "mcreate $MOUNT/$f; rm $MOUNT/$f"
2530         do_nodes $clients "if [ -d $MOUNT2 ]; then mcreate $MOUNT2/$f; rm $MOUNT2/$f; fi"
2531
2532         local svc=${facet}_svc
2533         do_facet $facet $LCTL --device ${!svc} notransno
2534         #
2535         # If a ZFS OSD is made read-only here, its pool is "freezed". This
2536         # in-memory state has to be cleared by either rebooting the host or
2537         # exporting and reimporting the pool.
2538         #
2539         # Although the uberblocks are not updated when a pool is freezed,
2540         # transactions are still written to the disks. Modified blocks may be
2541         # cached in memory when tests try reading them back. The
2542         # export-and-reimport process also evicts any cached pool data from
2543         # memory to provide the correct "data loss" semantics.
2544         #
2545         # In the test framework, the exporting and importing operations are
2546         # handled by stop() and mount_facet() separately, which are used
2547         # inside fail() and fail_abort().
2548         #
2549         do_facet $facet $LCTL --device ${!svc} readonly
2550         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2551         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2552 }
2553
2554 replay_barrier_nodf() {
2555         local facet=$1    echo running=${running}
2556         do_facet $facet "sync; sync; sync"
2557         local svc=${facet}_svc
2558         echo Replay barrier on ${!svc}
2559         do_facet $facet $LCTL --device ${!svc} notransno
2560         do_facet $facet $LCTL --device ${!svc} readonly
2561         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2562         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2563 }
2564
2565 replay_barrier_nosync() {
2566         local facet=$1    echo running=${running}
2567         local svc=${facet}_svc
2568         echo Replay barrier on ${!svc}
2569         do_facet $facet $LCTL --device ${!svc} notransno
2570         do_facet $facet $LCTL --device ${!svc} readonly
2571         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2572         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2573 }
2574
2575 #
2576 # Get Lustre client uuid for a given Lustre mount point.
2577 #
2578 get_client_uuid() {
2579         local mntpnt=${1:-$MOUNT}
2580
2581         local name=$($LFS getname $mntpnt | cut -d' ' -f1)
2582         local uuid=$($LCTL get_param -n llite.$name.uuid)
2583
2584         echo -n $uuid
2585 }
2586
2587 mds_evict_client() {
2588         local mntpnt=${1:-$MOUNT}
2589         local uuid=$(get_client_uuid $mntpnt)
2590
2591         do_facet $SINGLEMDS \
2592                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client $uuid"
2593 }
2594
2595 ost_evict_client() {
2596         local mntpnt=${1:-$MOUNT}
2597         local uuid=$(get_client_uuid $mntpnt)
2598
2599         do_facet ost1 \
2600                 "$LCTL set_param -n obdfilter.${ost1_svc}.evict_client $uuid"
2601 }
2602
2603 fail() {
2604         local facets=$1
2605         local clients=${CLIENTS:-$HOSTNAME}
2606
2607         facet_failover $* || error "failover: $?"
2608         wait_clients_import_state "$clients" "$facets" FULL
2609         clients_up || error "post-failover df: $?"
2610 }
2611
2612 fail_nodf() {
2613         local facet=$1
2614         facet_failover $facet
2615 }
2616
2617 fail_abort() {
2618         local facet=$1
2619         stop $facet
2620         change_active $facet
2621         wait_for_facet $facet
2622         mount_facet $facet -o abort_recovery
2623         clients_up || echo "first df failed: $?"
2624         clients_up || error "post-failover df: $?"
2625 }
2626
2627 do_lmc() {
2628     echo There is no lmc.  This is mountconf, baby.
2629     exit 1
2630 }
2631
2632 host_nids_address() {
2633     local nodes=$1
2634     local kind=$2
2635
2636     if [ -n "$kind" ]; then
2637         nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
2638     else
2639         nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
2640     fi
2641     echo $nids
2642 }
2643
2644 h2name_or_ip() {
2645         if [ "$1" = "'*'" ]; then echo \'*\'; else
2646                 echo $1"@$2"
2647         fi
2648 }
2649
2650 h2ptl() {
2651         if [ "$1" = "'*'" ]; then echo \'*\'; else
2652                 ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | \
2653                                                         awk '{print $1}'`
2654                 if [ -z "$ID" ]; then
2655                         echo "Could not get a ptl id for $1..."
2656                         exit 1
2657                 fi
2658                 echo $ID"@ptl"
2659         fi
2660 }
2661 declare -fx h2ptl
2662
2663 h2tcp() {
2664         h2name_or_ip "$1" "tcp"
2665 }
2666 declare -fx h2tcp
2667
2668 h2elan() {
2669         if [ "$1" = "'*'" ]; then echo \'*\'; else
2670                 if type __h2elan >/dev/null 2>&1; then
2671                         ID=$(__h2elan $1)
2672                 else
2673                         ID=`echo $1 | sed 's/[^0-9]*//g'`
2674                 fi
2675                 echo $ID"@elan"
2676         fi
2677 }
2678 declare -fx h2elan
2679
2680 h2o2ib() {
2681         h2name_or_ip "$1" "o2ib"
2682 }
2683 declare -fx h2o2ib
2684
2685 # This enables variables in cfg/"setup".sh files to support the pdsh HOSTLIST
2686 # expressions format. As a bonus we can then just pass in those variables
2687 # to pdsh. What this function does is take a HOSTLIST type string and
2688 # expand it into a space deliminated list for us.
2689 hostlist_expand() {
2690     local hostlist=$1
2691     local offset=$2
2692     local myList
2693     local item
2694     local list
2695
2696     [ -z "$hostlist" ] && return
2697
2698     # Translate the case of [..],..,[..] to [..] .. [..]
2699     list="${hostlist/],/] }"
2700     front=${list%%[*}
2701     [[ "$front" == *,* ]] && {
2702         new="${list%,*} "
2703         old="${list%,*},"
2704         list=${list/${old}/${new}}
2705     }
2706
2707     for item in $list; do
2708         # Test if we have any []'s at all
2709         if [ "$item" != "${item/\[/}" ]; then {
2710             # Expand the [*] into list
2711             name=${item%%[*}
2712             back=${item#*]}
2713
2714             if [ "$name" != "$item" ]; then
2715                 group=${item#$name[*}
2716                 group=${group%%]*}
2717
2718                 for range in ${group//,/ }; do
2719                     begin=${range%-*}
2720                     end=${range#*-}
2721
2722                     # Number of leading zeros
2723                     padlen=${#begin}
2724                     padlen2=${#end}
2725                     end=$(echo $end | sed 's/0*//')
2726                     [[ -z "$end" ]] && end=0
2727                     [[ $padlen2 -gt $padlen ]] && {
2728                         [[ $padlen2 -eq ${#end} ]] && padlen2=0
2729                         padlen=$padlen2
2730                     }
2731                     begin=$(echo $begin | sed 's/0*//')
2732                     [ -z $begin ] && begin=0
2733
2734                     for num in $(seq -f "%0${padlen}g" $begin $end); do
2735                         value="${name#*,}${num}${back}"
2736                         [ "$value" != "${value/\[/}" ] && {
2737                             value=$(hostlist_expand "$value")
2738                         }
2739                         myList="$myList $value"
2740                     done
2741                 done
2742             fi
2743         } else {
2744             myList="$myList $item"
2745         } fi
2746     done
2747     myList=${myList//,/ }
2748     myList=${myList:1} # Remove first character which is a space
2749
2750     # Filter any duplicates without sorting
2751     list="$myList "
2752     myList="${list%% *}"
2753
2754     while [[ "$list" != ${myList##* } ]]; do
2755         list=${list//${list%% *} /}
2756         myList="$myList ${list%% *}"
2757     done
2758     myList="${myList%* }";
2759
2760     # We can select an object at an offset in the list
2761     [ $# -eq 2 ] && {
2762         cnt=0
2763         for item in $myList; do
2764             let cnt=cnt+1
2765             [ $cnt -eq $offset ] && {
2766                 myList=$item
2767             }
2768         done
2769         [ $(get_node_count $myList) -ne 1 ] && myList=""
2770     }
2771     echo $myList
2772 }
2773
2774 facet_host() {
2775         local facet=$1
2776         local varname
2777
2778         [ "$facet" == client ] && echo -n $HOSTNAME && return
2779         varname=${facet}_HOST
2780         if [ -z "${!varname}" ]; then
2781                 if [ "${facet:0:3}" == "ost" ]; then
2782                         local fh=${facet%failover}_HOST
2783                         eval export ${facet}_HOST=${!fh}
2784                         if [ -z "${!varname}" ]; then
2785                                 eval export ${facet}_HOST=${ost_HOST}
2786                         fi
2787                 elif [ "${facet:0:3}" == "mdt" -o \
2788                         "${facet:0:3}" == "mds" -o \
2789                         "${facet:0:3}" == "mgs" ]; then
2790                         eval export ${facet}_HOST=${mds_HOST}
2791                 fi
2792         fi
2793         echo -n ${!varname}
2794 }
2795
2796 facet_failover_host() {
2797         local facet=$1
2798         local varname
2799
2800         var=${facet}failover_HOST
2801         if [ -n "${!var}" ]; then
2802                 echo ${!var}
2803                 return
2804         fi
2805
2806         if [ "${facet:0:3}" == "mdt" -o "${facet:0:3}" == "mds" -o \
2807              "${facet:0:3}" == "mgs" ]; then
2808
2809                 eval export ${facet}failover_host=${mds_HOST}
2810                 echo ${mds_HOST}
2811                 return
2812         fi
2813
2814         if [[ $facet == ost* ]]; then
2815                 eval export ${facet}failover_host=${ost_HOST}
2816                 echo ${ost_HOST}
2817                 return
2818         fi
2819 }
2820
2821 facet_active() {
2822     local facet=$1
2823     local activevar=${facet}active
2824
2825     if [ -f $TMP/${facet}active ] ; then
2826         source $TMP/${facet}active
2827     fi
2828
2829     active=${!activevar}
2830     if [ -z "$active" ] ; then
2831         echo -n ${facet}
2832     else
2833         echo -n ${active}
2834     fi
2835 }
2836
2837 facet_active_host() {
2838         facet_host $(facet_active $1)
2839 }
2840
2841 # Get the passive failover partner host of facet.
2842 facet_passive_host() {
2843         local facet=$1
2844         [[ $facet = client ]] && return
2845
2846         local host=${facet}_HOST
2847         local failover_host=${facet}failover_HOST
2848         local active_host=$(facet_active_host $facet)
2849
2850         [[ -z ${!failover_host} || ${!failover_host} = ${!host} ]] && return
2851
2852         if [[ $active_host = ${!host} ]]; then
2853                 echo -n ${!failover_host}
2854         else
2855                 echo -n ${!host}
2856         fi
2857 }
2858
2859 change_active() {
2860     local facetlist=$1
2861     local facet
2862
2863     facetlist=$(exclude_items_from_list $facetlist mgs)
2864
2865     for facet in ${facetlist//,/ }; do
2866     local failover=${facet}failover
2867     local host=`facet_host $failover`
2868     [ -z "$host" ] && return
2869
2870     local curactive=`facet_active $facet`
2871     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
2872         eval export ${facet}active=$facet
2873     else
2874         eval export ${facet}active=$failover
2875     fi
2876     # save the active host for this facet
2877     local activevar=${facet}active
2878     echo "$activevar=${!activevar}" > $TMP/$activevar
2879     [[ $facet = mds1 ]] && combined_mgs_mds && \
2880         echo "mgsactive=${!activevar}" > $TMP/mgsactive
2881     local TO=`facet_active_host $facet`
2882     echo "Failover $facet to $TO"
2883     done
2884 }
2885
2886 do_node() {
2887     local verbose=false
2888     # do not stripe off hostname if verbose, bug 19215
2889     if [ x$1 = x--verbose ]; then
2890         shift
2891         verbose=true
2892     fi
2893
2894     local HOST=$1
2895     shift
2896     local myPDSH=$PDSH
2897     if [ "$HOST" = "$HOSTNAME" ]; then
2898         myPDSH="no_dsh"
2899     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
2900         echo "cannot run remote command on $HOST with $myPDSH"
2901         return 128
2902     fi
2903     if $VERBOSE; then
2904         echo "CMD: $HOST $@" >&2
2905         $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2906     fi
2907
2908     if [ "$myPDSH" = "rsh" ]; then
2909 # we need this because rsh does not return exit code of an executed command
2910         local command_status="$TMP/cs"
2911         rsh $HOST ":> $command_status"
2912         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
2913                     cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
2914                     echo command failed >$command_status"
2915         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
2916         return 0
2917     fi
2918
2919     if $verbose ; then
2920         # print HOSTNAME for myPDSH="no_dsh"
2921         if [[ $myPDSH = no_dsh ]]; then
2922             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
2923         else
2924             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
2925         fi
2926     else
2927         $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
2928     fi
2929     return ${PIPESTATUS[0]}
2930 }
2931
2932 do_nodev() {
2933     do_node --verbose "$@"
2934 }
2935
2936 single_local_node () {
2937    [ "$1" = "$HOSTNAME" ]
2938 }
2939
2940 # Outputs environment variable assignments that should be passed to remote nodes
2941 get_env_vars() {
2942         local var
2943         local value
2944         local facets=$(get_facets)
2945         local facet
2946
2947         for var in ${!MODOPTS_*}; do
2948                 value=${!var//\"/\\\"}
2949                 echo -n " ${var}=\"$value\""
2950         done
2951
2952         for facet in ${facets//,/ }; do
2953                 var=${facet}_FSTYPE
2954                 if [ -n "${!var}" ]; then
2955                         echo -n " $var=${!var}"
2956                 fi
2957         done
2958
2959         for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
2960                 if [ -n "${!var}" ]; then
2961                         echo -n " $var=${!var}"
2962                 fi
2963         done
2964
2965         for var in VERBOSE; do
2966                 if [ -n "${!var}" ]; then
2967                         echo -n " $var=${!var}"
2968                 fi
2969         done
2970
2971         if [ -n "$FSTYPE" ]; then
2972                 echo -n " FSTYPE=$FSTYPE"
2973         fi
2974
2975         for var in LNETLND NETTYPE; do
2976                 if [ -n "${!var}" ]; then
2977                         echo -n " $var=${!var}"
2978                 fi
2979         done
2980 }
2981
2982 do_nodes() {
2983     local verbose=false
2984     # do not stripe off hostname if verbose, bug 19215
2985     if [ x$1 = x--verbose ]; then
2986         shift
2987         verbose=true
2988     fi
2989
2990     local rnodes=$1
2991     shift
2992
2993     if single_local_node $rnodes; then
2994         if $verbose; then
2995            do_nodev $rnodes "$@"
2996         else
2997            do_node $rnodes "$@"
2998         fi
2999         return $?
3000     fi
3001
3002     # This is part from do_node
3003     local myPDSH=$PDSH
3004
3005     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
3006         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
3007
3008     export FANOUT=$(get_node_count "${rnodes//,/ }")
3009     if $VERBOSE; then
3010         echo "CMD: $rnodes $@" >&2
3011         $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
3012     fi
3013
3014     # do not replace anything from pdsh output if -N is used
3015     # -N     Disable hostname: prefix on lines of output.
3016     if $verbose || [[ $myPDSH = *-N* ]]; then
3017         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
3018     else
3019         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
3020     fi
3021     return ${PIPESTATUS[0]}
3022 }
3023
3024 ##
3025 # Execute commands on a single service's host
3026 #
3027 # The \a facet (service) may be on a local or remote node, which is
3028 # determined at the time the command is run.
3029 #
3030 # usage: do_facet $facet command [arg ...]
3031 do_facet() {
3032         local facet=$1
3033         shift
3034         local HOST=$(facet_active_host $facet)
3035         [ -z $HOST ] && echo "No host defined for facet ${facet}" && exit 1
3036         do_node $HOST "$@"
3037 }
3038
3039 # Function: do_facet_random_file $FACET $FILE $SIZE
3040 # Creates FILE with random content on the given FACET of given SIZE
3041
3042 do_facet_random_file() {
3043         local facet="$1"
3044         local fpath="$2"
3045         local fsize="$3"
3046         local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
3047         do_facet $facet "$cmd 2>/dev/null"
3048 }
3049
3050 do_facet_create_file() {
3051         local facet="$1"
3052         local fpath="$2"
3053         local fsize="$3"
3054         local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
3055         do_facet $facet "$cmd 2>/dev/null"
3056 }
3057
3058 do_nodesv() {
3059     do_nodes --verbose "$@"
3060 }
3061
3062 add() {
3063         local facet=$1
3064         shift
3065         # make sure its not already running
3066         stop ${facet} -f
3067         rm -f $TMP/${facet}active
3068         [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
3069         do_facet ${facet} $MKFS $* || return ${PIPESTATUS[0]}
3070
3071         if [[ $(facet_fstype $facet) == zfs ]]; then
3072                 #
3073                 # After formatting a ZFS target, "cachefile=none" property will
3074                 # be set on the ZFS storage pool so that the pool is not
3075                 # automatically imported on system startup. And then the pool
3076                 # will be exported so as to leave the importing and exporting
3077                 # operations handled by mount_facet() and stop() separately.
3078                 #
3079                 refresh_partition_table $facet $(facet_vdevice $facet)
3080                 disable_zpool_cache $facet
3081                 export_zpool $facet
3082         fi
3083 }
3084
3085 # Device formatted as ost
3086 ostdevname() {
3087         local num=$1
3088         local DEVNAME=OSTDEV$num
3089
3090         local fstype=$(facet_fstype ost$num)
3091
3092         case $fstype in
3093                 ldiskfs )
3094                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
3095                         eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
3096                 zfs )
3097                         #try $OSTZFSDEVn - independent of vdev
3098                         DEVNAME=OSTZFSDEV$num
3099                         eval DEVPTR=${!DEVNAME:=${FSNAME}-ost${num}/ost${num}};;
3100                 * )
3101                         error "unknown fstype!";;
3102         esac
3103
3104     echo -n $DEVPTR
3105 }
3106
3107 # Physical device location of data
3108 ostvdevname() {
3109         local num=$1
3110         local DEVNAME
3111         local VDEVPTR
3112
3113         local fstype=$(facet_fstype ost$num)
3114
3115         case $fstype in
3116                 ldiskfs )
3117                         # vdevs are not supported by ldiskfs
3118                         eval VDEVPTR="";;
3119                 zfs )
3120                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE{n}
3121                         # Device formatted by zfs
3122                         DEVNAME=OSTDEV$num
3123                         eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
3124                 * )
3125                         error "unknown fstype!";;
3126         esac
3127
3128         echo -n $VDEVPTR
3129 }
3130
3131 # Logical device formatted for lustre
3132 mdsdevname() {
3133         local num=$1
3134         local DEVNAME=MDSDEV$num
3135
3136         local fstype=$(facet_fstype mds$num)
3137
3138         case $fstype in
3139                 ldiskfs )
3140                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE{n}
3141                         eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
3142                 zfs )
3143                         # try $MDSZFSDEVn - independent of vdev
3144                         DEVNAME=MDSZFSDEV$num
3145                         eval DEVPTR=${!DEVNAME:=${FSNAME}-mdt${num}/mdt${num}};;
3146                 * )
3147                         error "unknown fstype!";;
3148         esac
3149
3150         echo -n $DEVPTR
3151 }
3152
3153 # Physical location of data
3154 mdsvdevname() {
3155         local VDEVPTR=""
3156         local num=$1
3157         local fstype=$(facet_fstype mds$num)
3158
3159         case $fstype in
3160                 ldiskfs )
3161                         # vdevs are not supported by ldiskfs
3162                         eval VDEVPTR="";;
3163                 zfs )
3164                         # if $MDSDEVn isn't defined, default is $MDSDEVBASE{n}
3165                         # Device formatted by ZFS
3166                         local DEVNAME=MDSDEV$num
3167                         eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
3168                 * )
3169                         error "unknown fstype!";;
3170         esac
3171
3172         echo -n $VDEVPTR
3173 }
3174
3175 mgsdevname() {
3176         local DEVPTR
3177         local fstype=$(facet_fstype mgs)
3178
3179         case $fstype in
3180         ldiskfs )
3181                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
3182                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsdevname 1) ] ); then
3183                         DEVPTR=$(mdsdevname 1)
3184                 else
3185                         DEVPTR=$MGSDEV
3186                 fi;;
3187         zfs )
3188                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
3189                     ( [ -z "$MGSZFSDEV" ] &&
3190                         [ -z "$MGSDEV" -o "$MGSDEV" = $(mdsvdevname 1) ] ); then
3191                         DEVPTR=$(mdsdevname 1)
3192                 else
3193                         DEVPTR=${MGSZFSDEV:-${FSNAME}-mgs/mgs}
3194                 fi;;
3195         * )
3196                 error "unknown fstype!";;
3197         esac
3198
3199         echo -n $DEVPTR
3200 }
3201
3202 mgsvdevname() {
3203         local VDEVPTR=""
3204
3205         local fstype=$(facet_fstype mgs)
3206
3207         case $fstype in
3208         ldiskfs )
3209                 # vdevs are not supported by ldiskfs
3210                 ;;
3211         zfs )
3212                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
3213                    ( [ -z "$MGSDEV" ] &&
3214                        [ -z "$MGSZFSDEV" -o "$MGSZFSDEV" = $(mdsdevname 1) ]); then
3215                         VDEVPTR=$(mdsvdevname 1)
3216                 elif [ -n "$MGSDEV" ]; then
3217                         VDEVPTR=$MGSDEV
3218                 fi;;
3219         * )
3220                 error "unknown fstype!";;
3221         esac
3222
3223         echo -n $VDEVPTR
3224 }
3225
3226 facet_mntpt () {
3227     local facet=$1
3228     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
3229
3230     local var=${facet}_MOUNT
3231     eval mntpt=${!var:-${MOUNT%/*}/$facet}
3232
3233     echo -n $mntpt
3234 }
3235
3236 mount_ldiskfs() {
3237         local facet=$1
3238         local dev=$(facet_device $facet)
3239         local mnt=$(facet_mntpt $facet)
3240         local opts
3241
3242         if ! do_facet $facet test -b $dev; then
3243                 opts="-o loop"
3244         fi
3245         do_facet $facet mount -t ldiskfs $opts $dev $mnt
3246 }
3247
3248 unmount_ldiskfs() {
3249         local facet=$1
3250         local dev=$(facet_device $facet)
3251         local mnt=$(facet_mntpt $facet)
3252
3253         do_facet $facet $UMOUNT $mnt
3254 }
3255
3256 var_name() {
3257         echo -n "$1" | tr -c '[:alnum:]\n' '_'
3258 }
3259
3260 mount_zfs() {
3261         local facet=$1
3262         local ds=$(facet_device $facet)
3263         local mnt=$(facet_mntpt $facet)
3264         local canmnt
3265         local mntpt
3266
3267         import_zpool $facet
3268         canmnt=$(do_facet $facet $ZFS get -H -o value canmount $ds)
3269         mntpt=$(do_facet $facet $ZFS get -H -o value mountpoint $ds)
3270         do_facet $facet $ZFS set canmount=noauto $ds
3271         #
3272         # The "legacy" mount method is used here because "zfs unmount $mnt"
3273         # calls stat(2) on $mnt/../*, which may include $MOUNT.  If certain
3274         # targets are not available at the time, the stat(2) on $MOUNT will
3275         # hang.
3276         #
3277         do_facet $facet $ZFS set mountpoint=legacy $ds
3278         do_facet $facet mount -t zfs $ds $mnt
3279         eval export mz_$(var_name ${facet}_$ds)_canmount=$canmnt
3280         eval export mz_$(var_name ${facet}_$ds)_mountpoint=$mntpt
3281 }
3282
3283 unmount_zfs() {
3284         local facet=$1
3285         local ds=$(facet_device $facet)
3286         local mnt=$(facet_mntpt $facet)
3287         local var_mntpt=mz_$(var_name ${facet}_$ds)_mountpoint
3288         local var_canmnt=mz_$(var_name ${facet}_$ds)_canmount
3289         local mntpt=${!var_mntpt}
3290         local canmnt=${!var_canmnt}
3291
3292         unset $var_mntpt
3293         unset $var_canmnt
3294         do_facet $facet umount $mnt
3295         do_facet $facet $ZFS set mountpoint=$mntpt $ds
3296         do_facet $facet $ZFS set canmount=$canmnt $ds
3297         export_zpool $facet
3298 }
3299
3300 mount_fstype() {
3301         local facet=$1
3302         local fstype=$(facet_fstype $facet)
3303
3304         mount_$fstype $facet
3305 }
3306
3307 unmount_fstype() {
3308         local facet=$1
3309         local fstype=$(facet_fstype $facet)
3310
3311         unmount_$fstype $facet
3312 }
3313
3314 ########
3315 ## MountConf setup
3316
3317 stopall() {
3318     # make sure we are using the primary server, so test-framework will
3319     # be able to clean up properly.
3320     activemds=`facet_active mds1`
3321     if [ $activemds != "mds1" ]; then
3322         fail mds1
3323     fi
3324
3325     local clients=$CLIENTS
3326     [ -z $clients ] && clients=$(hostname)
3327
3328     zconf_umount_clients $clients $MOUNT "$*" || true
3329     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
3330
3331     [ "$CLIENTONLY" ] && return
3332     # The add fn does rm ${facet}active file, this would be enough
3333     # if we use do_facet <facet> only after the facet added, but
3334     # currently we use do_facet mds in local.sh
3335     for num in `seq $MDSCOUNT`; do
3336         stop mds$num -f
3337         rm -f ${TMP}/mds${num}active
3338     done
3339     combined_mgs_mds && rm -f $TMP/mgsactive
3340
3341     for num in `seq $OSTCOUNT`; do
3342         stop ost$num -f
3343         rm -f $TMP/ost${num}active
3344     done
3345
3346     if ! combined_mgs_mds ; then
3347         stop mgs
3348     fi
3349
3350     return 0
3351 }
3352
3353 cleanup_echo_devs () {
3354     local devs=$($LCTL dl | grep echo | awk '{print $4}')
3355
3356     for dev in $devs; do
3357         $LCTL --device $dev cleanup
3358         $LCTL --device $dev detach
3359     done
3360 }
3361
3362 cleanupall() {
3363     nfs_client_mode && return
3364         cifs_client_mode && return
3365
3366     stopall $*
3367     cleanup_echo_devs
3368
3369     unload_modules
3370     cleanup_gss
3371 }
3372
3373 combined_mgs_mds () {
3374         [[ "$(mdsdevname 1)" = "$(mgsdevname)" ]] &&
3375                 [[ "$(facet_host mds1)" = "$(facet_host mgs)" ]]
3376 }
3377
3378 lower() {
3379         echo -n "$1" | tr '[:upper:]' '[:lower:]'
3380 }
3381
3382 upper() {
3383         echo -n "$1" | tr '[:lower:]' '[:upper:]'
3384 }
3385
3386 mkfs_opts() {
3387         local facet=$1
3388         local dev=$2
3389         local fsname=${3:-"$FSNAME"}
3390         local type=$(facet_type $facet)
3391         local index=$(facet_index $facet)
3392         local fstype=$(facet_fstype $facet)
3393         local host=$(facet_host $facet)
3394         local opts
3395         local fs_mkfs_opts
3396         local var
3397
3398         if [ $type == MGS ] || ( [ $type == MDS ] &&
3399                                  [ "$dev" == $(mgsdevname) ] &&
3400                                  [ "$host" == "$(facet_host mgs)" ] ); then
3401                 opts="--mgs"
3402         else
3403                 opts="--mgsnode=$MGSNID"
3404         fi
3405
3406         if [ $type != MGS ]; then
3407                 opts+=" --fsname=$fsname --$(lower ${type/MDS/MDT}) \
3408                         --index=$index"
3409         fi
3410
3411         var=${facet}failover_HOST
3412         if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
3413                 opts+=" --failnode=$(h2$NETTYPE ${!var})"
3414         fi
3415
3416         opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
3417         opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
3418
3419         if [ $type == MDS ]; then
3420                 opts+=${SECLEVEL:+" --param=mdt.sec_level"}
3421                 opts+=${MDSCAPA:+" --param-mdt.capa=$MDSCAPA"}
3422                 opts+=${STRIPE_BYTES:+" --param=lov.stripesize=$STRIPE_BYTES"}
3423                 opts+=${STRIPES_PER_OBJ:+" --param=lov.stripecount=$STRIPES_PER_OBJ"}
3424                 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
3425
3426                 if [ $fstype == ldiskfs ]; then
3427                         # Check for wide striping
3428                         if [ $OSTCOUNT -gt 160 ]; then
3429                                 MDSJOURNALSIZE=${MDSJOURNALSIZE:-4096}
3430                                 fs_mkfs_opts+="-O large_xattr"
3431                         fi
3432
3433                         var=${facet}_JRN
3434                         if [ -n "${!var}" ]; then
3435                                 fs_mkfs_opts+=" -J device=${!var}"
3436                         else
3437                                 fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
3438                         fi
3439                         fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
3440                 fi
3441         fi
3442
3443         if [ $type == OST ]; then
3444                 opts+=${SECLEVEL:+" --param=ost.sec_level"}
3445                 opts+=${OSSCAPA:+" --param=ost.capa=$OSSCAPA"}
3446
3447                 if [ $fstype == ldiskfs ]; then
3448                         var=${facet}_JRN
3449                         if [ -n "${!var}" ]; then
3450                                 fs_mkfs_opts+=" -J device=${!var}"
3451                         else
3452                                 fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
3453                         fi
3454                 fi
3455         fi
3456
3457         opts+=" --backfstype=$fstype"
3458
3459         var=${type}SIZE
3460         if [ -n "${!var}" ]; then
3461                 opts+=" --device-size=${!var}"
3462         fi
3463
3464         var=$(upper $fstype)_MKFS_OPTS
3465         fs_mkfs_opts+=${!var:+" ${!var}"}
3466
3467         var=${type}_FS_MKFS_OPTS
3468         fs_mkfs_opts+=${!var:+" ${!var}"}
3469
3470         if [ -n "${fs_mkfs_opts## }" ]; then
3471                 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
3472         fi
3473
3474         var=${type}OPT
3475         opts+=${!var:+" ${!var}"}
3476
3477         echo -n "$opts"
3478 }
3479
3480 check_ost_indices() {
3481         local index_count=${#OST_INDICES[@]}
3482         [[ $index_count -eq 0 || $OSTCOUNT -le $index_count ]] && return 0
3483
3484         # OST count is greater than the index count in $OST_INDEX_LIST.
3485         # We need check whether there are duplicate indices.
3486         local i
3487         local j
3488         local index
3489         for i in $(seq $((index_count + 1)) $OSTCOUNT); do
3490                 index=$(facet_index ost$i)
3491                 for j in $(seq 0 $((index_count - 1))); do
3492                         [[ $index -ne ${OST_INDICES[j]} ]] ||
3493                         error "ost$i has the same index $index as ost$((j+1))"
3494                 done
3495         done
3496 }
3497
3498 format_mgs() {
3499         local quiet
3500
3501         if ! $VERBOSE; then
3502                 quiet=yes
3503         fi
3504         echo "Format mgs: $(mgsdevname)"
3505         reformat_external_journal mgs
3506         add mgs $(mkfs_opts mgs $(mgsdevname)) --reformat \
3507                 $(mgsdevname) $(mgsvdevname) ${quiet:+>/dev/null} || exit 10
3508 }
3509
3510 format_mdt() {
3511         local num=$1
3512         local quiet
3513
3514         if ! $VERBOSE; then
3515                 quiet=yes
3516         fi
3517         echo "Format mds$num: $(mdsdevname $num)"
3518         reformat_external_journal mds$num
3519         add mds$num $(mkfs_opts mds$num $(mdsdevname ${num})) \
3520                 --reformat $(mdsdevname $num) $(mdsvdevname $num) \
3521                 ${quiet:+>/dev/null} || exit 10
3522 }
3523
3524 format_ost() {
3525         local num=$1
3526
3527         if ! $VERBOSE; then
3528                 quiet=yes
3529         fi
3530         echo "Format ost$num: $(ostdevname $num)"
3531         reformat_external_journal ost$num
3532         add ost$num $(mkfs_opts ost$num $(ostdevname ${num})) \
3533                 --reformat $(ostdevname $num) $(ostvdevname ${num}) \
3534                 ${quiet:+>/dev/null} || exit 10
3535 }
3536
3537 formatall() {
3538         stopall
3539         # We need ldiskfs here, may as well load them all
3540         load_modules
3541         [ "$CLIENTONLY" ] && return
3542         echo Formatting mgs, mds, osts
3543         if ! combined_mgs_mds ; then
3544                 format_mgs
3545         fi
3546
3547         for num in $(seq $MDSCOUNT); do
3548                 format_mdt $num
3549         done
3550
3551         export OST_INDICES=($(hostlist_expand "$OST_INDEX_LIST"))
3552         check_ost_indices
3553         for num in $(seq $OSTCOUNT); do
3554                 format_ost $num
3555         done
3556 }
3557
3558 mount_client() {
3559     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
3560 }
3561
3562 umount_client() {
3563     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
3564 }
3565
3566 # return value:
3567 # 0: success, the old identity set already.
3568 # 1: success, the old identity does not set.
3569 # 2: fail.
3570 switch_identity() {
3571     local num=$1
3572     local switch=$2
3573     local j=`expr $num - 1`
3574     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
3575
3576     if [ -z "$MDT" ]; then
3577         return 2
3578     fi
3579
3580     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
3581
3582     if $switch; then
3583         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
3584     else
3585         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
3586     fi
3587
3588     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
3589
3590     if [ $old = "NONE" ]; then
3591         return 1
3592     else
3593         return 0
3594     fi
3595 }
3596
3597 remount_client()
3598 {
3599         zconf_umount `hostname` $1 || error "umount failed"
3600         zconf_mount `hostname` $1 || error "mount failed"
3601 }
3602
3603 writeconf_facet() {
3604         local facet=$1
3605         local dev=$2
3606
3607         stop ${facet} -f
3608         rm -f $TMP/${facet}active
3609         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" || return 1
3610         return 0
3611 }
3612
3613 writeconf_all () {
3614         local mdt_count=${1:-$MDSCOUNT}
3615         local ost_count=${2:-$OSTCOUNT}
3616         local rc=0
3617
3618         for num in $(seq $mdt_count); do
3619                 DEVNAME=$(mdsdevname $num)
3620                 writeconf_facet mds$num $DEVNAME || rc=$?
3621         done
3622
3623         for num in $(seq $ost_count); do
3624                 DEVNAME=$(ostdevname $num)
3625                 writeconf_facet ost$num $DEVNAME || rc=$?
3626         done
3627         return $rc
3628 }
3629
3630 setupall() {
3631     nfs_client_mode && return
3632         cifs_client_mode && return
3633
3634     sanity_mount_check ||
3635         error "environments are insane!"
3636
3637     load_modules
3638
3639     if [ -z "$CLIENTONLY" ]; then
3640         echo Setup mgs, mdt, osts
3641         echo $WRITECONF | grep -q "writeconf" && \
3642             writeconf_all
3643         if ! combined_mgs_mds ; then
3644                         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
3645         fi
3646
3647         for num in `seq $MDSCOUNT`; do
3648             DEVNAME=$(mdsdevname $num)
3649             start mds$num $DEVNAME $MDS_MOUNT_OPTS
3650
3651             # We started mds, now we should set failover variables properly.
3652             # Set mds${num}failover_HOST if it is not set (the default failnode).
3653             local varname=mds${num}failover_HOST
3654             if [ -z "${!varname}" ]; then
3655                 eval mds${num}failover_HOST=$(facet_host mds$num)
3656             fi
3657
3658             if [ $IDENTITY_UPCALL != "default" ]; then
3659                 switch_identity $num $IDENTITY_UPCALL
3660             fi
3661         done
3662         for num in `seq $OSTCOUNT`; do
3663             DEVNAME=$(ostdevname $num)
3664             start ost$num $DEVNAME $OST_MOUNT_OPTS
3665
3666             # We started ost$num, now we should set ost${num}failover variable properly.
3667             # Set ost${num}failover_HOST if it is not set (the default failnode).
3668             varname=ost${num}failover_HOST
3669             if [ -z "${!varname}" ]; then
3670                 eval ost${num}failover_HOST=$(facet_host ost${num})
3671             fi
3672
3673         done
3674     fi
3675
3676     init_gss
3677
3678     # wait a while to allow sptlrpc configuration be propogated to targets,
3679     # only needed when mounting new target devices.
3680     if $GSS; then
3681         sleep 10
3682     fi
3683
3684     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
3685     mount_client $MOUNT
3686     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
3687     clients_up
3688
3689     if [ "$MOUNT_2" ]; then
3690         mount_client $MOUNT2
3691         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
3692     fi
3693
3694     init_param_vars
3695
3696     # by remounting mdt before ost, initial connect from mdt to ost might
3697     # timeout because ost is not ready yet. wait some time to its fully
3698     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
3699     # by a context negotiation rpc with $TIMEOUT.
3700     # FIXME better by monitoring import status.
3701     if $GSS; then
3702         set_flavor_all $SEC
3703         sleep $((TIMEOUT + 5))
3704     else
3705         sleep 5
3706     fi
3707 }
3708
3709 mounted_lustre_filesystems() {
3710         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
3711 }
3712
3713 init_facet_vars () {
3714         [ "$CLIENTONLY" ] && return 0
3715         local facet=$1
3716         shift
3717         local device=$1
3718
3719         shift
3720
3721         eval export ${facet}_dev=${device}
3722         eval export ${facet}_opt=\"$@\"
3723
3724         local dev=${facet}_dev
3725
3726         # We need to loop for the label
3727         # in case its not initialized yet.
3728         for wait_time in {0,1,3,5,10}; do
3729
3730                 if [ $wait_time -gt 0 ]; then
3731                         echo "${!dev} not yet initialized,"\
3732                                 "waiting ${wait_time} seconds."
3733                         sleep $wait_time
3734                 fi
3735
3736                 local label=$(devicelabel ${facet} ${!dev})
3737
3738                 # Check to make sure the label does
3739                 # not include ffff at the end of the label.
3740                 # This indicates it has not been initialized yet.
3741
3742                 if [[ $label =~ [f|F]{4}$ ]]; then
3743                         # label is not initialized, unset the result
3744                         # and either try again or fail
3745                         unset label
3746                 else
3747                         break
3748                 fi
3749         done
3750
3751         [ -z "$label" ] && echo no label for ${!dev} && exit 1
3752
3753         eval export ${facet}_svc=${label}
3754
3755         local varname=${facet}failover_HOST
3756         if [ -z "${!varname}" ]; then
3757                 eval export $varname=$(facet_host $facet)
3758         fi
3759
3760         varname=${facet}_HOST
3761         if [ -z "${!varname}" ]; then
3762                 eval export $varname=$(facet_host $facet)
3763         fi
3764
3765         # ${facet}failover_dev is set in cfg file
3766         varname=${facet}failover_dev
3767         if [ -n "${!varname}" ] ; then
3768                 eval export ${facet}failover_dev=${!varname}
3769         else
3770                 eval export ${facet}failover_dev=$device
3771         fi
3772
3773         # get mount point of already mounted device
3774         # is facet_dev is already mounted then use the real
3775         #  mount point of this facet; otherwise use $(facet_mntpt $facet)
3776         # i.e. ${facet}_MOUNT if specified by user or default
3777         local mntpt=$(do_facet ${facet} cat /proc/mounts | \
3778                         awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
3779         if [ -z $mntpt ]; then
3780                 mntpt=$(facet_mntpt $facet)
3781         fi
3782         eval export ${facet}_MOUNT=$mntpt
3783 }
3784
3785 init_facets_vars () {
3786         local DEVNAME
3787
3788         if ! remote_mds_nodsh; then
3789                 for num in $(seq $MDSCOUNT); do
3790                         DEVNAME=`mdsdevname $num`
3791                         init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
3792                 done
3793         fi
3794
3795         combined_mgs_mds || init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
3796
3797         if ! remote_ost_nodsh; then
3798                 for num in $(seq $OSTCOUNT); do
3799                         DEVNAME=$(ostdevname $num)
3800                         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
3801                 done
3802         fi
3803 }
3804
3805 osc_ensure_active () {
3806     local facet=$1
3807     local timeout=$2
3808     local period=0
3809
3810     while [ $period -lt $timeout ]; do
3811         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
3812         if [ $count -eq 0 ]; then
3813             break
3814         fi
3815
3816         echo "There are $count OST are inactive, wait $period seconds, and try again"
3817         sleep 3
3818         period=$((period+3))
3819     done
3820
3821     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
3822 }
3823
3824 set_conf_param_and_check() {
3825         local myfacet=$1
3826         local TEST=$2
3827         local PARAM=$3
3828         local ORIG=$(do_facet $myfacet "$TEST")
3829         if [ $# -gt 3 ]; then
3830                 local FINAL=$4
3831         else
3832                 local -i FINAL
3833                 FINAL=$((ORIG + 5))
3834         fi
3835         echo "Setting $PARAM from $ORIG to $FINAL"
3836         do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
3837                 error "conf_param $PARAM failed"
3838
3839         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" ||
3840                 error "check $PARAM failed!"
3841 }
3842
3843 init_param_vars () {
3844         remote_mds_nodsh ||
3845                 TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3846
3847         log "Using TIMEOUT=$TIMEOUT"
3848
3849         osc_ensure_active $SINGLEMDS $TIMEOUT
3850         osc_ensure_active client $TIMEOUT
3851
3852         if [ -n "$(lctl get_param -n mdc.*.connect_flags|grep jobstats)" ]; then
3853                 local current_jobid_var=$($LCTL get_param -n jobid_var)
3854
3855                 if [ $JOBID_VAR = "existing" ]; then
3856                         echo "keeping jobstats as $current_jobid_var"
3857                 elif [ $current_jobid_var != $JOBID_VAR ]; then
3858                         echo "seting jobstats to $JOBID_VAR"
3859
3860                         set_conf_param_and_check client                 \
3861                                 "$LCTL get_param -n jobid_var"          \
3862                                 "$FSNAME.sys.jobid_var" $JOBID_VAR
3863                 fi
3864         else
3865                 echo "jobstats not supported by server"
3866         fi
3867
3868         if [ $QUOTA_AUTO -ne 0 ]; then
3869                 if [ "$ENABLE_QUOTA" ]; then
3870                         echo "enable quota as required"
3871                         setup_quota $MOUNT || return 2
3872                 else
3873                         echo "disable quota as required"
3874                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
3875                 fi
3876         fi
3877         return 0
3878 }
3879
3880 nfs_client_mode () {
3881     if [ "$NFSCLIENT" ]; then
3882         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
3883         local clients=$CLIENTS
3884         [ -z $clients ] && clients=$(hostname)
3885
3886         # FIXME: remove hostname when 19215 fixed
3887         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
3888         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
3889         if [[ ${#nfsexport[@]} -eq 0 ]]; then
3890                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
3891         fi
3892         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
3893         return
3894     fi
3895     return 1
3896 }
3897
3898 cifs_client_mode () {
3899         [ x$CIFSCLIENT = xyes ] &&
3900                 echo "CIFSCLIENT=$CIFSCLIENT mode: setup, cleanup, check config skipped"
3901 }
3902
3903 check_config_client () {
3904     local mntpt=$1
3905
3906     local mounted=$(mount | grep " $mntpt ")
3907     if [ "$CLIENTONLY" ]; then
3908         # bug 18021
3909         # CLIENTONLY should not depend on *_HOST settings
3910         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
3911         # in theory someone could create a new,
3912         # client-only config file that assumed lustre was already
3913         # configured and didn't set the MGSNID. If MGSNID is not set,
3914         # then we should use the mgs nid currently being used 
3915         # as the default value. bug 18021
3916         [[ x$MGSNID = x ]] &&
3917             MGSNID=${mgc//MGC/}
3918
3919         if [[ x$mgc != xMGC$MGSNID ]]; then
3920             if [ "$mgs_HOST" ]; then
3921                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
3922 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
3923 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
3924             fi
3925         fi
3926         return 0
3927     fi
3928
3929     local myMGS_host=$mgs_HOST   
3930     if [ "$NETTYPE" = "ptl" ]; then
3931         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
3932     fi
3933
3934     echo Checking config lustre mounted on $mntpt
3935     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
3936     mgshost=$(echo $mgshost | awk -F: '{print $1}')
3937
3938 #    if [ "$mgshost" != "$myMGS_host" ]; then
3939 #            log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
3940 #                   Please use correct config or set mds_HOST correctly!"
3941 #    fi
3942
3943 }
3944
3945 check_config_clients () {
3946         local clients=${CLIENTS:-$HOSTNAME}
3947         local mntpt=$1
3948
3949         nfs_client_mode && return
3950         cifs_client_mode && return
3951
3952         do_rpc_nodes "$clients" check_config_client $mntpt
3953
3954         sanity_mount_check || error "environments are insane!"
3955 }
3956
3957 check_timeout () {
3958     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3959     local cltimeout=$(lctl get_param -n timeout)
3960     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
3961         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
3962         return 1
3963     fi
3964 }
3965
3966 is_mounted () {
3967     local mntpt=$1
3968     [ -z $mntpt ] && return 1
3969     local mounted=$(mounted_lustre_filesystems)
3970
3971     echo $mounted' ' | grep -w -q $mntpt' '
3972 }
3973
3974 is_empty_dir() {
3975         [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
3976         return 1
3977 }
3978
3979 # empty lustre filesystem may have empty directories lost+found and .lustre
3980 is_empty_fs() {
3981         # exclude .lustre & lost+found
3982         [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
3983                 -print | wc -l) = 1 ] || return 1
3984         [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found || return 1
3985         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.4.0) ]; then
3986                 # exclude .lustre/fid (LU-2780)
3987                 [ $(find $1/.lustre -maxdepth 1 -name fid -prune -o \
3988                         -print | wc -l) = 1 ] || return 1
3989         else
3990                 [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre || return 1
3991         fi
3992         return 0
3993 }
3994
3995 check_and_setup_lustre() {
3996     nfs_client_mode && return
3997         cifs_client_mode && return
3998
3999     local MOUNTED=$(mounted_lustre_filesystems)
4000
4001     local do_check=true
4002     # 1.
4003     # both MOUNT and MOUNT2 are not mounted
4004     if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
4005         [ "$REFORMAT" ] && formatall
4006         # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
4007         setupall
4008         is_mounted $MOUNT || error "NAME=$NAME not mounted"
4009         export I_MOUNTED=yes
4010         do_check=false
4011     # 2.
4012     # MOUNT2 is mounted
4013     elif is_mounted $MOUNT2; then
4014             # 3.
4015             # MOUNT2 is mounted, while MOUNT_2 is not set
4016             if ! [ "$MOUNT_2" ]; then
4017                 cleanup_mount $MOUNT2
4018                 export I_UMOUNTED2=yes
4019
4020             # 4.
4021             # MOUNT2 is mounted, MOUNT_2 is set
4022             else
4023                 # FIXME: what to do if check_config failed?
4024                 # i.e. if:
4025                 # 1) remote client has mounted other Lustre fs ?
4026                 # 2) it has insane env ?
4027                 # let's try umount MOUNT2 on all clients and mount it again:
4028                 if ! check_config_clients $MOUNT2; then
4029                     cleanup_mount $MOUNT2
4030                     restore_mount $MOUNT2
4031                     export I_MOUNTED2=yes
4032                 fi
4033             fi 
4034
4035     # 5.
4036     # MOUNT is mounted MOUNT2 is not mounted
4037     elif [ "$MOUNT_2" ]; then
4038         restore_mount $MOUNT2
4039         export I_MOUNTED2=yes
4040     fi
4041
4042     if $do_check; then
4043         # FIXME: what to do if check_config failed?
4044         # i.e. if:
4045         # 1) remote client has mounted other Lustre fs?
4046         # 2) lustre is mounted on remote_clients atall ?
4047         check_config_clients $MOUNT
4048         init_facets_vars
4049         init_param_vars
4050
4051         set_default_debug_nodes $(comma_list $(nodes_list))
4052     fi
4053
4054         if [ $(lower $OSD_TRACK_DECLARES_LBUG) == 'yes' ] ; then
4055                 local facets=""
4056                 [ "$(facet_fstype ost1)" = "ldiskfs" ] &&
4057                         facets="$(get_facets OST)"
4058                 [ "$(facet_fstype mds1)" = "ldiskfs" ] &&
4059                         facets="$facets,$(get_facets MDS)"
4060                 [ "$(facet_fstype mgs)" = "ldiskfs" ] &&
4061                         facets="$facets,mgs"
4062                 local nodes="$(facets_hosts ${facets})"
4063                 if [ -n "$nodes" ] ; then
4064                         do_nodes $nodes "$LCTL set_param \
4065                                  osd-ldiskfs.track_declares_assert=1 || true"
4066                 fi
4067         fi
4068
4069         init_gss
4070         if $GSS; then
4071                 set_flavor_all $SEC
4072         fi
4073
4074         #Enable remote MDT create for testing
4075         for num in $(seq $MDSCOUNT); do
4076                 do_facet mds$num \
4077                         lctl set_param -n mdt.${FSNAME}*.enable_remote_dir=1 \
4078                                 2>/dev/null
4079         done
4080
4081         if [ "$ONLY" == "setup" ]; then
4082                 exit 0
4083         fi
4084 }
4085
4086 restore_mount () {
4087    local clients=${CLIENTS:-$HOSTNAME}
4088    local mntpt=$1
4089
4090    zconf_mount_clients $clients $mntpt
4091 }
4092
4093 cleanup_mount () {
4094         local clients=${CLIENTS:-$HOSTNAME}
4095         local mntpt=$1
4096
4097         zconf_umount_clients $clients $mntpt
4098 }
4099
4100 cleanup_and_setup_lustre() {
4101     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
4102         lctl set_param debug=0 || true
4103         cleanupall
4104         if [ "$ONLY" == "cleanup" ]; then
4105             exit 0
4106         fi
4107     fi
4108     check_and_setup_lustre
4109 }
4110
4111 # Get all of the server target devices from a given server node and type.
4112 get_mnt_devs() {
4113         local node=$1
4114         local type=$2
4115         local devs
4116         local dev
4117
4118         if [ "$type" == ost ]; then
4119                 devs=$(get_osd_param $node "" mntdev)
4120         else
4121                 devs=$(do_node $node $LCTL get_param -n osd-*.$FSNAME-M*.mntdev)
4122         fi
4123         for dev in $devs; do
4124                 case $dev in
4125                 *loop*) do_node $node "losetup $dev" | \
4126                                 sed -e "s/.*(//" -e "s/).*//" ;;
4127                 *) echo $dev ;;
4128                 esac
4129         done
4130 }
4131
4132 # Get all of the server target devices.
4133 get_svr_devs() {
4134         local node
4135         local i
4136
4137         # Master MDS parameters used by lfsck
4138         MDTNODE=$(facet_active_host $SINGLEMDS)
4139         MDTDEV=$(echo $(get_mnt_devs $MDTNODE mdt) | awk '{print $1}')
4140
4141         # MDT devices
4142         i=0
4143         for node in $(mdts_nodes); do
4144                 MDTDEVS[i]=$(get_mnt_devs $node mdt)
4145                 i=$((i + 1))
4146         done
4147
4148         # OST devices
4149         i=0
4150         for node in $(osts_nodes); do
4151                 OSTDEVS[i]=$(get_mnt_devs $node ost)
4152                 i=$((i + 1))
4153         done
4154 }
4155
4156 # Run e2fsck on MDT or OST device.
4157 run_e2fsck() {
4158         local node=$1
4159         local target_dev=$2
4160         local extra_opts=$3
4161         local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
4162         local log=$TMP/e2fsck.log
4163         local rc=0
4164
4165         echo $cmd
4166         do_node $node $cmd 2>&1 | tee $log
4167         rc=${PIPESTATUS[0]}
4168         if [ -n "$(grep "DNE mode isn't supported" $log)" ]; then
4169                 rm -f $log
4170                 if [ $MDSCOUNT -gt 1 ]; then
4171                         skip "DNE mode isn't supported!"
4172                         cleanupall
4173                         exit_status
4174                 else
4175                         error "It's not DNE mode."
4176                 fi
4177         fi
4178         rm -f $log
4179
4180         [ $rc -le $FSCK_MAX_ERR ] ||
4181                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
4182
4183         return 0
4184 }
4185
4186 #
4187 # Run resize2fs on MDT or OST device.
4188 #
4189 run_resize2fs() {
4190         local facet=$1
4191         local device=$2
4192         local size=$3
4193         shift 3
4194         local opts="$@"
4195
4196         do_facet $facet "$RESIZE2FS $opts $device $size"
4197 }
4198
4199 # verify a directory is shared among nodes.
4200 check_shared_dir() {
4201         local dir=$1
4202         local list=${2:-$(comma_list $(nodes_list))}
4203
4204         [ -z "$dir" ] && return 1
4205         do_rpc_nodes "$list" check_logdir $dir
4206         check_write_access $dir "$list" || return 1
4207         return 0
4208 }
4209
4210 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
4211 generate_db() {
4212         local i
4213         local ostidx
4214         local dev
4215         local node
4216
4217         [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
4218                 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
4219
4220         check_shared_dir $SHARED_DIRECTORY ||
4221                 error "$SHARED_DIRECTORY isn't a shared directory"
4222
4223         export MDSDB=$SHARED_DIRECTORY/mdsdb
4224         export OSTDB=$SHARED_DIRECTORY/ostdb
4225
4226         # DNE is not supported, so when running e2fsck on a DNE filesystem,
4227         # we only pass master MDS parameters.
4228         run_e2fsck $MDTNODE $MDTDEV "-n --mdsdb $MDSDB"
4229
4230     i=0
4231     ostidx=0
4232     OSTDB_LIST=""
4233     for node in $(osts_nodes); do
4234         for dev in ${OSTDEVS[i]}; do
4235             run_e2fsck $node $dev "-n --mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
4236             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
4237             ostidx=$((ostidx + 1))
4238         done
4239         i=$((i + 1))
4240     done
4241 }
4242
4243 # Run lfsck on server node if lfsck can't be found on client (LU-2571)
4244 run_lfsck_remote() {
4245         local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
4246         local client=$1
4247         local mounted=true
4248         local rc=0
4249
4250         #Check if lustre is already mounted
4251         do_rpc_nodes $client is_mounted $MOUNT || mounted=false
4252         if ! $mounted; then
4253                 zconf_mount $client $MOUNT ||
4254                         error "failed to mount Lustre on $client"
4255         fi
4256         #Run lfsck
4257         echo $cmd
4258         do_node $client $cmd || rc=$?
4259         #Umount if necessary
4260         if ! $mounted; then
4261                 zconf_umount $client $MOUNT ||
4262                         error "failed to unmount Lustre on $client"
4263         fi
4264
4265         [ $rc -le $FSCK_MAX_ERR ] ||
4266                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
4267         echo "lfsck finished with rc=$rc"
4268
4269         return $rc
4270 }
4271
4272 run_lfsck() {
4273         local facets="client $SINGLEMDS"
4274         local found=false
4275         local facet
4276         local node
4277         local rc=0
4278
4279         for facet in $facets; do
4280                 node=$(facet_active_host $facet)
4281                 if check_progs_installed $node $LFSCK_BIN; then
4282                         found=true
4283                         break
4284                 fi
4285         done
4286         ! $found && error "None of \"$facets\" supports lfsck"
4287
4288         run_lfsck_remote $node || rc=$?
4289
4290         rm -rvf $MDSDB* $OSTDB* || true
4291         return $rc
4292 }
4293
4294 dump_file_contents() {
4295         local nodes=$1
4296         local dir=$2
4297         local logname=$3
4298         local node
4299
4300         if [ -z "$nodes" -o -z "$dir" -o -z "$logname" ]; then
4301                 error_noexit false \
4302                         "Invalid parameters for dump_file_contents()"
4303                 return 1
4304         fi
4305         for node in ${nodes}; do
4306                 do_node $node "for i in \\\$(find $dir -type f); do
4307                                 echo ====\\\${i}=======================;
4308                                 cat \\\${i};
4309                                 done" >> ${logname}.${node}.log
4310         done
4311 }
4312
4313 dump_command_output() {
4314         local nodes=$1
4315         local cmd=$2
4316         local logname=$3
4317         local node
4318
4319         if [ -z "$nodes" -o -z "$cmd" -o -z "$logname" ]; then
4320                 error_noexit false \
4321                         "Invalid parameters for dump_command_output()"
4322                 return 1
4323         fi
4324
4325         for node in ${nodes}; do
4326                 do_node $node "echo ====${cmd}=======================;
4327                                 $cmd" >> ${logname}.${node}.log
4328         done
4329 }
4330
4331 log_zfs_info() {
4332         local logname=$1
4333
4334         # dump file contents from /proc/spl in case of zfs test
4335         if [ "$(facet_fstype ost1)" = "zfs" ]; then
4336                 dump_file_contents "$(osts_nodes)" "/proc/spl" "${logname}"
4337                 dump_command_output \
4338                         "$(osts_nodes)" "zpool events -v" "${logname}"
4339         fi
4340
4341         if [ "$(facet_fstype $SINGLEMDS)" = "zfs" ]; then
4342                 dump_file_contents "$(mdts_nodes)" "/proc/spl" "${logname}"
4343                 dump_command_output \
4344                         "$(mdts_nodes)" "zpool events -v" "${logname}"
4345         fi
4346 }
4347
4348 check_and_cleanup_lustre() {
4349     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
4350         get_svr_devs
4351         generate_db
4352         run_lfsck
4353     fi
4354
4355         if is_mounted $MOUNT; then
4356                 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
4357                         error "remove sub-test dirs failed"
4358                 [ "$ENABLE_QUOTA" ] && restore_quota || true
4359         fi
4360
4361         if [ "$I_UMOUNTED2" = "yes" ]; then
4362                 restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
4363         fi
4364
4365         if [ "$I_MOUNTED2" = "yes" ]; then
4366                 cleanup_mount $MOUNT2
4367         fi
4368
4369         if [ "$I_MOUNTED" = "yes" ]; then
4370                 cleanupall -f || error "cleanup failed"
4371                 unset I_MOUNTED
4372         fi
4373 }
4374
4375 #######
4376 # General functions
4377
4378 wait_for_function () {
4379     local quiet=""
4380
4381     # suppress fn both stderr and stdout
4382     if [ "$1" = "--quiet" ]; then
4383         shift
4384         quiet=" > /dev/null 2>&1"
4385
4386     fi
4387
4388     local fn=$1
4389     local max=${2:-900}
4390     local sleep=${3:-5}
4391
4392     local wait=0
4393
4394     while true; do
4395
4396         eval $fn $quiet && return 0
4397
4398         wait=$((wait + sleep))
4399         [ $wait -lt $max ] || return 1
4400         echo waiting $fn, $((max - wait)) secs left ...
4401         sleep $sleep
4402     done
4403 }
4404
4405 check_network() {
4406     local host=$1
4407     local max=$2
4408     local sleep=${3:-5}
4409
4410     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
4411     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
4412         echo "Network not available!"
4413         exit 1
4414     fi
4415
4416     echo `date +"%H:%M:%S (%s)"` network interface is UP
4417 }
4418
4419 no_dsh() {
4420     shift
4421     eval $@
4422 }
4423
4424 # Convert a space-delimited list to a comma-delimited list.  If the input is
4425 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
4426 comma_list() {
4427         # echo is used to convert newlines to spaces, since it doesn't
4428         # introduce a trailing space as using "tr '\n' ' '" does
4429         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
4430 }
4431
4432 list_member () {
4433     local list=$1
4434     local item=$2
4435     echo $list | grep -qw $item
4436 }
4437
4438 # list, excluded are the comma separated lists
4439 exclude_items_from_list () {
4440     local list=$1
4441     local excluded=$2
4442     local item
4443
4444     list=${list//,/ }
4445     for item in ${excluded//,/ }; do
4446         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
4447     done
4448     echo $(comma_list $list)
4449 }
4450
4451 # list, expand  are the comma separated lists
4452 expand_list () {
4453     local list=${1//,/ }
4454     local expand=${2//,/ }
4455     local expanded=
4456
4457     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
4458     echo $(comma_list $expanded)
4459 }
4460
4461 testslist_filter () {
4462     local script=$LUSTRE/tests/${TESTSUITE}.sh
4463
4464     [ -f $script ] || return 0
4465
4466     local start_at=$START_AT
4467     local stop_at=$STOP_AT
4468
4469     local var=${TESTSUITE//-/_}_START_AT
4470     [ x"${!var}" != x ] && start_at=${!var}
4471     var=${TESTSUITE//-/_}_STOP_AT
4472     [ x"${!var}" != x ] && stop_at=${!var}
4473
4474     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
4475         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
4476             /^'${start_at}'$/ {flag = 0}
4477             {if (flag == 1) print $0}
4478             /^'${stop_at}'$/ { flag = 1 }'
4479 }
4480
4481 absolute_path() {
4482     (cd `dirname $1`; echo $PWD/`basename $1`)
4483 }
4484
4485 get_facets () {
4486     local types=${1:-"OST MDS MGS"}
4487
4488     local list=""
4489
4490     for entry in $types; do
4491         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
4492         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
4493
4494         case $type in
4495                 MGS ) list="$list $name";;
4496             MDS|OST|AGT ) local count=${type}COUNT
4497                        for ((i=1; i<=${!count}; i++)) do
4498                           list="$list ${name}$i"
4499                       done;;
4500                   * ) error "Invalid facet type"
4501                  exit 1;;
4502         esac
4503     done
4504     echo $(comma_list $list)
4505 }
4506
4507 ##################################
4508 # Adaptive Timeouts funcs
4509
4510 at_is_enabled() {
4511     # only check mds, we assume at_max is the same on all nodes
4512     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
4513     if [ $at_max -eq 0 ]; then
4514         return 1
4515     else
4516         return 0
4517     fi
4518 }
4519
4520 at_get() {
4521     local facet=$1
4522     local at=$2
4523
4524     # suppose that all ost-s have the same $at value set
4525     [ $facet != "ost" ] || facet=ost1
4526
4527     do_facet $facet "lctl get_param -n $at"
4528 }
4529
4530 at_max_get() {
4531     at_get $1 at_max
4532 }
4533
4534 at_min_get() {
4535         at_get $1 at_min
4536 }
4537
4538 at_max_set() {
4539     local at_max=$1
4540     shift
4541
4542     local facet
4543     local hosts
4544     for facet in $@; do
4545         if [ $facet == "ost" ]; then
4546             facet=$(get_facets OST)
4547         elif [ $facet == "mds" ]; then
4548             facet=$(get_facets MDS)
4549         fi
4550         hosts=$(expand_list $hosts $(facets_hosts $facet))
4551     done
4552
4553     do_nodes $hosts lctl set_param at_max=$at_max
4554 }
4555
4556 ##################################
4557 # OBD_FAIL funcs
4558
4559 drop_request() {
4560 # OBD_FAIL_MDS_ALL_REQUEST_NET
4561     RC=0
4562     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
4563     do_facet client "$1" || RC=$?
4564     do_facet $SINGLEMDS lctl set_param fail_loc=0
4565     return $RC
4566 }
4567
4568 drop_reply() {
4569 # OBD_FAIL_MDS_ALL_REPLY_NET
4570         RC=0
4571         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x122
4572         eval "$@" || RC=$?
4573         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
4574         return $RC
4575 }
4576
4577 drop_reint_reply() {
4578 # OBD_FAIL_MDS_REINT_NET_REP
4579         RC=0
4580         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x119
4581         eval "$@" || RC=$?
4582         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
4583         return $RC
4584 }
4585
4586 drop_update_reply() {
4587 # OBD_FAIL_OUT_UPDATE_NET_REP
4588         local index=$1
4589         shift 1
4590         RC=0
4591         do_facet mds${index} lctl set_param fail_loc=0x1701
4592         do_facet client "$@" || RC=$?
4593         do_facet mds${index} lctl set_param fail_loc=0
4594         return $RC
4595 }
4596
4597 pause_bulk() {
4598 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
4599         RC=0
4600
4601         local timeout=${2:-0}
4602         # default is (obd_timeout / 4) if unspecified
4603         echo "timeout is $timeout/$2"
4604         do_facet ost1 lctl set_param fail_val=$timeout fail_loc=0x80000214
4605         do_facet client "$1" || RC=$?
4606         do_facet client "sync"
4607         do_facet ost1 lctl set_param fail_loc=0
4608         return $RC
4609 }
4610
4611 drop_ldlm_cancel() {
4612 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
4613         local RC=0
4614         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
4615         do_nodes $list lctl set_param fail_loc=0x304
4616
4617         do_facet client "$@" || RC=$?
4618
4619         do_nodes $list lctl set_param fail_loc=0
4620         return $RC
4621 }
4622
4623 drop_bl_callback_once() {
4624         local rc=0
4625         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
4626 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
4627         do_facet client lctl set_param fail_loc=0x80000305
4628         do_facet client "$@" || rc=$?
4629         do_facet client lctl set_param fail_loc=0
4630         do_facet client lctl set_param fail_val=0
4631         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
4632         return $rc
4633 }
4634
4635 drop_bl_callback() {
4636         rc=0
4637         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
4638 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
4639         do_facet client lctl set_param fail_loc=0x305
4640         do_facet client "$@" || rc=$?
4641         do_facet client lctl set_param fail_loc=0
4642         do_facet client lctl set_param fail_val=0
4643         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
4644         return $rc
4645 }
4646
4647 drop_ldlm_reply() {
4648 #define OBD_FAIL_LDLM_REPLY              0x30c
4649     RC=0
4650     local list=$(comma_list $(mdts_nodes) $(osts_nodes))
4651     do_nodes $list lctl set_param fail_loc=0x30c
4652
4653     do_facet client "$@" || RC=$?
4654
4655     do_nodes $list lctl set_param fail_loc=0
4656     return $RC
4657 }
4658
4659 drop_ldlm_reply_once() {
4660 #define OBD_FAIL_LDLM_REPLY              0x30c
4661     RC=0
4662     local list=$(comma_list $(mdts_nodes) $(osts_nodes))
4663     do_nodes $list lctl set_param fail_loc=0x8000030c
4664
4665     do_facet client "$@" || RC=$?
4666
4667     do_nodes $list lctl set_param fail_loc=0
4668     return $RC
4669 }
4670
4671 clear_failloc() {
4672     facet=$1
4673     pause=$2
4674     sleep $pause
4675     echo "clearing fail_loc on $facet"
4676     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
4677 }
4678
4679 set_nodes_failloc () {
4680         do_nodes $(comma_list $1)  lctl set_param fail_val=0 fail_loc=$2
4681 }
4682
4683 cancel_lru_locks() {
4684     $LCTL mark "cancel_lru_locks $1 start"
4685
4686     if [ $1 != "MGC" ]; then
4687         for d in $(lctl get_param -N ldlm.namespaces.*.lru_size |
4688                  egrep -i $1); do
4689             $LCTL set_param -n $d=clear
4690         done
4691         $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 |
4692                 grep -v '=0'
4693     else
4694         for d in $(find \
4695                 /{proc,sys}/fs/lustre/ldlm/namespaces/*$1*/lru_size \
4696                 2> /dev/null); do
4697             echo "clear" > $d
4698         done
4699
4700         for d in $(find \
4701                 /{proc,sys}/fs/lustre/ldlm/namespaces/*$1*/lock_unused_count \
4702                 2> /dev/null); do
4703             if [ $(cat $d) != 0 ]; then
4704                 echo "ldlm.namespaces.$(echo "$d" |
4705                         cut -f 7 -d'/').lock_unused_count=$(cat $d)"
4706             fi
4707         done
4708     fi
4709
4710     $LCTL mark "cancel_lru_locks $1 stop"
4711 }
4712
4713 default_lru_size()
4714 {
4715         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
4716         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
4717         echo "$DEFAULT_LRU_SIZE"
4718 }
4719
4720 lru_resize_enable()
4721 {
4722     lctl set_param ldlm.namespaces.*$1*.lru_size=0
4723 }
4724
4725 lru_resize_disable()
4726 {
4727     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
4728 }
4729
4730 flock_is_enabled()
4731 {
4732         local RC=0
4733         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] && RC=1
4734         return $RC
4735 }
4736
4737 pgcache_empty() {
4738     local FILE
4739     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
4740         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
4741             echo there is still data in page cache $FILE ?
4742             lctl get_param -n $FILE
4743             return 1
4744         fi
4745     done
4746     return 0
4747 }
4748
4749 debugsave() {
4750     DEBUGSAVE="$(lctl get_param -n debug)"
4751 }
4752
4753 debugrestore() {
4754     [ -n "$DEBUGSAVE" ] && \
4755         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
4756     DEBUGSAVE=""
4757 }
4758
4759 debug_size_save() {
4760     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
4761 }
4762
4763 debug_size_restore() {
4764     [ -n "$DEBUG_SIZE_SAVED" ] && \
4765         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
4766     DEBUG_SIZE_SAVED=""
4767 }
4768
4769 start_full_debug_logging() {
4770     debugsave
4771     debug_size_save
4772
4773     local FULLDEBUG=-1
4774     local DEBUG_SIZE=150
4775
4776     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
4777     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
4778 }
4779
4780 stop_full_debug_logging() {
4781     debug_size_restore
4782     debugrestore
4783 }
4784
4785 # prints bash call stack
4786 print_stack_trace() {
4787         echo "  Trace dump:"
4788         for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
4789                 local s=${BASH_SOURCE[$i]}
4790                 local l=${BASH_LINENO[$i-1]}
4791                 local f=${FUNCNAME[$i]}
4792                 echo "  = $s:$l:$f()"
4793         done
4794 }
4795
4796 ##################################
4797 # Test interface
4798 ##################################
4799
4800 error_noexit() {
4801         local TYPE=${TYPE:-"FAIL"}
4802
4803         local dump=true
4804         # do not dump logs if $1=false
4805         if [ "x$1" = "xfalse" ]; then
4806                 shift
4807                 dump=false
4808         fi
4809
4810
4811         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
4812         print_stack_trace >&2
4813
4814         mkdir -p $LOGDIR
4815         # We need to dump the logs on all nodes
4816         if $dump; then
4817                 gather_logs $(comma_list $(nodes_list))
4818         fi
4819
4820         debugrestore
4821         [ "$TESTSUITELOG" ] &&
4822                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
4823         if [ -z "$*" ]; then
4824                 echo "error() without useful message, please fix" > $LOGDIR/err
4825         else
4826                 if [[ `echo $TYPE | grep ^IGNORE` ]]; then
4827                         echo "$@" > $LOGDIR/ignore
4828                 else
4829                         echo "$@" > $LOGDIR/err
4830                 fi
4831         fi
4832 }
4833
4834 exit_status () {
4835         local status=0
4836         local log=$TESTSUITELOG
4837
4838         [ -f "$log" ] && grep -q FAIL $log && status=1
4839         exit $status
4840 }
4841
4842 error() {
4843         error_noexit "$@"
4844         exit 1
4845 }
4846
4847 error_exit() {
4848         error "$@"
4849 }
4850
4851 # use only if we are ignoring failures for this test, bugno required.
4852 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
4853 # e.g. error_ignore bz5494 "your message" or
4854 # error_ignore LU-5494 "your message"
4855 error_ignore() {
4856         local TYPE="IGNORE ($1)"
4857         shift
4858         error_noexit "$@"
4859 }
4860
4861 error_and_remount() {
4862         error_noexit "$@"
4863         remount_client $MOUNT
4864         exit 1
4865 }
4866
4867 skip_env () {
4868         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
4869 }
4870
4871 skip() {
4872         echo
4873         log " SKIP: $TESTSUITE $TESTNAME $@"
4874
4875         if [[ -n "$ALWAYS_SKIPPED" ]]; then
4876                 skip_logged $TESTNAME "$@"
4877         else
4878                 mkdir -p $LOGDIR
4879                 echo "$@" > $LOGDIR/skip
4880         fi
4881
4882         [[ -n "$TESTSUITELOG" ]] &&
4883                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
4884 }
4885
4886 build_test_filter() {
4887     EXCEPT="$EXCEPT $(testslist_filter)"
4888
4889         for O in $ONLY; do
4890                 if [[ $O = [0-9]*-[0-9]* ]]; then
4891                         for num in $(seq $(echo $O | tr '-' ' ')); do
4892                                 eval ONLY_$num=true
4893                         done
4894                 else
4895                         eval ONLY_${O}=true
4896                 fi
4897         done
4898
4899     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
4900         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
4901     [ "$EXCEPT_SLOW" ] && \
4902         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
4903     for E in $EXCEPT; do
4904         eval EXCEPT_${E}=true
4905     done
4906     for E in $ALWAYS_EXCEPT; do
4907         eval EXCEPT_ALWAYS_${E}=true
4908     done
4909     for E in $EXCEPT_SLOW; do
4910         eval EXCEPT_SLOW_${E}=true
4911     done
4912     for G in $GRANT_CHECK_LIST; do
4913         eval GCHECK_ONLY_${G}=true
4914         done
4915 }
4916
4917 basetest() {
4918     if [[ $1 = [a-z]* ]]; then
4919         echo $1
4920     else
4921         echo ${1%%[a-z]*}
4922     fi
4923 }
4924
4925 # print a newline if the last test was skipped
4926 export LAST_SKIPPED=
4927 export ALWAYS_SKIPPED=
4928 #
4929 # Main entry into test-framework. This is called with the name and
4930 # description of a test. The name is used to find the function to run
4931 # the test using "test_$name".
4932 #
4933 # This supports a variety of methods of specifying specific test to
4934 # run or not run.  These need to be documented...
4935 #
4936 run_test() {
4937         assert_DIR
4938
4939         export base=$(basetest $1)
4940         if [ -n "$ONLY" ]; then
4941                 testname=ONLY_$1
4942                 if [ ${!testname}x != x ]; then
4943                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4944                         run_one_logged $1 "$2"
4945                         return $?
4946                 fi
4947                 testname=ONLY_$base
4948                 if [ ${!testname}x != x ]; then
4949                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4950                         run_one_logged $1 "$2"
4951                         return $?
4952                 fi
4953                 LAST_SKIPPED="y"
4954                 return 0
4955         fi
4956
4957         LAST_SKIPPED="y"
4958         ALWAYS_SKIPPED="y"
4959         testname=EXCEPT_$1
4960         if [ ${!testname}x != x ]; then
4961                 TESTNAME=test_$1 skip "skipping excluded test $1"
4962                 return 0
4963         fi
4964         testname=EXCEPT_$base
4965         if [ ${!testname}x != x ]; then
4966                 TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4967                 return 0
4968         fi
4969         testname=EXCEPT_ALWAYS_$1
4970         if [ ${!testname}x != x ]; then
4971                 TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4972                 return 0
4973         fi
4974         testname=EXCEPT_ALWAYS_$base
4975         if [ ${!testname}x != x ]; then
4976                 TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4977                 return 0
4978         fi
4979         testname=EXCEPT_SLOW_$1
4980         if [ ${!testname}x != x ]; then
4981                 TESTNAME=test_$1 skip "skipping SLOW test $1"
4982                 return 0
4983         fi
4984         testname=EXCEPT_SLOW_$base
4985         if [ ${!testname}x != x ]; then
4986                 TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4987                 return 0
4988         fi
4989
4990         LAST_SKIPPED=
4991         ALWAYS_SKIPPED=
4992         run_one_logged $1 "$2"
4993
4994         return $?
4995 }
4996
4997 log() {
4998         echo "$*" >&2
4999         load_module ../libcfs/libcfs/libcfs
5000
5001     local MSG="$*"
5002     # Get rid of '
5003     MSG=${MSG//\'/\\\'}
5004     MSG=${MSG//\(/\\\(}
5005     MSG=${MSG//\)/\\\)}
5006     MSG=${MSG//\;/\\\;}
5007     MSG=${MSG//\|/\\\|}
5008     MSG=${MSG//\>/\\\>}
5009     MSG=${MSG//\</\\\<}
5010     MSG=${MSG//\//\\\/}
5011     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
5012 }
5013
5014 trace() {
5015         log "STARTING: $*"
5016         strace -o $TMP/$1.strace -ttt $*
5017         RC=$?
5018         log "FINISHED: $*: rc $RC"
5019         return 1
5020 }
5021
5022 complete () {
5023     local duration=$1
5024
5025     banner test complete, duration $duration sec
5026     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
5027     echo duration $duration >>$TESTSUITELOG
5028 }
5029
5030 pass() {
5031         # Set TEST_STATUS here. It will be used for logging the result.
5032         TEST_STATUS="PASS"
5033
5034         if [[ -f $LOGDIR/err ]]; then
5035                 TEST_STATUS="FAIL"
5036         elif [[ -f $LOGDIR/skip ]]; then
5037                 TEST_STATUS="SKIP"
5038         fi
5039         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
5040 }
5041
5042 check_mds() {
5043     local FFREE=$(do_node $SINGLEMDS \
5044         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
5045     local FTOTAL=$(do_node $SINGLEMDS \
5046         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
5047
5048     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
5049 }
5050
5051 reset_fail_loc () {
5052     echo -n "Resetting fail_loc on all nodes..."
5053     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 \
5054             fail_val=0 2>/dev/null || true"
5055     echo done.
5056 }
5057
5058
5059 #
5060 # Log a message (on all nodes) padded with "=" before and after. 
5061 # Also appends a timestamp and prepends the testsuite name.
5062
5063
5064 EQUALS="===================================================================================================="
5065 banner() {
5066     msg="== ${TESTSUITE} $*"
5067     last=${msg: -1:1}
5068     [[ $last != "=" && $last != " " ]] && msg="$msg "
5069     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
5070     # always include at least == after the message
5071     log "$msg== $(date +"%H:%M:%S (%s)")"
5072 }
5073
5074 #
5075 # Run a single test function and cleanup after it.
5076 #
5077 # This function should be run in a subshell so the test func can
5078 # exit() without stopping the whole script.
5079 #
5080 run_one() {
5081         local testnum=$1
5082         local message=$2
5083         export tfile=f${testnum}.${TESTSUITE}
5084         export tdir=d${testnum}.${TESTSUITE}
5085         export TESTNAME=test_$testnum
5086         local SAVE_UMASK=`umask`
5087         umask 0022
5088
5089         banner "test $testnum: $message"
5090         test_${testnum} || error "test_$testnum failed with $?"
5091         cd $SAVE_PWD
5092         reset_fail_loc
5093         check_grant ${testnum} || error "check_grant $testnum failed with $?"
5094         check_catastrophe || error "LBUG/LASSERT detected"
5095         if [ "$PARALLEL" != "yes" ]; then
5096                 ps auxww | grep -v grep | grep -q multiop &&
5097                                         error "multiop still running"
5098         fi
5099         unset TESTNAME
5100         unset tdir
5101         unset tfile
5102         umask $SAVE_UMASK
5103         return 0
5104 }
5105
5106 #
5107 # Wrapper around run_one to ensure:
5108 #  - test runs in subshell
5109 #  - output of test is saved to separate log file for error reporting
5110 #  - test result is saved to data file
5111 #
5112 run_one_logged() {
5113         local BEFORE=$(date +%s)
5114         local TEST_ERROR
5115         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
5116         local test_log=$LOGDIR/$name
5117         local zfs_log_name=${TESTSUITE}.test_${1}.zfs_log
5118         local zfs_debug_log=$LOGDIR/$zfs_log_name
5119         rm -rf $LOGDIR/err
5120         rm -rf $LOGDIR/ignore
5121         rm -rf $LOGDIR/skip
5122         local SAVE_UMASK=$(umask)
5123         umask 0022
5124
5125         echo
5126         log_sub_test_begin test_${1}
5127         (run_one $1 "$2") 2>&1 | tee -i $test_log
5128         local RC=${PIPESTATUS[0]}
5129
5130         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] &&
5131                 echo "test_$1 returned $RC" | tee $LOGDIR/err
5132
5133         duration=$(($(date +%s) - $BEFORE))
5134         pass "$1" "(${duration}s)"
5135
5136         if [[ -f $LOGDIR/err ]]; then
5137                 TEST_ERROR=$(cat $LOGDIR/err)
5138         elif [[ -f $LOGDIR/ignore ]]; then
5139                 TEST_ERROR=$(cat $LOGDIR/ignore)
5140         elif [[ -f $LOGDIR/skip ]]; then
5141                 TEST_ERROR=$(cat $LOGDIR/skip)
5142         fi
5143         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
5144
5145         if [[ "$TEST_STATUS" != "SKIP" ]] && [[ -f $TF_SKIP ]]; then
5146                 rm -f $TF_SKIP
5147         fi
5148
5149         if [ -f $LOGDIR/err ]; then
5150                 log_zfs_info "$zfs_debug_log"
5151                 $FAIL_ON_ERROR && exit $RC
5152         fi
5153
5154         umask $SAVE_UMASK
5155
5156         return 0
5157 }
5158
5159 #
5160 # Print information of skipped tests to result.yml
5161 #
5162 skip_logged(){
5163         log_sub_test_begin $1
5164         shift
5165         log_sub_test_end "SKIP" "0" "0" "$@"
5166 }
5167
5168 canonical_path() {
5169         (cd $(dirname $1); echo $PWD/$(basename $1))
5170 }
5171
5172
5173 check_grant() {
5174         export base=$(basetest $1)
5175         [ "$CHECK_GRANT" == "no" ] && return 0
5176
5177         testname=GCHECK_ONLY_${base}
5178         [ ${!testname}x == x ] && return 0
5179
5180         echo -n "checking grant......"
5181
5182         local clients=$CLIENTS
5183         [ -z "$clients" ] && clients=$(hostname)
5184
5185         # sync all the data and make sure no pending data on server
5186         do_nodes $clients sync
5187
5188         # get client grant
5189         client_grant=$(do_nodes $clients \
5190                 "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" |
5191                 awk '{ total += $1 } END { printf("%0.0f", total) }')
5192
5193         # get server grant
5194         server_grant=$(do_nodes $(comma_list $(osts_nodes)) \
5195                 "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" |
5196                 awk '{ total += $1 } END { printf("%0.0f", total) }')
5197
5198         # check whether client grant == server grant
5199         if [[ $client_grant -ne $server_grant ]]; then
5200                 echo "failed: client:${client_grant} server: ${server_grant}."
5201                 do_nodes $(comma_list $(osts_nodes)) \
5202                         "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
5203                 do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
5204                 return 1
5205         else
5206                 echo "pass: client:${client_grant} server: ${server_grant}"
5207         fi
5208 }
5209
5210 ########################
5211 # helper functions
5212
5213 osc_to_ost()
5214 {
5215     osc=$1
5216     ost=`echo $1 | awk -F_ '{print $3}'`
5217     if [ -z $ost ]; then
5218         ost=`echo $1 | sed 's/-osc.*//'`
5219     fi
5220     echo $ost
5221 }
5222
5223 ostuuid_from_index()
5224 {
5225     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
5226 }
5227
5228 ostname_from_index() {
5229     local uuid=$(ostuuid_from_index $1)
5230     echo ${uuid/_UUID/}
5231 }
5232
5233 index_from_ostuuid()
5234 {
5235     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
5236 }
5237
5238 mdtuuid_from_index()
5239 {
5240     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
5241 }
5242
5243 # Description:
5244 #   Return unique identifier for given hostname
5245 host_id() {
5246         local host_name=$1
5247         echo $host_name | md5sum | cut -d' ' -f1
5248 }
5249
5250 # Description:
5251 #   Returns list of ip addresses for each interface
5252 local_addr_list() {
5253         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
5254 }
5255
5256 is_local_addr() {
5257         local addr=$1
5258         # Cache address list to avoid mutiple execution of local_addr_list
5259         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
5260         local i
5261         for i in $LOCAL_ADDR_LIST ; do
5262                 [[ "$i" == "$addr" ]] && return 0
5263         done
5264         return 1
5265 }
5266
5267 local_node() {
5268         local host_name=$1
5269         local is_local="IS_LOCAL_$(host_id $host_name)"
5270         if [ -z "${!is_local-}" ] ; then
5271                 eval $is_local=0
5272                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
5273                 is_local_addr "$host_ip" && eval $is_local=1
5274         fi
5275         [[ "${!is_local}" == "1" ]]
5276 }
5277
5278 remote_node () {
5279         local node=$1
5280         local_node $node && return 1
5281         return 0
5282 }
5283
5284 remote_mds ()
5285 {
5286     local node
5287     for node in $(mdts_nodes); do
5288         remote_node $node && return 0
5289     done
5290     return 1
5291 }
5292
5293 remote_mds_nodsh()
5294 {
5295     [ "$CLIENTONLY" ] && return 0 || true
5296     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
5297 }
5298
5299 require_dsh_mds()
5300 {
5301         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
5302             MSKIPPED=1 && return 1
5303         return 0
5304 }
5305
5306 remote_ost ()
5307 {
5308     local node
5309     for node in $(osts_nodes) ; do
5310         remote_node $node && return 0
5311     done
5312     return 1
5313 }
5314
5315 remote_ost_nodsh()
5316 {
5317     [ "$CLIENTONLY" ] && return 0 || true 
5318     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
5319 }
5320
5321 require_dsh_ost()
5322 {
5323         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
5324             OSKIPPED=1 && return 1
5325         return 0
5326 }
5327
5328 remote_mgs_nodsh()
5329 {
5330         [ "$CLIENTONLY" ] && return 0 || true
5331     local MGS 
5332     MGS=$(facet_host mgs)
5333     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
5334 }
5335
5336 local_mode ()
5337 {
5338     remote_mds_nodsh || remote_ost_nodsh || \
5339         $(single_local_node $(comma_list $(nodes_list)))
5340 }
5341
5342 remote_servers () {
5343     remote_ost && remote_mds
5344 }
5345
5346 # Get the active nodes for facets.
5347 facets_nodes () {
5348         local facets=$1
5349         local facet
5350         local nodes
5351         local nodes_sort
5352         local i
5353
5354         for facet in ${facets//,/ }; do
5355                 nodes="$nodes $(facet_active_host $facet)"
5356         done
5357
5358         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5359         echo -n $nodes_sort
5360 }
5361
5362 # Get all of the active MDS nodes.
5363 mdts_nodes () {
5364         echo -n $(facets_nodes $(get_facets MDS))
5365 }
5366
5367 # Get all of the active OSS nodes.
5368 osts_nodes () {
5369         echo -n $(facets_nodes $(get_facets OST))
5370 }
5371
5372 # Get all of the active AGT (HSM agent) nodes.
5373 agts_nodes () {
5374         echo -n $(facets_nodes $(get_facets AGT))
5375 }
5376
5377 # Get all of the client nodes and active server nodes.
5378 nodes_list () {
5379         local nodes=$HOSTNAME
5380         local nodes_sort
5381         local i
5382
5383         # CLIENTS (if specified) contains the local client
5384         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
5385
5386         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
5387                 nodes="$nodes $(facets_nodes $(get_facets))"
5388         fi
5389
5390         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5391         echo -n $nodes_sort
5392 }
5393
5394 # Get all of the remote client nodes and remote active server nodes.
5395 remote_nodes_list () {
5396         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
5397 }
5398
5399 # Get all of the MDS nodes, including active and passive nodes.
5400 all_mdts_nodes () {
5401         local host
5402         local failover_host
5403         local nodes
5404         local nodes_sort
5405         local i
5406
5407         for i in $(seq $MDSCOUNT); do
5408                 host=mds${i}_HOST
5409                 failover_host=mds${i}failover_HOST
5410                 nodes="$nodes ${!host} ${!failover_host}"
5411         done
5412
5413         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5414         echo -n $nodes_sort
5415 }
5416
5417 # Get all of the OSS nodes, including active and passive nodes.
5418 all_osts_nodes () {
5419         local host
5420         local failover_host
5421         local nodes
5422         local nodes_sort
5423         local i
5424
5425         for i in $(seq $OSTCOUNT); do
5426                 host=ost${i}_HOST
5427                 failover_host=ost${i}failover_HOST
5428                 nodes="$nodes ${!host} ${!failover_host}"
5429         done
5430
5431         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5432         echo -n $nodes_sort
5433 }
5434
5435 # Get all of the server nodes, including active and passive nodes.
5436 all_server_nodes () {
5437         local nodes
5438         local nodes_sort
5439         local i
5440
5441         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
5442
5443         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5444         echo -n $nodes_sort
5445 }
5446
5447 # Get all of the client and server nodes, including active and passive nodes.
5448 all_nodes () {
5449         local nodes=$HOSTNAME
5450         local nodes_sort
5451         local i
5452
5453         # CLIENTS (if specified) contains the local client
5454         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
5455
5456         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
5457                 nodes="$nodes $(all_server_nodes)"
5458         fi
5459
5460         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
5461         echo -n $nodes_sort
5462 }
5463
5464 init_clients_lists () {
5465     # Sanity check: exclude the local client from RCLIENTS
5466     local clients=$(hostlist_expand "$RCLIENTS")
5467     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
5468
5469     # Sanity check: exclude the dup entries
5470     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
5471
5472     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
5473
5474     # Sanity check: exclude the dup entries from CLIENTS
5475     # for those configs which has SINGLCLIENT set to local client
5476     clients=$(for i in $clients; do echo $i; done | sort -u)
5477
5478     CLIENTS=$(comma_list $clients)
5479     local -a remoteclients=($RCLIENTS)
5480     for ((i=0; $i<${#remoteclients[@]}; i++)); do
5481             varname=CLIENT$((i + 2))
5482             eval $varname=${remoteclients[i]}
5483     done
5484
5485     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
5486 }
5487
5488 get_random_entry () {
5489     local rnodes=$1
5490
5491     rnodes=${rnodes//,/ }
5492
5493     local -a nodes=($rnodes)
5494     local num=${#nodes[@]} 
5495     local i=$((RANDOM * num * 2 / 65536))
5496
5497     echo ${nodes[i]}
5498 }
5499
5500 client_only () {
5501     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
5502 }
5503
5504 is_patchless ()
5505 {
5506     lctl get_param version | grep -q patchless
5507 }
5508
5509 check_versions () {
5510     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
5511       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
5512 }
5513
5514 get_node_count() {
5515     local nodes="$@"
5516     echo $nodes | wc -w || true
5517 }
5518
5519 mixed_ost_devs () {
5520     local nodes=$(osts_nodes)
5521     local osscount=$(get_node_count "$nodes")
5522     [ ! "$OSTCOUNT" = "$osscount" ]
5523 }
5524
5525 mixed_mdt_devs () {
5526     local nodes=$(mdts_nodes)
5527     local mdtcount=$(get_node_count "$nodes")
5528     [ ! "$MDSCOUNT" = "$mdtcount" ]
5529 }
5530
5531 generate_machine_file() {
5532     local nodes=${1//,/ }
5533     local machinefile=$2
5534     rm -f $machinefile
5535     for node in $nodes; do
5536         echo $node >>$machinefile || \
5537             { echo "can not generate machinefile $machinefile" && return 1; }
5538     done
5539 }
5540
5541 get_stripe () {
5542         local file=$1/stripe
5543
5544         touch $file
5545         $LFS getstripe -v $file || error "getstripe $file failed"
5546         rm -f $file
5547 }
5548
5549 setstripe_nfsserver () {
5550         local dir=$1
5551
5552         local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
5553                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -n1)
5554
5555         [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
5556
5557         do_nodev $nfsserver lfs setstripe "$@"
5558 }
5559
5560 # Check and add a test group.
5561 add_group() {
5562         local group_id=$1
5563         local group_name=$2
5564         local rc=0
5565
5566         local gid=$(getent group $group_name | cut -d: -f3)
5567         if [[ -n "$gid" ]]; then
5568                 [[ "$gid" -eq "$group_id" ]] || {
5569                         error_noexit "inconsistent group ID:" \
5570                                      "new: $group_id, old: $gid"
5571                         rc=1
5572                 }
5573         else
5574                 groupadd -g $group_id $group_name
5575                 rc=${PIPESTATUS[0]}
5576         fi
5577
5578         return $rc
5579 }
5580
5581 # Check and add a test user.
5582 add_user() {
5583         local user_id=$1
5584         shift
5585         local user_name=$1
5586         shift
5587         local group_name=$1
5588         shift
5589         local home=$1
5590         shift
5591         local opts="$@"
5592         local rc=0
5593
5594         local uid=$(getent passwd $user_name | cut -d: -f3)
5595         if [[ -n "$uid" ]]; then
5596                 if [[ "$uid" -eq "$user_id" ]]; then
5597                         local dir=$(getent passwd $user_name | cut -d: -f6)
5598                         if [[ "$dir" != "$home" ]]; then
5599                                 mkdir -p $home
5600                                 usermod -d $home $user_name
5601                                 rc=${PIPESTATUS[0]}
5602                         fi
5603                 else
5604                         error_noexit "inconsistent user ID:" \
5605                                      "new: $user_id, old: $uid"
5606                         rc=1
5607                 fi
5608         else
5609                 mkdir -p $home
5610                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
5611                 rc=${PIPESTATUS[0]}
5612         fi
5613
5614         return $rc
5615 }
5616
5617 check_runas_id_ret() {
5618     local myRC=0
5619     local myRUNAS_UID=$1
5620     local myRUNAS_GID=$2
5621     shift 2
5622     local myRUNAS=$@
5623     if [ -z "$myRUNAS" ]; then
5624         error_exit "myRUNAS command must be specified for check_runas_id"
5625     fi
5626     if $GSS_KRB5; then
5627         $myRUNAS krb5_login.sh || \
5628             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
5629     fi
5630     mkdir $DIR/d0_runas_test
5631     chmod 0755 $DIR
5632     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
5633     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
5634     rm -rf $DIR/d0_runas_test
5635     return $myRC
5636 }
5637
5638 check_runas_id() {
5639     local myRUNAS_UID=$1
5640     local myRUNAS_GID=$2
5641     shift 2
5642     local myRUNAS=$@
5643     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
5644         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
5645         Please set RUNAS_ID to some UID which exists on MDS and client or
5646         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
5647 }
5648
5649 # obtain the UID/GID for MPI_USER
5650 get_mpiuser_id() {
5651     local mpi_user=$1
5652
5653     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
5654 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
5655
5656     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
5657 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
5658 }
5659
5660 # obtain and cache Kerberos ticket-granting ticket
5661 refresh_krb5_tgt() {
5662     local myRUNAS_UID=$1
5663     local myRUNAS_GID=$2
5664     shift 2
5665     local myRUNAS=$@
5666     if [ -z "$myRUNAS" ]; then
5667         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
5668     fi
5669
5670     CLIENTS=${CLIENTS:-$HOSTNAME}
5671     do_nodes $CLIENTS "set -x
5672 if ! $myRUNAS krb5_login.sh; then
5673     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
5674     exit 1
5675 fi"
5676 }
5677
5678 # Run multiop in the background, but wait for it to print
5679 # "PAUSING" to its stdout before returning from this function.
5680 multiop_bg_pause() {
5681     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
5682     FILE=$1
5683     ARGS=$2
5684
5685     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
5686     mkfifo $TMPPIPE
5687
5688     echo "$MULTIOP_PROG $FILE v$ARGS"
5689     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
5690
5691     echo "TMPPIPE=${TMPPIPE}"
5692     read -t 60 multiop_output < $TMPPIPE
5693     if [ $? -ne 0 ]; then
5694         rm -f $TMPPIPE
5695         return 1
5696     fi
5697     rm -f $TMPPIPE
5698     if [ "$multiop_output" != "PAUSING" ]; then
5699         echo "Incorrect multiop output: $multiop_output"
5700         kill -9 $PID
5701         return 1
5702     fi
5703
5704     return 0
5705 }
5706
5707 do_and_time () {
5708     local cmd=$1
5709     local rc
5710
5711     SECONDS=0
5712     eval '$cmd'
5713
5714     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
5715
5716     echo $SECONDS
5717     return $rc
5718 }
5719
5720 inodes_available () {
5721         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
5722                 sort -un | head -n1) || return 1
5723         echo $((IFree))
5724 }
5725
5726 mdsrate_inodes_available () {
5727     local min_inodes=$(inodes_available)
5728     echo $((min_inodes * 99 / 100))
5729 }
5730
5731 # reset llite stat counters
5732 clear_llite_stats(){
5733         lctl set_param -n llite.*.stats 0
5734 }
5735
5736 # sum llite stat items
5737 calc_llite_stats() {
5738         local res=$(lctl get_param -n llite.*.stats |
5739                 awk '/^'"$1"'/ {sum += $2} END { printf("%0.0f", sum) }')
5740         echo $((res))
5741 }
5742
5743 # reset osc stat counters
5744 clear_osc_stats(){
5745         lctl set_param -n osc.*.osc_stats 0
5746 }
5747
5748 # sum osc stat items
5749 calc_osc_stats() {
5750         local res=$(lctl get_param -n osc.*.osc_stats |
5751                 awk '/^'"$1"'/ {sum += $2} END { printf("%0.0f", sum) }')
5752         echo $((res))
5753 }
5754
5755 calc_sum () {
5756         awk '{sum += $1} END { printf("%0.0f", sum) }'
5757 }
5758
5759 calc_osc_kbytes () {
5760         df $MOUNT > /dev/null
5761         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
5762 }
5763
5764 # save_lustre_params(comma separated facet list, parameter_mask)
5765 # generate a stream of formatted strings (<facet> <param name>=<param value>)
5766 save_lustre_params() {
5767         local facets=$1
5768         local facet
5769         local nodes
5770         local node
5771
5772         for facet in ${facets//,/ }; do
5773                 node=$(facet_active_host $facet)
5774                 [[ *\ $node\ * = " $nodes " ]] && continue
5775                 nodes="$nodes $node"
5776
5777                 do_node $node "$LCTL get_param $2 |
5778                         while read s; do echo $facet \\\$s; done"
5779         done
5780 }
5781
5782 # restore lustre parameters from input stream, produces by save_lustre_params
5783 restore_lustre_params() {
5784         local facet
5785         local name
5786         local val
5787
5788         while IFS=" =" read facet name val; do
5789                 do_facet $facet "$LCTL set_param -n $name $val"
5790         done
5791 }
5792
5793 check_catastrophe() {
5794         local nodes=${1:-$(comma_list $(nodes_list))}
5795
5796         do_nodes $nodes "rc=0;
5797 val=\\\$($LCTL get_param -n catastrophe 2>&1);
5798 if [[ \\\$? -eq 0 && \\\$val -ne 0 ]]; then
5799         echo \\\$(hostname -s): \\\$val;
5800         rc=\\\$val;
5801 fi;
5802 exit \\\$rc"
5803 }
5804
5805 mdsrate_cleanup () {
5806         if [ -d $4 ]; then
5807                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
5808                         --nfiles $3 --dir $4 --filefmt $5 $6
5809                 rmdir $4
5810         fi
5811 }
5812
5813 delayed_recovery_enabled () {
5814     local var=${SINGLEMDS}_svc
5815     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
5816 }
5817
5818 ########################
5819
5820 convert_facet2label() {
5821     local facet=$1
5822
5823     if [ x$facet = xost ]; then
5824        facet=ost1
5825     fi
5826
5827     local varsvc=${facet}_svc
5828
5829     if [ -n ${!varsvc} ]; then
5830         echo ${!varsvc}
5831     else
5832         error "No lablel for $facet!"
5833     fi
5834 }
5835
5836 get_clientosc_proc_path() {
5837         echo "${1}-osc-*"
5838 }
5839
5840 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
5841 # used by MDT would not be changed.
5842 # mdt lov: fsname-mdtlov
5843 # mdt osc: fsname-OSTXXXX-osc
5844 mds_on_old_device() {
5845     local mds=${1:-"$SINGLEMDS"}
5846
5847     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
5848         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
5849             > /dev/null 2>&1" && return 0
5850     fi
5851     return 1
5852 }
5853
5854 get_mdtosc_proc_path() {
5855         local mds_facet=$1
5856         local ost_label=${2:-"*OST*"}
5857
5858         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
5859         local mdt_label=$(convert_facet2label $mds_facet)
5860         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
5861
5862         if [ $(lustre_version_code $mds_facet) -le $(version_code 1.8.0) ] ||
5863            mds_on_old_device $mds_facet; then
5864                 echo "${ost_label}-osc"
5865         elif [[ $ost_label = *OST* ]]; then
5866                 echo "${ost_label}-osc-${mdt_index}"
5867         else
5868                 echo "${ost_label}-osp-${mdt_index}"
5869         fi
5870 }
5871
5872 get_osc_import_name() {
5873     local facet=$1
5874     local ost=$2
5875     local label=$(convert_facet2label $ost)
5876
5877     if [ "${facet:0:3}" = "mds" ]; then
5878         get_mdtosc_proc_path $facet $label
5879         return 0
5880     fi
5881
5882     get_clientosc_proc_path $label
5883     return 0
5884 }
5885
5886 _wait_import_state () {
5887     local expected=$1
5888     local CONN_PROC=$2
5889     local maxtime=${3:-$(max_recovery_time)}
5890     local error_on_failure=${4:-1}
5891     local CONN_STATE
5892     local i=0
5893
5894         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5895     while [ "${CONN_STATE}" != "${expected}" ]; do
5896         if [ "${expected}" == "DISCONN" ]; then
5897             # for disconn we can check after proc entry is removed
5898             [ "x${CONN_STATE}" == "x" ] && return 0
5899             #  with AT enabled, we can have connect request timeout near of
5900             # reconnect timeout and test can't see real disconnect
5901             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
5902         fi
5903         if [ $i -ge $maxtime ]; then
5904             [ $error_on_failure -ne 0 ] && \
5905                 error "can't put import for $CONN_PROC into ${expected}" \
5906                       "state after $i sec, have ${CONN_STATE}"
5907             return 1
5908         fi
5909         sleep 1
5910         # Add uniq for multi-mount case
5911         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5912         i=$(($i + 1))
5913     done
5914
5915     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
5916     return 0
5917 }
5918
5919 wait_import_state() {
5920     local state=$1
5921     local params=$2
5922     local maxtime=${3:-$(max_recovery_time)}
5923     local error_on_failure=${4:-1}
5924     local param
5925
5926     for param in ${params//,/ }; do
5927         _wait_import_state $state $param $maxtime $error_on_failure || return
5928     done
5929 }
5930
5931 wait_import_state_mount() {
5932         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5933                 return 0
5934         fi
5935
5936         wait_import_state $*
5937 }
5938
5939 # One client request could be timed out because server was not ready
5940 # when request was sent by client.
5941 # The request timeout calculation details :
5942 # ptl_send_rpc ()
5943 #      /* We give the server rq_timeout secs to process the req, and
5944 #      add the network latency for our local timeout. */
5945 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
5946 #           ptlrpc_at_get_net_latency(request) ;
5947 #
5948 # ptlrpc_connect_import ()
5949 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5950 #
5951 # init_imp_at () ->
5952 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
5953 # ptlrpc_at_get_net_latency(request) ->
5954 #       at_get (max (iat_net_latency=0, at_min)) = at_min
5955 #
5956 # i.e.:
5957 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
5958 # INITIAL_CONNECT_TIMEOUT + at_min
5959 #
5960 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
5961 # because we can not get this value in runtime,
5962 # the value depends on configure options, and it is not stored in /proc.
5963 # obd_support.h:
5964 # #define CONNECTION_SWITCH_MIN 5U
5965 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5966
5967 request_timeout () {
5968     local facet=$1
5969
5970     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5971     local init_connect_timeout=$TIMEOUT
5972     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5973
5974     local at_min=$(at_get $facet at_min)
5975
5976     echo $(( init_connect_timeout + at_min ))
5977 }
5978
5979 _wait_osc_import_state() {
5980         local facet=$1
5981         local ost_facet=$2
5982         local expected=$3
5983         local target=$(get_osc_import_name $facet $ost_facet)
5984         local param="osc.${target}.ost_server_uuid"
5985         local params=$param
5986         local i=0
5987
5988         # 1. wait the deadline of client 1st request (it could be skipped)
5989         # 2. wait the deadline of client 2nd request
5990         local maxtime=$(( 2 * $(request_timeout $facet)))
5991
5992         if [[ $facet == client* ]]; then
5993                 # During setup time, the osc might not be setup, it need wait
5994                 # until list_param can return valid value. And also if there
5995                 # are mulitple osc entries we should list all of them before
5996                 # go to wait.
5997                 params=$($LCTL list_param $param 2>/dev/null || true)
5998                 while [ -z "$params" ]; do
5999                         if [ $i -ge $maxtime ]; then
6000                                 echo "can't get $param in $maxtime secs"
6001                                 return 1
6002                         fi
6003                         sleep 1
6004                         i=$((i + 1))
6005                         params=$($LCTL list_param $param 2>/dev/null || true)
6006                 done
6007         fi
6008
6009         if [[ $ost_facet = mds* ]]; then
6010                 # no OSP connection to itself
6011                 if [[ $facet = $ost_facet ]]; then
6012                         return 0
6013                 fi
6014                 param="osp.${target}.mdt_server_uuid"
6015                 params=$param
6016         fi
6017
6018         if ! do_rpc_nodes "$(facet_active_host $facet)" \
6019                         wait_import_state $expected "$params" $maxtime; then
6020                 error "import is not in ${expected} state"
6021                 return 1
6022         fi
6023
6024         return 0
6025 }
6026
6027 wait_osc_import_state() {
6028         local facet=$1
6029         local ost_facet=$2
6030         local expected=$3
6031         local num
6032
6033         if [[ $facet = mds ]]; then
6034                 for num in $(seq $MDSCOUNT); do
6035                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
6036                 done
6037         else
6038                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
6039         fi
6040 }
6041
6042 _wait_mgc_import_state() {
6043         local facet=$1
6044         local expected=$2
6045         local error_on_failure=${3:-1}
6046         local param="mgc.*.mgs_server_uuid"
6047         local params=$param
6048         local i=0
6049
6050         # 1. wait the deadline of client 1st request (it could be skipped)
6051         # 2. wait the deadline of client 2nd request
6052         local maxtime=$(( 2 * $(request_timeout $facet)))
6053
6054         if [[ $facet == client* ]]; then
6055                 # During setup time, the osc might not be setup, it need wait
6056                 # until list_param can return valid value. And also if there
6057                 # are mulitple osc entries we should list all of them before
6058                 # go to wait.
6059                 params=$($LCTL list_param $param 2>/dev/null || true)
6060                 while [ -z "$params" ]; do
6061                         if [ $i -ge $maxtime ]; then
6062                                 echo "can't get $param in $maxtime secs"
6063                                 return 1
6064                         fi
6065                         sleep 1
6066                         i=$((i + 1))
6067                         params=$($LCTL list_param $param 2>/dev/null || true)
6068                 done
6069         fi
6070         if ! do_rpc_nodes "$(facet_active_host $facet)" \
6071                         wait_import_state $expected "$params" $maxtime \
6072                                           $error_on_failure; then
6073                 if [ $error_on_failure -ne 0 ]; then
6074                     error "import is not in ${expected} state"
6075                 fi
6076                 return 1
6077         fi
6078
6079         return 0
6080 }
6081
6082 wait_mgc_import_state() {
6083         local facet=$1
6084         local expected=$2
6085         local error_on_failure=${3:-1}
6086         local num
6087
6088         if [[ $facet = mds ]]; then
6089                 for num in $(seq $MDSCOUNT); do
6090                         _wait_mgc_import_state mds$num "$expected" \
6091                                                $error_on_failure || return
6092                 done
6093         else
6094                 _wait_mgc_import_state "$facet" "$expected"
6095                                        $error_on_failure || return
6096         fi
6097 }
6098
6099 wait_dne_interconnect() {
6100         local num
6101
6102         if [ $MDSCOUNT -gt 1 ]; then
6103                 for num in $(seq $MDSCOUNT); do
6104                         wait_osc_import_state mds mds$num FULL
6105                 done
6106         fi
6107 }
6108
6109 get_clientmdc_proc_path() {
6110     echo "${1}-mdc-*"
6111 }
6112
6113 get_clientmgc_proc_path() {
6114     echo "*"
6115 }
6116
6117 do_rpc_nodes () {
6118         local list=$1
6119         shift
6120
6121         [ -z "$list" ] && return 0
6122
6123         # Add paths to lustre tests for 32 and 64 bit systems.
6124         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
6125         local TESTPATH="$RLUSTRE/tests:"
6126         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
6127         do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
6128 }
6129
6130 wait_clients_import_state () {
6131         local list=$1
6132         local facet=$2
6133         local expected=$3
6134
6135         local facets=$facet
6136
6137         if [ "$FAILURE_MODE" = HARD ]; then
6138                 facets=$(facets_on_host $(facet_active_host $facet))
6139         fi
6140
6141         for facet in ${facets//,/ }; do
6142                 local label=$(convert_facet2label $facet)
6143                 local proc_path
6144                 case $facet in
6145                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
6146                                   $label).ost_server_uuid" ;;
6147                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
6148                                   $label).mds_server_uuid" ;;
6149                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
6150                                   $label).mgs_server_uuid" ;;
6151                 *) error "unknown facet!" ;;
6152                 esac
6153
6154                 local params=$(expand_list $params $proc_path)
6155         done
6156
6157         if ! do_rpc_nodes "$list" wait_import_state_mount $expected $params;
6158         then
6159                 error "import is not in ${expected} state"
6160                 return 1
6161         fi
6162 }
6163
6164 oos_full() {
6165         local -a AVAILA
6166         local -a GRANTA
6167         local -a TOTALA
6168         local OSCFULL=1
6169         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
6170                   $LCTL get_param obdfilter.*.kbytesavail))
6171         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
6172                   $LCTL get_param -n obdfilter.*.tot_granted))
6173         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
6174                   $LCTL get_param -n obdfilter.*.kbytestotal))
6175         for ((i=0; i<${#AVAILA[@]}; i++)); do
6176                 local -a AVAIL1=(${AVAILA[$i]//=/ })
6177                 local -a TOTAL=(${TOTALA[$i]//=/ })
6178                 GRANT=$((${GRANTA[$i]}/1024))
6179                 # allow 1% of total space in bavail because of delayed
6180                 # allocation with ZFS which might release some free space after
6181                 # txg commit.  For small devices, we set a mininum of 8MB
6182                 local LIMIT=$((${TOTAL} / 100 + 8000))
6183                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
6184                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
6185                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
6186                         echo " FULL" || echo
6187         done
6188         return $OSCFULL
6189 }
6190
6191 pool_list () {
6192    do_facet mgs lctl pool_list $1
6193 }
6194
6195 create_pool() {
6196     local fsname=${1%%.*}
6197     local poolname=${1##$fsname.}
6198
6199     do_facet mgs lctl pool_new $1
6200     local RC=$?
6201     # get param should return err unless pool is created
6202     [[ $RC -ne 0 ]] && return $RC
6203
6204     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
6205         2>/dev/null || echo foo" "" || RC=1
6206     if [[ $RC -eq 0 ]]; then
6207         add_pool_to_list $1
6208     else
6209         error "pool_new failed $1"
6210     fi
6211     return $RC
6212 }
6213
6214 add_pool_to_list () {
6215     local fsname=${1%%.*}
6216     local poolname=${1##$fsname.}
6217
6218     local listvar=${fsname}_CREATED_POOLS
6219     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
6220 }
6221
6222 remove_pool_from_list () {
6223     local fsname=${1%%.*}
6224     local poolname=${1##$fsname.}
6225
6226     local listvar=${fsname}_CREATED_POOLS
6227     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
6228 }
6229
6230 destroy_pool_int() {
6231     local ost
6232     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
6233         awk '$1 !~ /^Pool:/ {print $1}')
6234     for ost in $OSTS; do
6235         do_facet mgs lctl pool_remove $1 $ost
6236     done
6237     do_facet mgs lctl pool_destroy $1
6238 }
6239
6240 # <fsname>.<poolname> or <poolname>
6241 destroy_pool() {
6242     local fsname=${1%%.*}
6243     local poolname=${1##$fsname.}
6244
6245     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
6246
6247     local RC
6248
6249     pool_list $fsname.$poolname || return $?
6250
6251     destroy_pool_int $fsname.$poolname
6252     RC=$?
6253     [[ $RC -ne 0 ]] && return $RC
6254
6255     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
6256       2>/dev/null || echo foo" "foo" || RC=1
6257
6258     if [[ $RC -eq 0 ]]; then
6259         remove_pool_from_list $fsname.$poolname
6260     else
6261         error "destroy pool failed $1"
6262     fi
6263     return $RC
6264 }
6265
6266 destroy_pools () {
6267     local fsname=${1:-$FSNAME}
6268     local poolname
6269     local listvar=${fsname}_CREATED_POOLS
6270
6271     pool_list $fsname
6272
6273     [ x${!listvar} = x ] && return 0
6274
6275     echo destroy the created pools: ${!listvar}
6276     for poolname in ${!listvar//,/ }; do
6277         destroy_pool $fsname.$poolname
6278     done
6279 }
6280
6281 cleanup_pools () {
6282     local fsname=${1:-$FSNAME}
6283     trap 0
6284     destroy_pools $fsname
6285 }
6286
6287 gather_logs () {
6288     local list=$1
6289
6290     local ts=$(date +%s)
6291     local docp=true
6292
6293     if [[ ! -f "$YAML_LOG" ]]; then
6294         # init_logging is not performed before gather_logs,
6295         # so the $LOGDIR needs to be checked here
6296         check_shared_dir $LOGDIR && touch $LOGDIR/shared
6297     fi
6298
6299     [ -f $LOGDIR/shared ] && docp=false
6300
6301     # dump lustre logs, dmesg
6302
6303     prefix="$TESTLOG_PREFIX.$TESTNAME"
6304     suffix="$ts.log"
6305     echo "Dumping lctl log to ${prefix}.*.${suffix}"
6306
6307     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
6308         echo "Dumping logs only on local client."
6309         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
6310         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
6311         return
6312     fi
6313
6314     do_nodesv $list \
6315         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
6316          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
6317     if [ ! -f $LOGDIR/shared ]; then
6318         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
6319     fi
6320 }
6321
6322 do_ls () {
6323     local mntpt_root=$1
6324     local num_mntpts=$2
6325     local dir=$3
6326     local i
6327     local cmd
6328     local pids
6329     local rc=0
6330
6331     for i in $(seq 0 $num_mntpts); do
6332         cmd="ls -laf ${mntpt_root}$i/$dir"
6333         echo + $cmd;
6334         $cmd > /dev/null &
6335         pids="$pids $!"
6336     done
6337     echo pids=$pids
6338     for pid in $pids; do
6339         wait $pid || rc=$?
6340     done
6341
6342     return $rc
6343 }
6344
6345 # check_and_start_recovery_timer()
6346 #       service_time = at_est2timeout(service_time);
6347 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
6348 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
6349
6350 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
6351 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
6352 #define CONNECTION_SWITCH_MIN 5
6353 #define CONNECTION_SWITCH_INC 5
6354 max_recovery_time() {
6355         local init_connect_timeout=$((TIMEOUT / 20))
6356         ((init_connect_timeout >= 5)) || init_connect_timeout=5
6357
6358         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
6359         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
6360
6361         echo -n $service_time
6362 }
6363
6364 get_clients_mount_count () {
6365     local clients=${CLIENTS:-`hostname`}
6366
6367     # we need to take into account the clients mounts and
6368     # exclude mds/ost mounts if any;
6369     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
6370 }
6371
6372 # gss functions
6373 PROC_CLI="srpc_info"
6374
6375 combination()
6376 {
6377     local M=$1
6378     local N=$2
6379     local R=1
6380
6381     if [ $M -lt $N ]; then
6382         R=0
6383     else
6384         N=$((N + 1))
6385         while [ $N -lt $M ]; do
6386             R=$((R * N))
6387             N=$((N + 1))
6388         done
6389     fi
6390
6391     echo $R
6392     return 0
6393 }
6394
6395 calc_connection_cnt() {
6396     local dir=$1
6397
6398     # MDT->MDT = 2 * C(M, 2)
6399     # MDT->OST = M * O
6400     # CLI->OST = C * O
6401     # CLI->MDT = C * M
6402     comb_m2=$(combination $MDSCOUNT 2)
6403
6404     local num_clients=$(get_clients_mount_count)
6405
6406     local cnt_mdt2mdt=$((comb_m2 * 2))
6407     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
6408     local cnt_cli2ost=$((num_clients * OSTCOUNT))
6409     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
6410     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
6411     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
6412     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
6413
6414     local var=cnt_$dir
6415     local res=${!var}
6416
6417     echo $res
6418 }
6419
6420 set_rule()
6421 {
6422     local tgt=$1
6423     local net=$2
6424     local dir=$3
6425     local flavor=$4
6426     local cmd="$tgt.srpc.flavor"
6427
6428     if [ $net == "any" ]; then
6429         net="default"
6430     fi
6431     cmd="$cmd.$net"
6432
6433     if [ $dir != "any" ]; then
6434         cmd="$cmd.$dir"
6435     fi
6436
6437     cmd="$cmd=$flavor"
6438     log "Setting sptlrpc rule: $cmd"
6439     do_facet mgs "$LCTL conf_param $cmd"
6440 }
6441
6442 count_flvr()
6443 {
6444     local output=$1
6445     local flavor=$2
6446     local count=0
6447
6448     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
6449     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
6450
6451     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
6452
6453     if [ "x$bulkspec" != "x" ]; then
6454         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
6455
6456         if [ "x$algs" != "x" ]; then
6457             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
6458         else
6459             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
6460             if [ $bulk == "bulkn" ]; then
6461                 bulk_count=`echo "$output" | grep "bulk flavor" \
6462                             | grep "null/null" | wc -l`
6463             elif [ $bulk == "bulki" ]; then
6464                 bulk_count=`echo "$output" | grep "bulk flavor" \
6465                             | grep "/null" | grep -v "null/" | wc -l`
6466             else
6467                 bulk_count=`echo "$output" | grep "bulk flavor" \
6468                             | grep -v "/null" | grep -v "null/" | wc -l`
6469             fi
6470         fi
6471
6472         [ $bulk_count -lt $count ] && count=$bulk_count
6473     fi
6474
6475     echo $count
6476 }
6477
6478 flvr_cnt_cli2mdt()
6479 {
6480     local flavor=$1
6481     local cnt
6482
6483     local clients=${CLIENTS:-`hostname`}
6484
6485     for c in ${clients//,/ }; do
6486         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
6487         tmpcnt=`count_flvr "$output" $flavor`
6488         cnt=$((cnt + tmpcnt))
6489     done
6490     echo $cnt
6491 }
6492
6493 flvr_cnt_cli2ost()
6494 {
6495     local flavor=$1
6496     local cnt
6497
6498     local clients=${CLIENTS:-`hostname`}
6499
6500     for c in ${clients//,/ }; do
6501         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
6502         tmpcnt=`count_flvr "$output" $flavor`
6503         cnt=$((cnt + tmpcnt))
6504     done
6505     echo $cnt
6506 }
6507
6508 flvr_cnt_mdt2mdt()
6509 {
6510     local flavor=$1
6511     local cnt=0
6512
6513     if [ $MDSCOUNT -le 1 ]; then
6514         echo 0
6515         return
6516     fi
6517
6518     for num in `seq $MDSCOUNT`; do
6519         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
6520         tmpcnt=`count_flvr "$output" $flavor`
6521         cnt=$((cnt + tmpcnt))
6522     done
6523     echo $cnt;
6524 }
6525
6526 flvr_cnt_mdt2ost()
6527 {
6528     local flavor=$1
6529     local cnt=0
6530     local mdtosc
6531
6532     for num in `seq $MDSCOUNT`; do
6533         mdtosc=$(get_mdtosc_proc_path mds$num)
6534         mdtosc=${mdtosc/-MDT*/-MDT\*}
6535         output=$(do_facet mds$num lctl get_param -n \
6536             osc.$mdtosc.$PROC_CLI 2>/dev/null)
6537         tmpcnt=`count_flvr "$output" $flavor`
6538         cnt=$((cnt + tmpcnt))
6539     done
6540     echo $cnt;
6541 }
6542
6543 flvr_cnt_mgc2mgs()
6544 {
6545     local flavor=$1
6546
6547     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
6548     count_flvr "$output" $flavor
6549 }
6550
6551 do_check_flavor()
6552 {
6553     local dir=$1        # from to
6554     local flavor=$2     # flavor expected
6555     local res=0
6556
6557     if [ $dir == "cli2mdt" ]; then
6558         res=`flvr_cnt_cli2mdt $flavor`
6559     elif [ $dir == "cli2ost" ]; then
6560         res=`flvr_cnt_cli2ost $flavor`
6561     elif [ $dir == "mdt2mdt" ]; then
6562         res=`flvr_cnt_mdt2mdt $flavor`
6563     elif [ $dir == "mdt2ost" ]; then
6564         res=`flvr_cnt_mdt2ost $flavor`
6565     elif [ $dir == "all2ost" ]; then
6566         res1=`flvr_cnt_mdt2ost $flavor`
6567         res2=`flvr_cnt_cli2ost $flavor`
6568         res=$((res1 + res2))
6569     elif [ $dir == "all2mdt" ]; then
6570         res1=`flvr_cnt_mdt2mdt $flavor`
6571         res2=`flvr_cnt_cli2mdt $flavor`
6572         res=$((res1 + res2))
6573     elif [ $dir == "all2all" ]; then
6574         res1=`flvr_cnt_mdt2ost $flavor`
6575         res2=`flvr_cnt_cli2ost $flavor`
6576         res3=`flvr_cnt_mdt2mdt $flavor`
6577         res4=`flvr_cnt_cli2mdt $flavor`
6578         res=$((res1 + res2 + res3 + res4))
6579     fi
6580
6581     echo $res
6582 }
6583
6584 wait_flavor()
6585 {
6586     local dir=$1        # from to
6587     local flavor=$2     # flavor expected
6588     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
6589
6590     local res=0
6591
6592     for ((i=0;i<20;i++)); do
6593         echo -n "checking $dir..."
6594         res=$(do_check_flavor $dir $flavor)
6595         echo "found $res/$expect $flavor connections"
6596         [ $res -ge $expect ] && return 0
6597         sleep 4
6598     done
6599
6600     echo "Error checking $flavor of $dir: expect $expect, actual $res"
6601     return 1
6602 }
6603
6604 restore_to_default_flavor()
6605 {
6606     local proc="mgs.MGS.live.$FSNAME"
6607
6608     echo "restoring to default flavor..."
6609
6610     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
6611
6612     # remove all existing rules if any
6613     if [ $nrule -ne 0 ]; then
6614         echo "$nrule existing rules"
6615         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
6616             echo "remove rule: $rule"
6617             spec=`echo $rule | awk -F = '{print $1}'`
6618             do_facet mgs "$LCTL conf_param -d $spec"
6619         done
6620     fi
6621
6622     # verify no rules left
6623     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
6624     [ $nrule -ne 0 ] && error "still $nrule rules left"
6625
6626     # wait for default flavor to be applied
6627     # currently default flavor for all connections are 'null'
6628     wait_flavor all2all null
6629     echo "now at default flavor settings"
6630 }
6631
6632 set_flavor_all()
6633 {
6634     local flavor=${1:-null}
6635
6636     echo "setting all flavor to $flavor"
6637
6638     # FIXME need parameter to this fn
6639     # and remove global vars
6640     local cnt_all2all=$(calc_connection_cnt all2all)
6641
6642     local res=$(do_check_flavor all2all $flavor)
6643     if [ $res -eq $cnt_all2all ]; then
6644         echo "already have total $res $flavor connections"
6645         return
6646     fi
6647
6648     echo "found $res $flavor out of total $cnt_all2all connections"
6649     restore_to_default_flavor
6650
6651     [[ $flavor = null ]] && return 0
6652
6653     set_rule $FSNAME any any $flavor
6654     wait_flavor all2all $flavor
6655 }
6656
6657
6658 check_logdir() {
6659     local dir=$1
6660     # Checking for shared logdir
6661     if [ ! -d $dir ]; then
6662         # Not found. Create local logdir
6663         mkdir -p $dir
6664     else
6665         touch $dir/check_file.$(hostname -s)
6666     fi
6667     return 0
6668 }
6669
6670 check_write_access() {
6671         local dir=$1
6672         local list=${2:-$(comma_list $(nodes_list))}
6673         local node
6674         local file
6675
6676         for node in ${list//,/ }; do
6677                 file=$dir/check_file.$(short_nodename $node)
6678                 if [[ ! -f "$file" ]]; then
6679                         # Logdir not accessible/writable from this node.
6680                         return 1
6681                 fi
6682                 rm -f $file || return 1
6683         done
6684         return 0
6685 }
6686
6687 init_logging() {
6688     if [[ -n $YAML_LOG ]]; then
6689         return
6690     fi
6691     local SAVE_UMASK=`umask`
6692     umask 0000
6693
6694     export YAML_LOG=${LOGDIR}/results.yml
6695     mkdir -p $LOGDIR
6696     init_clients_lists
6697
6698     if [ ! -f $YAML_LOG ]; then       # If the yaml log already exists then we will just append to it
6699       if check_shared_dir $LOGDIR; then
6700           touch $LOGDIR/shared
6701           echo "Logging to shared log directory: $LOGDIR"
6702       else
6703           echo "Logging to local directory: $LOGDIR"
6704       fi
6705
6706       yml_nodes_file $LOGDIR >> $YAML_LOG
6707       yml_results_file >> $YAML_LOG
6708     fi
6709
6710     umask $SAVE_UMASK
6711 }
6712
6713 log_test() {
6714     yml_log_test $1 >> $YAML_LOG
6715 }
6716
6717 log_test_status() {
6718      yml_log_test_status $@ >> $YAML_LOG
6719 }
6720
6721 log_sub_test_begin() {
6722     yml_log_sub_test_begin "$@" >> $YAML_LOG
6723 }
6724
6725 log_sub_test_end() {
6726     yml_log_sub_test_end "$@" >> $YAML_LOG
6727 }
6728
6729 run_llverdev()
6730 {
6731         local dev=$1
6732         local llverdev_opts=$2
6733         local devname=$(basename $1)
6734         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
6735         # loop devices aren't in /proc/partitions
6736         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
6737
6738         size=$(($size / 1024 / 1024)) # Gb
6739
6740         local partial_arg=""
6741         # Run in partial (fast) mode if the size
6742         # of a partition > 1 GB
6743         [ $size -gt 1 ] && partial_arg="-p"
6744
6745         llverdev --force $partial_arg $llverdev_opts $dev
6746 }
6747
6748 run_llverfs()
6749 {
6750         local dir=$1
6751         local llverfs_opts=$2
6752         local use_partial_arg=$3
6753         local partial_arg=""
6754         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
6755
6756         # Run in partial (fast) mode if the size
6757         # of a partition > 1 GB
6758         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
6759
6760         llverfs $partial_arg $llverfs_opts $dir
6761 }
6762
6763 #Remove objects from OST
6764 remove_ost_objects() {
6765         local facet=$1
6766         local ostdev=$2
6767         local group=$3
6768         shift 3
6769         local objids="$@"
6770         local mntpt=$(facet_mntpt $facet)
6771         local opts=$OST_MOUNT_OPTS
6772         local i
6773         local rc
6774
6775         echo "removing objects from $ostdev on $facet: $objids"
6776         if ! test -b $ostdev; then
6777                 opts=$(csa_add "$opts" -o loop)
6778         fi
6779         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
6780                 return $?
6781         rc=0
6782         for i in $objids; do
6783                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
6784         done
6785         umount -f $mntpt || return $?
6786         return $rc
6787 }
6788
6789 #Remove files from MDT
6790 remove_mdt_files() {
6791         local facet=$1
6792         local mdtdev=$2
6793         shift 2
6794         local files="$@"
6795         local mntpt=$(facet_mntpt $facet)
6796         local opts=$MDS_MOUNT_OPTS
6797
6798         echo "removing files from $mdtdev on $facet: $files"
6799         if [ $(facet_fstype $facet) == ldiskfs ] &&
6800            ! do_facet $facet test -b $mdtdev; then
6801                 opts=$(csa_add "$opts" -o loop)
6802         fi
6803         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
6804                 return $?
6805         rc=0
6806         for f in $files; do
6807                 rm $mntpt/ROOT/$f || { rc=$?; break; }
6808         done
6809         umount -f $mntpt || return $?
6810         return $rc
6811 }
6812
6813 duplicate_mdt_files() {
6814         local facet=$1
6815         local mdtdev=$2
6816         shift 2
6817         local files="$@"
6818         local mntpt=$(facet_mntpt $facet)
6819         local opts=$MDS_MOUNT_OPTS
6820
6821         echo "duplicating files on $mdtdev on $facet: $files"
6822         mkdir -p $mntpt || return $?
6823         if [ $(facet_fstype $facet) == ldiskfs ] &&
6824            ! do_facet $facet test -b $mdtdev; then
6825                 opts=$(csa_add "$opts" -o loop)
6826         fi
6827         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
6828                 return $?
6829
6830     do_umount() {
6831         trap 0
6832         popd > /dev/null
6833         rm $tmp
6834         umount -f $mntpt
6835     }
6836     trap do_umount EXIT
6837
6838     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
6839     pushd $mntpt/ROOT > /dev/null || return $?
6840     rc=0
6841     for f in $files; do
6842         touch $f.bad || return $?
6843         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
6844         rc=${PIPESTATUS[0]}
6845         [ $rc -eq 0 ] || return $rc
6846         setfattr --restore $tmp || return $?
6847     done
6848     do_umount
6849 }
6850
6851 run_sgpdd () {
6852     local devs=${1//,/ }
6853     shift
6854     local params=$@
6855     local rslt=$TMP/sgpdd_survey
6856
6857     # sgpdd-survey cleanups ${rslt}.* files
6858
6859     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
6860     echo + $cmd
6861     eval $cmd
6862     cat ${rslt}.detail
6863 }
6864
6865 # returns the canonical name for an ldiskfs device
6866 ldiskfs_canon() {
6867         local dev="$1"
6868         local facet="$2"
6869
6870         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
6871 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
6872     echo dm-\\\${foo##*:};
6873 else
6874     echo \\\$(basename \\\$dv);
6875 fi;"
6876 }
6877
6878 is_sanity_benchmark() {
6879     local benchmarks="dbench bonnie iozone fsx"
6880     local suite=$1
6881     for b in $benchmarks; do
6882         if [ "$b" == "$suite" ]; then
6883             return 0
6884         fi
6885     done
6886     return 1
6887 }
6888
6889 min_ost_size () {
6890     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
6891 }
6892
6893 #
6894 # Get the available size (KB) of a given obd target.
6895 #
6896 get_obd_size() {
6897         local facet=$1
6898         local obd=$2
6899         local size
6900
6901         [[ $facet != client ]] || return 0
6902
6903         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
6904         echo -n $size
6905 }
6906
6907 #
6908 # Get the page size (bytes) on a given facet node.
6909 #
6910 get_page_size() {
6911         local facet=$1
6912         local size
6913
6914         size=$(do_facet $facet getconf PAGE_SIZE)
6915         [[ ${PIPESTATUS[0]} = 0 && -n "$size" ]] || size=4096
6916         echo -n $size
6917 }
6918
6919 #
6920 # Get the block count of the filesystem.
6921 #
6922 get_block_count() {
6923         local facet=$1
6924         local device=$2
6925         local count
6926
6927         count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
6928                 awk '/^Block count:/ {print $3}')
6929         echo -n $count
6930 }
6931
6932 # Get the block size of the filesystem.
6933 get_block_size() {
6934     local facet=$1
6935     local device=$2
6936     local size
6937
6938     size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
6939            awk '/^Block size:/ {print $3}')
6940     echo $size
6941 }
6942
6943 # Check whether the "large_xattr" feature is enabled or not.
6944 large_xattr_enabled() {
6945         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
6946
6947         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6948
6949         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
6950                 grep -E -q '(ea_inode|large_xattr)'"
6951         return ${PIPESTATUS[0]}
6952 }
6953
6954 # Get the maximum xattr size supported by the filesystem.
6955 max_xattr_size() {
6956     local size
6957
6958     if large_xattr_enabled; then
6959         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
6960         size=65536
6961     else
6962         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6963         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
6964
6965         # maximum xattr size = size of block - size of header -
6966         #                      size of 1 entry - 4 null bytes
6967         size=$((block_size - 32 - 32 - 4))
6968     fi
6969
6970     echo $size
6971 }
6972
6973 # Dump the value of the named xattr from a file.
6974 get_xattr_value() {
6975     local xattr_name=$1
6976     local file=$2
6977
6978     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
6979 }
6980
6981 # Generate a string with size of $size bytes.
6982 generate_string() {
6983     local size=${1:-1024} # in bytes
6984
6985     echo "$(head -c $size < /dev/zero | tr '\0' y)"
6986 }
6987
6988 reformat_external_journal() {
6989         local facet=$1
6990         local var
6991
6992         var=${facet}_JRN
6993         if [ -n "${!var}" ]; then
6994                 local rcmd="do_facet $facet"
6995
6996                 echo "reformat external journal on $facet:${!var}"
6997                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
6998         fi
6999 }
7000
7001 # MDT file-level backup/restore
7002 mds_backup_restore() {
7003         local facet=$1
7004         local igif=$2
7005         local devname=$(mdsdevname $(facet_number $facet))
7006         local mntpt=$(facet_mntpt brpt)
7007         local rcmd="do_facet $facet"
7008         local metaea=${TMP}/backup_restore.ea
7009         local metadata=${TMP}/backup_restore.tgz
7010         local opts=${MDS_MOUNT_OPTS}
7011         local svc=${facet}_svc
7012
7013         if ! ${rcmd} test -b ${devname}; then
7014                 opts=$(csa_add "$opts" -o loop)
7015         fi
7016
7017         echo "file-level backup/restore on $facet:${devname}"
7018
7019         # step 1: build mount point
7020         ${rcmd} mkdir -p $mntpt
7021         # step 2: cleanup old backup
7022         ${rcmd} rm -f $metaea $metadata
7023         # step 3: mount dev
7024         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
7025         if [ ! -z $igif ]; then
7026                 # step 3.5: rm .lustre
7027                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
7028         fi
7029         # step 4: backup metaea
7030         echo "backup EA"
7031         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
7032                 return 2
7033         # step 5: backup metadata
7034         echo "backup data"
7035         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
7036         # step 6: umount
7037         ${rcmd} $UMOUNT $mntpt || return 4
7038         # step 8: reformat dev
7039         echo "reformat new device"
7040         format_mdt $(facet_number $facet)
7041         # step 9: mount dev
7042         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
7043         # step 10: restore metadata
7044         echo "restore data"
7045         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
7046         # step 11: restore metaea
7047         echo "restore EA"
7048         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
7049         # step 12: remove recovery logs
7050         echo "remove recovery logs"
7051         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
7052         # step 13: umount dev
7053         ${rcmd} $UMOUNT $mntpt || return 10
7054         # step 14: cleanup tmp backup
7055         ${rcmd} rm -f $metaea $metadata
7056         # step 15: reset device label - it's not virgin on
7057         ${rcmd} e2label $devname ${!svc}
7058 }
7059
7060 # remove OI files
7061 mds_remove_ois() {
7062         local facet=$1
7063         local idx=$2
7064         local devname=$(mdsdevname $(facet_number $facet))
7065         local mntpt=$(facet_mntpt brpt)
7066         local rcmd="do_facet $facet"
7067         local opts=${MDS_MOUNT_OPTS}
7068
7069         if ! ${rcmd} test -b ${devname}; then
7070                 opts=$(csa_add "$opts" -o loop)
7071         fi
7072
7073         echo "removing OI files on $facet: idx=${idx}"
7074
7075         # step 1: build mount point
7076         ${rcmd} mkdir -p $mntpt
7077         # step 2: mount dev
7078         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
7079         if [ -z $idx ]; then
7080                 # step 3: remove all OI files
7081                 ${rcmd} rm -fv $mntpt/oi.16*
7082         elif [ $idx -lt 2 ]; then
7083                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
7084         else
7085                 local i
7086
7087                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
7088                 for ((i=${idx}; i<64; i=$((i * idx)))); do
7089                         ${rcmd} rm -fv $mntpt/oi.16.${i}
7090                 done
7091         fi
7092         # step 4: umount
7093         ${rcmd} $UMOUNT $mntpt || return 2
7094         # OI files will be recreated when mounted as lustre next time.
7095 }
7096
7097 # generate maloo upload-able log file name
7098 # \param logname specify unique part of file name
7099 generate_logname() {
7100         local logname=${1:-"default_logname"}
7101
7102         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
7103 }
7104
7105 # make directory on different MDTs
7106 test_mkdir() {
7107         local path
7108         local p_option
7109         local stripe_count=2
7110         local stripe_index=-1
7111         local OPTIND=1
7112
7113         while getopts "c:i:p" opt; do
7114                 case $opt in
7115                         c) stripe_count=$OPTARG;;
7116                         i) stripe_index=$OPTARG;;
7117                         p) p_option="-p";;
7118                         \?) error "only support -i -c -p";;
7119                 esac
7120         done
7121
7122         shift $((OPTIND - 1))
7123         [ $# -eq 1 ] || error "Only creating single directory is supported"
7124         path="$*"
7125
7126         if [ "$p_option" == "-p" ]; then
7127                 local parent=$(dirname $path)
7128
7129                 [ -d $path ] && return 0
7130                 [ ! -d ${parent} ] && mkdir -p ${parent}
7131         fi
7132
7133         if [ $MDSCOUNT -le 1 ]; then
7134                 mkdir $path
7135         else
7136                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
7137                 local mdt_index
7138
7139                 if [ $stripe_index -eq -1 ]; then
7140                         mdt_index=$((test_num % MDSCOUNT))
7141                 else
7142                         mdt_index=$stripe_index
7143                 fi
7144                 echo "striped dir -i$mdt_index -c$stripe_count $path"
7145                 $LFS setdirstripe -i$mdt_index -c$stripe_count $path
7146         fi
7147 }
7148
7149 # find the smallest and not in use file descriptor
7150 free_fd()
7151 {
7152         local max_fd=$(ulimit -n)
7153         local fd=3
7154         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
7155                 ((++fd))
7156         done
7157         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
7158         echo $fd
7159 }
7160
7161 check_mount_and_prep()
7162 {
7163         is_mounted $MOUNT || setupall
7164
7165         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
7166         mkdir $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
7167         for idx in $(seq $MDSCOUNT); do
7168                 local name="MDT$(printf '%04x' $((idx - 1)))"
7169                 rm -rf $MOUNT/.lustre/lost+found/$name/*
7170         done
7171 }
7172
7173 # calcule how many ost-objects to be created.
7174 precreated_ost_obj_count()
7175 {
7176         local mdt_idx=$1
7177         local ost_idx=$2
7178         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
7179         local ost_name="OST$(printf '%04x' $ost_idx)"
7180         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
7181         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
7182                         osp.$proc_path.prealloc_last_id)
7183         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
7184                         osp.$proc_path.prealloc_next_id)
7185         echo $((last_id - next_id + 1))
7186 }
7187
7188 check_file_in_pool()
7189 {
7190         local file=$1
7191         local pool=$2
7192         local tlist="$3"
7193         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
7194         for i in $res
7195         do
7196                 for t in $tlist ; do
7197                         [ "$i" -eq "$t" ] && continue 2
7198                 done
7199
7200                 echo "pool list: $tlist"
7201                 echo "striping: $res"
7202                 error_noexit "$file not allocated in $pool"
7203                 return 1
7204         done
7205         return 0
7206 }
7207
7208 pool_add() {
7209         echo "Creating new pool"
7210         local pool=$1
7211
7212         create_pool $FSNAME.$pool ||
7213                 { error_noexit "No pool created, result code $?"; return 1; }
7214         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
7215                 { error_noexit "$pool not in lfs pool_list"; return 2; }
7216 }
7217
7218 pool_add_targets() {
7219         echo "Adding targets to pool"
7220         local pool=$1
7221         local first=$2
7222         local last=$3
7223         local step=${4:-1}
7224
7225         local list=$(seq $first $step $last)
7226
7227         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
7228         do_facet mgs $LCTL pool_add \
7229                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
7230         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
7231                         | sort -u | tr '\n' ' ' " "$t" || {
7232                 error_noexit "Add to pool failed"
7233                 return 1
7234         }
7235         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
7236         local addcount=$(((last - first) / step + 1))
7237         [ $lfscount -eq $addcount ] || {
7238                 error_noexit "lfs pool_list bad ost count" \
7239                                                 "$lfscount != $addcount"
7240                 return 2
7241         }
7242 }
7243
7244 pool_set_dir() {
7245         local pool=$1
7246         local tdir=$2
7247         echo "Setting pool on directory $tdir"
7248
7249         $SETSTRIPE -c 2 -p $pool $tdir && return 0
7250
7251         error_noexit "Cannot set pool $pool to $tdir"
7252         return 1
7253 }
7254
7255 pool_check_dir() {
7256         local pool=$1
7257         local tdir=$2
7258         echo "Checking pool on directory $tdir"
7259
7260         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
7261         [ "$res" = "$pool" ] && return 0
7262
7263         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
7264         return 1
7265 }
7266
7267 pool_dir_rel_path() {
7268         echo "Testing relative path works well"
7269         local pool=$1
7270         local tdir=$2
7271         local root=$3
7272
7273         mkdir -p $root/$tdir/$tdir
7274         cd $root/$tdir
7275         pool_set_dir $pool $tdir          || return 1
7276         pool_set_dir $pool ./$tdir        || return 2
7277         pool_set_dir $pool ../$tdir       || return 3
7278         pool_set_dir $pool ../$tdir/$tdir || return 4
7279         rm -rf $tdir; cd - > /dev/null
7280 }
7281
7282 pool_alloc_files() {
7283         echo "Checking files allocation from directory pool"
7284         local pool=$1
7285         local tdir=$2
7286         local count=$3
7287         local tlist="$4"
7288
7289         local failed=0
7290         for i in $(seq -w 1 $count)
7291         do
7292                 local file=$tdir/file-$i
7293                 touch $file
7294                 check_file_in_pool $file $pool "$tlist" || \
7295                         failed=$((failed + 1))
7296         done
7297         [ "$failed" = 0 ] && return 0
7298
7299         error_noexit "$failed files not allocated in $pool"
7300         return 1
7301 }
7302
7303 pool_create_files() {
7304         echo "Creating files in pool"
7305         local pool=$1
7306         local tdir=$2
7307         local count=$3
7308         local tlist="$4"
7309
7310         mkdir -p $tdir
7311         local failed=0
7312         for i in $(seq -w 1 $count)
7313         do
7314                 local file=$tdir/spoo-$i
7315                 $SETSTRIPE -p $pool $file
7316                 check_file_in_pool $file $pool "$tlist" || \
7317                         failed=$((failed + 1))
7318         done
7319         [ "$failed" = 0 ] && return 0
7320
7321         error_noexit "$failed files not allocated in $pool"
7322         return 1
7323 }
7324
7325 pool_lfs_df() {
7326         echo "Checking 'lfs df' output"
7327         local pool=$1
7328
7329         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
7330                         tr '\n' ' ')
7331         local res=$($LFS df --pool $FSNAME.$pool |
7332                         awk '{print $1}' |
7333                         grep "$FSNAME-OST" |
7334                         tr '\n' ' ')
7335         [ "$res" = "$t" ] && return 0
7336
7337         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
7338         return 1
7339 }
7340
7341 pool_file_rel_path() {
7342         echo "Creating files in a pool with relative pathname"
7343         local pool=$1
7344         local tdir=$2
7345
7346         mkdir -p $tdir ||
7347                 { error_noexit "unable to create $tdir"; return 1 ; }
7348         local file="/..$tdir/$tfile-1"
7349         $SETSTRIPE -p $pool $file ||
7350                 { error_noexit "unable to create $file" ; return 2 ; }
7351
7352         cd $tdir
7353         $SETSTRIPE -p $pool $tfile-2 || {
7354                 error_noexit "unable to create $tfile-2 in $tdir"
7355                 return 3
7356         }
7357 }
7358
7359 pool_remove_first_target() {
7360         echo "Removing first target from a pool"
7361         local pool=$1
7362
7363         local pname="lov.$FSNAME-*.pools.$pool"
7364         local t=$($LCTL get_param -n $pname | head -1)
7365         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
7366         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
7367                 error_noexit "$t not removed from $FSNAME.$pool"
7368                 return 1
7369         }
7370 }
7371
7372 pool_remove_all_targets() {
7373         echo "Removing all targets from pool"
7374         local pool=$1
7375         local file=$2
7376         local pname="lov.$FSNAME-*.pools.$pool"
7377         for t in $($LCTL get_param -n $pname | sort -u)
7378         do
7379                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
7380         done
7381         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
7382                 error_noexit "Pool $FSNAME.$pool cannot be drained"
7383                 return 1
7384         }
7385         # striping on an empty/nonexistant pool should fall back
7386         # to "pool of everything"
7387         touch $file || {
7388                 error_noexit "failed to use fallback striping for empty pool"
7389                 return 2
7390         }
7391         # setstripe on an empty pool should fail
7392         $SETSTRIPE -p $pool $file 2>/dev/null && {
7393                 error_noexit "expected failure when creating file" \
7394                                                         "with empty pool"
7395                 return 3
7396         }
7397         return 0
7398 }
7399
7400 pool_remove() {
7401         echo "Destroying pool"
7402         local pool=$1
7403         local file=$2
7404
7405         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
7406
7407         sleep 2
7408         # striping on an empty/nonexistant pool should fall back
7409         # to "pool of everything"
7410         touch $file || {
7411                 error_noexit "failed to use fallback striping for missing pool"
7412                 return 1
7413         }
7414         # setstripe on an empty pool should fail
7415         $SETSTRIPE -p $pool $file 2>/dev/null && {
7416                 error_noexit "expected failure when creating file" \
7417                                                         "with missing pool"
7418                 return 2
7419         }
7420
7421         # get param should return err once pool is gone
7422         if wait_update $HOSTNAME "lctl get_param -n \
7423                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
7424         then
7425                 remove_pool_from_list $FSNAME.$pool
7426                 return 0
7427         fi
7428         error_noexit "Pool $FSNAME.$pool is not destroyed"
7429         return 3
7430 }
7431
7432 # Get and check the actual stripe count of one file.
7433 # Usage: check_stripe_count <file> <expected_stripe_count>
7434 check_stripe_count() {
7435         local file=$1
7436         local expected=$2
7437         local actual
7438
7439         [[ -z "$file" || -z "$expected" ]] &&
7440                 error "check_stripe_count: invalid argument"
7441
7442         local cmd="$GETSTRIPE -c $file"
7443         actual=$($cmd) || error "$cmd failed"
7444         actual=${actual%% *}
7445
7446         if [[ $actual -ne $expected ]]; then
7447                 [[ $expected -eq -1 ]] ||
7448                         error "$cmd wrong: found $actual, expected $expected"
7449                 [[ $actual -eq $OSTCOUNT ]] ||
7450                         error "$cmd wrong: found $actual, expected $OSTCOUNT"
7451         fi
7452 }
7453
7454 # Get and check the actual list of OST indices on one file.
7455 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
7456 check_obdidx() {
7457         local file=$1
7458         local expected=$2
7459         local obdidx
7460
7461         [[ -z "$file" || -z "$expected" ]] &&
7462                 error "check_obdidx: invalid argument!"
7463
7464         obdidx=$(comma_list $($GETSTRIPE $file | grep -A $OSTCOUNT obdidx |
7465                               grep -v obdidx | awk '{print $1}' | xargs))
7466
7467         [[ $obdidx = $expected ]] ||
7468                 error "list of OST indices on $file is $obdidx," \
7469                       "should be $expected"
7470 }
7471
7472 # Get and check the actual OST index of the first stripe on one file.
7473 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
7474 check_start_ost_idx() {
7475         local file=$1
7476         local expected=$2
7477         local start_ost_idx
7478
7479         [[ -z "$file" || -z "$expected" ]] &&
7480                 error "check_start_ost_idx: invalid argument!"
7481
7482         start_ost_idx=$($GETSTRIPE $file | grep -A 1 obdidx | grep -v obdidx |
7483                         awk '{print $1}')
7484
7485         [[ $start_ost_idx = $expected ]] ||
7486                 error "OST index of the first stripe on $file is" \
7487                       "$start_ost_idx, should be $expected"
7488 }
7489
7490 killall_process () {
7491         local clients=${1:-$(hostname)}
7492         local name=$2
7493         local signal=$3
7494         local rc=0
7495
7496         do_nodes $clients "killall $signal $name"
7497 }