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