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