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