Whamcloud - gitweb
LU-11128 ptlrpc: add debugging for idle connections
[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 * MDSCOUNT))
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         $LCTL set_param osc.*.idle_timeout=debug
4808
4809         if [ -n "$(lctl get_param -n mdc.*.connect_flags|grep jobstats)" ]; then
4810                 local current_jobid_var=$($LCTL get_param -n jobid_var)
4811
4812                 if [ $JOBID_VAR = "existing" ]; then
4813                         echo "keeping jobstats as $current_jobid_var"
4814                 elif [ $current_jobid_var != $JOBID_VAR ]; then
4815                         echo "setting jobstats to $JOBID_VAR"
4816
4817                         set_conf_param_and_check client                 \
4818                                 "$LCTL get_param -n jobid_var"          \
4819                                 "$FSNAME.sys.jobid_var" $JOBID_VAR
4820                 fi
4821         else
4822                 echo "jobstats not supported by server"
4823         fi
4824
4825         if [ $QUOTA_AUTO -ne 0 ]; then
4826                 if [ "$ENABLE_QUOTA" ]; then
4827                         echo "enable quota as required"
4828                         setup_quota $MOUNT || return 2
4829                 else
4830                         echo "disable quota as required"
4831                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
4832                 fi
4833         fi
4834         return 0
4835 }
4836
4837 nfs_client_mode () {
4838     if [ "$NFSCLIENT" ]; then
4839         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
4840         local clients=$CLIENTS
4841         [ -z $clients ] && clients=$(hostname)
4842
4843         # FIXME: remove hostname when 19215 fixed
4844         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
4845         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
4846         if [[ ${#nfsexport[@]} -eq 0 ]]; then
4847                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
4848         fi
4849         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
4850         return
4851     fi
4852     return 1
4853 }
4854
4855 cifs_client_mode () {
4856         [ x$CIFSCLIENT = xyes ] &&
4857                 echo "CIFSCLIENT=$CIFSCLIENT mode: setup, cleanup, check config skipped"
4858 }
4859
4860 check_config_client () {
4861     local mntpt=$1
4862
4863     local mounted=$(mount | grep " $mntpt ")
4864     if [ -n "$CLIENTONLY" ]; then
4865         # bug 18021
4866         # CLIENTONLY should not depend on *_HOST settings
4867         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
4868         # in theory someone could create a new,
4869         # client-only config file that assumed lustre was already
4870         # configured and didn't set the MGSNID. If MGSNID is not set,
4871         # then we should use the mgs nid currently being used
4872         # as the default value. bug 18021
4873         [[ x$MGSNID = x ]] &&
4874             MGSNID=${mgc//MGC/}
4875
4876         if [[ x$mgc != xMGC$MGSNID ]]; then
4877             if [ "$mgs_HOST" ]; then
4878                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
4879 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
4880 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
4881             fi
4882         fi
4883         return 0
4884     fi
4885
4886     echo Checking config lustre mounted on $mntpt
4887     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
4888     mgshost=$(echo $mgshost | awk -F: '{print $1}')
4889
4890 }
4891
4892 check_config_clients () {
4893         local clients=${CLIENTS:-$HOSTNAME}
4894         local mntpt=$1
4895
4896         nfs_client_mode && return
4897         cifs_client_mode && return
4898
4899         do_rpc_nodes "$clients" check_config_client $mntpt
4900
4901         sanity_mount_check || error "environments are insane!"
4902 }
4903
4904 check_timeout () {
4905     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
4906     local cltimeout=$(lctl get_param -n timeout)
4907     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
4908         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
4909         return 1
4910     fi
4911 }
4912
4913 is_mounted () {
4914     local mntpt=$1
4915     [ -z $mntpt ] && return 1
4916     local mounted=$(mounted_lustre_filesystems)
4917
4918     echo $mounted' ' | grep -w -q $mntpt' '
4919 }
4920
4921 is_empty_dir() {
4922         [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
4923         return 1
4924 }
4925
4926 # empty lustre filesystem may have empty directories lost+found and .lustre
4927 is_empty_fs() {
4928         # exclude .lustre & lost+found
4929         [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
4930                 -print | wc -l) = 1 ] || return 1
4931         [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found || return 1
4932         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.4.0) ]; then
4933                 # exclude .lustre/fid (LU-2780)
4934                 [ $(find $1/.lustre -maxdepth 1 -name fid -prune -o \
4935                         -print | wc -l) = 1 ] || return 1
4936         else
4937                 [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre || return 1
4938         fi
4939         return 0
4940 }
4941
4942 check_and_setup_lustre() {
4943         sanitize_parameters
4944         nfs_client_mode && return
4945         cifs_client_mode && return
4946
4947         local MOUNTED=$(mounted_lustre_filesystems)
4948
4949         local do_check=true
4950         # 1.
4951         # both MOUNT and MOUNT2 are not mounted
4952         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
4953                 [ "$REFORMAT" = "yes" ] && CLEANUP_DM_DEV=true formatall
4954                 # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
4955                 setupall
4956                 is_mounted $MOUNT || error "NAME=$NAME not mounted"
4957                 export I_MOUNTED=yes
4958                 do_check=false
4959     # 2.
4960     # MOUNT2 is mounted
4961     elif is_mounted $MOUNT2; then
4962             # 3.
4963             # MOUNT2 is mounted, while MOUNT_2 is not set
4964             if ! [ "$MOUNT_2" ]; then
4965                 cleanup_mount $MOUNT2
4966                 export I_UMOUNTED2=yes
4967
4968             # 4.
4969             # MOUNT2 is mounted, MOUNT_2 is set
4970             else
4971                 # FIXME: what to do if check_config failed?
4972                 # i.e. if:
4973                 # 1) remote client has mounted other Lustre fs ?
4974                 # 2) it has insane env ?
4975                 # let's try umount MOUNT2 on all clients and mount it again:
4976                 if ! check_config_clients $MOUNT2; then
4977                     cleanup_mount $MOUNT2
4978                     restore_mount $MOUNT2
4979                     export I_MOUNTED2=yes
4980                 fi
4981             fi
4982
4983     # 5.
4984     # MOUNT is mounted MOUNT2 is not mounted
4985     elif [ "$MOUNT_2" ]; then
4986         restore_mount $MOUNT2
4987         export I_MOUNTED2=yes
4988     fi
4989
4990     if $do_check; then
4991         # FIXME: what to do if check_config failed?
4992         # i.e. if:
4993         # 1) remote client has mounted other Lustre fs?
4994         # 2) lustre is mounted on remote_clients atall ?
4995         check_config_clients $MOUNT
4996         init_facets_vars
4997         init_param_vars
4998
4999         set_default_debug_nodes $(comma_list $(nodes_list))
5000     fi
5001
5002         if [ -z "$CLIENTONLY" -a $(lower $OSD_TRACK_DECLARES_LBUG) == 'yes' ]; then
5003                 local facets=""
5004                 [ "$(facet_fstype ost1)" = "ldiskfs" ] &&
5005                         facets="$(get_facets OST)"
5006                 [ "$(facet_fstype mds1)" = "ldiskfs" ] &&
5007                         facets="$facets,$(get_facets MDS)"
5008                 [ "$(facet_fstype mgs)" = "ldiskfs" ] &&
5009                         facets="$facets,mgs"
5010                 local nodes="$(facets_hosts ${facets})"
5011                 if [ -n "$nodes" ] ; then
5012                         do_nodes $nodes "$LCTL set_param \
5013                                  osd-ldiskfs.track_declares_assert=1 || true"
5014                 fi
5015         fi
5016
5017         init_gss
5018         if $GSS_SK; then
5019                 set_flavor_all null
5020         elif $GSS; then
5021                 set_flavor_all $SEC
5022         fi
5023
5024         if [ -z "$CLIENTONLY" ]; then
5025                 # Enable remote MDT create for testing
5026                 for num in $(seq $MDSCOUNT); do
5027                         do_facet mds$num \
5028                                 lctl set_param -n mdt.${FSNAME}*.enable_remote_dir=1 \
5029                                         2>/dev/null
5030                 done
5031         fi
5032
5033         if [ "$ONLY" == "setup" ]; then
5034                 exit 0
5035         fi
5036 }
5037
5038 restore_mount () {
5039    local clients=${CLIENTS:-$HOSTNAME}
5040    local mntpt=$1
5041
5042    zconf_mount_clients $clients $mntpt
5043 }
5044
5045 cleanup_mount () {
5046         local clients=${CLIENTS:-$HOSTNAME}
5047         local mntpt=$1
5048
5049         zconf_umount_clients $clients $mntpt
5050 }
5051
5052 cleanup_and_setup_lustre() {
5053     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
5054         lctl set_param debug=0 || true
5055         cleanupall
5056         if [ "$ONLY" == "cleanup" ]; then
5057             exit 0
5058         fi
5059     fi
5060     check_and_setup_lustre
5061 }
5062
5063 # Get all of the server target devices from a given server node and type.
5064 get_mnt_devs() {
5065         local node=$1
5066         local type=$2
5067         local devs
5068         local dev
5069
5070         if [ "$type" == ost ]; then
5071                 devs=$(get_osd_param $node "" mntdev)
5072         else
5073                 devs=$(do_node $node $LCTL get_param -n osd-*.$FSNAME-M*.mntdev)
5074         fi
5075         for dev in $devs; do
5076                 case $dev in
5077                 *loop*) do_node $node "losetup $dev" | \
5078                                 sed -e "s/.*(//" -e "s/).*//" ;;
5079                 *) echo $dev ;;
5080                 esac
5081         done
5082 }
5083
5084 # Get all of the server target devices.
5085 get_svr_devs() {
5086         local node
5087         local i
5088
5089         # Master MDS parameters used by lfsck
5090         MDTNODE=$(facet_active_host $SINGLEMDS)
5091         MDTDEV=$(echo $(get_mnt_devs $MDTNODE mdt) | awk '{print $1}')
5092
5093         # MDT devices
5094         i=0
5095         for node in $(mdts_nodes); do
5096                 MDTDEVS[i]=$(get_mnt_devs $node mdt)
5097                 i=$((i + 1))
5098         done
5099
5100         # OST devices
5101         i=0
5102         for node in $(osts_nodes); do
5103                 OSTDEVS[i]=$(get_mnt_devs $node ost)
5104                 i=$((i + 1))
5105         done
5106 }
5107
5108 # Run e2fsck on MDT or OST device.
5109 run_e2fsck() {
5110         local node=$1
5111         local target_dev=$2
5112         local extra_opts=$3
5113         local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
5114         local log=$TMP/e2fsck.log
5115         local rc=0
5116
5117         echo $cmd
5118         do_node $node $cmd 2>&1 | tee $log
5119         rc=${PIPESTATUS[0]}
5120         if [ -n "$(grep "DNE mode isn't supported" $log)" ]; then
5121                 rm -f $log
5122                 if [ $MDSCOUNT -gt 1 ]; then
5123                         skip_noexit "DNE mode isn't supported!"
5124                         cleanupall
5125                         exit_status
5126                 else
5127                         error "It's not DNE mode."
5128                 fi
5129         fi
5130         rm -f $log
5131
5132         [ $rc -le $FSCK_MAX_ERR ] ||
5133                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
5134
5135         return 0
5136 }
5137
5138 #
5139 # Run resize2fs on MDT or OST device.
5140 #
5141 run_resize2fs() {
5142         local facet=$1
5143         local device=$2
5144         local size=$3
5145         shift 3
5146         local opts="$@"
5147
5148         do_facet $facet "$RESIZE2FS $opts $device $size"
5149 }
5150
5151 # verify a directory is shared among nodes.
5152 check_shared_dir() {
5153         local dir=$1
5154         local list=${2:-$(comma_list $(nodes_list))}
5155
5156         [ -z "$dir" ] && return 1
5157         do_rpc_nodes "$list" check_logdir $dir
5158         check_write_access $dir "$list" || return 1
5159         return 0
5160 }
5161
5162 run_lfsck() {
5163         do_nodes $(comma_list $(mdts_nodes) $(osts_nodes)) \
5164                 $LCTL set_param printk=+lfsck
5165         do_facet $SINGLEMDS "$LCTL lfsck_start -M $FSNAME-MDT0000 -r -A -t all"
5166
5167         for k in $(seq $MDSCOUNT); do
5168                 # wait up to 10+1 minutes for LFSCK to complete
5169                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5170                         mdd.$(facet_svc mds${k}).lfsck_layout |
5171                         awk '/^status/ { print \\\$2 }'" "completed" 600 ||
5172                         error "MDS${k} layout isn't the expected 'completed'"
5173                 wait_update_facet --verbose mds${k} "$LCTL get_param -n \
5174                         mdd.$(facet_svc mds${k}).lfsck_namespace |
5175                         awk '/^status/ { print \\\$2 }'" "completed" 60 ||
5176                         error "MDS${k} namespace isn't the expected 'completed'"
5177         done
5178         local rep_mdt=$(do_nodes $(comma_list $(mdts_nodes)) \
5179                         $LCTL get_param -n mdd.$FSNAME-*.lfsck_* |
5180                         awk '/repaired/ { print $2 }' | calc_sum)
5181         local rep_ost=$(do_nodes $(comma_list $(osts_nodes)) \
5182                         $LCTL get_param -n obdfilter.$FSNAME-*.lfsck_* |
5183                         awk '/repaired/ { print $2 }' | calc_sum)
5184         local repaired=$((rep_mdt + rep_ost))
5185         [ $repaired -eq 0 ] ||
5186                 error "lfsck repaired $rep_mdt MDT and $rep_ost OST errors"
5187 }
5188
5189 dump_file_contents() {
5190         local nodes=$1
5191         local dir=$2
5192         local logname=$3
5193         local node
5194
5195         if [ -z "$nodes" -o -z "$dir" -o -z "$logname" ]; then
5196                 error_noexit false \
5197                         "Invalid parameters for dump_file_contents()"
5198                 return 1
5199         fi
5200         for node in ${nodes}; do
5201                 do_node $node "for i in \\\$(find $dir -type f); do
5202                                 echo ====\\\${i}=======================;
5203                                 cat \\\${i};
5204                                 done" >> ${logname}.${node}.log
5205         done
5206 }
5207
5208 dump_command_output() {
5209         local nodes=$1
5210         local cmd=$2
5211         local logname=$3
5212         local node
5213
5214         if [ -z "$nodes" -o -z "$cmd" -o -z "$logname" ]; then
5215                 error_noexit false \
5216                         "Invalid parameters for dump_command_output()"
5217                 return 1
5218         fi
5219
5220         for node in ${nodes}; do
5221                 do_node $node "echo ====${cmd}=======================;
5222                                 $cmd" >> ${logname}.${node}.log
5223         done
5224 }
5225
5226 log_zfs_info() {
5227         local logname=$1
5228
5229         # dump file contents from /proc/spl in case of zfs test
5230         if [ "$(facet_fstype ost1)" = "zfs" ]; then
5231                 dump_file_contents "$(osts_nodes)" "/proc/spl" "${logname}"
5232                 dump_command_output \
5233                         "$(osts_nodes)" "zpool events -v" "${logname}"
5234         fi
5235
5236         if [ "$(facet_fstype $SINGLEMDS)" = "zfs" ]; then
5237                 dump_file_contents "$(mdts_nodes)" "/proc/spl" "${logname}"
5238                 dump_command_output \
5239                         "$(mdts_nodes)" "zpool events -v" "${logname}"
5240         fi
5241 }
5242
5243 check_and_cleanup_lustre() {
5244         if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "sanity-lfsck" -a \
5245              "$TESTSUITE" != "sanity-scrub" ]; then
5246                 run_lfsck
5247         fi
5248
5249         if is_mounted $MOUNT; then
5250                 if $DO_CLEANUP; then
5251                         [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
5252                                 error "remove sub-test dirs failed"
5253                 else
5254                         echo "skip cleanup"
5255                 fi
5256                 [ "$ENABLE_QUOTA" ] && restore_quota || true
5257         fi
5258
5259         if [ "$I_UMOUNTED2" = "yes" ]; then
5260                 restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
5261         fi
5262
5263         if [ "$I_MOUNTED2" = "yes" ]; then
5264                 cleanup_mount $MOUNT2
5265         fi
5266
5267         if [[ "$I_MOUNTED" = "yes" ]] && ! $AUSTER_CLEANUP; then
5268                 cleanupall -f || error "cleanup failed"
5269                 unset I_MOUNTED
5270         fi
5271 }
5272
5273 #######
5274 # General functions
5275
5276 wait_for_function () {
5277     local quiet=""
5278
5279     # suppress fn both stderr and stdout
5280     if [ "$1" = "--quiet" ]; then
5281         shift
5282         quiet=" > /dev/null 2>&1"
5283
5284     fi
5285
5286     local fn=$1
5287     local max=${2:-900}
5288     local sleep=${3:-5}
5289
5290     local wait=0
5291
5292     while true; do
5293
5294         eval $fn $quiet && return 0
5295
5296         wait=$((wait + sleep))
5297         [ $wait -lt $max ] || return 1
5298         echo waiting $fn, $((max - wait)) secs left ...
5299         sleep $sleep
5300     done
5301 }
5302
5303 check_network() {
5304         local host=$1
5305         local max=$2
5306         local sleep=${3:-5}
5307
5308         [ "$host" = "$HOSTNAME" ] && return 0
5309
5310         echo "$(date +'%H:%M:%S (%s)') waiting for $host network $max secs ..."
5311         if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
5312                 echo "Network not available!"
5313                 exit 1
5314         fi
5315
5316         echo "$(date +'%H:%M:%S (%s)') network interface is UP"
5317 }
5318
5319 no_dsh() {
5320     shift
5321     eval $@
5322 }
5323
5324 # Convert a space-delimited list to a comma-delimited list.  If the input is
5325 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
5326 comma_list() {
5327         # echo is used to convert newlines to spaces, since it doesn't
5328         # introduce a trailing space as using "tr '\n' ' '" does
5329         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
5330 }
5331
5332 list_member () {
5333     local list=$1
5334     local item=$2
5335     echo $list | grep -qw $item
5336 }
5337
5338 # list, excluded are the comma separated lists
5339 exclude_items_from_list () {
5340     local list=$1
5341     local excluded=$2
5342     local item
5343
5344     list=${list//,/ }
5345     for item in ${excluded//,/ }; do
5346         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
5347     done
5348     echo $(comma_list $list)
5349 }
5350
5351 # list, expand  are the comma separated lists
5352 expand_list () {
5353     local list=${1//,/ }
5354     local expand=${2//,/ }
5355     local expanded=
5356
5357     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
5358     echo $(comma_list $expanded)
5359 }
5360
5361 testslist_filter () {
5362     local script=$LUSTRE/tests/${TESTSUITE}.sh
5363
5364     [ -f $script ] || return 0
5365
5366     local start_at=$START_AT
5367     local stop_at=$STOP_AT
5368
5369     local var=${TESTSUITE//-/_}_START_AT
5370     [ x"${!var}" != x ] && start_at=${!var}
5371     var=${TESTSUITE//-/_}_STOP_AT
5372     [ x"${!var}" != x ] && stop_at=${!var}
5373
5374     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
5375         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
5376             /^'${start_at}'$/ {flag = 0}
5377             {if (flag == 1) print $0}
5378             /^'${stop_at}'$/ { flag = 1 }'
5379 }
5380
5381 absolute_path() {
5382     (cd `dirname $1`; echo $PWD/`basename $1`)
5383 }
5384
5385 get_facets () {
5386     local types=${1:-"OST MDS MGS"}
5387
5388     local list=""
5389
5390     for entry in $types; do
5391         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
5392         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
5393
5394         case $type in
5395                 MGS ) list="$list $name";;
5396             MDS|OST|AGT ) local count=${type}COUNT
5397                        for ((i=1; i<=${!count}; i++)) do
5398                           list="$list ${name}$i"
5399                       done;;
5400                   * ) error "Invalid facet type"
5401                  exit 1;;
5402         esac
5403     done
5404     echo $(comma_list $list)
5405 }
5406
5407 ##################################
5408 # Adaptive Timeouts funcs
5409
5410 at_is_enabled() {
5411     # only check mds, we assume at_max is the same on all nodes
5412     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
5413     if [ $at_max -eq 0 ]; then
5414         return 1
5415     else
5416         return 0
5417     fi
5418 }
5419
5420 at_get() {
5421     local facet=$1
5422     local at=$2
5423
5424     # suppose that all ost-s have the same $at value set
5425     [ $facet != "ost" ] || facet=ost1
5426
5427     do_facet $facet "lctl get_param -n $at"
5428 }
5429
5430 at_max_get() {
5431     at_get $1 at_max
5432 }
5433
5434 at_min_get() {
5435         at_get $1 at_min
5436 }
5437
5438 at_max_set() {
5439     local at_max=$1
5440     shift
5441
5442     local facet
5443     local hosts
5444     for facet in $@; do
5445         if [ $facet == "ost" ]; then
5446             facet=$(get_facets OST)
5447         elif [ $facet == "mds" ]; then
5448             facet=$(get_facets MDS)
5449         fi
5450         hosts=$(expand_list $hosts $(facets_hosts $facet))
5451     done
5452
5453     do_nodes $hosts lctl set_param at_max=$at_max
5454 }
5455
5456 ##################################
5457 # OBD_FAIL funcs
5458
5459 drop_request() {
5460 # OBD_FAIL_MDS_ALL_REQUEST_NET
5461     RC=0
5462     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
5463     do_facet client "$1" || RC=$?
5464     do_facet $SINGLEMDS lctl set_param fail_loc=0
5465     return $RC
5466 }
5467
5468 drop_reply() {
5469 # OBD_FAIL_MDS_ALL_REPLY_NET
5470         RC=0
5471         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x122
5472         eval "$@" || RC=$?
5473         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
5474         return $RC
5475 }
5476
5477 drop_reint_reply() {
5478 # OBD_FAIL_MDS_REINT_NET_REP
5479         RC=0
5480         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x119
5481         eval "$@" || RC=$?
5482         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
5483         return $RC
5484 }
5485
5486 drop_update_reply() {
5487 # OBD_FAIL_OUT_UPDATE_NET_REP
5488         local index=$1
5489         shift 1
5490         RC=0
5491         do_facet mds${index} lctl set_param fail_loc=0x1701
5492         do_facet client "$@" || RC=$?
5493         do_facet mds${index} lctl set_param fail_loc=0
5494         return $RC
5495 }
5496
5497 pause_bulk() {
5498 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
5499         RC=0
5500
5501         local timeout=${2:-0}
5502         # default is (obd_timeout / 4) if unspecified
5503         echo "timeout is $timeout/$2"
5504         do_facet ost1 lctl set_param fail_val=$timeout fail_loc=0x80000214
5505         do_facet client "$1" || RC=$?
5506         do_facet client "sync"
5507         do_facet ost1 lctl set_param fail_loc=0
5508         return $RC
5509 }
5510
5511 drop_ldlm_cancel() {
5512 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
5513         local RC=0
5514         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
5515         do_nodes $list lctl set_param fail_loc=0x304
5516
5517         do_facet client "$@" || RC=$?
5518
5519         do_nodes $list lctl set_param fail_loc=0
5520         return $RC
5521 }
5522
5523 drop_bl_callback_once() {
5524         local rc=0
5525         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
5526 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
5527         do_facet client lctl set_param fail_loc=0x80000305
5528         do_facet client "$@" || rc=$?
5529         do_facet client lctl set_param fail_loc=0
5530         do_facet client lctl set_param fail_val=0
5531         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
5532         return $rc
5533 }
5534
5535 drop_bl_callback() {
5536         rc=0
5537         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=0
5538 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
5539         do_facet client lctl set_param fail_loc=0x305
5540         do_facet client "$@" || rc=$?
5541         do_facet client lctl set_param fail_loc=0
5542         do_facet client lctl set_param fail_val=0
5543         do_facet client lctl set_param ldlm.namespaces.*.early_lock_cancel=1
5544         return $rc
5545 }
5546
5547 drop_ldlm_reply() {
5548 #define OBD_FAIL_LDLM_REPLY              0x30c
5549     RC=0
5550     local list=$(comma_list $(mdts_nodes) $(osts_nodes))
5551     do_nodes $list lctl set_param fail_loc=0x30c
5552
5553     do_facet client "$@" || RC=$?
5554
5555     do_nodes $list lctl set_param fail_loc=0
5556     return $RC
5557 }
5558
5559 drop_ldlm_reply_once() {
5560 #define OBD_FAIL_LDLM_REPLY              0x30c
5561     RC=0
5562     local list=$(comma_list $(mdts_nodes) $(osts_nodes))
5563     do_nodes $list lctl set_param fail_loc=0x8000030c
5564
5565     do_facet client "$@" || RC=$?
5566
5567     do_nodes $list lctl set_param fail_loc=0
5568     return $RC
5569 }
5570
5571 clear_failloc() {
5572     facet=$1
5573     pause=$2
5574     sleep $pause
5575     echo "clearing fail_loc on $facet"
5576     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
5577 }
5578
5579 set_nodes_failloc () {
5580         local fv=${3:-0}
5581         do_nodes $(comma_list $1)  lctl set_param fail_val=$fv fail_loc=$2
5582 }
5583
5584 cancel_lru_locks() {
5585         #$LCTL mark "cancel_lru_locks $1 start"
5586         $LCTL set_param -n ldlm.namespaces.*$1*.lru_size=clear
5587         $LCTL get_param ldlm.namespaces.*$1*.lock_unused_count | grep -v '=0'
5588         #$LCTL mark "cancel_lru_locks $1 stop"
5589 }
5590
5591 default_lru_size()
5592 {
5593         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
5594         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
5595         echo "$DEFAULT_LRU_SIZE"
5596 }
5597
5598 lru_resize_enable()
5599 {
5600     lctl set_param ldlm.namespaces.*$1*.lru_size=0
5601 }
5602
5603 lru_resize_disable()
5604 {
5605     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
5606 }
5607
5608 flock_is_enabled()
5609 {
5610         local RC=0
5611         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] && RC=1
5612         return $RC
5613 }
5614
5615 pgcache_empty() {
5616     local FILE
5617     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
5618         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
5619             echo there is still data in page cache $FILE ?
5620             lctl get_param -n $FILE
5621             return 1
5622         fi
5623     done
5624     return 0
5625 }
5626
5627 debugsave() {
5628         DEBUGSAVE="$(lctl get_param -n debug)"
5629         DEBUGSAVE_SERVER=$(do_facet $SINGLEMDS "$LCTL get_param -n debug")
5630 }
5631
5632 debugrestore() {
5633         [ -n "$DEBUGSAVE" ] &&
5634                 do_nodes $CLIENTS "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\""||
5635                 true
5636         DEBUGSAVE=""
5637
5638         [ -n "$DEBUGSAVE_SERVER" ] &&
5639                 do_nodes $(comma_list $(all_server_nodes)) \
5640                          "$LCTL set_param debug=\\\"${DEBUGSAVE_SERVER}\\\"" ||
5641                          true
5642         DEBUGSAVE_SERVER=""
5643 }
5644
5645 debug_size_save() {
5646     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
5647 }
5648
5649 debug_size_restore() {
5650     [ -n "$DEBUG_SIZE_SAVED" ] && \
5651         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
5652     DEBUG_SIZE_SAVED=""
5653 }
5654
5655 start_full_debug_logging() {
5656     debugsave
5657     debug_size_save
5658
5659     local FULLDEBUG=-1
5660     local DEBUG_SIZE=150
5661
5662     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
5663     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
5664 }
5665
5666 stop_full_debug_logging() {
5667     debug_size_restore
5668     debugrestore
5669 }
5670
5671 # prints bash call stack
5672 print_stack_trace() {
5673         local skip=${1:-1}
5674         echo "  Trace dump:"
5675         for (( i=$skip; i < ${#BASH_LINENO[*]} ; i++ )) ; do
5676                 local src=${BASH_SOURCE[$i]}
5677                 local lineno=${BASH_LINENO[$i-1]}
5678                 local funcname=${FUNCNAME[$i]}
5679                 echo "  = $src:$lineno:$funcname()"
5680         done
5681 }
5682
5683 report_error() {
5684         local TYPE=${TYPE:-"FAIL"}
5685
5686         local dump=true
5687         # do not dump logs if $1=false
5688         if [ "x$1" = "xfalse" ]; then
5689                 shift
5690                 dump=false
5691         fi
5692
5693         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
5694         (print_stack_trace 2) >&2
5695         mkdir -p $LOGDIR
5696         # We need to dump the logs on all nodes
5697         if $dump; then
5698                 gather_logs $(comma_list $(nodes_list))
5699         fi
5700
5701         debugrestore
5702         [ "$TESTSUITELOG" ] &&
5703                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
5704         if [ -z "$*" ]; then
5705                 echo "error() without useful message, please fix" > $LOGDIR/err
5706         else
5707                 if [[ `echo $TYPE | grep ^IGNORE` ]]; then
5708                         echo "$@" > $LOGDIR/ignore
5709                 else
5710                         echo "$@" > $LOGDIR/err
5711                 fi
5712         fi
5713
5714         # cleanup the env for failed tests
5715         reset_fail_loc
5716 }
5717
5718 ##################################
5719 # Test interface
5720 ##################################
5721
5722 # usage: stack_trap arg sigspec
5723 #
5724 # stack_trap() behaves like bash's built-in trap, except that it "stacks" the
5725 # command ``arg`` on top of previously defined commands for ``sigspec`` instead
5726 # of overwriting them.
5727 # stacked traps are executed in reverse order of their registration
5728 #
5729 # arg and sigspec have the same meaning as in man (1) trap
5730 stack_trap()
5731 {
5732         local arg="$1"
5733         local sigspec="$2"
5734
5735         # Use "trap -p" to get the quoting right
5736         local old_trap="$(trap -p "$sigspec")"
5737         # Append ";" and remove the leading "trap -- '" added by "trap -p"
5738         old_trap="${old_trap:+"; ${old_trap#trap -- \'}"}"
5739
5740         # Once again, use "trap -p" to get the quoting right
5741         local new_trap="$(trap -- "$arg" "$sigspec"
5742                           trap -p "$sigspec"
5743                           trap -- '' "$sigspec")"
5744
5745         # Remove the trailing "' $sigspec" part added by "trap -p" and merge
5746         #
5747         # The resulting string should be safe to "eval" as it is (supposedly
5748         # correctly) quoted by "trap -p"
5749         eval "${new_trap%\' $sigspec}${old_trap:-"' $sigspec"}"
5750 }
5751
5752 error_noexit() {
5753         report_error "$@"
5754 }
5755
5756 exit_status () {
5757         local status=0
5758         local log=$TESTSUITELOG
5759
5760         [ -f "$log" ] && grep -q FAIL $log && status=1
5761         exit $status
5762 }
5763
5764 error() {
5765         report_error "$@"
5766         exit 1
5767 }
5768
5769 error_exit() {
5770         report_error "$@"
5771         exit 1
5772 }
5773
5774 # use only if we are ignoring failures for this test, bugno required.
5775 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
5776 # e.g. error_ignore bz5494 "your message" or
5777 # error_ignore LU-5494 "your message"
5778 error_ignore() {
5779         local TYPE="IGNORE ($1)"
5780         shift
5781         report_error "$@"
5782 }
5783
5784 error_and_remount() {
5785         report_error "$@"
5786         remount_client $MOUNT
5787         exit 1
5788 }
5789
5790 # Throw an error if it's not running in vm - usually for performance
5791 # verification
5792 error_not_in_vm() {
5793         local virt=$(running_in_vm)
5794         if [[ -n "$virt" ]]; then
5795                 echo "running in VM '$virt', ignore error"
5796                 error_ignore env=$virt "$@"
5797         else
5798                 error "$@"
5799         fi
5800 }
5801
5802 skip_env () {
5803         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
5804 }
5805
5806 skip_noexit() {
5807         echo
5808         log " SKIP: $TESTSUITE $TESTNAME $@"
5809
5810         if [[ -n "$ALWAYS_SKIPPED" ]]; then
5811                 skip_logged $TESTNAME "$@"
5812         else
5813                 mkdir -p $LOGDIR
5814                 echo "$@" > $LOGDIR/skip
5815         fi
5816
5817         [[ -n "$TESTSUITELOG" ]] &&
5818                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
5819 }
5820
5821 skip() {
5822         skip_noexit $@
5823         exit 0
5824 }
5825
5826 build_test_filter() {
5827         EXCEPT="$EXCEPT $(testslist_filter)"
5828
5829         for O in $ONLY; do
5830                 if [[ $O = [0-9]*-[0-9]* ]]; then
5831                         for num in $(seq $(echo $O | tr '-' ' ')); do
5832                                 eval ONLY_$num=true
5833                         done
5834                 else
5835                         eval ONLY_${O}=true
5836                 fi
5837         done
5838
5839     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
5840         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
5841     [ "$EXCEPT_SLOW" ] && \
5842         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
5843     for E in $EXCEPT; do
5844         eval EXCEPT_${E}=true
5845     done
5846     for E in $ALWAYS_EXCEPT; do
5847         eval EXCEPT_ALWAYS_${E}=true
5848     done
5849     for E in $EXCEPT_SLOW; do
5850         eval EXCEPT_SLOW_${E}=true
5851     done
5852     for G in $GRANT_CHECK_LIST; do
5853         eval GCHECK_ONLY_${G}=true
5854         done
5855 }
5856
5857 basetest() {
5858     if [[ $1 = [a-z]* ]]; then
5859         echo $1
5860     else
5861         echo ${1%%[a-z]*}
5862     fi
5863 }
5864
5865 # print a newline if the last test was skipped
5866 export LAST_SKIPPED=
5867 export ALWAYS_SKIPPED=
5868 #
5869 # Main entry into test-framework. This is called with the name and
5870 # description of a test. The name is used to find the function to run
5871 # the test using "test_$name".
5872 #
5873 # This supports a variety of methods of specifying specific test to
5874 # run or not run.  These need to be documented...
5875 #
5876 run_test() {
5877         assert_DIR
5878
5879         export base=$(basetest $1)
5880         if [ -n "$ONLY" ]; then
5881                 testname=ONLY_$1
5882                 if [ ${!testname}x != x ]; then
5883                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
5884                         run_one_logged $1 "$2"
5885                         return $?
5886                 fi
5887                 testname=ONLY_$base
5888                 if [ ${!testname}x != x ]; then
5889                         [ -n "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
5890                         run_one_logged $1 "$2"
5891                         return $?
5892                 fi
5893                 LAST_SKIPPED="y"
5894                 return 0
5895         fi
5896
5897         LAST_SKIPPED="y"
5898         ALWAYS_SKIPPED="y"
5899         testname=EXCEPT_$1
5900         if [ ${!testname}x != x ]; then
5901                 TESTNAME=test_$1 skip_noexit "skipping excluded test $1"
5902                 return 0
5903         fi
5904         testname=EXCEPT_$base
5905         if [ ${!testname}x != x ]; then
5906                 TESTNAME=test_$1 skip_noexit "skipping excluded test $1 (base $base)"
5907                 return 0
5908         fi
5909         testname=EXCEPT_ALWAYS_$1
5910         if [ ${!testname}x != x ]; then
5911                 TESTNAME=test_$1 skip_noexit "skipping ALWAYS excluded test $1"
5912                 return 0
5913         fi
5914         testname=EXCEPT_ALWAYS_$base
5915         if [ ${!testname}x != x ]; then
5916                 TESTNAME=test_$1 skip_noexit "skipping ALWAYS excluded test $1 (base $base)"
5917                 return 0
5918         fi
5919         testname=EXCEPT_SLOW_$1
5920         if [ ${!testname}x != x ]; then
5921                 TESTNAME=test_$1 skip_noexit "skipping SLOW test $1"
5922                 return 0
5923         fi
5924         testname=EXCEPT_SLOW_$base
5925         if [ ${!testname}x != x ]; then
5926                 TESTNAME=test_$1 skip_noexit "skipping SLOW test $1 (base $base)"
5927                 return 0
5928         fi
5929
5930         LAST_SKIPPED=
5931         ALWAYS_SKIPPED=
5932         run_one_logged $1 "$2"
5933
5934         return $?
5935 }
5936
5937 log() {
5938         echo "$*" >&2
5939         load_module ../libcfs/libcfs/libcfs
5940
5941     local MSG="$*"
5942     # Get rid of '
5943     MSG=${MSG//\'/\\\'}
5944     MSG=${MSG//\(/\\\(}
5945     MSG=${MSG//\)/\\\)}
5946     MSG=${MSG//\;/\\\;}
5947     MSG=${MSG//\|/\\\|}
5948     MSG=${MSG//\>/\\\>}
5949     MSG=${MSG//\</\\\<}
5950     MSG=${MSG//\//\\\/}
5951     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
5952 }
5953
5954 trace() {
5955         log "STARTING: $*"
5956         strace -o $TMP/$1.strace -ttt $*
5957         RC=$?
5958         log "FINISHED: $*: rc $RC"
5959         return 1
5960 }
5961
5962 complete () {
5963     local duration=$1
5964
5965     banner test complete, duration $duration sec
5966     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
5967     echo duration $duration >>$TESTSUITELOG
5968 }
5969
5970 pass() {
5971         # Set TEST_STATUS here. It will be used for logging the result.
5972         TEST_STATUS="PASS"
5973
5974         if [[ -f $LOGDIR/err ]]; then
5975                 TEST_STATUS="FAIL"
5976         elif [[ -f $LOGDIR/skip ]]; then
5977                 TEST_STATUS="SKIP"
5978         fi
5979         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
5980 }
5981
5982 check_mds() {
5983     local FFREE=$(do_node $SINGLEMDS \
5984         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
5985     local FTOTAL=$(do_node $SINGLEMDS \
5986         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
5987
5988     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
5989 }
5990
5991 reset_fail_loc () {
5992         echo -n "Resetting fail_loc on all nodes..."
5993         do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 \
5994             fail_val=0 2>/dev/null" || true
5995         echo done.
5996 }
5997
5998
5999 #
6000 # Log a message (on all nodes) padded with "=" before and after.
6001 # Also appends a timestamp and prepends the testsuite name.
6002 #
6003
6004 EQUALS="===================================================================================================="
6005 banner() {
6006     msg="== ${TESTSUITE} $*"
6007     last=${msg: -1:1}
6008     [[ $last != "=" && $last != " " ]] && msg="$msg "
6009     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
6010     # always include at least == after the message
6011     log "$msg== $(date +"%H:%M:%S (%s)")"
6012 }
6013
6014 check_dmesg_for_errors() {
6015         local res
6016         local errors="VFS: Busy inodes after unmount of\|\
6017 ldiskfs_check_descriptors: Checksum for group 0 failed\|\
6018 group descriptors corrupted"
6019
6020         res=$(do_nodes $(comma_list $(nodes_list)) "dmesg" | grep "$errors")
6021         [ -z "$res" ] && return 0
6022         echo "Kernel error detected: $res"
6023         return 1
6024 }
6025
6026 #
6027 # Run a single test function and cleanup after it.
6028 #
6029 # This function should be run in a subshell so the test func can
6030 # exit() without stopping the whole script.
6031 #
6032 run_one() {
6033         local testnum=$1
6034         local message=$2
6035         export tfile=f${testnum}.${TESTSUITE}
6036         export tdir=d${testnum}.${TESTSUITE}
6037         export TESTNAME=test_$testnum
6038         local SAVE_UMASK=`umask`
6039         umask 0022
6040
6041         if ! grep -q $DIR /proc/mounts; then
6042                 $SETUP
6043         fi
6044
6045         banner "test $testnum: $message"
6046         test_${testnum} || error "test_$testnum failed with $?"
6047         cd $SAVE_PWD
6048         reset_fail_loc
6049         check_grant ${testnum} || error "check_grant $testnum failed with $?"
6050         check_node_health
6051         check_dmesg_for_errors || error "Error in dmesg detected"
6052         if [ "$PARALLEL" != "yes" ]; then
6053                 ps auxww | grep -v grep | grep -q multiop &&
6054                                         error "multiop still running"
6055         fi
6056         unset TESTNAME
6057         unset tdir
6058         unset tfile
6059         umask $SAVE_UMASK
6060         $CLEANUP
6061         return 0
6062 }
6063
6064 #
6065 # Wrapper around run_one to ensure:
6066 #  - test runs in subshell
6067 #  - output of test is saved to separate log file for error reporting
6068 #  - test result is saved to data file
6069 #
6070 run_one_logged() {
6071         local BEFORE=$(date +%s)
6072         local TEST_ERROR
6073         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
6074         local test_log=$LOGDIR/$name
6075         local zfs_log_name=${TESTSUITE}.test_${1}.zfs_log
6076         local zfs_debug_log=$LOGDIR/$zfs_log_name
6077         rm -rf $LOGDIR/err
6078         rm -rf $LOGDIR/ignore
6079         rm -rf $LOGDIR/skip
6080         local SAVE_UMASK=$(umask)
6081         umask 0022
6082
6083         echo
6084         log_sub_test_begin test_${1}
6085         (run_one $1 "$2") 2>&1 | tee -i $test_log
6086         local RC=${PIPESTATUS[0]}
6087
6088         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] &&
6089                 echo "test_$1 returned $RC" | tee $LOGDIR/err
6090
6091         duration=$(($(date +%s) - $BEFORE))
6092         pass "$1" "(${duration}s)"
6093
6094         if [[ -f $LOGDIR/err ]]; then
6095                 TEST_ERROR=$(cat $LOGDIR/err)
6096         elif [[ -f $LOGDIR/ignore ]]; then
6097                 TEST_ERROR=$(cat $LOGDIR/ignore)
6098         elif [[ -f $LOGDIR/skip ]]; then
6099                 TEST_ERROR=$(cat $LOGDIR/skip)
6100         fi
6101         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
6102
6103         if [[ "$TEST_STATUS" != "SKIP" ]] && [[ -f $TF_SKIP ]]; then
6104                 rm -f $TF_SKIP
6105         fi
6106
6107         if [ -f $LOGDIR/err ]; then
6108                 log_zfs_info "$zfs_debug_log"
6109                 $FAIL_ON_ERROR && exit $RC
6110         fi
6111
6112         umask $SAVE_UMASK
6113
6114         return 0
6115 }
6116
6117 #
6118 # Print information of skipped tests to result.yml
6119 #
6120 skip_logged(){
6121         log_sub_test_begin $1
6122         shift
6123         log_sub_test_end "SKIP" "0" "0" "$@"
6124 }
6125
6126 canonical_path() {
6127         (cd $(dirname $1); echo $PWD/$(basename $1))
6128 }
6129
6130
6131 check_grant() {
6132         export base=$(basetest $1)
6133         [ "$CHECK_GRANT" == "no" ] && return 0
6134
6135         testnamebase=GCHECK_ONLY_${base}
6136         testname=GCHECK_ONLY_$1
6137         [ ${!testnamebase}x == x -a ${!testname}x == x ] && return 0
6138
6139         echo -n "checking grant......"
6140
6141         local clients=$CLIENTS
6142         [ -z "$clients" ] && clients=$(hostname)
6143
6144         # sync all the data and make sure no pending data on server
6145         do_nodes $clients sync
6146         clients_up # initiate all idling connections
6147
6148         # get client grant
6149         client_grant=$(do_nodes $clients \
6150                 "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" |
6151                 awk '{ total += $1 } END { printf("%0.0f", total) }')
6152
6153         # get server grant
6154         # which is tot_granted less grant_precreate
6155         server_grant=$(do_nodes $(comma_list $(osts_nodes)) \
6156                 "$LCTL get_param "\
6157                 "obdfilter.${FSNAME}-OST*.{tot_granted,tot_pending,grant_precreate}" |
6158                 sed 's/=/ /'| awk '/tot_granted/{ total += $2 };
6159                                 /tot_pending/{ total -= $2 };
6160                                 /grant_precreate/{ total -= $2 };
6161                                 END { printf("%0.0f", total) }')
6162
6163         # check whether client grant == server grant
6164         if [[ $client_grant -ne $server_grant ]]; then
6165                 do_nodes $(comma_list $(osts_nodes)) \
6166                         "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*" \
6167                         "obdfilter.${FSNAME}-OST*.grant_*"
6168                 do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
6169                 error "failed: client:${client_grant} server: ${server_grant}."
6170         else
6171                 echo "pass: client:${client_grant} server: ${server_grant}"
6172         fi
6173 }
6174
6175 ########################
6176 # helper functions
6177
6178 osc_to_ost()
6179 {
6180     osc=$1
6181     ost=`echo $1 | awk -F_ '{print $3}'`
6182     if [ -z $ost ]; then
6183         ost=`echo $1 | sed 's/-osc.*//'`
6184     fi
6185     echo $ost
6186 }
6187
6188 ostuuid_from_index()
6189 {
6190     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6191 }
6192
6193 ostname_from_index() {
6194     local uuid=$(ostuuid_from_index $1)
6195     echo ${uuid/_UUID/}
6196 }
6197
6198 index_from_ostuuid()
6199 {
6200     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
6201 }
6202
6203 mdtuuid_from_index()
6204 {
6205     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
6206 }
6207
6208 # Description:
6209 #   Return unique identifier for given hostname
6210 host_id() {
6211         local host_name=$1
6212         echo $host_name | md5sum | cut -d' ' -f1
6213 }
6214
6215 # Description:
6216 #   Returns list of ip addresses for each interface
6217 local_addr_list() {
6218         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
6219 }
6220
6221 is_local_addr() {
6222         local addr=$1
6223         # Cache address list to avoid mutiple execution of local_addr_list
6224         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
6225         local i
6226         for i in $LOCAL_ADDR_LIST ; do
6227                 [[ "$i" == "$addr" ]] && return 0
6228         done
6229         return 1
6230 }
6231
6232 local_node() {
6233         local host_name=$1
6234         local is_local="IS_LOCAL_$(host_id $host_name)"
6235         if [ -z "${!is_local-}" ] ; then
6236                 eval $is_local=0
6237                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
6238                 is_local_addr "$host_ip" && eval $is_local=1
6239         fi
6240         [[ "${!is_local}" == "1" ]]
6241 }
6242
6243 remote_node () {
6244         local node=$1
6245         local_node $node && return 1
6246         return 0
6247 }
6248
6249 remote_mds ()
6250 {
6251     local node
6252     for node in $(mdts_nodes); do
6253         remote_node $node && return 0
6254     done
6255     return 1
6256 }
6257
6258 remote_mds_nodsh()
6259 {
6260         [ -n "$CLIENTONLY" ] && return 0 || true
6261         remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
6262 }
6263
6264 require_dsh_mds()
6265 {
6266         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" &&
6267                 MSKIPPED=1 && return 1
6268         return 0
6269 }
6270
6271 remote_ost ()
6272 {
6273     local node
6274     for node in $(osts_nodes) ; do
6275         remote_node $node && return 0
6276     done
6277     return 1
6278 }
6279
6280 remote_ost_nodsh()
6281 {
6282         [ -n "$CLIENTONLY" ] && return 0 || true
6283         remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6284 }
6285
6286 require_dsh_ost()
6287 {
6288         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
6289             OSKIPPED=1 && return 1
6290         return 0
6291 }
6292
6293 remote_mgs_nodsh()
6294 {
6295         [ -n "$CLIENTONLY" ] && return 0 || true
6296         local MGS
6297         MGS=$(facet_host mgs)
6298         remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
6299 }
6300
6301 local_mode ()
6302 {
6303     remote_mds_nodsh || remote_ost_nodsh || \
6304         $(single_local_node $(comma_list $(nodes_list)))
6305 }
6306
6307 remote_servers () {
6308     remote_ost && remote_mds
6309 }
6310
6311 # Get the active nodes for facets.
6312 facets_nodes () {
6313         local facets=$1
6314         local facet
6315         local nodes
6316         local nodes_sort
6317         local i
6318
6319         for facet in ${facets//,/ }; do
6320                 nodes="$nodes $(facet_active_host $facet)"
6321         done
6322
6323         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6324         echo -n $nodes_sort
6325 }
6326
6327 # Get name of the active MGS node.
6328 mgs_node () {
6329         echo -n $(facets_nodes $(get_facets MGS))
6330 }
6331
6332 # Get all of the active MDS nodes.
6333 mdts_nodes () {
6334         echo -n $(facets_nodes $(get_facets MDS))
6335 }
6336
6337 # Get all of the active OSS nodes.
6338 osts_nodes () {
6339         echo -n $(facets_nodes $(get_facets OST))
6340 }
6341
6342 # Get all of the active AGT (HSM agent) nodes.
6343 agts_nodes () {
6344         echo -n $(facets_nodes $(get_facets AGT))
6345 }
6346
6347 # Get all of the client nodes and active server nodes.
6348 nodes_list () {
6349         local nodes=$HOSTNAME
6350         local nodes_sort
6351         local i
6352
6353         # CLIENTS (if specified) contains the local client
6354         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6355
6356         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6357                 nodes="$nodes $(facets_nodes $(get_facets))"
6358         fi
6359
6360         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6361         echo -n $nodes_sort
6362 }
6363
6364 # Get all of the remote client nodes and remote active server nodes.
6365 remote_nodes_list () {
6366         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
6367 }
6368
6369 # Get all of the MDS nodes, including active and passive nodes.
6370 all_mdts_nodes () {
6371         local host
6372         local failover_host
6373         local nodes="${mds_HOST} ${mdsfailover_HOST}"
6374         local nodes_sort
6375         local i
6376
6377         for i in $(seq $MDSCOUNT); do
6378                 host=mds${i}_HOST
6379                 failover_host=mds${i}failover_HOST
6380                 nodes="$nodes ${!host} ${!failover_host}"
6381         done
6382
6383         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6384         echo -n $nodes_sort
6385 }
6386
6387 # Get all of the OSS nodes, including active and passive nodes.
6388 all_osts_nodes () {
6389         local host
6390         local failover_host
6391         local nodes="${ost_HOST} ${ostfailover_HOST}"
6392         local nodes_sort
6393         local i
6394
6395         for i in $(seq $OSTCOUNT); do
6396                 host=ost${i}_HOST
6397                 failover_host=ost${i}failover_HOST
6398                 nodes="$nodes ${!host} ${!failover_host}"
6399         done
6400
6401         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6402         echo -n $nodes_sort
6403 }
6404
6405 # Get all of the server nodes, including active and passive nodes.
6406 all_server_nodes () {
6407         local nodes
6408         local nodes_sort
6409         local i
6410
6411         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
6412
6413         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6414         echo -n $nodes_sort
6415 }
6416
6417 # Get all of the client and server nodes, including active and passive nodes.
6418 all_nodes () {
6419         local nodes=$HOSTNAME
6420         local nodes_sort
6421         local i
6422
6423         # CLIENTS (if specified) contains the local client
6424         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
6425
6426         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
6427                 nodes="$nodes $(all_server_nodes)"
6428         fi
6429
6430         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
6431         echo -n $nodes_sort
6432 }
6433
6434 init_clients_lists () {
6435     # Sanity check: exclude the local client from RCLIENTS
6436     local clients=$(hostlist_expand "$RCLIENTS")
6437     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
6438
6439     # Sanity check: exclude the dup entries
6440     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
6441
6442     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
6443
6444     # Sanity check: exclude the dup entries from CLIENTS
6445     # for those configs which has SINGLCLIENT set to local client
6446     clients=$(for i in $clients; do echo $i; done | sort -u)
6447
6448     CLIENTS=$(comma_list $clients)
6449     local -a remoteclients=($RCLIENTS)
6450     for ((i=0; $i<${#remoteclients[@]}; i++)); do
6451             varname=CLIENT$((i + 2))
6452             eval $varname=${remoteclients[i]}
6453     done
6454
6455     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
6456 }
6457
6458 get_random_entry () {
6459     local rnodes=$1
6460
6461     rnodes=${rnodes//,/ }
6462
6463     local -a nodes=($rnodes)
6464     local num=${#nodes[@]}
6465     local i=$((RANDOM * num * 2 / 65536))
6466
6467     echo ${nodes[i]}
6468 }
6469
6470 client_only () {
6471         [ -n "$CLIENTONLY" ] || [ "x$CLIENTMODSONLY" = "xyes" ]
6472 }
6473
6474 check_versions () {
6475     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
6476       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
6477 }
6478
6479 get_node_count() {
6480     local nodes="$@"
6481     echo $nodes | wc -w || true
6482 }
6483
6484 mixed_ost_devs () {
6485     local nodes=$(osts_nodes)
6486     local osscount=$(get_node_count "$nodes")
6487     [ ! "$OSTCOUNT" = "$osscount" ]
6488 }
6489
6490 mixed_mdt_devs () {
6491     local nodes=$(mdts_nodes)
6492     local mdtcount=$(get_node_count "$nodes")
6493     [ ! "$MDSCOUNT" = "$mdtcount" ]
6494 }
6495
6496 generate_machine_file() {
6497     local nodes=${1//,/ }
6498     local machinefile=$2
6499     rm -f $machinefile
6500     for node in $nodes; do
6501         echo $node >>$machinefile || \
6502             { echo "can not generate machinefile $machinefile" && return 1; }
6503     done
6504 }
6505
6506 get_stripe () {
6507         local file=$1/stripe
6508
6509         touch $file
6510         $LFS getstripe -v $file || error "getstripe $file failed"
6511         rm -f $file
6512 }
6513
6514 setstripe_nfsserver () {
6515         local dir=$1
6516         local nfsexportdir=$2
6517         shift
6518         shift
6519
6520         local -a nfsexport=($(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
6521                 { print $1 }' /proc/mounts | cut -f 1 -d :))
6522
6523         # check that only one nfs mounted
6524         [[ -z $nfsexport ]] && echo "$dir is not nfs mounted" && return 1
6525         (( ${#nfsexport[@]} == 1 )) ||
6526                 error "several nfs mounts found for $dir: ${nfsexport[@]} !"
6527
6528         do_nodev ${nfsexport[0]} lfs setstripe $nfsexportdir "$@"
6529 }
6530
6531 # Check and add a test group.
6532 add_group() {
6533         local group_id=$1
6534         local group_name=$2
6535         local rc=0
6536
6537         local gid=$(getent group $group_name | cut -d: -f3)
6538         if [[ -n "$gid" ]]; then
6539                 [[ "$gid" -eq "$group_id" ]] || {
6540                         error_noexit "inconsistent group ID:" \
6541                                      "new: $group_id, old: $gid"
6542                         rc=1
6543                 }
6544         else
6545                 groupadd -g $group_id $group_name
6546                 rc=${PIPESTATUS[0]}
6547         fi
6548
6549         return $rc
6550 }
6551
6552 # Check and add a test user.
6553 add_user() {
6554         local user_id=$1
6555         shift
6556         local user_name=$1
6557         shift
6558         local group_name=$1
6559         shift
6560         local home=$1
6561         shift
6562         local opts="$@"
6563         local rc=0
6564
6565         local uid=$(getent passwd $user_name | cut -d: -f3)
6566         if [[ -n "$uid" ]]; then
6567                 if [[ "$uid" -eq "$user_id" ]]; then
6568                         local dir=$(getent passwd $user_name | cut -d: -f6)
6569                         if [[ "$dir" != "$home" ]]; then
6570                                 mkdir -p $home
6571                                 usermod -d $home $user_name
6572                                 rc=${PIPESTATUS[0]}
6573                         fi
6574                 else
6575                         error_noexit "inconsistent user ID:" \
6576                                      "new: $user_id, old: $uid"
6577                         rc=1
6578                 fi
6579         else
6580                 mkdir -p $home
6581                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
6582                 rc=${PIPESTATUS[0]}
6583         fi
6584
6585         return $rc
6586 }
6587
6588 check_runas_id_ret() {
6589     local myRC=0
6590     local myRUNAS_UID=$1
6591     local myRUNAS_GID=$2
6592     shift 2
6593     local myRUNAS=$@
6594     if [ -z "$myRUNAS" ]; then
6595         error_exit "myRUNAS command must be specified for check_runas_id"
6596     fi
6597     if $GSS_KRB5; then
6598         $myRUNAS krb5_login.sh || \
6599             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
6600     fi
6601     mkdir $DIR/d0_runas_test
6602     chmod 0755 $DIR
6603     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
6604     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
6605     rm -rf $DIR/d0_runas_test
6606     return $myRC
6607 }
6608
6609 check_runas_id() {
6610     local myRUNAS_UID=$1
6611     local myRUNAS_GID=$2
6612     shift 2
6613     local myRUNAS=$@
6614     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
6615         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
6616         Please set RUNAS_ID to some UID which exists on MDS and client or
6617         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
6618 }
6619
6620 # obtain the UID/GID for MPI_USER
6621 get_mpiuser_id() {
6622     local mpi_user=$1
6623
6624     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
6625 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
6626
6627     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
6628 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
6629 }
6630
6631 # obtain and cache Kerberos ticket-granting ticket
6632 refresh_krb5_tgt() {
6633     local myRUNAS_UID=$1
6634     local myRUNAS_GID=$2
6635     shift 2
6636     local myRUNAS=$@
6637     if [ -z "$myRUNAS" ]; then
6638         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
6639     fi
6640
6641     CLIENTS=${CLIENTS:-$HOSTNAME}
6642     do_nodes $CLIENTS "set -x
6643 if ! $myRUNAS krb5_login.sh; then
6644     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
6645     exit 1
6646 fi"
6647 }
6648
6649 # Run multiop in the background, but wait for it to print
6650 # "PAUSING" to its stdout before returning from this function.
6651 multiop_bg_pause() {
6652     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
6653     FILE=$1
6654     ARGS=$2
6655
6656     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
6657     mkfifo $TMPPIPE
6658
6659     echo "$MULTIOP_PROG $FILE v$ARGS"
6660     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
6661
6662     echo "TMPPIPE=${TMPPIPE}"
6663     read -t 60 multiop_output < $TMPPIPE
6664     if [ $? -ne 0 ]; then
6665         rm -f $TMPPIPE
6666         return 1
6667     fi
6668     rm -f $TMPPIPE
6669     if [ "$multiop_output" != "PAUSING" ]; then
6670         echo "Incorrect multiop output: $multiop_output"
6671         kill -9 $PID
6672         return 1
6673     fi
6674
6675     return 0
6676 }
6677
6678 do_and_time () {
6679     local cmd=$1
6680     local rc
6681
6682     SECONDS=0
6683     eval '$cmd'
6684
6685     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
6686
6687     echo $SECONDS
6688     return $rc
6689 }
6690
6691 inodes_available () {
6692         local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{ print $4 }' |
6693                 sort -un | head -n1) || return 1
6694         echo $((IFree))
6695 }
6696
6697 mdsrate_inodes_available () {
6698         local min_inodes=$(inodes_available)
6699         echo $((min_inodes * 99 / 100))
6700 }
6701
6702 # reset stat counters
6703 clear_stats() {
6704         local paramfile="$1"
6705         lctl set_param -n $paramfile=0
6706 }
6707
6708 # sum stat items
6709 calc_stats() {
6710         local paramfile="$1"
6711         local stat="$2"
6712         lctl get_param -n $paramfile |
6713                 awk '/^'$stat'/ { sum += $2 } END { printf("%0.0f", sum) }'
6714 }
6715
6716 calc_sum () {
6717         awk '{sum += $1} END { printf("%0.0f", sum) }'
6718 }
6719
6720 calc_osc_kbytes () {
6721         $LFS df $MOUNT > /dev/null
6722         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
6723 }
6724
6725 # save_lustre_params(comma separated facet list, parameter_mask)
6726 # generate a stream of formatted strings (<facet> <param name>=<param value>)
6727 save_lustre_params() {
6728         local facets=$1
6729         local facet
6730         local facet_svc
6731
6732         for facet in ${facets//,/ }; do
6733                 facet_svc=$(facet_svc $facet)
6734                 do_facet $facet \
6735                         "params=\\\$($LCTL get_param $2);
6736                          [[ -z \\\"$facet_svc\\\" ]] && param= ||
6737                          param=\\\$(grep $facet_svc <<< \\\"\\\$params\\\");
6738                          [[ -z \\\$param ]] && param=\\\"\\\$params\\\";
6739                          while read s; do echo $facet \\\$s;
6740                          done <<< \\\"\\\$param\\\""
6741         done
6742 }
6743
6744 # restore lustre parameters from input stream, produces by save_lustre_params
6745 restore_lustre_params() {
6746         local facet
6747         local name
6748         local val
6749
6750         while IFS=" =" read facet name val; do
6751                 do_facet $facet "$LCTL set_param -n $name=$val"
6752         done
6753 }
6754
6755 check_node_health() {
6756         local nodes=${1:-$(comma_list $(nodes_list))}
6757
6758         for node in ${nodes//,/ }; do
6759                 check_network "$node" 5
6760                 if [ $? -eq 0 ]; then
6761                         do_node $node "rc=0;
6762                         val=\\\$($LCTL get_param -n catastrophe 2>&1);
6763                         if [[ \\\$? -eq 0 && \\\$val -ne 0 ]]; then
6764                                 echo \\\$(hostname -s): \\\$val;
6765                                 rc=\\\$val;
6766                         fi;
6767                         exit \\\$rc" || error "$node:LBUG/LASSERT detected"
6768                 fi
6769         done
6770 }
6771
6772 mdsrate_cleanup () {
6773         if [ -d $4 ]; then
6774                 mpi_run ${MACHINEFILE_OPTION} $2 -np $1 ${MDSRATE} --unlink \
6775                         --nfiles $3 --dir $4 --filefmt $5 $6
6776                 rmdir $4
6777         fi
6778 }
6779
6780 delayed_recovery_enabled () {
6781     local var=${SINGLEMDS}_svc
6782     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
6783 }
6784
6785 ########################
6786
6787 convert_facet2label() {
6788     local facet=$1
6789
6790     if [ x$facet = xost ]; then
6791        facet=ost1
6792     fi
6793
6794     local varsvc=${facet}_svc
6795
6796     if [ -n ${!varsvc} ]; then
6797         echo ${!varsvc}
6798     else
6799         error "No lablel for $facet!"
6800     fi
6801 }
6802
6803 get_clientosc_proc_path() {
6804         echo "${1}-osc-ffff*"
6805 }
6806
6807 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
6808 # used by MDT would not be changed.
6809 # mdt lov: fsname-mdtlov
6810 # mdt osc: fsname-OSTXXXX-osc
6811 mds_on_old_device() {
6812     local mds=${1:-"$SINGLEMDS"}
6813
6814     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
6815         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
6816             > /dev/null 2>&1" && return 0
6817     fi
6818     return 1
6819 }
6820
6821 get_mdtosc_proc_path() {
6822         local mds_facet=$1
6823         local ost_label=${2:-"*OST*"}
6824
6825         [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
6826         local mdt_label=$(convert_facet2label $mds_facet)
6827         local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
6828
6829         if [[ $ost_label = *OST* ]]; then
6830                 echo "${ost_label}-osc-${mdt_index}"
6831         else
6832                 echo "${ost_label}-osp-${mdt_index}"
6833         fi
6834 }
6835
6836 get_osc_import_name() {
6837     local facet=$1
6838     local ost=$2
6839     local label=$(convert_facet2label $ost)
6840
6841     if [ "${facet:0:3}" = "mds" ]; then
6842         get_mdtosc_proc_path $facet $label
6843         return 0
6844     fi
6845
6846     get_clientosc_proc_path $label
6847     return 0
6848 }
6849
6850 _wait_import_state () {
6851     local expected=$1
6852     local CONN_PROC=$2
6853     local maxtime=${3:-$(max_recovery_time)}
6854     local error_on_failure=${4:-1}
6855     local CONN_STATE
6856     local i=0
6857
6858         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
6859     while ! echo "${CONN_STATE}" | egrep -q "^${expected}\$" ; do
6860         if [ "${expected}" == "DISCONN" ]; then
6861             # for disconn we can check after proc entry is removed
6862             [ "x${CONN_STATE}" == "x" ] && return 0
6863             #  with AT enabled, we can have connect request timeout near of
6864             # reconnect timeout and test can't see real disconnect
6865             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
6866         fi
6867         if [ $i -ge $maxtime ]; then
6868             [ $error_on_failure -ne 0 ] && \
6869                 error "can't put import for $CONN_PROC into ${expected}" \
6870                       "state after $i sec, have ${CONN_STATE}"
6871             return 1
6872         fi
6873         sleep 1
6874         # Add uniq for multi-mount case
6875         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
6876         i=$(($i + 1))
6877     done
6878
6879     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
6880     return 0
6881 }
6882
6883 wait_import_state() {
6884     local state=$1
6885     local params=$2
6886     local maxtime=${3:-$(max_recovery_time)}
6887     local error_on_failure=${4:-1}
6888     local param
6889
6890     for param in ${params//,/ }; do
6891         _wait_import_state $state $param $maxtime $error_on_failure || return
6892     done
6893 }
6894
6895 wait_import_state_mount() {
6896         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
6897                 return 0
6898         fi
6899
6900         wait_import_state $*
6901 }
6902
6903 # One client request could be timed out because server was not ready
6904 # when request was sent by client.
6905 # The request timeout calculation details :
6906 # ptl_send_rpc ()
6907 #      /* We give the server rq_timeout secs to process the req, and
6908 #      add the network latency for our local timeout. */
6909 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
6910 #           ptlrpc_at_get_net_latency(request) ;
6911 #
6912 # ptlrpc_connect_import ()
6913 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
6914 #
6915 # init_imp_at () ->
6916 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
6917 # ptlrpc_at_get_net_latency(request) ->
6918 #       at_get (max (iat_net_latency=0, at_min)) = at_min
6919 #
6920 # i.e.:
6921 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
6922 # INITIAL_CONNECT_TIMEOUT + at_min
6923 #
6924 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
6925 # because we can not get this value in runtime,
6926 # the value depends on configure options, and it is not stored in /proc.
6927 # obd_support.h:
6928 # #define CONNECTION_SWITCH_MIN 5U
6929 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
6930
6931 request_timeout () {
6932     local facet=$1
6933
6934     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
6935     local init_connect_timeout=$TIMEOUT
6936     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
6937
6938     local at_min=$(at_get $facet at_min)
6939
6940     echo $(( init_connect_timeout + at_min ))
6941 }
6942
6943 _wait_osc_import_state() {
6944         local facet=$1
6945         local ost_facet=$2
6946         local expected=$3
6947         local target=$(get_osc_import_name $facet $ost_facet)
6948         local param="osc.${target}.ost_server_uuid"
6949         local params=$param
6950         local i=0
6951
6952         # 1. wait the deadline of client 1st request (it could be skipped)
6953         # 2. wait the deadline of client 2nd request
6954         local maxtime=$(( 2 * $(request_timeout $facet)))
6955
6956         if [[ $facet == client* ]]; then
6957                 # During setup time, the osc might not be setup, it need wait
6958                 # until list_param can return valid value.
6959                 params=$($LCTL list_param $param 2>/dev/null || true)
6960                 while [ -z "$params" ]; do
6961                         if [ $i -ge $maxtime ]; then
6962                                 echo "can't get $param in $maxtime secs"
6963                                 return 1
6964                         fi
6965                         sleep 1
6966                         i=$((i + 1))
6967                         params=$($LCTL list_param $param 2>/dev/null || true)
6968                 done
6969         fi
6970
6971         if [[ $ost_facet = mds* ]]; then
6972                 # no OSP connection to itself
6973                 if [[ $facet = $ost_facet ]]; then
6974                         return 0
6975                 fi
6976                 param="osp.${target}.mdt_server_uuid"
6977                 params=$param
6978         fi
6979
6980         if ! do_rpc_nodes "$(facet_active_host $facet)" \
6981                         wait_import_state $expected "$params" $maxtime; then
6982                 error "$facet: import is not in $expected state after $maxtime"
6983                 return 1
6984         fi
6985
6986         return 0
6987 }
6988
6989 wait_osc_import_state() {
6990         local facet=$1
6991         local ost_facet=$2
6992         local expected=$3
6993         local num
6994
6995         if [[ $facet = mds ]]; then
6996                 for num in $(seq $MDSCOUNT); do
6997                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
6998                 done
6999         else
7000                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
7001         fi
7002 }
7003
7004 wait_osc_import_ready() {
7005         wait_osc_import_state $1 $2 "\(FULL\|IDLE\)"
7006 }
7007
7008 _wait_mgc_import_state() {
7009         local facet=$1
7010         local expected=$2
7011         local error_on_failure=${3:-1}
7012         local param="mgc.*.mgs_server_uuid"
7013         local params=$param
7014         local i=0
7015
7016         # 1. wait the deadline of client 1st request (it could be skipped)
7017         # 2. wait the deadline of client 2nd request
7018         local maxtime=$(( 2 * $(request_timeout $facet)))
7019
7020         if [[ $facet == client* ]]; then
7021                 # During setup time, the osc might not be setup, it need wait
7022                 # until list_param can return valid value. And also if there
7023                 # are mulitple osc entries we should list all of them before
7024                 # go to wait.
7025                 params=$($LCTL list_param $param 2>/dev/null || true)
7026                 while [ -z "$params" ]; do
7027                         if [ $i -ge $maxtime ]; then
7028                                 echo "can't get $param in $maxtime secs"
7029                                 return 1
7030                         fi
7031                         sleep 1
7032                         i=$((i + 1))
7033                         params=$($LCTL list_param $param 2>/dev/null || true)
7034                 done
7035         fi
7036         if ! do_rpc_nodes "$(facet_active_host $facet)" \
7037                         wait_import_state $expected "$params" $maxtime \
7038                                           $error_on_failure; then
7039                 if [ $error_on_failure -ne 0 ]; then
7040                     error "import is not in ${expected} state"
7041                 fi
7042                 return 1
7043         fi
7044
7045         return 0
7046 }
7047
7048 wait_mgc_import_state() {
7049         local facet=$1
7050         local expected=$2
7051         local error_on_failure=${3:-1}
7052         local num
7053
7054         if [[ $facet = mds ]]; then
7055                 for num in $(seq $MDSCOUNT); do
7056                         _wait_mgc_import_state mds$num "$expected" \
7057                                                $error_on_failure || return
7058                 done
7059         else
7060                 _wait_mgc_import_state "$facet" "$expected"
7061                                        $error_on_failure || return
7062         fi
7063 }
7064
7065 wait_dne_interconnect() {
7066         local num
7067
7068         if [ $MDSCOUNT -gt 1 ]; then
7069                 for num in $(seq $MDSCOUNT); do
7070                         wait_osc_import_ready mds mds$num
7071                 done
7072         fi
7073 }
7074
7075 get_clientmdc_proc_path() {
7076     echo "${1}-mdc-*"
7077 }
7078
7079 get_clientmgc_proc_path() {
7080     echo "*"
7081 }
7082
7083 do_rpc_nodes () {
7084         local list=$1
7085         shift
7086
7087         [ -z "$list" ] && return 0
7088
7089         # Add paths to lustre tests for 32 and 64 bit systems.
7090         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
7091         local TESTPATH="$RLUSTRE/tests:"
7092         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
7093         do_nodesv $list "${RPATH} NAME=${NAME} bash rpc.sh $@ "
7094 }
7095
7096 wait_clients_import_state () {
7097         local list=$1
7098         local facet=$2
7099         local expected=$3
7100
7101         local facets=$facet
7102
7103         if [ "$FAILURE_MODE" = HARD ]; then
7104                 facets=$(facets_on_host $(facet_active_host $facet))
7105         fi
7106
7107         for facet in ${facets//,/ }; do
7108                 local label=$(convert_facet2label $facet)
7109                 local proc_path
7110                 case $facet in
7111                 ost* ) proc_path="osc.$(get_clientosc_proc_path \
7112                                   $label).ost_server_uuid" ;;
7113                 mds* ) proc_path="mdc.$(get_clientmdc_proc_path \
7114                                   $label).mds_server_uuid" ;;
7115                 mgs* ) proc_path="mgc.$(get_clientmgc_proc_path \
7116                                   $label).mgs_server_uuid" ;;
7117                 *) error "unknown facet!" ;;
7118                 esac
7119
7120                 local params=$(expand_list $params $proc_path)
7121         done
7122
7123         if ! do_rpc_nodes "$list" wait_import_state_mount "$expected" $params;
7124         then
7125                 error "import is not in ${expected} state"
7126                 return 1
7127         fi
7128 }
7129
7130 wait_osp_active() {
7131         local facet=$1
7132         local tgt_name=$2
7133         local tgt_idx=$3
7134         local expected=$4
7135         local num
7136
7137         # wait until all MDTs are in the expected state
7138         for ((num = 1; num <= $MDSCOUNT; num++)); do
7139                 local mdtosp=$(get_mdtosc_proc_path mds${num} ${tgt_name})
7140                 local mproc
7141
7142                 if [ $facet = "mds" ]; then
7143                         mproc="osp.$mdtosp.active"
7144                         [ $num -eq $((tgt_idx + 1)) ] && continue
7145                 else
7146                         mproc="osc.$mdtosp.active"
7147                 fi
7148
7149                 echo "check $mproc"
7150                 while [ 1 ]; do
7151                         sleep 5
7152                         local result=$(do_facet mds${num} "$LCTL get_param -n $mproc")
7153                         local max=30
7154                         local wait=0
7155
7156                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $mproc"
7157                         if [ $result -eq $expected ]; then
7158                                 echo -n "target updated after"
7159                                 echo "$wait sec (got $result)"
7160                                 break
7161                         fi
7162                         wait=$((wait + 5))
7163                         if [ $wait -eq $max ]; then
7164                                 error "$tgt_name: wanted $expected got $result"
7165                         fi
7166                         echo "Waiting $((max - wait)) secs for $tgt_name"
7167                 done
7168         done
7169 }
7170
7171 oos_full() {
7172         local -a AVAILA
7173         local -a GRANTA
7174         local -a TOTALA
7175         local OSCFULL=1
7176         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
7177                   $LCTL get_param obdfilter.*.kbytesavail))
7178         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
7179                   $LCTL get_param -n obdfilter.*.tot_granted))
7180         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
7181                   $LCTL get_param -n obdfilter.*.kbytestotal))
7182         for ((i=0; i<${#AVAILA[@]}; i++)); do
7183                 local -a AVAIL1=(${AVAILA[$i]//=/ })
7184                 local -a TOTAL=(${TOTALA[$i]//=/ })
7185                 GRANT=$((${GRANTA[$i]}/1024))
7186                 # allow 1% of total space in bavail because of delayed
7187                 # allocation with ZFS which might release some free space after
7188                 # txg commit.  For small devices, we set a mininum of 8MB
7189                 local LIMIT=$((${TOTAL} / 100 + 8000))
7190                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
7191                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
7192                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
7193                         echo " FULL" || echo
7194         done
7195         return $OSCFULL
7196 }
7197
7198 list_pool() {
7199         echo -e "$(do_facet $SINGLEMDS $LCTL pool_list $1 | sed '1d')"
7200 }
7201
7202 check_pool_not_exist() {
7203         local fsname=${1%%.*}
7204         local poolname=${1##$fsname.}
7205         [[ $# -ne 1 ]] && return 0
7206         [[ x$poolname = x ]] &&  return 0
7207         list_pool $fsname | grep -w $1 && return 1
7208         return 0
7209 }
7210
7211 create_pool() {
7212         local fsname=${1%%.*}
7213         local poolname=${1##$fsname.}
7214
7215         stack_trap "destroy_test_pools $fsname" EXIT
7216         do_facet mgs lctl pool_new $1
7217         local RC=$?
7218         # get param should return err unless pool is created
7219         [[ $RC -ne 0 ]] && return $RC
7220
7221         for mds_id in $(seq $MDSCOUNT); do
7222                 local mdt_id=$((mds_id-1))
7223                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7224                 wait_update_facet mds$mds_id \
7225                         "lctl get_param -n lod.$lodname.pools.$poolname \
7226                                 2>/dev/null || echo foo" "" ||
7227                         error "mds$mds_id: pool_new failed $1"
7228         done
7229         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7230                 2>/dev/null || echo foo" "" || error "pool_new failed $1"
7231
7232         add_pool_to_list $1
7233         return $RC
7234 }
7235
7236 add_pool_to_list () {
7237         local fsname=${1%%.*}
7238         local poolname=${1##$fsname.}
7239
7240         local listvar=${fsname}_CREATED_POOLS
7241         local temp=${listvar}=$(expand_list ${!listvar} $poolname)
7242         eval export $temp
7243 }
7244
7245 remove_pool_from_list () {
7246         local fsname=${1%%.*}
7247         local poolname=${1##$fsname.}
7248
7249         local listvar=${fsname}_CREATED_POOLS
7250         local temp=${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
7251         eval export $temp
7252 }
7253
7254 destroy_pool_int() {
7255         local ost
7256         local OSTS=$(list_pool $1)
7257         for ost in $OSTS; do
7258                 do_facet mgs lctl pool_remove $1 $ost
7259         done
7260         do_facet mgs lctl pool_destroy $1
7261 }
7262
7263 # <fsname>.<poolname> or <poolname>
7264 destroy_pool() {
7265         local fsname=${1%%.*}
7266         local poolname=${1##$fsname.}
7267
7268         [[ x$fsname = x$poolname ]] && fsname=$FSNAME
7269
7270         local RC
7271
7272         check_pool_not_exist $fsname.$poolname
7273         [[ $? -eq 0 ]] && return 0
7274
7275         destroy_pool_int $fsname.$poolname
7276         RC=$?
7277         [[ $RC -ne 0 ]] && return $RC
7278         for mds_id in $(seq $MDSCOUNT); do
7279                 local mdt_id=$((mds_id-1))
7280                 local lodname=$fsname-MDT$(printf "%04x" $mdt_id)-mdtlov
7281                 wait_update_facet mds$mds_id \
7282                         "lctl get_param -n lod.$lodname.pools.$poolname \
7283                                 2>/dev/null || echo foo" "foo" ||
7284                         error "mds$mds_id: destroy pool failed $1"
7285         done
7286         wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
7287                 2>/dev/null || echo foo" "foo" || error "destroy pool failed $1"
7288
7289         remove_pool_from_list $fsname.$poolname
7290
7291         return $RC
7292 }
7293
7294 destroy_pools () {
7295         local fsname=${1:-$FSNAME}
7296         local poolname
7297         local listvar=${fsname}_CREATED_POOLS
7298
7299         [ x${!listvar} = x ] && return 0
7300
7301         echo "Destroy the created pools: ${!listvar}"
7302         for poolname in ${!listvar//,/ }; do
7303                 destroy_pool $fsname.$poolname
7304         done
7305 }
7306
7307 destroy_test_pools () {
7308         trap 0
7309         local fsname=${1:-$FSNAME}
7310         destroy_pools $fsname || true
7311 }
7312
7313 gather_logs () {
7314     local list=$1
7315
7316     local ts=$(date +%s)
7317     local docp=true
7318
7319     if [[ ! -f "$YAML_LOG" ]]; then
7320         # init_logging is not performed before gather_logs,
7321         # so the $LOGDIR needs to be checked here
7322         check_shared_dir $LOGDIR && touch $LOGDIR/shared
7323     fi
7324
7325     [ -f $LOGDIR/shared ] && docp=false
7326
7327     # dump lustre logs, dmesg
7328
7329     prefix="$TESTLOG_PREFIX.$TESTNAME"
7330     suffix="$ts.log"
7331     echo "Dumping lctl log to ${prefix}.*.${suffix}"
7332
7333     if [ -n "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
7334         echo "Dumping logs only on local client."
7335         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
7336         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
7337         return
7338     fi
7339
7340     do_nodesv $list \
7341         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
7342          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
7343
7344     if [ ! -f $LOGDIR/shared ]; then
7345         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
7346     fi
7347 }
7348
7349 do_ls () {
7350     local mntpt_root=$1
7351     local num_mntpts=$2
7352     local dir=$3
7353     local i
7354     local cmd
7355     local pids
7356     local rc=0
7357
7358     for i in $(seq 0 $num_mntpts); do
7359         cmd="ls -laf ${mntpt_root}$i/$dir"
7360         echo + $cmd;
7361         $cmd > /dev/null &
7362         pids="$pids $!"
7363     done
7364     echo pids=$pids
7365     for pid in $pids; do
7366         wait $pid || rc=$?
7367     done
7368
7369     return $rc
7370 }
7371
7372 # check_and_start_recovery_timer()
7373 #       service_time = at_est2timeout(service_time);
7374 #       service_time += 2 * INITIAL_CONNECT_TIMEOUT;
7375 #       service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
7376
7377 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN, obd_timeout/20)
7378 #define CONNECTION_SWITCH_MAX min(50, max(CONNECTION_SWITCH_MIN, obd_timeout))
7379 #define CONNECTION_SWITCH_MIN 5
7380 #define CONNECTION_SWITCH_INC 5
7381 max_recovery_time() {
7382         local init_connect_timeout=$((TIMEOUT / 20))
7383         ((init_connect_timeout >= 5)) || init_connect_timeout=5
7384
7385         local service_time=$(($(at_max_get client) * 9 / 4 + 5))
7386         service_time=$((service_time + 2 * (init_connect_timeout + 50 + 5)))
7387
7388         echo -n $service_time
7389 }
7390
7391 recovery_time_min() {
7392         local connection_switch_min=5
7393         local connection_switch_inc=5
7394         local connection_switch_max
7395         local reconnect_delay_max
7396         local initial_connect_timeout
7397         local max
7398         local timout_20
7399
7400         #connection_switch_max=min(50, max($connection_switch_min,$TIMEOUT)
7401         (($connection_switch_min > $TIMEOUT)) &&
7402                 max=$connection_switch_min || max=$TIMEOUT
7403         (($max < 50)) && connection_switch_max=$max || connection_switch_max=50
7404
7405         #initial_connect_timeout = max(connection_switch_min, obd_timeout/20)
7406         timeout_20=$((TIMEOUT/20))
7407         (($connection_switch_min > $timeout_20)) &&
7408                 initial_connect_timeout=$connection_switch_min ||
7409                 initial_connect_timeout=$timeout_20
7410
7411         reconnect_delay_max=$((connection_switch_max + connection_switch_inc + \
7412                                initial_connect_timeout))
7413         echo $((2 * reconnect_delay_max))
7414 }
7415
7416 get_clients_mount_count () {
7417         local clients=${CLIENTS:-$HOSTNAME}
7418
7419         # we need to take into account the clients mounts and
7420         # exclude mds/ost mounts if any;
7421         do_nodes $clients cat /proc/mounts | grep lustre |
7422                 grep -w $MOUNT | wc -l
7423 }
7424
7425 # gss functions
7426 PROC_CLI="srpc_info"
7427 PROC_CON="srpc_contexts"
7428
7429 combination()
7430 {
7431     local M=$1
7432     local N=$2
7433     local R=1
7434
7435     if [ $M -lt $N ]; then
7436         R=0
7437     else
7438         N=$((N + 1))
7439         while [ $N -lt $M ]; do
7440             R=$((R * N))
7441             N=$((N + 1))
7442         done
7443     fi
7444
7445     echo $R
7446     return 0
7447 }
7448
7449 calc_connection_cnt() {
7450         local dir=$1
7451
7452         # MDT->MDT = 2 * C(M, 2)
7453         # MDT->OST = M * O
7454         # CLI->OST = C * O
7455         # CLI->MDT = C * M
7456         comb_m2=$(combination $MDSCOUNT 2)
7457
7458         local num_clients=$(get_clients_mount_count)
7459
7460         local cnt_mdt2mdt=$((comb_m2 * 2))
7461         local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
7462         local cnt_cli2ost=$((num_clients * OSTCOUNT))
7463         local cnt_cli2mdt=$((num_clients * MDSCOUNT))
7464         if is_mounted $MOUNT2; then
7465                 cnt_cli2mdt=$((cnt_cli2mdt * 2))
7466                 cnt_cli2ost=$((cnt_cli2ost * 2))
7467         fi
7468         if local_mode; then
7469                 cnt_mdt2mdt=0
7470                 cnt_mdt2ost=0
7471                 cnt_cli2ost=2
7472                 cnt_cli2mdt=1
7473         fi
7474         local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
7475         local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
7476         local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt \
7477                 + cnt_cli2ost + cnt_cli2mdt))
7478
7479         local var=cnt_$dir
7480         local res=${!var}
7481
7482         echo $res
7483 }
7484
7485 set_rule()
7486 {
7487     local tgt=$1
7488     local net=$2
7489     local dir=$3
7490     local flavor=$4
7491     local cmd="$tgt.srpc.flavor"
7492
7493     if [ $net == "any" ]; then
7494         net="default"
7495     fi
7496     cmd="$cmd.$net"
7497
7498     if [ $dir != "any" ]; then
7499         cmd="$cmd.$dir"
7500     fi
7501
7502     cmd="$cmd=$flavor"
7503     log "Setting sptlrpc rule: $cmd"
7504     do_facet mgs "$LCTL conf_param $cmd"
7505 }
7506
7507 count_contexts()
7508 {
7509         local output=$1
7510         local total_ctx=$(echo "$output" | grep -c "expire.*key.*hdl")
7511         echo $total_ctx
7512 }
7513
7514 count_flvr()
7515 {
7516     local output=$1
7517     local flavor=$2
7518     local count=0
7519
7520     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
7521     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
7522
7523     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
7524
7525     if [ "x$bulkspec" != "x" ]; then
7526         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
7527
7528         if [ "x$algs" != "x" ]; then
7529             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
7530         else
7531             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
7532             if [ $bulk == "bulkn" ]; then
7533                 bulk_count=`echo "$output" | grep "bulk flavor" \
7534                             | grep "null/null" | wc -l`
7535             elif [ $bulk == "bulki" ]; then
7536                 bulk_count=`echo "$output" | grep "bulk flavor" \
7537                             | grep "/null" | grep -v "null/" | wc -l`
7538             else
7539                 bulk_count=`echo "$output" | grep "bulk flavor" \
7540                             | grep -v "/null" | grep -v "null/" | wc -l`
7541             fi
7542         fi
7543
7544         [ $bulk_count -lt $count ] && count=$bulk_count
7545     fi
7546
7547     echo $count
7548 }
7549
7550 flvr_cnt_cli2mdt()
7551 {
7552     local flavor=$1
7553     local cnt
7554
7555     local clients=${CLIENTS:-$HOSTNAME}
7556
7557     for c in ${clients//,/ }; do
7558         local output=$(do_node $c lctl get_param -n \
7559                  mdc.*-*-mdc-*.$PROC_CLI 2>/dev/null)
7560         local tmpcnt=$(count_flvr "$output" $flavor)
7561         if $GSS_SK && [ $flavor != "null" ]; then
7562                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7563                 output=$(do_node $c lctl get_param -n \
7564                          mdc.*-MDT*-mdc-*.$PROC_CON 2>/dev/null)
7565                 local outcon=$(count_contexts "$output")
7566                 if [ "$outcon" -lt "$tmpcnt" ]; then
7567                         tmpcnt=$outcon
7568                 fi
7569         fi
7570         cnt=$((cnt + tmpcnt))
7571     done
7572     echo $cnt
7573 }
7574
7575 flvr_cnt_cli2ost()
7576 {
7577     local flavor=$1
7578     local cnt
7579
7580     local clients=${CLIENTS:-$HOSTNAME}
7581
7582     for c in ${clients//,/ }; do
7583         local output=$(do_node $c lctl get_param -n \
7584                  osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null)
7585         local tmpcnt=$(count_flvr "$output" $flavor)
7586         if $GSS_SK && [ $flavor != "null" ]; then
7587                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7588                 output=$(do_node $c lctl get_param -n \
7589                          osc.*OST*-osc-[^M][^D][^T]*.$PROC_CON 2>/dev/null)
7590                 local outcon=$(count_contexts "$output")
7591                 if [ "$outcon" -lt "$tmpcnt" ]; then
7592                         tmpcnt=$outcon
7593                 fi
7594         fi
7595         cnt=$((cnt + tmpcnt))
7596     done
7597     echo $cnt
7598 }
7599
7600 flvr_cnt_mdt2mdt()
7601 {
7602     local flavor=$1
7603     local cnt=0
7604
7605     if [ $MDSCOUNT -le 1 ]; then
7606         echo 0
7607         return
7608     fi
7609
7610     for num in `seq $MDSCOUNT`; do
7611         local output=$(do_facet mds$num lctl get_param -n \
7612                 osp.*-MDT*osp-MDT*.$PROC_CLI 2>/dev/null)
7613         local tmpcnt=$(count_flvr "$output" $flavor)
7614         if $GSS_SK && [ $flavor != "null" ]; then
7615                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7616                 output=$(do_facet mds$num lctl get_param -n \
7617                         osp.*-MDT*osp-MDT*.$PROC_CON 2>/dev/null)
7618                 local outcon=$(count_contexts "$output")
7619                 if [ "$outcon" -lt "$tmpcnt" ]; then
7620                         tmpcnt=$outcon
7621                 fi
7622         fi
7623         cnt=$((cnt + tmpcnt))
7624     done
7625     echo $cnt;
7626 }
7627
7628 flvr_cnt_mdt2ost()
7629 {
7630     local flavor=$1
7631     local cnt=0
7632     local mdtosc
7633
7634     for num in `seq $MDSCOUNT`; do
7635         mdtosc=$(get_mdtosc_proc_path mds$num)
7636         mdtosc=${mdtosc/-MDT*/-MDT\*}
7637         local output=$(do_facet mds$num lctl get_param -n \
7638                  osc.$mdtosc.$PROC_CLI 2>/dev/null)
7639         local tmpcnt=$(count_flvr "$output" $flavor)
7640         if $GSS_SK && [ $flavor != "null" ]; then
7641                 # tmpcnt=min(contexts,flavors) to ensure SK context is on
7642                 output=$(do_facet mds$num lctl get_param -n \
7643                          osc.$mdtosc.$PROC_CON 2>/dev/null)
7644                 local outcon=$(count_contexts "$output")
7645                 if [ "$outcon" -lt "$tmpcnt" ]; then
7646                         tmpcnt=$outcon
7647                 fi
7648         fi
7649         cnt=$((cnt + tmpcnt))
7650     done
7651     echo $cnt;
7652 }
7653
7654 flvr_cnt_mgc2mgs()
7655 {
7656     local flavor=$1
7657
7658     local output=$(do_facet client lctl get_param -n mgc.*.$PROC_CLI \
7659                         2>/dev/null)
7660     count_flvr "$output" $flavor
7661 }
7662
7663 do_check_flavor()
7664 {
7665     local dir=$1        # from to
7666     local flavor=$2     # flavor expected
7667     local res=0
7668
7669     if [ $dir == "cli2mdt" ]; then
7670         res=`flvr_cnt_cli2mdt $flavor`
7671     elif [ $dir == "cli2ost" ]; then
7672         res=`flvr_cnt_cli2ost $flavor`
7673     elif [ $dir == "mdt2mdt" ]; then
7674         res=`flvr_cnt_mdt2mdt $flavor`
7675     elif [ $dir == "mdt2ost" ]; then
7676         res=`flvr_cnt_mdt2ost $flavor`
7677     elif [ $dir == "all2ost" ]; then
7678         res1=`flvr_cnt_mdt2ost $flavor`
7679         res2=`flvr_cnt_cli2ost $flavor`
7680         res=$((res1 + res2))
7681     elif [ $dir == "all2mdt" ]; then
7682         res1=`flvr_cnt_mdt2mdt $flavor`
7683         res2=`flvr_cnt_cli2mdt $flavor`
7684         res=$((res1 + res2))
7685     elif [ $dir == "all2all" ]; then
7686         res1=`flvr_cnt_mdt2ost $flavor`
7687         res2=`flvr_cnt_cli2ost $flavor`
7688         res3=`flvr_cnt_mdt2mdt $flavor`
7689         res4=`flvr_cnt_cli2mdt $flavor`
7690         res=$((res1 + res2 + res3 + res4))
7691     fi
7692
7693     echo $res
7694 }
7695
7696 wait_flavor()
7697 {
7698         local dir=$1        # from to
7699         local flavor=$2     # flavor expected
7700         local expect=${3:-$(calc_connection_cnt $dir)} # number expected
7701         local WAITFLAVOR_MAX=20 # how many retries before abort?
7702
7703         local res=0
7704         for ((i = 0; i < $WAITFLAVOR_MAX; i++)); do
7705                 echo -n "checking $dir..."
7706                 res=$(do_check_flavor $dir $flavor)
7707                 echo "found $res/$expect $flavor connections"
7708                 [ $res -ge $expect ] && return 0
7709                 sleep 4
7710         done
7711
7712         echo "Error checking $flavor of $dir: expect $expect, actual $res"
7713 #       echo "Dumping additional logs for SK debug.."
7714         do_nodes $(comma_list $(all_server_nodes)) "keyctl show"
7715         if $dump; then
7716                 gather_logs $(comma_list $(nodes_list))
7717         fi
7718         return 1
7719 }
7720
7721 restore_to_default_flavor()
7722 {
7723         local proc="mgs.MGS.live.$FSNAME"
7724
7725         echo "restoring to default flavor..."
7726
7727         local nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7728                 grep ".srpc.flavor" | wc -l)
7729
7730         # remove all existing rules if any
7731         if [ $nrule -ne 0 ]; then
7732                 echo "$nrule existing rules"
7733                 for rule in $(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7734                     grep ".srpc.flavor."); do
7735                         echo "remove rule: $rule"
7736                         spec=`echo $rule | awk -F = '{print $1}'`
7737                         do_facet mgs "$LCTL conf_param -d $spec"
7738                 done
7739         fi
7740
7741         # verify no rules left
7742         nrule=$(do_facet mgs lctl get_param -n $proc 2>/dev/null |
7743                 grep ".srpc.flavor." | wc -l)
7744         [ $nrule -ne 0 ] && error "still $nrule rules left"
7745
7746         # wait for default flavor to be applied
7747         if $GSS_SK; then
7748                 if $SK_S2S; then
7749                         set_rule $FSNAME any any $SK_FLAVOR
7750                         wait_flavor all2all $SK_FLAVOR
7751                 else
7752                         set_rule $FSNAME any cli2mdt $SK_FLAVOR
7753                         set_rule $FSNAME any cli2ost $SK_FLAVOR
7754                         wait_flavor cli2mdt $SK_FLAVOR
7755                         wait_flavor cli2ost $SK_FLAVOR
7756                 fi
7757                 echo "GSS_SK now at default flavor: $SK_FLAVOR"
7758         else
7759                 wait_flavor all2all null
7760         fi
7761 }
7762
7763 set_flavor_all()
7764 {
7765         local flavor=${1:-null}
7766
7767         echo "setting all flavor to $flavor"
7768
7769         # FIXME need parameter to this fn
7770         # and remove global vars
7771         local cnt_all2all=$(calc_connection_cnt all2all)
7772
7773         local res=$(do_check_flavor all2all $flavor)
7774         if [ $res -eq $cnt_all2all ]; then
7775                 echo "already have total $res $flavor connections"
7776                 return
7777         fi
7778
7779         echo "found $res $flavor out of total $cnt_all2all connections"
7780         restore_to_default_flavor
7781
7782         [[ $flavor = null ]] && return 0
7783
7784         if $GSS_SK && [ $flavor != "null" ]; then
7785                 if $SK_S2S; then
7786                         set_rule $FSNAME any any $flavor
7787                         wait_flavor all2all $flavor
7788                 else
7789                         set_rule $FSNAME any cli2mdt $flavor
7790                         set_rule $FSNAME any cli2ost $flavor
7791                         set_rule $FSNAME any mdt2ost null
7792                         set_rule $FSNAME any mdt2mdt null
7793                         wait_flavor cli2mdt $flavor
7794                         wait_flavor cli2ost $flavor
7795                 fi
7796                 echo "GSS_SK now at flavor: $flavor"
7797         else
7798                 set_rule $FSNAME any any $flavor
7799                 wait_flavor all2all $flavor
7800         fi
7801 }
7802
7803
7804 check_logdir() {
7805     local dir=$1
7806     # Checking for shared logdir
7807     if [ ! -d $dir ]; then
7808         # Not found. Create local logdir
7809         mkdir -p $dir
7810     else
7811         touch $dir/check_file.$(hostname -s)
7812     fi
7813     return 0
7814 }
7815
7816 check_write_access() {
7817         local dir=$1
7818         local list=${2:-$(comma_list $(nodes_list))}
7819         local node
7820         local file
7821
7822         for node in ${list//,/ }; do
7823                 file=$dir/check_file.$(short_nodename $node)
7824                 if [[ ! -f "$file" ]]; then
7825                         # Logdir not accessible/writable from this node.
7826                         return 1
7827                 fi
7828                 rm -f $file || return 1
7829         done
7830         return 0
7831 }
7832
7833 init_logging() {
7834         [[ -n $YAML_LOG ]] && return
7835         local save_umask=$(umask)
7836         umask 0000
7837
7838         export YAML_LOG=${LOGDIR}/results.yml
7839         mkdir -p $LOGDIR
7840         init_clients_lists
7841
7842         # If the yaml log already exists then we will just append to it
7843         if [ ! -f $YAML_LOG ]; then
7844                 if check_shared_dir $LOGDIR; then
7845                         touch $LOGDIR/shared
7846                         echo "Logging to shared log directory: $LOGDIR"
7847                 else
7848                         echo "Logging to local directory: $LOGDIR"
7849                 fi
7850
7851                 yml_nodes_file $LOGDIR >> $YAML_LOG
7852                 yml_results_file >> $YAML_LOG
7853         fi
7854
7855         umask $save_umask
7856
7857         # If modules are not yet loaded then older "lctl lustre_build_version"
7858         # will fail.  Use lctl build version instead.
7859         log "Client: $($LCTL lustre_build_version)"
7860         log "MDS: $(do_facet $SINGLEMDS $LCTL lustre_build_version 2>/dev/null||
7861                     do_facet $SINGLEMDS $LCTL --version)"
7862         log "OSS: $(do_facet ost1 $LCTL lustre_build_version 2> /dev/null ||
7863                     do_facet ost1 $LCTL --version)"
7864 }
7865
7866 log_test() {
7867     yml_log_test $1 >> $YAML_LOG
7868 }
7869
7870 log_test_status() {
7871      yml_log_test_status $@ >> $YAML_LOG
7872 }
7873
7874 log_sub_test_begin() {
7875     yml_log_sub_test_begin "$@" >> $YAML_LOG
7876 }
7877
7878 log_sub_test_end() {
7879     yml_log_sub_test_end "$@" >> $YAML_LOG
7880 }
7881
7882 run_llverdev()
7883 {
7884         local dev=$1
7885         local llverdev_opts=$2
7886         local devname=$(basename $1)
7887         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
7888         # loop devices aren't in /proc/partitions
7889         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
7890
7891         size=$(($size / 1024 / 1024)) # Gb
7892
7893         local partial_arg=""
7894         # Run in partial (fast) mode if the size
7895         # of a partition > 1 GB
7896         [ $size -gt 1 ] && partial_arg="-p"
7897
7898         llverdev --force $partial_arg $llverdev_opts $dev
7899 }
7900
7901 run_llverfs()
7902 {
7903         local dir=$1
7904         local llverfs_opts=$2
7905         local use_partial_arg=$3
7906         local partial_arg=""
7907         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
7908
7909         # Run in partial (fast) mode if the size
7910         # of a partition > 1 GB
7911         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
7912
7913         llverfs $partial_arg $llverfs_opts $dir
7914 }
7915
7916 #Remove objects from OST
7917 remove_ost_objects() {
7918         local facet=$1
7919         local ostdev=$2
7920         local group=$3
7921         shift 3
7922         local objids="$@"
7923         local mntpt=$(facet_mntpt $facet)
7924         local opts=$OST_MOUNT_OPTS
7925         local i
7926         local rc
7927
7928         echo "removing objects from $ostdev on $facet: $objids"
7929         if ! test -b $ostdev; then
7930                 opts=$(csa_add "$opts" -o loop)
7931         fi
7932         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
7933                 return $?
7934         rc=0
7935         for i in $objids; do
7936                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
7937         done
7938         umount -f $mntpt || return $?
7939         return $rc
7940 }
7941
7942 #Remove files from MDT
7943 remove_mdt_files() {
7944         local facet=$1
7945         local mdtdev=$2
7946         shift 2
7947         local files="$@"
7948         local mntpt=$(facet_mntpt $facet)
7949         local opts=$MDS_MOUNT_OPTS
7950
7951         echo "removing files from $mdtdev on $facet: $files"
7952         if [ $(facet_fstype $facet) == ldiskfs ] &&
7953            ! do_facet $facet test -b $mdtdev; then
7954                 opts=$(csa_add "$opts" -o loop)
7955         fi
7956         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
7957                 return $?
7958         rc=0
7959         for f in $files; do
7960                 rm $mntpt/ROOT/$f || { rc=$?; break; }
7961         done
7962         umount -f $mntpt || return $?
7963         return $rc
7964 }
7965
7966 duplicate_mdt_files() {
7967         local facet=$1
7968         local mdtdev=$2
7969         shift 2
7970         local files="$@"
7971         local mntpt=$(facet_mntpt $facet)
7972         local opts=$MDS_MOUNT_OPTS
7973
7974         echo "duplicating files on $mdtdev on $facet: $files"
7975         mkdir -p $mntpt || return $?
7976         if [ $(facet_fstype $facet) == ldiskfs ] &&
7977            ! do_facet $facet test -b $mdtdev; then
7978                 opts=$(csa_add "$opts" -o loop)
7979         fi
7980         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
7981                 return $?
7982
7983     do_umount() {
7984         trap 0
7985         popd > /dev/null
7986         rm $tmp
7987         umount -f $mntpt
7988     }
7989     trap do_umount EXIT
7990
7991     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
7992     pushd $mntpt/ROOT > /dev/null || return $?
7993     rc=0
7994     for f in $files; do
7995         touch $f.bad || return $?
7996         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
7997         rc=${PIPESTATUS[0]}
7998         [ $rc -eq 0 ] || return $rc
7999         setfattr --restore $tmp || return $?
8000     done
8001     do_umount
8002 }
8003
8004 run_sgpdd () {
8005     local devs=${1//,/ }
8006     shift
8007     local params=$@
8008     local rslt=$TMP/sgpdd_survey
8009
8010     # sgpdd-survey cleanups ${rslt}.* files
8011
8012     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
8013     echo + $cmd
8014     eval $cmd
8015     cat ${rslt}.detail
8016 }
8017
8018 # returns the canonical name for an ldiskfs device
8019 ldiskfs_canon() {
8020         local dev="$1"
8021         local facet="$2"
8022
8023         do_facet $facet "dv=\\\$($LCTL get_param -n $dev);
8024                          if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
8025                                 echo dm-\\\${foo##*:};
8026                          else
8027                                 name=\\\$(basename \\\$dv);
8028                                 if [[ \\\$name = *flakey* ]]; then
8029                                         name=\\\$(lsblk -o NAME,KNAME |
8030                                                 awk /\\\$name/'{print \\\$NF}');
8031                                 fi;
8032                                 echo \\\$name;
8033                          fi;"
8034 }
8035
8036 is_sanity_benchmark() {
8037     local benchmarks="dbench bonnie iozone fsx"
8038     local suite=$1
8039     for b in $benchmarks; do
8040         if [ "$b" == "$suite" ]; then
8041             return 0
8042         fi
8043     done
8044     return 1
8045 }
8046
8047 min_ost_size () {
8048         $LFS df | grep OST | awk '{print $4}' | sort -un | head -1
8049 }
8050
8051 #
8052 # Get the available size (KB) of a given obd target.
8053 #
8054 get_obd_size() {
8055         local facet=$1
8056         local obd=$2
8057         local size
8058
8059         [[ $facet != client ]] || return 0
8060
8061         size=$(do_facet $facet $LCTL get_param -n *.$obd.kbytesavail | head -n1)
8062         echo -n $size
8063 }
8064
8065 #
8066 # Get the page size (bytes) on a given facet node.
8067 #
8068 get_page_size() {
8069         local facet=$1
8070         local size=$(getconf PAGE_SIZE 2>/dev/null)
8071
8072         [ -z "$CLIENTONLY" ] && size=$(do_facet $facet getconf PAGE_SIZE)
8073         echo -n ${size:-4096}
8074 }
8075
8076 #
8077 # Get the block count of the filesystem.
8078 #
8079 get_block_count() {
8080         local facet=$1
8081         local device=$2
8082         local count
8083
8084         [ -z "$CLIENTONLY" ] && count=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8085                 awk '/^Block count:/ {print $3}')
8086         echo -n ${count:-0}
8087 }
8088
8089 # Get the block size of the filesystem.
8090 get_block_size() {
8091         local facet=$1
8092         local device=$2
8093         local size
8094
8095         [ -z "$CLIENTONLY" ] && size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
8096                 awk '/^Block size:/ {print $3}')
8097         echo -n ${size:-0}
8098 }
8099
8100 # Check whether the "ea_inode" feature is enabled or not, to allow
8101 # ldiskfs xattrs over one block in size.  Allow both the historical
8102 # Lustre feature name (large_xattr) and the upstream name (ea_inode).
8103 large_xattr_enabled() {
8104         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
8105
8106         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8107
8108         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
8109                 grep -E -q '(ea_inode|large_xattr)'"
8110         return ${PIPESTATUS[0]}
8111 }
8112
8113 # Get the maximum xattr size supported by the filesystem.
8114 max_xattr_size() {
8115     local size
8116
8117     if large_xattr_enabled; then
8118         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
8119         size=65536
8120     else
8121         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
8122         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
8123
8124         # maximum xattr size = size of block - size of header -
8125         #                      size of 1 entry - 4 null bytes
8126         size=$((block_size - 32 - 32 - 4))
8127     fi
8128
8129     echo $size
8130 }
8131
8132 # Dump the value of the named xattr from a file.
8133 get_xattr_value() {
8134     local xattr_name=$1
8135     local file=$2
8136
8137     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
8138 }
8139
8140 # Generate a string with size of $size bytes.
8141 generate_string() {
8142     local size=${1:-1024} # in bytes
8143
8144     echo "$(head -c $size < /dev/zero | tr '\0' y)"
8145 }
8146
8147 reformat_external_journal() {
8148         local facet=$1
8149         local var
8150
8151         var=${facet}_JRN
8152         if [ -n "${!var}" ]; then
8153                 local rcmd="do_facet $facet"
8154
8155                 echo "reformat external journal on $facet:${!var}"
8156                 ${rcmd} mke2fs -O journal_dev ${!var} || return 1
8157         fi
8158 }
8159
8160 # MDT file-level backup/restore
8161 mds_backup_restore() {
8162         local facet=$1
8163         local igif=$2
8164         local devname=$(mdsdevname $(facet_number $facet))
8165         local mntpt=$(facet_mntpt brpt)
8166         local rcmd="do_facet $facet"
8167         local metaea=${TMP}/backup_restore.ea
8168         local metadata=${TMP}/backup_restore.tgz
8169         local opts=${MDS_MOUNT_OPTS}
8170         local svc=${facet}_svc
8171
8172         if ! ${rcmd} test -b ${devname}; then
8173                 opts=$(csa_add "$opts" -o loop)
8174         fi
8175
8176         echo "file-level backup/restore on $facet:${devname}"
8177
8178         # step 1: build mount point
8179         ${rcmd} mkdir -p $mntpt
8180         # step 2: cleanup old backup
8181         ${rcmd} rm -f $metaea $metadata
8182         # step 3: mount dev
8183         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8184         if [ ! -z $igif ]; then
8185                 # step 3.5: rm .lustre
8186                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
8187         fi
8188         # step 4: backup metaea
8189         echo "backup EA"
8190         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
8191                 return 2
8192         # step 5: backup metadata
8193         echo "backup data"
8194         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
8195         # step 6: umount
8196         ${rcmd} $UMOUNT $mntpt || return 4
8197         # step 8: reformat dev
8198         echo "reformat new device"
8199         format_mdt $(facet_number $facet)
8200         # step 9: mount dev
8201         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
8202         # step 10: restore metadata
8203         echo "restore data"
8204         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
8205         # step 11: restore metaea
8206         echo "restore EA"
8207         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
8208         # step 12: remove recovery logs
8209         echo "remove recovery logs"
8210         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
8211         # step 13: umount dev
8212         ${rcmd} $UMOUNT $mntpt || return 10
8213         # step 14: cleanup tmp backup
8214         ${rcmd} rm -f $metaea $metadata
8215         # step 15: reset device label - it's not virgin on
8216         ${rcmd} e2label $devname ${!svc}
8217 }
8218
8219 # remove OI files
8220 mds_remove_ois() {
8221         local facet=$1
8222         local idx=$2
8223         local devname=$(mdsdevname $(facet_number $facet))
8224         local mntpt=$(facet_mntpt brpt)
8225         local rcmd="do_facet $facet"
8226         local opts=${MDS_MOUNT_OPTS}
8227
8228         if ! ${rcmd} test -b ${devname}; then
8229                 opts=$(csa_add "$opts" -o loop)
8230         fi
8231
8232         echo "removing OI files on $facet: idx=${idx}"
8233
8234         # step 1: build mount point
8235         ${rcmd} mkdir -p $mntpt
8236         # step 2: mount dev
8237         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
8238         if [ -z $idx ]; then
8239                 # step 3: remove all OI files
8240                 ${rcmd} rm -fv $mntpt/oi.16*
8241         elif [ $idx -lt 2 ]; then
8242                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
8243         else
8244                 local i
8245
8246                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
8247                 for ((i=${idx}; i<64; i=$((i * idx)))); do
8248                         ${rcmd} rm -fv $mntpt/oi.16.${i}
8249                 done
8250         fi
8251         # step 4: umount
8252         ${rcmd} $UMOUNT $mntpt || return 2
8253         # OI files will be recreated when mounted as lustre next time.
8254 }
8255
8256 # generate maloo upload-able log file name
8257 # \param logname specify unique part of file name
8258 generate_logname() {
8259         local logname=${1:-"default_logname"}
8260
8261         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
8262 }
8263
8264 # make directory on different MDTs
8265 test_mkdir() {
8266         local path
8267         local p_option
8268         local stripe_count=2
8269         local stripe_index=-1
8270         local OPTIND=1
8271
8272         while getopts "c:i:p" opt; do
8273                 case $opt in
8274                         c) stripe_count=$OPTARG;;
8275                         i) stripe_index=$OPTARG;;
8276                         p) p_option="-p";;
8277                         \?) error "only support -i -c -p";;
8278                 esac
8279         done
8280
8281         shift $((OPTIND - 1))
8282         [ $# -eq 1 ] || error "Only creating single directory is supported"
8283         path="$*"
8284
8285         if [ "$p_option" == "-p" ]; then
8286                 local parent=$(dirname $path)
8287
8288                 [ -d $path ] && return 0
8289                 if [ ! -d ${parent} ]; then
8290                         mkdir -p ${parent} ||
8291                                 error "mkdir parent '$parent' failed"
8292                 fi
8293         fi
8294
8295         if [ $MDSCOUNT -le 1 ]; then
8296                 mkdir $path || error "mkdir '$path' failed"
8297         else
8298                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
8299                 local mdt_index
8300
8301                 if [ $stripe_index -eq -1 ]; then
8302                         mdt_index=$((test_num % MDSCOUNT))
8303                 else
8304                         mdt_index=$stripe_index
8305                 fi
8306                 echo "striped dir -i$mdt_index -c$stripe_count $path"
8307                 $LFS mkdir -i$mdt_index -c$stripe_count $path ||
8308                         error "mkdir -i $mdt_index -c$stripe_count $path failed"
8309         fi
8310 }
8311
8312 # free_fd: find the smallest and not in use file descriptor [above @last_fd]
8313 #
8314 # If called many times, passing @last_fd will avoid repeated searching
8315 # already-open FDs repeatedly if we know they are still in use.
8316 #
8317 # usage: free_fd [last_fd]
8318 free_fd()
8319 {
8320         local max_fd=$(ulimit -n)
8321         local fd=$((${1:-2} + 1))
8322
8323         while [[ $fd -le $max_fd && -e /proc/self/fd/$fd ]]; do
8324                 ((++fd))
8325         done
8326         [ $fd -lt $max_fd ] || error "finding free file descriptor failed"
8327         echo $fd
8328 }
8329
8330 check_mount_and_prep()
8331 {
8332         is_mounted $MOUNT || setupall
8333
8334         rm -rf $DIR/[df][0-9]* || error "Fail to cleanup the env!"
8335         mkdir $DIR/$tdir || error "Fail to mkdir $DIR/$tdir."
8336         for idx in $(seq $MDSCOUNT); do
8337                 local name="MDT$(printf '%04x' $((idx - 1)))"
8338                 rm -rf $MOUNT/.lustre/lost+found/$name/*
8339         done
8340 }
8341
8342 # calcule how many ost-objects to be created.
8343 precreated_ost_obj_count()
8344 {
8345         local mdt_idx=$1
8346         local ost_idx=$2
8347         local mdt_name="MDT$(printf '%04x' $mdt_idx)"
8348         local ost_name="OST$(printf '%04x' $ost_idx)"
8349         local proc_path="${FSNAME}-${ost_name}-osc-${mdt_name}"
8350         local last_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8351                         osp.$proc_path.prealloc_last_id)
8352         local next_id=$(do_facet mds$((mdt_idx + 1)) lctl get_param -n \
8353                         osp.$proc_path.prealloc_next_id)
8354         echo $((last_id - next_id + 1))
8355 }
8356
8357 check_file_in_pool()
8358 {
8359         local file=$1
8360         local pool=$2
8361         local tlist="$3"
8362         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
8363         for i in $res
8364         do
8365                 for t in $tlist ; do
8366                         [ "$i" -eq "$t" ] && continue 2
8367                 done
8368
8369                 echo "pool list: $tlist"
8370                 echo "striping: $res"
8371                 error_noexit "$file not allocated in $pool"
8372                 return 1
8373         done
8374         return 0
8375 }
8376
8377 pool_add() {
8378         echo "Creating new pool"
8379         local pool=$1
8380
8381         create_pool $FSNAME.$pool ||
8382                 { error_noexit "No pool created, result code $?"; return 1; }
8383         [ $($LFS pool_list $FSNAME | grep -c "$FSNAME.${pool}\$") -eq 1 ] ||
8384                 { error_noexit "$pool not in lfs pool_list"; return 2; }
8385 }
8386
8387 pool_add_targets() {
8388         echo "Adding targets to pool"
8389         local pool=$1
8390         local first=$2
8391         local last=$3
8392         local step=${4:-1}
8393
8394         local list=$(seq $first $step $last)
8395
8396         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8397         do_facet mgs $LCTL pool_add \
8398                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8399
8400         # wait for OSTs to be added to the pool
8401         for mds_id in $(seq $MDSCOUNT); do
8402                 local mdt_id=$((mds_id-1))
8403                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8404                 wait_update_facet mds$mds_id \
8405                         "lctl get_param -n lod.$lodname.pools.$pool |
8406                                 sort -u | tr '\n' ' ' " "$t" || {
8407                         error_noexit "mds$mds_id: Add to pool failed"
8408                         return 3
8409                 }
8410         done
8411         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8412                         | sort -u | tr '\n' ' ' " "$t" || {
8413                 error_noexit "Add to pool failed"
8414                 return 1
8415         }
8416         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8417         local addcount=$(((last - first) / step + 1))
8418         [ $lfscount -eq $addcount ] || {
8419                 error_noexit "lfs pool_list bad ost count" \
8420                                                 "$lfscount != $addcount"
8421                 return 2
8422         }
8423 }
8424
8425 pool_set_dir() {
8426         local pool=$1
8427         local tdir=$2
8428         echo "Setting pool on directory $tdir"
8429
8430         $SETSTRIPE -c 2 -p $pool $tdir && return 0
8431
8432         error_noexit "Cannot set pool $pool to $tdir"
8433         return 1
8434 }
8435
8436 pool_check_dir() {
8437         local pool=$1
8438         local tdir=$2
8439         echo "Checking pool on directory $tdir"
8440
8441         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
8442         [ "$res" = "$pool" ] && return 0
8443
8444         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8445         return 1
8446 }
8447
8448 pool_dir_rel_path() {
8449         echo "Testing relative path works well"
8450         local pool=$1
8451         local tdir=$2
8452         local root=$3
8453
8454         mkdir -p $root/$tdir/$tdir
8455         cd $root/$tdir
8456         pool_set_dir $pool $tdir          || return 1
8457         pool_set_dir $pool ./$tdir        || return 2
8458         pool_set_dir $pool ../$tdir       || return 3
8459         pool_set_dir $pool ../$tdir/$tdir || return 4
8460         rm -rf $tdir; cd - > /dev/null
8461 }
8462
8463 pool_alloc_files() {
8464         echo "Checking files allocation from directory pool"
8465         local pool=$1
8466         local tdir=$2
8467         local count=$3
8468         local tlist="$4"
8469
8470         local failed=0
8471         for i in $(seq -w 1 $count)
8472         do
8473                 local file=$tdir/file-$i
8474                 touch $file
8475                 check_file_in_pool $file $pool "$tlist" || \
8476                         failed=$((failed + 1))
8477         done
8478         [ "$failed" = 0 ] && return 0
8479
8480         error_noexit "$failed files not allocated in $pool"
8481         return 1
8482 }
8483
8484 pool_create_files() {
8485         echo "Creating files in pool"
8486         local pool=$1
8487         local tdir=$2
8488         local count=$3
8489         local tlist="$4"
8490
8491         mkdir -p $tdir
8492         local failed=0
8493         for i in $(seq -w 1 $count)
8494         do
8495                 local file=$tdir/spoo-$i
8496                 $SETSTRIPE -p $pool $file
8497                 check_file_in_pool $file $pool "$tlist" || \
8498                         failed=$((failed + 1))
8499         done
8500         [ "$failed" = 0 ] && return 0
8501
8502         error_noexit "$failed files not allocated in $pool"
8503         return 1
8504 }
8505
8506 pool_lfs_df() {
8507         echo "Checking 'lfs df' output"
8508         local pool=$1
8509
8510         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
8511                         tr '\n' ' ')
8512         local res=$($LFS df --pool $FSNAME.$pool |
8513                         awk '{print $1}' |
8514                         grep "$FSNAME-OST" |
8515                         tr '\n' ' ')
8516         [ "$res" = "$t" ] && return 0
8517
8518         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
8519         return 1
8520 }
8521
8522 pool_file_rel_path() {
8523         echo "Creating files in a pool with relative pathname"
8524         local pool=$1
8525         local tdir=$2
8526
8527         mkdir -p $tdir ||
8528                 { error_noexit "unable to create $tdir"; return 1 ; }
8529         local file="/..$tdir/$tfile-1"
8530         $SETSTRIPE -p $pool $file ||
8531                 { error_noexit "unable to create $file" ; return 2 ; }
8532
8533         cd $tdir
8534         $SETSTRIPE -p $pool $tfile-2 || {
8535                 error_noexit "unable to create $tfile-2 in $tdir"
8536                 return 3
8537         }
8538 }
8539
8540 pool_remove_first_target() {
8541         echo "Removing first target from a pool"
8542         local pool=$1
8543
8544         local pname="lov.$FSNAME-*.pools.$pool"
8545         local t=$($LCTL get_param -n $pname | head -1)
8546         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8547         for mds_id in $(seq $MDSCOUNT); do
8548                 local mdt_id=$((mds_id-1))
8549                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8550                 wait_update_facet mds$mds_id \
8551                         "lctl get_param -n lod.$lodname.pools.$pool |
8552                                 grep $t" "" || {
8553                         error_noexit "mds$mds_id: $t not removed from" \
8554                         "$FSNAME.$pool"
8555                         return 2
8556                 }
8557         done
8558         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
8559                 error_noexit "$t not removed from $FSNAME.$pool"
8560                 return 1
8561         }
8562 }
8563
8564 pool_remove_all_targets() {
8565         echo "Removing all targets from pool"
8566         local pool=$1
8567         local file=$2
8568         local pname="lov.$FSNAME-*.pools.$pool"
8569         for t in $($LCTL get_param -n $pname | sort -u)
8570         do
8571                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8572         done
8573         for mds_id in $(seq $MDSCOUNT); do
8574                 local mdt_id=$((mds_id-1))
8575                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
8576                 wait_update_facet mds$mds_id "lctl get_param -n \
8577                         lod.$lodname.pools.$pool" "" || {
8578                         error_noexit "mds$mds_id: Pool $pool not drained"
8579                         return 4
8580                 }
8581         done
8582         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
8583                 error_noexit "Pool $FSNAME.$pool cannot be drained"
8584                 return 1
8585         }
8586         # striping on an empty/nonexistant pool should fall back
8587         # to "pool of everything"
8588         touch $file || {
8589                 error_noexit "failed to use fallback striping for empty pool"
8590                 return 2
8591         }
8592         # setstripe on an empty pool should fail
8593         $SETSTRIPE -p $pool $file 2>/dev/null && {
8594                 error_noexit "expected failure when creating file" \
8595                                                         "with empty pool"
8596                 return 3
8597         }
8598         return 0
8599 }
8600
8601 pool_remove() {
8602         echo "Destroying pool"
8603         local pool=$1
8604         local file=$2
8605
8606         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
8607
8608         sleep 2
8609         # striping on an empty/nonexistant pool should fall back
8610         # to "pool of everything"
8611         touch $file || {
8612                 error_noexit "failed to use fallback striping for missing pool"
8613                 return 1
8614         }
8615         # setstripe on an empty pool should fail
8616         $SETSTRIPE -p $pool $file 2>/dev/null && {
8617                 error_noexit "expected failure when creating file" \
8618                                                         "with missing pool"
8619                 return 2
8620         }
8621
8622         # get param should return err once pool is gone
8623         if wait_update $HOSTNAME "lctl get_param -n \
8624                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
8625         then
8626                 remove_pool_from_list $FSNAME.$pool
8627                 return 0
8628         fi
8629         error_noexit "Pool $FSNAME.$pool is not destroyed"
8630         return 3
8631 }
8632
8633 # Get and check the actual stripe count of one file.
8634 # Usage: check_stripe_count <file> <expected_stripe_count>
8635 check_stripe_count() {
8636         local file=$1
8637         local expected=$2
8638         local actual
8639
8640         [[ -z "$file" || -z "$expected" ]] &&
8641                 error "check_stripe_count: invalid argument"
8642
8643         local cmd="$GETSTRIPE -c $file"
8644         actual=$($cmd) || error "$cmd failed"
8645         actual=${actual%% *}
8646
8647         if [[ $actual -ne $expected ]]; then
8648                 [[ $expected -eq -1 ]] ||
8649                         error "$cmd wrong: found $actual, expected $expected"
8650                 [[ $actual -eq $OSTCOUNT ]] ||
8651                         error "$cmd wrong: found $actual, expected $OSTCOUNT"
8652         fi
8653 }
8654
8655 # Get and check the actual list of OST indices on one file.
8656 # Usage: check_obdidx <file> <expected_comma_separated_list_of_ost_indices>
8657 check_obdidx() {
8658         local file=$1
8659         local expected=$2
8660         local obdidx
8661
8662         [[ -z "$file" || -z "$expected" ]] &&
8663                 error "check_obdidx: invalid argument!"
8664
8665         obdidx=$(comma_list $($GETSTRIPE $file | grep -A $OSTCOUNT obdidx |
8666                               grep -v obdidx | awk '{print $1}' | xargs))
8667
8668         [[ $obdidx = $expected ]] ||
8669                 error "list of OST indices on $file is $obdidx," \
8670                       "should be $expected"
8671 }
8672
8673 # Get and check the actual OST index of the first stripe on one file.
8674 # Usage: check_start_ost_idx <file> <expected_start_ost_idx>
8675 check_start_ost_idx() {
8676         local file=$1
8677         local expected=$2
8678         local start_ost_idx
8679
8680         [[ -z "$file" || -z "$expected" ]] &&
8681                 error "check_start_ost_idx: invalid argument!"
8682
8683         start_ost_idx=$($GETSTRIPE $file | grep -A 1 obdidx | grep -v obdidx |
8684                         awk '{print $1}')
8685
8686         [[ $start_ost_idx = $expected ]] ||
8687                 error "OST index of the first stripe on $file is" \
8688                       "$start_ost_idx, should be $expected"
8689 }
8690
8691 killall_process () {
8692         local clients=${1:-$(hostname)}
8693         local name=$2
8694         local signal=$3
8695         local rc=0
8696
8697         do_nodes $clients "killall $signal $name"
8698 }
8699
8700 lsnapshot_create()
8701 {
8702         do_facet mgs "$LCTL snapshot_create -F $FSNAME $*"
8703 }
8704
8705 lsnapshot_destroy()
8706 {
8707         do_facet mgs "$LCTL snapshot_destroy -F $FSNAME $*"
8708 }
8709
8710 lsnapshot_modify()
8711 {
8712         do_facet mgs "$LCTL snapshot_modify -F $FSNAME $*"
8713 }
8714
8715 lsnapshot_list()
8716 {
8717         do_facet mgs "$LCTL snapshot_list -F $FSNAME $*"
8718 }
8719
8720 lsnapshot_mount()
8721 {
8722         do_facet mgs "$LCTL snapshot_mount -F $FSNAME $*"
8723 }
8724
8725 lsnapshot_umount()
8726 {
8727         do_facet mgs "$LCTL snapshot_umount -F $FSNAME $*"
8728 }
8729
8730 lss_err()
8731 {
8732         local msg=$1
8733
8734         do_facet mgs "cat $LSNAPSHOT_LOG"
8735         error $msg
8736 }
8737
8738 lss_cleanup()
8739 {
8740         echo "Cleaning test environment ..."
8741
8742         # Every lsnapshot command takes exclusive lock with others,
8743         # so can NOT destroy the snapshot during list with 'xargs'.
8744         while true; do
8745                 local ssname=$(lsnapshot_list | grep snapshot_name |
8746                         grep lss_ | awk '{ print $2 }' | head -n 1)
8747                 [ -z "$ssname" ] && break
8748
8749                 lsnapshot_destroy -n $ssname -f ||
8750                         lss_err "Fail to destroy $ssname by force"
8751         done
8752 }
8753
8754 lss_gen_conf_one()
8755 {
8756         local facet=$1
8757         local role=$2
8758         local idx=$3
8759
8760         local host=$(facet_active_host $facet)
8761         local dir=$(dirname $(facet_vdevice $facet))
8762         local pool=$(zpool_name $facet)
8763         local lfsname=$(zfs_local_fsname $facet)
8764         local label=${FSNAME}-${role}$(printf '%04x' $idx)
8765
8766         do_facet mgs \
8767                 "echo '$host - $label zfs:${dir}/${pool}/${lfsname} - -' >> \
8768                 $LSNAPSHOT_CONF"
8769 }
8770
8771 lss_gen_conf()
8772 {
8773         do_facet mgs "rm -f $LSNAPSHOT_CONF"
8774         echo "Generating $LSNAPSHOT_CONF on MGS ..."
8775
8776         if ! combined_mgs_mds ; then
8777                 [ $(facet_fstype mgs) != zfs ] &&
8778                         skip "Lustre snapshot 1 only works for ZFS backend"
8779
8780                 local host=$(facet_active_host mgs)
8781                 local dir=$(dirname $(facet_vdevice mgs))
8782                 local pool=$(zpool_name mgs)
8783                 local lfsname=$(zfs_local_fsname mgs)
8784
8785                 do_facet mgs \
8786                         "echo '$host - MGS zfs:${dir}/${pool}/${lfsname} - -' \
8787                         >> $LSNAPSHOT_CONF" || lss_err "generate lss conf (mgs)"
8788         fi
8789
8790         for num in `seq $MDSCOUNT`; do
8791                 [ $(facet_fstype mds$num) != zfs ] &&
8792                         skip "Lustre snapshot 1 only works for ZFS backend"
8793
8794                 lss_gen_conf_one mds$num MDT $((num - 1)) ||
8795                         lss_err "generate lss conf (mds$num)"
8796         done
8797
8798         for num in `seq $OSTCOUNT`; do
8799                 [ $(facet_fstype ost$num) != zfs ] &&
8800                         skip "Lustre snapshot 1 only works for ZFS backend"
8801
8802                 lss_gen_conf_one ost$num OST $((num - 1)) ||
8803                         lss_err "generate lss conf (ost$num)"
8804         done
8805
8806         do_facet mgs "cat $LSNAPSHOT_CONF"
8807 }
8808
8809 # Parse 'lfs getstripe -d <path_with_dir_name>' for non-composite dir
8810 parse_plain_dir_param()
8811 {
8812         local invalues=($1)
8813         local param=""
8814
8815         if [[ ${invalues[0]} =~ "stripe_count:" ]]; then
8816                 param="-c ${invalues[1]}"
8817         fi
8818         if [[ ${invalues[2]} =~ "stripe_size:" ]]; then
8819                 param="$param -S ${invalues[3]}"
8820         fi
8821         if [[ ${invalues[4]} =~ "pattern:" ]]; then
8822                 if [[ ${invalues[5]} =~ "stripe_offset:" ]]; then
8823                         param="$param -i ${invalues[6]}"
8824                 else
8825                         param="$param -L ${invalues[5]} -i ${invalues[7]}"
8826                 fi
8827         elif [[ ${invalues[4]} =~ "stripe_offset:" ]]; then
8828                 param="$param -i ${invalues[5]}"
8829         fi
8830         echo "$param"
8831 }
8832
8833 parse_plain_param()
8834 {
8835         local line=$1
8836         local val=$(awk '{print $2}' <<< $line)
8837
8838         if [[ $line =~ ^"lmm_stripe_count:" ]]; then
8839                 echo "-c $val"
8840         elif [[ $line =~ ^"lmm_stripe_size:" ]]; then
8841                 echo "-S $val"
8842         elif [[ $line =~ ^"lmm_stripe_offset:" ]]; then
8843                 echo "-i $val"
8844         elif [[ $line =~ ^"lmm_pattern:" ]]; then
8845                 echo "-L $val"
8846         fi
8847 }
8848
8849 parse_layout_param()
8850 {
8851         local mode=""
8852         local val=""
8853         local param=""
8854
8855         while read line; do
8856                 if [[ ! -z $line ]]; then
8857                         if [[ -z $mode ]]; then
8858                                 if [[ $line =~ ^"stripe_count:" ]]; then
8859                                         mode="plain_dir"
8860                                 elif [[ $line =~ ^"lmm_stripe_count:" ]]; then
8861                                         mode="plain_file"
8862                                 elif [[ $line =~ ^"lcm_layout_gen:" ]]; then
8863                                         mode="pfl"
8864                                 fi
8865                         fi
8866
8867                         if [[ $mode = "plain_dir" ]]; then
8868                                 param=$(parse_plain_dir_param "$line")
8869                         elif [[ $mode = "plain_file" ]]; then
8870                                 val=$(parse_plain_param "$line")
8871                                 [[ ! -z $val ]] && param="$param $val"
8872                         elif [[ $mode = "pfl" ]]; then
8873                                 val=$(echo $line | awk '{print $2}')
8874                                 if [[ $line =~ ^"lcme_extent.e_end:" ]]; then
8875                                         if [[ $val = "EOF" ]]; then
8876                                                 param="$param -E -1"
8877                                         else
8878                                                 param="$param -E $val"
8879                                         fi
8880                                 elif [[ $line =~ ^"stripe_count:" ]]; then
8881                                         # pfl dir
8882                                         val=$(parse_plain_dir_param "$line")
8883                                         param="$param $val"
8884                                 else
8885                                         #pfl file
8886                                         val=$(parse_plain_param "$line")
8887                                         [[ ! -z $val ]] && param="$param $val"
8888                                 fi
8889                         fi
8890                 fi
8891         done
8892         echo "$param"
8893 }
8894
8895 get_layout_param()
8896 {
8897         local param=$($LFS getstripe -d $1 | parse_layout_param)
8898         echo "$param"
8899 }
8900
8901 lfsck_verify_pfid()
8902 {
8903         local f
8904         local rc=0
8905
8906         # Cancel locks before setting lfsck_verify_pfid so that errors are more
8907         # controllable
8908         cancel_lru_locks mdc
8909         cancel_lru_locks osc
8910
8911         # make sure PFID is set correctly for files
8912         do_nodes $(comma_list $(osts_nodes)) \
8913                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1"
8914
8915         for f in "$@"; do
8916                 cat $f &> /dev/nullA ||
8917                         { rc=$?; echo "verify $f failed"; break; }
8918         done
8919
8920         do_nodes $(comma_list $(osts_nodes)) \
8921                "$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=0"
8922         return $rc
8923 }
8924
8925 # check that clients "oscs" was evicted after "before"
8926 check_clients_evicted() {
8927         local before=$1
8928         shift
8929         local oscs=${@}
8930         local osc
8931         local rc=0
8932
8933         for osc in $oscs; do
8934                 ((rc++))
8935                 echo "Check state for $osc"
8936                 local evicted=$(do_facet client $LCTL get_param osc.$osc.state |
8937                         tail -n 3 | awk -F"[ [,]" \
8938                         '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
8939                 if (($? == 0)) && (($evicted > $before)); then
8940                         echo "$osc is evicted at $evicted"
8941                         ((rc--))
8942                 fi
8943         done
8944
8945         [ $rc -eq 0 ] || error "client not evicted from OST"
8946 }
8947
8948 # check that clients OSCS current_state is FULL
8949 check_clients_full() {
8950         local timeout=$1
8951         shift
8952         local oscs=${@}
8953
8954         for osc in $oscs; do
8955                 wait_update_facet client \
8956                         "lctl get_param -n osc.$osc.state |
8957                         grep 'current_state: FULL'" \
8958                         "current_state: FULL" $timeout
8959                 [ $? -eq 0 ] || error "$osc state is not FULL"
8960         done
8961 }
8962
8963 #Changelogs
8964 __changelog_deregister() {
8965         local facet=$1
8966         local mdt="$(facet_svc $facet)"
8967         local cl_user=$2
8968         local rc=0
8969
8970         # skip cleanup if no user registered for this MDT
8971         [ -z "$cl_user" ] && echo "$mdt: no changelog user" && return 0
8972         # user is no longer registered, skip cleanup
8973         changelog_users "$facet" | grep -q "$cl_user" ||
8974                 { echo "$mdt: changelog user '$cl_user' not found"; return 0; }
8975
8976         # From this point, if any operation fails, it is an error
8977         __changelog_clear $facet $cl_user 0 ||
8978                 error_noexit "$mdt: changelog_clear $cl_user 0 fail: $rc"
8979         do_facet $facet $LCTL --device $mdt changelog_deregister $cl_user ||
8980                 error_noexit "$mdt: changelog_deregister '$cl_user' fail: $rc"
8981 }
8982
8983 declare -Ax CL_USERS
8984 changelog_register() {
8985         for M in $(seq $MDSCOUNT); do
8986                 local facet=mds$M
8987                 local mdt="$(facet_svc $facet)"
8988                 local cl_mask
8989
8990                 cl_mask=$(do_facet $facet $LCTL get_param \
8991                              mdd.${mdt}.changelog_mask -n)
8992                 stack_trap "do_facet $facet $LCTL \
8993                         set_param mdd.$mdt.changelog_mask=\'$cl_mask\' -n" EXIT
8994                 do_facet $facet $LCTL set_param mdd.$mdt.changelog_mask=+hsm ||
8995                         error "$mdt: changelog_mask=+hsm failed: $?"
8996
8997                 local cl_user
8998                 cl_user=$(do_facet $facet \
8999                                   $LCTL --device $mdt changelog_register -n) ||
9000                         error "$mdt: register changelog user failed: $?"
9001                 stack_trap "__changelog_deregister $facet $cl_user" EXIT
9002
9003                 stack_trap "CL_USERS[$facet]='${CL_USERS[$facet]}'" EXIT
9004                 # Bash does not support nested arrays, but the format of a
9005                 # cl_user is constrained enough to use whitespaces as separators
9006                 CL_USERS[$facet]+="$cl_user "
9007         done
9008         echo "Registered $MDSCOUNT changelog users: '${CL_USERS[@]% }'"
9009 }
9010
9011 changelog_deregister() {
9012         local cl_user
9013         # bash assoc arrays do not guarantee to list keys in created order
9014         # so reorder to get same order than in changelog_register()
9015         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9016                           tr "\n" " ")
9017
9018         for facet in $cl_facets; do
9019                 for cl_user in ${CL_USERS[$facet]}; do
9020                         __changelog_deregister $facet $cl_user || return $?
9021                 done
9022                 unset CL_USERS[$facet]
9023         done
9024 }
9025
9026 changelog_users() {
9027         local facet=$1
9028         local service=$(facet_svc $facet)
9029
9030         do_facet $facet $LCTL get_param -n mdd.$service.changelog_users
9031 }
9032
9033 changelog_user_rec() {
9034         local facet=$1
9035         local cl_user=$2
9036         local service=$(facet_svc $facet)
9037
9038         changelog_users $facet | awk '$1 == "'$cl_user'" { print $2 }'
9039 }
9040
9041 changelog_chmask() {
9042         local mask=$1
9043
9044         do_nodes $(comma_list $(mdts_nodes)) \
9045                 $LCTL set_param mdd.*.changelog_mask="$mask"
9046 }
9047
9048 # usage: __changelog_clear FACET CL_USER [+]INDEX
9049 __changelog_clear()
9050 {
9051         local facet=$1
9052         local mdt="$(facet_svc $facet)"
9053         local cl_user=$2
9054         local -i rec
9055
9056         case "$3" in
9057         +*)
9058                 # Remove the leading '+'
9059                 rec=${3:1}
9060                 rec+=$(changelog_user_rec $facet $cl_user)
9061                 ;;
9062         *)
9063                 rec=$3
9064                 ;;
9065         esac
9066
9067         if [ $rec -eq 0 ]; then
9068                 echo "$mdt: clear the changelog for $cl_user of all records"
9069         else
9070                 echo "$mdt: clear the changelog for $cl_user to record #$rec"
9071         fi
9072         $LFS changelog_clear $mdt $cl_user $rec
9073 }
9074
9075 # usage: changelog_clear [+]INDEX
9076 #
9077 # If INDEX is prefixed with '+', increment every changelog user's record index
9078 # by INDEX. Otherwise, clear the changelog up to INDEX for every changelog
9079 # users.
9080 changelog_clear() {
9081         local rc
9082         # bash assoc arrays do not guarantee to list keys in created order
9083         # so reorder to get same order than in changelog_register()
9084         local cl_facets=$(echo "${!CL_USERS[@]}" | tr " " "\n" | sort |
9085                           tr "\n" " ")
9086
9087         for facet in $cl_facets; do
9088                 for cl_user in ${CL_USERS[$facet]}; do
9089                         __changelog_clear $facet $cl_user $1 || rc=${rc:-$?}
9090                 done
9091         done
9092
9093         return ${rc:-0}
9094 }
9095
9096 changelog_dump() {
9097         for M in $(seq $MDSCOUNT); do
9098                 local facet=mds$M
9099                 local mdt="$(facet_svc $facet)"
9100
9101                 $LFS changelog $mdt | sed -e 's/^/'$mdt'./'
9102         done
9103 }
9104
9105 changelog_extract_field() {
9106         local cltype=$1
9107         local file=$2
9108         local identifier=$3
9109
9110         changelog_dump | gawk "/$cltype.*$file$/ {
9111                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9112                 tail -1
9113 }
9114
9115 # Prints a changelog record produced by "lfs changelog" as an associative array
9116 #
9117 # Example:
9118 # $> changelog2array 16 01CREAT 10:28:46.968438800 2018.03.09 0x0 \
9119 #                    t=[0x200000401:0x10:0x0] j=touch.501 ef=0xf u=501:501 \
9120 #                    nid=0@lo p=[0x200000007:0x1:0x0] blob
9121 # ([index]='16' [type]='CREAT' [time]='10:28:46.968438800'
9122 #  [date]='2018.03.09' [flags]=0x0 ['target-fid']='[0x200000401:0x10:0x0]'
9123 #  ['jobid']='touch.501' ['extra-flags']='0x0f' [uid]='0' ['gid']='0'
9124 #  ['nid']='0@lo' ['parent-fid']='[0x200000007:0x1:0x0]')
9125 #
9126 # Note that the changelog record is not quoted
9127 # Also note that the line breaks in the output were only added for readability
9128 #
9129 # Typically, you want to eval the output of the command to fill an actual
9130 # associative array, like this:
9131 # $> eval declare -A changelog=$(changelog2array $entry)
9132 #
9133 # It can then be accessed like any bash associative array:
9134 # $> echo "${changelog[index]}" "${changelog[type]}" "${changelog[flags]}"
9135 # 16 CREAT 0x0
9136 # $> echo "${changelog[uid]}":"${changelog[gid]}"
9137 # 501:501
9138 #
9139 changelog2array()
9140 {
9141         # Start the array
9142         printf '('
9143
9144         # A changelog, as printed by "lfs changelog" typically looks like this:
9145         # <index> <type> <time> <date> <flags> <key1=value1> <key2=value2> ...
9146
9147         # Parse the positional part of the changelog
9148
9149         # changelog_dump() prefixes records with their mdt's name
9150         local index="${1##*.}"
9151
9152         printf "[index]='%s' [type]='%s' [time]='%s' [date]='%s' [flags]='%s'" \
9153                "$index" "${2:2}" "$3" "$4" "$5"
9154
9155         # Parse the key/value part of the changelog
9156         for arg in "${@:5}"; do
9157                 # Check it matches a key=value syntax
9158                 [[ "$arg" =~ ^[[:alpha:]]+= ]] || continue
9159
9160                 local key="${arg%%=*}"
9161                 local value="${arg#*=}"
9162
9163                 case "$key" in
9164                 u)
9165                         # u is actually for uid AND gid: u=UID:GID
9166                         printf " [uid]='%s'" "${value%:*}"
9167                         key=gid
9168                         value="${value#*:}"
9169                         ;;
9170                 t)
9171                         key=target-fid
9172                         value="${value#[}"
9173                         value="${value%]}"
9174                         ;;
9175                 j)
9176                         key=jobid
9177                         ;;
9178                 p)
9179                         key=parent-fid
9180                         value="${value#[}"
9181                         value="${value%]}"
9182                         ;;
9183                 ef)
9184                         key=extra-flags
9185                         ;;
9186                 m)
9187                         key=mode
9188                         ;;
9189                 x)
9190                         key=xattr
9191                         ;;
9192                 *)
9193                         ;;
9194                 esac
9195
9196                 printf " ['%s']='%s'" "$key" "$value"
9197         done
9198
9199         # end the array
9200         printf ')'
9201 }
9202
9203 # Format and print a changelog record
9204 #
9205 # Interpreted sequences are:
9206 #       %%      a single %
9207 #       %f      the "flags" attribute of a changelog record
9208 __changelog_printf()
9209 {
9210         local format="$1"
9211
9212         local -i i
9213         for ((i = 0; i < ${#format}; i++)); do
9214                 local char="${format:$i:1}"
9215                 if [ "$char" != % ]; then
9216                         printf '%c' "$char"
9217                         continue
9218                 fi
9219
9220                 i+=1
9221                 char="${format:$i:1}"
9222                 case "$char" in
9223                 f)
9224                         printf '%s' "${changelog[flags]}"
9225                         ;;
9226                 %)
9227                         printf '%'
9228                         ;;
9229                 esac
9230         done
9231         printf '\n'
9232 }
9233
9234 # Filter changelog records
9235 changelog_find()
9236 {
9237         local -A filter
9238         local action='print'
9239         local format
9240
9241         while [ $# -gt 0 ]; do
9242                 case "$1" in
9243                 -print)
9244                         action='print'
9245                         ;;
9246                 -printf)
9247                         action='printf'
9248                         format="$2"
9249                         shift
9250                         ;;
9251                 -*)
9252                         filter[${1#-}]="$2"
9253                         shift
9254                         ;;
9255                 esac
9256                 shift
9257         done
9258
9259         local found=false
9260         local record
9261         changelog_dump | { while read -r record; do
9262                 eval local -A changelog=$(changelog2array $record)
9263                 for key in "${!filter[@]}"; do
9264                         case "$key" in
9265                         *)
9266                                 [ "${changelog[$key]}" == "${filter[$key]}" ]
9267                                 ;;
9268                         esac || continue 2
9269                 done
9270
9271                 found=true
9272
9273                 case "${action:-print}" in
9274                 print)
9275                         printf '%s\n' "$record"
9276                         ;;
9277                 printf)
9278                         __changelog_printf "$format"
9279                         ;;
9280                 esac
9281         done; $found; }
9282 }
9283
9284 restore_layout() {
9285         local dir=$1
9286         local layout=$2
9287
9288         [ ! -d "$dir" ] && return
9289
9290         [ -z "$layout" ] && {
9291                 $LFS setstripe -d $dir || error "error deleting stripe '$dir'"
9292                 return
9293         }
9294
9295         setfattr -n trusted.lov -v $layout $dir ||
9296                 error "error restoring layout '$layout' to '$dir'"
9297 }
9298
9299 # save the layout of a directory, the returned string will be used by
9300 # restore_layout() to restore the layout
9301 save_layout() {
9302         local dir=$1
9303         local str=$(getfattr -n trusted.lov --absolute-names -e hex $dir \
9304                     2> /dev/null | awk -F'=' '/trusted.lov/{ print $2 }')
9305         echo "$str"
9306 }
9307
9308 # save layout of a directory and restore it at exit
9309 save_layout_restore_at_exit() {
9310         local dir=$1
9311         local layout=$(save_layout $dir)
9312
9313         stack_trap "restore_layout $dir $layout" EXIT
9314 }