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