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