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