Whamcloud - gitweb
a690b1c50f73d5da0392247a40b33f6e33d13e04
[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     local rc=0
2231     do_node $node $cmd || rc =$?
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     local rc=0
2276     eval $cmd || rc=$?
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     return 0
2283 }
2284
2285 check_and_cleanup_lustre() {
2286     if [ "$LFSCK_ALWAYS" = "yes" ]; then
2287         get_svr_devs
2288         generate_db
2289         if [ "$SKIP_LFSCK" == "no" ]; then
2290             run_lfsck
2291         else
2292             echo "skip lfsck"
2293         fi
2294     fi
2295
2296     if is_mounted $MOUNT; then
2297         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]*
2298         [ "$ENABLE_QUOTA" ] && restore_quota_type || true
2299     fi
2300
2301     if [ "$I_UMOUNTED2" = "yes" ]; then
2302         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
2303     fi
2304
2305     if [ "$I_MOUNTED2" = "yes" ]; then
2306         cleanup_mount $MOUNT2
2307     fi
2308
2309     if [ "$I_MOUNTED" = "yes" ]; then
2310         cleanupall -f || error "cleanup failed"
2311         unset I_MOUNTED
2312     fi
2313 }
2314
2315 #######
2316 # General functions
2317
2318 check_network() {
2319     local NETWORK=0
2320     local WAIT=0
2321     local MAX=$2
2322     while [ $NETWORK -eq 0 ]; do
2323         if ping -c 1 -w 3 $1 > /dev/null; then
2324             NETWORK=1
2325         else
2326             WAIT=$((WAIT + 5))
2327             echo "waiting for $1, $((MAX - WAIT)) secs left"
2328             sleep 5
2329         fi
2330         if [ $WAIT -gt $MAX ]; then
2331             echo "Network not available"
2332             exit 1
2333         fi
2334     done
2335 }
2336 check_port() {
2337     while( !($DSH2 $1 "netstat -tna | grep -q $2") ) ; do
2338         sleep 9
2339     done
2340 }
2341
2342 no_dsh() {
2343     shift
2344     eval $@
2345 }
2346
2347 comma_list() {
2348     # the sed converts spaces to commas, but leaves the last space
2349     # alone, so the line doesn't end with a comma.
2350     echo "$*" | tr -s " " "\n" | sort -b -u | tr "\n" " " | sed 's/ \([^$]\)/,\1/g'
2351 }
2352
2353 # list, excluded are the comma separated lists
2354 exclude_items_from_list () {
2355     local list=$1
2356     local excluded=$2
2357     local item
2358
2359     list=${list//,/ }
2360     for item in ${excluded//,/ }; do
2361         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
2362     done
2363     echo $(comma_list $list) 
2364 }
2365
2366 # list, expand  are the comma separated lists
2367 expand_list () {
2368     local list=${1//,/ }
2369     local expand=${2//,/ }
2370     local expanded=
2371
2372     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
2373     echo $(comma_list $expanded)
2374 }
2375
2376 testslist_filter () {
2377     local script=$LUSTRE/tests/${TESTSUITE}.sh
2378
2379     [ -f $script ] || return 0
2380
2381     local start_at=$START_AT
2382     local stop_at=$STOP_AT
2383
2384     local var=${TESTSUITE//-/_}_START_AT
2385     [ x"${!var}" != x ] && start_at=${!var}
2386     var=${TESTSUITE//-/_}_STOP_AT
2387     [ x"${!var}" != x ] && stop_at=${!var}
2388
2389     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
2390         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
2391             /^'${start_at}'$/ {flag = 0}
2392             {if (flag == 1) print $0}
2393             /^'${stop_at}'$/ { flag = 1 }'
2394 }
2395
2396 absolute_path() {
2397     (cd `dirname $1`; echo $PWD/`basename $1`)
2398 }
2399
2400 get_facets () {
2401     local name=$(echo $1 | tr "[:upper:]" "[:lower:]")
2402     local type=$(echo $1 | tr "[:lower:]" "[:upper:]")
2403
2404     local list=""
2405     local count=${type}COUNT
2406     for ((i=1; i<=${!count}; i++)) do
2407         list="$list ${name}$i"
2408     done
2409     echo $(comma_list $list)
2410 }
2411
2412 ##################################
2413 # Adaptive Timeouts funcs
2414
2415 at_is_enabled() {
2416     # only check mds, we assume at_max is the same on all nodes
2417     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
2418     if [ $at_max -eq 0 ]; then
2419         return 1
2420     else
2421         return 0
2422     fi
2423 }
2424
2425 at_max_get() {
2426     local facet=$1
2427
2428     # suppose that all ost-s has the same at_max set
2429     if [ $facet == "ost" ]; then
2430         do_facet ost1 "lctl get_param -n at_max"
2431     else
2432         do_facet $facet "lctl get_param -n at_max"
2433     fi
2434 }
2435
2436 at_max_set() {
2437     local at_max=$1
2438     shift
2439
2440     local facet
2441     for facet in $@; do
2442         if [ $facet == "ost" ]; then
2443             for i in `seq $OSTCOUNT`; do
2444                 do_facet ost$i "lctl set_param at_max=$at_max"
2445
2446             done
2447         elif [ $facet == "mds" ]; then
2448             for i in `seq $MDSCOUNT`; do
2449                 do_facet mds$i "lctl set_param at_max=$at_max"
2450             done
2451         else
2452             do_facet $facet "lctl set_param at_max=$at_max"
2453         fi
2454     done
2455 }
2456
2457 ##################################
2458 # OBD_FAIL funcs
2459
2460 drop_request() {
2461 # OBD_FAIL_MDS_ALL_REQUEST_NET
2462     RC=0
2463     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
2464     do_facet client "$1" || RC=$?
2465     do_facet $SINGLEMDS lctl set_param fail_loc=0
2466     return $RC
2467 }
2468
2469 drop_reply() {
2470 # OBD_FAIL_MDS_ALL_REPLY_NET
2471     RC=0
2472     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
2473     do_facet client "$@" || RC=$?
2474     do_facet $SINGLEMDS lctl set_param fail_loc=0
2475     return $RC
2476 }
2477
2478 drop_reint_reply() {
2479 # OBD_FAIL_MDS_REINT_NET_REP
2480     RC=0
2481     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
2482     do_facet client "$@" || RC=$?
2483     do_facet $SINGLEMDS lctl set_param fail_loc=0
2484     return $RC
2485 }
2486
2487 pause_bulk() {
2488 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
2489     RC=0
2490     do_facet ost1 lctl set_param fail_loc=0x214
2491     do_facet client "$1" || RC=$?
2492     do_facet client "sync"
2493     do_facet ost1 lctl set_param fail_loc=0
2494     return $RC
2495 }
2496
2497 drop_ldlm_cancel() {
2498 #define OBD_FAIL_LDLM_CANCEL             0x304
2499     RC=0
2500     do_facet client lctl set_param fail_loc=0x304
2501     do_facet client "$@" || RC=$?
2502     do_facet client lctl set_param fail_loc=0
2503     return $RC
2504 }
2505
2506 drop_bl_callback() {
2507 #define OBD_FAIL_LDLM_BL_CALLBACK        0x305
2508     RC=0
2509     do_facet client lctl set_param fail_loc=0x305
2510     do_facet client "$@" || RC=$?
2511     do_facet client lctl set_param fail_loc=0
2512     return $RC
2513 }
2514
2515 drop_ldlm_reply() {
2516 #define OBD_FAIL_LDLM_REPLY              0x30c
2517     RC=0
2518     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
2519     do_facet client "$@" || RC=$?
2520     do_facet $SINGLEMDS lctl set_param fail_loc=0
2521     return $RC
2522 }
2523
2524 clear_failloc() {
2525     facet=$1
2526     pause=$2
2527     sleep $pause
2528     echo "clearing fail_loc on $facet"
2529     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
2530 }
2531
2532 set_nodes_failloc () {
2533     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
2534 }
2535
2536 cancel_lru_locks() {
2537     $LCTL mark "cancel_lru_locks $1 start"
2538     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
2539         $LCTL set_param -n $d=clear
2540     done
2541     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
2542     $LCTL mark "cancel_lru_locks $1 stop"
2543 }
2544
2545 default_lru_size()
2546 {
2547         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
2548         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
2549         echo "$DEFAULT_LRU_SIZE"
2550 }
2551
2552 lru_resize_enable()
2553 {
2554     lctl set_param ldlm.namespaces.*$1*.lru_size=0
2555 }
2556
2557 lru_resize_disable()
2558 {
2559     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
2560 }
2561
2562 pgcache_empty() {
2563     local FILE
2564     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
2565         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
2566             echo there is still data in page cache $FILE ?
2567             lctl get_param -n $FILE
2568             return 1
2569         fi
2570     done
2571     return 0
2572 }
2573
2574 debugsave() {
2575     DEBUGSAVE="$(lctl get_param -n debug)"
2576 }
2577
2578 debugrestore() {
2579     [ -n "$DEBUGSAVE" ] && \
2580         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
2581     DEBUGSAVE=""
2582 }
2583
2584 debug_size_save() {
2585     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
2586 }
2587
2588 debug_size_restore() {
2589     [ -n "$DEBUG_SIZE_SAVED" ] && \
2590         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
2591     DEBUG_SIZE_SAVED=""
2592 }
2593
2594 start_full_debug_logging() {
2595     debugsave
2596     debug_size_save
2597
2598     local FULLDEBUG=-1
2599     local DEBUG_SIZE=150
2600
2601     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
2602     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
2603 }
2604
2605 stop_full_debug_logging() {
2606     debug_size_restore
2607     debugrestore
2608 }
2609
2610 ##################################
2611 # Test interface
2612 ##################################
2613
2614 error_noexit() {
2615     local TYPE=${TYPE:-"FAIL"}
2616
2617     local dump=true
2618     # do not dump logs if $1=false
2619     if [ "x$1" = "xfalse" ]; then
2620         shift
2621         dump=false
2622     fi
2623
2624     log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
2625
2626     # We need to dump the logs on all nodes
2627     if $dump; then
2628         gather_logs $(comma_list $(nodes_list))
2629     fi
2630
2631     debugrestore
2632     [ "$TESTSUITELOG" ] && echo "$0: ${TYPE}: $TESTNAME $@" >> $TESTSUITELOG
2633     echo "$@" > $LOGDIR/err
2634 }
2635
2636 error() {
2637     error_noexit "$@"
2638     exit 1
2639 }
2640
2641 error_exit() {
2642     error "$@"
2643 }
2644
2645 # use only if we are ignoring failures for this test, bugno required.
2646 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
2647 # e.g. error_ignore 5494 "your message"
2648 error_ignore() {
2649     local TYPE="IGNORE (bz$1)"
2650     shift
2651     error_noexit "$@"
2652 }
2653
2654 skip_env () {
2655     $FAIL_ON_SKIP_ENV && error false $@ || skip $@
2656 }
2657
2658 skip () {
2659     echo
2660     log " SKIP: ${TESTSUITE} ${TESTNAME} $@"
2661     [ "$TESTSUITELOG" ] && \
2662         echo "${TESTSUITE}: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
2663 }
2664
2665 build_test_filter() {
2666     EXCEPT="$EXCEPT $(testslist_filter)"
2667
2668     [ "$ONLY" ] && log "only running test `echo $ONLY`"
2669     for O in $ONLY; do
2670         eval ONLY_${O}=true
2671     done
2672     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
2673         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
2674     [ "$EXCEPT_SLOW" ] && \
2675         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
2676     for E in $EXCEPT $ALWAYS_EXCEPT; do
2677         eval EXCEPT_${E}=true
2678     done
2679     for E in $EXCEPT_SLOW; do
2680         eval EXCEPT_SLOW_${E}=true
2681     done
2682     for G in $GRANT_CHECK_LIST; do
2683         eval GCHECK_ONLY_${G}=true
2684         done
2685 }
2686
2687 basetest() {
2688     if [[ $1 = [a-z]* ]]; then
2689         echo $1
2690     else
2691         echo ${1%%[a-z]*}
2692     fi
2693 }
2694
2695 # print a newline if the last test was skipped
2696 export LAST_SKIPPED=
2697 #
2698 # Main entry into test-framework. This is called with the name and
2699 # description of a test. The name is used to find the function to run
2700 # the test using "test_$name".
2701 #
2702 # This supports a variety of methods of specifying specific test to
2703 # run or not run.  These need to be documented...
2704 #
2705 run_test() {
2706     assert_DIR
2707
2708     export base=`basetest $1`
2709     if [ ! -z "$ONLY" ]; then
2710         testname=ONLY_$1
2711         if [ ${!testname}x != x ]; then
2712             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
2713             run_one_logged $1 "$2"
2714             return $?
2715         fi
2716         testname=ONLY_$base
2717         if [ ${!testname}x != x ]; then
2718             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
2719             run_one_logged $1 "$2"
2720             return $?
2721         fi
2722         LAST_SKIPPED="y"
2723         echo -n "."
2724         return 0
2725     fi
2726     testname=EXCEPT_$1
2727     if [ ${!testname}x != x ]; then
2728         LAST_SKIPPED="y"
2729         TESTNAME=test_$1 skip "skipping excluded test $1"
2730         return 0
2731     fi
2732     testname=EXCEPT_$base
2733     if [ ${!testname}x != x ]; then
2734         LAST_SKIPPED="y"
2735         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
2736         return 0
2737     fi
2738     testname=EXCEPT_SLOW_$1
2739     if [ ${!testname}x != x ]; then
2740         LAST_SKIPPED="y"
2741         TESTNAME=test_$1 skip "skipping SLOW test $1"
2742         return 0
2743     fi
2744     testname=EXCEPT_SLOW_$base
2745     if [ ${!testname}x != x ]; then
2746         LAST_SKIPPED="y"
2747         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
2748         return 0
2749     fi
2750
2751     LAST_SKIPPED=
2752     run_one_logged $1 "$2"
2753
2754     return $?
2755 }
2756
2757 equals_msg() {
2758     banner "$*"
2759 }
2760
2761 log() {
2762     echo "$*"
2763     module_loaded lnet || load_modules
2764
2765     local MSG="$*"
2766     # Get rid of '
2767     MSG=${MSG//\'/\\\'}
2768     MSG=${MSG//\(/\\\(}
2769     MSG=${MSG//\)/\\\)}
2770     MSG=${MSG//\;/\\\;}
2771     MSG=${MSG//\|/\\\|}
2772     MSG=${MSG//\>/\\\>}
2773     MSG=${MSG//\</\\\<}
2774     MSG=${MSG//\//\\\/}
2775     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
2776 }
2777
2778 trace() {
2779         log "STARTING: $*"
2780         strace -o $TMP/$1.strace -ttt $*
2781         RC=$?
2782         log "FINISHED: $*: rc $RC"
2783         return 1
2784 }
2785
2786 pass() {
2787     # Set TEST_STATUS here; will be used for logging the result
2788     if [ -f $LOGDIR/err ]; then
2789         TEST_STATUS="FAIL"
2790     else
2791         TEST_STATUS="PASS"
2792     fi
2793     echo $TEST_STATUS " " $@
2794 }
2795
2796 check_mds() {
2797     FFREE=$(do_node $SINGLEMDS lctl get_param -n osd.*MDT*.filesfree | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2798     FTOTAL=$(do_node $SINGLEMDS lctl get_param -n osd.*MDT*.filestotal | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2799     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
2800 }
2801
2802 reset_fail_loc () {
2803     echo -n "Resetting fail_loc on all nodes..."
2804     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
2805     echo done.
2806 }
2807
2808
2809 #
2810 # Log a message (on all nodes) padded with "=" before and after. 
2811 # Also appends a timestamp and prepends the testsuite name.
2812
2813
2814 EQUALS="===================================================================================================="
2815 banner() {
2816     msg="== ${TESTSUITE} $*"
2817     last=${msg: -1:1}
2818     [[ $last != "=" && $last != " " ]] && msg="$msg "
2819     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
2820     # always include at least == after the message
2821     log "$msg== $(date +"%H:%M:%S (%s)")"
2822 }
2823
2824 #
2825 # Run a single test function and cleanup after it.  
2826 #
2827 # This function should be run in a subshell so the test func can
2828 # exit() without stopping the whole script.
2829 #
2830 run_one() {
2831     local testnum=$1
2832     local message=$2
2833     tfile=f${testnum}
2834     export tdir=d0.${TESTSUITE}/d${base}
2835     export TESTNAME=test_$testnum
2836     local SAVE_UMASK=`umask`
2837     umask 0022
2838
2839     banner "test $testnum: $message"
2840     test_${testnum} || error "test_$testnum failed with $?"
2841     cd $SAVE_PWD
2842     reset_fail_loc
2843     check_grant ${testnum} || error "check_grant $testnum failed with $?"
2844     check_catastrophe || error "LBUG/LASSERT detected"
2845     ps auxww | grep -v grep | grep -q multiop && error "multiop still running"
2846     unset TESTNAME
2847     unset tdir
2848     umask $SAVE_UMASK
2849     return 0
2850 }
2851
2852 #
2853 # Wrapper around run_one to ensure:
2854 #  - test runs in subshell
2855 #  - output of test is saved to separate log file for error reporting
2856 #  - test result is saved to data file
2857 #
2858 run_one_logged() {
2859     local BEFORE=`date +%s`
2860     local TEST_ERROR
2861     local name=${TESTSUITE}.test_${1}.test_log.$(hostname).log
2862     local test_log=$LOGDIR/$name
2863     rm -rf $LOGDIR/err
2864
2865     echo
2866     log_sub_test_begin test_${1}
2867     (run_one $1 "$2") 2>&1 | tee $test_log
2868     local RC=${PIPESTATUS[0]}
2869
2870     [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
2871         echo "test_$1 returned $RC" | tee $LOGDIR/err
2872
2873     duration=$((`date +%s` - $BEFORE))
2874     pass "(${duration}s)"
2875     [ -f $LOGDIR/err ] && TEST_ERROR=$(cat $LOGDIR/err)
2876     log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
2877
2878     if [ -f $LOGDIR/err ]; then
2879         $FAIL_ON_ERROR && exit $RC
2880     fi
2881
2882     return 0
2883 }
2884
2885 canonical_path() {
2886     (cd `dirname $1`; echo $PWD/`basename $1`)
2887 }
2888
2889 sync_clients() {
2890     [ -d $DIR1 ] && cd $DIR1 && sync; sleep 1; sync
2891     [ -d $DIR2 ] && cd $DIR2 && sync; sleep 1; sync
2892         cd $SAVE_PWD
2893 }
2894
2895 check_grant() {
2896     export base=`basetest $1`
2897     [ "$CHECK_GRANT" == "no" ] && return 0
2898
2899         testname=GCHECK_ONLY_${base}
2900         [ ${!testname}x == x ] && return 0
2901
2902     echo -n "checking grant......"
2903         cd $SAVE_PWD
2904         # write some data to sync client lost_grant
2905         rm -f $DIR1/${tfile}_check_grant_* 2>&1
2906         for i in `seq $OSTCOUNT`; do
2907                 $LFS setstripe $DIR1/${tfile}_check_grant_$i -i $(($i -1)) -c 1
2908                 dd if=/dev/zero of=$DIR1/${tfile}_check_grant_$i bs=4k \
2909                                               count=1 > /dev/null 2>&1
2910         done
2911         # sync all the data and make sure no pending data on server
2912         sync_clients
2913         
2914         #get client grant and server grant
2915         client_grant=0
2916     for d in `lctl get_param -n osc.*.cur_grant_bytes`; do
2917                 client_grant=$((client_grant + $d))
2918         done
2919         server_grant=0
2920         for d in `lctl get_param -n obdfilter.*.tot_granted`; do
2921                 server_grant=$((server_grant + $d))
2922         done
2923
2924         # cleanup the check_grant file
2925         for i in `seq $OSTCOUNT`; do
2926                 rm $DIR1/${tfile}_check_grant_$i
2927         done
2928
2929         #check whether client grant == server grant
2930         if [ $client_grant != $server_grant ]; then
2931                 echo "failed: client:${client_grant} server: ${server_grant}"
2932                 return 1
2933         else
2934                 echo "pass"
2935         fi
2936 }
2937
2938 ########################
2939 # helper functions
2940
2941 osc_to_ost()
2942 {
2943     osc=$1
2944     ost=`echo $1 | awk -F_ '{print $3}'`
2945     if [ -z $ost ]; then
2946         ost=`echo $1 | sed 's/-osc.*//'`
2947     fi
2948     echo $ost
2949 }
2950
2951 remote_node () {
2952     local node=$1
2953     [ "$node" != "$(hostname)" ]
2954 }
2955
2956 remote_mds ()
2957 {
2958     local node
2959     for node in $(mdts_nodes); do
2960         remote_node $node && return 0
2961     done
2962     return 1
2963 }
2964
2965 remote_mds_nodsh()
2966 {
2967     [ "$CLIENTONLY" ] && return 0 || true
2968     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
2969 }
2970
2971 require_dsh_mds()
2972 {
2973         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
2974             MSKIPPED=1 && return 1
2975         return 0
2976 }
2977
2978 remote_ost ()
2979 {
2980     local node
2981     for node in $(osts_nodes) ; do
2982         remote_node $node && return 0
2983     done
2984     return 1
2985 }
2986
2987 remote_ost_nodsh()
2988 {
2989     [ "$CLIENTONLY" ] && return 0 || true 
2990     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
2991 }
2992
2993 require_dsh_ost()
2994 {
2995         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
2996             OSKIPPED=1 && return 1
2997         return 0
2998 }
2999
3000 remote_mgs_nodsh()
3001 {
3002     local MGS 
3003     MGS=$(facet_host mgs)
3004     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
3005 }
3006
3007 local_mode ()
3008 {
3009     remote_mds_nodsh || remote_ost_nodsh || \
3010         $(single_local_node $(comma_list $(nodes_list)))
3011 }
3012
3013 mdts_nodes () {
3014     local MDSNODES
3015     local NODES_sort
3016     for num in `seq $MDSCOUNT`; do
3017         MDSNODES="$MDSNODES $(facet_host mds$num)"
3018     done
3019     NODES_sort=$(for i in $MDSNODES; do echo $i; done | sort -u)
3020
3021     echo $NODES_sort
3022 }
3023
3024 remote_servers () {
3025     remote_ost && remote_mds
3026 }
3027
3028 osts_nodes () {
3029     local OSTNODES=$(facet_host ost1)
3030     local NODES_sort
3031
3032     for num in `seq $OSTCOUNT`; do
3033         local myOST=$(facet_host ost$num)
3034         OSTNODES="$OSTNODES $myOST"
3035     done
3036     NODES_sort=$(for i in $OSTNODES; do echo $i; done | sort -u)
3037
3038     echo $NODES_sort
3039 }
3040
3041 nodes_list () {
3042     # FIXME. We need a list of clients
3043     local myNODES=$HOSTNAME
3044     local myNODES_sort
3045
3046     # CLIENTS (if specified) contains the local client
3047     [ -n "$CLIENTS" ] && myNODES=${CLIENTS//,/ }
3048
3049     if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
3050         myNODES="$myNODES $(osts_nodes) $(mdts_nodes)"
3051     fi
3052
3053     myNODES_sort=$(for i in $myNODES; do echo $i; done | sort -u)
3054
3055     echo $myNODES_sort
3056 }
3057
3058 remote_nodes_list () {
3059     local rnodes=$(nodes_list)
3060     rnodes=$(echo " $rnodes " | sed -re "s/\s+$HOSTNAME\s+/ /g")
3061     echo $rnodes
3062 }
3063
3064 init_clients_lists () {
3065     # Sanity check: exclude the local client from RCLIENTS
3066     local rclients=$(echo " $RCLIENTS " | sed -re "s/\s+$HOSTNAME\s+/ /g")
3067
3068     # Sanity check: exclude the dup entries
3069     rclients=$(for i in $rclients; do echo $i; done | sort -u)
3070
3071     local clients="$SINGLECLIENT $HOSTNAME $rclients"
3072
3073     # Sanity check: exclude the dup entries from CLIENTS
3074     # for those configs which has SINGLCLIENT set to local client
3075     clients=$(for i in $clients; do echo $i; done | sort -u)
3076
3077     CLIENTS=`comma_list $clients`
3078     local -a remoteclients=($rclients)
3079     for ((i=0; $i<${#remoteclients[@]}; i++)); do
3080             varname=CLIENT$((i + 2))
3081             eval $varname=${remoteclients[i]}
3082     done
3083
3084     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
3085 }
3086
3087 get_random_entry () {
3088     local rnodes=$1
3089
3090     rnodes=${rnodes//,/ }
3091
3092     local -a nodes=($rnodes)
3093     local num=${#nodes[@]} 
3094     local i=$((RANDOM * num * 2 / 65536))
3095
3096     echo ${nodes[i]}
3097 }
3098
3099 client_only () {
3100     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
3101 }
3102
3103 is_patchless ()
3104 {
3105     lctl get_param version | grep -q patchless
3106 }
3107
3108 check_versions () {
3109     [ "$MDSVER" = "$CLIVER" -a "$OSTVER" = "$CLIVER" ]
3110 }
3111
3112 get_node_count() {
3113     local nodes="$@"
3114     echo $nodes | wc -w || true
3115 }
3116
3117 mixed_ost_devs () {
3118     local nodes=$(osts_nodes)
3119     local osscount=$(get_node_count "$nodes")
3120     [ ! "$OSTCOUNT" = "$osscount" ]
3121 }
3122
3123 mixed_mdt_devs () {
3124     local nodes=$(mdts_nodes)
3125     local mdtcount=$(get_node_count "$nodes")
3126     [ ! "$MDSCOUNT" = "$mdtcount" ]
3127 }
3128
3129 generate_machine_file() {
3130     local nodes=${1//,/ }
3131     local machinefile=$2
3132     rm -f $machinefile
3133     for node in $nodes; do
3134         echo $node >>$machinefile || \
3135             { echo "can not generate machinefile $machinefile" && return 1; }
3136     done
3137 }
3138
3139 get_stripe () {
3140     local file=$1/stripe
3141     touch $file
3142     $LFS getstripe -v $file || error
3143     rm -f $file
3144 }
3145
3146 setstripe_nfsserver () {
3147     local dir=$1
3148
3149     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
3150                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
3151
3152     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
3153
3154     do_nodev $nfsserver lfs setstripe "$@"
3155 }
3156
3157 check_runas_id_ret() {
3158     local myRC=0
3159     local myRUNAS_UID=$1
3160     local myRUNAS_GID=$2
3161     shift 2
3162     local myRUNAS=$@
3163     if [ -z "$myRUNAS" ]; then
3164         error_exit "myRUNAS command must be specified for check_runas_id"
3165     fi
3166     if $GSS_KRB5; then
3167         $myRUNAS krb5_login.sh || \
3168             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
3169     fi
3170     mkdir $DIR/d0_runas_test
3171     chmod 0755 $DIR
3172     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
3173     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
3174     rm -rf $DIR/d0_runas_test
3175     return $myRC
3176 }
3177
3178 check_runas_id() {
3179     local myRUNAS_UID=$1
3180     local myRUNAS_GID=$2
3181     shift 2
3182     local myRUNAS=$@
3183     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
3184         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
3185         Please set RUNAS_ID to some UID which exists on MDS and client or
3186         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
3187 }
3188
3189 # obtain the UID/GID for MPI_USER
3190 get_mpiuser_id() {
3191     local mpi_user=$1
3192
3193     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
3194 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
3195
3196     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
3197 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
3198 }
3199
3200 # obtain and cache Kerberos ticket-granting ticket
3201 refresh_krb5_tgt() {
3202     local myRUNAS_UID=$1
3203     local myRUNAS_GID=$2
3204     shift 2
3205     local myRUNAS=$@
3206     if [ -z "$myRUNAS" ]; then
3207         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
3208     fi
3209
3210     CLIENTS=${CLIENTS:-$HOSTNAME}
3211     do_nodes $CLIENTS "set -x
3212 if ! $myRUNAS krb5_login.sh; then
3213     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
3214     exit 1
3215 fi"
3216 }
3217
3218 # Run multiop in the background, but wait for it to print
3219 # "PAUSING" to its stdout before returning from this function.
3220 multiop_bg_pause() {
3221     MULTIOP_PROG=${MULTIOP_PROG:-multiop}
3222     FILE=$1
3223     ARGS=$2
3224
3225     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
3226     mkfifo $TMPPIPE
3227
3228     echo "$MULTIOP_PROG $FILE v$ARGS"
3229     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
3230
3231     echo "TMPPIPE=${TMPPIPE}"
3232     read -t 60 multiop_output < $TMPPIPE
3233     if [ $? -ne 0 ]; then
3234         rm -f $TMPPIPE
3235         return 1
3236     fi
3237     rm -f $TMPPIPE
3238     if [ "$multiop_output" != "PAUSING" ]; then
3239         echo "Incorrect multiop output: $multiop_output"
3240         kill -9 $PID
3241         return 1
3242     fi
3243
3244     return 0
3245 }
3246
3247 do_and_time () {
3248     local cmd=$1
3249     local rc
3250
3251     SECONDS=0
3252     eval '$cmd'
3253     
3254     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
3255
3256     echo $SECONDS
3257     return $rc
3258 }
3259
3260 inodes_available () {
3261     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
3262     echo $IFree
3263 }
3264
3265 mdsrate_inodes_available () {
3266     echo $(($(inodes_available) - 1))
3267 }
3268
3269 # reset llite stat counters
3270 clear_llite_stats(){
3271         lctl set_param -n llite.*.stats 0
3272 }
3273
3274 # sum llite stat items
3275 calc_llite_stats() {
3276         local res=$(lctl get_param -n llite.*.stats |
3277                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
3278         echo $res
3279 }
3280
3281 # reset osc stat counters
3282 clear_osc_stats(){
3283         lctl set_param -n osc.*.osc_stats 0
3284 }
3285
3286 # sum osc stat items
3287 calc_osc_stats() {
3288         local res=$(lctl get_param -n osc.*.osc_stats |
3289                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
3290         echo $res
3291 }
3292
3293 calc_sum () {
3294         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
3295 }
3296
3297 calc_osc_kbytes () {
3298         df $MOUNT > /dev/null
3299         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
3300 }
3301
3302 # save_lustre_params(node, parameter_mask)
3303 # generate a stream of formatted strings (<node> <param name>=<param value>)
3304 save_lustre_params() {
3305         local s
3306         do_nodesv $1 "lctl get_param $2 | while read s; do echo \\\$s; done"
3307 }
3308
3309 # restore lustre parameters from input stream, produces by save_lustre_params
3310 restore_lustre_params() {
3311         local node
3312         local name
3313         local val
3314         while IFS=" =" read node name val; do
3315                 do_node ${node//:/} "lctl set_param -n $name $val"
3316         done
3317 }
3318
3319 check_catastrophe() {
3320     local rnodes=${1:-$(comma_list $(remote_nodes_list))}
3321     local C=$CATASTROPHE
3322     [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
3323
3324     if [ $rnodes ]; then
3325         do_nodes $rnodes "rc=\\\$([ -f $C ] && echo \\\$(< $C) || echo 0);
3326 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
3327 exit \\\$rc;"
3328     fi 
3329 }
3330
3331 # $1 node
3332 # $2 file
3333 # $3 $RUNAS
3334 get_stripe_info() {
3335         local tmp_file
3336
3337         stripe_size=0
3338         stripe_count=0
3339         stripe_index=0
3340         tmp_file=$(mktemp)
3341
3342         do_facet $1 $3 lfs getstripe -v $2 > $tmp_file
3343
3344         stripe_size=`awk '$1 ~ /size/ {print $2}' $tmp_file`
3345         stripe_count=`awk '$1 ~ /count/ {print $2}' $tmp_file`
3346         stripe_index=`awk '$1 ~ /stripe_offset/ {print $2}' $tmp_file`
3347         rm -f $tmp_file
3348 }
3349
3350 # CMD: determine mds index where directory inode presents
3351 get_mds_dir () {
3352     local dir=$1
3353     local file=$dir/f0.get_mds_dir_tmpfile
3354
3355     mkdir -p $dir
3356     rm -f $file
3357     sleep 1
3358     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3359     local -a oldused=($iused)
3360
3361     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
3362     sleep 1
3363     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3364     local -a newused=($iused)
3365
3366     local num=0
3367     for ((i=0; i<${#newused[@]}; i++)); do
3368          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
3369              echo $(( i + 1 ))
3370              rm -f $file
3371              return 0
3372          fi
3373     done
3374     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
3375 }
3376
3377 mdsrate_cleanup () {
3378     if [ -d $4 ]; then
3379         mpi_run -np $1 -machinefile $2 ${MDSRATE} --unlink --nfiles $3 --dir $4 --filefmt $5 $6
3380         rmdir $4
3381     fi
3382 }
3383
3384 delayed_recovery_enabled () {
3385     local var=${SINGLEMDS}_svc
3386     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
3387 }
3388
3389 ########################
3390
3391 convert_facet2label() { 
3392     local facet=$1
3393
3394     if [ x$facet = xost ]; then
3395        facet=ost1
3396     fi
3397
3398     local varsvc=${facet}_svc
3399
3400     if [ -n ${!varsvc} ]; then
3401         echo ${!varsvc}
3402     else  
3403         error "No lablel for $facet!"
3404     fi
3405 }
3406
3407 get_clientosc_proc_path() {
3408     local ost=$1
3409
3410     echo "{$1}-osc-*"
3411 }
3412
3413 get_lustre_version () {
3414     local facet=${1:-"$SINGLEMDS"}    
3415     do_facet $facet $LCTL get_param -n version |  awk '/^lustre:/ {print $2}'
3416 }
3417
3418 get_mds_version_major () {
3419     local facet=${1:-"$SINGLEMDS"}
3420     local version=$(get_lustre_version $facet)
3421     echo $version | awk -F. '{print $1}'
3422 }
3423
3424 get_mds_version_minor () {
3425     local facet=${1:-"$SINGLEMDS"}
3426     local version=$(get_lustre_version $facet)
3427     echo $version | awk -F. '{print $2}'
3428 }
3429
3430 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
3431 # used by MDT would not be changed.
3432 # mdt lov: fsname-mdtlov
3433 # mdt osc: fsname-OSTXXXX-osc
3434 mds_on_old_device() {
3435     local mds=${1:-"$SINGLEMDS"}
3436     local major=$(get_mds_version_major $mds)
3437     local minor=$(get_mds_version_minor $mds)
3438
3439     if [ $major -ge 2 ] || [ $major -eq 1 -a $minor -gt 8 ]; then
3440         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
3441             > /dev/null 2>&1" && return 0
3442     fi
3443     return 1
3444 }
3445
3446 get_mdtosc_proc_path() {
3447     local mds_facet=$1
3448     local ost_label=${2:-"*OST*"}
3449
3450     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
3451     local mdt_label=$(convert_facet2label $mds_facet)
3452     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
3453
3454     local major=$(get_mds_version_major $mds_facet)
3455     local minor=$(get_mds_version_minor $mds_facet)
3456     if [ $major -le 1 -a $minor -le 8 ] || mds_on_old_device $mds_facet; then
3457         echo "${ost_label}-osc"
3458     else
3459         echo "${ost_label}-osc-${mdt_index}"
3460     fi
3461 }
3462
3463 get_osc_import_name() {
3464     local facet=$1
3465     local ost=$2
3466     local label=$(convert_facet2label $ost)
3467
3468     if [ "${facet:0:3}" = "mds" ]; then
3469         get_mdtosc_proc_path $facet $label
3470         return 0
3471     fi
3472
3473     get_clientosc_proc_path $label
3474     return 0
3475 }
3476
3477 wait_import_state () {
3478     local expected=$1
3479     local CONN_PROC=$2
3480     local CONN_STATE
3481     local i=0
3482
3483     CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3484     while [ "${CONN_STATE}" != "${expected}" ]; do
3485         if [ "${expected}" == "DISCONN" ]; then
3486             # for disconn we can check after proc entry is removed
3487             [ "x${CONN_STATE}" == "x" ] && return 0
3488             #  with AT we can have connect request timeout ~ reconnect timeout
3489             # and test can't see real disconnect
3490             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
3491         fi
3492         # disconnect rpc should be wait not more obd_timeout
3493         [ $i -ge $(($TIMEOUT * 3 / 2)) ] && \
3494             error "can't put import for $CONN_PROC into ${expected} state" && return 1
3495         sleep 1
3496         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3497         i=$(($i + 1))
3498     done
3499
3500     log "$CONN_PROC now in ${CONN_STATE} state"
3501     return 0
3502 }
3503
3504 wait_osc_import_state() {
3505     local facet=$1
3506     local ost_facet=$2
3507     local expected=$3
3508     local ost=$(get_osc_import_name $facet $ost_facet)
3509     local CONN_PROC
3510     local CONN_STATE
3511     local i=0
3512
3513     CONN_PROC="osc.${ost}.ost_server_uuid"
3514     CONN_STATE=$(do_facet $facet lctl get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3515     while [ "${CONN_STATE}" != "${expected}" ]; do
3516         if [ "${expected}" == "DISCONN" ]; then 
3517             # for disconn we can check after proc entry is removed
3518             [ "x${CONN_STATE}" == "x" ] && return 0
3519             #  with AT we can have connect request timeout ~ reconnect timeout
3520             # and test can't see real disconnect
3521             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
3522         fi
3523         # disconnect rpc should be wait not more obd_timeout
3524         [ $i -ge $(($TIMEOUT * 3 / 2)) ] && \
3525             error "can't put import for ${ost}(${ost_facet}) into ${expected} state" && return 1
3526         sleep 1
3527         CONN_STATE=$(do_facet $facet lctl get_param -n $CONN_PROC 2>/dev/null | cut -f2)
3528         i=$(($i + 1))
3529     done
3530
3531     log "${ost_facet} now in ${CONN_STATE} state"
3532     return 0
3533 }
3534 get_clientmdc_proc_path() {
3535     echo "${1}-mdc-*"
3536 }
3537
3538 do_rpc_nodes () {
3539     local list=$1
3540     shift
3541
3542     # Add paths to lustre tests for 32 and 64 bit systems.
3543     local RPATH="$RLUSTRE/tests:/usr/lib/lustre/tests:/usr/lib64/lustre/tests:$PATH"
3544     do_nodesv $list "PATH=$RPATH sh rpc.sh $@ "
3545 }
3546
3547 wait_clients_import_state () {
3548     local list=$1
3549     local facet=$2
3550     local expected=$3
3551     shift
3552
3553     local label=$(convert_facet2label $facet)
3554     local proc_path
3555     case $facet in
3556         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
3557         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
3558         *) error "unknown facet!" ;;
3559     esac
3560
3561     if ! do_rpc_nodes $list wait_import_state $expected $proc_path; then
3562         error "import is not in ${expected} state"
3563         return 1
3564     fi
3565 }
3566
3567 oos_full() {
3568         local -a AVAILA
3569         local -a GRANTA
3570         local OSCFULL=1
3571         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
3572                   $LCTL get_param obdfilter.*.kbytesavail))
3573         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
3574                   $LCTL get_param -n obdfilter.*.tot_granted))
3575         for ((i=0; i<${#AVAILA[@]}; i++)); do
3576                 local -a AVAIL1=(${AVAILA[$i]//=/ })
3577                 GRANT=$((${GRANTA[$i]}/1024))
3578                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} grnt=$GRANT diff=$((AVAIL1[1] - GRANT))
3579                 [ $((AVAIL1[1] - GRANT)) -lt 400 ] && OSCFULL=0 && echo " FULL" || echo
3580         done
3581         return $OSCFULL
3582 }
3583
3584 pool_list () {
3585    do_facet mgs lctl pool_list $1
3586 }
3587
3588 create_pool() {
3589     local fsname=${1%%.*}
3590     local poolname=${1##$fsname.}
3591
3592     do_facet mgs lctl pool_new $1
3593     local RC=$?
3594     # get param should return err unless pool is created
3595     [[ $RC -ne 0 ]] && return $RC
3596
3597     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
3598         2>/dev/null || echo foo" "" || RC=1
3599     if [[ $RC -eq 0 ]]; then
3600         add_pool_to_list $1
3601     else
3602         error "pool_new failed $1"
3603     fi
3604     return $RC
3605 }
3606
3607 add_pool_to_list () {
3608     local fsname=${1%%.*}
3609     local poolname=${1##$fsname.}
3610
3611     local listvar=${fsname}_CREATED_POOLS
3612     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
3613 }
3614
3615 remove_pool_from_list () {
3616     local fsname=${1%%.*}
3617     local poolname=${1##$fsname.}
3618
3619     local listvar=${fsname}_CREATED_POOLS
3620     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
3621 }
3622
3623 destroy_pool_int() {
3624     local ost
3625     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
3626         awk '$1 !~ /^Pool:/ {print $1}')
3627     for ost in $OSTS; do
3628         do_facet mgs lctl pool_remove $1 $ost
3629     done
3630     do_facet mgs lctl pool_destroy $1
3631 }
3632
3633 # <fsname>.<poolname> or <poolname>
3634 destroy_pool() {
3635     local fsname=${1%%.*}
3636     local poolname=${1##$fsname.}
3637
3638     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
3639
3640     local RC
3641
3642     pool_list $fsname.$poolname || return $?
3643
3644     destroy_pool_int $fsname.$poolname
3645     RC=$?
3646     [[ $RC -ne 0 ]] && return $RC
3647
3648     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
3649       2>/dev/null || echo foo" "foo" || RC=1
3650
3651     if [[ $RC -eq 0 ]]; then
3652         remove_pool_from_list $fsname.$poolname
3653     else
3654         error "destroy pool failed $1"
3655     fi
3656     return $RC
3657 }
3658
3659 destroy_pools () {
3660     local fsname=${1:-$FSNAME}
3661     local poolname
3662     local listvar=${fsname}_CREATED_POOLS
3663
3664     pool_list $fsname
3665
3666     [ x${!listvar} = x ] && return 0
3667
3668     echo destroy the created pools: ${!listvar}
3669     for poolname in ${!listvar//,/ }; do
3670         destroy_pool $fsname.$poolname 
3671     done
3672 }
3673
3674 cleanup_pools () {
3675     local fsname=${1:-$FSNAME}
3676     trap 0
3677     destroy_pools $fsname
3678 }
3679
3680 gather_logs () {
3681     local list=$1
3682
3683     local ts=$(date +%s)
3684
3685     # bug 20237, comment 11
3686     # It would also be useful to provide the option
3687     # of writing the file to an NFS directory so it doesn't need to be copied.
3688     local tmp=$TMP
3689     local docp=true
3690     [ -f $LOGDIR/shared ] && docp=false
3691  
3692     # dump lustre logs, dmesg
3693
3694     prefix="$LOGDIR/${TESTSUITE}.${TESTNAME}"
3695     suffix="$ts.log"
3696     echo "Dumping lctl log to ${prefix}.*.${suffix}"
3697
3698     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
3699         echo "Dumping logs only on local client."
3700         $LCTL dk > ${prefix}.debug_log.$(hostname).${suffix}
3701         dmesg > ${prefix}.dmesg.$(hostname).${suffix}
3702         return
3703     fi
3704
3705     do_nodesv $list \
3706         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname).${suffix};
3707          dmesg > ${prefix}.dmesg.\\\$(hostname).${suffix}"
3708     if [ ! -f $LOGDIR/shared ]; then
3709         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
3710       fi
3711
3712     local archive=$LOGDIR/${TESTSUITE}-$ts.tar.bz2
3713     tar -jcf $archive $LOGDIR/*$ts* $LOGDIR/*${TESTSUITE}*
3714
3715     echo $archive
3716 }
3717
3718 cleanup_logs () {
3719     local list=${1:-$(comma_list $(nodes_list))}
3720
3721     [ -n ${TESTSUITE} ] && do_nodes $list "rm -f $TMP/*${TESTSUITE}*" || true
3722 }
3723
3724 do_ls () {
3725     local mntpt_root=$1
3726     local num_mntpts=$2
3727     local dir=$3
3728     local i
3729     local cmd
3730     local pids
3731     local rc=0
3732
3733     for i in $(seq 0 $num_mntpts); do
3734         cmd="ls -laf ${mntpt_root}$i/$dir"
3735         echo + $cmd;
3736         $cmd > /dev/null &
3737         pids="$pids $!"
3738     done
3739     echo pids=$pids
3740     for pid in $pids; do
3741         wait $pid || rc=$?
3742     done
3743
3744     return $rc
3745 }
3746
3747 # target_start_and_reset_recovery_timer()
3748 #        service_time = at_est2timeout(service_time);
3749 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
3750 #                             INITIAL_CONNECT_TIMEOUT);
3751 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
3752 #define CONNECTION_SWITCH_INC 1
3753 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
3754 #define CONNECTION_SWITCH_MIN 5U
3755
3756 max_recovery_time () {
3757     local init_connect_timeout=$(( TIMEOUT / 20 ))
3758     [[ $init_connect_timeout > 5 ]] || init_connect_timeout=5 
3759
3760     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
3761
3762     echo $service_time 
3763 }
3764
3765 get_clients_mount_count () {
3766     local clients=${CLIENTS:-`hostname`}
3767
3768     # we need to take into account the clients mounts and
3769     # exclude mds/ost mounts if any;
3770     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
3771 }
3772
3773 # gss functions
3774 PROC_CLI="srpc_info"
3775
3776 combination()
3777 {
3778     local M=$1
3779     local N=$2
3780     local R=1
3781
3782     if [ $M -lt $N ]; then
3783         R=0
3784     else
3785         N=$((N + 1))
3786         while [ $N -lt $M ]; do
3787             R=$((R * N))
3788             N=$((N + 1))
3789         done
3790     fi
3791
3792     echo $R
3793     return 0
3794 }
3795
3796 calc_connection_cnt() {
3797     local dir=$1
3798
3799     # MDT->MDT = 2 * C(M, 2)
3800     # MDT->OST = M * O
3801     # CLI->OST = C * O
3802     # CLI->MDT = C * M
3803     comb_m2=$(combination $MDSCOUNT 2)
3804
3805     local num_clients=$(get_clients_mount_count)
3806
3807     local cnt_mdt2mdt=$((comb_m2 * 2))
3808     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
3809     local cnt_cli2ost=$((num_clients * OSTCOUNT))
3810     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
3811     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
3812     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
3813     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
3814
3815     local var=cnt_$dir
3816     local res=${!var}
3817
3818     echo $res
3819 }
3820
3821 set_rule()
3822 {
3823     local tgt=$1
3824     local net=$2
3825     local dir=$3
3826     local flavor=$4
3827     local cmd="$tgt.srpc.flavor"
3828
3829     if [ $net == "any" ]; then
3830         net="default"
3831     fi
3832     cmd="$cmd.$net"
3833
3834     if [ $dir != "any" ]; then
3835         cmd="$cmd.$dir"
3836     fi
3837
3838     cmd="$cmd=$flavor"
3839     log "Setting sptlrpc rule: $cmd"
3840     do_facet mgs "$LCTL conf_param $cmd"
3841 }
3842
3843 count_flvr()
3844 {
3845     local output=$1
3846     local flavor=$2
3847     local count=0
3848
3849     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
3850     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
3851
3852     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
3853
3854     if [ "x$bulkspec" != "x" ]; then
3855         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
3856
3857         if [ "x$algs" != "x" ]; then
3858             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
3859         else
3860             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
3861             if [ $bulk == "bulkn" ]; then
3862                 bulk_count=`echo "$output" | grep "bulk flavor" \
3863                             | grep "null/null" | wc -l`
3864             elif [ $bulk == "bulki" ]; then
3865                 bulk_count=`echo "$output" | grep "bulk flavor" \
3866                             | grep "/null" | grep -v "null/" | wc -l`
3867             else
3868                 bulk_count=`echo "$output" | grep "bulk flavor" \
3869                             | grep -v "/null" | grep -v "null/" | wc -l`
3870             fi
3871         fi
3872
3873         [ $bulk_count -lt $count ] && count=$bulk_count
3874     fi
3875
3876     echo $count
3877 }
3878
3879 flvr_cnt_cli2mdt()
3880 {
3881     local flavor=$1
3882     local cnt
3883
3884     local clients=${CLIENTS:-`hostname`}
3885
3886     for c in ${clients//,/ }; do
3887         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
3888         tmpcnt=`count_flvr "$output" $flavor`
3889         cnt=$((cnt + tmpcnt))
3890     done
3891     echo $cnt
3892 }
3893
3894 flvr_cnt_cli2ost()
3895 {
3896     local flavor=$1
3897     local cnt
3898
3899     local clients=${CLIENTS:-`hostname`}
3900
3901     for c in ${clients//,/ }; do
3902         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
3903         tmpcnt=`count_flvr "$output" $flavor`
3904         cnt=$((cnt + tmpcnt))
3905     done
3906     echo $cnt
3907 }
3908
3909 flvr_cnt_mdt2mdt()
3910 {
3911     local flavor=$1
3912     local cnt=0
3913
3914     if [ $MDSCOUNT -le 1 ]; then
3915         echo 0
3916         return
3917     fi
3918
3919     for num in `seq $MDSCOUNT`; do
3920         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
3921         tmpcnt=`count_flvr "$output" $flavor`
3922         cnt=$((cnt + tmpcnt))
3923     done
3924     echo $cnt;
3925 }
3926
3927 flvr_cnt_mdt2ost()
3928 {
3929     local flavor=$1
3930     local cnt=0
3931     local mdtosc
3932
3933     for num in `seq $MDSCOUNT`; do
3934         mdtosc=$(get_mdtosc_proc_path mds$num)
3935         mdtosc=${mdtosc/-MDT*/-MDT\*}
3936         output=$(do_facet mds$num lctl get_param -n \
3937             osc.$mdtosc.$PROC_CLI 2>/dev/null)
3938         tmpcnt=`count_flvr "$output" $flavor`
3939         cnt=$((cnt + tmpcnt))
3940     done
3941     echo $cnt;
3942 }
3943
3944 flvr_cnt_mgc2mgs()
3945 {
3946     local flavor=$1
3947
3948     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
3949     count_flvr "$output" $flavor
3950 }
3951
3952 do_check_flavor()
3953 {
3954     local dir=$1        # from to
3955     local flavor=$2     # flavor expected
3956     local res=0
3957
3958     if [ $dir == "cli2mdt" ]; then
3959         res=`flvr_cnt_cli2mdt $flavor`
3960     elif [ $dir == "cli2ost" ]; then
3961         res=`flvr_cnt_cli2ost $flavor`
3962     elif [ $dir == "mdt2mdt" ]; then
3963         res=`flvr_cnt_mdt2mdt $flavor`
3964     elif [ $dir == "mdt2ost" ]; then
3965         res=`flvr_cnt_mdt2ost $flavor`
3966     elif [ $dir == "all2ost" ]; then
3967         res1=`flvr_cnt_mdt2ost $flavor`
3968         res2=`flvr_cnt_cli2ost $flavor`
3969         res=$((res1 + res2))
3970     elif [ $dir == "all2mdt" ]; then
3971         res1=`flvr_cnt_mdt2mdt $flavor`
3972         res2=`flvr_cnt_cli2mdt $flavor`
3973         res=$((res1 + res2))
3974     elif [ $dir == "all2all" ]; then
3975         res1=`flvr_cnt_mdt2ost $flavor`
3976         res2=`flvr_cnt_cli2ost $flavor`
3977         res3=`flvr_cnt_mdt2mdt $flavor`
3978         res4=`flvr_cnt_cli2mdt $flavor`
3979         res=$((res1 + res2 + res3 + res4))
3980     fi
3981
3982     echo $res
3983 }
3984
3985 wait_flavor()
3986 {
3987     local dir=$1        # from to
3988     local flavor=$2     # flavor expected
3989     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
3990
3991     local res=0
3992
3993     for ((i=0;i<20;i++)); do
3994         echo -n "checking..."
3995         res=$(do_check_flavor $dir $flavor)
3996         if [ $res -eq $expect ]; then
3997             echo "found $res $flavor connections of $dir, OK"
3998             return 0
3999         else
4000             echo "found $res $flavor connections of $dir, not ready ($expect)"
4001             return 0
4002             sleep 4
4003         fi
4004     done
4005
4006     echo "Error checking $flavor of $dir: expect $expect, actual $res"
4007     return 1
4008 }
4009
4010 restore_to_default_flavor()
4011 {
4012     local proc="mgs.MGS.live.$FSNAME"
4013
4014     echo "restoring to default flavor..."
4015
4016     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
4017
4018     # remove all existing rules if any
4019     if [ $nrule -ne 0 ]; then
4020         echo "$nrule existing rules"
4021         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
4022             echo "remove rule: $rule"
4023             spec=`echo $rule | awk -F = '{print $1}'`
4024             do_facet mgs "$LCTL conf_param $spec="
4025         done
4026     fi
4027
4028     # verify no rules left
4029     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
4030     [ $nrule -ne 0 ] && error "still $nrule rules left"
4031
4032     # wait for default flavor to be applied
4033     # currently default flavor for all connections are 'null'
4034     wait_flavor all2all null
4035     echo "now at default flavor settings"
4036 }
4037
4038 set_flavor_all()
4039 {
4040     local flavor=${1:-null}
4041
4042     echo "setting all flavor to $flavor"
4043
4044     # FIXME need parameter to this fn
4045     # and remove global vars
4046     local cnt_all2all=$(calc_connection_cnt all2all)
4047
4048     local res=$(do_check_flavor all2all $flavor)
4049     if [ $res -eq $cnt_all2all ]; then
4050         echo "already have total $res $flavor connections"
4051         return
4052     fi
4053
4054     echo "found $res $flavor out of total $cnt_all2all connections"
4055     restore_to_default_flavor
4056
4057     [[ $flavor = null ]] && return 0
4058
4059     set_rule $FSNAME any any $flavor
4060     wait_flavor all2all $flavor
4061 }
4062
4063
4064 check_logdir() {
4065     local dir=$1
4066     # Checking for shared logdir
4067     if [ ! -d $dir ]; then
4068         # Not found. Create local logdir
4069         mkdir -p $dir
4070     else
4071         touch $dir/node.$(hostname).yml
4072     fi
4073     return 0
4074 }
4075
4076 check_write_access() {
4077     local dir=$1
4078     for node in $(nodes_list); do
4079         if [ ! -f "$dir/node.${node}.yml" ]; then
4080             # Logdir not accessible/writable from this node.
4081             return 1
4082         fi
4083     done
4084     return 0
4085 }
4086
4087 init_logging() {
4088     if [[ -n $YAML_LOG ]]; then
4089         return
4090     fi
4091     export YAML_LOG=${LOGDIR}/results.yml
4092     mkdir -p $LOGDIR
4093     init_clients_lists
4094
4095     do_rpc_nodes $(comma_list $(nodes_list)) check_logdir $LOGDIR
4096     if check_write_access $LOGDIR; then
4097         touch $LOGDIR/shared
4098         echo "Logging to shared log directory: $LOGDIR"
4099     else
4100         echo "Logging to local directory: $LOGDIR"
4101     fi
4102
4103     yml_nodes_file $LOGDIR
4104     yml_results_file >> $YAML_LOG
4105 }
4106
4107 log_test() {
4108     yml_log_test $1 >> $YAML_LOG
4109 }
4110
4111 log_test_status() {
4112      yml_log_test_status $@ >> $YAML_LOG
4113 }
4114
4115 log_sub_test_begin() {
4116     yml_log_sub_test_begin $@ >> $YAML_LOG
4117 }
4118
4119 log_sub_test_end() {
4120     yml_log_sub_test_end $@ >> $YAML_LOG
4121 }
4122
4123 run_llverdev()
4124 {
4125         local dev=$1
4126         local devname=$(basename $1)
4127         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
4128         # loop devices aren't in /proc/partitions
4129         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
4130
4131         size=$(($size / 1024 / 1024)) # Gb
4132
4133         local partial_arg=""
4134         # Run in partial (fast) mode if the size
4135         # of a partition > 10 GB
4136         [ $size -gt 10 ] && partial_arg="-p"
4137
4138         llverdev --force $partial_arg $dev
4139 }
4140
4141 remove_mdt_files() {
4142     local facet=$1
4143     local mdtdev=$2
4144     shift 2
4145     local files="$@"
4146     local mntpt=${MOUNT%/*}/$facet
4147
4148     echo "removing files from $mdtdev on $facet: $files"
4149     mount -t $FSTYPE $MDS_MOUNT_OPTS $mdtdev $mntpt || return $?
4150     rc=0;
4151     for f in $files; do
4152         rm $mntpt/ROOT/$f || { rc=$?; break; }
4153     done
4154     umount -f $mntpt || return $?
4155     return $rc
4156 }
4157
4158 duplicate_mdt_files() {
4159     local facet=$1
4160     local mdtdev=$2
4161     shift 2
4162     local files="$@"
4163     local mntpt=${MOUNT%/*}/$facet
4164
4165     echo "duplicating files on $mdtdev on $facet: $files"
4166     mkdir -p $mntpt || return $?
4167     mount -t $FSTYPE $MDS_MOUNT_OPTS $mdtdev $mntpt || return $?
4168
4169     do_umount() {
4170         trap 0
4171         popd > /dev/null
4172         rm $tmp
4173         umount -f $mntpt
4174     }
4175     trap do_umount EXIT
4176
4177     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
4178     pushd $mntpt/ROOT > /dev/null || return $?
4179     rc=0
4180     for f in $files; do
4181         touch $f.bad || return $?
4182         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
4183         rc=${PIPESTATUS[0]}
4184         [ $rc -eq 0 ] || return $rc
4185         setfattr --restore $tmp || return $?
4186     done
4187     do_umount
4188 }