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