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