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