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