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