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