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