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