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