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