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