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