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