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