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