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