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