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