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