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