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