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