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