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