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