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