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