Whamcloud - gitweb
b=19612
[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 && echo "test-framework exiting on error"' ERR
5 set -e
6 #set -x
7
8
9 export REFORMAT=${REFORMAT:-""}
10 export WRITECONF=${WRITECONF:-""}
11 export VERBOSE=false
12 export GMNALNID=${GMNALNID:-/usr/sbin/gmlndnid}
13 export CATASTROPHE=${CATASTROPHE:-/proc/sys/lnet/catastrophe}
14 export GSS=false
15 export GSS_KRB5=false
16 export GSS_PIPEFS=false
17 export IDENTITY_UPCALL=default
18
19 #export PDSH="pdsh -S -Rssh -w"
20
21 # function used by scripts run on remote nodes
22 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
23 . $LUSTRE/tests/functions.sh
24
25 assert_DIR () {
26     local failed=""
27     [[ $DIR/ = $MOUNT/* ]] || \
28         { failed=1 && echo "DIR=$DIR not in $MOUNT. Aborting."; }
29     [[ $DIR1/ = $MOUNT1/* ]] || \
30         { failed=1 && echo "DIR1=$DIR1 not in $MOUNT1. Aborting."; }
31     [[ $DIR2/ = $MOUNT2/* ]] || \
32         { failed=1 && echo "DIR2=$DIR2 not in $MOUNT2. Aborting"; }
33
34     [ -n "$failed" ] && exit 99 || true
35 }
36
37 usage() {
38     echo "usage: $0 [-r] [-f cfgfile]"
39     echo "       -r: reformat"
40
41     exit
42 }
43
44 print_summary () {
45     [ "$TESTSUITE" == "lfscktest" ] && return 0
46     [ -n "$ONLY" ] && echo "WARNING: ONLY is set to ${ONLY}."
47     local form="%-13s %-17s %s\n"
48     printf "$form" "status" "script" "skipped tests E(xcluded) S(low)"
49     echo "------------------------------------------------------------------------------------"
50     for O in $TESTSUITE_LIST; do
51         local skipped=""
52         local slow=""
53         local o=$(echo $O | tr "[:upper:]" "[:lower:]")
54         o=${o//_/-}
55         o=${o//tyn/tyN}
56         local log=${TMP}/${o}.log
57         [ -f $log ] && skipped=$(grep excluded $log | awk '{ printf " %s", $3 }' | sed 's/test_//g')
58         [ -f $log ] && slow=$(grep SLOW $log | awk '{ printf " %s", $3 }' | sed 's/test_//g')
59         [ "${!O}" = "done" ] && \
60             printf "$form" "Done" "$O" "E=$skipped" && \
61             [ -n "$slow" ] && printf "$form" "-" "-" "S=$slow"
62
63     done
64
65     for O in $TESTSUITE_LIST; do
66         [ "${!O}" = "no" ] && \
67             printf "$form" "Skipped" "$O" ""
68     done
69
70     for O in $TESTSUITE_LIST; do
71         [ "${!O}" = "done" -o "${!O}" = "no" ] || \
72             printf "$form" "UNFINISHED" "$O" ""
73     done
74 }
75
76 init_test_env() {
77     export LUSTRE=`absolute_path $LUSTRE`
78     export TESTSUITE=`basename $0 .sh`
79     export TEST_FAILED=false
80
81     export MKE2FS=${MKE2FS:-mke2fs}
82     export DEBUGFS=${DEBUGFS:-debugfs}
83     export TUNE2FS=${TUNE2FS:-tune2fs}
84     export E2LABEL=${E2LABEL:-e2label}
85     export DUMPE2FS=${DUMPE2FS:-dumpe2fs}
86     export E2FSCK=${E2FSCK:-e2fsck}
87
88     #[ -d /r ] && export ROOT=${ROOT:-/r}
89     export TMP=${TMP:-$ROOT/tmp}
90     export TESTSUITELOG=${TMP}/${TESTSUITE}.log
91     export HOSTNAME=${HOSTNAME:-`hostname`}
92     if ! echo $PATH | grep -q $LUSTRE/utils; then
93         export PATH=$PATH:$LUSTRE/utils
94     fi
95     if ! echo $PATH | grep -q $LUSTRE/utils/gss; then
96         export PATH=$PATH:$LUSTRE/utils/gss
97     fi
98     if ! echo $PATH | grep -q $LUSTRE/tests; then
99         export PATH=$PATH:$LUSTRE/tests
100     fi
101     export MDSRATE=${MDSRATE:-"$LUSTRE/tests/mpi/mdsrate"}
102     [ ! -f "$MDSRATE" ] && export MDSRATE=$(which mdsrate 2> /dev/null)
103     if ! echo $PATH | grep -q $LUSTRE/tests/racer; then
104         export PATH=$PATH:$LUSTRE/tests/racer
105     fi
106     if ! echo $PATH | grep -q $LUSTRE/tests/mpi; then
107         export PATH=$PATH:$LUSTRE/tests/mpi
108     fi
109     export LCTL=${LCTL:-"$LUSTRE/utils/lctl"}
110     [ ! -f "$LCTL" ] && export LCTL=$(which lctl)
111     export LFS=${LFS:-"$LUSTRE/utils/lfs"}
112     [ ! -f "$LFS" ] && export LFS=$(which lfs)
113     export L_GETIDENTITY=${L_GETIDENTITY:-"$LUSTRE/utils/l_getidentity"}
114     if [ ! -f "$L_GETIDENTITY" ]; then
115         if `which l_getidentity > /dev/null 2>&1`; then
116             export L_GETIDENTITY=$(which l_getidentity)
117         else
118             export L_GETIDENTITY=NONE
119         fi
120     fi
121     export MKFS=${MKFS:-"$LUSTRE/utils/mkfs.lustre"}
122     [ ! -f "$MKFS" ] && export MKFS=$(which mkfs.lustre)
123     export TUNEFS=${TUNEFS:-"$LUSTRE/utils/tunefs.lustre"}
124     [ ! -f "$TUNEFS" ] && export TUNEFS=$(which tunefs.lustre)
125     export CHECKSTAT="${CHECKSTAT:-"checkstat -v"} "
126     export FSTYPE=${FSTYPE:-"ldiskfs"}
127     export NAME=${NAME:-local}
128     export LGSSD=${LGSSD:-"$LUSTRE/utils/gss/lgssd"}
129     [ "$GSS_PIPEFS" = "true" ] && [ ! -f "$LGSSD" ] && \
130         export LGSSD=$(which lgssd)
131     export LSVCGSSD=${LSVCGSSD:-"$LUSTRE/utils/gss/lsvcgssd"}
132     [ ! -f "$LSVCGSSD" ] && export LSVCGSSD=$(which lsvcgssd 2> /dev/null)
133     export KRB5DIR=${KRB5DIR:-"/usr/kerberos"}
134     export DIR2
135     export SAVE_PWD=${SAVE_PWD:-$LUSTRE/tests}
136     export AT_MAX_PATH
137
138     if [ "$ACCEPTOR_PORT" ]; then
139         export PORT_OPT="--port $ACCEPTOR_PORT"
140     fi
141
142     case "x$SEC" in
143         xkrb5*)
144             echo "Using GSS/krb5 ptlrpc security flavor"
145             which lgss_keyring > /dev/null 2>&1 || \
146                 error "built with gss disabled! SEC=$SEC"
147             GSS=true
148             GSS_KRB5=true
149             ;;
150     esac
151
152     case "x$IDUP" in
153         xtrue)
154             IDENTITY_UPCALL=true
155             ;;
156         xfalse)
157             IDENTITY_UPCALL=false
158             ;;
159     esac
160
161     # Paths on remote nodes, if different
162     export RLUSTRE=${RLUSTRE:-$LUSTRE}
163     export RPWD=${RPWD:-$PWD}
164     export I_MOUNTED=${I_MOUNTED:-"no"}
165
166     # command line
167
168     while getopts "rvwf:" opt $*; do
169         case $opt in
170             f) CONFIG=$OPTARG;;
171             r) REFORMAT=--reformat;;
172             v) VERBOSE=true;;
173             w) WRITECONF=writeconf;;
174             \?) usage;;
175         esac
176     done
177
178     shift $((OPTIND - 1))
179     ONLY=${ONLY:-$*}
180
181     [ "$TESTSUITELOG" ] && rm -f $TESTSUITELOG || true
182     rm -f $TMP/*active
183
184 }
185
186 case `uname -r` in
187 2.4.*) EXT=".o"; USE_QUOTA=no; [ ! "$CLIENTONLY" ] && FSTYPE=ext3;;
188     *) EXT=".ko"; USE_QUOTA=yes;;
189 esac
190
191 load_module() {
192     EXT=".ko"
193     module=$1
194     shift
195     BASE=`basename $module $EXT`
196     lsmod | grep -q ${BASE} || \
197       if [ -f ${LUSTRE}/${module}${EXT} ]; then
198         insmod ${LUSTRE}/${module}${EXT} $@
199     else
200         # must be testing a "make install" or "rpm" installation
201         # note failed to load ptlrpc_gss is considered not fatal
202         if [ "$BASE" == "ptlrpc_gss" ]; then
203             modprobe $BASE $@ 2>/dev/null || echo "gss/krb5 is not supported"
204         else
205             modprobe $BASE $@
206         fi
207     fi
208 }
209
210 load_modules() {
211     if [ -n "$MODPROBE" ]; then
212         # use modprobe
213     return 0
214     fi
215     if [ "$HAVE_MODULES" = true ]; then
216     # we already loaded
217         return 0
218     fi
219     HAVE_MODULES=true
220
221     echo Loading modules from $LUSTRE
222     load_module ../libcfs/libcfs/libcfs
223     [ "$PTLDEBUG" ] && lctl set_param debug="$PTLDEBUG"
224     [ "$SUBSYSTEM" ] && lctl set_param subsystem_debug="${SUBSYSTEM# }"
225     local MODPROBECONF=
226     [ -f /etc/modprobe.conf ] && MODPROBECONF=/etc/modprobe.conf
227     [ ! "$MODPROBECONF" -a -d /etc/modprobe.d ] && MODPROBECONF=/etc/modprobe.d/Lustre
228     [ -z "$LNETOPTS" -a "$MODPROBECONF" ] && \
229         LNETOPTS=$(awk '/^options lnet/ { print $0}' $MODPROBECONF | sed 's/^options lnet //g')
230     echo $LNETOPTS | grep -q "accept=all"  || LNETOPTS="$LNETOPTS accept=all";
231     echo "lnet options: '$LNETOPTS'"
232     # note that insmod will ignore anything in modprobe.conf
233     load_module ../lnet/lnet/lnet $LNETOPTS
234     LNETLND=${LNETLND:-"socklnd/ksocklnd"}
235     load_module ../lnet/klnds/$LNETLND
236     load_module lvfs/lvfs
237     load_module obdclass/obdclass
238     load_module ptlrpc/ptlrpc
239     load_module ptlrpc/gss/ptlrpc_gss
240     [ "$USE_QUOTA" = "yes" -a "$LQUOTA" != "no" ] && load_module quota/lquota
241     load_module fld/fld
242     load_module fid/fid
243     load_module lmv/lmv
244     load_module mdc/mdc
245     load_module osc/osc
246     load_module lov/lov
247     load_module mgc/mgc
248     if [ -z "$CLIENTONLY" ] && [ -z "$CLIENTMODSONLY" ]; then
249         grep -q crc16 /proc/kallsyms || { modprobe crc16 2>/dev/null || true; }
250         grep -q jbd /proc/kallsyms || { modprobe jbd 2>/dev/null || true; }
251         [ "$FSTYPE" = "ldiskfs" ] && load_module ../ldiskfs/ldiskfs/ldiskfs
252         load_module mgs/mgs
253         load_module mds/mds
254         load_module mdd/mdd
255         load_module mdt/mdt
256         load_module lvfs/fsfilt_$FSTYPE
257         load_module cmm/cmm
258         load_module osd/osd
259         load_module ost/ost
260         load_module obdfilter/obdfilter
261     fi
262
263     load_module llite/lustre
264     load_module llite/llite_lloop
265     [ -d /r ] && OGDB=${OGDB:-"/r/tmp"}
266     OGDB=${OGDB:-$TMP}
267     rm -f $OGDB/ogdb-$HOSTNAME
268     $LCTL modules > $OGDB/ogdb-$HOSTNAME
269
270     # 'mount' doesn't look in $PATH, just sbin
271     [ -f $LUSTRE/utils/mount.lustre ] && cp $LUSTRE/utils/mount.lustre /sbin/. || true
272 }
273
274 RMMOD=rmmod
275 if [ `uname -r | cut -c 3` -eq 4 ]; then
276     RMMOD="modprobe -r"
277 fi
278
279 wait_for_lnet() {
280     local UNLOADED=0
281     local WAIT=0
282     local MAX=60
283     MODULES=$($LCTL modules | awk '{ print $2 }')
284     while [ -n "$MODULES" ]; do
285     sleep 5
286     $RMMOD $MODULES > /dev/null 2>&1 || true
287     MODULES=$($LCTL modules | awk '{ print $2 }')
288         if [ -z "$MODULES" ]; then
289         return 0
290         else
291             WAIT=$((WAIT + 5))
292             echo "waiting, $((MAX - WAIT)) secs left"
293         fi
294         if [ $WAIT -eq $MAX ]; then
295             echo "LNET modules $MODULES will not unload"
296         lsmod
297             return 3
298         fi
299     done
300 }
301
302 unload_dep_module() {
303     #lsmod output
304     #libcfs                107852  17 llite_lloop,lustre,obdfilter,ost,...
305     local MODULE=$1
306     local DEPS=$(lsmod | awk '($1 == "'$MODULE'") { print $4 }' | tr ',' ' ')
307     for SUBMOD in $DEPS; do
308         unload_dep_module $SUBMOD
309     done
310     [ "$MODULE" = "libcfs" ] && $LCTL dk $TMP/debug || true
311     $RMMOD $MODULE || true
312 }
313
314 check_mem_leak () {
315     LEAK_LUSTRE=$(dmesg | tail -n 30 | grep "obd_memory.*leaked" || true)
316     LEAK_PORTALS=$(dmesg | tail -n 20 | grep "Portals memory leaked" || true)
317     if [ "$LEAK_LUSTRE" -o "$LEAK_PORTALS" ]; then
318         echo "$LEAK_LUSTRE" 1>&2
319         echo "$LEAK_PORTALS" 1>&2
320         mv $TMP/debug $TMP/debug-leak.`date +%s` || true
321         echo "Memory leaks detected"
322         [ -n "$IGNORE_LEAK" ] && { echo "ignoring leaks" && return 0; } || true
323         return 1
324     fi
325 }
326
327 unload_modules() {
328     wait_exit_ST client # bug 12845
329
330     lsmod | grep libcfs > /dev/null && $LCTL dl
331     unload_dep_module $FSTYPE
332     unload_dep_module libcfs
333
334     local MODULES=$($LCTL modules | awk '{ print $2 }')
335     if [ -n "$MODULES" ]; then
336         echo "Modules still loaded: "
337         echo $MODULES
338         if [ "$(lctl dl)" ]; then
339             echo "Lustre still loaded"
340             lctl dl || true
341             lsmod
342             return 2
343         else
344             echo "Lustre stopped but LNET is still loaded, waiting..."
345             wait_for_lnet || return 3
346         fi
347
348     fi
349     HAVE_MODULES=false
350
351     check_mem_leak || return 254
352
353     echo "modules unloaded."
354     return 0
355 }
356
357 check_gss_daemon_facet() {
358     facet=$1
359     dname=$2
360
361     num=`do_facet $facet ps -o cmd -C $dname | grep $dname | wc -l`
362     if [ $num -ne 1 ]; then
363         echo "$num instance of $dname on $facet"
364         return 1
365     fi
366     return 0
367 }
368
369 send_sigint() {
370     local facet=$1
371     shift
372     do_facet $facet "killall -2 $@ 2>/dev/null || true"
373 }
374
375 start_gss_daemons() {
376     # starting on MDT
377     for num in `seq $MDSCOUNT`; do
378         do_facet mds$num "$LSVCGSSD -v"
379         if $GSS_PIPEFS; then
380             do_facet mds$num "$LGSSD -v"
381         fi
382     done
383     # starting on OSTs
384     for num in `seq $OSTCOUNT`; do
385         do_facet ost$num "$LSVCGSSD -v"
386     done
387     # starting on client
388     # FIXME: is "client" the right facet name?
389     if $GSS_PIPEFS; then
390         do_facet client "$LGSSD -v"
391     fi
392
393     # wait daemons entering "stable" status
394     sleep 5
395
396     #
397     # check daemons are running
398     #
399     for num in `seq $MDSCOUNT`; do
400         check_gss_daemon_facet mds$num lsvcgssd
401         if $GSS_PIPEFS; then
402             check_gss_daemon_facet mds$num lgssd
403         fi
404     done
405     for num in `seq $OSTCOUNT`; do
406         check_gss_daemon_facet ost$num lsvcgssd
407     done
408     if $GSS_PIPEFS; then
409         check_gss_daemon_facet client lgssd
410     fi
411 }
412
413 stop_gss_daemons() {
414     for num in `seq $MDSCOUNT`; do
415         send_sigint mds$num lsvcgssd lgssd
416     done
417     for num in `seq $OSTCOUNT`; do
418         send_sigint ost$num lsvcgssd
419     done
420     send_sigint client lgssd
421 }
422
423 init_gss() {
424     if $GSS; then
425         start_gss_daemons
426
427         if [ -n "$LGSS_KEYRING_DEBUG" ]; then
428             echo $LGSS_KEYRING_DEBUG > /proc/fs/lustre/sptlrpc/gss/lgss_keyring/debug_level
429         fi
430     fi
431 }
432
433 cleanup_gss() {
434     if $GSS; then
435         stop_gss_daemons
436         # maybe cleanup credential cache?
437     fi
438 }
439
440 mdsdevlabel() {
441     local num=$1
442     local device=`mdsdevname $num`
443     local label=`do_facet mds$num "e2label ${device}" | grep -v "CMD: "`
444     echo -n $label
445 }
446
447 ostdevlabel() {
448     local num=$1
449     local device=`ostdevname $num`
450     local label=`do_facet ost$num "e2label ${device}" | grep -v "CMD: "`
451     echo -n $label
452 }
453
454 # Facet functions
455 mount_facet() {
456     local facet=$1
457     shift
458     local dev=$(facet_active $facet)_dev
459     local opt=${facet}_opt
460     echo "Starting ${facet}: ${!opt} $@ ${!dev} ${MOUNT%/*}/${facet}"
461     do_facet ${facet} mount -t lustre ${!opt} $@ ${!dev} ${MOUNT%/*}/${facet}
462     RC=${PIPESTATUS[0]}
463     if [ $RC -ne 0 ]; then
464         echo "mount -t lustre $@ ${!dev} ${MOUNT%/*}/${facet}"
465         echo "Start of ${!dev} on ${facet} failed ${RC}"
466     else
467         do_facet ${facet} "lctl set_param debug=\\\"$PTLDEBUG\\\"; \
468             lctl set_param subsystem_debug=\\\"${SUBSYSTEM# }\\\"; \
469             lctl set_param debug_mb=${DEBUG_SIZE}; \
470             sync"
471
472         label=$(do_facet ${facet} "$E2LABEL ${!dev}")
473         [ -z "$label" ] && echo no label for ${!dev} && exit 1
474         eval export ${facet}_svc=${label}
475         echo Started ${label}
476     fi
477     return $RC
478 }
479
480 # start facet device options
481 start() {
482     local facet=$1
483     shift
484     local device=$1
485     shift
486     eval export ${facet}_dev=${device}
487     eval export ${facet}_opt=\"$@\"
488
489     local varname=${facet}failover_dev
490     if [ -n "${!varname}" ] ; then
491         eval export ${facet}failover_dev=${!varname}
492     else
493         eval export ${facet}failover_dev=$device
494     fi
495
496     do_facet ${facet} mkdir -p ${MOUNT%/*}/${facet}
497     mount_facet ${facet}
498     RC=$?
499     return $RC
500 }
501
502 stop() {
503     local running
504     local facet=$1
505     shift
506     HOST=`facet_active_host $facet`
507     [ -z $HOST ] && echo stop: no host for $facet && return 0
508
509     running=$(do_facet ${facet} "grep -c ${MOUNT%/*}/${facet}' ' /proc/mounts") || true
510     if [ ${running} -ne 0 ]; then
511         echo "Stopping ${MOUNT%/*}/${facet} (opts:$@)"
512         do_facet ${facet} umount -d $@ ${MOUNT%/*}/${facet}
513     fi
514
515     # umount should block, but we should wait for unrelated obd's
516     # like the MGS or MGC to also stop.
517     wait_exit_ST ${facet}
518 }
519
520 # save quota version (both administrative and operational quotas)
521 # add an additional parameter if mountpoint is ever different from $MOUNT
522 quota_save_version() {
523     local fsname=${2:-$FSNAME}
524
525     $LFS quotaoff -ug $MOUNT # just in case
526     [ -n "$1" ] && { $LFS quotacheck -$1 $MOUNT || error "quotacheck has failed"; }
527
528     do_facet mgs "lctl conf_param ${fsname}-MDT*.mdd.quota_type=$1"
529     local varsvc
530     local osts=$(get_facets OST)
531     for ost in ${osts//,/ }; do
532         varsvc=${ost}_svc
533         do_facet mgs "lctl conf_param ${!varsvc}.ost.quota_type=$1"
534     done
535 }
536
537 # client could mount several lustre 
538 quota_type () {
539     local fsname=${1:-$FSNAME}
540     local rc=0
541     do_facet mgs lctl get_param mdd.${fsname}-MDT*.quota_type || rc=$?
542     do_nodes $(comma_list $(osts_nodes)) \
543         lctl get_param obdfilter.${fsname}-OST*.quota_type || rc=$?
544     return $rc 
545 }
546
547 restore_quota_type () {
548    local mntpt=${1:-$MOUNT}
549    local quota_type=$(quota_type $FSNAME | grep MDT | cut -d "=" -f2)
550    if [ ! "$old_QUOTA_TYPE" ] || [ "$quota_type" = "$old_QUOTA_TYPE" ]; then
551         return
552    fi
553    quota_save_version $old_QUOTA_TYPE
554 }
555
556 setup_quota(){
557     local mntpt=$1
558
559     # We need:
560     # 1. run quotacheck only if quota is off
561     # 2. save the original quota_type params, restore them after testing
562
563     # Suppose that quota type the same on mds and ost
564     local quota_type=$(quota_type | grep MDT | cut -d "=" -f2)
565     [ ${PIPESTATUS[0]} -eq 0 ] || error "quota_type failed!"
566     if [ "$quota_type" != "$QUOTA_TYPE" ]; then
567         export old_QUOTA_TYPE=$quota_type
568         quota_save_version $QUOTA_TYPE
569     fi
570
571     local quota_usrs=$QUOTA_USERS
572
573     # get_filesystem_size
574     local disksz=$(lfs df $mntpt | grep "filesystem summary:"  | awk '{print $3}')
575     local blk_soft=$((disksz + 1024))
576     local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
577
578     local Inodes=$(lfs df -i $mntpt | grep "filesystem summary:"  | awk '{print $3}')
579     local i_soft=$Inodes
580     local i_hard=$((i_soft + i_soft / 20))
581
582     echo "Total disk size: $disksz  block-softlimit: $blk_soft block-hardlimit:
583         $blk_hard inode-softlimit: $i_soft inode-hardlimit: $i_hard"
584
585     local cmd
586     for usr in $quota_usrs; do
587         echo "Setting up quota on $client:$mntpt for $usr..."
588         for type in u g; do
589             cmd="$LFS setquota -$type $usr -b $blk_soft -B $blk_hard -i $i_soft -I $i_hard $mntpt"
590             echo "+ $cmd"
591             eval $cmd || error "$cmd FAILED!"
592         done
593         # display the quota status
594         echo "Quota settings for $usr : "
595         $LFS quota -v -u $usr $mntpt || true
596     done
597 }
598
599 zconf_mount() {
600     local OPTIONS
601     local client=$1
602     local mnt=$2
603     # Only supply -o to mount if we have options
604     if [ -n "$MOUNTOPT" ]; then
605         OPTIONS="-o $MOUNTOPT"
606     fi
607     local device=$MGSNID:/$FSNAME
608     if [ -z "$mnt" -o -z "$FSNAME" ]; then
609         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
610         exit 1
611     fi
612
613     echo "Starting client: $client: $OPTIONS $device $mnt"
614     do_node $client mkdir -p $mnt
615     do_node $client mount -t lustre $OPTIONS $device $mnt || return 1
616
617     do_node $client "lctl set_param debug=\\\"$PTLDEBUG\\\";
618         lctl set_param subsystem_debug=\\\"${SUBSYSTEM# }\\\";
619         lctl set_param debug_mb=${DEBUG_SIZE}"
620
621     return 0
622 }
623
624 zconf_umount() {
625     local client=$1
626     local mnt=$2
627     local force
628     local busy 
629     local need_kill
630
631     [ "$3" ] && force=-f
632     local running=$(do_node $client "grep -c $mnt' ' /proc/mounts") || true
633     if [ $running -ne 0 ]; then
634         echo "Stopping client $client $mnt (opts:$force)"
635         do_node $client lsof -t $mnt || need_kill=no
636         if [ "x$force" != "x" -a "x$need_kill" != "xno" ]; then
637             pids=$(do_node $client lsof -t $mnt | sort -u);
638             if [ -n $pids ]; then
639                 do_node $client kill -9 $pids || true
640             fi
641         fi
642
643         busy=$(do_node $client "umount $force $mnt 2>&1" | grep -c "busy") || true
644         if [ $busy -ne 0 ] ; then
645             echo "$mnt is still busy, wait one second" && sleep 1
646             do_node $client umount $force $mnt
647         fi
648     fi
649 }
650
651 # nodes is comma list
652 sanity_mount_check_nodes () {
653     local nodes=$1
654     shift
655     local mnts="$@"
656     local mnt
657
658     # FIXME: assume that all cluster nodes run the same os
659     [ "$(uname)" = Linux ] || return 0
660
661     local rc=0
662     for mnt in $mnts ; do
663         do_nodes $nodes "set -x; running=\\\$(grep -c $mnt' ' /proc/mounts);
664 mpts=\\\$(mount | grep -w -c $mnt);
665 if [ \\\$running -ne \\\$mpts ]; then
666     echo \\\$(hostname) env are INSANE!;
667     exit 1;
668 fi"
669     [ $? -eq 0 ] || rc=1 
670     done
671     return $rc
672 }
673
674 sanity_mount_check_servers () {
675     echo Checking servers environments
676
677     # FIXME: modify get_facets to display all facets wo params
678     local facets="$(get_facets OST),$(get_facets MDS)"
679     local node
680     local mnt
681     local facet
682     for facet in ${facets//,/ }; do
683         node=$(facet_host ${facet})
684         mnt=${MOUNT%/*}/${facet}
685         sanity_mount_check_nodes $node $mnt ||
686             { error "server $node environments are insane!"; return 1; }
687     done
688 }
689
690 sanity_mount_check_clients () {
691     local clients=${1:-$CLIENTS}
692     local mntpt=${2:-$MOUNT}
693     local mntpt2=${3:-$MOUNT2}
694
695     [ -z $clients ] && clients=$(hostname)
696     echo Checking clients $clients environments
697
698     sanity_mount_check_nodes $clients $mntpt $mntpt2 ||
699        error "clients environments are insane!"
700 }
701
702 sanity_mount_check () {
703     sanity_mount_check_servers || return 1
704     sanity_mount_check_clients || return 2
705 }
706
707 # mount clients if not mouted
708 zconf_mount_clients() {
709     local OPTIONS
710     local clients=$1
711     local mnt=$2
712
713
714     # Only supply -o to mount if we have options
715     if [ -n "$MOUNTOPT" ]; then
716         OPTIONS="-o $MOUNTOPT"
717     fi
718     local device=$MGSNID:/$FSNAME
719     if [ -z "$mnt" -o -z "$FSNAME" ]; then
720         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
721         exit 1
722     fi
723
724     echo "Starting client $clients: $OPTIONS $device $mnt"
725
726     do_nodes $clients "set -x;
727 running=\\\$(mount | grep -c $mnt' ');
728 rc=0;
729 if [ \\\$running -eq 0 ] ; then
730     mkdir -p $mnt;
731     mount -t lustre $OPTIONS $device $mnt;
732     rc=$?;
733 fi;
734 exit $rc"
735
736     echo "Started clients $clients: "
737     do_nodes $clients "mount | grep -w $mnt"
738
739     do_nodes $clients "lctl set_param debug=\\\"$PTLDEBUG\\\";
740         lctl set_param subsystem_debug=\\\"${SUBSYSTEM# }\\\";
741         lctl set_param debug_mb=${DEBUG_SIZE};"
742
743     return 0
744 }
745
746 zconf_umount_clients() {
747     local clients=$1
748     local mnt=$2
749     local force
750
751     [ "$3" ] && force=-f
752
753     echo "Stopping clients: $clients $mnt (opts:$force)"
754     do_nodes $clients "set -x; running=\\\$(grep -c $mnt' ' /proc/mounts);
755 if [ \\\$running -ne 0 ] ; then
756 echo Stopping client \\\$(hostname) client $mnt opts:$force;
757 lsof -t $mnt || need_kill=no;
758 if [ "x$force" != "x" -a "x\\\$need_kill" != "xno" ]; then
759     pids=\\\$(lsof -t $mnt | sort -u);
760     if [ -n \\\"\\\$pids\\\" ]; then
761              kill -9 \\\$pids;
762     fi
763 fi;
764 busy=\\\$(umount $force $mnt 2>&1 | grep -c "busy");
765 if [ \\\$busy -ne 0 ] ; then
766     echo "$mnt is still busy, wait one second" && sleep 1;
767     umount $force $mnt;
768 fi
769 fi"
770 }
771
772 shudown_node_hard () {
773     local host=$1
774     local attempts=3
775
776     for i in $(seq $attempts) ; do
777         $POWER_DOWN $host
778         sleep 1
779         ping -w 3 -c 1 $host > /dev/null 2>&1 || return 0
780         echo "waiting for $host to fail attempts=$attempts"
781         [ $i -lt $attempts ] || \
782             { echo "$host still pingable after power down! attempts=$attempts" && return 1; } 
783     done
784 }
785
786 shutdown_client() {
787     local client=$1
788     local mnt=${2:-$MOUNT}
789     local attempts=3
790
791     if [ "$FAILURE_MODE" = HARD ]; then
792         shudown_node_hard $client 
793     else
794        zconf_umount_clients $client $mnt -f
795     fi
796 }
797
798 shutdown_facet() {
799     local facet=$1
800     if [ "$FAILURE_MODE" = HARD ]; then
801         shudown_node_hard $(facet_active_host $facet)
802     elif [ "$FAILURE_MODE" = SOFT ]; then
803         stop $facet
804     fi
805 }
806
807 reboot_facet() {
808     facet=$1
809     if [ "$FAILURE_MODE" = HARD ]; then
810         $POWER_UP `facet_active_host $facet`
811     else
812         sleep 10
813     fi
814 }
815
816 boot_node() {
817     local node=$1
818     if [ "$FAILURE_MODE" = HARD ]; then
819        $POWER_UP $node
820     fi
821 }
822
823 # recovery-scale functions
824 check_progs_installed () {
825     local clients=$1
826     shift
827     local progs=$@
828
829     do_nodes $clients "set -x ; PATH=:$PATH status=true; for prog in $progs; do
830         which \\\$prog || { echo \\\$prog missing on \\\$(hostname) && status=false; }
831         done;
832         eval \\\$status"
833 }
834
835 client_var_name() {
836     echo __$(echo $1 | tr '-' 'X')
837 }
838
839 start_client_load() {
840     local client=$1
841     local load=$2
842     local var=$(client_var_name $client)_load
843     eval export ${var}=$load
844
845     do_node $client "PATH=$PATH MOUNT=$MOUNT ERRORS_OK=$ERRORS_OK \
846                               BREAK_ON_ERROR=$BREAK_ON_ERROR \
847                               END_RUN_FILE=$END_RUN_FILE \
848                               LOAD_PID_FILE=$LOAD_PID_FILE \
849                               TESTSUITELOG=$TESTSUITELOG \
850                               run_${load}.sh" &
851     CLIENT_LOAD_PIDS="$CLIENT_LOAD_PIDS $!"
852     log "Started client load: ${load} on $client"
853
854     return 0
855 }
856
857 start_client_loads () {
858     local -a clients=(${1//,/ })
859     local numloads=${#CLIENT_LOADS[@]}
860     local testnum
861
862     for ((nodenum=0; nodenum < ${#clients[@]}; nodenum++ )); do
863         testnum=$((nodenum % numloads))
864         start_client_load ${clients[nodenum]} ${CLIENT_LOADS[testnum]}
865     done
866 }
867
868 # only for remote client 
869 check_client_load () {
870     local client=$1
871     local var=$(client_var_name $client)_load
872     local TESTLOAD=run_${!var}.sh
873
874     ps auxww | grep -v grep | grep $client | grep -q "$TESTLOAD" || return 1
875
876     check_catastrophe $client || return 2
877
878     # see if the load is still on the client
879     local tries=3
880     local RC=254
881     while [ $RC = 254 -a $tries -gt 0 ]; do
882         let tries=$tries-1
883         # assume success
884         RC=0
885         if ! do_node $client "ps auxwww | grep -v grep | grep -q $TESTLOAD"; then
886             RC=${PIPESTATUS[0]}
887             sleep 30
888         fi
889     done
890     if [ $RC = 254 ]; then
891         echo "got a return status of $RC from do_node while checking (i.e. with 'ps') the client load on the remote system"
892         # see if we can diagnose a bit why this is
893     fi
894
895     return $RC
896 }
897 check_client_loads () {
898    local clients=${1//,/ }
899    local client=
900    local rc=0
901
902    for client in $clients; do
903       check_client_load $client
904       rc=${PIPESTATUS[0]}
905       if [ "$rc" != 0 ]; then
906         log "Client load failed on node $client, rc=$rc"
907         return $rc
908       fi
909    done
910 }
911
912 restart_client_loads () {
913     local clients=${1//,/ }
914     local expectedfail=${2:-""}
915     local client=
916     local rc=0
917
918     for client in $clients; do
919         check_client_load $client
920         rc=${PIPESTATUS[0]}
921         if [ "$rc" != 0 -a "$expectedfail" ]; then
922             start_client_load $client
923             echo "Restarted client load: on $client. Checking ..."
924             check_client_load $client 
925             rc=${PIPESTATUS[0]}
926             if [ "$rc" != 0 ]; then
927                 log "Client load failed to restart on node $client, rc=$rc"
928                 # failure one client load means test fail
929                 # we do not need to check other 
930                 return $rc
931             fi
932         else
933             return $rc
934         fi
935     done
936 }
937 # End recovery-scale functions
938
939 # verify that lustre actually cleaned up properly
940 cleanup_check() {
941     [ -f $CATASTROPHE ] && [ `cat $CATASTROPHE` -ne 0 ] && \
942         error "LBUG/LASSERT detected"
943     BUSY=`dmesg | grep -i destruct || true`
944     if [ "$BUSY" ]; then
945         echo "$BUSY" 1>&2
946         [ -e $TMP/debug ] && mv $TMP/debug $TMP/debug-busy.`date +%s`
947         exit 205
948     fi
949
950     check_mem_leak || exit 204
951
952     [ "`lctl dl 2> /dev/null | wc -l`" -gt 0 ] && lctl dl && \
953         echo "$0: lustre didn't clean up..." 1>&2 && return 202 || true
954
955     if [ "`/sbin/lsmod 2>&1 | egrep 'lnet|libcfs'`" ]; then
956         echo "$0: modules still loaded..." 1>&2
957         /sbin/lsmod 1>&2
958         return 203
959     fi
960     return 0
961 }
962
963 wait_update () {
964     local node=$1
965     local TEST=$2
966     local FINAL=$3
967     local MAX=${4:-90}
968
969         local RESULT
970         local WAIT=0
971         local sleep=5
972         while [ true ]; do
973             RESULT=$(do_node $node "$TEST")
974             if [ "$RESULT" == "$FINAL" ]; then
975                 echo "Updated after $WAIT sec: wanted '$FINAL' got '$RESULT'"
976                 return 0
977             fi
978             [ $WAIT -ge $MAX ] && break
979             echo "Waiting $((MAX - WAIT)) secs for update"
980             WAIT=$((WAIT + sleep))
981             sleep $sleep
982         done
983         echo "Update not seen after $MAX sec: wanted '$FINAL' got '$RESULT'"
984         return 3
985 }
986
987 wait_update_facet () {
988     local facet=$1
989     wait_update  $(facet_active_host $facet) "$@"
990 }
991
992 wait_delete_completed () {
993     local TOTALPREV=`lctl get_param -n osc.*.kbytesavail | \
994                      awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
995
996     local WAIT=0
997     local MAX_WAIT=20
998     while [ "$WAIT" -ne "$MAX_WAIT" ]; do
999         sleep 1
1000         TOTAL=`lctl get_param -n osc.*.kbytesavail | \
1001                awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1002         [ "$TOTAL" -eq "$TOTALPREV" ] && break
1003         echo "Waiting delete completed ... prev: $TOTALPREV current: $TOTAL "
1004         TOTALPREV=$TOTAL
1005         WAIT=$(( WAIT + 1))
1006     done
1007     echo "Delete completed."
1008 }
1009
1010 wait_for_host() {
1011     local host=$1
1012     check_network "$host" 900
1013     while ! do_node $host "ls -d $LUSTRE " > /dev/null; do sleep 5; done
1014 }
1015
1016 wait_for() {
1017     local facet=$1
1018     local host=`facet_active_host $facet`
1019     wait_for_host $host
1020 }
1021
1022 wait_recovery_complete () {
1023     local facet=$1
1024
1025     # Use default policy if $2 is not passed by caller. 
1026     #define OBD_RECOVERY_TIMEOUT (obd_timeout * 5 / 2)
1027     # as we are in process of changing obd_timeout in different ways
1028     # let's set MAX longer than that
1029     local MAX=${2:-$(( TIMEOUT * 4 ))}
1030  
1031     local var_svc=${facet}_svc
1032     local procfile="*.${!var_svc}.recovery_status"
1033     local WAIT=0
1034     local STATUS=
1035
1036     while [ $WAIT -lt $MAX ]; do
1037         STATUS=$(do_facet $facet lctl get_param -n $procfile | grep status)
1038         [[ $STATUS = "status: COMPLETE" ]] && return 0
1039         sleep 5
1040         WAIT=$((WAIT + 5))
1041         echo "Waiting $((MAX - WAIT)) secs for $facet recovery done. $STATUS"
1042     done
1043     echo "$facet recovery not done in $MAX sec. $STATUS"
1044     return 1
1045 }
1046
1047 wait_exit_ST () {
1048     local facet=$1
1049
1050     local WAIT=0
1051     local INTERVAL=1
1052     local running
1053     # conf-sanity 31 takes a long time cleanup
1054     while [ $WAIT -lt 300 ]; do
1055         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
1056         [ -z "${running}" ] && return 0
1057         echo "waited $WAIT for${running}"
1058         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
1059         sleep $INTERVAL
1060         WAIT=$((WAIT + INTERVAL))
1061     done
1062     echo "service didn't stop after $WAIT seconds.  Still running:"
1063     echo ${running}
1064     return 1
1065 }
1066
1067 wait_remote_prog () {
1068    local prog=$1
1069    local WAIT=0
1070    local INTERVAL=5
1071    local rc=0
1072
1073    [ "$PDSH" = "no_dsh" ] && return 0
1074
1075    while [ $WAIT -lt $2 ]; do
1076         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
1077         [ -z "${running}" ] && return 0 || true
1078         echo "waited $WAIT for: "
1079         echo "$running"
1080         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
1081         sleep $INTERVAL
1082         WAIT=$((WAIT + INTERVAL))
1083     done
1084     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
1085     [ -z "$pids" ] && return 0
1086     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
1087     # FIXME: not portable
1088     for pid in $pids; do
1089         cat /proc/${pid}/status || true
1090         cat /proc/${pid}/wchan || true
1091         echo "Killing $pid"
1092         kill -9 $pid || true
1093         sleep 1
1094         ps -P $pid && rc=1
1095     done
1096
1097     return $rc
1098 }
1099
1100 client_df() {
1101     # not every config has many clients
1102     if [ ! -z "$CLIENTS" ]; then
1103         $PDSH $CLIENTS "df $MOUNT" > /dev/null
1104     else
1105         df $MOUNT > /dev/null
1106     fi
1107 }
1108
1109 client_reconnect() {
1110     uname -n >> $MOUNT/recon
1111     if [ -z "$CLIENTS" ]; then
1112         df $MOUNT; uname -n >> $MOUNT/recon
1113     else
1114         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
1115     fi
1116     echo Connected clients:
1117     cat $MOUNT/recon
1118     ls -l $MOUNT/recon > /dev/null
1119     rm $MOUNT/recon
1120 }
1121
1122 facet_failover() {
1123     local facet=$1
1124     local sleep_time=$2
1125     echo "Failing $facet on node `facet_active_host $facet`"
1126     shutdown_facet $facet
1127     [ -n "$sleep_time" ] && sleep $sleep_time
1128     reboot_facet $facet
1129     client_df &
1130     DFPID=$!
1131     echo "df pid is $DFPID"
1132     change_active $facet
1133     local TO=`facet_active_host $facet`
1134     echo "Failover $facet to $TO"
1135     wait_for $facet
1136     mount_facet $facet || error "Restart of $facet failed"
1137 }
1138
1139 obd_name() {
1140     local facet=$1
1141 }
1142
1143 replay_barrier() {
1144     local facet=$1
1145     do_facet $facet sync
1146     df $MOUNT
1147     local svc=${facet}_svc
1148     do_facet $facet $LCTL --device %${!svc} notransno
1149     do_facet $facet $LCTL --device %${!svc} readonly
1150     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1151     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1152 }
1153
1154 replay_barrier_nodf() {
1155     local facet=$1    echo running=${running}
1156     do_facet $facet sync
1157     local svc=${facet}_svc
1158     echo Replay barrier on ${!svc}
1159     do_facet $facet $LCTL --device %${!svc} notransno
1160     do_facet $facet $LCTL --device %${!svc} readonly
1161     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1162     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1163 }
1164
1165 replay_barrier_nosync() {
1166     local facet=$1    echo running=${running}
1167     local svc=${facet}_svc
1168     echo Replay barrier on ${!svc}
1169     do_facet $facet $LCTL --device %${!svc} notransno
1170     do_facet $facet $LCTL --device %${!svc} readonly
1171     do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
1172     $LCTL mark "local REPLAY BARRIER on ${!svc}"
1173 }
1174
1175 mds_evict_client() {
1176     UUID=`lctl get_param -n mdc.${mds1_svc}-mdc-*.uuid`
1177     do_facet mds1 "lctl set_param -n mdt.${mds1_svc}.evict_client $UUID"
1178 }
1179
1180 ost_evict_client() {
1181     UUID=`lctl get_param -n devices| grep ${ost1_svc}-osc- | egrep -v 'MDT' | awk '{print $5}'`
1182     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.evict_client $UUID"
1183 }
1184
1185 fail() {
1186     facet_failover $* || error "failover: $?"
1187     df $MOUNT || error "post-failover df: $?"
1188 }
1189
1190 fail_nodf() {
1191         local facet=$1
1192         facet_failover $facet
1193 }
1194
1195 fail_abort() {
1196     local facet=$1
1197     stop $facet
1198     change_active $facet
1199     mount_facet $facet -o abort_recovery
1200     df $MOUNT || echo "first df failed: $?"
1201     sleep 1
1202     df $MOUNT || error "post-failover df: $?"
1203 }
1204
1205 do_lmc() {
1206     echo There is no lmc.  This is mountconf, baby.
1207     exit 1
1208 }
1209
1210 h2gm () {
1211     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1212         ID=`$PDSH $1 $GMNALNID -l | cut -d\  -f2`
1213         echo $ID"@gm"
1214     fi
1215 }
1216
1217 h2name_or_ip() {
1218     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1219         echo $1"@$2"
1220     fi
1221 }
1222
1223 h2ptl() {
1224    if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1225        ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | awk '{print $1}'`
1226        if [ -z "$ID" ]; then
1227            echo "Could not get a ptl id for $1..."
1228            exit 1
1229        fi
1230        echo $ID"@ptl"
1231    fi
1232 }
1233 declare -fx h2ptl
1234
1235 h2tcp() {
1236     h2name_or_ip "$1" "tcp"
1237 }
1238 declare -fx h2tcp
1239
1240 h2elan() {
1241     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
1242         if type __h2elan >/dev/null 2>&1; then
1243             ID=$(__h2elan $1)
1244         else
1245             ID=`echo $1 | sed 's/[^0-9]*//g'`
1246         fi
1247         echo $ID"@elan"
1248     fi
1249 }
1250 declare -fx h2elan
1251
1252 h2openib() {
1253     h2name_or_ip "$1" "openib"
1254 }
1255 declare -fx h2openib
1256
1257 h2o2ib() {
1258     h2name_or_ip "$1" "o2ib"
1259 }
1260 declare -fx h2o2ib
1261
1262 facet_host() {
1263     local facet=$1
1264
1265     [ "$facet" == client ] && echo -n $HOSTNAME && return
1266     varname=${facet}_HOST
1267     if [ -z "${!varname}" ]; then
1268         if [ "${facet:0:3}" == "ost" ]; then
1269             eval ${facet}_HOST=${ost_HOST}
1270         fi
1271     fi
1272     echo -n ${!varname}
1273 }
1274
1275 facet_active() {
1276     local facet=$1
1277     local activevar=${facet}active
1278
1279     if [ -f $TMP/${facet}active ] ; then
1280         source $TMP/${facet}active
1281     fi
1282
1283     active=${!activevar}
1284     if [ -z "$active" ] ; then
1285         echo -n ${facet}
1286     else
1287         echo -n ${active}
1288     fi
1289 }
1290
1291 facet_active_host() {
1292     local facet=$1
1293     local active=`facet_active $facet`
1294     if [ "$facet" == client ]; then
1295         echo $HOSTNAME
1296     else
1297         echo `facet_host $active`
1298     fi
1299 }
1300
1301 change_active() {
1302     local facet=$1
1303     local failover=${facet}failover
1304     host=`facet_host $failover`
1305     [ -z "$host" ] && return
1306     local curactive=`facet_active $facet`
1307     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
1308         eval export ${facet}active=$facet
1309     else
1310         eval export ${facet}active=$failover
1311     fi
1312     # save the active host for this facet
1313     local activevar=${facet}active
1314     echo "$activevar=${!activevar}" > $TMP/$activevar
1315 }
1316
1317 do_node() {
1318     HOST=$1
1319     shift
1320     local myPDSH=$PDSH
1321     if [ "$HOST" = "$HOSTNAME" ]; then
1322         myPDSH="no_dsh"
1323     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
1324         echo "cannot run remote command on $HOST with $myPDSH"
1325         return 128
1326     fi
1327     if $VERBOSE; then
1328         echo "CMD: $HOST $@" >&2
1329         $myPDSH $HOST $LCTL mark "$@" > /dev/null 2>&1 || :
1330     fi
1331
1332     if [ "$myPDSH" = "rsh" ]; then
1333 # we need this because rsh does not return exit code of an executed command
1334         local command_status="$TMP/cs"
1335         rsh $HOST ":> $command_status"
1336         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
1337                     cd $RPWD; sh -c \"$@\") ||
1338                     echo command failed >$command_status"
1339         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
1340         return 0
1341     fi
1342     $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; sh -c \"$@\")" | sed "s/^${HOST}: //"
1343     return ${PIPESTATUS[0]}
1344 }
1345
1346 single_local_node () {
1347    [ "$1" = "$HOSTNAME" ]
1348 }
1349
1350 do_nodes() {
1351     local rnodes=$1
1352     shift
1353
1354     if $(single_local_node $rnodes); then
1355         do_node $rnodes $@
1356         return $?
1357     fi
1358
1359     # This is part from do_node
1360     local myPDSH=$PDSH
1361
1362     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
1363         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
1364
1365     if $VERBOSE; then
1366         echo "CMD: $rnodes $@" >&2
1367         $myPDSH $rnodes $LCTL mark "$@" > /dev/null 2>&1 || :
1368     fi
1369
1370     $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; sh -c \"$@\")" | sed -re "s/\w+:\s//g"
1371     return ${PIPESTATUS[0]}
1372 }
1373
1374 do_facet() {
1375     local facet=$1
1376     shift
1377     local HOST=`facet_active_host $facet`
1378     [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
1379     do_node $HOST "$@"
1380 }
1381
1382 add() {
1383     local facet=$1
1384     shift
1385     # make sure its not already running
1386     stop ${facet} -f
1387     rm -f $TMP/${facet}active
1388     do_facet ${facet} $MKFS $*
1389 }
1390
1391 ostdevname() {
1392     num=$1
1393     DEVNAME=OSTDEV$num
1394     #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
1395     eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}}
1396     echo -n $DEVPTR
1397 }
1398
1399 mdsdevname() {
1400     num=$1
1401     DEVNAME=MDSDEV$num
1402     #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
1403     eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}}
1404     echo -n $DEVPTR
1405 }
1406
1407 ########
1408 ## MountConf setup
1409
1410 stopall() {
1411     # make sure we are using the primary server, so test-framework will
1412     # be able to clean up properly.
1413     activemds=`facet_active mds1`
1414     if [ $activemds != "mds1" ]; then
1415         fail mds1
1416     fi
1417
1418     local clients=$CLIENTS
1419     [ -z $clients ] && clients=$(hostname)
1420
1421     zconf_umount_clients $clients $MOUNT "$*" || true
1422     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
1423
1424     [ "$CLIENTONLY" ] && return
1425     # The add fn does rm ${facet}active file, this would be enough
1426     # if we use do_facet <facet> only after the facet added, but
1427     # currently we use do_facet mds in local.sh
1428     for num in `seq $MDSCOUNT`; do
1429         stop mds$num -f
1430         rm -f ${TMP}/mds${num}active
1431     done
1432
1433     for num in `seq $OSTCOUNT`; do
1434         stop ost$num -f
1435         rm -f $TMP/ost${num}active
1436     done
1437
1438     return 0
1439 }
1440
1441 cleanupall() {
1442     stopall $*
1443     unload_modules
1444     cleanup_gss
1445 }
1446
1447 mdsmkfsopts()
1448 {
1449     local nr=$1
1450     test $nr = 1 && echo -n $MDS_MKFS_OPTS || echo -n $MDSn_MKFS_OPTS
1451 }
1452
1453 formatall() {
1454     if [ "$IAMDIR" == "yes" ]; then
1455         MDS_MKFS_OPTS="$MDS_MKFS_OPTS --iam-dir"
1456         MDSn_MKFS_OPTS="$MDSn_MKFS_OPTS --iam-dir"
1457     fi
1458
1459     [ "$FSTYPE" ] && FSTYPE_OPT="--backfstype $FSTYPE"
1460
1461     if [ ! -z $SEC ]; then
1462         MDS_MKFS_OPTS="$MDS_MKFS_OPTS --param srpc.flavor.default=$SEC"
1463         MDSn_MKFS_OPTS="$MDSn_MKFS_OPTS --param srpc.flavor.default=$SEC"
1464         OST_MKFS_OPTS="$OST_MKFS_OPTS --param srpc.flavor.default=$SEC"
1465     fi
1466
1467     stopall
1468     # We need ldiskfs here, may as well load them all
1469     load_modules
1470     [ "$CLIENTONLY" ] && return
1471     echo "Formatting mdts, osts"
1472     for num in `seq $MDSCOUNT`; do
1473         echo "Format mds$num: $(mdsdevname $num)"
1474         if $VERBOSE; then
1475             add mds$num `mdsmkfsopts $num` $FSTYPE_OPT --reformat `mdsdevname $num` || exit 9
1476         else
1477             add mds$num `mdsmkfsopts $num` $FSTYPE_OPT --reformat `mdsdevname $num` > /dev/null || exit 9
1478         fi
1479     done
1480
1481     for num in `seq $OSTCOUNT`; do
1482         echo "Format ost$num: $(ostdevname $num)"
1483         if $VERBOSE; then
1484             add ost$num $OST_MKFS_OPTS --reformat `ostdevname $num` || exit 10
1485         else
1486             add ost$num $OST_MKFS_OPTS --reformat `ostdevname $num` > /dev/null || exit 10
1487         fi
1488     done
1489 }
1490
1491 mount_client() {
1492     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
1493 }
1494
1495 umount_client() {
1496     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
1497 }
1498
1499 # return value:
1500 # 0: success, the old identity set already.
1501 # 1: success, the old identity does not set.
1502 # 2: fail.
1503 switch_identity() {
1504     local num=$1
1505     local switch=$2
1506     local j=`expr $num - 1`
1507     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
1508
1509     if [ -z "$MDT" ]; then
1510         return 2
1511     fi
1512
1513     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
1514
1515     if $switch; then
1516         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
1517     else
1518         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
1519     fi
1520
1521     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush \"-1\""
1522
1523     if [ $old = "NONE" ]; then
1524         return 1
1525     else
1526         return 0
1527     fi
1528 }
1529
1530 remount_client()
1531 {
1532         zconf_umount `hostname` $1 || error "umount failed"
1533         zconf_mount `hostname` $1 || error "mount failed"
1534 }
1535
1536 writeconf_facet () {
1537     local facet=$1
1538     local dev=$2
1539
1540     do_facet $facet "$TUNEFS --writeconf $dev"
1541 }
1542
1543 writeconf_all () {
1544     for num in `seq $MDSCOUNT`; do
1545         DEVNAME=$(mdsdevname $num)
1546         writeconf_facet mds$num $DEVNAME
1547     done
1548
1549     for num in `seq $OSTCOUNT`; do
1550         DEVNAME=$(ostdevname $num)
1551         writeconf_facet ost$num $DEVNAME
1552     done
1553 }
1554
1555 setupall() {
1556     sanity_mount_check ||
1557         error "environments are insane!"
1558
1559     load_modules
1560     init_gss
1561     if [ -z "$CLIENTONLY" ]; then
1562         echo "Setup mdts, osts"
1563         echo $WRITECONF | grep -q "writeconf" && \
1564             writeconf_all
1565         for num in `seq $MDSCOUNT`; do
1566             DEVNAME=$(mdsdevname $num)
1567             start mds$num $DEVNAME $MDS_MOUNT_OPTS
1568
1569             # We started mds, now we should set failover variables properly.
1570             # Set mds${num}failover_HOST if it is not set (the default failnode).
1571             local varname=mds${num}failover_HOST
1572             if [ -z "${!varname}" ]; then
1573                 eval mds${num}failover_HOST=$(facet_host mds$num)
1574             fi
1575
1576             if [ $IDENTITY_UPCALL != "default" ]; then
1577                 switch_identity $num $IDENTITY_UPCALL
1578             fi
1579         done
1580         for num in `seq $OSTCOUNT`; do
1581             DEVNAME=$(ostdevname $num)
1582             start ost$num $DEVNAME $OST_MOUNT_OPTS
1583
1584             # We started ost$num, now we should set ost${num}failover variable properly.
1585             # Set ost${num}failover_HOST if it is not set (the default failnode).
1586             varname=ost${num}failover_HOST
1587             if [ -z "${!varname}" ]; then
1588                 eval ost${num}failover_HOST=$(facet_host ost${num})
1589             fi
1590
1591         done
1592     fi
1593     # wait a while to allow sptlrpc configuration be propogated to targets,
1594     # only needed when mounting new target devices.
1595     $GSS && sleep 10
1596
1597     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
1598     mount_client $MOUNT
1599     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
1600
1601     if [ "$MOUNT_2" ]; then
1602         mount_client $MOUNT2
1603         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
1604     fi
1605
1606     init_param_vars
1607
1608     # by remounting mdt before ost, initial connect from mdt to ost might
1609     # timeout because ost is not ready yet. wait some time to its fully
1610     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
1611     # by a context negotiation rpc with $TIMEOUT.
1612     # FIXME better by monitoring import status.
1613     if $GSS; then
1614         sleep $((TIMEOUT + 5))
1615     else
1616         sleep 5
1617     fi
1618 }
1619
1620 mounted_lustre_filesystems() {
1621         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
1622 }
1623
1624 init_facet_vars () {
1625     local facet=$1
1626     shift
1627     local device=$1
1628
1629     shift
1630
1631     eval export ${facet}_dev=${device}
1632     eval export ${facet}_opt=\"$@\"
1633
1634     local dev=${facet}_dev
1635     local label=$(do_facet ${facet} "$E2LABEL ${!dev}")
1636     [ -z "$label" ] && echo no label for ${!dev} && exit 1
1637
1638     eval export ${facet}_svc=${label}
1639
1640     local varname=${facet}failover_HOST
1641     if [ -z "${!varname}" ]; then
1642        eval $varname=$(facet_host $facet) 
1643     fi
1644
1645     # ${facet}failover_dev is set in cfg file
1646     varname=${facet}failover_dev
1647     if [ -n "${!varname}" ] ; then
1648         eval export ${facet}failover_dev=${!varname}
1649     else
1650         eval export ${facet}failover_dev=$device
1651     fi
1652 }
1653
1654 init_facets_vars () {
1655     local DEVNAME
1656
1657     if ! remote_mds_nodsh; then 
1658         for num in `seq $MDSCOUNT`; do
1659             DEVNAME=`mdsdevname $num`
1660             init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
1661         done
1662     fi
1663
1664     remote_ost_nodsh && return
1665
1666     for num in `seq $OSTCOUNT`; do
1667         DEVNAME=`ostdevname $num`
1668         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
1669     done
1670 }
1671
1672 init_param_vars () {
1673     if ! remote_ost_nodsh && ! remote_mds_nodsh; then
1674         export MDSVER=$(do_facet $SINGLEMDS "lctl get_param version" | cut -d. -f1,2)
1675         export OSTVER=$(do_facet ost1 "lctl get_param version" | cut -d. -f1,2)
1676         export CLIVER=$(lctl get_param version | cut -d. -f 1,2)
1677     fi
1678
1679     remote_mds_nodsh ||
1680         TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
1681
1682     log "Using TIMEOUT=$TIMEOUT"
1683
1684     if [ "$ENABLE_QUOTA" ]; then
1685         setup_quota $MOUNT  || return 2
1686     fi
1687 }
1688
1689 check_config () {
1690     local mntpt=$1
1691     local myMGS_host=$mgs_HOST   
1692     if [ "$NETTYPE" = "ptl" ]; then
1693         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
1694     fi
1695
1696     echo Checking config lustre mounted on $mntpt
1697     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
1698     mgshost=$(echo $mgshost | awk -F: '{print $1}')
1699
1700     if [ "$mgshost" != "$myMGS_host" ]; then
1701         FAIL_ON_ERROR=true \
1702             error "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
1703                    Please use correct config or set mds_HOST correctly!"
1704     fi
1705
1706     sanity_mount_check ||
1707         error "environments are insane!"
1708 }
1709
1710 check_timeout () {
1711     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
1712     local cltimeout=$(lctl get_param -n timeout)
1713     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
1714         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
1715         return 1
1716     fi
1717 }
1718
1719 check_and_setup_lustre() {
1720     local MOUNTED=$(mounted_lustre_filesystems)
1721     if [ -z "$MOUNTED" ] || ! $(echo $MOUNTED | grep -w -q $MOUNT); then
1722         [ "$REFORMAT" ] && formatall
1723         setupall
1724         MOUNTED=$(mounted_lustre_filesystems | head -1)
1725         [ -z "$MOUNTED" ] && error "NAME=$NAME not mounted"
1726         export I_MOUNTED=yes
1727     else
1728         check_config $MOUNT
1729         init_facets_vars
1730         init_param_vars
1731     fi
1732     if [ "$ONLY" == "setup" ]; then
1733         exit 0
1734     fi
1735 }
1736
1737 cleanup_and_setup_lustre() {
1738     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
1739         lctl set_param debug=0 || true
1740         cleanupall
1741         if [ "$ONLY" == "cleanup" ]; then
1742             exit 0
1743         fi
1744     fi
1745     check_and_setup_lustre
1746 }
1747
1748 check_and_cleanup_lustre() {
1749     if [ "`mount | grep $MOUNT`" ]; then
1750         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]*
1751         [ "$ENABLE_QUOTA" ] && restore_quota_type || true
1752     fi
1753     if [ "$I_MOUNTED" = "yes" ]; then
1754         cleanupall -f || error "cleanup failed"
1755     fi
1756     unset I_MOUNTED
1757 }
1758
1759 #######
1760 # General functions
1761
1762 check_network() {
1763     local NETWORK=0
1764     local WAIT=0
1765     local MAX=$2
1766     while [ $NETWORK -eq 0 ]; do
1767         ping -c 1 -w 3 $1 > /dev/null
1768         if [ $? -eq 0 ]; then
1769             NETWORK=1
1770         else
1771             WAIT=$((WAIT + 5))
1772             echo "waiting for $1, $((MAX - WAIT)) secs left"
1773             sleep 5
1774         fi
1775         if [ $WAIT -gt $MAX ]; then
1776             echo "Network not available"
1777             exit 1
1778         fi
1779     done
1780 }
1781 check_port() {
1782     while( !($DSH2 $1 "netstat -tna | grep -q $2") ) ; do
1783         sleep 9
1784     done
1785 }
1786
1787 no_dsh() {
1788     shift
1789     eval $@
1790 }
1791
1792 comma_list() {
1793     # the sed converts spaces to commas, but leaves the last space
1794     # alone, so the line doesn't end with a comma.
1795     echo "$*" | tr -s " " "\n" | sort -b -u | tr "\n" " " | sed 's/ \([^$]\)/,\1/g'
1796 }
1797
1798 # list, excluded are the comma separated lists
1799 exclude_items_from_list () {
1800     local list=$1
1801     local excluded=$2
1802     local item
1803
1804     list=${list//,/ }
1805     for item in ${excluded//,/ }; do
1806         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
1807     done
1808     echo $(comma_list $list) 
1809 }
1810
1811 # list, expand  are the comma separated lists
1812 expand_list () {
1813     local list=${1//,/ }
1814     local expand=${2//,/ }
1815     local expanded=
1816
1817     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
1818     echo $(comma_list $expanded)
1819 }
1820
1821 absolute_path() {
1822     (cd `dirname $1`; echo $PWD/`basename $1`)
1823 }
1824
1825 get_facets () {
1826     local name=$(echo $1 | tr "[:upper:]" "[:lower:]")
1827     local type=$(echo $1 | tr "[:lower:]" "[:upper:]")
1828
1829     local list=""
1830     local count=${type}COUNT
1831     for ((i=1; i<=${!count}; i++)) do
1832         list="$list ${name}$i"
1833     done
1834     echo $(comma_list $list)
1835 }
1836
1837 ##################################
1838 # Adaptive Timeouts funcs
1839
1840 at_is_valid() {
1841     if [ -z "$AT_MAX_PATH" ]; then
1842         AT_MAX_PATH=$(do_facet $SINGLEMDS "find /sys/ -name at_max")
1843         [ -z "$AT_MAX_PATH" ] && echo "missing /sys/.../at_max " && return 1
1844     fi
1845     return 0
1846 }
1847
1848 at_is_enabled() {
1849     at_is_valid || error "invalid call"
1850
1851     # only check mds, we assume at_max is the same on all nodes
1852     local at_max=$(do_facet $SINGLEMDS "cat $AT_MAX_PATH")
1853     if [ $at_max -eq 0 ]; then
1854         return 1
1855     else
1856         return 0
1857     fi
1858 }
1859
1860 at_max_get() {
1861     local facet=$1
1862
1863     at_is_valid || error "invalid call"
1864
1865     # suppose that all ost-s has the same at_max set
1866     if [ $facet == "ost" ]; then
1867         do_facet ost1 "cat $AT_MAX_PATH"
1868     else
1869         do_facet $facet "cat $AT_MAX_PATH"
1870     fi
1871 }
1872
1873 at_max_set() {
1874     local at_max=$1
1875     shift
1876
1877     at_is_valid || error "invalid call"
1878
1879     local facet
1880     for facet in $@; do
1881         if [ $facet == "ost" ]; then
1882             for i in `seq $OSTCOUNT`; do
1883                 do_facet ost$i "echo $at_max > $AT_MAX_PATH"
1884             done
1885         elif [ $facet == "mds" ]; then
1886             for i in `seq $MDSCOUNT`; do
1887                 do_facet mds$i "echo $at_max > $AT_MAX_PATH"
1888             done
1889         else
1890             do_facet $facet "echo $at_max > $AT_MAX_PATH"
1891         fi
1892     done
1893 }
1894
1895 ##################################
1896 # OBD_FAIL funcs
1897
1898 drop_request() {
1899 # OBD_FAIL_MDS_ALL_REQUEST_NET
1900     RC=0
1901     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
1902     do_facet client "$1" || RC=$?
1903     do_facet $SINGLEMDS lctl set_param fail_loc=0
1904     return $RC
1905 }
1906
1907 drop_reply() {
1908 # OBD_FAIL_MDS_ALL_REPLY_NET
1909     RC=0
1910     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
1911     do_facet client "$@" || RC=$?
1912     do_facet $SINGLEMDS lctl set_param fail_loc=0
1913     return $RC
1914 }
1915
1916 drop_reint_reply() {
1917 # OBD_FAIL_MDS_REINT_NET_REP
1918     RC=0
1919     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
1920     do_facet client "$@" || RC=$?
1921     do_facet $SINGLEMDS lctl set_param fail_loc=0
1922     return $RC
1923 }
1924
1925 pause_bulk() {
1926 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
1927     RC=0
1928     do_facet ost1 lctl set_param fail_loc=0x214
1929     do_facet client "$1" || RC=$?
1930     do_facet client "sync"
1931     do_facet ost1 lctl set_param fail_loc=0
1932     return $RC
1933 }
1934
1935 drop_ldlm_cancel() {
1936 #define OBD_FAIL_LDLM_CANCEL             0x304
1937     RC=0
1938     do_facet client lctl set_param fail_loc=0x304
1939     do_facet client "$@" || RC=$?
1940     do_facet client lctl set_param fail_loc=0
1941     return $RC
1942 }
1943
1944 drop_bl_callback() {
1945 #define OBD_FAIL_LDLM_BL_CALLBACK        0x305
1946     RC=0
1947     do_facet client lctl set_param fail_loc=0x305
1948     do_facet client "$@" || RC=$?
1949     do_facet client lctl set_param fail_loc=0
1950     return $RC
1951 }
1952
1953 drop_ldlm_reply() {
1954 #define OBD_FAIL_LDLM_REPLY              0x30c
1955     RC=0
1956     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
1957     do_facet client "$@" || RC=$?
1958     do_facet $SINGLEMDS lctl set_param fail_loc=0
1959     return $RC
1960 }
1961
1962 clear_failloc() {
1963     facet=$1
1964     pause=$2
1965     sleep $pause
1966     echo "clearing fail_loc on $facet"
1967     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
1968 }
1969
1970 set_nodes_failloc () {
1971     local nodes=$1
1972     local node
1973
1974     for node in $nodes ; do
1975         do_node $node lctl set_param fail_loc=$2
1976     done
1977 }
1978
1979 cancel_lru_locks() {
1980     $LCTL mark "cancel_lru_locks $1 start"
1981     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
1982         $LCTL set_param -n $d=clear
1983     done
1984     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
1985     $LCTL mark "cancel_lru_locks $1 stop"
1986 }
1987
1988 default_lru_size()
1989 {
1990         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
1991         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
1992         echo "$DEFAULT_LRU_SIZE"
1993 }
1994
1995 lru_resize_enable()
1996 {
1997     lctl set_param ldlm.namespaces.*$1*.lru_size=0
1998 }
1999
2000 lru_resize_disable()
2001 {
2002     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
2003 }
2004
2005 pgcache_empty() {
2006     local FILE
2007     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
2008         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
2009             echo there is still data in page cache $FILE ?
2010             lctl get_param -n $FILE
2011             return 1
2012         fi
2013     done
2014     return 0
2015 }
2016
2017 debugsave() {
2018     DEBUGSAVE="$(lctl get_param -n debug)"
2019 }
2020
2021 debugrestore() {
2022     [ -n "$DEBUGSAVE" ] && lctl set_param debug="${DEBUGSAVE}"
2023     DEBUGSAVE=""
2024 }
2025
2026 ##################################
2027 # Test interface
2028 ##################################
2029
2030 error_noexit() {
2031     local TYPE=${TYPE:-"FAIL"}
2032     local ERRLOG
2033     lctl set_param fail_loc=0 2>/dev/null || true
2034     log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
2035     ERRLOG=$TMP/lustre_${TESTSUITE}_${TESTNAME}.$(date +%s)
2036     echo "Dumping lctl log to $ERRLOG"
2037     # We need to dump the logs on all nodes
2038     local NODES=${NODES:-$(nodes_list)}
2039     for NODE in $NODES; do
2040         do_node $NODE $LCTL dk $ERRLOG
2041     done
2042     debugrestore
2043     [ "$TESTSUITELOG" ] && echo "$0: ${TYPE}: $TESTNAME $@" >> $TESTSUITELOG
2044     TEST_FAILED=true
2045 }
2046
2047 error() {
2048     error_noexit "$@"
2049     $FAIL_ON_ERROR && exit 1 || true
2050 }
2051
2052 error_exit() {
2053     error_noexit "$@"
2054     exit 1
2055 }
2056
2057 # use only if we are ignoring failures for this test, bugno required.
2058 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
2059 # e.g. error_ignore 5494 "your message"
2060 error_ignore() {
2061     local TYPE="IGNORE (bz$1)"
2062     shift
2063     error_noexit "$@"
2064 }
2065
2066 skip () {
2067     echo
2068     log " SKIP: ${TESTSUITE} ${TESTNAME} $@"
2069     [ "$TESTSUITELOG" ] && \
2070         echo "${TESTSUITE}: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
2071 }
2072
2073 build_test_filter() {
2074     [ "$ONLY" ] && log "only running test `echo $ONLY`"
2075     for O in $ONLY; do
2076         eval ONLY_${O}=true
2077     done
2078     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
2079         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
2080     [ "$EXCEPT_SLOW" ] && \
2081         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
2082     for E in $EXCEPT $ALWAYS_EXCEPT; do
2083         eval EXCEPT_${E}=true
2084     done
2085     for E in $EXCEPT_SLOW; do
2086         eval EXCEPT_SLOW_${E}=true
2087     done
2088     for G in $GRANT_CHECK_LIST; do
2089         eval GCHECK_ONLY_${G}=true
2090         done
2091 }
2092
2093 _basetest() {
2094     echo $*
2095 }
2096
2097 basetest() {
2098     IFS=abcdefghijklmnopqrstuvwxyz _basetest $1
2099 }
2100
2101 # print a newline if the last test was skipped
2102 export LAST_SKIPPED=
2103 run_test() {
2104     assert_DIR
2105
2106     export base=`basetest $1`
2107     if [ ! -z "$ONLY" ]; then
2108         testname=ONLY_$1
2109         if [ ${!testname}x != x ]; then
2110             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
2111             run_one $1 "$2"
2112             return $?
2113         fi
2114         testname=ONLY_$base
2115         if [ ${!testname}x != x ]; then
2116             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
2117             run_one $1 "$2"
2118             return $?
2119         fi
2120         LAST_SKIPPED="y"
2121         echo -n "."
2122         return 0
2123     fi
2124     testname=EXCEPT_$1
2125     if [ ${!testname}x != x ]; then
2126         LAST_SKIPPED="y"
2127         TESTNAME=test_$1 skip "skipping excluded test $1"
2128         return 0
2129     fi
2130     testname=EXCEPT_$base
2131     if [ ${!testname}x != x ]; then
2132         LAST_SKIPPED="y"
2133         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
2134         return 0
2135     fi
2136     testname=EXCEPT_SLOW_$1
2137     if [ ${!testname}x != x ]; then
2138         LAST_SKIPPED="y"
2139         TESTNAME=test_$1 skip "skipping SLOW test $1"
2140         return 0
2141     fi
2142     testname=EXCEPT_SLOW_$base
2143     if [ ${!testname}x != x ]; then
2144         LAST_SKIPPED="y"
2145         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
2146         return 0
2147     fi
2148
2149     LAST_SKIPPED=
2150     run_one $1 "$2"
2151
2152     return $?
2153 }
2154
2155 EQUALS="======================================================================"
2156 equals_msg() {
2157     msg="$@"
2158
2159     local suffixlen=$((${#EQUALS} - ${#msg}))
2160     [ $suffixlen -lt 5 ] && suffixlen=5
2161     log `echo $(printf '===== %s %.*s\n' "$msg" $suffixlen $EQUALS)`
2162 }
2163
2164 log() {
2165     echo "$*"
2166     lsmod | grep lnet > /dev/null || load_modules
2167
2168     local MSG="$*"
2169     # Get rid of '
2170     MSG=${MSG//\'/\\\'}
2171     MSG=${MSG//\(/\\\(}
2172     MSG=${MSG//\)/\\\)}
2173     MSG=${MSG//\;/\\\;}
2174     MSG=${MSG//\|/\\\|}
2175     MSG=${MSG//\>/\\\>}
2176     MSG=${MSG//\</\\\<}
2177     MSG=${MSG//\//\\\/}
2178     local NODES=$(nodes_list)
2179     for NODE in $NODES; do
2180         do_node $NODE $LCTL mark "$MSG" 2> /dev/null || true
2181     done
2182 }
2183
2184 trace() {
2185         log "STARTING: $*"
2186         strace -o $TMP/$1.strace -ttt $*
2187         RC=$?
2188         log "FINISHED: $*: rc $RC"
2189         return 1
2190 }
2191
2192 pass() {
2193     $TEST_FAILED && echo -n "FAIL " || echo -n "PASS " 
2194     echo $@
2195 }
2196
2197 check_mds() {
2198     FFREE=$(do_node $SINGLEMDS lctl get_param -n osd.*MDT*.filesfree | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2199     FTOTAL=$(do_node $SINGLEMDS lctl get_param -n osd.*MDT*.filestotal | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2200     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
2201 }
2202
2203 reset_fail_loc () {
2204     local myNODES=$(nodes_list)
2205     local NODE
2206
2207     echo -n "Resetting fail_loc on all nodes..."
2208     for NODE in $myNODES; do
2209         do_node $NODE "lctl set_param -n fail_loc=0 2>/dev/null || true"
2210     done
2211     echo done.
2212 }
2213
2214 run_one() {
2215     testnum=$1
2216     message=$2
2217     tfile=f${testnum}
2218     export tdir=d0.${TESTSUITE}/d${base}
2219
2220     local SAVE_UMASK=`umask`
2221     umask 0022
2222
2223     local BEFORE=`date +%s`
2224     echo
2225     log "== test $testnum: $message == `date +%H:%M:%S` ($BEFORE)"
2226     #check_mds
2227     export TESTNAME=test_$testnum
2228     TEST_FAILED=false
2229     test_${testnum} || error "test_$testnum failed with $?"
2230     #check_mds
2231     cd $SAVE_PWD
2232     reset_fail_loc
2233     check_grant ${testnum} || error "check_grant $testnum failed with $?"
2234     check_catastrophe || error "LBUG/LASSERT detected"
2235     ps auxww | grep -v grep | grep -q multiop && error "multiop still running"
2236     pass "($((`date +%s` - $BEFORE))s)"
2237     TEST_FAILED=false
2238     unset TESTNAME
2239     unset tdir
2240     umask $SAVE_UMASK
2241 }
2242
2243 canonical_path() {
2244     (cd `dirname $1`; echo $PWD/`basename $1`)
2245 }
2246
2247 sync_clients() {
2248     [ -d $DIR1 ] && cd $DIR1 && sync; sleep 1; sync
2249     [ -d $DIR2 ] && cd $DIR2 && sync; sleep 1; sync
2250         cd $SAVE_PWD
2251 }
2252
2253 check_grant() {
2254     export base=`basetest $1`
2255     [ "$CHECK_GRANT" == "no" ] && return 0
2256
2257         testname=GCHECK_ONLY_${base}
2258         [ ${!testname}x == x ] && return 0
2259
2260     echo -n "checking grant......"
2261         cd $SAVE_PWD
2262         # write some data to sync client lost_grant
2263         rm -f $DIR1/${tfile}_check_grant_* 2>&1
2264         for i in `seq $OSTCOUNT`; do
2265                 $LFS setstripe $DIR1/${tfile}_check_grant_$i -i $(($i -1)) -c 1
2266                 dd if=/dev/zero of=$DIR1/${tfile}_check_grant_$i bs=4k \
2267                                               count=1 > /dev/null 2>&1
2268         done
2269         # sync all the data and make sure no pending data on server
2270         sync_clients
2271         
2272         #get client grant and server grant
2273         client_grant=0
2274     for d in `lctl get_param -n osc.*.cur_grant_bytes`; do
2275                 client_grant=$((client_grant + $d))
2276         done
2277         server_grant=0
2278         for d in `lctl get_param -n obdfilter.*.tot_granted`; do
2279                 server_grant=$((server_grant + $d))
2280         done
2281
2282         # cleanup the check_grant file
2283         for i in `seq $OSTCOUNT`; do
2284                 rm $DIR1/${tfile}_check_grant_$i
2285         done
2286
2287         #check whether client grant == server grant
2288         if [ $client_grant != $server_grant ]; then
2289                 echo "failed: client:${client_grant} server: ${server_grant}"
2290                 return 1
2291         else
2292                 echo "pass"
2293         fi
2294 }
2295
2296 ########################
2297 # helper functions
2298
2299 osc_to_ost()
2300 {
2301     osc=$1
2302     ost=`echo $1 | awk -F_ '{print $3}'`
2303     if [ -z $ost ]; then
2304         ost=`echo $1 | sed 's/-osc.*//'`
2305     fi
2306     echo $ost
2307 }
2308
2309 remote_node () {
2310     local node=$1
2311     [ "$node" != "$(hostname)" ]
2312 }
2313
2314 remote_mds ()
2315 {
2316     local node
2317     for node in $(mdts_nodes); do
2318         remote_node $node && return 0
2319     done
2320     return 1
2321 }
2322
2323 remote_mds_nodsh()
2324 {
2325     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
2326 }
2327
2328 remote_ost ()
2329 {
2330     local node
2331     for node in $(osts_nodes) ; do
2332         remote_node $node && return 0
2333     done
2334     return 1
2335 }
2336
2337 remote_ost_nodsh()
2338 {
2339     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
2340 }
2341
2342 remote_mgs_nodsh()
2343 {
2344     local MGS 
2345     MGS=$(facet_host mgs)
2346     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
2347 }
2348
2349 mdts_nodes () {
2350     local MDSNODES
2351     local NODES_sort
2352     for num in `seq $MDSCOUNT`; do
2353         MDSNODES="$MDSNODES $(facet_host mds$num)"
2354     done
2355     NODES_sort=$(for i in $MDSNODES; do echo $i; done | sort -u)
2356
2357     echo $NODES_sort
2358 }
2359
2360 remote_servers () {
2361     remote_ost && remote_mds
2362 }
2363
2364 osts_nodes () {
2365     local OSTNODES=$(facet_host ost1)
2366     local NODES_sort
2367
2368     for num in `seq $OSTCOUNT`; do
2369         local myOST=$(facet_host ost$num)
2370         OSTNODES="$OSTNODES $myOST"
2371     done
2372     NODES_sort=$(for i in $OSTNODES; do echo $i; done | sort -u)
2373
2374     echo $NODES_sort
2375 }
2376
2377 nodes_list () {
2378     # FIXME. We need a list of clients
2379     local myNODES=$HOSTNAME
2380     local myNODES_sort
2381
2382     # CLIENTS (if specified) contains the local client
2383     [ -n "$CLIENTS" ] && myNODES=${CLIENTS//,/ }
2384
2385     if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
2386         myNODES="$myNODES $(osts_nodes) $(mdts_nodes)"
2387     fi
2388
2389     myNODES_sort=$(for i in $myNODES; do echo $i; done | sort -u)
2390
2391     echo $myNODES_sort
2392 }
2393
2394 remote_nodes_list () {
2395     local rnodes=$(nodes_list)
2396     rnodes=$(echo " $rnodes " | sed -re "s/\s+$HOSTNAME\s+/ /g")
2397     echo $rnodes
2398 }
2399
2400 init_clients_lists () {
2401     # Sanity check: exclude the local client from RCLIENTS
2402     local rclients=$(echo " $RCLIENTS " | sed -re "s/\s+$HOSTNAME\s+/ /g")
2403
2404     # Sanity check: exclude the dup entries
2405     rclients=$(for i in $rclients; do echo $i; done | sort -u)
2406
2407     local clients="$SINGLECLIENT $HOSTNAME $rclients"
2408
2409     # Sanity check: exclude the dup entries from CLIENTS
2410     # for those configs which has SINGLCLIENT set to local client
2411     clients=$(for i in $clients; do echo $i; done | sort -u)
2412
2413     CLIENTS=`comma_list $clients`
2414     local -a remoteclients=($rclients)
2415     for ((i=0; $i<${#remoteclients[@]}; i++)); do
2416             varname=CLIENT$((i + 2))
2417             eval $varname=${remoteclients[i]}
2418     done
2419
2420     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
2421 }
2422
2423 get_random_entry () {
2424     local rnodes=$1
2425
2426     rnodes=${rnodes//,/ }
2427
2428     local -a nodes=($rnodes)
2429     local num=${#nodes[@]} 
2430     local i=$((RANDOM * num * 2 / 65536))
2431
2432     echo ${nodes[i]}
2433 }
2434
2435 is_patchless ()
2436 {
2437     lctl get_param version | grep -q patchless
2438 }
2439
2440 check_versions () {
2441     [ "$MDSVER" = "$CLIVER" -a "$OSTVER" = "$CLIVER" ]
2442 }
2443
2444 get_node_count() {
2445     local nodes="$@"
2446     echo $nodes | wc -w || true
2447 }
2448
2449 mixed_ost_devs () {
2450     local nodes=$(osts_nodes)
2451     local osscount=$(get_node_count "$nodes")
2452     [ ! "$OSTCOUNT" = "$osscount" ]
2453 }
2454
2455 mixed_mdt_devs () {
2456     local nodes=$(mdts_nodes)
2457     local mdtcount=$(get_node_count "$nodes")
2458     [ ! "$MDSCOUNT" = "$mdtcount" ]
2459 }
2460
2461 generate_machine_file() {
2462     local nodes=${1//,/ }
2463     local machinefile=$2
2464     rm -f $machinefile || error "can't rm $machinefile"
2465     for node in $nodes; do
2466         echo $node >>$machinefile
2467     done
2468 }
2469
2470 get_stripe () {
2471     local file=$1/stripe
2472     touch $file
2473     $LFS getstripe -v $file || error
2474     rm -f $file
2475 }
2476
2477 check_runas_id_ret() {
2478     local myRC=0
2479     local myRUNAS_UID=$1
2480     local myRUNAS_GID=$2
2481     shift 2
2482     local myRUNAS=$@
2483     if [ -z "$myRUNAS" ]; then
2484         error_exit "myRUNAS command must be specified for check_runas_id"
2485     fi
2486     if $GSS_KRB5; then
2487         $myRUNAS krb5_login.sh || \
2488             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
2489     fi
2490     mkdir $DIR/d0_runas_test
2491     chmod 0755 $DIR
2492     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
2493     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
2494     rm -rf $DIR/d0_runas_test
2495     return $myRC
2496 }
2497
2498 check_runas_id() {
2499     local myRUNAS_UID=$1
2500     local myRUNAS_GID=$2
2501     shift 2
2502     local myRUNAS=$@
2503     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
2504         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
2505         Please set RUNAS_ID to some UID which exists on MDS and client or
2506         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
2507 }
2508
2509 # Run multiop in the background, but wait for it to print
2510 # "PAUSING" to its stdout before returning from this function.
2511 multiop_bg_pause() {
2512     MULTIOP_PROG=${MULTIOP_PROG:-multiop}
2513     FILE=$1
2514     ARGS=$2
2515
2516     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
2517     mkfifo $TMPPIPE
2518
2519     echo "$MULTIOP_PROG $FILE v$ARGS"
2520     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
2521
2522     echo "TMPPIPE=${TMPPIPE}"
2523     read -t 60 multiop_output < $TMPPIPE
2524     if [ $? -ne 0 ]; then
2525         rm -f $TMPPIPE
2526         return 1
2527     fi
2528     rm -f $TMPPIPE
2529     if [ "$multiop_output" != "PAUSING" ]; then
2530         echo "Incorrect multiop output: $multiop_output"
2531         kill -9 $PID
2532         return 1
2533     fi
2534
2535     return 0
2536 }
2537
2538 inodes_available () {
2539     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
2540     echo $IFree
2541 }
2542
2543 # reset llite stat counters
2544 clear_llite_stats(){
2545         lctl set_param -n llite.*.stats 0
2546 }
2547
2548 # sum llite stat items
2549 calc_llite_stats() {
2550         local res=$(lctl get_param -n llite.*.stats |
2551                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
2552         echo $res
2553 }
2554
2555 # reset osc stat counters
2556 clear_osc_stats(){
2557         lctl set_param -n osc.*.osc_stats 0
2558 }
2559
2560 # sum osc stat items
2561 calc_osc_stats() {
2562         local res=$(lctl get_param -n osc.*.osc_stats |
2563                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
2564         echo $res
2565 }
2566
2567 calc_sum () {
2568         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
2569 }
2570
2571 calc_osc_kbytes () {
2572         df $MOUNT > /dev/null
2573         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
2574 }
2575
2576 # save_lustre_params(node, parameter_mask)
2577 # generate a stream of formatted strings (<node> <param name>=<param value>)
2578 save_lustre_params() {
2579         local s
2580         do_node $1 "lctl get_param $2" | while read s; do echo "$1 $s"; done
2581 }
2582
2583 # restore lustre parameters from input stream, produces by save_lustre_params
2584 restore_lustre_params() {
2585         local node
2586         local name
2587         local val
2588         while IFS=" =" read node name val; do
2589                 do_node $node "lctl set_param -n $name $val"
2590         done
2591 }
2592
2593 check_catastrophe() {
2594     local rnodes=${1:-$(comma_list $(remote_nodes_list))}
2595     local C=$CATASTROPHE
2596     [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
2597
2598     if [ $rnodes ]; then
2599         do_nodes $rnodes "rc=\\\$([ -f $C ] && echo \\\$(< $C) || echo 0);
2600 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
2601 exit \\\$rc;"
2602     fi 
2603 }
2604
2605 # $1 node
2606 # $2 file
2607 # $3 $RUNAS
2608 get_stripe_info() {
2609         local tmp_file
2610
2611         stripe_size=0
2612         stripe_count=0
2613         stripe_index=0
2614         tmp_file=$(mktemp)
2615
2616         do_facet $1 $3 lfs getstripe -v $2 > $tmp_file
2617
2618         stripe_size=`awk '$1 ~ /size/ {print $2}' $tmp_file`
2619         stripe_count=`awk '$1 ~ /count/ {print $2}' $tmp_file`
2620         stripe_index=`awk '/obdidx/ {start = 1; getline; print $1; exit}' $tmp_file`
2621         rm -f $tmp_file
2622 }
2623
2624 # CMD: determine mds index where directory inode presents
2625 get_mds_dir () {
2626     local dir=$1
2627     local file=$dir/f0.get_mds_dir_tmpfile
2628
2629     rm -f $file
2630     sleep 1
2631     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2632     local oldused=($iused)
2633
2634     touch $file
2635     sleep 1
2636     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2637     local newused=($iused)
2638
2639     local num=0
2640     for ((i=0; i<${#newused[@]}; i++)); do
2641          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
2642              echo $(( i + 1 ))
2643              rm -f $file
2644              return 0
2645          fi
2646     done
2647     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
2648 }
2649
2650 mpi_run () {
2651     local mpirun="$MPIRUN $MPIRUN_OPTIONS"
2652     local command="$mpirun $@"
2653     local mpilog=$TMP/mpi.log
2654     local rc
2655
2656     if [ "$MPI_USER" != root -a $mpirun ]; then
2657         echo "+ chmod 0777 $MOUNT"
2658         chmod 0777 $MOUNT
2659         command="su $MPI_USER sh -c \"$command \""
2660     fi
2661
2662     ls -ald $MOUNT
2663     echo "+ $command"
2664     eval $command 2>&1 > $mpilog || true
2665
2666     rc=${PIPESTATUS[0]}
2667     if [ $rc -eq 0 ] && grep -q "p4_error: : [^0]" $mpilog ; then
2668        rc=1
2669     fi
2670     cat $mpilog
2671     return $rc
2672 }
2673
2674 mdsrate_cleanup () {
2675     mpi_run -np $1 -machinefile $2 ${MDSRATE} --unlink --nfiles $3 --dir $4 --filefmt $5 $6
2676 }
2677
2678 delayed_recovery_enabled () {
2679     local var=${SINGLEMDS}_svc
2680     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
2681 }
2682
2683 ########################
2684 convert_facet2name() {
2685     case "$1" in
2686         "ost" ) echo "OST0000" ;;
2687         "ost1") echo "OST0000" ;;
2688         "ost2") echo "OST0001" ;;
2689         "ost3") echo "OST0002" ;;
2690         "ost4") echo "OST0003" ;;
2691         "ost5") echo "OST0004" ;;
2692         *) error "unknown facet!" ;;
2693     esac
2694 }
2695
2696 get_clientosc_proc_path() {
2697     local ost=$1
2698
2699     echo "{$1}-osc-*"
2700 }
2701
2702 get_lustre_version () {
2703     local node=${1:-"mds"}    
2704     do_facet $node $LCTL get_param -n version |  awk '/^lustre:/ {print $2}'
2705 }
2706
2707 get_mds_version_major () {
2708     local version=$(get_lustre_version mds)
2709     echo $version | awk -F. '{print $1}'
2710 }
2711
2712 get_mds_version_minor () {
2713     local version=$(get_lustre_version mds)
2714     echo $version | awk -F. '{print $2}'
2715 }
2716
2717 get_mdtosc_proc_path() {
2718     local ost=$1
2719     local major=$(get_mds_version_major)
2720     local minor=$(get_mds_version_minor)
2721     if [ $major -le 1 -a $minor -le 8 ] ; then
2722         echo "${ost}-osc"
2723     else
2724         echo "${ost}-osc-MDT0000"
2725     fi
2726 }
2727
2728 get_osc_import_name() {
2729     local node=$1
2730     local ost=$2
2731     local name=$(convert_facet2name $ost)
2732
2733     if [ "$node" == "mds" ]; then
2734         get_mdtosc_proc_path $name
2735         return 0
2736     fi
2737
2738     get_clientosc_proc_path $name
2739     return 0
2740 }
2741
2742 wait_osc_import_state() {
2743     local node=$1
2744     local ost_facet=$2
2745     local expected=$3
2746     local ost=$(get_osc_import_name $node $ost_facet)
2747     local CONN_PROC
2748     local CONN_STATE
2749     local i=0
2750
2751     CONN_PROC="osc.${FSNAME}-${ost}.ost_server_uuid"
2752     CONN_STATE=$(do_facet $node lctl get_param -n $CONN_PROC | cut -f2)
2753     while [ "${CONN_STATE}" != "${expected}" ]; do
2754         # for disconn we can check after proc entry is removed
2755         [ "x${CONN_STATE}" == "x" -a "${expected}" == "DISCONN" ] && return 0
2756         # disconnect rpc should be wait not more obd_timeout
2757         [ $i -ge $(($TIMEOUT * 3 / 2)) ] && \
2758             error "can't put import for ${ost}(${ost_facet}) into ${expected} state" && return 1
2759         sleep 1
2760         CONN_STATE=$(do_facet $node lctl get_param -n $CONN_PROC | cut -f2)
2761         i=$(($i + 1))
2762     done
2763
2764     log "${ost_facet} now in ${CONN_STATE} state"
2765     return 0
2766 }