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