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