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