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