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