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