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