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