Whamcloud - gitweb
LU-1866 lfsck: LFSCK for namespace consistency (2)
[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     while [ $WAIT -lt $MAX ]; do
1907         local -a sync=($(do_nodes $(comma_list $(mdts_nodes)) \
1908             "$LCTL get_param -n osp.*osc*.old_sync_processed"))
1909         local con=1
1910         local i
1911         for ((i=0; i<${#sync[@]}; i++)); do
1912             [ ${sync[$i]} -eq 1 ] && continue
1913             # there is a not finished MDS-OST synchronization
1914             con=0
1915             break;
1916         done
1917         sleep 2 # increase waiting time and cover statfs cache
1918         [ ${con} -eq 1 ] && return 0
1919         echo "Waiting $WAIT secs for $facet mds-ost sync done."
1920         WAIT=$((WAIT + 2))
1921     done
1922     echo "$facet recovery not done in $MAX sec. $STATUS"
1923     return 1
1924 }
1925
1926 wait_destroy_complete () {
1927         echo "Waiting for local destroys to complete"
1928         # MAX value shouldn't be big as this mean server responsiveness
1929         # never increase this just to make test pass but investigate
1930         # why it takes so long time
1931         local MAX=5
1932         local WAIT=0
1933         while [ $WAIT -lt $MAX ]; do
1934                 local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
1935                 local con=1
1936                 local i
1937
1938                 for ((i=0; i<${#RPCs[@]}; i++)); do
1939                         [ ${RPCs[$i]} -eq 0 ] && continue
1940                         # there are still some destroy RPCs in flight
1941                         con=0
1942                         break;
1943                 done
1944                 sleep 1
1945                 [ ${con} -eq 1 ] && return 0 # done waiting
1946                 echo "Waiting ${WAIT}s for local destroys to complete"
1947                 WAIT=$((WAIT + 1))
1948         done
1949         echo "Local destroys weren't done in $MAX sec."
1950         return 1
1951 }
1952
1953 wait_delete_completed() {
1954         wait_delete_completed_mds $1 || return $?
1955         wait_destroy_complete
1956 }
1957
1958 wait_exit_ST () {
1959     local facet=$1
1960
1961     local WAIT=0
1962     local INTERVAL=1
1963     local running
1964     # conf-sanity 31 takes a long time cleanup
1965     while [ $WAIT -lt 300 ]; do
1966         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
1967         [ -z "${running}" ] && return 0
1968         echo "waited $WAIT for${running}"
1969         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
1970         sleep $INTERVAL
1971         WAIT=$((WAIT + INTERVAL))
1972     done
1973     echo "service didn't stop after $WAIT seconds.  Still running:"
1974     echo ${running}
1975     return 1
1976 }
1977
1978 wait_remote_prog () {
1979    local prog=$1
1980    local WAIT=0
1981    local INTERVAL=5
1982    local rc=0
1983
1984    [ "$PDSH" = "no_dsh" ] && return 0
1985
1986    while [ $WAIT -lt $2 ]; do
1987         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
1988         [ -z "${running}" ] && return 0 || true
1989         echo "waited $WAIT for: "
1990         echo "$running"
1991         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
1992         sleep $INTERVAL
1993         WAIT=$((WAIT + INTERVAL))
1994     done
1995     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
1996     [ -z "$pids" ] && return 0
1997     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
1998     # FIXME: not portable
1999     for pid in $pids; do
2000         cat /proc/${pid}/status || true
2001         cat /proc/${pid}/wchan || true
2002         echo "Killing $pid"
2003         kill -9 $pid || true
2004         sleep 1
2005         ps -P $pid && rc=1
2006     done
2007
2008     return $rc
2009 }
2010
2011 clients_up() {
2012     # not every config has many clients
2013     sleep 1
2014     if [ ! -z "$CLIENTS" ]; then
2015         $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
2016     else
2017         stat -f $MOUNT > /dev/null
2018     fi
2019 }
2020
2021 client_up() {
2022     local client=$1
2023     # usually checked on particular client or locally
2024     sleep 1
2025     if [ ! -z "$client" ]; then
2026         $PDSH $client "stat -f $MOUNT" > /dev/null
2027     else
2028         stat -f $MOUNT > /dev/null
2029     fi
2030 }
2031
2032 client_evicted() {
2033     ! client_up $1
2034 }
2035
2036 client_reconnect() {
2037     uname -n >> $MOUNT/recon
2038     if [ -z "$CLIENTS" ]; then
2039         df $MOUNT; uname -n >> $MOUNT/recon
2040     else
2041         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
2042     fi
2043     echo Connected clients:
2044     cat $MOUNT/recon
2045     ls -l $MOUNT/recon > /dev/null
2046     rm $MOUNT/recon
2047 }
2048
2049 affected_facets () {
2050     local facet=$1
2051
2052     local host=$(facet_active_host $facet)
2053     local affected=$facet
2054
2055     if [ "$FAILURE_MODE" = HARD ]; then
2056         affected=$(facets_up_on_host $host)
2057     fi
2058     echo $affected
2059 }
2060
2061 facet_failover() {
2062         local facets=$1
2063         local sleep_time=$2
2064         local -a affecteds
2065         local facet
2066         local total=0
2067         local index=0
2068         local skip
2069
2070         #Because it will only get up facets, we need get affected
2071         #facets before shutdown
2072         #For HARD Failure mode, it needs make sure facets on the same
2073         #HOST will only be shutdown and reboot once
2074         for facet in ${facets//,/ }; do
2075                 local affected_facet
2076                 skip=0
2077                 #check whether facet has been included in other affected facets
2078                 for ((index=0; index<$total; index++)); do
2079                         [[ *,$facet,* == ,${affecteds[index]}, ]] && skip=1
2080                 done
2081
2082                 if [ $skip -eq 0 ]; then
2083                         affecteds[$total]=$(affected_facets $facet)
2084                         total=$((total+1))
2085                 fi
2086         done
2087
2088         for ((index=0; index<$total; index++)); do
2089                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2090                 local host=$(facet_active_host $facet)
2091                 echo "Failing ${affecteds[index]} on $host"
2092                 shutdown_facet $facet
2093         done
2094
2095         for ((index=0; index<$total; index++)); do
2096                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2097                 echo reboot facets: ${affecteds[index]}
2098
2099                 reboot_facet $facet
2100
2101                 change_active ${affecteds[index]}
2102
2103                 wait_for_facet ${affecteds[index]}
2104                 # start mgs first if it is affected
2105                 if ! combined_mgs_mds &&
2106                         list_member ${affecteds[index]} mgs; then
2107                         mount_facet mgs || error "Restart of mgs failed"
2108                 fi
2109                 # FIXME; has to be changed to mount all facets concurrently
2110                 affected=$(exclude_items_from_list ${affecteds[index]} mgs)
2111                 echo mount facets: ${affecteds[index]}
2112                 mount_facets ${affecteds[index]}
2113         done
2114 }
2115
2116 obd_name() {
2117     local facet=$1
2118 }
2119
2120 replay_barrier() {
2121         local facet=$1
2122         do_facet $facet "sync; sync; sync"
2123         df $MOUNT
2124
2125         # make sure there will be no seq change
2126         local clients=${CLIENTS:-$HOSTNAME}
2127         local f=fsa-\\\$\(hostname\)
2128         do_nodes $clients "mcreate $MOUNT/$f; rm $MOUNT/$f"
2129         do_nodes $clients "if [ -d $MOUNT2 ]; then mcreate $MOUNT2/$f; rm $MOUNT2/$f; fi"
2130
2131         local svc=${facet}_svc
2132         do_facet $facet $LCTL --device ${!svc} notransno
2133         do_facet $facet $LCTL --device ${!svc} readonly
2134         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2135         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2136 }
2137
2138 replay_barrier_nodf() {
2139         local facet=$1    echo running=${running}
2140         do_facet $facet "sync; sync; sync"
2141         local svc=${facet}_svc
2142         echo Replay barrier on ${!svc}
2143         do_facet $facet $LCTL --device ${!svc} notransno
2144         do_facet $facet $LCTL --device ${!svc} readonly
2145         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2146         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2147 }
2148
2149 replay_barrier_nosync() {
2150         local facet=$1    echo running=${running}
2151         local svc=${facet}_svc
2152         echo Replay barrier on ${!svc}
2153         do_facet $facet $LCTL --device ${!svc} notransno
2154         do_facet $facet $LCTL --device ${!svc} readonly
2155         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2156         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2157 }
2158
2159 mds_evict_client() {
2160     UUID=`lctl get_param -n mdc.${mds1_svc}-mdc-*.uuid`
2161     do_facet mds1 "lctl set_param -n mdt.${mds1_svc}.evict_client $UUID"
2162 }
2163
2164 ost_evict_client() {
2165     UUID=`lctl get_param -n devices| grep ${ost1_svc}-osc- | egrep -v 'MDT' | awk '{print $5}'`
2166     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.evict_client $UUID"
2167 }
2168
2169 fail() {
2170     facet_failover $* || error "failover: $?"
2171     clients_up || error "post-failover df: $?"
2172 }
2173
2174 fail_nodf() {
2175         local facet=$1
2176         facet_failover $facet
2177 }
2178
2179 fail_abort() {
2180         local facet=$1
2181         stop $facet
2182         refresh_disk ${facet}
2183         change_active $facet
2184         wait_for_facet $facet
2185         mount_facet $facet -o abort_recovery
2186         clients_up || echo "first df failed: $?"
2187         clients_up || error "post-failover df: $?"
2188 }
2189
2190 do_lmc() {
2191     echo There is no lmc.  This is mountconf, baby.
2192     exit 1
2193 }
2194
2195 host_nids_address() {
2196     local nodes=$1
2197     local kind=$2
2198
2199     if [ -n "$kind" ]; then
2200         nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
2201     else
2202         nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
2203     fi
2204     echo $nids
2205 }
2206
2207 h2name_or_ip() {
2208     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2209         echo $1"@$2"
2210     fi
2211 }
2212
2213 h2ptl() {
2214    if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2215        ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | awk '{print $1}'`
2216        if [ -z "$ID" ]; then
2217            echo "Could not get a ptl id for $1..."
2218            exit 1
2219        fi
2220        echo $ID"@ptl"
2221    fi
2222 }
2223 declare -fx h2ptl
2224
2225 h2tcp() {
2226     h2name_or_ip "$1" "tcp"
2227 }
2228 declare -fx h2tcp
2229
2230 h2elan() {
2231     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2232         if type __h2elan >/dev/null 2>&1; then
2233             ID=$(__h2elan $1)
2234         else
2235             ID=`echo $1 | sed 's/[^0-9]*//g'`
2236         fi
2237         echo $ID"@elan"
2238     fi
2239 }
2240 declare -fx h2elan
2241
2242 h2o2ib() {
2243     h2name_or_ip "$1" "o2ib"
2244 }
2245 declare -fx h2o2ib
2246
2247 # This enables variables in cfg/"setup".sh files to support the pdsh HOSTLIST
2248 # expressions format. As a bonus we can then just pass in those variables
2249 # to pdsh. What this function does is take a HOSTLIST type string and
2250 # expand it into a space deliminated list for us.
2251 hostlist_expand() {
2252     local hostlist=$1
2253     local offset=$2
2254     local myList
2255     local item
2256     local list
2257
2258     [ -z "$hostlist" ] && return
2259
2260     # Translate the case of [..],..,[..] to [..] .. [..]
2261     list="${hostlist/],/] }"
2262     front=${list%%[*}
2263     [[ "$front" == *,* ]] && {
2264         new="${list%,*} "
2265         old="${list%,*},"
2266         list=${list/${old}/${new}}
2267     }
2268
2269     for item in $list; do
2270         # Test if we have any []'s at all
2271         if [ "$item" != "${item/\[/}" ]; then {
2272             # Expand the [*] into list
2273             name=${item%%[*}
2274             back=${item#*]}
2275
2276             if [ "$name" != "$item" ]; then
2277                 group=${item#$name[*}
2278                 group=${group%%]*}
2279
2280                 for range in ${group//,/ }; do
2281                     begin=${range%-*}
2282                     end=${range#*-}
2283
2284                     # Number of leading zeros
2285                     padlen=${#begin}
2286                     padlen2=${#end}
2287                     end=$(echo $end | sed 's/0*//')
2288                     [[ -z "$end" ]] && end=0
2289                     [[ $padlen2 -gt $padlen ]] && {
2290                         [[ $padlen2 -eq ${#end} ]] && padlen2=0
2291                         padlen=$padlen2
2292                     }
2293                     begin=$(echo $begin | sed 's/0*//')
2294                     [ -z $begin ] && begin=0
2295
2296                     for num in $(seq -f "%0${padlen}g" $begin $end); do
2297                         value="${name#*,}${num}${back}"
2298                         [ "$value" != "${value/\[/}" ] && {
2299                             value=$(hostlist_expand "$value")
2300                         }
2301                         myList="$myList $value"
2302                     done
2303                 done
2304             fi
2305         } else {
2306             myList="$myList $item"
2307         } fi
2308     done
2309     myList=${myList//,/ }
2310     myList=${myList:1} # Remove first character which is a space
2311
2312     # Filter any duplicates without sorting
2313     list="$myList "
2314     myList="${list%% *}"
2315
2316     while [[ "$list" != ${myList##* } ]]; do
2317         list=${list//${list%% *} /}
2318         myList="$myList ${list%% *}"
2319     done
2320     myList="${myList%* }";
2321
2322     # We can select an object at a offset in the list
2323     [ $# -eq 2 ] && {
2324         cnt=0
2325         for item in $myList; do
2326             let cnt=cnt+1
2327             [ $cnt -eq $offset ] && {
2328                 myList=$item
2329             }
2330         done
2331         [ $(get_node_count $myList) -ne 1 ] && myList=""
2332     }
2333     echo $myList
2334 }
2335
2336 facet_host() {
2337         local facet=$1
2338         local varname
2339
2340         [ "$facet" == client ] && echo -n $HOSTNAME && return
2341         varname=${facet}_HOST
2342         if [ -z "${!varname}" ]; then
2343                 if [ "${facet:0:3}" == "ost" ]; then
2344                         eval export ${facet}_HOST=${ost_HOST}
2345                 elif [ "${facet:0:3}" == "mdt" -o \
2346                         "${facet:0:3}" == "mds" -o \
2347                         "${facet:0:3}" == "mgs" ]; then
2348                         eval export ${facet}_HOST=${mds_HOST}
2349                 fi
2350         fi
2351         echo -n ${!varname}
2352 }
2353
2354 facet_failover_host() {
2355         local facet=$1
2356         local varname
2357
2358         var=${facet}failover_HOST
2359         if [ -n "${!var}" ]; then
2360                 echo ${!var}
2361                 return
2362         fi
2363
2364         if [ "${facet:0:3}" == "mdt" -o "${facet:0:3}" == "mds" -o \
2365              "${facet:0:3}" == "mgs" ]; then
2366
2367                 eval export ${facet}failover_host=${mds_HOST}
2368                 echo ${mds_HOST}
2369                 return
2370         fi
2371
2372         if [[ $facet == ost* ]]; then
2373                 eval export ${facet}failover_host=${ost_HOST}
2374                 echo ${ost_HOST}
2375                 return
2376         fi
2377 }
2378
2379 facet_active() {
2380     local facet=$1
2381     local activevar=${facet}active
2382
2383     if [ -f $TMP/${facet}active ] ; then
2384         source $TMP/${facet}active
2385     fi
2386
2387     active=${!activevar}
2388     if [ -z "$active" ] ; then
2389         echo -n ${facet}
2390     else
2391         echo -n ${active}
2392     fi
2393 }
2394
2395 facet_active_host() {
2396     local facet=$1
2397     local active=`facet_active $facet`
2398     if [ "$facet" == client ]; then
2399         echo $HOSTNAME
2400     else
2401         echo `facet_host $active`
2402     fi
2403 }
2404
2405 change_active() {
2406     local facetlist=$1
2407     local facet
2408
2409     facetlist=$(exclude_items_from_list $facetlist mgs)
2410
2411     for facet in ${facetlist//,/ }; do
2412     local failover=${facet}failover
2413     local host=`facet_host $failover`
2414     [ -z "$host" ] && return
2415
2416     local curactive=`facet_active $facet`
2417     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
2418         eval export ${facet}active=$facet
2419     else
2420         eval export ${facet}active=$failover
2421     fi
2422     # save the active host for this facet
2423     local activevar=${facet}active
2424     echo "$activevar=${!activevar}" > $TMP/$activevar
2425     [[ $facet = mds1 ]] && combined_mgs_mds && \
2426         echo "mgsactive=${!activevar}" > $TMP/mgsactive
2427     local TO=`facet_active_host $facet`
2428     echo "Failover $facet to $TO"
2429     done
2430 }
2431
2432 do_node() {
2433     local verbose=false
2434     # do not stripe off hostname if verbose, bug 19215
2435     if [ x$1 = x--verbose ]; then
2436         shift
2437         verbose=true
2438     fi
2439
2440     local HOST=$1
2441     shift
2442     local myPDSH=$PDSH
2443     if [ "$HOST" = "$HOSTNAME" ]; then
2444         myPDSH="no_dsh"
2445     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
2446         echo "cannot run remote command on $HOST with $myPDSH"
2447         return 128
2448     fi
2449     if $VERBOSE; then
2450         echo "CMD: $HOST $@" >&2
2451         $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2452     fi
2453
2454     if [ "$myPDSH" = "rsh" ]; then
2455 # we need this because rsh does not return exit code of an executed command
2456         local command_status="$TMP/cs"
2457         rsh $HOST ":> $command_status"
2458         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
2459                     cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
2460                     echo command failed >$command_status"
2461         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
2462         return 0
2463     fi
2464
2465     if $verbose ; then
2466         # print HOSTNAME for myPDSH="no_dsh"
2467         if [[ $myPDSH = no_dsh ]]; then
2468             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
2469         else
2470             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
2471         fi
2472     else
2473         $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
2474     fi
2475     return ${PIPESTATUS[0]}
2476 }
2477
2478 do_nodev() {
2479     do_node --verbose "$@"
2480 }
2481
2482 single_local_node () {
2483    [ "$1" = "$HOSTNAME" ]
2484 }
2485
2486 # Outputs environment variable assignments that should be passed to remote nodes
2487 get_env_vars() {
2488         local var
2489         local value
2490         local facets=$(get_facets)
2491         local facet
2492
2493         for var in ${!MODOPTS_*}; do
2494                 value=${!var}
2495                 echo -n " ${var}=\"$value\""
2496         done
2497
2498         for facet in ${facets//,/ }; do
2499                 var=${facet}_FSTYPE
2500                 if [ -n "${!var}" ]; then
2501                         echo -n " $var=${!var}"
2502                 fi
2503         done
2504
2505         for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
2506                 if [ -n "${!var}" ]; then
2507                         echo -n " $var=${!var}"
2508                 fi
2509         done
2510
2511         if [ -n "$FSTYPE" ]; then
2512                 echo -n " FSTYPE=$FSTYPE"
2513         fi
2514 }
2515
2516 do_nodes() {
2517     local verbose=false
2518     # do not stripe off hostname if verbose, bug 19215
2519     if [ x$1 = x--verbose ]; then
2520         shift
2521         verbose=true
2522     fi
2523
2524     local rnodes=$1
2525     shift
2526
2527     if single_local_node $rnodes; then
2528         if $verbose; then
2529            do_nodev $rnodes "$@"
2530         else
2531            do_node $rnodes "$@"
2532         fi
2533         return $?
2534     fi
2535
2536     # This is part from do_node
2537     local myPDSH=$PDSH
2538
2539     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
2540         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
2541
2542     export FANOUT=$(get_node_count "${rnodes//,/ }")
2543     if $VERBOSE; then
2544         echo "CMD: $rnodes $@" >&2
2545         $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2546     fi
2547
2548     # do not replace anything from pdsh output if -N is used
2549     # -N     Disable hostname: prefix on lines of output.
2550     if $verbose || [[ $myPDSH = *-N* ]]; then
2551         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
2552     else
2553         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
2554     fi
2555     return ${PIPESTATUS[0]}
2556 }
2557
2558 do_facet() {
2559     local facet=$1
2560     shift
2561     local HOST=`facet_active_host $facet`
2562     [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
2563     do_node $HOST "$@"
2564 }
2565
2566 # Function: do_facet_random_file $FACET $FILE $SIZE
2567 # Creates FILE with random content on the given FACET of given SIZE
2568
2569 do_facet_random_file() {
2570         local facet="$1"
2571         local fpath="$2"
2572         local fsize="$3"
2573         local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
2574         do_facet $facet "$cmd 2>/dev/null"
2575 }
2576
2577 do_facet_create_file() {
2578         local facet="$1"
2579         local fpath="$2"
2580         local fsize="$3"
2581         local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
2582         do_facet $facet "$cmd 2>/dev/null"
2583 }
2584
2585 do_nodesv() {
2586     do_nodes --verbose "$@"
2587 }
2588
2589 add() {
2590     local facet=$1
2591     shift
2592     # make sure its not already running
2593     stop ${facet} -f
2594     rm -f $TMP/${facet}active
2595     [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
2596     do_facet ${facet} $MKFS $*
2597 }
2598
2599 ostdevname() {
2600     num=$1
2601     DEVNAME=OSTDEV$num
2602
2603         local fstype=$(facet_fstype ost$num)
2604
2605         case $fstype in
2606                 ldiskfs )
2607                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2608                         eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2609                 zfs )
2610                         #dataset name is independent of vdev device names
2611                         eval DEVPTR=${FSNAME}-ost${num}/ost${num};;
2612                 * )
2613                         error "unknown fstype!";;
2614         esac
2615
2616     echo -n $DEVPTR
2617 }
2618
2619 ostvdevname() {
2620         num=$1
2621         DEVNAME=OSTDEV$num
2622
2623         local fstype=$(facet_fstype ost$num)
2624
2625         case $fstype in
2626                 ldiskfs )
2627                         # vdevs are not supported by ldiskfs
2628                         eval VDEVPTR="";;
2629                 zfs )
2630                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2631                         eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2632                 * )
2633                         error "unknown fstype!";;
2634         esac
2635
2636         echo -n $VDEVPTR
2637 }
2638
2639 mdsdevname() {
2640     num=$1
2641     DEVNAME=MDSDEV$num
2642
2643         local fstype=$(facet_fstype mds$num)
2644
2645         case $fstype in
2646                 ldiskfs )
2647                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2648                         eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2649                 zfs )
2650                         #dataset name is independent of vdev device names
2651                         eval DEVPTR=${FSNAME}-mdt${num}/mdt${num};;
2652                 * )
2653                         error "unknown fstype!";;
2654         esac
2655
2656         echo -n $DEVPTR
2657 }
2658
2659 mdsvdevname() {
2660         num=$1
2661         DEVNAME=MDSDEV$num
2662
2663         local fstype=$(facet_fstype mds$num)
2664
2665         case $fstype in
2666                 ldiskfs )
2667                         # vdevs are not supported by ldiskfs
2668                         eval VDEVPTR="";;
2669                 zfs )
2670                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2671                         eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2672                 * )
2673                         error "unknown fstype!";;
2674         esac
2675
2676         echo -n $VDEVPTR
2677 }
2678
2679 mgsdevname() {
2680         local DEVPTR
2681         local fstype=$(facet_fstype mgs)
2682
2683         case $fstype in
2684         ldiskfs )
2685                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2686                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsdevname 1) ] ); then
2687                         DEVPTR=$(mdsdevname 1)
2688                 else
2689                         DEVPTR=$MGSDEV
2690                 fi;;
2691         zfs )
2692                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2693                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2694                         DEVPTR=$(mdsdevname 1)
2695                 else
2696                         DEVPTR=${FSNAME}-mgs/mgs
2697                 fi;;
2698         * )
2699                 error "unknown fstype!";;
2700         esac
2701
2702         echo -n $DEVPTR
2703 }
2704
2705 mgsvdevname() {
2706         local VDEVPTR
2707         DEVNAME=MGSDEV
2708
2709         local fstype=$(facet_fstype mgs)
2710
2711         case $fstype in
2712         ldiskfs )
2713                 # vdevs are not supported by ldiskfs
2714                 ;;
2715         zfs )
2716                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2717                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2718                         VDEVPTR=$(mdsvdevname 1)
2719                 else
2720                         VDEVPTR=$MGSDEV
2721                 fi;;
2722         * )
2723                 error "unknown fstype!";;
2724         esac
2725
2726         echo -n $VDEVPTR
2727 }
2728
2729 facet_mntpt () {
2730     local facet=$1
2731     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
2732
2733     local var=${facet}_MOUNT
2734     eval mntpt=${!var:-${MOUNT%/*}/$facet}
2735
2736     echo -n $mntpt
2737 }
2738
2739 ########
2740 ## MountConf setup
2741
2742 stopall() {
2743     # make sure we are using the primary server, so test-framework will
2744     # be able to clean up properly.
2745     activemds=`facet_active mds1`
2746     if [ $activemds != "mds1" ]; then
2747         fail mds1
2748     fi
2749
2750     local clients=$CLIENTS
2751     [ -z $clients ] && clients=$(hostname)
2752
2753     zconf_umount_clients $clients $MOUNT "$*" || true
2754     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
2755
2756     [ "$CLIENTONLY" ] && return
2757     # The add fn does rm ${facet}active file, this would be enough
2758     # if we use do_facet <facet> only after the facet added, but
2759     # currently we use do_facet mds in local.sh
2760     for num in `seq $MDSCOUNT`; do
2761         stop mds$num -f
2762         rm -f ${TMP}/mds${num}active
2763     done
2764     combined_mgs_mds && rm -f $TMP/mgsactive
2765
2766     for num in `seq $OSTCOUNT`; do
2767         stop ost$num -f
2768         rm -f $TMP/ost${num}active
2769     done
2770
2771     if ! combined_mgs_mds ; then
2772         stop mgs
2773     fi
2774
2775     return 0
2776 }
2777
2778 cleanup_echo_devs () {
2779     local devs=$($LCTL dl | grep echo | awk '{print $4}')
2780
2781     for dev in $devs; do
2782         $LCTL --device $dev cleanup
2783         $LCTL --device $dev detach
2784     done
2785 }
2786
2787 cleanupall() {
2788     nfs_client_mode && return
2789
2790     stopall $*
2791     cleanup_echo_devs
2792
2793     unload_modules
2794     cleanup_gss
2795 }
2796
2797 combined_mgs_mds () {
2798         [[ "$(mdsdevname 1)" = "$(mgsdevname)" ]] &&
2799                 [[ "$(facet_host mds1)" = "$(facet_host mgs)" ]]
2800 }
2801
2802 lower() {
2803         echo -n "$1" | tr '[:upper:]' '[:lower:]'
2804 }
2805
2806 upper() {
2807         echo -n "$1" | tr '[:lower:]' '[:upper:]'
2808 }
2809
2810 mkfs_opts() {
2811         local facet=$1
2812         local dev=$2
2813         local fsname=${3:-"$FSNAME"}
2814         local type=$(facet_type $facet)
2815         local index=$(($(facet_number $facet) - 1))
2816         local fstype=$(facet_fstype $facet)
2817         local host=$(facet_host $facet)
2818         local opts
2819         local fs_mkfs_opts
2820         local var
2821
2822         if [ $type == MGS ] && combined_mgs_mds; then
2823                 return 1
2824         fi
2825
2826         if [ $type == MGS ] || ( [ $type == MDS ] &&
2827                                  [ "$dev" == $(mgsdevname) ] &&
2828                                  [ "$host" == "$(facet_host mgs)" ] ); then
2829                 opts="--mgs"
2830         else
2831                 opts="--mgsnode=$MGSNID"
2832         fi
2833
2834         if [ $type != MGS ]; then
2835                 opts+=" --fsname=$fsname --$(lower ${type/MDS/MDT}) \
2836                         --index=$index"
2837         fi
2838
2839         var=${facet}failover_HOST
2840         if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
2841                 opts+=" --failnode=$(h2$NETTYPE ${!var})"
2842         fi
2843
2844         opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
2845         opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
2846
2847         if [ $type == MDS ]; then
2848                 opts+=${SECLEVEL:+" --param=mdt.sec_level"}
2849                 opts+=${MDSCAPA:+" --param-mdt.capa=$MDSCAPA"}
2850                 opts+=${STRIPE_BYTES:+" --param=lov.stripesize=$STRIPE_BYTES"}
2851                 opts+=${STRIPES_PER_OBJ:+" --param=lov.stripecount=$STRIPES_PER_OBJ"}
2852                 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
2853
2854                 if [ $fstype == ldiskfs ]; then
2855                         fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
2856                         fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
2857                 fi
2858         fi
2859
2860         if [ $type == OST ]; then
2861                 opts+=${SECLEVEL:+" --param=ost.sec_level"}
2862                 opts+=${OSSCAPA:+" --param=ost.capa=$OSSCAPA"}
2863
2864                 if [ $fstype == ldiskfs ]; then
2865                         fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
2866                 fi
2867         fi
2868
2869         opts+=" --backfstype=$fstype"
2870
2871         var=${type}SIZE
2872         if [ -n "${!var}" ]; then
2873                 opts+=" --device-size=${!var}"
2874         fi
2875
2876         var=$(upper $fstype)_MKFS_OPTS
2877         fs_mkfs_opts+=${!var:+" ${!var}"}
2878
2879         var=${type}_FS_MKFS_OPTS
2880         fs_mkfs_opts+=${!var:+" ${!var}"}
2881
2882         if [ -n "${fs_mkfs_opts## }" ]; then
2883                 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
2884         fi
2885
2886         var=${type}OPT
2887         opts+=${!var:+" ${!var}"}
2888
2889         echo -n "$opts"
2890 }
2891
2892 formatall() {
2893         local quiet
2894
2895         if ! $VERBOSE; then
2896                 quiet=yes
2897         fi
2898
2899         stopall
2900         # We need ldiskfs here, may as well load them all
2901         load_modules
2902         [ "$CLIENTONLY" ] && return
2903         echo Formatting mgs, mds, osts
2904         if ! combined_mgs_mds ; then
2905                 echo "Format mgs: $(mgsdevname)"
2906                 add mgs $(mkfs_opts mgs $(mgsdevname)) --reformat \
2907                         $(mgsdevname) $(mgsvdevname) ${quiet:+>/dev/null} ||
2908                         exit 10
2909         fi
2910
2911         for num in $(seq $MDSCOUNT); do
2912                 echo "Format mds$num: $(mdsdevname $num)"
2913                 add mds$num $(mkfs_opts mds$num $(mdsdevname ${num})) \
2914                         --reformat $(mdsdevname $num) $(mdsvdevname $num) \
2915                         ${quiet:+>/dev/null} || exit 10
2916         done
2917
2918         for num in $(seq $OSTCOUNT); do
2919                 echo "Format ost$num: $(ostdevname $num)"
2920                 add ost$num $(mkfs_opts ost$num $(ostdevname ${num})) \
2921                         --reformat $(ostdevname $num) $(ostvdevname ${num}) \
2922                         ${quiet:+>/dev/null} || exit 10
2923         done
2924 }
2925
2926 mount_client() {
2927     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
2928 }
2929
2930 umount_client() {
2931     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
2932 }
2933
2934 # return value:
2935 # 0: success, the old identity set already.
2936 # 1: success, the old identity does not set.
2937 # 2: fail.
2938 switch_identity() {
2939     local num=$1
2940     local switch=$2
2941     local j=`expr $num - 1`
2942     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
2943
2944     if [ -z "$MDT" ]; then
2945         return 2
2946     fi
2947
2948     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
2949
2950     if $switch; then
2951         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
2952     else
2953         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
2954     fi
2955
2956     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
2957
2958     if [ $old = "NONE" ]; then
2959         return 1
2960     else
2961         return 0
2962     fi
2963 }
2964
2965 remount_client()
2966 {
2967         zconf_umount `hostname` $1 || error "umount failed"
2968         zconf_mount `hostname` $1 || error "mount failed"
2969 }
2970
2971 writeconf_facet() {
2972         local facet=$1
2973         local dev=$2
2974
2975         stop ${facet} -f
2976         rm -f ${facet}active
2977         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" || return 1
2978         return 0
2979 }
2980
2981 writeconf_all () {
2982         local mdt_count=${1:-$MDSCOUNT}
2983         local ost_count=${2:-$OSTCOUNT}
2984         local rc=0
2985
2986         for num in $(seq $mdt_count); do
2987                 DEVNAME=$(mdsdevname $num)
2988                 writeconf_facet mds$num $DEVNAME || rc=$?
2989         done
2990
2991         for num in $(seq $ost_count); do
2992                 DEVNAME=$(ostdevname $num)
2993                 writeconf_facet ost$num $DEVNAME || rc=$?
2994         done
2995         return $rc
2996 }
2997
2998 setupall() {
2999     nfs_client_mode && return
3000
3001     sanity_mount_check ||
3002         error "environments are insane!"
3003
3004     load_modules
3005
3006     if [ -z "$CLIENTONLY" ]; then
3007         echo Setup mgs, mdt, osts
3008         echo $WRITECONF | grep -q "writeconf" && \
3009             writeconf_all
3010         if ! combined_mgs_mds ; then
3011                         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
3012         fi
3013
3014         for num in `seq $MDSCOUNT`; do
3015             DEVNAME=$(mdsdevname $num)
3016             start mds$num $DEVNAME $MDS_MOUNT_OPTS
3017
3018             # We started mds, now we should set failover variables properly.
3019             # Set mds${num}failover_HOST if it is not set (the default failnode).
3020             local varname=mds${num}failover_HOST
3021             if [ -z "${!varname}" ]; then
3022                 eval mds${num}failover_HOST=$(facet_host mds$num)
3023             fi
3024
3025             if [ $IDENTITY_UPCALL != "default" ]; then
3026                 switch_identity $num $IDENTITY_UPCALL
3027             fi
3028         done
3029         for num in `seq $OSTCOUNT`; do
3030             DEVNAME=$(ostdevname $num)
3031             start ost$num $DEVNAME $OST_MOUNT_OPTS
3032
3033             # We started ost$num, now we should set ost${num}failover variable properly.
3034             # Set ost${num}failover_HOST if it is not set (the default failnode).
3035             varname=ost${num}failover_HOST
3036             if [ -z "${!varname}" ]; then
3037                 eval ost${num}failover_HOST=$(facet_host ost${num})
3038             fi
3039
3040         done
3041     fi
3042
3043     init_gss
3044
3045     # wait a while to allow sptlrpc configuration be propogated to targets,
3046     # only needed when mounting new target devices.
3047     if $GSS; then
3048         sleep 10
3049     fi
3050
3051     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
3052     mount_client $MOUNT
3053     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
3054     clients_up
3055
3056     if [ "$MOUNT_2" ]; then
3057         mount_client $MOUNT2
3058         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
3059     fi
3060
3061     init_param_vars
3062
3063     # by remounting mdt before ost, initial connect from mdt to ost might
3064     # timeout because ost is not ready yet. wait some time to its fully
3065     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
3066     # by a context negotiation rpc with $TIMEOUT.
3067     # FIXME better by monitoring import status.
3068     if $GSS; then
3069         set_flavor_all $SEC
3070         sleep $((TIMEOUT + 5))
3071     else
3072         sleep 5
3073     fi
3074 }
3075
3076 mounted_lustre_filesystems() {
3077         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
3078 }
3079
3080 init_facet_vars () {
3081         [ "$CLIENTONLY" ] && return 0
3082         local facet=$1
3083         shift
3084         local device=$1
3085
3086         shift
3087
3088         eval export ${facet}_dev=${device}
3089         eval export ${facet}_opt=\"$@\"
3090
3091         local dev=${facet}_dev
3092
3093         # We need to loop for the label
3094         # in case its not initialized yet.
3095         for wait_time in {0,1,3,5,10}; do
3096
3097                 if [ $wait_time -gt 0 ]; then
3098                         echo "${!dev} not yet initialized,"\
3099                                 "waiting ${wait_time} seconds."
3100                         sleep $wait_time
3101                 fi
3102
3103                 local label=$(devicelabel ${facet} ${!dev})
3104
3105                 # Check to make sure the label does
3106                 # not include ffff at the end of the label.
3107                 # This indicates it has not been initialized yet.
3108
3109                 if [[ $label =~ [f|F]{4}$ ]]; then
3110                         # label is not initialized, unset the result
3111                         # and either try again or fail
3112                         unset label
3113                 else
3114                         break
3115                 fi
3116         done
3117
3118         [ -z "$label" ] && echo no label for ${!dev} && exit 1
3119
3120         eval export ${facet}_svc=${label}
3121
3122         local varname=${facet}failover_HOST
3123         if [ -z "${!varname}" ]; then
3124                 eval export $varname=$(facet_host $facet)
3125         fi
3126
3127         varname=${facet}_HOST
3128         if [ -z "${!varname}" ]; then
3129                 eval export $varname=$(facet_host $facet)
3130         fi
3131
3132         # ${facet}failover_dev is set in cfg file
3133         varname=${facet}failover_dev
3134         if [ -n "${!varname}" ] ; then
3135                 eval export ${facet}failover_dev=${!varname}
3136         else
3137                 eval export ${facet}failover_dev=$device
3138         fi
3139
3140         # get mount point of already mounted device
3141         # is facet_dev is already mounted then use the real
3142         #  mount point of this facet; otherwise use $(facet_mntpt $facet)
3143         # i.e. ${facet}_MOUNT if specified by user or default
3144         local mntpt=$(do_facet ${facet} cat /proc/mounts | \
3145                         awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
3146         if [ -z $mntpt ]; then
3147                 mntpt=$(facet_mntpt $facet)
3148         fi
3149         eval export ${facet}_MOUNT=$mntpt
3150 }
3151
3152 init_facets_vars () {
3153         local DEVNAME
3154
3155         if ! remote_mds_nodsh; then
3156                 for num in $(seq $MDSCOUNT); do
3157                         DEVNAME=`mdsdevname $num`
3158                         eval export MDSDEV${num}=$DEVNAME
3159                         init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
3160                 done
3161         fi
3162
3163         eval export MGSDEV=$(mgsdevname)
3164         combined_mgs_mds || init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
3165
3166         if ! remote_ost_nodsh; then
3167                 for num in $(seq $OSTCOUNT); do
3168                         DEVNAME=$(ostdevname $num)
3169                         eval export OSTDEV${num}=$DEVNAME
3170                         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
3171                 done
3172         fi
3173 }
3174
3175 osc_ensure_active () {
3176     local facet=$1
3177     local timeout=$2
3178     local period=0
3179
3180     while [ $period -lt $timeout ]; do
3181         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
3182         if [ $count -eq 0 ]; then
3183             break
3184         fi
3185
3186         echo "There are $count OST are inactive, wait $period seconds, and try again"
3187         sleep 3
3188         period=$((period+3))
3189     done
3190
3191     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
3192 }
3193
3194 set_conf_param_and_check() {
3195         local myfacet=$1
3196         local TEST=$2
3197         local PARAM=$3
3198         local ORIG=$(do_facet $myfacet "$TEST")
3199         if [ $# -gt 3 ]; then
3200                 local FINAL=$4
3201         else
3202                 local -i FINAL
3203                 FINAL=$((ORIG + 5))
3204         fi
3205         echo "Setting $PARAM from $ORIG to $FINAL"
3206         do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
3207                 error "conf_param $PARAM failed"
3208
3209         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" ||
3210                 error "check $PARAM failed!"
3211 }
3212
3213 init_param_vars () {
3214         remote_mds_nodsh ||
3215                 TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3216
3217         log "Using TIMEOUT=$TIMEOUT"
3218
3219         osc_ensure_active $SINGLEMDS $TIMEOUT
3220         osc_ensure_active client $TIMEOUT
3221
3222         local jobid_var
3223         if [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ]; then
3224                 jobid_var="none"
3225         elif [ $JOBSTATS_AUTO -ne 0 ]; then
3226                 echo "enable jobstats, set job scheduler as $JOBID_VAR"
3227                 jobid_var=$JOBID_VAR
3228         else
3229                 jobid_var=`$LCTL get_param -n jobid_var`
3230                 if [ $jobid_var != "disable" ]; then
3231                         echo "disable jobstats as required"
3232                         jobid_var="disable"
3233                 else
3234                         jobid_var="none"
3235                 fi
3236         fi
3237
3238         if [ $jobid_var == $JOBID_VAR -o $jobid_var == "disable" ]; then
3239                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$jobid_var
3240                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
3241                         $jobid_var || return 1
3242         fi
3243
3244         if [ $QUOTA_AUTO -ne 0 ]; then
3245                 if [ "$ENABLE_QUOTA" ]; then
3246                         echo "enable quota as required"
3247                         setup_quota $MOUNT || return 2
3248                 else
3249                         echo "disable quota as required"
3250                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
3251                 fi
3252         fi
3253         return 0
3254 }
3255
3256 nfs_client_mode () {
3257     if [ "$NFSCLIENT" ]; then
3258         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
3259         local clients=$CLIENTS
3260         [ -z $clients ] && clients=$(hostname)
3261
3262         # FIXME: remove hostname when 19215 fixed
3263         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
3264         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
3265         if [[ ${#nfsexport[@]} -eq 0 ]]; then
3266                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
3267         fi
3268         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
3269         return
3270     fi
3271     return 1
3272 }
3273
3274 check_config_client () {
3275     local mntpt=$1
3276
3277     local mounted=$(mount | grep " $mntpt ")
3278     if [ "$CLIENTONLY" ]; then
3279         # bug 18021
3280         # CLIENTONLY should not depend on *_HOST settings
3281         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
3282         # in theory someone could create a new,
3283         # client-only config file that assumed lustre was already
3284         # configured and didn't set the MGSNID. If MGSNID is not set,
3285         # then we should use the mgs nid currently being used 
3286         # as the default value. bug 18021
3287         [[ x$MGSNID = x ]] &&
3288             MGSNID=${mgc//MGC/}
3289
3290         if [[ x$mgc != xMGC$MGSNID ]]; then
3291             if [ "$mgs_HOST" ]; then
3292                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
3293 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
3294 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
3295             fi
3296         fi
3297         return 0
3298     fi
3299
3300     local myMGS_host=$mgs_HOST   
3301     if [ "$NETTYPE" = "ptl" ]; then
3302         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
3303     fi
3304
3305     echo Checking config lustre mounted on $mntpt
3306     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
3307     mgshost=$(echo $mgshost | awk -F: '{print $1}')
3308
3309 #    if [ "$mgshost" != "$myMGS_host" ]; then
3310 #            log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
3311 #                   Please use correct config or set mds_HOST correctly!"
3312 #    fi
3313
3314 }
3315
3316 check_config_clients () {
3317         local clients=${CLIENTS:-$HOSTNAME}
3318         local mntpt=$1
3319
3320         nfs_client_mode && return
3321
3322         do_rpc_nodes "$clients" check_config_client $mntpt
3323
3324         sanity_mount_check || error "environments are insane!"
3325 }
3326
3327 check_timeout () {
3328     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3329     local cltimeout=$(lctl get_param -n timeout)
3330     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
3331         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
3332         return 1
3333     fi
3334 }
3335
3336 is_mounted () {
3337     local mntpt=$1
3338     [ -z $mntpt ] && return 1
3339     local mounted=$(mounted_lustre_filesystems)
3340
3341     echo $mounted' ' | grep -w -q $mntpt' '
3342 }
3343
3344 is_empty_dir() {
3345     [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
3346     return 1
3347 }
3348
3349 # empty lustre filesystem may have empty directories lost+found and .lustre
3350 is_empty_fs() {
3351     [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
3352        -print | wc -l) = 1 ] || return 1
3353     [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found && return 0
3354     [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre && return 0
3355     return 1
3356 }
3357
3358 check_and_setup_lustre() {
3359     nfs_client_mode && return
3360
3361     local MOUNTED=$(mounted_lustre_filesystems)
3362
3363     local do_check=true
3364     # 1.
3365     # both MOUNT and MOUNT2 are not mounted
3366     if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
3367         [ "$REFORMAT" ] && formatall
3368         # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
3369         setupall
3370         is_mounted $MOUNT || error "NAME=$NAME not mounted"
3371         export I_MOUNTED=yes
3372         do_check=false
3373     # 2.
3374     # MOUNT2 is mounted
3375     elif is_mounted $MOUNT2; then
3376             # 3.
3377             # MOUNT2 is mounted, while MOUNT_2 is not set
3378             if ! [ "$MOUNT_2" ]; then
3379                 cleanup_mount $MOUNT2
3380                 export I_UMOUNTED2=yes
3381
3382             # 4.
3383             # MOUNT2 is mounted, MOUNT_2 is set
3384             else
3385                 # FIXME: what to do if check_config failed?
3386                 # i.e. if:
3387                 # 1) remote client has mounted other Lustre fs ?
3388                 # 2) it has insane env ?
3389                 # let's try umount MOUNT2 on all clients and mount it again:
3390                 if ! check_config_clients $MOUNT2; then
3391                     cleanup_mount $MOUNT2
3392                     restore_mount $MOUNT2
3393                     export I_MOUNTED2=yes
3394                 fi
3395             fi 
3396
3397     # 5.
3398     # MOUNT is mounted MOUNT2 is not mounted
3399     elif [ "$MOUNT_2" ]; then
3400         restore_mount $MOUNT2
3401         export I_MOUNTED2=yes
3402     fi
3403
3404     if $do_check; then
3405         # FIXME: what to do if check_config failed?
3406         # i.e. if:
3407         # 1) remote client has mounted other Lustre fs?
3408         # 2) lustre is mounted on remote_clients atall ?
3409         check_config_clients $MOUNT
3410         init_facets_vars
3411         init_param_vars
3412
3413         set_default_debug_nodes $(comma_list $(nodes_list))
3414     fi
3415
3416         init_gss
3417         if $GSS; then
3418                 set_flavor_all $SEC
3419         fi
3420
3421         if [ "$ONLY" == "setup" ]; then
3422                 exit 0
3423         fi
3424 }
3425
3426 restore_mount () {
3427    local clients=${CLIENTS:-$HOSTNAME}
3428    local mntpt=$1
3429
3430    zconf_mount_clients $clients $mntpt
3431 }
3432
3433 cleanup_mount () {
3434     local clients=${CLIENTS:-$HOSTNAME}
3435     local mntpt=$1
3436
3437     zconf_umount_clients $clients $mntpt    
3438 }
3439
3440 cleanup_and_setup_lustre() {
3441     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
3442         lctl set_param debug=0 || true
3443         cleanupall
3444         if [ "$ONLY" == "cleanup" ]; then
3445             exit 0
3446         fi
3447     fi
3448     check_and_setup_lustre
3449 }
3450
3451 # Get all of the server target devices from a given server node and type.
3452 get_mnt_devs() {
3453         local node=$1
3454         local type=$2
3455         local devs
3456         local dev
3457
3458         if [ "$type" == ost ]; then
3459                 devs=$(get_osd_param $node "" mntdev)
3460         else
3461                 devs=$(do_node $node \
3462                        "lctl get_param -n osd-*.$FSNAME-M*.mntdev")
3463         fi
3464         for dev in $devs; do
3465                 case $dev in
3466                 *loop*) do_node $node "losetup $dev" | \
3467                                 sed -e "s/.*(//" -e "s/).*//" ;;
3468                 *) echo $dev ;;
3469                 esac
3470         done
3471 }
3472
3473 # Get all of the server target devices.
3474 get_svr_devs() {
3475     local i
3476
3477     # MDT device
3478     MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
3479
3480     # OST devices
3481     i=0
3482     for node in $(osts_nodes); do
3483         OSTDEVS[i]=$(get_mnt_devs $node ost)
3484         i=$((i + 1))
3485     done
3486 }
3487
3488 # Run e2fsck on MDT or OST device.
3489 run_e2fsck() {
3490     local node=$1
3491     local target_dev=$2
3492     local extra_opts=$3
3493
3494     df > /dev/null      # update statfs data on disk
3495     local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
3496     echo $cmd
3497     local rc=0
3498     do_node $node $cmd || rc=$?
3499     [ $rc -le $FSCK_MAX_ERR ] || \
3500         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3501     return 0
3502 }
3503
3504 # verify a directory is shared among nodes.
3505 check_shared_dir() {
3506         local dir=$1
3507
3508         [ -z "$dir" ] && return 1
3509         do_rpc_nodes "$(comma_list $(nodes_list))" check_logdir $dir
3510         check_write_access $dir || return 1
3511         return 0
3512 }
3513
3514 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
3515 generate_db() {
3516     local i
3517     local ostidx
3518     local dev
3519
3520         [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
3521                 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
3522
3523     check_shared_dir $SHARED_DIRECTORY ||
3524         error "$SHARED_DIRECTORY isn't a shared directory"
3525
3526     export MDSDB=$SHARED_DIRECTORY/mdsdb
3527     export OSTDB=$SHARED_DIRECTORY/ostdb
3528
3529     [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
3530
3531     run_e2fsck $(mdts_nodes) $MDTDEV "-n --mdsdb $MDSDB"
3532
3533     i=0
3534     ostidx=0
3535     OSTDB_LIST=""
3536     for node in $(osts_nodes); do
3537         for dev in ${OSTDEVS[i]}; do
3538             run_e2fsck $node $dev "-n --mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
3539             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
3540             ostidx=$((ostidx + 1))
3541         done
3542         i=$((i + 1))
3543     done
3544 }
3545
3546 run_lfsck() {
3547     local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
3548     echo $cmd
3549     local rc=0
3550     eval $cmd || rc=$?
3551     [ $rc -le $FSCK_MAX_ERR ] || \
3552         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3553     echo "lfsck finished with rc=$rc"
3554
3555     rm -rvf $MDSDB* $OSTDB* || true
3556     return 0
3557 }
3558
3559 check_and_cleanup_lustre() {
3560     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
3561         get_svr_devs
3562         generate_db
3563         run_lfsck
3564     fi
3565
3566         if is_mounted $MOUNT; then
3567                 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
3568                         error "remove sub-test dirs failed"
3569                 [ "$ENABLE_QUOTA" ] && restore_quota || true
3570         fi
3571
3572     if [ "$I_UMOUNTED2" = "yes" ]; then
3573         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
3574     fi
3575
3576     if [ "$I_MOUNTED2" = "yes" ]; then
3577         cleanup_mount $MOUNT2
3578     fi
3579
3580     if [ "$I_MOUNTED" = "yes" ]; then
3581         cleanupall -f || error "cleanup failed"
3582         unset I_MOUNTED
3583     fi
3584 }
3585
3586 #######
3587 # General functions
3588
3589 wait_for_function () {
3590     local quiet=""
3591
3592     # suppress fn both stderr and stdout
3593     if [ "$1" = "--quiet" ]; then
3594         shift
3595         quiet=" > /dev/null 2>&1"
3596
3597     fi
3598
3599     local fn=$1
3600     local max=${2:-900}
3601     local sleep=${3:-5}
3602
3603     local wait=0
3604
3605     while true; do
3606
3607         eval $fn $quiet && return 0
3608
3609         wait=$((wait + sleep))
3610         [ $wait -lt $max ] || return 1
3611         echo waiting $fn, $((max - wait)) secs left ...
3612         sleep $sleep
3613     done
3614 }
3615
3616 check_network() {
3617     local host=$1
3618     local max=$2
3619     local sleep=${3:-5}
3620
3621     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
3622     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
3623         echo "Network not available!"
3624         exit 1
3625     fi
3626
3627     echo `date +"%H:%M:%S (%s)"` network interface is UP
3628 }
3629
3630 no_dsh() {
3631     shift
3632     eval $@
3633 }
3634
3635 # Convert a space-delimited list to a comma-delimited list.  If the input is
3636 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
3637 comma_list() {
3638         # echo is used to convert newlines to spaces, since it doesn't
3639         # introduce a trailing space as using "tr '\n' ' '" does
3640         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
3641 }
3642
3643 list_member () {
3644     local list=$1
3645     local item=$2
3646     echo $list | grep -qw $item
3647 }
3648
3649 # list, excluded are the comma separated lists
3650 exclude_items_from_list () {
3651     local list=$1
3652     local excluded=$2
3653     local item
3654
3655     list=${list//,/ }
3656     for item in ${excluded//,/ }; do
3657         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
3658     done
3659     echo $(comma_list $list)
3660 }
3661
3662 # list, expand  are the comma separated lists
3663 expand_list () {
3664     local list=${1//,/ }
3665     local expand=${2//,/ }
3666     local expanded=
3667
3668     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
3669     echo $(comma_list $expanded)
3670 }
3671
3672 testslist_filter () {
3673     local script=$LUSTRE/tests/${TESTSUITE}.sh
3674
3675     [ -f $script ] || return 0
3676
3677     local start_at=$START_AT
3678     local stop_at=$STOP_AT
3679
3680     local var=${TESTSUITE//-/_}_START_AT
3681     [ x"${!var}" != x ] && start_at=${!var}
3682     var=${TESTSUITE//-/_}_STOP_AT
3683     [ x"${!var}" != x ] && stop_at=${!var}
3684
3685     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
3686         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
3687             /^'${start_at}'$/ {flag = 0}
3688             {if (flag == 1) print $0}
3689             /^'${stop_at}'$/ { flag = 1 }'
3690 }
3691
3692 absolute_path() {
3693     (cd `dirname $1`; echo $PWD/`basename $1`)
3694 }
3695
3696 get_facets () {
3697     local types=${1:-"OST MDS MGS"}
3698
3699     local list=""
3700
3701     for entry in $types; do
3702         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
3703         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
3704
3705         case $type in
3706                 MGS ) list="$list $name";;
3707             MDS|OST ) local count=${type}COUNT
3708                        for ((i=1; i<=${!count}; i++)) do
3709                           list="$list ${name}$i"
3710                       done;;
3711                   * ) error "Invalid facet type"
3712                  exit 1;;
3713         esac
3714     done
3715     echo $(comma_list $list)
3716 }
3717
3718 ##################################
3719 # Adaptive Timeouts funcs
3720
3721 at_is_enabled() {
3722     # only check mds, we assume at_max is the same on all nodes
3723     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
3724     if [ $at_max -eq 0 ]; then
3725         return 1
3726     else
3727         return 0
3728     fi
3729 }
3730
3731 at_get() {
3732     local facet=$1
3733     local at=$2
3734
3735     # suppose that all ost-s have the same $at value set
3736     [ $facet != "ost" ] || facet=ost1
3737
3738     do_facet $facet "lctl get_param -n $at"
3739 }
3740
3741 at_max_get() {
3742     at_get $1 at_max
3743 }
3744
3745 at_min_get() {
3746         at_get $1 at_min
3747 }
3748
3749 at_max_set() {
3750     local at_max=$1
3751     shift
3752
3753     local facet
3754     local hosts
3755     for facet in $@; do
3756         if [ $facet == "ost" ]; then
3757             facet=$(get_facets OST)
3758         elif [ $facet == "mds" ]; then
3759             facet=$(get_facets MDS)
3760         fi
3761         hosts=$(expand_list $hosts $(facets_hosts $facet))
3762     done
3763
3764     do_nodes $hosts lctl set_param at_max=$at_max
3765 }
3766
3767 ##################################
3768 # OBD_FAIL funcs
3769
3770 drop_request() {
3771 # OBD_FAIL_MDS_ALL_REQUEST_NET
3772     RC=0
3773     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
3774     do_facet client "$1" || RC=$?
3775     do_facet $SINGLEMDS lctl set_param fail_loc=0
3776     return $RC
3777 }
3778
3779 drop_reply() {
3780 # OBD_FAIL_MDS_ALL_REPLY_NET
3781     RC=0
3782     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
3783     do_facet client "$@" || RC=$?
3784     do_facet $SINGLEMDS lctl set_param fail_loc=0
3785     return $RC
3786 }
3787
3788 drop_reint_reply() {
3789 # OBD_FAIL_MDS_REINT_NET_REP
3790     RC=0
3791     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
3792     do_facet client "$@" || RC=$?
3793     do_facet $SINGLEMDS lctl set_param fail_loc=0
3794     return $RC
3795 }
3796
3797 drop_update_reply() {
3798 # OBD_FAIL_UPDATE_OBJ_NET
3799         local index=$1
3800         shift 1
3801         RC=0
3802         do_facet mds${index} lctl set_param fail_loc=0x1500
3803         do_facet client "$@" || RC=$?
3804         do_facet mds${index} lctl set_param fail_loc=0
3805         return $RC
3806 }
3807
3808 pause_bulk() {
3809 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
3810     RC=0
3811     do_facet ost1 lctl set_param fail_loc=0x214
3812     do_facet client "$1" || RC=$?
3813     do_facet client "sync"
3814     do_facet ost1 lctl set_param fail_loc=0
3815     return $RC
3816 }
3817
3818 drop_ldlm_cancel() {
3819 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
3820         local RC=0
3821         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
3822         do_nodes $list lctl set_param fail_loc=0x304
3823
3824         do_facet client "$@" || RC=$?
3825
3826         do_nodes $list lctl set_param fail_loc=0
3827         return $RC
3828 }
3829
3830 drop_bl_callback() {
3831 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
3832         RC=0
3833         do_facet client lctl set_param fail_loc=0x80000305
3834         do_facet client "$@" || RC=$?
3835         do_facet client lctl set_param fail_loc=0
3836         return $RC
3837 }
3838
3839 drop_ldlm_reply() {
3840 #define OBD_FAIL_LDLM_REPLY              0x30c
3841     RC=0
3842     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
3843     do_facet client "$@" || RC=$?
3844     do_facet $SINGLEMDS lctl set_param fail_loc=0
3845     return $RC
3846 }
3847
3848 clear_failloc() {
3849     facet=$1
3850     pause=$2
3851     sleep $pause
3852     echo "clearing fail_loc on $facet"
3853     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
3854 }
3855
3856 set_nodes_failloc () {
3857     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
3858 }
3859
3860 cancel_lru_locks() {
3861     $LCTL mark "cancel_lru_locks $1 start"
3862     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
3863         $LCTL set_param -n $d=clear
3864     done
3865     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
3866     $LCTL mark "cancel_lru_locks $1 stop"
3867 }
3868
3869 default_lru_size()
3870 {
3871         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
3872         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
3873         echo "$DEFAULT_LRU_SIZE"
3874 }
3875
3876 lru_resize_enable()
3877 {
3878     lctl set_param ldlm.namespaces.*$1*.lru_size=0
3879 }
3880
3881 lru_resize_disable()
3882 {
3883     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
3884 }
3885
3886 pgcache_empty() {
3887     local FILE
3888     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
3889         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
3890             echo there is still data in page cache $FILE ?
3891             lctl get_param -n $FILE
3892             return 1
3893         fi
3894     done
3895     return 0
3896 }
3897
3898 debugsave() {
3899     DEBUGSAVE="$(lctl get_param -n debug)"
3900 }
3901
3902 debugrestore() {
3903     [ -n "$DEBUGSAVE" ] && \
3904         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
3905     DEBUGSAVE=""
3906 }
3907
3908 debug_size_save() {
3909     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
3910 }
3911
3912 debug_size_restore() {
3913     [ -n "$DEBUG_SIZE_SAVED" ] && \
3914         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
3915     DEBUG_SIZE_SAVED=""
3916 }
3917
3918 start_full_debug_logging() {
3919     debugsave
3920     debug_size_save
3921
3922     local FULLDEBUG=-1
3923     local DEBUG_SIZE=150
3924
3925     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
3926     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
3927 }
3928
3929 stop_full_debug_logging() {
3930     debug_size_restore
3931     debugrestore
3932 }
3933
3934 # prints bash call stack
3935 log_trace_dump() {
3936         echo "  Trace dump:"
3937         for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
3938                 local s=${BASH_SOURCE[$i]}
3939                 local l=${BASH_LINENO[$i-1]}
3940                 local f=${FUNCNAME[$i]}
3941                 echo "  = $s:$l:$f()"
3942         done
3943 }
3944
3945 ##################################
3946 # Test interface
3947 ##################################
3948
3949 error_noexit() {
3950     local TYPE=${TYPE:-"FAIL"}
3951
3952     local dump=true
3953     # do not dump logs if $1=false
3954     if [ "x$1" = "xfalse" ]; then
3955         shift
3956         dump=false
3957     fi
3958
3959     log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
3960     log_trace_dump
3961
3962     mkdir -p $LOGDIR
3963     # We need to dump the logs on all nodes
3964     if $dump; then
3965         gather_logs $(comma_list $(nodes_list))
3966     fi
3967
3968         debugrestore
3969         [ "$TESTSUITELOG" ] &&
3970                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
3971         echo "$@" > $LOGDIR/err
3972 }
3973
3974 exit_status () {
3975         local status=0
3976         local log=$TESTSUITELOG
3977
3978         [ -f "$log" ] && grep -q FAIL $log && status=1
3979         exit $status
3980 }
3981
3982 error() {
3983     error_noexit "$@"
3984     exit 1
3985 }
3986
3987 error_exit() {
3988     error "$@"
3989 }
3990
3991 # use only if we are ignoring failures for this test, bugno required.
3992 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
3993 # e.g. error_ignore 5494 "your message"
3994 error_ignore() {
3995     local TYPE="IGNORE (bz$1)"
3996     shift
3997     error_noexit "$@"
3998 }
3999
4000 error_and_remount() {
4001         error_noexit "$@"
4002         remount_client $MOUNT
4003         exit 1
4004 }
4005
4006 skip_env () {
4007     $FAIL_ON_SKIP_ENV && error false $@ || skip $@
4008 }
4009
4010 skip() {
4011         echo
4012         log " SKIP: $TESTSUITE $TESTNAME $@"
4013
4014         if [[ -n "$ALWAYS_SKIPPED" ]]; then
4015                 skip_logged $TESTNAME "$@"
4016         else
4017                 mkdir -p $LOGDIR
4018                 echo "$@" > $LOGDIR/skip
4019         fi
4020
4021         [[ -n "$TESTSUITELOG" ]] &&
4022                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
4023 }
4024
4025 build_test_filter() {
4026     EXCEPT="$EXCEPT $(testslist_filter)"
4027
4028     [ "$ONLY" ] && log "only running test `echo $ONLY`"
4029     for O in $ONLY; do
4030         eval ONLY_${O}=true
4031     done
4032     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
4033         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
4034     [ "$EXCEPT_SLOW" ] && \
4035         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
4036     for E in $EXCEPT; do
4037         eval EXCEPT_${E}=true
4038     done
4039     for E in $ALWAYS_EXCEPT; do
4040         eval EXCEPT_ALWAYS_${E}=true
4041     done
4042     for E in $EXCEPT_SLOW; do
4043         eval EXCEPT_SLOW_${E}=true
4044     done
4045     for G in $GRANT_CHECK_LIST; do
4046         eval GCHECK_ONLY_${G}=true
4047         done
4048 }
4049
4050 basetest() {
4051     if [[ $1 = [a-z]* ]]; then
4052         echo $1
4053     else
4054         echo ${1%%[a-z]*}
4055     fi
4056 }
4057
4058 # print a newline if the last test was skipped
4059 export LAST_SKIPPED=
4060 export ALWAYS_SKIPPED=
4061 #
4062 # Main entry into test-framework. This is called with the name and
4063 # description of a test. The name is used to find the function to run
4064 # the test using "test_$name".
4065 #
4066 # This supports a variety of methods of specifying specific test to
4067 # run or not run.  These need to be documented...
4068 #
4069 run_test() {
4070     assert_DIR
4071
4072     export base=`basetest $1`
4073     if [ ! -z "$ONLY" ]; then
4074         testname=ONLY_$1
4075         if [ ${!testname}x != x ]; then
4076             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4077             run_one_logged $1 "$2"
4078             return $?
4079         fi
4080         testname=ONLY_$base
4081         if [ ${!testname}x != x ]; then
4082             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4083             run_one_logged $1 "$2"
4084             return $?
4085         fi
4086         LAST_SKIPPED="y"
4087         echo -n "."
4088         return 0
4089     fi
4090
4091         LAST_SKIPPED="y"
4092         ALWAYS_SKIPPED="y"
4093     testname=EXCEPT_$1
4094     if [ ${!testname}x != x ]; then
4095         TESTNAME=test_$1 skip "skipping excluded test $1"
4096         return 0
4097     fi
4098     testname=EXCEPT_$base
4099     if [ ${!testname}x != x ]; then
4100         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4101         return 0
4102     fi
4103     testname=EXCEPT_ALWAYS_$1
4104     if [ ${!testname}x != x ]; then
4105         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4106         return 0
4107     fi
4108     testname=EXCEPT_ALWAYS_$base
4109     if [ ${!testname}x != x ]; then
4110         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4111         return 0
4112     fi
4113     testname=EXCEPT_SLOW_$1
4114     if [ ${!testname}x != x ]; then
4115         TESTNAME=test_$1 skip "skipping SLOW test $1"
4116         return 0
4117     fi
4118     testname=EXCEPT_SLOW_$base
4119     if [ ${!testname}x != x ]; then
4120         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4121         return 0
4122     fi
4123
4124     LAST_SKIPPED=
4125     ALWAYS_SKIPPED=
4126     run_one_logged $1 "$2"
4127
4128     return $?
4129 }
4130
4131 log() {
4132     echo "$*"
4133     module_loaded lnet || load_modules
4134
4135     local MSG="$*"
4136     # Get rid of '
4137     MSG=${MSG//\'/\\\'}
4138     MSG=${MSG//\(/\\\(}
4139     MSG=${MSG//\)/\\\)}
4140     MSG=${MSG//\;/\\\;}
4141     MSG=${MSG//\|/\\\|}
4142     MSG=${MSG//\>/\\\>}
4143     MSG=${MSG//\</\\\<}
4144     MSG=${MSG//\//\\\/}
4145     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
4146 }
4147
4148 trace() {
4149         log "STARTING: $*"
4150         strace -o $TMP/$1.strace -ttt $*
4151         RC=$?
4152         log "FINISHED: $*: rc $RC"
4153         return 1
4154 }
4155
4156 complete () {
4157     local duration=$1
4158
4159     banner test complete, duration $duration sec
4160     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
4161     echo duration $duration >>$TESTSUITELOG
4162 }
4163
4164 pass() {
4165         # Set TEST_STATUS here. It will be used for logging the result.
4166         TEST_STATUS="PASS"
4167
4168         if [[ -f $LOGDIR/err ]]; then
4169                 TEST_STATUS="FAIL"
4170         elif [[ -f $LOGDIR/skip ]]; then
4171                 TEST_STATUS="SKIP"
4172         fi
4173         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
4174 }
4175
4176 check_mds() {
4177     local FFREE=$(do_node $SINGLEMDS \
4178         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
4179     local FTOTAL=$(do_node $SINGLEMDS \
4180         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
4181
4182     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
4183 }
4184
4185 reset_fail_loc () {
4186     echo -n "Resetting fail_loc on all nodes..."
4187     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
4188     echo done.
4189 }
4190
4191
4192 #
4193 # Log a message (on all nodes) padded with "=" before and after. 
4194 # Also appends a timestamp and prepends the testsuite name.
4195
4196
4197 EQUALS="===================================================================================================="
4198 banner() {
4199     msg="== ${TESTSUITE} $*"
4200     last=${msg: -1:1}
4201     [[ $last != "=" && $last != " " ]] && msg="$msg "
4202     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
4203     # always include at least == after the message
4204     log "$msg== $(date +"%H:%M:%S (%s)")"
4205 }
4206
4207 #
4208 # Run a single test function and cleanup after it.  
4209 #
4210 # This function should be run in a subshell so the test func can
4211 # exit() without stopping the whole script.
4212 #
4213 run_one() {
4214     local testnum=$1
4215     local message=$2
4216     tfile=f.${TESTSUITE}.${testnum}
4217     export tdir=d0.${TESTSUITE}/d${base}
4218     export TESTNAME=test_$testnum
4219     local SAVE_UMASK=`umask`
4220     umask 0022
4221
4222     banner "test $testnum: $message"
4223     test_${testnum} || error "test_$testnum failed with $?"
4224     cd $SAVE_PWD
4225     reset_fail_loc
4226     check_grant ${testnum} || error "check_grant $testnum failed with $?"
4227     check_catastrophe || error "LBUG/LASSERT detected"
4228         if [ "$PARALLEL" != "yes" ]; then
4229                 ps auxww | grep -v grep | grep -q multiop &&
4230                                         error "multiop still running"
4231         fi
4232     unset TESTNAME
4233     unset tdir
4234     umask $SAVE_UMASK
4235     return 0
4236 }
4237
4238 #
4239 # Wrapper around run_one to ensure:
4240 #  - test runs in subshell
4241 #  - output of test is saved to separate log file for error reporting
4242 #  - test result is saved to data file
4243 #
4244 run_one_logged() {
4245         local BEFORE=`date +%s`
4246         local TEST_ERROR
4247         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
4248         local test_log=$LOGDIR/$name
4249         rm -rf $LOGDIR/err
4250         rm -rf $LOGDIR/skip
4251         local SAVE_UMASK=`umask`
4252         umask 0022
4253
4254         echo
4255         log_sub_test_begin test_${1}
4256         (run_one $1 "$2") 2>&1 | tee -i $test_log
4257         local RC=${PIPESTATUS[0]}
4258
4259         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
4260                 echo "test_$1 returned $RC" | tee $LOGDIR/err
4261
4262         duration=$((`date +%s` - $BEFORE))
4263         pass "$1" "(${duration}s)"
4264
4265         if [[ -f $LOGDIR/err ]]; then
4266                 TEST_ERROR=$(cat $LOGDIR/err)
4267         elif [[ -f $LOGDIR/skip ]]; then
4268                 TEST_ERROR=$(cat $LOGDIR/skip)
4269         fi
4270         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
4271
4272         if [ -f $LOGDIR/err ]; then
4273                 $FAIL_ON_ERROR && exit $RC
4274         fi
4275
4276         umask $SAVE_UMASK
4277
4278         return 0
4279 }
4280
4281 #
4282 # Print information of skipped tests to result.yml
4283 #
4284 skip_logged(){
4285         log_sub_test_begin $1
4286         shift
4287         log_sub_test_end "SKIP" "0" "0" "$@"
4288 }
4289
4290 canonical_path() {
4291     (cd `dirname $1`; echo $PWD/`basename $1`)
4292 }
4293
4294
4295 check_grant() {
4296     export base=`basetest $1`
4297     [ "$CHECK_GRANT" == "no" ] && return 0
4298
4299         testname=GCHECK_ONLY_${base}
4300         [ ${!testname}x == x ] && return 0
4301
4302     echo -n "checking grant......"
4303
4304         local clients=$CLIENTS
4305         [ -z $clients ] && clients=$(hostname)
4306
4307     # sync all the data and make sure no pending data on server
4308     do_nodes $clients sync
4309
4310     # get client grant
4311     client_grant=`do_nodes $clients \
4312                     "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" | \
4313                     awk '{total += $1} END{print total}'`
4314
4315     # get server grant
4316     server_grant=`do_nodes $(comma_list $(osts_nodes)) \
4317                     "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" |
4318                     awk '{total += $1} END{print total}'`
4319
4320     # check whether client grant == server grant
4321     if [ $client_grant -ne $server_grant ]; then
4322         echo "failed: client:${client_grant} server: ${server_grant}."
4323         do_nodes $(comma_list $(osts_nodes)) \
4324                    "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
4325         do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
4326         return 1
4327     else
4328         echo "pass: client:${client_grant} server: ${server_grant}"
4329     fi
4330
4331 }
4332
4333 ########################
4334 # helper functions
4335
4336 osc_to_ost()
4337 {
4338     osc=$1
4339     ost=`echo $1 | awk -F_ '{print $3}'`
4340     if [ -z $ost ]; then
4341         ost=`echo $1 | sed 's/-osc.*//'`
4342     fi
4343     echo $ost
4344 }
4345
4346 ostuuid_from_index()
4347 {
4348     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4349 }
4350
4351 ostname_from_index() {
4352     local uuid=$(ostuuid_from_index $1)
4353     echo ${uuid/_UUID/}
4354 }
4355
4356 index_from_ostuuid()
4357 {
4358     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
4359 }
4360
4361 mdtuuid_from_index()
4362 {
4363     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4364 }
4365
4366 # Description:
4367 #   Return unique identifier for given hostname
4368 host_id() {
4369         local host_name=$1
4370         echo $host_name | md5sum | cut -d' ' -f1
4371 }
4372
4373 # Description:
4374 #   Returns list of ip addresses for each interface
4375 local_addr_list() {
4376         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
4377 }
4378
4379 is_local_addr() {
4380         local addr=$1
4381         # Cache address list to avoid mutiple execution of local_addr_list
4382         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
4383         local i
4384         for i in $LOCAL_ADDR_LIST ; do
4385                 [[ "$i" == "$addr" ]] && return 0
4386         done
4387         return 1
4388 }
4389
4390 local_node() {
4391         local host_name=$1
4392         local is_local="IS_LOCAL_$(host_id $host_name)"
4393         if [ -z "${!is_local-}" ] ; then
4394                 eval $is_local=0
4395                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
4396                 is_local_addr "$host_ip" && eval $is_local=1
4397         fi
4398         [[ "${!is_local}" == "1" ]]
4399 }
4400
4401 remote_node () {
4402         local node=$1
4403         local_node $node && return 1
4404         return 0
4405 }
4406
4407 remote_mds ()
4408 {
4409     local node
4410     for node in $(mdts_nodes); do
4411         remote_node $node && return 0
4412     done
4413     return 1
4414 }
4415
4416 remote_mds_nodsh()
4417 {
4418     [ "$CLIENTONLY" ] && return 0 || true
4419     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
4420 }
4421
4422 require_dsh_mds()
4423 {
4424         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
4425             MSKIPPED=1 && return 1
4426         return 0
4427 }
4428
4429 remote_ost ()
4430 {
4431     local node
4432     for node in $(osts_nodes) ; do
4433         remote_node $node && return 0
4434     done
4435     return 1
4436 }
4437
4438 remote_ost_nodsh()
4439 {
4440     [ "$CLIENTONLY" ] && return 0 || true 
4441     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4442 }
4443
4444 require_dsh_ost()
4445 {
4446         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
4447             OSKIPPED=1 && return 1
4448         return 0
4449 }
4450
4451 remote_mgs_nodsh()
4452 {
4453     local MGS 
4454     MGS=$(facet_host mgs)
4455     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4456 }
4457
4458 local_mode ()
4459 {
4460     remote_mds_nodsh || remote_ost_nodsh || \
4461         $(single_local_node $(comma_list $(nodes_list)))
4462 }
4463
4464 mdts_nodes () {
4465     local MDSNODES
4466     local NODES_sort
4467     for num in `seq $MDSCOUNT`; do
4468         MDSNODES="$MDSNODES $(facet_host mds$num)"
4469     done
4470     NODES_sort=$(for i in $MDSNODES; do echo $i; done | sort -u)
4471
4472     echo $NODES_sort
4473 }
4474
4475 remote_servers () {
4476     remote_ost && remote_mds
4477 }
4478
4479 facets_nodes () {
4480     local facets=$1
4481     local nodes
4482     local NODES_sort
4483
4484     for facet in ${facets//,/ }; do
4485         if [ "$FAILURE_MODE" = HARD ]; then
4486             nodes="$nodes $(facet_active_host $facet)"
4487         else
4488             nodes="$nodes $(facet_host $facet)"
4489         fi
4490     done
4491     NODES_sort=$(for i in $nodes; do echo $i; done | sort -u)
4492
4493     echo $NODES_sort
4494 }
4495
4496 osts_nodes () {
4497     local facets=$(get_facets OST)
4498     local nodes=$(facets_nodes $facets)
4499
4500     echo $nodes
4501 }
4502
4503 nodes_list () {
4504     # FIXME. We need a list of clients
4505     local myNODES=$HOSTNAME
4506     local myNODES_sort
4507
4508     # CLIENTS (if specified) contains the local client
4509     [ -n "$CLIENTS" ] && myNODES=${CLIENTS//,/ }
4510
4511     if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4512         myNODES="$myNODES $(facets_nodes $(get_facets))"
4513     fi
4514
4515     myNODES_sort=$(for i in $myNODES; do echo $i; done | sort -u)
4516
4517     echo $myNODES_sort
4518 }
4519
4520 remote_nodes_list () {
4521         echo $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
4522 }
4523
4524 init_clients_lists () {
4525     # Sanity check: exclude the local client from RCLIENTS
4526     local clients=$(hostlist_expand "$RCLIENTS")
4527     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
4528
4529     # Sanity check: exclude the dup entries
4530     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
4531
4532     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
4533
4534     # Sanity check: exclude the dup entries from CLIENTS
4535     # for those configs which has SINGLCLIENT set to local client
4536     clients=$(for i in $clients; do echo $i; done | sort -u)
4537
4538     CLIENTS=$(comma_list $clients)
4539     local -a remoteclients=($RCLIENTS)
4540     for ((i=0; $i<${#remoteclients[@]}; i++)); do
4541             varname=CLIENT$((i + 2))
4542             eval $varname=${remoteclients[i]}
4543     done
4544
4545     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
4546 }
4547
4548 get_random_entry () {
4549     local rnodes=$1
4550
4551     rnodes=${rnodes//,/ }
4552
4553     local -a nodes=($rnodes)
4554     local num=${#nodes[@]} 
4555     local i=$((RANDOM * num * 2 / 65536))
4556
4557     echo ${nodes[i]}
4558 }
4559
4560 client_only () {
4561     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
4562 }
4563
4564 is_patchless ()
4565 {
4566     lctl get_param version | grep -q patchless
4567 }
4568
4569 check_versions () {
4570     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
4571       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
4572 }
4573
4574 get_node_count() {
4575     local nodes="$@"
4576     echo $nodes | wc -w || true
4577 }
4578
4579 mixed_ost_devs () {
4580     local nodes=$(osts_nodes)
4581     local osscount=$(get_node_count "$nodes")
4582     [ ! "$OSTCOUNT" = "$osscount" ]
4583 }
4584
4585 mixed_mdt_devs () {
4586     local nodes=$(mdts_nodes)
4587     local mdtcount=$(get_node_count "$nodes")
4588     [ ! "$MDSCOUNT" = "$mdtcount" ]
4589 }
4590
4591 generate_machine_file() {
4592     local nodes=${1//,/ }
4593     local machinefile=$2
4594     rm -f $machinefile
4595     for node in $nodes; do
4596         echo $node >>$machinefile || \
4597             { echo "can not generate machinefile $machinefile" && return 1; }
4598     done
4599 }
4600
4601 get_stripe () {
4602     local file=$1/stripe
4603     touch $file
4604     $LFS getstripe -v $file || error
4605     rm -f $file
4606 }
4607
4608 setstripe_nfsserver () {
4609     local dir=$1
4610
4611     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
4612                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
4613
4614     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
4615
4616     do_nodev $nfsserver lfs setstripe "$@"
4617 }
4618
4619 # Check and add a test group.
4620 add_group() {
4621         local group_id=$1
4622         local group_name=$2
4623         local rc=0
4624
4625         local gid=$(getent group $group_name | cut -d: -f3)
4626         if [[ -n "$gid" ]]; then
4627                 [[ "$gid" -eq "$group_id" ]] || {
4628                         error_noexit "inconsistent group ID:" \
4629                                      "new: $group_id, old: $gid"
4630                         rc=1
4631                 }
4632         else
4633                 groupadd -g $group_id $group_name
4634                 rc=${PIPESTATUS[0]}
4635         fi
4636
4637         return $rc
4638 }
4639
4640 # Check and add a test user.
4641 add_user() {
4642         local user_id=$1
4643         shift
4644         local user_name=$1
4645         shift
4646         local group_name=$1
4647         shift
4648         local home=$1
4649         shift
4650         local opts="$@"
4651         local rc=0
4652
4653         local uid=$(getent passwd $user_name | cut -d: -f3)
4654         if [[ -n "$uid" ]]; then
4655                 if [[ "$uid" -eq "$user_id" ]]; then
4656                         local dir=$(getent passwd $user_name | cut -d: -f6)
4657                         if [[ "$dir" != "$home" ]]; then
4658                                 mkdir -p $home
4659                                 usermod -d $home $user_name
4660                                 rc=${PIPESTATUS[0]}
4661                         fi
4662                 else
4663                         error_noexit "inconsistent user ID:" \
4664                                      "new: $user_id, old: $uid"
4665                         rc=1
4666                 fi
4667         else
4668                 mkdir -p $home
4669                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
4670                 rc=${PIPESTATUS[0]}
4671         fi
4672
4673         return $rc
4674 }
4675
4676 check_runas_id_ret() {
4677     local myRC=0
4678     local myRUNAS_UID=$1
4679     local myRUNAS_GID=$2
4680     shift 2
4681     local myRUNAS=$@
4682     if [ -z "$myRUNAS" ]; then
4683         error_exit "myRUNAS command must be specified for check_runas_id"
4684     fi
4685     if $GSS_KRB5; then
4686         $myRUNAS krb5_login.sh || \
4687             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
4688     fi
4689     mkdir $DIR/d0_runas_test
4690     chmod 0755 $DIR
4691     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
4692     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
4693     rm -rf $DIR/d0_runas_test
4694     return $myRC
4695 }
4696
4697 check_runas_id() {
4698     local myRUNAS_UID=$1
4699     local myRUNAS_GID=$2
4700     shift 2
4701     local myRUNAS=$@
4702     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
4703         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
4704         Please set RUNAS_ID to some UID which exists on MDS and client or
4705         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
4706 }
4707
4708 # obtain the UID/GID for MPI_USER
4709 get_mpiuser_id() {
4710     local mpi_user=$1
4711
4712     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
4713 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
4714
4715     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
4716 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
4717 }
4718
4719 # obtain and cache Kerberos ticket-granting ticket
4720 refresh_krb5_tgt() {
4721     local myRUNAS_UID=$1
4722     local myRUNAS_GID=$2
4723     shift 2
4724     local myRUNAS=$@
4725     if [ -z "$myRUNAS" ]; then
4726         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
4727     fi
4728
4729     CLIENTS=${CLIENTS:-$HOSTNAME}
4730     do_nodes $CLIENTS "set -x
4731 if ! $myRUNAS krb5_login.sh; then
4732     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
4733     exit 1
4734 fi"
4735 }
4736
4737 # Run multiop in the background, but wait for it to print
4738 # "PAUSING" to its stdout before returning from this function.
4739 multiop_bg_pause() {
4740     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
4741     FILE=$1
4742     ARGS=$2
4743
4744     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
4745     mkfifo $TMPPIPE
4746
4747     echo "$MULTIOP_PROG $FILE v$ARGS"
4748     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
4749
4750     echo "TMPPIPE=${TMPPIPE}"
4751     read -t 60 multiop_output < $TMPPIPE
4752     if [ $? -ne 0 ]; then
4753         rm -f $TMPPIPE
4754         return 1
4755     fi
4756     rm -f $TMPPIPE
4757     if [ "$multiop_output" != "PAUSING" ]; then
4758         echo "Incorrect multiop output: $multiop_output"
4759         kill -9 $PID
4760         return 1
4761     fi
4762
4763     return 0
4764 }
4765
4766 do_and_time () {
4767     local cmd=$1
4768     local rc
4769
4770     SECONDS=0
4771     eval '$cmd'
4772     
4773     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
4774
4775     echo $SECONDS
4776     return $rc
4777 }
4778
4779 inodes_available () {
4780     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
4781     echo $IFree
4782 }
4783
4784 mdsrate_inodes_available () {
4785     local min_inodes=$(inodes_available)
4786     echo $((min_inodes * 99 / 100))
4787 }
4788
4789 # reset llite stat counters
4790 clear_llite_stats(){
4791         lctl set_param -n llite.*.stats 0
4792 }
4793
4794 # sum llite stat items
4795 calc_llite_stats() {
4796         local res=$(lctl get_param -n llite.*.stats |
4797                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4798         echo $res
4799 }
4800
4801 # reset osc stat counters
4802 clear_osc_stats(){
4803         lctl set_param -n osc.*.osc_stats 0
4804 }
4805
4806 # sum osc stat items
4807 calc_osc_stats() {
4808         local res=$(lctl get_param -n osc.*.osc_stats |
4809                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4810         echo $res
4811 }
4812
4813 calc_sum () {
4814         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
4815 }
4816
4817 calc_osc_kbytes () {
4818         df $MOUNT > /dev/null
4819         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
4820 }
4821
4822 # save_lustre_params(node, parameter_mask)
4823 # generate a stream of formatted strings (<node> <param name>=<param value>)
4824 save_lustre_params() {
4825         local s
4826         do_nodesv $1 "lctl get_param $2 | while read s; do echo \\\$s; done"
4827 }
4828
4829 # restore lustre parameters from input stream, produces by save_lustre_params
4830 restore_lustre_params() {
4831         local node
4832         local name
4833         local val
4834         while IFS=" =" read node name val; do
4835                 do_node ${node//:/} "lctl set_param -n $name $val"
4836         done
4837 }
4838
4839 check_catastrophe() {
4840         local rnodes=${1:-$(comma_list $(remote_nodes_list))}
4841         local C=$CATASTROPHE
4842         [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
4843
4844         [ -z "$rnodes" ] && return 0
4845
4846         do_nodes "$rnodes" "rc=\\\$([ -f $C ] && echo \\\$(< $C) || echo 0);
4847                 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
4848                 exit \\\$rc;"
4849 }
4850
4851 # CMD: determine mds index where directory inode presents
4852 get_mds_dir () {
4853     local dir=$1
4854     local file=$dir/f0.get_mds_dir_tmpfile
4855
4856     mkdir -p $dir
4857     rm -f $file
4858     sleep 1
4859     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
4860     local -a oldused=($iused)
4861
4862     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
4863     sleep 1
4864     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
4865     local -a newused=($iused)
4866
4867     local num=0
4868     for ((i=0; i<${#newused[@]}; i++)); do
4869          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
4870              echo $(( i + 1 ))
4871              rm -f $file
4872              return 0
4873          fi
4874     done
4875     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
4876 }
4877
4878 mdsrate_cleanup () {
4879         if [ -d $4 ]; then
4880                 mpi_run -np $1 ${MACHINEFILE_OPTION} $2 ${MDSRATE} --unlink \
4881                         --nfiles $3 --dir $4 --filefmt $5 $6
4882                 rmdir $4
4883         fi
4884 }
4885
4886 delayed_recovery_enabled () {
4887     local var=${SINGLEMDS}_svc
4888     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
4889 }
4890
4891 ########################
4892
4893 convert_facet2label() { 
4894     local facet=$1
4895
4896     if [ x$facet = xost ]; then
4897        facet=ost1
4898     fi
4899
4900     local varsvc=${facet}_svc
4901
4902     if [ -n ${!varsvc} ]; then
4903         echo ${!varsvc}
4904     else  
4905         error "No lablel for $facet!"
4906     fi
4907 }
4908
4909 get_clientosc_proc_path() {
4910     echo "${1}-osc-[^M]*"
4911 }
4912
4913 get_lustre_version () {
4914     local facet=${1:-"$SINGLEMDS"}    
4915     do_facet $facet $LCTL get_param -n version | awk '/^lustre:/ {print $2}'
4916 }
4917
4918 lustre_version_code() {
4919     local facet=${1:-"$SINGLEMDS"}
4920     version_code $(get_lustre_version $1)
4921 }
4922
4923 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
4924 # used by MDT would not be changed.
4925 # mdt lov: fsname-mdtlov
4926 # mdt osc: fsname-OSTXXXX-osc
4927 mds_on_old_device() {
4928     local mds=${1:-"$SINGLEMDS"}
4929
4930     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
4931         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
4932             > /dev/null 2>&1" && return 0
4933     fi
4934     return 1
4935 }
4936
4937 get_mdtosc_proc_path() {
4938     local mds_facet=$1
4939     local ost_label=${2:-"*OST*"}
4940
4941     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
4942     local mdt_label=$(convert_facet2label $mds_facet)
4943     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
4944
4945     if [ $(lustre_version_code $mds_facet) -le $(version_code 1.8.0) ] ||
4946        mds_on_old_device $mds_facet; then
4947         echo "${ost_label}-osc"
4948     else
4949         echo "${ost_label}-osc-${mdt_index}"
4950     fi
4951 }
4952
4953 get_osc_import_name() {
4954     local facet=$1
4955     local ost=$2
4956     local label=$(convert_facet2label $ost)
4957
4958     if [ "${facet:0:3}" = "mds" ]; then
4959         get_mdtosc_proc_path $facet $label
4960         return 0
4961     fi
4962
4963     get_clientosc_proc_path $label
4964     return 0
4965 }
4966
4967 _wait_import_state () {
4968     local expected=$1
4969     local CONN_PROC=$2
4970     local maxtime=${3:-$(max_recovery_time)}
4971     local CONN_STATE
4972     local i=0
4973
4974     CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
4975     while [ "${CONN_STATE}" != "${expected}" ]; do
4976         if [ "${expected}" == "DISCONN" ]; then
4977             # for disconn we can check after proc entry is removed
4978             [ "x${CONN_STATE}" == "x" ] && return 0
4979             #  with AT enabled, we can have connect request timeout near of
4980             # reconnect timeout and test can't see real disconnect
4981             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
4982         fi
4983         [ $i -ge $maxtime ] && \
4984             error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}" && \
4985             return 1
4986         sleep 1
4987         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2)
4988         i=$(($i + 1))
4989     done
4990
4991     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
4992     return 0
4993 }
4994
4995 wait_import_state() {
4996     local state=$1
4997     local params=$2
4998     local maxtime=${3:-$(max_recovery_time)}
4999     local param
5000
5001     for param in ${params//,/ }; do
5002         _wait_import_state $state $param $maxtime || return
5003     done
5004 }
5005
5006 # One client request could be timed out because server was not ready
5007 # when request was sent by client.
5008 # The request timeout calculation details :
5009 # ptl_send_rpc ()
5010 #      /* We give the server rq_timeout secs to process the req, and
5011 #      add the network latency for our local timeout. */
5012 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
5013 #           ptlrpc_at_get_net_latency(request) ;
5014 #
5015 # ptlrpc_connect_import ()
5016 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5017 #
5018 # init_imp_at () ->
5019 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
5020 # ptlrpc_at_get_net_latency(request) ->
5021 #       at_get (max (iat_net_latency=0, at_min)) = at_min
5022 #
5023 # i.e.:
5024 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
5025 # INITIAL_CONNECT_TIMEOUT + at_min
5026 #
5027 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
5028 # because we can not get this value in runtime,
5029 # the value depends on configure options, and it is not stored in /proc.
5030 # obd_support.h:
5031 # #define CONNECTION_SWITCH_MIN 5U
5032 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5033
5034 request_timeout () {
5035     local facet=$1
5036
5037     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5038     local init_connect_timeout=$TIMEOUT
5039     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5040
5041     local at_min=$(at_get $facet at_min)
5042
5043     echo $(( init_connect_timeout + at_min ))
5044 }
5045
5046 wait_osc_import_state() {
5047     local facet=$1
5048     local ost_facet=$2
5049     local expected=$3
5050     local ost=$(get_osc_import_name $facet $ost_facet)
5051
5052     local param="osc.${ost}.ost_server_uuid"
5053
5054     # 1. wait the deadline of client 1st request (it could be skipped)
5055     # 2. wait the deadline of client 2nd request
5056     local maxtime=$(( 2 * $(request_timeout $facet)))
5057
5058         if ! do_rpc_nodes "$(facet_host $facet)" \
5059                         _wait_import_state $expected $param $maxtime; then
5060                 error "import is not in ${expected} state"
5061                 return 1
5062         fi
5063
5064         return 0
5065 }
5066
5067 get_clientmdc_proc_path() {
5068     echo "${1}-mdc-*"
5069 }
5070
5071 do_rpc_nodes () {
5072         local list=$1
5073         shift
5074
5075         [ -z "$list" ] && return 0
5076
5077         # Add paths to lustre tests for 32 and 64 bit systems.
5078         local RPATH="PATH=$RLUSTRE/tests:/usr/lib/lustre/tests:/usr/lib64/lustre/tests:$PATH"
5079         do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
5080 }
5081
5082 wait_clients_import_state () {
5083     local list=$1
5084     local facet=$2
5085     local expected=$3
5086
5087     local facets=$facet
5088
5089     if [ "$FAILURE_MODE" = HARD ]; then
5090         facets=$(facets_on_host $(facet_active_host $facet))
5091     fi
5092
5093     for facet in ${facets//,/ }; do
5094     local label=$(convert_facet2label $facet)
5095     local proc_path
5096     case $facet in
5097         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
5098         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
5099         *) error "unknown facet!" ;;
5100     esac
5101     local params=$(expand_list $params $proc_path)
5102     done
5103
5104         if ! do_rpc_nodes "$list" wait_import_state $expected $params; then
5105                 error "import is not in ${expected} state"
5106                 return 1
5107         fi
5108 }
5109
5110 oos_full() {
5111         local -a AVAILA
5112         local -a GRANTA
5113         local -a TOTALA
5114         local OSCFULL=1
5115         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
5116                   $LCTL get_param obdfilter.*.kbytesavail))
5117         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
5118                   $LCTL get_param -n obdfilter.*.tot_granted))
5119         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
5120                   $LCTL get_param -n obdfilter.*.kbytestotal))
5121         for ((i=0; i<${#AVAILA[@]}; i++)); do
5122                 local -a AVAIL1=(${AVAILA[$i]//=/ })
5123                 local -a TOTAL=(${TOTALA[$i]//=/ })
5124                 GRANT=$((${GRANTA[$i]}/1024))
5125                 # allow 1% of total space in bavail because of delayed
5126                 # allocation with ZFS which might release some free space after
5127                 # txg commit.  For small devices, we set a mininum of 8MB
5128                 local LIMIT=$((${TOTAL} / 100 + 8000))
5129                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
5130                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
5131                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
5132                         echo " FULL" || echo
5133         done
5134         return $OSCFULL
5135 }
5136
5137 pool_list () {
5138    do_facet mgs lctl pool_list $1
5139 }
5140
5141 create_pool() {
5142     local fsname=${1%%.*}
5143     local poolname=${1##$fsname.}
5144
5145     do_facet mgs lctl pool_new $1
5146     local RC=$?
5147     # get param should return err unless pool is created
5148     [[ $RC -ne 0 ]] && return $RC
5149
5150     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5151         2>/dev/null || echo foo" "" || RC=1
5152     if [[ $RC -eq 0 ]]; then
5153         add_pool_to_list $1
5154     else
5155         error "pool_new failed $1"
5156     fi
5157     return $RC
5158 }
5159
5160 add_pool_to_list () {
5161     local fsname=${1%%.*}
5162     local poolname=${1##$fsname.}
5163
5164     local listvar=${fsname}_CREATED_POOLS
5165     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
5166 }
5167
5168 remove_pool_from_list () {
5169     local fsname=${1%%.*}
5170     local poolname=${1##$fsname.}
5171
5172     local listvar=${fsname}_CREATED_POOLS
5173     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
5174 }
5175
5176 destroy_pool_int() {
5177     local ost
5178     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
5179         awk '$1 !~ /^Pool:/ {print $1}')
5180     for ost in $OSTS; do
5181         do_facet mgs lctl pool_remove $1 $ost
5182     done
5183     do_facet mgs lctl pool_destroy $1
5184 }
5185
5186 # <fsname>.<poolname> or <poolname>
5187 destroy_pool() {
5188     local fsname=${1%%.*}
5189     local poolname=${1##$fsname.}
5190
5191     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
5192
5193     local RC
5194
5195     pool_list $fsname.$poolname || return $?
5196
5197     destroy_pool_int $fsname.$poolname
5198     RC=$?
5199     [[ $RC -ne 0 ]] && return $RC
5200
5201     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5202       2>/dev/null || echo foo" "foo" || RC=1
5203
5204     if [[ $RC -eq 0 ]]; then
5205         remove_pool_from_list $fsname.$poolname
5206     else
5207         error "destroy pool failed $1"
5208     fi
5209     return $RC
5210 }
5211
5212 destroy_pools () {
5213     local fsname=${1:-$FSNAME}
5214     local poolname
5215     local listvar=${fsname}_CREATED_POOLS
5216
5217     pool_list $fsname
5218
5219     [ x${!listvar} = x ] && return 0
5220
5221     echo destroy the created pools: ${!listvar}
5222     for poolname in ${!listvar//,/ }; do
5223         destroy_pool $fsname.$poolname
5224     done
5225 }
5226
5227 cleanup_pools () {
5228     local fsname=${1:-$FSNAME}
5229     trap 0
5230     destroy_pools $fsname
5231 }
5232
5233 gather_logs () {
5234     local list=$1
5235
5236     local ts=$(date +%s)
5237     local docp=true
5238
5239     if [[ ! -f "$YAML_LOG" ]]; then
5240         # init_logging is not performed before gather_logs,
5241         # so the $LOGDIR needs to be checked here
5242         check_shared_dir $LOGDIR && touch $LOGDIR/shared
5243     fi
5244
5245     [ -f $LOGDIR/shared ] && docp=false
5246
5247     # dump lustre logs, dmesg
5248
5249     prefix="$TESTLOG_PREFIX.$TESTNAME"
5250     suffix="$ts.log"
5251     echo "Dumping lctl log to ${prefix}.*.${suffix}"
5252
5253     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
5254         echo "Dumping logs only on local client."
5255         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
5256         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
5257         return
5258     fi
5259
5260     do_nodesv $list \
5261         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
5262          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
5263     if [ ! -f $LOGDIR/shared ]; then
5264         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
5265     fi
5266 }
5267
5268 do_ls () {
5269     local mntpt_root=$1
5270     local num_mntpts=$2
5271     local dir=$3
5272     local i
5273     local cmd
5274     local pids
5275     local rc=0
5276
5277     for i in $(seq 0 $num_mntpts); do
5278         cmd="ls -laf ${mntpt_root}$i/$dir"
5279         echo + $cmd;
5280         $cmd > /dev/null &
5281         pids="$pids $!"
5282     done
5283     echo pids=$pids
5284     for pid in $pids; do
5285         wait $pid || rc=$?
5286     done
5287
5288     return $rc
5289 }
5290
5291 # target_start_and_reset_recovery_timer()
5292 #        service_time = at_est2timeout(service_time);
5293 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
5294 #                             INITIAL_CONNECT_TIMEOUT);
5295 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
5296 #define CONNECTION_SWITCH_INC 1
5297 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5298 #define CONNECTION_SWITCH_MIN 5U
5299
5300 max_recovery_time () {
5301     local init_connect_timeout=$(( TIMEOUT / 20 ))
5302     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5303
5304     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
5305
5306     echo $service_time 
5307 }
5308
5309 get_clients_mount_count () {
5310     local clients=${CLIENTS:-`hostname`}
5311
5312     # we need to take into account the clients mounts and
5313     # exclude mds/ost mounts if any;
5314     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
5315 }
5316
5317 # gss functions
5318 PROC_CLI="srpc_info"
5319
5320 combination()
5321 {
5322     local M=$1
5323     local N=$2
5324     local R=1
5325
5326     if [ $M -lt $N ]; then
5327         R=0
5328     else
5329         N=$((N + 1))
5330         while [ $N -lt $M ]; do
5331             R=$((R * N))
5332             N=$((N + 1))
5333         done
5334     fi
5335
5336     echo $R
5337     return 0
5338 }
5339
5340 calc_connection_cnt() {
5341     local dir=$1
5342
5343     # MDT->MDT = 2 * C(M, 2)
5344     # MDT->OST = M * O
5345     # CLI->OST = C * O
5346     # CLI->MDT = C * M
5347     comb_m2=$(combination $MDSCOUNT 2)
5348
5349     local num_clients=$(get_clients_mount_count)
5350
5351     local cnt_mdt2mdt=$((comb_m2 * 2))
5352     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
5353     local cnt_cli2ost=$((num_clients * OSTCOUNT))
5354     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
5355     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
5356     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
5357     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
5358
5359     local var=cnt_$dir
5360     local res=${!var}
5361
5362     echo $res
5363 }
5364
5365 set_rule()
5366 {
5367     local tgt=$1
5368     local net=$2
5369     local dir=$3
5370     local flavor=$4
5371     local cmd="$tgt.srpc.flavor"
5372
5373     if [ $net == "any" ]; then
5374         net="default"
5375     fi
5376     cmd="$cmd.$net"
5377
5378     if [ $dir != "any" ]; then
5379         cmd="$cmd.$dir"
5380     fi
5381
5382     cmd="$cmd=$flavor"
5383     log "Setting sptlrpc rule: $cmd"
5384     do_facet mgs "$LCTL conf_param $cmd"
5385 }
5386
5387 count_flvr()
5388 {
5389     local output=$1
5390     local flavor=$2
5391     local count=0
5392
5393     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
5394     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
5395
5396     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
5397
5398     if [ "x$bulkspec" != "x" ]; then
5399         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
5400
5401         if [ "x$algs" != "x" ]; then
5402             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
5403         else
5404             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
5405             if [ $bulk == "bulkn" ]; then
5406                 bulk_count=`echo "$output" | grep "bulk flavor" \
5407                             | grep "null/null" | wc -l`
5408             elif [ $bulk == "bulki" ]; then
5409                 bulk_count=`echo "$output" | grep "bulk flavor" \
5410                             | grep "/null" | grep -v "null/" | wc -l`
5411             else
5412                 bulk_count=`echo "$output" | grep "bulk flavor" \
5413                             | grep -v "/null" | grep -v "null/" | wc -l`
5414             fi
5415         fi
5416
5417         [ $bulk_count -lt $count ] && count=$bulk_count
5418     fi
5419
5420     echo $count
5421 }
5422
5423 flvr_cnt_cli2mdt()
5424 {
5425     local flavor=$1
5426     local cnt
5427
5428     local clients=${CLIENTS:-`hostname`}
5429
5430     for c in ${clients//,/ }; do
5431         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
5432         tmpcnt=`count_flvr "$output" $flavor`
5433         cnt=$((cnt + tmpcnt))
5434     done
5435     echo $cnt
5436 }
5437
5438 flvr_cnt_cli2ost()
5439 {
5440     local flavor=$1
5441     local cnt
5442
5443     local clients=${CLIENTS:-`hostname`}
5444
5445     for c in ${clients//,/ }; do
5446         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
5447         tmpcnt=`count_flvr "$output" $flavor`
5448         cnt=$((cnt + tmpcnt))
5449     done
5450     echo $cnt
5451 }
5452
5453 flvr_cnt_mdt2mdt()
5454 {
5455     local flavor=$1
5456     local cnt=0
5457
5458     if [ $MDSCOUNT -le 1 ]; then
5459         echo 0
5460         return
5461     fi
5462
5463     for num in `seq $MDSCOUNT`; do
5464         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
5465         tmpcnt=`count_flvr "$output" $flavor`
5466         cnt=$((cnt + tmpcnt))
5467     done
5468     echo $cnt;
5469 }
5470
5471 flvr_cnt_mdt2ost()
5472 {
5473     local flavor=$1
5474     local cnt=0
5475     local mdtosc
5476
5477     for num in `seq $MDSCOUNT`; do
5478         mdtosc=$(get_mdtosc_proc_path mds$num)
5479         mdtosc=${mdtosc/-MDT*/-MDT\*}
5480         output=$(do_facet mds$num lctl get_param -n \
5481             osc.$mdtosc.$PROC_CLI 2>/dev/null)
5482         tmpcnt=`count_flvr "$output" $flavor`
5483         cnt=$((cnt + tmpcnt))
5484     done
5485     echo $cnt;
5486 }
5487
5488 flvr_cnt_mgc2mgs()
5489 {
5490     local flavor=$1
5491
5492     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
5493     count_flvr "$output" $flavor
5494 }
5495
5496 do_check_flavor()
5497 {
5498     local dir=$1        # from to
5499     local flavor=$2     # flavor expected
5500     local res=0
5501
5502     if [ $dir == "cli2mdt" ]; then
5503         res=`flvr_cnt_cli2mdt $flavor`
5504     elif [ $dir == "cli2ost" ]; then
5505         res=`flvr_cnt_cli2ost $flavor`
5506     elif [ $dir == "mdt2mdt" ]; then
5507         res=`flvr_cnt_mdt2mdt $flavor`
5508     elif [ $dir == "mdt2ost" ]; then
5509         res=`flvr_cnt_mdt2ost $flavor`
5510     elif [ $dir == "all2ost" ]; then
5511         res1=`flvr_cnt_mdt2ost $flavor`
5512         res2=`flvr_cnt_cli2ost $flavor`
5513         res=$((res1 + res2))
5514     elif [ $dir == "all2mdt" ]; then
5515         res1=`flvr_cnt_mdt2mdt $flavor`
5516         res2=`flvr_cnt_cli2mdt $flavor`
5517         res=$((res1 + res2))
5518     elif [ $dir == "all2all" ]; then
5519         res1=`flvr_cnt_mdt2ost $flavor`
5520         res2=`flvr_cnt_cli2ost $flavor`
5521         res3=`flvr_cnt_mdt2mdt $flavor`
5522         res4=`flvr_cnt_cli2mdt $flavor`
5523         res=$((res1 + res2 + res3 + res4))
5524     fi
5525
5526     echo $res
5527 }
5528
5529 wait_flavor()
5530 {
5531     local dir=$1        # from to
5532     local flavor=$2     # flavor expected
5533     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
5534
5535     local res=0
5536
5537     for ((i=0;i<20;i++)); do
5538         echo -n "checking $dir..."
5539         res=$(do_check_flavor $dir $flavor)
5540         echo "found $res/$expect $flavor connections"
5541         [ $res -ge $expect ] && return 0
5542         sleep 4
5543     done
5544
5545     echo "Error checking $flavor of $dir: expect $expect, actual $res"
5546     return 1
5547 }
5548
5549 restore_to_default_flavor()
5550 {
5551     local proc="mgs.MGS.live.$FSNAME"
5552
5553     echo "restoring to default flavor..."
5554
5555     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5556
5557     # remove all existing rules if any
5558     if [ $nrule -ne 0 ]; then
5559         echo "$nrule existing rules"
5560         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
5561             echo "remove rule: $rule"
5562             spec=`echo $rule | awk -F = '{print $1}'`
5563             do_facet mgs "$LCTL conf_param -d $spec"
5564         done
5565     fi
5566
5567     # verify no rules left
5568     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5569     [ $nrule -ne 0 ] && error "still $nrule rules left"
5570
5571     # wait for default flavor to be applied
5572     # currently default flavor for all connections are 'null'
5573     wait_flavor all2all null
5574     echo "now at default flavor settings"
5575 }
5576
5577 set_flavor_all()
5578 {
5579     local flavor=${1:-null}
5580
5581     echo "setting all flavor to $flavor"
5582
5583     # FIXME need parameter to this fn
5584     # and remove global vars
5585     local cnt_all2all=$(calc_connection_cnt all2all)
5586
5587     local res=$(do_check_flavor all2all $flavor)
5588     if [ $res -eq $cnt_all2all ]; then
5589         echo "already have total $res $flavor connections"
5590         return
5591     fi
5592
5593     echo "found $res $flavor out of total $cnt_all2all connections"
5594     restore_to_default_flavor
5595
5596     [[ $flavor = null ]] && return 0
5597
5598     set_rule $FSNAME any any $flavor
5599     wait_flavor all2all $flavor
5600 }
5601
5602
5603 check_logdir() {
5604     local dir=$1
5605     # Checking for shared logdir
5606     if [ ! -d $dir ]; then
5607         # Not found. Create local logdir
5608         mkdir -p $dir
5609     else
5610         touch $dir/check_file.$(hostname -s)
5611     fi
5612     return 0
5613 }
5614
5615 check_write_access() {
5616     local dir=$1
5617     local node
5618     local file
5619
5620     for node in $(nodes_list); do
5621         file=$dir/check_file.$(short_hostname $node)
5622         if [[ ! -f "$file" ]]; then
5623             # Logdir not accessible/writable from this node.
5624             return 1
5625         fi
5626         rm -f $file || return 1
5627     done
5628     return 0
5629 }
5630
5631 init_logging() {
5632     if [[ -n $YAML_LOG ]]; then
5633         return
5634     fi
5635     local SAVE_UMASK=`umask`
5636     umask 0000
5637
5638     export YAML_LOG=${LOGDIR}/results.yml
5639     mkdir -p $LOGDIR
5640     init_clients_lists
5641
5642     if [ ! -f $YAML_LOG ]; then       # If the yaml log already exists then we will just append to it
5643       if check_shared_dir $LOGDIR; then
5644           touch $LOGDIR/shared
5645           echo "Logging to shared log directory: $LOGDIR"
5646       else
5647           echo "Logging to local directory: $LOGDIR"
5648       fi
5649
5650       yml_nodes_file $LOGDIR >> $YAML_LOG
5651       yml_results_file >> $YAML_LOG
5652     fi
5653
5654     umask $SAVE_UMASK
5655 }
5656
5657 log_test() {
5658     yml_log_test $1 >> $YAML_LOG
5659 }
5660
5661 log_test_status() {
5662      yml_log_test_status $@ >> $YAML_LOG
5663 }
5664
5665 log_sub_test_begin() {
5666     yml_log_sub_test_begin "$@" >> $YAML_LOG
5667 }
5668
5669 log_sub_test_end() {
5670     yml_log_sub_test_end "$@" >> $YAML_LOG
5671 }
5672
5673 run_llverdev()
5674 {
5675         local dev=$1
5676         local llverdev_opts=$2
5677         local devname=$(basename $1)
5678         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
5679         # loop devices aren't in /proc/partitions
5680         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
5681
5682         size=$(($size / 1024 / 1024)) # Gb
5683
5684         local partial_arg=""
5685         # Run in partial (fast) mode if the size
5686         # of a partition > 1 GB
5687         [ $size -gt 1 ] && partial_arg="-p"
5688
5689         llverdev --force $partial_arg $llverdev_opts $dev
5690 }
5691
5692 run_llverfs()
5693 {
5694         local dir=$1
5695         local llverfs_opts=$2
5696         local use_partial_arg=$3
5697         local partial_arg=""
5698         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
5699
5700         # Run in partial (fast) mode if the size
5701         # of a partition > 1 GB
5702         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
5703
5704         llverfs $partial_arg $llverfs_opts $dir
5705 }
5706
5707 remove_mdt_files() {
5708         local facet=$1
5709         local mdtdev=$2
5710         shift 2
5711         local files="$@"
5712         local mntpt=$(facet_mntpt $facet)
5713         local opts=$MDS_MOUNT_OPTS
5714
5715         echo "removing files from $mdtdev on $facet: $files"
5716         if [ $(facet_fstype $facet) == ldiskfs ] &&
5717            ! do_facet $facet test -b $mdtdev; then
5718                 opts=$(csa_add "$opts" -o loop)
5719         fi
5720         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5721                 return $?
5722         rc=0;
5723         for f in $files; do
5724                 rm $mntpt/ROOT/$f || { rc=$?; break; }
5725         done
5726         umount -f $mntpt || return $?
5727         return $rc
5728 }
5729
5730 duplicate_mdt_files() {
5731         local facet=$1
5732         local mdtdev=$2
5733         shift 2
5734         local files="$@"
5735         local mntpt=$(facet_mntpt $facet)
5736         local opts=$MDS_MOUNT_OPTS
5737
5738         echo "duplicating files on $mdtdev on $facet: $files"
5739         mkdir -p $mntpt || return $?
5740         if [ $(facet_fstype $facet) == ldiskfs ] &&
5741            ! do_facet $facet test -b $mdtdev; then
5742                 opts=$(csa_add "$opts" -o loop)
5743         fi
5744         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5745                 return $?
5746
5747     do_umount() {
5748         trap 0
5749         popd > /dev/null
5750         rm $tmp
5751         umount -f $mntpt
5752     }
5753     trap do_umount EXIT
5754
5755     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
5756     pushd $mntpt/ROOT > /dev/null || return $?
5757     rc=0
5758     for f in $files; do
5759         touch $f.bad || return $?
5760         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
5761         rc=${PIPESTATUS[0]}
5762         [ $rc -eq 0 ] || return $rc
5763         setfattr --restore $tmp || return $?
5764     done
5765     do_umount
5766 }
5767
5768 run_sgpdd () {
5769     local devs=${1//,/ }
5770     shift
5771     local params=$@
5772     local rslt=$TMP/sgpdd_survey
5773
5774     # sgpdd-survey cleanups ${rslt}.* files
5775
5776     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
5777     echo + $cmd
5778     eval $cmd
5779     cat ${rslt}.detail
5780 }
5781
5782 # returns the canonical name for an ldiskfs device
5783 ldiskfs_canon() {
5784         local dev="$1"
5785         local facet="$2"
5786
5787         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
5788 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
5789     echo dm-\\\${foo##*:};
5790 else
5791     echo \\\$(basename \\\$dv);
5792 fi;"
5793 }
5794
5795 is_sanity_benchmark() {
5796     local benchmarks="dbench bonnie iozone fsx"
5797     local suite=$1
5798     for b in $benchmarks; do
5799         if [ "$b" == "$suite" ]; then
5800             return 0
5801         fi
5802     done
5803     return 1
5804 }
5805
5806 min_ost_size () {
5807     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
5808 }
5809
5810 # Get the block size of the filesystem.
5811 get_block_size() {
5812     local facet=$1
5813     local device=$2
5814     local size
5815
5816     size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
5817            awk '/^Block size:/ {print $3}')
5818     echo $size
5819 }
5820
5821 # Check whether the "large_xattr" feature is enabled or not.
5822 large_xattr_enabled() {
5823         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
5824
5825         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5826
5827         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 | grep -q large_xattr"
5828         return ${PIPESTATUS[0]}
5829 }
5830
5831 # Get the maximum xattr size supported by the filesystem.
5832 max_xattr_size() {
5833     local size
5834
5835     if large_xattr_enabled; then
5836         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
5837         size=65536
5838     else
5839         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5840         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
5841
5842         # maximum xattr size = size of block - size of header -
5843         #                      size of 1 entry - 4 null bytes
5844         size=$((block_size - 32 - 32 - 4))
5845     fi
5846
5847     echo $size
5848 }
5849
5850 # Dump the value of the named xattr from a file.
5851 get_xattr_value() {
5852     local xattr_name=$1
5853     local file=$2
5854
5855     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
5856 }
5857
5858 # Generate a string with size of $size bytes.
5859 generate_string() {
5860     local size=${1:-1024} # in bytes
5861
5862     echo "$(head -c $size < /dev/zero | tr '\0' y)"
5863 }
5864
5865 reformat_external_journal() {
5866         if [ ! -z ${EJOURNAL} ]; then
5867                 local rcmd="do_facet ${SINGLEMDS}"
5868
5869                 echo "reformat external journal on ${SINGLEMDS}:${EJOURNAL}"
5870                 ${rcmd} mke2fs -O journal_dev ${EJOURNAL} || return 1
5871         fi
5872 }
5873
5874 # MDT file-level backup/restore
5875 mds_backup_restore() {
5876         local devname=$(mdsdevname ${SINGLEMDS//mds/})
5877         local mntpt=$(facet_mntpt brpt)
5878         local rcmd="do_facet ${SINGLEMDS}"
5879         local metaea=${TMP}/backup_restore.ea
5880         local metadata=${TMP}/backup_restore.tgz
5881         local opts=${MDS_MOUNT_OPTS}
5882         local svc=${SINGLEMDS}_svc
5883         local igif=$1
5884
5885         if ! ${rcmd} test -b ${devname}; then
5886                 opts=$(csa_add "$opts" -o loop)
5887         fi
5888
5889         echo "file-level backup/restore on ${SINGLEMDS}:${devname}"
5890
5891         # step 1: build mount point
5892         ${rcmd} mkdir -p $mntpt
5893         # step 2: cleanup old backup
5894         ${rcmd} rm -f $metaea $metadata
5895         # step 3: mount dev
5896         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
5897         if [ ! -z $igif ]; then
5898                 # step 3.5: rm .lustre
5899                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
5900         fi
5901         # step 4: backup metaea
5902         echo "backup EA"
5903         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
5904                 return 2
5905         # step 5: backup metadata
5906         echo "backup data"
5907         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
5908         # step 6: umount
5909         ${rcmd} umount -d $mntpt || return 4
5910         # step 7: reformat external journal if needed
5911         reformat_external_journal || return 5
5912         # step 8: reformat dev
5913         echo "reformat new device"
5914         add ${SINGLEMDS} $(mkfs_opts ${SINGLEMDS}) --backfstype ldiskfs \
5915                 --reformat $devname > /dev/null || return 6
5916         # step 9: mount dev
5917         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
5918         # step 10: restore metadata
5919         echo "restore data"
5920         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
5921         # step 11: restore metaea
5922         echo "restore EA"
5923         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
5924         # step 12: remove recovery logs
5925         echo "remove recovery logs"
5926         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
5927         # step 13: umount dev
5928         ${rcmd} umount -d $mntpt || return 10
5929         # step 14: cleanup tmp backup
5930         ${rcmd} rm -f $metaea $metadata
5931         # step 15: reset device label - it's not virgin on
5932         ${rcmd} e2label $devname ${!svc}
5933 }
5934
5935 # remove OI files
5936 mds_remove_ois() {
5937         local devname=$(mdsdevname ${SINGLEMDS//mds/})
5938         local mntpt=$(facet_mntpt brpt)
5939         local rcmd="do_facet ${SINGLEMDS}"
5940         local idx=$1
5941         local opts=${MDS_MOUNT_OPTS}
5942
5943         if ! ${rcmd} test -b ${devname}; then
5944                 opts=$(csa_add "$opts" -o loop)
5945         fi
5946
5947         echo "remove OI files: idx=${idx}"
5948
5949         # step 1: build mount point
5950         ${rcmd} mkdir -p $mntpt
5951         # step 2: mount dev
5952         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
5953         if [ -z $idx ]; then
5954                 # step 3: remove all OI files
5955                 ${rcmd} rm -fv $mntpt/oi.16*
5956         elif [ $idx -lt 2 ]; then
5957                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
5958         else
5959                 local i
5960
5961                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
5962                 for ((i=${idx}; i<64; i=$((i * idx)))); do
5963                         ${rcmd} rm -fv $mntpt/oi.16.${i}
5964                 done
5965         fi
5966         # step 4: umount
5967         ${rcmd} umount -d $mntpt || return 2
5968         # OI files will be recreated when mounted as lustre next time.
5969 }
5970
5971 # generate maloo upload-able log file name
5972 # \param logname specify unique part of file name
5973 generate_logname() {
5974         local logname=${1:-"default_logname"}
5975
5976         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
5977 }
5978
5979 # mkdir directory on different MDTs
5980 test_mkdir() {
5981         local option
5982         local parent
5983         local child
5984         local path
5985         local dir
5986         local rc=0
5987
5988         if [ $# -eq 2 ]; then
5989                 option=$1
5990                 path=$2
5991         else
5992                 path=$1
5993         fi
5994
5995         child=${path##*/}
5996         parent=${path%/*}
5997
5998         if [ "$parent" == "$child" ]; then
5999                 parent=$(pwd)
6000         fi
6001
6002         if [ "$option" == "-p" -a -d ${parent}/${child} ]; then
6003                 return $rc
6004         fi
6005
6006         # it needs to check whether there is further / in child
6007         dir=$(echo $child | awk -F '/' '{print $2}')
6008         if [ ! -z "$dir" ]; then
6009                 local subparent=$(echo $child | awk -F '/' '{ print $1 }')
6010                 parent=${parent}"/"${subparent}
6011                 child=$dir
6012         fi
6013
6014         if [ ! -d ${parent} ]; then
6015                 if [ "$option" == "-p" ]; then
6016                         mkdir -p ${parent}
6017                 else
6018                         return 1
6019                 fi
6020         fi
6021
6022         if [ $MDSCOUNT -le 1 ]; then
6023                 mkdir $option ${parent}/${child} || rc=$?
6024         else
6025                 local mdt_idx=$($LFS getstripe -M $parent)
6026
6027                 if [ "$mdt_idx" -ne 0 ]; then
6028                         mkdir $option ${parent}/${child} || rc=$?
6029                         return $rc
6030                 fi
6031
6032                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
6033                 local mdt_idx=$((test_num % MDSCOUNT))
6034                 echo "mkdir $mdt_idx for ${parent}/${child}"
6035                 $LFS setdirstripe -i $mdt_idx ${parent}/${child} || rc=$?
6036         fi
6037         return $rc
6038 }