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