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