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