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