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