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