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