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