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