Whamcloud - gitweb
LU-11394 utils: Adjust HOSTID constant
[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_mdt_ldlm_reply() {
5621 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
5622     RC=0
5623     local list=$(comma_list $(mdts_nodes))
5624     do_nodes $list lctl set_param fail_loc=0x157
5625
5626     do_facet client "$@" || RC=$?
5627
5628     do_nodes $list lctl set_param fail_loc=0
5629     return $RC
5630 }
5631
5632 drop_mdt_ldlm_reply_once() {
5633 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
5634     RC=0
5635     local list=$(comma_list $(mdts_nodes))
5636     do_nodes $list lctl set_param fail_loc=0x80000157
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 #
5876 # Function: skip_env()
5877 # Purpose:  to skip a test during developer testing because some tool
5878 #           is missing, but fail the test in release testing because the test
5879 #           environment is not configured properly".
5880 #
5881 skip_env () {
5882         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
5883 }
5884
5885 skip_noexit() {
5886         echo
5887         log " SKIP: $TESTSUITE $TESTNAME $@"
5888
5889         if [[ -n "$ALWAYS_SKIPPED" ]]; then
5890                 skip_logged $TESTNAME "$@"
5891         else
5892                 mkdir -p $LOGDIR
5893                 echo "$@" > $LOGDIR/skip
5894         fi
5895
5896         [[ -n "$TESTSUITELOG" ]] &&
5897                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
5898 }
5899
5900 skip() {
5901         skip_noexit $@
5902         exit 0
5903 }
5904
5905 build_test_filter() {
5906         EXCEPT="$EXCEPT $(testslist_filter)"
5907
5908         for O in $ONLY; do
5909                 if [[ $O = [0-9]*-[0-9]* ]]; then
5910                         for num in $(seq $(echo $O | tr '-' ' ')); do
5911                                 eval ONLY_$num=true
5912                         done
5913                 else
5914                         eval ONLY_${O}=true
5915                 fi
5916         done
5917
5918     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
5919         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
5920     [ "$EXCEPT_SLOW" ] && \
5921         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
5922     for E in $EXCEPT; do
5923         eval EXCEPT_${E}=true
5924     done
5925     for E in $ALWAYS_EXCEPT; do
5926         eval EXCEPT_ALWAYS_${E}=true
5927     done
5928     for E in $EXCEPT_SLOW; do
5929         eval EXCEPT_SLOW_${E}=true
5930     done
5931     for G in $GRANT_CHECK_LIST; do
5932         eval GCHECK_ONLY_${G}=true
5933         done
5934 }
5935
5936 basetest() {
5937     if [[ $1 = [a-z]* ]]; then
5938         echo $1
5939     else
5940         echo ${1%%[a-z]*}
5941     fi
5942 }
5943
5944 # print a newline if the last test was skipped
5945 export LAST_SKIPPED=
5946 export ALWAYS_SKIPPED=
5947 #
5948 # Main entry into test-framework. This is called with the name and
5949 # description of a test. The name is used to find the function to run
5950 # the test using "test_$name".
5951 #
5952 # This supports a variety of methods of specifying specific test to
5953 # run or not run.  These need to be documented...
5954 #
5955 run_test() {
5956         assert_DIR
5957
5958         export base=$(basetest $1)
5959         if [ -n "$ONLY" ]; then
5960                 testname=ONLY_$1
5961                 if [ ${!testname}x != x ]; then
5962                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
5963                         run_one_logged $1 "$2"
5964                         return $?
5965                 fi
5966                 testname=ONLY_$base
5967                 if [ ${!testname}x != x ]; then
5968                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
5969                         run_one_logged $1 "$2"
5970                         return $?
5971                 fi
5972                 LAST_SKIPPED="y"
5973                 return 0
5974         fi
5975
5976         LAST_SKIPPED="y"
5977         ALWAYS_SKIPPED="y"
5978         testname=EXCEPT_$1
5979         if [ ${!testname}x != x ]; then
5980                 TESTNAME=test_$1 skip_noexit "skipping excluded test $1"
5981                 return 0
5982         fi
5983         testname=EXCEPT_$base
5984         if [ ${!testname}x != x ]; then
5985                 TESTNAME=test_$1 skip_noexit "skipping excluded test $1 (base $base)"
5986                 return 0
5987         fi
5988         testname=EXCEPT_ALWAYS_$1
5989         if [ ${!testname}x != x ]; then
5990                 TESTNAME=test_$1 skip_noexit "skipping ALWAYS excluded test $1"
5991                 return 0
5992         fi
5993         testname=EXCEPT_ALWAYS_$base
5994         if [ ${!testname}x != x ]; then
5995                 TESTNAME=test_$1 skip_noexit "skipping ALWAYS excluded test $1 (base $base)"
5996                 return 0
5997         fi
5998         testname=EXCEPT_SLOW_$1
5999         if [ ${!testname}x != x ]; then
6000                 TESTNAME=test_$1 skip_noexit "skipping SLOW test $1"
6001                 return 0
6002         fi
6003         testname=EXCEPT_SLOW_$base
6004         if [ ${!testname}x != x ]; then
6005                 TESTNAME=test_$1 skip_noexit "skipping SLOW test $1 (base $base)"
6006                 return 0
6007         fi
6008
6009         LAST_SKIPPED=
6010         ALWAYS_SKIPPED=
6011         run_one_logged $1 "$2"
6012
6013         return $?
6014 }
6015
6016 log() {
6017         echo "$*" >&2
6018         load_module ../libcfs/libcfs/libcfs
6019
6020     local MSG="$*"
6021     # Get rid of '
6022     MSG=${MSG//\'/\\\'}
6023     MSG=${MSG//\(/\\\(}
6024     MSG=${MSG//\)/\\\)}
6025     MSG=${MSG//\;/\\\;}
6026     MSG=${MSG//\|/\\\|}
6027     MSG=${MSG//\>/\\\>}
6028     MSG=${MSG//\</\\\<}
6029     MSG=${MSG//\//\\\/}
6030     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
6031 }
6032
6033 trace() {
6034         log "STARTING: $*"
6035         strace -o $TMP/$1.strace -ttt $*
6036         RC=$?
6037         log "FINISHED: $*: rc $RC"
6038         return 1
6039 }
6040
6041 complete () {
6042     local duration=$1
6043
6044     banner test complete, duration $duration sec
6045     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
6046     echo duration $duration >>$TESTSUITELOG
6047 }
6048
6049 pass() {
6050         # Set TEST_STATUS here. It will be used for logging the result.
6051         TEST_STATUS="PASS"
6052
6053         if [[ -f $LOGDIR/err ]]; then
6054                 TEST_STATUS="FAIL"
6055         elif [[ -f $LOGDIR/skip ]]; then
6056                 TEST_STATUS="SKIP"
6057         fi
6058         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
6059 }
6060
6061 check_mds() {
6062     local FFREE=$(do_node $SINGLEMDS \
6063         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
6064     local FTOTAL=$(do_node $SINGLEMDS \
6065         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
6066
6067     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
6068 }
6069
6070 reset_fail_loc () {
6071         echo -n "Resetting fail_loc on all nodes..."
6072         do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 \
6073             fail_val=0 2>/dev/null" || true
6074         echo done.
6075 }
6076
6077
6078 #
6079 # Log a message (on all nodes) padded with "=" before and after.
6080 # Also appends a timestamp and prepends the testsuite name.
6081 #
6082
6083 EQUALS="===================================================================================================="
6084 banner() {
6085     msg="== ${TESTSUITE} $*"
6086     last=${msg: -1:1}
6087     [[ $last != "=" && $last != " " ]] && msg="$msg "
6088     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
6089     # always include at least == after the message
6090     log "$msg== $(date +"%H:%M:%S (%s)")"
6091 }
6092
6093 check_dmesg_for_errors() {
6094         local res
6095         local errors="VFS: Busy inodes after unmount of\|\
6096 ldiskfs_check_descriptors: Checksum for group 0 failed\|\
6097 group descriptors corrupted"
6098
6099         res=$(do_nodes $(comma_list $(nodes_list)) "dmesg" | grep "$errors")
6100         [ -z "$res" ] && return 0
6101         echo "Kernel error detected: $res"
6102         return 1
6103 }
6104
6105 #
6106 # Run a single test function and cleanup after it.
6107 #
6108 # This function should be run in a subshell so the test func can
6109 # exit() without stopping the whole script.
6110 #
6111 run_one() {
6112         local testnum=$1
6113         local message=$2
6114         export tfile=f${testnum}.${TESTSUITE}
6115         export tdir=d${testnum}.${TESTSUITE}
6116         export TESTNAME=test_$testnum
6117         local SAVE_UMASK=`umask`
6118         umask 0022
6119
6120         if ! grep -q $DIR /proc/mounts; then
6121                 $SETUP
6122         fi
6123
6124         banner "test $testnum: $message"
6125         test_${testnum} || error "test_$testnum failed with $?"
6126         cd $SAVE_PWD
6127         reset_fail_loc
6128         check_grant ${testnum} || error "check_grant $testnum failed with $?"
6129         check_node_health
6130         check_dmesg_for_errors || error "Error in dmesg detected"
6131         if [ "$PARALLEL" != "yes" ]; then
6132                 ps auxww | grep -v grep | grep -q multiop &&
6133                                         error "multiop still running"
6134         fi
6135         unset TESTNAME
6136         unset tdir
6137         unset tfile
6138         umask $SAVE_UMASK
6139         $CLEANUP
6140         return 0
6141 }
6142
6143 #
6144 # Wrapper around run_one to ensure:
6145 #  - test runs in subshell
6146 #  - output of test is saved to separate log file for error reporting
6147 #  - test result is saved to data file
6148 #
6149 run_one_logged() {
6150         local BEFORE=$(date +%s)
6151         local TEST_ERROR
6152         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
6153         local test_log=$LOGDIR/$name
6154         local zfs_log_name=${TESTSUITE}.test_${1}.zfs_log
6155         local zfs_debug_log=$LOGDIR/$zfs_log_name
6156         rm -rf $LOGDIR/err
6157         rm -rf $LOGDIR/ignore
6158         rm -rf $LOGDIR/skip
6159         local SAVE_UMASK=$(umask)
6160         umask 0022
6161
6162         echo
6163         log_sub_test_begin test_${1}
6164         (run_one $1 "$2") 2>&1 | tee -i $test_log
6165         local RC=${PIPESTATUS[0]}
6166
6167         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] &&
6168                 echo "test_$1 returned $RC" | tee $LOGDIR/err
6169
6170         duration=$(($(date +%s) - $BEFORE))
6171         pass "$1" "(${duration}s)"
6172
6173         if [[ -f $LOGDIR/err ]]; then
6174                 TEST_ERROR=$(cat $LOGDIR/err)
6175         elif [[ -f $LOGDIR/ignore ]]; then
6176                 TEST_ERROR=$(cat $LOGDIR/ignore)
6177         elif [[ -f $LOGDIR/skip ]]; then
6178                 TEST_ERROR=$(cat $LOGDIR/skip)
6179         fi
6180         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
6181
6182         if [[ "$TEST_STATUS" != "SKIP" ]] && [[ -f $TF_SKIP ]]; then
6183                 rm -f $TF_SKIP
6184         fi
6185
6186         if [ -f $LOGDIR/err ]; then
6187                 log_zfs_info "$zfs_debug_log"
6188                 $FAIL_ON_ERROR && exit $RC
6189         fi
6190
6191         umask $SAVE_UMASK
6192
6193         return 0
6194 }
6195
6196 #
6197 # Print information of skipped tests to result.yml
6198 #
6199 skip_logged(){
6200         log_sub_test_begin $1
6201         shift
6202         log_sub_test_end "SKIP" "0" "0" "$@"
6203 }
6204
6205 canonical_path() {
6206         (cd $(dirname $1); echo $PWD/$(basename $1))
6207 }
6208
6209
6210 check_grant() {
6211         export base=$(basetest $1)
6212         [ "$CHECK_GRANT" == "no" ] && return 0
6213
6214         testnamebase=GCHECK_ONLY_${base}
6215         testname=GCHECK_ONLY_$1
6216         [ ${!testnamebase}x == x -a ${!testname}x == x ] && return 0
6217
6218         echo -n "checking grant......"
6219
6220         local clients=$CLIENTS
6221         [ -z "$clients" ] && clients=$(hostname)
6222
6223         # sync all the data and make sure no pending data on server
6224         do_nodes $clients sync
6225         clients_up # initiate all idling connections
6226
6227         # get client grant
6228         client_grant=$(do_nodes $clients \
6229                 "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" |
6230                 awk '{ total += $1 } END { printf("%0.0f", total) }')
6231
6232         # get server grant
6233         # which is tot_granted less grant_precreate
6234         server_grant=$(do_nodes $(comma_list $(osts_nodes)) \
6235                 "$LCTL get_param "\
6236                 "obdfilter.${FSNAME}-OST*.{tot_granted,tot_pending,grant_precreate}" |
6237                 sed 's/=/ /'| awk '/tot_granted/{ total += $2 };
6238                                 /tot_pending/{ total -= $2 };
6239                                 /grant_precreate/{ total -= $2 };
6240                                 END { printf("%0.0f", total) }')
6241
6242         # check whether client grant == server grant
6243         if [[ $client_grant -ne $server_grant ]]; then
6244                 do_nodes $(comma_list $(osts_nodes)) \
6245                         "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*" \
6246                         "obdfilter.${FSNAME}-OST*.grant_*"
6247                 do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
6248                 error "failed: client:${client_grant} server: ${server_grant}."
6249         else
6250                 echo "pass: client:${client_grant} server: ${server_grant}"
6251         fi
6252 }
6253
6254 ########################
6255 # helper functions
6256
6257 osc_to_ost()
6258 {
6259     osc=$1
6260     ost=`echo $1 | awk -F_ '{print $3}'`
6261     if [ -z $ost ]; then
6262         ost=`echo $1 | sed 's/-osc.*//'`
6263     fi
6264     echo $ost
6265 }
6266
6267 ostuuid_from_index()
6268 {
6269     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6270 }
6271
6272 ostname_from_index() {
6273     local uuid=$(ostuuid_from_index $1)
6274     echo ${uuid/_UUID/}
6275 }
6276
6277 index_from_ostuuid()
6278 {
6279     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
6280 }
6281
6282 mdtuuid_from_index()
6283 {
6284     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6285 }
6286
6287 # Description:
6288 #   Return unique identifier for given hostname
6289 host_id() {
6290         local host_name=$1
6291         echo $host_name | md5sum | cut -d' ' -f1
6292 }
6293
6294 # Description:
6295 #   Returns list of ip addresses for each interface
6296 local_addr_list() {
6297         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
6298 }
6299
6300 is_local_addr() {
6301         local addr=$1
6302         # Cache address list to avoid mutiple execution of local_addr_list
6303         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
6304         local i
6305         for i in $LOCAL_ADDR_LIST ; do
6306                 [[ "$i" == "$addr" ]] && return 0
6307         done
6308         return 1
6309 }
6310
6311 local_node() {
6312         local host_name=$1
6313         local is_local="IS_LOCAL_$(host_id $host_name)"
6314         if [ -z "${!is_local-}" ] ; then
6315                 eval $is_local=0
6316                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
6317                 is_local_addr "$host_ip" && eval $is_local=1
6318         fi
6319         [[ "${!is_local}" == "1" ]]
6320 }
6321
6322 remote_node () {
6323         local node=$1
6324         local_node $node && return 1
6325         return 0
6326 }
6327
6328 remote_mds ()
6329 {
6330     local node
6331     for node in $(mdts_nodes); do
6332         remote_node $node && return 0
6333     done
6334     return 1
6335 }
6336
6337 remote_mds_nodsh()
6338 {
6339         [ -n "$CLIENTONLY" ] && return 0 || true
6340         remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
6341 }
6342
6343 require_dsh_mds()
6344 {
6345         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" &&
6346                 MSKIPPED=1 && return 1
6347         return 0
6348 }
6349
6350 remote_ost ()
6351 {
6352     local node
6353     for node in $(osts_nodes) ; do
6354         remote_node $node && return 0
6355     done
6356     return 1
6357 }
6358
6359 remote_ost_nodsh()
6360 {
6361         [ -n "$CLIENTONLY" ] && return 0 || true
6362         remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6363 }
6364
6365 require_dsh_ost()
6366 {
6367         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
6368             OSKIPPED=1 && return 1
6369         return 0
6370 }
6371
6372 remote_mgs_nodsh()
6373 {
6374         [ -n "$CLIENTONLY" ] && return 0 || true
6375         local MGS
6376         MGS=$(facet_host mgs)
6377         remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6378 }
6379
6380 local_mode ()
6381 {
6382     remote_mds_nodsh || remote_ost_nodsh || \
6383         $(single_local_node $(comma_list $(nodes_list)))
6384 }
6385
6386 remote_servers () {
6387     remote_ost && remote_mds
6388 }
6389
6390 # Get the active nodes for facets.
6391 facets_nodes () {
6392         local facets=$1
6393         local facet
6394         local nodes
6395         local nodes_sort
6396         local i
6397
6398         for facet in ${facets//,/ }; do
6399                 nodes="$nodes $(facet_active_host $facet)"
6400         done
6401
6402         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6403         echo -n $nodes_sort
6404 }
6405
6406 # Get name of the active MGS node.
6407 mgs_node () {
6408         echo -n $(facets_nodes $(get_facets MGS))
6409 }
6410
6411 # Get all of the active MDS nodes.
6412 mdts_nodes () {
6413         echo -n $(facets_nodes $(get_facets MDS))
6414 }
6415
6416 # Get all of the active OSS nodes.
6417 osts_nodes () {
6418         echo -n $(facets_nodes $(get_facets OST))
6419 }
6420
6421 # Get all of the active AGT (HSM agent) nodes.
6422 agts_nodes () {
6423         echo -n $(facets_nodes $(get_facets AGT))
6424 }
6425
6426 # Get all of the client nodes and active server nodes.
6427 nodes_list () {
6428         local nodes=$HOSTNAME
6429         local nodes_sort
6430         local i
6431
6432         # CLIENTS (if specified) contains the local client
6433         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6434
6435         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6436                 nodes="$nodes $(facets_nodes $(get_facets))"
6437         fi
6438
6439         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6440         echo -n $nodes_sort
6441 }
6442
6443 # Get all of the remote client nodes and remote active server nodes.
6444 remote_nodes_list () {
6445         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
6446 }
6447
6448 # Get all of the MDS nodes, including active and passive nodes.
6449 all_mdts_nodes () {
6450         local host
6451         local failover_host
6452         local nodes
6453         local nodes_sort
6454         local i
6455
6456         for i in $(seq $MDSCOUNT); do
6457                 host=mds${i}_HOST
6458                 failover_host=mds${i}failover_HOST
6459                 nodes="$nodes ${!host} ${!failover_host}"
6460         done
6461
6462         [ -n "$nodes" ] || nodes="${mds_HOST} ${mdsfailover_HOST}"
6463         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6464         echo -n $nodes_sort
6465 }
6466
6467 # Get all of the OSS nodes, including active and passive nodes.
6468 all_osts_nodes () {
6469         local host
6470         local failover_host
6471         local nodes=
6472         local nodes_sort
6473         local i
6474
6475         for i in $(seq $OSTCOUNT); do
6476                 host=ost${i}_HOST
6477                 failover_host=ost${i}failover_HOST
6478                 nodes="$nodes ${!host} ${!failover_host}"
6479         done
6480
6481         [ -n "$nodes" ] || nodes="${ost_HOST} ${ostfailover_HOST}"
6482         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6483         echo -n $nodes_sort
6484 }
6485
6486 # Get all of the server nodes, including active and passive nodes.
6487 all_server_nodes () {
6488         local nodes
6489         local nodes_sort
6490         local i
6491
6492         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
6493
6494         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6495         echo -n $nodes_sort
6496 }
6497
6498 # Get all of the client and server nodes, including active and passive nodes.
6499 all_nodes () {
6500         local nodes=$HOSTNAME
6501         local nodes_sort
6502         local i
6503
6504         # CLIENTS (if specified) contains the local client
6505         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6506
6507         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6508                 nodes="$nodes $(all_server_nodes)"
6509         fi
6510
6511         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6512         echo -n $nodes_sort
6513 }
6514
6515 init_clients_lists () {
6516     # Sanity check: exclude the local client from RCLIENTS
6517     local clients=$(hostlist_expand "$RCLIENTS")
6518     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
6519
6520     # Sanity check: exclude the dup entries
6521     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
6522
6523     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
6524
6525     # Sanity check: exclude the dup entries from CLIENTS
6526     # for those configs which has SINGLCLIENT set to local client
6527     clients=$(for i in $clients; do echo $i; done | sort -u)
6528
6529     CLIENTS=$(comma_list $clients)
6530     local -a remoteclients=($RCLIENTS)
6531     for ((i=0; $i<${#remoteclients[@]}; i++)); do
6532             varname=CLIENT$((i + 2))
6533             eval $varname=${remoteclients[i]}
6534     done
6535
6536     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
6537 }
6538
6539 get_random_entry () {
6540     local rnodes=$1
6541
6542     rnodes=${rnodes//,/ }
6543
6544     local -a nodes=($rnodes)
6545     local num=${#nodes[@]}
6546     local i=$((RANDOM * num * 2 / 65536))
6547
6548     echo ${nodes[i]}
6549 }
6550
6551 client_only () {
6552         [ -n "$CLIENTONLY" ] || [ "x$CLIENTMODSONLY" = "xyes" ]
6553 }
6554
6555 check_versions () {
6556     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
6557       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
6558 }
6559
6560 get_node_count() {
6561     local nodes="$@"
6562     echo $nodes | wc -w || true
6563 }
6564
6565 mixed_ost_devs () {
6566     local nodes=$(osts_nodes)
6567     local osscount=$(get_node_count "$nodes")
6568     [ ! "$OSTCOUNT" = "$osscount" ]
6569 }
6570
6571 mixed_mdt_devs () {
6572     local nodes=$(mdts_nodes)
6573     local mdtcount=$(get_node_count "$nodes")
6574     [ ! "$MDSCOUNT" = "$mdtcount" ]
6575 }
6576
6577 generate_machine_file() {
6578     local nodes=${1//,/ }
6579     local machinefile=$2
6580     rm -f $machinefile
6581     for node in $nodes; do
6582         echo $node >>$machinefile || \
6583             { echo "can not generate machinefile $machinefile" && return 1; }
6584     done
6585 }
6586
6587 get_stripe () {
6588         local file=$1/stripe
6589
6590         touch $file
6591         $LFS getstripe -v $file || error "getstripe $file failed"
6592         rm -f $file
6593 }
6594
6595 setstripe_nfsserver () {
6596         local dir=$1
6597         local nfsexportdir=$2
6598         shift
6599         shift
6600
6601         local -a nfsexport=($(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
6602                 { print $1 }' /proc/mounts | cut -f 1 -d :))
6603
6604         # check that only one nfs mounted
6605         [[ -z $nfsexport ]] && echo "$dir is not nfs mounted" && return 1
6606         (( ${#nfsexport[@]} == 1 )) ||
6607                 error "several nfs mounts found for $dir: ${nfsexport[@]} !"
6608
6609         do_nodev ${nfsexport[0]} lfs setstripe $nfsexportdir "$@"
6610 }
6611
6612 # Check and add a test group.
6613 add_group() {
6614         local group_id=$1
6615         local group_name=$2
6616         local rc=0
6617
6618         local gid=$(getent group $group_name | cut -d: -f3)
6619         if [[ -n "$gid" ]]; then
6620                 [[ "$gid" -eq "$group_id" ]] || {
6621                         error_noexit "inconsistent group ID:" \
6622                                      "new: $group_id, old: $gid"
6623                         rc=1
6624                 }
6625         else
6626                 groupadd -g $group_id $group_name
6627                 rc=${PIPESTATUS[0]}
6628         fi
6629
6630         return $rc
6631 }
6632
6633 # Check and add a test user.
6634 add_user() {
6635         local user_id=$1
6636         shift
6637         local user_name=$1
6638         shift
6639         local group_name=$1
6640         shift
6641         local home=$1
6642         shift
6643         local opts="$@"
6644         local rc=0
6645
6646         local uid=$(getent passwd $user_name | cut -d: -f3)
6647         if [[ -n "$uid" ]]; then
6648                 if [[ "$uid" -eq "$user_id" ]]; then
6649                         local dir=$(getent passwd $user_name | cut -d: -f6)
6650                         if [[ "$dir" != "$home" ]]; then
6651                                 mkdir -p $home
6652                                 usermod -d $home $user_name
6653                                 rc=${PIPESTATUS[0]}
6654                         fi
6655                 else
6656                         error_noexit "inconsistent user ID:" \
6657                                      "new: $user_id, old: $uid"
6658                         rc=1
6659                 fi
6660         else
6661                 mkdir -p $home
6662                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
6663                 rc=${PIPESTATUS[0]}
6664         fi
6665
6666         return $rc
6667 }
6668
6669 check_runas_id_ret() {
6670     local myRC=0
6671     local myRUNAS_UID=$1
6672     local myRUNAS_GID=$2
6673     shift 2
6674     local myRUNAS=$@
6675     if [ -z "$myRUNAS" ]; then
6676         error_exit "myRUNAS command must be specified for check_runas_id"
6677     fi
6678     if $GSS_KRB5; then
6679         $myRUNAS krb5_login.sh || \
6680             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
6681     fi
6682     mkdir $DIR/d0_runas_test
6683     chmod 0755 $DIR
6684     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
6685     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
6686     rm -rf $DIR/d0_runas_test
6687     return $myRC
6688 }
6689
6690 check_runas_id() {
6691     local myRUNAS_UID=$1
6692     local myRUNAS_GID=$2
6693     shift 2
6694     local myRUNAS=$@
6695     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
6696         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
6697         Please set RUNAS_ID to some UID which exists on MDS and client or
6698         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
6699 }
6700
6701 # obtain the UID/GID for MPI_USER
6702 get_mpiuser_id() {
6703     local mpi_user=$1
6704
6705     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
6706 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
6707
6708     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
6709 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
6710 }
6711
6712 # obtain and cache Kerberos ticket-granting ticket
6713 refresh_krb5_tgt() {
6714     local myRUNAS_UID=$1
6715     local myRUNAS_GID=$2
6716     shift 2
6717     local myRUNAS=$@
6718     if [ -z "$myRUNAS" ]; then
6719         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
6720     fi
6721
6722     CLIENTS=${CLIENTS:-$HOSTNAME}
6723     do_nodes $CLIENTS "set -x
6724 if ! $myRUNAS krb5_login.sh; then
6725     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
6726     exit 1
6727 fi"
6728 }
6729
6730 # Run multiop in the background, but wait for it to print
6731 # "PAUSING" to its stdout before returning from this function.
6732 multiop_bg_pause() {
6733     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
6734     FILE=$1
6735     ARGS=$2
6736
6737     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
6738     mkfifo $TMPPIPE
6739
6740     echo "$MULTIOP_PROG $FILE v$ARGS"
6741     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
6742
6743     echo "TMPPIPE=${TMPPIPE}"
6744     read -t 60 multiop_output < $TMPPIPE
6745     if [ $? -ne 0 ]; then
6746         rm -f $TMPPIPE
6747         return 1
6748     fi
6749     rm -f $TMPPIPE
6750     if [ "$multiop_output" != "PAUSING" ]; then
6751         echo "Incorrect multiop output: $multiop_output"
6752         kill -9 $PID
6753         return 1
6754     fi
6755
6756     return 0
6757 }
6758
6759 do_and_time () {
6760     local cmd=$1
6761     local rc
6762
6763     SECONDS=0
6764     eval '$cmd'
6765
6766     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
6767
6768     echo $SECONDS
6769     return $rc
6770 }
6771
6772 inodes_available () {
6773         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
6774                 sort -un | head -n1) || return 1
6775         echo $((IFree))
6776 }
6777
6778 mdsrate_inodes_available () {
6779         local min_inodes=$(inodes_available)
6780         echo $((min_inodes * 99 / 100))
6781 }
6782
6783 # reset stat counters
6784 clear_stats() {
6785         local paramfile="$1"
6786         lctl set_param -n $paramfile=0
6787 }
6788
6789 # sum stat items
6790 calc_stats() {
6791         local paramfile="$1"
6792         local stat="$2"
6793         lctl get_param -n $paramfile |
6794                 awk '/^'$stat'/ { sum += $2 } END { printf("%0.0f", sum) }'
6795 }
6796
6797 calc_sum () {
6798         awk '{sum += $1} END { printf("%0.0f", sum) }'
6799 }
6800
6801 calc_osc_kbytes () {
6802         $LFS df $MOUNT > /dev/null
6803         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
6804 }
6805
6806 # save_lustre_params(comma separated facet list, parameter_mask)
6807 # generate a stream of formatted strings (<facet> <param name>=<param value>)
6808 save_lustre_params() {
6809         local facets=$1
6810         local facet
6811         local facet_svc
6812
6813         for facet in ${facets//,/ }; do
6814                 facet_svc=$(facet_svc $facet)
6815                 do_facet $facet \
6816                         "params=\\\$($LCTL get_param $2);
6817                          [[ -z \\\"$facet_svc\\\" ]] && param= ||
6818                          param=\\\$(grep $facet_svc <<< \\\"\\\$params\\\");
6819                          [[ -z \\\$param ]] && param=\\\"\\\$params\\\";
6820                          while read s; do echo $facet \\\$s;
6821                          done <<< \\\"\\\$param\\\""
6822         done
6823 }
6824
6825 # restore lustre parameters from input stream, produces by save_lustre_params
6826 restore_lustre_params() {
6827         local facet
6828         local name
6829         local val
6830
6831         while IFS=" =" read facet name val; do
6832                 do_facet $facet "$LCTL set_param -n $name=$val"
6833         done
6834 }
6835
6836 check_node_health() {
6837         local nodes=${1:-$(comma_list $(nodes_list))}
6838
6839         for node in ${nodes//,/ }; do
6840                 check_network "$node" 5
6841                 if [ $? -eq 0 ]; then
6842                         do_node $node "rc=0;
6843                         val=\\\$($LCTL get_param -n catastrophe 2>&1);
6844                         if [[ \\\$? -eq 0 && \\\$val -ne 0 ]]; then
6845                                 echo \\\$(hostname -s): \\\$val;
6846                                 rc=\\\$val;
6847                         fi;
6848                         exit \\\$rc" || error "$node:LBUG/LASSERT detected"
6849                 fi
6850         done
6851 }
6852
6853 mdsrate_cleanup () {
6854         if [ -d $4 ]; then
6855                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
6856                         --nfiles $3 --dir $4 --filefmt $5 $6
6857                 rmdir $4
6858         fi
6859 }
6860
6861 delayed_recovery_enabled () {
6862     local var=${SINGLEMDS}_svc
6863     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
6864 }
6865
6866 ########################
6867
6868 convert_facet2label() {
6869     local facet=$1
6870
6871     if [ x$facet = xost ]; then
6872        facet=ost1
6873     fi
6874
6875     local varsvc=${facet}_svc
6876
6877     if [ -n ${!varsvc} ]; then
6878         echo ${!varsvc}
6879     else
6880         error "No lablel for $facet!"
6881     fi
6882 }
6883
6884 get_clientosc_proc_path() {
6885         echo "${1}-osc-[-0-9a-f]*"
6886 }
6887
6888 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
6889 # used by MDT would not be changed.
6890 # mdt lov: fsname-mdtlov
6891 # mdt osc: fsname-OSTXXXX-osc
6892 mds_on_old_device() {
6893     local mds=${1:-"$SINGLEMDS"}
6894
6895     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
6896         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
6897             > /dev/null 2>&1" && return 0
6898     fi
6899     return 1
6900 }
6901
6902 get_mdtosc_proc_path() {
6903         local mds_facet=$1
6904         local ost_label=${2:-"*OST*"}
6905
6906         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
6907         local mdt_label=$(convert_facet2label $mds_facet)
6908         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
6909
6910         if [[ $ost_label = *OST* ]]; then
6911                 echo "${ost_label}-osc-${mdt_index}"
6912         else
6913                 echo "${ost_label}-osp-${mdt_index}"
6914         fi
6915 }
6916
6917 get_osc_import_name() {
6918     local facet=$1
6919     local ost=$2
6920     local label=$(convert_facet2label $ost)
6921
6922     if [ "${facet:0:3}" = "mds" ]; then
6923         get_mdtosc_proc_path $facet $label
6924         return 0
6925     fi
6926
6927     get_clientosc_proc_path $label
6928     return 0
6929 }
6930
6931 _wait_import_state () {
6932     local expected=$1
6933     local CONN_PROC=$2
6934     local maxtime=${3:-$(max_recovery_time)}
6935     local error_on_failure=${4:-1}
6936     local CONN_STATE
6937     local i=0
6938
6939         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
6940     while ! echo "${CONN_STATE}" | egrep -q "^${expected}\$" ; do
6941         if [ "${expected}" == "DISCONN" ]; then
6942             # for disconn we can check after proc entry is removed
6943             [ "x${CONN_STATE}" == "x" ] && return 0
6944             #  with AT enabled, we can have connect request timeout near of
6945             # reconnect timeout and test can't see real disconnect
6946             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
6947         fi
6948         if [ $i -ge $maxtime ]; then
6949             [ $error_on_failure -ne 0 ] && \
6950                 error "can't put import for $CONN_PROC into ${expected}" \
6951                       "state after $i sec, have ${CONN_STATE}"
6952             return 1
6953         fi
6954         sleep 1
6955         # Add uniq for multi-mount case
6956         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
6957         i=$(($i + 1))
6958     done
6959
6960     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
6961     return 0
6962 }
6963
6964 wait_import_state() {
6965     local state=$1
6966     local params=$2
6967     local maxtime=${3:-$(max_recovery_time)}
6968     local error_on_failure=${4:-1}
6969     local param
6970
6971     for param in ${params//,/ }; do
6972         _wait_import_state $state $param $maxtime $error_on_failure || return
6973     done
6974 }
6975
6976 wait_import_state_mount() {
6977         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
6978                 return 0
6979         fi
6980
6981         wait_import_state $*
6982 }
6983
6984 # One client request could be timed out because server was not ready
6985 # when request was sent by client.
6986 # The request timeout calculation details :
6987 # ptl_send_rpc ()
6988 #      /* We give the server rq_timeout secs to process the req, and
6989 #      add the network latency for our local timeout. */
6990 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
6991 #           ptlrpc_at_get_net_latency(request) ;
6992 #
6993 # ptlrpc_connect_import ()
6994 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
6995 #
6996 # init_imp_at () ->
6997 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
6998 # ptlrpc_at_get_net_latency(request) ->
6999 #       at_get (max (iat_net_latency=0, at_min)) = at_min
7000 #
7001 # i.e.:
7002 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
7003 # INITIAL_CONNECT_TIMEOUT + at_min
7004 #
7005 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
7006 # because we can not get this value in runtime,
7007 # the value depends on configure options, and it is not stored in /proc.
7008 # obd_support.h:
7009 # #define CONNECTION_SWITCH_MIN 5U
7010 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
7011
7012 request_timeout () {
7013     local facet=$1
7014
7015     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7016     local init_connect_timeout=$TIMEOUT
7017     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
7018
7019     local at_min=$(at_get $facet at_min)
7020
7021     echo $(( init_connect_timeout + at_min ))
7022 }
7023
7024 _wait_osc_import_state() {
7025         local facet=$1
7026         local ost_facet=$2
7027         local expected=$3
7028         local target=$(get_osc_import_name $facet $ost_facet)
7029         local param="osc.${target}.ost_server_uuid"
7030         local params=$param
7031         local i=0
7032
7033         # 1. wait the deadline of client 1st request (it could be skipped)
7034         # 2. wait the deadline of client 2nd request
7035         local maxtime=$(( 2 * $(request_timeout $facet)))
7036
7037         if [[ $facet == client* ]]; then
7038                 # During setup time, the osc might not be setup, it need wait
7039                 # until list_param can return valid value.
7040                 params=$($LCTL list_param $param 2>/dev/null || true)
7041                 while [ -z "$params" ]; do
7042                         if [ $i -ge $maxtime ]; then
7043                                 echo "can't get $param in $maxtime secs"
7044                                 return 1
7045                         fi
7046                         sleep 1
7047                         i=$((i + 1))
7048                         params=$($LCTL list_param $param 2>/dev/null || true)
7049                 done
7050         fi
7051
7052         if [[ $ost_facet = mds* ]]; then
7053                 # no OSP connection to itself
7054                 if [[ $facet = $ost_facet ]]; then
7055                         return 0
7056                 fi
7057                 param="osp.${target}.mdt_server_uuid"
7058                 params=$param
7059         fi
7060
7061         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7062                         wait_import_state $expected "$params" $maxtime; then
7063                 error "$facet: import is not in $expected state after $maxtime"
7064                 return 1
7065         fi
7066
7067         return 0
7068 }
7069
7070 wait_osc_import_state() {
7071         local facet=$1
7072         local ost_facet=$2
7073         local expected=$3
7074         local num
7075
7076         if [[ $facet = mds ]]; then
7077                 for num in $(seq $MDSCOUNT); do
7078                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
7079                 done
7080         else
7081                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
7082         fi
7083 }
7084
7085 wait_osc_import_ready() {
7086         wait_osc_import_state $1 $2 "\(FULL\|IDLE\)"
7087 }
7088
7089 _wait_mgc_import_state() {
7090         local facet=$1
7091         local expected=$2
7092         local error_on_failure=${3:-1}
7093         local param="mgc.*.mgs_server_uuid"
7094         local params=$param
7095         local i=0
7096
7097         # 1. wait the deadline of client 1st request (it could be skipped)
7098         # 2. wait the deadline of client 2nd request
7099         local maxtime=$(( 2 * $(request_timeout $facet)))
7100
7101         if [[ $facet == client* ]]; then
7102                 # During setup time, the osc might not be setup, it need wait
7103                 # until list_param can return valid value. And also if there
7104                 # are mulitple osc entries we should list all of them before
7105                 # go to wait.
7106                 params=$($LCTL list_param $param 2>/dev/null || true)
7107                 while [ -z "$params" ]; do
7108                         if [ $i -ge $maxtime ]; then
7109                                 echo "can't get $param in $maxtime secs"
7110                                 return 1
7111                         fi
7112                         sleep 1
7113                         i=$((i + 1))
7114                         params=$($LCTL list_param $param 2>/dev/null || true)
7115                 done
7116         fi
7117         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7118                         wait_import_state $expected "$params" $maxtime \
7119                                           $error_on_failure; then
7120                 if [ $error_on_failure -ne 0 ]; then
7121                     error "import is not in ${expected} state"
7122                 fi
7123                 return 1
7124         fi
7125
7126         return 0
7127 }
7128
7129 wait_mgc_import_state() {
7130         local facet=$1
7131         local expected=$2
7132         local error_on_failure=${3:-1}
7133         local num
7134
7135         if [[ $facet = mds ]]; then
7136                 for num in $(seq $MDSCOUNT); do
7137                         _wait_mgc_import_state mds$num "$expected" \
7138                                                $error_on_failure || return
7139                 done
7140         else
7141                 _wait_mgc_import_state "$facet" "$expected"
7142                                        $error_on_failure || return
7143         fi
7144 }
7145
7146 wait_dne_interconnect() {
7147         local num
7148
7149         if [ $MDSCOUNT -gt 1 ]; then
7150                 for num in $(seq $MDSCOUNT); do
7151                         wait_osc_import_ready mds mds$num
7152                 done
7153         fi
7154 }
7155
7156 get_clientmdc_proc_path() {
7157     echo "${1}-mdc-*"
7158 }
7159
7160 get_clientmgc_proc_path() {
7161     echo "*"
7162 }
7163
7164 do_rpc_nodes () {
7165         local list=$1
7166         shift
7167
7168         [ -z "$list" ] && return 0
7169
7170         # Add paths to lustre tests for 32 and 64 bit systems.
7171         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
7172         local TESTPATH="$RLUSTRE/tests:"
7173         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
7174         do_nodesv $list "${RPATH} NAME=${NAME} bash rpc.sh $@ "
7175 }
7176
7177 wait_clients_import_state () {
7178         local list=$1
7179         local facet=$2
7180         local expected=$3
7181
7182         local facets=$facet
7183
7184         if [ "$FAILURE_MODE" = HARD ]; then
7185                 facets=$(facets_on_host $(facet_active_host $facet))
7186         fi
7187
7188         for facet in ${facets//,/ }; do
7189                 local label=$(convert_facet2label $facet)
7190                 local proc_path
7191                 case $facet in
7192                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
7193                                   $label).ost_server_uuid" ;;
7194                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
7195                                   $label).mds_server_uuid" ;;
7196                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
7197                                   $label).mgs_server_uuid" ;;
7198                 *) error "unknown facet!" ;;
7199                 esac
7200
7201                 local params=$(expand_list $params $proc_path)
7202         done
7203
7204         if ! do_rpc_nodes "$list" wait_import_state_mount "$expected" $params;
7205         then
7206                 error "import is not in ${expected} state"
7207                 return 1
7208         fi
7209 }
7210
7211 wait_osp_active() {
7212         local facet=$1
7213         local tgt_name=$2
7214         local tgt_idx=$3
7215         local expected=$4
7216         local num
7217
7218         # wait until all MDTs are in the expected state
7219         for ((num = 1; num <= $MDSCOUNT; num++)); do
7220                 local mdtosp=$(get_mdtosc_proc_path mds${num} ${tgt_name})
7221                 local wait=0
7222                 local mproc
7223
7224                 if [ $facet = "mds" ]; then
7225                         mproc="osp.$mdtosp.active"
7226                         [ $num -eq $((tgt_idx + 1)) ] && continue
7227                 else
7228                         mproc="osc.$mdtosp.active"
7229                 fi
7230
7231                 echo "check $mproc"
7232                 while [ 1 ]; do
7233                         sleep 5
7234                         local result=$(do_facet mds${num} "$LCTL get_param -n $mproc")
7235                         local max=30
7236
7237                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $mproc"
7238                         if [ $result -eq $expected ]; then
7239                                 echo -n "target updated after "
7240                                 echo "$wait sec (got $result)"
7241                                 break
7242                         fi
7243                         wait=$((wait + 5))
7244                         if [ $wait -eq $max ]; then
7245                                 error "$tgt_name: wanted $expected got $result"
7246                         fi
7247                         echo "Waiting $((max - wait)) secs for $tgt_name"
7248                 done
7249         done
7250 }
7251
7252 oos_full() {
7253         local -a AVAILA
7254         local -a GRANTA
7255         local -a TOTALA
7256         local OSCFULL=1
7257         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
7258                   $LCTL get_param obdfilter.*.kbytesavail))
7259         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
7260                   $LCTL get_param -n obdfilter.*.tot_granted))
7261         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
7262                   $LCTL get_param -n obdfilter.*.kbytestotal))
7263         for ((i=0; i<${#AVAILA[@]}; i++)); do
7264                 local -a AVAIL1=(${AVAILA[$i]//=/ })
7265                 local -a TOTAL=(${TOTALA[$i]//=/ })
7266                 GRANT=$((${GRANTA[$i]}/1024))
7267                 # allow 1% of total space in bavail because of delayed
7268                 # allocation with ZFS which might release some free space after
7269                 # txg commit.  For small devices, we set a mininum of 8MB
7270                 local LIMIT=$((${TOTAL} / 100 + 8000))
7271                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
7272                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
7273                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
7274                         echo " FULL" || echo
7275         done
7276         return $OSCFULL
7277 }
7278
7279 list_pool() {
7280         echo -e "$(do_facet $SINGLEMDS $LCTL pool_list $1 | sed '1d')"
7281 }
7282
7283 check_pool_not_exist() {
7284         local fsname=${1%%.*}
7285         local poolname=${1##$fsname.}
7286         [[ $# -ne 1 ]] && return 0
7287         [[ x$poolname = x ]] &&  return 0
7288         list_pool $fsname | grep -w $1 && return 1
7289         return 0
7290 }
7291
7292 create_pool() {
7293         local fsname=${1%%.*}
7294         local poolname=${1##$fsname.}
7295
7296         stack_trap "destroy_test_pools $fsname" EXIT
7297         do_facet mgs lctl pool_new $1
7298         local RC=$?
7299         # get param should return err unless pool is created
7300         [[ $RC -ne 0 ]] && return $RC
7301
7302         for mds_id in $(seq $MDSCOUNT); do
7303                 local mdt_id=$((mds_id-1))
7304                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7305                 wait_update_facet mds$mds_id \
7306                         "lctl get_param -n lod.$lodname.pools.$poolname \
7307                                 2>/dev/null || echo foo" "" ||
7308                         error "mds$mds_id: pool_new failed $1"
7309         done
7310         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7311                 2>/dev/null || echo foo" "" || error "pool_new failed $1"
7312
7313         add_pool_to_list $1
7314         return $RC
7315 }
7316
7317 add_pool_to_list () {
7318         local fsname=${1%%.*}
7319         local poolname=${1##$fsname.}
7320
7321         local listvar=${fsname}_CREATED_POOLS
7322         local temp=${listvar}=$(expand_list ${!listvar} $poolname)
7323         eval export $temp
7324 }
7325
7326 remove_pool_from_list () {
7327         local fsname=${1%%.*}
7328         local poolname=${1##$fsname.}
7329
7330         local listvar=${fsname}_CREATED_POOLS
7331         local temp=${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
7332         eval export $temp
7333 }
7334
7335 destroy_pool_int() {
7336         local ost
7337         local OSTS=$(list_pool $1)
7338         for ost in $OSTS; do
7339                 do_facet mgs lctl pool_remove $1 $ost
7340         done
7341         do_facet mgs lctl pool_destroy $1
7342 }
7343
7344 # <fsname>.<poolname> or <poolname>
7345 destroy_pool() {
7346         local fsname=${1%%.*}
7347         local poolname=${1##$fsname.}
7348
7349         [[ x$fsname = x$poolname ]] && fsname=$FSNAME
7350
7351         local RC
7352
7353         check_pool_not_exist $fsname.$poolname
7354         [[ $? -eq 0 ]] && return 0
7355
7356         destroy_pool_int $fsname.$poolname
7357         RC=$?
7358         [[ $RC -ne 0 ]] && return $RC
7359         for mds_id in $(seq $MDSCOUNT); do
7360                 local mdt_id=$((mds_id-1))
7361                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7362                 wait_update_facet mds$mds_id \
7363                         "lctl get_param -n lod.$lodname.pools.$poolname \
7364                                 2>/dev/null || echo foo" "foo" ||
7365                         error "mds$mds_id: destroy pool failed $1"
7366         done
7367         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7368                 2>/dev/null || echo foo" "foo" || error "destroy pool failed $1"
7369
7370         remove_pool_from_list $fsname.$poolname
7371
7372         return $RC
7373 }
7374
7375 destroy_pools () {
7376         local fsname=${1:-$FSNAME}
7377         local poolname
7378         local listvar=${fsname}_CREATED_POOLS
7379
7380         [ x${!listvar} = x ] && return 0
7381
7382         echo "Destroy the created pools: ${!listvar}"
7383         for poolname in ${!listvar//,/ }; do
7384                 destroy_pool $fsname.$poolname
7385         done
7386 }
7387
7388 destroy_test_pools () {
7389         trap 0
7390         local fsname=${1:-$FSNAME}
7391         destroy_pools $fsname || true
7392 }
7393
7394 gather_logs () {
7395     local list=$1
7396
7397     local ts=$(date +%s)
7398     local docp=true
7399
7400     if [[ ! -f "$YAML_LOG" ]]; then
7401         # init_logging is not performed before gather_logs,
7402         # so the $LOGDIR needs to be checked here
7403         check_shared_dir $LOGDIR && touch $LOGDIR/shared
7404     fi
7405
7406     [ -f $LOGDIR/shared ] && docp=false
7407
7408     # dump lustre logs, dmesg
7409
7410     prefix="$TESTLOG_PREFIX.$TESTNAME"
7411     suffix="$ts.log"
7412     echo "Dumping lctl log to ${prefix}.*.${suffix}"
7413
7414     if [ -n "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
7415         echo "Dumping logs only on local client."
7416         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
7417         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
7418         return
7419     fi
7420
7421     do_nodesv $list \
7422         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
7423          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
7424
7425     if [ ! -f $LOGDIR/shared ]; then
7426         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
7427     fi
7428 }
7429
7430 do_ls () {
7431     local mntpt_root=$1
7432     local num_mntpts=$2
7433     local dir=$3
7434     local i
7435     local cmd
7436     local pids
7437     local rc=0
7438
7439     for i in $(seq 0 $num_mntpts); do
7440         cmd="ls -laf ${mntpt_root}$i/$dir"
7441         echo + $cmd;
7442         $cmd > /dev/null &
7443         pids="$pids $!"
7444     done
7445     echo pids=$pids
7446     for pid in $pids; do
7447         wait $pid || rc=$?
7448     done
7449
7450     return $rc
7451 }
7452
7453 # check_and_start_recovery_timer()
7454 #       service_time = at_est2timeout(service_time);
7455 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
7456 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
7457
7458 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
7459 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
7460 #define CONNECTION_SWITCH_MIN 5
7461 #define CONNECTION_SWITCH_INC 5
7462 max_recovery_time() {
7463         local init_connect_timeout=$((TIMEOUT / 20))
7464         ((init_connect_timeout >= 5)) || init_connect_timeout=5
7465
7466         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
7467         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
7468
7469         echo -n $service_time
7470 }
7471
7472 recovery_time_min() {
7473         local connection_switch_min=5
7474         local connection_switch_inc=5
7475         local connection_switch_max
7476         local reconnect_delay_max
7477         local initial_connect_timeout
7478         local max
7479         local timout_20
7480
7481         #connection_switch_max=min(50, max($connection_switch_min,$TIMEOUT)
7482         (($connection_switch_min > $TIMEOUT)) &&
7483                 max=$connection_switch_min || max=$TIMEOUT
7484         (($max < 50)) && connection_switch_max=$max || connection_switch_max=50
7485
7486         #initial_connect_timeout = max(connection_switch_min, obd_timeout/20)
7487         timeout_20=$((TIMEOUT/20))
7488         (($connection_switch_min > $timeout_20)) &&
7489                 initial_connect_timeout=$connection_switch_min ||
7490                 initial_connect_timeout=$timeout_20
7491
7492         reconnect_delay_max=$((connection_switch_max + connection_switch_inc + \
7493                                initial_connect_timeout))
7494         echo $((2 * reconnect_delay_max))
7495 }
7496
7497 get_clients_mount_count () {
7498         local clients=${CLIENTS:-$HOSTNAME}
7499
7500         # we need to take into account the clients mounts and
7501         # exclude mds/ost mounts if any;
7502         do_nodes $clients cat /proc/mounts | grep lustre |
7503                 grep -w $MOUNT | wc -l
7504 }
7505
7506 # gss functions
7507 PROC_CLI="srpc_info"
7508 PROC_CON="srpc_contexts"
7509
7510 combination()
7511 {
7512     local M=$1
7513     local N=$2
7514     local R=1
7515
7516     if [ $M -lt $N ]; then
7517         R=0
7518     else
7519         N=$((N + 1))
7520         while [ $N -lt $M ]; do
7521             R=$((R * N))
7522             N=$((N + 1))
7523         done
7524     fi
7525
7526     echo $R
7527     return 0
7528 }
7529
7530 calc_connection_cnt() {
7531         local dir=$1
7532
7533         # MDT->MDT = 2 * C(M, 2)
7534         # MDT->OST = M * O
7535         # CLI->OST = C * O
7536         # CLI->MDT = C * M
7537         comb_m2=$(combination $MDSCOUNT 2)
7538
7539         local num_clients=$(get_clients_mount_count)
7540
7541         local cnt_mdt2mdt=$((comb_m2 * 2))
7542         local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
7543         local cnt_cli2ost=$((num_clients * OSTCOUNT))
7544         local cnt_cli2mdt=$((num_clients * MDSCOUNT))
7545         if is_mounted $MOUNT2; then
7546                 cnt_cli2mdt=$((cnt_cli2mdt * 2))
7547                 cnt_cli2ost=$((cnt_cli2ost * 2))
7548         fi
7549         if local_mode; then
7550                 cnt_mdt2mdt=0
7551                 cnt_mdt2ost=0
7552                 cnt_cli2ost=2
7553                 cnt_cli2mdt=1
7554         fi
7555         local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
7556         local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
7557         local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt \
7558                 + cnt_cli2ost + cnt_cli2mdt))
7559
7560         local var=cnt_$dir
7561         local res=${!var}
7562
7563         echo $res
7564 }
7565
7566 set_rule()
7567 {
7568     local tgt=$1
7569     local net=$2
7570     local dir=$3
7571     local flavor=$4
7572     local cmd="$tgt.srpc.flavor"
7573
7574     if [ $net == "any" ]; then
7575         net="default"
7576     fi
7577     cmd="$cmd.$net"
7578
7579     if [ $dir != "any" ]; then
7580         cmd="$cmd.$dir"
7581     fi
7582
7583     cmd="$cmd=$flavor"
7584     log "Setting sptlrpc rule: $cmd"
7585     do_facet mgs "$LCTL conf_param $cmd"
7586 }
7587
7588 count_contexts()
7589 {
7590         local output=$1
7591         local total_ctx=$(echo "$output" | grep -c "expire.*key.*hdl")
7592         echo $total_ctx
7593 }
7594
7595 count_flvr()
7596 {
7597     local output=$1
7598     local flavor=$2
7599     local count=0
7600
7601     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
7602     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
7603
7604     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
7605
7606     if [ "x$bulkspec" != "x" ]; then
7607         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
7608
7609         if [ "x$algs" != "x" ]; then
7610             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
7611         else
7612             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
7613             if [ $bulk == "bulkn" ]; then
7614                 bulk_count=`echo "$output" | grep "bulk flavor" \
7615                             | grep "null/null" | wc -l`
7616             elif [ $bulk == "bulki" ]; then
7617                 bulk_count=`echo "$output" | grep "bulk flavor" \
7618                             | grep "/null" | grep -v "null/" | wc -l`
7619             else
7620                 bulk_count=`echo "$output" | grep "bulk flavor" \
7621                             | grep -v "/null" | grep -v "null/" | wc -l`
7622             fi
7623         fi
7624
7625         [ $bulk_count -lt $count ] && count=$bulk_count
7626     fi
7627
7628     echo $count
7629 }
7630
7631 flvr_cnt_cli2mdt()
7632 {
7633     local flavor=$1
7634     local cnt
7635
7636     local clients=${CLIENTS:-$HOSTNAME}
7637
7638     for c in ${clients//,/ }; do
7639         local output=$(do_node $c lctl get_param -n \
7640                  mdc.*-*-mdc-*.$PROC_CLI 2>/dev/null)
7641         local tmpcnt=$(count_flvr "$output" $flavor)
7642         if $GSS_SK && [ $flavor != "null" ]; then
7643                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7644                 output=$(do_node $c lctl get_param -n \
7645                          mdc.*-MDT*-mdc-*.$PROC_CON 2>/dev/null)
7646                 local outcon=$(count_contexts "$output")
7647                 if [ "$outcon" -lt "$tmpcnt" ]; then
7648                         tmpcnt=$outcon
7649                 fi
7650         fi
7651         cnt=$((cnt + tmpcnt))
7652     done
7653     echo $cnt
7654 }
7655
7656 flvr_cnt_cli2ost()
7657 {
7658     local flavor=$1
7659     local cnt
7660
7661     local clients=${CLIENTS:-$HOSTNAME}
7662
7663     for c in ${clients//,/ }; do
7664         # reconnect if idle
7665         do_node $c lctl set_param osc.*.idle_connect=1 >/dev/null 2>&1
7666         local output=$(do_node $c lctl get_param -n \
7667                  osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null)
7668         local tmpcnt=$(count_flvr "$output" $flavor)
7669         if $GSS_SK && [ $flavor != "null" ]; then
7670                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7671                 output=$(do_node $c lctl get_param -n \
7672                          osc.*OST*-osc-[^M][^D][^T]*.$PROC_CON 2>/dev/null)
7673                 local outcon=$(count_contexts "$output")
7674                 if [ "$outcon" -lt "$tmpcnt" ]; then
7675                         tmpcnt=$outcon
7676                 fi
7677         fi
7678         cnt=$((cnt + tmpcnt))
7679     done
7680     echo $cnt
7681 }
7682
7683 flvr_cnt_mdt2mdt()
7684 {
7685     local flavor=$1
7686     local cnt=0
7687
7688     if [ $MDSCOUNT -le 1 ]; then
7689         echo 0
7690         return
7691     fi
7692
7693     for num in `seq $MDSCOUNT`; do
7694         local output=$(do_facet mds$num lctl get_param -n \
7695                 osp.*-MDT*osp-MDT*.$PROC_CLI 2>/dev/null)
7696         local tmpcnt=$(count_flvr "$output" $flavor)
7697         if $GSS_SK && [ $flavor != "null" ]; then
7698                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7699                 output=$(do_facet mds$num lctl get_param -n \
7700                         osp.*-MDT*osp-MDT*.$PROC_CON 2>/dev/null)
7701                 local outcon=$(count_contexts "$output")
7702                 if [ "$outcon" -lt "$tmpcnt" ]; then
7703                         tmpcnt=$outcon
7704                 fi
7705         fi
7706         cnt=$((cnt + tmpcnt))
7707     done
7708     echo $cnt;
7709 }
7710
7711 flvr_cnt_mdt2ost()
7712 {
7713     local flavor=$1
7714     local cnt=0
7715     local mdtosc
7716
7717     for num in `seq $MDSCOUNT`; do
7718         mdtosc=$(get_mdtosc_proc_path mds$num)
7719         mdtosc=${mdtosc/-MDT*/-MDT\*}
7720         local output=$(do_facet mds$num lctl get_param -n \
7721                  osc.$mdtosc.$PROC_CLI 2>/dev/null)
7722         local tmpcnt=$(count_flvr "$output" $flavor)
7723         if $GSS_SK && [ $flavor != "null" ]; then
7724                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7725                 output=$(do_facet mds$num lctl get_param -n \
7726                          osc.$mdtosc.$PROC_CON 2>/dev/null)
7727                 local outcon=$(count_contexts "$output")
7728                 if [ "$outcon" -lt "$tmpcnt" ]; then
7729                         tmpcnt=$outcon
7730                 fi
7731         fi
7732         cnt=$((cnt + tmpcnt))
7733     done
7734     echo $cnt;
7735 }
7736
7737 flvr_cnt_mgc2mgs()
7738 {
7739     local flavor=$1
7740
7741     local output=$(do_facet client lctl get_param -n mgc.*.$PROC_CLI \
7742                         2>/dev/null)
7743     count_flvr "$output" $flavor
7744 }
7745
7746 do_check_flavor()
7747 {
7748     local dir=$1        # from to
7749     local flavor=$2     # flavor expected
7750     local res=0
7751
7752     if [ $dir == "cli2mdt" ]; then
7753         res=`flvr_cnt_cli2mdt $flavor`
7754     elif [ $dir == "cli2ost" ]; then
7755         res=`flvr_cnt_cli2ost $flavor`
7756     elif [ $dir == "mdt2mdt" ]; then
7757         res=`flvr_cnt_mdt2mdt $flavor`
7758     elif [ $dir == "mdt2ost" ]; then
7759         res=`flvr_cnt_mdt2ost $flavor`
7760     elif [ $dir == "all2ost" ]; then
7761         res1=`flvr_cnt_mdt2ost $flavor`
7762         res2=`flvr_cnt_cli2ost $flavor`
7763         res=$((res1 + res2))
7764     elif [ $dir == "all2mdt" ]; then
7765         res1=`flvr_cnt_mdt2mdt $flavor`
7766         res2=`flvr_cnt_cli2mdt $flavor`
7767         res=$((res1 + res2))
7768     elif [ $dir == "all2all" ]; then
7769         res1=`flvr_cnt_mdt2ost $flavor`
7770         res2=`flvr_cnt_cli2ost $flavor`
7771         res3=`flvr_cnt_mdt2mdt $flavor`
7772         res4=`flvr_cnt_cli2mdt $flavor`
7773         res=$((res1 + res2 + res3 + res4))
7774     fi
7775
7776     echo $res
7777 }
7778
7779 wait_flavor()
7780 {
7781         local dir=$1        # from to
7782         local flavor=$2     # flavor expected
7783         local expect=${3:-$(calc_connection_cnt $dir)} # number expected
7784         local WAITFLAVOR_MAX=20 # how many retries before abort?
7785
7786         local res=0
7787         for ((i = 0; i < $WAITFLAVOR_MAX; i++)); do
7788                 echo -n "checking $dir..."
7789                 res=$(do_check_flavor $dir $flavor)
7790                 echo "found $res/$expect $flavor connections"
7791                 [ $res -ge $expect ] && return 0
7792                 sleep 4
7793         done
7794
7795         echo "Error checking $flavor of $dir: expect $expect, actual $res"
7796 #       echo "Dumping additional logs for SK debug.."
7797         do_nodes $(comma_list $(all_server_nodes)) "keyctl show"
7798         if $dump; then
7799                 gather_logs $(comma_list $(nodes_list))
7800         fi
7801         return 1
7802 }
7803
7804 restore_to_default_flavor()
7805 {
7806         local proc="mgs.MGS.live.$FSNAME"
7807
7808         echo "restoring to default flavor..."
7809
7810         local nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7811                 grep ".srpc.flavor" | wc -l)
7812
7813         # remove all existing rules if any
7814         if [ $nrule -ne 0 ]; then
7815                 echo "$nrule existing rules"
7816                 for rule in $(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7817                     grep ".srpc.flavor."); do
7818                         echo "remove rule: $rule"
7819                         spec=`echo $rule | awk -F = '{print $1}'`
7820                         do_facet mgs "$LCTL conf_param -d $spec"
7821                 done
7822         fi
7823
7824         # verify no rules left
7825         nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7826                 grep ".srpc.flavor." | wc -l)
7827         [ $nrule -ne 0 ] && error "still $nrule rules left"
7828
7829         # wait for default flavor to be applied
7830         if $GSS_SK; then
7831                 if $SK_S2S; then
7832                         set_rule $FSNAME any any $SK_FLAVOR
7833                         wait_flavor all2all $SK_FLAVOR
7834                 else
7835                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
7836                         set_rule $FSNAME any cli2ost $SK_FLAVOR
7837                         wait_flavor cli2mdt $SK_FLAVOR
7838                         wait_flavor cli2ost $SK_FLAVOR
7839                 fi
7840                 echo "GSS_SK now at default flavor: $SK_FLAVOR"
7841         else
7842                 wait_flavor all2all null
7843         fi
7844 }
7845
7846 set_flavor_all()
7847 {
7848         local flavor=${1:-null}
7849
7850         echo "setting all flavor to $flavor"
7851
7852         # FIXME need parameter to this fn
7853         # and remove global vars
7854         local cnt_all2all=$(calc_connection_cnt all2all)
7855
7856         local res=$(do_check_flavor all2all $flavor)
7857         if [ $res -eq $cnt_all2all ]; then
7858                 echo "already have total $res $flavor connections"
7859                 return
7860         fi
7861
7862         echo "found $res $flavor out of total $cnt_all2all connections"
7863         restore_to_default_flavor
7864
7865         [[ $flavor = null ]] && return 0
7866
7867         if $GSS_SK && [ $flavor != "null" ]; then
7868                 if $SK_S2S; then
7869                         set_rule $FSNAME any any $flavor
7870                         wait_flavor all2all $flavor
7871                 else
7872                         set_rule $FSNAME any cli2mdt $flavor
7873                         set_rule $FSNAME any cli2ost $flavor
7874                         set_rule $FSNAME any mdt2ost null
7875                         set_rule $FSNAME any mdt2mdt null
7876                         wait_flavor cli2mdt $flavor
7877                         wait_flavor cli2ost $flavor
7878                 fi
7879                 echo "GSS_SK now at flavor: $flavor"
7880         else
7881                 set_rule $FSNAME any any $flavor
7882                 wait_flavor all2all $flavor
7883         fi
7884 }
7885
7886
7887 check_logdir() {
7888     local dir=$1
7889     # Checking for shared logdir
7890     if [ ! -d $dir ]; then
7891         # Not found. Create local logdir
7892         mkdir -p $dir
7893     else
7894         touch $dir/check_file.$(hostname -s)
7895     fi
7896     return 0
7897 }
7898
7899 check_write_access() {
7900         local dir=$1
7901         local list=${2:-$(comma_list $(nodes_list))}
7902         local node
7903         local file
7904
7905         for node in ${list//,/ }; do
7906                 file=$dir/check_file.$(short_nodename $node)
7907                 if [[ ! -f "$file" ]]; then
7908                         # Logdir not accessible/writable from this node.
7909                         return 1
7910                 fi
7911                 rm -f $file || return 1
7912         done
7913         return 0
7914 }
7915
7916 init_logging() {
7917         [[ -n $YAML_LOG ]] && return
7918         local save_umask=$(umask)
7919         umask 0000
7920
7921         export YAML_LOG=${LOGDIR}/results.yml
7922         mkdir -p $LOGDIR
7923         init_clients_lists
7924
7925         # If the yaml log already exists then we will just append to it
7926         if [ ! -f $YAML_LOG ]; then
7927                 if check_shared_dir $LOGDIR; then
7928                         touch $LOGDIR/shared
7929                         echo "Logging to shared log directory: $LOGDIR"
7930                 else
7931                         echo "Logging to local directory: $LOGDIR"
7932                 fi
7933
7934                 yml_nodes_file $LOGDIR >> $YAML_LOG
7935                 yml_results_file >> $YAML_LOG
7936         fi
7937
7938         umask $save_umask
7939
7940         # If modules are not yet loaded then older "lctl lustre_build_version"
7941         # will fail.  Use lctl build version instead.
7942         log "Client: $($LCTL lustre_build_version)"
7943         log "MDS: $(do_facet $SINGLEMDS $LCTL lustre_build_version 2>/dev/null||
7944                     do_facet $SINGLEMDS $LCTL --version)"
7945         log "OSS: $(do_facet ost1 $LCTL lustre_build_version 2> /dev/null ||
7946                     do_facet ost1 $LCTL --version)"
7947
7948         get_lustre_env
7949 }
7950
7951 log_test() {
7952     yml_log_test $1 >> $YAML_LOG
7953 }
7954
7955 log_test_status() {
7956      yml_log_test_status $@ >> $YAML_LOG
7957 }
7958
7959 log_sub_test_begin() {
7960     yml_log_sub_test_begin "$@" >> $YAML_LOG
7961 }
7962
7963 log_sub_test_end() {
7964     yml_log_sub_test_end "$@" >> $YAML_LOG
7965 }
7966
7967 run_llverdev()
7968 {
7969         local dev=$1
7970         local llverdev_opts=$2
7971         local devname=$(basename $1)
7972         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
7973         # loop devices aren't in /proc/partitions
7974         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
7975
7976         size=$(($size / 1024 / 1024)) # Gb
7977
7978         local partial_arg=""
7979         # Run in partial (fast) mode if the size
7980         # of a partition > 1 GB
7981         [ $size -gt 1 ] && partial_arg="-p"
7982
7983         llverdev --force $partial_arg $llverdev_opts $dev
7984 }
7985
7986 run_llverfs()
7987 {
7988         local dir=$1
7989         local llverfs_opts=$2
7990         local use_partial_arg=$3
7991         local partial_arg=""
7992         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
7993
7994         # Run in partial (fast) mode if the size
7995         # of a partition > 1 GB
7996         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
7997
7998         llverfs $partial_arg $llverfs_opts $dir
7999 }
8000
8001 #Remove objects from OST
8002 remove_ost_objects() {
8003         local facet=$1
8004         local ostdev=$2
8005         local group=$3
8006         shift 3
8007         local objids="$@"
8008         local mntpt=$(facet_mntpt $facet)
8009         local opts=$OST_MOUNT_OPTS
8010         local i
8011         local rc
8012
8013         echo "removing objects from $ostdev on $facet: $objids"
8014         if ! test -b $ostdev; then
8015                 opts=$(csa_add "$opts" -o loop)
8016         fi
8017         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
8018                 return $?
8019         rc=0
8020         for i in $objids; do
8021                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
8022         done
8023         umount -f $mntpt || return $?
8024         return $rc
8025 }
8026
8027 #Remove files from MDT
8028 remove_mdt_files() {
8029         local facet=$1
8030         local mdtdev=$2
8031         shift 2
8032         local files="$@"
8033         local mntpt=$(facet_mntpt $facet)
8034         local opts=$MDS_MOUNT_OPTS
8035
8036         echo "removing files from $mdtdev on $facet: $files"
8037         if [ $(facet_fstype $facet) == ldiskfs ] &&
8038            ! do_facet $facet test -b $mdtdev; then
8039                 opts=$(csa_add "$opts" -o loop)
8040         fi
8041         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8042                 return $?
8043         rc=0
8044         for f in $files; do
8045                 rm $mntpt/ROOT/$f || { rc=$?; break; }
8046         done
8047         umount -f $mntpt || return $?
8048         return $rc
8049 }
8050
8051 duplicate_mdt_files() {
8052         local facet=$1
8053         local mdtdev=$2
8054         shift 2
8055         local files="$@"
8056         local mntpt=$(facet_mntpt $facet)
8057         local opts=$MDS_MOUNT_OPTS
8058
8059         echo "duplicating files on $mdtdev on $facet: $files"
8060         mkdir -p $mntpt || return $?
8061         if [ $(facet_fstype $facet) == ldiskfs ] &&
8062            ! do_facet $facet test -b $mdtdev; then
8063                 opts=$(csa_add "$opts" -o loop)
8064         fi
8065         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8066                 return $?
8067
8068     do_umount() {
8069         trap 0
8070         popd > /dev/null
8071         rm $tmp
8072         umount -f $mntpt
8073     }
8074     trap do_umount EXIT
8075
8076     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
8077     pushd $mntpt/ROOT > /dev/null || return $?
8078     rc=0
8079     for f in $files; do
8080         touch $f.bad || return $?
8081         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
8082         rc=${PIPESTATUS[0]}
8083         [ $rc -eq 0 ] || return $rc
8084         setfattr --restore $tmp || return $?
8085     done
8086     do_umount
8087 }
8088
8089 run_sgpdd () {
8090     local devs=${1//,/ }
8091     shift
8092     local params=$@
8093     local rslt=$TMP/sgpdd_survey
8094
8095     # sgpdd-survey cleanups ${rslt}.* files
8096
8097     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
8098     echo + $cmd
8099     eval $cmd
8100     cat ${rslt}.detail
8101 }
8102
8103 # returns the canonical name for an ldiskfs device
8104 ldiskfs_canon() {
8105         local dev="$1"
8106         local facet="$2"
8107
8108         do_facet $facet "dv=\\\$($LCTL get_param -n $dev);
8109                          if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
8110                                 echo dm-\\\${foo##*:};
8111                          else
8112                                 name=\\\$(basename \\\$dv);
8113                                 if [[ \\\$name = *flakey* ]]; then
8114                                         name=\\\$(lsblk -o NAME,KNAME |
8115                                                 awk /\\\$name/'{print \\\$NF}');
8116                                 fi;
8117                                 echo \\\$name;
8118                          fi;"
8119 }
8120
8121 is_sanity_benchmark() {
8122     local benchmarks="dbench bonnie iozone fsx"
8123     local suite=$1
8124     for b in $benchmarks; do
8125         if [ "$b" == "$suite" ]; then
8126             return 0
8127         fi
8128     done
8129     return 1
8130 }
8131
8132 min_ost_size () {
8133         $LFS df | grep OST | awk '{print $4}' | sort -un | head -1
8134 }
8135
8136 #
8137 # Get the available size (KB) of a given obd target.
8138 #
8139 get_obd_size() {
8140         local facet=$1
8141         local obd=$2
8142         local size
8143
8144         [[ $facet != client ]] || return 0
8145
8146         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
8147         echo -n $size
8148 }
8149
8150 #
8151 # Get the page size (bytes) on a given facet node.
8152 # The local client page_size is directly available in PAGE_SIZE.
8153 #
8154 get_page_size() {
8155         local facet=$1
8156         local page_size=$(getconf PAGE_SIZE 2>/dev/null)
8157
8158         [ -z "$CLIENTONLY" -a "$facet" != "client" ] &&
8159                 page_size=$(do_facet $facet getconf PAGE_SIZE)
8160         echo -n ${page_size:-4096}
8161 }
8162
8163 #
8164 # Get the block count of the filesystem.
8165 #
8166 get_block_count() {
8167         local facet=$1
8168         local device=$2
8169         local count
8170
8171         [ -z "$CLIENTONLY" ] && count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8172                 awk '/^Block count:/ {print $3}')
8173         echo -n ${count:-0}
8174 }
8175
8176 # Get the block size of the filesystem.
8177 get_block_size() {
8178         local facet=$1
8179         local device=$2
8180         local size
8181
8182         [ -z "$CLIENTONLY" ] && size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8183                 awk '/^Block size:/ {print $3}')
8184         echo -n ${size:-0}
8185 }
8186
8187 # Check whether the "ea_inode" feature is enabled or not, to allow
8188 # ldiskfs xattrs over one block in size.  Allow both the historical
8189 # Lustre feature name (large_xattr) and the upstream name (ea_inode).
8190 large_xattr_enabled() {
8191         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
8192
8193         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8194
8195         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
8196                 grep -E -q '(ea_inode|large_xattr)'"
8197         return ${PIPESTATUS[0]}
8198 }
8199
8200 # Get the maximum xattr size supported by the filesystem.
8201 max_xattr_size() {
8202     local size
8203
8204     if large_xattr_enabled; then
8205         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
8206         size=65536
8207     else
8208         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8209         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
8210
8211         # maximum xattr size = size of block - size of header -
8212         #                      size of 1 entry - 4 null bytes
8213         size=$((block_size - 32 - 32 - 4))
8214     fi
8215
8216     echo $size
8217 }
8218
8219 # Dump the value of the named xattr from a file.
8220 get_xattr_value() {
8221     local xattr_name=$1
8222     local file=$2
8223
8224     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
8225 }
8226
8227 # Generate a string with size of $size bytes.
8228 generate_string() {
8229     local size=${1:-1024} # in bytes
8230
8231     echo "$(head -c $size < /dev/zero | tr '\0' y)"
8232 }
8233
8234 reformat_external_journal() {
8235         local facet=$1
8236         local var
8237
8238         var=${facet}_JRN
8239         if [ -n "${!var}" ]; then
8240                 local rcmd="do_facet $facet"
8241
8242                 echo "reformat external journal on $facet:${!var}"
8243                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
8244         fi
8245 }
8246
8247 # MDT file-level backup/restore
8248 mds_backup_restore() {
8249         local facet=$1
8250         local igif=$2
8251         local devname=$(mdsdevname $(facet_number $facet))
8252         local mntpt=$(facet_mntpt brpt)
8253         local rcmd="do_facet $facet"
8254         local metaea=${TMP}/backup_restore.ea
8255         local metadata=${TMP}/backup_restore.tgz
8256         local opts=${MDS_MOUNT_OPTS}
8257         local svc=${facet}_svc
8258
8259         if ! ${rcmd} test -b ${devname}; then
8260                 opts=$(csa_add "$opts" -o loop)
8261         fi
8262
8263         echo "file-level backup/restore on $facet:${devname}"
8264
8265         # step 1: build mount point
8266         ${rcmd} mkdir -p $mntpt
8267         # step 2: cleanup old backup
8268         ${rcmd} rm -f $metaea $metadata
8269         # step 3: mount dev
8270         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8271         if [ ! -z $igif ]; then
8272                 # step 3.5: rm .lustre
8273                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
8274         fi
8275         # step 4: backup metaea
8276         echo "backup EA"
8277         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
8278                 return 2
8279         # step 5: backup metadata
8280         echo "backup data"
8281         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
8282         # step 6: umount
8283         ${rcmd} $UMOUNT $mntpt || return 4
8284         # step 8: reformat dev
8285         echo "reformat new device"
8286         format_mdt $(facet_number $facet)
8287         # step 9: mount dev
8288         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
8289         # step 10: restore metadata
8290         echo "restore data"
8291         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
8292         # step 11: restore metaea
8293         echo "restore EA"
8294         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
8295         # step 12: remove recovery logs
8296         echo "remove recovery logs"
8297         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
8298         # step 13: umount dev
8299         ${rcmd} $UMOUNT $mntpt || return 10
8300         # step 14: cleanup tmp backup
8301         ${rcmd} rm -f $metaea $metadata
8302         # step 15: reset device label - it's not virgin on
8303         ${rcmd} e2label $devname ${!svc}
8304 }
8305
8306 # remove OI files
8307 mds_remove_ois() {
8308         local facet=$1
8309         local idx=$2
8310         local devname=$(mdsdevname $(facet_number $facet))
8311         local mntpt=$(facet_mntpt brpt)
8312         local rcmd="do_facet $facet"
8313         local opts=${MDS_MOUNT_OPTS}
8314
8315         if ! ${rcmd} test -b ${devname}; then
8316                 opts=$(csa_add "$opts" -o loop)
8317         fi
8318
8319         echo "removing OI files on $facet: idx=${idx}"
8320
8321         # step 1: build mount point
8322         ${rcmd} mkdir -p $mntpt
8323         # step 2: mount dev
8324         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8325         if [ -z $idx ]; then
8326                 # step 3: remove all OI files
8327                 ${rcmd} rm -fv $mntpt/oi.16*
8328         elif [ $idx -lt 2 ]; then
8329                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
8330         else
8331                 local i
8332
8333                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
8334                 for ((i=${idx}; i<64; i=$((i * idx)))); do
8335                         ${rcmd} rm -fv $mntpt/oi.16.${i}
8336                 done
8337         fi
8338         # step 4: umount
8339         ${rcmd} $UMOUNT $mntpt || return 2
8340         # OI files will be recreated when mounted as lustre next time.
8341 }
8342
8343 # generate maloo upload-able log file name
8344 # \param logname specify unique part of file name
8345 generate_logname() {
8346         local logname=${1:-"default_logname"}
8347
8348         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
8349 }
8350
8351 # make directory on different MDTs
8352 test_mkdir() {
8353         local path
8354         local p_option
8355         local dirstripe_count=${DIRSTRIPE_COUNT:-"-1"}
8356         local dirstripe_index=${DIRSTRIPE_INDEX:-"-1"}
8357         local OPTIND=1
8358
8359         while getopts "c:i:p" opt; do
8360                 case $opt in
8361                         c) dirstripe_count=$OPTARG;;
8362                         i) dirstripe_index=$OPTARG;;
8363                         p) p_option="-p";;
8364                         \?) error "only support -i -c -p";;
8365                 esac
8366         done
8367
8368         shift $((OPTIND - 1))
8369         [ $# -eq 1 ] || error "Only creating single directory is supported"
8370         path="$*"
8371
8372         if [ "$p_option" == "-p" ]; then
8373                 local parent=$(dirname $path)
8374
8375                 [ -d $path ] && return 0
8376                 if [ ! -d ${parent} ]; then
8377                         mkdir -p ${parent} ||
8378                                 error "mkdir parent '$parent' failed"
8379                 fi
8380         fi
8381
8382         if [ $MDSCOUNT -le 1 ]; then
8383                 mkdir $path || error "mkdir '$path' failed"
8384         else
8385                 local mdt_index
8386
8387                 if [ $dirstripe_index -eq -1 ]; then
8388                         mdt_index=$((RANDOM % MDSCOUNT))
8389                 else
8390                         mdt_index=$dirstripe_index
8391                 fi
8392
8393                 if (($MDS1_VERSION >= $(version_code 2.8.0))); then
8394                         if [ $dirstripe_count -eq -1 ]; then
8395                                 dirstripe_count=$((RANDOM % MDSCOUNT + 1))
8396                         fi
8397                 else
8398                         dirstripe_count=1
8399                 fi
8400
8401                 echo "striped dir -i$mdt_index -c$dirstripe_count $path"
8402                 $LFS mkdir -i$mdt_index -c$dirstripe_count $path ||
8403                         error "mkdir -i $mdt_index -c$dirstripe_count $path failed"
8404         fi
8405 }
8406
8407 # free_fd: find the smallest and not in use file descriptor [above @last_fd]
8408 #
8409 # If called many times, passing @last_fd will avoid repeated searching
8410 # already-open FDs repeatedly if we know they are still in use.
8411 #
8412 # usage: free_fd [last_fd]
8413 free_fd()
8414 {
8415         local max_fd=$(ulimit -n)
8416         local fd=$((${1:-2} + 1))
8417
8418         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
8419                 ((++fd))
8420         done
8421         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
8422         echo $fd
8423 }
8424
8425 check_mount_and_prep()
8426 {
8427         is_mounted $MOUNT || setupall
8428
8429         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
8430         mkdir $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
8431         for idx in $(seq $MDSCOUNT); do
8432                 local name="MDT$(printf '%04x' $((idx - 1)))"
8433                 rm -rf $MOUNT/.lustre/lost+found/$name/*
8434         done
8435 }
8436
8437 # calcule how many ost-objects to be created.
8438 precreated_ost_obj_count()
8439 {
8440         local mdt_idx=$1
8441         local ost_idx=$2
8442         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
8443         local ost_name="OST$(printf '%04x' $ost_idx)"
8444         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
8445         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8446                         osp.$proc_path.prealloc_last_id)
8447         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8448                         osp.$proc_path.prealloc_next_id)
8449         echo $((last_id - next_id + 1))
8450 }
8451
8452 check_file_in_pool()
8453 {
8454         local file=$1
8455         local pool=$2
8456         local tlist="$3"
8457         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
8458         for i in $res
8459         do
8460                 for t in $tlist ; do
8461                         [ "$i" -eq "$t" ] && continue 2
8462                 done
8463
8464                 echo "pool list: $tlist"
8465                 echo "striping: $res"
8466                 error_noexit "$file not allocated in $pool"
8467                 return 1
8468         done
8469         return 0
8470 }
8471
8472 pool_add() {
8473         echo "Creating new pool"
8474         local pool=$1
8475
8476         create_pool $FSNAME.$pool ||
8477                 { error_noexit "No pool created, result code $?"; return 1; }
8478         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
8479                 { error_noexit "$pool not in lfs pool_list"; return 2; }
8480 }
8481
8482 pool_add_targets() {
8483         echo "Adding targets to pool"
8484         local pool=$1
8485         local first=$2
8486         local last=$3
8487         local step=${4:-1}
8488
8489         local list=$(seq $first $step $last)
8490
8491         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8492         do_facet mgs $LCTL pool_add \
8493                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8494
8495         # wait for OSTs to be added to the pool
8496         for mds_id in $(seq $MDSCOUNT); do
8497                 local mdt_id=$((mds_id-1))
8498                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8499                 wait_update_facet mds$mds_id \
8500                         "lctl get_param -n lod.$lodname.pools.$pool |
8501                                 sort -u | tr '\n' ' ' " "$t" || {
8502                         error_noexit "mds$mds_id: Add to pool failed"
8503                         return 3
8504                 }
8505         done
8506         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8507                         | sort -u | tr '\n' ' ' " "$t" || {
8508                 error_noexit "Add to pool failed"
8509                 return 1
8510         }
8511         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8512         local addcount=$(((last - first) / step + 1))
8513         [ $lfscount -eq $addcount ] || {
8514                 error_noexit "lfs pool_list bad ost count" \
8515                                                 "$lfscount != $addcount"
8516                 return 2
8517         }
8518 }
8519
8520 pool_set_dir() {
8521         local pool=$1
8522         local tdir=$2
8523         echo "Setting pool on directory $tdir"
8524
8525         $SETSTRIPE -c 2 -p $pool $tdir && return 0
8526
8527         error_noexit "Cannot set pool $pool to $tdir"
8528         return 1
8529 }
8530
8531 pool_check_dir() {
8532         local pool=$1
8533         local tdir=$2
8534         echo "Checking pool on directory $tdir"
8535
8536         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
8537         [ "$res" = "$pool" ] && return 0
8538
8539         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8540         return 1
8541 }
8542
8543 pool_dir_rel_path() {
8544         echo "Testing relative path works well"
8545         local pool=$1
8546         local tdir=$2
8547         local root=$3
8548
8549         mkdir -p $root/$tdir/$tdir
8550         cd $root/$tdir
8551         pool_set_dir $pool $tdir          || return 1
8552         pool_set_dir $pool ./$tdir        || return 2
8553         pool_set_dir $pool ../$tdir       || return 3
8554         pool_set_dir $pool ../$tdir/$tdir || return 4
8555         rm -rf $tdir; cd - > /dev/null
8556 }
8557
8558 pool_alloc_files() {
8559         echo "Checking files allocation from directory pool"
8560         local pool=$1
8561         local tdir=$2
8562         local count=$3
8563         local tlist="$4"
8564
8565         local failed=0
8566         for i in $(seq -w 1 $count)
8567         do
8568                 local file=$tdir/file-$i
8569                 touch $file
8570                 check_file_in_pool $file $pool "$tlist" || \
8571                         failed=$((failed + 1))
8572         done
8573         [ "$failed" = 0 ] && return 0
8574
8575         error_noexit "$failed files not allocated in $pool"
8576         return 1
8577 }
8578
8579 pool_create_files() {
8580         echo "Creating files in pool"
8581         local pool=$1
8582         local tdir=$2
8583         local count=$3
8584         local tlist="$4"
8585
8586         mkdir -p $tdir
8587         local failed=0
8588         for i in $(seq -w 1 $count)
8589         do
8590                 local file=$tdir/spoo-$i
8591                 $SETSTRIPE -p $pool $file
8592                 check_file_in_pool $file $pool "$tlist" || \
8593                         failed=$((failed + 1))
8594         done
8595         [ "$failed" = 0 ] && return 0
8596
8597         error_noexit "$failed files not allocated in $pool"
8598         return 1
8599 }
8600
8601 pool_lfs_df() {
8602         echo "Checking 'lfs df' output"
8603         local pool=$1
8604
8605         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
8606                         tr '\n' ' ')
8607         local res=$($LFS df --pool $FSNAME.$pool |
8608                         awk '{print $1}' |
8609                         grep "$FSNAME-OST" |
8610                         tr '\n' ' ')
8611         [ "$res" = "$t" ] && return 0
8612
8613         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
8614         return 1
8615 }
8616
8617 pool_file_rel_path() {
8618         echo "Creating files in a pool with relative pathname"
8619         local pool=$1
8620         local tdir=$2
8621
8622         mkdir -p $tdir ||
8623                 { error_noexit "unable to create $tdir"; return 1 ; }
8624         local file="/..$tdir/$tfile-1"
8625         $SETSTRIPE -p $pool $file ||
8626                 { error_noexit "unable to create $file" ; return 2 ; }
8627
8628         cd $tdir
8629         $SETSTRIPE -p $pool $tfile-2 || {
8630                 error_noexit "unable to create $tfile-2 in $tdir"
8631                 return 3
8632         }
8633 }
8634
8635 pool_remove_first_target() {
8636         echo "Removing first target from a pool"
8637         local pool=$1
8638
8639         local pname="lov.$FSNAME-*.pools.$pool"
8640         local t=$($LCTL get_param -n $pname | head -1)
8641         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8642         for mds_id in $(seq $MDSCOUNT); do
8643                 local mdt_id=$((mds_id-1))
8644                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8645                 wait_update_facet mds$mds_id \
8646                         "lctl get_param -n lod.$lodname.pools.$pool |
8647                                 grep $t" "" || {
8648                         error_noexit "mds$mds_id: $t not removed from" \
8649                         "$FSNAME.$pool"
8650                         return 2
8651                 }
8652         done
8653         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
8654                 error_noexit "$t not removed from $FSNAME.$pool"
8655                 return 1
8656         }
8657 }
8658
8659 pool_remove_all_targets() {
8660         echo "Removing all targets from pool"
8661         local pool=$1
8662         local file=$2
8663         local pname="lov.$FSNAME-*.pools.$pool"
8664         for t in $($LCTL get_param -n $pname | sort -u)
8665         do
8666                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8667         done
8668         for mds_id in $(seq $MDSCOUNT); do
8669                 local mdt_id=$((mds_id-1))
8670                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8671                 wait_update_facet mds$mds_id "lctl get_param -n \
8672                         lod.$lodname.pools.$pool" "" || {
8673                         error_noexit "mds$mds_id: Pool $pool not drained"
8674                         return 4
8675                 }
8676         done
8677         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
8678                 error_noexit "Pool $FSNAME.$pool cannot be drained"
8679                 return 1
8680         }
8681         # striping on an empty/nonexistant pool should fall back
8682         # to "pool of everything"
8683         touch $file || {
8684                 error_noexit "failed to use fallback striping for empty pool"
8685                 return 2
8686         }
8687         # setstripe on an empty pool should fail
8688         $SETSTRIPE -p $pool $file 2>/dev/null && {
8689                 error_noexit "expected failure when creating file" \
8690                                                         "with empty pool"
8691                 return 3
8692         }
8693         return 0
8694 }
8695
8696 pool_remove() {
8697         echo "Destroying pool"
8698         local pool=$1
8699         local file=$2
8700
8701         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
8702
8703         sleep 2
8704         # striping on an empty/nonexistant pool should fall back
8705         # to "pool of everything"
8706         touch $file || {
8707                 error_noexit "failed to use fallback striping for missing pool"
8708                 return 1
8709         }
8710         # setstripe on an empty pool should fail
8711         $SETSTRIPE -p $pool $file 2>/dev/null && {
8712                 error_noexit "expected failure when creating file" \
8713                                                         "with missing pool"
8714                 return 2
8715         }
8716
8717         # get param should return err once pool is gone
8718         if wait_update $HOSTNAME "lctl get_param -n \
8719                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
8720         then
8721                 remove_pool_from_list $FSNAME.$pool
8722                 return 0
8723         fi
8724         error_noexit "Pool $FSNAME.$pool is not destroyed"
8725         return 3
8726 }
8727
8728 # Get and check the actual stripe count of one file.
8729 # Usage: check_stripe_count <file> <expected_stripe_count>
8730 check_stripe_count() {
8731         local file=$1
8732         local expected=$2
8733         local actual
8734
8735         [[ -z "$file" || -z "$expected" ]] &&
8736                 error "check_stripe_count: invalid argument"
8737
8738         local cmd="$LFS getstripe -c $file"
8739         actual=$($cmd) || error "$cmd failed"
8740         actual=${actual%% *}
8741
8742         if [[ $actual -ne $expected ]]; then
8743                 [[ $expected -eq -1 ]] || { $LFS getstripe $file;
8744                         error "$cmd not expected ($expected): found $actual"; }
8745                 [[ $actual -eq $OSTCOUNT ]] || { $LFS getstripe $file;
8746                         error "$cmd not OST count ($OSTCOUNT): found $actual"; }
8747         fi
8748 }
8749
8750 # Get and check the actual list of OST indices on one file.
8751 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
8752 check_obdidx() {
8753         local file=$1
8754         local expected=$2
8755         local obdidx
8756
8757         [[ -z "$file" || -z "$expected" ]] &&
8758                 error "check_obdidx: invalid argument!"
8759
8760         obdidx=$(comma_list $($GETSTRIPE $file | grep -A $OSTCOUNT obdidx |
8761                               grep -v obdidx | awk '{print $1}' | xargs))
8762
8763         [[ $obdidx = $expected ]] ||
8764                 error "list of OST indices on $file is $obdidx," \
8765                       "should be $expected"
8766 }
8767
8768 # Get and check the actual OST index of the first stripe on one file.
8769 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
8770 check_start_ost_idx() {
8771         local file=$1
8772         local expected=$2
8773         local start_ost_idx
8774
8775         [[ -z "$file" || -z "$expected" ]] &&
8776                 error "check_start_ost_idx: invalid argument!"
8777
8778         start_ost_idx=$($GETSTRIPE $file | grep -A 1 obdidx | grep -v obdidx |
8779                         awk '{print $1}')
8780
8781         [[ $start_ost_idx = $expected ]] ||
8782                 error "OST index of the first stripe on $file is" \
8783                       "$start_ost_idx, should be $expected"
8784 }
8785
8786 killall_process () {
8787         local clients=${1:-$(hostname)}
8788         local name=$2
8789         local signal=$3
8790         local rc=0
8791
8792         do_nodes $clients "killall $signal $name"
8793 }
8794
8795 lsnapshot_create()
8796 {
8797         do_facet mgs "$LCTL snapshot_create -F $FSNAME $*"
8798 }
8799
8800 lsnapshot_destroy()
8801 {
8802         do_facet mgs "$LCTL snapshot_destroy -F $FSNAME $*"
8803 }
8804
8805 lsnapshot_modify()
8806 {
8807         do_facet mgs "$LCTL snapshot_modify -F $FSNAME $*"
8808 }
8809
8810 lsnapshot_list()
8811 {
8812         do_facet mgs "$LCTL snapshot_list -F $FSNAME $*"
8813 }
8814
8815 lsnapshot_mount()
8816 {
8817         do_facet mgs "$LCTL snapshot_mount -F $FSNAME $*"
8818 }
8819
8820 lsnapshot_umount()
8821 {
8822         do_facet mgs "$LCTL snapshot_umount -F $FSNAME $*"
8823 }
8824
8825 lss_err()
8826 {
8827         local msg=$1
8828
8829         do_facet mgs "cat $LSNAPSHOT_LOG"
8830         error $msg
8831 }
8832
8833 lss_cleanup()
8834 {
8835         echo "Cleaning test environment ..."
8836
8837         # Every lsnapshot command takes exclusive lock with others,
8838         # so can NOT destroy the snapshot during list with 'xargs'.
8839         while true; do
8840                 local ssname=$(lsnapshot_list | grep snapshot_name |
8841                         grep lss_ | awk '{ print $2 }' | head -n 1)
8842                 [ -z "$ssname" ] && break
8843
8844                 lsnapshot_destroy -n $ssname -f ||
8845                         lss_err "Fail to destroy $ssname by force"
8846         done
8847 }
8848
8849 lss_gen_conf_one()
8850 {
8851         local facet=$1
8852         local role=$2
8853         local idx=$3
8854
8855         local host=$(facet_active_host $facet)
8856         local dir=$(dirname $(facet_vdevice $facet))
8857         local pool=$(zpool_name $facet)
8858         local lfsname=$(zfs_local_fsname $facet)
8859         local label=${FSNAME}-${role}$(printf '%04x' $idx)
8860
8861         do_facet mgs \
8862                 "echo '$host - $label zfs:${dir}/${pool}/${lfsname} - -' >> \
8863                 $LSNAPSHOT_CONF"
8864 }
8865
8866 lss_gen_conf()
8867 {
8868         do_facet mgs "rm -f $LSNAPSHOT_CONF"
8869         echo "Generating $LSNAPSHOT_CONF on MGS ..."
8870
8871         if ! combined_mgs_mds ; then
8872                 [ $(facet_fstype mgs) != zfs ] &&
8873                         skip "Lustre snapshot 1 only works for ZFS backend"
8874
8875                 local host=$(facet_active_host mgs)
8876                 local dir=$(dirname $(facet_vdevice mgs))
8877                 local pool=$(zpool_name mgs)
8878                 local lfsname=$(zfs_local_fsname mgs)
8879
8880                 do_facet mgs \
8881                         "echo '$host - MGS zfs:${dir}/${pool}/${lfsname} - -' \
8882                         >> $LSNAPSHOT_CONF" || lss_err "generate lss conf (mgs)"
8883         fi
8884
8885         for num in `seq $MDSCOUNT`; do
8886                 [ $(facet_fstype mds$num) != zfs ] &&
8887                         skip "Lustre snapshot 1 only works for ZFS backend"
8888
8889                 lss_gen_conf_one mds$num MDT $((num - 1)) ||
8890                         lss_err "generate lss conf (mds$num)"
8891         done
8892
8893         for num in `seq $OSTCOUNT`; do
8894                 [ $(facet_fstype ost$num) != zfs ] &&
8895                         skip "Lustre snapshot 1 only works for ZFS backend"
8896
8897                 lss_gen_conf_one ost$num OST $((num - 1)) ||
8898                         lss_err "generate lss conf (ost$num)"
8899         done
8900
8901         do_facet mgs "cat $LSNAPSHOT_CONF"
8902 }
8903
8904 # Parse 'lfs getstripe -d <path_with_dir_name>' for non-composite dir
8905 parse_plain_dir_param()
8906 {
8907         local invalues=($1)
8908         local param=""
8909
8910         if [[ ${invalues[0]} =~ "stripe_count:" ]]; then
8911                 param="-c ${invalues[1]}"
8912         fi
8913         if [[ ${invalues[2]} =~ "stripe_size:" ]]; then
8914                 param="$param -S ${invalues[3]}"
8915         fi
8916         if [[ ${invalues[4]} =~ "pattern:" ]]; then
8917                 if [[ ${invalues[5]} =~ "stripe_offset:" ]]; then
8918                         param="$param -i ${invalues[6]}"
8919                 else
8920                         param="$param -L ${invalues[5]} -i ${invalues[7]}"
8921                 fi
8922         elif [[ ${invalues[4]} =~ "stripe_offset:" ]]; then
8923                 param="$param -i ${invalues[5]}"
8924         fi
8925         echo "$param"
8926 }
8927
8928 parse_plain_param()
8929 {
8930         local line=$1
8931         local val=$(awk '{print $2}' <<< $line)
8932
8933         if [[ $line =~ ^"lmm_stripe_count:" ]]; then
8934                 echo "-c $val"
8935         elif [[ $line =~ ^"lmm_stripe_size:" ]]; then
8936                 echo "-S $val"
8937         elif [[ $line =~ ^"lmm_stripe_offset:" ]]; then
8938                 echo "-i $val"
8939         elif [[ $line =~ ^"lmm_pattern:" ]]; then
8940                 echo "-L $val"
8941         fi
8942 }
8943
8944 parse_layout_param()
8945 {
8946         local mode=""
8947         local val=""
8948         local param=""
8949
8950         while read line; do
8951                 if [[ ! -z $line ]]; then
8952                         if [[ -z $mode ]]; then
8953                                 if [[ $line =~ ^"stripe_count:" ]]; then
8954                                         mode="plain_dir"
8955                                 elif [[ $line =~ ^"lmm_stripe_count:" ]]; then
8956                                         mode="plain_file"
8957                                 elif [[ $line =~ ^"lcm_layout_gen:" ]]; then
8958                                         mode="pfl"
8959                                 fi
8960                         fi
8961
8962                         if [[ $mode = "plain_dir" ]]; then
8963                                 param=$(parse_plain_dir_param "$line")
8964                         elif [[ $mode = "plain_file" ]]; then
8965                                 val=$(parse_plain_param "$line")
8966                                 [[ ! -z $val ]] && param="$param $val"
8967                         elif [[ $mode = "pfl" ]]; then
8968                                 val=$(echo $line | awk '{print $2}')
8969                                 if [[ $line =~ ^"lcme_extent.e_end:" ]]; then
8970                                         if [[ $val = "EOF" ]]; then
8971                                                 param="$param -E -1"
8972                                         else
8973                                                 param="$param -E $val"
8974                                         fi
8975                                 elif [[ $line =~ ^"stripe_count:" ]]; then
8976                                         # pfl dir
8977                                         val=$(parse_plain_dir_param "$line")
8978                                         param="$param $val"
8979                                 else
8980                                         #pfl file
8981                                         val=$(parse_plain_param "$line")
8982                                         [[ ! -z $val ]] && param="$param $val"
8983                                 fi
8984                         fi
8985                 fi
8986         done
8987         echo "$param"
8988 }
8989
8990 get_layout_param()
8991 {
8992         local param=$($LFS getstripe -d $1 | parse_layout_param)
8993         echo "$param"
8994 }
8995
8996 lfsck_verify_pfid()
8997 {
8998         local f
8999         local rc=0
9000
9001         # Cancel locks before setting lfsck_verify_pfid so that errors are more
9002         # controllable
9003         cancel_lru_locks mdc
9004         cancel_lru_locks osc
9005
9006         # make sure PFID is set correctly for files
9007         do_nodes $(comma_list $(osts_nodes)) \
9008                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1"
9009
9010         for f in "$@"; do
9011                 cat $f &> /dev/nullA ||
9012                         { rc=$?; echo "verify $f failed"; break; }
9013         done
9014
9015         do_nodes $(comma_list $(osts_nodes)) \
9016                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=0"
9017         return $rc
9018 }
9019
9020 # check that clients "oscs" was evicted after "before"
9021 check_clients_evicted() {
9022         local before=$1
9023         shift
9024         local oscs=${@}
9025         local osc
9026         local rc=0
9027
9028         for osc in $oscs; do
9029                 ((rc++))
9030                 echo "Check state for $osc"
9031                 local evicted=$(do_facet client $LCTL get_param osc.$osc.state |
9032                         tail -n 3 | awk -F"[ [,]" \
9033                         '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
9034                 if (($? == 0)) && (($evicted > $before)); then
9035                         echo "$osc is evicted at $evicted"
9036                         ((rc--))
9037                 fi
9038         done
9039
9040         [ $rc -eq 0 ] || error "client not evicted from OST"
9041 }
9042
9043 # check that clients OSCS current_state is FULL
9044 check_clients_full() {
9045         local timeout=$1
9046         shift
9047         local oscs=${@}
9048
9049         for osc in $oscs; do
9050                 wait_update_facet client \
9051                         "lctl get_param -n osc.$osc.state |
9052                         grep 'current_state: FULL'" \
9053                         "current_state: FULL" $timeout
9054                 [ $? -eq 0 ] || error "$osc state is not FULL"
9055         done
9056 }
9057
9058 #Changelogs
9059 __changelog_deregister() {
9060         local facet=$1
9061         local mdt="$(facet_svc $facet)"
9062         local cl_user=$2
9063         local rc=0
9064
9065         # skip cleanup if no user registered for this MDT
9066         [ -z "$cl_user" ] && echo "$mdt: no changelog user" && return 0
9067         # user is no longer registered, skip cleanup
9068         changelog_users "$facet" | grep -q "$cl_user" ||
9069                 { echo "$mdt: changelog user '$cl_user' not found"; return 0; }
9070
9071         # From this point, if any operation fails, it is an error
9072         __changelog_clear $facet $cl_user 0 ||
9073                 error_noexit "$mdt: changelog_clear $cl_user 0 fail: $rc"
9074         do_facet $facet $LCTL --device $mdt changelog_deregister $cl_user ||
9075                 error_noexit "$mdt: changelog_deregister '$cl_user' fail: $rc"
9076 }
9077
9078 declare -Ax CL_USERS
9079 changelog_register() {
9080         for M in $(seq $MDSCOUNT); do
9081                 local facet=mds$M
9082                 local mdt="$(facet_svc $facet)"
9083                 local cl_mask
9084
9085                 cl_mask=$(do_facet $facet $LCTL get_param \
9086                              mdd.${mdt}.changelog_mask -n)
9087                 stack_trap "do_facet $facet $LCTL \
9088                         set_param mdd.$mdt.changelog_mask=\'$cl_mask\' -n" EXIT
9089                 do_facet $facet $LCTL set_param mdd.$mdt.changelog_mask=+hsm ||
9090                         error "$mdt: changelog_mask=+hsm failed: $?"
9091
9092                 local cl_user
9093                 cl_user=$(do_facet $facet \
9094                                   $LCTL --device $mdt changelog_register -n) ||
9095                         error "$mdt: register changelog user failed: $?"
9096                 stack_trap "__changelog_deregister $facet $cl_user" EXIT
9097
9098                 stack_trap "CL_USERS[$facet]='${CL_USERS[$facet]}'" EXIT
9099                 # Bash does not support nested arrays, but the format of a
9100                 # cl_user is constrained enough to use whitespaces as separators
9101                 CL_USERS[$facet]+="$cl_user "
9102         done
9103         echo "Registered $MDSCOUNT changelog users: '${CL_USERS[@]% }'"
9104 }
9105
9106 changelog_deregister() {
9107         local cl_user
9108         # bash assoc arrays do not guarantee to list keys in created order
9109         # so reorder to get same order than in changelog_register()
9110         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9111                           tr "\n" " ")
9112
9113         for facet in $cl_facets; do
9114                 for cl_user in ${CL_USERS[$facet]}; do
9115                         __changelog_deregister $facet $cl_user || return $?
9116                 done
9117                 unset CL_USERS[$facet]
9118         done
9119 }
9120
9121 changelog_users() {
9122         local facet=$1
9123         local service=$(facet_svc $facet)
9124
9125         do_facet $facet $LCTL get_param -n mdd.$service.changelog_users
9126 }
9127
9128 changelog_user_rec() {
9129         local facet=$1
9130         local cl_user=$2
9131         local service=$(facet_svc $facet)
9132
9133         changelog_users $facet | awk '$1 == "'$cl_user'" { print $2 }'
9134 }
9135
9136 changelog_chmask() {
9137         local mask=$1
9138
9139         do_nodes $(comma_list $(mdts_nodes)) \
9140                 $LCTL set_param mdd.*.changelog_mask="$mask"
9141 }
9142
9143 # usage: __changelog_clear FACET CL_USER [+]INDEX
9144 __changelog_clear()
9145 {
9146         local facet=$1
9147         local mdt="$(facet_svc $facet)"
9148         local cl_user=$2
9149         local -i rec
9150
9151         case "$3" in
9152         +*)
9153                 # Remove the leading '+'
9154                 rec=${3:1}
9155                 rec+=$(changelog_user_rec $facet $cl_user)
9156                 ;;
9157         *)
9158                 rec=$3
9159                 ;;
9160         esac
9161
9162         if [ $rec -eq 0 ]; then
9163                 echo "$mdt: clear the changelog for $cl_user of all records"
9164         else
9165                 echo "$mdt: clear the changelog for $cl_user to record #$rec"
9166         fi
9167         $LFS changelog_clear $mdt $cl_user $rec
9168 }
9169
9170 # usage: changelog_clear [+]INDEX
9171 #
9172 # If INDEX is prefixed with '+', increment every changelog user's record index
9173 # by INDEX. Otherwise, clear the changelog up to INDEX for every changelog
9174 # users.
9175 changelog_clear() {
9176         local rc
9177         # bash assoc arrays do not guarantee to list keys in created order
9178         # so reorder to get same order than in changelog_register()
9179         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9180                           tr "\n" " ")
9181
9182         for facet in $cl_facets; do
9183                 for cl_user in ${CL_USERS[$facet]}; do
9184                         __changelog_clear $facet $cl_user $1 || rc=${rc:-$?}
9185                 done
9186         done
9187
9188         return ${rc:-0}
9189 }
9190
9191 changelog_dump() {
9192         for M in $(seq $MDSCOUNT); do
9193                 local facet=mds$M
9194                 local mdt="$(facet_svc $facet)"
9195
9196                 $LFS changelog $mdt | sed -e 's/^/'$mdt'./'
9197         done
9198 }
9199
9200 changelog_extract_field() {
9201         local cltype=$1
9202         local file=$2
9203         local identifier=$3
9204
9205         changelog_dump | gawk "/$cltype.*$file$/ {
9206                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9207                 tail -1
9208 }
9209
9210 # Prints a changelog record produced by "lfs changelog" as an associative array
9211 #
9212 # Example:
9213 # $> changelog2array 16 01CREAT 10:28:46.968438800 2018.03.09 0x0 \
9214 #                    t=[0x200000401:0x10:0x0] j=touch.501 ef=0xf u=501:501 \
9215 #                    nid=0@lo p=[0x200000007:0x1:0x0] blob
9216 # ([index]='16' [type]='CREAT' [time]='10:28:46.968438800'
9217 #  [date]='2018.03.09' [flags]=0x0 ['target-fid']='[0x200000401:0x10:0x0]'
9218 #  ['jobid']='touch.501' ['extra-flags']='0x0f' [uid]='0' ['gid']='0'
9219 #  ['nid']='0@lo' ['parent-fid']='[0x200000007:0x1:0x0]')
9220 #
9221 # Note that the changelog record is not quoted
9222 # Also note that the line breaks in the output were only added for readability
9223 #
9224 # Typically, you want to eval the output of the command to fill an actual
9225 # associative array, like this:
9226 # $> eval declare -A changelog=$(changelog2array $entry)
9227 #
9228 # It can then be accessed like any bash associative array:
9229 # $> echo "${changelog[index]}" "${changelog[type]}" "${changelog[flags]}"
9230 # 16 CREAT 0x0
9231 # $> echo "${changelog[uid]}":"${changelog[gid]}"
9232 # 501:501
9233 #
9234 changelog2array()
9235 {
9236         # Start the array
9237         printf '('
9238
9239         # A changelog, as printed by "lfs changelog" typically looks like this:
9240         # <index> <type> <time> <date> <flags> <key1=value1> <key2=value2> ...
9241
9242         # Parse the positional part of the changelog
9243
9244         # changelog_dump() prefixes records with their mdt's name
9245         local index="${1##*.}"
9246
9247         printf "[index]='%s' [type]='%s' [time]='%s' [date]='%s' [flags]='%s'" \
9248                "$index" "${2:2}" "$3" "$4" "$5"
9249
9250         # Parse the key/value part of the changelog
9251         for arg in "${@:5}"; do
9252                 # Check it matches a key=value syntax
9253                 [[ "$arg" =~ ^[[:alpha:]]+= ]] || continue
9254
9255                 local key="${arg%%=*}"
9256                 local value="${arg#*=}"
9257
9258                 case "$key" in
9259                 u)
9260                         # u is actually for uid AND gid: u=UID:GID
9261                         printf " [uid]='%s'" "${value%:*}"
9262                         key=gid
9263                         value="${value#*:}"
9264                         ;;
9265                 t)
9266                         key=target-fid
9267                         value="${value#[}"
9268                         value="${value%]}"
9269                         ;;
9270                 j)
9271                         key=jobid
9272                         ;;
9273                 p)
9274                         key=parent-fid
9275                         value="${value#[}"
9276                         value="${value%]}"
9277                         ;;
9278                 ef)
9279                         key=extra-flags
9280                         ;;
9281                 m)
9282                         key=mode
9283                         ;;
9284                 x)
9285                         key=xattr
9286                         ;;
9287                 *)
9288                         ;;
9289                 esac
9290
9291                 printf " ['%s']='%s'" "$key" "$value"
9292         done
9293
9294         # end the array
9295         printf ')'
9296 }
9297
9298 # Format and print a changelog record
9299 #
9300 # Interpreted sequences are:
9301 #       %%      a single %
9302 #       %f      the "flags" attribute of a changelog record
9303 __changelog_printf()
9304 {
9305         local format="$1"
9306
9307         local -i i
9308         for ((i = 0; i < ${#format}; i++)); do
9309                 local char="${format:$i:1}"
9310                 if [ "$char" != % ]; then
9311                         printf '%c' "$char"
9312                         continue
9313                 fi
9314
9315                 i+=1
9316                 char="${format:$i:1}"
9317                 case "$char" in
9318                 f)
9319                         printf '%s' "${changelog[flags]}"
9320                         ;;
9321                 %)
9322                         printf '%'
9323                         ;;
9324                 esac
9325         done
9326         printf '\n'
9327 }
9328
9329 # Filter changelog records
9330 changelog_find()
9331 {
9332         local -A filter
9333         local action='print'
9334         local format
9335
9336         while [ $# -gt 0 ]; do
9337                 case "$1" in
9338                 -print)
9339                         action='print'
9340                         ;;
9341                 -printf)
9342                         action='printf'
9343                         format="$2"
9344                         shift
9345                         ;;
9346                 -*)
9347                         filter[${1#-}]="$2"
9348                         shift
9349                         ;;
9350                 esac
9351                 shift
9352         done
9353
9354         local found=false
9355         local record
9356         changelog_dump | { while read -r record; do
9357                 eval local -A changelog=$(changelog2array $record)
9358                 for key in "${!filter[@]}"; do
9359                         case "$key" in
9360                         *)
9361                                 [ "${changelog[$key]}" == "${filter[$key]}" ]
9362                                 ;;
9363                         esac || continue 2
9364                 done
9365
9366                 found=true
9367
9368                 case "${action:-print}" in
9369                 print)
9370                         printf '%s\n' "$record"
9371                         ;;
9372                 printf)
9373                         __changelog_printf "$format"
9374                         ;;
9375                 esac
9376         done; $found; }
9377 }
9378
9379 restore_layout() {
9380         local dir=$1
9381         local layout=$2
9382
9383         [ ! -d "$dir" ] && return
9384
9385         [ -z "$layout" ] && {
9386                 $LFS setstripe -d $dir || error "error deleting stripe '$dir'"
9387                 return
9388         }
9389
9390         setfattr -n trusted.lov -v $layout $dir ||
9391                 error "error restoring layout '$layout' to '$dir'"
9392 }
9393
9394 # save the layout of a directory, the returned string will be used by
9395 # restore_layout() to restore the layout
9396 save_layout() {
9397         local dir=$1
9398         local str=$(getfattr -n trusted.lov --absolute-names -e hex $dir \
9399                     2> /dev/null | awk -F'=' '/trusted.lov/{ print $2 }')
9400         echo "$str"
9401 }
9402
9403 # save layout of a directory and restore it at exit
9404 save_layout_restore_at_exit() {
9405         local dir=$1
9406         local layout=$(save_layout $dir)
9407
9408         stack_trap "restore_layout $dir $layout" EXIT
9409 }
9410
9411 verify_yaml_layout() {
9412         local src=$1
9413         local dst=$2
9414         local temp=$3
9415         local msg_prefix=$4
9416
9417         echo "getstripe --yaml $src"
9418         $LFS getstripe --yaml $src > $temp || error "getstripe $src failed"
9419         echo "setstripe --yaml=$temp $dst"
9420         $LFS setstripe --yaml=$temp $dst|| error "setstripe $dst failed"
9421
9422         echo "compare"
9423         local layout1=$(get_layout_param $src)
9424         local layout2=$(get_layout_param $dst)
9425         # compare their layout info
9426         [ "$layout1" == "$layout2" ] ||
9427                 error "$msg_prefix $src/$dst layouts are not equal"
9428 }
9429