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