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