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