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