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