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