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