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