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