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