Whamcloud - gitweb
94068766cefd421e08e382ba43f78157b763e559
[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 single_local_node () {
4246         [ "$1" = "$HOSTNAME" ]
4247 }
4248
4249 # Outputs environment variable assignments that should be passed to remote nodes
4250 get_env_vars() {
4251         local var
4252         local value
4253         local facets=$(get_facets)
4254         local facet
4255
4256         for var in ${!MODOPTS_*}; do
4257                 value=${!var//\"/\\\"}
4258                 echo -n " ${var}=\"$value\""
4259         done
4260
4261         for facet in ${facets//,/ }; do
4262                 var=${facet}_FSTYPE
4263                 if [ -n "${!var}" ]; then
4264                         echo -n " $var=${!var}"
4265                 fi
4266         done
4267
4268         for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
4269                 if [ -n "${!var}" ]; then
4270                         echo -n " $var=${!var}"
4271                 fi
4272         done
4273
4274         for var in VERBOSE; do
4275                 if [ -n "${!var}" ]; then
4276                         echo -n " $var=${!var}"
4277                 fi
4278         done
4279
4280         if [ -n "$FSTYPE" ]; then
4281                 echo -n " FSTYPE=$FSTYPE"
4282         fi
4283
4284         for var in LNETLND NETTYPE; do
4285                 if [ -n "${!var}" ]; then
4286                         echo -n " $var=${!var}"
4287                 fi
4288         done
4289 }
4290
4291 do_nodes() {
4292         local verbose
4293         local quiet
4294
4295         # do not strip off hostname if verbose, b=19215
4296         [[ "$1" == "--verbose" ]] && verbose="$1" && shift
4297         [[ "$1" == "--quiet" || "$1" == "-q" ]] && quiet="$1" && shift
4298
4299         local rnodes=$1
4300         shift
4301
4302         if single_local_node $rnodes; then
4303                 do_node $verbose $quiet $rnodes "$@"
4304                 return $?
4305         fi
4306
4307         # This is part from do_node
4308         local myPDSH=$PDSH
4309
4310         [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] &&
4311                 echo "cannot run remote command on $rnodes with $myPDSH" &&
4312                 return 128
4313
4314         export FANOUT=$(get_node_count "${rnodes//,/ }")
4315         if $VERBOSE && [[ -z "$quiet" ]]; then
4316                 echo "CMD: $rnodes $@" >&2
4317                 $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
4318         fi
4319
4320         # do not replace anything from pdsh output if -N is used
4321         # -N     Disable hostname: prefix on lines of output.
4322         if [[ -n "$verbose" || $myPDSH = *-N* ]]; then
4323                 $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) bash -c \"$@\")"
4324         else
4325                 $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) bash -c \"$@\")" | sed -re "s/^[^:]*: //g"
4326         fi
4327         return ${PIPESTATUS[0]}
4328 }
4329
4330 ##
4331 # Execute commands on a single service's host
4332 #
4333 # The \a facet (service) may be on a local or remote node, which is
4334 # determined at the time the command is run.
4335 #
4336 # usage: do_facet $facet command [arg ...]
4337 do_facet() {
4338         local verbose
4339         local quiet
4340
4341         [[ "$1" == "--verbose" ]] && verbose="$1" && shift
4342         [[ "$1" == "--quiet" || "$1" == "-q" ]] && quiet="$1" && shift
4343
4344         local facet=$1
4345         shift
4346         local host=$(facet_active_host $facet)
4347
4348         [ -z "$host" ] && echo "No host defined for facet ${facet}" && exit 1
4349         do_node $verbose $quiet $host "$@"
4350 }
4351
4352 # Function: do_facet_random_file $FACET $FILE $SIZE
4353 # Creates FILE with random content on the given FACET of given SIZE
4354
4355 do_facet_random_file() {
4356         local facet="$1"
4357         local fpath="$2"
4358         local fsize="$3"
4359         local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
4360         do_facet $facet "$cmd 2>/dev/null"
4361 }
4362
4363 do_facet_create_file() {
4364         local facet="$1"
4365         local fpath="$2"
4366         local fsize="$3"
4367         local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
4368         do_facet $facet "$cmd 2>/dev/null"
4369 }
4370
4371 do_nodesv() {
4372         do_nodes --verbose "$@"
4373 }
4374
4375 add() {
4376         local facet=$1
4377         shift
4378         # make sure its not already running
4379         stop ${facet} -f
4380         rm -f $TMP/${facet}active
4381         [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
4382
4383         # make sure in-tree ldiskfs is loaded before mkfs
4384         if local_mode && [[ $(node_fstypes $HOSTNAME) == *ldiskfs* ]]; then
4385                 load_module ../ldiskfs/ldiskfs
4386         fi
4387
4388         do_facet ${facet} $MKFS $* || return ${PIPESTATUS[0]}
4389
4390         if [[ $(facet_fstype $facet) == zfs ]]; then
4391                 #
4392                 # After formatting a ZFS target, "cachefile=none" property will
4393                 # be set on the ZFS storage pool so that the pool is not
4394                 # automatically imported on system startup. And then the pool
4395                 # will be exported so as to leave the importing and exporting
4396                 # operations handled by mount_facet() and stop() separately.
4397                 #
4398                 refresh_partition_table $facet $(facet_vdevice $facet)
4399                 disable_zpool_cache $facet
4400                 export_zpool $facet
4401         fi
4402 }
4403
4404 # Device formatted as ost
4405 ostdevname() {
4406         local num=$1
4407         local DEVNAME=OSTDEV$num
4408
4409         local fstype=$(facet_fstype ost$num)
4410
4411         case $fstype in
4412                 ldiskfs )
4413                         local dev=ost${num}_dev
4414                         [[ -n ${!dev} ]] && eval DEVPTR=${!dev} ||
4415                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
4416                         eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
4417                 zfs )
4418                         #try $OSTZFSDEVn - independent of vdev
4419                         DEVNAME=OSTZFSDEV$num
4420                         eval DEVPTR=${!DEVNAME:=${FSNAME}-ost${num}/ost${num}};;
4421                 * )
4422                         error "unknown fstype!";;
4423         esac
4424
4425     echo -n $DEVPTR
4426 }
4427
4428 # Physical device location of data
4429 ostvdevname() {
4430         local num=$1
4431         local DEVNAME
4432         local VDEVPTR
4433
4434         local fstype=$(facet_fstype ost$num)
4435
4436         case $fstype in
4437                 ldiskfs )
4438                         # vdevs are not supported by ldiskfs
4439                         eval VDEVPTR="";;
4440                 zfs )
4441                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE{n}
4442                         # Device formatted by zfs
4443                         DEVNAME=OSTDEV$num
4444                         eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
4445                 * )
4446                         error "unknown fstype!";;
4447         esac
4448
4449         echo -n $VDEVPTR
4450 }
4451
4452 # Logical device formatted for lustre
4453 mdsdevname() {
4454         local num=$1
4455         local DEVNAME=MDSDEV$num
4456
4457         local fstype=$(facet_fstype mds$num)
4458
4459         case $fstype in
4460                 ldiskfs )
4461                         local dev=mds${num}_dev
4462                         [[ -n ${!dev} ]] && eval DEVPTR=${!dev} ||
4463                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE{n}
4464                         eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
4465                 zfs )
4466                         # try $MDSZFSDEVn - independent of vdev
4467                         DEVNAME=MDSZFSDEV$num
4468                         eval DEVPTR=${!DEVNAME:=${FSNAME}-mdt${num}/mdt${num}};;
4469                 * )
4470                         error "unknown fstype!";;
4471         esac
4472
4473         echo -n $DEVPTR
4474 }
4475
4476 # Physical location of data
4477 mdsvdevname() {
4478         local VDEVPTR=""
4479         local num=$1
4480         local fstype=$(facet_fstype mds$num)
4481
4482         case $fstype in
4483                 ldiskfs )
4484                         # vdevs are not supported by ldiskfs
4485                         eval VDEVPTR="";;
4486                 zfs )
4487                         # if $MDSDEVn isn't defined, default is $MDSDEVBASE{n}
4488                         # Device formatted by ZFS
4489                         local DEVNAME=MDSDEV$num
4490                         eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
4491                 * )
4492                         error "unknown fstype!";;
4493         esac
4494
4495         echo -n $VDEVPTR
4496 }
4497
4498 mgsdevname() {
4499         local DEVPTR
4500         local fstype=$(facet_fstype mgs)
4501
4502         case $fstype in
4503         ldiskfs )
4504                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
4505                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $MDSDEV1 ] ); then
4506                         DEVPTR=$(mdsdevname 1)
4507                 else
4508                         [[ -n $mgs_dev ]] && DEVPTR=$mgs_dev ||
4509                         DEVPTR=$MGSDEV
4510                 fi;;
4511         zfs )
4512                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
4513                     ( [ -z "$MGSZFSDEV" ] &&
4514                         [ -z "$MGSDEV" -o "$MGSDEV" = $(mdsvdevname 1) ] ); then
4515                         DEVPTR=$(mdsdevname 1)
4516                 else
4517                         DEVPTR=${MGSZFSDEV:-${FSNAME}-mgs/mgs}
4518                 fi;;
4519         * )
4520                 error "unknown fstype!";;
4521         esac
4522
4523         echo -n $DEVPTR
4524 }
4525
4526 mgsvdevname() {
4527         local VDEVPTR=""
4528
4529         local fstype=$(facet_fstype mgs)
4530
4531         case $fstype in
4532         ldiskfs )
4533                 # vdevs are not supported by ldiskfs
4534                 ;;
4535         zfs )
4536                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
4537                    ( [ -z "$MGSDEV" ] &&
4538                        [ -z "$MGSZFSDEV" -o "$MGSZFSDEV" = $(mdsdevname 1) ]); then
4539                         VDEVPTR=$(mdsvdevname 1)
4540                 elif [ -n "$MGSDEV" ]; then
4541                         VDEVPTR=$MGSDEV
4542                 fi;;
4543         * )
4544                 error "unknown fstype!";;
4545         esac
4546
4547         echo -n $VDEVPTR
4548 }
4549
4550 facet_mntpt () {
4551     local facet=$1
4552     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
4553
4554     local var=${facet}_MOUNT
4555     eval mntpt=${!var:-${MOUNT}-$facet}
4556
4557     echo -n $mntpt
4558 }
4559
4560 mount_ldiskfs() {
4561         local facet=$1
4562         local dev=$(facet_device $facet)
4563         local mnt=${2:-$(facet_mntpt $facet)}
4564         local opts
4565         local dm_dev=$dev
4566
4567         if dm_flakey_supported $facet; then
4568                 dm_dev=$(dm_create_dev $facet $dev)
4569                 [[ -n "$dm_dev" ]] || dm_dev=$dev
4570         fi
4571         is_blkdev $facet $dm_dev || opts=$(csa_add "$opts" -o loop)
4572         export_dm_dev $facet $dm_dev
4573
4574         do_facet $facet mount -t ldiskfs $opts $dm_dev $mnt
4575 }
4576
4577 unmount_ldiskfs() {
4578         local facet=$1
4579         local dev=$(facet_device $facet)
4580         local mnt=${2:-$(facet_mntpt $facet)}
4581
4582         do_facet $facet $UMOUNT $mnt
4583 }
4584
4585 var_name() {
4586         echo -n "$1" | tr -c '[:alnum:]\n' '_'
4587 }
4588
4589 mount_zfs() {
4590         local facet=$1
4591         local ds=$(facet_device $facet)
4592         local mnt=${2:-$(facet_mntpt $facet)}
4593         local canmnt
4594         local mntpt
4595
4596         import_zpool $facet
4597         canmnt=$(do_facet $facet $ZFS get -H -o value canmount $ds)
4598         mntpt=$(do_facet $facet $ZFS get -H -o value mountpoint $ds)
4599         do_facet $facet $ZFS set canmount=noauto $ds
4600         #
4601         # The "legacy" mount method is used here because "zfs unmount $mnt"
4602         # calls stat(2) on $mnt/../*, which may include $MOUNT.  If certain
4603         # targets are not available at the time, the stat(2) on $MOUNT will
4604         # hang.
4605         #
4606         do_facet $facet $ZFS set mountpoint=legacy $ds
4607         do_facet $facet mount -t zfs $ds $mnt
4608         eval export mz_$(var_name ${facet}_$ds)_canmount=$canmnt
4609         eval export mz_$(var_name ${facet}_$ds)_mountpoint=$mntpt
4610 }
4611
4612 unmount_zfs() {
4613         local facet=$1
4614         local ds=$(facet_device $facet)
4615         local mnt=${2:-$(facet_mntpt $facet)}
4616         local var_mntpt=mz_$(var_name ${facet}_$ds)_mountpoint
4617         local var_canmnt=mz_$(var_name ${facet}_$ds)_canmount
4618         local mntpt=${!var_mntpt}
4619         local canmnt=${!var_canmnt}
4620
4621         unset $var_mntpt
4622         unset $var_canmnt
4623         do_facet $facet umount $mnt
4624         do_facet $facet $ZFS set mountpoint=$mntpt $ds
4625         do_facet $facet $ZFS set canmount=$canmnt $ds
4626         export_zpool $facet
4627 }
4628
4629 mount_fstype() {
4630         local facet=$1
4631         local mnt=$2
4632         local fstype=$(facet_fstype $facet)
4633
4634         mount_$fstype $facet $mnt
4635 }
4636
4637 unmount_fstype() {
4638         local facet=$1
4639         local mnt=$2
4640         local fstype=$(facet_fstype $facet)
4641
4642         unmount_$fstype $facet $mnt
4643 }
4644
4645 ########
4646 ## MountConf setup
4647
4648 stopall() {
4649         # make sure we are using the primary server, so test-framework will
4650         # be able to clean up properly.
4651         activemds=`facet_active mds1`
4652         if [ $activemds != "mds1" ]; then
4653                 fail mds1
4654         fi
4655
4656         local clients=$CLIENTS
4657         [ -z $clients ] && clients=$(hostname)
4658
4659         zconf_umount_clients $clients $MOUNT "$*" || true
4660         [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
4661
4662         [ -n "$CLIENTONLY" ] && return
4663
4664         # The add fn does rm ${facet}active file, this would be enough
4665         # if we use do_facet <facet> only after the facet added, but
4666         # currently we use do_facet mds in local.sh
4667         for num in `seq $MDSCOUNT`; do
4668                 stop mds$num -f
4669                 rm -f ${TMP}/mds${num}active
4670         done
4671         combined_mgs_mds && rm -f $TMP/mgsactive
4672
4673         for num in `seq $OSTCOUNT`; do
4674                 stop ost$num -f
4675                 rm -f $TMP/ost${num}active
4676         done
4677
4678         if ! combined_mgs_mds ; then
4679                 stop mgs
4680         fi
4681
4682         if $SHARED_KEY; then
4683                 export SK_MOUNTED=false
4684         fi
4685
4686         return 0
4687 }
4688
4689 cleanup_echo_devs () {
4690         trap 0
4691         local dev
4692         local devs=$($LCTL dl | grep echo | awk '{print $4}')
4693
4694         for dev in $devs; do
4695                 $LCTL --device $dev cleanup
4696                 $LCTL --device $dev detach
4697         done
4698 }
4699
4700 cleanupall() {
4701         nfs_client_mode && return
4702         cifs_client_mode && return
4703
4704         cleanup_echo_devs
4705         CLEANUP_DM_DEV=true stopall $*
4706
4707         unload_modules
4708         cleanup_sk
4709         cleanup_gss
4710 }
4711
4712 combined_mgs_mds () {
4713         [[ "$(mdsdevname 1)" = "$(mgsdevname)" ]] &&
4714                 [[ "$(facet_host mds1)" = "$(facet_host mgs)" ]]
4715 }
4716
4717 lower() {
4718         echo -n "$1" | tr '[:upper:]' '[:lower:]'
4719 }
4720
4721 upper() {
4722         echo -n "$1" | tr '[:lower:]' '[:upper:]'
4723 }
4724
4725 squash_opt() {
4726         local var="$*"
4727         local other=""
4728         local opt_o=""
4729         local opt_e=""
4730         local first_e=0
4731         local first_o=0
4732         local take=""
4733
4734         var=$(echo "$var" | sed -e 's/,\( \)*/,/g')
4735         for i in $(echo "$var"); do
4736                 if [ "$i" == "-O" ]; then
4737                         take="o";
4738                         first_o=$(($first_o + 1))
4739                         continue;
4740                 fi
4741                 if [ "$i" == "-E" ]; then
4742                         take="e";
4743                         first_e=$(($first_e + 1 ))
4744                         continue;
4745                 fi
4746                 case $take in
4747                         "o")
4748                                 [ $first_o -gt 1 ] && opt_o+=",";
4749                                 opt_o+="$i";
4750                                 ;;
4751                         "e")
4752                                 [ $first_e -gt 1 ] && opt_e+=",";
4753                                 opt_e+="$i";
4754                                 ;;
4755                         *)
4756                                 other+=" $i";
4757                                 ;;
4758                 esac
4759                 take=""
4760         done
4761
4762         echo -n "$other"
4763         [ -n "$opt_o" ] && echo " -O $opt_o"
4764         [ -n "$opt_e" ] && echo " -E $opt_e"
4765 }
4766
4767 mkfs_opts() {
4768         local facet=$1
4769         local dev=$2
4770         local fsname=${3:-"$FSNAME"}
4771         local type=$(facet_type $facet)
4772         local index=$(facet_index $facet)
4773         local fstype=$(facet_fstype $facet)
4774         local host=$(facet_host $facet)
4775         local opts
4776         local fs_mkfs_opts
4777         local var
4778
4779         if [ $type == MGS ] || ( [ $type == MDS ] &&
4780                                  [ "$dev" == $(mgsdevname) ] &&
4781                                  [ "$host" == "$(facet_host mgs)" ] ); then
4782                 opts="--mgs"
4783         else
4784                 opts="--mgsnode=$MGSNID"
4785         fi
4786
4787         if [ $type != MGS ]; then
4788                 opts+=" --fsname=$fsname --$(lower ${type/MDS/MDT}) \
4789                         --index=$index"
4790         fi
4791
4792         var=${facet}failover_HOST
4793         if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
4794                 opts+=" --failnode=$(h2nettype ${!var})"
4795         fi
4796
4797         opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
4798         opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
4799
4800         if [ $type == MDS ]; then
4801                 opts+=${DEF_STRIPE_SIZE:+" --param=lov.stripesize=$DEF_STRIPE_SIZE"}
4802                 opts+=${DEF_STRIPE_COUNT:+" --param=lov.stripecount=$DEF_STRIPE_COUNT"}
4803                 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
4804
4805                 if [ $fstype == ldiskfs ]; then
4806                         var=${facet}_JRN
4807                         if [ -n "${!var}" ]; then
4808                                 fs_mkfs_opts+=" -J device=${!var}"
4809                         else
4810                                 fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
4811                         fi
4812                         fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
4813                 fi
4814         fi
4815
4816         if [ $type == OST ]; then
4817                 if [ $fstype == ldiskfs ]; then
4818                         var=${facet}_JRN
4819                         if [ -n "${!var}" ]; then
4820                                 fs_mkfs_opts+=" -J device=${!var}"
4821                         else
4822                                 fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
4823                         fi
4824                 fi
4825         fi
4826
4827         opts+=" --backfstype=$fstype"
4828
4829         var=${type}SIZE
4830         if [ -n "${!var}" ]; then
4831                 opts+=" --device-size=${!var}"
4832         fi
4833
4834         var=$(upper $fstype)_MKFS_OPTS
4835         fs_mkfs_opts+=${!var:+" ${!var}"}
4836
4837         var=${type}_FS_MKFS_OPTS
4838         fs_mkfs_opts+=${!var:+" ${!var}"}
4839
4840         [[ "$QUOTA_TYPE" =~ "p" ]] && fs_mkfs_opts+=" -O project"
4841
4842         [ $fstype == ldiskfs ] && fs_mkfs_opts=$(squash_opt $fs_mkfs_opts)
4843
4844         if [ -n "${fs_mkfs_opts## }" ]; then
4845                 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
4846         fi
4847
4848         var=${type}OPT
4849         opts+=${!var:+" ${!var}"}
4850
4851         echo -n "$opts"
4852 }
4853
4854 mountfs_opts() {
4855         local facet=$1
4856         local type=$(facet_type $facet)
4857         local var=${type}_MOUNT_FS_OPTS
4858         local opts=""
4859         if [ -n "${!var}" ]; then
4860                 opts+=" --mountfsoptions=${!var}"
4861         fi
4862         echo -n "$opts"
4863 }
4864
4865 check_ost_indices() {
4866         local index_count=${#OST_INDICES[@]}
4867         [[ $index_count -eq 0 || $OSTCOUNT -le $index_count ]] && return 0
4868
4869         # OST count is greater than the index count in $OST_INDEX_LIST.
4870         # We need check whether there are duplicate indices.
4871         local i
4872         local j
4873         local index
4874         for i in $(seq $((index_count + 1)) $OSTCOUNT); do
4875                 index=$(facet_index ost$i)
4876                 for j in $(seq 0 $((index_count - 1))); do
4877                         [[ $index -ne ${OST_INDICES[j]} ]] ||
4878                         error "ost$i has the same index $index as ost$((j+1))"
4879                 done
4880         done
4881 }
4882
4883 __touch_device()
4884 {
4885         local facet_type=$1 # mgs || mds || ost
4886         local facet_num=$2
4887         local facet=${1}${2}
4888         local device
4889
4890         case "$(facet_fstype $facet)" in
4891         ldiskfs)
4892                 device=$(${facet_type}devname $facet_num)
4893                 ;;
4894         zfs)
4895                 device=$(${facet_type}vdevname $facet_num)
4896                 ;;
4897         *)
4898                 error "Unhandled filesystem type"
4899                 ;;
4900         esac
4901
4902         do_facet $facet "[ -e \"$device\" ]" && return
4903
4904         # Note: the following check only works with absolute paths
4905         [[ ! "$device" =~ ^/dev/ ]] || [[ "$device" =~ ^/dev/shm/ ]] ||
4906                 error "$facet: device '$device' does not exist"
4907
4908         # zpool create doesn't like empty files
4909         [[ $(facet_fstype $facet) == zfs ]] && return 0
4910
4911         do_facet $facet "touch \"${device}\""
4912 }
4913
4914 format_mgs() {
4915         local quiet
4916
4917         if ! $VERBOSE; then
4918                 quiet=yes
4919         fi
4920         echo "Format mgs: $(mgsdevname)"
4921         reformat_external_journal mgs
4922
4923         # touch "device" in case it is a loopback file for testing and needs to
4924         # be created. mkfs.lustre doesn't do this to avoid accidentally writing
4925         # to non-existent files in /dev if the admin made a typo during setup
4926         __touch_device mgs
4927
4928         add mgs $(mkfs_opts mgs $(mgsdevname)) $(mountfs_opts mgs) --reformat \
4929                 $(mgsdevname) $(mgsvdevname) ${quiet:+>/dev/null} || exit 10
4930 }
4931
4932 format_mdt() {
4933         local num=$1
4934         local quiet
4935
4936         if ! $VERBOSE; then
4937                 quiet=yes
4938         fi
4939         echo "Format mds$num: $(mdsdevname $num)"
4940         reformat_external_journal mds$num
4941
4942         __touch_device mds $num
4943
4944         add mds$num $(mkfs_opts mds$num $(mdsdevname ${num})) \
4945                 $(mountfs_opts mds$num) --reformat $(mdsdevname $num) \
4946                 $(mdsvdevname $num) ${quiet:+>/dev/null} || exit 10
4947 }
4948
4949 format_ost() {
4950         local num=$1
4951
4952         if ! $VERBOSE; then
4953                 quiet=yes
4954         fi
4955         echo "Format ost$num: $(ostdevname $num)"
4956         reformat_external_journal ost$num
4957
4958         __touch_device ost $num
4959
4960         add ost$num $(mkfs_opts ost$num $(ostdevname ${num})) \
4961                 $(mountfs_opts ost$num) --reformat $(ostdevname $num) \
4962                 $(ostvdevname ${num}) ${quiet:+>/dev/null} || exit 10
4963 }
4964
4965 formatall() {
4966         stopall -f
4967         # Set hostid for ZFS/SPL zpool import protection
4968         # (Assumes MDS version is also OSS version)
4969         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ];
4970         then
4971                 do_rpc_nodes "$(comma_list $(all_server_nodes))" set_hostid
4972         fi
4973
4974         # We need ldiskfs here, may as well load them all
4975         load_modules
4976         [ -n "$CLIENTONLY" ] && return
4977         echo Formatting mgs, mds, osts
4978         if ! combined_mgs_mds ; then
4979                 format_mgs
4980         fi
4981
4982         for num in $(seq $MDSCOUNT); do
4983                 format_mdt $num
4984         done
4985
4986         export OST_INDICES=($(hostlist_expand "$OST_INDEX_LIST"))
4987         check_ost_indices
4988         for num in $(seq $OSTCOUNT); do
4989                 format_ost $num
4990         done
4991 }
4992
4993 mount_client() {
4994         grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
4995 }
4996
4997 umount_client() {
4998         grep " $1 " /proc/mounts && zconf_umount $HOSTNAME $*
4999 }
5000
5001 # return value:
5002 # 0: success, the old identity set already.
5003 # 1: success, the old identity does not set.
5004 # 2: fail.
5005 switch_identity() {
5006     local num=$1
5007     local switch=$2
5008     local j=`expr $num - 1`
5009     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
5010
5011     if [ -z "$MDT" ]; then
5012         return 2
5013     fi
5014
5015     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
5016
5017     if $switch; then
5018         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
5019     else
5020         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
5021     fi
5022
5023     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
5024
5025     if [ $old = "NONE" ]; then
5026         return 1
5027     else
5028         return 0
5029     fi
5030 }
5031
5032 remount_client()
5033 {
5034         zconf_umount $HOSTNAME $1 || error "umount failed"
5035         zconf_mount $HOSTNAME $1 || error "mount failed"
5036 }
5037
5038 writeconf_facet() {
5039         local facet=$1
5040         local dev=$2
5041
5042         stop ${facet} -f
5043         rm -f $TMP/${facet}active
5044         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" || return 1
5045         return 0
5046 }
5047
5048 writeconf_all () {
5049         local mdt_count=${1:-$MDSCOUNT}
5050         local ost_count=${2:-$OSTCOUNT}
5051         local rc=0
5052
5053         for num in $(seq $mdt_count); do
5054                 DEVNAME=$(mdsdevname $num)
5055                 writeconf_facet mds$num $DEVNAME || rc=$?
5056         done
5057
5058         for num in $(seq $ost_count); do
5059                 DEVNAME=$(ostdevname $num)
5060                 writeconf_facet ost$num $DEVNAME || rc=$?
5061         done
5062         return $rc
5063 }
5064
5065 mountmgs() {
5066         if ! combined_mgs_mds ; then
5067                 start mgs $(mgsdevname) $MGS_MOUNT_OPTS
5068         fi
5069 }
5070
5071 mountmds() {
5072         local num
5073         local devname
5074         local host
5075         local varname
5076         for num in $(seq $MDSCOUNT); do
5077                 devname=$(mdsdevname $num)
5078                 start mds$num $devname $MDS_MOUNT_OPTS
5079
5080                 # We started mds$num, now we should set mds${num}_HOST
5081                 # and mds${num}failover_HOST variables properly if they
5082                 # are not set.
5083                 host=$(facet_host mds$num)
5084                 for varname in mds${num}_HOST mds${num}failover_HOST; do
5085                         if [[ -z "${!varname}" ]]; then
5086                                 eval $varname=$host
5087                         fi
5088                 done
5089                 if [ $IDENTITY_UPCALL != "default" ]; then
5090                         switch_identity $num $IDENTITY_UPCALL
5091                 fi
5092         done
5093 }
5094
5095 mountoss() {
5096         local num
5097         local devname
5098         local host
5099         local varname
5100         for num in $(seq $OSTCOUNT); do
5101                 devname=$(ostdevname $num)
5102                 start ost$num $devname $OST_MOUNT_OPTS
5103
5104                 # We started ost$num, now we should set ost${num}_HOST
5105                 # and ost${num}failover_HOST variables properly if they
5106                 # are not set.
5107                 host=$(facet_host ost$num)
5108                 for varname in ost${num}_HOST ost${num}failover_HOST; do
5109                         if [[ -z "${!varname}" ]]; then
5110                                 eval $varname=$host
5111                         fi
5112                 done
5113         done
5114 }
5115
5116 mountcli() {
5117         [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
5118         if [ ! -z $arg1 ]; then
5119                 [ "$arg1" = "server_only" ] && return
5120         fi
5121         mount_client $MOUNT
5122         if [ -n "$CLIENTS" ]; then
5123                 zconf_mount_clients $CLIENTS $MOUNT
5124         fi
5125         clients_up
5126
5127         if [ "$MOUNT_2" ]; then
5128                 mount_client $MOUNT2
5129                 if [ -n "$CLIENTS" ]; then
5130                         zconf_mount_clients $CLIENTS $MOUNT2
5131                 fi
5132         fi
5133 }
5134
5135 sk_nodemap_setup() {
5136         local sk_map_name=${1:-$SK_S2SNM}
5137         local sk_map_nodes=${2:-$HOSTNAME}
5138         do_node $(mgs_node) "$LCTL nodemap_add $sk_map_name"
5139         for servernode in $sk_map_nodes; do
5140                 local nids=$(do_nodes $servernode "$LCTL list_nids")
5141                 for nid in $nids; do
5142                         do_node $(mgs_node) "$LCTL nodemap_add_range --name \
5143                                 $sk_map_name --range $nid"
5144                 done
5145         done
5146 }
5147
5148 setupall() {
5149         local arg1=$1
5150
5151         nfs_client_mode && return
5152         cifs_client_mode && return
5153
5154         sanity_mount_check || error "environments are insane!"
5155
5156         load_modules
5157
5158         init_gss
5159
5160         if [ -z "$CLIENTONLY" ]; then
5161                 echo Setup mgs, mdt, osts
5162                 echo $WRITECONF | grep -q "writeconf" && writeconf_all
5163
5164                 if $SK_MOUNTED; then
5165                         echo "Shared Key file system already mounted"
5166                 else
5167                         mountmgs
5168                         mountmds
5169                         mountoss
5170                         if $SHARED_KEY; then
5171                                 export SK_MOUNTED=true
5172                         fi
5173                 fi
5174                 if $GSS_SK; then
5175                         echo "GSS_SK: setting kernel keyring perms"
5176                         do_nodes $(comma_list $(all_nodes)) \
5177                                 "keyctl show | grep lustre | cut -c1-11 |
5178                                 sed -e 's/ //g;' |
5179                                 xargs -IX keyctl setperm X 0x3f3f3f3f"
5180
5181                         if $SK_S2S; then
5182                                 # Need to start one nodemap for servers,
5183                                 # and one for clients.
5184                                 sk_nodemap_setup $SK_S2SNM \
5185                                         $(comma_list $(all_server_nodes))
5186                                 mountcli
5187                                 sk_nodemap_setup $SK_S2SNMCLI \
5188                                         ${CLIENTS:-$HOSTNAME}
5189                                 echo "Nodemap set up for SK S2S, remounting."
5190                                 stopall
5191                                 mountmgs
5192                                 mountmds
5193                                 mountoss
5194                         fi
5195                 fi
5196         fi
5197
5198         # wait a while to allow sptlrpc configuration be propogated to targets,
5199         # only needed when mounting new target devices.
5200         if $GSS; then
5201                 sleep 10
5202         fi
5203
5204         mountcli
5205         init_param_vars
5206
5207         # by remounting mdt before ost, initial connect from mdt to ost might
5208         # timeout because ost is not ready yet. wait some time to its fully
5209         # recovery. initial obd_connect timeout is 5s; in GSS case it's
5210         # preceeded by a context negotiation rpc with $TIMEOUT.
5211         # FIXME better by monitoring import status.
5212         if $GSS; then
5213                 if $GSS_SK; then
5214                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
5215                         set_rule $FSNAME any cli2ost $SK_FLAVOR
5216                         if $SK_SKIPFIRST; then
5217                                 export SK_SKIPFIRST=false
5218
5219                                 sleep 30
5220                                 do_nodes $CLIENTS \
5221                                          "lctl set_param osc.*.idle_connect=1"
5222                                 return
5223                         else
5224                                 wait_flavor cli2mdt $SK_FLAVOR
5225                                 wait_flavor cli2ost $SK_FLAVOR
5226                         fi
5227                 else
5228                         set_flavor_all $SEC
5229                 fi
5230                 sleep $((TIMEOUT + 5))
5231         else
5232                 sleep 5
5233         fi
5234 }
5235
5236 mounted_lustre_filesystems() {
5237         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
5238 }
5239
5240 init_facet_vars () {
5241         [ -n "$CLIENTONLY" ] && return 0
5242         local facet=$1
5243         shift
5244         local device=$1
5245
5246         shift
5247
5248         eval export ${facet}_dev=${device}
5249         eval export ${facet}_opt=\"$@\"
5250
5251         local dev=${facet}_dev
5252
5253         # We need to loop for the label
5254         # in case its not initialized yet.
5255         for wait_time in {0,1,3,5,10}; do
5256
5257                 if [ $wait_time -gt 0 ]; then
5258                         echo "${!dev} not yet initialized,"\
5259                                 "waiting ${wait_time} seconds."
5260                         sleep $wait_time
5261                 fi
5262
5263                 local label=$(devicelabel ${facet} ${!dev})
5264
5265                 # Check to make sure the label does
5266                 # not include ffff at the end of the label.
5267                 # This indicates it has not been initialized yet.
5268
5269                 if [[ $label =~ [f|F]{4}$ ]]; then
5270                         # label is not initialized, unset the result
5271                         # and either try again or fail
5272                         unset label
5273                 else
5274                         break
5275                 fi
5276         done
5277
5278         [ -z "$label" ] && echo no label for ${!dev} && exit 1
5279
5280         eval export ${facet}_svc=${label}
5281
5282         local varname=${facet}failover_HOST
5283         if [ -z "${!varname}" ]; then
5284                 local temp
5285                 if combined_mgs_mds && [ $facet == "mgs" ] &&
5286                    [ -n "$mds1failover_HOST" ]; then
5287                         temp=$mds1failover_HOST
5288                 else
5289                         temp=$(facet_host $facet)
5290                 fi
5291                 eval export $varname=$temp
5292         fi
5293
5294         varname=${facet}_HOST
5295         if [ -z "${!varname}" ]; then
5296                 eval export $varname=$(facet_host $facet)
5297         fi
5298
5299         # ${facet}failover_dev is set in cfg file
5300         varname=${facet}failover_dev
5301         if [ -n "${!varname}" ] ; then
5302                 eval export ${facet}failover_dev=${!varname}
5303         else
5304                 eval export ${facet}failover_dev=$device
5305         fi
5306
5307         # get mount point of already mounted device
5308         # is facet_dev is already mounted then use the real
5309         #  mount point of this facet; otherwise use $(facet_mntpt $facet)
5310         # i.e. ${facet}_MOUNT if specified by user or default
5311         local mntpt=$(do_facet ${facet} cat /proc/mounts | \
5312                         awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
5313         if [ -z $mntpt ]; then
5314                 mntpt=$(facet_mntpt $facet)
5315         fi
5316         eval export ${facet}_MOUNT=$mntpt
5317 }
5318
5319 init_facets_vars () {
5320         local DEVNAME
5321
5322         if ! remote_mds_nodsh; then
5323                 for num in $(seq $MDSCOUNT); do
5324                         DEVNAME=$(mdsdevname $num)
5325                         init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
5326                 done
5327         fi
5328
5329         init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
5330
5331         if ! remote_ost_nodsh; then
5332                 for num in $(seq $OSTCOUNT); do
5333                         DEVNAME=$(ostdevname $num)
5334                         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
5335                 done
5336         fi
5337 }
5338
5339 init_facets_vars_simple () {
5340         local devname
5341
5342         if ! remote_mds_nodsh; then
5343                 for num in $(seq $MDSCOUNT); do
5344                         devname=$(mdsdevname $num)
5345                         eval export mds${num}_dev=${devname}
5346                         eval export mds${num}_opt=\"${MDS_MOUNT_OPTS}\"
5347                 done
5348         fi
5349
5350         if ! combined_mgs_mds ; then
5351                 eval export mgs_dev=$(mgsdevname)
5352                 eval export mgs_opt=\"${MGS_MOUNT_OPTS}\"
5353         fi
5354
5355         if ! remote_ost_nodsh; then
5356                 for num in $(seq $OSTCOUNT); do
5357                         devname=$(ostdevname $num)
5358                         eval export ost${num}_dev=${devname}
5359                         eval export ost${num}_opt=\"${OST_MOUNT_OPTS}\"
5360                 done
5361         fi
5362 }
5363
5364 osc_ensure_active () {
5365     local facet=$1
5366     local timeout=$2
5367     local period=0
5368
5369     while [ $period -lt $timeout ]; do
5370         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
5371         if [ $count -eq 0 ]; then
5372             break
5373         fi
5374
5375         echo "There are $count OST are inactive, wait $period seconds, and try again"
5376         sleep 3
5377         period=$((period+3))
5378     done
5379
5380     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
5381 }
5382
5383 set_conf_param_and_check() {
5384         local myfacet=$1
5385         local TEST=$2
5386         local PARAM=$3
5387         local ORIG=$(do_facet $myfacet "$TEST")
5388         if [ $# -gt 3 ]; then
5389                 local FINAL=$4
5390         else
5391                 local -i FINAL
5392                 FINAL=$((ORIG + 5))
5393         fi
5394         echo "Setting $PARAM from $ORIG to $FINAL"
5395         do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
5396                 error "conf_param $PARAM failed"
5397
5398         wait_update_facet $myfacet "$TEST" "$FINAL" ||
5399                 error "check $PARAM failed!"
5400 }
5401
5402 set_persistent_param() {
5403         local myfacet=$1
5404         local test_param=$2
5405         local param=$3
5406         local orig=$(do_facet $myfacet "$LCTL get_param -n $test_param")
5407
5408         if [ $# -gt 3 ]; then
5409                 local final=$4
5410         else
5411                 local -i final
5412                 final=$((orig + 5))
5413         fi
5414
5415         if [[ $PERM_CMD == *"set_param -P"* ]]; then
5416                 echo "Setting $test_param from $orig to $final"
5417                 do_facet mgs "$PERM_CMD $test_param='$final'" ||
5418                         error "$PERM_CMD $test_param failed"
5419         else
5420                 echo "Setting $param from $orig to $final"
5421                 do_facet mgs "$PERM_CMD $param='$final'" ||
5422                         error "$PERM_CMD $param failed"
5423         fi
5424 }
5425
5426 set_persistent_param_and_check() {
5427         local myfacet=$1
5428         local test_param=$2
5429         local param=$3
5430         local orig=$(do_facet $myfacet "$LCTL get_param -n $test_param")
5431
5432         if [ $# -gt 3 ]; then
5433                 local final=$4
5434         else
5435                 local -i final
5436                 final=$((orig + 5))
5437         fi
5438
5439         set_persistent_param $myfacet $test_param $param "$final"
5440
5441         wait_update_facet $myfacet "$LCTL get_param -n $test_param" "$final" ||
5442                 error "check $param failed!"
5443 }
5444
5445 init_param_vars () {
5446         TIMEOUT=$(lctl get_param -n timeout)
5447         TIMEOUT=${TIMEOUT:-20}
5448
5449         if [ -n "$arg1" ]; then
5450                 [ "$arg1" = "server_only" ] && return
5451         fi
5452
5453         remote_mds_nodsh && log "Using TIMEOUT=$TIMEOUT" && return 0
5454
5455         TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
5456         log "Using TIMEOUT=$TIMEOUT"
5457
5458         # tune down to speed up testing on (usually) small setups
5459         local mgc_timeout=/sys/module/mgc/parameters/mgc_requeue_timeout_min
5460         do_nodes $(comma_list $(nodes_list)) \
5461                 "[ -f $mgc_timeout ] && echo 1 > $mgc_timeout; exit 0"
5462
5463         osc_ensure_active $SINGLEMDS $TIMEOUT
5464         osc_ensure_active client $TIMEOUT
5465         $LCTL set_param osc.*.idle_timeout=debug
5466
5467         if [ -n "$(lctl get_param -n mdc.*.connect_flags|grep jobstats)" ]; then
5468                 local current_jobid_var=$($LCTL get_param -n jobid_var)
5469
5470                 if [ $JOBID_VAR = "existing" ]; then
5471                         echo "keeping jobstats as $current_jobid_var"
5472                 elif [ $current_jobid_var != $JOBID_VAR ]; then
5473                         echo "setting jobstats to $JOBID_VAR"
5474
5475                         set_persistent_param_and_check client \
5476                                 "jobid_var" "$FSNAME.sys.jobid_var" $JOBID_VAR
5477                 fi
5478         else
5479                 echo "jobstats not supported by server"
5480         fi
5481
5482         if [ $QUOTA_AUTO -ne 0 ]; then
5483                 if [ "$ENABLE_QUOTA" ]; then
5484                         echo "enable quota as required"
5485                         setup_quota $MOUNT || return 2
5486                 else
5487                         echo "disable quota as required"
5488                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
5489                 fi
5490         fi
5491
5492         (( MDS1_VERSION <= $(version_code 2.13.52) )) ||
5493                 do_facet mgs "$LCTL set_param -P lod.*.mdt_hash=crush"
5494         return 0
5495 }
5496
5497 nfs_client_mode () {
5498     if [ "$NFSCLIENT" ]; then
5499         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
5500         local clients=$CLIENTS
5501         [ -z $clients ] && clients=$(hostname)
5502
5503         # FIXME: remove hostname when 19215 fixed
5504         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
5505         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
5506         if [[ ${#nfsexport[@]} -eq 0 ]]; then
5507                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
5508         fi
5509         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
5510         return
5511     fi
5512     return 1
5513 }
5514
5515 cifs_client_mode () {
5516         [ x$CIFSCLIENT = xyes ] &&
5517                 echo "CIFSCLIENT=$CIFSCLIENT mode: setup, cleanup, check config skipped"
5518 }
5519
5520 check_config_client () {
5521     local mntpt=$1
5522
5523     local mounted=$(mount | grep " $mntpt ")
5524     if [ -n "$CLIENTONLY" ]; then
5525         # bug 18021
5526         # CLIENTONLY should not depend on *_HOST settings
5527         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
5528         # in theory someone could create a new,
5529         # client-only config file that assumed lustre was already
5530         # configured and didn't set the MGSNID. If MGSNID is not set,
5531         # then we should use the mgs nid currently being used
5532         # as the default value. bug 18021
5533         [[ x$MGSNID = x ]] &&
5534             MGSNID=${mgc//MGC/}
5535
5536         if [[ x$mgc != xMGC$MGSNID ]]; then
5537             if [ "$mgs_HOST" ]; then
5538                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
5539 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
5540 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
5541             fi
5542         fi
5543         return 0
5544     fi
5545
5546     echo Checking config lustre mounted on $mntpt
5547     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
5548     mgshost=$(echo $mgshost | awk -F: '{print $1}')
5549
5550 }
5551
5552 check_config_clients () {
5553         local clients=${CLIENTS:-$HOSTNAME}
5554         local mntpt=$1
5555
5556         nfs_client_mode && return
5557         cifs_client_mode && return
5558
5559         do_rpc_nodes "$clients" check_config_client $mntpt
5560
5561         sanity_mount_check || error "environments are insane!"
5562 }
5563
5564 check_timeout () {
5565     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
5566     local cltimeout=$(lctl get_param -n timeout)
5567     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
5568         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
5569         return 1
5570     fi
5571 }
5572
5573 is_mounted () {
5574         local mntpt=$1
5575         [ -z $mntpt ] && return 1
5576         local mounted=$(mounted_lustre_filesystems)
5577
5578         echo $mounted' ' | grep -w -q $mntpt' '
5579 }
5580
5581 create_pools () {
5582         local pool=$1
5583         local ostsn=${2:-$OSTCOUNT}
5584         local npools=${FS_NPOOLS:-$((OSTCOUNT / ostsn))}
5585         local n
5586
5587         echo ostsn=$ostsn npools=$npools
5588         if [[ $ostsn -gt $OSTCOUNT ]];  then
5589                 echo "request to use $ostsn OSTs in the pool, \
5590                         using max available OSTCOUNT=$OSTCOUNT"
5591                 ostsn=$OSTCOUNT
5592         fi
5593         for (( n=0; n < $npools; n++ )); do
5594                 p=${pool}$n
5595                 if ! $DELETE_OLD_POOLS; then
5596                         log "request to not delete old pools: $FSNAME.$p exist?"
5597                         if ! check_pool_not_exist $FSNAME.$p; then
5598                                 echo "Using existing $FSNAME.$p"
5599                                 $LCTL pool_list $FSNAME.$p
5600                                 continue
5601                         fi
5602                 fi
5603                 create_pool $FSNAME.$p $KEEP_POOLS ||
5604                         error "create_pool $FSNAME.$p failed"
5605
5606                 local first=$(( (n * ostsn) % OSTCOUNT ))
5607                 local last=$(( (first + ostsn - 1) % OSTCOUNT ))
5608                 if [[ $first -le $last ]]; then
5609                         pool_add_targets $p $first $last ||
5610                                 error "pool_add_targets $p $first $last failed"
5611                 else
5612                         pool_add_targets $p $first $(( OSTCOUNT - 1 )) ||
5613                                 error "pool_add_targets $p $first \
5614                                         $(( OSTCOUNT - 1 )) failed"
5615                         pool_add_targets $p 0 $last ||
5616                                 error "pool_add_targets $p 0 $last failed"
5617                 fi
5618         done
5619 }
5620
5621 set_pools_quota () {
5622         local u
5623         local o
5624         local p
5625         local i
5626         local j
5627
5628         [[ $ENABLE_QUOTA ]] || error "Required Pool Quotas: \
5629                 $POOLS_QUOTA_USERS_SET, but ENABLE_QUOTA not set!"
5630
5631         # POOLS_QUOTA_USERS_SET=
5632         #              "quota15_1:20M          -- for all of the found pools
5633         #               quota15_2:1G:gpool0
5634         #               quota15_3              -- for global limit only
5635         #               quota15_4:200M:gpool0
5636         #               quota15_4:200M:gpool1"
5637
5638         declare -a pq_userset=(${POOLS_QUOTA_USERS_SET="mpiuser"})
5639         declare -a pq_users
5640         declare -A pq_limits
5641
5642         for ((i=0; i<${#pq_userset[@]}; i++)); do
5643                 u=${pq_userset[i]%%:*}
5644                 o=""
5645                 # user gets no pool limits if
5646                 # POOLS_QUOTA_USERS_SET does not specify it
5647                 [[ ${pq_userset[i]} =~ : ]] && o=${pq_userset[i]##$u:}
5648                 pq_limits[$u]+=" $o"
5649         done
5650         pq_users=(${!pq_limits[@]})
5651
5652         declare -a opts
5653         local pool
5654
5655         for ((i=0; i<${#pq_users[@]}; i++)); do
5656                 u=${pq_users[i]}
5657                 # set to max limit (_u64)
5658                 $LFS setquota -u $u -B $((2**24 - 1))T $DIR
5659                 opts=(${pq_limits[$u]})
5660                 for ((j=0; j<${#opts[@]}; j++)); do
5661                         p=${opts[j]##*:}
5662                         o=${opts[j]%%:*}
5663                         # Set limit for all existing pools if
5664                         # no pool specified
5665                         if [ $p == $o ];  then
5666                                 p=$(list_pool $FSNAME | sed "s/$FSNAME.//")
5667                                 echo "No pool specified for $u,
5668                                         set limit $o for all existing pools"
5669                         fi
5670                         for pool in $p; do
5671                                 $LFS setquota -u $u -B $o --pool $pool $DIR ||
5672                                         error "setquota -u $u -B $o \
5673                                                 --pool $pool failed"
5674                         done
5675                 done
5676                 $LFS quota -uv $u --pool  $DIR
5677         done
5678 }
5679
5680 check_and_setup_lustre() {
5681         sanitize_parameters
5682         nfs_client_mode && return
5683         cifs_client_mode && return
5684
5685         local MOUNTED=$(mounted_lustre_filesystems)
5686
5687         local do_check=true
5688         # 1.
5689         # both MOUNT and MOUNT2 are not mounted
5690         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5691                 [ "$REFORMAT" = "yes" ] && CLEANUP_DM_DEV=true formatall
5692                 # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
5693                 setupall
5694                 is_mounted $MOUNT || error "NAME=$NAME not mounted"
5695                 export I_MOUNTED=yes
5696                 do_check=false
5697     # 2.
5698     # MOUNT2 is mounted
5699     elif is_mounted $MOUNT2; then
5700             # 3.
5701             # MOUNT2 is mounted, while MOUNT_2 is not set
5702             if ! [ "$MOUNT_2" ]; then
5703                 cleanup_mount $MOUNT2
5704                 export I_UMOUNTED2=yes
5705
5706             # 4.
5707             # MOUNT2 is mounted, MOUNT_2 is set
5708             else
5709                 # FIXME: what to do if check_config failed?
5710                 # i.e. if:
5711                 # 1) remote client has mounted other Lustre fs ?
5712                 # 2) it has insane env ?
5713                 # let's try umount MOUNT2 on all clients and mount it again:
5714                 if ! check_config_clients $MOUNT2; then
5715                     cleanup_mount $MOUNT2
5716                     restore_mount $MOUNT2
5717                     export I_MOUNTED2=yes
5718                 fi
5719             fi
5720
5721     # 5.
5722     # MOUNT is mounted MOUNT2 is not mounted
5723     elif [ "$MOUNT_2" ]; then
5724         restore_mount $MOUNT2
5725         export I_MOUNTED2=yes
5726     fi
5727
5728         if $do_check; then
5729                 # FIXME: what to do if check_config failed?
5730                 # i.e. if:
5731                 # 1) remote client has mounted other Lustre fs?
5732                 # 2) lustre is mounted on remote_clients atall ?
5733                 check_config_clients $MOUNT
5734                 init_facets_vars
5735                 init_param_vars
5736
5737                 set_default_debug_nodes $(comma_list $(nodes_list))
5738                 set_params_clients
5739         fi
5740
5741         if [ -z "$CLIENTONLY" -a $(lower $OSD_TRACK_DECLARES_LBUG) == 'yes' ]; then
5742                 local facets=""
5743                 [ "$(facet_fstype ost1)" = "ldiskfs" ] &&
5744                         facets="$(get_facets OST)"
5745                 [ "$(facet_fstype mds1)" = "ldiskfs" ] &&
5746                         facets="$facets,$(get_facets MDS)"
5747                 [ "$(facet_fstype mgs)" = "ldiskfs" ] &&
5748                         facets="$facets,mgs"
5749                 local nodes="$(facets_hosts ${facets})"
5750                 if [ -n "$nodes" ] ; then
5751                         do_nodes $nodes "$LCTL set_param \
5752                                  osd-ldiskfs.track_declares_assert=1 || true"
5753                 fi
5754         fi
5755
5756         if [ -n "$fs_STRIPEPARAMS" ]; then
5757                 setstripe_getstripe $MOUNT $fs_STRIPEPARAMS
5758         fi
5759         if $GSS_SK; then
5760                 set_flavor_all null
5761         elif $GSS; then
5762                 set_flavor_all $SEC
5763         fi
5764
5765         if $DELETE_OLD_POOLS; then
5766                 destroy_all_pools
5767         fi
5768         if [[ -n "$FS_POOL" ]]; then
5769                 create_pools $FS_POOL $FS_POOL_NOSTS
5770         fi
5771
5772         if [[ -n "$POOLS_QUOTA_USERS_SET" ]]; then
5773                 set_pools_quota
5774         fi
5775         if [ "$ONLY" == "setup" ]; then
5776                 exit 0
5777         fi
5778 }
5779
5780 restore_mount () {
5781    local clients=${CLIENTS:-$HOSTNAME}
5782    local mntpt=$1
5783
5784    zconf_mount_clients $clients $mntpt
5785 }
5786
5787 cleanup_mount () {
5788         local clients=${CLIENTS:-$HOSTNAME}
5789         local mntpt=$1
5790
5791         zconf_umount_clients $clients $mntpt
5792 }
5793
5794 cleanup_and_setup_lustre() {
5795     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
5796         lctl set_param debug=0 || true
5797         cleanupall
5798         if [ "$ONLY" == "cleanup" ]; then
5799             exit 0
5800         fi
5801     fi
5802     check_and_setup_lustre
5803 }
5804
5805 # Run e2fsck on MDT or OST device.
5806 run_e2fsck() {
5807         local node=$1
5808         local target_dev=$2
5809         local extra_opts=$3
5810         local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
5811         local log=$TMP/e2fsck.log
5812         local rc=0
5813
5814         # turn on pfsck if it is supported
5815         do_node $node $E2FSCK -h 2>&1 | grep -qw -- -m && cmd+=" -m8"
5816         echo $cmd
5817         do_node $node $cmd 2>&1 | tee $log
5818         rc=${PIPESTATUS[0]}
5819         if [ -n "$(grep "DNE mode isn't supported" $log)" ]; then
5820                 rm -f $log
5821                 if [ $MDSCOUNT -gt 1 ]; then
5822                         skip_noexit "DNE mode isn't supported!"
5823                         cleanupall
5824                         exit_status
5825                 else
5826                         error "It's not DNE mode."
5827                 fi
5828         fi
5829         rm -f $log
5830
5831         [ $rc -le $FSCK_MAX_ERR ] ||
5832                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
5833
5834         return 0
5835 }
5836
5837 #
5838 # Run resize2fs on MDT or OST device.
5839 #
5840 run_resize2fs() {
5841         local facet=$1
5842         local device=$2
5843         local size=$3
5844         shift 3
5845         local opts="$@"
5846
5847         do_facet $facet "$RESIZE2FS $opts $device $size"
5848 }
5849
5850 # verify a directory is shared among nodes.
5851 check_shared_dir() {
5852         local dir=$1
5853         local list=${2:-$(comma_list $(nodes_list))}
5854
5855         [ -z "$dir" ] && return 1
5856         do_rpc_nodes "$list" check_logdir $dir
5857         check_write_access $dir "$list" || return 1
5858         return 0
5859 }
5860
5861 run_lfsck() {
5862         do_nodes $(comma_list $(mdts_nodes) $(osts_nodes)) \
5863                 $LCTL set_param printk=+lfsck
5864         do_facet $SINGLEMDS "$LCTL lfsck_start -M $FSNAME-MDT0000 -r -A -t all"
5865
5866         for k in $(seq $MDSCOUNT); do
5867                 # wait up to 10+1 minutes for LFSCK to complete
5868                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5869                         mdd.$(facet_svc mds${k}).lfsck_layout |
5870                         awk '/^status/ { print \\\$2 }'" "completed" 600 ||
5871                         error "MDS${k} layout isn't the expected 'completed'"
5872                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5873                         mdd.$(facet_svc mds${k}).lfsck_namespace |
5874                         awk '/^status/ { print \\\$2 }'" "completed" 60 ||
5875                         error "MDS${k} namespace isn't the expected 'completed'"
5876         done
5877         local rep_mdt=$(do_nodes $(comma_list $(mdts_nodes)) \
5878                         $LCTL get_param -n mdd.$FSNAME-*.lfsck_* |
5879                         awk '/repaired/ { print $2 }' | calc_sum)
5880         local rep_ost=$(do_nodes $(comma_list $(osts_nodes)) \
5881                         $LCTL get_param -n obdfilter.$FSNAME-*.lfsck_* |
5882                         awk '/repaired/ { print $2 }' | calc_sum)
5883         local repaired=$((rep_mdt + rep_ost))
5884         [ $repaired -eq 0 ] ||
5885                 error "lfsck repaired $rep_mdt MDT and $rep_ost OST errors"
5886 }
5887
5888 dump_file_contents() {
5889         local nodes=$1
5890         local dir=$2
5891         local logname=$3
5892         local node
5893
5894         if [ -z "$nodes" -o -z "$dir" -o -z "$logname" ]; then
5895                 error_noexit false \
5896                         "Invalid parameters for dump_file_contents()"
5897                 return 1
5898         fi
5899         for node in ${nodes}; do
5900                 do_node $node "for i in \\\$(find $dir -type f); do
5901                                 echo ====\\\${i}=======================;
5902                                 cat \\\${i};
5903                                 done" >> ${logname}.${node}.log
5904         done
5905 }
5906
5907 dump_command_output() {
5908         local nodes=$1
5909         local cmd=$2
5910         local logname=$3
5911         local node
5912
5913         if [ -z "$nodes" -o -z "$cmd" -o -z "$logname" ]; then
5914                 error_noexit false \
5915                         "Invalid parameters for dump_command_output()"
5916                 return 1
5917         fi
5918
5919         for node in ${nodes}; do
5920                 do_node $node "echo ====${cmd}=======================;
5921                                 $cmd" >> ${logname}.${node}.log
5922         done
5923 }
5924
5925 log_zfs_info() {
5926         local logname=$1
5927
5928         # dump file contents from /proc/spl in case of zfs test
5929         if [ "$(facet_fstype ost1)" = "zfs" ]; then
5930                 dump_file_contents "$(osts_nodes)" "/proc/spl" "${logname}"
5931                 dump_command_output \
5932                         "$(osts_nodes)" "zpool events -v" "${logname}"
5933         fi
5934
5935         if [ "$(facet_fstype $SINGLEMDS)" = "zfs" ]; then
5936                 dump_file_contents "$(mdts_nodes)" "/proc/spl" "${logname}"
5937                 dump_command_output \
5938                         "$(mdts_nodes)" "zpool events -v" "${logname}"
5939         fi
5940 }
5941
5942 check_and_cleanup_lustre() {
5943         if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "sanity-lfsck" -a \
5944              "$TESTSUITE" != "sanity-scrub" ]; then
5945                 run_lfsck
5946         fi
5947
5948         if is_mounted $MOUNT; then
5949                 if $DO_CLEANUP; then
5950                         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
5951                                 error "remove sub-test dirs failed"
5952                 else
5953                         echo "skip cleanup"
5954                 fi
5955                 [ "$ENABLE_QUOTA" ] && restore_quota || true
5956         fi
5957
5958         if [ "$I_UMOUNTED2" = "yes" ]; then
5959                 restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
5960         fi
5961
5962         if [ "$I_MOUNTED2" = "yes" ]; then
5963                 cleanup_mount $MOUNT2
5964         fi
5965
5966         if [[ "$I_MOUNTED" = "yes" ]] && ! $AUSTER_CLEANUP; then
5967                 cleanupall -f || error "cleanup failed"
5968                 unset I_MOUNTED
5969         fi
5970 }
5971
5972 #######
5973 # General functions
5974
5975 wait_for_function () {
5976         local quiet=""
5977
5978         # suppress fn both stderr and stdout
5979         if [ "$1" = "--quiet" ]; then
5980                 shift
5981                 quiet=" > /dev/null 2>&1"
5982         fi
5983
5984         local fn=$1
5985         local max=${2:-900}
5986         local sleep=${3:-5}
5987
5988         local wait=0
5989
5990         while true; do
5991
5992                 eval $fn $quiet && return 0
5993
5994                 [ $wait -lt $max ] || return 1
5995                 echo waiting $fn, $((max - wait)) secs left ...
5996                 wait=$((wait + sleep))
5997                 [ $wait -gt $max ] && ((sleep -= wait - max))
5998                 sleep $sleep
5999         done
6000 }
6001
6002 check_network() {
6003         local host=$1
6004         local max=$2
6005         local sleep=${3:-5}
6006
6007         [ "$host" = "$HOSTNAME" ] && return 0
6008
6009         if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep; then
6010                 echo "$(date +'%H:%M:%S (%s)') waited for $host network ${max}s"
6011                 exit 1
6012         fi
6013 }
6014
6015 no_dsh() {
6016     shift
6017     eval $@
6018 }
6019
6020 # Convert a space-delimited list to a comma-delimited list.  If the input is
6021 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
6022 comma_list() {
6023         # echo is used to convert newlines to spaces, since it doesn't
6024         # introduce a trailing space as using "tr '\n' ' '" does
6025         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
6026 }
6027
6028 list_member () {
6029     local list=$1
6030     local item=$2
6031     echo $list | grep -qw $item
6032 }
6033
6034 # list, excluded are the comma separated lists
6035 exclude_items_from_list () {
6036     local list=$1
6037     local excluded=$2
6038     local item
6039
6040     list=${list//,/ }
6041     for item in ${excluded//,/ }; do
6042         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
6043     done
6044     echo $(comma_list $list)
6045 }
6046
6047 # list, expand  are the comma separated lists
6048 expand_list () {
6049     local list=${1//,/ }
6050     local expand=${2//,/ }
6051     local expanded=
6052
6053     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
6054     echo $(comma_list $expanded)
6055 }
6056
6057 testslist_filter () {
6058     local script=$LUSTRE/tests/${TESTSUITE}.sh
6059
6060     [ -f $script ] || return 0
6061
6062     local start_at=$START_AT
6063     local stop_at=$STOP_AT
6064
6065     local var=${TESTSUITE//-/_}_START_AT
6066     [ x"${!var}" != x ] && start_at=${!var}
6067     var=${TESTSUITE//-/_}_STOP_AT
6068     [ x"${!var}" != x ] && stop_at=${!var}
6069
6070     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
6071         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
6072             /^'${start_at}'$/ {flag = 0}
6073             {if (flag == 1) print $0}
6074             /^'${stop_at}'$/ { flag = 1 }'
6075 }
6076
6077 absolute_path() {
6078     (cd `dirname $1`; echo $PWD/`basename $1`)
6079 }
6080
6081 get_facets () {
6082     local types=${1:-"OST MDS MGS"}
6083
6084     local list=""
6085
6086     for entry in $types; do
6087         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
6088         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
6089
6090         case $type in
6091                 MGS ) list="$list $name";;
6092             MDS|OST|AGT ) local count=${type}COUNT
6093                        for ((i=1; i<=${!count}; i++)) do
6094                           list="$list ${name}$i"
6095                       done;;
6096                   * ) error "Invalid facet type"
6097                  exit 1;;
6098         esac
6099     done
6100     echo $(comma_list $list)
6101 }
6102
6103 ##################################
6104 # Adaptive Timeouts funcs
6105
6106 at_is_enabled() {
6107     # only check mds, we assume at_max is the same on all nodes
6108     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
6109     if [ $at_max -eq 0 ]; then
6110         return 1
6111     else
6112         return 0
6113     fi
6114 }
6115
6116 at_get() {
6117     local facet=$1
6118     local at=$2
6119
6120     # suppose that all ost-s have the same $at value set
6121     [ $facet != "ost" ] || facet=ost1
6122
6123     do_facet $facet "lctl get_param -n $at"
6124 }
6125
6126 at_max_get() {
6127     at_get $1 at_max
6128 }
6129
6130 at_max_set() {
6131     local at_max=$1
6132     shift
6133
6134     local facet
6135     local hosts
6136     for facet in $@; do
6137         if [ $facet == "ost" ]; then
6138             facet=$(get_facets OST)
6139         elif [ $facet == "mds" ]; then
6140             facet=$(get_facets MDS)
6141         fi
6142         hosts=$(expand_list $hosts $(facets_hosts $facet))
6143     done
6144
6145     do_nodes $hosts lctl set_param at_max=$at_max
6146 }
6147
6148 ##################################
6149 # OBD_FAIL funcs
6150
6151 drop_request() {
6152 # OBD_FAIL_MDS_ALL_REQUEST_NET
6153     RC=0
6154     do_facet $SINGLEMDS lctl set_param fail_val=0 fail_loc=0x123
6155     do_facet client "$1" || RC=$?
6156     do_facet $SINGLEMDS lctl set_param fail_loc=0
6157     return $RC
6158 }
6159
6160 drop_reply() {
6161 # OBD_FAIL_MDS_ALL_REPLY_NET
6162         RC=0
6163         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x122
6164         eval "$@" || RC=$?
6165         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
6166         return $RC
6167 }
6168
6169 drop_reint_reply() {
6170 # OBD_FAIL_MDS_REINT_NET_REP
6171         RC=0
6172         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x119
6173         eval "$@" || RC=$?
6174         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
6175         return $RC
6176 }
6177
6178 drop_update_reply() {
6179 # OBD_FAIL_OUT_UPDATE_NET_REP
6180         local index=$1
6181         shift 1
6182         RC=0
6183         do_facet mds${index} lctl set_param fail_loc=0x1701
6184         do_facet client "$@" || RC=$?
6185         do_facet mds${index} lctl set_param fail_loc=0
6186         return $RC
6187 }
6188
6189 pause_bulk() {
6190 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
6191         RC=0
6192
6193         local timeout=${2:-0}
6194         # default is (obd_timeout / 4) if unspecified
6195         echo "timeout is $timeout/$2"
6196         do_facet ost1 lctl set_param fail_val=$timeout fail_loc=0x80000214
6197         do_facet client "$1" || RC=$?
6198         do_facet client "sync"
6199         do_facet ost1 lctl set_param fail_loc=0
6200         return $RC
6201 }
6202
6203 drop_ldlm_cancel() {
6204 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
6205         local RC=0
6206         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
6207         do_nodes $list lctl set_param fail_loc=0x304
6208
6209         do_facet client "$@" || RC=$?
6210
6211         do_nodes $list lctl set_param fail_loc=0
6212         return $RC
6213 }
6214
6215 drop_bl_callback_once() {
6216         local rc=0
6217         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
6218 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
6219         do_facet client lctl set_param fail_loc=0x80000305
6220         do_facet client "$@" || rc=$?
6221         do_facet client lctl set_param fail_loc=0
6222         do_facet client lctl set_param fail_val=0
6223         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
6224         return $rc
6225 }
6226
6227 drop_bl_callback() {
6228         rc=0
6229         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
6230 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
6231         do_facet client lctl set_param fail_loc=0x305
6232         do_facet client "$@" || rc=$?
6233         do_facet client lctl set_param fail_loc=0
6234         do_facet client lctl set_param fail_val=0
6235         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
6236         return $rc
6237 }
6238
6239 drop_mdt_ldlm_reply() {
6240 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
6241     RC=0
6242     local list=$(comma_list $(mdts_nodes))
6243     do_nodes $list lctl set_param fail_loc=0x157
6244
6245     do_facet client "$@" || RC=$?
6246
6247     do_nodes $list lctl set_param fail_loc=0
6248     return $RC
6249 }
6250
6251 drop_mdt_ldlm_reply_once() {
6252 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
6253     RC=0
6254     local list=$(comma_list $(mdts_nodes))
6255     do_nodes $list lctl set_param fail_loc=0x80000157
6256
6257     do_facet client "$@" || RC=$?
6258
6259     do_nodes $list lctl set_param fail_loc=0
6260     return $RC
6261 }
6262
6263 clear_failloc() {
6264     facet=$1
6265     pause=$2
6266     sleep $pause
6267     echo "clearing fail_loc on $facet"
6268     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
6269 }
6270
6271 set_nodes_failloc () {
6272         local fv=${3:-0}
6273         do_nodes $(comma_list $1)  lctl set_param fail_val=$fv fail_loc=$2
6274 }
6275
6276 cancel_lru_locks() {
6277         #$LCTL mark "cancel_lru_locks $1 start"
6278         $LCTL set_param -n ldlm.namespaces.*$1*.lru_size=clear
6279         $LCTL get_param ldlm.namespaces.*$1*.lock_unused_count | grep -v '=0'
6280         #$LCTL mark "cancel_lru_locks $1 stop"
6281 }
6282
6283 default_lru_size()
6284 {
6285         local nr_cpu=$(grep -c "processor" /proc/cpuinfo)
6286
6287         echo $((100 * nr_cpu))
6288 }
6289
6290 lru_resize_enable()
6291 {
6292     lctl set_param ldlm.namespaces.*$1*.lru_size=0
6293 }
6294
6295 lru_resize_disable()
6296 {
6297         local dev=${1}
6298         local lru_size=${2:-$(default_lru_size)}
6299
6300         $LCTL set_param ldlm.namespaces.*$dev*.lru_size=$lru_size
6301 }
6302
6303 flock_is_enabled()
6304 {
6305         local mountpath=${1:-$MOUNT}
6306         local RC=0
6307
6308         [ -z "$(mount | grep "$mountpath .*flock" | grep -v noflock)" ] && RC=1
6309         return $RC
6310 }
6311
6312 pgcache_empty() {
6313     local FILE
6314     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
6315         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
6316             echo there is still data in page cache $FILE ?
6317             lctl get_param -n $FILE
6318             return 1
6319         fi
6320     done
6321     return 0
6322 }
6323
6324 debugsave() {
6325         DEBUGSAVE="$(lctl get_param -n debug)"
6326         DEBUGSAVE_SERVER=$(do_facet $SINGLEMDS "$LCTL get_param -n debug")
6327 }
6328
6329 debugrestore() {
6330         [ -n "$DEBUGSAVE" ] &&
6331                 do_nodes $CLIENTS "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\""||
6332                 true
6333         DEBUGSAVE=""
6334
6335         [ -n "$DEBUGSAVE_SERVER" ] &&
6336                 do_nodes $(comma_list $(all_server_nodes)) \
6337                          "$LCTL set_param debug=\\\"${DEBUGSAVE_SERVER}\\\"" ||
6338                          true
6339         DEBUGSAVE_SERVER=""
6340 }
6341
6342 debug_size_save() {
6343     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
6344 }
6345
6346 debug_size_restore() {
6347     [ -n "$DEBUG_SIZE_SAVED" ] && \
6348         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
6349     DEBUG_SIZE_SAVED=""
6350 }
6351
6352 start_full_debug_logging() {
6353         debugsave
6354         debug_size_save
6355
6356         local fulldebug=-1
6357         local debug_size=150
6358         local nodes=$(comma_list $(nodes_list))
6359
6360         do_nodes $nodes "$LCTL set_param debug=$fulldebug debug_mb=$debug_size"
6361 }
6362
6363 stop_full_debug_logging() {
6364         debug_size_restore
6365         debugrestore
6366 }
6367
6368 # prints bash call stack
6369 print_stack_trace() {
6370         local skip=${1:-1}
6371         echo "  Trace dump:"
6372         for (( i=$skip; i < ${#BASH_LINENO[*]} ; i++ )) ; do
6373                 local src=${BASH_SOURCE[$i]}
6374                 local lineno=${BASH_LINENO[$i-1]}
6375                 local funcname=${FUNCNAME[$i]}
6376                 echo "  = $src:$lineno:$funcname()"
6377         done
6378 }
6379
6380 report_error() {
6381         local TYPE=${TYPE:-"FAIL"}
6382
6383         local dump=true
6384         # do not dump logs if $1=false
6385         if [ "x$1" = "xfalse" ]; then
6386                 shift
6387                 dump=false
6388         fi
6389
6390         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
6391         (print_stack_trace 2) >&2
6392         mkdir -p $LOGDIR
6393         # We need to dump the logs on all nodes
6394         if $dump; then
6395                 gather_logs $(comma_list $(nodes_list))
6396         fi
6397
6398         debugrestore
6399         [ "$TESTSUITELOG" ] &&
6400                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
6401         if [ -z "$*" ]; then
6402                 echo "error() without useful message, please fix" > $LOGDIR/err
6403         else
6404                 if [[ `echo $TYPE | grep ^IGNORE` ]]; then
6405                         echo "$@" > $LOGDIR/ignore
6406                 else
6407                         echo "$@" > $LOGDIR/err
6408                 fi
6409         fi
6410
6411         # cleanup the env for failed tests
6412         reset_fail_loc
6413 }
6414
6415 ##################################
6416 # Test interface
6417 ##################################
6418
6419 # usage: stack_trap arg sigspec
6420 #
6421 # stack_trap() behaves like bash's built-in trap, except that it "stacks" the
6422 # command "arg" on top of previously defined commands for "sigspec" instead
6423 # of overwriting them.
6424 # stacked traps are executed in reverse order of their registration
6425 #
6426 # arg and sigspec have the same meaning as in man (1) trap
6427 stack_trap()
6428 {
6429         local arg="$1"
6430         local sigspec="${2:-EXIT}"
6431
6432         # Use "trap -p" to get the quoting right
6433         local old_trap="$(trap -p "$sigspec")"
6434         # Append ";" and remove the leading "trap -- '" added by "trap -p"
6435         old_trap="${old_trap:+"; ${old_trap#trap -- \'}"}"
6436
6437         # Once again, use "trap -p" to get the quoting right
6438         local new_trap="$(trap -- "$arg" "$sigspec"
6439                           trap -p "$sigspec"
6440                           trap -- '' "$sigspec")"
6441
6442         # Remove the trailing "' $sigspec" part added by "trap -p" and merge
6443         #
6444         # The resulting string should be safe to "eval" as it is (supposedly
6445         # correctly) quoted by "trap -p"
6446         eval "${new_trap%\' $sigspec}${old_trap:-"' $sigspec"}"
6447 }
6448
6449 error_noexit() {
6450         report_error "$@"
6451 }
6452
6453 exit_status () {
6454         local status=0
6455         local logs="$TESTSUITELOG $1"
6456
6457         for log in $logs; do
6458                 if [ -f "$log" ]; then
6459                         grep -qw FAIL $log && status=1
6460                 fi
6461         done
6462
6463         exit $status
6464 }
6465
6466 error() {
6467         report_error "$@"
6468         exit 1
6469 }
6470
6471 error_exit() {
6472         report_error "$@"
6473         exit 1
6474 }
6475
6476 # use only if we are ignoring failures for this test, bugno required.
6477 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
6478 # e.g. error_ignore bz5494 "your message" or
6479 # error_ignore LU-5494 "your message"
6480 error_ignore() {
6481         local TYPE="IGNORE ($1)"
6482         shift
6483         report_error "$@"
6484 }
6485
6486 error_and_remount() {
6487         report_error "$@"
6488         remount_client $MOUNT
6489         exit 1
6490 }
6491
6492 # Throw an error if it's not running in vm - usually for performance
6493 # verification
6494 error_not_in_vm() {
6495         local virt=$(running_in_vm)
6496         if [[ -n "$virt" ]]; then
6497                 echo "running in VM '$virt', ignore error"
6498                 error_ignore env=$virt "$@"
6499         else
6500                 error "$@"
6501         fi
6502 }
6503
6504 #
6505 # Function: skip_env()
6506 # Purpose:  to skip a test during developer testing because some tool
6507 #           is missing, but fail the test in release testing because the test
6508 #           environment is not configured properly".
6509 #
6510 skip_env () {
6511         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
6512 }
6513
6514 skip_noexit() {
6515         echo
6516         log " SKIP: $TESTSUITE $TESTNAME $@"
6517
6518         if [[ -n "$ALWAYS_SKIPPED" ]]; then
6519                 skip_logged $TESTNAME "$@"
6520         else
6521                 mkdir -p $LOGDIR
6522                 echo "$@" > $LOGDIR/skip
6523         fi
6524
6525         [[ -n "$TESTSUITELOG" ]] &&
6526                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
6527         unset TESTNAME
6528 }
6529
6530 skip() {
6531         skip_noexit $@
6532         exit 0
6533 }
6534
6535 #
6536 # For interop testing treate EOPNOTSUPP as success
6537 # and skip
6538 #
6539 skip_eopnotsupp() {
6540         local retstr=$@
6541
6542         echo $retstr | awk -F'|' '{print $1}' |
6543                 grep -E unsupported\|"(Operation not supported)"
6544         (( $? == 0 )) || error "$retstr"
6545         skip $retstr
6546 }
6547
6548 # Add a list of tests to ALWAYS_EXCEPT due to an issue.
6549 # Usage: always_except LU-4815 23 42q ...
6550 #
6551 function always_except() {
6552         local issue="${1:-}" # single jira style issue ("LU-4815")
6553         local test_num
6554
6555         shift
6556
6557         if ! [[ "$issue" =~ ^[[:upper:]]+-[[:digit:]]+$ ]]; then
6558                 error "always_except: invalid issue '$issue' for tests '$*'"
6559         fi
6560
6561         for test_num in "$@"; do
6562                 ALWAYS_EXCEPT+=" $test_num"
6563         done
6564 }
6565
6566 build_test_filter() {
6567         EXCEPT="$EXCEPT $(testslist_filter)"
6568
6569         for O in $ONLY; do
6570                 if [[ $O = [0-9]*-[0-9]* ]]; then
6571                         for num in $(seq $(echo $O | tr '-' ' ')); do
6572                                 eval ONLY_$num=true
6573                         done
6574                 else
6575                         eval ONLY_${O}=true
6576                 fi
6577         done
6578
6579         [ "$EXCEPT$ALWAYS_EXCEPT" ] &&
6580                 log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
6581         [ "$EXCEPT_SLOW" ] &&
6582                 log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
6583         for E in $EXCEPT; do
6584                 eval EXCEPT_${E}=true
6585         done
6586         for E in $ALWAYS_EXCEPT; do
6587                 eval EXCEPT_ALWAYS_${E}=true
6588         done
6589         for E in $EXCEPT_SLOW; do
6590                 eval EXCEPT_SLOW_${E}=true
6591         done
6592         for G in $GRANT_CHECK_LIST; do
6593                 eval GCHECK_ONLY_${G}=true
6594         done
6595 }
6596
6597 basetest() {
6598     if [[ $1 = [a-z]* ]]; then
6599         echo $1
6600     else
6601         echo ${1%%[a-zA-Z]*}
6602     fi
6603 }
6604
6605 # print a newline if the last test was skipped
6606 export LAST_SKIPPED=
6607 export ALWAYS_SKIPPED=
6608 #
6609 # Main entry into test-framework. This is called with the number and
6610 # description of a test. The number is used to find the function to run
6611 # the test using "test_$name".
6612 #
6613 # This supports a variety of methods of specifying specific test to
6614 # run or not run:
6615 # - ONLY= env variable with space-separated list of test numbers to run
6616 # - EXCEPT= env variable with space-separated list of test numbers to exclude
6617 #
6618 run_test() {
6619         assert_DIR
6620         local testnum=$1
6621         local testmsg=$2
6622         export base=$(basetest $testnum)
6623         export TESTNAME=test_$testnum
6624         LAST_SKIPPED=
6625         ALWAYS_SKIPPED=
6626
6627         # Check the EXCEPT, ALWAYS_EXCEPT and SLOW lists to see if we
6628         # need to skip the current test. If so, set the ALWAYS_SKIPPED flag.
6629         local isexcept=EXCEPT_$testnum
6630         local isexcept_base=EXCEPT_$base
6631         if [ ${!isexcept}x != x ]; then
6632                 ALWAYS_SKIPPED="y"
6633                 skip_message="skipping excluded test $testnum"
6634         elif [ ${!isexcept_base}x != x ]; then
6635                 ALWAYS_SKIPPED="y"
6636                 skip_message="skipping excluded test $testnum (base $base)"
6637         fi
6638
6639         isexcept=EXCEPT_ALWAYS_$testnum
6640         isexcept_base=EXCEPT_ALWAYS_$base
6641         if [ ${!isexcept}x != x ]; then
6642                 ALWAYS_SKIPPED="y"
6643                 skip_message="skipping ALWAYS excluded test $testnum"
6644         elif [ ${!isexcept_base}x != x ]; then
6645                 ALWAYS_SKIPPED="y"
6646                 skip_message="skipping ALWAYS excluded test $testnum (base $base)"
6647         fi
6648
6649         isexcept=EXCEPT_SLOW_$testnum
6650         isexcept_base=EXCEPT_SLOW_$base
6651         if [ ${!isexcept}x != x ]; then
6652                 ALWAYS_SKIPPED="y"
6653                 skip_message="skipping SLOW test $testnum"
6654         elif [ ${!isexcept_base}x != x ]; then
6655                 ALWAYS_SKIPPED="y"
6656                 skip_message="skipping SLOW test $testnum (base $base)"
6657         fi
6658
6659         # If there are tests on the ONLY list, check if the current test
6660         # is on that list and, if so, check if the test is to be skipped
6661         # and if we are supposed to honor the skip lists.
6662         if [ -n "$ONLY" ]; then
6663                 local isonly=ONLY_$testnum
6664                 local isonly_base=ONLY_$base
6665                 if [[ ${!isonly}x != x || ${!isonly_base}x != x ]]; then
6666
6667                         if [[ -n "$ALWAYS_SKIPPED" && -n "$HONOR_EXCEPT" ]]; then
6668                                 LAST_SKIPPED="y"
6669                                 skip_noexit "$skip_message"
6670                                 return 0
6671                         else
6672                                 [ -n "$LAST_SKIPPED" ] &&
6673                                         echo "" && LAST_SKIPPED=
6674                                 ALWAYS_SKIPPED=
6675                                 run_one_logged $testnum "$testmsg"
6676                                 return $?
6677                         fi
6678
6679                 else
6680                         LAST_SKIPPED="y"
6681                         return 0
6682                 fi
6683         fi
6684
6685         if [ -n "$ALWAYS_SKIPPED" ]; then
6686                 LAST_SKIPPED="y"
6687                 skip_noexit "$skip_message"
6688                 return 0
6689         else
6690                 run_one_logged $testnum "$testmsg"
6691                 return $?
6692         fi
6693 }
6694
6695 log() {
6696         echo "$*" >&2
6697         load_module ../libcfs/libcfs/libcfs
6698
6699     local MSG="$*"
6700     # Get rid of '
6701     MSG=${MSG//\'/\\\'}
6702     MSG=${MSG//\(/\\\(}
6703     MSG=${MSG//\)/\\\)}
6704     MSG=${MSG//\;/\\\;}
6705     MSG=${MSG//\|/\\\|}
6706     MSG=${MSG//\>/\\\>}
6707     MSG=${MSG//\</\\\<}
6708     MSG=${MSG//\//\\\/}
6709     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
6710 }
6711
6712 trace() {
6713         log "STARTING: $*"
6714         strace -o $TMP/$1.strace -ttt $*
6715         RC=$?
6716         log "FINISHED: $*: rc $RC"
6717         return 1
6718 }
6719
6720 complete () {
6721     local duration=$1
6722
6723     banner test complete, duration $duration sec
6724     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
6725     echo duration $duration >>$TESTSUITELOG
6726 }
6727
6728 pass() {
6729         # Set TEST_STATUS here. It will be used for logging the result.
6730         TEST_STATUS="PASS"
6731
6732         if [[ -f $LOGDIR/err ]]; then
6733                 TEST_STATUS="FAIL"
6734         elif [[ -f $LOGDIR/skip ]]; then
6735                 TEST_STATUS="SKIP"
6736         fi
6737         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
6738 }
6739
6740 check_mds() {
6741     local FFREE=$(do_node $SINGLEMDS \
6742         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
6743     local FTOTAL=$(do_node $SINGLEMDS \
6744         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
6745
6746     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
6747 }
6748
6749 reset_fail_loc () {
6750         #echo -n "Resetting fail_loc on all nodes..."
6751         do_nodes --quiet $(comma_list $(nodes_list)) \
6752                 "lctl set_param -n fail_loc=0 fail_val=0 2>/dev/null" || true
6753         #echo done.
6754 }
6755
6756
6757 #
6758 # Log a message (on all nodes) padded with "=" before and after.
6759 # Also appends a timestamp and prepends the testsuite name.
6760 #
6761
6762 # ======================================================== 15:06:12 (1624050372)
6763 EQUALS="========================================================"
6764 banner() {
6765     msg="== ${TESTSUITE} $*"
6766     last=${msg: -1:1}
6767     [[ $last != "=" && $last != " " ]] && msg="$msg "
6768     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
6769     # always include at least == after the message
6770     log "$msg== $(date +"%H:%M:%S (%s)")"
6771 }
6772
6773 check_dmesg_for_errors() {
6774         local res
6775         local errors="VFS: Busy inodes after unmount of\|\
6776 ldiskfs_check_descriptors: Checksum for group 0 failed\|\
6777 group descriptors corrupted"
6778
6779         res=$(do_nodes -q $(comma_list $(nodes_list)) "dmesg" | grep "$errors")
6780         [ -z "$res" ] && return 0
6781         echo "Kernel error detected: $res"
6782         return 1
6783 }
6784
6785 #
6786 # Run a single test function and cleanup after it.
6787 #
6788 # This function should be run in a subshell so the test func can
6789 # exit() without stopping the whole script.
6790 #
6791 run_one() {
6792         local testnum=$1
6793         local testmsg="$2"
6794         local SAVE_UMASK=`umask`
6795         umask 0022
6796
6797         if ! grep -q $DIR /proc/mounts; then
6798                 $SETUP
6799         fi
6800
6801         banner "test $testnum: $testmsg"
6802         test_${testnum} || error "test_$testnum failed with $?"
6803         cd $SAVE_PWD
6804         reset_fail_loc
6805         check_grant ${testnum} || error "check_grant $testnum failed with $?"
6806         check_node_health
6807         check_dmesg_for_errors || error "Error in dmesg detected"
6808         if [ "$PARALLEL" != "yes" ]; then
6809                 ps auxww | grep -v grep | grep -q "multiop " &&
6810                                         error "multiop still running"
6811         fi
6812         umask $SAVE_UMASK
6813         $CLEANUP
6814         return 0
6815 }
6816
6817 #
6818 # Wrapper around run_one to ensure:
6819 #  - test runs in subshell
6820 #  - output of test is saved to separate log file for error reporting
6821 #  - test result is saved to data file
6822 #
6823 run_one_logged() {
6824         local before=$SECONDS
6825         local testnum=$1
6826         local testmsg=$2
6827         export tfile=f${testnum}.${TESTSUITE}
6828         export tdir=d${testnum}.${TESTSUITE}
6829         local test_log=$TESTLOG_PREFIX.$TESTNAME.test_log.$(hostname -s).log
6830         local zfs_debug_log=$TESTLOG_PREFIX.$TESTNAME.zfs_log
6831         local SAVE_UMASK=$(umask)
6832         local rc=0
6833         umask 0022
6834
6835         rm -f $LOGDIR/err $LOGDIR/ignore $LOGDIR/skip
6836         echo
6837         # if ${ONLY_$testnum} set, repeat $ONLY_REPEAT times, otherwise once
6838         local isonly=ONLY_$testnum
6839         local repeat=${!isonly:+$ONLY_REPEAT}
6840
6841         for testiter in $(seq ${repeat:-1}); do
6842                 local before_sub=$SECONDS
6843                 log_sub_test_begin $TESTNAME
6844
6845                 # remove temp files between repetitions to avoid test failures
6846                 [ -n "$append" -a -n "$DIR" -a -n "$tdir" -a -n "$tfile" ] &&
6847                         rm -rvf $DIR/$tdir* $DIR/$tfile*
6848                 # loop around subshell so stack_trap EXIT triggers each time
6849                 (run_one $testnum "$testmsg") 2>&1 | tee -i $append $test_log
6850                 rc=${PIPESTATUS[0]}
6851                 local append=-a
6852                 local duration_sub=$((SECONDS - before_sub))
6853                 local test_error
6854
6855                 [[ $rc != 0 && ! -f $LOGDIR/err ]] &&
6856                         echo "$TESTNAME returned $rc" | tee $LOGDIR/err
6857
6858                 if [[ -f $LOGDIR/err ]]; then
6859                         test_error=$(cat $LOGDIR/err)
6860                         TEST_STATUS="FAIL"
6861                 elif [[ -f $LOGDIR/ignore ]]; then
6862                         test_error=$(cat $LOGDIR/ignore)
6863                 elif [[ -f $LOGDIR/skip ]]; then
6864                         test_error=$(cat $LOGDIR/skip)
6865                         TEST_STATUS="SKIP"
6866                 else
6867                         TEST_STATUS="PASS"
6868                 fi
6869
6870                 pass "$testnum" "(${duration_sub}s)"
6871                 log_sub_test_end $TEST_STATUS $duration_sub "$rc" "$test_error"
6872                 [[ $rc != 0 ]] && break
6873         done
6874
6875         if [[ "$TEST_STATUS" != "SKIP" && -f $TF_SKIP ]]; then
6876                 rm -f $TF_SKIP
6877         fi
6878
6879         if [ -f $LOGDIR/err ]; then
6880                 log_zfs_info "$zfs_debug_log"
6881                 $FAIL_ON_ERROR && exit $rc
6882         fi
6883
6884         umask $SAVE_UMASK
6885
6886         unset TESTNAME
6887         unset tdir
6888         unset tfile
6889
6890         return 0
6891 }
6892
6893 #
6894 # Print information of skipped tests to result.yml
6895 #
6896 skip_logged(){
6897         log_sub_test_begin $1
6898         shift
6899         log_sub_test_end "SKIP" "0" "0" "$@"
6900 }
6901
6902 grant_from_clients() {
6903         local nodes="$1"
6904
6905         # get client grant
6906         do_nodes $nodes "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" |
6907                 calc_sum
6908 }
6909
6910 grant_from_servers() {
6911         local nodes="$1"
6912
6913         # get server grant
6914         # which is tot_granted less grant_precreate
6915         do_nodes $nodes "$LCTL get_param obdfilter.${FSNAME}-OST*.tot_granted" \
6916                 " obdfilter.${FSNAME}-OST*.tot_pending" \
6917                 " obdfilter.${FSNAME}-OST*.grant_precreate" |
6918                 tr '=' ' ' | awk '/tot_granted/{ total += $2 };
6919                                   /tot_pending/{ total -= $2 };
6920                                   /grant_precreate/{ total -= $2 };
6921                                   END { printf("%0.0f", total) }'
6922 }
6923
6924 check_grant() {
6925         export base=$(basetest $1)
6926         [ "$CHECK_GRANT" == "no" ] && return 0
6927
6928         local isonly_base=GCHECK_ONLY_${base}
6929         local isonly=GCHECK_ONLY_$1
6930         [ ${!isonly_base}x == x -a ${!isonly}x == x ] && return 0
6931
6932         echo -n "checking grant......"
6933
6934         local osts=$(comma_list $(osts_nodes))
6935         local clients=$CLIENTS
6936         [ -z "$clients" ] && clients=$(hostname)
6937
6938         # sync all the data and make sure no pending data on server
6939         do_nodes $clients sync
6940         do_nodes $clients $LFS df # initiate all idling connections
6941
6942         # get client grant
6943         cli_grant=$(grant_from_clients $clients)
6944
6945         # get server grant
6946         # which is tot_granted less grant_precreate
6947         srv_grant=$(grant_from_servers $osts)
6948
6949         count=0
6950         # check whether client grant == server grant
6951         while [[ $cli_grant != $srv_grant && count++ -lt 30 ]]; do
6952                 echo "wait for client:$cli_grant == server:$srv_grant"
6953                 sleep 1
6954                 cli_grant=$(grant_from_clients $clients)
6955                 srv_grant=$(grant_from_servers $osts)
6956         done
6957         if [[ $cli_grant -ne $srv_grant ]]; then
6958                 do_nodes $(comma_list $(osts_nodes)) \
6959                         "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*" \
6960                         "obdfilter.${FSNAME}-OST*.grant_*"
6961                 do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
6962                 error "failed grant check: client:$cli_grant server:$srv_grant"
6963         else
6964                 echo "pass grant check: client:$cli_grant server:$srv_grant"
6965         fi
6966 }
6967
6968 ########################
6969 # helper functions
6970
6971 osc_to_ost()
6972 {
6973     osc=$1
6974     ost=`echo $1 | awk -F_ '{print $3}'`
6975     if [ -z $ost ]; then
6976         ost=`echo $1 | sed 's/-osc.*//'`
6977     fi
6978     echo $ost
6979 }
6980
6981 ostuuid_from_index()
6982 {
6983     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6984 }
6985
6986 ostname_from_index() {
6987     local uuid=$(ostuuid_from_index $1 $2)
6988     echo ${uuid/_UUID/}
6989 }
6990
6991 mdtname_from_index() {
6992         local uuid=$(mdtuuid_from_index $1)
6993         echo ${uuid/_UUID/}
6994 }
6995
6996 mdssize_from_index () {
6997         local mdt=$(mdtname_from_index $2)
6998         $LFS df $1 | grep $mdt | awk '{ print $2 }'
6999 }
7000
7001 index_from_ostuuid()
7002 {
7003     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
7004 }
7005
7006 mdtuuid_from_index()
7007 {
7008     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
7009 }
7010
7011 # Description:
7012 #   Return unique identifier for given hostname
7013 host_id() {
7014         local host_name=$1
7015         echo $host_name | md5sum | cut -d' ' -f1
7016 }
7017
7018 # Description:
7019 #   Returns list of ip addresses for each interface
7020 local_addr_list() {
7021         ip addr | awk '/inet / {print $2}' | awk -F/ '{print $1}'
7022 }
7023
7024 # Description:
7025 #   Returns list of interfaces configured for LNet
7026 lnet_if_list() {
7027         local nids=( $($LCTL list_nids | xargs echo) )
7028
7029         [[ -z ${nids[@]} ]] &&
7030                 return 0
7031
7032         declare -a INTERFACES
7033
7034         for ((i = 0; i < ${#nids[@]}; i++)); do
7035                 ip=$(sed 's/^\(.*\)@.*$/\1/'<<<${nids[i]})
7036                 INTERFACES[i]=$(ip -o a s |
7037                                 awk '$4 ~ /^'$ip'\//{print $2}')
7038                 INTERFACES=($(echo "${INTERFACES[@]}" | tr ' ' '\n' | uniq | tr '\n' ' '))
7039                 if [[ -z ${INTERFACES[i]} ]]; then
7040                         error "Can't determine interface name for NID ${nids[i]}"
7041                 elif [[ 1 -ne $(wc -w <<<${INTERFACES[i]}) ]]; then
7042                         error "Found $(wc -w <<<${INTERFACES[i]}) interfaces for NID ${nids[i]}. Expect 1"
7043                 fi
7044         done
7045
7046         echo "${INTERFACES[@]}"
7047
7048         return 0
7049 }
7050
7051 is_local_addr() {
7052         local addr=$1
7053         # Cache address list to avoid mutiple execution of local_addr_list
7054         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
7055         local i
7056         for i in $LOCAL_ADDR_LIST ; do
7057                 [[ "$i" == "$addr" ]] && return 0
7058         done
7059         return 1
7060 }
7061
7062 local_node() {
7063         local host_name=$1
7064         local is_local="IS_LOCAL_$(host_id $host_name)"
7065         if [ -z "${!is_local-}" ] ; then
7066                 eval $is_local=0
7067                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
7068                 is_local_addr "$host_ip" && eval $is_local=1
7069         fi
7070         [[ "${!is_local}" == "1" ]]
7071 }
7072
7073 remote_node () {
7074         local node=$1
7075         local_node $node && return 1
7076         return 0
7077 }
7078
7079 remote_mds ()
7080 {
7081     local node
7082     for node in $(mdts_nodes); do
7083         remote_node $node && return 0
7084     done
7085     return 1
7086 }
7087
7088 remote_mds_nodsh()
7089 {
7090         [ -n "$CLIENTONLY" ] && return 0 || true
7091         remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
7092 }
7093
7094 require_dsh_mds()
7095 {
7096         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" &&
7097                 MSKIPPED=1 && return 1
7098         return 0
7099 }
7100
7101 remote_ost ()
7102 {
7103     local node
7104     for node in $(osts_nodes) ; do
7105         remote_node $node && return 0
7106     done
7107     return 1
7108 }
7109
7110 remote_ost_nodsh()
7111 {
7112         [ -n "$CLIENTONLY" ] && return 0 || true
7113         remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
7114 }
7115
7116 require_dsh_ost()
7117 {
7118         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
7119             OSKIPPED=1 && return 1
7120         return 0
7121 }
7122
7123 remote_mgs_nodsh()
7124 {
7125         [ -n "$CLIENTONLY" ] && return 0 || true
7126         local MGS
7127         MGS=$(facet_host mgs)
7128         remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
7129 }
7130
7131 local_mode ()
7132 {
7133     remote_mds_nodsh || remote_ost_nodsh || \
7134         $(single_local_node $(comma_list $(nodes_list)))
7135 }
7136
7137 remote_servers () {
7138     remote_ost && remote_mds
7139 }
7140
7141 # Get the active nodes for facets.
7142 facets_nodes () {
7143         local facets=$1
7144         local facet
7145         local nodes
7146         local nodes_sort
7147         local i
7148
7149         for facet in ${facets//,/ }; do
7150                 nodes="$nodes $(facet_active_host $facet)"
7151         done
7152
7153         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7154         echo -n $nodes_sort
7155 }
7156
7157 # Get name of the active MGS node.
7158 mgs_node () {
7159         echo -n $(facets_nodes $(get_facets MGS))
7160 }
7161
7162 # Get all of the active MDS nodes.
7163 mdts_nodes () {
7164         echo -n $(facets_nodes $(get_facets MDS))
7165 }
7166
7167 # Get all of the active OSS nodes.
7168 osts_nodes () {
7169         echo -n $(facets_nodes $(get_facets OST))
7170 }
7171
7172 # Get all of the client nodes and active server nodes.
7173 nodes_list () {
7174         local nodes=$HOSTNAME
7175         local nodes_sort
7176         local i
7177
7178         # CLIENTS (if specified) contains the local client
7179         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
7180
7181         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
7182                 nodes="$nodes $(facets_nodes $(get_facets))"
7183         fi
7184
7185         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7186         echo -n $nodes_sort
7187 }
7188
7189 # Get all of the remote client nodes and remote active server nodes.
7190 remote_nodes_list () {
7191         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
7192 }
7193
7194 # Get all of the MDS nodes, including active and passive nodes.
7195 all_mdts_nodes () {
7196         local host
7197         local failover_host
7198         local nodes
7199         local nodes_sort
7200         local i
7201
7202         for i in $(seq $MDSCOUNT); do
7203                 host=mds${i}_HOST
7204                 failover_host=mds${i}failover_HOST
7205                 nodes="$nodes ${!host} ${!failover_host}"
7206         done
7207
7208         [ -n "$nodes" ] || nodes="${mds_HOST} ${mdsfailover_HOST}"
7209         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7210         echo -n $nodes_sort
7211 }
7212
7213 # Get all of the OSS nodes, including active and passive nodes.
7214 all_osts_nodes () {
7215         local host
7216         local failover_host
7217         local nodes=
7218         local nodes_sort
7219         local i
7220
7221         for i in $(seq $OSTCOUNT); do
7222                 host=ost${i}_HOST
7223                 failover_host=ost${i}failover_HOST
7224                 nodes="$nodes ${!host} ${!failover_host}"
7225         done
7226
7227         [ -n "$nodes" ] || nodes="${ost_HOST} ${ostfailover_HOST}"
7228         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7229         echo -n $nodes_sort
7230 }
7231
7232 # Get all of the server nodes, including active and passive nodes.
7233 all_server_nodes () {
7234         local nodes
7235         local nodes_sort
7236         local i
7237
7238         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
7239
7240         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7241         echo -n $nodes_sort
7242 }
7243
7244 # Get all of the client and server nodes, including active and passive nodes.
7245 all_nodes () {
7246         local nodes=$HOSTNAME
7247         local nodes_sort
7248         local i
7249
7250         # CLIENTS (if specified) contains the local client
7251         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
7252
7253         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
7254                 nodes="$nodes $(all_server_nodes)"
7255         fi
7256
7257         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
7258         echo -n $nodes_sort
7259 }
7260
7261 init_clients_lists () {
7262     # Sanity check: exclude the local client from RCLIENTS
7263     local clients=$(hostlist_expand "$RCLIENTS")
7264     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
7265
7266     # Sanity check: exclude the dup entries
7267     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
7268
7269         export CLIENT1=${CLIENT1:-$HOSTNAME}
7270         export SINGLECLIENT=$CLIENT1
7271
7272         clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
7273
7274     # Sanity check: exclude the dup entries from CLIENTS
7275     # for those configs which has SINGLCLIENT set to local client
7276     clients=$(for i in $clients; do echo $i; done | sort -u)
7277
7278         export CLIENTS=$(comma_list $clients)
7279     local -a remoteclients=($RCLIENTS)
7280     for ((i=0; $i<${#remoteclients[@]}; i++)); do
7281             varname=CLIENT$((i + 2))
7282                         eval export $varname=${remoteclients[i]}
7283     done
7284
7285         export CLIENTCOUNT=$((${#remoteclients[@]} + 1))
7286 }
7287
7288 get_random_entry () {
7289     local rnodes=$1
7290
7291     rnodes=${rnodes//,/ }
7292
7293     local -a nodes=($rnodes)
7294     local num=${#nodes[@]}
7295     local i=$((RANDOM * num * 2 / 65536))
7296
7297     echo ${nodes[i]}
7298 }
7299
7300 client_only () {
7301         [ -n "$CLIENTONLY" ] || [ "x$CLIENTMODSONLY" = "xyes" ]
7302 }
7303
7304 check_versions () {
7305     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
7306       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
7307 }
7308
7309 get_node_count() {
7310     local nodes="$@"
7311     echo $nodes | wc -w || true
7312 }
7313
7314 mixed_mdt_devs () {
7315     local nodes=$(mdts_nodes)
7316     local mdtcount=$(get_node_count "$nodes")
7317     [ ! "$MDSCOUNT" = "$mdtcount" ]
7318 }
7319
7320 generate_machine_file() {
7321     local nodes=${1//,/ }
7322     local machinefile=$2
7323     rm -f $machinefile
7324     for node in $nodes; do
7325         echo $node >>$machinefile || \
7326             { echo "can not generate machinefile $machinefile" && return 1; }
7327     done
7328 }
7329
7330 get_stripe () {
7331         local file=$1/stripe
7332
7333         touch $file
7334         $LFS getstripe -v $file || error "getstripe $file failed"
7335         rm -f $file
7336 }
7337
7338 # Check and add a test group.
7339 add_group() {
7340         local group_id=$1
7341         local group_name=$2
7342         local rc=0
7343
7344         local gid=$(getent group $group_name | cut -d: -f3)
7345         if [[ -n "$gid" ]]; then
7346                 [[ "$gid" -eq "$group_id" ]] || {
7347                         error_noexit "inconsistent group ID:" \
7348                                      "new: $group_id, old: $gid"
7349                         rc=1
7350                 }
7351         else
7352                 groupadd -g $group_id $group_name
7353                 rc=${PIPESTATUS[0]}
7354         fi
7355
7356         return $rc
7357 }
7358
7359 # Check and add a test user.
7360 add_user() {
7361         local user_id=$1
7362         shift
7363         local user_name=$1
7364         shift
7365         local group_name=$1
7366         shift
7367         local home=$1
7368         shift
7369         local opts="$@"
7370         local rc=0
7371
7372         local uid=$(getent passwd $user_name | cut -d: -f3)
7373         if [[ -n "$uid" ]]; then
7374                 if [[ "$uid" -eq "$user_id" ]]; then
7375                         local dir=$(getent passwd $user_name | cut -d: -f6)
7376                         if [[ "$dir" != "$home" ]]; then
7377                                 mkdir -p $home
7378                                 usermod -d $home $user_name
7379                                 rc=${PIPESTATUS[0]}
7380                         fi
7381                 else
7382                         error_noexit "inconsistent user ID:" \
7383                                      "new: $user_id, old: $uid"
7384                         rc=1
7385                 fi
7386         else
7387                 mkdir -p $home
7388                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
7389                 rc=${PIPESTATUS[0]}
7390         fi
7391
7392         return $rc
7393 }
7394
7395 check_runas_id_ret() {
7396         local myRC=0
7397         local myRUNAS_UID=$1
7398         local myRUNAS_GID=$2
7399         shift 2
7400         local myRUNAS=$@
7401
7402         if [ -z "$myRUNAS" ]; then
7403                 error_exit "check_runas_id_ret requires myRUNAS argument"
7404         fi
7405
7406         $myRUNAS true ||
7407                 error "Unable to execute $myRUNAS"
7408
7409         id $myRUNAS_UID > /dev/null ||
7410                 error "Invalid RUNAS_ID $myRUNAS_UID. Please set RUNAS_ID to " \
7411                       "some UID which exists on MDS and client or add user " \
7412                       "$myRUNAS_UID:$myRUNAS_GID on these nodes."
7413
7414         if $GSS_KRB5; then
7415                 $myRUNAS krb5_login.sh ||
7416                         error "Failed to refresh krb5 TGT for UID $myRUNAS_ID."
7417         fi
7418         mkdir $DIR/d0_runas_test
7419         chmod 0755 $DIR
7420         chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
7421         $myRUNAS -u $myRUNAS_UID -g $myRUNAS_GID touch $DIR/d0_runas_test/f$$ ||
7422                 myRC=$?
7423         rm -rf $DIR/d0_runas_test
7424         return $myRC
7425 }
7426
7427 check_runas_id() {
7428         local myRUNAS_UID=$1
7429         local myRUNAS_GID=$2
7430         shift 2
7431         local myRUNAS=$@
7432
7433         check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
7434                 error "unable to write to $DIR/d0_runas_test as " \
7435                       "UID $myRUNAS_UID."
7436 }
7437
7438 # obtain the UID/GID for MPI_USER
7439 get_mpiuser_id() {
7440     local mpi_user=$1
7441
7442     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
7443 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
7444
7445     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
7446 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
7447 }
7448
7449 # obtain and cache Kerberos ticket-granting ticket
7450 refresh_krb5_tgt() {
7451     local myRUNAS_UID=$1
7452     local myRUNAS_GID=$2
7453     shift 2
7454     local myRUNAS=$@
7455     if [ -z "$myRUNAS" ]; then
7456         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
7457     fi
7458
7459     CLIENTS=${CLIENTS:-$HOSTNAME}
7460     do_nodes $CLIENTS "set -x
7461 if ! $myRUNAS krb5_login.sh; then
7462     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
7463     exit 1
7464 fi"
7465 }
7466
7467 # Run multiop in the background, but wait for it to print
7468 # "PAUSING" to its stdout before returning from this function.
7469 multiop_bg_pause() {
7470     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
7471     FILE=$1
7472     ARGS=$2
7473
7474     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
7475     mkfifo $TMPPIPE
7476
7477     echo "$MULTIOP_PROG $FILE v$ARGS"
7478     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
7479
7480     echo "TMPPIPE=${TMPPIPE}"
7481     read -t 60 multiop_output < $TMPPIPE
7482     if [ $? -ne 0 ]; then
7483         rm -f $TMPPIPE
7484         return 1
7485     fi
7486     rm -f $TMPPIPE
7487     if [ "$multiop_output" != "PAUSING" ]; then
7488         echo "Incorrect multiop output: $multiop_output"
7489         kill -9 $PID
7490         return 1
7491     fi
7492
7493     return 0
7494 }
7495
7496 do_and_time () {
7497         local cmd="$1"
7498         local start
7499         local rc
7500
7501         start=$SECONDS
7502         eval '$cmd'
7503         [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
7504
7505         echo $((SECONDS - start))
7506         return $rc
7507 }
7508
7509 inodes_available () {
7510         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
7511                 sort -un | head -n1) || return 1
7512         echo $((IFree))
7513 }
7514
7515 mdsrate_inodes_available () {
7516         local min_inodes=$(inodes_available)
7517         echo $((min_inodes * 99 / 100))
7518 }
7519
7520 # reset stat counters
7521 clear_stats() {
7522         local paramfile="$1"
7523         lctl set_param -n $paramfile=0
7524 }
7525
7526 # sum stat items
7527 calc_stats() {
7528         local paramfile="$1"
7529         local stat="$2"
7530         lctl get_param -n $paramfile |
7531                 awk '/^'$stat'/ { sum += $2 } END { printf("%0.0f", sum) }'
7532 }
7533
7534 calc_sum () {
7535         awk '{sum += $1} END { printf("%0.0f", sum) }'
7536 }
7537
7538 calc_osc_kbytes () {
7539         $LFS df $MOUNT > /dev/null
7540         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
7541 }
7542
7543 free_min_max () {
7544         wait_delete_completed
7545         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7546         echo "OST kbytes available: ${AVAIL[*]}"
7547         MAXV=${AVAIL[0]}
7548         MAXI=0
7549         MINV=${AVAIL[0]}
7550         MINI=0
7551         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7552                 #echo OST $i: ${AVAIL[i]}kb
7553                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7554                         MAXV=${AVAIL[i]}
7555                         MAXI=$i
7556                 fi
7557                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7558                         MINV=${AVAIL[i]}
7559                         MINI=$i
7560                 fi
7561         done
7562         echo "Min free space: OST $MINI: $MINV"
7563         echo "Max free space: OST $MAXI: $MAXV"
7564 }
7565
7566 # save_lustre_params(comma separated facet list, parameter_mask)
7567 # generate a stream of formatted strings (<facet> <param name>=<param value>)
7568 save_lustre_params() {
7569         local facets=$1
7570         local facet
7571         local facet_svc
7572
7573         for facet in ${facets//,/ }; do
7574                 facet_svc=$(facet_svc $facet)
7575                 do_facet $facet \
7576                         "params=\\\$($LCTL get_param $2);
7577                          [[ -z \\\"$facet_svc\\\" ]] && param= ||
7578                          param=\\\$(grep $facet_svc <<< \\\"\\\$params\\\");
7579                          [[ -z \\\$param ]] && param=\\\"\\\$params\\\";
7580                          while read s; do echo $facet \\\$s;
7581                          done <<< \\\"\\\$param\\\""
7582         done
7583 }
7584
7585 # restore lustre parameters from input stream, produces by save_lustre_params
7586 restore_lustre_params() {
7587         local facet
7588         local name
7589         local val
7590
7591         while IFS=" =" read facet name val; do
7592                 do_facet $facet "$LCTL set_param -n $name=$val"
7593         done
7594 }
7595
7596 check_node_health() {
7597         local nodes=${1:-$(comma_list $(nodes_list))}
7598         local health=$TMP/node_health.$$
7599
7600         do_nodes -q $nodes "$LCTL get_param catastrophe 2>&1" | tee $health |
7601                 grep "catastrophe=1" && error "LBUG/LASSERT detected"
7602         # Only check/report network health if get_param isn't reported, since
7603         # *clearly* the network is working if get_param returned something.
7604         if (( $(grep -c catastro $health) != $(wc -w <<< ${nodes//,/ }) )); then
7605                 for node in ${nodes//,/}; do
7606                         check_network $node 5
7607                 done
7608         fi
7609         rm -f $health
7610 }
7611
7612 mdsrate_cleanup () {
7613         if [ -d $4 ]; then
7614                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
7615                         --nfiles $3 --dir $4 --filefmt $5 $6
7616                 rmdir $4
7617         fi
7618 }
7619
7620 ########################
7621
7622 convert_facet2label() {
7623         local facet=$1
7624
7625         if [ x$facet = xost ]; then
7626                 facet=ost1
7627         elif [ x$facet = xmgs ] && combined_mgs_mds ; then
7628                 facet=mds1
7629         fi
7630
7631         local varsvc=${facet}_svc
7632
7633         if [ -n ${!varsvc} ]; then
7634                 echo ${!varsvc}
7635         else
7636                 error "No label for $facet!"
7637         fi
7638 }
7639
7640 get_clientosc_proc_path() {
7641         echo "${1}-osc-[-0-9a-f]*"
7642 }
7643
7644 get_mdtosc_proc_path() {
7645         local mds_facet=$1
7646         local ost_label=${2:-"*OST*"}
7647
7648         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
7649         local mdt_label=$(convert_facet2label $mds_facet)
7650         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
7651
7652         if [[ $ost_label = *OST* ]]; then
7653                 echo "${ost_label}-osc-${mdt_index}"
7654         else
7655                 echo "${ost_label}-osp-${mdt_index}"
7656         fi
7657 }
7658
7659 get_osc_import_name() {
7660     local facet=$1
7661     local ost=$2
7662     local label=$(convert_facet2label $ost)
7663
7664     if [ "${facet:0:3}" = "mds" ]; then
7665         get_mdtosc_proc_path $facet $label
7666         return 0
7667     fi
7668
7669     get_clientosc_proc_path $label
7670     return 0
7671 }
7672
7673 _wait_import_state () {
7674         local expected="$1"
7675         local CONN_PROC="$2"
7676         local maxtime=${3:-$(max_recovery_time)}
7677         local err_on_fail=${4:-1}
7678         local CONN_STATE
7679         local i=0
7680
7681         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
7682         while ! echo "${CONN_STATE}" | egrep -q "^${expected}\$" ; do
7683                 if [[ "${expected}" == "DISCONN" ]]; then
7684                         # for disconn we can check after proc entry is removed
7685                         [[ -z "${CONN_STATE}" ]] && return 0
7686                         # with AT, we can have connect request timeout near
7687                         # reconnect timeout and test can't see real disconnect
7688                         [[ "${CONN_STATE}" == "CONNECTING" ]] && return 0
7689                 fi
7690                 if (( $i >= $maxtime )); then
7691                         (( $err_on_fail != 0 )) &&
7692                                 error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}"
7693                         return 1
7694                 fi
7695                 sleep 1
7696                 # Add uniq for multi-mount case
7697                 CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null |
7698                              cut -f2 | uniq)
7699                 i=$((i + 1))
7700         done
7701
7702         log "$CONN_PROC in ${CONN_STATE} state after $i sec"
7703         return 0
7704 }
7705
7706 wait_import_state() {
7707         local expected="$1"
7708         local params="$2"
7709         local maxtime=${3:-$(max_recovery_time)}
7710         local err_on_fail=${4:-1}
7711         local param
7712
7713         for param in ${params//,/ }; do
7714                 _wait_import_state "$expected" "$param" $maxtime $err_on_fail ||
7715                 return
7716         done
7717 }
7718
7719 wait_import_state_mount() {
7720         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
7721                 return 0
7722         fi
7723
7724         wait_import_state "$@"
7725 }
7726
7727 # One client request could be timed out because server was not ready
7728 # when request was sent by client.
7729 # The request timeout calculation details :
7730 # ptl_send_rpc ()
7731 #      /* We give the server rq_timeout secs to process the req, and
7732 #      add the network latency for our local timeout. */
7733 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
7734 #           ptlrpc_at_get_net_latency(request) ;
7735 #
7736 # ptlrpc_connect_import ()
7737 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7738 #
7739 # init_imp_at () ->
7740 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
7741 # ptlrpc_at_get_net_latency(request) ->
7742 #       at_get (max (iat_net_latency=0, at_min)) = at_min
7743 #
7744 # i.e.:
7745 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
7746 # INITIAL_CONNECT_TIMEOUT + at_min
7747 #
7748 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
7749 # because we can not get this value in runtime,
7750 # the value depends on configure options, and it is not stored in /proc.
7751 # obd_support.h:
7752 # #define CONNECTION_SWITCH_MIN 5U
7753 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
7754
7755 request_timeout () {
7756     local facet=$1
7757
7758     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7759     local init_connect_timeout=$TIMEOUT
7760     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
7761
7762     local at_min=$(at_get $facet at_min)
7763
7764     echo $(( init_connect_timeout + at_min ))
7765 }
7766
7767 _wait_osc_import_state() {
7768         local facet=$1
7769         local ost_facet=$2
7770         local expected=$3
7771         local target=$(get_osc_import_name $facet $ost_facet)
7772         local param="os[cp].${target}.ost_server_uuid"
7773         local params=$param
7774         local i=0
7775
7776         # 1. wait the deadline of client 1st request (it could be skipped)
7777         # 2. wait the deadline of client 2nd request
7778         local maxtime=$(( 2 * $(request_timeout $facet)))
7779
7780         if [[ $facet == client* ]]; then
7781                 # During setup time, the osc might not be setup, it need wait
7782                 # until list_param can return valid value.
7783                 params=$($LCTL list_param $param 2>/dev/null || true)
7784                 while [ -z "$params" ]; do
7785                         if [ $i -ge $maxtime ]; then
7786                                 echo "can't get $param in $maxtime secs"
7787                                 return 1
7788                         fi
7789                         sleep 1
7790                         i=$((i + 1))
7791                         params=$($LCTL list_param $param 2>/dev/null || true)
7792                 done
7793         fi
7794
7795         if [[ $ost_facet = mds* ]]; then
7796                 # no OSP connection to itself
7797                 if [[ $facet = $ost_facet ]]; then
7798                         return 0
7799                 fi
7800                 param="osp.${target}.mdt_server_uuid"
7801                 params=$param
7802         fi
7803
7804         local plist=$(comma_list $params)
7805         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7806                         wait_import_state $expected $plist $maxtime; then
7807                 error "$facet: import is not in $expected state after $maxtime"
7808                 return 1
7809         fi
7810
7811         return 0
7812 }
7813
7814 wait_osc_import_state() {
7815         local facet=$1
7816         local ost_facet=$2
7817         local expected=$3
7818         local num
7819
7820         if [[ $facet = mds ]]; then
7821                 for num in $(seq $MDSCOUNT); do
7822                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
7823                 done
7824         else
7825                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
7826         fi
7827 }
7828
7829 wait_osc_import_ready() {
7830         wait_osc_import_state $1 $2 "\(FULL\|IDLE\)"
7831 }
7832
7833 _wait_mgc_import_state() {
7834         local facet=$1
7835         local expected=$2
7836         local error_on_failure=${3:-1}
7837         local param="mgc.*.mgs_server_uuid"
7838         local params=$param
7839         local i=0
7840
7841         # 1. wait the deadline of client 1st request (it could be skipped)
7842         # 2. wait the deadline of client 2nd request
7843         local maxtime=$(( 2 * $(request_timeout $facet)))
7844
7845         if [[ $facet == client* ]]; then
7846                 # During setup time, the osc might not be setup, it need wait
7847                 # until list_param can return valid value. And also if there
7848                 # are mulitple osc entries we should list all of them before
7849                 # go to wait.
7850                 params=$($LCTL list_param $param 2>/dev/null || true)
7851                 while [ -z "$params" ]; do
7852                         if [ $i -ge $maxtime ]; then
7853                                 echo "can't get $param in $maxtime secs"
7854                                 return 1
7855                         fi
7856                         sleep 1
7857                         i=$((i + 1))
7858                         params=$($LCTL list_param $param 2>/dev/null || true)
7859                 done
7860         fi
7861         local plist=$(comma_list $params)
7862         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7863                         wait_import_state $expected $plist $maxtime \
7864                                           $error_on_failure; then
7865                 if [ $error_on_failure -ne 0 ]; then
7866                     error "import is not in ${expected} state"
7867                 fi
7868                 return 1
7869         fi
7870
7871         return 0
7872 }
7873
7874 wait_mgc_import_state() {
7875         local facet=$1
7876         local expected=$2
7877         local error_on_failure=${3:-1}
7878         local num
7879
7880         if [[ $facet = mds ]]; then
7881                 for num in $(seq $MDSCOUNT); do
7882                         _wait_mgc_import_state mds$num "$expected" \
7883                                                $error_on_failure || return
7884                 done
7885         else
7886                 _wait_mgc_import_state "$facet" "$expected"
7887                                        $error_on_failure || return
7888         fi
7889 }
7890
7891 wait_dne_interconnect() {
7892         local num
7893
7894         if [ $MDSCOUNT -gt 1 ]; then
7895                 for num in $(seq $MDSCOUNT); do
7896                         wait_osc_import_ready mds mds$num
7897                 done
7898         fi
7899 }
7900
7901 get_clientmdc_proc_path() {
7902     echo "${1}-mdc-*"
7903 }
7904
7905 get_clientmgc_proc_path() {
7906     echo "*"
7907 }
7908
7909 do_rpc_nodes () {
7910         local quiet
7911
7912         [[ "$1" == "--quiet" || "$1" == "-q" ]] && quiet="$1" && shift
7913
7914         local list=$1
7915         shift
7916
7917         [ -z "$list" ] && return 0
7918
7919         # Add paths to lustre tests for 32 and 64 bit systems.
7920         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
7921         local TESTPATH="$RLUSTRE/tests:"
7922         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
7923         do_nodes ${quiet:-"--verbose"} $list "${RPATH} NAME=${NAME} bash rpc.sh $@ "
7924 }
7925
7926 wait_clients_import_state () {
7927         local list="$1"
7928         local facet="$2"
7929         local expected="$3"
7930         local facets="$facet"
7931
7932         if [ "$FAILURE_MODE" = HARD ]; then
7933                 facets=$(for f in ${facet//,/ }; do
7934                         facets_on_host $(facet_active_host $f) | tr "," "\n"
7935                 done | sort -u | paste -sd , )
7936         fi
7937
7938         for facet in ${facets//,/ }; do
7939                 local label=$(convert_facet2label $facet)
7940                 local proc_path
7941                 case $facet in
7942                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
7943                                         $label).ost_server_uuid" ;;
7944                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
7945                                         $label).mds_server_uuid" ;;
7946                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
7947                                         $label).mgs_server_uuid" ;;
7948                 *) error "unknown facet!" ;;
7949                 esac
7950
7951                 local params=$(expand_list $params $proc_path)
7952         done
7953
7954         if ! do_rpc_nodes "$list" wait_import_state_mount "$expected" $params;
7955         then
7956                 error "import is not in ${expected} state"
7957                 return 1
7958         fi
7959 }
7960
7961 wait_osp_active() {
7962         local facet=$1
7963         local tgt_name=$2
7964         local tgt_idx=$3
7965         local expected=$4
7966         local num
7967
7968         # wait until all MDTs are in the expected state
7969         for ((num = 1; num <= $MDSCOUNT; num++)); do
7970                 local mdtosp=$(get_mdtosc_proc_path mds${num} ${tgt_name})
7971                 local wait=0
7972                 local mproc
7973
7974                 if [ $facet = "mds" ]; then
7975                         mproc="osp.$mdtosp.active"
7976                         [ $num -eq $((tgt_idx + 1)) ] && continue
7977                 else
7978                         mproc="osc.$mdtosp.active"
7979                 fi
7980
7981                 echo "check $mproc"
7982                 while [ 1 ]; do
7983                         sleep 5
7984                         local result=$(do_facet mds${num} "$LCTL get_param -n $mproc")
7985                         local max=30
7986
7987                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $mproc"
7988                         if [ $result -eq $expected ]; then
7989                                 echo -n "target updated after "
7990                                 echo "$wait sec (got $result)"
7991                                 break
7992                         fi
7993                         wait=$((wait + 5))
7994                         if [ $wait -eq $max ]; then
7995                                 error "$tgt_name: wanted $expected got $result"
7996                         fi
7997                         echo "Waiting $((max - wait)) secs for $tgt_name"
7998                 done
7999         done
8000 }
8001
8002 oos_full() {
8003         local -a AVAILA
8004         local -a GRANTA
8005         local -a TOTALA
8006         local OSCFULL=1
8007         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
8008                   $LCTL get_param obdfilter.*.kbytesavail))
8009         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
8010                   $LCTL get_param -n obdfilter.*.tot_granted))
8011         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
8012                   $LCTL get_param -n obdfilter.*.kbytestotal))
8013         for ((i=0; i<${#AVAILA[@]}; i++)); do
8014                 local -a AVAIL1=(${AVAILA[$i]//=/ })
8015                 local -a TOTAL=(${TOTALA[$i]//=/ })
8016                 GRANT=$((${GRANTA[$i]}/1024))
8017                 # allow 1% of total space in bavail because of delayed
8018                 # allocation with ZFS which might release some free space after
8019                 # txg commit.  For small devices, we set a mininum of 8MB
8020                 local LIMIT=$((${TOTAL} / 100 + 8000))
8021                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
8022                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
8023                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
8024                         echo " FULL" || echo
8025         done
8026         return $OSCFULL
8027 }
8028
8029 list_pool() {
8030         echo -e "$(do_facet $SINGLEMDS $LCTL pool_list $1 | sed '1d')"
8031 }
8032
8033 check_pool_not_exist() {
8034         local fsname=${1%%.*}
8035         local poolname=${1##$fsname.}
8036         [[ $# -ne 1 ]] && return 0
8037         [[ x$poolname = x ]] &&  return 0
8038         list_pool $fsname | grep -w $1 && return 1
8039         return 0
8040 }
8041
8042 create_pool() {
8043         local fsname=${1%%.*}
8044         local poolname=${1##$fsname.}
8045         local keep_pools=${2:-false}
8046
8047         stack_trap "destroy_test_pools $fsname" EXIT
8048         do_facet mgs lctl pool_new $1
8049         local RC=$?
8050         # get param should return err unless pool is created
8051         [[ $RC -ne 0 ]] && return $RC
8052
8053         for mds_id in $(seq $MDSCOUNT); do
8054                 local mdt_id=$((mds_id-1))
8055                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
8056                 wait_update_facet mds$mds_id \
8057                         "lctl get_param -n lod.$lodname.pools.$poolname \
8058                                 2>/dev/null || echo foo" "" ||
8059                         error "mds$mds_id: pool_new failed $1"
8060         done
8061         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
8062                 2>/dev/null || echo foo" "" || error "pool_new failed $1"
8063
8064         $keep_pools || add_pool_to_list $1
8065         return $RC
8066 }
8067
8068 add_pool_to_list () {
8069         local fsname=${1%%.*}
8070         local poolname=${1##$fsname.}
8071
8072         local listvar=${fsname}_CREATED_POOLS
8073         local temp=${listvar}=$(expand_list ${!listvar} $poolname)
8074         eval export $temp
8075 }
8076
8077 remove_pool_from_list () {
8078         local fsname=${1%%.*}
8079         local poolname=${1##$fsname.}
8080
8081         local listvar=${fsname}_CREATED_POOLS
8082         local temp=${listvar}=$(exclude_items_from_list "${!listvar}" $poolname)
8083         eval export $temp
8084 }
8085
8086 # cleanup all pools exist on $FSNAME
8087 destroy_all_pools () {
8088         local i
8089         for i in $(list_pool $FSNAME); do
8090                 destroy_pool $i
8091         done
8092 }
8093
8094 destroy_pool_int() {
8095         local ost
8096         local OSTS=$(list_pool $1)
8097         for ost in $OSTS; do
8098                 do_facet mgs lctl pool_remove $1 $ost
8099         done
8100         wait_update_facet $SINGLEMDS "lctl pool_list $1 | wc -l" "1" ||
8101                 error "MDS: pool_list $1 failed"
8102         do_facet mgs lctl pool_destroy $1
8103 }
8104
8105 # <fsname>.<poolname> or <poolname>
8106 destroy_pool() {
8107         local fsname=${1%%.*}
8108         local poolname=${1##$fsname.}
8109
8110         [[ x$fsname = x$poolname ]] && fsname=$FSNAME
8111
8112         local RC
8113
8114         check_pool_not_exist $fsname.$poolname && return 0 || true
8115
8116         destroy_pool_int $fsname.$poolname
8117         RC=$?
8118         [[ $RC -ne 0 ]] && return $RC
8119         for mds_id in $(seq $MDSCOUNT); do
8120                 local mdt_id=$((mds_id-1))
8121                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
8122                 wait_update_facet mds$mds_id \
8123                         "lctl get_param -n lod.$lodname.pools.$poolname \
8124                                 2>/dev/null || echo foo" "foo" ||
8125                         error "mds$mds_id: destroy pool failed $1"
8126         done
8127         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
8128                 2>/dev/null || echo foo" "foo" || error "destroy pool failed $1"
8129
8130         remove_pool_from_list $fsname.$poolname
8131
8132         return $RC
8133 }
8134
8135 destroy_pools () {
8136         local fsname=${1:-$FSNAME}
8137         local poolname
8138         local listvar=${fsname}_CREATED_POOLS
8139
8140         [ x${!listvar} = x ] && return 0
8141
8142         echo "Destroy the created pools: ${!listvar}"
8143         for poolname in ${!listvar//,/ }; do
8144                 destroy_pool $fsname.$poolname
8145         done
8146 }
8147
8148 destroy_test_pools () {
8149         trap 0
8150         local fsname=${1:-$FSNAME}
8151         destroy_pools $fsname || true
8152 }
8153
8154 gather_logs () {
8155         local list=$1
8156
8157         local ts=$(date +%s)
8158         local docp=true
8159
8160         if [[ ! -f "$YAML_LOG" ]]; then
8161                 # init_logging is not performed before gather_logs,
8162                 # so the $LOGDIR needs to be checked here
8163                 check_shared_dir $LOGDIR && touch $LOGDIR/shared
8164         fi
8165
8166         [ -f $LOGDIR/shared ] && docp=false
8167
8168         # dump lustre logs, dmesg, and journal if GSS_SK=true
8169
8170         prefix="$TESTLOG_PREFIX.$TESTNAME"
8171         suffix="$ts.log"
8172         echo "Dumping lctl log to ${prefix}.*.${suffix}"
8173
8174         if [ -n "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
8175                 echo "Dumping logs only on local client."
8176                 $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
8177                 dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
8178                 [ "$SHARED_KEY" = true ] && find $SK_PATH -name '*.key' -exec \
8179                         lgss_sk -r {} \; &> \
8180                         ${prefix}.ssk_keys.$(hostname -s).${suffix}
8181                 [ "$SHARED_KEY" = true ] && lctl get_param 'nodemap.*.*' > \
8182                         ${prefix}.nodemaps.$(hostname -s).${suffix}
8183                 [ "$GSS_SK" = true ] && keyctl show > \
8184                         ${prefix}.keyring.$(hostname -s).${suffix}
8185                 [ "$GSS_SK" = true ] && journalctl -a > \
8186                         ${prefix}.journal.$(hostname -s).${suffix}
8187                 return
8188         fi
8189
8190         do_nodesv $list \
8191                 "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
8192                 dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
8193         if [ "$SHARED_KEY" = true ]; then
8194                 do_nodesv $list "find $SK_PATH -name '*.key' -exec \
8195                         lgss_sk -r {} \; &> \
8196                         ${prefix}.ssk_keys.\\\$(hostname -s).${suffix}"
8197                 do_facet mds1 "lctl get_param 'nodemap.*.*' > \
8198                         ${prefix}.nodemaps.\\\$(hostname -s).${suffix}"
8199         fi
8200         if [ "$GSS_SK" = true ]; then
8201                 do_nodesv $list "keyctl show > \
8202                         ${prefix}.keyring.\\\$(hostname -s).${suffix}"
8203                 do_nodesv $list "journalctl -a > \
8204                         ${prefix}.journal.\\\$(hostname -s).${suffix}"
8205         fi
8206
8207         if [ ! -f $LOGDIR/shared ]; then
8208                 local remote_nodes=$(exclude_items_from_list $list $HOSTNAME)
8209
8210                 for node in ${remote_nodes//,/ }; do
8211                         rsync -az -e ssh $node:${prefix}.'*'.${suffix} $LOGDIR &
8212                 done
8213         fi
8214 }
8215
8216 do_ls () {
8217     local mntpt_root=$1
8218     local num_mntpts=$2
8219     local dir=$3
8220     local i
8221     local cmd
8222     local pids
8223     local rc=0
8224
8225     for i in $(seq 0 $num_mntpts); do
8226         cmd="ls -laf ${mntpt_root}$i/$dir"
8227         echo + $cmd;
8228         $cmd > /dev/null &
8229         pids="$pids $!"
8230     done
8231     echo pids=$pids
8232     for pid in $pids; do
8233         wait $pid || rc=$?
8234     done
8235
8236     return $rc
8237 }
8238
8239 # check_and_start_recovery_timer()
8240 #       service_time = at_est2timeout(service_time);
8241 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
8242 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
8243
8244 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
8245 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
8246 #define CONNECTION_SWITCH_MIN 5
8247 #define CONNECTION_SWITCH_INC 5
8248 max_recovery_time() {
8249         local init_connect_timeout=$((TIMEOUT / 20))
8250         ((init_connect_timeout >= 5)) || init_connect_timeout=5
8251
8252         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
8253         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
8254
8255         echo -n $service_time
8256 }
8257
8258 recovery_time_min() {
8259         local connection_switch_min=5
8260         local connection_switch_inc=5
8261         local connection_switch_max
8262         local reconnect_delay_max
8263         local initial_connect_timeout
8264         local max
8265         local timout_20
8266
8267         #connection_switch_max=min(50, max($connection_switch_min,$TIMEOUT)
8268         (($connection_switch_min > $TIMEOUT)) &&
8269                 max=$connection_switch_min || max=$TIMEOUT
8270         (($max < 50)) && connection_switch_max=$max || connection_switch_max=50
8271
8272         #initial_connect_timeout = max(connection_switch_min, obd_timeout/20)
8273         timeout_20=$((TIMEOUT/20))
8274         (($connection_switch_min > $timeout_20)) &&
8275                 initial_connect_timeout=$connection_switch_min ||
8276                 initial_connect_timeout=$timeout_20
8277
8278         reconnect_delay_max=$((connection_switch_max + connection_switch_inc + \
8279                                initial_connect_timeout))
8280         echo $((2 * reconnect_delay_max))
8281 }
8282
8283 get_clients_mount_count () {
8284         local clients=${CLIENTS:-$HOSTNAME}
8285
8286         # we need to take into account the clients mounts and
8287         # exclude mds/ost mounts if any;
8288         do_nodes $clients cat /proc/mounts | grep lustre |
8289                 grep -w $MOUNT | wc -l
8290 }
8291
8292 # gss functions
8293 PROC_CLI="srpc_info"
8294 PROC_CON="srpc_contexts"
8295
8296 combination()
8297 {
8298     local M=$1
8299     local N=$2
8300     local R=1
8301
8302     if [ $M -lt $N ]; then
8303         R=0
8304     else
8305         N=$((N + 1))
8306         while [ $N -lt $M ]; do
8307             R=$((R * N))
8308             N=$((N + 1))
8309         done
8310     fi
8311
8312     echo $R
8313     return 0
8314 }
8315
8316 calc_connection_cnt() {
8317         local dir=$1
8318
8319         # MDT->MDT = 2 * C(M, 2)
8320         # MDT->OST = M * O
8321         # CLI->OST = C * O
8322         # CLI->MDT = C * M
8323         comb_m2=$(combination $MDSCOUNT 2)
8324
8325         local num_clients=$(get_clients_mount_count)
8326
8327         local cnt_mdt2mdt=$((comb_m2 * 2))
8328         local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
8329         local cnt_cli2ost=$((num_clients * OSTCOUNT))
8330         local cnt_cli2mdt=$((num_clients * MDSCOUNT))
8331         if is_mounted $MOUNT2; then
8332                 cnt_cli2mdt=$((cnt_cli2mdt * 2))
8333                 cnt_cli2ost=$((cnt_cli2ost * 2))
8334         fi
8335         if local_mode; then
8336                 cnt_mdt2mdt=0
8337                 cnt_mdt2ost=0
8338                 cnt_cli2ost=2
8339                 cnt_cli2mdt=1
8340         fi
8341         local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
8342         local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
8343         local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt \
8344                 + cnt_cli2ost + cnt_cli2mdt))
8345
8346         local var=cnt_$dir
8347         local res=${!var}
8348
8349         echo $res
8350 }
8351
8352 set_rule()
8353 {
8354     local tgt=$1
8355     local net=$2
8356     local dir=$3
8357     local flavor=$4
8358     local cmd="$tgt.srpc.flavor"
8359
8360     if [ $net == "any" ]; then
8361         net="default"
8362     fi
8363     cmd="$cmd.$net"
8364
8365     if [ $dir != "any" ]; then
8366         cmd="$cmd.$dir"
8367     fi
8368
8369     cmd="$cmd=$flavor"
8370     log "Setting sptlrpc rule: $cmd"
8371     do_facet mgs "$LCTL conf_param $cmd"
8372 }
8373
8374 count_contexts()
8375 {
8376         local output=$1
8377         local total_ctx=$(echo "$output" | grep -c "expire.*key.*hdl")
8378         echo $total_ctx
8379 }
8380
8381 count_flvr()
8382 {
8383     local output=$1
8384     local flavor=$2
8385     local count=0
8386
8387     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
8388     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
8389
8390     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
8391
8392     if [ "x$bulkspec" != "x" ]; then
8393         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
8394
8395         if [ "x$algs" != "x" ]; then
8396             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
8397         else
8398             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
8399             if [ $bulk == "bulkn" ]; then
8400                 bulk_count=`echo "$output" | grep "bulk flavor" \
8401                             | grep "null/null" | wc -l`
8402             elif [ $bulk == "bulki" ]; then
8403                 bulk_count=`echo "$output" | grep "bulk flavor" \
8404                             | grep "/null" | grep -v "null/" | wc -l`
8405             else
8406                 bulk_count=`echo "$output" | grep "bulk flavor" \
8407                             | grep -v "/null" | grep -v "null/" | wc -l`
8408             fi
8409         fi
8410
8411         [ $bulk_count -lt $count ] && count=$bulk_count
8412     fi
8413
8414     echo $count
8415 }
8416
8417 flvr_cnt_cli2mdt()
8418 {
8419     local flavor=$1
8420     local cnt
8421
8422     local clients=${CLIENTS:-$HOSTNAME}
8423
8424     for c in ${clients//,/ }; do
8425         local output=$(do_node $c lctl get_param -n \
8426                  mdc.*-*-mdc-*.$PROC_CLI 2>/dev/null)
8427         local tmpcnt=$(count_flvr "$output" $flavor)
8428         if $GSS_SK && [ $flavor != "null" ]; then
8429                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8430                 output=$(do_node $c lctl get_param -n \
8431                          mdc.*-MDT*-mdc-*.$PROC_CON 2>/dev/null)
8432                 local outcon=$(count_contexts "$output")
8433                 if [ "$outcon" -lt "$tmpcnt" ]; then
8434                         tmpcnt=$outcon
8435                 fi
8436         fi
8437         cnt=$((cnt + tmpcnt))
8438     done
8439     echo $cnt
8440 }
8441
8442 flvr_cnt_cli2ost()
8443 {
8444     local flavor=$1
8445     local cnt
8446
8447     local clients=${CLIENTS:-$HOSTNAME}
8448
8449     for c in ${clients//,/ }; do
8450         # reconnect if idle
8451         do_node $c lctl set_param osc.*.idle_connect=1 >/dev/null 2>&1
8452         local output=$(do_node $c lctl get_param -n \
8453                  osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null)
8454         local tmpcnt=$(count_flvr "$output" $flavor)
8455         if $GSS_SK && [ $flavor != "null" ]; then
8456                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8457                 output=$(do_node $c lctl get_param -n \
8458                          osc.*OST*-osc-[^M][^D][^T]*.$PROC_CON 2>/dev/null)
8459                 local outcon=$(count_contexts "$output")
8460                 if [ "$outcon" -lt "$tmpcnt" ]; then
8461                         tmpcnt=$outcon
8462                 fi
8463         fi
8464         cnt=$((cnt + tmpcnt))
8465     done
8466     echo $cnt
8467 }
8468
8469 flvr_cnt_mdt2mdt()
8470 {
8471     local flavor=$1
8472     local cnt=0
8473
8474     if [ $MDSCOUNT -le 1 ]; then
8475         echo 0
8476         return
8477     fi
8478
8479     for num in `seq $MDSCOUNT`; do
8480         local output=$(do_facet mds$num lctl get_param -n \
8481                 osp.*-MDT*osp-MDT*.$PROC_CLI 2>/dev/null)
8482         local tmpcnt=$(count_flvr "$output" $flavor)
8483         if $GSS_SK && [ $flavor != "null" ]; then
8484                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8485                 output=$(do_facet mds$num lctl get_param -n \
8486                         osp.*-MDT*osp-MDT*.$PROC_CON 2>/dev/null)
8487                 local outcon=$(count_contexts "$output")
8488                 if [ "$outcon" -lt "$tmpcnt" ]; then
8489                         tmpcnt=$outcon
8490                 fi
8491         fi
8492         cnt=$((cnt + tmpcnt))
8493     done
8494     echo $cnt;
8495 }
8496
8497 flvr_cnt_mdt2ost()
8498 {
8499     local flavor=$1
8500     local cnt=0
8501     local mdtosc
8502
8503     for num in `seq $MDSCOUNT`; do
8504         mdtosc=$(get_mdtosc_proc_path mds$num)
8505         mdtosc=${mdtosc/-MDT*/-MDT\*}
8506         local output=$(do_facet mds$num lctl get_param -n \
8507                        os[cp].$mdtosc.$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_facet mds$num lctl get_param -n \
8512                          os[cp].$mdtosc.$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_mgc2mgs()
8524 {
8525     local flavor=$1
8526
8527     local output=$(do_facet client lctl get_param -n mgc.*.$PROC_CLI \
8528                         2>/dev/null)
8529     count_flvr "$output" $flavor
8530 }
8531
8532 do_check_flavor()
8533 {
8534     local dir=$1        # from to
8535     local flavor=$2     # flavor expected
8536     local res=0
8537
8538     if [ $dir == "cli2mdt" ]; then
8539         res=`flvr_cnt_cli2mdt $flavor`
8540     elif [ $dir == "cli2ost" ]; then
8541         res=`flvr_cnt_cli2ost $flavor`
8542     elif [ $dir == "mdt2mdt" ]; then
8543         res=`flvr_cnt_mdt2mdt $flavor`
8544     elif [ $dir == "mdt2ost" ]; then
8545         res=`flvr_cnt_mdt2ost $flavor`
8546     elif [ $dir == "all2ost" ]; then
8547         res1=`flvr_cnt_mdt2ost $flavor`
8548         res2=`flvr_cnt_cli2ost $flavor`
8549         res=$((res1 + res2))
8550     elif [ $dir == "all2mdt" ]; then
8551         res1=`flvr_cnt_mdt2mdt $flavor`
8552         res2=`flvr_cnt_cli2mdt $flavor`
8553         res=$((res1 + res2))
8554     elif [ $dir == "all2all" ]; then
8555         res1=`flvr_cnt_mdt2ost $flavor`
8556         res2=`flvr_cnt_cli2ost $flavor`
8557         res3=`flvr_cnt_mdt2mdt $flavor`
8558         res4=`flvr_cnt_cli2mdt $flavor`
8559         res=$((res1 + res2 + res3 + res4))
8560     fi
8561
8562     echo $res
8563 }
8564
8565 wait_flavor()
8566 {
8567         local dir=$1        # from to
8568         local flavor=$2     # flavor expected
8569         local expect=${3:-$(calc_connection_cnt $dir)} # number expected
8570         local WAITFLAVOR_MAX=20 # how many retries before abort?
8571
8572         local res=0
8573         for ((i = 0; i < $WAITFLAVOR_MAX; i++)); do
8574                 echo -n "checking $dir..."
8575                 res=$(do_check_flavor $dir $flavor)
8576                 echo "found $res/$expect $flavor connections"
8577                 [ $res -ge $expect ] && return 0
8578                 sleep 4
8579         done
8580
8581         echo "Error checking $flavor of $dir: expect $expect, actual $res"
8582 #       echo "Dumping additional logs for SK debug.."
8583         do_nodes $(comma_list $(all_server_nodes)) "keyctl show"
8584         if $dump; then
8585                 gather_logs $(comma_list $(nodes_list))
8586         fi
8587         return 1
8588 }
8589
8590 restore_to_default_flavor()
8591 {
8592         local proc="mgs.MGS.live.$FSNAME"
8593
8594         echo "restoring to default flavor..."
8595
8596         local nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8597                 grep ".srpc.flavor" | wc -l)
8598
8599         # remove all existing rules if any
8600         if [ $nrule -ne 0 ]; then
8601                 echo "$nrule existing rules"
8602                 for rule in $(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8603                     grep ".srpc.flavor."); do
8604                         echo "remove rule: $rule"
8605                         spec=`echo $rule | awk -F = '{print $1}'`
8606                         do_facet mgs "$LCTL conf_param -d $spec"
8607                 done
8608         fi
8609
8610         # verify no rules left
8611         nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8612                 grep ".srpc.flavor." | wc -l)
8613         [ $nrule -ne 0 ] && error "still $nrule rules left"
8614
8615         # wait for default flavor to be applied
8616         if $GSS_SK; then
8617                 if $SK_S2S; then
8618                         set_rule $FSNAME any any $SK_FLAVOR
8619                         wait_flavor all2all $SK_FLAVOR
8620                 else
8621                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
8622                         set_rule $FSNAME any cli2ost $SK_FLAVOR
8623                         wait_flavor cli2mdt $SK_FLAVOR
8624                         wait_flavor cli2ost $SK_FLAVOR
8625                 fi
8626                 echo "GSS_SK now at default flavor: $SK_FLAVOR"
8627         else
8628                 wait_flavor all2all null
8629         fi
8630 }
8631
8632 set_flavor_all()
8633 {
8634         local flavor=${1:-null}
8635
8636         echo "setting all flavor to $flavor"
8637
8638         # FIXME need parameter to this fn
8639         # and remove global vars
8640         local cnt_all2all=$(calc_connection_cnt all2all)
8641
8642         local res=$(do_check_flavor all2all $flavor)
8643         if [ $res -eq $cnt_all2all ]; then
8644                 echo "already have total $res $flavor connections"
8645                 return
8646         fi
8647
8648         echo "found $res $flavor out of total $cnt_all2all connections"
8649         restore_to_default_flavor
8650
8651         [[ $flavor = null ]] && return 0
8652
8653         if $GSS_SK && [ $flavor != "null" ]; then
8654                 if $SK_S2S; then
8655                         set_rule $FSNAME any any $flavor
8656                         wait_flavor all2all $flavor
8657                 else
8658                         set_rule $FSNAME any cli2mdt $flavor
8659                         set_rule $FSNAME any cli2ost $flavor
8660                         set_rule $FSNAME any mdt2ost null
8661                         set_rule $FSNAME any mdt2mdt null
8662                         wait_flavor cli2mdt $flavor
8663                         wait_flavor cli2ost $flavor
8664                 fi
8665                 echo "GSS_SK now at flavor: $flavor"
8666         else
8667                 set_rule $FSNAME any any $flavor
8668                 wait_flavor all2all $flavor
8669         fi
8670 }
8671
8672
8673 check_logdir() {
8674     local dir=$1
8675     # Checking for shared logdir
8676     if [ ! -d $dir ]; then
8677         # Not found. Create local logdir
8678         mkdir -p $dir
8679     else
8680         touch $dir/check_file.$(hostname -s)
8681     fi
8682     return 0
8683 }
8684
8685 check_write_access() {
8686         local dir=$1
8687         local list=${2:-$(comma_list $(nodes_list))}
8688         local node
8689         local file
8690
8691         for node in ${list//,/ }; do
8692                 file=$dir/check_file.$(short_nodename $node)
8693                 if [[ ! -f "$file" ]]; then
8694                         # Logdir not accessible/writable from this node.
8695                         return 1
8696                 fi
8697                 rm -f $file || return 1
8698         done
8699         return 0
8700 }
8701
8702 init_logging() {
8703         [[ -n $YAML_LOG ]] && return
8704         local save_umask=$(umask)
8705         umask 0000
8706
8707         export YAML_LOG=${LOGDIR}/results.yml
8708         mkdir -p $LOGDIR
8709         init_clients_lists
8710
8711         # If the yaml log already exists then we will just append to it
8712         if [ ! -f $YAML_LOG ]; then
8713                 if check_shared_dir $LOGDIR; then
8714                         touch $LOGDIR/shared
8715                         echo "Logging to shared log directory: $LOGDIR"
8716                 else
8717                         echo "Logging to local directory: $LOGDIR"
8718                 fi
8719
8720                 yml_nodes_file $LOGDIR >> $YAML_LOG
8721                 yml_results_file >> $YAML_LOG
8722         fi
8723
8724         umask $save_umask
8725
8726         # log actual client and server versions if needed for debugging
8727         log "Client: $(lustre_build_version client)"
8728         log "MDS: $(lustre_build_version mds1)"
8729         log "OSS: $(lustre_build_version ost1)"
8730 }
8731
8732 log_test() {
8733     yml_log_test $1 >> $YAML_LOG
8734 }
8735
8736 log_test_status() {
8737      yml_log_test_status $@ >> $YAML_LOG
8738 }
8739
8740 log_sub_test_begin() {
8741     yml_log_sub_test_begin "$@" >> $YAML_LOG
8742 }
8743
8744 log_sub_test_end() {
8745     yml_log_sub_test_end "$@" >> $YAML_LOG
8746 }
8747
8748 run_llverdev()
8749 {
8750         local dev=$1; shift
8751         local llverdev_opts="$*"
8752         local devname=$(basename $dev)
8753         local size=$(awk "/$devname$/ {print \$3}" /proc/partitions)
8754         # loop devices aren't in /proc/partitions
8755         [[ -z "$size" ]] && size=$(stat -c %s $dev)
8756
8757         local size_gb=$((size / 1024 / 1024)) # Gb
8758
8759         local partial_arg=""
8760         # Run in partial (fast) mode if the size of a partition > 1 GB
8761         (( $size == 0 || $size_gb > 1 )) && partial_arg="-p"
8762
8763         llverdev --force $partial_arg $llverdev_opts $dev
8764 }
8765
8766 run_llverfs()
8767 {
8768         local dir=$1
8769         local llverfs_opts=$2
8770         local use_partial_arg=$3
8771         local partial_arg=""
8772         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
8773
8774         # Run in partial (fast) mode if the size of a partition > 1 GB
8775         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
8776
8777         llverfs $partial_arg $llverfs_opts $dir
8778 }
8779
8780 run_sgpdd () {
8781     local devs=${1//,/ }
8782     shift
8783     local params=$@
8784     local rslt=$TMP/sgpdd_survey
8785
8786     # sgpdd-survey cleanups ${rslt}.* files
8787
8788     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
8789     echo + $cmd
8790     eval $cmd
8791     cat ${rslt}.detail
8792 }
8793
8794 # returns the canonical name for an ldiskfs device
8795 ldiskfs_canon() {
8796         local dev="$1"
8797         local facet="$2"
8798
8799         do_facet $facet "dv=\\\$($LCTL get_param -n $dev);
8800                          if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
8801                                 echo dm-\\\${foo##*:};
8802                          else
8803                                 name=\\\$(basename \\\$dv);
8804                                 if [[ \\\$name = *flakey* ]]; then
8805                                         name=\\\$(lsblk -o NAME,KNAME |
8806                                                 awk /\\\$name/'{print \\\$NF}');
8807                                 fi;
8808                                 echo \\\$name;
8809                          fi;"
8810 }
8811
8812 is_sanity_benchmark() {
8813     local benchmarks="dbench bonnie iozone fsx"
8814     local suite=$1
8815     for b in $benchmarks; do
8816         if [ "$b" == "$suite" ]; then
8817             return 0
8818         fi
8819     done
8820     return 1
8821 }
8822
8823 min_ost_size () {
8824         $LFS df | grep OST | awk '{print $4}' | sort -un | head -1
8825 }
8826
8827 #
8828 # Get the available size (KB) of a given obd target.
8829 #
8830 get_obd_size() {
8831         local facet=$1
8832         local obd=$2
8833         local size
8834
8835         [[ $facet != client ]] || return 0
8836
8837         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
8838         echo -n $size
8839 }
8840
8841 #
8842 # Get the page size (bytes) on a given facet node.
8843 # The local client page_size is directly available in PAGE_SIZE.
8844 #
8845 get_page_size() {
8846         local facet=$1
8847         local page_size=$(getconf PAGE_SIZE 2>/dev/null)
8848
8849         [ -z "$CLIENTONLY" -a "$facet" != "client" ] &&
8850                 page_size=$(do_facet $facet getconf PAGE_SIZE)
8851         echo -n ${page_size:-4096}
8852 }
8853
8854 #
8855 # Get the block count of the filesystem.
8856 #
8857 get_block_count() {
8858         local facet=$1
8859         local device=$2
8860         local count
8861
8862         [ -z "$CLIENTONLY" ] && count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8863                 awk '/^Block count:/ {print $3}')
8864         echo -n ${count:-0}
8865 }
8866
8867 # Check whether the "ea_inode" feature is enabled or not, to allow
8868 # ldiskfs xattrs over one block in size.  Allow both the historical
8869 # Lustre feature name (large_xattr) and the upstream name (ea_inode).
8870 large_xattr_enabled() {
8871         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
8872
8873         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8874
8875         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
8876                 grep -E -q '(ea_inode|large_xattr)'"
8877         return ${PIPESTATUS[0]}
8878 }
8879
8880 # Get the maximum xattr size supported by the filesystem.
8881 max_xattr_size() {
8882         $LCTL get_param -n llite.*.max_easize
8883 }
8884
8885 # Dump the value of the named xattr from a file.
8886 get_xattr_value() {
8887     local xattr_name=$1
8888     local file=$2
8889
8890     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
8891 }
8892
8893 # Generate a string with size of $size bytes.
8894 generate_string() {
8895     local size=${1:-1024} # in bytes
8896
8897     echo "$(head -c $size < /dev/zero | tr '\0' y)"
8898 }
8899
8900 reformat_external_journal() {
8901         local facet=$1
8902         local var
8903
8904         var=${facet}_JRN
8905         if [ -n "${!var}" ]; then
8906                 local rcmd="do_facet $facet"
8907
8908                 echo "reformat external journal on $facet:${!var}"
8909                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
8910         fi
8911 }
8912
8913 # MDT file-level backup/restore
8914 mds_backup_restore() {
8915         local facet=$1
8916         local igif=$2
8917         local devname=$(mdsdevname $(facet_number $facet))
8918         local mntpt=$(facet_mntpt brpt)
8919         local rcmd="do_facet $facet"
8920         local metadata=${TMP}/backup_restore.tgz
8921         local opts=${MDS_MOUNT_FS_OPTS}
8922         local svc=${facet}_svc
8923
8924         if ! ${rcmd} test -b ${devname}; then
8925                 opts=$(csa_add "$opts" -o loop)
8926         fi
8927
8928         echo "file-level backup/restore on $facet:${devname}"
8929
8930         # step 1: build mount point
8931         ${rcmd} mkdir -p $mntpt
8932         # step 2: cleanup old backup
8933         ${rcmd} rm -f $metadata
8934         # step 3: mount dev
8935         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 3
8936         if [ ! -z $igif ]; then
8937                 # step 3.5: rm .lustre
8938                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 3
8939         fi
8940         # step 4: backup metadata
8941         echo "backup data"
8942         ${rcmd} tar zcf $metadata --xattrs --xattrs-include="trusted.*" \
8943                 --sparse -C $mntpt/ . > /dev/null 2>&1 || return 4
8944         # step 5: umount
8945         ${rcmd} $UMOUNT $mntpt || return 5
8946         # step 6: reformat dev
8947         echo "reformat new device"
8948         format_mdt $(facet_number $facet)
8949         # step 7: mount dev
8950         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
8951         # step 8: restore metadata
8952         echo "restore data"
8953         ${rcmd} tar zxfp $metadata --xattrs --xattrs-include="trusted.*" \
8954                 --sparse -C $mntpt > /dev/null 2>&1 || return 8
8955         # step 9: remove recovery logs
8956         echo "remove recovery logs"
8957         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
8958         # step 10: umount dev
8959         ${rcmd} $UMOUNT $mntpt || return 10
8960         # step 11: cleanup tmp backup
8961         ${rcmd} rm -f $metaea $metadata
8962         # step 12: reset device label - it's not virgin on
8963         ${rcmd} e2label $devname ${!svc}
8964 }
8965
8966 # remove OI files
8967 mds_remove_ois() {
8968         local facet=$1
8969         local idx=$2
8970         local devname=$(mdsdevname $(facet_number $facet))
8971         local mntpt=$(facet_mntpt brpt)
8972         local rcmd="do_facet $facet"
8973         local opts=${MDS_MOUNT_FS_OPTS}
8974
8975         if ! ${rcmd} test -b ${devname}; then
8976                 opts=$(csa_add "$opts" -o loop)
8977         fi
8978
8979         echo "removing OI files on $facet: idx=${idx}"
8980
8981         # step 1: build mount point
8982         ${rcmd} mkdir -p $mntpt
8983         # step 2: mount dev
8984         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8985         if [ -z $idx ]; then
8986                 # step 3: remove all OI files
8987                 ${rcmd} rm -fv $mntpt/oi.16*
8988         elif [ $idx -lt 2 ]; then
8989                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
8990         else
8991                 local i
8992
8993                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
8994                 for ((i=${idx}; i<64; i=$((i * idx)))); do
8995                         ${rcmd} rm -fv $mntpt/oi.16.${i}
8996                 done
8997         fi
8998         # step 4: umount
8999         ${rcmd} $UMOUNT $mntpt || return 2
9000         # OI files will be recreated when mounted as lustre next time.
9001 }
9002
9003 # generate maloo upload-able log file name
9004 # \param logname specify unique part of file name
9005 generate_logname() {
9006         local logname=${1:-"default_logname"}
9007
9008         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
9009 }
9010
9011 # make directory on different MDTs
9012 test_mkdir() {
9013         local path
9014         local p_option
9015         local hash_type
9016         local hash_name=("all_char" "fnv_1a_64" "crush")
9017         local dirstripe_count=${DIRSTRIPE_COUNT:-"2"}
9018         local dirstripe_index=${DIRSTRIPE_INDEX:-$((base % $MDSCOUNT))}
9019         local OPTIND=1
9020
9021         while getopts "c:H:i:p" opt; do
9022                 case $opt in
9023                         c) dirstripe_count=$OPTARG;;
9024                         H) hash_type=$OPTARG;;
9025                         i) dirstripe_index=$OPTARG;;
9026                         p) p_option="-p";;
9027                         \?) error "only support -c -H -i -p";;
9028                 esac
9029         done
9030
9031         shift $((OPTIND - 1))
9032         [ $# -eq 1 ] || error "Only creating single directory is supported"
9033         path="$*"
9034
9035         local parent=$(dirname $path)
9036         if [ "$p_option" == "-p" ]; then
9037                 [ -d $path ] && return 0
9038                 if [ ! -d ${parent} ]; then
9039                         mkdir -p ${parent} ||
9040                                 error "mkdir parent '$parent' failed"
9041                 fi
9042         fi
9043
9044         if [ $MDSCOUNT -le 1 ] || ! is_lustre ${parent}; then
9045                 mkdir $path || error "mkdir '$path' failed"
9046         else
9047                 local mdt_index
9048
9049                 if [ $dirstripe_index -eq -1 ]; then
9050                         mdt_index=$((base % MDSCOUNT))
9051                 else
9052                         mdt_index=$dirstripe_index
9053                 fi
9054
9055                 # randomly choose hash type
9056                 [ -z "$hash_type" ] &&
9057                         hash_type=${hash_name[$((RANDOM % ${#hash_name[@]}))]}
9058
9059                 if (($MDS1_VERSION >= $(version_code 2.8.0))); then
9060                         if [ $dirstripe_count -eq -1 ]; then
9061                                 dirstripe_count=$((RANDOM % MDSCOUNT + 1))
9062                         fi
9063                 else
9064                         dirstripe_count=1
9065                 fi
9066
9067                 echo "striped dir -i$mdt_index -c$dirstripe_count -H $hash_type $path"
9068                 $LFS mkdir -i$mdt_index -c$dirstripe_count -H $hash_type $path ||
9069                         error "mkdir -i $mdt_index -c$dirstripe_count -H $hash_type $path failed"
9070         fi
9071 }
9072
9073 # free_fd: find the smallest and not in use file descriptor [above @last_fd]
9074 #
9075 # If called many times, passing @last_fd will avoid repeated searching
9076 # already-open FDs repeatedly if we know they are still in use.
9077 #
9078 # usage: free_fd [last_fd]
9079 free_fd()
9080 {
9081         local max_fd=$(ulimit -n)
9082         local fd=$((${1:-2} + 1))
9083
9084         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
9085                 ((++fd))
9086         done
9087         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
9088         echo $fd
9089 }
9090
9091 check_mount_and_prep()
9092 {
9093         is_mounted $MOUNT || setupall
9094
9095         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
9096         mkdir_on_mdt0 $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
9097         for idx in $(seq $MDSCOUNT); do
9098                 local name="MDT$(printf '%04x' $((idx - 1)))"
9099                 rm -rf $MOUNT/.lustre/lost+found/$name/*
9100         done
9101 }
9102
9103 # calcule how many ost-objects to be created.
9104 precreated_ost_obj_count()
9105 {
9106         local mdt_idx=$1
9107         local ost_idx=$2
9108         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
9109         local ost_name="OST$(printf '%04x' $ost_idx)"
9110         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
9111         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
9112                         osp.$proc_path.prealloc_last_id)
9113         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
9114                         osp.$proc_path.prealloc_next_id)
9115         echo $((last_id - next_id + 1))
9116 }
9117
9118 check_file_in_pool()
9119 {
9120         local file=$1
9121         local pool=$2
9122         local tlist="$3"
9123         local res=$($LFS getstripe $file | grep 0x | cut -f2)
9124         for i in $res
9125         do
9126                 for t in $tlist ; do
9127                         [ "$i" -eq "$t" ] && continue 2
9128                 done
9129
9130                 echo "pool list: $tlist"
9131                 echo "striping: $res"
9132                 error_noexit "$file not allocated in $pool"
9133                 return 1
9134         done
9135         return 0
9136 }
9137
9138 pool_add() {
9139         echo "Creating new pool"
9140         local pool=$1
9141
9142         create_pool $FSNAME.$pool ||
9143                 { error_noexit "No pool created, result code $?"; return 1; }
9144         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
9145                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9146 }
9147
9148 pool_add_targets() {
9149         echo "Adding targets to pool"
9150         local pool=$1
9151         local first=$2
9152         local last=$3
9153         local step=${4:-1}
9154
9155         if [ -z $last ]; then
9156                 local list=$first
9157         else
9158                 local list=$(seq $first $step $last)
9159         fi
9160
9161         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9162         local tg=$(for i in $list;
9163                 do printf -- "-e $FSNAME-OST%04x_UUID " $i; done)
9164         local firstx=$(printf "%04x" $first)
9165         local lastx=$(printf "%04x" $last)
9166
9167         do_facet mgs $LCTL pool_add \
9168                 $FSNAME.$pool $FSNAME-OST[$firstx-$lastx/$step]
9169         # ignore EEXIST(17)
9170         if (( $? != 0 && $? != 17 )); then
9171                 error_noexit "pool_add $FSNAME-OST[$firstx-$lastx/$step] failed"
9172                 return 3
9173         fi
9174
9175         # wait for OSTs to be added to the pool
9176         for mds_id in $(seq $MDSCOUNT); do
9177                 local mdt_id=$((mds_id-1))
9178                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9179                 wait_update_facet mds$mds_id \
9180                         "lctl get_param -n lod.$lodname.pools.$pool |
9181                                 grep $tg | sort -u | tr '\n' ' '" "$t" || {
9182                         error_noexit "mds$mds_id: Add to pool failed"
9183                         return 2
9184                 }
9185         done
9186         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool |
9187                         grep $tg | sort -u | tr '\n' ' ' " "$t" || {
9188                 error_noexit "Add to pool failed"
9189                 return 1
9190         }
9191 }
9192
9193 pool_set_dir() {
9194         local pool=$1
9195         local tdir=$2
9196         echo "Setting pool on directory $tdir"
9197
9198         $LFS setstripe -c 2 -p $pool $tdir && return 0
9199
9200         error_noexit "Cannot set pool $pool to $tdir"
9201         return 1
9202 }
9203
9204 pool_check_dir() {
9205         local pool=$1
9206         local tdir=$2
9207         echo "Checking pool on directory $tdir"
9208
9209         local res=$($LFS getstripe --pool $tdir | sed "s/\s*$//")
9210         [ "$res" = "$pool" ] && return 0
9211
9212         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9213         return 1
9214 }
9215
9216 pool_dir_rel_path() {
9217         echo "Testing relative path works well"
9218         local pool=$1
9219         local tdir=$2
9220         local root=$3
9221
9222         mkdir -p $root/$tdir/$tdir
9223         cd $root/$tdir
9224         pool_set_dir $pool $tdir          || return 1
9225         pool_set_dir $pool ./$tdir        || return 2
9226         pool_set_dir $pool ../$tdir       || return 3
9227         pool_set_dir $pool ../$tdir/$tdir || return 4
9228         rm -rf $tdir; cd - > /dev/null
9229 }
9230
9231 pool_alloc_files() {
9232         echo "Checking files allocation from directory pool"
9233         local pool=$1
9234         local tdir=$2
9235         local count=$3
9236         local tlist="$4"
9237
9238         local failed=0
9239         for i in $(seq -w 1 $count)
9240         do
9241                 local file=$tdir/file-$i
9242                 touch $file
9243                 check_file_in_pool $file $pool "$tlist" || \
9244                         failed=$((failed + 1))
9245         done
9246         [ "$failed" = 0 ] && return 0
9247
9248         error_noexit "$failed files not allocated in $pool"
9249         return 1
9250 }
9251
9252 pool_create_files() {
9253         echo "Creating files in pool"
9254         local pool=$1
9255         local tdir=$2
9256         local count=$3
9257         local tlist="$4"
9258
9259         mkdir -p $tdir
9260         local failed=0
9261         for i in $(seq -w 1 $count)
9262         do
9263                 local file=$tdir/spoo-$i
9264                 $LFS setstripe -p $pool $file
9265                 check_file_in_pool $file $pool "$tlist" || \
9266                         failed=$((failed + 1))
9267         done
9268         [ "$failed" = 0 ] && return 0
9269
9270         error_noexit "$failed files not allocated in $pool"
9271         return 1
9272 }
9273
9274 pool_lfs_df() {
9275         echo "Checking 'lfs df' output"
9276         local pool=$1
9277
9278         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9279                         tr '\n' ' ')
9280         local res=$($LFS df --pool $FSNAME.$pool |
9281                         awk '{print $1}' |
9282                         grep "$FSNAME-OST" |
9283                         tr '\n' ' ')
9284         [ "$res" = "$t" ] && return 0
9285
9286         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9287         return 1
9288 }
9289
9290 pool_file_rel_path() {
9291         echo "Creating files in a pool with relative pathname"
9292         local pool=$1
9293         local tdir=$2
9294
9295         mkdir -p $tdir ||
9296                 { error_noexit "unable to create $tdir"; return 1 ; }
9297         local file="/..$tdir/$tfile-1"
9298         $LFS setstripe -p $pool $file ||
9299                 { error_noexit "unable to create $file" ; return 2 ; }
9300
9301         cd $tdir
9302         $LFS setstripe -p $pool $tfile-2 || {
9303                 error_noexit "unable to create $tfile-2 in $tdir"
9304                 return 3
9305         }
9306 }
9307
9308 pool_remove_first_target() {
9309         echo "Removing first target from a pool"
9310         pool_remove_target $1 -1
9311 }
9312
9313 pool_remove_target() {
9314         local pool=$1
9315         local index=$2
9316
9317         local pname="lov.$FSNAME-*.pools.$pool"
9318         if [ $index -eq -1 ]; then
9319                 local t=$($LCTL get_param -n $pname | head -1)
9320         else
9321                 local t=$(printf "$FSNAME-OST%04x_UUID" $index)
9322         fi
9323
9324         echo "Removing $t from $pool"
9325         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9326         for mds_id in $(seq $MDSCOUNT); do
9327                 local mdt_id=$((mds_id-1))
9328                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9329                 wait_update_facet mds$mds_id \
9330                         "lctl get_param -n lod.$lodname.pools.$pool |
9331                                 grep $t" "" || {
9332                         error_noexit "mds$mds_id: $t not removed from" \
9333                         "$FSNAME.$pool"
9334                         return 2
9335                 }
9336         done
9337         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9338                 error_noexit "$t not removed from $FSNAME.$pool"
9339                 return 1
9340         }
9341 }
9342
9343 pool_remove_all_targets() {
9344         echo "Removing all targets from pool"
9345         local pool=$1
9346         local file=$2
9347         local pname="lov.$FSNAME-*.pools.$pool"
9348         for t in $($LCTL get_param -n $pname | sort -u)
9349         do
9350                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9351         done
9352         for mds_id in $(seq $MDSCOUNT); do
9353                 local mdt_id=$((mds_id-1))
9354                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9355                 wait_update_facet mds$mds_id "lctl get_param -n \
9356                         lod.$lodname.pools.$pool" "" || {
9357                         error_noexit "mds$mds_id: Pool $pool not drained"
9358                         return 4
9359                 }
9360         done
9361         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9362                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9363                 return 1
9364         }
9365         # striping on an empty/nonexistant pool should fall back
9366         # to "pool of everything"
9367         touch $file || {
9368                 error_noexit "failed to use fallback striping for empty pool"
9369                 return 2
9370         }
9371         # setstripe on an empty pool should fail
9372         $LFS setstripe -p $pool $file 2>/dev/null && {
9373                 error_noexit "expected failure when creating file" \
9374                                                         "with empty pool"
9375                 return 3
9376         }
9377         return 0
9378 }
9379
9380 pool_remove() {
9381         echo "Destroying pool"
9382         local pool=$1
9383         local file=$2
9384
9385         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9386
9387         sleep 2
9388         # striping on an empty/nonexistant pool should fall back
9389         # to "pool of everything"
9390         touch $file || {
9391                 error_noexit "failed to use fallback striping for missing pool"
9392                 return 1
9393         }
9394         # setstripe on an empty pool should fail
9395         $LFS setstripe -p $pool $file 2>/dev/null && {
9396                 error_noexit "expected failure when creating file" \
9397                                                         "with missing pool"
9398                 return 2
9399         }
9400
9401         # get param should return err once pool is gone
9402         if wait_update $HOSTNAME "lctl get_param -n \
9403                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9404         then
9405                 remove_pool_from_list $FSNAME.$pool
9406                 return 0
9407         fi
9408         error_noexit "Pool $FSNAME.$pool is not destroyed"
9409         return 3
9410 }
9411
9412 # Get and check the actual stripe count of one file.
9413 # Usage: check_stripe_count <file> <expected_stripe_count>
9414 check_stripe_count() {
9415         local file=$1
9416         local expected=$2
9417         local actual
9418
9419         [[ -z "$file" || -z "$expected" ]] &&
9420                 error "check_stripe_count: invalid argument"
9421
9422         local cmd="$LFS getstripe -c $file"
9423         actual=$($cmd) || error "$cmd failed"
9424         actual=${actual%% *}
9425
9426         if [[ $actual -ne $expected ]]; then
9427                 [[ $expected -eq -1 ]] || { $LFS getstripe $file;
9428                         error "$cmd not expected ($expected): found $actual"; }
9429                 [[ $actual -eq $OSTCOUNT ]] || { $LFS getstripe $file;
9430                         error "$cmd not OST count ($OSTCOUNT): found $actual"; }
9431         fi
9432 }
9433
9434 # Get and check the actual list of OST indices on one file.
9435 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
9436 check_obdidx() {
9437         local file=$1
9438         local expected=$2
9439         local obdidx
9440
9441         [[ -z "$file" || -z "$expected" ]] &&
9442                 error "check_obdidx: invalid argument!"
9443
9444         obdidx=$(comma_list $($LFS getstripe $file | grep -A $OSTCOUNT obdidx |
9445                               grep -v obdidx | awk '{print $1}' | xargs))
9446
9447         [[ $obdidx = $expected ]] ||
9448                 error "list of OST indices on $file is $obdidx," \
9449                       "should be $expected"
9450 }
9451
9452 # Get and check the actual OST index of the first stripe on one file.
9453 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
9454 check_start_ost_idx() {
9455         local file=$1
9456         local expected=$2
9457         local start_ost_idx
9458
9459         [[ -z "$file" || -z "$expected" ]] &&
9460                 error "check_start_ost_idx: invalid argument!"
9461
9462         start_ost_idx=$($LFS getstripe $file | grep -A 1 obdidx |
9463                          grep -v obdidx | awk '{print $1}')
9464
9465         [[ $start_ost_idx = $expected ]] ||
9466                 error "OST index of the first stripe on $file is" \
9467                       "$start_ost_idx, should be $expected"
9468 }
9469
9470 killall_process () {
9471         local clients=${1:-$(hostname)}
9472         local name=$2
9473         local signal=$3
9474         local rc=0
9475
9476         do_nodes $clients "killall $signal $name"
9477 }
9478
9479 lsnapshot_create()
9480 {
9481         do_facet mgs "$LCTL snapshot_create -F $FSNAME $*"
9482 }
9483
9484 lsnapshot_destroy()
9485 {
9486         do_facet mgs "$LCTL snapshot_destroy -F $FSNAME $*"
9487 }
9488
9489 lsnapshot_modify()
9490 {
9491         do_facet mgs "$LCTL snapshot_modify -F $FSNAME $*"
9492 }
9493
9494 lsnapshot_list()
9495 {
9496         do_facet mgs "$LCTL snapshot_list -F $FSNAME $*"
9497 }
9498
9499 lsnapshot_mount()
9500 {
9501         do_facet mgs "$LCTL snapshot_mount -F $FSNAME $*"
9502 }
9503
9504 lsnapshot_umount()
9505 {
9506         do_facet mgs "$LCTL snapshot_umount -F $FSNAME $*"
9507 }
9508
9509 lss_err()
9510 {
9511         local msg=$1
9512
9513         do_facet mgs "cat $LSNAPSHOT_LOG"
9514         error $msg
9515 }
9516
9517 lss_cleanup()
9518 {
9519         echo "Cleaning test environment ..."
9520
9521         # Every lsnapshot command takes exclusive lock with others,
9522         # so can NOT destroy the snapshot during list with 'xargs'.
9523         while true; do
9524                 local ssname=$(lsnapshot_list | grep snapshot_name |
9525                         grep lss_ | awk '{ print $2 }' | head -n 1)
9526                 [ -z "$ssname" ] && break
9527
9528                 lsnapshot_destroy -n $ssname -f ||
9529                         lss_err "Fail to destroy $ssname by force"
9530         done
9531 }
9532
9533 lss_gen_conf_one()
9534 {
9535         local facet=$1
9536         local role=$2
9537         local idx=$3
9538
9539         local host=$(facet_active_host $facet)
9540         local dir=$(dirname $(facet_vdevice $facet))
9541         local pool=$(zpool_name $facet)
9542         local lfsname=$(zfs_local_fsname $facet)
9543         local label=${FSNAME}-${role}$(printf '%04x' $idx)
9544
9545         do_facet mgs \
9546                 "echo '$host - $label zfs:${dir}/${pool}/${lfsname} - -' >> \
9547                 $LSNAPSHOT_CONF"
9548 }
9549
9550 lss_gen_conf()
9551 {
9552         do_facet mgs "rm -f $LSNAPSHOT_CONF"
9553         echo "Generating $LSNAPSHOT_CONF on MGS ..."
9554
9555         if ! combined_mgs_mds ; then
9556                 [ $(facet_fstype mgs) != zfs ] &&
9557                         skip "Lustre snapshot 1 only works for ZFS backend"
9558
9559                 local host=$(facet_active_host mgs)
9560                 local dir=$(dirname $(facet_vdevice mgs))
9561                 local pool=$(zpool_name mgs)
9562                 local lfsname=$(zfs_local_fsname mgs)
9563
9564                 do_facet mgs \
9565                         "echo '$host - MGS zfs:${dir}/${pool}/${lfsname} - -' \
9566                         >> $LSNAPSHOT_CONF" || lss_err "generate lss conf (mgs)"
9567         fi
9568
9569         for num in `seq $MDSCOUNT`; do
9570                 [ $(facet_fstype mds$num) != zfs ] &&
9571                         skip "Lustre snapshot 1 only works for ZFS backend"
9572
9573                 lss_gen_conf_one mds$num MDT $((num - 1)) ||
9574                         lss_err "generate lss conf (mds$num)"
9575         done
9576
9577         for num in `seq $OSTCOUNT`; do
9578                 [ $(facet_fstype ost$num) != zfs ] &&
9579                         skip "Lustre snapshot 1 only works for ZFS backend"
9580
9581                 lss_gen_conf_one ost$num OST $((num - 1)) ||
9582                         lss_err "generate lss conf (ost$num)"
9583         done
9584
9585         do_facet mgs "cat $LSNAPSHOT_CONF"
9586 }
9587
9588 # Parse 'lfs getstripe -d <path_with_dir_name>' for non-composite dir
9589 parse_plain_dir_param()
9590 {
9591         local invalues=($1)
9592         local param=""
9593
9594         if [[ ${invalues[0]} =~ "stripe_count:" ]]; then
9595                 param="-c ${invalues[1]}"
9596         fi
9597         if [[ ${invalues[2]} =~ "stripe_size:" ]]; then
9598                 param="$param -S ${invalues[3]}"
9599         fi
9600         if [[ ${invalues[4]} =~ "pattern:" ]]; then
9601                 if [[ ${invalues[5]} =~ "stripe_offset:" ]]; then
9602                         param="$param -i ${invalues[6]}"
9603                 else
9604                         param="$param -L ${invalues[5]} -i ${invalues[7]}"
9605                 fi
9606         elif [[ ${invalues[4]} =~ "stripe_offset:" ]]; then
9607                 param="$param -i ${invalues[5]}"
9608         fi
9609         echo "$param"
9610 }
9611
9612 parse_plain_param()
9613 {
9614         local line=$1
9615         local val=$(awk '{print $2}' <<< $line)
9616
9617         if [[ $line =~ ^"lmm_stripe_count:" ]]; then
9618                 echo "-c $val"
9619         elif [[ $line =~ ^"lmm_stripe_size:" ]]; then
9620                 echo "-S $val"
9621         elif [[ $line =~ ^"lmm_stripe_offset:" ]]; then
9622                 echo "-i $val"
9623         elif [[ $line =~ ^"lmm_pattern:" ]]; then
9624                 echo "-L $val"
9625         fi
9626 }
9627
9628 parse_layout_param()
9629 {
9630         local mode=""
9631         local val=""
9632         local param=""
9633
9634         while read line; do
9635                 if [[ ! -z $line ]]; then
9636                         if [[ -z $mode ]]; then
9637                                 if [[ $line =~ ^"stripe_count:" ]]; then
9638                                         mode="plain_dir"
9639                                 elif [[ $line =~ ^"lmm_stripe_count:" ]]; then
9640                                         mode="plain_file"
9641                                 elif [[ $line =~ ^"lcm_layout_gen:" ]]; then
9642                                         mode="pfl"
9643                                 fi
9644                         fi
9645
9646                         if [[ $mode = "plain_dir" ]]; then
9647                                 param=$(parse_plain_dir_param "$line")
9648                         elif [[ $mode = "plain_file" ]]; then
9649                                 val=$(parse_plain_param "$line")
9650                                 [[ ! -z $val ]] && param="$param $val"
9651                         elif [[ $mode = "pfl" ]]; then
9652                                 val=$(echo $line | awk '{print $2}')
9653                                 if [[ $line =~ ^"lcme_extent.e_end:" ]]; then
9654                                         if [[ $val = "EOF" ]]; then
9655                                                 param="$param -E -1"
9656                                         else
9657                                                 param="$param -E $val"
9658                                         fi
9659                                 elif [[ $line =~ ^"stripe_count:" ]]; then
9660                                         # pfl dir
9661                                         val=$(parse_plain_dir_param "$line")
9662                                         param="$param $val"
9663                                 else
9664                                         #pfl file
9665                                         val=$(parse_plain_param "$line")
9666                                         [[ ! -z $val ]] && param="$param $val"
9667                                 fi
9668                         fi
9669                 fi
9670         done
9671         echo "$param"
9672 }
9673
9674 get_layout_param()
9675 {
9676         local param=$($LFS getstripe -d $1 | parse_layout_param)
9677         echo "$param"
9678 }
9679
9680 lfsck_verify_pfid()
9681 {
9682         local f
9683         local rc=0
9684
9685         # Cancel locks before setting lfsck_verify_pfid so that errors are more
9686         # controllable
9687         cancel_lru_locks mdc
9688         cancel_lru_locks osc
9689
9690         # make sure PFID is set correctly for files
9691         do_nodes $(comma_list $(osts_nodes)) \
9692                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1"
9693
9694         for f in "$@"; do
9695                 cat $f &> /dev/nullA ||
9696                         { rc=$?; echo "verify $f failed"; break; }
9697         done
9698
9699         do_nodes $(comma_list $(osts_nodes)) \
9700                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=0"
9701         return $rc
9702 }
9703
9704 # check that clients "oscs" was evicted after "before"
9705 check_clients_evicted() {
9706         local before=$1
9707         shift
9708         local oscs=${@}
9709         local osc
9710         local rc=0
9711
9712         for osc in $oscs; do
9713                 echo "Check state for $osc"
9714                 local evicted=$(do_facet client $LCTL get_param osc.$osc.state |
9715                         tail -n 5 | awk -F"[ ,]" \
9716                         '/EVICTED/ { if (mx<$4) { mx=$4; } } END { print mx }')
9717                 if (($? == 0)) && (($evicted > $before)); then
9718                         echo "$osc is evicted at $evicted"
9719                 else
9720                         ((rc++))
9721                         echo "$osc was not evicted after $before:"
9722                         do_facet client $LCTL get_param osc.$osc.state |
9723                                 tail -n 8
9724                 fi
9725         done
9726
9727         [ $rc -eq 0 ] || error "client not evicted from OST"
9728 }
9729
9730 # check that clients OSCS current_state is FULL
9731 check_clients_full() {
9732         local timeout=$1
9733         shift
9734         local oscs=${@}
9735
9736         for osc in $oscs; do
9737                 wait_update_facet client \
9738                         "lctl get_param -n osc.$osc.state |
9739                         grep 'current_state: FULL'" \
9740                         "current_state: FULL" $timeout
9741                 [ $? -eq 0 ] || error "$osc state is not FULL"
9742         done
9743 }
9744
9745 #Changelogs
9746 __changelog_deregister() {
9747         local facet=$1
9748         local mdt="$(facet_svc $facet)"
9749         local cl_user=$2
9750         local rc=0
9751
9752         # skip cleanup if no user registered for this MDT
9753         [ -z "$cl_user" ] && echo "$mdt: no changelog user" && return 0
9754         # user is no longer registered, skip cleanup
9755         changelog_users "$facet" | grep -q "$cl_user" ||
9756                 { echo "$mdt: changelog user '$cl_user' not found"; return 0; }
9757
9758         # From this point, if any operation fails, it is an error
9759         __changelog_clear $facet $cl_user 0 ||
9760                 error_noexit "$mdt: changelog_clear $cl_user 0 fail: $rc"
9761         do_facet $facet $LCTL --device $mdt changelog_deregister $cl_user ||
9762                 error_noexit "$mdt: changelog_deregister '$cl_user' fail: $rc"
9763 }
9764
9765 declare -Ax CL_USERS
9766 changelog_register() {
9767         for M in $(seq $MDSCOUNT); do
9768                 local facet=mds$M
9769                 local mdt="$(facet_svc $facet)"
9770                 local cl_mask
9771
9772                 cl_mask=$(do_facet $facet $LCTL get_param \
9773                              mdd.${mdt}.changelog_mask -n)
9774                 stack_trap "do_facet $facet $LCTL \
9775                         set_param mdd.$mdt.changelog_mask=\'$cl_mask\' -n" EXIT
9776                 do_facet $facet $LCTL set_param mdd.$mdt.changelog_mask=+hsm ||
9777                         error "$mdt: changelog_mask=+hsm failed: $?"
9778
9779                 local cl_user
9780                 cl_user=$(do_facet $facet $LCTL --device $mdt \
9781                         changelog_register -n $@) ||
9782                         error "$mdt: register changelog user failed: $?"
9783                 stack_trap "__changelog_deregister $facet $cl_user" EXIT
9784
9785                 stack_trap "CL_USERS[$facet]='${CL_USERS[$facet]}'" EXIT
9786                 # Bash does not support nested arrays, but the format of a
9787                 # cl_user is constrained enough to use whitespaces as separators
9788                 CL_USERS[$facet]+="$cl_user "
9789         done
9790         echo "Registered $MDSCOUNT changelog users: '${CL_USERS[@]% }'"
9791 }
9792
9793 changelog_deregister() {
9794         local cl_user
9795         # bash assoc arrays do not guarantee to list keys in created order
9796         # so reorder to get same order than in changelog_register()
9797         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9798                           tr "\n" " ")
9799
9800         for facet in $cl_facets; do
9801                 for cl_user in ${CL_USERS[$facet]}; do
9802                         __changelog_deregister $facet $cl_user || return $?
9803                 done
9804                 unset CL_USERS[$facet]
9805         done
9806 }
9807
9808 changelog_users() {
9809         local facet=$1
9810         local service=$(facet_svc $facet)
9811
9812         do_facet $facet $LCTL get_param -n mdd.$service.changelog_users
9813 }
9814
9815 changelog_user_rec() {
9816         local facet=$1
9817         local cl_user=$2
9818         local service=$(facet_svc $facet)
9819
9820         changelog_users $facet | awk '$1 == "'$cl_user'" { print $2 }'
9821 }
9822
9823 changelog_chmask() {
9824         local mask=$1
9825
9826         do_nodes $(comma_list $(mdts_nodes)) \
9827                 $LCTL set_param mdd.*.changelog_mask="$mask"
9828 }
9829
9830 # usage: __changelog_clear FACET CL_USER [+]INDEX
9831 __changelog_clear()
9832 {
9833         local facet=$1
9834         local mdt="$(facet_svc $facet)"
9835         local cl_user=$2
9836         local -i rec
9837
9838         case "$3" in
9839         +*)
9840                 # Remove the leading '+'
9841                 rec=${3:1}
9842                 rec+=$(changelog_user_rec $facet $cl_user)
9843                 ;;
9844         *)
9845                 rec=$3
9846                 ;;
9847         esac
9848
9849         if [ $rec -eq 0 ]; then
9850                 echo "$mdt: clear the changelog for $cl_user of all records"
9851         else
9852                 echo "$mdt: clear the changelog for $cl_user to record #$rec"
9853         fi
9854         $LFS changelog_clear $mdt $cl_user $rec
9855 }
9856
9857 # usage: changelog_clear [+]INDEX
9858 #
9859 # If INDEX is prefixed with '+', increment every changelog user's record index
9860 # by INDEX. Otherwise, clear the changelog up to INDEX for every changelog
9861 # users.
9862 changelog_clear() {
9863         local rc
9864         # bash assoc arrays do not guarantee to list keys in created order
9865         # so reorder to get same order than in changelog_register()
9866         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9867                           tr "\n" " ")
9868         local cl_user
9869
9870         for facet in $cl_facets; do
9871                 for cl_user in ${CL_USERS[$facet]}; do
9872                         __changelog_clear $facet $cl_user $1 || rc=${rc:-$?}
9873                 done
9874         done
9875
9876         return ${rc:-0}
9877 }
9878
9879 changelog_dump() {
9880         local rc
9881
9882         for M in $(seq $MDSCOUNT); do
9883                 local facet=mds$M
9884                 local mdt="$(facet_svc $facet)"
9885                 local output
9886                 local ret
9887
9888                 output=$($LFS changelog $mdt)
9889                 ret=$?
9890                 if [ $ret -ne 0 ]; then
9891                         rc=${rc:-$ret}
9892                 elif [ -n "$output" ]; then
9893                         echo "$output" | sed -e 's/^/'$mdt'./'
9894                 fi
9895         done
9896
9897         return ${rc:-0}
9898 }
9899
9900 changelog_extract_field() {
9901         local cltype=$1
9902         local file=$2
9903         local identifier=$3
9904
9905         changelog_dump | gawk "/$cltype.*$file$/ {
9906                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9907                 tail -1
9908 }
9909
9910 # Prints a changelog record produced by "lfs changelog" as an associative array
9911 #
9912 # Example:
9913 # $> changelog2array 16 01CREAT 10:28:46.968438800 2018.03.09 0x0 \
9914 #                    t=[0x200000401:0x10:0x0] j=touch.501 ef=0xf u=501:501 \
9915 #                    nid=0@lo p=[0x200000007:0x1:0x0] blob
9916 # ([index]='16' [type]='CREAT' [time]='10:28:46.968438800'
9917 #  [date]='2018.03.09' [flags]=0x0 ['target-fid']='[0x200000401:0x10:0x0]'
9918 #  ['jobid']='touch.501' ['extra-flags']='0x0f' [uid]='0' ['gid']='0'
9919 #  ['nid']='0@lo' ['parent-fid']='[0x200000007:0x1:0x0]')
9920 #
9921 # Note that the changelog record is not quoted
9922 # Also note that the line breaks in the output were only added for readability
9923 #
9924 # Typically, you want to eval the output of the command to fill an actual
9925 # associative array, like this:
9926 # $> eval declare -A changelog=$(changelog2array $entry)
9927 #
9928 # It can then be accessed like any bash associative array:
9929 # $> echo "${changelog[index]}" "${changelog[type]}" "${changelog[flags]}"
9930 # 16 CREAT 0x0
9931 # $> echo "${changelog[uid]}":"${changelog[gid]}"
9932 # 501:501
9933 #
9934 changelog2array()
9935 {
9936         # Start the array
9937         printf '('
9938
9939         # A changelog, as printed by "lfs changelog" typically looks like this:
9940         # <index> <type> <time> <date> <flags> <key1=value1> <key2=value2> ...
9941
9942         # Parse the positional part of the changelog
9943
9944         # changelog_dump() prefixes records with their mdt's name
9945         local index="${1##*.}"
9946
9947         printf "[index]='%s' [type]='%s' [time]='%s' [date]='%s' [flags]='%s'" \
9948                "$index" "${2:2}" "$3" "$4" "$5"
9949
9950         # Parse the key/value part of the changelog
9951         for arg in "${@:5}"; do
9952                 # Check it matches a key=value syntax
9953                 [[ "$arg" =~ ^[[:alpha:]]+= ]] || continue
9954
9955                 local key="${arg%%=*}"
9956                 local value="${arg#*=}"
9957
9958                 case "$key" in
9959                 u)
9960                         # u is actually for uid AND gid: u=UID:GID
9961                         printf " [uid]='%s'" "${value%:*}"
9962                         key=gid
9963                         value="${value#*:}"
9964                         ;;
9965                 t)
9966                         key=target-fid
9967                         value="${value#[}"
9968                         value="${value%]}"
9969                         ;;
9970                 j)
9971                         key=jobid
9972                         ;;
9973                 p)
9974                         key=parent-fid
9975                         value="${value#[}"
9976                         value="${value%]}"
9977                         ;;
9978                 ef)
9979                         key=extra-flags
9980                         ;;
9981                 m)
9982                         key=mode
9983                         ;;
9984                 x)
9985                         key=xattr
9986                         ;;
9987                 *)
9988                         ;;
9989                 esac
9990
9991                 printf " ['%s']='%s'" "$key" "$value"
9992         done
9993
9994         # end the array
9995         printf ')'
9996 }
9997
9998 # Format and print a changelog record
9999 #
10000 # Interpreted sequences are:
10001 #       %%      a single %
10002 #       %f      the "flags" attribute of a changelog record
10003 __changelog_printf()
10004 {
10005         local format="$1"
10006
10007         local -i i
10008         for ((i = 0; i < ${#format}; i++)); do
10009                 local char="${format:$i:1}"
10010                 if [ "$char" != % ]; then
10011                         printf '%c' "$char"
10012                         continue
10013                 fi
10014
10015                 i+=1
10016                 char="${format:$i:1}"
10017                 case "$char" in
10018                 f)
10019                         printf '%s' "${changelog[flags]}"
10020                         ;;
10021                 %)
10022                         printf '%'
10023                         ;;
10024                 esac
10025         done
10026         printf '\n'
10027 }
10028
10029 # Filter changelog records
10030 changelog_find()
10031 {
10032         local -A filter
10033         local action='print'
10034         local format
10035
10036         while [ $# -gt 0 ]; do
10037                 case "$1" in
10038                 -print)
10039                         action='print'
10040                         ;;
10041                 -printf)
10042                         action='printf'
10043                         format="$2"
10044                         shift
10045                         ;;
10046                 -*)
10047                         filter[${1#-}]="$2"
10048                         shift
10049                         ;;
10050                 esac
10051                 shift
10052         done
10053
10054         local found=false
10055         local record
10056         changelog_dump | { while read -r record; do
10057                 eval local -A changelog=$(changelog2array $record)
10058                 for key in "${!filter[@]}"; do
10059                         case "$key" in
10060                         *)
10061                                 [ "${changelog[$key]}" == "${filter[$key]}" ]
10062                                 ;;
10063                         esac || continue 2
10064                 done
10065
10066                 found=true
10067
10068                 case "${action:-print}" in
10069                 print)
10070                         printf '%s\n' "$record"
10071                         ;;
10072                 printf)
10073                         __changelog_printf "$format"
10074                         ;;
10075                 esac
10076         done; $found; }
10077 }
10078
10079 restore_layout() {
10080         local dir=$1
10081         local layout=$2
10082
10083         [ ! -d "$dir" ] && return
10084
10085         [ -z "$layout" ] && {
10086                 $LFS setstripe -d $dir || error "error deleting stripe '$dir'"
10087                 return
10088         }
10089
10090         setfattr -n trusted.lov -v $layout $dir ||
10091                 error "error restoring layout '$layout' to '$dir'"
10092 }
10093
10094 # save the layout of a directory, the returned string will be used by
10095 # restore_layout() to restore the layout
10096 save_layout() {
10097         local dir=$1
10098         local str=$(getfattr -n trusted.lov --absolute-names -e hex $dir \
10099                     2> /dev/null | awk -F'=' '/trusted.lov/{ print $2 }')
10100         echo "$str"
10101 }
10102
10103 # save layout of a directory and restore it at exit
10104 save_layout_restore_at_exit() {
10105         local dir=$1
10106         local layout=$(save_layout $dir)
10107
10108         stack_trap "restore_layout $dir $layout" EXIT
10109 }
10110
10111 verify_yaml_layout() {
10112         local src=$1
10113         local dst=$2
10114         local temp=$3
10115         local msg_prefix=$4
10116
10117         echo "getstripe --yaml $src"
10118         $LFS getstripe --yaml $src > $temp || error "getstripe $src failed"
10119         echo "setstripe --yaml=$temp $dst"
10120         $LFS setstripe --yaml=$temp $dst|| error "setstripe $dst failed"
10121
10122         echo "compare"
10123         local layout1=$(get_layout_param $src)
10124         local layout2=$(get_layout_param $dst)
10125         # compare their layout info
10126         [ "$layout1" == "$layout2" ] ||
10127                 error "$msg_prefix $src/$dst layouts are not equal"
10128 }
10129
10130 is_project_quota_supported() {
10131         $ENABLE_PROJECT_QUOTAS || return 1
10132
10133         [[ "$(facet_fstype $SINGLEMDS)" == "ldiskfs" &&
10134            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.9.55) ]] &&
10135                 do_facet mds1 lfs --help |& grep -q project && return 0
10136
10137         [[ "$(facet_fstype $SINGLEMDS)" == "zfs" &&
10138            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ]] &&
10139                 do_facet mds1 $ZPOOL get all | grep -q project_quota && return 0
10140
10141         return 1
10142 }
10143
10144 # ZFS project quota enable/disable:
10145 #   This  feature  will  become  active as soon as it is enabled and will never
10146 #   return to being disabled. Each filesystem will be upgraded automatically
10147 #   when remounted or when [a] new file is created under that filesystem. The
10148 #   upgrade can also be triggered on filesystems via `zfs set version=current
10149 #   <pool/fs>`. The upgrade process runs in the background and may take a
10150 #   while to complete for the filesystems containing a large number of files.
10151 enable_project_quota() {
10152         is_project_quota_supported || return 0
10153         local zkeeper=${KEEP_ZPOOL}
10154         stack_trap "KEEP_ZPOOL=$zkeeper" EXIT
10155         KEEP_ZPOOL="true"
10156         stopall || error "failed to stopall (1)"
10157
10158         local zfeat_en="feature@project_quota=enabled"
10159         for facet in $(seq -f mds%g $MDSCOUNT) $(seq -f ost%g $OSTCOUNT); do
10160                 local facet_fstype=${facet:0:3}1_FSTYPE
10161                 local devname
10162
10163                 if [ "${!facet_fstype}" = "zfs" ]; then
10164                         devname=$(zpool_name ${facet})
10165                         do_facet ${facet} $ZPOOL set "$zfeat_en" $devname ||
10166                                 error "$ZPOOL set $zfeat_en $devname"
10167                 else
10168                         [ ${facet:0:3} == "mds" ] &&
10169                                 devname=$(mdsdevname ${facet:3}) ||
10170                                 devname=$(ostdevname ${facet:3})
10171                         do_facet ${facet} $TUNE2FS -O project $devname ||
10172                                 error "tune2fs $devname failed"
10173                 fi
10174         done
10175
10176         KEEP_ZPOOL="${zkeeper}"
10177         mount
10178         setupall
10179 }
10180
10181 disable_project_quota() {
10182         is_project_quota_supported || return 0
10183         [ "$mds1_FSTYPE" != "ldiskfs" ] && return 0
10184         stopall || error "failed to stopall (1)"
10185
10186         for num in $(seq $MDSCOUNT); do
10187                 do_facet mds$num $TUNE2FS -Q ^prj $(mdsdevname $num) ||
10188                         error "tune2fs $(mdsdevname $num) failed"
10189         done
10190
10191         for num in $(seq $OSTCOUNT); do
10192                 do_facet ost$num $TUNE2FS -Q ^prj $(ostdevname $num) ||
10193                         error "tune2fs $(ostdevname $num) failed"
10194         done
10195
10196         mount
10197         setupall
10198 }
10199
10200 #
10201 # In order to test multiple remote HSM agents, a new facet type named "AGT" and
10202 # the following associated variables are added:
10203 #
10204 # AGTCOUNT: number of agents
10205 # AGTDEV{N}: target HSM mount point (root path of the backend)
10206 # agt{N}_HOST: hostname of the agent agt{N}
10207 # SINGLEAGT: facet of the single agent
10208 #
10209 # The number of agents is initialized as the number of remote client nodes.
10210 # By default, only single copytool is started on a remote client/agent. If there
10211 # was no remote client, then the copytool will be started on the local client.
10212 #
10213 init_agt_vars() {
10214         local n
10215         local agent
10216
10217         export AGTCOUNT=${AGTCOUNT:-$((CLIENTCOUNT - 1))}
10218         [[ $AGTCOUNT -gt 0 ]] || AGTCOUNT=1
10219
10220         export SHARED_DIRECTORY=${SHARED_DIRECTORY:-$TMP}
10221         if [[ $CLIENTCOUNT -gt 1 ]] &&
10222                 ! check_shared_dir $SHARED_DIRECTORY $CLIENTS; then
10223                 skip_env "SHARED_DIRECTORY should be accessible"\
10224                          "on all client nodes"
10225                 exit 0
10226         fi
10227
10228         # We used to put the HSM archive in $SHARED_DIRECTORY but that
10229         # meant NFS issues could hose sanity-hsm sessions. So now we
10230         # use $TMP instead.
10231         for n in $(seq $AGTCOUNT); do
10232                 eval export AGTDEV$n=\$\{AGTDEV$n:-"$TMP/arc$n"\}
10233                 agent=CLIENT$((n + 1))
10234                 if [[ -z "${!agent}" ]]; then
10235                         [[ $CLIENTCOUNT -eq 1 ]] && agent=CLIENT1 ||
10236                                 agent=CLIENT2
10237                 fi
10238                 eval export agt${n}_HOST=\$\{agt${n}_HOST:-${!agent}\}
10239                 local var=agt${n}_HOST
10240                 [[ ! -z "${!var}" ]] || error "agt${n}_HOST is empty!"
10241         done
10242
10243         export SINGLEAGT=${SINGLEAGT:-agt1}
10244
10245         export HSMTOOL=${HSMTOOL:-"lhsmtool_posix"}
10246         export HSMTOOL_PID_FILE=${HSMTOOL_PID_FILE:-"/var/run/lhsmtool_posix.pid"}
10247         export HSMTOOL_VERBOSE=${HSMTOOL_VERBOSE:-""}
10248         export HSMTOOL_UPDATE_INTERVAL=${HSMTOOL_UPDATE_INTERVAL:=""}
10249         export HSMTOOL_EVENT_FIFO=${HSMTOOL_EVENT_FIFO:=""}
10250         export HSMTOOL_TESTDIR
10251         export HSMTOOL_ARCHIVE_FORMAT=${HSMTOOL_ARCHIVE_FORMAT:-v2}
10252
10253         if ! [[ $HSMTOOL =~ hsmtool ]]; then
10254                 echo "HSMTOOL = '$HSMTOOL' does not contain 'hsmtool', GLWT" >&2
10255         fi
10256
10257         HSM_ARCHIVE_NUMBER=2
10258
10259         # The test only support up to 10 MDTs
10260         MDT_PREFIX="mdt.$FSNAME-MDT000"
10261         HSM_PARAM="${MDT_PREFIX}0.hsm"
10262
10263         # archive is purged at copytool setup
10264         HSM_ARCHIVE_PURGE=true
10265
10266         # Don't allow copytool error upon start/setup
10267         HSMTOOL_NOERROR=false
10268 }
10269
10270 # Get the backend root path for the given agent facet.
10271 copytool_device() {
10272         local facet=$1
10273         local dev=AGTDEV$(facet_number $facet)
10274
10275         echo -n ${!dev}
10276 }
10277
10278 get_mdt_devices() {
10279         local mdtno
10280         # get MDT device for each mdc
10281         for mdtno in $(seq 1 $MDSCOUNT); do
10282                 local idx=$(($mdtno - 1))
10283                 MDT[$idx]=$($LCTL get_param -n \
10284                         mdc.$FSNAME-MDT000${idx}-mdc-*.mds_server_uuid |
10285                         awk '{gsub(/_UUID/,""); print $1}' | head -n1)
10286         done
10287 }
10288
10289 pkill_copytools() {
10290         local hosts="$1"
10291         local signal="$2"
10292
10293         do_nodes "$hosts" "pkill --pidfile=$HSMTOOL_PID_FILE --signal=$signal hsmtool"
10294 }
10295
10296 copytool_continue() {
10297         local agents=${1:-$(facet_active_host $SINGLEAGT)}
10298
10299         pkill_copytools "$agents" CONT || return 0
10300         echo "Copytool is continued on $agents"
10301 }
10302
10303 kill_copytools() {
10304         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
10305
10306         echo "Killing existing copytools on $hosts"
10307         pkill_copytools "$hosts" TERM || return 0
10308         copytool_continue "$hosts"
10309 }
10310
10311 copytool_monitor_cleanup() {
10312         local facet=${1:-$SINGLEAGT}
10313         local agent=$(facet_active_host $facet)
10314
10315         if [ -n "$HSMTOOL_MONITOR_DIR" ]; then
10316                 # Should die when the copytool dies, but just in case.
10317                 local cmd="kill \\\$(cat $HSMTOOL_MONITOR_DIR/monitor_pid)"
10318                 cmd+=" 2>/dev/null || true"
10319                 do_node $agent "$cmd"
10320                 do_node $agent "rm -fr $HSMTOOL_MONITOR_DIR"
10321                 export HSMTOOL_MONITOR_DIR=
10322         fi
10323
10324         # The pdsh should die on its own when the monitor dies. Just
10325         # in case, though, try to clean up to avoid any cruft.
10326         if [ -n "$HSMTOOL_MONITOR_PDSH" ]; then
10327                 kill $HSMTOOL_MONITOR_PDSH 2>/dev/null || true
10328                 export HSMTOOL_MONITOR_PDSH=
10329         fi
10330 }
10331
10332 copytool_logfile()
10333 {
10334         local host="$(facet_host "$1")"
10335         local prefix=$TESTLOG_PREFIX
10336         [ -n "$TESTNAME" ] && prefix+=.$TESTNAME
10337
10338         printf "${prefix}.copytool${archive_id}_log.${host}.log"
10339 }
10340
10341 __lhsmtool_rebind()
10342 {
10343         do_facet $facet $HSMTOOL "${hsmtool_options[@]}" --rebind "$@" "$mountpoint"
10344 }
10345
10346 __lhsmtool_import()
10347 {
10348         mkdir -p "$(dirname "$2")" ||
10349                 error "cannot create directory '$(dirname "$2")'"
10350         do_facet $facet $HSMTOOL "${hsmtool_options[@]}" --import "$@" "$mountpoint"
10351 }
10352
10353 __lhsmtool_setup()
10354 {
10355         local host="$(facet_host "$facet")"
10356         local cmd="$HSMTOOL ${hsmtool_options[@]} --daemon --pid-file=$HSMTOOL_PID_FILE"
10357         [ -n "$bandwidth" ] && cmd+=" --bandwidth $bandwidth"
10358         [ -n "$archive_id" ] && cmd+=" --archive $archive_id"
10359 #       [ ${#misc_options[@]} -gt 0 ] &&
10360 #               cmd+=" $(IFS=" " echo "$@")"
10361         cmd+=" $@ \"$mountpoint\""
10362
10363         echo "Starting copytool '$facet' on '$host' with cmdline '$cmd'"
10364         stack_trap "pkill_copytools $host TERM || true" EXIT
10365         do_node "$host" "$cmd < /dev/null > \"$(copytool_logfile $facet)\" 2>&1"
10366 }
10367
10368 hsm_root() {
10369         local facet="${1:-$SINGLEAGT}"
10370
10371         printf "$(copytool_device "$facet")/${TESTSUITE}.${TESTNAME}/"
10372 }
10373
10374 # Main entry point to perform copytool related operations
10375 #
10376 # Sub-commands:
10377 #
10378 #       setup   setup a copytool to run in the background, that copytool will be
10379 #               killed on EXIT
10380 #       import  import a file from an HSM backend
10381 #       rebind  rebind an archived file to a new fid
10382 #
10383 # Although the semantics might suggest otherwise, one does not need to 'setup'
10384 # a copytool before a call to 'copytool import' or 'copytool rebind'.
10385 #
10386 copytool()
10387 {
10388         local action=$1
10389         shift
10390
10391         # Use default values
10392         local facet=$SINGLEAGT
10393         local mountpoint="${MOUNT2:-$MOUNT}"
10394         local hsm_root="${hsm_root:-$(hsm_root "$facet")}"
10395
10396         # Parse arguments
10397         local fail_on_error=true
10398         local -a hsmtool_options=("--hsm-root=$hsm_root")
10399         local -a action_options=()
10400
10401         if [[ -n "$HSMTOOL_ARCHIVE_FORMAT" ]]; then
10402                 hsmtool_options+=("--archive-format=$HSMTOOL_ARCHIVE_FORMAT")
10403         fi
10404
10405         if [[ -n "$HSMTOOL_VERBOSE" ]]; then
10406                 hsmtool_options+=("$HSMTOOL_VERBOSE")
10407         fi
10408
10409         while [ $# -gt 0 ]; do
10410                 case "$1" in
10411                 -f|--facet)
10412                         shift
10413                         facet="$1"
10414                         ;;
10415                 -m|--mountpoint)
10416                         shift
10417                         mountpoint="$1"
10418                         ;;
10419                 -a|--archive-id)
10420                         shift
10421                         local archive_id="$1"
10422                         ;;
10423                 -h|--hsm-root)
10424                         shift
10425                         hsm_root="$1"
10426                         ;;
10427                 -b|--bwlimit)
10428                         shift
10429                         local bandwidth="$1" # in MB/s
10430                         ;;
10431                 -n|--no-fail)
10432                         local fail_on_error=false
10433                         ;;
10434                 *)
10435                         # Uncommon(/copytool dependent) option
10436                         action_options+=("$1")
10437                         ;;
10438                 esac
10439                 shift
10440         done
10441
10442         stack_trap "do_facet $facet rm -rf '$hsm_root'" EXIT
10443         do_facet $facet mkdir -p "$hsm_root" ||
10444                 error "mkdir '$hsm_root' failed"
10445
10446         case "$HSMTOOL" in
10447         lhsmtool_posix)
10448                 local copytool=lhsmtool
10449                 ;;
10450         esac
10451
10452         __${copytool}_${action} "${action_options[@]}"
10453         if [ $? -ne 0 ]; then
10454                 local error_msg
10455
10456                 case $action in
10457                 setup)
10458                         local host="$(facet_host $facet)"
10459                         error_msg="Failed to start copytool $facet on '$host'"
10460                         ;;
10461                 import)
10462                         local src="${action_options[0]}"
10463                         local dest="${action_options[1]}"
10464                         error_msg="Failed to import '$src' to '$dest'"
10465                         ;;
10466                 rebind)
10467                         error_msg="could not rebind file"
10468                         ;;
10469                 esac
10470
10471                 $fail_on_error && error "$error_msg" || echo "$error_msg"
10472         fi
10473 }
10474
10475 needclients() {
10476         local client_count=$1
10477         if [[ $CLIENTCOUNT -lt $client_count ]]; then
10478                 skip "Need $client_count or more clients, have $CLIENTCOUNT"
10479                 return 1
10480         fi
10481         return 0
10482 }
10483
10484 path2fid() {
10485         $LFS path2fid $1 | tr -d '[]'
10486         return ${PIPESTATUS[0]}
10487 }
10488
10489 get_hsm_flags() {
10490         local f=$1
10491         local u=$2
10492         local st
10493
10494         if [[ $u == "user" ]]; then
10495                 st=$($RUNAS $LFS hsm_state $f)
10496         else
10497                 u=root
10498                 st=$($LFS hsm_state $f)
10499         fi
10500
10501         [[ $? == 0 ]] || error "$LFS hsm_state $f failed (run as $u)"
10502
10503         st=$(echo $st | cut -f 2 -d" " | tr -d "()," )
10504         echo $st
10505 }
10506
10507 check_hsm_flags() {
10508         local f=$1
10509         local fl=$2
10510
10511         local st=$(get_hsm_flags $f)
10512         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
10513 }
10514
10515 mdts_set_param() {
10516         local arg=$1
10517         local key=$2
10518         local value=$3
10519         local mdtno
10520         local rc=0
10521         if [[ "$value" != "" ]]; then
10522                 value="=$value"
10523         fi
10524         for mdtno in $(seq 1 $MDSCOUNT); do
10525                 local idx=$(($mdtno - 1))
10526                 local facet=mds${mdtno}
10527                 # if $arg include -P option, run 1 set_param per MDT on the MGS
10528                 # else, run set_param on each MDT
10529                 [[ $arg = *"-P"* ]] && facet=mgs
10530                 do_facet $facet $LCTL set_param $arg mdt.${MDT[$idx]}.$key$value
10531                 [[ $? != 0 ]] && rc=1
10532         done
10533         return $rc
10534 }
10535
10536 mdts_check_param() {
10537         local key="$1"
10538         local target="$2"
10539         local timeout="$3"
10540         local mdtno
10541
10542         for mdtno in $(seq 1 $MDSCOUNT); do
10543                 local idx=$(($mdtno - 1))
10544                 wait_update_facet --verbose mds${mdtno} \
10545                         "$LCTL get_param -n $MDT_PREFIX${idx}.$key" "$target" \
10546                         $timeout ||
10547                         error "$key state is not '$target' on mds${mdtno}"
10548         done
10549 }
10550
10551 cdt_set_mount_state() {
10552         mdts_set_param "-P" hsm_control "$1"
10553         # set_param -P is asynchronous operation and could race with set_param.
10554         # In such case configs could be retrieved and applied at mgc after
10555         # set_param -P completion. Sleep here to avoid race with set_param.
10556         # We need at least 20 seconds. 10 for mgc_requeue_thread to wake up
10557         # MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC(5 + 5)
10558         # and 10 seconds to retrieve config from server.
10559         sleep 20
10560 }
10561
10562 cdt_check_state() {
10563         mdts_check_param hsm_control "$1" 20
10564 }
10565
10566 cdt_set_sanity_policy() {
10567         if [[ "$CDT_POLICY_HAD_CHANGED" ]]
10568         then
10569                 # clear all
10570                 mdts_set_param "" hsm.policy "+NRA"
10571                 mdts_set_param "" hsm.policy "-NBR"
10572                 CDT_POLICY_HAD_CHANGED=
10573         fi
10574 }
10575
10576 set_hsm_param() {
10577         local param=$1
10578         local value=$2
10579         local opt=$3
10580         mdts_set_param "$opt -n" "hsm.$param" "$value"
10581         return $?
10582 }
10583
10584 wait_request_state() {
10585         local fid=$1
10586         local request=$2
10587         local state=$3
10588         # 4th arg (mdt index) is optional
10589         local mdtidx=${4:-0}
10590         local mds=mds$(($mdtidx + 1))
10591
10592         local cmd="$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.actions"
10593         cmd+=" | awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
10594
10595         wait_update_facet --verbose $mds "$cmd" "$state" 200 ||
10596                 error "request on $fid is not $state on $mds"
10597 }
10598
10599
10600 rmultiop_start() {
10601         local client=$1
10602         local file=$2
10603         local cmds=$3
10604         local WAIT_MAX=${4:-60}
10605         local wait_time=0
10606
10607         # We need to run do_node in bg, because pdsh does not exit
10608         # if child process of run script exists.
10609         # I.e. pdsh does not exit when runmultiop_bg_pause exited,
10610         # because of multiop_bg_pause -> $MULTIOP_PROG &
10611         # By the same reason we need sleep a bit after do_nodes starts
10612         # to let runmultiop_bg_pause start muliop and
10613         # update /tmp/multiop_bg.pid ;
10614         # The rm /tmp/multiop_bg.pid guarantees here that
10615         # we have the updated by runmultiop_bg_pause
10616         # /tmp/multiop_bg.pid file
10617
10618         local pid_file=$TMP/multiop_bg.pid.$$
10619
10620         do_node $client "MULTIOP_PID_FILE=$pid_file LUSTRE= \
10621                         runmultiop_bg_pause $file $cmds" &
10622         local pid=$!
10623         local multiop_pid
10624
10625         while [[ $wait_time -lt $WAIT_MAX ]]; do
10626                 sleep 3
10627                 wait_time=$((wait_time + 3))
10628                 multiop_pid=$(do_node $client cat $pid_file)
10629                 if [ -n "$multiop_pid" ]; then
10630                         break
10631                 fi
10632         done
10633
10634         [ -n "$multiop_pid" ] ||
10635                 error "$client : Can not get multiop_pid from $pid_file "
10636
10637         eval export $(node_var_name $client)_multiop_pid=$multiop_pid
10638         eval export $(node_var_name $client)_do_node_pid=$pid
10639         local var=$(node_var_name $client)_multiop_pid
10640         echo client $client multiop_bg started multiop_pid=${!var}
10641         return $?
10642 }
10643
10644 rmultiop_stop() {
10645         local client=$1
10646         local multiop_pid=$(node_var_name $client)_multiop_pid
10647         local do_node_pid=$(node_var_name $client)_do_node_pid
10648
10649         echo "Stopping multiop_pid=${!multiop_pid} (kill ${!multiop_pid} on $client)"
10650         do_node $client kill -USR1 ${!multiop_pid}
10651
10652         wait ${!do_node_pid}
10653 }
10654
10655 sleep_maxage() {
10656         local delay=$(do_facet $SINGLEMDS lctl get_param -n lo[vd].*.qos_maxage |
10657                       awk '{ print $1 * 2; exit; }')
10658         sleep $delay
10659 }
10660
10661 check_component_count() {
10662         local comp_cnt=$($LFS getstripe --component-count $1)
10663         [ $comp_cnt -eq $2 ] || error "$1, component count $comp_cnt != $2"
10664 }
10665
10666 # Verify there are no init components with "extension" flag
10667 verify_no_init_extension() {
10668         local flg_opts="--component-flags init,extension"
10669         local found=$($LFS find $flg_opts $1 | wc -l)
10670         [ $found -eq 0 ] || error "$1 has component with initialized extension"
10671 }
10672
10673 # Verify there is at least one component starting at 0
10674 verify_comp_at_zero() {
10675         flg_opts="--component-flags init"
10676         found=$($LFS find --component-start 0M $flg_opts $1 | wc -l)
10677         [ $found -eq 1 ] ||
10678                 error "No component starting at zero(!)"
10679 }
10680
10681 # version after which Self-Extending Layouts are available
10682 SEL_VER="2.12.55"
10683
10684 sel_layout_sanity() {
10685         local file=$1
10686         local comp_cnt=$2
10687
10688         verify_no_init_extension $file
10689         verify_comp_at_zero $file
10690         check_component_count $file $comp_cnt
10691 }
10692
10693 statx_supported() {
10694         $STATX --quiet --version
10695         return $?
10696 }
10697
10698 #
10699 # wrappers for createmany and unlinkmany
10700 # to set debug=0 if number of creates is high enough
10701 # this is to speedup testing
10702 #
10703 function createmany() {
10704         local count=${!#}
10705         local rc
10706
10707         if (( count > 100 )); then
10708                 debugsave
10709                 do_nodes $(comma_list $(all_nodes)) $LCTL set_param -n debug=0
10710         fi
10711         $LUSTRE/tests/createmany $*
10712         rc=$?
10713         debugrestore
10714
10715         return $rc
10716 }
10717
10718 function unlinkmany() {
10719         local count=${!#}
10720         local rc
10721
10722         if (( count > 100 )); then
10723                 debugsave
10724                 do_nodes $(comma_list $(all_nodes)) $LCTL set_param -n debug=0
10725         fi
10726         $LUSTRE/tests/unlinkmany $*
10727         rc=$?
10728         debugrestore
10729
10730         return $rc
10731 }
10732
10733 # Check if fallocate supported on OSTs, enable if unset, default mode=0
10734 # Optionally pass the OST fallocate mode (0=unwritten extents, 1=zero extents)
10735 function check_set_fallocate()
10736 {
10737         local new_mode="$1"
10738         local osts=$(comma_list $(osts_nodes))
10739         local fa_mode="osd-ldiskfs.*.fallocate_zero_blocks"
10740         local old_mode=$(do_facet ost1 $LCTL get_param -n $fa_mode 2>/dev/null|
10741                          head -n 1)
10742
10743         [[ -n "$old_mode" ]] || { echo "fallocate not supported"; return 1; }
10744         [[ -z "$new_mode" && "$old_mode" != "-1" ]] &&
10745                 { echo "keep default fallocate mode: $old_mode"; return 0; }
10746         [[ "$new_mode" && "$old_mode" == "$new_mode" ]] &&
10747                 { echo "keep current fallocate mode: $old_mode"; return 0; }
10748
10749         stack_trap "do_nodes $osts $LCTL set_param $fa_mode=$old_mode"
10750         do_nodes $osts $LCTL set_param $fa_mode=${new_mode:-0} ||
10751                 error "set $fa_mode=$new_mode"
10752 }
10753
10754 # Check if fallocate supported on OSTs, enable if unset, skip if unavailable
10755 function check_set_fallocate_or_skip()
10756 {
10757         [ "$ost1_FSTYPE" != ldiskfs ] && skip "non-ldiskfs backend"
10758         check_set_fallocate || skip "need at least 2.13.57 for fallocate"
10759 }
10760
10761 function disable_opencache()
10762 {
10763         local state=$($LCTL get_param -n "llite.*.opencache_threshold_count" | head -1)
10764
10765         test -z "${saved_OPENCACHE_value}" &&
10766                                         export saved_OPENCACHE_value="$state"
10767
10768         [[ "$state" = "off" ]] && return
10769
10770         $LCTL set_param -n "llite.*.opencache_threshold_count"=off
10771 }
10772
10773 function set_opencache()
10774 {
10775         local newvalue="$1"
10776         local state=$($LCTL get_param -n "llite.*.opencache_threshold_count")
10777
10778         [[ -n "$newvalue" ]] || return
10779
10780         [[ -n "${saved_OPENCACHE_value}" ]] ||
10781                                         export saved_OPENCACHE_value="$state"
10782
10783         $LCTL set_param -n "llite.*.opencache_threshold_count"=$newvalue
10784 }
10785
10786
10787
10788 function restore_opencache()
10789 {
10790         [[ -z "${saved_OPENCACHE_value}" ]] ||
10791                 $LCTL set_param -n "llite.*.opencache_threshold_count"=${saved_OPENCACHE_value}
10792 }
10793
10794 # LU-13417: XXX lots of tests assume the directory to be created under MDT0,
10795 # created on MDT0, use this function to create directory on specific MDT
10796 # explicitly, and set default LMV to create subdirs on the same MDT too.
10797 mkdir_on_mdt() {
10798         local mdt
10799         local OPTIND=1
10800
10801         while getopts "i:" opt $*; do
10802                 case $opt in
10803                         i) mdt=$OPTARG;;
10804                 esac
10805         done
10806
10807         shift $((OPTIND - 1))
10808
10809         $LFS mkdir -i $mdt -c 1 $*
10810 }
10811
10812 mkdir_on_mdt0() {
10813         mkdir_on_mdt -i0 $*
10814 }
10815
10816 # Wait for nodemap synchronization
10817 wait_nm_sync() {
10818         local nodemap_name=$1
10819         local key=$2
10820         local value=$3
10821         local opt=$4
10822         local proc_param
10823         local is_active=$(do_facet mgs $LCTL get_param -n nodemap.active)
10824         local max_retries=20
10825         local is_sync
10826         local out1=""
10827         local out2
10828         local mgs_ip=$(host_nids_address $mgs_HOST $NETTYPE | cut -d' ' -f1)
10829         local i
10830
10831         if [ "$nodemap_name" == "active" ]; then
10832                 proc_param="active"
10833         elif [ -z "$key" ]; then
10834                 proc_param=${nodemap_name}
10835         else
10836                 proc_param="${nodemap_name}.${key}"
10837         fi
10838         if [ "$opt" == "inactive" ]; then
10839                 # check nm sync even if nodemap is not activated
10840                 is_active=1
10841                 opt=""
10842         fi
10843         (( is_active == 0 )) && [ "$proc_param" != "active" ] && return
10844
10845         if [ -z "$value" ]; then
10846                 out1=$(do_facet mgs $LCTL get_param $opt \
10847                         nodemap.${proc_param} 2>/dev/null)
10848                 echo "On MGS ${mgs_ip}, ${proc_param} = $out1"
10849         else
10850                 out1=$value;
10851         fi
10852
10853         # if servers run on the same node, it is impossible to tell if they get
10854         # synced with the mgs, so just wait an arbitrary 10 seconds
10855         if [ $(facet_active_host mgs) == $(facet_active_host mds) ] &&
10856            [ $(facet_active_host mgs) == $(facet_active_host ost1) ]; then
10857                 echo "waiting 10 secs for sync"
10858                 sleep 10
10859                 return
10860         fi
10861
10862         # wait up to 10 seconds for other servers to sync with mgs
10863         for i in $(seq 1 10); do
10864                 for node in $(all_server_nodes); do
10865                         local node_ip=$(host_nids_address $node $NETTYPE |
10866                                         cut -d' ' -f1)
10867
10868                         is_sync=true
10869                         if [ -z "$value" ]; then
10870                                 [ $node_ip == $mgs_ip ] && continue
10871                         fi
10872
10873                         out2=$(do_node $node_ip $LCTL get_param $opt \
10874                                nodemap.$proc_param 2>/dev/null)
10875                         echo "On $node ${node_ip}, ${proc_param} = $out2"
10876                         [ "$out1" != "$out2" ] && is_sync=false && break
10877                 done
10878                 $is_sync && break
10879                 sleep 1
10880         done
10881         if ! $is_sync; then
10882                 echo MGS
10883                 echo $out1
10884                 echo OTHER - IP: $node_ip
10885                 echo $out2
10886                 error "mgs and $nodemap_name ${key} mismatch, $i attempts"
10887         fi
10888         echo "waited $((i - 1)) seconds for sync"
10889 }
10890
10891 consume_precreations() {
10892         local dir=$1
10893         local mfacet=$2
10894         local OSTIDX=$3
10895         local extra=${4:-2}
10896         local OST=$(ostname_from_index $OSTIDX $dir)
10897
10898         test_mkdir -p $dir/${OST}
10899         $LFS setstripe -i $OSTIDX -c 1 ${dir}/${OST}
10900
10901         # on the mdt's osc
10902         local mdtosc_proc=$(get_mdtosc_proc_path $mfacet $OST)
10903         local last_id=$(do_facet $mfacet $LCTL get_param -n \
10904                         osp.$mdtosc_proc.prealloc_last_id)
10905         local next_id=$(do_facet $mfacet $LCTL get_param -n \
10906                         osp.$mdtosc_proc.prealloc_next_id)
10907         echo "Creating to objid $last_id on ost $OST..."
10908         createmany -o $dir/${OST}/f $next_id $((last_id - next_id + extra))
10909 }
10910
10911 __exhaust_precreations() {
10912         local OSTIDX=$1
10913         local FAILLOC=$2
10914         local FAILIDX=${3:-$OSTIDX}
10915         local ofacet=ost$((OSTIDX + 1))
10916
10917         mkdir_on_mdt0 $DIR/$tdir
10918         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
10919         local mfacet=mds$((mdtidx + 1))
10920         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
10921
10922         local mdtosc_proc=$(get_mdtosc_proc_path $mfacet)
10923         do_facet $mfacet $LCTL get_param osp.$mdtosc_proc.prealloc*
10924
10925 #define OBD_FAIL_OST_ENOSPC              0x215
10926         do_facet $ofacet $LCTL set_param fail_val=$FAILIDX fail_loc=0x215
10927
10928         consume_precreations $DIR/$tdir $mfacet $OSTIDX
10929
10930         do_facet $mfacet $LCTL get_param osp.$mdtosc_proc.prealloc*
10931         do_facet $ofacet $LCTL set_param fail_loc=$FAILLOC
10932 }
10933
10934 exhaust_precreations() {
10935         __exhaust_precreations $1 $2 $3
10936         sleep_maxage
10937 }
10938
10939 exhaust_all_precreations() {
10940         local i
10941         for (( i=0; i < OSTCOUNT; i++ )) ; do
10942                 __exhaust_precreations $i $1 -1
10943         done
10944         sleep_maxage
10945 }