Whamcloud - gitweb
LU-864 test: Hostname name doesn't equal NID and use facet_mntpt
[fs/lustre-release.git] / lustre / tests / test-framework.sh
1 #!/bin/bash
2 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
3
4 trap 'print_summary && touch $TF_FAIL && \
5     echo "test-framework exiting on error"' ERR
6 set -e
7 #set -x
8
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
19 # LOAD_LLOOP: LU-409: only load llite_lloop module if kernel < 2.6.32 or
20 #             LOAD_LLOOP is true. LOAD_LLOOP is false by default.
21 export LOAD_LLOOP=${LOAD_LLOOP:-false}
22
23 #export PDSH="pdsh -S -Rssh -w"
24
25 # function used by scripts run on remote nodes
26 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
27 . $LUSTRE/tests/functions.sh
28 . $LUSTRE/tests/yaml.sh
29
30 LUSTRE_TESTS_CFG_DIR=${LUSTRE_TESTS_CFG_DIR:-${LUSTRE}/tests/cfg}
31
32 EXCEPT_LIST_FILE=${EXCEPT_LIST_FILE:-${LUSTRE_TESTS_CFG_DIR}/tests-to-skip.sh}
33
34 if [ -f "$EXCEPT_LIST_FILE" ]; then
35     echo "Reading test skip list from $EXCEPT_LIST_FILE"
36     cat $EXCEPT_LIST_FILE
37     . $EXCEPT_LIST_FILE
38 fi
39
40 [ -z "$MODPROBECONF" -a -f /etc/modprobe.conf ] && MODPROBECONF=/etc/modprobe.conf
41 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/Lustre ] && MODPROBECONF=/etc/modprobe.d/Lustre
42
43 assert_DIR () {
44     local failed=""
45     [[ $DIR/ = $MOUNT/* ]] || \
46         { failed=1 && echo "DIR=$DIR not in $MOUNT. Aborting."; }
47     [[ $DIR1/ = $MOUNT1/* ]] || \
48         { failed=1 && echo "DIR1=$DIR1 not in $MOUNT1. Aborting."; }
49     [[ $DIR2/ = $MOUNT2/* ]] || \
50         { failed=1 && echo "DIR2=$DIR2 not in $MOUNT2. Aborting"; }
51
52     [ -n "$failed" ] && exit 99 || true
53 }
54
55 usage() {
56     echo "usage: $0 [-r] [-f cfgfile]"
57     echo "       -r: reformat"
58
59     exit
60 }
61
62 print_summary () {
63     trap 0
64     [ "$TESTSUITE" == "lfsck" ] && return 0
65     [ -n "$ONLY" ] && echo "WARNING: ONLY is set to $(echo $ONLY)"
66     local details
67     local form="%-13s %-17s %-9s %s %s\n"
68     printf "$form" "status" "script" "Total(sec)" "E(xcluded) S(low)"
69     echo "------------------------------------------------------------------------------------"
70     for O in $DEFAULT_SUITES; do
71         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
72         [ "${!O}" = "no" ] && continue || true
73         local o=$(echo $O  | tr "[:upper:]_" "[:lower:]-")
74         local log=${TMP}/${o}.log
75         if is_sanity_benchmark $o; then
76             log=${TMP}/sanity-benchmark.log
77         fi
78         local slow=
79         local skipped=
80         local total=
81         local status=Unfinished
82         if [ -f $log ]; then
83             skipped=$(grep excluded $log | awk '{ printf " %s", $3 }' | sed 's/test_//g')
84             slow=$(egrep "^PASS|^FAIL" $log | tr -d "("| sed s/s\)$//g | sort -nr -k 3  | head -5 |  awk '{ print $2":"$3"s" }')
85             total=$(grep duration $log | awk '{ print $2}')
86             if [ "${!O}" = "done" ]; then
87                 status=Done
88             fi
89             if $DDETAILS; then
90                 local durations=$(egrep "^PASS|^FAIL" $log |  tr -d "("| sed s/s\)$//g | awk '{ print $2":"$3"|" }')
91                 details=$(printf "%s\n%s %s %s\n" "$details" "DDETAILS" "$O" "$(echo $durations)")
92             fi
93         fi
94         printf "$form" $status "$O" "${total}" "E=$skipped"
95         printf "$form" "-" "-" "-" "S=$(echo $slow)"
96     done
97
98     for O in $DEFAULT_SUITES; do
99         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
100         if [ "${!O}" = "no" ]; then
101             printf "$form" "Skipped" "$O" ""
102         fi
103     done
104
105     # print the detailed tests durations if DDETAILS=true
106     if $DDETAILS; then
107         echo "$details"
108     fi
109 }
110
111 init_test_env() {
112     export LUSTRE=`absolute_path $LUSTRE`
113     export TESTSUITE=`basename $0 .sh`
114     export TEST_FAILED=false
115     export FAIL_ON_SKIP_ENV=${FAIL_ON_SKIP_ENV:-false}
116
117     export MKE2FS=${MKE2FS:-mke2fs}
118     export DEBUGFS=${DEBUGFS:-debugfs}
119     export TUNE2FS=${TUNE2FS:-tune2fs}
120     export E2LABEL=${E2LABEL:-e2label}
121     export DUMPE2FS=${DUMPE2FS:-dumpe2fs}
122     export E2FSCK=${E2FSCK:-e2fsck}
123     export LFSCK_BIN=${LFSCK_BIN:-lfsck}
124
125     export LFSCK_ALWAYS=${LFSCK_ALWAYS:-"no"} # check fs after each test suite
126     export FSCK_MAX_ERR=4   # File system errors left uncorrected
127
128     # This is used by a small number of tests to share state between the client
129     # running the tests, or in some cases between the servers (e.g. lfsck.sh).
130     # It needs to be a non-lustre filesystem that is available on all the nodes.
131     export SHARED_DIRECTORY=${SHARED_DIRECTORY:-"/tmp"}
132     export MDSDB=${MDSDB:-$SHARED_DIRECTORY/mdsdb}
133     export OSTDB=${OSTDB:-$SHARED_DIRECTORY/ostdb}
134
135     #[ -d /r ] && export ROOT=${ROOT:-/r}
136     export TMP=${TMP:-$ROOT/tmp}
137     export TESTSUITELOG=${TMP}/${TESTSUITE}.log
138     if [[ -z $LOGDIRSET ]]; then
139         export LOGDIR=${LOGDIR:-${TMP}/test_logs/}/$(date +%s)
140         export LOGDIRSET=true
141     fi
142     export HOSTNAME=${HOSTNAME:-`hostname`}
143     if ! echo $PATH | grep -q $LUSTRE/utils; then
144         export PATH=$LUSTRE/utils:$PATH
145     fi
146     if ! echo $PATH | grep -q $LUSTRE/utils/gss; then
147         export PATH=$LUSTRE/utils/gss:$PATH
148     fi
149     if ! echo $PATH | grep -q $LUSTRE/tests; then
150         export PATH=$LUSTRE/tests:$PATH
151     fi
152     if ! echo $PATH | grep -q $LUSTRE/../lustre-iokit/sgpdd-survey; then
153         export PATH=$LUSTRE/../lustre-iokit/sgpdd-survey:$PATH
154     fi
155     export LST=${LST:-"$LUSTRE/../lnet/utils/lst"}
156     [ ! -f "$LST" ] && export LST=$(which lst)
157     export SGPDDSURVEY=${SGPDDSURVEY:-"$LUSTRE/../lustre-iokit/sgpdd-survey/sgpdd-survey")}
158     [ ! -f "$SGPDDSURVEY" ] && export SGPDDSURVEY=$(which sgpdd-survey)
159     # Ubuntu, at least, has a truncate command in /usr/bin
160     # so fully path our truncate command.
161     export TRUNCATE=${TRUNCATE:-$LUSTRE/tests/truncate}
162     export MDSRATE=${MDSRATE:-"$LUSTRE/tests/mpi/mdsrate"}
163     [ ! -f "$MDSRATE" ] && export MDSRATE=$(which mdsrate 2> /dev/null)
164     if ! echo $PATH | grep -q $LUSTRE/tests/racer; then
165         export PATH=$LUSTRE/tests/racer:$PATH:
166     fi
167     if ! echo $PATH | grep -q $LUSTRE/tests/mpi; then
168         export PATH=$LUSTRE/tests/mpi:$PATH
169     fi
170     export RSYNC_RSH=${RSYNC_RSH:-rsh}
171     export LCTL=${LCTL:-"$LUSTRE/utils/lctl"}
172     [ ! -f "$LCTL" ] && export LCTL=$(which lctl)
173     export LFS=${LFS:-"$LUSTRE/utils/lfs"}
174     [ ! -f "$LFS" ] && export LFS=$(which lfs)
175     export L_GETIDENTITY=${L_GETIDENTITY:-"$LUSTRE/utils/l_getidentity"}
176     if [ ! -f "$L_GETIDENTITY" ]; then
177         if `which l_getidentity > /dev/null 2>&1`; then
178             export L_GETIDENTITY=$(which l_getidentity)
179         else
180             export L_GETIDENTITY=NONE
181         fi
182     fi
183     export LL_DECODE_FILTER_FID=${LL_DECODE_FILTER_FID:-"$LUSTRE/utils/ll_decode_filter_fid"}
184     [ ! -f "$LL_DECODE_FILTER_FID" ] && export LL_DECODE_FILTER_FID=$(which ll_decode_filter_fid)
185     export MKFS=${MKFS:-"$LUSTRE/utils/mkfs.lustre"}
186     [ ! -f "$MKFS" ] && export MKFS=$(which mkfs.lustre)
187     export TUNEFS=${TUNEFS:-"$LUSTRE/utils/tunefs.lustre"}
188     [ ! -f "$TUNEFS" ] && export TUNEFS=$(which tunefs.lustre)
189     export CHECKSTAT="${CHECKSTAT:-"checkstat -v"} "
190     export LUSTRE_RMMOD=${LUSTRE_RMMOD:-$LUSTRE/scripts/lustre_rmmod}
191     [ ! -f "$LUSTRE_RMMOD" ] && export LUSTRE_RMMOD=$(which lustre_rmmod 2> /dev/null)
192     export FSTYPE=${FSTYPE:-"ldiskfs"}
193     export NAME=${NAME:-local}
194     export LGSSD=${LGSSD:-"$LUSTRE/utils/gss/lgssd"}
195     [ "$GSS_PIPEFS" = "true" ] && [ ! -f "$LGSSD" ] && \
196         export LGSSD=$(which lgssd)
197     export LSVCGSSD=${LSVCGSSD:-"$LUSTRE/utils/gss/lsvcgssd"}
198     [ ! -f "$LSVCGSSD" ] && export LSVCGSSD=$(which lsvcgssd 2> /dev/null)
199     export KRB5DIR=${KRB5DIR:-"/usr/kerberos"}
200     export DIR2
201     export SAVE_PWD=${SAVE_PWD:-$LUSTRE/tests}
202     export AT_MAX_PATH
203
204     if [ "$ACCEPTOR_PORT" ]; then
205         export PORT_OPT="--port $ACCEPTOR_PORT"
206     fi
207
208     case "x$SEC" in
209         xkrb5*)
210             echo "Using GSS/krb5 ptlrpc security flavor"
211             which lgss_keyring > /dev/null 2>&1 || \
212                 error_exit "built with gss disabled! SEC=$SEC"
213             GSS=true
214             GSS_KRB5=true
215             ;;
216     esac
217
218     case "x$IDUP" in
219         xtrue)
220             IDENTITY_UPCALL=true
221             ;;
222         xfalse)
223             IDENTITY_UPCALL=false
224             ;;
225     esac
226     export LOAD_MODULES_REMOTE=${LOAD_MODULES_REMOTE:-false}
227
228     # Paths on remote nodes, if different
229     export RLUSTRE=${RLUSTRE:-$LUSTRE}
230     export RPWD=${RPWD:-$PWD}
231     export I_MOUNTED=${I_MOUNTED:-"no"}
232     if [ ! -f /lib/modules/$(uname -r)/kernel/fs/lustre/mds.ko -a \
233         ! -f /lib/modules/$(uname -r)/updates/kernel/fs/lustre/mds.ko -a \
234         ! -f `dirname $0`/../mds/mds.ko ]; then
235         export CLIENTMODSONLY=yes
236     fi
237
238     export SHUTDOWN_ATTEMPTS=${SHUTDOWN_ATTEMPTS:-3}
239
240     # command line
241
242     while getopts "rvwf:" opt $*; do
243         case $opt in
244             f) CONFIG=$OPTARG;;
245             r) REFORMAT=--reformat;;
246             v) VERBOSE=true;;
247             w) WRITECONF=writeconf;;
248             \?) usage;;
249         esac
250     done
251
252     shift $((OPTIND - 1))
253     ONLY=${ONLY:-$*}
254
255     # print the durations of each test if "true"
256     DDETAILS=${DDETAILS:-false}
257     [ "$TESTSUITELOG" ] && rm -f $TESTSUITELOG || true
258     rm -f $TMP/*active
259 }
260
261 case `uname -r` in
262 2.4.*) EXT=".o"; USE_QUOTA=no; [ ! "$CLIENTONLY" ] && FSTYPE=ext3;;
263     *) EXT=".ko"; USE_QUOTA=yes;;
264 esac
265
266
267 module_loaded () {
268    /sbin/lsmod | grep -q "^\<$1\>"
269 }
270
271 # Load a module on the system where this is running.
272 #
273 # Synopsis: load_module module_name [module arguments for insmod/modprobe]
274 #
275 # If module arguments are not given but MODOPTS_<MODULE> is set, then its value
276 # will be used as the arguments.  Otherwise arguments will be obtained from
277 # /etc/modprobe.conf, from /etc/modprobe.d/Lustre, or else none will be used.
278 #
279 load_module() {
280     local optvar
281     EXT=".ko"
282     module=$1
283     shift
284     BASE=`basename $module $EXT`
285
286     module_loaded ${BASE} && return
287
288     # If no module arguments were passed, get them from $MODOPTS_<MODULE>, else from
289     # modprobe.conf
290     if [ $# -eq 0 ]; then
291         # $MODOPTS_<MODULE>; we could use associative arrays, but that's not in
292         # Bash until 4.x, so we resort to eval.
293         optvar="MODOPTS_$(basename $module | tr a-z A-Z)"
294         eval set -- \$$optvar
295         if [ $# -eq 0 -a -n "$MODPROBECONF" ]; then
296             # Nothing in $MODOPTS_<MODULE>; try modprobe.conf
297             set -- $(grep -P "^options\\s+${BASE}" $MODPROBECONF)
298             # Get rid of "options $module"
299             (($# > 0)) && shift 2
300
301             # Ensure we have accept=all for lnet
302             if [ $(basename $module) = lnet ]; then
303                 # OK, this is a bit wordy...
304                 local arg accept_all_present=false
305                 for arg in "$@"; do
306                     [ "$arg" = accept=all ] && accept_all_present=true
307                 done
308                 $accept_all_present || set -- "$@" accept=all
309             fi
310         fi
311     fi
312
313     [ $# -gt 0 ] && echo "${module} options: '$*'"
314
315     # Note that insmod will ignore anything in modprobe.conf, which is why we're
316     # passing options on the command-line.
317     if [ "$BASE" == "lnet_selftest" ] && \
318             [ -f ${LUSTRE}/../lnet/selftest/${module}${EXT} ]; then
319         insmod ${LUSTRE}/../lnet/selftest/${module}${EXT}
320     elif [ -f ${LUSTRE}/${module}${EXT} ]; then
321         insmod ${LUSTRE}/${module}${EXT} "$@"
322     else
323         # must be testing a "make install" or "rpm" installation
324         # note failed to load ptlrpc_gss is considered not fatal
325         if [ "$BASE" == "ptlrpc_gss" ]; then
326             modprobe $BASE "$@" 2>/dev/null || echo "gss/krb5 is not supported"
327         else
328             modprobe $BASE "$@"
329         fi
330     fi
331 }
332
333 llite_lloop_enabled() {
334     local n1=$(uname -r | cut -d. -f1)
335     local n2=$(uname -r | cut -d. -f2)
336     local n3=$(uname -r | cut -d- -f1 | cut -d. -f3)
337
338     # load the llite_lloop module for < 2.6.32 kernels
339     if [[ $n1 -lt 2 ]] || [[ $n1 -eq 2 && $n2 -lt 6 ]] || \
340        [[ $n1 -eq 2 && $n2 -eq 6 && $n3 -lt 32 ]] || \
341         $LOAD_LLOOP; then
342         return 0
343     fi
344     return 1
345 }
346
347 load_modules_local() {
348     if [ -n "$MODPROBE" ]; then
349         # use modprobe
350         echo "Using modprobe to load modules"
351         return 0
352     fi
353
354     echo Loading modules from $LUSTRE
355     load_module ../libcfs/libcfs/libcfs
356     [ "$PTLDEBUG" ] && lctl set_param debug="$PTLDEBUG"
357     [ "$SUBSYSTEM" ] && lctl set_param subsystem_debug="${SUBSYSTEM# }"
358     load_module ../lnet/lnet/lnet
359     LNETLND=${LNETLND:-"socklnd/ksocklnd"}
360     load_module ../lnet/klnds/$LNETLND
361     load_module lvfs/lvfs
362     load_module obdclass/obdclass
363     load_module ptlrpc/ptlrpc
364     load_module ptlrpc/gss/ptlrpc_gss
365     [ "$USE_QUOTA" = "yes" -a "$LQUOTA" != "no" ] && load_module quota/lquota $LQUOTAOPTS
366     load_module fld/fld
367     load_module fid/fid
368     load_module lmv/lmv
369     load_module mdc/mdc
370     load_module osc/osc
371     load_module lov/lov
372     load_module mgc/mgc
373     if ! client_only; then
374         grep -q crc16 /proc/kallsyms || { modprobe crc16 2>/dev/null || true; }
375         grep -q -w jbd /proc/kallsyms || { modprobe jbd 2>/dev/null || true; }
376         grep -q -w jbd2 /proc/kallsyms || { modprobe jbd2 2>/dev/null || true; }
377         [ "$FSTYPE" = "ldiskfs" ] && load_module ../ldiskfs/ldiskfs/ldiskfs
378         load_module mgs/mgs
379         load_module mds/mds
380         load_module mdd/mdd
381         load_module mdt/mdt
382         load_module lvfs/fsfilt_$FSTYPE
383         load_module cmm/cmm
384         load_module osd-ldiskfs/osd_ldiskfs
385         load_module ost/ost
386         load_module obdfilter/obdfilter
387     fi
388
389
390     load_module llite/lustre
391     llite_lloop_enabled && load_module llite/llite_lloop
392     [ -d /r ] && OGDB=${OGDB:-"/r/tmp"}
393     OGDB=${OGDB:-$TMP}
394     rm -f $OGDB/ogdb-$HOSTNAME
395     $LCTL modules > $OGDB/ogdb-$HOSTNAME
396
397     # 'mount' doesn't look in $PATH, just sbin
398     if [ -f $LUSTRE/utils/mount.lustre ] && \
399        ! grep -qe "/sbin/mount\.lustre " /proc/mounts; then
400         [ ! -f /sbin/mount.lustre ] && touch /sbin/mount.lustre
401         mount --bind $LUSTRE/utils/mount.lustre /sbin/mount.lustre || true
402     fi
403 }
404
405 load_modules () {
406     load_modules_local
407     # bug 19124
408     # load modules on remote nodes optionally
409     # lustre-tests have to be installed on these nodes
410     if $LOAD_MODULES_REMOTE ; then
411         local list=$(comma_list $(remote_nodes_list))
412         echo loading modules on $list
413         do_rpc_nodes $list load_modules 
414     fi
415 }
416
417 check_mem_leak () {
418     LEAK_LUSTRE=$(dmesg | tail -n 30 | grep "obd_memory.*leaked" || true)
419     LEAK_PORTALS=$(dmesg | tail -n 20 | grep "Portals memory leaked" || true)
420     if [ "$LEAK_LUSTRE" -o "$LEAK_PORTALS" ]; then
421         echo "$LEAK_LUSTRE" 1>&2
422         echo "$LEAK_PORTALS" 1>&2
423         mv $TMP/debug $TMP/debug-leak.`date +%s` || true
424         echo "Memory leaks detected"
425         [ -n "$IGNORE_LEAK" ] && { echo "ignoring leaks" && return 0; } || true
426         return 1
427     fi
428 }
429
430 unload_modules() {
431     wait_exit_ST client # bug 12845
432
433     $LUSTRE_RMMOD $FSTYPE || return 2
434
435     if $LOAD_MODULES_REMOTE ; then
436         local list=$(comma_list $(remote_nodes_list))
437         if [ ! -z $list ]; then
438             echo unloading modules on $list
439             do_rpc_nodes $list $LUSTRE_RMMOD $FSTYPE
440             do_rpc_nodes $list check_mem_leak
441         fi
442     fi
443
444     if grep -qe "/sbin/mount\.lustre" /proc/mounts; then
445         umount /sbin/mount.lustre || true
446         [ -w /sbin/mount.lustre -a ! -s /sbin/mount.lustre ] && \
447             rm -f /sbin/mount.lustre || true
448     fi
449
450     check_mem_leak || return 254
451
452     echo "modules unloaded."
453     return 0
454 }
455
456 check_gss_daemon_nodes() {
457     local list=$1
458     dname=$2
459
460     do_nodesv $list "num=\\\$(ps -o cmd -C $dname | grep $dname | wc -l);
461 if [ \\\"\\\$num\\\" -ne 1 ]; then
462     echo \\\$num instance of $dname;
463     exit 1;
464 fi; "
465 }
466
467 check_gss_daemon_facet() {
468     facet=$1
469     dname=$2
470
471     num=`do_facet $facet ps -o cmd -C $dname | grep $dname | wc -l`
472     if [ $num -ne 1 ]; then
473         echo "$num instance of $dname on $facet"
474         return 1
475     fi
476     return 0
477 }
478
479 send_sigint() {
480     local list=$1
481     shift
482     echo Stopping $@ on $list
483     do_nodes $list "killall -2 $@ 2>/dev/null || true"
484 }
485
486 # start gss daemons on all nodes, or
487 # "daemon" on "list" if set
488 start_gss_daemons() {
489     local list=$1
490     local daemon=$2
491
492     if [ "$list" ] && [ "$daemon" ] ; then
493         echo "Starting gss daemon on nodes: $list"
494         do_nodes $list "$daemon" || return 8
495         return 0
496     fi
497
498     local list=$(comma_list $(mdts_nodes))
499
500     echo "Starting gss daemon on mds: $list"
501     do_nodes $list "$LSVCGSSD -v" || return 1
502     if $GSS_PIPEFS; then
503         do_nodes $list "$LGSSD -v" || return 2
504     fi
505
506     list=$(comma_list $(osts_nodes))
507     echo "Starting gss daemon on ost: $list"
508     do_nodes $list "$LSVCGSSD -v" || return 3
509     # starting on clients
510
511     local clients=${CLIENTS:-`hostname`}
512     if $GSS_PIPEFS; then
513         echo "Starting $LGSSD on clients $clients "
514         do_nodes $clients  "$LGSSD -v" || return 4
515     fi
516
517     # wait daemons entering "stable" status
518     sleep 5
519
520     #
521     # check daemons are running
522     #
523     list=$(comma_list $(mdts_nodes) $(osts_nodes))
524     check_gss_daemon_nodes $list lsvcgssd || return 5
525     if $GSS_PIPEFS; then
526         list=$(comma_list $(mdts_nodes))
527         check_gss_daemon_nodes $list lgssd || return 6
528     fi
529     if $GSS_PIPEFS; then
530         check_gss_daemon_nodes $clients lgssd || return 7
531     fi
532 }
533
534 stop_gss_daemons() {
535     local list=$(comma_list $(mdts_nodes))
536     
537     send_sigint $list lsvcgssd lgssd
538
539     list=$(comma_list $(osts_nodes))
540     send_sigint $list lsvcgssd
541
542     list=${CLIENTS:-`hostname`}
543     send_sigint $list lgssd
544 }
545
546 init_gss() {
547     if $GSS; then
548         if ! module_loaded ptlrpc_gss; then
549             load_module ptlrpc/gss/ptlrpc_gss
550             module_loaded ptlrpc_gss ||
551                 error_exit "init_gss : GSS=$GSS, but gss/krb5 is not supported!"
552         fi
553         start_gss_daemons || error_exit "start gss daemon failed! rc=$?"
554
555         if [ -n "$LGSS_KEYRING_DEBUG" ]; then
556             echo $LGSS_KEYRING_DEBUG > /proc/fs/lustre/sptlrpc/gss/lgss_keyring/debug_level
557         fi
558     fi
559 }
560
561 cleanup_gss() {
562     if $GSS; then
563         stop_gss_daemons
564         # maybe cleanup credential cache?
565     fi
566 }
567
568 mdsdevlabel() {
569     local num=$1
570     local device=`mdsdevname $num`
571     local label=`do_facet mds$num "e2label ${device}" | grep -v "CMD: "`
572     echo -n $label
573 }
574
575 ostdevlabel() {
576     local num=$1
577     local device=`ostdevname $num`
578     local label=`do_facet ost$num "e2label ${device}" | grep -v "CMD: "`
579     echo -n $label
580 }
581
582 set_debug_size () {
583     local dz=${1:-$DEBUG_SIZE}
584     local cpus=$(getconf _NPROCESSORS_CONF)
585
586     # bug 19944, adjust size to be -gt num_possible_cpus()
587     # promise 2MB for every cpu at least
588     if [ -n "$cpus" ] && [ $((cpus * 2)) -gt $dz ]; then
589         dz=$((cpus * 2))
590     fi
591     lctl set_param debug_mb=$dz
592 }
593
594 set_default_debug () {
595     local debug=${1:-"$PTLDEBUG"}
596     local subsystem_debug=${2:-"$SUBSYSTEM"}
597     local debug_size=${3:-$DEBUG_SIZE}
598
599     lctl set_param debug="$debug"
600     lctl set_param subsystem_debug="${subsystem_debug# }"
601
602     set_debug_size $debug_size
603     sync
604 }
605
606 set_default_debug_nodes () {
607     local nodes=$1
608
609     if [[ ,$nodes, = *,$HOSTNAME,* ]]; then
610         nodes=$(exclude_items_from_list "$nodes" "$HOSTNAME")
611         set_default_debug
612     fi
613
614     [[ -n $nodes ]] && do_rpc_nodes $nodes set_default_debug \
615         \\\"$PTLDEBUG\\\" \\\"$SUBSYSTEM\\\" $DEBUG_SIZE || true
616 }
617
618 set_default_debug_facet () {
619     local facet=$1
620     local node=$(facet_active_host $facet)
621     [ -z "$node" ] && echo "No host defined for facet $facet" && exit 1
622
623     set_default_debug_nodes $node
624 }
625
626 # Facet functions
627 mount_facets () {
628     local facets=${1:-$(get_facets)}
629     local facet
630
631     for facet in ${facets//,/ }; do
632         mount_facet $facet || error "Restart of $facet failed!"
633     done
634 }
635
636 mount_facet() {
637     local facet=$1
638     shift
639     local dev=$(facet_active $facet)_dev
640     local opt=${facet}_opt
641     local mntpt=$(facet_mntpt $facet)
642
643     echo "Starting ${facet}: ${!opt} $@ ${!dev} $mntpt"
644     do_facet ${facet} "mkdir -p $mntpt; mount -t lustre ${!opt} $@ ${!dev} $mntpt"
645     RC=${PIPESTATUS[0]}
646     if [ $RC -ne 0 ]; then
647         echo "mount -t lustre $@ ${!dev} $mntpt"
648         echo "Start of ${!dev} on ${facet} failed ${RC}"
649     else
650         set_default_debug_facet $facet
651
652         label=$(do_facet ${facet} "$E2LABEL ${!dev}")
653         [ -z "$label" ] && echo no label for ${!dev} && exit 1
654         eval export ${facet}_svc=${label}
655         echo Started ${label}
656     fi
657     return $RC
658 }
659
660 # start facet device options
661 start() {
662     local facet=$1
663     shift
664     local device=$1
665     shift
666     eval export ${facet}_dev=${device}
667     eval export ${facet}_opt=\"$@\"
668
669     local varname=${facet}failover_dev
670     if [ -n "${!varname}" ] ; then
671         eval export ${facet}failover_dev=${!varname}
672     else
673         eval export ${facet}failover_dev=$device
674     fi
675
676     local mntpt=$(facet_mntpt $facet)
677     do_facet ${facet} mkdir -p $mntpt
678     eval export ${facet}_MOUNT=$mntpt
679     mount_facet ${facet}
680     RC=$?
681     return $RC
682 }
683
684 stop() {
685     local running
686     local facet=$1
687     shift
688     local HOST=`facet_active_host $facet`
689     [ -z $HOST ] && echo stop: no host for $facet && return 0
690
691     local mntpt=$(facet_mntpt $facet)
692     running=$(do_facet ${facet} "grep -c $mntpt' ' /proc/mounts") || true
693     if [ ${running} -ne 0 ]; then
694         echo "Stopping $mntpt (opts:$@)"
695         do_facet ${facet} umount -d $@ $mntpt
696     fi
697
698     # umount should block, but we should wait for unrelated obd's
699     # like the MGS or MGC to also stop.
700     wait_exit_ST ${facet}
701 }
702
703 # save quota version (both administrative and operational quotas)
704 # add an additional parameter if mountpoint is ever different from $MOUNT
705 quota_save_version() {
706     local fsname=${2:-$FSNAME}
707     local spec=$1
708     local ver=$(tr -c -d "123" <<< $spec)
709     local type=$(tr -c -d "ug" <<< $spec)
710
711     [ -n "$ver" -a "$ver" != "3" ] && error "wrong quota version specifier"
712
713     [ -n "$type" ] && { $LFS quotacheck -$type $MOUNT || error "quotacheck has failed"; }
714
715     do_facet mgs "lctl conf_param ${fsname}-MDT*.mdd.quota_type=$spec"
716     local varsvc
717     local osts=$(get_facets OST)
718     for ost in ${osts//,/ }; do
719         varsvc=${ost}_svc
720         do_facet mgs "lctl conf_param ${!varsvc}.ost.quota_type=$spec"
721     done
722 }
723
724 # client could mount several lustre 
725 quota_type () {
726     local fsname=${1:-$FSNAME}
727     local rc=0
728     do_facet mgs lctl get_param mdd.${fsname}-MDT*.quota_type || rc=$?
729     do_nodes $(comma_list $(osts_nodes)) \
730         lctl get_param obdfilter.${fsname}-OST*.quota_type || rc=$?
731     return $rc 
732 }
733
734 restore_quota_type () {
735    local mntpt=${1:-$MOUNT}
736    local quota_type=$(quota_type $FSNAME | grep MDT | cut -d "=" -f2)
737    if [ ! "$old_QUOTA_TYPE" ] || [ "$quota_type" = "$old_QUOTA_TYPE" ]; then
738         return
739    fi
740    quota_save_version $old_QUOTA_TYPE
741 }
742
743 setup_quota(){
744     local mntpt=$1
745
746     # We need save the original quota_type params, and restore them after testing
747
748     # Suppose that quota type the same on mds and ost
749     local quota_type=$(quota_type | grep MDT | cut -d "=" -f2)
750     [ ${PIPESTATUS[0]} -eq 0 ] || error "quota_type failed!"
751     echo "[HOST:$HOSTNAME] [old_quota_type:$quota_type] [new_quota_type:$QUOTA_TYPE]"
752     if [ "$quota_type" != "$QUOTA_TYPE" ]; then
753         export old_QUOTA_TYPE=$quota_type
754         quota_save_version $QUOTA_TYPE
755     else
756         qtype=$(tr -c -d "ug" <<< $QUOTA_TYPE)
757         $LFS quotacheck -$qtype $mntpt || error "quotacheck has failed for $type"
758     fi
759
760     local quota_usrs=$QUOTA_USERS
761
762     # get_filesystem_size
763     local disksz=$(lfs df $mntpt | grep "filesystem summary:"  | awk '{print $3}')
764     local blk_soft=$((disksz + 1024))
765     local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
766
767     local Inodes=$(lfs df -i $mntpt | grep "filesystem summary:"  | awk '{print $3}')
768     local i_soft=$Inodes
769     local i_hard=$((i_soft + i_soft / 20))
770
771     echo "Total disk size: $disksz  block-softlimit: $blk_soft block-hardlimit:
772         $blk_hard inode-softlimit: $i_soft inode-hardlimit: $i_hard"
773
774     local cmd
775     for usr in $quota_usrs; do
776         echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
777         for type in u g; do
778             cmd="$LFS setquota -$type $usr -b $blk_soft -B $blk_hard -i $i_soft -I $i_hard $mntpt"
779             echo "+ $cmd"
780             eval $cmd || error "$cmd FAILED!"
781         done
782         # display the quota status
783         echo "Quota settings for $usr : "
784         $LFS quota -v -u $usr $mntpt || true
785     done
786 }
787
788 zconf_mount() {
789     local client=$1
790     local mnt=$2
791     local OPTIONS=${3:-$MOUNTOPT}
792
793     local device=$MGSNID:/$FSNAME
794     if [ -z "$mnt" -o -z "$FSNAME" ]; then
795         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
796         exit 1
797     fi
798
799     echo "Starting client: $client: $OPTIONS $device $mnt"
800     do_node $client mkdir -p $mnt
801     do_node $client mount -t lustre $OPTIONS $device $mnt || return 1
802
803     set_default_debug_nodes $client
804
805     return 0
806 }
807
808 zconf_umount() {
809     local client=$1
810     local mnt=$2
811     local force
812     local busy 
813     local need_kill
814
815     [ "$3" ] && force=-f
816     local running=$(do_node $client "grep -c $mnt' ' /proc/mounts") || true
817     if [ $running -ne 0 ]; then
818         echo "Stopping client $client $mnt (opts:$force)"
819         do_node $client lsof -t $mnt || need_kill=no
820         if [ "x$force" != "x" -a "x$need_kill" != "xno" ]; then
821             pids=$(do_node $client lsof -t $mnt | sort -u);
822             if [ -n $pids ]; then
823                 do_node $client kill -9 $pids || true
824             fi
825         fi
826
827         busy=$(do_node $client "umount $force $mnt 2>&1" | grep -c "busy") || true
828         if [ $busy -ne 0 ] ; then
829             echo "$mnt is still busy, wait one second" && sleep 1
830             do_node $client umount $force $mnt
831         fi
832     fi
833 }
834
835 # nodes is comma list
836 sanity_mount_check_nodes () {
837     local nodes=$1
838     shift
839     local mnts="$@"
840     local mnt
841
842     # FIXME: assume that all cluster nodes run the same os
843     [ "$(uname)" = Linux ] || return 0
844
845     local rc=0
846     for mnt in $mnts ; do
847         do_nodes $nodes "running=\\\$(grep -c $mnt' ' /proc/mounts);
848 mpts=\\\$(mount | grep -w -c $mnt);
849 if [ \\\$running -ne \\\$mpts ]; then
850     echo \\\$(hostname) env are INSANE!;
851     exit 1;
852 fi"
853     [ $? -eq 0 ] || rc=1 
854     done
855     return $rc
856 }
857
858 sanity_mount_check_servers () {
859     [ "$CLIENTONLY" ] && 
860         { echo "CLIENTONLY mode, skip mount_check_servers"; return 0; } || true
861     echo Checking servers environments
862
863     # FIXME: modify get_facets to display all facets wo params
864     local facets="$(get_facets OST),$(get_facets MDS),mgs"
865     local node
866     local mntpt
867     local facet
868     for facet in ${facets//,/ }; do
869         node=$(facet_host ${facet})
870         mntpt=$(facet_mntpt $facet)
871         sanity_mount_check_nodes $node $mntpt ||
872             { error "server $node environments are insane!"; return 1; }
873     done
874 }
875
876 sanity_mount_check_clients () {
877     local clients=${1:-$CLIENTS}
878     local mntpt=${2:-$MOUNT}
879     local mntpt2=${3:-$MOUNT2}
880
881     [ -z $clients ] && clients=$(hostname)
882     echo Checking clients $clients environments
883
884     sanity_mount_check_nodes $clients $mntpt $mntpt2 ||
885        error "clients environments are insane!"
886 }
887
888 sanity_mount_check () {
889     sanity_mount_check_servers || return 1
890     sanity_mount_check_clients || return 2
891 }
892
893 # mount clients if not mouted
894 zconf_mount_clients() {
895     local clients=$1
896     local mnt=$2
897     local OPTIONS=${3:-$MOUNTOPT}
898
899     local device=$MGSNID:/$FSNAME
900     if [ -z "$mnt" -o -z "$FSNAME" ]; then
901         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
902         exit 1
903     fi
904
905     echo "Starting client $clients: $OPTIONS $device $mnt"
906
907     do_nodes $clients "
908 running=\\\$(mount | grep -c $mnt' ');
909 rc=0;
910 if [ \\\$running -eq 0 ] ; then
911     mkdir -p $mnt;
912     mount -t lustre $OPTIONS $device $mnt;
913     rc=\\\$?;
914 fi;
915 exit \\\$rc" || return ${PIPESTATUS[0]}
916
917     echo "Started clients $clients: "
918     do_nodes $clients "mount | grep -w $mnt"
919
920     set_default_debug_nodes $clients
921
922     return 0
923 }
924
925 zconf_umount_clients() {
926     local clients=$1
927     local mnt=$2
928     local force
929
930     [ "$3" ] && force=-f
931
932     echo "Stopping clients: $clients $mnt (opts:$force)"
933     do_nodes $clients "running=\\\$(grep -c $mnt' ' /proc/mounts);
934 if [ \\\$running -ne 0 ] ; then
935 echo Stopping client \\\$(hostname) $mnt opts:$force;
936 lsof -t $mnt || need_kill=no;
937 if [ "x$force" != "x" -a "x\\\$need_kill" != "xno" ]; then
938     pids=\\\$(lsof -t $mnt | sort -u);
939     if [ -n \\\"\\\$pids\\\" ]; then
940              kill -9 \\\$pids;
941     fi
942 fi;
943 busy=\\\$(umount $force $mnt 2>&1 | grep -c "busy");
944 if [ \\\$busy -ne 0 ] ; then
945     echo "$mnt is still busy, wait one second" && sleep 1;
946     umount $force $mnt;
947 fi
948 fi"
949 }
950
951 shutdown_node () {
952     local node=$1
953     echo + $POWER_DOWN $node
954     $POWER_DOWN $node
955 }
956
957 shutdown_node_hard () {
958     local host=$1
959     local attempts=$SHUTDOWN_ATTEMPTS
960
961     for i in $(seq $attempts) ; do
962         shutdown_node $host
963         sleep 1
964         wait_for_function --quiet "! ping -w 3 -c 1 $host" 5 1 && return 0
965         echo "waiting for $host to fail attempts=$attempts"
966         [ $i -lt $attempts ] || \
967             { echo "$host still pingable after power down! attempts=$attempts" && return 1; } 
968     done
969 }
970
971 shutdown_client() {
972     local client=$1
973     local mnt=${2:-$MOUNT}
974     local attempts=3
975
976     if [ "$FAILURE_MODE" = HARD ]; then
977         shutdown_node_hard $client
978     else
979        zconf_umount_clients $client $mnt -f
980     fi
981 }
982
983 facets_on_host () {
984     local host=$1
985     local facets="$(get_facets OST),$(get_facets MDS)"
986     local affected
987
988     combined_mgs_mds || facets="$facets,mgs"
989
990     for facet in ${facets//,/ }; do
991         if [ $(facet_active_host $facet) == $host ]; then
992            affected="$affected $facet"
993         fi
994     done
995
996     echo $(comma_list $affected)
997 }
998
999 facet_up () {
1000     local facet=$1
1001     local host=${2:-$(facet_host $facet)}
1002
1003     local label=$(convert_facet2label $facet)
1004     do_node $host lctl dl | awk '{print $4}' | grep -q $label
1005 }
1006
1007 facets_up_on_host () {
1008     local host=$1
1009     local facets=$(facets_on_host $host)
1010     local affected_up
1011
1012     for facet in ${facets//,/ }; do
1013         if $(facet_up $facet $host); then
1014             affected_up="$affected_up $facet"
1015         fi
1016     done
1017
1018     echo $(comma_list $affected_up)
1019 }
1020
1021 shutdown_facet() {
1022     local facet=$1
1023
1024     if [ "$FAILURE_MODE" = HARD ]; then
1025         shutdown_node_hard $(facet_active_host $facet)
1026     else
1027         stop $facet
1028     fi
1029 }
1030
1031 reboot_node() {
1032     local node=$1
1033     echo + $POWER_UP $node
1034     $POWER_UP $node
1035 }
1036
1037 remount_facet() {
1038     local facet=$1
1039
1040     stop $facet
1041     mount_facet $facet
1042 }
1043
1044 reboot_facet() {
1045     local facet=$1
1046     if [ "$FAILURE_MODE" = HARD ]; then
1047         reboot_node $(facet_active_host $facet)
1048     else
1049         sleep 10
1050     fi
1051 }
1052
1053 boot_node() {
1054     local node=$1
1055     if [ "$FAILURE_MODE" = HARD ]; then
1056        reboot_node $node
1057        wait_for_host $node
1058     fi
1059 }
1060
1061 facets_hosts () {
1062     local facets=$1
1063     local hosts
1064
1065     for facet in ${facets//,/ }; do
1066         hosts=$(expand_list $hosts $(facet_host $facet) )
1067     done
1068
1069     echo $hosts
1070 }
1071
1072 _check_progs_installed () {
1073     local progs=$@
1074     local rc=0
1075
1076     for prog in $progs; do
1077         if ! [ "$(which $prog)"  -o  "${!prog}" ]; then
1078            echo $prog missing on $(hostname)
1079            rc=1
1080         fi
1081     done
1082     return $rc
1083 }
1084
1085 check_progs_installed () {
1086     local nodes=$1
1087     shift
1088
1089     do_rpc_nodes $nodes _check_progs_installed $@
1090 }
1091
1092 # recovery-scale functions
1093 node_var_name() {
1094     echo __$(echo $1 | tr '-' '_' | tr '.' '_')
1095 }
1096
1097 start_client_load() {
1098     local client=$1
1099     local load=$2
1100     local var=$(node_var_name $client)_load
1101     eval export ${var}=$load
1102
1103     do_node $client "PATH=$PATH MOUNT=$MOUNT ERRORS_OK=$ERRORS_OK \
1104                               BREAK_ON_ERROR=$BREAK_ON_ERROR \
1105                               END_RUN_FILE=$END_RUN_FILE \
1106                               LOAD_PID_FILE=$LOAD_PID_FILE \
1107                               TESTSUITELOG=$TESTSUITELOG \
1108                               run_${load}.sh" &
1109     CLIENT_LOAD_PIDS="$CLIENT_LOAD_PIDS $!"
1110     log "Started client load: ${load} on $client"
1111
1112     return 0
1113 }
1114
1115 start_client_loads () {
1116     local -a clients=(${1//,/ })
1117     local numloads=${#CLIENT_LOADS[@]}
1118     local testnum
1119
1120     for ((nodenum=0; nodenum < ${#clients[@]}; nodenum++ )); do
1121         testnum=$((nodenum % numloads))
1122         start_client_load ${clients[nodenum]} ${CLIENT_LOADS[testnum]}
1123     done
1124     # bug 22169: wait the background threads to start
1125     sleep 2
1126 }
1127
1128 # only for remote client 
1129 check_client_load () {
1130     local client=$1
1131     local var=$(node_var_name $client)_load
1132     local TESTLOAD=run_${!var}.sh
1133
1134     ps auxww | grep -v grep | grep $client | grep -q "$TESTLOAD" || return 1
1135     
1136     # bug 18914: try to connect several times not only when
1137     # check ps, but  while check_catastrophe also
1138     local tries=3
1139     local RC=254
1140     while [ $RC = 254 -a $tries -gt 0 ]; do
1141         let tries=$tries-1
1142         # assume success
1143         RC=0
1144         if ! check_catastrophe $client; then
1145             RC=${PIPESTATUS[0]}
1146             if [ $RC -eq 254 ]; then
1147                 # FIXME: not sure how long we shuold sleep here
1148                 sleep 10
1149                 continue
1150             fi
1151             echo "check catastrophe failed: RC=$RC "
1152             return $RC
1153         fi
1154     done
1155     # We can continue try to connect if RC=254
1156     # Just print the warning about this
1157     if [ $RC = 254 ]; then
1158         echo "got a return status of $RC from do_node while checking catastrophe on $client"
1159     fi
1160
1161     # see if the load is still on the client
1162     tries=3
1163     RC=254
1164     while [ $RC = 254 -a $tries -gt 0 ]; do
1165         let tries=$tries-1
1166         # assume success
1167         RC=0
1168         if ! do_node $client "ps auxwww | grep -v grep | grep -q $TESTLOAD"; then
1169             RC=${PIPESTATUS[0]}
1170             sleep 30
1171         fi
1172     done
1173     if [ $RC = 254 ]; then
1174         echo "got a return status of $RC from do_node while checking (catastrophe and 'ps') the client load on $client"
1175         # see if we can diagnose a bit why this is
1176     fi
1177
1178     return $RC
1179 }
1180 check_client_loads () {
1181    local clients=${1//,/ }
1182    local client=
1183    local rc=0
1184
1185    for client in $clients; do
1186       check_client_load $client
1187       rc=${PIPESTATUS[0]}
1188       if [ "$rc" != 0 ]; then
1189         log "Client load failed on node $client, rc=$rc"
1190         return $rc
1191       fi
1192    done
1193 }
1194
1195 restart_client_loads () {
1196     local clients=${1//,/ }
1197     local expectedfail=${2:-""}
1198     local client=
1199     local rc=0
1200
1201     for client in $clients; do
1202         check_client_load $client
1203         rc=${PIPESTATUS[0]}
1204         if [ "$rc" != 0 -a "$expectedfail" ]; then
1205             local var=$(node_var_name $client)_load
1206             start_client_load $client ${!var}
1207             echo "Restarted client load ${!var}: on $client. Checking ..."
1208             check_client_load $client
1209             rc=${PIPESTATUS[0]}
1210             if [ "$rc" != 0 ]; then
1211                 log "Client load failed to restart on node $client, rc=$rc"
1212                 # failure one client load means test fail
1213                 # we do not need to check other 
1214                 return $rc
1215             fi
1216         else
1217             return $rc
1218         fi
1219     done
1220 }
1221 # End recovery-scale functions
1222
1223 # verify that lustre actually cleaned up properly
1224 cleanup_check() {
1225     [ -f $CATASTROPHE ] && [ `cat $CATASTROPHE` -ne 0 ] && \
1226         error "LBUG/LASSERT detected"
1227     BUSY=`dmesg | grep -i destruct || true`
1228     if [ "$BUSY" ]; then
1229         echo "$BUSY" 1>&2
1230         [ -e $TMP/debug ] && mv $TMP/debug $TMP/debug-busy.`date +%s`
1231         exit 205
1232     fi
1233
1234     check_mem_leak || exit 204
1235
1236     [ "`lctl dl 2> /dev/null | wc -l`" -gt 0 ] && lctl dl && \
1237         echo "$0: lustre didn't clean up..." 1>&2 && return 202 || true
1238
1239     if module_loaded lnet || module_loaded libcfs; then
1240         echo "$0: modules still loaded..." 1>&2
1241         /sbin/lsmod 1>&2
1242         return 203
1243     fi
1244     return 0
1245 }
1246
1247 wait_update () {
1248     local node=$1
1249     local TEST=$2
1250     local FINAL=$3
1251     local MAX=${4:-90}
1252
1253         local RESULT
1254         local WAIT=0
1255         local sleep=5
1256         while [ true ]; do
1257             RESULT=$(do_node $node "$TEST")
1258             if [ "$RESULT" == "$FINAL" ]; then
1259                 echo "Updated after $WAIT sec: wanted '$FINAL' got '$RESULT'"
1260                 return 0
1261             fi
1262             [ $WAIT -ge $MAX ] && break
1263             echo "Waiting $((MAX - WAIT)) secs for update"
1264             WAIT=$((WAIT + sleep))
1265             sleep $sleep
1266         done
1267         echo "Update not seen after $MAX sec: wanted '$FINAL' got '$RESULT'"
1268         return 3
1269 }
1270
1271 wait_update_facet () {
1272     local facet=$1
1273     wait_update  $(facet_active_host $facet) "$@"
1274 }
1275
1276 wait_delete_completed () {
1277     local TOTALPREV=`lctl get_param -n osc.*.kbytesavail | \
1278                      awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1279
1280     local WAIT=0
1281     local MAX_WAIT=20
1282     while [ "$WAIT" -ne "$MAX_WAIT" ]; do
1283         sleep 1
1284         TOTAL=`lctl get_param -n osc.*.kbytesavail | \
1285                awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1286         [ "$TOTAL" -eq "$TOTALPREV" ] && return 0
1287         echo "Waiting delete completed ... prev: $TOTALPREV current: $TOTAL "
1288         TOTALPREV=$TOTAL
1289         WAIT=$(( WAIT + 1))
1290     done
1291     echo "Delete is not completed in $MAX_WAIT sec"
1292     return 1
1293 }
1294
1295 wait_for_host() {
1296     local hostlist=$1
1297
1298     # we can use "for" here because we are waiting the slowest
1299     for host in ${hostlist//,/ }; do
1300         check_network "$host" 900
1301     done
1302     while ! do_nodes $hostlist hostname  > /dev/null; do sleep 5; done
1303 }
1304
1305 wait_for_facet() {
1306     local facetlist=$1
1307     local hostlist
1308
1309     for facet in ${facetlist//,/ }; do
1310         hostlist=$(expand_list $hostlist $(facet_active_host $facet))
1311     done
1312     wait_for_host $hostlist
1313 }
1314
1315 _wait_recovery_complete () {
1316     local param=$1
1317
1318     # Use default policy if $2 is not passed by caller.
1319     local MAX=${2:-$(max_recovery_time)}
1320
1321     local WAIT=0
1322     local STATUS=
1323
1324     while [ $WAIT -lt $MAX ]; do
1325         STATUS=$(lctl get_param -n $param | grep status)
1326         echo $param $STATUS
1327         [[ $STATUS = "status: COMPLETE" || $STATUS = "status: INACTIVE" ]] && return 0
1328         sleep 5
1329         WAIT=$((WAIT + 5))
1330         echo "Waiting $((MAX - WAIT)) secs for $param recovery done. $STATUS"
1331     done
1332     echo "$param recovery not done in $MAX sec. $STATUS"
1333     return 1
1334 }
1335
1336 wait_recovery_complete () {
1337     local facet=$1
1338
1339     # with an assumption that at_max is the same on all nodes
1340     local MAX=${2:-$(max_recovery_time)}
1341
1342     local facets=$facet
1343     if [ "$FAILURE_MODE" = HARD ]; then
1344         facets=$(facets_on_host $(facet_active_host $facet))
1345     fi
1346     echo affected facets: $facets
1347
1348     # we can use "for" here because we are waiting the slowest
1349     for facet in ${facets//,/ }; do
1350         local var_svc=${facet}_svc
1351         local param="*.${!var_svc}.recovery_status"
1352
1353         local host=$(facet_active_host $facet)
1354         do_rpc_nodes $host _wait_recovery_complete $param $MAX
1355     done
1356 }
1357
1358 wait_mds_ost_sync () {
1359     # just because recovery is done doesn't mean we've finished
1360     # orphan cleanup. Wait for llogs to get synchronized.
1361     echo "Waiting for orphan cleanup..."
1362     # MAX value includes time needed for MDS-OST reconnection
1363     local MAX=$(( TIMEOUT * 2 ))
1364     local WAIT=0
1365     while [ $WAIT -lt $MAX ]; do
1366         local -a sync=($(do_nodes $(comma_list $(osts_nodes)) \
1367             "$LCTL get_param -n obdfilter.*.mds_sync"))
1368         local con=1
1369         local i
1370         for ((i=0; i<${#sync[@]}; i++)); do
1371             [ ${sync[$i]} -eq 0 ] && continue
1372             # there is a not finished MDS-OST synchronization
1373             con=0
1374             break;
1375         done
1376         sleep 2 # increase waiting time and cover statfs cache
1377         [ ${con} -eq 1 ] && return 0
1378         echo "Waiting $WAIT secs for $facet mds-ost sync done."
1379         WAIT=$((WAIT + 2))
1380     done
1381     echo "$facet recovery not done in $MAX sec. $STATUS"
1382     return 1
1383 }
1384
1385 wait_destroy_complete () {
1386     echo "Waiting for destroy to be done..."
1387     # MAX value shouldn't be big as this mean server responsiveness
1388     # never increase this just to make test pass but investigate
1389     # why it takes so long time
1390     local MAX=5
1391     local WAIT=0
1392     while [ $WAIT -lt $MAX ]; do
1393         local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
1394         local con=1
1395         for ((i=0; i<${#RPCs[@]}; i++)); do
1396             [ ${RPCs[$i]} -eq 0 ] && continue
1397             # there are still some destroy RPCs in flight
1398             con=0
1399             break;
1400         done
1401         sleep 1
1402         [ ${con} -eq 1 ] && return 0 # done waiting
1403         echo "Waiting $WAIT secs for destroys to be done."
1404         WAIT=$((WAIT + 1))
1405     done
1406     echo "Destroys weren't done in $MAX sec."
1407     return 1
1408 }
1409
1410 wait_exit_ST () {
1411     local facet=$1
1412
1413     local WAIT=0
1414     local INTERVAL=1
1415     local running
1416     # conf-sanity 31 takes a long time cleanup
1417     while [ $WAIT -lt 300 ]; do
1418         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
1419         [ -z "${running}" ] && return 0
1420         echo "waited $WAIT for${running}"
1421         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
1422         sleep $INTERVAL
1423         WAIT=$((WAIT + INTERVAL))
1424     done
1425     echo "service didn't stop after $WAIT seconds.  Still running:"
1426     echo ${running}
1427     return 1
1428 }
1429
1430 wait_remote_prog () {
1431    local prog=$1
1432    local WAIT=0
1433    local INTERVAL=5
1434    local rc=0
1435
1436    [ "$PDSH" = "no_dsh" ] && return 0
1437
1438    while [ $WAIT -lt $2 ]; do
1439         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
1440         [ -z "${running}" ] && return 0 || true
1441         echo "waited $WAIT for: "
1442         echo "$running"
1443         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
1444         sleep $INTERVAL
1445         WAIT=$((WAIT + INTERVAL))
1446     done
1447     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
1448     [ -z "$pids" ] && return 0
1449     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
1450     # FIXME: not portable
1451     for pid in $pids; do
1452         cat /proc/${pid}/status || true
1453         cat /proc/${pid}/wchan || true
1454         echo "Killing $pid"
1455         kill -9 $pid || true
1456         sleep 1
1457         ps -P $pid && rc=1
1458     done
1459
1460     return $rc
1461 }
1462
1463 clients_up() {
1464     # not every config has many clients
1465     sleep 1
1466     if [ ! -z "$CLIENTS" ]; then
1467         $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
1468     else
1469         stat -f $MOUNT > /dev/null
1470     fi
1471 }
1472
1473 client_up() {
1474     local client=$1
1475     # usually checked on particular client or locally
1476     sleep 1
1477     if [ ! -z "$client" ]; then
1478         $PDSH $client "stat -f $MOUNT" > /dev/null
1479     else
1480         stat -f $MOUNT > /dev/null
1481     fi
1482 }
1483
1484 client_evicted() {
1485     ! client_up $1
1486 }
1487
1488 client_reconnect() {
1489     uname -n >> $MOUNT/recon
1490     if [ -z "$CLIENTS" ]; then
1491         df $MOUNT; uname -n >> $MOUNT/recon
1492     else
1493         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
1494     fi
1495     echo Connected clients:
1496     cat $MOUNT/recon
1497     ls -l $MOUNT/recon > /dev/null
1498     rm $MOUNT/recon
1499 }
1500
1501 affected_facets () {
1502     local facet=$1
1503
1504     local host=$(facet_active_host $facet)
1505     local affected=$facet
1506
1507     if [ "$FAILURE_MODE" = HARD ]; then
1508         affected=$(facets_up_on_host $host)
1509     fi
1510     echo $affected
1511 }
1512
1513 facet_failover() {
1514     local facet=$1
1515     local sleep_time=$2
1516     local host=$(facet_active_host $facet)
1517
1518     echo "Failing $facet on node $host"
1519
1520     local affected=$(affected_facets $facet)
1521
1522     shutdown_facet $facet
1523
1524     echo affected facets: $affected
1525
1526     [ -n "$sleep_time" ] && sleep $sleep_time
1527
1528     reboot_facet $facet
1529
1530     change_active $affected
1531
1532     wait_for_facet $affected
1533     # start mgs first if it is affected
1534     if ! combined_mgs_mds && list_member $affected mgs; then
1535         mount_facet mgs || error "Restart of mgs failed"
1536     fi
1537     # FIXME; has to be changed to mount all facets concurrently
1538     affected=$(exclude_items_from_list $affected mgs)
1539     mount_facets $affected
1540 }
1541
1542 obd_name() {
1543     local facet=$1
1544 }
1545
1546 replay_barrier() {
1547     local facet=$1
1548     do_facet $facet "sync; sync; sync"
1549     df $MOUNT
1550
1551     # make sure there will be no seq change
1552     local clients=${CLIENTS:-$HOSTNAME}
1553     do_nodes $clients "f=${MOUNT}/fsa-\\\$(hostname); mcreate \\\$f; rm \\\$f"
1554
1555     local svc=${facet}_svc
1556     do_facet $facet $LCTL --device %${!svc} notransno
1557     do_facet $facet $LCTL --device %${!svc} readonly
1558     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1559     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1560 }
1561
1562 replay_barrier_nodf() {
1563     local facet=$1    echo running=${running}
1564     do_facet $facet "sync; sync; sync"
1565     local svc=${facet}_svc
1566     echo Replay barrier on ${!svc}
1567     do_facet $facet $LCTL --device %${!svc} notransno
1568     do_facet $facet $LCTL --device %${!svc} readonly
1569     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1570     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1571 }
1572
1573 replay_barrier_nosync() {
1574     local facet=$1    echo running=${running}
1575     local svc=${facet}_svc
1576     echo Replay barrier on ${!svc}
1577     do_facet $facet $LCTL --device %${!svc} notransno
1578     do_facet $facet $LCTL --device %${!svc} readonly
1579     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1580     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1581 }
1582
1583 mds_evict_client() {
1584     UUID=`lctl get_param -n mdc.${mds1_svc}-mdc-*.uuid`
1585     do_facet mds1 "lctl set_param -n mdt.${mds1_svc}.evict_client $UUID"
1586 }
1587
1588 ost_evict_client() {
1589     UUID=`lctl get_param -n devices| grep ${ost1_svc}-osc- | egrep -v 'MDT' | awk '{print $5}'`
1590     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.evict_client $UUID"
1591 }
1592
1593 fail() {
1594     facet_failover $* || error "failover: $?"
1595     clients_up || error "post-failover df: $?"
1596 }
1597
1598 fail_nodf() {
1599         local facet=$1
1600         facet_failover $facet
1601 }
1602
1603 fail_abort() {
1604     local facet=$1
1605     stop $facet
1606     change_active $facet
1607     wait_for_facet $facet
1608     mount_facet $facet -o abort_recovery
1609     clients_up || echo "first df failed: $?"
1610     clients_up || error "post-failover df: $?"
1611 }
1612
1613 do_lmc() {
1614     echo There is no lmc.  This is mountconf, baby.
1615     exit 1
1616 }
1617
1618 host_nids_address() {
1619     local nodes=$1
1620     local kind=$2
1621
1622     if [ -n "$kind" ]; then
1623         nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
1624     else
1625         nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
1626     fi
1627     echo $nids
1628 }
1629
1630 h2name_or_ip() {
1631     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1632         echo $1"@$2"
1633     fi
1634 }
1635
1636 h2ptl() {
1637    if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1638        ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | awk '{print $1}'`
1639        if [ -z "$ID" ]; then
1640            echo "Could not get a ptl id for $1..."
1641            exit 1
1642        fi
1643        echo $ID"@ptl"
1644    fi
1645 }
1646 declare -fx h2ptl
1647
1648 h2tcp() {
1649     h2name_or_ip "$1" "tcp"
1650 }
1651 declare -fx h2tcp
1652
1653 h2elan() {
1654     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1655         if type __h2elan >/dev/null 2>&1; then
1656             ID=$(__h2elan $1)
1657         else
1658             ID=`echo $1 | sed 's/[^0-9]*//g'`
1659         fi
1660         echo $ID"@elan"
1661     fi
1662 }
1663 declare -fx h2elan
1664
1665 h2o2ib() {
1666     h2name_or_ip "$1" "o2ib"
1667 }
1668 declare -fx h2o2ib
1669
1670 facet_host() {
1671     local facet=$1
1672
1673     [ "$facet" == client ] && echo -n $HOSTNAME && return
1674     varname=${facet}_HOST
1675     if [ -z "${!varname}" ]; then
1676         if [ "${facet:0:3}" == "ost" ]; then
1677             eval ${facet}_HOST=${ost_HOST}
1678         fi
1679     fi
1680     echo -n ${!varname}
1681 }
1682
1683 facet_active() {
1684     local facet=$1
1685     local activevar=${facet}active
1686
1687     if [ -f $TMP/${facet}active ] ; then
1688         source $TMP/${facet}active
1689     fi
1690
1691     active=${!activevar}
1692     if [ -z "$active" ] ; then
1693         echo -n ${facet}
1694     else
1695         echo -n ${active}
1696     fi
1697 }
1698
1699 facet_active_host() {
1700     local facet=$1
1701     local active=`facet_active $facet`
1702     if [ "$facet" == client ]; then
1703         echo $HOSTNAME
1704     else
1705         echo `facet_host $active`
1706     fi
1707 }
1708
1709 change_active() {
1710     local facetlist=$1
1711     local facet
1712
1713     facetlist=$(exclude_items_from_list $facetlist mgs)
1714
1715     for facet in ${facetlist//,/ }; do
1716     local failover=${facet}failover
1717     local host=`facet_host $failover`
1718     [ -z "$host" ] && return
1719
1720     local curactive=`facet_active $facet`
1721     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
1722         eval export ${facet}active=$facet
1723     else
1724         eval export ${facet}active=$failover
1725     fi
1726     # save the active host for this facet
1727     local activevar=${facet}active
1728     echo "$activevar=${!activevar}" > $TMP/$activevar
1729     [[ $facet = mds1 ]] && combined_mgs_mds && \
1730         echo "mgsactive=${!activevar}" > $TMP/mgsactive
1731     local TO=`facet_active_host $facet`
1732     echo "Failover $facet to $TO"
1733     done
1734 }
1735
1736 do_node() {
1737     local verbose=false
1738     # do not stripe off hostname if verbose, bug 19215
1739     if [ x$1 = x--verbose ]; then
1740         shift
1741         verbose=true
1742     fi
1743
1744     local HOST=$1
1745     shift
1746     local myPDSH=$PDSH
1747     if [ "$HOST" = "$HOSTNAME" ]; then
1748         myPDSH="no_dsh"
1749     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
1750         echo "cannot run remote command on $HOST with $myPDSH"
1751         return 128
1752     fi
1753     if $VERBOSE; then
1754         echo "CMD: $HOST $@" >&2
1755         $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
1756     fi
1757
1758     if [ "$myPDSH" = "rsh" ]; then
1759 # we need this because rsh does not return exit code of an executed command
1760         local command_status="$TMP/cs"
1761         rsh $HOST ":> $command_status"
1762         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
1763                     cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
1764                     echo command failed >$command_status"
1765         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
1766         return 0
1767     fi
1768
1769     if $verbose ; then
1770         # print HOSTNAME for myPDSH="no_dsh"
1771         if [[ $myPDSH = no_dsh ]]; then
1772             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
1773         else
1774             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
1775         fi
1776     else
1777         $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
1778     fi
1779     return ${PIPESTATUS[0]}
1780 }
1781
1782 do_nodev() {
1783     do_node --verbose "$@"
1784 }
1785
1786 single_local_node () {
1787    [ "$1" = "$HOSTNAME" ]
1788 }
1789
1790 # Outputs environment variable assignments that should be passed to remote nodes
1791 get_env_vars() {
1792     local var
1793     local value
1794
1795     for var in ${!MODOPTS_*}; do
1796         value=${!var}
1797         echo "${var}=\"$value\""
1798     done
1799 }
1800
1801 do_nodes() {
1802     local verbose=false
1803     # do not stripe off hostname if verbose, bug 19215
1804     if [ x$1 = x--verbose ]; then
1805         shift
1806         verbose=true
1807     fi
1808
1809     local rnodes=$1
1810     shift
1811
1812     if single_local_node $rnodes; then
1813         if $verbose; then
1814            do_nodev $rnodes "$@"
1815         else
1816            do_node $rnodes "$@"
1817         fi
1818         return $?
1819     fi
1820
1821     # This is part from do_node
1822     local myPDSH=$PDSH
1823
1824     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
1825         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
1826
1827     if $VERBOSE; then
1828         echo "CMD: $rnodes $@" >&2
1829         $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
1830     fi
1831
1832     # do not replace anything from pdsh output if -N is used
1833     # -N     Disable hostname: prefix on lines of output.
1834     if $verbose || [[ $myPDSH = *-N* ]]; then
1835         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
1836     else
1837         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
1838     fi
1839     return ${PIPESTATUS[0]}
1840 }
1841
1842 do_facet() {
1843     local facet=$1
1844     shift
1845     local HOST=`facet_active_host $facet`
1846     [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
1847     do_node $HOST "$@"
1848 }
1849
1850 do_nodesv() {
1851     do_nodes --verbose "$@"
1852 }
1853
1854 add() {
1855     local facet=$1
1856     shift
1857     # make sure its not already running
1858     stop ${facet} -f
1859     rm -f $TMP/${facet}active
1860     [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
1861     do_facet ${facet} $MKFS $*
1862 }
1863
1864 ostdevname() {
1865     num=$1
1866     DEVNAME=OSTDEV$num
1867     #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
1868     eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}}
1869     echo -n $DEVPTR
1870 }
1871
1872 mdsdevname() {
1873     num=$1
1874     DEVNAME=MDSDEV$num
1875     #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
1876     eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}}
1877     echo -n $DEVPTR
1878 }
1879
1880 facet_mntpt () {
1881     local facet=$1
1882     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
1883
1884     local var=${facet}_MOUNT
1885     eval mntpt=${!var:-${MOUNT%/*}/$facet}
1886
1887     echo -n $mntpt
1888 }
1889
1890 ########
1891 ## MountConf setup
1892
1893 stopall() {
1894     # make sure we are using the primary server, so test-framework will
1895     # be able to clean up properly.
1896     activemds=`facet_active mds1`
1897     if [ $activemds != "mds1" ]; then
1898         fail mds1
1899     fi
1900
1901     local clients=$CLIENTS
1902     [ -z $clients ] && clients=$(hostname)
1903
1904     zconf_umount_clients $clients $MOUNT "$*" || true
1905     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
1906
1907     [ "$CLIENTONLY" ] && return
1908     # The add fn does rm ${facet}active file, this would be enough
1909     # if we use do_facet <facet> only after the facet added, but
1910     # currently we use do_facet mds in local.sh
1911     for num in `seq $MDSCOUNT`; do
1912         stop mds$num -f
1913         rm -f ${TMP}/mds${num}active
1914     done
1915     combined_mgs_mds && rm -f $TMP/mgsactive
1916
1917     for num in `seq $OSTCOUNT`; do
1918         stop ost$num -f
1919         rm -f $TMP/ost${num}active
1920     done
1921
1922     if ! combined_mgs_mds ; then
1923         stop mgs
1924     fi
1925
1926     return 0
1927 }
1928
1929 cleanup_echo_devs () {
1930     local devs=$($LCTL dl | grep echo | awk '{print $4}')
1931
1932     for dev in $devs; do
1933         $LCTL --device $dev cleanup
1934         $LCTL --device $dev detach
1935     done
1936 }
1937
1938 cleanupall() {
1939     nfs_client_mode && return
1940
1941     stopall $*
1942     cleanup_echo_devs
1943
1944     unload_modules
1945     cleanup_gss
1946 }
1947
1948 combined_mgs_mds () {
1949     [[ $MDSDEV1 = $MGSDEV ]] && [[ $mds1_HOST = $mgs_HOST ]]
1950 }
1951
1952 mkfs_opts () {
1953     local facet=$1
1954
1955     local tgt=$(echo $facet | tr -d [:digit:] | tr "[:lower:]" "[:upper:]")
1956     local optvar=${tgt}_MKFS_OPTS
1957     local opt=${!optvar}
1958
1959     # FIXME: ! combo  mgs/mds + mgsfailover is not supported yet
1960     [[ $facet = mgs ]] && echo $opt && return
1961
1962     # 1.
1963     # --failnode options 
1964     local var=${facet}failover_HOST
1965     if [ x"${!var}" != x ] && [ x"${!var}" != x$(facet_host $facet) ] ; then
1966         local failnode=$(h2$NETTYPE ${!var})
1967         failnode="--failnode=$failnode"
1968         # options does not contain
1969         # or contains wrong --failnode=
1970         if [[ $opt != *${failnode}* ]]; then
1971             opt=$(echo $opt | sed 's/--failnode=.* / /')
1972             opt="$opt $failnode"
1973         fi
1974     fi
1975
1976     # 2.
1977     # --mgsnode options
1978     # no additional mkfs mds "--mgsnode" option for this configuration
1979     if [[ $facet = mds ]] && combined_mgs_mds; then
1980         echo $opt
1981         return
1982     fi
1983
1984     # additional mkfs "--mgsnode"
1985     local mgsnode="--mgsnode=$MGSNID"
1986     opt=${opt//$mgsnode }
1987     for nid in ${MGSNID//:/ }; do
1988         local mgsnode="--mgsnode=$nid"
1989         # options does not contain
1990         # --mgsnode=$nid
1991         if [[ $opt != *${mgsnode}" "* ]]; then
1992             opt="$opt --mgsnode=$nid"
1993         fi
1994     done
1995
1996     echo $opt
1997 }
1998
1999 formatall() {
2000     if [ "$IAMDIR" == "yes" ]; then
2001         MDS_MKFS_OPTS="$MDS_MKFS_OPTS --iam-dir"
2002     fi
2003
2004     [ "$FSTYPE" ] && FSTYPE_OPT="--backfstype $FSTYPE"
2005
2006     stopall
2007     # We need ldiskfs here, may as well load them all
2008     load_modules
2009     [ "$CLIENTONLY" ] && return
2010     echo Formatting mgs, mds, osts
2011     if ! combined_mgs_mds ; then
2012         add mgs $(mkfs_opts mgs) $FSTYPE_OPT --reformat $MGSDEV || exit 10
2013     fi
2014
2015     for num in `seq $MDSCOUNT`; do
2016         echo "Format mds$num: $(mdsdevname $num)"
2017         if $VERBOSE; then
2018             add mds$num $(mkfs_opts mds) $FSTYPE_OPT --reformat $(mdsdevname $num) || exit 10
2019         else
2020             add mds$num $(mkfs_opts mds) $FSTYPE_OPT --reformat $(mdsdevname $num) > /dev/null || exit 10
2021         fi
2022     done
2023
2024     # the ost-s could have different OST_MKFS_OPTS
2025     # because of different failnode-s
2026     for num in `seq $OSTCOUNT`; do
2027         echo "Format ost$num: $(ostdevname $num)"
2028         if $VERBOSE; then
2029             add ost$num $(mkfs_opts ost${num}) $FSTYPE_OPT --reformat `ostdevname $num` || exit 10
2030         else
2031             add ost$num $(mkfs_opts ost${num}) $FSTYPE_OPT --reformat `ostdevname $num` > /dev/null || exit 10
2032         fi
2033     done
2034 }
2035
2036 mount_client() {
2037     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
2038 }
2039
2040 umount_client() {
2041     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
2042 }
2043
2044 # return value:
2045 # 0: success, the old identity set already.
2046 # 1: success, the old identity does not set.
2047 # 2: fail.
2048 switch_identity() {
2049     local num=$1
2050     local switch=$2
2051     local j=`expr $num - 1`
2052     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
2053
2054     if [ -z "$MDT" ]; then
2055         return 2
2056     fi
2057
2058     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
2059
2060     if $switch; then
2061         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
2062     else
2063         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
2064     fi
2065
2066     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
2067
2068     if [ $old = "NONE" ]; then
2069         return 1
2070     else
2071         return 0
2072     fi
2073 }
2074
2075 remount_client()
2076 {
2077         zconf_umount `hostname` $1 || error "umount failed"
2078         zconf_mount `hostname` $1 || error "mount failed"
2079 }
2080
2081 writeconf_facet () {
2082     local facet=$1
2083     local dev=$2
2084
2085     do_facet $facet "$TUNEFS --writeconf $dev"
2086 }
2087
2088 writeconf_all () {
2089     for num in `seq $MDSCOUNT`; do
2090         DEVNAME=$(mdsdevname $num)
2091         writeconf_facet mds$num $DEVNAME
2092     done
2093
2094     for num in `seq $OSTCOUNT`; do
2095         DEVNAME=$(ostdevname $num)
2096         writeconf_facet ost$num $DEVNAME
2097     done
2098 }
2099
2100 setupall() {
2101     nfs_client_mode && return
2102
2103     sanity_mount_check ||
2104         error "environments are insane!"
2105
2106     load_modules
2107
2108     if [ -z "$CLIENTONLY" ]; then
2109         echo Setup mgs, mdt, osts
2110         echo $WRITECONF | grep -q "writeconf" && \
2111             writeconf_all
2112         if ! combined_mgs_mds ; then
2113             start mgs $MGSDEV $MGS_MOUNT_OPTS
2114         fi
2115
2116         for num in `seq $MDSCOUNT`; do
2117             DEVNAME=$(mdsdevname $num)
2118             start mds$num $DEVNAME $MDS_MOUNT_OPTS
2119
2120             # We started mds, now we should set failover variables properly.
2121             # Set mds${num}failover_HOST if it is not set (the default failnode).
2122             local varname=mds${num}failover_HOST
2123             if [ -z "${!varname}" ]; then
2124                 eval mds${num}failover_HOST=$(facet_host mds$num)
2125             fi
2126
2127             if [ $IDENTITY_UPCALL != "default" ]; then
2128                 switch_identity $num $IDENTITY_UPCALL
2129             fi
2130         done
2131         for num in `seq $OSTCOUNT`; do
2132             DEVNAME=$(ostdevname $num)
2133             start ost$num $DEVNAME $OST_MOUNT_OPTS
2134
2135             # We started ost$num, now we should set ost${num}failover variable properly.
2136             # Set ost${num}failover_HOST if it is not set (the default failnode).
2137             varname=ost${num}failover_HOST
2138             if [ -z "${!varname}" ]; then
2139                 eval ost${num}failover_HOST=$(facet_host ost${num})
2140             fi
2141
2142         done
2143     fi
2144
2145     init_gss
2146
2147     # wait a while to allow sptlrpc configuration be propogated to targets,
2148     # only needed when mounting new target devices.
2149     if $GSS; then
2150         sleep 10
2151     fi
2152
2153     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
2154     mount_client $MOUNT
2155     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
2156
2157     if [ "$MOUNT_2" ]; then
2158         mount_client $MOUNT2
2159         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
2160     fi
2161
2162     init_param_vars
2163
2164     # by remounting mdt before ost, initial connect from mdt to ost might
2165     # timeout because ost is not ready yet. wait some time to its fully
2166     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
2167     # by a context negotiation rpc with $TIMEOUT.
2168     # FIXME better by monitoring import status.
2169     if $GSS; then
2170         set_flavor_all $SEC
2171         sleep $((TIMEOUT + 5))
2172     else
2173         sleep 5
2174     fi
2175 }
2176
2177 mounted_lustre_filesystems() {
2178         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
2179 }
2180
2181 init_facet_vars () {
2182     [ "$CLIENTONLY" ] && return 0
2183     local facet=$1
2184     shift
2185     local device=$1
2186
2187     shift
2188
2189     eval export ${facet}_dev=${device}
2190     eval export ${facet}_opt=\"$@\"
2191
2192     local dev=${facet}_dev
2193     local label=$(do_facet ${facet} "$E2LABEL ${!dev}")
2194     [ -z "$label" ] && echo no label for ${!dev} && exit 1
2195
2196     eval export ${facet}_svc=${label}
2197
2198     local varname=${facet}failover_HOST
2199     if [ -z "${!varname}" ]; then
2200        eval $varname=$(facet_host $facet) 
2201     fi
2202
2203     # ${facet}failover_dev is set in cfg file
2204     varname=${facet}failover_dev
2205     if [ -n "${!varname}" ] ; then
2206         eval export ${facet}failover_dev=${!varname}
2207     else
2208         eval export ${facet}failover_dev=$device
2209     fi
2210
2211     # get mount point of already mounted device
2212     # is facet_dev is already mounted then use the real
2213     #  mount point of this facet; otherwise use $(facet_mntpt $facet)
2214     # i.e. ${facet}_MOUNT if specified by user or default
2215     local mntpt=$(do_facet ${facet} cat /proc/mounts | \
2216             awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
2217     if [ -z $mntpt ]; then
2218         mntpt=$(facet_mntpt $facet)
2219     fi
2220     eval export ${facet}_MOUNT=$mntpt
2221 }
2222
2223 init_facets_vars () {
2224     local DEVNAME
2225
2226     if ! remote_mds_nodsh; then 
2227         for num in `seq $MDSCOUNT`; do
2228             DEVNAME=`mdsdevname $num`
2229             init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
2230         done
2231     fi
2232
2233     combined_mgs_mds || init_facet_vars mgs $MGSDEV $MGS_MOUNT_OPTS
2234
2235     remote_ost_nodsh && return
2236
2237     for num in `seq $OSTCOUNT`; do
2238         DEVNAME=`ostdevname $num`
2239         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
2240     done
2241 }
2242
2243 osc_ensure_active () {
2244     local facet=$1
2245     local timeout=$2
2246     local period=0
2247
2248     while [ $period -lt $timeout ]; do
2249         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
2250         if [ $count -eq 0 ]; then
2251             break
2252         fi
2253
2254         echo "There are $count OST are inactive, wait $period seconds, and try again"
2255         sleep 3
2256         period=$((period+3))
2257     done
2258
2259     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
2260 }
2261
2262 init_param_vars () {
2263     if ! remote_ost_nodsh && ! remote_mds_nodsh; then
2264         export MDSVER=$(do_facet $SINGLEMDS "lctl get_param version" | cut -d. -f1,2)
2265         export OSTVER=$(do_facet ost1 "lctl get_param version" | cut -d. -f1,2)
2266         export CLIVER=$(lctl get_param version | cut -d. -f 1,2)
2267     fi
2268
2269     remote_mds_nodsh ||
2270         TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
2271
2272     log "Using TIMEOUT=$TIMEOUT"
2273
2274     osc_ensure_active $SINGLEMDS $TIMEOUT
2275     osc_ensure_active client $TIMEOUT
2276
2277     if [ $QUOTA_AUTO -ne 0 ]; then
2278         if [ "$ENABLE_QUOTA" ]; then
2279             echo "enable quota as required"
2280             setup_quota $MOUNT || return 2
2281         else
2282             echo "disable quota as required"
2283             $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
2284         fi
2285     fi
2286
2287     return 0
2288 }
2289
2290 nfs_client_mode () {
2291     if [ "$NFSCLIENT" ]; then
2292         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
2293         local clients=$CLIENTS
2294         [ -z $clients ] && clients=$(hostname)
2295
2296         # FIXME: remove hostname when 19215 fixed
2297         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
2298         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
2299         if [[ ${#nfsexport[@]} -eq 0 ]]; then
2300                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
2301         fi
2302         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
2303         return
2304     fi
2305     return 1
2306 }
2307
2308 check_config_client () {
2309     local mntpt=$1
2310
2311     local mounted=$(mount | grep " $mntpt ")
2312     if [ "$CLIENTONLY" ]; then
2313         # bug 18021
2314         # CLIENTONLY should not depend on *_HOST settings
2315         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
2316         # in theory someone could create a new,
2317         # client-only config file that assumed lustre was already
2318         # configured and didn't set the MGSNID. If MGSNID is not set,
2319         # then we should use the mgs nid currently being used 
2320         # as the default value. bug 18021
2321         [[ x$MGSNID = x ]] &&
2322             MGSNID=${mgc//MGC/}
2323
2324         if [[ x$mgc != xMGC$MGSNID ]]; then
2325             if [ "$mgs_HOST" ]; then
2326                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
2327 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
2328 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
2329             fi
2330         fi
2331         return 0
2332     fi
2333
2334     local myMGS_host=$mgs_HOST   
2335     if [ "$NETTYPE" = "ptl" ]; then
2336         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
2337     fi
2338
2339     echo Checking config lustre mounted on $mntpt
2340     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
2341     mgshost=$(echo $mgshost | awk -F: '{print $1}')
2342
2343 #    if [ "$mgshost" != "$myMGS_host" ]; then
2344 #            log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
2345 #                   Please use correct config or set mds_HOST correctly!"
2346 #    fi
2347
2348 }
2349
2350 check_config_clients () {
2351     local clients=${CLIENTS:-$HOSTNAME}
2352     local mntpt=$1
2353
2354     nfs_client_mode && return
2355
2356     do_rpc_nodes $clients check_config_client $mntpt
2357
2358     sanity_mount_check ||
2359         error "environments are insane!"
2360 }
2361
2362 check_timeout () {
2363     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
2364     local cltimeout=$(lctl get_param -n timeout)
2365     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
2366         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
2367         return 1
2368     fi
2369 }
2370
2371 is_mounted () {
2372     local mntpt=$1
2373     [ -z $mntpt ] && return 1
2374     local mounted=$(mounted_lustre_filesystems)
2375
2376     echo $mounted' ' | grep -w -q $mntpt' '
2377 }
2378
2379 is_empty_dir() {
2380     [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
2381     return 1
2382 }
2383
2384 # empty lustre filesystem may have empty directories lost+found and .lustre
2385 is_empty_fs() {
2386     [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
2387        -print | wc -l) = 1 ] || return 1
2388     [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found && return 0
2389     [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre && return 0
2390     return 1
2391 }
2392
2393 check_and_setup_lustre() {
2394     nfs_client_mode && return
2395
2396     local MOUNTED=$(mounted_lustre_filesystems)
2397
2398     local do_check=true
2399     # 1.
2400     # both MOUNT and MOUNT2 are not mounted
2401     if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
2402         [ "$REFORMAT" ] && formatall
2403         # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
2404         setupall
2405         is_mounted $MOUNT || error "NAME=$NAME not mounted"
2406         export I_MOUNTED=yes
2407         do_check=false
2408     # 2.
2409     # MOUNT2 is mounted
2410     elif is_mounted $MOUNT2; then
2411             # 3.
2412             # MOUNT2 is mounted, while MOUNT_2 is not set
2413             if ! [ "$MOUNT_2" ]; then
2414                 cleanup_mount $MOUNT2
2415                 export I_UMOUNTED2=yes
2416
2417             # 4.
2418             # MOUNT2 is mounted, MOUNT_2 is set
2419             else
2420                 # FIXME: what to do if check_config failed?
2421                 # i.e. if:
2422                 # 1) remote client has mounted other Lustre fs ?
2423                 # 2) it has insane env ?
2424                 # let's try umount MOUNT2 on all clients and mount it again:
2425                 if ! check_config_clients $MOUNT2; then
2426                     cleanup_mount $MOUNT2
2427                     restore_mount $MOUNT2
2428                     export I_MOUNTED2=yes
2429                 fi
2430             fi 
2431
2432     # 5.
2433     # MOUNT is mounted MOUNT2 is not mounted
2434     elif [ "$MOUNT_2" ]; then
2435         restore_mount $MOUNT2
2436         export I_MOUNTED2=yes
2437     fi
2438
2439     if $do_check; then
2440         # FIXME: what to do if check_config failed?
2441         # i.e. if:
2442         # 1) remote client has mounted other Lustre fs?
2443         # 2) lustre is mounted on remote_clients atall ?
2444         check_config_clients $MOUNT
2445         init_facets_vars
2446         init_param_vars
2447
2448         set_default_debug_nodes $(comma_list $(nodes_list))
2449     fi
2450
2451     init_gss
2452     set_flavor_all $SEC
2453
2454     if [ "$ONLY" == "setup" ]; then
2455         exit 0
2456     fi
2457 }
2458
2459 restore_mount () {
2460    local clients=${CLIENTS:-$HOSTNAME}
2461    local mntpt=$1
2462
2463    zconf_mount_clients $clients $mntpt
2464 }
2465
2466 cleanup_mount () {
2467     local clients=${CLIENTS:-$HOSTNAME}
2468     local mntpt=$1
2469
2470     zconf_umount_clients $clients $mntpt    
2471 }
2472
2473 cleanup_and_setup_lustre() {
2474     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
2475         lctl set_param debug=0 || true
2476         cleanupall
2477         if [ "$ONLY" == "cleanup" ]; then
2478             exit 0
2479         fi
2480     fi
2481     check_and_setup_lustre
2482 }
2483
2484 # Get all of the server target devices from a given server node and type.
2485 get_mnt_devs() {
2486     local node=$1
2487     local type=$2
2488     local obd_type
2489     local devs
2490     local dev
2491
2492     case $type in
2493     mdt) obd_type="osd" ;;
2494     ost) obd_type="obdfilter" ;; # needs to be fixed when OST also uses an OSD
2495     *) echo "invalid server type" && return 1 ;;
2496     esac
2497
2498     devs=$(do_node $node "lctl get_param -n $obd_type*.*.mntdev")
2499     for dev in $devs; do
2500         case $dev in
2501         *loop*) do_node $node "losetup $dev" | \
2502                 sed -e "s/.*(//" -e "s/).*//" ;;
2503         *) echo $dev ;;
2504         esac
2505     done
2506 }
2507
2508 # Get all of the server target devices.
2509 get_svr_devs() {
2510     local i
2511
2512     # MDT device
2513     MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
2514
2515     # OST devices
2516     i=0
2517     for node in $(osts_nodes); do
2518         OSTDEVS[i]=$(get_mnt_devs $node ost)
2519         i=$((i + 1))
2520     done
2521 }
2522
2523 # Run e2fsck on MDT or OST device.
2524 run_e2fsck() {
2525     local node=$1
2526     local target_dev=$2
2527     local extra_opts=$3
2528
2529     df > /dev/null      # update statfs data on disk
2530     local cmd="$E2FSCK -d -v -t -t -f -n $extra_opts $target_dev"
2531     echo $cmd
2532     local rc=0
2533     do_node $node $cmd || rc=$?
2534     [ $rc -le $FSCK_MAX_ERR ] || \
2535         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
2536     return 0
2537 }
2538
2539 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
2540 generate_db() {
2541     local i
2542     local ostidx
2543     local dev
2544     local tmp_file
2545
2546     [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
2547     tmp_file=$(mktemp -p $SHARED_DIRECTORY || 
2548         error "fail to create file in $SHARED_DIRECTORY")
2549
2550     # make sure everything gets to the backing store
2551     local list=$(comma_list $CLIENTS $(facet_host $SINGLEMDS) $(osts_nodes))
2552     do_nodes $list "sync; sleep 2; sync"
2553
2554     do_nodes $list ls $tmp_file || \
2555         error "$SHARED_DIRECTORY is not a shared directory"
2556     rm $tmp_file
2557
2558     run_e2fsck $(mdts_nodes) $MDTDEV "--mdsdb $MDSDB"
2559
2560     i=0
2561     ostidx=0
2562     OSTDB_LIST=""
2563     for node in $(osts_nodes); do
2564         for dev in ${OSTDEVS[i]}; do
2565             run_e2fsck $node $dev "--mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
2566             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
2567             ostidx=$((ostidx + 1))
2568         done
2569         i=$((i + 1))
2570     done
2571 }
2572
2573 run_lfsck() {
2574     local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
2575     echo $cmd
2576     local rc=0
2577     eval $cmd || rc=$?
2578     [ $rc -le $FSCK_MAX_ERR ] || \
2579         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
2580     echo "lfsck finished with rc=$rc"
2581
2582     rm -rvf $MDSDB* $OSTDB* || true
2583     return 0
2584 }
2585
2586 check_and_cleanup_lustre() {
2587     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
2588         get_svr_devs
2589         generate_db
2590         run_lfsck
2591     fi
2592
2593     if is_mounted $MOUNT; then
2594         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]*
2595         [ "$ENABLE_QUOTA" ] && restore_quota_type || true
2596     fi
2597
2598     if [ "$I_UMOUNTED2" = "yes" ]; then
2599         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
2600     fi
2601
2602     if [ "$I_MOUNTED2" = "yes" ]; then
2603         cleanup_mount $MOUNT2
2604     fi
2605
2606     if [ "$I_MOUNTED" = "yes" ]; then
2607         cleanupall -f || error "cleanup failed"
2608         unset I_MOUNTED
2609     fi
2610 }
2611
2612 #######
2613 # General functions
2614
2615 wait_for_function () {
2616     local quiet=""
2617
2618     # suppress fn both stderr and stdout
2619     if [ "$1" = "--quiet" ]; then
2620         shift
2621         quiet=" > /dev/null 2>&1"
2622
2623     fi
2624
2625     local fn=$1
2626     local max=${2:-900}
2627     local sleep=${3:-5}
2628
2629     local wait=0
2630
2631     while true; do
2632
2633         eval $fn $quiet && return 0
2634
2635         wait=$((wait + sleep))
2636         [ $wait -lt $max ] || return 1
2637         echo waiting $fn, $((max - wait)) secs left ...
2638         sleep $sleep
2639     done
2640 }
2641
2642 check_network() {
2643     local host=$1
2644     local max=$2
2645     local sleep=${3:-5}
2646
2647     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
2648     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
2649         echo "Network not available!"
2650         exit 1
2651     fi
2652
2653     echo `date +"%H:%M:%S (%s)"` network interface is UP
2654 }
2655
2656 no_dsh() {
2657     shift
2658     eval $@
2659 }
2660
2661 comma_list() {
2662     # the sed converts spaces to commas, but leaves the last space
2663     # alone, so the line doesn't end with a comma.
2664     echo "$*" | tr -s " " "\n" | sort -b -u | tr "\n" " " | sed 's/ \([^$]\)/,\1/g'
2665 }
2666
2667 list_member () {
2668     local list=$1
2669     local item=$2
2670     echo $list | grep -qw $item
2671 }
2672
2673 # list, excluded are the comma separated lists
2674 exclude_items_from_list () {
2675     local list=$1
2676     local excluded=$2
2677     local item
2678
2679     list=${list//,/ }
2680     for item in ${excluded//,/ }; do
2681         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
2682     done
2683     echo $(comma_list $list)
2684 }
2685
2686 # list, expand  are the comma separated lists
2687 expand_list () {
2688     local list=${1//,/ }
2689     local expand=${2//,/ }
2690     local expanded=
2691
2692     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
2693     echo $(comma_list $expanded)
2694 }
2695
2696 testslist_filter () {
2697     local script=$LUSTRE/tests/${TESTSUITE}.sh
2698
2699     [ -f $script ] || return 0
2700
2701     local start_at=$START_AT
2702     local stop_at=$STOP_AT
2703
2704     local var=${TESTSUITE//-/_}_START_AT
2705     [ x"${!var}" != x ] && start_at=${!var}
2706     var=${TESTSUITE//-/_}_STOP_AT
2707     [ x"${!var}" != x ] && stop_at=${!var}
2708
2709     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
2710         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
2711             /^'${start_at}'$/ {flag = 0}
2712             {if (flag == 1) print $0}
2713             /^'${stop_at}'$/ { flag = 1 }'
2714 }
2715
2716 absolute_path() {
2717     (cd `dirname $1`; echo $PWD/`basename $1`)
2718 }
2719
2720 get_facets () {
2721     local types=${1:-"OST MDS MGS"}
2722
2723     local list=""
2724
2725     for entry in $types; do
2726         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
2727         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
2728
2729         case $type in
2730                 MGS ) list="$list $name";;
2731             MDS|OST ) local count=${type}COUNT
2732                        for ((i=1; i<=${!count}; i++)) do
2733                           list="$list ${name}$i"
2734                       done;;
2735                   * ) error "Invalid facet type"
2736                  exit 1;;
2737         esac
2738     done
2739     echo $(comma_list $list)
2740 }
2741
2742 ##################################
2743 # Adaptive Timeouts funcs
2744
2745 at_is_enabled() {
2746     # only check mds, we assume at_max is the same on all nodes
2747     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
2748     if [ $at_max -eq 0 ]; then
2749         return 1
2750     else
2751         return 0
2752     fi
2753 }
2754
2755 at_get() {
2756     local facet=$1
2757     local at=$2
2758
2759     # suppose that all ost-s have the same $at value set
2760     [ $facet != "ost" ] || facet=ost1
2761
2762     do_facet $facet "lctl get_param -n $at"
2763 }
2764
2765 at_max_get() {
2766     at_get $1 at_max
2767 }
2768
2769 at_max_set() {
2770     local at_max=$1
2771     shift
2772
2773     local facet
2774     local hosts
2775     for facet in $@; do
2776         if [ $facet == "ost" ]; then
2777             facet=$(get_facets OST)
2778         elif [ $facet == "mds" ]; then
2779             facet=$(get_facets MDS)
2780         fi
2781         hosts=$(expand_list $hosts $(facets_hosts $facet))
2782     done
2783
2784     do_nodes $hosts lctl set_param at_max=$at_max
2785 }
2786
2787 ##################################
2788 # OBD_FAIL funcs
2789
2790 drop_request() {
2791 # OBD_FAIL_MDS_ALL_REQUEST_NET
2792     RC=0
2793     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
2794     do_facet client "$1" || RC=$?
2795     do_facet $SINGLEMDS lctl set_param fail_loc=0
2796     return $RC
2797 }
2798
2799 drop_reply() {
2800 # OBD_FAIL_MDS_ALL_REPLY_NET
2801     RC=0
2802     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
2803     do_facet client "$@" || RC=$?
2804     do_facet $SINGLEMDS lctl set_param fail_loc=0
2805     return $RC
2806 }
2807
2808 drop_reint_reply() {
2809 # OBD_FAIL_MDS_REINT_NET_REP
2810     RC=0
2811     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
2812     do_facet client "$@" || RC=$?
2813     do_facet $SINGLEMDS lctl set_param fail_loc=0
2814     return $RC
2815 }
2816
2817 pause_bulk() {
2818 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
2819     RC=0
2820     do_facet ost1 lctl set_param fail_loc=0x214
2821     do_facet client "$1" || RC=$?
2822     do_facet client "sync"
2823     do_facet ost1 lctl set_param fail_loc=0
2824     return $RC
2825 }
2826
2827 drop_ldlm_cancel() {
2828 #define OBD_FAIL_LDLM_CANCEL             0x304
2829     RC=0
2830     do_facet client lctl set_param fail_loc=0x304
2831     do_facet client "$@" || RC=$?
2832     do_facet client lctl set_param fail_loc=0
2833     return $RC
2834 }
2835
2836 drop_bl_callback() {
2837 #define OBD_FAIL_LDLM_BL_CALLBACK        0x305
2838     RC=0
2839     do_facet client lctl set_param fail_loc=0x305
2840     do_facet client "$@" || RC=$?
2841     do_facet client lctl set_param fail_loc=0
2842     return $RC
2843 }
2844
2845 drop_ldlm_reply() {
2846 #define OBD_FAIL_LDLM_REPLY              0x30c
2847     RC=0
2848     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
2849     do_facet client "$@" || RC=$?
2850     do_facet $SINGLEMDS lctl set_param fail_loc=0
2851     return $RC
2852 }
2853
2854 clear_failloc() {
2855     facet=$1
2856     pause=$2
2857     sleep $pause
2858     echo "clearing fail_loc on $facet"
2859     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
2860 }
2861
2862 set_nodes_failloc () {
2863     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
2864 }
2865
2866 cancel_lru_locks() {
2867     $LCTL mark "cancel_lru_locks $1 start"
2868     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
2869         $LCTL set_param -n $d=clear
2870     done
2871     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
2872     $LCTL mark "cancel_lru_locks $1 stop"
2873 }
2874
2875 default_lru_size()
2876 {
2877         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
2878         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
2879         echo "$DEFAULT_LRU_SIZE"
2880 }
2881
2882 lru_resize_enable()
2883 {
2884     lctl set_param ldlm.namespaces.*$1*.lru_size=0
2885 }
2886
2887 lru_resize_disable()
2888 {
2889     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
2890 }
2891
2892 pgcache_empty() {
2893     local FILE
2894     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
2895         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
2896             echo there is still data in page cache $FILE ?
2897             lctl get_param -n $FILE
2898             return 1
2899         fi
2900     done
2901     return 0
2902 }
2903
2904 debugsave() {
2905     DEBUGSAVE="$(lctl get_param -n debug)"
2906 }
2907
2908 debugrestore() {
2909     [ -n "$DEBUGSAVE" ] && \
2910         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
2911     DEBUGSAVE=""
2912 }
2913
2914 debug_size_save() {
2915     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
2916 }
2917
2918 debug_size_restore() {
2919     [ -n "$DEBUG_SIZE_SAVED" ] && \
2920         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
2921     DEBUG_SIZE_SAVED=""
2922 }
2923
2924 start_full_debug_logging() {
2925     debugsave
2926     debug_size_save
2927
2928     local FULLDEBUG=-1
2929     local DEBUG_SIZE=150
2930
2931     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
2932     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
2933 }
2934
2935 stop_full_debug_logging() {
2936     debug_size_restore
2937     debugrestore
2938 }
2939
2940 ##################################
2941 # Test interface
2942 ##################################
2943
2944 error_noexit() {
2945     local TYPE=${TYPE:-"FAIL"}
2946
2947     local dump=true
2948     # do not dump logs if $1=false
2949     if [ "x$1" = "xfalse" ]; then
2950         shift
2951         dump=false
2952     fi
2953
2954     log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
2955
2956     # We need to dump the logs on all nodes
2957     if $dump; then
2958         gather_logs $(comma_list $(nodes_list))
2959     fi
2960
2961     debugrestore
2962     [ "$TESTSUITELOG" ] && echo "$0: ${TYPE}: $TESTNAME $@" >> $TESTSUITELOG
2963     echo "$@" > $LOGDIR/err
2964 }
2965
2966 exit_status () {
2967     local status=0
2968     local log=$TESTSUITELOG
2969
2970     [ -f "$log" ] && grep -q FAIL: $log && status=1
2971     exit $status
2972 }
2973
2974 error() {
2975     error_noexit "$@"
2976     exit 1
2977 }
2978
2979 error_exit() {
2980     error "$@"
2981 }
2982
2983 # use only if we are ignoring failures for this test, bugno required.
2984 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
2985 # e.g. error_ignore 5494 "your message"
2986 error_ignore() {
2987     local TYPE="IGNORE (bz$1)"
2988     shift
2989     error_noexit "$@"
2990 }
2991
2992 skip_env () {
2993     $FAIL_ON_SKIP_ENV && error false $@ || skip $@
2994 }
2995
2996 skip () {
2997     echo
2998     log " SKIP: ${TESTSUITE} ${TESTNAME} $@"
2999     [ "$ALWAYS_SKIPPED" ] && \
3000         skip_logged ${TESTNAME} "$@" || true
3001     [ "$TESTSUITELOG" ] && \
3002         echo "${TESTSUITE}: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
3003 }
3004
3005 build_test_filter() {
3006     EXCEPT="$EXCEPT $(testslist_filter)"
3007
3008     [ "$ONLY" ] && log "only running test `echo $ONLY`"
3009     for O in $ONLY; do
3010         eval ONLY_${O}=true
3011     done
3012     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
3013         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
3014     [ "$EXCEPT_SLOW" ] && \
3015         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
3016     for E in $EXCEPT; do
3017         eval EXCEPT_${E}=true
3018     done
3019     for E in $ALWAYS_EXCEPT; do
3020         eval EXCEPT_ALWAYS_${E}=true
3021     done
3022     for E in $EXCEPT_SLOW; do
3023         eval EXCEPT_SLOW_${E}=true
3024     done
3025     for G in $GRANT_CHECK_LIST; do
3026         eval GCHECK_ONLY_${G}=true
3027         done
3028 }
3029
3030 basetest() {
3031     if [[ $1 = [a-z]* ]]; then
3032         echo $1
3033     else
3034         echo ${1%%[a-z]*}
3035     fi
3036 }
3037
3038 # print a newline if the last test was skipped
3039 export LAST_SKIPPED=
3040 export ALWAYS_SKIPPED=
3041 #
3042 # Main entry into test-framework. This is called with the name and
3043 # description of a test. The name is used to find the function to run
3044 # the test using "test_$name".
3045 #
3046 # This supports a variety of methods of specifying specific test to
3047 # run or not run.  These need to be documented...
3048 #
3049 run_test() {
3050     assert_DIR
3051
3052     export base=`basetest $1`
3053     if [ ! -z "$ONLY" ]; then
3054         testname=ONLY_$1
3055         if [ ${!testname}x != x ]; then
3056             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
3057             run_one_logged $1 "$2"
3058             return $?
3059         fi
3060         testname=ONLY_$base
3061         if [ ${!testname}x != x ]; then
3062             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
3063             run_one_logged $1 "$2"
3064             return $?
3065         fi
3066         LAST_SKIPPED="y"
3067         echo -n "."
3068         return 0
3069     fi
3070     testname=EXCEPT_$1
3071     if [ ${!testname}x != x ]; then
3072         LAST_SKIPPED="y"
3073         TESTNAME=test_$1 skip "skipping excluded test $1"
3074         return 0
3075     fi
3076     testname=EXCEPT_$base
3077     if [ ${!testname}x != x ]; then
3078         LAST_SKIPPED="y"
3079         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
3080         return 0
3081     fi
3082     testname=EXCEPT_ALWAYS_$1
3083     if [ ${!testname}x != x ]; then
3084         LAST_SKIPPED="y"
3085         ALWAYS_SKIPPED="y"
3086         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
3087         return 0
3088     fi
3089     testname=EXCEPT_ALWAYS_$base
3090     if [ ${!testname}x != x ]; then
3091         LAST_SKIPPED="y"
3092         ALWAYS_SKIPPED="y"
3093         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
3094         return 0
3095     fi
3096     testname=EXCEPT_SLOW_$1
3097     if [ ${!testname}x != x ]; then
3098         LAST_SKIPPED="y"
3099         TESTNAME=test_$1 skip "skipping SLOW test $1"
3100         return 0
3101     fi
3102     testname=EXCEPT_SLOW_$base
3103     if [ ${!testname}x != x ]; then
3104         LAST_SKIPPED="y"
3105         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
3106         return 0
3107     fi
3108
3109     LAST_SKIPPED=
3110     ALWAYS_SKIPPED=
3111     run_one_logged $1 "$2"
3112
3113     return $?
3114 }
3115
3116 equals_msg() {
3117     banner "$*"
3118 }
3119
3120 log() {
3121     echo "$*"
3122     module_loaded lnet || load_modules
3123
3124     local MSG="$*"
3125     # Get rid of '
3126     MSG=${MSG//\'/\\\'}
3127     MSG=${MSG//\(/\\\(}
3128     MSG=${MSG//\)/\\\)}
3129     MSG=${MSG//\;/\\\;}
3130     MSG=${MSG//\|/\\\|}
3131     MSG=${MSG//\>/\\\>}
3132     MSG=${MSG//\</\\\<}
3133     MSG=${MSG//\//\\\/}
3134     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
3135 }
3136
3137 trace() {
3138         log "STARTING: $*"
3139         strace -o $TMP/$1.strace -ttt $*
3140         RC=$?
3141         log "FINISHED: $*: rc $RC"
3142         return 1
3143 }
3144
3145 complete () {
3146     equals_msg $1 test complete, duration $2 sec
3147     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
3148     echo duration $2 >>$TESTSUITELOG
3149 }
3150
3151 pass() {
3152     # Set TEST_STATUS here; will be used for logging the result
3153     if [ -f $LOGDIR/err ]; then
3154         TEST_STATUS="FAIL"
3155     else
3156         TEST_STATUS="PASS"
3157     fi
3158     echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
3159 }
3160
3161 check_mds() {
3162     local FFREE=$(do_node $SINGLEMDS \
3163         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
3164     local FTOTAL=$(do_node $SINGLEMDS \
3165         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
3166
3167     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
3168 }
3169
3170 reset_fail_loc () {
3171     echo -n "Resetting fail_loc on all nodes..."
3172     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
3173     echo done.
3174 }
3175
3176
3177 #
3178 # Log a message (on all nodes) padded with "=" before and after. 
3179 # Also appends a timestamp and prepends the testsuite name.
3180
3181
3182 EQUALS="===================================================================================================="
3183 banner() {
3184     msg="== ${TESTSUITE} $*"
3185     last=${msg: -1:1}
3186     [[ $last != "=" && $last != " " ]] && msg="$msg "
3187     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
3188     # always include at least == after the message
3189     log "$msg== $(date +"%H:%M:%S (%s)")"
3190 }
3191
3192 #
3193 # Run a single test function and cleanup after it.  
3194 #
3195 # This function should be run in a subshell so the test func can
3196 # exit() without stopping the whole script.
3197 #
3198 run_one() {
3199     local testnum=$1
3200     local message=$2
3201     tfile=f${testnum}
3202     export tdir=d0.${TESTSUITE}/d${base}
3203     export TESTNAME=test_$testnum
3204     local SAVE_UMASK=`umask`
3205     umask 0022
3206
3207     banner "test $testnum: $message"
3208     test_${testnum} || error "test_$testnum failed with $?"
3209     cd $SAVE_PWD
3210     reset_fail_loc
3211     check_grant ${testnum} || error "check_grant $testnum failed with $?"
3212     check_catastrophe || error "LBUG/LASSERT detected"
3213     ps auxww | grep -v grep | grep -q multiop && error "multiop still running"
3214     unset TESTNAME
3215     unset tdir
3216     umask $SAVE_UMASK
3217     return 0
3218 }
3219
3220 #
3221 # Wrapper around run_one to ensure:
3222 #  - test runs in subshell
3223 #  - output of test is saved to separate log file for error reporting
3224 #  - test result is saved to data file
3225 #
3226 run_one_logged() {
3227     local BEFORE=`date +%s`
3228     local TEST_ERROR
3229     local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
3230     local test_log=$LOGDIR/$name
3231     rm -rf $LOGDIR/err
3232     local SAVE_UMASK=`umask`
3233     umask 0022
3234
3235     echo
3236     log_sub_test_begin test_${1}
3237     (run_one $1 "$2") 2>&1 | tee $test_log
3238     local RC=${PIPESTATUS[0]}
3239
3240     [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
3241         echo "test_$1 returned $RC" | tee $LOGDIR/err
3242
3243     duration=$((`date +%s` - $BEFORE))
3244     pass "$1" "(${duration}s)"
3245     [ -f $LOGDIR/err ] && TEST_ERROR=$(cat $LOGDIR/err)
3246     log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
3247
3248     if [ -f $LOGDIR/err ]; then
3249         $FAIL_ON_ERROR && exit $RC
3250     fi
3251
3252     umask $SAVE_UMASK
3253
3254     return 0
3255 }
3256
3257 #
3258 # Print information of skipped tests to result.yml
3259 #
3260 skip_logged(){
3261     log_sub_test_begin $1
3262     log_sub_test_end "SKIP" "0" "0" "\"$2\""
3263 }
3264
3265 canonical_path() {
3266     (cd `dirname $1`; echo $PWD/`basename $1`)
3267 }
3268
3269
3270 check_grant() {
3271     export base=`basetest $1`
3272     [ "$CHECK_GRANT" == "no" ] && return 0
3273
3274         testname=GCHECK_ONLY_${base}
3275         [ ${!testname}x == x ] && return 0
3276
3277     echo -n "checking grant......"
3278
3279         local clients=$CLIENTS
3280         [ -z $clients ] && clients=$(hostname)
3281
3282     # sync all the data and make sure no pending data on server
3283     do_nodes $clients sync
3284
3285     # get client grant
3286     client_grant=`do_nodes $clients \
3287                     "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" | \
3288                     awk '{total += $1} END{print total}'`
3289
3290     # get server grant
3291     server_grant=`do_nodes $(comma_list $(osts_nodes)) \
3292                     "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" | \
3293                     awk '{total += $1} END{print total}'`
3294
3295     # check whether client grant == server grant
3296     if [ $client_grant -ne $server_grant ]; then
3297         echo "failed: client:${client_grant} server: ${server_grant}."
3298         do_nodes $(comma_list $(osts_nodes)) \
3299                    "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
3300         do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
3301         return 1
3302     else
3303         echo "pass: client:${client_grant} server: ${server_grant}"
3304     fi
3305
3306 }
3307
3308 ########################
3309 # helper functions
3310
3311 osc_to_ost()
3312 {
3313     osc=$1
3314     ost=`echo $1 | awk -F_ '{print $3}'`
3315     if [ -z $ost ]; then
3316         ost=`echo $1 | sed 's/-osc.*//'`
3317     fi
3318     echo $ost
3319 }
3320
3321 ostuuid_from_index()
3322 {
3323     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
3324 }
3325
3326 ostname_from_index() {
3327     local uuid=$(ostuuid_from_index $1)
3328     echo ${uuid/_UUID/}
3329 }
3330
3331 index_from_ostuuid()
3332 {
3333     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
3334 }
3335
3336 remote_node () {
3337     local node=$1
3338     [ "$node" != "$(hostname)" ]
3339 }
3340
3341 remote_mds ()
3342 {
3343     local node
3344     for node in $(mdts_nodes); do
3345         remote_node $node && return 0
3346     done
3347     return 1
3348 }
3349
3350 remote_mds_nodsh()
3351 {
3352     [ "$CLIENTONLY" ] && return 0 || true
3353     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
3354 }
3355
3356 require_dsh_mds()
3357 {
3358         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
3359             MSKIPPED=1 && return 1
3360         return 0
3361 }
3362
3363 remote_ost ()
3364 {
3365     local node
3366     for node in $(osts_nodes) ; do
3367         remote_node $node && return 0
3368     done
3369     return 1
3370 }
3371
3372 remote_ost_nodsh()
3373 {
3374     [ "$CLIENTONLY" ] && return 0 || true 
3375     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
3376 }
3377
3378 require_dsh_ost()
3379 {
3380         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
3381             OSKIPPED=1 && return 1
3382         return 0
3383 }
3384
3385 remote_mgs_nodsh()
3386 {
3387     local MGS 
3388     MGS=$(facet_host mgs)
3389     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
3390 }
3391
3392 local_mode ()
3393 {
3394     remote_mds_nodsh || remote_ost_nodsh || \
3395         $(single_local_node $(comma_list $(nodes_list)))
3396 }
3397
3398 mdts_nodes () {
3399     local MDSNODES
3400     local NODES_sort
3401     for num in `seq $MDSCOUNT`; do
3402         MDSNODES="$MDSNODES $(facet_host mds$num)"
3403     done
3404     NODES_sort=$(for i in $MDSNODES; do echo $i; done | sort -u)
3405
3406     echo $NODES_sort
3407 }
3408
3409 remote_servers () {
3410     remote_ost && remote_mds
3411 }
3412
3413 facets_nodes () {
3414     local facets=$1
3415     local nodes
3416     local NODES_sort
3417
3418     for facet in ${facets//,/ }; do
3419         if [ "$FAILURE_MODE" = HARD ]; then
3420             nodes="$nodes $(facet_active_host $facet)"
3421         else
3422             nodes="$nodes $(facet_host $facet)"
3423         fi
3424     done
3425     NODES_sort=$(for i in $nodes; do echo $i; done | sort -u)
3426
3427     echo $NODES_sort
3428 }
3429
3430 osts_nodes () {
3431     local facets=$(get_facets OST)
3432     local nodes=$(facets_nodes $facets)
3433
3434     echo $nodes
3435 }
3436
3437 nodes_list () {
3438     # FIXME. We need a list of clients
3439     local myNODES=$HOSTNAME
3440     local myNODES_sort
3441
3442     # CLIENTS (if specified) contains the local client
3443     [ -n "$CLIENTS" ] && myNODES=${CLIENTS//,/ }
3444
3445     if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
3446         myNODES="$myNODES $(facets_nodes $(get_facets))"
3447     fi
3448
3449     myNODES_sort=$(for i in $myNODES; do echo $i; done | sort -u)
3450
3451     echo $myNODES_sort
3452 }
3453
3454 remote_nodes_list () {
3455     local rnodes=$(nodes_list)
3456     rnodes=$(echo " $rnodes " | sed -re "s/\s+$HOSTNAME\s+/ /g")
3457     echo $rnodes
3458 }
3459
3460 init_clients_lists () {
3461     # Sanity check: exclude the local client from RCLIENTS
3462     local rclients=$(echo " $RCLIENTS " | sed -re "s/\s+$HOSTNAME\s+/ /g")
3463
3464     # Sanity check: exclude the dup entries
3465     rclients=$(for i in $rclients; do echo $i; done | sort -u)
3466
3467     local clients="$SINGLECLIENT $HOSTNAME $rclients"
3468
3469     # Sanity check: exclude the dup entries from CLIENTS
3470     # for those configs which has SINGLCLIENT set to local client
3471     clients=$(for i in $clients; do echo $i; done | sort -u)
3472
3473     CLIENTS=`comma_list $clients`
3474     local -a remoteclients=($rclients)
3475     for ((i=0; $i<${#remoteclients[@]}; i++)); do
3476             varname=CLIENT$((i + 2))
3477             eval $varname=${remoteclients[i]}
3478     done
3479
3480     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
3481 }
3482
3483 get_random_entry () {
3484     local rnodes=$1
3485
3486     rnodes=${rnodes//,/ }
3487
3488     local -a nodes=($rnodes)
3489     local num=${#nodes[@]} 
3490     local i=$((RANDOM * num * 2 / 65536))
3491
3492     echo ${nodes[i]}
3493 }
3494
3495 client_only () {
3496     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
3497 }
3498
3499 is_patchless ()
3500 {
3501     lctl get_param version | grep -q patchless
3502 }
3503
3504 check_versions () {
3505     [ "$MDSVER" = "$CLIVER" -a "$OSTVER" = "$CLIVER" ]
3506 }
3507
3508 get_node_count() {
3509     local nodes="$@"
3510     echo $nodes | wc -w || true
3511 }
3512
3513 mixed_ost_devs () {
3514     local nodes=$(osts_nodes)
3515     local osscount=$(get_node_count "$nodes")
3516     [ ! "$OSTCOUNT" = "$osscount" ]
3517 }
3518
3519 mixed_mdt_devs () {
3520     local nodes=$(mdts_nodes)
3521     local mdtcount=$(get_node_count "$nodes")
3522     [ ! "$MDSCOUNT" = "$mdtcount" ]
3523 }
3524
3525 generate_machine_file() {
3526     local nodes=${1//,/ }
3527     local machinefile=$2
3528     rm -f $machinefile
3529     for node in $nodes; do
3530         echo $node >>$machinefile || \
3531             { echo "can not generate machinefile $machinefile" && return 1; }
3532     done
3533 }
3534
3535 get_stripe () {
3536     local file=$1/stripe
3537     touch $file
3538     $LFS getstripe -v $file || error
3539     rm -f $file
3540 }
3541
3542 setstripe_nfsserver () {
3543     local dir=$1
3544
3545     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
3546                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
3547
3548     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
3549
3550     do_nodev $nfsserver lfs setstripe "$@"
3551 }
3552
3553 check_runas_id_ret() {
3554     local myRC=0
3555     local myRUNAS_UID=$1
3556     local myRUNAS_GID=$2
3557     shift 2
3558     local myRUNAS=$@
3559     if [ -z "$myRUNAS" ]; then
3560         error_exit "myRUNAS command must be specified for check_runas_id"
3561     fi
3562     if $GSS_KRB5; then
3563         $myRUNAS krb5_login.sh || \
3564             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
3565     fi
3566     mkdir $DIR/d0_runas_test
3567     chmod 0755 $DIR
3568     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
3569     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
3570     rm -rf $DIR/d0_runas_test
3571     return $myRC
3572 }
3573
3574 check_runas_id() {
3575     local myRUNAS_UID=$1
3576     local myRUNAS_GID=$2
3577     shift 2
3578     local myRUNAS=$@
3579     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
3580         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
3581         Please set RUNAS_ID to some UID which exists on MDS and client or
3582         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
3583 }
3584
3585 # obtain the UID/GID for MPI_USER
3586 get_mpiuser_id() {
3587     local mpi_user=$1
3588
3589     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
3590 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
3591
3592     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
3593 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
3594 }
3595
3596 # obtain and cache Kerberos ticket-granting ticket
3597 refresh_krb5_tgt() {
3598     local myRUNAS_UID=$1
3599     local myRUNAS_GID=$2
3600     shift 2
3601     local myRUNAS=$@
3602     if [ -z "$myRUNAS" ]; then
3603         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
3604     fi
3605
3606     CLIENTS=${CLIENTS:-$HOSTNAME}
3607     do_nodes $CLIENTS "set -x
3608 if ! $myRUNAS krb5_login.sh; then
3609     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
3610     exit 1
3611 fi"
3612 }
3613
3614 # Run multiop in the background, but wait for it to print
3615 # "PAUSING" to its stdout before returning from this function.
3616 multiop_bg_pause() {
3617     MULTIOP_PROG=${MULTIOP_PROG:-multiop}
3618     FILE=$1
3619     ARGS=$2
3620
3621     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
3622     mkfifo $TMPPIPE
3623
3624     echo "$MULTIOP_PROG $FILE v$ARGS"
3625     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
3626
3627     echo "TMPPIPE=${TMPPIPE}"
3628     read -t 60 multiop_output < $TMPPIPE
3629     if [ $? -ne 0 ]; then
3630         rm -f $TMPPIPE
3631         return 1
3632     fi
3633     rm -f $TMPPIPE
3634     if [ "$multiop_output" != "PAUSING" ]; then
3635         echo "Incorrect multiop output: $multiop_output"
3636         kill -9 $PID
3637         return 1
3638     fi
3639
3640     return 0
3641 }
3642
3643 do_and_time () {
3644     local cmd=$1
3645     local rc
3646
3647     SECONDS=0
3648     eval '$cmd'
3649     
3650     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
3651
3652     echo $SECONDS
3653     return $rc
3654 }
3655
3656 inodes_available () {
3657     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
3658     echo $IFree
3659 }
3660
3661 mdsrate_inodes_available () {
3662     local min_inodes=$(inodes_available)
3663     echo $((min_inodes * 99 / 100))
3664 }
3665
3666 # reset llite stat counters
3667 clear_llite_stats(){
3668         lctl set_param -n llite.*.stats 0
3669 }
3670
3671 # sum llite stat items
3672 calc_llite_stats() {
3673         local res=$(lctl get_param -n llite.*.stats |
3674                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
3675         echo $res
3676 }
3677
3678 # reset osc stat counters
3679 clear_osc_stats(){
3680         lctl set_param -n osc.*.osc_stats 0
3681 }
3682
3683 # sum osc stat items
3684 calc_osc_stats() {
3685         local res=$(lctl get_param -n osc.*.osc_stats |
3686                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
3687         echo $res
3688 }
3689
3690 calc_sum () {
3691         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
3692 }
3693
3694 calc_osc_kbytes () {
3695         df $MOUNT > /dev/null
3696         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
3697 }
3698
3699 # save_lustre_params(node, parameter_mask)
3700 # generate a stream of formatted strings (<node> <param name>=<param value>)
3701 save_lustre_params() {
3702         local s
3703         do_nodesv $1 "lctl get_param $2 | while read s; do echo \\\$s; done"
3704 }
3705
3706 # restore lustre parameters from input stream, produces by save_lustre_params
3707 restore_lustre_params() {
3708         local node
3709         local name
3710         local val
3711         while IFS=" =" read node name val; do
3712                 do_node ${node//:/} "lctl set_param -n $name $val"
3713         done
3714 }
3715
3716 check_catastrophe() {
3717     local rnodes=${1:-$(comma_list $(remote_nodes_list))}
3718     local C=$CATASTROPHE
3719     [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
3720
3721     if [ $rnodes ]; then
3722         do_nodes $rnodes "rc=\\\$([ -f $C ] && echo \\\$(< $C) || echo 0);
3723 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
3724 exit \\\$rc;"
3725     fi 
3726 }
3727
3728 # $1 node
3729 # $2 file
3730 # $3 $RUNAS
3731 get_stripe_info() {
3732         local tmp_file
3733
3734         stripe_size=0
3735         stripe_count=0
3736         stripe_index=0
3737         tmp_file=$(mktemp)
3738
3739         do_facet $1 $3 lfs getstripe -v $2 > $tmp_file
3740
3741         stripe_size=`awk '$1 ~ /size/ {print $2}' $tmp_file`
3742         stripe_count=`awk '$1 ~ /count/ {print $2}' $tmp_file`
3743         stripe_index=`awk '$1 ~ /stripe_offset/ {print $2}' $tmp_file`
3744         rm -f $tmp_file
3745 }
3746
3747 # CMD: determine mds index where directory inode presents
3748 get_mds_dir () {
3749     local dir=$1
3750     local file=$dir/f0.get_mds_dir_tmpfile
3751
3752     mkdir -p $dir
3753     rm -f $file
3754     sleep 1
3755     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3756     local -a oldused=($iused)
3757
3758     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
3759     sleep 1
3760     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3761     local -a newused=($iused)
3762
3763     local num=0
3764     for ((i=0; i<${#newused[@]}; i++)); do
3765          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
3766              echo $(( i + 1 ))
3767              rm -f $file
3768              return 0
3769          fi
3770     done
3771     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
3772 }
3773
3774 mdsrate_cleanup () {
3775     if [ -d $4 ]; then
3776         mpi_run -np $1 -machinefile $2 ${MDSRATE} --unlink --nfiles $3 --dir $4 --filefmt $5 $6
3777         rmdir $4
3778     fi
3779 }
3780
3781 delayed_recovery_enabled () {
3782     local var=${SINGLEMDS}_svc
3783     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
3784 }
3785
3786 ########################
3787
3788 convert_facet2label() { 
3789     local facet=$1
3790
3791     if [ x$facet = xost ]; then
3792        facet=ost1
3793     fi
3794
3795     local varsvc=${facet}_svc
3796
3797     if [ -n ${!varsvc} ]; then
3798         echo ${!varsvc}
3799     else  
3800         error "No lablel for $facet!"
3801     fi
3802 }
3803
3804 get_clientosc_proc_path() {
3805     echo "${1}-osc-[^M]*"
3806 }
3807
3808 get_lustre_version () {
3809     local facet=${1:-"$SINGLEMDS"}    
3810     do_facet $facet $LCTL get_param -n version |  awk '/^lustre:/ {print $2}'
3811 }
3812
3813 get_mds_version_major () {
3814     local facet=${1:-"$SINGLEMDS"}
3815     local version=$(get_lustre_version $facet)
3816     echo $version | awk -F. '{print $1}'
3817 }
3818
3819 get_mds_version_minor () {
3820     local facet=${1:-"$SINGLEMDS"}
3821     local version=$(get_lustre_version $facet)
3822     echo $version | awk -F. '{print $2}'
3823 }
3824
3825 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
3826 # used by MDT would not be changed.
3827 # mdt lov: fsname-mdtlov
3828 # mdt osc: fsname-OSTXXXX-osc
3829 mds_on_old_device() {
3830     local mds=${1:-"$SINGLEMDS"}
3831     local major=$(get_mds_version_major $mds)
3832     local minor=$(get_mds_version_minor $mds)
3833
3834     if [ $major -ge 2 ] || [ $major -eq 1 -a $minor -gt 8 ]; then
3835         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
3836             > /dev/null 2>&1" && return 0
3837     fi
3838     return 1
3839 }
3840
3841 get_mdtosc_proc_path() {
3842     local mds_facet=$1
3843     local ost_label=${2:-"*OST*"}
3844
3845     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
3846     local mdt_label=$(convert_facet2label $mds_facet)
3847     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
3848
3849     local major=$(get_mds_version_major $mds_facet)
3850     local minor=$(get_mds_version_minor $mds_facet)
3851     if [ $major -le 1 -a $minor -le 8 ] || mds_on_old_device $mds_facet; then
3852         echo "${ost_label}-osc"
3853     else
3854         echo "${ost_label}-osc-${mdt_index}"
3855     fi
3856 }
3857
3858 get_osc_import_name() {
3859     local facet=$1
3860     local ost=$2
3861     local label=$(convert_facet2label $ost)
3862
3863     if [ "${facet:0:3}" = "mds" ]; then
3864         get_mdtosc_proc_path $facet $label
3865         return 0
3866     fi
3867
3868     get_clientosc_proc_path $label
3869     return 0
3870 }
3871
3872 _wait_import_state () {
3873     local expected=$1
3874     local CONN_PROC=$2
3875     local maxtime=${3:-$(max_recovery_time)}
3876     local CONN_STATE
3877     local i=0
3878
3879     CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3880     while [ "${CONN_STATE}" != "${expected}" ]; do
3881         if [ "${expected}" == "DISCONN" ]; then
3882             # for disconn we can check after proc entry is removed
3883             [ "x${CONN_STATE}" == "x" ] && return 0
3884             #  with AT enabled, we can have connect request timeout near of
3885             # reconnect timeout and test can't see real disconnect
3886             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
3887         fi
3888         [ $i -ge $maxtime ] && \
3889             error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}" && \
3890             return 1
3891         sleep 1
3892         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3893         i=$(($i + 1))
3894     done
3895
3896     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
3897     return 0
3898 }
3899
3900 wait_import_state() {
3901     local state=$1
3902     local params=$2
3903     local maxtime=${3:-$(max_recovery_time)}
3904     local param
3905
3906     for param in ${params//,/ }; do
3907         _wait_import_state $state $param $maxtime || return
3908     done
3909 }
3910
3911 # One client request could be timed out because server was not ready
3912 # when request was sent by client.
3913 # The request timeout calculation details :
3914 # ptl_send_rpc ()
3915 #      /* We give the server rq_timeout secs to process the req, and
3916 #      add the network latency for our local timeout. */
3917 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
3918 #           ptlrpc_at_get_net_latency(request) ;
3919 #
3920 # ptlrpc_connect_import ()
3921 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
3922 #
3923 # init_imp_at () ->
3924 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
3925 # ptlrpc_at_get_net_latency(request) ->
3926 #       at_get (max (iat_net_latency=0, at_min)) = at_min
3927 #
3928 # i.e.:
3929 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
3930 # INITIAL_CONNECT_TIMEOUT + at_min
3931 #
3932 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
3933 # because we can not get this value in runtime,
3934 # the value depends on configure options, and it is not stored in /proc.
3935 # obd_support.h:
3936 # #define CONNECTION_SWITCH_MIN 5U
3937 # #ifndef CRAY_XT3
3938 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
3939 # #else
3940 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/2)
3941
3942 request_timeout () {
3943     local facet=$1
3944
3945     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
3946     local init_connect_timeout=$TIMEOUT
3947     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
3948
3949     local at_min=$(at_get $facet at_min)
3950
3951     echo $(( init_connect_timeout + at_min ))
3952 }
3953
3954 wait_osc_import_state() {
3955     local facet=$1
3956     local ost_facet=$2
3957     local expected=$3
3958     local ost=$(get_osc_import_name $facet $ost_facet)
3959
3960     local param="osc.${ost}.ost_server_uuid"
3961
3962     # 1. wait the deadline of client 1st request (it could be skipped)
3963     # 2. wait the deadline of client 2nd request
3964     local maxtime=$(( 2 * $(request_timeout $facet)))
3965
3966     if ! do_rpc_nodes $(facet_host $facet) \
3967                 _wait_import_state $expected $param $maxtime; then
3968         error "import is not in ${expected} state"
3969         return 1
3970     fi
3971
3972     return 0
3973 }
3974
3975 get_clientmdc_proc_path() {
3976     echo "${1}-mdc-*"
3977 }
3978
3979 do_rpc_nodes () {
3980     local list=$1
3981     shift
3982
3983     # Add paths to lustre tests for 32 and 64 bit systems.
3984     local RPATH="PATH=$RLUSTRE/tests:/usr/lib/lustre/tests:/usr/lib64/lustre/tests:$PATH"
3985     do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
3986 }
3987
3988 wait_clients_import_state () {
3989     local list=$1
3990     local facet=$2
3991     local expected=$3
3992
3993     local facets=$facet
3994
3995     if [ "$FAILURE_MODE" = HARD ]; then
3996         facets=$(facets_on_host $(facet_active_host $facet))
3997     fi
3998
3999     for facet in ${facets//,/ }; do
4000     local label=$(convert_facet2label $facet)
4001     local proc_path
4002     case $facet in
4003         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
4004         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
4005         *) error "unknown facet!" ;;
4006     esac
4007     local params=$(expand_list $params $proc_path)
4008     done
4009
4010     if ! do_rpc_nodes $list wait_import_state $expected $params; then
4011         error "import is not in ${expected} state"
4012         return 1
4013     fi
4014 }
4015
4016 oos_full() {
4017         local -a AVAILA
4018         local -a GRANTA
4019         local OSCFULL=1
4020         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
4021                   $LCTL get_param obdfilter.*.kbytesavail))
4022         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
4023                   $LCTL get_param -n obdfilter.*.tot_granted))
4024         for ((i=0; i<${#AVAILA[@]}; i++)); do
4025                 local -a AVAIL1=(${AVAILA[$i]//=/ })
4026                 GRANT=$((${GRANTA[$i]}/1024))
4027                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} grnt=$GRANT diff=$((AVAIL1[1] - GRANT))
4028                 [ $((AVAIL1[1] - GRANT)) -lt 400 ] && OSCFULL=0 && echo " FULL" || echo
4029         done
4030         return $OSCFULL
4031 }
4032
4033 pool_list () {
4034    do_facet mgs lctl pool_list $1
4035 }
4036
4037 create_pool() {
4038     local fsname=${1%%.*}
4039     local poolname=${1##$fsname.}
4040
4041     do_facet mgs lctl pool_new $1
4042     local RC=$?
4043     # get param should return err unless pool is created
4044     [[ $RC -ne 0 ]] && return $RC
4045
4046     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
4047         2>/dev/null || echo foo" "" || RC=1
4048     if [[ $RC -eq 0 ]]; then
4049         add_pool_to_list $1
4050     else
4051         error "pool_new failed $1"
4052     fi
4053     return $RC
4054 }
4055
4056 add_pool_to_list () {
4057     local fsname=${1%%.*}
4058     local poolname=${1##$fsname.}
4059
4060     local listvar=${fsname}_CREATED_POOLS
4061     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
4062 }
4063
4064 remove_pool_from_list () {
4065     local fsname=${1%%.*}
4066     local poolname=${1##$fsname.}
4067
4068     local listvar=${fsname}_CREATED_POOLS
4069     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
4070 }
4071
4072 destroy_pool_int() {
4073     local ost
4074     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
4075         awk '$1 !~ /^Pool:/ {print $1}')
4076     for ost in $OSTS; do
4077         do_facet mgs lctl pool_remove $1 $ost
4078     done
4079     do_facet mgs lctl pool_destroy $1
4080 }
4081
4082 # <fsname>.<poolname> or <poolname>
4083 destroy_pool() {
4084     local fsname=${1%%.*}
4085     local poolname=${1##$fsname.}
4086
4087     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
4088
4089     local RC
4090
4091     pool_list $fsname.$poolname || return $?
4092
4093     destroy_pool_int $fsname.$poolname
4094     RC=$?
4095     [[ $RC -ne 0 ]] && return $RC
4096
4097     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
4098       2>/dev/null || echo foo" "foo" || RC=1
4099
4100     if [[ $RC -eq 0 ]]; then
4101         remove_pool_from_list $fsname.$poolname
4102     else
4103         error "destroy pool failed $1"
4104     fi
4105     return $RC
4106 }
4107
4108 destroy_pools () {
4109     local fsname=${1:-$FSNAME}
4110     local poolname
4111     local listvar=${fsname}_CREATED_POOLS
4112
4113     pool_list $fsname
4114
4115     [ x${!listvar} = x ] && return 0
4116
4117     echo destroy the created pools: ${!listvar}
4118     for poolname in ${!listvar//,/ }; do
4119         destroy_pool $fsname.$poolname 
4120     done
4121 }
4122
4123 cleanup_pools () {
4124     local fsname=${1:-$FSNAME}
4125     trap 0
4126     destroy_pools $fsname
4127 }
4128
4129 gather_logs () {
4130     local list=$1
4131
4132     local ts=$(date +%s)
4133     local docp=true
4134     [ -f $LOGDIR/shared ] && docp=false
4135  
4136     # dump lustre logs, dmesg
4137
4138     prefix="$LOGDIR/${TESTSUITE}.${TESTNAME}"
4139     suffix="$ts.log"
4140     echo "Dumping lctl log to ${prefix}.*.${suffix}"
4141
4142     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
4143         echo "Dumping logs only on local client."
4144         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
4145         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
4146         return
4147     fi
4148
4149     do_nodesv $list \
4150         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
4151          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
4152     if [ ! -f $LOGDIR/shared ]; then
4153         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
4154       fi
4155
4156     local archive=$LOGDIR/${TESTSUITE}-$ts.tar.bz2
4157     tar -jcf $archive $LOGDIR/*$ts* $LOGDIR/*${TESTSUITE}*
4158
4159     echo $archive
4160 }
4161
4162 cleanup_logs () {
4163     local list=${1:-$(comma_list $(nodes_list))}
4164
4165     [ -n ${TESTSUITE} ] && do_nodes $list "rm -f $TMP/*${TESTSUITE}*" || true
4166 }
4167
4168 do_ls () {
4169     local mntpt_root=$1
4170     local num_mntpts=$2
4171     local dir=$3
4172     local i
4173     local cmd
4174     local pids
4175     local rc=0
4176
4177     for i in $(seq 0 $num_mntpts); do
4178         cmd="ls -laf ${mntpt_root}$i/$dir"
4179         echo + $cmd;
4180         $cmd > /dev/null &
4181         pids="$pids $!"
4182     done
4183     echo pids=$pids
4184     for pid in $pids; do
4185         wait $pid || rc=$?
4186     done
4187
4188     return $rc
4189 }
4190
4191 # target_start_and_reset_recovery_timer()
4192 #        service_time = at_est2timeout(service_time);
4193 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
4194 #                             INITIAL_CONNECT_TIMEOUT);
4195 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
4196 #define CONNECTION_SWITCH_INC 1
4197 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
4198 #define CONNECTION_SWITCH_MIN 5U
4199
4200 max_recovery_time () {
4201     local init_connect_timeout=$(( TIMEOUT / 20 ))
4202     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
4203
4204     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
4205
4206     echo $service_time 
4207 }
4208
4209 get_clients_mount_count () {
4210     local clients=${CLIENTS:-`hostname`}
4211
4212     # we need to take into account the clients mounts and
4213     # exclude mds/ost mounts if any;
4214     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
4215 }
4216
4217 # gss functions
4218 PROC_CLI="srpc_info"
4219
4220 combination()
4221 {
4222     local M=$1
4223     local N=$2
4224     local R=1
4225
4226     if [ $M -lt $N ]; then
4227         R=0
4228     else
4229         N=$((N + 1))
4230         while [ $N -lt $M ]; do
4231             R=$((R * N))
4232             N=$((N + 1))
4233         done
4234     fi
4235
4236     echo $R
4237     return 0
4238 }
4239
4240 calc_connection_cnt() {
4241     local dir=$1
4242
4243     # MDT->MDT = 2 * C(M, 2)
4244     # MDT->OST = M * O
4245     # CLI->OST = C * O
4246     # CLI->MDT = C * M
4247     comb_m2=$(combination $MDSCOUNT 2)
4248
4249     local num_clients=$(get_clients_mount_count)
4250
4251     local cnt_mdt2mdt=$((comb_m2 * 2))
4252     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
4253     local cnt_cli2ost=$((num_clients * OSTCOUNT))
4254     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
4255     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
4256     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
4257     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
4258
4259     local var=cnt_$dir
4260     local res=${!var}
4261
4262     echo $res
4263 }
4264
4265 set_rule()
4266 {
4267     local tgt=$1
4268     local net=$2
4269     local dir=$3
4270     local flavor=$4
4271     local cmd="$tgt.srpc.flavor"
4272
4273     if [ $net == "any" ]; then
4274         net="default"
4275     fi
4276     cmd="$cmd.$net"
4277
4278     if [ $dir != "any" ]; then
4279         cmd="$cmd.$dir"
4280     fi
4281
4282     cmd="$cmd=$flavor"
4283     log "Setting sptlrpc rule: $cmd"
4284     do_facet mgs "$LCTL conf_param $cmd"
4285 }
4286
4287 count_flvr()
4288 {
4289     local output=$1
4290     local flavor=$2
4291     local count=0
4292
4293     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
4294     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
4295
4296     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
4297
4298     if [ "x$bulkspec" != "x" ]; then
4299         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
4300
4301         if [ "x$algs" != "x" ]; then
4302             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
4303         else
4304             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
4305             if [ $bulk == "bulkn" ]; then
4306                 bulk_count=`echo "$output" | grep "bulk flavor" \
4307                             | grep "null/null" | wc -l`
4308             elif [ $bulk == "bulki" ]; then
4309                 bulk_count=`echo "$output" | grep "bulk flavor" \
4310                             | grep "/null" | grep -v "null/" | wc -l`
4311             else
4312                 bulk_count=`echo "$output" | grep "bulk flavor" \
4313                             | grep -v "/null" | grep -v "null/" | wc -l`
4314             fi
4315         fi
4316
4317         [ $bulk_count -lt $count ] && count=$bulk_count
4318     fi
4319
4320     echo $count
4321 }
4322
4323 flvr_cnt_cli2mdt()
4324 {
4325     local flavor=$1
4326     local cnt
4327
4328     local clients=${CLIENTS:-`hostname`}
4329
4330     for c in ${clients//,/ }; do
4331         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
4332         tmpcnt=`count_flvr "$output" $flavor`
4333         cnt=$((cnt + tmpcnt))
4334     done
4335     echo $cnt
4336 }
4337
4338 flvr_cnt_cli2ost()
4339 {
4340     local flavor=$1
4341     local cnt
4342
4343     local clients=${CLIENTS:-`hostname`}
4344
4345     for c in ${clients//,/ }; do
4346         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
4347         tmpcnt=`count_flvr "$output" $flavor`
4348         cnt=$((cnt + tmpcnt))
4349     done
4350     echo $cnt
4351 }
4352
4353 flvr_cnt_mdt2mdt()
4354 {
4355     local flavor=$1
4356     local cnt=0
4357
4358     if [ $MDSCOUNT -le 1 ]; then
4359         echo 0
4360         return
4361     fi
4362
4363     for num in `seq $MDSCOUNT`; do
4364         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
4365         tmpcnt=`count_flvr "$output" $flavor`
4366         cnt=$((cnt + tmpcnt))
4367     done
4368     echo $cnt;
4369 }
4370
4371 flvr_cnt_mdt2ost()
4372 {
4373     local flavor=$1
4374     local cnt=0
4375     local mdtosc
4376
4377     for num in `seq $MDSCOUNT`; do
4378         mdtosc=$(get_mdtosc_proc_path mds$num)
4379         mdtosc=${mdtosc/-MDT*/-MDT\*}
4380         output=$(do_facet mds$num lctl get_param -n \
4381             osc.$mdtosc.$PROC_CLI 2>/dev/null)
4382         tmpcnt=`count_flvr "$output" $flavor`
4383         cnt=$((cnt + tmpcnt))
4384     done
4385     echo $cnt;
4386 }
4387
4388 flvr_cnt_mgc2mgs()
4389 {
4390     local flavor=$1
4391
4392     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
4393     count_flvr "$output" $flavor
4394 }
4395
4396 do_check_flavor()
4397 {
4398     local dir=$1        # from to
4399     local flavor=$2     # flavor expected
4400     local res=0
4401
4402     if [ $dir == "cli2mdt" ]; then
4403         res=`flvr_cnt_cli2mdt $flavor`
4404     elif [ $dir == "cli2ost" ]; then
4405         res=`flvr_cnt_cli2ost $flavor`
4406     elif [ $dir == "mdt2mdt" ]; then
4407         res=`flvr_cnt_mdt2mdt $flavor`
4408     elif [ $dir == "mdt2ost" ]; then
4409         res=`flvr_cnt_mdt2ost $flavor`
4410     elif [ $dir == "all2ost" ]; then
4411         res1=`flvr_cnt_mdt2ost $flavor`
4412         res2=`flvr_cnt_cli2ost $flavor`
4413         res=$((res1 + res2))
4414     elif [ $dir == "all2mdt" ]; then
4415         res1=`flvr_cnt_mdt2mdt $flavor`
4416         res2=`flvr_cnt_cli2mdt $flavor`
4417         res=$((res1 + res2))
4418     elif [ $dir == "all2all" ]; then
4419         res1=`flvr_cnt_mdt2ost $flavor`
4420         res2=`flvr_cnt_cli2ost $flavor`
4421         res3=`flvr_cnt_mdt2mdt $flavor`
4422         res4=`flvr_cnt_cli2mdt $flavor`
4423         res=$((res1 + res2 + res3 + res4))
4424     fi
4425
4426     echo $res
4427 }
4428
4429 wait_flavor()
4430 {
4431     local dir=$1        # from to
4432     local flavor=$2     # flavor expected
4433     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
4434
4435     local res=0
4436
4437     for ((i=0;i<20;i++)); do
4438         echo -n "checking $dir..."
4439         res=$(do_check_flavor $dir $flavor)
4440         echo "found $res/$expect $flavor connections"
4441         [ $res -eq $expect ] && return 0
4442         sleep 4
4443     done
4444
4445     echo "Error checking $flavor of $dir: expect $expect, actual $res"
4446     return 1
4447 }
4448
4449 restore_to_default_flavor()
4450 {
4451     local proc="mgs.MGS.live.$FSNAME"
4452
4453     echo "restoring to default flavor..."
4454
4455     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
4456
4457     # remove all existing rules if any
4458     if [ $nrule -ne 0 ]; then
4459         echo "$nrule existing rules"
4460         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
4461             echo "remove rule: $rule"
4462             spec=`echo $rule | awk -F = '{print $1}'`
4463             do_facet mgs "$LCTL conf_param -d $spec"
4464         done
4465     fi
4466
4467     # verify no rules left
4468     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
4469     [ $nrule -ne 0 ] && error "still $nrule rules left"
4470
4471     # wait for default flavor to be applied
4472     # currently default flavor for all connections are 'null'
4473     wait_flavor all2all null
4474     echo "now at default flavor settings"
4475 }
4476
4477 set_flavor_all()
4478 {
4479     local flavor=${1:-null}
4480
4481     echo "setting all flavor to $flavor"
4482
4483     # FIXME need parameter to this fn
4484     # and remove global vars
4485     local cnt_all2all=$(calc_connection_cnt all2all)
4486
4487     local res=$(do_check_flavor all2all $flavor)
4488     if [ $res -eq $cnt_all2all ]; then
4489         echo "already have total $res $flavor connections"
4490         return
4491     fi
4492
4493     echo "found $res $flavor out of total $cnt_all2all connections"
4494     restore_to_default_flavor
4495
4496     [[ $flavor = null ]] && return 0
4497
4498     set_rule $FSNAME any any $flavor
4499     wait_flavor all2all $flavor
4500 }
4501
4502
4503 check_logdir() {
4504     local dir=$1
4505     # Checking for shared logdir
4506     if [ ! -d $dir ]; then
4507         # Not found. Create local logdir
4508         mkdir -p $dir
4509     else
4510         touch $dir/node.$(hostname -s).yml
4511     fi
4512     return 0
4513 }
4514
4515 check_write_access() {
4516     local dir=$1
4517     for node in $(nodes_list); do
4518         if [ ! -f "$dir/node.$(short_hostname ${node}).yml" ]; then
4519             # Logdir not accessible/writable from this node.
4520             return 1
4521         fi
4522     done
4523     return 0
4524 }
4525
4526 init_logging() {
4527     if [[ -n $YAML_LOG ]]; then
4528         return
4529     fi
4530     local SAVE_UMASK=`umask`
4531     umask 0000
4532
4533     export YAML_LOG=${LOGDIR}/results.yml
4534     mkdir -p $LOGDIR
4535     init_clients_lists
4536
4537     do_rpc_nodes $(comma_list $(nodes_list)) check_logdir $LOGDIR
4538     if check_write_access $LOGDIR; then
4539         touch $LOGDIR/shared
4540         echo "Logging to shared log directory: $LOGDIR"
4541     else
4542         echo "Logging to local directory: $LOGDIR"
4543     fi
4544
4545     yml_nodes_file $LOGDIR >> $YAML_LOG
4546     yml_results_file >> $YAML_LOG
4547
4548     umask $SAVE_UMASK
4549 }
4550
4551 log_test() {
4552     yml_log_test $1 >> $YAML_LOG
4553 }
4554
4555 log_test_status() {
4556      yml_log_test_status $@ >> $YAML_LOG
4557 }
4558
4559 log_sub_test_begin() {
4560     yml_log_sub_test_begin "$@" >> $YAML_LOG
4561 }
4562
4563 log_sub_test_end() {
4564     yml_log_sub_test_end "$@" >> $YAML_LOG
4565 }
4566
4567 run_llverdev()
4568 {
4569         local dev=$1
4570         local llverdev_opts=$2
4571         local devname=$(basename $1)
4572         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
4573         # loop devices aren't in /proc/partitions
4574         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
4575
4576         size=$(($size / 1024 / 1024)) # Gb
4577
4578         local partial_arg=""
4579         # Run in partial (fast) mode if the size
4580         # of a partition > 1 GB
4581         [ $size -gt 1 ] && partial_arg="-p"
4582
4583         llverdev --force $partial_arg $llverdev_opts $dev
4584 }
4585
4586 run_llverfs()
4587 {
4588         local dir=$1
4589         local llverfs_opts=$2
4590         local partial_arg=""
4591         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
4592
4593         # Run in partial (fast) mode if the size
4594         # of a partition > 1 GB
4595         [ $size -gt 1 ] && partial_arg="-p"
4596
4597         llverfs $partial_arg $llverfs_opts $dir
4598 }
4599
4600 remove_mdt_files() {
4601     local facet=$1
4602     local mdtdev=$2
4603     shift 2
4604     local files="$@"
4605     local mntpt=$(facet_mntpt $facet)
4606
4607     echo "removing files from $mdtdev on $facet: $files"
4608     mount -t $FSTYPE $MDS_MOUNT_OPTS $mdtdev $mntpt || return $?
4609     rc=0;
4610     for f in $files; do
4611         rm $mntpt/ROOT/$f || { rc=$?; break; }
4612     done
4613     umount -f $mntpt || return $?
4614     return $rc
4615 }
4616
4617 duplicate_mdt_files() {
4618     local facet=$1
4619     local mdtdev=$2
4620     shift 2
4621     local files="$@"
4622     local mntpt=$(facet_mntpt $facet)
4623
4624     echo "duplicating files on $mdtdev on $facet: $files"
4625     mkdir -p $mntpt || return $?
4626     mount -t $FSTYPE $MDS_MOUNT_OPTS $mdtdev $mntpt || return $?
4627
4628     do_umount() {
4629         trap 0
4630         popd > /dev/null
4631         rm $tmp
4632         umount -f $mntpt
4633     }
4634     trap do_umount EXIT
4635
4636     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
4637     pushd $mntpt/ROOT > /dev/null || return $?
4638     rc=0
4639     for f in $files; do
4640         touch $f.bad || return $?
4641         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
4642         rc=${PIPESTATUS[0]}
4643         [ $rc -eq 0 ] || return $rc
4644         setfattr --restore $tmp || return $?
4645     done
4646     do_umount
4647 }
4648
4649 run_sgpdd () {
4650     local devs=${1//,/ }
4651     shift
4652     local params=$@
4653     local rslt=$TMP/sgpdd_survey
4654
4655     # sgpdd-survey cleanups ${rslt}.* files
4656
4657     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
4658     echo + $cmd
4659     eval $cmd
4660     cat ${rslt}.detail
4661 }
4662
4663 # returns the canonical name for an ldiskfs device
4664 ldiskfs_canon() {
4665         local dev="$1"
4666         local facet="$2"
4667
4668         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
4669 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
4670     echo dm-\\\${foo##*:};
4671 else
4672     echo \\\$(basename \\\$dv);
4673 fi;"
4674 }
4675
4676 is_sanity_benchmark() {
4677     local benchmarks="dbench bonnie iozone fsx"
4678     local suite=$1
4679     for b in $benchmarks; do
4680         if [ "$b" == "$suite" ]; then
4681             return 0
4682         fi
4683     done
4684     return 1
4685 }
4686
4687 min_ost_size () {
4688     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
4689 }