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