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