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