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