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