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