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