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