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