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