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