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