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