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