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