Whamcloud - gitweb
678ff62599e92c7a9de2f3416a0a7ce426481a09
[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         do_nodes $(comma_list $(mdts_nodes)) \
5222                 "$LCTL set_param lod.*.mdt_hash=crush"
5223         return 0
5224 }
5225
5226 nfs_client_mode () {
5227     if [ "$NFSCLIENT" ]; then
5228         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
5229         local clients=$CLIENTS
5230         [ -z $clients ] && clients=$(hostname)
5231
5232         # FIXME: remove hostname when 19215 fixed
5233         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
5234         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
5235         if [[ ${#nfsexport[@]} -eq 0 ]]; then
5236                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
5237         fi
5238         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
5239         return
5240     fi
5241     return 1
5242 }
5243
5244 cifs_client_mode () {
5245         [ x$CIFSCLIENT = xyes ] &&
5246                 echo "CIFSCLIENT=$CIFSCLIENT mode: setup, cleanup, check config skipped"
5247 }
5248
5249 check_config_client () {
5250     local mntpt=$1
5251
5252     local mounted=$(mount | grep " $mntpt ")
5253     if [ -n "$CLIENTONLY" ]; then
5254         # bug 18021
5255         # CLIENTONLY should not depend on *_HOST settings
5256         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
5257         # in theory someone could create a new,
5258         # client-only config file that assumed lustre was already
5259         # configured and didn't set the MGSNID. If MGSNID is not set,
5260         # then we should use the mgs nid currently being used
5261         # as the default value. bug 18021
5262         [[ x$MGSNID = x ]] &&
5263             MGSNID=${mgc//MGC/}
5264
5265         if [[ x$mgc != xMGC$MGSNID ]]; then
5266             if [ "$mgs_HOST" ]; then
5267                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
5268 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
5269 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
5270             fi
5271         fi
5272         return 0
5273     fi
5274
5275     echo Checking config lustre mounted on $mntpt
5276     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
5277     mgshost=$(echo $mgshost | awk -F: '{print $1}')
5278
5279 }
5280
5281 check_config_clients () {
5282         local clients=${CLIENTS:-$HOSTNAME}
5283         local mntpt=$1
5284
5285         nfs_client_mode && return
5286         cifs_client_mode && return
5287
5288         do_rpc_nodes "$clients" check_config_client $mntpt
5289
5290         sanity_mount_check || error "environments are insane!"
5291 }
5292
5293 check_timeout () {
5294     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
5295     local cltimeout=$(lctl get_param -n timeout)
5296     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
5297         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
5298         return 1
5299     fi
5300 }
5301
5302 is_mounted () {
5303         local mntpt=$1
5304         [ -z $mntpt ] && return 1
5305         local mounted=$(mounted_lustre_filesystems)
5306
5307         echo $mounted' ' | grep -w -q $mntpt' '
5308 }
5309
5310 is_empty_dir() {
5311         [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
5312         return 1
5313 }
5314
5315 # empty lustre filesystem may have empty directories lost+found and .lustre
5316 is_empty_fs() {
5317         # exclude .lustre & lost+found
5318         [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
5319                 -print | wc -l) = 1 ] || return 1
5320         [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found || return 1
5321         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.4.0) ]; then
5322                 # exclude .lustre/fid (LU-2780)
5323                 [ $(find $1/.lustre -maxdepth 1 -name fid -prune -o \
5324                         -print | wc -l) = 1 ] || return 1
5325         else
5326                 [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre || return 1
5327         fi
5328         return 0
5329 }
5330
5331 check_and_setup_lustre() {
5332         sanitize_parameters
5333         nfs_client_mode && return
5334         cifs_client_mode && return
5335
5336         local MOUNTED=$(mounted_lustre_filesystems)
5337
5338         local do_check=true
5339         # 1.
5340         # both MOUNT and MOUNT2 are not mounted
5341         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5342                 [ "$REFORMAT" = "yes" ] && CLEANUP_DM_DEV=true formatall
5343                 # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
5344                 setupall
5345                 is_mounted $MOUNT || error "NAME=$NAME not mounted"
5346                 export I_MOUNTED=yes
5347                 do_check=false
5348     # 2.
5349     # MOUNT2 is mounted
5350     elif is_mounted $MOUNT2; then
5351             # 3.
5352             # MOUNT2 is mounted, while MOUNT_2 is not set
5353             if ! [ "$MOUNT_2" ]; then
5354                 cleanup_mount $MOUNT2
5355                 export I_UMOUNTED2=yes
5356
5357             # 4.
5358             # MOUNT2 is mounted, MOUNT_2 is set
5359             else
5360                 # FIXME: what to do if check_config failed?
5361                 # i.e. if:
5362                 # 1) remote client has mounted other Lustre fs ?
5363                 # 2) it has insane env ?
5364                 # let's try umount MOUNT2 on all clients and mount it again:
5365                 if ! check_config_clients $MOUNT2; then
5366                     cleanup_mount $MOUNT2
5367                     restore_mount $MOUNT2
5368                     export I_MOUNTED2=yes
5369                 fi
5370             fi
5371
5372     # 5.
5373     # MOUNT is mounted MOUNT2 is not mounted
5374     elif [ "$MOUNT_2" ]; then
5375         restore_mount $MOUNT2
5376         export I_MOUNTED2=yes
5377     fi
5378
5379     if $do_check; then
5380         # FIXME: what to do if check_config failed?
5381         # i.e. if:
5382         # 1) remote client has mounted other Lustre fs?
5383         # 2) lustre is mounted on remote_clients atall ?
5384         check_config_clients $MOUNT
5385         init_facets_vars
5386         init_param_vars
5387
5388         set_default_debug_nodes $(comma_list $(nodes_list))
5389     fi
5390
5391         if [ -z "$CLIENTONLY" -a $(lower $OSD_TRACK_DECLARES_LBUG) == 'yes' ]; then
5392                 local facets=""
5393                 [ "$(facet_fstype ost1)" = "ldiskfs" ] &&
5394                         facets="$(get_facets OST)"
5395                 [ "$(facet_fstype mds1)" = "ldiskfs" ] &&
5396                         facets="$facets,$(get_facets MDS)"
5397                 [ "$(facet_fstype mgs)" = "ldiskfs" ] &&
5398                         facets="$facets,mgs"
5399                 local nodes="$(facets_hosts ${facets})"
5400                 if [ -n "$nodes" ] ; then
5401                         do_nodes $nodes "$LCTL set_param \
5402                                  osd-ldiskfs.track_declares_assert=1 || true"
5403                 fi
5404         fi
5405
5406         if [ -n "$fs_STRIPEPARAMS" ]; then
5407                 setstripe_getstripe $MOUNT $fs_STRIPEPARAMS
5408         fi
5409         if $GSS_SK; then
5410                 set_flavor_all null
5411         elif $GSS; then
5412                 set_flavor_all $SEC
5413         fi
5414
5415         if [ "$ONLY" == "setup" ]; then
5416                 exit 0
5417         fi
5418 }
5419
5420 restore_mount () {
5421    local clients=${CLIENTS:-$HOSTNAME}
5422    local mntpt=$1
5423
5424    zconf_mount_clients $clients $mntpt
5425 }
5426
5427 cleanup_mount () {
5428         local clients=${CLIENTS:-$HOSTNAME}
5429         local mntpt=$1
5430
5431         zconf_umount_clients $clients $mntpt
5432 }
5433
5434 cleanup_and_setup_lustre() {
5435     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
5436         lctl set_param debug=0 || true
5437         cleanupall
5438         if [ "$ONLY" == "cleanup" ]; then
5439             exit 0
5440         fi
5441     fi
5442     check_and_setup_lustre
5443 }
5444
5445 # Get all of the server target devices from a given server node and type.
5446 get_mnt_devs() {
5447         local node=$1
5448         local type=$2
5449         local devs
5450         local dev
5451
5452         if [ "$type" == ost ]; then
5453                 devs=$(get_osd_param $node "" mntdev)
5454         else
5455                 devs=$(do_node $node $LCTL get_param -n osd-*.$FSNAME-M*.mntdev)
5456         fi
5457         for dev in $devs; do
5458                 case $dev in
5459                 *loop*) do_node $node "losetup $dev" | \
5460                                 sed -e "s/.*(//" -e "s/).*//" ;;
5461                 *) echo $dev ;;
5462                 esac
5463         done
5464 }
5465
5466 # Get all of the server target devices.
5467 get_svr_devs() {
5468         local node
5469         local i
5470
5471         # Master MDS parameters used by lfsck
5472         MDTNODE=$(facet_active_host $SINGLEMDS)
5473         MDTDEV=$(echo $(get_mnt_devs $MDTNODE mdt) | awk '{print $1}')
5474
5475         # MDT devices
5476         i=0
5477         for node in $(mdts_nodes); do
5478                 MDTDEVS[i]=$(get_mnt_devs $node mdt)
5479                 i=$((i + 1))
5480         done
5481
5482         # OST devices
5483         i=0
5484         for node in $(osts_nodes); do
5485                 OSTDEVS[i]=$(get_mnt_devs $node ost)
5486                 i=$((i + 1))
5487         done
5488 }
5489
5490 # Run e2fsck on MDT or OST device.
5491 run_e2fsck() {
5492         local node=$1
5493         local target_dev=$2
5494         local extra_opts=$3
5495         local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
5496         local log=$TMP/e2fsck.log
5497         local rc=0
5498
5499         echo $cmd
5500         do_node $node $cmd 2>&1 | tee $log
5501         rc=${PIPESTATUS[0]}
5502         if [ -n "$(grep "DNE mode isn't supported" $log)" ]; then
5503                 rm -f $log
5504                 if [ $MDSCOUNT -gt 1 ]; then
5505                         skip_noexit "DNE mode isn't supported!"
5506                         cleanupall
5507                         exit_status
5508                 else
5509                         error "It's not DNE mode."
5510                 fi
5511         fi
5512         rm -f $log
5513
5514         [ $rc -le $FSCK_MAX_ERR ] ||
5515                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
5516
5517         return 0
5518 }
5519
5520 #
5521 # Run resize2fs on MDT or OST device.
5522 #
5523 run_resize2fs() {
5524         local facet=$1
5525         local device=$2
5526         local size=$3
5527         shift 3
5528         local opts="$@"
5529
5530         do_facet $facet "$RESIZE2FS $opts $device $size"
5531 }
5532
5533 # verify a directory is shared among nodes.
5534 check_shared_dir() {
5535         local dir=$1
5536         local list=${2:-$(comma_list $(nodes_list))}
5537
5538         [ -z "$dir" ] && return 1
5539         do_rpc_nodes "$list" check_logdir $dir
5540         check_write_access $dir "$list" || return 1
5541         return 0
5542 }
5543
5544 run_lfsck() {
5545         do_nodes $(comma_list $(mdts_nodes) $(osts_nodes)) \
5546                 $LCTL set_param printk=+lfsck
5547         do_facet $SINGLEMDS "$LCTL lfsck_start -M $FSNAME-MDT0000 -r -A -t all"
5548
5549         for k in $(seq $MDSCOUNT); do
5550                 # wait up to 10+1 minutes for LFSCK to complete
5551                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5552                         mdd.$(facet_svc mds${k}).lfsck_layout |
5553                         awk '/^status/ { print \\\$2 }'" "completed" 600 ||
5554                         error "MDS${k} layout isn't the expected 'completed'"
5555                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5556                         mdd.$(facet_svc mds${k}).lfsck_namespace |
5557                         awk '/^status/ { print \\\$2 }'" "completed" 60 ||
5558                         error "MDS${k} namespace isn't the expected 'completed'"
5559         done
5560         local rep_mdt=$(do_nodes $(comma_list $(mdts_nodes)) \
5561                         $LCTL get_param -n mdd.$FSNAME-*.lfsck_* |
5562                         awk '/repaired/ { print $2 }' | calc_sum)
5563         local rep_ost=$(do_nodes $(comma_list $(osts_nodes)) \
5564                         $LCTL get_param -n obdfilter.$FSNAME-*.lfsck_* |
5565                         awk '/repaired/ { print $2 }' | calc_sum)
5566         local repaired=$((rep_mdt + rep_ost))
5567         [ $repaired -eq 0 ] ||
5568                 error "lfsck repaired $rep_mdt MDT and $rep_ost OST errors"
5569 }
5570
5571 dump_file_contents() {
5572         local nodes=$1
5573         local dir=$2
5574         local logname=$3
5575         local node
5576
5577         if [ -z "$nodes" -o -z "$dir" -o -z "$logname" ]; then
5578                 error_noexit false \
5579                         "Invalid parameters for dump_file_contents()"
5580                 return 1
5581         fi
5582         for node in ${nodes}; do
5583                 do_node $node "for i in \\\$(find $dir -type f); do
5584                                 echo ====\\\${i}=======================;
5585                                 cat \\\${i};
5586                                 done" >> ${logname}.${node}.log
5587         done
5588 }
5589
5590 dump_command_output() {
5591         local nodes=$1
5592         local cmd=$2
5593         local logname=$3
5594         local node
5595
5596         if [ -z "$nodes" -o -z "$cmd" -o -z "$logname" ]; then
5597                 error_noexit false \
5598                         "Invalid parameters for dump_command_output()"
5599                 return 1
5600         fi
5601
5602         for node in ${nodes}; do
5603                 do_node $node "echo ====${cmd}=======================;
5604                                 $cmd" >> ${logname}.${node}.log
5605         done
5606 }
5607
5608 log_zfs_info() {
5609         local logname=$1
5610
5611         # dump file contents from /proc/spl in case of zfs test
5612         if [ "$(facet_fstype ost1)" = "zfs" ]; then
5613                 dump_file_contents "$(osts_nodes)" "/proc/spl" "${logname}"
5614                 dump_command_output \
5615                         "$(osts_nodes)" "zpool events -v" "${logname}"
5616         fi
5617
5618         if [ "$(facet_fstype $SINGLEMDS)" = "zfs" ]; then
5619                 dump_file_contents "$(mdts_nodes)" "/proc/spl" "${logname}"
5620                 dump_command_output \
5621                         "$(mdts_nodes)" "zpool events -v" "${logname}"
5622         fi
5623 }
5624
5625 check_and_cleanup_lustre() {
5626         if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "sanity-lfsck" -a \
5627              "$TESTSUITE" != "sanity-scrub" ]; then
5628                 run_lfsck
5629         fi
5630
5631         if is_mounted $MOUNT; then
5632                 if $DO_CLEANUP; then
5633                         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
5634                                 error "remove sub-test dirs failed"
5635                 else
5636                         echo "skip cleanup"
5637                 fi
5638                 [ "$ENABLE_QUOTA" ] && restore_quota || true
5639         fi
5640
5641         if [ "$I_UMOUNTED2" = "yes" ]; then
5642                 restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
5643         fi
5644
5645         if [ "$I_MOUNTED2" = "yes" ]; then
5646                 cleanup_mount $MOUNT2
5647         fi
5648
5649         if [[ "$I_MOUNTED" = "yes" ]] && ! $AUSTER_CLEANUP; then
5650                 cleanupall -f || error "cleanup failed"
5651                 unset I_MOUNTED
5652         fi
5653 }
5654
5655 #######
5656 # General functions
5657
5658 wait_for_function () {
5659     local quiet=""
5660
5661     # suppress fn both stderr and stdout
5662     if [ "$1" = "--quiet" ]; then
5663         shift
5664         quiet=" > /dev/null 2>&1"
5665
5666     fi
5667
5668     local fn=$1
5669     local max=${2:-900}
5670     local sleep=${3:-5}
5671
5672     local wait=0
5673
5674     while true; do
5675
5676         eval $fn $quiet && return 0
5677
5678         wait=$((wait + sleep))
5679         [ $wait -lt $max ] || return 1
5680         echo waiting $fn, $((max - wait)) secs left ...
5681         sleep $sleep
5682     done
5683 }
5684
5685 check_network() {
5686         local host=$1
5687         local max=$2
5688         local sleep=${3:-5}
5689
5690         [ "$host" = "$HOSTNAME" ] && return 0
5691
5692         echo "$(date +'%H:%M:%S (%s)') waiting for $host network $max secs ..."
5693         if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
5694                 echo "Network not available!"
5695                 exit 1
5696         fi
5697
5698         echo "$(date +'%H:%M:%S (%s)') network interface is UP"
5699 }
5700
5701 no_dsh() {
5702     shift
5703     eval $@
5704 }
5705
5706 # Convert a space-delimited list to a comma-delimited list.  If the input is
5707 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
5708 comma_list() {
5709         # echo is used to convert newlines to spaces, since it doesn't
5710         # introduce a trailing space as using "tr '\n' ' '" does
5711         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
5712 }
5713
5714 list_member () {
5715     local list=$1
5716     local item=$2
5717     echo $list | grep -qw $item
5718 }
5719
5720 # list, excluded are the comma separated lists
5721 exclude_items_from_list () {
5722     local list=$1
5723     local excluded=$2
5724     local item
5725
5726     list=${list//,/ }
5727     for item in ${excluded//,/ }; do
5728         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
5729     done
5730     echo $(comma_list $list)
5731 }
5732
5733 # list, expand  are the comma separated lists
5734 expand_list () {
5735     local list=${1//,/ }
5736     local expand=${2//,/ }
5737     local expanded=
5738
5739     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
5740     echo $(comma_list $expanded)
5741 }
5742
5743 testslist_filter () {
5744     local script=$LUSTRE/tests/${TESTSUITE}.sh
5745
5746     [ -f $script ] || return 0
5747
5748     local start_at=$START_AT
5749     local stop_at=$STOP_AT
5750
5751     local var=${TESTSUITE//-/_}_START_AT
5752     [ x"${!var}" != x ] && start_at=${!var}
5753     var=${TESTSUITE//-/_}_STOP_AT
5754     [ x"${!var}" != x ] && stop_at=${!var}
5755
5756     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
5757         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
5758             /^'${start_at}'$/ {flag = 0}
5759             {if (flag == 1) print $0}
5760             /^'${stop_at}'$/ { flag = 1 }'
5761 }
5762
5763 absolute_path() {
5764     (cd `dirname $1`; echo $PWD/`basename $1`)
5765 }
5766
5767 get_facets () {
5768     local types=${1:-"OST MDS MGS"}
5769
5770     local list=""
5771
5772     for entry in $types; do
5773         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
5774         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
5775
5776         case $type in
5777                 MGS ) list="$list $name";;
5778             MDS|OST|AGT ) local count=${type}COUNT
5779                        for ((i=1; i<=${!count}; i++)) do
5780                           list="$list ${name}$i"
5781                       done;;
5782                   * ) error "Invalid facet type"
5783                  exit 1;;
5784         esac
5785     done
5786     echo $(comma_list $list)
5787 }
5788
5789 ##################################
5790 # Adaptive Timeouts funcs
5791
5792 at_is_enabled() {
5793     # only check mds, we assume at_max is the same on all nodes
5794     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
5795     if [ $at_max -eq 0 ]; then
5796         return 1
5797     else
5798         return 0
5799     fi
5800 }
5801
5802 at_get() {
5803     local facet=$1
5804     local at=$2
5805
5806     # suppose that all ost-s have the same $at value set
5807     [ $facet != "ost" ] || facet=ost1
5808
5809     do_facet $facet "lctl get_param -n $at"
5810 }
5811
5812 at_max_get() {
5813     at_get $1 at_max
5814 }
5815
5816 at_min_get() {
5817         at_get $1 at_min
5818 }
5819
5820 at_max_set() {
5821     local at_max=$1
5822     shift
5823
5824     local facet
5825     local hosts
5826     for facet in $@; do
5827         if [ $facet == "ost" ]; then
5828             facet=$(get_facets OST)
5829         elif [ $facet == "mds" ]; then
5830             facet=$(get_facets MDS)
5831         fi
5832         hosts=$(expand_list $hosts $(facets_hosts $facet))
5833     done
5834
5835     do_nodes $hosts lctl set_param at_max=$at_max
5836 }
5837
5838 ##################################
5839 # OBD_FAIL funcs
5840
5841 drop_request() {
5842 # OBD_FAIL_MDS_ALL_REQUEST_NET
5843     RC=0
5844     do_facet $SINGLEMDS lctl set_param fail_val=0 fail_loc=0x123
5845     do_facet client "$1" || RC=$?
5846     do_facet $SINGLEMDS lctl set_param fail_loc=0
5847     return $RC
5848 }
5849
5850 drop_reply() {
5851 # OBD_FAIL_MDS_ALL_REPLY_NET
5852         RC=0
5853         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x122
5854         eval "$@" || RC=$?
5855         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
5856         return $RC
5857 }
5858
5859 drop_reint_reply() {
5860 # OBD_FAIL_MDS_REINT_NET_REP
5861         RC=0
5862         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x119
5863         eval "$@" || RC=$?
5864         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
5865         return $RC
5866 }
5867
5868 drop_update_reply() {
5869 # OBD_FAIL_OUT_UPDATE_NET_REP
5870         local index=$1
5871         shift 1
5872         RC=0
5873         do_facet mds${index} lctl set_param fail_loc=0x1701
5874         do_facet client "$@" || RC=$?
5875         do_facet mds${index} lctl set_param fail_loc=0
5876         return $RC
5877 }
5878
5879 pause_bulk() {
5880 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
5881         RC=0
5882
5883         local timeout=${2:-0}
5884         # default is (obd_timeout / 4) if unspecified
5885         echo "timeout is $timeout/$2"
5886         do_facet ost1 lctl set_param fail_val=$timeout fail_loc=0x80000214
5887         do_facet client "$1" || RC=$?
5888         do_facet client "sync"
5889         do_facet ost1 lctl set_param fail_loc=0
5890         return $RC
5891 }
5892
5893 drop_ldlm_cancel() {
5894 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
5895         local RC=0
5896         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
5897         do_nodes $list lctl set_param fail_loc=0x304
5898
5899         do_facet client "$@" || RC=$?
5900
5901         do_nodes $list lctl set_param fail_loc=0
5902         return $RC
5903 }
5904
5905 drop_bl_callback_once() {
5906         local rc=0
5907         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
5908 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
5909         do_facet client lctl set_param fail_loc=0x80000305
5910         do_facet client "$@" || rc=$?
5911         do_facet client lctl set_param fail_loc=0
5912         do_facet client lctl set_param fail_val=0
5913         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
5914         return $rc
5915 }
5916
5917 drop_bl_callback() {
5918         rc=0
5919         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
5920 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
5921         do_facet client lctl set_param fail_loc=0x305
5922         do_facet client "$@" || rc=$?
5923         do_facet client lctl set_param fail_loc=0
5924         do_facet client lctl set_param fail_val=0
5925         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
5926         return $rc
5927 }
5928
5929 drop_mdt_ldlm_reply() {
5930 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
5931     RC=0
5932     local list=$(comma_list $(mdts_nodes))
5933     do_nodes $list lctl set_param fail_loc=0x157
5934
5935     do_facet client "$@" || RC=$?
5936
5937     do_nodes $list lctl set_param fail_loc=0
5938     return $RC
5939 }
5940
5941 drop_mdt_ldlm_reply_once() {
5942 #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
5943     RC=0
5944     local list=$(comma_list $(mdts_nodes))
5945     do_nodes $list lctl set_param fail_loc=0x80000157
5946
5947     do_facet client "$@" || RC=$?
5948
5949     do_nodes $list lctl set_param fail_loc=0
5950     return $RC
5951 }
5952
5953 clear_failloc() {
5954     facet=$1
5955     pause=$2
5956     sleep $pause
5957     echo "clearing fail_loc on $facet"
5958     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
5959 }
5960
5961 set_nodes_failloc () {
5962         local fv=${3:-0}
5963         do_nodes $(comma_list $1)  lctl set_param fail_val=$fv fail_loc=$2
5964 }
5965
5966 cancel_lru_locks() {
5967         #$LCTL mark "cancel_lru_locks $1 start"
5968         $LCTL set_param -n ldlm.namespaces.*$1*.lru_size=clear
5969         $LCTL get_param ldlm.namespaces.*$1*.lock_unused_count | grep -v '=0'
5970         #$LCTL mark "cancel_lru_locks $1 stop"
5971 }
5972
5973 default_lru_size()
5974 {
5975         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
5976         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
5977         echo "$DEFAULT_LRU_SIZE"
5978 }
5979
5980 lru_resize_enable()
5981 {
5982     lctl set_param ldlm.namespaces.*$1*.lru_size=0
5983 }
5984
5985 lru_resize_disable()
5986 {
5987     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
5988 }
5989
5990 flock_is_enabled()
5991 {
5992         local mountpath=${1:-$MOUNT}
5993         local RC=0
5994
5995         [ -z "$(mount | grep "$mountpath .*flock" | grep -v noflock)" ] && RC=1
5996         return $RC
5997 }
5998
5999 pgcache_empty() {
6000     local FILE
6001     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
6002         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
6003             echo there is still data in page cache $FILE ?
6004             lctl get_param -n $FILE
6005             return 1
6006         fi
6007     done
6008     return 0
6009 }
6010
6011 debugsave() {
6012         DEBUGSAVE="$(lctl get_param -n debug)"
6013         DEBUGSAVE_SERVER=$(do_facet $SINGLEMDS "$LCTL get_param -n debug")
6014 }
6015
6016 debugrestore() {
6017         [ -n "$DEBUGSAVE" ] &&
6018                 do_nodes $CLIENTS "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\""||
6019                 true
6020         DEBUGSAVE=""
6021
6022         [ -n "$DEBUGSAVE_SERVER" ] &&
6023                 do_nodes $(comma_list $(all_server_nodes)) \
6024                          "$LCTL set_param debug=\\\"${DEBUGSAVE_SERVER}\\\"" ||
6025                          true
6026         DEBUGSAVE_SERVER=""
6027 }
6028
6029 debug_size_save() {
6030     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
6031 }
6032
6033 debug_size_restore() {
6034     [ -n "$DEBUG_SIZE_SAVED" ] && \
6035         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
6036     DEBUG_SIZE_SAVED=""
6037 }
6038
6039 start_full_debug_logging() {
6040         debugsave
6041         debug_size_save
6042
6043         local fulldebug=-1
6044         local debug_size=150
6045         local nodes=$(comma_list $(nodes_list))
6046
6047         do_nodes $nodes "$LCTL set_param debug=$fulldebug debug_mb=$debug_size"
6048 }
6049
6050 stop_full_debug_logging() {
6051         debug_size_restore
6052         debugrestore
6053 }
6054
6055 # prints bash call stack
6056 print_stack_trace() {
6057         local skip=${1:-1}
6058         echo "  Trace dump:"
6059         for (( i=$skip; i < ${#BASH_LINENO[*]} ; i++ )) ; do
6060                 local src=${BASH_SOURCE[$i]}
6061                 local lineno=${BASH_LINENO[$i-1]}
6062                 local funcname=${FUNCNAME[$i]}
6063                 echo "  = $src:$lineno:$funcname()"
6064         done
6065 }
6066
6067 report_error() {
6068         local TYPE=${TYPE:-"FAIL"}
6069
6070         local dump=true
6071         # do not dump logs if $1=false
6072         if [ "x$1" = "xfalse" ]; then
6073                 shift
6074                 dump=false
6075         fi
6076
6077         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
6078         (print_stack_trace 2) >&2
6079         mkdir -p $LOGDIR
6080         # We need to dump the logs on all nodes
6081         if $dump; then
6082                 gather_logs $(comma_list $(nodes_list))
6083         fi
6084
6085         debugrestore
6086         [ "$TESTSUITELOG" ] &&
6087                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
6088         if [ -z "$*" ]; then
6089                 echo "error() without useful message, please fix" > $LOGDIR/err
6090         else
6091                 if [[ `echo $TYPE | grep ^IGNORE` ]]; then
6092                         echo "$@" > $LOGDIR/ignore
6093                 else
6094                         echo "$@" > $LOGDIR/err
6095                 fi
6096         fi
6097
6098         # cleanup the env for failed tests
6099         reset_fail_loc
6100 }
6101
6102 ##################################
6103 # Test interface
6104 ##################################
6105
6106 # usage: stack_trap arg sigspec
6107 #
6108 # stack_trap() behaves like bash's built-in trap, except that it "stacks" the
6109 # command "arg" on top of previously defined commands for "sigspec" instead
6110 # of overwriting them.
6111 # stacked traps are executed in reverse order of their registration
6112 #
6113 # arg and sigspec have the same meaning as in man (1) trap
6114 stack_trap()
6115 {
6116         local arg="$1"
6117         local sigspec="${2:-EXIT}"
6118
6119         # Use "trap -p" to get the quoting right
6120         local old_trap="$(trap -p "$sigspec")"
6121         # Append ";" and remove the leading "trap -- '" added by "trap -p"
6122         old_trap="${old_trap:+"; ${old_trap#trap -- \'}"}"
6123
6124         # Once again, use "trap -p" to get the quoting right
6125         local new_trap="$(trap -- "$arg" "$sigspec"
6126                           trap -p "$sigspec"
6127                           trap -- '' "$sigspec")"
6128
6129         # Remove the trailing "' $sigspec" part added by "trap -p" and merge
6130         #
6131         # The resulting string should be safe to "eval" as it is (supposedly
6132         # correctly) quoted by "trap -p"
6133         eval "${new_trap%\' $sigspec}${old_trap:-"' $sigspec"}"
6134 }
6135
6136 error_noexit() {
6137         report_error "$@"
6138 }
6139
6140 exit_status () {
6141         local status=0
6142         local log=$TESTSUITELOG
6143
6144         [ -f "$log" ] && grep -qw FAIL $log && status=1
6145         exit $status
6146 }
6147
6148 error() {
6149         report_error "$@"
6150         exit 1
6151 }
6152
6153 error_exit() {
6154         report_error "$@"
6155         exit 1
6156 }
6157
6158 # use only if we are ignoring failures for this test, bugno required.
6159 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
6160 # e.g. error_ignore bz5494 "your message" or
6161 # error_ignore LU-5494 "your message"
6162 error_ignore() {
6163         local TYPE="IGNORE ($1)"
6164         shift
6165         report_error "$@"
6166 }
6167
6168 error_and_remount() {
6169         report_error "$@"
6170         remount_client $MOUNT
6171         exit 1
6172 }
6173
6174 # Throw an error if it's not running in vm - usually for performance
6175 # verification
6176 error_not_in_vm() {
6177         local virt=$(running_in_vm)
6178         if [[ -n "$virt" ]]; then
6179                 echo "running in VM '$virt', ignore error"
6180                 error_ignore env=$virt "$@"
6181         else
6182                 error "$@"
6183         fi
6184 }
6185
6186 #
6187 # Function: skip_env()
6188 # Purpose:  to skip a test during developer testing because some tool
6189 #           is missing, but fail the test in release testing because the test
6190 #           environment is not configured properly".
6191 #
6192 skip_env () {
6193         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
6194 }
6195
6196 skip_noexit() {
6197         echo
6198         log " SKIP: $TESTSUITE $TESTNAME $@"
6199
6200         if [[ -n "$ALWAYS_SKIPPED" ]]; then
6201                 skip_logged $TESTNAME "$@"
6202         else
6203                 mkdir -p $LOGDIR
6204                 echo "$@" > $LOGDIR/skip
6205         fi
6206
6207         [[ -n "$TESTSUITELOG" ]] &&
6208                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
6209         unset TESTNAME
6210 }
6211
6212 skip() {
6213         skip_noexit $@
6214         exit 0
6215 }
6216
6217 build_test_filter() {
6218         EXCEPT="$EXCEPT $(testslist_filter)"
6219
6220         for O in $ONLY; do
6221                 if [[ $O = [0-9]*-[0-9]* ]]; then
6222                         for num in $(seq $(echo $O | tr '-' ' ')); do
6223                                 eval ONLY_$num=true
6224                         done
6225                 else
6226                         eval ONLY_${O}=true
6227                 fi
6228         done
6229
6230         [ "$EXCEPT$ALWAYS_EXCEPT" ] &&
6231                 log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
6232         [ "$EXCEPT_SLOW" ] &&
6233                 log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
6234         for E in $EXCEPT; do
6235                 eval EXCEPT_${E}=true
6236         done
6237         for E in $ALWAYS_EXCEPT; do
6238                 eval EXCEPT_ALWAYS_${E}=true
6239         done
6240         for E in $EXCEPT_SLOW; do
6241                 eval EXCEPT_SLOW_${E}=true
6242         done
6243         for G in $GRANT_CHECK_LIST; do
6244                 eval GCHECK_ONLY_${G}=true
6245         done
6246 }
6247
6248 basetest() {
6249     if [[ $1 = [a-z]* ]]; then
6250         echo $1
6251     else
6252         echo ${1%%[a-zA-Z]*}
6253     fi
6254 }
6255
6256 # print a newline if the last test was skipped
6257 export LAST_SKIPPED=
6258 export ALWAYS_SKIPPED=
6259 #
6260 # Main entry into test-framework. This is called with the number and
6261 # description of a test. The number is used to find the function to run
6262 # the test using "test_$name".
6263 #
6264 # This supports a variety of methods of specifying specific test to
6265 # run or not run:
6266 # - ONLY= env variable with space-separated list of test numbers to run
6267 # - EXCEPT= env variable with space-separated list of test numbers to exclude
6268 #
6269 run_test() {
6270         assert_DIR
6271         local testnum=$1
6272         local testmsg=$2
6273         export base=$(basetest $testnum)
6274         export TESTNAME=test_$testnum
6275         LAST_SKIPPED=
6276         ALWAYS_SKIPPED=
6277
6278         # Check the EXCEPT, ALWAYS_EXCEPT and SLOW lists to see if we
6279         # need to skip the current test. If so, set the ALWAYS_SKIPPED flag.
6280         local isexcept=EXCEPT_$testnum
6281         local isexcept_base=EXCEPT_$base
6282         if [ ${!isexcept}x != x ]; then
6283                 ALWAYS_SKIPPED="y"
6284                 skip_message="skipping excluded test $testnum"
6285         elif [ ${!isexcept_base}x != x ]; then
6286                 ALWAYS_SKIPPED="y"
6287                 skip_message="skipping excluded test $testnum (base $base)"
6288         fi
6289
6290         isexcept=EXCEPT_ALWAYS_$testnum
6291         isexcept_base=EXCEPT_ALWAYS_$base
6292         if [ ${!isexcept}x != x ]; then
6293                 ALWAYS_SKIPPED="y"
6294                 skip_message="skipping ALWAYS excluded test $testnum"
6295         elif [ ${!isexcept_base}x != x ]; then
6296                 ALWAYS_SKIPPED="y"
6297                 skip_message="skipping ALWAYS excluded test $testnum (base $base)"
6298         fi
6299
6300         isexcept=EXCEPT_SLOW_$testnum
6301         isexcept_base=EXCEPT_SLOW_$base
6302         if [ ${!isexcept}x != x ]; then
6303                 ALWAYS_SKIPPED="y"
6304                 skip_message="skipping SLOW test $testnum"
6305         elif [ ${!isexcept_base}x != x ]; then
6306                 ALWAYS_SKIPPED="y"
6307                 skip_message="skipping SLOW test $testnum (base $base)"
6308         fi
6309
6310         # If there are tests on the ONLY list, check if the current test
6311         # is on that list and, if so, check if the test is to be skipped
6312         # and if we are supposed to honor the skip lists.
6313         if [ -n "$ONLY" ]; then
6314                 local isonly=ONLY_$testnum
6315                 local isonly_base=ONLY_$base
6316                 if [[ ${!isonly}x != x || ${!isonly_base}x != x ]]; then
6317
6318                         if [[ -n "$ALWAYS_SKIPPED" && -n "$HONOR_EXCEPT" ]]; then
6319                                 LAST_SKIPPED="y"
6320                                 skip_noexit "$skip_message"
6321                                 return 0
6322                         else
6323                                 [ -n "$LAST_SKIPPED" ] &&
6324                                         echo "" && LAST_SKIPPED=
6325                                 ALWAYS_SKIPPED=
6326                                 run_one_logged $testnum "$testmsg"
6327                                 return $?
6328                         fi
6329
6330                 else
6331                         LAST_SKIPPED="y"
6332                         return 0
6333                 fi
6334         fi
6335
6336         if [ -n "$ALWAYS_SKIPPED" ]; then
6337                 LAST_SKIPPED="y"
6338                 skip_noexit "$skip_message"
6339                 return 0
6340         else
6341                 run_one_logged $testnum "$testmsg"
6342                 return $?
6343         fi
6344 }
6345
6346 log() {
6347         echo "$*" >&2
6348         load_module ../libcfs/libcfs/libcfs
6349
6350     local MSG="$*"
6351     # Get rid of '
6352     MSG=${MSG//\'/\\\'}
6353     MSG=${MSG//\(/\\\(}
6354     MSG=${MSG//\)/\\\)}
6355     MSG=${MSG//\;/\\\;}
6356     MSG=${MSG//\|/\\\|}
6357     MSG=${MSG//\>/\\\>}
6358     MSG=${MSG//\</\\\<}
6359     MSG=${MSG//\//\\\/}
6360     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
6361 }
6362
6363 trace() {
6364         log "STARTING: $*"
6365         strace -o $TMP/$1.strace -ttt $*
6366         RC=$?
6367         log "FINISHED: $*: rc $RC"
6368         return 1
6369 }
6370
6371 complete () {
6372     local duration=$1
6373
6374     banner test complete, duration $duration sec
6375     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
6376     echo duration $duration >>$TESTSUITELOG
6377 }
6378
6379 pass() {
6380         # Set TEST_STATUS here. It will be used for logging the result.
6381         TEST_STATUS="PASS"
6382
6383         if [[ -f $LOGDIR/err ]]; then
6384                 TEST_STATUS="FAIL"
6385         elif [[ -f $LOGDIR/skip ]]; then
6386                 TEST_STATUS="SKIP"
6387         fi
6388         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
6389 }
6390
6391 check_mds() {
6392     local FFREE=$(do_node $SINGLEMDS \
6393         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
6394     local FTOTAL=$(do_node $SINGLEMDS \
6395         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
6396
6397     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
6398 }
6399
6400 reset_fail_loc () {
6401         echo -n "Resetting fail_loc on all nodes..."
6402         do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 \
6403             fail_val=0 2>/dev/null" || true
6404         echo done.
6405 }
6406
6407
6408 #
6409 # Log a message (on all nodes) padded with "=" before and after.
6410 # Also appends a timestamp and prepends the testsuite name.
6411 #
6412
6413 EQUALS="===================================================================================================="
6414 banner() {
6415     msg="== ${TESTSUITE} $*"
6416     last=${msg: -1:1}
6417     [[ $last != "=" && $last != " " ]] && msg="$msg "
6418     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
6419     # always include at least == after the message
6420     log "$msg== $(date +"%H:%M:%S (%s)")"
6421 }
6422
6423 check_dmesg_for_errors() {
6424         local res
6425         local errors="VFS: Busy inodes after unmount of\|\
6426 ldiskfs_check_descriptors: Checksum for group 0 failed\|\
6427 group descriptors corrupted"
6428
6429         res=$(do_nodes $(comma_list $(nodes_list)) "dmesg" | grep "$errors")
6430         [ -z "$res" ] && return 0
6431         echo "Kernel error detected: $res"
6432         return 1
6433 }
6434
6435 #
6436 # Run a single test function and cleanup after it.
6437 #
6438 # This function should be run in a subshell so the test func can
6439 # exit() without stopping the whole script.
6440 #
6441 run_one() {
6442         local testnum=$1
6443         local testmsg="$2"
6444         local SAVE_UMASK=`umask`
6445         umask 0022
6446
6447         if ! grep -q $DIR /proc/mounts; then
6448                 $SETUP
6449         fi
6450
6451         banner "test $testnum: $testmsg"
6452         test_${testnum} || error "test_$testnum failed with $?"
6453         cd $SAVE_PWD
6454         reset_fail_loc
6455         check_grant ${testnum} || error "check_grant $testnum failed with $?"
6456         check_node_health
6457         check_dmesg_for_errors || error "Error in dmesg detected"
6458         if [ "$PARALLEL" != "yes" ]; then
6459                 ps auxww | grep -v grep | grep -q "multiop " &&
6460                                         error "multiop still running"
6461         fi
6462         umask $SAVE_UMASK
6463         $CLEANUP
6464         return 0
6465 }
6466
6467 #
6468 # Wrapper around run_one to ensure:
6469 #  - test runs in subshell
6470 #  - output of test is saved to separate log file for error reporting
6471 #  - test result is saved to data file
6472 #
6473 run_one_logged() {
6474         local before=$SECONDS
6475         local testnum=$1
6476         local testmsg=$2
6477         export tfile=f${testnum}.${TESTSUITE}
6478         export tdir=d${testnum}.${TESTSUITE}
6479         local name=$TESTSUITE.$TESTNAME.test_log.$(hostname -s).log
6480         local test_log=$LOGDIR/$name
6481         local zfs_log_name=$TESTSUITE.$TESTNAME.zfs_log
6482         local zfs_debug_log=$LOGDIR/$zfs_log_name
6483         local SAVE_UMASK=$(umask)
6484         local rc=0
6485         umask 0022
6486
6487         rm -f $LOGDIR/err $LOGDIR/ignore $LOGDIR/skip
6488         echo
6489         # if ${ONLY_$testnum} set, repeat $ONLY_REPEAT times, otherwise once
6490         local isonly=ONLY_$testnum
6491         local repeat=${!isonly:+$ONLY_REPEAT}
6492
6493         for testiter in $(seq ${repeat:-1}); do
6494                 local before_sub=$SECONDS
6495                 log_sub_test_begin $TESTNAME
6496
6497                 # remove temp files between repetitions to avoid test failures
6498                 [ -n "$append" -a -n "$DIR" -a -n "$tdir" -a -n "$tfile" ] &&
6499                         rm -rf $DIR/$tdir* $DIR/$tfile*
6500                 # loop around subshell so stack_trap EXIT triggers each time
6501                 (run_one $testnum "$testmsg") 2>&1 | tee -i $append $test_log
6502                 rc=${PIPESTATUS[0]}
6503                 local append=-a
6504                 local duration_sub=$((SECONDS - before_sub))
6505                 local test_error
6506
6507                 [[ $rc != 0 && ! -f $LOGDIR/err ]] &&
6508                         echo "$TESTNAME returned $rc" | tee $LOGDIR/err
6509
6510                 if [[ -f $LOGDIR/err ]]; then
6511                         test_error=$(cat $LOGDIR/err)
6512                         TEST_STATUS="FAIL"
6513                 elif [[ -f $LOGDIR/ignore ]]; then
6514                         test_error=$(cat $LOGDIR/ignore)
6515                 elif [[ -f $LOGDIR/skip ]]; then
6516                         test_error=$(cat $LOGDIR/skip)
6517                         TEST_STATUS="SKIP"
6518                 else
6519                         TEST_STATUS="PASS"
6520                 fi
6521
6522                 pass "$testnum" "($((SECONDS - before))s)"
6523                 log_sub_test_end $TEST_STATUS $duration_sub "$rc" "$test_error"
6524                 [[ $rc != 0 ]] && break
6525         done
6526
6527         if [[ "$TEST_STATUS" != "SKIP" && -f $TF_SKIP ]]; then
6528                 rm -f $TF_SKIP
6529         fi
6530
6531         if [ -f $LOGDIR/err ]; then
6532                 log_zfs_info "$zfs_debug_log"
6533                 $FAIL_ON_ERROR && exit $rc
6534         fi
6535
6536         umask $SAVE_UMASK
6537
6538         unset TESTNAME
6539         unset tdir
6540         unset tfile
6541
6542         return 0
6543 }
6544
6545 #
6546 # Print information of skipped tests to result.yml
6547 #
6548 skip_logged(){
6549         log_sub_test_begin $1
6550         shift
6551         log_sub_test_end "SKIP" "0" "0" "$@"
6552 }
6553
6554 canonical_path() {
6555         (cd $(dirname $1); echo $PWD/$(basename $1))
6556 }
6557
6558 grant_from_clients() {
6559         local nodes="$1"
6560
6561         # get client grant
6562         do_nodes $nodes "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" |
6563                 calc_sum
6564 }
6565
6566 grant_from_servers() {
6567         local nodes="$1"
6568
6569         # get server grant
6570         # which is tot_granted less grant_precreate
6571         do_nodes $nodes "$LCTL get_param obdfilter.${FSNAME}-OST*.tot_granted" \
6572                 " obdfilter.${FSNAME}-OST*.tot_pending" \
6573                 " obdfilter.${FSNAME}-OST*.grant_precreate" |
6574                 tr '=' ' ' | awk '/tot_granted/{ total += $2 };
6575                                   /tot_pending/{ total -= $2 };
6576                                   /grant_precreate/{ total -= $2 };
6577                                   END { printf("%0.0f", total) }'
6578 }
6579
6580 check_grant() {
6581         export base=$(basetest $1)
6582         [ "$CHECK_GRANT" == "no" ] && return 0
6583
6584         local isonly_base=GCHECK_ONLY_${base}
6585         local isonly=GCHECK_ONLY_$1
6586         [ ${!isonly_base}x == x -a ${!isonly}x == x ] && return 0
6587
6588         echo -n "checking grant......"
6589
6590         local osts=$(comma_list $(osts_nodes))
6591         local clients=$CLIENTS
6592         [ -z "$clients" ] && clients=$(hostname)
6593
6594         # sync all the data and make sure no pending data on server
6595         do_nodes $clients sync
6596         clients_up # initiate all idling connections
6597
6598         # get client grant
6599         cli_grant=$(grant_from_clients $clients)
6600
6601         # get server grant
6602         # which is tot_granted less grant_precreate
6603         srv_grant=$(grant_from_servers $osts)
6604
6605         count=0
6606         # check whether client grant == server grant
6607         while [[ $cli_grant != $srv_grant && count++ -lt 30 ]]; do
6608                 echo "wait for client:$cli_grant == server:$srv_grant"
6609                 sleep 1
6610                 cli_grant=$(grant_from_clients $clients)
6611                 srv_grant=$(grant_from_servers $osts)
6612         done
6613         if [[ $cli_grant -ne $srv_grant ]]; then
6614                 do_nodes $(comma_list $(osts_nodes)) \
6615                         "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*" \
6616                         "obdfilter.${FSNAME}-OST*.grant_*"
6617                 do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
6618                 error "failed grant check: client:$cli_grant server:$srv_grant"
6619         else
6620                 echo "pass grant check: client:$cli_grant server:$srv_grant"
6621         fi
6622 }
6623
6624 ########################
6625 # helper functions
6626
6627 osc_to_ost()
6628 {
6629     osc=$1
6630     ost=`echo $1 | awk -F_ '{print $3}'`
6631     if [ -z $ost ]; then
6632         ost=`echo $1 | sed 's/-osc.*//'`
6633     fi
6634     echo $ost
6635 }
6636
6637 ostuuid_from_index()
6638 {
6639     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6640 }
6641
6642 ostname_from_index() {
6643     local uuid=$(ostuuid_from_index $1)
6644     echo ${uuid/_UUID/}
6645 }
6646
6647 mdtname_from_index() {
6648         local uuid=$(mdtuuid_from_index $1)
6649         echo ${uuid/_UUID/}
6650 }
6651
6652 mdssize_from_index () {
6653         local mdt=$(mdtname_from_index $2)
6654         $LFS df $1 | grep $mdt | awk '{ print $2 }'
6655 }
6656
6657 index_from_ostuuid()
6658 {
6659     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
6660 }
6661
6662 mdtuuid_from_index()
6663 {
6664     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6665 }
6666
6667 # Description:
6668 #   Return unique identifier for given hostname
6669 host_id() {
6670         local host_name=$1
6671         echo $host_name | md5sum | cut -d' ' -f1
6672 }
6673
6674 # Description:
6675 #   Returns list of ip addresses for each interface
6676 local_addr_list() {
6677         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
6678 }
6679
6680 is_local_addr() {
6681         local addr=$1
6682         # Cache address list to avoid mutiple execution of local_addr_list
6683         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
6684         local i
6685         for i in $LOCAL_ADDR_LIST ; do
6686                 [[ "$i" == "$addr" ]] && return 0
6687         done
6688         return 1
6689 }
6690
6691 local_node() {
6692         local host_name=$1
6693         local is_local="IS_LOCAL_$(host_id $host_name)"
6694         if [ -z "${!is_local-}" ] ; then
6695                 eval $is_local=0
6696                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
6697                 is_local_addr "$host_ip" && eval $is_local=1
6698         fi
6699         [[ "${!is_local}" == "1" ]]
6700 }
6701
6702 remote_node () {
6703         local node=$1
6704         local_node $node && return 1
6705         return 0
6706 }
6707
6708 remote_mds ()
6709 {
6710     local node
6711     for node in $(mdts_nodes); do
6712         remote_node $node && return 0
6713     done
6714     return 1
6715 }
6716
6717 remote_mds_nodsh()
6718 {
6719         [ -n "$CLIENTONLY" ] && return 0 || true
6720         remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
6721 }
6722
6723 require_dsh_mds()
6724 {
6725         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" &&
6726                 MSKIPPED=1 && return 1
6727         return 0
6728 }
6729
6730 remote_ost ()
6731 {
6732     local node
6733     for node in $(osts_nodes) ; do
6734         remote_node $node && return 0
6735     done
6736     return 1
6737 }
6738
6739 remote_ost_nodsh()
6740 {
6741         [ -n "$CLIENTONLY" ] && return 0 || true
6742         remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6743 }
6744
6745 require_dsh_ost()
6746 {
6747         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
6748             OSKIPPED=1 && return 1
6749         return 0
6750 }
6751
6752 remote_mgs_nodsh()
6753 {
6754         [ -n "$CLIENTONLY" ] && return 0 || true
6755         local MGS
6756         MGS=$(facet_host mgs)
6757         remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6758 }
6759
6760 local_mode ()
6761 {
6762     remote_mds_nodsh || remote_ost_nodsh || \
6763         $(single_local_node $(comma_list $(nodes_list)))
6764 }
6765
6766 remote_servers () {
6767     remote_ost && remote_mds
6768 }
6769
6770 # Get the active nodes for facets.
6771 facets_nodes () {
6772         local facets=$1
6773         local facet
6774         local nodes
6775         local nodes_sort
6776         local i
6777
6778         for facet in ${facets//,/ }; do
6779                 nodes="$nodes $(facet_active_host $facet)"
6780         done
6781
6782         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6783         echo -n $nodes_sort
6784 }
6785
6786 # Get name of the active MGS node.
6787 mgs_node () {
6788         echo -n $(facets_nodes $(get_facets MGS))
6789 }
6790
6791 # Get all of the active MDS nodes.
6792 mdts_nodes () {
6793         echo -n $(facets_nodes $(get_facets MDS))
6794 }
6795
6796 # Get all of the active OSS nodes.
6797 osts_nodes () {
6798         echo -n $(facets_nodes $(get_facets OST))
6799 }
6800
6801 # Get all of the active AGT (HSM agent) nodes.
6802 agts_nodes () {
6803         echo -n $(facets_nodes $(get_facets AGT))
6804 }
6805
6806 # Get all of the client nodes and active server nodes.
6807 nodes_list () {
6808         local nodes=$HOSTNAME
6809         local nodes_sort
6810         local i
6811
6812         # CLIENTS (if specified) contains the local client
6813         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6814
6815         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6816                 nodes="$nodes $(facets_nodes $(get_facets))"
6817         fi
6818
6819         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6820         echo -n $nodes_sort
6821 }
6822
6823 # Get all of the remote client nodes and remote active server nodes.
6824 remote_nodes_list () {
6825         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
6826 }
6827
6828 # Get all of the MDS nodes, including active and passive nodes.
6829 all_mdts_nodes () {
6830         local host
6831         local failover_host
6832         local nodes
6833         local nodes_sort
6834         local i
6835
6836         for i in $(seq $MDSCOUNT); do
6837                 host=mds${i}_HOST
6838                 failover_host=mds${i}failover_HOST
6839                 nodes="$nodes ${!host} ${!failover_host}"
6840         done
6841
6842         [ -n "$nodes" ] || nodes="${mds_HOST} ${mdsfailover_HOST}"
6843         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6844         echo -n $nodes_sort
6845 }
6846
6847 # Get all of the OSS nodes, including active and passive nodes.
6848 all_osts_nodes () {
6849         local host
6850         local failover_host
6851         local nodes=
6852         local nodes_sort
6853         local i
6854
6855         for i in $(seq $OSTCOUNT); do
6856                 host=ost${i}_HOST
6857                 failover_host=ost${i}failover_HOST
6858                 nodes="$nodes ${!host} ${!failover_host}"
6859         done
6860
6861         [ -n "$nodes" ] || nodes="${ost_HOST} ${ostfailover_HOST}"
6862         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6863         echo -n $nodes_sort
6864 }
6865
6866 # Get all of the server nodes, including active and passive nodes.
6867 all_server_nodes () {
6868         local nodes
6869         local nodes_sort
6870         local i
6871
6872         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
6873
6874         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6875         echo -n $nodes_sort
6876 }
6877
6878 # Get all of the client and server nodes, including active and passive nodes.
6879 all_nodes () {
6880         local nodes=$HOSTNAME
6881         local nodes_sort
6882         local i
6883
6884         # CLIENTS (if specified) contains the local client
6885         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6886
6887         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6888                 nodes="$nodes $(all_server_nodes)"
6889         fi
6890
6891         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6892         echo -n $nodes_sort
6893 }
6894
6895 init_clients_lists () {
6896     # Sanity check: exclude the local client from RCLIENTS
6897     local clients=$(hostlist_expand "$RCLIENTS")
6898     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
6899
6900     # Sanity check: exclude the dup entries
6901     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
6902
6903     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
6904
6905     # Sanity check: exclude the dup entries from CLIENTS
6906     # for those configs which has SINGLCLIENT set to local client
6907     clients=$(for i in $clients; do echo $i; done | sort -u)
6908
6909     CLIENTS=$(comma_list $clients)
6910     local -a remoteclients=($RCLIENTS)
6911     for ((i=0; $i<${#remoteclients[@]}; i++)); do
6912             varname=CLIENT$((i + 2))
6913             eval $varname=${remoteclients[i]}
6914     done
6915
6916     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
6917 }
6918
6919 get_random_entry () {
6920     local rnodes=$1
6921
6922     rnodes=${rnodes//,/ }
6923
6924     local -a nodes=($rnodes)
6925     local num=${#nodes[@]}
6926     local i=$((RANDOM * num * 2 / 65536))
6927
6928     echo ${nodes[i]}
6929 }
6930
6931 client_only () {
6932         [ -n "$CLIENTONLY" ] || [ "x$CLIENTMODSONLY" = "xyes" ]
6933 }
6934
6935 check_versions () {
6936     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
6937       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
6938 }
6939
6940 get_node_count() {
6941     local nodes="$@"
6942     echo $nodes | wc -w || true
6943 }
6944
6945 mixed_ost_devs () {
6946     local nodes=$(osts_nodes)
6947     local osscount=$(get_node_count "$nodes")
6948     [ ! "$OSTCOUNT" = "$osscount" ]
6949 }
6950
6951 mixed_mdt_devs () {
6952     local nodes=$(mdts_nodes)
6953     local mdtcount=$(get_node_count "$nodes")
6954     [ ! "$MDSCOUNT" = "$mdtcount" ]
6955 }
6956
6957 generate_machine_file() {
6958     local nodes=${1//,/ }
6959     local machinefile=$2
6960     rm -f $machinefile
6961     for node in $nodes; do
6962         echo $node >>$machinefile || \
6963             { echo "can not generate machinefile $machinefile" && return 1; }
6964     done
6965 }
6966
6967 get_stripe () {
6968         local file=$1/stripe
6969
6970         touch $file
6971         $LFS getstripe -v $file || error "getstripe $file failed"
6972         rm -f $file
6973 }
6974
6975 setstripe_nfsserver () {
6976         local dir=$1
6977         local nfsexportdir=$2
6978         shift
6979         shift
6980
6981         local -a nfsexport=($(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
6982                 { print $1 }' /proc/mounts | cut -f 1 -d :))
6983
6984         # check that only one nfs mounted
6985         [[ -z $nfsexport ]] && echo "$dir is not nfs mounted" && return 1
6986         (( ${#nfsexport[@]} == 1 )) ||
6987                 error "several nfs mounts found for $dir: ${nfsexport[@]} !"
6988
6989         do_nodev ${nfsexport[0]} lfs setstripe $nfsexportdir "$@"
6990 }
6991
6992 # Check and add a test group.
6993 add_group() {
6994         local group_id=$1
6995         local group_name=$2
6996         local rc=0
6997
6998         local gid=$(getent group $group_name | cut -d: -f3)
6999         if [[ -n "$gid" ]]; then
7000                 [[ "$gid" -eq "$group_id" ]] || {
7001                         error_noexit "inconsistent group ID:" \
7002                                      "new: $group_id, old: $gid"
7003                         rc=1
7004                 }
7005         else
7006                 groupadd -g $group_id $group_name
7007                 rc=${PIPESTATUS[0]}
7008         fi
7009
7010         return $rc
7011 }
7012
7013 # Check and add a test user.
7014 add_user() {
7015         local user_id=$1
7016         shift
7017         local user_name=$1
7018         shift
7019         local group_name=$1
7020         shift
7021         local home=$1
7022         shift
7023         local opts="$@"
7024         local rc=0
7025
7026         local uid=$(getent passwd $user_name | cut -d: -f3)
7027         if [[ -n "$uid" ]]; then
7028                 if [[ "$uid" -eq "$user_id" ]]; then
7029                         local dir=$(getent passwd $user_name | cut -d: -f6)
7030                         if [[ "$dir" != "$home" ]]; then
7031                                 mkdir -p $home
7032                                 usermod -d $home $user_name
7033                                 rc=${PIPESTATUS[0]}
7034                         fi
7035                 else
7036                         error_noexit "inconsistent user ID:" \
7037                                      "new: $user_id, old: $uid"
7038                         rc=1
7039                 fi
7040         else
7041                 mkdir -p $home
7042                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
7043                 rc=${PIPESTATUS[0]}
7044         fi
7045
7046         return $rc
7047 }
7048
7049 check_runas_id_ret() {
7050     local myRC=0
7051     local myRUNAS_UID=$1
7052     local myRUNAS_GID=$2
7053     shift 2
7054     local myRUNAS=$@
7055     if [ -z "$myRUNAS" ]; then
7056         error_exit "myRUNAS command must be specified for check_runas_id"
7057     fi
7058     if $GSS_KRB5; then
7059         $myRUNAS krb5_login.sh || \
7060             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
7061     fi
7062     mkdir $DIR/d0_runas_test
7063     chmod 0755 $DIR
7064     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
7065     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
7066     rm -rf $DIR/d0_runas_test
7067     return $myRC
7068 }
7069
7070 check_runas_id() {
7071     local myRUNAS_UID=$1
7072     local myRUNAS_GID=$2
7073     shift 2
7074     local myRUNAS=$@
7075     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
7076         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
7077         Please set RUNAS_ID to some UID which exists on MDS and client or
7078         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
7079 }
7080
7081 # obtain the UID/GID for MPI_USER
7082 get_mpiuser_id() {
7083     local mpi_user=$1
7084
7085     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
7086 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
7087
7088     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
7089 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
7090 }
7091
7092 # obtain and cache Kerberos ticket-granting ticket
7093 refresh_krb5_tgt() {
7094     local myRUNAS_UID=$1
7095     local myRUNAS_GID=$2
7096     shift 2
7097     local myRUNAS=$@
7098     if [ -z "$myRUNAS" ]; then
7099         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
7100     fi
7101
7102     CLIENTS=${CLIENTS:-$HOSTNAME}
7103     do_nodes $CLIENTS "set -x
7104 if ! $myRUNAS krb5_login.sh; then
7105     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
7106     exit 1
7107 fi"
7108 }
7109
7110 # Run multiop in the background, but wait for it to print
7111 # "PAUSING" to its stdout before returning from this function.
7112 multiop_bg_pause() {
7113     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
7114     FILE=$1
7115     ARGS=$2
7116
7117     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
7118     mkfifo $TMPPIPE
7119
7120     echo "$MULTIOP_PROG $FILE v$ARGS"
7121     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
7122
7123     echo "TMPPIPE=${TMPPIPE}"
7124     read -t 60 multiop_output < $TMPPIPE
7125     if [ $? -ne 0 ]; then
7126         rm -f $TMPPIPE
7127         return 1
7128     fi
7129     rm -f $TMPPIPE
7130     if [ "$multiop_output" != "PAUSING" ]; then
7131         echo "Incorrect multiop output: $multiop_output"
7132         kill -9 $PID
7133         return 1
7134     fi
7135
7136     return 0
7137 }
7138
7139 do_and_time () {
7140     local cmd=$1
7141     local rc
7142
7143     SECONDS=0
7144     eval '$cmd'
7145
7146     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
7147
7148     echo $SECONDS
7149     return $rc
7150 }
7151
7152 inodes_available () {
7153         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
7154                 sort -un | head -n1) || return 1
7155         echo $((IFree))
7156 }
7157
7158 mdsrate_inodes_available () {
7159         local min_inodes=$(inodes_available)
7160         echo $((min_inodes * 99 / 100))
7161 }
7162
7163 # reset stat counters
7164 clear_stats() {
7165         local paramfile="$1"
7166         lctl set_param -n $paramfile=0
7167 }
7168
7169 # sum stat items
7170 calc_stats() {
7171         local paramfile="$1"
7172         local stat="$2"
7173         lctl get_param -n $paramfile |
7174                 awk '/^'$stat'/ { sum += $2 } END { printf("%0.0f", sum) }'
7175 }
7176
7177 calc_sum () {
7178         awk '{sum += $1} END { printf("%0.0f", sum) }'
7179 }
7180
7181 calc_osc_kbytes () {
7182         $LFS df $MOUNT > /dev/null
7183         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
7184 }
7185
7186 # save_lustre_params(comma separated facet list, parameter_mask)
7187 # generate a stream of formatted strings (<facet> <param name>=<param value>)
7188 save_lustre_params() {
7189         local facets=$1
7190         local facet
7191         local facet_svc
7192
7193         for facet in ${facets//,/ }; do
7194                 facet_svc=$(facet_svc $facet)
7195                 do_facet $facet \
7196                         "params=\\\$($LCTL get_param $2);
7197                          [[ -z \\\"$facet_svc\\\" ]] && param= ||
7198                          param=\\\$(grep $facet_svc <<< \\\"\\\$params\\\");
7199                          [[ -z \\\$param ]] && param=\\\"\\\$params\\\";
7200                          while read s; do echo $facet \\\$s;
7201                          done <<< \\\"\\\$param\\\""
7202         done
7203 }
7204
7205 # restore lustre parameters from input stream, produces by save_lustre_params
7206 restore_lustre_params() {
7207         local facet
7208         local name
7209         local val
7210
7211         while IFS=" =" read facet name val; do
7212                 do_facet $facet "$LCTL set_param -n $name=$val"
7213         done
7214 }
7215
7216 check_node_health() {
7217         local nodes=${1:-$(comma_list $(nodes_list))}
7218
7219         for node in ${nodes//,/ }; do
7220                 check_network "$node" 5
7221                 if [ $? -eq 0 ]; then
7222                         do_node $node "rc=0;
7223                         val=\\\$($LCTL get_param -n catastrophe 2>&1);
7224                         if [[ \\\$? -eq 0 && \\\$val -ne 0 ]]; then
7225                                 echo \\\$(hostname -s): \\\$val;
7226                                 rc=\\\$val;
7227                         fi;
7228                         exit \\\$rc" || error "$node:LBUG/LASSERT detected"
7229                 fi
7230         done
7231 }
7232
7233 mdsrate_cleanup () {
7234         if [ -d $4 ]; then
7235                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
7236                         --nfiles $3 --dir $4 --filefmt $5 $6
7237                 rmdir $4
7238         fi
7239 }
7240
7241 delayed_recovery_enabled () {
7242     local var=${SINGLEMDS}_svc
7243     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
7244 }
7245
7246 ########################
7247
7248 convert_facet2label() {
7249         local facet=$1
7250
7251         if [ x$facet = xost ]; then
7252                 facet=ost1
7253         elif [ x$facet = xmgs ] && combined_mgs_mds ; then
7254                 facet=mds1
7255         fi
7256
7257         local varsvc=${facet}_svc
7258
7259         if [ -n ${!varsvc} ]; then
7260                 echo ${!varsvc}
7261         else
7262                 error "No label for $facet!"
7263         fi
7264 }
7265
7266 get_clientosc_proc_path() {
7267         echo "${1}-osc-[-0-9a-f]*"
7268 }
7269
7270 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
7271 # used by MDT would not be changed.
7272 # mdt lov: fsname-mdtlov
7273 # mdt osc: fsname-OSTXXXX-osc
7274 mds_on_old_device() {
7275     local mds=${1:-"$SINGLEMDS"}
7276
7277     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
7278         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
7279             > /dev/null 2>&1" && return 0
7280     fi
7281     return 1
7282 }
7283
7284 get_mdtosc_proc_path() {
7285         local mds_facet=$1
7286         local ost_label=${2:-"*OST*"}
7287
7288         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
7289         local mdt_label=$(convert_facet2label $mds_facet)
7290         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
7291
7292         if [[ $ost_label = *OST* ]]; then
7293                 echo "${ost_label}-osc-${mdt_index}"
7294         else
7295                 echo "${ost_label}-osp-${mdt_index}"
7296         fi
7297 }
7298
7299 get_osc_import_name() {
7300     local facet=$1
7301     local ost=$2
7302     local label=$(convert_facet2label $ost)
7303
7304     if [ "${facet:0:3}" = "mds" ]; then
7305         get_mdtosc_proc_path $facet $label
7306         return 0
7307     fi
7308
7309     get_clientosc_proc_path $label
7310     return 0
7311 }
7312
7313 _wait_import_state () {
7314     local expected=$1
7315     local CONN_PROC=$2
7316     local maxtime=${3:-$(max_recovery_time)}
7317     local error_on_failure=${4:-1}
7318     local CONN_STATE
7319     local i=0
7320
7321         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
7322     while ! echo "${CONN_STATE}" | egrep -q "^${expected}\$" ; do
7323         if [ "${expected}" == "DISCONN" ]; then
7324             # for disconn we can check after proc entry is removed
7325             [ "x${CONN_STATE}" == "x" ] && return 0
7326             #  with AT enabled, we can have connect request timeout near of
7327             # reconnect timeout and test can't see real disconnect
7328             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
7329         fi
7330         if [ $i -ge $maxtime ]; then
7331             [ $error_on_failure -ne 0 ] && \
7332                 error "can't put import for $CONN_PROC into ${expected}" \
7333                       "state after $i sec, have ${CONN_STATE}"
7334             return 1
7335         fi
7336         sleep 1
7337         # Add uniq for multi-mount case
7338         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
7339         i=$(($i + 1))
7340     done
7341
7342     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
7343     return 0
7344 }
7345
7346 wait_import_state() {
7347     local state=$1
7348     local params=$2
7349     local maxtime=${3:-$(max_recovery_time)}
7350     local error_on_failure=${4:-1}
7351     local param
7352
7353     for param in ${params//,/ }; do
7354         _wait_import_state $state $param $maxtime $error_on_failure || return
7355     done
7356 }
7357
7358 wait_import_state_mount() {
7359         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
7360                 return 0
7361         fi
7362
7363         wait_import_state $*
7364 }
7365
7366 # One client request could be timed out because server was not ready
7367 # when request was sent by client.
7368 # The request timeout calculation details :
7369 # ptl_send_rpc ()
7370 #      /* We give the server rq_timeout secs to process the req, and
7371 #      add the network latency for our local timeout. */
7372 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
7373 #           ptlrpc_at_get_net_latency(request) ;
7374 #
7375 # ptlrpc_connect_import ()
7376 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7377 #
7378 # init_imp_at () ->
7379 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
7380 # ptlrpc_at_get_net_latency(request) ->
7381 #       at_get (max (iat_net_latency=0, at_min)) = at_min
7382 #
7383 # i.e.:
7384 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
7385 # INITIAL_CONNECT_TIMEOUT + at_min
7386 #
7387 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
7388 # because we can not get this value in runtime,
7389 # the value depends on configure options, and it is not stored in /proc.
7390 # obd_support.h:
7391 # #define CONNECTION_SWITCH_MIN 5U
7392 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
7393
7394 request_timeout () {
7395     local facet=$1
7396
7397     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
7398     local init_connect_timeout=$TIMEOUT
7399     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
7400
7401     local at_min=$(at_get $facet at_min)
7402
7403     echo $(( init_connect_timeout + at_min ))
7404 }
7405
7406 _wait_osc_import_state() {
7407         local facet=$1
7408         local ost_facet=$2
7409         local expected=$3
7410         local target=$(get_osc_import_name $facet $ost_facet)
7411         local param="os[cp].${target}.ost_server_uuid"
7412         local params=$param
7413         local i=0
7414
7415         # 1. wait the deadline of client 1st request (it could be skipped)
7416         # 2. wait the deadline of client 2nd request
7417         local maxtime=$(( 2 * $(request_timeout $facet)))
7418
7419         if [[ $facet == client* ]]; then
7420                 # During setup time, the osc might not be setup, it need wait
7421                 # until list_param can return valid value.
7422                 params=$($LCTL list_param $param 2>/dev/null || true)
7423                 while [ -z "$params" ]; do
7424                         if [ $i -ge $maxtime ]; then
7425                                 echo "can't get $param in $maxtime secs"
7426                                 return 1
7427                         fi
7428                         sleep 1
7429                         i=$((i + 1))
7430                         params=$($LCTL list_param $param 2>/dev/null || true)
7431                 done
7432         fi
7433
7434         if [[ $ost_facet = mds* ]]; then
7435                 # no OSP connection to itself
7436                 if [[ $facet = $ost_facet ]]; then
7437                         return 0
7438                 fi
7439                 param="osp.${target}.mdt_server_uuid"
7440                 params=$param
7441         fi
7442
7443         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7444                         wait_import_state $expected "$params" $maxtime; then
7445                 error "$facet: import is not in $expected state after $maxtime"
7446                 return 1
7447         fi
7448
7449         return 0
7450 }
7451
7452 wait_osc_import_state() {
7453         local facet=$1
7454         local ost_facet=$2
7455         local expected=$3
7456         local num
7457
7458         if [[ $facet = mds ]]; then
7459                 for num in $(seq $MDSCOUNT); do
7460                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
7461                 done
7462         else
7463                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
7464         fi
7465 }
7466
7467 wait_osc_import_ready() {
7468         wait_osc_import_state $1 $2 "\(FULL\|IDLE\)"
7469 }
7470
7471 _wait_mgc_import_state() {
7472         local facet=$1
7473         local expected=$2
7474         local error_on_failure=${3:-1}
7475         local param="mgc.*.mgs_server_uuid"
7476         local params=$param
7477         local i=0
7478
7479         # 1. wait the deadline of client 1st request (it could be skipped)
7480         # 2. wait the deadline of client 2nd request
7481         local maxtime=$(( 2 * $(request_timeout $facet)))
7482
7483         if [[ $facet == client* ]]; then
7484                 # During setup time, the osc might not be setup, it need wait
7485                 # until list_param can return valid value. And also if there
7486                 # are mulitple osc entries we should list all of them before
7487                 # go to wait.
7488                 params=$($LCTL list_param $param 2>/dev/null || true)
7489                 while [ -z "$params" ]; do
7490                         if [ $i -ge $maxtime ]; then
7491                                 echo "can't get $param in $maxtime secs"
7492                                 return 1
7493                         fi
7494                         sleep 1
7495                         i=$((i + 1))
7496                         params=$($LCTL list_param $param 2>/dev/null || true)
7497                 done
7498         fi
7499         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7500                         wait_import_state $expected "$params" $maxtime \
7501                                           $error_on_failure; then
7502                 if [ $error_on_failure -ne 0 ]; then
7503                     error "import is not in ${expected} state"
7504                 fi
7505                 return 1
7506         fi
7507
7508         return 0
7509 }
7510
7511 wait_mgc_import_state() {
7512         local facet=$1
7513         local expected=$2
7514         local error_on_failure=${3:-1}
7515         local num
7516
7517         if [[ $facet = mds ]]; then
7518                 for num in $(seq $MDSCOUNT); do
7519                         _wait_mgc_import_state mds$num "$expected" \
7520                                                $error_on_failure || return
7521                 done
7522         else
7523                 _wait_mgc_import_state "$facet" "$expected"
7524                                        $error_on_failure || return
7525         fi
7526 }
7527
7528 wait_dne_interconnect() {
7529         local num
7530
7531         if [ $MDSCOUNT -gt 1 ]; then
7532                 for num in $(seq $MDSCOUNT); do
7533                         wait_osc_import_ready mds mds$num
7534                 done
7535         fi
7536 }
7537
7538 get_clientmdc_proc_path() {
7539     echo "${1}-mdc-*"
7540 }
7541
7542 get_clientmgc_proc_path() {
7543     echo "*"
7544 }
7545
7546 do_rpc_nodes () {
7547         local list=$1
7548         shift
7549
7550         [ -z "$list" ] && return 0
7551
7552         # Add paths to lustre tests for 32 and 64 bit systems.
7553         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
7554         local TESTPATH="$RLUSTRE/tests:"
7555         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
7556         do_nodesv $list "${RPATH} NAME=${NAME} bash rpc.sh $@ "
7557 }
7558
7559 wait_clients_import_state () {
7560         local list=$1
7561         local facet=$2
7562         local expected=$3
7563
7564         local facets=$facet
7565
7566         if [ "$FAILURE_MODE" = HARD ]; then
7567                 facets=$(facets_on_host $(facet_active_host $facet))
7568         fi
7569
7570         for facet in ${facets//,/ }; do
7571                 local label=$(convert_facet2label $facet)
7572                 local proc_path
7573                 case $facet in
7574                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
7575                                   $label).ost_server_uuid" ;;
7576                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
7577                                   $label).mds_server_uuid" ;;
7578                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
7579                                   $label).mgs_server_uuid" ;;
7580                 *) error "unknown facet!" ;;
7581                 esac
7582
7583                 local params=$(expand_list $params $proc_path)
7584         done
7585
7586         if ! do_rpc_nodes "$list" wait_import_state_mount "$expected" $params;
7587         then
7588                 error "import is not in ${expected} state"
7589                 return 1
7590         fi
7591 }
7592
7593 wait_osp_active() {
7594         local facet=$1
7595         local tgt_name=$2
7596         local tgt_idx=$3
7597         local expected=$4
7598         local num
7599
7600         # wait until all MDTs are in the expected state
7601         for ((num = 1; num <= $MDSCOUNT; num++)); do
7602                 local mdtosp=$(get_mdtosc_proc_path mds${num} ${tgt_name})
7603                 local wait=0
7604                 local mproc
7605
7606                 if [ $facet = "mds" ]; then
7607                         mproc="osp.$mdtosp.active"
7608                         [ $num -eq $((tgt_idx + 1)) ] && continue
7609                 else
7610                         mproc="osc.$mdtosp.active"
7611                 fi
7612
7613                 echo "check $mproc"
7614                 while [ 1 ]; do
7615                         sleep 5
7616                         local result=$(do_facet mds${num} "$LCTL get_param -n $mproc")
7617                         local max=30
7618
7619                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $mproc"
7620                         if [ $result -eq $expected ]; then
7621                                 echo -n "target updated after "
7622                                 echo "$wait sec (got $result)"
7623                                 break
7624                         fi
7625                         wait=$((wait + 5))
7626                         if [ $wait -eq $max ]; then
7627                                 error "$tgt_name: wanted $expected got $result"
7628                         fi
7629                         echo "Waiting $((max - wait)) secs for $tgt_name"
7630                 done
7631         done
7632 }
7633
7634 oos_full() {
7635         local -a AVAILA
7636         local -a GRANTA
7637         local -a TOTALA
7638         local OSCFULL=1
7639         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
7640                   $LCTL get_param obdfilter.*.kbytesavail))
7641         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
7642                   $LCTL get_param -n obdfilter.*.tot_granted))
7643         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
7644                   $LCTL get_param -n obdfilter.*.kbytestotal))
7645         for ((i=0; i<${#AVAILA[@]}; i++)); do
7646                 local -a AVAIL1=(${AVAILA[$i]//=/ })
7647                 local -a TOTAL=(${TOTALA[$i]//=/ })
7648                 GRANT=$((${GRANTA[$i]}/1024))
7649                 # allow 1% of total space in bavail because of delayed
7650                 # allocation with ZFS which might release some free space after
7651                 # txg commit.  For small devices, we set a mininum of 8MB
7652                 local LIMIT=$((${TOTAL} / 100 + 8000))
7653                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
7654                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
7655                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
7656                         echo " FULL" || echo
7657         done
7658         return $OSCFULL
7659 }
7660
7661 list_pool() {
7662         echo -e "$(do_facet $SINGLEMDS $LCTL pool_list $1 | sed '1d')"
7663 }
7664
7665 check_pool_not_exist() {
7666         local fsname=${1%%.*}
7667         local poolname=${1##$fsname.}
7668         [[ $# -ne 1 ]] && return 0
7669         [[ x$poolname = x ]] &&  return 0
7670         list_pool $fsname | grep -w $1 && return 1
7671         return 0
7672 }
7673
7674 create_pool() {
7675         local fsname=${1%%.*}
7676         local poolname=${1##$fsname.}
7677
7678         stack_trap "destroy_test_pools $fsname" EXIT
7679         do_facet mgs lctl pool_new $1
7680         local RC=$?
7681         # get param should return err unless pool is created
7682         [[ $RC -ne 0 ]] && return $RC
7683
7684         for mds_id in $(seq $MDSCOUNT); do
7685                 local mdt_id=$((mds_id-1))
7686                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7687                 wait_update_facet mds$mds_id \
7688                         "lctl get_param -n lod.$lodname.pools.$poolname \
7689                                 2>/dev/null || echo foo" "" ||
7690                         error "mds$mds_id: pool_new failed $1"
7691         done
7692         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7693                 2>/dev/null || echo foo" "" || error "pool_new failed $1"
7694
7695         add_pool_to_list $1
7696         return $RC
7697 }
7698
7699 add_pool_to_list () {
7700         local fsname=${1%%.*}
7701         local poolname=${1##$fsname.}
7702
7703         local listvar=${fsname}_CREATED_POOLS
7704         local temp=${listvar}=$(expand_list ${!listvar} $poolname)
7705         eval export $temp
7706 }
7707
7708 remove_pool_from_list () {
7709         local fsname=${1%%.*}
7710         local poolname=${1##$fsname.}
7711
7712         local listvar=${fsname}_CREATED_POOLS
7713         local temp=${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
7714         eval export $temp
7715 }
7716
7717 destroy_pool_int() {
7718         local ost
7719         local OSTS=$(list_pool $1)
7720         for ost in $OSTS; do
7721                 do_facet mgs lctl pool_remove $1 $ost
7722         done
7723         wait_update_facet $SINGLEMDS "lctl pool_list $1 | wc -l" "1" ||
7724                 error "MDS: pool_list $1 failed"
7725         do_facet mgs lctl pool_destroy $1
7726 }
7727
7728 # <fsname>.<poolname> or <poolname>
7729 destroy_pool() {
7730         local fsname=${1%%.*}
7731         local poolname=${1##$fsname.}
7732
7733         [[ x$fsname = x$poolname ]] && fsname=$FSNAME
7734
7735         local RC
7736
7737         check_pool_not_exist $fsname.$poolname
7738         [[ $? -eq 0 ]] && return 0
7739
7740         destroy_pool_int $fsname.$poolname
7741         RC=$?
7742         [[ $RC -ne 0 ]] && return $RC
7743         for mds_id in $(seq $MDSCOUNT); do
7744                 local mdt_id=$((mds_id-1))
7745                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7746                 wait_update_facet mds$mds_id \
7747                         "lctl get_param -n lod.$lodname.pools.$poolname \
7748                                 2>/dev/null || echo foo" "foo" ||
7749                         error "mds$mds_id: destroy pool failed $1"
7750         done
7751         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7752                 2>/dev/null || echo foo" "foo" || error "destroy pool failed $1"
7753
7754         remove_pool_from_list $fsname.$poolname
7755
7756         return $RC
7757 }
7758
7759 destroy_pools () {
7760         local fsname=${1:-$FSNAME}
7761         local poolname
7762         local listvar=${fsname}_CREATED_POOLS
7763
7764         [ x${!listvar} = x ] && return 0
7765
7766         echo "Destroy the created pools: ${!listvar}"
7767         for poolname in ${!listvar//,/ }; do
7768                 destroy_pool $fsname.$poolname
7769         done
7770 }
7771
7772 destroy_test_pools () {
7773         trap 0
7774         local fsname=${1:-$FSNAME}
7775         destroy_pools $fsname || true
7776 }
7777
7778 gather_logs () {
7779         local list=$1
7780
7781         local ts=$(date +%s)
7782         local docp=true
7783
7784         if [[ ! -f "$YAML_LOG" ]]; then
7785                 # init_logging is not performed before gather_logs,
7786                 # so the $LOGDIR needs to be checked here
7787                 check_shared_dir $LOGDIR && touch $LOGDIR/shared
7788         fi
7789
7790         [ -f $LOGDIR/shared ] && docp=false
7791
7792         # dump lustre logs, dmesg, and journal if GSS_SK=true
7793
7794         prefix="$TESTLOG_PREFIX.$TESTNAME"
7795         suffix="$ts.log"
7796         echo "Dumping lctl log to ${prefix}.*.${suffix}"
7797
7798         if [ -n "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
7799                 echo "Dumping logs only on local client."
7800                 $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
7801                 dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
7802                 [ "$SHARED_KEY" = true ] && find $SK_PATH -name '*.key' -exec \
7803                         lgss_sk -r {} \; &> \
7804                         ${prefix}.ssk_keys.$(hostname -s).${suffix}
7805                 [ "$SHARED_KEY" = true ] && lctl get_param 'nodemap.*.*' > \
7806                         ${prefix}.nodemaps.$(hostname -s).${suffix}
7807                 [ "$GSS_SK" = true ] && keyctl show > \
7808                         ${prefix}.keyring.$(hostname -s).${suffix}
7809                 [ "$GSS_SK" = true ] && journalctl -a > \
7810                         ${prefix}.journal.$(hostname -s).${suffix}
7811                 return
7812         fi
7813
7814         do_nodesv $list \
7815                 "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
7816                 dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
7817         if [ "$SHARED_KEY" = true ]; then
7818                 do_nodesv $list "find $SK_PATH -name '*.key' -exec \
7819                         lgss_sk -r {} \; &> \
7820                         ${prefix}.ssk_keys.\\\$(hostname -s).${suffix}"
7821                 do_facet mds1 "lctl get_param 'nodemap.*.*' > \
7822                         ${prefix}.nodemaps.\\\$(hostname -s).${suffix}"
7823         fi
7824         if [ "$GSS_SK" = true ]; then
7825                 do_nodesv $list "keyctl show > \
7826                         ${prefix}.keyring.\\\$(hostname -s).${suffix}"
7827                 do_nodesv $list "journalctl -a > \
7828                         ${prefix}.journal.\\\$(hostname -s).${suffix}"
7829         fi
7830
7831         if [ ! -f $LOGDIR/shared ]; then
7832                 do_nodes $list rsync -az "${prefix}.*.${suffix}" \
7833                          $HOSTNAME:$LOGDIR
7834         fi
7835 }
7836
7837 do_ls () {
7838     local mntpt_root=$1
7839     local num_mntpts=$2
7840     local dir=$3
7841     local i
7842     local cmd
7843     local pids
7844     local rc=0
7845
7846     for i in $(seq 0 $num_mntpts); do
7847         cmd="ls -laf ${mntpt_root}$i/$dir"
7848         echo + $cmd;
7849         $cmd > /dev/null &
7850         pids="$pids $!"
7851     done
7852     echo pids=$pids
7853     for pid in $pids; do
7854         wait $pid || rc=$?
7855     done
7856
7857     return $rc
7858 }
7859
7860 # check_and_start_recovery_timer()
7861 #       service_time = at_est2timeout(service_time);
7862 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
7863 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
7864
7865 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
7866 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
7867 #define CONNECTION_SWITCH_MIN 5
7868 #define CONNECTION_SWITCH_INC 5
7869 max_recovery_time() {
7870         local init_connect_timeout=$((TIMEOUT / 20))
7871         ((init_connect_timeout >= 5)) || init_connect_timeout=5
7872
7873         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
7874         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
7875
7876         echo -n $service_time
7877 }
7878
7879 recovery_time_min() {
7880         local connection_switch_min=5
7881         local connection_switch_inc=5
7882         local connection_switch_max
7883         local reconnect_delay_max
7884         local initial_connect_timeout
7885         local max
7886         local timout_20
7887
7888         #connection_switch_max=min(50, max($connection_switch_min,$TIMEOUT)
7889         (($connection_switch_min > $TIMEOUT)) &&
7890                 max=$connection_switch_min || max=$TIMEOUT
7891         (($max < 50)) && connection_switch_max=$max || connection_switch_max=50
7892
7893         #initial_connect_timeout = max(connection_switch_min, obd_timeout/20)
7894         timeout_20=$((TIMEOUT/20))
7895         (($connection_switch_min > $timeout_20)) &&
7896                 initial_connect_timeout=$connection_switch_min ||
7897                 initial_connect_timeout=$timeout_20
7898
7899         reconnect_delay_max=$((connection_switch_max + connection_switch_inc + \
7900                                initial_connect_timeout))
7901         echo $((2 * reconnect_delay_max))
7902 }
7903
7904 get_clients_mount_count () {
7905         local clients=${CLIENTS:-$HOSTNAME}
7906
7907         # we need to take into account the clients mounts and
7908         # exclude mds/ost mounts if any;
7909         do_nodes $clients cat /proc/mounts | grep lustre |
7910                 grep -w $MOUNT | wc -l
7911 }
7912
7913 # gss functions
7914 PROC_CLI="srpc_info"
7915 PROC_CON="srpc_contexts"
7916
7917 combination()
7918 {
7919     local M=$1
7920     local N=$2
7921     local R=1
7922
7923     if [ $M -lt $N ]; then
7924         R=0
7925     else
7926         N=$((N + 1))
7927         while [ $N -lt $M ]; do
7928             R=$((R * N))
7929             N=$((N + 1))
7930         done
7931     fi
7932
7933     echo $R
7934     return 0
7935 }
7936
7937 calc_connection_cnt() {
7938         local dir=$1
7939
7940         # MDT->MDT = 2 * C(M, 2)
7941         # MDT->OST = M * O
7942         # CLI->OST = C * O
7943         # CLI->MDT = C * M
7944         comb_m2=$(combination $MDSCOUNT 2)
7945
7946         local num_clients=$(get_clients_mount_count)
7947
7948         local cnt_mdt2mdt=$((comb_m2 * 2))
7949         local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
7950         local cnt_cli2ost=$((num_clients * OSTCOUNT))
7951         local cnt_cli2mdt=$((num_clients * MDSCOUNT))
7952         if is_mounted $MOUNT2; then
7953                 cnt_cli2mdt=$((cnt_cli2mdt * 2))
7954                 cnt_cli2ost=$((cnt_cli2ost * 2))
7955         fi
7956         if local_mode; then
7957                 cnt_mdt2mdt=0
7958                 cnt_mdt2ost=0
7959                 cnt_cli2ost=2
7960                 cnt_cli2mdt=1
7961         fi
7962         local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
7963         local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
7964         local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt \
7965                 + cnt_cli2ost + cnt_cli2mdt))
7966
7967         local var=cnt_$dir
7968         local res=${!var}
7969
7970         echo $res
7971 }
7972
7973 set_rule()
7974 {
7975     local tgt=$1
7976     local net=$2
7977     local dir=$3
7978     local flavor=$4
7979     local cmd="$tgt.srpc.flavor"
7980
7981     if [ $net == "any" ]; then
7982         net="default"
7983     fi
7984     cmd="$cmd.$net"
7985
7986     if [ $dir != "any" ]; then
7987         cmd="$cmd.$dir"
7988     fi
7989
7990     cmd="$cmd=$flavor"
7991     log "Setting sptlrpc rule: $cmd"
7992     do_facet mgs "$LCTL conf_param $cmd"
7993 }
7994
7995 count_contexts()
7996 {
7997         local output=$1
7998         local total_ctx=$(echo "$output" | grep -c "expire.*key.*hdl")
7999         echo $total_ctx
8000 }
8001
8002 count_flvr()
8003 {
8004     local output=$1
8005     local flavor=$2
8006     local count=0
8007
8008     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
8009     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
8010
8011     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
8012
8013     if [ "x$bulkspec" != "x" ]; then
8014         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
8015
8016         if [ "x$algs" != "x" ]; then
8017             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
8018         else
8019             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
8020             if [ $bulk == "bulkn" ]; then
8021                 bulk_count=`echo "$output" | grep "bulk flavor" \
8022                             | grep "null/null" | wc -l`
8023             elif [ $bulk == "bulki" ]; then
8024                 bulk_count=`echo "$output" | grep "bulk flavor" \
8025                             | grep "/null" | grep -v "null/" | wc -l`
8026             else
8027                 bulk_count=`echo "$output" | grep "bulk flavor" \
8028                             | grep -v "/null" | grep -v "null/" | wc -l`
8029             fi
8030         fi
8031
8032         [ $bulk_count -lt $count ] && count=$bulk_count
8033     fi
8034
8035     echo $count
8036 }
8037
8038 flvr_cnt_cli2mdt()
8039 {
8040     local flavor=$1
8041     local cnt
8042
8043     local clients=${CLIENTS:-$HOSTNAME}
8044
8045     for c in ${clients//,/ }; do
8046         local output=$(do_node $c lctl get_param -n \
8047                  mdc.*-*-mdc-*.$PROC_CLI 2>/dev/null)
8048         local tmpcnt=$(count_flvr "$output" $flavor)
8049         if $GSS_SK && [ $flavor != "null" ]; then
8050                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8051                 output=$(do_node $c lctl get_param -n \
8052                          mdc.*-MDT*-mdc-*.$PROC_CON 2>/dev/null)
8053                 local outcon=$(count_contexts "$output")
8054                 if [ "$outcon" -lt "$tmpcnt" ]; then
8055                         tmpcnt=$outcon
8056                 fi
8057         fi
8058         cnt=$((cnt + tmpcnt))
8059     done
8060     echo $cnt
8061 }
8062
8063 flvr_cnt_cli2ost()
8064 {
8065     local flavor=$1
8066     local cnt
8067
8068     local clients=${CLIENTS:-$HOSTNAME}
8069
8070     for c in ${clients//,/ }; do
8071         # reconnect if idle
8072         do_node $c lctl set_param osc.*.idle_connect=1 >/dev/null 2>&1
8073         local output=$(do_node $c lctl get_param -n \
8074                  osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null)
8075         local tmpcnt=$(count_flvr "$output" $flavor)
8076         if $GSS_SK && [ $flavor != "null" ]; then
8077                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8078                 output=$(do_node $c lctl get_param -n \
8079                          osc.*OST*-osc-[^M][^D][^T]*.$PROC_CON 2>/dev/null)
8080                 local outcon=$(count_contexts "$output")
8081                 if [ "$outcon" -lt "$tmpcnt" ]; then
8082                         tmpcnt=$outcon
8083                 fi
8084         fi
8085         cnt=$((cnt + tmpcnt))
8086     done
8087     echo $cnt
8088 }
8089
8090 flvr_cnt_mdt2mdt()
8091 {
8092     local flavor=$1
8093     local cnt=0
8094
8095     if [ $MDSCOUNT -le 1 ]; then
8096         echo 0
8097         return
8098     fi
8099
8100     for num in `seq $MDSCOUNT`; do
8101         local output=$(do_facet mds$num lctl get_param -n \
8102                 osp.*-MDT*osp-MDT*.$PROC_CLI 2>/dev/null)
8103         local tmpcnt=$(count_flvr "$output" $flavor)
8104         if $GSS_SK && [ $flavor != "null" ]; then
8105                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8106                 output=$(do_facet mds$num lctl get_param -n \
8107                         osp.*-MDT*osp-MDT*.$PROC_CON 2>/dev/null)
8108                 local outcon=$(count_contexts "$output")
8109                 if [ "$outcon" -lt "$tmpcnt" ]; then
8110                         tmpcnt=$outcon
8111                 fi
8112         fi
8113         cnt=$((cnt + tmpcnt))
8114     done
8115     echo $cnt;
8116 }
8117
8118 flvr_cnt_mdt2ost()
8119 {
8120     local flavor=$1
8121     local cnt=0
8122     local mdtosc
8123
8124     for num in `seq $MDSCOUNT`; do
8125         mdtosc=$(get_mdtosc_proc_path mds$num)
8126         mdtosc=${mdtosc/-MDT*/-MDT\*}
8127         local output=$(do_facet mds$num lctl get_param -n \
8128                        os[cp].$mdtosc.$PROC_CLI 2>/dev/null)
8129         local tmpcnt=$(count_flvr "$output" $flavor)
8130         if $GSS_SK && [ $flavor != "null" ]; then
8131                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
8132                 output=$(do_facet mds$num lctl get_param -n \
8133                          os[cp].$mdtosc.$PROC_CON 2>/dev/null)
8134                 local outcon=$(count_contexts "$output")
8135                 if [ "$outcon" -lt "$tmpcnt" ]; then
8136                         tmpcnt=$outcon
8137                 fi
8138         fi
8139         cnt=$((cnt + tmpcnt))
8140     done
8141     echo $cnt;
8142 }
8143
8144 flvr_cnt_mgc2mgs()
8145 {
8146     local flavor=$1
8147
8148     local output=$(do_facet client lctl get_param -n mgc.*.$PROC_CLI \
8149                         2>/dev/null)
8150     count_flvr "$output" $flavor
8151 }
8152
8153 do_check_flavor()
8154 {
8155     local dir=$1        # from to
8156     local flavor=$2     # flavor expected
8157     local res=0
8158
8159     if [ $dir == "cli2mdt" ]; then
8160         res=`flvr_cnt_cli2mdt $flavor`
8161     elif [ $dir == "cli2ost" ]; then
8162         res=`flvr_cnt_cli2ost $flavor`
8163     elif [ $dir == "mdt2mdt" ]; then
8164         res=`flvr_cnt_mdt2mdt $flavor`
8165     elif [ $dir == "mdt2ost" ]; then
8166         res=`flvr_cnt_mdt2ost $flavor`
8167     elif [ $dir == "all2ost" ]; then
8168         res1=`flvr_cnt_mdt2ost $flavor`
8169         res2=`flvr_cnt_cli2ost $flavor`
8170         res=$((res1 + res2))
8171     elif [ $dir == "all2mdt" ]; then
8172         res1=`flvr_cnt_mdt2mdt $flavor`
8173         res2=`flvr_cnt_cli2mdt $flavor`
8174         res=$((res1 + res2))
8175     elif [ $dir == "all2all" ]; then
8176         res1=`flvr_cnt_mdt2ost $flavor`
8177         res2=`flvr_cnt_cli2ost $flavor`
8178         res3=`flvr_cnt_mdt2mdt $flavor`
8179         res4=`flvr_cnt_cli2mdt $flavor`
8180         res=$((res1 + res2 + res3 + res4))
8181     fi
8182
8183     echo $res
8184 }
8185
8186 wait_flavor()
8187 {
8188         local dir=$1        # from to
8189         local flavor=$2     # flavor expected
8190         local expect=${3:-$(calc_connection_cnt $dir)} # number expected
8191         local WAITFLAVOR_MAX=20 # how many retries before abort?
8192
8193         local res=0
8194         for ((i = 0; i < $WAITFLAVOR_MAX; i++)); do
8195                 echo -n "checking $dir..."
8196                 res=$(do_check_flavor $dir $flavor)
8197                 echo "found $res/$expect $flavor connections"
8198                 [ $res -ge $expect ] && return 0
8199                 sleep 4
8200         done
8201
8202         echo "Error checking $flavor of $dir: expect $expect, actual $res"
8203 #       echo "Dumping additional logs for SK debug.."
8204         do_nodes $(comma_list $(all_server_nodes)) "keyctl show"
8205         if $dump; then
8206                 gather_logs $(comma_list $(nodes_list))
8207         fi
8208         return 1
8209 }
8210
8211 restore_to_default_flavor()
8212 {
8213         local proc="mgs.MGS.live.$FSNAME"
8214
8215         echo "restoring to default flavor..."
8216
8217         local nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8218                 grep ".srpc.flavor" | wc -l)
8219
8220         # remove all existing rules if any
8221         if [ $nrule -ne 0 ]; then
8222                 echo "$nrule existing rules"
8223                 for rule in $(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8224                     grep ".srpc.flavor."); do
8225                         echo "remove rule: $rule"
8226                         spec=`echo $rule | awk -F = '{print $1}'`
8227                         do_facet mgs "$LCTL conf_param -d $spec"
8228                 done
8229         fi
8230
8231         # verify no rules left
8232         nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
8233                 grep ".srpc.flavor." | wc -l)
8234         [ $nrule -ne 0 ] && error "still $nrule rules left"
8235
8236         # wait for default flavor to be applied
8237         if $GSS_SK; then
8238                 if $SK_S2S; then
8239                         set_rule $FSNAME any any $SK_FLAVOR
8240                         wait_flavor all2all $SK_FLAVOR
8241                 else
8242                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
8243                         set_rule $FSNAME any cli2ost $SK_FLAVOR
8244                         wait_flavor cli2mdt $SK_FLAVOR
8245                         wait_flavor cli2ost $SK_FLAVOR
8246                 fi
8247                 echo "GSS_SK now at default flavor: $SK_FLAVOR"
8248         else
8249                 wait_flavor all2all null
8250         fi
8251 }
8252
8253 set_flavor_all()
8254 {
8255         local flavor=${1:-null}
8256
8257         echo "setting all flavor to $flavor"
8258
8259         # FIXME need parameter to this fn
8260         # and remove global vars
8261         local cnt_all2all=$(calc_connection_cnt all2all)
8262
8263         local res=$(do_check_flavor all2all $flavor)
8264         if [ $res -eq $cnt_all2all ]; then
8265                 echo "already have total $res $flavor connections"
8266                 return
8267         fi
8268
8269         echo "found $res $flavor out of total $cnt_all2all connections"
8270         restore_to_default_flavor
8271
8272         [[ $flavor = null ]] && return 0
8273
8274         if $GSS_SK && [ $flavor != "null" ]; then
8275                 if $SK_S2S; then
8276                         set_rule $FSNAME any any $flavor
8277                         wait_flavor all2all $flavor
8278                 else
8279                         set_rule $FSNAME any cli2mdt $flavor
8280                         set_rule $FSNAME any cli2ost $flavor
8281                         set_rule $FSNAME any mdt2ost null
8282                         set_rule $FSNAME any mdt2mdt null
8283                         wait_flavor cli2mdt $flavor
8284                         wait_flavor cli2ost $flavor
8285                 fi
8286                 echo "GSS_SK now at flavor: $flavor"
8287         else
8288                 set_rule $FSNAME any any $flavor
8289                 wait_flavor all2all $flavor
8290         fi
8291 }
8292
8293
8294 check_logdir() {
8295     local dir=$1
8296     # Checking for shared logdir
8297     if [ ! -d $dir ]; then
8298         # Not found. Create local logdir
8299         mkdir -p $dir
8300     else
8301         touch $dir/check_file.$(hostname -s)
8302     fi
8303     return 0
8304 }
8305
8306 check_write_access() {
8307         local dir=$1
8308         local list=${2:-$(comma_list $(nodes_list))}
8309         local node
8310         local file
8311
8312         for node in ${list//,/ }; do
8313                 file=$dir/check_file.$(short_nodename $node)
8314                 if [[ ! -f "$file" ]]; then
8315                         # Logdir not accessible/writable from this node.
8316                         return 1
8317                 fi
8318                 rm -f $file || return 1
8319         done
8320         return 0
8321 }
8322
8323 init_logging() {
8324         [[ -n $YAML_LOG ]] && return
8325         local save_umask=$(umask)
8326         umask 0000
8327
8328         export YAML_LOG=${LOGDIR}/results.yml
8329         mkdir -p $LOGDIR
8330         init_clients_lists
8331
8332         # If the yaml log already exists then we will just append to it
8333         if [ ! -f $YAML_LOG ]; then
8334                 if check_shared_dir $LOGDIR; then
8335                         touch $LOGDIR/shared
8336                         echo "Logging to shared log directory: $LOGDIR"
8337                 else
8338                         echo "Logging to local directory: $LOGDIR"
8339                 fi
8340
8341                 yml_nodes_file $LOGDIR >> $YAML_LOG
8342                 yml_results_file >> $YAML_LOG
8343         fi
8344
8345         umask $save_umask
8346
8347         # If modules are not yet loaded then older "lctl lustre_build_version"
8348         # will fail.  Use lctl build version instead.
8349         log "Client: $($LCTL lustre_build_version)"
8350         log "MDS: $(do_facet $SINGLEMDS $LCTL lustre_build_version 2>/dev/null||
8351                     do_facet $SINGLEMDS $LCTL --version)"
8352         log "OSS: $(do_facet ost1 $LCTL lustre_build_version 2> /dev/null ||
8353                     do_facet ost1 $LCTL --version)"
8354 }
8355
8356 log_test() {
8357     yml_log_test $1 >> $YAML_LOG
8358 }
8359
8360 log_test_status() {
8361      yml_log_test_status $@ >> $YAML_LOG
8362 }
8363
8364 log_sub_test_begin() {
8365     yml_log_sub_test_begin "$@" >> $YAML_LOG
8366 }
8367
8368 log_sub_test_end() {
8369     yml_log_sub_test_end "$@" >> $YAML_LOG
8370 }
8371
8372 run_llverdev()
8373 {
8374         local dev=$1
8375         local llverdev_opts=$2
8376         local devname=$(basename $1)
8377         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
8378         # loop devices aren't in /proc/partitions
8379         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
8380
8381         size=$(($size / 1024 / 1024)) # Gb
8382
8383         local partial_arg=""
8384         # Run in partial (fast) mode if the size
8385         # of a partition > 1 GB
8386         [ $size -gt 1 ] && partial_arg="-p"
8387
8388         llverdev --force $partial_arg $llverdev_opts $dev
8389 }
8390
8391 run_llverfs()
8392 {
8393         local dir=$1
8394         local llverfs_opts=$2
8395         local use_partial_arg=$3
8396         local partial_arg=""
8397         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
8398
8399         # Run in partial (fast) mode if the size
8400         # of a partition > 1 GB
8401         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
8402
8403         llverfs $partial_arg $llverfs_opts $dir
8404 }
8405
8406 #Remove objects from OST
8407 remove_ost_objects() {
8408         local facet=$1
8409         local ostdev=$2
8410         local group=$3
8411         shift 3
8412         local objids="$@"
8413         local mntpt=$(facet_mntpt $facet)
8414         local opts=$OST_MOUNT_OPTS
8415         local i
8416         local rc
8417
8418         echo "removing objects from $ostdev on $facet: $objids"
8419         if ! test -b $ostdev; then
8420                 opts=$(csa_add "$opts" -o loop)
8421         fi
8422         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
8423                 return $?
8424         rc=0
8425         for i in $objids; do
8426                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
8427         done
8428         umount -f $mntpt || return $?
8429         return $rc
8430 }
8431
8432 #Remove files from MDT
8433 remove_mdt_files() {
8434         local facet=$1
8435         local mdtdev=$2
8436         shift 2
8437         local files="$@"
8438         local mntpt=$(facet_mntpt $facet)
8439         local opts=$MDS_MOUNT_OPTS
8440
8441         echo "removing files from $mdtdev on $facet: $files"
8442         if [ $(facet_fstype $facet) == ldiskfs ] &&
8443            ! do_facet $facet test -b $mdtdev; then
8444                 opts=$(csa_add "$opts" -o loop)
8445         fi
8446         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8447                 return $?
8448         rc=0
8449         for f in $files; do
8450                 rm $mntpt/ROOT/$f || { rc=$?; break; }
8451         done
8452         umount -f $mntpt || return $?
8453         return $rc
8454 }
8455
8456 duplicate_mdt_files() {
8457         local facet=$1
8458         local mdtdev=$2
8459         shift 2
8460         local files="$@"
8461         local mntpt=$(facet_mntpt $facet)
8462         local opts=$MDS_MOUNT_OPTS
8463
8464         echo "duplicating files on $mdtdev on $facet: $files"
8465         mkdir -p $mntpt || return $?
8466         if [ $(facet_fstype $facet) == ldiskfs ] &&
8467            ! do_facet $facet test -b $mdtdev; then
8468                 opts=$(csa_add "$opts" -o loop)
8469         fi
8470         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
8471                 return $?
8472
8473     do_umount() {
8474         trap 0
8475         popd > /dev/null
8476         rm $tmp
8477         umount -f $mntpt
8478     }
8479     trap do_umount EXIT
8480
8481     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
8482     pushd $mntpt/ROOT > /dev/null || return $?
8483     rc=0
8484     for f in $files; do
8485         touch $f.bad || return $?
8486         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
8487         rc=${PIPESTATUS[0]}
8488         [ $rc -eq 0 ] || return $rc
8489         setfattr --restore $tmp || return $?
8490     done
8491     do_umount
8492 }
8493
8494 run_sgpdd () {
8495     local devs=${1//,/ }
8496     shift
8497     local params=$@
8498     local rslt=$TMP/sgpdd_survey
8499
8500     # sgpdd-survey cleanups ${rslt}.* files
8501
8502     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
8503     echo + $cmd
8504     eval $cmd
8505     cat ${rslt}.detail
8506 }
8507
8508 # returns the canonical name for an ldiskfs device
8509 ldiskfs_canon() {
8510         local dev="$1"
8511         local facet="$2"
8512
8513         do_facet $facet "dv=\\\$($LCTL get_param -n $dev);
8514                          if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
8515                                 echo dm-\\\${foo##*:};
8516                          else
8517                                 name=\\\$(basename \\\$dv);
8518                                 if [[ \\\$name = *flakey* ]]; then
8519                                         name=\\\$(lsblk -o NAME,KNAME |
8520                                                 awk /\\\$name/'{print \\\$NF}');
8521                                 fi;
8522                                 echo \\\$name;
8523                          fi;"
8524 }
8525
8526 is_sanity_benchmark() {
8527     local benchmarks="dbench bonnie iozone fsx"
8528     local suite=$1
8529     for b in $benchmarks; do
8530         if [ "$b" == "$suite" ]; then
8531             return 0
8532         fi
8533     done
8534     return 1
8535 }
8536
8537 min_ost_size () {
8538         $LFS df | grep OST | awk '{print $4}' | sort -un | head -1
8539 }
8540
8541 #
8542 # Get the available size (KB) of a given obd target.
8543 #
8544 get_obd_size() {
8545         local facet=$1
8546         local obd=$2
8547         local size
8548
8549         [[ $facet != client ]] || return 0
8550
8551         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
8552         echo -n $size
8553 }
8554
8555 #
8556 # Get the page size (bytes) on a given facet node.
8557 # The local client page_size is directly available in PAGE_SIZE.
8558 #
8559 get_page_size() {
8560         local facet=$1
8561         local page_size=$(getconf PAGE_SIZE 2>/dev/null)
8562
8563         [ -z "$CLIENTONLY" -a "$facet" != "client" ] &&
8564                 page_size=$(do_facet $facet getconf PAGE_SIZE)
8565         echo -n ${page_size:-4096}
8566 }
8567
8568 #
8569 # Get the block count of the filesystem.
8570 #
8571 get_block_count() {
8572         local facet=$1
8573         local device=$2
8574         local count
8575
8576         [ -z "$CLIENTONLY" ] && count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8577                 awk '/^Block count:/ {print $3}')
8578         echo -n ${count:-0}
8579 }
8580
8581 # Get the block size of the filesystem.
8582 get_block_size() {
8583         local facet=$1
8584         local device=$2
8585         local size
8586
8587         [ -z "$CLIENTONLY" ] && size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8588                 awk '/^Block size:/ {print $3}')
8589         echo -n ${size:-0}
8590 }
8591
8592 # Check whether the "ea_inode" feature is enabled or not, to allow
8593 # ldiskfs xattrs over one block in size.  Allow both the historical
8594 # Lustre feature name (large_xattr) and the upstream name (ea_inode).
8595 large_xattr_enabled() {
8596         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 1
8597
8598         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8599
8600         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
8601                 grep -E -q '(ea_inode|large_xattr)'"
8602         return ${PIPESTATUS[0]}
8603 }
8604
8605 # Get the maximum xattr size supported by the filesystem.
8606 max_xattr_size() {
8607         $LCTL get_param -n llite.*.max_easize
8608 }
8609
8610 # Dump the value of the named xattr from a file.
8611 get_xattr_value() {
8612     local xattr_name=$1
8613     local file=$2
8614
8615     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
8616 }
8617
8618 # Generate a string with size of $size bytes.
8619 generate_string() {
8620     local size=${1:-1024} # in bytes
8621
8622     echo "$(head -c $size < /dev/zero | tr '\0' y)"
8623 }
8624
8625 reformat_external_journal() {
8626         local facet=$1
8627         local var
8628
8629         var=${facet}_JRN
8630         if [ -n "${!var}" ]; then
8631                 local rcmd="do_facet $facet"
8632
8633                 echo "reformat external journal on $facet:${!var}"
8634                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
8635         fi
8636 }
8637
8638 # MDT file-level backup/restore
8639 mds_backup_restore() {
8640         local facet=$1
8641         local igif=$2
8642         local devname=$(mdsdevname $(facet_number $facet))
8643         local mntpt=$(facet_mntpt brpt)
8644         local rcmd="do_facet $facet"
8645         local metaea=${TMP}/backup_restore.ea
8646         local metadata=${TMP}/backup_restore.tgz
8647         local opts=${MDS_MOUNT_FS_OPTS}
8648         local svc=${facet}_svc
8649
8650         if ! ${rcmd} test -b ${devname}; then
8651                 opts=$(csa_add "$opts" -o loop)
8652         fi
8653
8654         echo "file-level backup/restore on $facet:${devname}"
8655
8656         # step 1: build mount point
8657         ${rcmd} mkdir -p $mntpt
8658         # step 2: cleanup old backup
8659         ${rcmd} rm -f $metaea $metadata
8660         # step 3: mount dev
8661         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8662         if [ ! -z $igif ]; then
8663                 # step 3.5: rm .lustre
8664                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
8665         fi
8666         # step 4: backup metaea
8667         echo "backup EA"
8668         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
8669                 return 2
8670         # step 5: backup metadata
8671         echo "backup data"
8672         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
8673         # step 6: umount
8674         ${rcmd} $UMOUNT $mntpt || return 4
8675         # step 8: reformat dev
8676         echo "reformat new device"
8677         format_mdt $(facet_number $facet)
8678         # step 9: mount dev
8679         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
8680         # step 10: restore metadata
8681         echo "restore data"
8682         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
8683         # step 11: restore metaea
8684         echo "restore EA"
8685         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
8686         # step 12: remove recovery logs
8687         echo "remove recovery logs"
8688         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
8689         # step 13: umount dev
8690         ${rcmd} $UMOUNT $mntpt || return 10
8691         # step 14: cleanup tmp backup
8692         ${rcmd} rm -f $metaea $metadata
8693         # step 15: reset device label - it's not virgin on
8694         ${rcmd} e2label $devname ${!svc}
8695 }
8696
8697 # remove OI files
8698 mds_remove_ois() {
8699         local facet=$1
8700         local idx=$2
8701         local devname=$(mdsdevname $(facet_number $facet))
8702         local mntpt=$(facet_mntpt brpt)
8703         local rcmd="do_facet $facet"
8704         local opts=${MDS_MOUNT_FS_OPTS}
8705
8706         if ! ${rcmd} test -b ${devname}; then
8707                 opts=$(csa_add "$opts" -o loop)
8708         fi
8709
8710         echo "removing OI files on $facet: idx=${idx}"
8711
8712         # step 1: build mount point
8713         ${rcmd} mkdir -p $mntpt
8714         # step 2: mount dev
8715         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8716         if [ -z $idx ]; then
8717                 # step 3: remove all OI files
8718                 ${rcmd} rm -fv $mntpt/oi.16*
8719         elif [ $idx -lt 2 ]; then
8720                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
8721         else
8722                 local i
8723
8724                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
8725                 for ((i=${idx}; i<64; i=$((i * idx)))); do
8726                         ${rcmd} rm -fv $mntpt/oi.16.${i}
8727                 done
8728         fi
8729         # step 4: umount
8730         ${rcmd} $UMOUNT $mntpt || return 2
8731         # OI files will be recreated when mounted as lustre next time.
8732 }
8733
8734 # generate maloo upload-able log file name
8735 # \param logname specify unique part of file name
8736 generate_logname() {
8737         local logname=${1:-"default_logname"}
8738
8739         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
8740 }
8741
8742 # make directory on different MDTs
8743 test_mkdir() {
8744         local path
8745         local p_option
8746         local hash_type
8747         local hash_name=("all_char" "fnv_1a_64" "crush")
8748         local dirstripe_count=${DIRSTRIPE_COUNT:-"2"}
8749         local dirstripe_index=${DIRSTRIPE_INDEX:-$((base % $MDSCOUNT))}
8750         local OPTIND=1
8751
8752         while getopts "c:H:i:p" opt; do
8753                 case $opt in
8754                         c) dirstripe_count=$OPTARG;;
8755                         H) hash_type=$OPTARG;;
8756                         i) dirstripe_index=$OPTARG;;
8757                         p) p_option="-p";;
8758                         \?) error "only support -c -H -i -p";;
8759                 esac
8760         done
8761
8762         shift $((OPTIND - 1))
8763         [ $# -eq 1 ] || error "Only creating single directory is supported"
8764         path="$*"
8765
8766         if [ "$p_option" == "-p" ]; then
8767                 local parent=$(dirname $path)
8768
8769                 [ -d $path ] && return 0
8770                 if [ ! -d ${parent} ]; then
8771                         mkdir -p ${parent} ||
8772                                 error "mkdir parent '$parent' failed"
8773                 fi
8774         fi
8775
8776         if [ $MDSCOUNT -le 1 ]; then
8777                 mkdir $path || error "mkdir '$path' failed"
8778         else
8779                 local mdt_index
8780
8781                 if [ $dirstripe_index -eq -1 ]; then
8782                         mdt_index=$((base % MDSCOUNT))
8783                 else
8784                         mdt_index=$dirstripe_index
8785                 fi
8786
8787                 # randomly choose hash type
8788                 [ -z "$hash_type" ] &&
8789                         hash_type=${hash_name[$((RANDOM % ${#hash_name[@]}))]}
8790
8791                 if (($MDS1_VERSION >= $(version_code 2.8.0))); then
8792                         if [ $dirstripe_count -eq -1 ]; then
8793                                 dirstripe_count=$((RANDOM % MDSCOUNT + 1))
8794                         fi
8795                 else
8796                         dirstripe_count=1
8797                 fi
8798
8799                 echo "striped dir -i$mdt_index -c$dirstripe_count -H $hash_type $path"
8800                 $LFS mkdir -i$mdt_index -c$dirstripe_count -H $hash_type $path ||
8801                         error "mkdir -i $mdt_index -c$dirstripe_count -H $hash_type $path failed"
8802         fi
8803 }
8804
8805 # free_fd: find the smallest and not in use file descriptor [above @last_fd]
8806 #
8807 # If called many times, passing @last_fd will avoid repeated searching
8808 # already-open FDs repeatedly if we know they are still in use.
8809 #
8810 # usage: free_fd [last_fd]
8811 free_fd()
8812 {
8813         local max_fd=$(ulimit -n)
8814         local fd=$((${1:-2} + 1))
8815
8816         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
8817                 ((++fd))
8818         done
8819         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
8820         echo $fd
8821 }
8822
8823 check_mount_and_prep()
8824 {
8825         is_mounted $MOUNT || setupall
8826
8827         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
8828         mkdir $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
8829         for idx in $(seq $MDSCOUNT); do
8830                 local name="MDT$(printf '%04x' $((idx - 1)))"
8831                 rm -rf $MOUNT/.lustre/lost+found/$name/*
8832         done
8833 }
8834
8835 # calcule how many ost-objects to be created.
8836 precreated_ost_obj_count()
8837 {
8838         local mdt_idx=$1
8839         local ost_idx=$2
8840         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
8841         local ost_name="OST$(printf '%04x' $ost_idx)"
8842         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
8843         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8844                         osp.$proc_path.prealloc_last_id)
8845         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8846                         osp.$proc_path.prealloc_next_id)
8847         echo $((last_id - next_id + 1))
8848 }
8849
8850 check_file_in_pool()
8851 {
8852         local file=$1
8853         local pool=$2
8854         local tlist="$3"
8855         local res=$($LFS getstripe $file | grep 0x | cut -f2)
8856         for i in $res
8857         do
8858                 for t in $tlist ; do
8859                         [ "$i" -eq "$t" ] && continue 2
8860                 done
8861
8862                 echo "pool list: $tlist"
8863                 echo "striping: $res"
8864                 error_noexit "$file not allocated in $pool"
8865                 return 1
8866         done
8867         return 0
8868 }
8869
8870 pool_add() {
8871         echo "Creating new pool"
8872         local pool=$1
8873
8874         create_pool $FSNAME.$pool ||
8875                 { error_noexit "No pool created, result code $?"; return 1; }
8876         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
8877                 { error_noexit "$pool not in lfs pool_list"; return 2; }
8878 }
8879
8880 pool_add_targets() {
8881         echo "Adding targets to pool"
8882         local pool=$1
8883         local first=$2
8884         local last=$3
8885         local step=${4:-1}
8886
8887         if [ -z $last ]; then
8888                 local list=$first
8889         else
8890                 local list=$(seq $first $step $last)
8891         fi
8892
8893         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8894         do_facet mgs $LCTL pool_add \
8895                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8896
8897         # wait for OSTs to be added to the pool
8898         for mds_id in $(seq $MDSCOUNT); do
8899                 local mdt_id=$((mds_id-1))
8900                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8901                 wait_update_facet mds$mds_id \
8902                         "lctl get_param -n lod.$lodname.pools.$pool |
8903                                 sort -u | tr '\n' ' ' " "$t" || {
8904                         error_noexit "mds$mds_id: Add to pool failed"
8905                         return 3
8906                 }
8907         done
8908         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8909                         | sort -u | tr '\n' ' ' " "$t" || {
8910                 error_noexit "Add to pool failed"
8911                 return 1
8912         }
8913         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8914         local addcount=$(((last - first) / step + 1))
8915         [ $lfscount -eq $addcount ] || {
8916                 error_noexit "lfs pool_list bad ost count" \
8917                                                 "$lfscount != $addcount"
8918                 return 2
8919         }
8920 }
8921
8922 pool_set_dir() {
8923         local pool=$1
8924         local tdir=$2
8925         echo "Setting pool on directory $tdir"
8926
8927         $LFS setstripe -c 2 -p $pool $tdir && return 0
8928
8929         error_noexit "Cannot set pool $pool to $tdir"
8930         return 1
8931 }
8932
8933 pool_check_dir() {
8934         local pool=$1
8935         local tdir=$2
8936         echo "Checking pool on directory $tdir"
8937
8938         local res=$($LFS getstripe --pool $tdir | sed "s/\s*$//")
8939         [ "$res" = "$pool" ] && return 0
8940
8941         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8942         return 1
8943 }
8944
8945 pool_dir_rel_path() {
8946         echo "Testing relative path works well"
8947         local pool=$1
8948         local tdir=$2
8949         local root=$3
8950
8951         mkdir -p $root/$tdir/$tdir
8952         cd $root/$tdir
8953         pool_set_dir $pool $tdir          || return 1
8954         pool_set_dir $pool ./$tdir        || return 2
8955         pool_set_dir $pool ../$tdir       || return 3
8956         pool_set_dir $pool ../$tdir/$tdir || return 4
8957         rm -rf $tdir; cd - > /dev/null
8958 }
8959
8960 pool_alloc_files() {
8961         echo "Checking files allocation from directory pool"
8962         local pool=$1
8963         local tdir=$2
8964         local count=$3
8965         local tlist="$4"
8966
8967         local failed=0
8968         for i in $(seq -w 1 $count)
8969         do
8970                 local file=$tdir/file-$i
8971                 touch $file
8972                 check_file_in_pool $file $pool "$tlist" || \
8973                         failed=$((failed + 1))
8974         done
8975         [ "$failed" = 0 ] && return 0
8976
8977         error_noexit "$failed files not allocated in $pool"
8978         return 1
8979 }
8980
8981 pool_create_files() {
8982         echo "Creating files in pool"
8983         local pool=$1
8984         local tdir=$2
8985         local count=$3
8986         local tlist="$4"
8987
8988         mkdir -p $tdir
8989         local failed=0
8990         for i in $(seq -w 1 $count)
8991         do
8992                 local file=$tdir/spoo-$i
8993                 $LFS setstripe -p $pool $file
8994                 check_file_in_pool $file $pool "$tlist" || \
8995                         failed=$((failed + 1))
8996         done
8997         [ "$failed" = 0 ] && return 0
8998
8999         error_noexit "$failed files not allocated in $pool"
9000         return 1
9001 }
9002
9003 pool_lfs_df() {
9004         echo "Checking 'lfs df' output"
9005         local pool=$1
9006
9007         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9008                         tr '\n' ' ')
9009         local res=$($LFS df --pool $FSNAME.$pool |
9010                         awk '{print $1}' |
9011                         grep "$FSNAME-OST" |
9012                         tr '\n' ' ')
9013         [ "$res" = "$t" ] && return 0
9014
9015         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9016         return 1
9017 }
9018
9019 pool_file_rel_path() {
9020         echo "Creating files in a pool with relative pathname"
9021         local pool=$1
9022         local tdir=$2
9023
9024         mkdir -p $tdir ||
9025                 { error_noexit "unable to create $tdir"; return 1 ; }
9026         local file="/..$tdir/$tfile-1"
9027         $LFS setstripe -p $pool $file ||
9028                 { error_noexit "unable to create $file" ; return 2 ; }
9029
9030         cd $tdir
9031         $LFS setstripe -p $pool $tfile-2 || {
9032                 error_noexit "unable to create $tfile-2 in $tdir"
9033                 return 3
9034         }
9035 }
9036
9037 pool_remove_first_target() {
9038         echo "Removing first target from a pool"
9039         local pool=$1
9040
9041         local pname="lov.$FSNAME-*.pools.$pool"
9042         local t=$($LCTL get_param -n $pname | head -1)
9043         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9044         for mds_id in $(seq $MDSCOUNT); do
9045                 local mdt_id=$((mds_id-1))
9046                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9047                 wait_update_facet mds$mds_id \
9048                         "lctl get_param -n lod.$lodname.pools.$pool |
9049                                 grep $t" "" || {
9050                         error_noexit "mds$mds_id: $t not removed from" \
9051                         "$FSNAME.$pool"
9052                         return 2
9053                 }
9054         done
9055         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9056                 error_noexit "$t not removed from $FSNAME.$pool"
9057                 return 1
9058         }
9059 }
9060
9061 pool_remove_all_targets() {
9062         echo "Removing all targets from pool"
9063         local pool=$1
9064         local file=$2
9065         local pname="lov.$FSNAME-*.pools.$pool"
9066         for t in $($LCTL get_param -n $pname | sort -u)
9067         do
9068                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9069         done
9070         for mds_id in $(seq $MDSCOUNT); do
9071                 local mdt_id=$((mds_id-1))
9072                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
9073                 wait_update_facet mds$mds_id "lctl get_param -n \
9074                         lod.$lodname.pools.$pool" "" || {
9075                         error_noexit "mds$mds_id: Pool $pool not drained"
9076                         return 4
9077                 }
9078         done
9079         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9080                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9081                 return 1
9082         }
9083         # striping on an empty/nonexistant pool should fall back
9084         # to "pool of everything"
9085         touch $file || {
9086                 error_noexit "failed to use fallback striping for empty pool"
9087                 return 2
9088         }
9089         # setstripe on an empty pool should fail
9090         $LFS setstripe -p $pool $file 2>/dev/null && {
9091                 error_noexit "expected failure when creating file" \
9092                                                         "with empty pool"
9093                 return 3
9094         }
9095         return 0
9096 }
9097
9098 pool_remove() {
9099         echo "Destroying pool"
9100         local pool=$1
9101         local file=$2
9102
9103         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9104
9105         sleep 2
9106         # striping on an empty/nonexistant pool should fall back
9107         # to "pool of everything"
9108         touch $file || {
9109                 error_noexit "failed to use fallback striping for missing pool"
9110                 return 1
9111         }
9112         # setstripe on an empty pool should fail
9113         $LFS setstripe -p $pool $file 2>/dev/null && {
9114                 error_noexit "expected failure when creating file" \
9115                                                         "with missing pool"
9116                 return 2
9117         }
9118
9119         # get param should return err once pool is gone
9120         if wait_update $HOSTNAME "lctl get_param -n \
9121                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9122         then
9123                 remove_pool_from_list $FSNAME.$pool
9124                 return 0
9125         fi
9126         error_noexit "Pool $FSNAME.$pool is not destroyed"
9127         return 3
9128 }
9129
9130 # Get and check the actual stripe count of one file.
9131 # Usage: check_stripe_count <file> <expected_stripe_count>
9132 check_stripe_count() {
9133         local file=$1
9134         local expected=$2
9135         local actual
9136
9137         [[ -z "$file" || -z "$expected" ]] &&
9138                 error "check_stripe_count: invalid argument"
9139
9140         local cmd="$LFS getstripe -c $file"
9141         actual=$($cmd) || error "$cmd failed"
9142         actual=${actual%% *}
9143
9144         if [[ $actual -ne $expected ]]; then
9145                 [[ $expected -eq -1 ]] || { $LFS getstripe $file;
9146                         error "$cmd not expected ($expected): found $actual"; }
9147                 [[ $actual -eq $OSTCOUNT ]] || { $LFS getstripe $file;
9148                         error "$cmd not OST count ($OSTCOUNT): found $actual"; }
9149         fi
9150 }
9151
9152 # Get and check the actual list of OST indices on one file.
9153 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
9154 check_obdidx() {
9155         local file=$1
9156         local expected=$2
9157         local obdidx
9158
9159         [[ -z "$file" || -z "$expected" ]] &&
9160                 error "check_obdidx: invalid argument!"
9161
9162         obdidx=$(comma_list $($LFS getstripe $file | grep -A $OSTCOUNT obdidx |
9163                               grep -v obdidx | awk '{print $1}' | xargs))
9164
9165         [[ $obdidx = $expected ]] ||
9166                 error "list of OST indices on $file is $obdidx," \
9167                       "should be $expected"
9168 }
9169
9170 # Get and check the actual OST index of the first stripe on one file.
9171 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
9172 check_start_ost_idx() {
9173         local file=$1
9174         local expected=$2
9175         local start_ost_idx
9176
9177         [[ -z "$file" || -z "$expected" ]] &&
9178                 error "check_start_ost_idx: invalid argument!"
9179
9180         start_ost_idx=$($LFS getstripe $file | grep -A 1 obdidx |
9181                          grep -v obdidx | awk '{print $1}')
9182
9183         [[ $start_ost_idx = $expected ]] ||
9184                 error "OST index of the first stripe on $file is" \
9185                       "$start_ost_idx, should be $expected"
9186 }
9187
9188 killall_process () {
9189         local clients=${1:-$(hostname)}
9190         local name=$2
9191         local signal=$3
9192         local rc=0
9193
9194         do_nodes $clients "killall $signal $name"
9195 }
9196
9197 lsnapshot_create()
9198 {
9199         do_facet mgs "$LCTL snapshot_create -F $FSNAME $*"
9200 }
9201
9202 lsnapshot_destroy()
9203 {
9204         do_facet mgs "$LCTL snapshot_destroy -F $FSNAME $*"
9205 }
9206
9207 lsnapshot_modify()
9208 {
9209         do_facet mgs "$LCTL snapshot_modify -F $FSNAME $*"
9210 }
9211
9212 lsnapshot_list()
9213 {
9214         do_facet mgs "$LCTL snapshot_list -F $FSNAME $*"
9215 }
9216
9217 lsnapshot_mount()
9218 {
9219         do_facet mgs "$LCTL snapshot_mount -F $FSNAME $*"
9220 }
9221
9222 lsnapshot_umount()
9223 {
9224         do_facet mgs "$LCTL snapshot_umount -F $FSNAME $*"
9225 }
9226
9227 lss_err()
9228 {
9229         local msg=$1
9230
9231         do_facet mgs "cat $LSNAPSHOT_LOG"
9232         error $msg
9233 }
9234
9235 lss_cleanup()
9236 {
9237         echo "Cleaning test environment ..."
9238
9239         # Every lsnapshot command takes exclusive lock with others,
9240         # so can NOT destroy the snapshot during list with 'xargs'.
9241         while true; do
9242                 local ssname=$(lsnapshot_list | grep snapshot_name |
9243                         grep lss_ | awk '{ print $2 }' | head -n 1)
9244                 [ -z "$ssname" ] && break
9245
9246                 lsnapshot_destroy -n $ssname -f ||
9247                         lss_err "Fail to destroy $ssname by force"
9248         done
9249 }
9250
9251 lss_gen_conf_one()
9252 {
9253         local facet=$1
9254         local role=$2
9255         local idx=$3
9256
9257         local host=$(facet_active_host $facet)
9258         local dir=$(dirname $(facet_vdevice $facet))
9259         local pool=$(zpool_name $facet)
9260         local lfsname=$(zfs_local_fsname $facet)
9261         local label=${FSNAME}-${role}$(printf '%04x' $idx)
9262
9263         do_facet mgs \
9264                 "echo '$host - $label zfs:${dir}/${pool}/${lfsname} - -' >> \
9265                 $LSNAPSHOT_CONF"
9266 }
9267
9268 lss_gen_conf()
9269 {
9270         do_facet mgs "rm -f $LSNAPSHOT_CONF"
9271         echo "Generating $LSNAPSHOT_CONF on MGS ..."
9272
9273         if ! combined_mgs_mds ; then
9274                 [ $(facet_fstype mgs) != zfs ] &&
9275                         skip "Lustre snapshot 1 only works for ZFS backend"
9276
9277                 local host=$(facet_active_host mgs)
9278                 local dir=$(dirname $(facet_vdevice mgs))
9279                 local pool=$(zpool_name mgs)
9280                 local lfsname=$(zfs_local_fsname mgs)
9281
9282                 do_facet mgs \
9283                         "echo '$host - MGS zfs:${dir}/${pool}/${lfsname} - -' \
9284                         >> $LSNAPSHOT_CONF" || lss_err "generate lss conf (mgs)"
9285         fi
9286
9287         for num in `seq $MDSCOUNT`; do
9288                 [ $(facet_fstype mds$num) != zfs ] &&
9289                         skip "Lustre snapshot 1 only works for ZFS backend"
9290
9291                 lss_gen_conf_one mds$num MDT $((num - 1)) ||
9292                         lss_err "generate lss conf (mds$num)"
9293         done
9294
9295         for num in `seq $OSTCOUNT`; do
9296                 [ $(facet_fstype ost$num) != zfs ] &&
9297                         skip "Lustre snapshot 1 only works for ZFS backend"
9298
9299                 lss_gen_conf_one ost$num OST $((num - 1)) ||
9300                         lss_err "generate lss conf (ost$num)"
9301         done
9302
9303         do_facet mgs "cat $LSNAPSHOT_CONF"
9304 }
9305
9306 # Parse 'lfs getstripe -d <path_with_dir_name>' for non-composite dir
9307 parse_plain_dir_param()
9308 {
9309         local invalues=($1)
9310         local param=""
9311
9312         if [[ ${invalues[0]} =~ "stripe_count:" ]]; then
9313                 param="-c ${invalues[1]}"
9314         fi
9315         if [[ ${invalues[2]} =~ "stripe_size:" ]]; then
9316                 param="$param -S ${invalues[3]}"
9317         fi
9318         if [[ ${invalues[4]} =~ "pattern:" ]]; then
9319                 if [[ ${invalues[5]} =~ "stripe_offset:" ]]; then
9320                         param="$param -i ${invalues[6]}"
9321                 else
9322                         param="$param -L ${invalues[5]} -i ${invalues[7]}"
9323                 fi
9324         elif [[ ${invalues[4]} =~ "stripe_offset:" ]]; then
9325                 param="$param -i ${invalues[5]}"
9326         fi
9327         echo "$param"
9328 }
9329
9330 parse_plain_param()
9331 {
9332         local line=$1
9333         local val=$(awk '{print $2}' <<< $line)
9334
9335         if [[ $line =~ ^"lmm_stripe_count:" ]]; then
9336                 echo "-c $val"
9337         elif [[ $line =~ ^"lmm_stripe_size:" ]]; then
9338                 echo "-S $val"
9339         elif [[ $line =~ ^"lmm_stripe_offset:" ]]; then
9340                 echo "-i $val"
9341         elif [[ $line =~ ^"lmm_pattern:" ]]; then
9342                 echo "-L $val"
9343         fi
9344 }
9345
9346 parse_layout_param()
9347 {
9348         local mode=""
9349         local val=""
9350         local param=""
9351
9352         while read line; do
9353                 if [[ ! -z $line ]]; then
9354                         if [[ -z $mode ]]; then
9355                                 if [[ $line =~ ^"stripe_count:" ]]; then
9356                                         mode="plain_dir"
9357                                 elif [[ $line =~ ^"lmm_stripe_count:" ]]; then
9358                                         mode="plain_file"
9359                                 elif [[ $line =~ ^"lcm_layout_gen:" ]]; then
9360                                         mode="pfl"
9361                                 fi
9362                         fi
9363
9364                         if [[ $mode = "plain_dir" ]]; then
9365                                 param=$(parse_plain_dir_param "$line")
9366                         elif [[ $mode = "plain_file" ]]; then
9367                                 val=$(parse_plain_param "$line")
9368                                 [[ ! -z $val ]] && param="$param $val"
9369                         elif [[ $mode = "pfl" ]]; then
9370                                 val=$(echo $line | awk '{print $2}')
9371                                 if [[ $line =~ ^"lcme_extent.e_end:" ]]; then
9372                                         if [[ $val = "EOF" ]]; then
9373                                                 param="$param -E -1"
9374                                         else
9375                                                 param="$param -E $val"
9376                                         fi
9377                                 elif [[ $line =~ ^"stripe_count:" ]]; then
9378                                         # pfl dir
9379                                         val=$(parse_plain_dir_param "$line")
9380                                         param="$param $val"
9381                                 else
9382                                         #pfl file
9383                                         val=$(parse_plain_param "$line")
9384                                         [[ ! -z $val ]] && param="$param $val"
9385                                 fi
9386                         fi
9387                 fi
9388         done
9389         echo "$param"
9390 }
9391
9392 get_layout_param()
9393 {
9394         local param=$($LFS getstripe -d $1 | parse_layout_param)
9395         echo "$param"
9396 }
9397
9398 lfsck_verify_pfid()
9399 {
9400         local f
9401         local rc=0
9402
9403         # Cancel locks before setting lfsck_verify_pfid so that errors are more
9404         # controllable
9405         cancel_lru_locks mdc
9406         cancel_lru_locks osc
9407
9408         # make sure PFID is set correctly for files
9409         do_nodes $(comma_list $(osts_nodes)) \
9410                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1"
9411
9412         for f in "$@"; do
9413                 cat $f &> /dev/nullA ||
9414                         { rc=$?; echo "verify $f failed"; break; }
9415         done
9416
9417         do_nodes $(comma_list $(osts_nodes)) \
9418                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=0"
9419         return $rc
9420 }
9421
9422 # check that clients "oscs" was evicted after "before"
9423 check_clients_evicted() {
9424         local before=$1
9425         shift
9426         local oscs=${@}
9427         local osc
9428         local rc=0
9429
9430         for osc in $oscs; do
9431                 ((rc++))
9432                 echo "Check state for $osc"
9433                 local evicted=$(do_facet client $LCTL get_param osc.$osc.state |
9434                         tail -n 3 | awk -F"[ [,]" \
9435                         '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
9436                 if (($? == 0)) && (($evicted > $before)); then
9437                         echo "$osc is evicted at $evicted"
9438                         ((rc--))
9439                 fi
9440         done
9441
9442         [ $rc -eq 0 ] || error "client not evicted from OST"
9443 }
9444
9445 # check that clients OSCS current_state is FULL
9446 check_clients_full() {
9447         local timeout=$1
9448         shift
9449         local oscs=${@}
9450
9451         for osc in $oscs; do
9452                 wait_update_facet client \
9453                         "lctl get_param -n osc.$osc.state |
9454                         grep 'current_state: FULL'" \
9455                         "current_state: FULL" $timeout
9456                 [ $? -eq 0 ] || error "$osc state is not FULL"
9457         done
9458 }
9459
9460 #Changelogs
9461 __changelog_deregister() {
9462         local facet=$1
9463         local mdt="$(facet_svc $facet)"
9464         local cl_user=$2
9465         local rc=0
9466
9467         # skip cleanup if no user registered for this MDT
9468         [ -z "$cl_user" ] && echo "$mdt: no changelog user" && return 0
9469         # user is no longer registered, skip cleanup
9470         changelog_users "$facet" | grep -q "$cl_user" ||
9471                 { echo "$mdt: changelog user '$cl_user' not found"; return 0; }
9472
9473         # From this point, if any operation fails, it is an error
9474         __changelog_clear $facet $cl_user 0 ||
9475                 error_noexit "$mdt: changelog_clear $cl_user 0 fail: $rc"
9476         do_facet $facet $LCTL --device $mdt changelog_deregister $cl_user ||
9477                 error_noexit "$mdt: changelog_deregister '$cl_user' fail: $rc"
9478 }
9479
9480 declare -Ax CL_USERS
9481 changelog_register() {
9482         for M in $(seq $MDSCOUNT); do
9483                 local facet=mds$M
9484                 local mdt="$(facet_svc $facet)"
9485                 local cl_mask
9486
9487                 cl_mask=$(do_facet $facet $LCTL get_param \
9488                              mdd.${mdt}.changelog_mask -n)
9489                 stack_trap "do_facet $facet $LCTL \
9490                         set_param mdd.$mdt.changelog_mask=\'$cl_mask\' -n" EXIT
9491                 do_facet $facet $LCTL set_param mdd.$mdt.changelog_mask=+hsm ||
9492                         error "$mdt: changelog_mask=+hsm failed: $?"
9493
9494                 local cl_user
9495                 cl_user=$(do_facet $facet \
9496                                   $LCTL --device $mdt changelog_register -n) ||
9497                         error "$mdt: register changelog user failed: $?"
9498                 stack_trap "__changelog_deregister $facet $cl_user" EXIT
9499
9500                 stack_trap "CL_USERS[$facet]='${CL_USERS[$facet]}'" EXIT
9501                 # Bash does not support nested arrays, but the format of a
9502                 # cl_user is constrained enough to use whitespaces as separators
9503                 CL_USERS[$facet]+="$cl_user "
9504         done
9505         echo "Registered $MDSCOUNT changelog users: '${CL_USERS[@]% }'"
9506 }
9507
9508 changelog_deregister() {
9509         local cl_user
9510         # bash assoc arrays do not guarantee to list keys in created order
9511         # so reorder to get same order than in changelog_register()
9512         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9513                           tr "\n" " ")
9514
9515         for facet in $cl_facets; do
9516                 for cl_user in ${CL_USERS[$facet]}; do
9517                         __changelog_deregister $facet $cl_user || return $?
9518                 done
9519                 unset CL_USERS[$facet]
9520         done
9521 }
9522
9523 changelog_users() {
9524         local facet=$1
9525         local service=$(facet_svc $facet)
9526
9527         do_facet $facet $LCTL get_param -n mdd.$service.changelog_users
9528 }
9529
9530 changelog_user_rec() {
9531         local facet=$1
9532         local cl_user=$2
9533         local service=$(facet_svc $facet)
9534
9535         changelog_users $facet | awk '$1 == "'$cl_user'" { print $2 }'
9536 }
9537
9538 changelog_chmask() {
9539         local mask=$1
9540
9541         do_nodes $(comma_list $(mdts_nodes)) \
9542                 $LCTL set_param mdd.*.changelog_mask="$mask"
9543 }
9544
9545 # usage: __changelog_clear FACET CL_USER [+]INDEX
9546 __changelog_clear()
9547 {
9548         local facet=$1
9549         local mdt="$(facet_svc $facet)"
9550         local cl_user=$2
9551         local -i rec
9552
9553         case "$3" in
9554         +*)
9555                 # Remove the leading '+'
9556                 rec=${3:1}
9557                 rec+=$(changelog_user_rec $facet $cl_user)
9558                 ;;
9559         *)
9560                 rec=$3
9561                 ;;
9562         esac
9563
9564         if [ $rec -eq 0 ]; then
9565                 echo "$mdt: clear the changelog for $cl_user of all records"
9566         else
9567                 echo "$mdt: clear the changelog for $cl_user to record #$rec"
9568         fi
9569         $LFS changelog_clear $mdt $cl_user $rec
9570 }
9571
9572 # usage: changelog_clear [+]INDEX
9573 #
9574 # If INDEX is prefixed with '+', increment every changelog user's record index
9575 # by INDEX. Otherwise, clear the changelog up to INDEX for every changelog
9576 # users.
9577 changelog_clear() {
9578         local rc
9579         # bash assoc arrays do not guarantee to list keys in created order
9580         # so reorder to get same order than in changelog_register()
9581         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9582                           tr "\n" " ")
9583
9584         for facet in $cl_facets; do
9585                 for cl_user in ${CL_USERS[$facet]}; do
9586                         __changelog_clear $facet $cl_user $1 || rc=${rc:-$?}
9587                 done
9588         done
9589
9590         return ${rc:-0}
9591 }
9592
9593 changelog_dump() {
9594         for M in $(seq $MDSCOUNT); do
9595                 local facet=mds$M
9596                 local mdt="$(facet_svc $facet)"
9597
9598                 $LFS changelog $mdt | sed -e 's/^/'$mdt'./'
9599         done
9600 }
9601
9602 changelog_extract_field() {
9603         local cltype=$1
9604         local file=$2
9605         local identifier=$3
9606
9607         changelog_dump | gawk "/$cltype.*$file$/ {
9608                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9609                 tail -1
9610 }
9611
9612 # Prints a changelog record produced by "lfs changelog" as an associative array
9613 #
9614 # Example:
9615 # $> changelog2array 16 01CREAT 10:28:46.968438800 2018.03.09 0x0 \
9616 #                    t=[0x200000401:0x10:0x0] j=touch.501 ef=0xf u=501:501 \
9617 #                    nid=0@lo p=[0x200000007:0x1:0x0] blob
9618 # ([index]='16' [type]='CREAT' [time]='10:28:46.968438800'
9619 #  [date]='2018.03.09' [flags]=0x0 ['target-fid']='[0x200000401:0x10:0x0]'
9620 #  ['jobid']='touch.501' ['extra-flags']='0x0f' [uid]='0' ['gid']='0'
9621 #  ['nid']='0@lo' ['parent-fid']='[0x200000007:0x1:0x0]')
9622 #
9623 # Note that the changelog record is not quoted
9624 # Also note that the line breaks in the output were only added for readability
9625 #
9626 # Typically, you want to eval the output of the command to fill an actual
9627 # associative array, like this:
9628 # $> eval declare -A changelog=$(changelog2array $entry)
9629 #
9630 # It can then be accessed like any bash associative array:
9631 # $> echo "${changelog[index]}" "${changelog[type]}" "${changelog[flags]}"
9632 # 16 CREAT 0x0
9633 # $> echo "${changelog[uid]}":"${changelog[gid]}"
9634 # 501:501
9635 #
9636 changelog2array()
9637 {
9638         # Start the array
9639         printf '('
9640
9641         # A changelog, as printed by "lfs changelog" typically looks like this:
9642         # <index> <type> <time> <date> <flags> <key1=value1> <key2=value2> ...
9643
9644         # Parse the positional part of the changelog
9645
9646         # changelog_dump() prefixes records with their mdt's name
9647         local index="${1##*.}"
9648
9649         printf "[index]='%s' [type]='%s' [time]='%s' [date]='%s' [flags]='%s'" \
9650                "$index" "${2:2}" "$3" "$4" "$5"
9651
9652         # Parse the key/value part of the changelog
9653         for arg in "${@:5}"; do
9654                 # Check it matches a key=value syntax
9655                 [[ "$arg" =~ ^[[:alpha:]]+= ]] || continue
9656
9657                 local key="${arg%%=*}"
9658                 local value="${arg#*=}"
9659
9660                 case "$key" in
9661                 u)
9662                         # u is actually for uid AND gid: u=UID:GID
9663                         printf " [uid]='%s'" "${value%:*}"
9664                         key=gid
9665                         value="${value#*:}"
9666                         ;;
9667                 t)
9668                         key=target-fid
9669                         value="${value#[}"
9670                         value="${value%]}"
9671                         ;;
9672                 j)
9673                         key=jobid
9674                         ;;
9675                 p)
9676                         key=parent-fid
9677                         value="${value#[}"
9678                         value="${value%]}"
9679                         ;;
9680                 ef)
9681                         key=extra-flags
9682                         ;;
9683                 m)
9684                         key=mode
9685                         ;;
9686                 x)
9687                         key=xattr
9688                         ;;
9689                 *)
9690                         ;;
9691                 esac
9692
9693                 printf " ['%s']='%s'" "$key" "$value"
9694         done
9695
9696         # end the array
9697         printf ')'
9698 }
9699
9700 # Format and print a changelog record
9701 #
9702 # Interpreted sequences are:
9703 #       %%      a single %
9704 #       %f      the "flags" attribute of a changelog record
9705 __changelog_printf()
9706 {
9707         local format="$1"
9708
9709         local -i i
9710         for ((i = 0; i < ${#format}; i++)); do
9711                 local char="${format:$i:1}"
9712                 if [ "$char" != % ]; then
9713                         printf '%c' "$char"
9714                         continue
9715                 fi
9716
9717                 i+=1
9718                 char="${format:$i:1}"
9719                 case "$char" in
9720                 f)
9721                         printf '%s' "${changelog[flags]}"
9722                         ;;
9723                 %)
9724                         printf '%'
9725                         ;;
9726                 esac
9727         done
9728         printf '\n'
9729 }
9730
9731 # Filter changelog records
9732 changelog_find()
9733 {
9734         local -A filter
9735         local action='print'
9736         local format
9737
9738         while [ $# -gt 0 ]; do
9739                 case "$1" in
9740                 -print)
9741                         action='print'
9742                         ;;
9743                 -printf)
9744                         action='printf'
9745                         format="$2"
9746                         shift
9747                         ;;
9748                 -*)
9749                         filter[${1#-}]="$2"
9750                         shift
9751                         ;;
9752                 esac
9753                 shift
9754         done
9755
9756         local found=false
9757         local record
9758         changelog_dump | { while read -r record; do
9759                 eval local -A changelog=$(changelog2array $record)
9760                 for key in "${!filter[@]}"; do
9761                         case "$key" in
9762                         *)
9763                                 [ "${changelog[$key]}" == "${filter[$key]}" ]
9764                                 ;;
9765                         esac || continue 2
9766                 done
9767
9768                 found=true
9769
9770                 case "${action:-print}" in
9771                 print)
9772                         printf '%s\n' "$record"
9773                         ;;
9774                 printf)
9775                         __changelog_printf "$format"
9776                         ;;
9777                 esac
9778         done; $found; }
9779 }
9780
9781 restore_layout() {
9782         local dir=$1
9783         local layout=$2
9784
9785         [ ! -d "$dir" ] && return
9786
9787         [ -z "$layout" ] && {
9788                 $LFS setstripe -d $dir || error "error deleting stripe '$dir'"
9789                 return
9790         }
9791
9792         setfattr -n trusted.lov -v $layout $dir ||
9793                 error "error restoring layout '$layout' to '$dir'"
9794 }
9795
9796 # save the layout of a directory, the returned string will be used by
9797 # restore_layout() to restore the layout
9798 save_layout() {
9799         local dir=$1
9800         local str=$(getfattr -n trusted.lov --absolute-names -e hex $dir \
9801                     2> /dev/null | awk -F'=' '/trusted.lov/{ print $2 }')
9802         echo "$str"
9803 }
9804
9805 # save layout of a directory and restore it at exit
9806 save_layout_restore_at_exit() {
9807         local dir=$1
9808         local layout=$(save_layout $dir)
9809
9810         stack_trap "restore_layout $dir $layout" EXIT
9811 }
9812
9813 verify_yaml_layout() {
9814         local src=$1
9815         local dst=$2
9816         local temp=$3
9817         local msg_prefix=$4
9818
9819         echo "getstripe --yaml $src"
9820         $LFS getstripe --yaml $src > $temp || error "getstripe $src failed"
9821         echo "setstripe --yaml=$temp $dst"
9822         $LFS setstripe --yaml=$temp $dst|| error "setstripe $dst failed"
9823
9824         echo "compare"
9825         local layout1=$(get_layout_param $src)
9826         local layout2=$(get_layout_param $dst)
9827         # compare their layout info
9828         [ "$layout1" == "$layout2" ] ||
9829                 error "$msg_prefix $src/$dst layouts are not equal"
9830 }
9831
9832 is_project_quota_supported() {
9833         $ENABLE_PROJECT_QUOTAS || return 1
9834
9835         [[ "$(facet_fstype $SINGLEMDS)" == "ldiskfs" &&
9836            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.9.55) ]] &&
9837                 do_facet mds1 lfs --help |& grep -q project && return 0
9838
9839         [[ "$(facet_fstype $SINGLEMDS)" == "zfs" &&
9840            $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ]] &&
9841                 do_facet mds1 $ZPOOL get all | grep -q project_quota && return 0
9842
9843         return 1
9844 }
9845
9846 # ZFS project quota enable/disable:
9847 #   This  feature  will  become  active as soon as it is enabled and will never
9848 #   return to being disabled. Each filesystem will be upgraded automatically
9849 #   when remounted or when [a] new file is created under that filesystem. The
9850 #   upgrade can also be triggered on filesystems via `zfs set version=current
9851 #   <pool/fs>`. The upgrade process runs in the background and may take a
9852 #   while to complete for the filesystems containing a large number of files.
9853 enable_project_quota() {
9854         is_project_quota_supported || return 0
9855         local zkeeper=${KEEP_ZPOOL}
9856         stack_trap "KEEP_ZPOOL=$zkeeper" EXIT
9857         KEEP_ZPOOL="true"
9858         stopall || error "failed to stopall (1)"
9859
9860         local zfeat_en="feature@project_quota=enabled"
9861         for facet in $(seq -f mds%g $MDSCOUNT) $(seq -f ost%g $OSTCOUNT); do
9862                 local facet_fstype=${facet:0:3}1_FSTYPE
9863                 local devname
9864
9865                 if [ "${!facet_fstype}" = "zfs" ]; then
9866                         devname=$(zpool_name ${facet})
9867                         do_facet ${facet} $ZPOOL set "$zfeat_en" $devname ||
9868                                 error "$ZPOOL set $zfeat_en $devname"
9869                 else
9870                         [ ${facet:0:3} == "mds" ] &&
9871                                 devname=$(mdsdevname ${facet:3}) ||
9872                                 devname=$(ostdevname ${facet:3})
9873                         do_facet ${facet} $TUNE2FS -O project $devname ||
9874                                 error "tune2fs $devname failed"
9875                 fi
9876         done
9877
9878         KEEP_ZPOOL="${zkeeper}"
9879         mount
9880         setupall
9881 }
9882
9883 disable_project_quota() {
9884         is_project_quota_supported || return 0
9885         [ "$mds1_FSTYPE" != "ldiskfs" ] && return 0
9886         stopall || error "failed to stopall (1)"
9887
9888         for num in $(seq $MDSCOUNT); do
9889                 do_facet mds$num $TUNE2FS -Q ^prj $(mdsdevname $num) ||
9890                         error "tune2fs $(mdsdevname $num) failed"
9891         done
9892
9893         for num in $(seq $OSTCOUNT); do
9894                 do_facet ost$num $TUNE2FS -Q ^prj $(ostdevname $num) ||
9895                         error "tune2fs $(ostdevname $num) failed"
9896         done
9897
9898         mount
9899         setupall
9900 }
9901
9902 #
9903 # In order to test multiple remote HSM agents, a new facet type named "AGT" and
9904 # the following associated variables are added:
9905 #
9906 # AGTCOUNT: number of agents
9907 # AGTDEV{N}: target HSM mount point (root path of the backend)
9908 # agt{N}_HOST: hostname of the agent agt{N}
9909 # SINGLEAGT: facet of the single agent
9910 #
9911 # The number of agents is initialized as the number of remote client nodes.
9912 # By default, only single copytool is started on a remote client/agent. If there
9913 # was no remote client, then the copytool will be started on the local client.
9914 #
9915 init_agt_vars() {
9916         local n
9917         local agent
9918
9919         export AGTCOUNT=${AGTCOUNT:-$((CLIENTCOUNT - 1))}
9920         [[ $AGTCOUNT -gt 0 ]] || AGTCOUNT=1
9921
9922         export SHARED_DIRECTORY=${SHARED_DIRECTORY:-$TMP}
9923         if [[ $CLIENTCOUNT -gt 1 ]] &&
9924                 ! check_shared_dir $SHARED_DIRECTORY $CLIENTS; then
9925                 skip_env "SHARED_DIRECTORY should be accessible"\
9926                          "on all client nodes"
9927                 exit 0
9928         fi
9929
9930         # We used to put the HSM archive in $SHARED_DIRECTORY but that
9931         # meant NFS issues could hose sanity-hsm sessions. So now we
9932         # use $TMP instead.
9933         for n in $(seq $AGTCOUNT); do
9934                 eval export AGTDEV$n=\$\{AGTDEV$n:-"$TMP/arc$n"\}
9935                 agent=CLIENT$((n + 1))
9936                 if [[ -z "${!agent}" ]]; then
9937                         [[ $CLIENTCOUNT -eq 1 ]] && agent=CLIENT1 ||
9938                                 agent=CLIENT2
9939                 fi
9940                 eval export agt${n}_HOST=\$\{agt${n}_HOST:-${!agent}\}
9941                 local var=agt${n}_HOST
9942                 [[ ! -z "${!var}" ]] || error "agt${n}_HOST is empty!"
9943         done
9944
9945         export SINGLEAGT=${SINGLEAGT:-agt1}
9946
9947         export HSMTOOL=${HSMTOOL:-"lhsmtool_posix"}
9948         export HSMTOOL_VERBOSE=${HSMTOOL_VERBOSE:-""}
9949         export HSMTOOL_UPDATE_INTERVAL=${HSMTOOL_UPDATE_INTERVAL:=""}
9950         export HSMTOOL_EVENT_FIFO=${HSMTOOL_EVENT_FIFO:=""}
9951         export HSMTOOL_TESTDIR
9952         export HSMTOOL_BASE=$(basename "$HSMTOOL" | cut -f1 -d" ")
9953
9954         HSM_ARCHIVE_NUMBER=2
9955
9956         # The test only support up to 10 MDTs
9957         MDT_PREFIX="mdt.$FSNAME-MDT000"
9958         HSM_PARAM="${MDT_PREFIX}0.hsm"
9959
9960         # archive is purged at copytool setup
9961         HSM_ARCHIVE_PURGE=true
9962
9963         # Don't allow copytool error upon start/setup
9964         HSMTOOL_NOERROR=false
9965 }
9966
9967 # Get the backend root path for the given agent facet.
9968 copytool_device() {
9969         local facet=$1
9970         local dev=AGTDEV$(facet_number $facet)
9971
9972         echo -n ${!dev}
9973 }
9974
9975 get_mdt_devices() {
9976         local mdtno
9977         # get MDT device for each mdc
9978         for mdtno in $(seq 1 $MDSCOUNT); do
9979                 local idx=$(($mdtno - 1))
9980                 MDT[$idx]=$($LCTL get_param -n \
9981                         mdc.$FSNAME-MDT000${idx}-mdc-*.mds_server_uuid |
9982                         awk '{gsub(/_UUID/,""); print $1}' | head -n1)
9983         done
9984 }
9985
9986 search_copytools() {
9987         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
9988         do_nodesv $hosts "pgrep -x $HSMTOOL_BASE"
9989 }
9990
9991 kill_copytools() {
9992         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
9993
9994         echo "Killing existing copytools on $hosts"
9995         do_nodesv $hosts "killall -q $HSMTOOL_BASE" || true
9996 }
9997
9998 wait_copytools() {
9999         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
10000         local wait_timeout=200
10001         local wait_start=$SECONDS
10002         local wait_end=$((wait_start + wait_timeout))
10003         local sleep_time=100000 # 0.1 second
10004
10005         while ((SECONDS < wait_end)); do
10006                 if ! search_copytools $hosts; then
10007                         echo "copytools stopped in $((SECONDS - wait_start))s"
10008                         return 0
10009                 fi
10010
10011                 echo "copytools still running on $hosts"
10012                 usleep $sleep_time
10013                 [ $sleep_time -lt 32000000 ] && # 3.2 seconds
10014                         sleep_time=$(bc <<< "$sleep_time * 2")
10015         done
10016
10017         # try to dump Copytool's stack
10018         do_nodesv $hosts "echo 1 >/proc/sys/kernel/sysrq ; " \
10019                          "echo t >/proc/sysrq-trigger"
10020
10021         echo "copytools failed to stop in ${wait_timeout}s"
10022
10023         return 1
10024 }
10025
10026 copytool_monitor_cleanup() {
10027         local facet=${1:-$SINGLEAGT}
10028         local agent=$(facet_active_host $facet)
10029
10030         if [ -n "$HSMTOOL_MONITOR_DIR" ]; then
10031                 # Should die when the copytool dies, but just in case.
10032                 local cmd="kill \\\$(cat $HSMTOOL_MONITOR_DIR/monitor_pid)"
10033                 cmd+=" 2>/dev/null || true"
10034                 do_node $agent "$cmd"
10035                 do_node $agent "rm -fr $HSMTOOL_MONITOR_DIR"
10036                 export HSMTOOL_MONITOR_DIR=
10037         fi
10038
10039         # The pdsh should die on its own when the monitor dies. Just
10040         # in case, though, try to clean up to avoid any cruft.
10041         if [ -n "$HSMTOOL_MONITOR_PDSH" ]; then
10042                 kill $HSMTOOL_MONITOR_PDSH 2>/dev/null || true
10043                 export HSMTOOL_MONITOR_PDSH=
10044         fi
10045 }
10046
10047 copytool_logfile()
10048 {
10049         local host="$(facet_host "$1")"
10050         local prefix=$TESTLOG_PREFIX
10051         [ -n "$TESTNAME" ] && prefix+=.$TESTNAME
10052
10053         printf "${prefix}.copytool${archive_id}_log.${host}.log"
10054 }
10055
10056 __lhsmtool_rebind()
10057 {
10058         do_facet $facet $HSMTOOL -p "$hsm_root" --rebind "$@" "$mountpoint"
10059 }
10060
10061 __lhsmtool_import()
10062 {
10063         mkdir -p "$(dirname "$2")" ||
10064                 error "cannot create directory '$(dirname "$2")'"
10065         do_facet $facet $HSMTOOL -p "$hsm_root" --import "$@" "$mountpoint"
10066 }
10067
10068 __lhsmtool_setup()
10069 {
10070         local cmd="$HSMTOOL $HSMTOOL_VERBOSE --daemon --hsm-root \"$hsm_root\""
10071         [ -n "$bandwidth" ] && cmd+=" --bandwidth $bandwidth"
10072         [ -n "$archive_id" ] && cmd+=" --archive $archive_id"
10073         [ ${#misc_options[@]} -gt 0 ] &&
10074                 cmd+=" $(IFS=" " echo "$@")"
10075         cmd+=" \"$mountpoint\""
10076
10077         echo "Starting copytool $facet on $(facet_host $facet)"
10078         stack_trap "do_facet $facet libtool execute pkill -x '$HSMTOOL' || true" EXIT
10079         do_facet $facet "$cmd < /dev/null > \"$(copytool_logfile $facet)\" 2>&1"
10080 }
10081
10082 hsm_root() {
10083         local facet="${1:-$SINGLEAGT}"
10084
10085         printf "$(copytool_device "$facet")/${TESTSUITE}.${TESTNAME}/"
10086 }
10087
10088 # Main entry point to perform copytool related operations
10089 #
10090 # Sub-commands:
10091 #
10092 #       setup   setup a copytool to run in the background, that copytool will be
10093 #               killed on EXIT
10094 #       import  import a file from an HSM backend
10095 #       rebind  rebind an archived file to a new fid
10096 #
10097 # Although the semantics might suggest otherwise, one does not need to 'setup'
10098 # a copytool before a call to 'copytool import' or 'copytool rebind'.
10099 #
10100 copytool()
10101 {
10102         local action=$1
10103         shift
10104
10105         # Use default values
10106         local facet=$SINGLEAGT
10107         local mountpoint="${MOUNT2:-$MOUNT}"
10108         local hsm_root="${hsm_root:-$(hsm_root "$facet")}"
10109
10110         # Parse arguments
10111         local fail_on_error=true
10112         local -a misc_options
10113         while [ $# -gt 0 ]; do
10114                 case "$1" in
10115                 -f|--facet)
10116                         shift
10117                         facet="$1"
10118                         ;;
10119                 -m|--mountpoint)
10120                         shift
10121                         mountpoint="$1"
10122                         ;;
10123                 -a|--archive-id)
10124                         shift
10125                         local archive_id="$1"
10126                         ;;
10127                 -h|--hsm-root)
10128                         shift
10129                         hsm_root="$1"
10130                         ;;
10131                 -b|--bwlimit)
10132                         shift
10133                         local bandwidth="$1" # in MB/s
10134                         ;;
10135                 -n|--no-fail)
10136                         local fail_on_error=false
10137                         ;;
10138                 *)
10139                         # Uncommon(/copytool dependent) option
10140                         misc_options+=("$1")
10141                         ;;
10142                 esac
10143                 shift
10144         done
10145
10146         stack_trap "do_facet $facet rm -rf '$hsm_root'" EXIT
10147         do_facet $facet mkdir -p "$hsm_root" ||
10148                 error "mkdir '$hsm_root' failed"
10149
10150         case "$HSMTOOL" in
10151         lhsmtool_posix)
10152                 local copytool=lhsmtool
10153                 ;;
10154         esac
10155
10156         __${copytool}_${action} "${misc_options[@]}"
10157         if [ $? -ne 0 ]; then
10158                 local error_msg
10159
10160                 case $action in
10161                 setup)
10162                         local host="$(facet_host $facet)"
10163                         error_msg="Failed to start copytool $facet on '$host'"
10164                         ;;
10165                 import)
10166                         local src="${misc_options[0]}"
10167                         local dest="${misc_options[1]}"
10168                         error_msg="Failed to import '$src' to '$dest'"
10169                         ;;
10170                 rebind)
10171                         error_msg="could not rebind file"
10172                         ;;
10173                 esac
10174
10175                 $fail_on_error && error "$error_msg" || echo "$error_msg"
10176         fi
10177 }
10178
10179 needclients() {
10180         local client_count=$1
10181         if [[ $CLIENTCOUNT -lt $client_count ]]; then
10182                 skip "Need $client_count or more clients, have $CLIENTCOUNT"
10183                 return 1
10184         fi
10185         return 0
10186 }
10187
10188 path2fid() {
10189         $LFS path2fid $1 | tr -d '[]'
10190         return ${PIPESTATUS[0]}
10191 }
10192
10193 get_hsm_flags() {
10194         local f=$1
10195         local u=$2
10196         local st
10197
10198         if [[ $u == "user" ]]; then
10199                 st=$($RUNAS $LFS hsm_state $f)
10200         else
10201                 u=root
10202                 st=$($LFS hsm_state $f)
10203         fi
10204
10205         [[ $? == 0 ]] || error "$LFS hsm_state $f failed (run as $u)"
10206
10207         st=$(echo $st | cut -f 2 -d" " | tr -d "()," )
10208         echo $st
10209 }
10210
10211 check_hsm_flags() {
10212         local f=$1
10213         local fl=$2
10214
10215         local st=$(get_hsm_flags $f)
10216         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
10217 }
10218
10219 mdts_set_param() {
10220         local arg=$1
10221         local key=$2
10222         local value=$3
10223         local mdtno
10224         local rc=0
10225         if [[ "$value" != "" ]]; then
10226                 value="=$value"
10227         fi
10228         for mdtno in $(seq 1 $MDSCOUNT); do
10229                 local idx=$(($mdtno - 1))
10230                 local facet=mds${mdtno}
10231                 # if $arg include -P option, run 1 set_param per MDT on the MGS
10232                 # else, run set_param on each MDT
10233                 [[ $arg = *"-P"* ]] && facet=mgs
10234                 do_facet $facet $LCTL set_param $arg mdt.${MDT[$idx]}.$key$value
10235                 [[ $? != 0 ]] && rc=1
10236         done
10237         return $rc
10238 }
10239
10240 wait_result() {
10241         local facet=$1
10242         shift
10243         wait_update --verbose $(facet_active_host $facet) "$@"
10244 }
10245
10246 mdts_check_param() {
10247         local key="$1"
10248         local target="$2"
10249         local timeout="$3"
10250         local mdtno
10251         for mdtno in $(seq 1 $MDSCOUNT); do
10252                 local idx=$(($mdtno - 1))
10253                 wait_result mds${mdtno} \
10254                         "$LCTL get_param -n $MDT_PREFIX${idx}.$key" "$target" \
10255                         $timeout ||
10256                         error "$key state is not '$target' on mds${mdtno}"
10257         done
10258 }
10259
10260 cdt_set_mount_state() {
10261         mdts_set_param "-P" hsm_control "$1"
10262         # set_param -P is asynchronous operation and could race with set_param.
10263         # In such case configs could be retrieved and applied at mgc after
10264         # set_param -P completion. Sleep here to avoid race with set_param.
10265         # We need at least 20 seconds. 10 for mgc_requeue_thread to wake up
10266         # MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC(5 + 5)
10267         # and 10 seconds to retrieve config from server.
10268         sleep 20
10269 }
10270
10271 cdt_check_state() {
10272         mdts_check_param hsm_control "$1" 20
10273 }
10274
10275 cdt_set_sanity_policy() {
10276         if [[ "$CDT_POLICY_HAD_CHANGED" ]]
10277         then
10278                 # clear all
10279                 mdts_set_param "" hsm.policy "+NRA"
10280                 mdts_set_param "" hsm.policy "-NBR"
10281                 CDT_POLICY_HAD_CHANGED=
10282         fi
10283 }
10284
10285 set_hsm_param() {
10286         local param=$1
10287         local value=$2
10288         local opt=$3
10289         mdts_set_param "$opt -n" "hsm.$param" "$value"
10290         return $?
10291 }
10292
10293 wait_request_state() {
10294         local fid=$1
10295         local request=$2
10296         local state=$3
10297         # 4th arg (mdt index) is optional
10298         local mdtidx=${4:-0}
10299         local mds=mds$(($mdtidx + 1))
10300
10301         local cmd="$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.actions"
10302         cmd+=" | awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
10303
10304         wait_result $mds "$cmd" "$state" 200 ||
10305                 error "request on $fid is not $state on $mds"
10306 }
10307
10308
10309 rmultiop_start() {
10310         local client=$1
10311         local file=$2
10312         local cmds=$3
10313         local WAIT_MAX=${4:-60}
10314         local wait_time=0
10315
10316         # We need to run do_node in bg, because pdsh does not exit
10317         # if child process of run script exists.
10318         # I.e. pdsh does not exit when runmultiop_bg_pause exited,
10319         # because of multiop_bg_pause -> $MULTIOP_PROG &
10320         # By the same reason we need sleep a bit after do_nodes starts
10321         # to let runmultiop_bg_pause start muliop and
10322         # update /tmp/multiop_bg.pid ;
10323         # The rm /tmp/multiop_bg.pid guarantees here that
10324         # we have the updated by runmultiop_bg_pause
10325         # /tmp/multiop_bg.pid file
10326
10327         local pid_file=$TMP/multiop_bg.pid.$$
10328
10329         do_node $client "MULTIOP_PID_FILE=$pid_file LUSTRE= \
10330                         runmultiop_bg_pause $file $cmds" &
10331         local pid=$!
10332         local multiop_pid
10333
10334         while [[ $wait_time -lt $WAIT_MAX ]]; do
10335                 sleep 3
10336                 wait_time=$((wait_time + 3))
10337                 multiop_pid=$(do_node $client cat $pid_file)
10338                 if [ -n "$multiop_pid" ]; then
10339                         break
10340                 fi
10341         done
10342
10343         [ -n "$multiop_pid" ] ||
10344                 error "$client : Can not get multiop_pid from $pid_file "
10345
10346         eval export $(node_var_name $client)_multiop_pid=$multiop_pid
10347         eval export $(node_var_name $client)_do_node_pid=$pid
10348         local var=$(node_var_name $client)_multiop_pid
10349         echo client $client multiop_bg started multiop_pid=${!var}
10350         return $?
10351 }
10352
10353 rmultiop_stop() {
10354         local client=$1
10355         local multiop_pid=$(node_var_name $client)_multiop_pid
10356         local do_node_pid=$(node_var_name $client)_do_node_pid
10357
10358         echo "Stopping multiop_pid=${!multiop_pid} (kill ${!multiop_pid} on $client)"
10359         do_node $client kill -USR1 ${!multiop_pid}
10360
10361         wait ${!do_node_pid}
10362 }
10363
10364 sleep_maxage() {
10365         local delay=$(do_facet $SINGLEMDS lctl get_param -n lo[vd].*.qos_maxage |
10366                       awk '{ print $1 * 2; exit; }')
10367         sleep $delay
10368 }
10369
10370 check_component_count() {
10371         local comp_cnt=$($LFS getstripe --component-count $1)
10372         [ $comp_cnt -eq $2 ] || error "$1, component count $comp_cnt != $2"
10373 }
10374
10375 # Verify there are no init components with "extension" flag
10376 verify_no_init_extension() {
10377         local flg_opts="--component-flags init,extension"
10378         local found=$($LFS find $flg_opts $1 | wc -l)
10379         [ $found -eq 0 ] || error "$1 has component with initialized extension"
10380 }
10381
10382 # Verify there is at least one component starting at 0
10383 verify_comp_at_zero() {
10384         flg_opts="--component-flags init"
10385         found=$($LFS find --component-start 0M $flg_opts $1 | wc -l)
10386         [ $found -eq 1 ] ||
10387                 error "No component starting at zero(!)"
10388 }
10389
10390 # version after which Self-Extending Layouts are available
10391 SEL_VER="2.12.55"
10392
10393 sel_layout_sanity() {
10394         local file=$1
10395         local comp_cnt=$2
10396
10397         verify_no_init_extension $file
10398         verify_comp_at_zero $file
10399         check_component_count $file $comp_cnt
10400 }
10401