Whamcloud - gitweb
LU-13270 tests: dom-performance fixes
[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 mdtname_from_index() {
6620         local uuid=$(mdtuuid_from_index $1)
6621         echo ${uuid/_UUID/}
6622 }
6623
6624 mdssize_from_index () {
6625         local mdt=$(mdtname_from_index $2)
6626         $LFS df $1 | grep $mdt | awk '{ print $2 }'
6627 }
6628
6629 index_from_ostuuid()
6630 {
6631     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
6632 }
6633
6634 mdtuuid_from_index()
6635 {
6636     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6637 }
6638
6639 # Description:
6640 #   Return unique identifier for given hostname
6641 host_id() {
6642         local host_name=$1
6643         echo $host_name | md5sum | cut -d' ' -f1
6644 }
6645
6646 # Description:
6647 #   Returns list of ip addresses for each interface
6648 local_addr_list() {
6649         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
6650 }
6651
6652 is_local_addr() {
6653         local addr=$1
6654         # Cache address list to avoid mutiple execution of local_addr_list
6655         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
6656         local i
6657         for i in $LOCAL_ADDR_LIST ; do
6658                 [[ "$i" == "$addr" ]] && return 0
6659         done
6660         return 1
6661 }
6662
6663 local_node() {
6664         local host_name=$1
6665         local is_local="IS_LOCAL_$(host_id $host_name)"
6666         if [ -z "${!is_local-}" ] ; then
6667                 eval $is_local=0
6668                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
6669                 is_local_addr "$host_ip" && eval $is_local=1
6670         fi
6671         [[ "${!is_local}" == "1" ]]
6672 }
6673
6674 remote_node () {
6675         local node=$1
6676         local_node $node && return 1
6677         return 0
6678 }
6679
6680 remote_mds ()
6681 {
6682     local node
6683     for node in $(mdts_nodes); do
6684         remote_node $node && return 0
6685     done
6686     return 1
6687 }
6688
6689 remote_mds_nodsh()
6690 {
6691         [ -n "$CLIENTONLY" ] && return 0 || true
6692         remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
6693 }
6694
6695 require_dsh_mds()
6696 {
6697         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" &&
6698                 MSKIPPED=1 && return 1
6699         return 0
6700 }
6701
6702 remote_ost ()
6703 {
6704     local node
6705     for node in $(osts_nodes) ; do
6706         remote_node $node && return 0
6707     done
6708     return 1
6709 }
6710
6711 remote_ost_nodsh()
6712 {
6713         [ -n "$CLIENTONLY" ] && return 0 || true
6714         remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6715 }
6716
6717 require_dsh_ost()
6718 {
6719         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
6720             OSKIPPED=1 && return 1
6721         return 0
6722 }
6723
6724 remote_mgs_nodsh()
6725 {
6726         [ -n "$CLIENTONLY" ] && return 0 || true
6727         local MGS
6728         MGS=$(facet_host mgs)
6729         remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6730 }
6731
6732 local_mode ()
6733 {
6734     remote_mds_nodsh || remote_ost_nodsh || \
6735         $(single_local_node $(comma_list $(nodes_list)))
6736 }
6737
6738 remote_servers () {
6739     remote_ost && remote_mds
6740 }
6741
6742 # Get the active nodes for facets.
6743 facets_nodes () {
6744         local facets=$1
6745         local facet
6746         local nodes
6747         local nodes_sort
6748         local i
6749
6750         for facet in ${facets//,/ }; do
6751                 nodes="$nodes $(facet_active_host $facet)"
6752         done
6753
6754         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6755         echo -n $nodes_sort
6756 }
6757
6758 # Get name of the active MGS node.
6759 mgs_node () {
6760         echo -n $(facets_nodes $(get_facets MGS))
6761 }
6762
6763 # Get all of the active MDS nodes.
6764 mdts_nodes () {
6765         echo -n $(facets_nodes $(get_facets MDS))
6766 }
6767
6768 # Get all of the active OSS nodes.
6769 osts_nodes () {
6770         echo -n $(facets_nodes $(get_facets OST))
6771 }
6772
6773 # Get all of the active AGT (HSM agent) nodes.
6774 agts_nodes () {
6775         echo -n $(facets_nodes $(get_facets AGT))
6776 }
6777
6778 # Get all of the client nodes and active server nodes.
6779 nodes_list () {
6780         local nodes=$HOSTNAME
6781         local nodes_sort
6782         local i
6783
6784         # CLIENTS (if specified) contains the local client
6785         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6786
6787         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6788                 nodes="$nodes $(facets_nodes $(get_facets))"
6789         fi
6790
6791         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6792         echo -n $nodes_sort
6793 }
6794
6795 # Get all of the remote client nodes and remote active server nodes.
6796 remote_nodes_list () {
6797         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
6798 }
6799
6800 # Get all of the MDS nodes, including active and passive nodes.
6801 all_mdts_nodes () {
6802         local host
6803         local failover_host
6804         local nodes
6805         local nodes_sort
6806         local i
6807
6808         for i in $(seq $MDSCOUNT); do
6809                 host=mds${i}_HOST
6810                 failover_host=mds${i}failover_HOST
6811                 nodes="$nodes ${!host} ${!failover_host}"
6812         done
6813
6814         [ -n "$nodes" ] || nodes="${mds_HOST} ${mdsfailover_HOST}"
6815         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6816         echo -n $nodes_sort
6817 }
6818
6819 # Get all of the OSS nodes, including active and passive nodes.
6820 all_osts_nodes () {
6821         local host
6822         local failover_host
6823         local nodes=
6824         local nodes_sort
6825         local i
6826
6827         for i in $(seq $OSTCOUNT); do
6828                 host=ost${i}_HOST
6829                 failover_host=ost${i}failover_HOST
6830                 nodes="$nodes ${!host} ${!failover_host}"
6831         done
6832
6833         [ -n "$nodes" ] || nodes="${ost_HOST} ${ostfailover_HOST}"
6834         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6835         echo -n $nodes_sort
6836 }
6837
6838 # Get all of the server nodes, including active and passive nodes.
6839 all_server_nodes () {
6840         local nodes
6841         local nodes_sort
6842         local i
6843
6844         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
6845
6846         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6847         echo -n $nodes_sort
6848 }
6849
6850 # Get all of the client and server nodes, including active and passive nodes.
6851 all_nodes () {
6852         local nodes=$HOSTNAME
6853         local nodes_sort
6854         local i
6855
6856         # CLIENTS (if specified) contains the local client
6857         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6858
6859         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6860                 nodes="$nodes $(all_server_nodes)"
6861         fi
6862
6863         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6864         echo -n $nodes_sort
6865 }
6866
6867 init_clients_lists () {
6868     # Sanity check: exclude the local client from RCLIENTS
6869     local clients=$(hostlist_expand "$RCLIENTS")
6870     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
6871
6872     # Sanity check: exclude the dup entries
6873     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
6874
6875     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
6876
6877     # Sanity check: exclude the dup entries from CLIENTS
6878     # for those configs which has SINGLCLIENT set to local client
6879     clients=$(for i in $clients; do echo $i; done | sort -u)
6880
6881     CLIENTS=$(comma_list $clients)
6882     local -a remoteclients=($RCLIENTS)
6883     for ((i=0; $i<${#remoteclients[@]}; i++)); do
6884             varname=CLIENT$((i + 2))
6885             eval $varname=${remoteclients[i]}
6886     done
6887
6888     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
6889 }
6890
6891 get_random_entry () {
6892     local rnodes=$1
6893
6894     rnodes=${rnodes//,/ }
6895
6896     local -a nodes=($rnodes)
6897     local num=${#nodes[@]}
6898     local i=$((RANDOM * num * 2 / 65536))
6899
6900     echo ${nodes[i]}
6901 }
6902
6903 client_only () {
6904         [ -n "$CLIENTONLY" ] || [ "x$CLIENTMODSONLY" = "xyes" ]
6905 }
6906
6907 check_versions () {
6908     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
6909       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
6910 }
6911
6912 get_node_count() {
6913     local nodes="$@"
6914     echo $nodes | wc -w || true
6915 }
6916
6917 mixed_ost_devs () {
6918     local nodes=$(osts_nodes)
6919     local osscount=$(get_node_count "$nodes")
6920     [ ! "$OSTCOUNT" = "$osscount" ]
6921 }
6922
6923 mixed_mdt_devs () {
6924     local nodes=$(mdts_nodes)
6925     local mdtcount=$(get_node_count "$nodes")
6926     [ ! "$MDSCOUNT" = "$mdtcount" ]
6927 }
6928
6929 generate_machine_file() {
6930     local nodes=${1//,/ }
6931     local machinefile=$2
6932     rm -f $machinefile
6933     for node in $nodes; do
6934         echo $node >>$machinefile || \
6935             { echo "can not generate machinefile $machinefile" && return 1; }
6936     done
6937 }
6938
6939 get_stripe () {
6940         local file=$1/stripe
6941
6942         touch $file
6943         $LFS getstripe -v $file || error "getstripe $file failed"
6944         rm -f $file
6945 }
6946
6947 setstripe_nfsserver () {
6948         local dir=$1
6949         local nfsexportdir=$2
6950         shift
6951         shift
6952
6953         local -a nfsexport=($(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
6954                 { print $1 }' /proc/mounts | cut -f 1 -d :))
6955
6956         # check that only one nfs mounted
6957         [[ -z $nfsexport ]] && echo "$dir is not nfs mounted" && return 1
6958         (( ${#nfsexport[@]} == 1 )) ||
6959                 error "several nfs mounts found for $dir: ${nfsexport[@]} !"
6960
6961         do_nodev ${nfsexport[0]} lfs setstripe $nfsexportdir "$@"
6962 }
6963
6964 # Check and add a test group.
6965 add_group() {
6966         local group_id=$1
6967         local group_name=$2
6968         local rc=0
6969
6970         local gid=$(getent group $group_name | cut -d: -f3)
6971         if [[ -n "$gid" ]]; then
6972                 [[ "$gid" -eq "$group_id" ]] || {
6973                         error_noexit "inconsistent group ID:" \
6974                                      "new: $group_id, old: $gid"
6975                         rc=1
6976                 }
6977         else
6978                 groupadd -g $group_id $group_name
6979                 rc=${PIPESTATUS[0]}
6980         fi
6981
6982         return $rc
6983 }
6984
6985 # Check and add a test user.
6986 add_user() {
6987         local user_id=$1
6988         shift
6989         local user_name=$1
6990         shift
6991         local group_name=$1
6992         shift
6993         local home=$1
6994         shift
6995         local opts="$@"
6996         local rc=0
6997
6998         local uid=$(getent passwd $user_name | cut -d: -f3)
6999         if [[ -n "$uid" ]]; then
7000                 if [[ "$uid" -eq "$user_id" ]]; then
7001                         local dir=$(getent passwd $user_name | cut -d: -f6)
7002                         if [[ "$dir" != "$home" ]]; then
7003                                 mkdir -p $home
7004                                 usermod -d $home $user_name
7005                                 rc=${PIPESTATUS[0]}
7006                         fi
7007                 else
7008                         error_noexit "inconsistent user ID:" \
7009                                      "new: $user_id, old: $uid"
7010                         rc=1
7011                 fi
7012         else
7013                 mkdir -p $home
7014                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
7015                 rc=${PIPESTATUS[0]}
7016         fi
7017
7018         return $rc
7019 }
7020
7021 check_runas_id_ret() {
7022     local myRC=0
7023     local myRUNAS_UID=$1
7024     local myRUNAS_GID=$2
7025     shift 2
7026     local myRUNAS=$@
7027     if [ -z "$myRUNAS" ]; then
7028         error_exit "myRUNAS command must be specified for check_runas_id"
7029     fi
7030     if $GSS_KRB5; then
7031         $myRUNAS krb5_login.sh || \
7032             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
7033     fi
7034     mkdir $DIR/d0_runas_test
7035     chmod 0755 $DIR
7036     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
7037     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
7038     rm -rf $DIR/d0_runas_test
7039     return $myRC
7040 }
7041
7042 check_runas_id() {
7043     local myRUNAS_UID=$1
7044     local myRUNAS_GID=$2
7045     shift 2
7046     local myRUNAS=$@
7047     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
7048         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
7049         Please set RUNAS_ID to some UID which exists on MDS and client or
7050         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
7051 }
7052
7053 # obtain the UID/GID for MPI_USER
7054 get_mpiuser_id() {
7055     local mpi_user=$1
7056
7057     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
7058 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
7059
7060     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
7061 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
7062 }
7063
7064 # obtain and cache Kerberos ticket-granting ticket
7065 refresh_krb5_tgt() {
7066     local myRUNAS_UID=$1
7067     local myRUNAS_GID=$2
7068     shift 2
7069     local myRUNAS=$@
7070     if [ -z "$myRUNAS" ]; then
7071         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
7072     fi
7073
7074     CLIENTS=${CLIENTS:-$HOSTNAME}
7075     do_nodes $CLIENTS "set -x
7076 if ! $myRUNAS krb5_login.sh; then
7077     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
7078     exit 1
7079 fi"
7080 }
7081
7082 # Run multiop in the background, but wait for it to print
7083 # "PAUSING" to its stdout before returning from this function.
7084 multiop_bg_pause() {
7085     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
7086     FILE=$1
7087     ARGS=$2
7088
7089     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
7090     mkfifo $TMPPIPE
7091
7092     echo "$MULTIOP_PROG $FILE v$ARGS"
7093     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
7094
7095     echo "TMPPIPE=${TMPPIPE}"
7096     read -t 60 multiop_output < $TMPPIPE
7097     if [ $? -ne 0 ]; then
7098         rm -f $TMPPIPE
7099         return 1
7100     fi
7101     rm -f $TMPPIPE
7102     if [ "$multiop_output" != "PAUSING" ]; then
7103         echo "Incorrect multiop output: $multiop_output"
7104         kill -9 $PID
7105         return 1
7106     fi
7107
7108     return 0
7109 }
7110
7111 do_and_time () {
7112     local cmd=$1
7113     local rc
7114
7115     SECONDS=0
7116     eval '$cmd'
7117
7118     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
7119
7120     echo $SECONDS
7121     return $rc
7122 }
7123
7124 inodes_available () {
7125         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
7126                 sort -un | head -n1) || return 1
7127         echo $((IFree))
7128 }
7129
7130 mdsrate_inodes_available () {
7131         local min_inodes=$(inodes_available)
7132         echo $((min_inodes * 99 / 100))
7133 }
7134
7135 # reset stat counters
7136 clear_stats() {
7137         local paramfile="$1"
7138         lctl set_param -n $paramfile=0
7139 }
7140
7141 # sum stat items
7142 calc_stats() {
7143         local paramfile="$1"
7144         local stat="$2"
7145         lctl get_param -n $paramfile |
7146                 awk '/^'$stat'/ { sum += $2 } END { printf("%0.0f", sum) }'
7147 }
7148
7149 calc_sum () {
7150         awk '{sum += $1} END { printf("%0.0f", sum) }'
7151 }
7152
7153 calc_osc_kbytes () {
7154         $LFS df $MOUNT > /dev/null
7155         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
7156 }
7157
7158 # save_lustre_params(comma separated facet list, parameter_mask)
7159 # generate a stream of formatted strings (<facet> <param name>=<param value>)
7160 save_lustre_params() {
7161         local facets=$1
7162         local facet
7163         local facet_svc
7164
7165         for facet in ${facets//,/ }; do
7166                 facet_svc=$(facet_svc $facet)
7167                 do_facet $facet \
7168                         "params=\\\$($LCTL get_param $2);
7169                          [[ -z \\\"$facet_svc\\\" ]] && param= ||
7170                          param=\\\$(grep $facet_svc <<< \\\"\\\$params\\\");
7171                          [[ -z \\\$param ]] && param=\\\"\\\$params\\\";
7172                          while read s; do echo $facet \\\$s;
7173                          done <<< \\\"\\\$param\\\""
7174         done
7175 }
7176
7177 # restore lustre parameters from input stream, produces by save_lustre_params
7178 restore_lustre_params() {
7179         local facet
7180         local name
7181         local val
7182
7183         while IFS=" =" read facet name val; do
7184                 do_facet $facet "$LCTL set_param -n $name=$val"
7185         done
7186 }
7187
7188 check_node_health() {
7189         local nodes=${1:-$(comma_list $(nodes_list))}
7190
7191         for node in ${nodes//,/ }; do
7192                 check_network "$node" 5
7193                 if [ $? -eq 0 ]; then
7194                         do_node $node "rc=0;
7195                         val=\\\$($LCTL get_param -n catastrophe 2>&1);
7196                         if [[ \\\$? -eq 0 && \\\$val -ne 0 ]]; then
7197                                 echo \\\$(hostname -s): \\\$val;
7198                                 rc=\\\$val;
7199                         fi;
7200                         exit \\\$rc" || error "$node:LBUG/LASSERT detected"
7201                 fi
7202         done
7203 }
7204
7205 mdsrate_cleanup () {
7206         if [ -d $4 ]; then
7207                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
7208                         --nfiles $3 --dir $4 --filefmt $5 $6
7209                 rmdir $4
7210         fi
7211 }
7212
7213 delayed_recovery_enabled () {
7214     local var=${SINGLEMDS}_svc
7215     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
7216 }
7217
7218 ########################
7219
7220 convert_facet2label() {
7221         local facet=$1
7222
7223         if [ x$facet = xost ]; then
7224                 facet=ost1
7225         elif [ x$facet = xmgs ] && combined_mgs_mds ; then
7226                 facet=mds1
7227         fi
7228
7229         local varsvc=${facet}_svc
7230
7231         if [ -n ${!varsvc} ]; then
7232                 echo ${!varsvc}
7233         else
7234                 error "No label for $facet!"
7235         fi
7236 }
7237
7238 get_clientosc_proc_path() {
7239         echo "${1}-osc-[-0-9a-f]*"
7240 }
7241
7242 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
7243 # used by MDT would not be changed.
7244 # mdt lov: fsname-mdtlov
7245 # mdt osc: fsname-OSTXXXX-osc
7246 mds_on_old_device() {
7247     local mds=${1:-"$SINGLEMDS"}
7248
7249     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
7250         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
7251             > /dev/null 2>&1" && return 0
7252     fi
7253     return 1
7254 }
7255
7256 get_mdtosc_proc_path() {
7257         local mds_facet=$1
7258         local ost_label=${2:-"*OST*"}
7259
7260         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
7261         local mdt_label=$(convert_facet2label $mds_facet)
7262         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
7263
7264         if [[ $ost_label = *OST* ]]; then
7265                 echo "${ost_label}-osc-${mdt_index}"
7266         else
7267                 echo "${ost_label}-osp-${mdt_index}"
7268         fi
7269 }
7270
7271 get_osc_import_name() {
7272     local facet=$1
7273     local ost=$2
7274     local label=$(convert_facet2label $ost)
7275
7276     if [ "${facet:0:3}" = "mds" ]; then
7277         get_mdtosc_proc_path $facet $label
7278         return 0
7279     fi
7280
7281     get_clientosc_proc_path $label
7282     return 0
7283 }
7284
7285 _wait_import_state () {
7286     local expected=$1
7287     local CONN_PROC=$2
7288     local maxtime=${3:-$(max_recovery_time)}
7289     local error_on_failure=${4:-1}
7290     local CONN_STATE
7291     local i=0
7292
7293         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
7294     while ! echo "${CONN_STATE}" | egrep -q "^${expected}\$" ; do
7295         if [ "${expected}" == "DISCONN" ]; then
7296             # for disconn we can check after proc entry is removed
7297             [ "x${CONN_STATE}" == "x" ] && return 0
7298             #  with AT enabled, we can have connect request timeout near of
7299             # reconnect timeout and test can't see real disconnect
7300             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
7301         fi
7302         if [ $i -ge $maxtime ]; then
7303             [ $error_on_failure -ne 0 ] && \
7304                 error "can't put import for $CONN_PROC into ${expected}" \
7305                       "state after $i sec, have ${CONN_STATE}"
7306             return 1
7307         fi
7308         sleep 1
7309         # Add uniq for multi-mount case
7310         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
7311         i=$(($i + 1))
7312     done
7313
7314     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
7315     return 0
7316 }
7317
7318 wait_import_state() {
7319     local state=$1
7320     local params=$2
7321     local maxtime=${3:-$(max_recovery_time)}
7322     local error_on_failure=${4:-1}
7323     local param
7324
7325     for param in ${params//,/ }; do
7326         _wait_import_state $state $param $maxtime $error_on_failure || return
7327     done
7328 }
7329
7330 wait_import_state_mount() {
7331         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
7332                 return 0
7333         fi
7334
7335         wait_import_state $*
7336 }
7337
7338 # One client request could be timed out because server was not ready
7339 # when request was sent by client.
7340 # The request timeout calculation details :
7341 # ptl_send_rpc ()
7342 #      /* We give the server rq_timeout secs to process the req, and
7343 #      add the network latency for our local timeout. */
7344 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
7345 #           ptlrpc_at_get_net_latency(request) ;
7346 #
7347 # ptlrpc_connect_import ()
7348 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7349 #
7350 # init_imp_at () ->
7351 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
7352 # ptlrpc_at_get_net_latency(request) ->
7353 #       at_get (max (iat_net_latency=0, at_min)) = at_min
7354 #
7355 # i.e.:
7356 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
7357 # INITIAL_CONNECT_TIMEOUT + at_min
7358 #
7359 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
7360 # because we can not get this value in runtime,
7361 # the value depends on configure options, and it is not stored in /proc.
7362 # obd_support.h:
7363 # #define CONNECTION_SWITCH_MIN 5U
7364 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
7365
7366 request_timeout () {
7367     local facet=$1
7368
7369     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7370     local init_connect_timeout=$TIMEOUT
7371     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
7372
7373     local at_min=$(at_get $facet at_min)
7374
7375     echo $(( init_connect_timeout + at_min ))
7376 }
7377
7378 _wait_osc_import_state() {
7379         local facet=$1
7380         local ost_facet=$2
7381         local expected=$3
7382         local target=$(get_osc_import_name $facet $ost_facet)
7383         local param="os[cp].${target}.ost_server_uuid"
7384         local params=$param
7385         local i=0
7386
7387         # 1. wait the deadline of client 1st request (it could be skipped)
7388         # 2. wait the deadline of client 2nd request
7389         local maxtime=$(( 2 * $(request_timeout $facet)))
7390
7391         if [[ $facet == client* ]]; then
7392                 # During setup time, the osc might not be setup, it need wait
7393                 # until list_param can return valid value.
7394                 params=$($LCTL list_param $param 2>/dev/null || true)
7395                 while [ -z "$params" ]; do
7396                         if [ $i -ge $maxtime ]; then
7397                                 echo "can't get $param in $maxtime secs"
7398                                 return 1
7399                         fi
7400                         sleep 1
7401                         i=$((i + 1))
7402                         params=$($LCTL list_param $param 2>/dev/null || true)
7403                 done
7404         fi
7405
7406         if [[ $ost_facet = mds* ]]; then
7407                 # no OSP connection to itself
7408                 if [[ $facet = $ost_facet ]]; then
7409                         return 0
7410                 fi
7411                 param="osp.${target}.mdt_server_uuid"
7412                 params=$param
7413         fi
7414
7415         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7416                         wait_import_state $expected "$params" $maxtime; then
7417                 error "$facet: import is not in $expected state after $maxtime"
7418                 return 1
7419         fi
7420
7421         return 0
7422 }
7423
7424 wait_osc_import_state() {
7425         local facet=$1
7426         local ost_facet=$2
7427         local expected=$3
7428         local num
7429
7430         if [[ $facet = mds ]]; then
7431                 for num in $(seq $MDSCOUNT); do
7432                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
7433                 done
7434         else
7435                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
7436         fi
7437 }
7438
7439 wait_osc_import_ready() {
7440         wait_osc_import_state $1 $2 "\(FULL\|IDLE\)"
7441 }
7442
7443 _wait_mgc_import_state() {
7444         local facet=$1
7445         local expected=$2
7446         local error_on_failure=${3:-1}
7447         local param="mgc.*.mgs_server_uuid"
7448         local params=$param
7449         local i=0
7450
7451         # 1. wait the deadline of client 1st request (it could be skipped)
7452         # 2. wait the deadline of client 2nd request
7453         local maxtime=$(( 2 * $(request_timeout $facet)))
7454
7455         if [[ $facet == client* ]]; then
7456                 # During setup time, the osc might not be setup, it need wait
7457                 # until list_param can return valid value. And also if there
7458                 # are mulitple osc entries we should list all of them before
7459                 # go to wait.
7460                 params=$($LCTL list_param $param 2>/dev/null || true)
7461                 while [ -z "$params" ]; do
7462                         if [ $i -ge $maxtime ]; then
7463                                 echo "can't get $param in $maxtime secs"
7464                                 return 1
7465                         fi
7466                         sleep 1
7467                         i=$((i + 1))
7468                         params=$($LCTL list_param $param 2>/dev/null || true)
7469                 done
7470         fi
7471         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7472                         wait_import_state $expected "$params" $maxtime \
7473                                           $error_on_failure; then
7474                 if [ $error_on_failure -ne 0 ]; then
7475                     error "import is not in ${expected} state"
7476                 fi
7477                 return 1
7478         fi
7479
7480         return 0
7481 }
7482
7483 wait_mgc_import_state() {
7484         local facet=$1
7485         local expected=$2
7486         local error_on_failure=${3:-1}
7487         local num
7488
7489         if [[ $facet = mds ]]; then
7490                 for num in $(seq $MDSCOUNT); do
7491                         _wait_mgc_import_state mds$num "$expected" \
7492                                                $error_on_failure || return
7493                 done
7494         else
7495                 _wait_mgc_import_state "$facet" "$expected"
7496                                        $error_on_failure || return
7497         fi
7498 }
7499
7500 wait_dne_interconnect() {
7501         local num
7502
7503         if [ $MDSCOUNT -gt 1 ]; then
7504                 for num in $(seq $MDSCOUNT); do
7505                         wait_osc_import_ready mds mds$num
7506                 done
7507         fi
7508 }
7509
7510 get_clientmdc_proc_path() {
7511     echo "${1}-mdc-*"
7512 }
7513
7514 get_clientmgc_proc_path() {
7515     echo "*"
7516 }
7517
7518 do_rpc_nodes () {
7519         local list=$1
7520         shift
7521
7522         [ -z "$list" ] && return 0
7523
7524         # Add paths to lustre tests for 32 and 64 bit systems.
7525         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
7526         local TESTPATH="$RLUSTRE/tests:"
7527         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
7528         do_nodesv $list "${RPATH} NAME=${NAME} bash rpc.sh $@ "
7529 }
7530
7531 wait_clients_import_state () {
7532         local list=$1
7533         local facet=$2
7534         local expected=$3
7535
7536         local facets=$facet
7537
7538         if [ "$FAILURE_MODE" = HARD ]; then
7539                 facets=$(facets_on_host $(facet_active_host $facet))
7540         fi
7541
7542         for facet in ${facets//,/ }; do
7543                 local label=$(convert_facet2label $facet)
7544                 local proc_path
7545                 case $facet in
7546                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
7547                                   $label).ost_server_uuid" ;;
7548                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
7549                                   $label).mds_server_uuid" ;;
7550                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
7551                                   $label).mgs_server_uuid" ;;
7552                 *) error "unknown facet!" ;;
7553                 esac
7554
7555                 local params=$(expand_list $params $proc_path)
7556         done
7557
7558         if ! do_rpc_nodes "$list" wait_import_state_mount "$expected" $params;
7559         then
7560                 error "import is not in ${expected} state"
7561                 return 1
7562         fi
7563 }
7564
7565 wait_osp_active() {
7566         local facet=$1
7567         local tgt_name=$2
7568         local tgt_idx=$3
7569         local expected=$4
7570         local num
7571
7572         # wait until all MDTs are in the expected state
7573         for ((num = 1; num <= $MDSCOUNT; num++)); do
7574                 local mdtosp=$(get_mdtosc_proc_path mds${num} ${tgt_name})
7575                 local wait=0
7576                 local mproc
7577
7578                 if [ $facet = "mds" ]; then
7579                         mproc="osp.$mdtosp.active"
7580                         [ $num -eq $((tgt_idx + 1)) ] && continue
7581                 else
7582                         mproc="osc.$mdtosp.active"
7583                 fi
7584
7585                 echo "check $mproc"
7586                 while [ 1 ]; do
7587                         sleep 5
7588                         local result=$(do_facet mds${num} "$LCTL get_param -n $mproc")
7589                         local max=30
7590
7591                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $mproc"
7592                         if [ $result -eq $expected ]; then
7593                                 echo -n "target updated after "
7594                                 echo "$wait sec (got $result)"
7595                                 break
7596                         fi
7597                         wait=$((wait + 5))
7598                         if [ $wait -eq $max ]; then
7599                                 error "$tgt_name: wanted $expected got $result"
7600                         fi
7601                         echo "Waiting $((max - wait)) secs for $tgt_name"
7602                 done
7603         done
7604 }
7605
7606 oos_full() {
7607         local -a AVAILA
7608         local -a GRANTA
7609         local -a TOTALA
7610         local OSCFULL=1
7611         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
7612                   $LCTL get_param obdfilter.*.kbytesavail))
7613         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
7614                   $LCTL get_param -n obdfilter.*.tot_granted))
7615         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
7616                   $LCTL get_param -n obdfilter.*.kbytestotal))
7617         for ((i=0; i<${#AVAILA[@]}; i++)); do
7618                 local -a AVAIL1=(${AVAILA[$i]//=/ })
7619                 local -a TOTAL=(${TOTALA[$i]//=/ })
7620                 GRANT=$((${GRANTA[$i]}/1024))
7621                 # allow 1% of total space in bavail because of delayed
7622                 # allocation with ZFS which might release some free space after
7623                 # txg commit.  For small devices, we set a mininum of 8MB
7624                 local LIMIT=$((${TOTAL} / 100 + 8000))
7625                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
7626                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
7627                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
7628                         echo " FULL" || echo
7629         done
7630         return $OSCFULL
7631 }
7632
7633 list_pool() {
7634         echo -e "$(do_facet $SINGLEMDS $LCTL pool_list $1 | sed '1d')"
7635 }
7636
7637 check_pool_not_exist() {
7638         local fsname=${1%%.*}
7639         local poolname=${1##$fsname.}
7640         [[ $# -ne 1 ]] && return 0
7641         [[ x$poolname = x ]] &&  return 0
7642         list_pool $fsname | grep -w $1 && return 1
7643         return 0
7644 }
7645
7646 create_pool() {
7647         local fsname=${1%%.*}
7648         local poolname=${1##$fsname.}
7649
7650         stack_trap "destroy_test_pools $fsname" EXIT
7651         do_facet mgs lctl pool_new $1
7652         local RC=$?
7653         # get param should return err unless pool is created
7654         [[ $RC -ne 0 ]] && return $RC
7655
7656         for mds_id in $(seq $MDSCOUNT); do
7657                 local mdt_id=$((mds_id-1))
7658                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7659                 wait_update_facet mds$mds_id \
7660                         "lctl get_param -n lod.$lodname.pools.$poolname \
7661                                 2>/dev/null || echo foo" "" ||
7662                         error "mds$mds_id: pool_new failed $1"
7663         done
7664         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7665                 2>/dev/null || echo foo" "" || error "pool_new failed $1"
7666
7667         add_pool_to_list $1
7668         return $RC
7669 }
7670
7671 add_pool_to_list () {
7672         local fsname=${1%%.*}
7673         local poolname=${1##$fsname.}
7674
7675         local listvar=${fsname}_CREATED_POOLS
7676         local temp=${listvar}=$(expand_list ${!listvar} $poolname)
7677         eval export $temp
7678 }
7679
7680 remove_pool_from_list () {
7681         local fsname=${1%%.*}
7682         local poolname=${1##$fsname.}
7683
7684         local listvar=${fsname}_CREATED_POOLS
7685         local temp=${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
7686         eval export $temp
7687 }
7688
7689 destroy_pool_int() {
7690         local ost
7691         local OSTS=$(list_pool $1)
7692         for ost in $OSTS; do
7693                 do_facet mgs lctl pool_remove $1 $ost
7694         done
7695         wait_update_facet $SINGLEMDS "lctl pool_list $1 | wc -l" "1" ||
7696                 error "MDS: pool_list $1 failed"
7697         do_facet mgs lctl pool_destroy $1
7698 }
7699
7700 # <fsname>.<poolname> or <poolname>
7701 destroy_pool() {
7702         local fsname=${1%%.*}
7703         local poolname=${1##$fsname.}
7704
7705         [[ x$fsname = x$poolname ]] && fsname=$FSNAME
7706
7707         local RC
7708
7709         check_pool_not_exist $fsname.$poolname
7710         [[ $? -eq 0 ]] && return 0
7711
7712         destroy_pool_int $fsname.$poolname
7713         RC=$?
7714         [[ $RC -ne 0 ]] && return $RC
7715         for mds_id in $(seq $MDSCOUNT); do
7716                 local mdt_id=$((mds_id-1))
7717                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7718                 wait_update_facet mds$mds_id \
7719                         "lctl get_param -n lod.$lodname.pools.$poolname \
7720                                 2>/dev/null || echo foo" "foo" ||
7721                         error "mds$mds_id: destroy pool failed $1"
7722         done
7723         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7724                 2>/dev/null || echo foo" "foo" || error "destroy pool failed $1"
7725
7726         remove_pool_from_list $fsname.$poolname
7727
7728         return $RC
7729 }
7730
7731 destroy_pools () {
7732         local fsname=${1:-$FSNAME}
7733         local poolname
7734         local listvar=${fsname}_CREATED_POOLS
7735
7736         [ x${!listvar} = x ] && return 0
7737
7738         echo "Destroy the created pools: ${!listvar}"
7739         for poolname in ${!listvar//,/ }; do
7740                 destroy_pool $fsname.$poolname
7741         done
7742 }
7743
7744 destroy_test_pools () {
7745         trap 0
7746         local fsname=${1:-$FSNAME}
7747         destroy_pools $fsname || true
7748 }
7749
7750 gather_logs () {
7751         local list=$1
7752
7753         local ts=$(date +%s)
7754         local docp=true
7755
7756         if [[ ! -f "$YAML_LOG" ]]; then
7757                 # init_logging is not performed before gather_logs,
7758                 # so the $LOGDIR needs to be checked here
7759                 check_shared_dir $LOGDIR && touch $LOGDIR/shared
7760         fi
7761
7762         [ -f $LOGDIR/shared ] && docp=false
7763
7764         # dump lustre logs, dmesg, and journal if GSS_SK=true
7765
7766         prefix="$TESTLOG_PREFIX.$TESTNAME"
7767         suffix="$ts.log"
7768         echo "Dumping lctl log to ${prefix}.*.${suffix}"
7769
7770         if [ -n "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
7771                 echo "Dumping logs only on local client."
7772                 $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
7773                 dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
7774                 [ "$SHARED_KEY" = true ] && find $SK_PATH -name '*.key' -exec \
7775                         lgss_sk -r {} \; &> \
7776                         ${prefix}.ssk_keys.$(hostname -s).${suffix}
7777                 [ "$SHARED_KEY" = true ] && lctl get_param 'nodemap.*.*' > \
7778                         ${prefix}.nodemaps.$(hostname -s).${suffix}
7779                 [ "$GSS_SK" = true ] && keyctl show > \
7780                         ${prefix}.keyring.$(hostname -s).${suffix}
7781                 [ "$GSS_SK" = true ] && journalctl -a > \
7782                         ${prefix}.journal.$(hostname -s).${suffix}
7783                 return
7784         fi
7785
7786         do_nodesv $list \
7787                 "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
7788                 dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
7789         if [ "$SHARED_KEY" = true ]; then
7790                 do_nodesv $list "find $SK_PATH -name '*.key' -exec \
7791                         lgss_sk -r {} \; &> \
7792                         ${prefix}.ssk_keys.\\\$(hostname -s).${suffix}"
7793                 do_facet mds1 "lctl get_param 'nodemap.*.*' > \
7794                         ${prefix}.nodemaps.\\\$(hostname -s).${suffix}"
7795         fi
7796         if [ "$GSS_SK" = true ]; then
7797                 do_nodesv $list "keyctl show > \
7798                         ${prefix}.keyring.\\\$(hostname -s).${suffix}"
7799                 do_nodesv $list "journalctl -a > \
7800                         ${prefix}.journal.\\\$(hostname -s).${suffix}"
7801         fi
7802
7803         if [ ! -f $LOGDIR/shared ]; then
7804                 do_nodes $list rsync -az "${prefix}.*.${suffix}" \
7805                          $HOSTNAME:$LOGDIR
7806         fi
7807 }
7808
7809 do_ls () {
7810     local mntpt_root=$1
7811     local num_mntpts=$2
7812     local dir=$3
7813     local i
7814     local cmd
7815     local pids
7816     local rc=0
7817
7818     for i in $(seq 0 $num_mntpts); do
7819         cmd="ls -laf ${mntpt_root}$i/$dir"
7820         echo + $cmd;
7821         $cmd > /dev/null &
7822         pids="$pids $!"
7823     done
7824     echo pids=$pids
7825     for pid in $pids; do
7826         wait $pid || rc=$?
7827     done
7828
7829     return $rc
7830 }
7831
7832 # check_and_start_recovery_timer()
7833 #       service_time = at_est2timeout(service_time);
7834 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
7835 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
7836
7837 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
7838 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
7839 #define CONNECTION_SWITCH_MIN 5
7840 #define CONNECTION_SWITCH_INC 5
7841 max_recovery_time() {
7842         local init_connect_timeout=$((TIMEOUT / 20))
7843         ((init_connect_timeout >= 5)) || init_connect_timeout=5
7844
7845         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
7846         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
7847
7848         echo -n $service_time
7849 }
7850
7851 recovery_time_min() {
7852         local connection_switch_min=5
7853         local connection_switch_inc=5
7854         local connection_switch_max
7855         local reconnect_delay_max
7856         local initial_connect_timeout
7857         local max
7858         local timout_20
7859
7860         #connection_switch_max=min(50, max($connection_switch_min,$TIMEOUT)
7861         (($connection_switch_min > $TIMEOUT)) &&
7862                 max=$connection_switch_min || max=$TIMEOUT
7863         (($max < 50)) && connection_switch_max=$max || connection_switch_max=50
7864
7865         #initial_connect_timeout = max(connection_switch_min, obd_timeout/20)
7866         timeout_20=$((TIMEOUT/20))
7867         (($connection_switch_min > $timeout_20)) &&
7868                 initial_connect_timeout=$connection_switch_min ||
7869                 initial_connect_timeout=$timeout_20
7870
7871         reconnect_delay_max=$((connection_switch_max + connection_switch_inc + \
7872                                initial_connect_timeout))
7873         echo $((2 * reconnect_delay_max))
7874 }
7875
7876 get_clients_mount_count () {
7877         local clients=${CLIENTS:-$HOSTNAME}
7878
7879         # we need to take into account the clients mounts and
7880         # exclude mds/ost mounts if any;
7881         do_nodes $clients cat /proc/mounts | grep lustre |
7882                 grep -w $MOUNT | wc -l
7883 }
7884
7885 # gss functions
7886 PROC_CLI="srpc_info"
7887 PROC_CON="srpc_contexts"
7888
7889 combination()
7890 {
7891     local M=$1
7892     local N=$2
7893     local R=1
7894
7895     if [ $M -lt $N ]; then
7896         R=0
7897     else
7898         N=$((N + 1))
7899         while [ $N -lt $M ]; do
7900             R=$((R * N))
7901             N=$((N + 1))
7902         done
7903     fi
7904
7905     echo $R
7906     return 0
7907 }
7908
7909 calc_connection_cnt() {
7910         local dir=$1
7911
7912         # MDT->MDT = 2 * C(M, 2)
7913         # MDT->OST = M * O
7914         # CLI->OST = C * O
7915         # CLI->MDT = C * M
7916         comb_m2=$(combination $MDSCOUNT 2)
7917
7918         local num_clients=$(get_clients_mount_count)
7919
7920         local cnt_mdt2mdt=$((comb_m2 * 2))
7921         local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
7922         local cnt_cli2ost=$((num_clients * OSTCOUNT))
7923         local cnt_cli2mdt=$((num_clients * MDSCOUNT))
7924         if is_mounted $MOUNT2; then
7925                 cnt_cli2mdt=$((cnt_cli2mdt * 2))
7926                 cnt_cli2ost=$((cnt_cli2ost * 2))
7927         fi
7928         if local_mode; then
7929                 cnt_mdt2mdt=0
7930                 cnt_mdt2ost=0
7931                 cnt_cli2ost=2
7932                 cnt_cli2mdt=1
7933         fi
7934         local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
7935         local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
7936         local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt \
7937                 + cnt_cli2ost + cnt_cli2mdt))
7938
7939         local var=cnt_$dir
7940         local res=${!var}
7941
7942         echo $res
7943 }
7944
7945 set_rule()
7946 {
7947     local tgt=$1
7948     local net=$2
7949     local dir=$3
7950     local flavor=$4
7951     local cmd="$tgt.srpc.flavor"
7952
7953     if [ $net == "any" ]; then
7954         net="default"
7955     fi
7956     cmd="$cmd.$net"
7957
7958     if [ $dir != "any" ]; then
7959         cmd="$cmd.$dir"
7960     fi
7961
7962     cmd="$cmd=$flavor"
7963     log "Setting sptlrpc rule: $cmd"
7964     do_facet mgs "$LCTL conf_param $cmd"
7965 }
7966
7967 count_contexts()
7968 {
7969         local output=$1
7970         local total_ctx=$(echo "$output" | grep -c "expire.*key.*hdl")
7971         echo $total_ctx
7972 }
7973
7974 count_flvr()
7975 {
7976     local output=$1
7977     local flavor=$2
7978     local count=0
7979
7980     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
7981     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
7982
7983     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
7984
7985     if [ "x$bulkspec" != "x" ]; then
7986         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
7987
7988         if [ "x$algs" != "x" ]; then
7989             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
7990         else
7991             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
7992             if [ $bulk == "bulkn" ]; then
7993                 bulk_count=`echo "$output" | grep "bulk flavor" \
7994                             | grep "null/null" | wc -l`
7995             elif [ $bulk == "bulki" ]; then
7996                 bulk_count=`echo "$output" | grep "bulk flavor" \
7997                             | grep "/null" | grep -v "null/" | wc -l`
7998             else
7999                 bulk_count=`echo "$output" | grep "bulk flavor" \
8000                             | grep -v "/null" | grep -v "null/" | wc -l`
8001             fi
8002         fi
8003
8004         [ $bulk_count -lt $count ] && count=$bulk_count
8005     fi
8006
8007     echo $count
8008 }
8009
8010 flvr_cnt_cli2mdt()
8011 {
8012     local flavor=$1
8013     local cnt
8014
8015     local clients=${CLIENTS:-$HOSTNAME}
8016
8017     for c in ${clients//,/ }; do
8018         local output=$(do_node $c lctl get_param -n \
8019                  mdc.*-*-mdc-*.$PROC_CLI 2>/dev/null)
8020         local tmpcnt=$(count_flvr "$output" $flavor)
8021         if $GSS_SK && [ $flavor != "null" ]; then
8022                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8023                 output=$(do_node $c lctl get_param -n \
8024                          mdc.*-MDT*-mdc-*.$PROC_CON 2>/dev/null)
8025                 local outcon=$(count_contexts "$output")
8026                 if [ "$outcon" -lt "$tmpcnt" ]; then
8027                         tmpcnt=$outcon
8028                 fi
8029         fi
8030         cnt=$((cnt + tmpcnt))
8031     done
8032     echo $cnt
8033 }
8034
8035 flvr_cnt_cli2ost()
8036 {
8037     local flavor=$1
8038     local cnt
8039
8040     local clients=${CLIENTS:-$HOSTNAME}
8041
8042     for c in ${clients//,/ }; do
8043         # reconnect if idle
8044         do_node $c lctl set_param osc.*.idle_connect=1 >/dev/null 2>&1
8045         local output=$(do_node $c lctl get_param -n \
8046                  osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null)
8047         local tmpcnt=$(count_flvr "$output" $flavor)
8048         if $GSS_SK && [ $flavor != "null" ]; then
8049                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8050                 output=$(do_node $c lctl get_param -n \
8051                          osc.*OST*-osc-[^M][^D][^T]*.$PROC_CON 2>/dev/null)
8052                 local outcon=$(count_contexts "$output")
8053                 if [ "$outcon" -lt "$tmpcnt" ]; then
8054                         tmpcnt=$outcon
8055                 fi
8056         fi
8057         cnt=$((cnt + tmpcnt))
8058     done
8059     echo $cnt
8060 }
8061
8062 flvr_cnt_mdt2mdt()
8063 {
8064     local flavor=$1
8065     local cnt=0
8066
8067     if [ $MDSCOUNT -le 1 ]; then
8068         echo 0
8069         return
8070     fi
8071
8072     for num in `seq $MDSCOUNT`; do
8073         local output=$(do_facet mds$num lctl get_param -n \
8074                 osp.*-MDT*osp-MDT*.$PROC_CLI 2>/dev/null)
8075         local tmpcnt=$(count_flvr "$output" $flavor)
8076         if $GSS_SK && [ $flavor != "null" ]; then
8077                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8078                 output=$(do_facet mds$num lctl get_param -n \
8079                         osp.*-MDT*osp-MDT*.$PROC_CON 2>/dev/null)
8080                 local outcon=$(count_contexts "$output")
8081                 if [ "$outcon" -lt "$tmpcnt" ]; then
8082                         tmpcnt=$outcon
8083                 fi
8084         fi
8085         cnt=$((cnt + tmpcnt))
8086     done
8087     echo $cnt;
8088 }
8089
8090 flvr_cnt_mdt2ost()
8091 {
8092     local flavor=$1
8093     local cnt=0
8094     local mdtosc
8095
8096     for num in `seq $MDSCOUNT`; do
8097         mdtosc=$(get_mdtosc_proc_path mds$num)
8098         mdtosc=${mdtosc/-MDT*/-MDT\*}
8099         local output=$(do_facet mds$num lctl get_param -n \
8100                        os[cp].$mdtosc.$PROC_CLI 2>/dev/null)
8101         local tmpcnt=$(count_flvr "$output" $flavor)
8102         if $GSS_SK && [ $flavor != "null" ]; then
8103                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8104                 output=$(do_facet mds$num lctl get_param -n \
8105                          os[cp].$mdtosc.$PROC_CON 2>/dev/null)
8106                 local outcon=$(count_contexts "$output")
8107                 if [ "$outcon" -lt "$tmpcnt" ]; then
8108                         tmpcnt=$outcon
8109                 fi
8110         fi
8111         cnt=$((cnt + tmpcnt))
8112     done
8113     echo $cnt;
8114 }
8115
8116 flvr_cnt_mgc2mgs()
8117 {
8118     local flavor=$1
8119
8120     local output=$(do_facet client lctl get_param -n mgc.*.$PROC_CLI \
8121                         2>/dev/null)
8122     count_flvr "$output" $flavor
8123 }
8124
8125 do_check_flavor()
8126 {
8127     local dir=$1        # from to
8128     local flavor=$2     # flavor expected
8129     local res=0
8130
8131     if [ $dir == "cli2mdt" ]; then
8132         res=`flvr_cnt_cli2mdt $flavor`
8133     elif [ $dir == "cli2ost" ]; then
8134         res=`flvr_cnt_cli2ost $flavor`
8135     elif [ $dir == "mdt2mdt" ]; then
8136         res=`flvr_cnt_mdt2mdt $flavor`
8137     elif [ $dir == "mdt2ost" ]; then
8138         res=`flvr_cnt_mdt2ost $flavor`
8139     elif [ $dir == "all2ost" ]; then
8140         res1=`flvr_cnt_mdt2ost $flavor`
8141         res2=`flvr_cnt_cli2ost $flavor`
8142         res=$((res1 + res2))
8143     elif [ $dir == "all2mdt" ]; then
8144         res1=`flvr_cnt_mdt2mdt $flavor`
8145         res2=`flvr_cnt_cli2mdt $flavor`
8146         res=$((res1 + res2))
8147     elif [ $dir == "all2all" ]; then
8148         res1=`flvr_cnt_mdt2ost $flavor`
8149         res2=`flvr_cnt_cli2ost $flavor`
8150         res3=`flvr_cnt_mdt2mdt $flavor`
8151         res4=`flvr_cnt_cli2mdt $flavor`
8152         res=$((res1 + res2 + res3 + res4))
8153     fi
8154
8155     echo $res
8156 }
8157
8158 wait_flavor()
8159 {
8160         local dir=$1        # from to
8161         local flavor=$2     # flavor expected
8162         local expect=${3:-$(calc_connection_cnt $dir)} # number expected
8163         local WAITFLAVOR_MAX=20 # how many retries before abort?
8164
8165         local res=0
8166         for ((i = 0; i < $WAITFLAVOR_MAX; i++)); do
8167                 echo -n "checking $dir..."
8168                 res=$(do_check_flavor $dir $flavor)
8169                 echo "found $res/$expect $flavor connections"
8170                 [ $res -ge $expect ] && return 0
8171                 sleep 4
8172         done
8173
8174         echo "Error checking $flavor of $dir: expect $expect, actual $res"
8175 #       echo "Dumping additional logs for SK debug.."
8176         do_nodes $(comma_list $(all_server_nodes)) "keyctl show"
8177         if $dump; then
8178                 gather_logs $(comma_list $(nodes_list))
8179         fi
8180         return 1
8181 }
8182
8183 restore_to_default_flavor()
8184 {
8185         local proc="mgs.MGS.live.$FSNAME"
8186
8187         echo "restoring to default flavor..."
8188
8189         local nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8190                 grep ".srpc.flavor" | wc -l)
8191
8192         # remove all existing rules if any
8193         if [ $nrule -ne 0 ]; then
8194                 echo "$nrule existing rules"
8195                 for rule in $(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8196                     grep ".srpc.flavor."); do
8197                         echo "remove rule: $rule"
8198                         spec=`echo $rule | awk -F = '{print $1}'`
8199                         do_facet mgs "$LCTL conf_param -d $spec"
8200                 done
8201         fi
8202
8203         # verify no rules left
8204         nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8205                 grep ".srpc.flavor." | wc -l)
8206         [ $nrule -ne 0 ] && error "still $nrule rules left"
8207
8208         # wait for default flavor to be applied
8209         if $GSS_SK; then
8210                 if $SK_S2S; then
8211                         set_rule $FSNAME any any $SK_FLAVOR
8212                         wait_flavor all2all $SK_FLAVOR
8213                 else
8214                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
8215                         set_rule $FSNAME any cli2ost $SK_FLAVOR
8216                         wait_flavor cli2mdt $SK_FLAVOR
8217                         wait_flavor cli2ost $SK_FLAVOR
8218                 fi
8219                 echo "GSS_SK now at default flavor: $SK_FLAVOR"
8220         else
8221                 wait_flavor all2all null
8222         fi
8223 }
8224
8225 set_flavor_all()
8226 {
8227         local flavor=${1:-null}
8228
8229         echo "setting all flavor to $flavor"
8230
8231         # FIXME need parameter to this fn
8232         # and remove global vars
8233         local cnt_all2all=$(calc_connection_cnt all2all)
8234
8235         local res=$(do_check_flavor all2all $flavor)
8236         if [ $res -eq $cnt_all2all ]; then
8237                 echo "already have total $res $flavor connections"
8238                 return
8239         fi
8240
8241         echo "found $res $flavor out of total $cnt_all2all connections"
8242         restore_to_default_flavor
8243
8244         [[ $flavor = null ]] && return 0
8245
8246         if $GSS_SK && [ $flavor != "null" ]; then
8247                 if $SK_S2S; then
8248                         set_rule $FSNAME any any $flavor
8249                         wait_flavor all2all $flavor
8250                 else
8251                         set_rule $FSNAME any cli2mdt $flavor
8252                         set_rule $FSNAME any cli2ost $flavor
8253                         set_rule $FSNAME any mdt2ost null
8254                         set_rule $FSNAME any mdt2mdt null
8255                         wait_flavor cli2mdt $flavor
8256                         wait_flavor cli2ost $flavor
8257                 fi
8258                 echo "GSS_SK now at flavor: $flavor"
8259         else
8260                 set_rule $FSNAME any any $flavor
8261                 wait_flavor all2all $flavor
8262         fi
8263 }
8264
8265
8266 check_logdir() {
8267     local dir=$1
8268     # Checking for shared logdir
8269     if [ ! -d $dir ]; then
8270         # Not found. Create local logdir
8271         mkdir -p $dir
8272     else
8273         touch $dir/check_file.$(hostname -s)
8274     fi
8275     return 0
8276 }
8277
8278 check_write_access() {
8279         local dir=$1
8280         local list=${2:-$(comma_list $(nodes_list))}
8281         local node
8282         local file
8283
8284         for node in ${list//,/ }; do
8285                 file=$dir/check_file.$(short_nodename $node)
8286                 if [[ ! -f "$file" ]]; then
8287                         # Logdir not accessible/writable from this node.
8288                         return 1
8289                 fi
8290                 rm -f $file || return 1
8291         done
8292         return 0
8293 }
8294
8295 init_logging() {
8296         [[ -n $YAML_LOG ]] && return
8297         local save_umask=$(umask)
8298         umask 0000
8299
8300         export YAML_LOG=${LOGDIR}/results.yml
8301         mkdir -p $LOGDIR
8302         init_clients_lists
8303
8304         # If the yaml log already exists then we will just append to it
8305         if [ ! -f $YAML_LOG ]; then
8306                 if check_shared_dir $LOGDIR; then
8307                         touch $LOGDIR/shared
8308                         echo "Logging to shared log directory: $LOGDIR"
8309                 else
8310                         echo "Logging to local directory: $LOGDIR"
8311                 fi
8312
8313                 yml_nodes_file $LOGDIR >> $YAML_LOG
8314                 yml_results_file >> $YAML_LOG
8315         fi
8316
8317         umask $save_umask
8318
8319         # If modules are not yet loaded then older "lctl lustre_build_version"
8320         # will fail.  Use lctl build version instead.
8321         log "Client: $($LCTL lustre_build_version)"
8322         log "MDS: $(do_facet $SINGLEMDS $LCTL lustre_build_version 2>/dev/null||
8323                     do_facet $SINGLEMDS $LCTL --version)"
8324         log "OSS: $(do_facet ost1 $LCTL lustre_build_version 2> /dev/null ||
8325                     do_facet ost1 $LCTL --version)"
8326 }
8327
8328 log_test() {
8329     yml_log_test $1 >> $YAML_LOG
8330 }
8331
8332 log_test_status() {
8333      yml_log_test_status $@ >> $YAML_LOG
8334 }
8335
8336 log_sub_test_begin() {
8337     yml_log_sub_test_begin "$@" >> $YAML_LOG
8338 }
8339
8340 log_sub_test_end() {
8341     yml_log_sub_test_end "$@" >> $YAML_LOG
8342 }
8343
8344 run_llverdev()
8345 {
8346         local dev=$1
8347         local llverdev_opts=$2
8348         local devname=$(basename $1)
8349         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
8350         # loop devices aren't in /proc/partitions
8351         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
8352
8353         size=$(($size / 1024 / 1024)) # Gb
8354
8355         local partial_arg=""
8356         # Run in partial (fast) mode if the size
8357         # of a partition > 1 GB
8358         [ $size -gt 1 ] && partial_arg="-p"
8359
8360         llverdev --force $partial_arg $llverdev_opts $dev
8361 }
8362
8363 run_llverfs()
8364 {
8365         local dir=$1
8366         local llverfs_opts=$2
8367         local use_partial_arg=$3
8368         local partial_arg=""
8369         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
8370
8371         # Run in partial (fast) mode if the size
8372         # of a partition > 1 GB
8373         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
8374
8375         llverfs $partial_arg $llverfs_opts $dir
8376 }
8377
8378 #Remove objects from OST
8379 remove_ost_objects() {
8380         local facet=$1
8381         local ostdev=$2
8382         local group=$3
8383         shift 3
8384         local objids="$@"
8385         local mntpt=$(facet_mntpt $facet)
8386         local opts=$OST_MOUNT_OPTS
8387         local i
8388         local rc
8389
8390         echo "removing objects from $ostdev on $facet: $objids"
8391         if ! test -b $ostdev; then
8392                 opts=$(csa_add "$opts" -o loop)
8393         fi
8394         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
8395                 return $?
8396         rc=0
8397         for i in $objids; do
8398                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
8399         done
8400         umount -f $mntpt || return $?
8401         return $rc
8402 }
8403
8404 #Remove files from MDT
8405 remove_mdt_files() {
8406         local facet=$1
8407         local mdtdev=$2
8408         shift 2
8409         local files="$@"
8410         local mntpt=$(facet_mntpt $facet)
8411         local opts=$MDS_MOUNT_OPTS
8412
8413         echo "removing files from $mdtdev on $facet: $files"
8414         if [ $(facet_fstype $facet) == ldiskfs ] &&
8415            ! do_facet $facet test -b $mdtdev; then
8416                 opts=$(csa_add "$opts" -o loop)
8417         fi
8418         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8419                 return $?
8420         rc=0
8421         for f in $files; do
8422                 rm $mntpt/ROOT/$f || { rc=$?; break; }
8423         done
8424         umount -f $mntpt || return $?
8425         return $rc
8426 }
8427
8428 duplicate_mdt_files() {
8429         local facet=$1
8430         local mdtdev=$2
8431         shift 2
8432         local files="$@"
8433         local mntpt=$(facet_mntpt $facet)
8434         local opts=$MDS_MOUNT_OPTS
8435
8436         echo "duplicating files on $mdtdev on $facet: $files"
8437         mkdir -p $mntpt || return $?
8438         if [ $(facet_fstype $facet) == ldiskfs ] &&
8439            ! do_facet $facet test -b $mdtdev; then
8440                 opts=$(csa_add "$opts" -o loop)
8441         fi
8442         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8443                 return $?
8444
8445     do_umount() {
8446         trap 0
8447         popd > /dev/null
8448         rm $tmp
8449         umount -f $mntpt
8450     }
8451     trap do_umount EXIT
8452
8453     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
8454     pushd $mntpt/ROOT > /dev/null || return $?
8455     rc=0
8456     for f in $files; do
8457         touch $f.bad || return $?
8458         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
8459         rc=${PIPESTATUS[0]}
8460         [ $rc -eq 0 ] || return $rc
8461         setfattr --restore $tmp || return $?
8462     done
8463     do_umount
8464 }
8465
8466 run_sgpdd () {
8467     local devs=${1//,/ }
8468     shift
8469     local params=$@
8470     local rslt=$TMP/sgpdd_survey
8471
8472     # sgpdd-survey cleanups ${rslt}.* files
8473
8474     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
8475     echo + $cmd
8476     eval $cmd
8477     cat ${rslt}.detail
8478 }
8479
8480 # returns the canonical name for an ldiskfs device
8481 ldiskfs_canon() {
8482         local dev="$1"
8483         local facet="$2"
8484
8485         do_facet $facet "dv=\\\$($LCTL get_param -n $dev);
8486                          if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
8487                                 echo dm-\\\${foo##*:};
8488                          else
8489                                 name=\\\$(basename \\\$dv);
8490                                 if [[ \\\$name = *flakey* ]]; then
8491                                         name=\\\$(lsblk -o NAME,KNAME |
8492                                                 awk /\\\$name/'{print \\\$NF}');
8493                                 fi;
8494                                 echo \\\$name;
8495                          fi;"
8496 }
8497
8498 is_sanity_benchmark() {
8499     local benchmarks="dbench bonnie iozone fsx"
8500     local suite=$1
8501     for b in $benchmarks; do
8502         if [ "$b" == "$suite" ]; then
8503             return 0
8504         fi
8505     done
8506     return 1
8507 }
8508
8509 min_ost_size () {
8510         $LFS df | grep OST | awk '{print $4}' | sort -un | head -1
8511 }
8512
8513 #
8514 # Get the available size (KB) of a given obd target.
8515 #
8516 get_obd_size() {
8517         local facet=$1
8518         local obd=$2
8519         local size
8520
8521         [[ $facet != client ]] || return 0
8522
8523         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
8524         echo -n $size
8525 }
8526
8527 #
8528 # Get the page size (bytes) on a given facet node.
8529 # The local client page_size is directly available in PAGE_SIZE.
8530 #
8531 get_page_size() {
8532         local facet=$1
8533         local page_size=$(getconf PAGE_SIZE 2>/dev/null)
8534
8535         [ -z "$CLIENTONLY" -a "$facet" != "client" ] &&
8536                 page_size=$(do_facet $facet getconf PAGE_SIZE)
8537         echo -n ${page_size:-4096}
8538 }
8539
8540 #
8541 # Get the block count of the filesystem.
8542 #
8543 get_block_count() {
8544         local facet=$1
8545         local device=$2
8546         local count
8547
8548         [ -z "$CLIENTONLY" ] && count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8549                 awk '/^Block count:/ {print $3}')
8550         echo -n ${count:-0}
8551 }
8552
8553 # Get the block size of the filesystem.
8554 get_block_size() {
8555         local facet=$1
8556         local device=$2
8557         local size
8558
8559         [ -z "$CLIENTONLY" ] && size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8560                 awk '/^Block size:/ {print $3}')
8561         echo -n ${size:-0}
8562 }
8563
8564 # Check whether the "ea_inode" feature is enabled or not, to allow
8565 # ldiskfs xattrs over one block in size.  Allow both the historical
8566 # Lustre feature name (large_xattr) and the upstream name (ea_inode).
8567 large_xattr_enabled() {
8568         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 1
8569
8570         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8571
8572         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
8573                 grep -E -q '(ea_inode|large_xattr)'"
8574         return ${PIPESTATUS[0]}
8575 }
8576
8577 # Get the maximum xattr size supported by the filesystem.
8578 max_xattr_size() {
8579         $LCTL get_param -n llite.*.max_easize
8580 }
8581
8582 # Dump the value of the named xattr from a file.
8583 get_xattr_value() {
8584     local xattr_name=$1
8585     local file=$2
8586
8587     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
8588 }
8589
8590 # Generate a string with size of $size bytes.
8591 generate_string() {
8592     local size=${1:-1024} # in bytes
8593
8594     echo "$(head -c $size < /dev/zero | tr '\0' y)"
8595 }
8596
8597 reformat_external_journal() {
8598         local facet=$1
8599         local var
8600
8601         var=${facet}_JRN
8602         if [ -n "${!var}" ]; then
8603                 local rcmd="do_facet $facet"
8604
8605                 echo "reformat external journal on $facet:${!var}"
8606                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
8607         fi
8608 }
8609
8610 # MDT file-level backup/restore
8611 mds_backup_restore() {
8612         local facet=$1
8613         local igif=$2
8614         local devname=$(mdsdevname $(facet_number $facet))
8615         local mntpt=$(facet_mntpt brpt)
8616         local rcmd="do_facet $facet"
8617         local metaea=${TMP}/backup_restore.ea
8618         local metadata=${TMP}/backup_restore.tgz
8619         local opts=${MDS_MOUNT_FS_OPTS}
8620         local svc=${facet}_svc
8621
8622         if ! ${rcmd} test -b ${devname}; then
8623                 opts=$(csa_add "$opts" -o loop)
8624         fi
8625
8626         echo "file-level backup/restore on $facet:${devname}"
8627
8628         # step 1: build mount point
8629         ${rcmd} mkdir -p $mntpt
8630         # step 2: cleanup old backup
8631         ${rcmd} rm -f $metaea $metadata
8632         # step 3: mount dev
8633         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8634         if [ ! -z $igif ]; then
8635                 # step 3.5: rm .lustre
8636                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
8637         fi
8638         # step 4: backup metaea
8639         echo "backup EA"
8640         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
8641                 return 2
8642         # step 5: backup metadata
8643         echo "backup data"
8644         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
8645         # step 6: umount
8646         ${rcmd} $UMOUNT $mntpt || return 4
8647         # step 8: reformat dev
8648         echo "reformat new device"
8649         format_mdt $(facet_number $facet)
8650         # step 9: mount dev
8651         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
8652         # step 10: restore metadata
8653         echo "restore data"
8654         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
8655         # step 11: restore metaea
8656         echo "restore EA"
8657         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
8658         # step 12: remove recovery logs
8659         echo "remove recovery logs"
8660         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
8661         # step 13: umount dev
8662         ${rcmd} $UMOUNT $mntpt || return 10
8663         # step 14: cleanup tmp backup
8664         ${rcmd} rm -f $metaea $metadata
8665         # step 15: reset device label - it's not virgin on
8666         ${rcmd} e2label $devname ${!svc}
8667 }
8668
8669 # remove OI files
8670 mds_remove_ois() {
8671         local facet=$1
8672         local idx=$2
8673         local devname=$(mdsdevname $(facet_number $facet))
8674         local mntpt=$(facet_mntpt brpt)
8675         local rcmd="do_facet $facet"
8676         local opts=${MDS_MOUNT_FS_OPTS}
8677
8678         if ! ${rcmd} test -b ${devname}; then
8679                 opts=$(csa_add "$opts" -o loop)
8680         fi
8681
8682         echo "removing OI files on $facet: idx=${idx}"
8683
8684         # step 1: build mount point
8685         ${rcmd} mkdir -p $mntpt
8686         # step 2: mount dev
8687         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8688         if [ -z $idx ]; then
8689                 # step 3: remove all OI files
8690                 ${rcmd} rm -fv $mntpt/oi.16*
8691         elif [ $idx -lt 2 ]; then
8692                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
8693         else
8694                 local i
8695
8696                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
8697                 for ((i=${idx}; i<64; i=$((i * idx)))); do
8698                         ${rcmd} rm -fv $mntpt/oi.16.${i}
8699                 done
8700         fi
8701         # step 4: umount
8702         ${rcmd} $UMOUNT $mntpt || return 2
8703         # OI files will be recreated when mounted as lustre next time.
8704 }
8705
8706 # generate maloo upload-able log file name
8707 # \param logname specify unique part of file name
8708 generate_logname() {
8709         local logname=${1:-"default_logname"}
8710
8711         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
8712 }
8713
8714 # make directory on different MDTs
8715 test_mkdir() {
8716         local path
8717         local p_option
8718         local dirstripe_count=${DIRSTRIPE_COUNT:-"2"}
8719         local dirstripe_index=${DIRSTRIPE_INDEX:-$((base % $MDSCOUNT))}
8720         local OPTIND=1
8721
8722         while getopts "c:i:p" opt; do
8723                 case $opt in
8724                         c) dirstripe_count=$OPTARG;;
8725                         i) dirstripe_index=$OPTARG;;
8726                         p) p_option="-p";;
8727                         \?) error "only support -i -c -p";;
8728                 esac
8729         done
8730
8731         shift $((OPTIND - 1))
8732         [ $# -eq 1 ] || error "Only creating single directory is supported"
8733         path="$*"
8734
8735         if [ "$p_option" == "-p" ]; then
8736                 local parent=$(dirname $path)
8737
8738                 [ -d $path ] && return 0
8739                 if [ ! -d ${parent} ]; then
8740                         mkdir -p ${parent} ||
8741                                 error "mkdir parent '$parent' failed"
8742                 fi
8743         fi
8744
8745         if [ $MDSCOUNT -le 1 ]; then
8746                 mkdir $path || error "mkdir '$path' failed"
8747         else
8748                 local mdt_index
8749
8750                 if [ $dirstripe_index -eq -1 ]; then
8751                         mdt_index=$((base % MDSCOUNT))
8752                 else
8753                         mdt_index=$dirstripe_index
8754                 fi
8755
8756                 if (($MDS1_VERSION >= $(version_code 2.8.0))); then
8757                         if [ $dirstripe_count -eq -1 ]; then
8758                                 dirstripe_count=$((RANDOM % MDSCOUNT + 1))
8759                         fi
8760                 else
8761                         dirstripe_count=1
8762                 fi
8763
8764                 echo "striped dir -i$mdt_index -c$dirstripe_count $path"
8765                 $LFS mkdir -i$mdt_index -c$dirstripe_count $path ||
8766                         error "mkdir -i $mdt_index -c$dirstripe_count $path failed"
8767         fi
8768 }
8769
8770 # free_fd: find the smallest and not in use file descriptor [above @last_fd]
8771 #
8772 # If called many times, passing @last_fd will avoid repeated searching
8773 # already-open FDs repeatedly if we know they are still in use.
8774 #
8775 # usage: free_fd [last_fd]
8776 free_fd()
8777 {
8778         local max_fd=$(ulimit -n)
8779         local fd=$((${1:-2} + 1))
8780
8781         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
8782                 ((++fd))
8783         done
8784         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
8785         echo $fd
8786 }
8787
8788 check_mount_and_prep()
8789 {
8790         is_mounted $MOUNT || setupall
8791
8792         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
8793         mkdir $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
8794         for idx in $(seq $MDSCOUNT); do
8795                 local name="MDT$(printf '%04x' $((idx - 1)))"
8796                 rm -rf $MOUNT/.lustre/lost+found/$name/*
8797         done
8798 }
8799
8800 # calcule how many ost-objects to be created.
8801 precreated_ost_obj_count()
8802 {
8803         local mdt_idx=$1
8804         local ost_idx=$2
8805         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
8806         local ost_name="OST$(printf '%04x' $ost_idx)"
8807         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
8808         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8809                         osp.$proc_path.prealloc_last_id)
8810         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8811                         osp.$proc_path.prealloc_next_id)
8812         echo $((last_id - next_id + 1))
8813 }
8814
8815 check_file_in_pool()
8816 {
8817         local file=$1
8818         local pool=$2
8819         local tlist="$3"
8820         local res=$($LFS getstripe $file | grep 0x | cut -f2)
8821         for i in $res
8822         do
8823                 for t in $tlist ; do
8824                         [ "$i" -eq "$t" ] && continue 2
8825                 done
8826
8827                 echo "pool list: $tlist"
8828                 echo "striping: $res"
8829                 error_noexit "$file not allocated in $pool"
8830                 return 1
8831         done
8832         return 0
8833 }
8834
8835 pool_add() {
8836         echo "Creating new pool"
8837         local pool=$1
8838
8839         create_pool $FSNAME.$pool ||
8840                 { error_noexit "No pool created, result code $?"; return 1; }
8841         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
8842                 { error_noexit "$pool not in lfs pool_list"; return 2; }
8843 }
8844
8845 pool_add_targets() {
8846         echo "Adding targets to pool"
8847         local pool=$1
8848         local first=$2
8849         local last=$3
8850         local step=${4:-1}
8851
8852         if [ -z $last ]; then
8853                 local list=$first
8854         else
8855                 local list=$(seq $first $step $last)
8856         fi
8857
8858         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8859         do_facet mgs $LCTL pool_add \
8860                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8861
8862         # wait for OSTs to be added to the pool
8863         for mds_id in $(seq $MDSCOUNT); do
8864                 local mdt_id=$((mds_id-1))
8865                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8866                 wait_update_facet mds$mds_id \
8867                         "lctl get_param -n lod.$lodname.pools.$pool |
8868                                 sort -u | tr '\n' ' ' " "$t" || {
8869                         error_noexit "mds$mds_id: Add to pool failed"
8870                         return 3
8871                 }
8872         done
8873         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8874                         | sort -u | tr '\n' ' ' " "$t" || {
8875                 error_noexit "Add to pool failed"
8876                 return 1
8877         }
8878         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8879         local addcount=$(((last - first) / step + 1))
8880         [ $lfscount -eq $addcount ] || {
8881                 error_noexit "lfs pool_list bad ost count" \
8882                                                 "$lfscount != $addcount"
8883                 return 2
8884         }
8885 }
8886
8887 pool_set_dir() {
8888         local pool=$1
8889         local tdir=$2
8890         echo "Setting pool on directory $tdir"
8891
8892         $LFS setstripe -c 2 -p $pool $tdir && return 0
8893
8894         error_noexit "Cannot set pool $pool to $tdir"
8895         return 1
8896 }
8897
8898 pool_check_dir() {
8899         local pool=$1
8900         local tdir=$2
8901         echo "Checking pool on directory $tdir"
8902
8903         local res=$($LFS getstripe --pool $tdir | sed "s/\s*$//")
8904         [ "$res" = "$pool" ] && return 0
8905
8906         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8907         return 1
8908 }
8909
8910 pool_dir_rel_path() {
8911         echo "Testing relative path works well"
8912         local pool=$1
8913         local tdir=$2
8914         local root=$3
8915
8916         mkdir -p $root/$tdir/$tdir
8917         cd $root/$tdir
8918         pool_set_dir $pool $tdir          || return 1
8919         pool_set_dir $pool ./$tdir        || return 2
8920         pool_set_dir $pool ../$tdir       || return 3
8921         pool_set_dir $pool ../$tdir/$tdir || return 4
8922         rm -rf $tdir; cd - > /dev/null
8923 }
8924
8925 pool_alloc_files() {
8926         echo "Checking files allocation from directory pool"
8927         local pool=$1
8928         local tdir=$2
8929         local count=$3
8930         local tlist="$4"
8931
8932         local failed=0
8933         for i in $(seq -w 1 $count)
8934         do
8935                 local file=$tdir/file-$i
8936                 touch $file
8937                 check_file_in_pool $file $pool "$tlist" || \
8938                         failed=$((failed + 1))
8939         done
8940         [ "$failed" = 0 ] && return 0
8941
8942         error_noexit "$failed files not allocated in $pool"
8943         return 1
8944 }
8945
8946 pool_create_files() {
8947         echo "Creating files in pool"
8948         local pool=$1
8949         local tdir=$2
8950         local count=$3
8951         local tlist="$4"
8952
8953         mkdir -p $tdir
8954         local failed=0
8955         for i in $(seq -w 1 $count)
8956         do
8957                 local file=$tdir/spoo-$i
8958                 $LFS setstripe -p $pool $file
8959                 check_file_in_pool $file $pool "$tlist" || \
8960                         failed=$((failed + 1))
8961         done
8962         [ "$failed" = 0 ] && return 0
8963
8964         error_noexit "$failed files not allocated in $pool"
8965         return 1
8966 }
8967
8968 pool_lfs_df() {
8969         echo "Checking 'lfs df' output"
8970         local pool=$1
8971
8972         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
8973                         tr '\n' ' ')
8974         local res=$($LFS df --pool $FSNAME.$pool |
8975                         awk '{print $1}' |
8976                         grep "$FSNAME-OST" |
8977                         tr '\n' ' ')
8978         [ "$res" = "$t" ] && return 0
8979
8980         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
8981         return 1
8982 }
8983
8984 pool_file_rel_path() {
8985         echo "Creating files in a pool with relative pathname"
8986         local pool=$1
8987         local tdir=$2
8988
8989         mkdir -p $tdir ||
8990                 { error_noexit "unable to create $tdir"; return 1 ; }
8991         local file="/..$tdir/$tfile-1"
8992         $LFS setstripe -p $pool $file ||
8993                 { error_noexit "unable to create $file" ; return 2 ; }
8994
8995         cd $tdir
8996         $LFS setstripe -p $pool $tfile-2 || {
8997                 error_noexit "unable to create $tfile-2 in $tdir"
8998                 return 3
8999         }
9000 }
9001
9002 pool_remove_first_target() {
9003         echo "Removing first target from a pool"
9004         local pool=$1
9005
9006         local pname="lov.$FSNAME-*.pools.$pool"
9007         local t=$($LCTL get_param -n $pname | head -1)
9008         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9009         for mds_id in $(seq $MDSCOUNT); do
9010                 local mdt_id=$((mds_id-1))
9011                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9012                 wait_update_facet mds$mds_id \
9013                         "lctl get_param -n lod.$lodname.pools.$pool |
9014                                 grep $t" "" || {
9015                         error_noexit "mds$mds_id: $t not removed from" \
9016                         "$FSNAME.$pool"
9017                         return 2
9018                 }
9019         done
9020         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9021                 error_noexit "$t not removed from $FSNAME.$pool"
9022                 return 1
9023         }
9024 }
9025
9026 pool_remove_all_targets() {
9027         echo "Removing all targets from pool"
9028         local pool=$1
9029         local file=$2
9030         local pname="lov.$FSNAME-*.pools.$pool"
9031         for t in $($LCTL get_param -n $pname | sort -u)
9032         do
9033                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9034         done
9035         for mds_id in $(seq $MDSCOUNT); do
9036                 local mdt_id=$((mds_id-1))
9037                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9038                 wait_update_facet mds$mds_id "lctl get_param -n \
9039                         lod.$lodname.pools.$pool" "" || {
9040                         error_noexit "mds$mds_id: Pool $pool not drained"
9041                         return 4
9042                 }
9043         done
9044         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9045                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9046                 return 1
9047         }
9048         # striping on an empty/nonexistant pool should fall back
9049         # to "pool of everything"
9050         touch $file || {
9051                 error_noexit "failed to use fallback striping for empty pool"
9052                 return 2
9053         }
9054         # setstripe on an empty pool should fail
9055         $LFS setstripe -p $pool $file 2>/dev/null && {
9056                 error_noexit "expected failure when creating file" \
9057                                                         "with empty pool"
9058                 return 3
9059         }
9060         return 0
9061 }
9062
9063 pool_remove() {
9064         echo "Destroying pool"
9065         local pool=$1
9066         local file=$2
9067
9068         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9069
9070         sleep 2
9071         # striping on an empty/nonexistant pool should fall back
9072         # to "pool of everything"
9073         touch $file || {
9074                 error_noexit "failed to use fallback striping for missing pool"
9075                 return 1
9076         }
9077         # setstripe on an empty pool should fail
9078         $LFS setstripe -p $pool $file 2>/dev/null && {
9079                 error_noexit "expected failure when creating file" \
9080                                                         "with missing pool"
9081                 return 2
9082         }
9083
9084         # get param should return err once pool is gone
9085         if wait_update $HOSTNAME "lctl get_param -n \
9086                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9087         then
9088                 remove_pool_from_list $FSNAME.$pool
9089                 return 0
9090         fi
9091         error_noexit "Pool $FSNAME.$pool is not destroyed"
9092         return 3
9093 }
9094
9095 # Get and check the actual stripe count of one file.
9096 # Usage: check_stripe_count <file> <expected_stripe_count>
9097 check_stripe_count() {
9098         local file=$1
9099         local expected=$2
9100         local actual
9101
9102         [[ -z "$file" || -z "$expected" ]] &&
9103                 error "check_stripe_count: invalid argument"
9104
9105         local cmd="$LFS getstripe -c $file"
9106         actual=$($cmd) || error "$cmd failed"
9107         actual=${actual%% *}
9108
9109         if [[ $actual -ne $expected ]]; then
9110                 [[ $expected -eq -1 ]] || { $LFS getstripe $file;
9111                         error "$cmd not expected ($expected): found $actual"; }
9112                 [[ $actual -eq $OSTCOUNT ]] || { $LFS getstripe $file;
9113                         error "$cmd not OST count ($OSTCOUNT): found $actual"; }
9114         fi
9115 }
9116
9117 # Get and check the actual list of OST indices on one file.
9118 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
9119 check_obdidx() {
9120         local file=$1
9121         local expected=$2
9122         local obdidx
9123
9124         [[ -z "$file" || -z "$expected" ]] &&
9125                 error "check_obdidx: invalid argument!"
9126
9127         obdidx=$(comma_list $($LFS getstripe $file | grep -A $OSTCOUNT obdidx |
9128                               grep -v obdidx | awk '{print $1}' | xargs))
9129
9130         [[ $obdidx = $expected ]] ||
9131                 error "list of OST indices on $file is $obdidx," \
9132                       "should be $expected"
9133 }
9134
9135 # Get and check the actual OST index of the first stripe on one file.
9136 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
9137 check_start_ost_idx() {
9138         local file=$1
9139         local expected=$2
9140         local start_ost_idx
9141
9142         [[ -z "$file" || -z "$expected" ]] &&
9143                 error "check_start_ost_idx: invalid argument!"
9144
9145         start_ost_idx=$($LFS getstripe $file | grep -A 1 obdidx |
9146                          grep -v obdidx | awk '{print $1}')
9147
9148         [[ $start_ost_idx = $expected ]] ||
9149                 error "OST index of the first stripe on $file is" \
9150                       "$start_ost_idx, should be $expected"
9151 }
9152
9153 killall_process () {
9154         local clients=${1:-$(hostname)}
9155         local name=$2
9156         local signal=$3
9157         local rc=0
9158
9159         do_nodes $clients "killall $signal $name"
9160 }
9161
9162 lsnapshot_create()
9163 {
9164         do_facet mgs "$LCTL snapshot_create -F $FSNAME $*"
9165 }
9166
9167 lsnapshot_destroy()
9168 {
9169         do_facet mgs "$LCTL snapshot_destroy -F $FSNAME $*"
9170 }
9171
9172 lsnapshot_modify()
9173 {
9174         do_facet mgs "$LCTL snapshot_modify -F $FSNAME $*"
9175 }
9176
9177 lsnapshot_list()
9178 {
9179         do_facet mgs "$LCTL snapshot_list -F $FSNAME $*"
9180 }
9181
9182 lsnapshot_mount()
9183 {
9184         do_facet mgs "$LCTL snapshot_mount -F $FSNAME $*"
9185 }
9186
9187 lsnapshot_umount()
9188 {
9189         do_facet mgs "$LCTL snapshot_umount -F $FSNAME $*"
9190 }
9191
9192 lss_err()
9193 {
9194         local msg=$1
9195
9196         do_facet mgs "cat $LSNAPSHOT_LOG"
9197         error $msg
9198 }
9199
9200 lss_cleanup()
9201 {
9202         echo "Cleaning test environment ..."
9203
9204         # Every lsnapshot command takes exclusive lock with others,
9205         # so can NOT destroy the snapshot during list with 'xargs'.
9206         while true; do
9207                 local ssname=$(lsnapshot_list | grep snapshot_name |
9208                         grep lss_ | awk '{ print $2 }' | head -n 1)
9209                 [ -z "$ssname" ] && break
9210
9211                 lsnapshot_destroy -n $ssname -f ||
9212                         lss_err "Fail to destroy $ssname by force"
9213         done
9214 }
9215
9216 lss_gen_conf_one()
9217 {
9218         local facet=$1
9219         local role=$2
9220         local idx=$3
9221
9222         local host=$(facet_active_host $facet)
9223         local dir=$(dirname $(facet_vdevice $facet))
9224         local pool=$(zpool_name $facet)
9225         local lfsname=$(zfs_local_fsname $facet)
9226         local label=${FSNAME}-${role}$(printf '%04x' $idx)
9227
9228         do_facet mgs \
9229                 "echo '$host - $label zfs:${dir}/${pool}/${lfsname} - -' >> \
9230                 $LSNAPSHOT_CONF"
9231 }
9232
9233 lss_gen_conf()
9234 {
9235         do_facet mgs "rm -f $LSNAPSHOT_CONF"
9236         echo "Generating $LSNAPSHOT_CONF on MGS ..."
9237
9238         if ! combined_mgs_mds ; then
9239                 [ $(facet_fstype mgs) != zfs ] &&
9240                         skip "Lustre snapshot 1 only works for ZFS backend"
9241
9242                 local host=$(facet_active_host mgs)
9243                 local dir=$(dirname $(facet_vdevice mgs))
9244                 local pool=$(zpool_name mgs)
9245                 local lfsname=$(zfs_local_fsname mgs)
9246
9247                 do_facet mgs \
9248                         "echo '$host - MGS zfs:${dir}/${pool}/${lfsname} - -' \
9249                         >> $LSNAPSHOT_CONF" || lss_err "generate lss conf (mgs)"
9250         fi
9251
9252         for num in `seq $MDSCOUNT`; do
9253                 [ $(facet_fstype mds$num) != zfs ] &&
9254                         skip "Lustre snapshot 1 only works for ZFS backend"
9255
9256                 lss_gen_conf_one mds$num MDT $((num - 1)) ||
9257                         lss_err "generate lss conf (mds$num)"
9258         done
9259
9260         for num in `seq $OSTCOUNT`; do
9261                 [ $(facet_fstype ost$num) != zfs ] &&
9262                         skip "Lustre snapshot 1 only works for ZFS backend"
9263
9264                 lss_gen_conf_one ost$num OST $((num - 1)) ||
9265                         lss_err "generate lss conf (ost$num)"
9266         done
9267
9268         do_facet mgs "cat $LSNAPSHOT_CONF"
9269 }
9270
9271 # Parse 'lfs getstripe -d <path_with_dir_name>' for non-composite dir
9272 parse_plain_dir_param()
9273 {
9274         local invalues=($1)
9275         local param=""
9276
9277         if [[ ${invalues[0]} =~ "stripe_count:" ]]; then
9278                 param="-c ${invalues[1]}"
9279         fi
9280         if [[ ${invalues[2]} =~ "stripe_size:" ]]; then
9281                 param="$param -S ${invalues[3]}"
9282         fi
9283         if [[ ${invalues[4]} =~ "pattern:" ]]; then
9284                 if [[ ${invalues[5]} =~ "stripe_offset:" ]]; then
9285                         param="$param -i ${invalues[6]}"
9286                 else
9287                         param="$param -L ${invalues[5]} -i ${invalues[7]}"
9288                 fi
9289         elif [[ ${invalues[4]} =~ "stripe_offset:" ]]; then
9290                 param="$param -i ${invalues[5]}"
9291         fi
9292         echo "$param"
9293 }
9294
9295 parse_plain_param()
9296 {
9297         local line=$1
9298         local val=$(awk '{print $2}' <<< $line)
9299
9300         if [[ $line =~ ^"lmm_stripe_count:" ]]; then
9301                 echo "-c $val"
9302         elif [[ $line =~ ^"lmm_stripe_size:" ]]; then
9303                 echo "-S $val"
9304         elif [[ $line =~ ^"lmm_stripe_offset:" ]]; then
9305                 echo "-i $val"
9306         elif [[ $line =~ ^"lmm_pattern:" ]]; then
9307                 echo "-L $val"
9308         fi
9309 }
9310
9311 parse_layout_param()
9312 {
9313         local mode=""
9314         local val=""
9315         local param=""
9316
9317         while read line; do
9318                 if [[ ! -z $line ]]; then
9319                         if [[ -z $mode ]]; then
9320                                 if [[ $line =~ ^"stripe_count:" ]]; then
9321                                         mode="plain_dir"
9322                                 elif [[ $line =~ ^"lmm_stripe_count:" ]]; then
9323                                         mode="plain_file"
9324                                 elif [[ $line =~ ^"lcm_layout_gen:" ]]; then
9325                                         mode="pfl"
9326                                 fi
9327                         fi
9328
9329                         if [[ $mode = "plain_dir" ]]; then
9330                                 param=$(parse_plain_dir_param "$line")
9331                         elif [[ $mode = "plain_file" ]]; then
9332                                 val=$(parse_plain_param "$line")
9333                                 [[ ! -z $val ]] && param="$param $val"
9334                         elif [[ $mode = "pfl" ]]; then
9335                                 val=$(echo $line | awk '{print $2}')
9336                                 if [[ $line =~ ^"lcme_extent.e_end:" ]]; then
9337                                         if [[ $val = "EOF" ]]; then
9338                                                 param="$param -E -1"
9339                                         else
9340                                                 param="$param -E $val"
9341                                         fi
9342                                 elif [[ $line =~ ^"stripe_count:" ]]; then
9343                                         # pfl dir
9344                                         val=$(parse_plain_dir_param "$line")
9345                                         param="$param $val"
9346                                 else
9347                                         #pfl file
9348                                         val=$(parse_plain_param "$line")
9349                                         [[ ! -z $val ]] && param="$param $val"
9350                                 fi
9351                         fi
9352                 fi
9353         done
9354         echo "$param"
9355 }
9356
9357 get_layout_param()
9358 {
9359         local param=$($LFS getstripe -d $1 | parse_layout_param)
9360         echo "$param"
9361 }
9362
9363 lfsck_verify_pfid()
9364 {
9365         local f
9366         local rc=0
9367
9368         # Cancel locks before setting lfsck_verify_pfid so that errors are more
9369         # controllable
9370         cancel_lru_locks mdc
9371         cancel_lru_locks osc
9372
9373         # make sure PFID is set correctly for files
9374         do_nodes $(comma_list $(osts_nodes)) \
9375                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1"
9376
9377         for f in "$@"; do
9378                 cat $f &> /dev/nullA ||
9379                         { rc=$?; echo "verify $f failed"; break; }
9380         done
9381
9382         do_nodes $(comma_list $(osts_nodes)) \
9383                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=0"
9384         return $rc
9385 }
9386
9387 # check that clients "oscs" was evicted after "before"
9388 check_clients_evicted() {
9389         local before=$1
9390         shift
9391         local oscs=${@}
9392         local osc
9393         local rc=0
9394
9395         for osc in $oscs; do
9396                 ((rc++))
9397                 echo "Check state for $osc"
9398                 local evicted=$(do_facet client $LCTL get_param osc.$osc.state |
9399                         tail -n 3 | awk -F"[ [,]" \
9400                         '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
9401                 if (($? == 0)) && (($evicted > $before)); then
9402                         echo "$osc is evicted at $evicted"
9403                         ((rc--))
9404                 fi
9405         done
9406
9407         [ $rc -eq 0 ] || error "client not evicted from OST"
9408 }
9409
9410 # check that clients OSCS current_state is FULL
9411 check_clients_full() {
9412         local timeout=$1
9413         shift
9414         local oscs=${@}
9415
9416         for osc in $oscs; do
9417                 wait_update_facet client \
9418                         "lctl get_param -n osc.$osc.state |
9419                         grep 'current_state: FULL'" \
9420                         "current_state: FULL" $timeout
9421                 [ $? -eq 0 ] || error "$osc state is not FULL"
9422         done
9423 }
9424
9425 #Changelogs
9426 __changelog_deregister() {
9427         local facet=$1
9428         local mdt="$(facet_svc $facet)"
9429         local cl_user=$2
9430         local rc=0
9431
9432         # skip cleanup if no user registered for this MDT
9433         [ -z "$cl_user" ] && echo "$mdt: no changelog user" && return 0
9434         # user is no longer registered, skip cleanup
9435         changelog_users "$facet" | grep -q "$cl_user" ||
9436                 { echo "$mdt: changelog user '$cl_user' not found"; return 0; }
9437
9438         # From this point, if any operation fails, it is an error
9439         __changelog_clear $facet $cl_user 0 ||
9440                 error_noexit "$mdt: changelog_clear $cl_user 0 fail: $rc"
9441         do_facet $facet $LCTL --device $mdt changelog_deregister $cl_user ||
9442                 error_noexit "$mdt: changelog_deregister '$cl_user' fail: $rc"
9443 }
9444
9445 declare -Ax CL_USERS
9446 changelog_register() {
9447         for M in $(seq $MDSCOUNT); do
9448                 local facet=mds$M
9449                 local mdt="$(facet_svc $facet)"
9450                 local cl_mask
9451
9452                 cl_mask=$(do_facet $facet $LCTL get_param \
9453                              mdd.${mdt}.changelog_mask -n)
9454                 stack_trap "do_facet $facet $LCTL \
9455                         set_param mdd.$mdt.changelog_mask=\'$cl_mask\' -n" EXIT
9456                 do_facet $facet $LCTL set_param mdd.$mdt.changelog_mask=+hsm ||
9457                         error "$mdt: changelog_mask=+hsm failed: $?"
9458
9459                 local cl_user
9460                 cl_user=$(do_facet $facet \
9461                                   $LCTL --device $mdt changelog_register -n) ||
9462                         error "$mdt: register changelog user failed: $?"
9463                 stack_trap "__changelog_deregister $facet $cl_user" EXIT
9464
9465                 stack_trap "CL_USERS[$facet]='${CL_USERS[$facet]}'" EXIT
9466                 # Bash does not support nested arrays, but the format of a
9467                 # cl_user is constrained enough to use whitespaces as separators
9468                 CL_USERS[$facet]+="$cl_user "
9469         done
9470         echo "Registered $MDSCOUNT changelog users: '${CL_USERS[@]% }'"
9471 }
9472
9473 changelog_deregister() {
9474         local cl_user
9475         # bash assoc arrays do not guarantee to list keys in created order
9476         # so reorder to get same order than in changelog_register()
9477         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9478                           tr "\n" " ")
9479
9480         for facet in $cl_facets; do
9481                 for cl_user in ${CL_USERS[$facet]}; do
9482                         __changelog_deregister $facet $cl_user || return $?
9483                 done
9484                 unset CL_USERS[$facet]
9485         done
9486 }
9487
9488 changelog_users() {
9489         local facet=$1
9490         local service=$(facet_svc $facet)
9491
9492         do_facet $facet $LCTL get_param -n mdd.$service.changelog_users
9493 }
9494
9495 changelog_user_rec() {
9496         local facet=$1
9497         local cl_user=$2
9498         local service=$(facet_svc $facet)
9499
9500         changelog_users $facet | awk '$1 == "'$cl_user'" { print $2 }'
9501 }
9502
9503 changelog_chmask() {
9504         local mask=$1
9505
9506         do_nodes $(comma_list $(mdts_nodes)) \
9507                 $LCTL set_param mdd.*.changelog_mask="$mask"
9508 }
9509
9510 # usage: __changelog_clear FACET CL_USER [+]INDEX
9511 __changelog_clear()
9512 {
9513         local facet=$1
9514         local mdt="$(facet_svc $facet)"
9515         local cl_user=$2
9516         local -i rec
9517
9518         case "$3" in
9519         +*)
9520                 # Remove the leading '+'
9521                 rec=${3:1}
9522                 rec+=$(changelog_user_rec $facet $cl_user)
9523                 ;;
9524         *)
9525                 rec=$3
9526                 ;;
9527         esac
9528
9529         if [ $rec -eq 0 ]; then
9530                 echo "$mdt: clear the changelog for $cl_user of all records"
9531         else
9532                 echo "$mdt: clear the changelog for $cl_user to record #$rec"
9533         fi
9534         $LFS changelog_clear $mdt $cl_user $rec
9535 }
9536
9537 # usage: changelog_clear [+]INDEX
9538 #
9539 # If INDEX is prefixed with '+', increment every changelog user's record index
9540 # by INDEX. Otherwise, clear the changelog up to INDEX for every changelog
9541 # users.
9542 changelog_clear() {
9543         local rc
9544         # bash assoc arrays do not guarantee to list keys in created order
9545         # so reorder to get same order than in changelog_register()
9546         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9547                           tr "\n" " ")
9548
9549         for facet in $cl_facets; do
9550                 for cl_user in ${CL_USERS[$facet]}; do
9551                         __changelog_clear $facet $cl_user $1 || rc=${rc:-$?}
9552                 done
9553         done
9554
9555         return ${rc:-0}
9556 }
9557
9558 changelog_dump() {
9559         for M in $(seq $MDSCOUNT); do
9560                 local facet=mds$M
9561                 local mdt="$(facet_svc $facet)"
9562
9563                 $LFS changelog $mdt | sed -e 's/^/'$mdt'./'
9564         done
9565 }
9566
9567 changelog_extract_field() {
9568         local cltype=$1
9569         local file=$2
9570         local identifier=$3
9571
9572         changelog_dump | gawk "/$cltype.*$file$/ {
9573                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9574                 tail -1
9575 }
9576
9577 # Prints a changelog record produced by "lfs changelog" as an associative array
9578 #
9579 # Example:
9580 # $> changelog2array 16 01CREAT 10:28:46.968438800 2018.03.09 0x0 \
9581 #                    t=[0x200000401:0x10:0x0] j=touch.501 ef=0xf u=501:501 \
9582 #                    nid=0@lo p=[0x200000007:0x1:0x0] blob
9583 # ([index]='16' [type]='CREAT' [time]='10:28:46.968438800'
9584 #  [date]='2018.03.09' [flags]=0x0 ['target-fid']='[0x200000401:0x10:0x0]'
9585 #  ['jobid']='touch.501' ['extra-flags']='0x0f' [uid]='0' ['gid']='0'
9586 #  ['nid']='0@lo' ['parent-fid']='[0x200000007:0x1:0x0]')
9587 #
9588 # Note that the changelog record is not quoted
9589 # Also note that the line breaks in the output were only added for readability
9590 #
9591 # Typically, you want to eval the output of the command to fill an actual
9592 # associative array, like this:
9593 # $> eval declare -A changelog=$(changelog2array $entry)
9594 #
9595 # It can then be accessed like any bash associative array:
9596 # $> echo "${changelog[index]}" "${changelog[type]}" "${changelog[flags]}"
9597 # 16 CREAT 0x0
9598 # $> echo "${changelog[uid]}":"${changelog[gid]}"
9599 # 501:501
9600 #
9601 changelog2array()
9602 {
9603         # Start the array
9604         printf '('
9605
9606         # A changelog, as printed by "lfs changelog" typically looks like this:
9607         # <index> <type> <time> <date> <flags> <key1=value1> <key2=value2> ...
9608
9609         # Parse the positional part of the changelog
9610
9611         # changelog_dump() prefixes records with their mdt's name
9612         local index="${1##*.}"
9613
9614         printf "[index]='%s' [type]='%s' [time]='%s' [date]='%s' [flags]='%s'" \
9615                "$index" "${2:2}" "$3" "$4" "$5"
9616
9617         # Parse the key/value part of the changelog
9618         for arg in "${@:5}"; do
9619                 # Check it matches a key=value syntax
9620                 [[ "$arg" =~ ^[[:alpha:]]+= ]] || continue
9621
9622                 local key="${arg%%=*}"
9623                 local value="${arg#*=}"
9624
9625                 case "$key" in
9626                 u)
9627                         # u is actually for uid AND gid: u=UID:GID
9628                         printf " [uid]='%s'" "${value%:*}"
9629                         key=gid
9630                         value="${value#*:}"
9631                         ;;
9632                 t)
9633                         key=target-fid
9634                         value="${value#[}"
9635                         value="${value%]}"
9636                         ;;
9637                 j)
9638                         key=jobid
9639                         ;;
9640                 p)
9641                         key=parent-fid
9642                         value="${value#[}"
9643                         value="${value%]}"
9644                         ;;
9645                 ef)
9646                         key=extra-flags
9647                         ;;
9648                 m)
9649                         key=mode
9650                         ;;
9651                 x)
9652                         key=xattr
9653                         ;;
9654                 *)
9655                         ;;
9656                 esac
9657
9658                 printf " ['%s']='%s'" "$key" "$value"
9659         done
9660
9661         # end the array
9662         printf ')'
9663 }
9664
9665 # Format and print a changelog record
9666 #
9667 # Interpreted sequences are:
9668 #       %%      a single %
9669 #       %f      the "flags" attribute of a changelog record
9670 __changelog_printf()
9671 {
9672         local format="$1"
9673
9674         local -i i
9675         for ((i = 0; i < ${#format}; i++)); do
9676                 local char="${format:$i:1}"
9677                 if [ "$char" != % ]; then
9678                         printf '%c' "$char"
9679                         continue
9680                 fi
9681
9682                 i+=1
9683                 char="${format:$i:1}"
9684                 case "$char" in
9685                 f)
9686                         printf '%s' "${changelog[flags]}"
9687                         ;;
9688                 %)
9689                         printf '%'
9690                         ;;
9691                 esac
9692         done
9693         printf '\n'
9694 }
9695
9696 # Filter changelog records
9697 changelog_find()
9698 {
9699         local -A filter
9700         local action='print'
9701         local format
9702
9703         while [ $# -gt 0 ]; do
9704                 case "$1" in
9705                 -print)
9706                         action='print'
9707                         ;;
9708                 -printf)
9709                         action='printf'
9710                         format="$2"
9711                         shift
9712                         ;;
9713                 -*)
9714                         filter[${1#-}]="$2"
9715                         shift
9716                         ;;
9717                 esac
9718                 shift
9719         done
9720
9721         local found=false
9722         local record
9723         changelog_dump | { while read -r record; do
9724                 eval local -A changelog=$(changelog2array $record)
9725                 for key in "${!filter[@]}"; do
9726                         case "$key" in
9727                         *)
9728                                 [ "${changelog[$key]}" == "${filter[$key]}" ]
9729                                 ;;
9730                         esac || continue 2
9731                 done
9732
9733                 found=true
9734
9735                 case "${action:-print}" in
9736                 print)
9737                         printf '%s\n' "$record"
9738                         ;;
9739                 printf)
9740                         __changelog_printf "$format"
9741                         ;;
9742                 esac
9743         done; $found; }
9744 }
9745
9746 restore_layout() {
9747         local dir=$1
9748         local layout=$2
9749
9750         [ ! -d "$dir" ] && return
9751
9752         [ -z "$layout" ] && {
9753                 $LFS setstripe -d $dir || error "error deleting stripe '$dir'"
9754                 return
9755         }
9756
9757         setfattr -n trusted.lov -v $layout $dir ||
9758                 error "error restoring layout '$layout' to '$dir'"
9759 }
9760
9761 # save the layout of a directory, the returned string will be used by
9762 # restore_layout() to restore the layout
9763 save_layout() {
9764         local dir=$1
9765         local str=$(getfattr -n trusted.lov --absolute-names -e hex $dir \
9766                     2> /dev/null | awk -F'=' '/trusted.lov/{ print $2 }')
9767         echo "$str"
9768 }
9769
9770 # save layout of a directory and restore it at exit
9771 save_layout_restore_at_exit() {
9772         local dir=$1
9773         local layout=$(save_layout $dir)
9774
9775         stack_trap "restore_layout $dir $layout" EXIT
9776 }
9777
9778 verify_yaml_layout() {
9779         local src=$1
9780         local dst=$2
9781         local temp=$3
9782         local msg_prefix=$4
9783
9784         echo "getstripe --yaml $src"
9785         $LFS getstripe --yaml $src > $temp || error "getstripe $src failed"
9786         echo "setstripe --yaml=$temp $dst"
9787         $LFS setstripe --yaml=$temp $dst|| error "setstripe $dst failed"
9788
9789         echo "compare"
9790         local layout1=$(get_layout_param $src)
9791         local layout2=$(get_layout_param $dst)
9792         # compare their layout info
9793         [ "$layout1" == "$layout2" ] ||
9794                 error "$msg_prefix $src/$dst layouts are not equal"
9795 }
9796
9797 is_project_quota_supported() {
9798         $ENABLE_PROJECT_QUOTAS || return 1
9799
9800         [[ "$(facet_fstype $SINGLEMDS)" == "ldiskfs" &&
9801            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.9.55) ]] &&
9802                 do_facet mds1 lfs --help |& grep -q project && return 0
9803
9804         [[ "$(facet_fstype $SINGLEMDS)" == "zfs" &&
9805            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ]] &&
9806                 do_facet mds1 $ZPOOL get all | grep -q project_quota && return 0
9807
9808         return 1
9809 }
9810
9811 # ZFS project quota enable/disable:
9812 #   This  feature  will  become  active as soon as it is enabled and will never
9813 #   return to being disabled. Each filesystem will be upgraded automatically
9814 #   when remounted or when [a] new file is created under that filesystem. The
9815 #   upgrade can also be triggered on filesystems via `zfs set version=current
9816 #   <pool/fs>`. The upgrade process runs in the background and may take a
9817 #   while to complete for the filesystems containing a large number of files.
9818 enable_project_quota() {
9819         is_project_quota_supported || return 0
9820         local zkeeper=${KEEP_ZPOOL}
9821         stack_trap "KEEP_ZPOOL=$zkeeper" EXIT
9822         KEEP_ZPOOL="true"
9823         stopall || error "failed to stopall (1)"
9824
9825         local zfeat_en="feature@project_quota=enabled"
9826         for facet in $(seq -f mds%g $MDSCOUNT) $(seq -f ost%g $OSTCOUNT); do
9827                 local facet_fstype=${facet:0:3}1_FSTYPE
9828                 local devname
9829
9830                 if [ "${!facet_fstype}" = "zfs" ]; then
9831                         devname=$(zpool_name ${facet})
9832                         do_facet ${facet} $ZPOOL set "$zfeat_en" $devname ||
9833                                 error "$ZPOOL set $zfeat_en $devname"
9834                 else
9835                         [ ${facet:0:3} == "mds" ] &&
9836                                 devname=$(mdsdevname ${facet:3}) ||
9837                                 devname=$(ostdevname ${facet:3})
9838                         do_facet ${facet} $TUNE2FS -O project $devname ||
9839                                 error "tune2fs $devname failed"
9840                 fi
9841         done
9842
9843         KEEP_ZPOOL="${zkeeper}"
9844         mount
9845         setupall
9846 }
9847
9848 disable_project_quota() {
9849         is_project_quota_supported || return 0
9850         [ "$mds1_FSTYPE" != "ldiskfs" ] && return 0
9851         stopall || error "failed to stopall (1)"
9852
9853         for num in $(seq $MDSCOUNT); do
9854                 do_facet mds$num $TUNE2FS -Q ^prj $(mdsdevname $num) ||
9855                         error "tune2fs $(mdsdevname $num) failed"
9856         done
9857
9858         for num in $(seq $OSTCOUNT); do
9859                 do_facet ost$num $TUNE2FS -Q ^prj $(ostdevname $num) ||
9860                         error "tune2fs $(ostdevname $num) failed"
9861         done
9862
9863         mount
9864         setupall
9865 }
9866
9867 #
9868 # In order to test multiple remote HSM agents, a new facet type named "AGT" and
9869 # the following associated variables are added:
9870 #
9871 # AGTCOUNT: number of agents
9872 # AGTDEV{N}: target HSM mount point (root path of the backend)
9873 # agt{N}_HOST: hostname of the agent agt{N}
9874 # SINGLEAGT: facet of the single agent
9875 #
9876 # The number of agents is initialized as the number of remote client nodes.
9877 # By default, only single copytool is started on a remote client/agent. If there
9878 # was no remote client, then the copytool will be started on the local client.
9879 #
9880 init_agt_vars() {
9881         local n
9882         local agent
9883
9884         export AGTCOUNT=${AGTCOUNT:-$((CLIENTCOUNT - 1))}
9885         [[ $AGTCOUNT -gt 0 ]] || AGTCOUNT=1
9886
9887         export SHARED_DIRECTORY=${SHARED_DIRECTORY:-$TMP}
9888         if [[ $CLIENTCOUNT -gt 1 ]] &&
9889                 ! check_shared_dir $SHARED_DIRECTORY $CLIENTS; then
9890                 skip_env "SHARED_DIRECTORY should be accessible"\
9891                          "on all client nodes"
9892                 exit 0
9893         fi
9894
9895         # We used to put the HSM archive in $SHARED_DIRECTORY but that
9896         # meant NFS issues could hose sanity-hsm sessions. So now we
9897         # use $TMP instead.
9898         for n in $(seq $AGTCOUNT); do
9899                 eval export AGTDEV$n=\$\{AGTDEV$n:-"$TMP/arc$n"\}
9900                 agent=CLIENT$((n + 1))
9901                 if [[ -z "${!agent}" ]]; then
9902                         [[ $CLIENTCOUNT -eq 1 ]] && agent=CLIENT1 ||
9903                                 agent=CLIENT2
9904                 fi
9905                 eval export agt${n}_HOST=\$\{agt${n}_HOST:-${!agent}\}
9906                 local var=agt${n}_HOST
9907                 [[ ! -z "${!var}" ]] || error "agt${n}_HOST is empty!"
9908         done
9909
9910         export SINGLEAGT=${SINGLEAGT:-agt1}
9911
9912         export HSMTOOL=${HSMTOOL:-"lhsmtool_posix"}
9913         export HSMTOOL_VERBOSE=${HSMTOOL_VERBOSE:-""}
9914         export HSMTOOL_UPDATE_INTERVAL=${HSMTOOL_UPDATE_INTERVAL:=""}
9915         export HSMTOOL_EVENT_FIFO=${HSMTOOL_EVENT_FIFO:=""}
9916         export HSMTOOL_TESTDIR
9917         export HSMTOOL_BASE=$(basename "$HSMTOOL" | cut -f1 -d" ")
9918
9919         HSM_ARCHIVE_NUMBER=2
9920
9921         # The test only support up to 10 MDTs
9922         MDT_PREFIX="mdt.$FSNAME-MDT000"
9923         HSM_PARAM="${MDT_PREFIX}0.hsm"
9924
9925         # archive is purged at copytool setup
9926         HSM_ARCHIVE_PURGE=true
9927
9928         # Don't allow copytool error upon start/setup
9929         HSMTOOL_NOERROR=false
9930 }
9931
9932 # Get the backend root path for the given agent facet.
9933 copytool_device() {
9934         local facet=$1
9935         local dev=AGTDEV$(facet_number $facet)
9936
9937         echo -n ${!dev}
9938 }
9939
9940 get_mdt_devices() {
9941         local mdtno
9942         # get MDT device for each mdc
9943         for mdtno in $(seq 1 $MDSCOUNT); do
9944                 local idx=$(($mdtno - 1))
9945                 MDT[$idx]=$($LCTL get_param -n \
9946                         mdc.$FSNAME-MDT000${idx}-mdc-*.mds_server_uuid |
9947                         awk '{gsub(/_UUID/,""); print $1}' | head -n1)
9948         done
9949 }
9950
9951 search_copytools() {
9952         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
9953         do_nodesv $hosts "pgrep -x $HSMTOOL_BASE"
9954 }
9955
9956 kill_copytools() {
9957         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
9958
9959         echo "Killing existing copytools on $hosts"
9960         do_nodesv $hosts "killall -q $HSMTOOL_BASE" || true
9961 }
9962
9963 wait_copytools() {
9964         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
9965         local wait_timeout=200
9966         local wait_start=$SECONDS
9967         local wait_end=$((wait_start + wait_timeout))
9968         local sleep_time=100000 # 0.1 second
9969
9970         while ((SECONDS < wait_end)); do
9971                 if ! search_copytools $hosts; then
9972                         echo "copytools stopped in $((SECONDS - wait_start))s"
9973                         return 0
9974                 fi
9975
9976                 echo "copytools still running on $hosts"
9977                 usleep $sleep_time
9978                 [ $sleep_time -lt 32000000 ] && # 3.2 seconds
9979                         sleep_time=$(bc <<< "$sleep_time * 2")
9980         done
9981
9982         # try to dump Copytool's stack
9983         do_nodesv $hosts "echo 1 >/proc/sys/kernel/sysrq ; " \
9984                          "echo t >/proc/sysrq-trigger"
9985
9986         echo "copytools failed to stop in ${wait_timeout}s"
9987
9988         return 1
9989 }
9990
9991 copytool_monitor_cleanup() {
9992         local facet=${1:-$SINGLEAGT}
9993         local agent=$(facet_active_host $facet)
9994
9995         if [ -n "$HSMTOOL_MONITOR_DIR" ]; then
9996                 # Should die when the copytool dies, but just in case.
9997                 local cmd="kill \\\$(cat $HSMTOOL_MONITOR_DIR/monitor_pid)"
9998                 cmd+=" 2>/dev/null || true"
9999                 do_node $agent "$cmd"
10000                 do_node $agent "rm -fr $HSMTOOL_MONITOR_DIR"
10001                 export HSMTOOL_MONITOR_DIR=
10002         fi
10003
10004         # The pdsh should die on its own when the monitor dies. Just
10005         # in case, though, try to clean up to avoid any cruft.
10006         if [ -n "$HSMTOOL_MONITOR_PDSH" ]; then
10007                 kill $HSMTOOL_MONITOR_PDSH 2>/dev/null || true
10008                 export HSMTOOL_MONITOR_PDSH=
10009         fi
10010 }
10011
10012 copytool_logfile()
10013 {
10014         local host="$(facet_host "$1")"
10015         local prefix=$TESTLOG_PREFIX
10016         [ -n "$TESTNAME" ] && prefix+=.$TESTNAME
10017
10018         printf "${prefix}.copytool${archive_id}_log.${host}.log"
10019 }
10020
10021 __lhsmtool_rebind()
10022 {
10023         do_facet $facet $HSMTOOL -p "$hsm_root" --rebind "$@" "$mountpoint"
10024 }
10025
10026 __lhsmtool_import()
10027 {
10028         mkdir -p "$(dirname "$2")" ||
10029                 error "cannot create directory '$(dirname "$2")'"
10030         do_facet $facet $HSMTOOL -p "$hsm_root" --import "$@" "$mountpoint"
10031 }
10032
10033 __lhsmtool_setup()
10034 {
10035         local cmd="$HSMTOOL $HSMTOOL_VERBOSE --daemon --hsm-root \"$hsm_root\""
10036         [ -n "$bandwidth" ] && cmd+=" --bandwidth $bandwidth"
10037         [ -n "$archive_id" ] && cmd+=" --archive $archive_id"
10038         [ ${#misc_options[@]} -gt 0 ] &&
10039                 cmd+=" $(IFS=" " echo "$@")"
10040         cmd+=" \"$mountpoint\""
10041
10042         echo "Starting copytool $facet on $(facet_host $facet)"
10043         stack_trap "do_facet $facet libtool execute pkill -x '$HSMTOOL' || true" EXIT
10044         do_facet $facet "$cmd < /dev/null > \"$(copytool_logfile $facet)\" 2>&1"
10045 }
10046
10047 hsm_root() {
10048         local facet="${1:-$SINGLEAGT}"
10049
10050         printf "$(copytool_device "$facet")/${TESTSUITE}.${TESTNAME}/"
10051 }
10052
10053 # Main entry point to perform copytool related operations
10054 #
10055 # Sub-commands:
10056 #
10057 #       setup   setup a copytool to run in the background, that copytool will be
10058 #               killed on EXIT
10059 #       import  import a file from an HSM backend
10060 #       rebind  rebind an archived file to a new fid
10061 #
10062 # Although the semantics might suggest otherwise, one does not need to 'setup'
10063 # a copytool before a call to 'copytool import' or 'copytool rebind'.
10064 #
10065 copytool()
10066 {
10067         local action=$1
10068         shift
10069
10070         # Use default values
10071         local facet=$SINGLEAGT
10072         local mountpoint="${MOUNT2:-$MOUNT}"
10073         local hsm_root="${hsm_root:-$(hsm_root "$facet")}"
10074
10075         # Parse arguments
10076         local fail_on_error=true
10077         local -a misc_options
10078         while [ $# -gt 0 ]; do
10079                 case "$1" in
10080                 -f|--facet)
10081                         shift
10082                         facet="$1"
10083                         ;;
10084                 -m|--mountpoint)
10085                         shift
10086                         mountpoint="$1"
10087                         ;;
10088                 -a|--archive-id)
10089                         shift
10090                         local archive_id="$1"
10091                         ;;
10092                 -h|--hsm-root)
10093                         shift
10094                         hsm_root="$1"
10095                         ;;
10096                 -b|--bwlimit)
10097                         shift
10098                         local bandwidth="$1" # in MB/s
10099                         ;;
10100                 -n|--no-fail)
10101                         local fail_on_error=false
10102                         ;;
10103                 *)
10104                         # Uncommon(/copytool dependent) option
10105                         misc_options+=("$1")
10106                         ;;
10107                 esac
10108                 shift
10109         done
10110
10111         stack_trap "do_facet $facet rm -rf '$hsm_root'" EXIT
10112         do_facet $facet mkdir -p "$hsm_root" ||
10113                 error "mkdir '$hsm_root' failed"
10114
10115         case "$HSMTOOL" in
10116         lhsmtool_posix)
10117                 local copytool=lhsmtool
10118                 ;;
10119         esac
10120
10121         __${copytool}_${action} "${misc_options[@]}"
10122         if [ $? -ne 0 ]; then
10123                 local error_msg
10124
10125                 case $action in
10126                 setup)
10127                         local host="$(facet_host $facet)"
10128                         error_msg="Failed to start copytool $facet on '$host'"
10129                         ;;
10130                 import)
10131                         local src="${misc_options[0]}"
10132                         local dest="${misc_options[1]}"
10133                         error_msg="Failed to import '$src' to '$dest'"
10134                         ;;
10135                 rebind)
10136                         error_msg="could not rebind file"
10137                         ;;
10138                 esac
10139
10140                 $fail_on_error && error "$error_msg" || echo "$error_msg"
10141         fi
10142 }
10143
10144 needclients() {
10145         local client_count=$1
10146         if [[ $CLIENTCOUNT -lt $client_count ]]; then
10147                 skip "Need $client_count or more clients, have $CLIENTCOUNT"
10148                 return 1
10149         fi
10150         return 0
10151 }
10152
10153 path2fid() {
10154         $LFS path2fid $1 | tr -d '[]'
10155         return ${PIPESTATUS[0]}
10156 }
10157
10158 get_hsm_flags() {
10159         local f=$1
10160         local u=$2
10161         local st
10162
10163         if [[ $u == "user" ]]; then
10164                 st=$($RUNAS $LFS hsm_state $f)
10165         else
10166                 u=root
10167                 st=$($LFS hsm_state $f)
10168         fi
10169
10170         [[ $? == 0 ]] || error "$LFS hsm_state $f failed (run as $u)"
10171
10172         st=$(echo $st | cut -f 2 -d" " | tr -d "()," )
10173         echo $st
10174 }
10175
10176 check_hsm_flags() {
10177         local f=$1
10178         local fl=$2
10179
10180         local st=$(get_hsm_flags $f)
10181         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
10182 }
10183
10184 mdts_set_param() {
10185         local arg=$1
10186         local key=$2
10187         local value=$3
10188         local mdtno
10189         local rc=0
10190         if [[ "$value" != "" ]]; then
10191                 value="=$value"
10192         fi
10193         for mdtno in $(seq 1 $MDSCOUNT); do
10194                 local idx=$(($mdtno - 1))
10195                 local facet=mds${mdtno}
10196                 # if $arg include -P option, run 1 set_param per MDT on the MGS
10197                 # else, run set_param on each MDT
10198                 [[ $arg = *"-P"* ]] && facet=mgs
10199                 do_facet $facet $LCTL set_param $arg mdt.${MDT[$idx]}.$key$value
10200                 [[ $? != 0 ]] && rc=1
10201         done
10202         return $rc
10203 }
10204
10205 wait_result() {
10206         local facet=$1
10207         shift
10208         wait_update --verbose $(facet_active_host $facet) "$@"
10209 }
10210
10211 mdts_check_param() {
10212         local key="$1"
10213         local target="$2"
10214         local timeout="$3"
10215         local mdtno
10216         for mdtno in $(seq 1 $MDSCOUNT); do
10217                 local idx=$(($mdtno - 1))
10218                 wait_result mds${mdtno} \
10219                         "$LCTL get_param -n $MDT_PREFIX${idx}.$key" "$target" \
10220                         $timeout ||
10221                         error "$key state is not '$target' on mds${mdtno}"
10222         done
10223 }
10224
10225 cdt_set_mount_state() {
10226         mdts_set_param "-P" hsm_control "$1"
10227         # set_param -P is asynchronous operation and could race with set_param.
10228         # In such case configs could be retrieved and applied at mgc after
10229         # set_param -P completion. Sleep here to avoid race with set_param.
10230         # We need at least 20 seconds. 10 for mgc_requeue_thread to wake up
10231         # MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC(5 + 5)
10232         # and 10 seconds to retrieve config from server.
10233         sleep 20
10234 }
10235
10236 cdt_check_state() {
10237         mdts_check_param hsm_control "$1" 20
10238 }
10239
10240 cdt_set_sanity_policy() {
10241         if [[ "$CDT_POLICY_HAD_CHANGED" ]]
10242         then
10243                 # clear all
10244                 mdts_set_param "" hsm.policy "+NRA"
10245                 mdts_set_param "" hsm.policy "-NBR"
10246                 CDT_POLICY_HAD_CHANGED=
10247         fi
10248 }
10249
10250 set_hsm_param() {
10251         local param=$1
10252         local value=$2
10253         local opt=$3
10254         mdts_set_param "$opt -n" "hsm.$param" "$value"
10255         return $?
10256 }
10257
10258 wait_request_state() {
10259         local fid=$1
10260         local request=$2
10261         local state=$3
10262         # 4th arg (mdt index) is optional
10263         local mdtidx=${4:-0}
10264         local mds=mds$(($mdtidx + 1))
10265
10266         local cmd="$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.actions"
10267         cmd+=" | awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
10268
10269         wait_result $mds "$cmd" "$state" 200 ||
10270                 error "request on $fid is not $state on $mds"
10271 }
10272
10273
10274 rmultiop_start() {
10275         local client=$1
10276         local file=$2
10277         local cmds=$3
10278         local WAIT_MAX=${4:-60}
10279         local wait_time=0
10280
10281         # We need to run do_node in bg, because pdsh does not exit
10282         # if child process of run script exists.
10283         # I.e. pdsh does not exit when runmultiop_bg_pause exited,
10284         # because of multiop_bg_pause -> $MULTIOP_PROG &
10285         # By the same reason we need sleep a bit after do_nodes starts
10286         # to let runmultiop_bg_pause start muliop and
10287         # update /tmp/multiop_bg.pid ;
10288         # The rm /tmp/multiop_bg.pid guarantees here that
10289         # we have the updated by runmultiop_bg_pause
10290         # /tmp/multiop_bg.pid file
10291
10292         local pid_file=$TMP/multiop_bg.pid.$$
10293
10294         do_node $client "MULTIOP_PID_FILE=$pid_file LUSTRE= \
10295                         runmultiop_bg_pause $file $cmds" &
10296         local pid=$!
10297         local multiop_pid
10298
10299         while [[ $wait_time -lt $WAIT_MAX ]]; do
10300                 sleep 3
10301                 wait_time=$((wait_time + 3))
10302                 multiop_pid=$(do_node $client cat $pid_file)
10303                 if [ -n "$multiop_pid" ]; then
10304                         break
10305                 fi
10306         done
10307
10308         [ -n "$multiop_pid" ] ||
10309                 error "$client : Can not get multiop_pid from $pid_file "
10310
10311         eval export $(node_var_name $client)_multiop_pid=$multiop_pid
10312         eval export $(node_var_name $client)_do_node_pid=$pid
10313         local var=$(node_var_name $client)_multiop_pid
10314         echo client $client multiop_bg started multiop_pid=${!var}
10315         return $?
10316 }
10317
10318 rmultiop_stop() {
10319         local client=$1
10320         local multiop_pid=$(node_var_name $client)_multiop_pid
10321         local do_node_pid=$(node_var_name $client)_do_node_pid
10322
10323         echo "Stopping multiop_pid=${!multiop_pid} (kill ${!multiop_pid} on $client)"
10324         do_node $client kill -USR1 ${!multiop_pid}
10325
10326         wait ${!do_node_pid}
10327 }
10328
10329 sleep_maxage() {
10330         local delay=$(do_facet $SINGLEMDS lctl get_param -n lo[vd].*.qos_maxage |
10331                       awk '{ print $1 * 2; exit; }')
10332         sleep $delay
10333 }
10334
10335 check_component_count() {
10336         local comp_cnt=$($LFS getstripe --component-count $1)
10337         [ $comp_cnt -eq $2 ] || error "$1, component count $comp_cnt != $2"
10338 }
10339
10340 # Verify there are no init components with "extension" flag
10341 verify_no_init_extension() {
10342         local flg_opts="--component-flags init,extension"
10343         local found=$($LFS find $flg_opts $1 | wc -l)
10344         [ $found -eq 0 ] || error "$1 has component with initialized extension"
10345 }
10346
10347 # Verify there is at least one component starting at 0
10348 verify_comp_at_zero() {
10349         flg_opts="--component-flags init"
10350         found=$($LFS find --component-start 0M $flg_opts $1 | wc -l)
10351         [ $found -eq 1 ] ||
10352                 error "No component starting at zero(!)"
10353 }
10354
10355 # version after which Self-Extending Layouts are available
10356 SEL_VER="2.12.55"
10357
10358 sel_layout_sanity() {
10359         local file=$1
10360         local comp_cnt=$2
10361
10362         verify_no_init_extension $file
10363         verify_comp_at_zero $file
10364         check_component_count $file $comp_cnt
10365 }
10366