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