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