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