Whamcloud - gitweb
LU-3715 tests: track_declares_assert only for ldiskfs
[fs/lustre-release.git] / lustre / tests / test-framework.sh
1 #!/bin/bash
2
3 trap 'print_summary && touch $TF_FAIL && \
4     echo "test-framework exiting on error"' ERR
5 set -e
6 #set -x
7
8 export EJOURNAL=${EJOURNAL:-""}
9 export REFORMAT=${REFORMAT:-""}
10 export WRITECONF=${WRITECONF:-""}
11 export VERBOSE=${VERBOSE:-false}
12 export CATASTROPHE=${CATASTROPHE:-/proc/sys/lnet/catastrophe}
13 export GSS=false
14 export GSS_KRB5=false
15 export GSS_PIPEFS=false
16 export IDENTITY_UPCALL=default
17 export QUOTA_AUTO=1
18 # specify environment variable containing batch job name for server statistics
19 export JOBID_VAR=${JOBID_VAR:-"procname_uid"}  # or "existing" or "disable"
20
21 # LOAD_LLOOP: LU-409: only load llite_lloop module if kernel < 2.6.32 or
22 #             LOAD_LLOOP is true. LOAD_LLOOP is false by default.
23 export LOAD_LLOOP=${LOAD_LLOOP:-false}
24
25 #export PDSH="pdsh -S -Rssh -w"
26
27 # function used by scripts run on remote nodes
28 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
29 . $LUSTRE/tests/functions.sh
30 . $LUSTRE/tests/yaml.sh
31
32 export LD_LIBRARY_PATH=${LUSTRE}/utils:${LD_LIBRARY_PATH}
33
34 LUSTRE_TESTS_CFG_DIR=${LUSTRE_TESTS_CFG_DIR:-${LUSTRE}/tests/cfg}
35
36 EXCEPT_LIST_FILE=${EXCEPT_LIST_FILE:-${LUSTRE_TESTS_CFG_DIR}/tests-to-skip.sh}
37
38 if [ -f "$EXCEPT_LIST_FILE" ]; then
39     echo "Reading test skip list from $EXCEPT_LIST_FILE"
40     cat $EXCEPT_LIST_FILE
41     . $EXCEPT_LIST_FILE
42 fi
43
44 # check config files for options in decreasing order of preference
45 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/lustre.conf ] &&
46     MODPROBECONF=/etc/modprobe.d/lustre.conf
47 [ -z "$MODPROBECONF" -a -f /etc/modprobe.d/Lustre ] &&
48     MODPROBECONF=/etc/modprobe.d/Lustre
49 [ -z "$MODPROBECONF" -a -f /etc/modprobe.conf ] &&
50     MODPROBECONF=/etc/modprobe.conf
51
52 assert_DIR () {
53     local failed=""
54     [[ $DIR/ = $MOUNT/* ]] || \
55         { failed=1 && echo "DIR=$DIR not in $MOUNT. Aborting."; }
56     [[ $DIR1/ = $MOUNT1/* ]] || \
57         { failed=1 && echo "DIR1=$DIR1 not in $MOUNT1. Aborting."; }
58     [[ $DIR2/ = $MOUNT2/* ]] || \
59         { failed=1 && echo "DIR2=$DIR2 not in $MOUNT2. Aborting"; }
60
61     [ -n "$failed" ] && exit 99 || true
62 }
63
64 usage() {
65     echo "usage: $0 [-r] [-f cfgfile]"
66     echo "       -r: reformat"
67
68     exit
69 }
70
71 print_summary () {
72     trap 0
73     [ "$TESTSUITE" == "lfsck" ] && return 0
74     [ -n "$ONLY" ] && echo "WARNING: ONLY is set to $(echo $ONLY)"
75     local details
76     local form="%-13s %-17s %-9s %s %s\n"
77     printf "$form" "status" "script" "Total(sec)" "E(xcluded) S(low)"
78     echo "------------------------------------------------------------------------------------"
79     for O in $DEFAULT_SUITES; do
80         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
81         [ "${!O}" = "no" ] && continue || true
82         local o=$(echo $O  | tr "[:upper:]_" "[:lower:]-")
83         local log=${TMP}/${o}.log
84         if is_sanity_benchmark $o; then
85             log=${TMP}/sanity-benchmark.log
86         fi
87         local slow=
88         local skipped=
89         local total=
90         local status=Unfinished
91         if [ -f $log ]; then
92             skipped=$(grep excluded $log | awk '{ printf " %s", $3 }' | sed 's/test_//g')
93             slow=$(egrep "^PASS|^FAIL" $log | tr -d "("| sed s/s\)$//g | sort -nr -k 3  | head -5 |  awk '{ print $2":"$3"s" }')
94             total=$(grep duration $log | awk '{ print $2}')
95             if [ "${!O}" = "done" ]; then
96                 status=Done
97             fi
98             if $DDETAILS; then
99                 local durations=$(egrep "^PASS|^FAIL" $log |  tr -d "("| sed s/s\)$//g | awk '{ print $2":"$3"|" }')
100                 details=$(printf "%s\n%s %s %s\n" "$details" "DDETAILS" "$O" "$(echo $durations)")
101             fi
102         fi
103         printf "$form" $status "$O" "${total}" "E=$skipped"
104         printf "$form" "-" "-" "-" "S=$(echo $slow)"
105     done
106
107     for O in $DEFAULT_SUITES; do
108         O=$(echo $O  | tr "-" "_" | tr "[:lower:]" "[:upper:]")
109         if [ "${!O}" = "no" ]; then
110             printf "$form" "Skipped" "$O" ""
111         fi
112     done
113
114     # print the detailed tests durations if DDETAILS=true
115     if $DDETAILS; then
116         echo "$details"
117     fi
118 }
119
120 init_test_env() {
121         export LUSTRE=$(absolute_path $LUSTRE)
122         export TESTSUITE=$(basename $0 .sh)
123         export TEST_FAILED=false
124         export FAIL_ON_SKIP_ENV=${FAIL_ON_SKIP_ENV:-false}
125         export RPC_MODE=${RPC_MODE:-false}
126
127     export MKE2FS=$MKE2FS
128     if [ -z "$MKE2FS" ]; then
129         if which mkfs.ldiskfs >/dev/null 2>&1; then
130             export MKE2FS=mkfs.ldiskfs
131         else
132             export MKE2FS=mke2fs
133         fi
134     fi
135
136     export DEBUGFS=$DEBUGFS
137     if [ -z "$DEBUGFS" ]; then
138         if which debugfs.ldiskfs >/dev/null 2>&1; then
139             export DEBUGFS=debugfs.ldiskfs
140         else
141             export DEBUGFS=debugfs
142         fi
143     fi
144
145     export TUNE2FS=$TUNE2FS
146     if [ -z "$TUNE2FS" ]; then
147         if which tunefs.ldiskfs >/dev/null 2>&1; then
148             export TUNE2FS=tunefs.ldiskfs
149         else
150             export TUNE2FS=tune2fs
151         fi
152     fi
153
154     export E2LABEL=$E2LABEL
155     if [ -z "$E2LABEL" ]; then
156         if which label.ldiskfs >/dev/null 2>&1; then
157             export E2LABEL=label.ldiskfs
158         else
159             export E2LABEL=e2label
160         fi
161     fi
162
163     export DUMPE2FS=$DUMPE2FS
164     if [ -z "$DUMPE2FS" ]; then
165         if which dumpfs.ldiskfs >/dev/null 2>&1; then
166             export DUMPE2FS=dumpfs.ldiskfs
167         else
168             export DUMPE2FS=dumpe2fs
169         fi
170     fi
171
172     export E2FSCK=$E2FSCK
173     if [ -z "$E2FSCK" ]; then
174         if which fsck.ldiskfs >/dev/null 2>&1; then
175             export E2FSCK=fsck.ldiskfs
176         else
177             export E2FSCK=e2fsck
178         fi
179     fi
180
181     export LFSCK_BIN=${LFSCK_BIN:-lfsck}
182     export LFSCK_ALWAYS=${LFSCK_ALWAYS:-"no"} # check fs after each test suite
183     export FSCK_MAX_ERR=4   # File system errors left uncorrected
184
185         export ZFS=${ZFS:-zfs}
186         export ZPOOL=${ZPOOL:-zpool}
187         export ZDB=${ZDB:-zdb}
188         export PARTPROBE=${PARTPROBE:-partprobe}
189
190     #[ -d /r ] && export ROOT=${ROOT:-/r}
191     export TMP=${TMP:-$ROOT/tmp}
192     export TESTSUITELOG=${TMP}/${TESTSUITE}.log
193     export LOGDIR=${LOGDIR:-${TMP}/test_logs/$(date +%s)}
194     export TESTLOG_PREFIX=$LOGDIR/$TESTSUITE
195
196     export HOSTNAME=${HOSTNAME:-$(hostname -s)}
197     if ! echo $PATH | grep -q $LUSTRE/utils; then
198         export PATH=$LUSTRE/utils:$PATH
199     fi
200     if ! echo $PATH | grep -q $LUSTRE/utils/gss; then
201         export PATH=$LUSTRE/utils/gss:$PATH
202     fi
203     if ! echo $PATH | grep -q $LUSTRE/tests; then
204         export PATH=$LUSTRE/tests:$PATH
205     fi
206     if ! echo $PATH | grep -q $LUSTRE/../lustre-iokit/sgpdd-survey; then
207         export PATH=$LUSTRE/../lustre-iokit/sgpdd-survey:$PATH
208     fi
209     export LST=${LST:-"$LUSTRE/../lnet/utils/lst"}
210     [ ! -f "$LST" ] && export LST=$(which lst)
211     export SGPDDSURVEY=${SGPDDSURVEY:-"$LUSTRE/../lustre-iokit/sgpdd-survey/sgpdd-survey")}
212     [ ! -f "$SGPDDSURVEY" ] && export SGPDDSURVEY=$(which sgpdd-survey)
213     # Ubuntu, at least, has a truncate command in /usr/bin
214     # so fully path our truncate command.
215     export TRUNCATE=${TRUNCATE:-$LUSTRE/tests/truncate}
216     export MDSRATE=${MDSRATE:-"$LUSTRE/tests/mpi/mdsrate"}
217     [ ! -f "$MDSRATE" ] && export MDSRATE=$(which mdsrate 2> /dev/null)
218     if ! echo $PATH | grep -q $LUSTRE/tests/racer; then
219         export PATH=$LUSTRE/tests/racer:$PATH:
220     fi
221     if ! echo $PATH | grep -q $LUSTRE/tests/mpi; then
222         export PATH=$LUSTRE/tests/mpi:$PATH
223     fi
224     export RSYNC_RSH=${RSYNC_RSH:-rsh}
225
226     export LCTL=${LCTL:-"$LUSTRE/utils/lctl"}
227     [ ! -f "$LCTL" ] && export LCTL=$(which lctl)
228     export LFS=${LFS:-"$LUSTRE/utils/lfs"}
229     [ ! -f "$LFS" ] && export LFS=$(which lfs)
230     SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
231     GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
232
233     export L_GETIDENTITY=${L_GETIDENTITY:-"$LUSTRE/utils/l_getidentity"}
234     if [ ! -f "$L_GETIDENTITY" ]; then
235         if `which l_getidentity > /dev/null 2>&1`; then
236             export L_GETIDENTITY=$(which l_getidentity)
237         else
238             export L_GETIDENTITY=NONE
239         fi
240     fi
241     export LL_DECODE_FILTER_FID=${LL_DECODE_FILTER_FID:-"$LUSTRE/utils/ll_decode_filter_fid"}
242     [ ! -f "$LL_DECODE_FILTER_FID" ] && export LL_DECODE_FILTER_FID="ll_decode_filter_fid"
243     export MKFS=${MKFS:-"$LUSTRE/utils/mkfs.lustre"}
244     [ ! -f "$MKFS" ] && export MKFS="mkfs.lustre"
245     export TUNEFS=${TUNEFS:-"$LUSTRE/utils/tunefs.lustre"}
246     [ ! -f "$TUNEFS" ] && export TUNEFS="tunefs.lustre"
247     export CHECKSTAT="${CHECKSTAT:-"checkstat -v"} "
248     export LUSTRE_RMMOD=${LUSTRE_RMMOD:-$LUSTRE/scripts/lustre_rmmod}
249     [ ! -f "$LUSTRE_RMMOD" ] &&
250         export LUSTRE_RMMOD=$(which lustre_rmmod 2> /dev/null)
251     export LFS_MIGRATE=${LFS_MIGRATE:-$LUSTRE/scripts/lfs_migrate}
252     [ ! -f "$LFS_MIGRATE" ] &&
253         export LFS_MIGRATE=$(which lfs_migrate 2> /dev/null)
254     export NAME=${NAME:-local}
255     export LGSSD=${LGSSD:-"$LUSTRE/utils/gss/lgssd"}
256     [ "$GSS_PIPEFS" = "true" ] && [ ! -f "$LGSSD" ] && \
257         export LGSSD=$(which lgssd)
258     export LSVCGSSD=${LSVCGSSD:-"$LUSTRE/utils/gss/lsvcgssd"}
259     [ ! -f "$LSVCGSSD" ] && export LSVCGSSD=$(which lsvcgssd 2> /dev/null)
260     export KRB5DIR=${KRB5DIR:-"/usr/kerberos"}
261     export DIR2
262     export SAVE_PWD=${SAVE_PWD:-$LUSTRE/tests}
263     export AT_MAX_PATH
264
265     if [ "$ACCEPTOR_PORT" ]; then
266         export PORT_OPT="--port $ACCEPTOR_PORT"
267     fi
268
269     case "x$SEC" in
270         xkrb5*)
271             echo "Using GSS/krb5 ptlrpc security flavor"
272             which lgss_keyring > /dev/null 2>&1 || \
273                 error_exit "built with gss disabled! SEC=$SEC"
274             GSS=true
275             GSS_KRB5=true
276             ;;
277     esac
278
279     case "x$IDUP" in
280         xtrue)
281             IDENTITY_UPCALL=true
282             ;;
283         xfalse)
284             IDENTITY_UPCALL=false
285             ;;
286     esac
287
288     export LOAD_MODULES_REMOTE=${LOAD_MODULES_REMOTE:-false}
289
290     # Paths on remote nodes, if different
291     export RLUSTRE=${RLUSTRE:-$LUSTRE}
292     export RPWD=${RPWD:-$PWD}
293     export I_MOUNTED=${I_MOUNTED:-"no"}
294     if [ ! -f /lib/modules/$(uname -r)/kernel/fs/lustre/mdt.ko -a \
295         ! -f /lib/modules/$(uname -r)/updates/kernel/fs/lustre/mdt.ko -a \
296         ! -f `dirname $0`/../mdt/mdt.ko ]; then
297         export CLIENTMODSONLY=yes
298     fi
299
300     export SHUTDOWN_ATTEMPTS=${SHUTDOWN_ATTEMPTS:-3}
301         export OSD_TRACK_DECLARES_LBUG=${OSD_TRACK_DECLARES_LBUG:-"yes"}
302
303     # command line
304
305     while getopts "rvwf:" opt $*; do
306         case $opt in
307             f) CONFIG=$OPTARG;;
308             r) REFORMAT=--reformat;;
309             v) VERBOSE=true;;
310             w) WRITECONF=writeconf;;
311             \?) usage;;
312         esac
313     done
314
315     shift $((OPTIND - 1))
316     ONLY=${ONLY:-$*}
317
318         # print the durations of each test if "true"
319         DDETAILS=${DDETAILS:-false}
320         [ "$TESTSUITELOG" ] && rm -f $TESTSUITELOG || true
321         if ! $RPC_MODE; then
322                 rm -f $TMP/*active
323         fi
324 }
325
326 check_cpt_number() {
327         local facet=$1
328         local ncpts
329
330         ncpts=$(do_facet $facet "lctl get_param -n " \
331                 "cpu_partition_table 2>/dev/null| wc -l" || echo 1)
332
333         if [ $ncpts -eq 0 ]; then
334                 echo "1"
335         else
336                 echo $ncpts
337         fi
338 }
339
340 version_code() {
341     # split arguments like "1.8.6-wc3" into "1", "8", "6", "wc3"
342     eval set -- $(tr "[:punct:]" " " <<< $*)
343
344     echo -n "$((($1 << 16) | ($2 << 8) | $3))"
345 }
346
347 export LINUX_VERSION=$(uname -r | sed -e "s/[-.]/ /3" -e "s/ .*//")
348 export LINUX_VERSION_CODE=$(version_code ${LINUX_VERSION//\./ })
349
350 module_loaded () {
351    /sbin/lsmod | grep -q "^\<$1\>"
352 }
353
354 # Load a module on the system where this is running.
355 #
356 # Synopsis: load_module module_name [module arguments for insmod/modprobe]
357 #
358 # If module arguments are not given but MODOPTS_<MODULE> is set, then its value
359 # will be used as the arguments.  Otherwise arguments will be obtained from
360 # /etc/modprobe.conf, from /etc/modprobe.d/Lustre, or else none will be used.
361 #
362 load_module() {
363     local optvar
364     EXT=".ko"
365     module=$1
366     shift
367     BASE=`basename $module $EXT`
368
369     module_loaded ${BASE} && return
370
371     # If no module arguments were passed, get them from $MODOPTS_<MODULE>, else from
372     # modprobe.conf
373     if [ $# -eq 0 ]; then
374         # $MODOPTS_<MODULE>; we could use associative arrays, but that's not in
375         # Bash until 4.x, so we resort to eval.
376         optvar="MODOPTS_$(basename $module | tr a-z A-Z)"
377         eval set -- \$$optvar
378         if [ $# -eq 0 -a -n "$MODPROBECONF" ]; then
379                 # Nothing in $MODOPTS_<MODULE>; try modprobe.conf
380                 local opt
381                 opt=$(awk -v var="^options $BASE" '$0 ~ var \
382                         {gsub("'"options $BASE"'",""); print}' $MODPROBECONF)
383                 set -- $(echo -n $opt)
384
385                 # Ensure we have accept=all for lnet
386                 if [ $(basename $module) = lnet ]; then
387                         # OK, this is a bit wordy...
388                         local arg accept_all_present=false
389
390                         for arg in "$@"; do
391                                 [ "$arg" = accept=all ] && \
392                                         accept_all_present=true
393                         done
394                         $accept_all_present || set -- "$@" accept=all
395                 fi
396                 export $optvar="$*"
397         fi
398     fi
399
400     [ $# -gt 0 ] && echo "${module} options: '$*'"
401
402     # Note that insmod will ignore anything in modprobe.conf, which is why we're
403     # passing options on the command-line.
404     if [ "$BASE" == "lnet_selftest" ] && \
405             [ -f ${LUSTRE}/../lnet/selftest/${module}${EXT} ]; then
406         insmod ${LUSTRE}/../lnet/selftest/${module}${EXT}
407     elif [ -f ${LUSTRE}/${module}${EXT} ]; then
408         insmod ${LUSTRE}/${module}${EXT} "$@"
409     else
410         # must be testing a "make install" or "rpm" installation
411         # note failed to load ptlrpc_gss is considered not fatal
412         if [ "$BASE" == "ptlrpc_gss" ]; then
413             modprobe $BASE "$@" 2>/dev/null || echo "gss/krb5 is not supported"
414         else
415             modprobe $BASE "$@"
416         fi
417     fi
418 }
419
420 llite_lloop_enabled() {
421     local n1=$(uname -r | cut -d. -f1)
422     local n2=$(uname -r | cut -d. -f2)
423     local n3=$(uname -r | cut -d- -f1 | cut -d. -f3)
424
425     # load the llite_lloop module for < 2.6.32 kernels
426     if [[ $n1 -lt 2 ]] || [[ $n1 -eq 2 && $n2 -lt 6 ]] || \
427        [[ $n1 -eq 2 && $n2 -eq 6 && $n3 -lt 32 ]] || \
428         $LOAD_LLOOP; then
429         return 0
430     fi
431     return 1
432 }
433
434 load_modules_local() {
435         if [ -n "$MODPROBE" ]; then
436                 # use modprobe
437                 echo "Using modprobe to load modules"
438                 return 0
439         fi
440
441         echo Loading modules from $LUSTRE
442
443         local ncpus
444
445         if [ -f /sys/devices/system/cpu/online ]; then
446                 ncpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/online) + 1))
447                 echo "detected $ncpus online CPUs by sysfs"
448         else
449                 ncpus=$(getconf _NPROCESSORS_CONF 2>/dev/null)
450                 local rc=$?
451                 if [ $rc -eq 0 ]; then
452                         echo "detected $ncpus online CPUs by getconf"
453                 else
454                         echo "Can't detect number of CPUs"
455                         ncpus=1
456                 fi
457         fi
458
459         # if there is only one CPU core, libcfs can only create one partition
460         # if there is more than 4 CPU cores, libcfs should create multiple CPU
461         # partitions. So we just force libcfs to create 2 partitions for
462         # system with 2 or 4 cores
463         if [ $ncpus -le 4 ] && [ $ncpus -gt 1 ]; then
464                 # force to enable multiple CPU partitions
465                 echo "Force libcfs to create 2 CPU partitions"
466                 MODOPTS_LIBCFS="cpu_npartitions=2 $MODOPTS_LIBCFS"
467         else
468                 echo "libcfs will create CPU partition based on online CPUs"
469         fi
470
471         load_module ../libcfs/libcfs/libcfs
472
473     [ "$PTLDEBUG" ] && lctl set_param debug="$PTLDEBUG"
474     [ "$SUBSYSTEM" ] && lctl set_param subsystem_debug="${SUBSYSTEM# }"
475     load_module ../lnet/lnet/lnet
476     LNETLND=${LNETLND:-"socklnd/ksocklnd"}
477     load_module ../lnet/klnds/$LNETLND
478     load_module lvfs/lvfs
479     load_module obdclass/obdclass
480     load_module ptlrpc/ptlrpc
481     load_module ptlrpc/gss/ptlrpc_gss
482     load_module fld/fld
483     load_module fid/fid
484     load_module lmv/lmv
485     load_module mdc/mdc
486     load_module osc/osc
487     load_module lov/lov
488     load_module mgc/mgc
489     load_module obdecho/obdecho
490     if ! client_only; then
491         SYMLIST=/proc/kallsyms
492         grep -q crc16 $SYMLIST || { modprobe crc16 2>/dev/null || true; }
493         grep -q -w jbd $SYMLIST || { modprobe jbd 2>/dev/null || true; }
494         grep -q -w jbd2 $SYMLIST || { modprobe jbd2 2>/dev/null || true; }
495                 load_module lfsck/lfsck
496                 [ "$LQUOTA" != "no" ] && load_module quota/lquota $LQUOTAOPTS
497                 if [[ $(node_fstypes $HOSTNAME) == *zfs* ]]; then
498                         modprobe zfs
499                         load_module osd-zfs/osd_zfs
500                 fi
501                 load_module mgs/mgs
502                 load_module mdd/mdd
503                 if [[ $(node_fstypes $HOSTNAME) == *ldiskfs* ]]; then
504                         #
505                         # This block shall be moved up beside osd-zfs as soon
506                         # as osd-ldiskfs stops using mdd symbols.
507                         #
508                         grep -q exportfs_decode_fh $SYMLIST ||
509                                 { modprobe exportfs 2> /dev/null || true; }
510                         load_module ../ldiskfs/ldiskfs/ldiskfs
511                         load_module lvfs/fsfilt_ldiskfs
512                         load_module osd-ldiskfs/osd_ldiskfs
513                 fi
514                 load_module mdt/mdt
515                 load_module ost/ost
516                 load_module lod/lod
517                 load_module osp/osp
518                 load_module ofd/ofd
519                 load_module osp/osp
520     fi
521
522
523     load_module llite/lustre
524     llite_lloop_enabled && load_module llite/llite_lloop
525     [ -d /r ] && OGDB=${OGDB:-"/r/tmp"}
526     OGDB=${OGDB:-$TMP}
527     rm -f $OGDB/ogdb-$HOSTNAME
528     $LCTL modules > $OGDB/ogdb-$HOSTNAME
529
530     # 'mount' doesn't look in $PATH, just sbin
531     if [ -f $LUSTRE/utils/mount.lustre ] && \
532        ! grep -qe "/sbin/mount\.lustre " /proc/mounts; then
533         [ ! -f /sbin/mount.lustre ] && touch /sbin/mount.lustre
534         mount --bind $LUSTRE/utils/mount.lustre /sbin/mount.lustre || true
535     fi
536 }
537
538 load_modules () {
539         load_modules_local
540         # bug 19124
541         # load modules on remote nodes optionally
542         # lustre-tests have to be installed on these nodes
543         if $LOAD_MODULES_REMOTE; then
544                 local list=$(comma_list $(remote_nodes_list))
545                 if [ -n "$list" ]; then
546                         echo "loading modules on: '$list'"
547                         do_rpc_nodes "$list" load_modules_local
548                 fi
549         fi
550 }
551
552 check_mem_leak () {
553     LEAK_LUSTRE=$(dmesg | tail -n 30 | grep "obd_memory.*leaked" || true)
554     LEAK_PORTALS=$(dmesg | tail -n 20 | grep "Portals memory leaked" || true)
555     if [ "$LEAK_LUSTRE" -o "$LEAK_PORTALS" ]; then
556         echo "$LEAK_LUSTRE" 1>&2
557         echo "$LEAK_PORTALS" 1>&2
558         mv $TMP/debug $TMP/debug-leak.`date +%s` || true
559         echo "Memory leaks detected"
560         [ -n "$IGNORE_LEAK" ] && { echo "ignoring leaks" && return 0; } || true
561         return 1
562     fi
563 }
564
565 unload_modules() {
566         wait_exit_ST client # bug 12845
567
568         $LUSTRE_RMMOD ldiskfs || return 2
569
570         if $LOAD_MODULES_REMOTE; then
571                 local list=$(comma_list $(remote_nodes_list))
572                 if [ -n "$list" ]; then
573                         echo "unloading modules on: '$list'"
574                         do_rpc_nodes "$list" $LUSTRE_RMMOD ldiskfs
575                         do_rpc_nodes "$list" check_mem_leak
576                 fi
577         fi
578
579     if grep -qe "/sbin/mount\.lustre" /proc/mounts; then
580         umount /sbin/mount.lustre || true
581         [ -w /sbin/mount.lustre -a ! -s /sbin/mount.lustre ] && \
582             rm -f /sbin/mount.lustre || true
583     fi
584
585     check_mem_leak || return 254
586
587     echo "modules unloaded."
588     return 0
589 }
590
591 fs_log_size() {
592         local facet=${1:-$SINGLEMDS}
593         local fstype=$(facet_fstype $facet)
594         local size=0
595         case $fstype in
596                 ldiskfs) size=50;; # largest seen is 44, leave some headroom
597                 zfs)     size=400;; # largest seen is 384
598         esac
599
600         echo -n $size
601 }
602
603 check_gss_daemon_nodes() {
604     local list=$1
605     dname=$2
606
607     do_nodesv $list "num=\\\$(ps -o cmd -C $dname | grep $dname | wc -l);
608 if [ \\\"\\\$num\\\" -ne 1 ]; then
609     echo \\\$num instance of $dname;
610     exit 1;
611 fi; "
612 }
613
614 check_gss_daemon_facet() {
615     facet=$1
616     dname=$2
617
618     num=`do_facet $facet ps -o cmd -C $dname | grep $dname | wc -l`
619     if [ $num -ne 1 ]; then
620         echo "$num instance of $dname on $facet"
621         return 1
622     fi
623     return 0
624 }
625
626 send_sigint() {
627     local list=$1
628     shift
629     echo Stopping $@ on $list
630     do_nodes $list "killall -2 $@ 2>/dev/null || true"
631 }
632
633 # start gss daemons on all nodes, or
634 # "daemon" on "list" if set
635 start_gss_daemons() {
636     local list=$1
637     local daemon=$2
638
639     if [ "$list" ] && [ "$daemon" ] ; then
640         echo "Starting gss daemon on nodes: $list"
641         do_nodes $list "$daemon" || return 8
642         return 0
643     fi
644
645     local list=$(comma_list $(mdts_nodes))
646
647     echo "Starting gss daemon on mds: $list"
648     do_nodes $list "$LSVCGSSD -v" || return 1
649     if $GSS_PIPEFS; then
650         do_nodes $list "$LGSSD -v" || return 2
651     fi
652
653     list=$(comma_list $(osts_nodes))
654     echo "Starting gss daemon on ost: $list"
655     do_nodes $list "$LSVCGSSD -v" || return 3
656     # starting on clients
657
658     local clients=${CLIENTS:-`hostname`}
659     if $GSS_PIPEFS; then
660         echo "Starting $LGSSD on clients $clients "
661         do_nodes $clients  "$LGSSD -v" || return 4
662     fi
663
664     # wait daemons entering "stable" status
665     sleep 5
666
667     #
668     # check daemons are running
669     #
670     list=$(comma_list $(mdts_nodes) $(osts_nodes))
671     check_gss_daemon_nodes $list lsvcgssd || return 5
672     if $GSS_PIPEFS; then
673         list=$(comma_list $(mdts_nodes))
674         check_gss_daemon_nodes $list lgssd || return 6
675     fi
676     if $GSS_PIPEFS; then
677         check_gss_daemon_nodes $clients lgssd || return 7
678     fi
679 }
680
681 stop_gss_daemons() {
682     local list=$(comma_list $(mdts_nodes))
683     
684     send_sigint $list lsvcgssd lgssd
685
686     list=$(comma_list $(osts_nodes))
687     send_sigint $list lsvcgssd
688
689     list=${CLIENTS:-`hostname`}
690     send_sigint $list lgssd
691 }
692
693 init_gss() {
694     if $GSS; then
695         if ! module_loaded ptlrpc_gss; then
696             load_module ptlrpc/gss/ptlrpc_gss
697             module_loaded ptlrpc_gss ||
698                 error_exit "init_gss : GSS=$GSS, but gss/krb5 is not supported!"
699         fi
700         start_gss_daemons || error_exit "start gss daemon failed! rc=$?"
701
702         if [ -n "$LGSS_KEYRING_DEBUG" ]; then
703             echo $LGSS_KEYRING_DEBUG > /proc/fs/lustre/sptlrpc/gss/lgss_keyring/debug_level
704         fi
705     fi
706 }
707
708 cleanup_gss() {
709     if $GSS; then
710         stop_gss_daemons
711         # maybe cleanup credential cache?
712     fi
713 }
714
715 facet_svc() {
716         local facet=$1
717         local var=${facet}_svc
718
719         echo -n ${!var}
720 }
721
722 facet_type() {
723         local facet=$1
724
725         echo -n $facet | sed -e 's/^fs[0-9]\+//' -e 's/[0-9_]\+//' |
726                 tr '[:lower:]' '[:upper:]'
727 }
728
729 facet_number() {
730         local facet=$1
731
732         if [ $facet == mgs ]; then
733                 return 1
734         fi
735
736         echo -n $facet | sed -e 's/^fs[0-9]\+//' | sed -e 's/^[a-z]\+//'
737 }
738
739 facet_fstype() {
740         local facet=$1
741         local var
742
743         var=${facet}_FSTYPE
744         if [ -n "${!var}" ]; then
745                 echo -n ${!var}
746                 return
747         fi
748
749         var=$(facet_type $facet)FSTYPE
750         if [ -n "${!var}" ]; then
751                 echo -n ${!var}
752                 return
753         fi
754
755         if [ -n "$FSTYPE" ]; then
756                 echo -n $FSTYPE
757                 return
758         fi
759
760         if [[ $facet == mgs ]] && combined_mgs_mds; then
761                 facet_fstype mds1
762                 return
763         fi
764
765         return 1
766 }
767
768 node_fstypes() {
769         local node=$1
770         local fstypes
771         local fstype
772         local facets=$(get_facets)
773         local facet
774
775         for facet in ${facets//,/ }; do
776                 if [ $node == $(facet_host $facet) ] ||
777                    [ $node == "$(facet_failover_host $facet)" ]; then
778                         fstype=$(facet_fstype $facet)
779                         if [[ $fstypes != *$fstype* ]]; then
780                                 fstypes+="${fstypes:+,}$fstype"
781                         fi
782                 fi
783         done
784         echo -n $fstypes
785 }
786
787 devicelabel() {
788         local facet=$1
789         local dev=$2
790         local label
791         local fstype=$(facet_fstype $facet)
792
793         case $fstype in
794         ldiskfs)
795                 label=$(do_facet ${facet} "$E2LABEL ${dev} 2>/dev/null");;
796         zfs)
797                 label=$(do_facet ${facet} "$ZFS get -H -o value lustre:svname \
798                                            ${dev} 2>/dev/null");;
799         *)
800                 error "unknown fstype!";;
801         esac
802
803         echo -n $label
804 }
805
806 mdsdevlabel() {
807         local num=$1
808         local device=$(mdsdevname $num)
809         local label=$(devicelabel mds$num ${device} | grep -v "CMD: ")
810         echo -n $label
811 }
812
813 ostdevlabel() {
814         local num=$1
815         local device=$(ostdevname $num)
816         local label=$(devicelabel ost$num ${device} | grep -v "CMD: ")
817         echo -n $label
818 }
819
820 #
821 # Get the device of a facet.
822 #
823 facet_device() {
824         local facet=$1
825         local device
826
827         case $facet in
828                 mgs) device=$(mgsdevname) ;;
829                 mds*) device=$(mdsdevname $(facet_number $facet)) ;;
830                 ost*) device=$(ostdevname $(facet_number $facet)) ;;
831                 fs2mds) device=$(mdsdevname 1_2) ;;
832                 fs2ost) device=$(ostdevname 1_2) ;;
833                 fs3ost) device=$(ostdevname 2_2) ;;
834                 *) ;;
835         esac
836
837         echo -n $device
838 }
839
840 #
841 # Get the virtual device of a facet.
842 #
843 facet_vdevice() {
844         local facet=$1
845         local device
846
847         case $facet in
848                 mgs) device=$(mgsvdevname) ;;
849                 mds*) device=$(mdsvdevname $(facet_number $facet)) ;;
850                 ost*) device=$(ostvdevname $(facet_number $facet)) ;;
851                 fs2mds) device=$(mdsvdevname 1_2) ;;
852                 fs2ost) device=$(ostvdevname 1_2) ;;
853                 fs3ost) device=$(ostvdevname 2_2) ;;
854                 *) ;;
855         esac
856
857         echo -n $device
858 }
859
860 #
861 # Re-read the partition table on failover partner host.
862 # After a ZFS storage pool is created on a shared device, the partition table
863 # on the device may change. However, the operating system on the failover
864 # host may not notice the change automatically. Without the up-to-date partition
865 # block devices, 'zpool import ..' cannot find the labels, whose positions are
866 # relative to partition rather than disk beginnings.
867 #
868 # This function performs partprobe on the failover host to make it re-read the
869 # partition table.
870 #
871 refresh_partition_table() {
872         local facet=$1
873         local device=$2
874         local host
875
876         host=$(facet_passive_host $facet)
877         if [[ -n "$host" ]]; then
878                 do_node $host "$PARTPROBE $device"
879         fi
880 }
881
882 #
883 # Get ZFS storage pool name.
884 #
885 zpool_name() {
886         local facet=$1
887         local device
888         local poolname
889
890         device=$(facet_device $facet)
891         # poolname is string before "/"
892         poolname="${device%%/*}"
893
894         echo -n $poolname
895 }
896
897 #
898 # Export ZFS storage pool.
899 # Before exporting the pool, all datasets within the pool should be unmounted.
900 #
901 export_zpool() {
902         local facet=$1
903         shift
904         local opts="$@"
905         local poolname
906
907         poolname=$(zpool_name $facet)
908
909         if [[ -n "$poolname" ]]; then
910                 do_facet $facet "! $ZPOOL list -H $poolname >/dev/null 2>&1 ||
911                         grep -q ^$poolname/ /proc/mounts ||
912                         $ZPOOL export $opts $poolname"
913         fi
914 }
915
916 #
917 # Import ZFS storage pool.
918 # Force importing, even if the pool appears to be potentially active.
919 #
920 import_zpool() {
921         local facet=$1
922         shift
923         local opts=${@:-"-o cachefile=none"}
924         local poolname
925
926         poolname=$(zpool_name $facet)
927
928         if [[ -n "$poolname" ]]; then
929                 opts+=" -d $(dirname $(facet_vdevice $facet))"
930                 do_facet $facet "$ZPOOL list -H $poolname >/dev/null 2>&1 ||
931                         $ZPOOL import -f $opts $poolname"
932         fi
933 }
934
935 #
936 # Set the "cachefile=none" property on ZFS storage pool so that the pool
937 # is not automatically imported on system startup.
938 #
939 # In a failover environment, this will provide resource level fencing which
940 # will ensure that the same ZFS storage pool will not be imported concurrently
941 # on different nodes.
942 #
943 disable_zpool_cache() {
944         local facet=$1
945         local poolname
946
947         poolname=$(zpool_name $facet)
948
949         if [[ -n "$poolname" ]]; then
950                 do_facet $facet "$ZPOOL set cachefile=none $poolname"
951         fi
952 }
953
954 #
955 # This and set_osd_param() shall be used to access OSD parameters
956 # once existed under "obdfilter":
957 #
958 #   mntdev
959 #   stats
960 #   read_cache_enable
961 #   writethrough_cache_enable
962 #
963 get_osd_param() {
964         local nodes=$1
965         local device=${2:-$FSNAME-OST*}
966         local name=$3
967
968         do_nodes $nodes "$LCTL get_param -n obdfilter.$device.$name \
969                 osd-*.$device.$name 2>&1" | grep -v 'Found no match'
970 }
971
972 set_osd_param() {
973         local nodes=$1
974         local device=${2:-$FSNAME-OST*}
975         local name=$3
976         local value=$4
977
978         do_nodes $nodes "$LCTL set_param -n obdfilter.$device.$name=$value \
979                 osd-*.$device.$name=$value 2>&1" | grep -v 'Found no match'
980 }
981
982 set_debug_size () {
983     local dz=${1:-$DEBUG_SIZE}
984
985     if [ -f /sys/devices/system/cpu/possible ]; then
986         local cpus=$(($(cut -d "-" -f 2 /sys/devices/system/cpu/possible)+1))
987     else
988         local cpus=$(getconf _NPROCESSORS_CONF)
989     fi
990
991     # bug 19944, adjust size to be -gt num_possible_cpus()
992     # promise 2MB for every cpu at least
993     if [ -n "$cpus" ] && [ $((cpus * 2)) -gt $dz ]; then
994         dz=$((cpus * 2))
995     fi
996     lctl set_param debug_mb=$dz
997 }
998
999 set_default_debug () {
1000     local debug=${1:-"$PTLDEBUG"}
1001     local subsys=${2:-"$SUBSYSTEM"}
1002     local debug_size=${3:-$DEBUG_SIZE}
1003
1004     [ -n "$debug" ] && lctl set_param debug="$debug" >/dev/null
1005     [ -n "$subsys" ] && lctl set_param subsystem_debug="${subsys# }" >/dev/null
1006
1007     [ -n "$debug_size" ] && set_debug_size $debug_size > /dev/null
1008 }
1009
1010 set_default_debug_nodes () {
1011         local nodes="$1"
1012
1013         if [[ ,$nodes, = *,$HOSTNAME,* ]]; then
1014                 nodes=$(exclude_items_from_list "$nodes" "$HOSTNAME")
1015                 set_default_debug
1016         fi
1017
1018         do_rpc_nodes "$nodes" set_default_debug \
1019                 \\\"$PTLDEBUG\\\" \\\"$SUBSYSTEM\\\" $DEBUG_SIZE || true
1020 }
1021
1022 set_default_debug_facet () {
1023     local facet=$1
1024     local node=$(facet_active_host $facet)
1025     [ -z "$node" ] && echo "No host defined for facet $facet" && exit 1
1026
1027     set_default_debug_nodes $node
1028 }
1029
1030 # Facet functions
1031 mount_facets () {
1032         local facets=${1:-$(get_facets)}
1033         local facet
1034
1035         for facet in ${facets//,/ }; do
1036                 mount_facet $facet
1037                 local RC=$?
1038                 [ $RC -eq 0 ] && continue
1039
1040                 if [ "$TESTSUITE.$TESTNAME" = "replay-dual.test_0a" ]; then
1041                         skip "Restart of $facet failed!." && touch $LU482_FAILED
1042                 else
1043                         error "Restart of $facet failed!"
1044                 fi
1045                 return $RC
1046         done
1047 }
1048
1049 #
1050 # Add argument "arg" (e.g., "loop") to the comma-separated list
1051 # of arguments for option "opt" (e.g., "-o") on command
1052 # line "opts" (e.g., "-o flock").
1053 #
1054 csa_add() {
1055         local opts=$1
1056         local opt=$2
1057         local arg=$3
1058         local opt_pattern="\([[:space:]]\+\|^\)$opt"
1059
1060         if echo "$opts" | grep -q $opt_pattern; then
1061                 opts=$(echo "$opts" | sed -e \
1062                         "s/$opt_pattern[[:space:]]*[^[:space:]]\+/&,$arg/")
1063         else
1064                 opts+="${opts:+ }$opt $arg"
1065         fi
1066         echo -n "$opts"
1067 }
1068
1069 mount_facet() {
1070         local facet=$1
1071         shift
1072         local dev=$(facet_active $facet)_dev
1073         local opt=${facet}_opt
1074         local mntpt=$(facet_mntpt $facet)
1075         local opts="${!opt} $@"
1076
1077         if [ $(facet_fstype $facet) == ldiskfs ] &&
1078            ! do_facet $facet test -b ${!dev}; then
1079                 opts=$(csa_add "$opts" -o loop)
1080         fi
1081
1082         if [[ $(facet_fstype $facet) == zfs ]]; then
1083                 # import ZFS storage pool
1084                 import_zpool $facet || return ${PIPESTATUS[0]}
1085         fi
1086
1087         echo "Starting ${facet}: $opts ${!dev} $mntpt"
1088         # for testing LU-482 error handling in mount_facets() and test_0a()
1089         if [ -f $TMP/test-lu482-trigger ]; then
1090                 RC=2
1091         else
1092                 do_facet ${facet} "mkdir -p $mntpt; mount -t lustre $opts \
1093                                    ${!dev} $mntpt"
1094                 RC=${PIPESTATUS[0]}
1095         fi
1096         if [ $RC -ne 0 ]; then
1097                 echo "Start of ${!dev} on ${facet} failed ${RC}"
1098     else
1099         set_default_debug_facet $facet
1100
1101                 label=$(devicelabel ${facet} ${!dev})
1102         [ -z "$label" ] && echo no label for ${!dev} && exit 1
1103         eval export ${facet}_svc=${label}
1104         echo Started ${label}
1105     fi
1106     return $RC
1107 }
1108
1109 # start facet device options
1110 start() {
1111     local facet=$1
1112     shift
1113     local device=$1
1114     shift
1115     eval export ${facet}_dev=${device}
1116     eval export ${facet}_opt=\"$@\"
1117
1118     local varname=${facet}failover_dev
1119     if [ -n "${!varname}" ] ; then
1120         eval export ${facet}failover_dev=${!varname}
1121     else
1122         eval export ${facet}failover_dev=$device
1123     fi
1124
1125     local mntpt=$(facet_mntpt $facet)
1126     do_facet ${facet} mkdir -p $mntpt
1127     eval export ${facet}_MOUNT=$mntpt
1128     mount_facet ${facet}
1129     RC=$?
1130     return $RC
1131 }
1132
1133 stop() {
1134     local running
1135     local facet=$1
1136     shift
1137     local HOST=`facet_active_host $facet`
1138     [ -z $HOST ] && echo stop: no host for $facet && return 0
1139
1140     local mntpt=$(facet_mntpt $facet)
1141     running=$(do_facet ${facet} "grep -c $mntpt' ' /proc/mounts") || true
1142     if [ ${running} -ne 0 ]; then
1143         echo "Stopping $mntpt (opts:$@) on $HOST"
1144         do_facet ${facet} umount -d $@ $mntpt
1145     fi
1146
1147         # umount should block, but we should wait for unrelated obd's
1148         # like the MGS or MGC to also stop.
1149         wait_exit_ST ${facet} || return ${PIPESTATUS[0]}
1150
1151         if [[ $(facet_fstype $facet) == zfs ]]; then
1152                 # export ZFS storage pool
1153                 export_zpool $facet
1154         fi
1155 }
1156
1157 # save quota version (both administrative and operational quotas)
1158 # add an additional parameter if mountpoint is ever different from $MOUNT
1159 #
1160 # XXX This function is kept for interoperability with old server (< 2.3.50),
1161 #     it should be removed whenever we drop the interoperability for such
1162 #     server.
1163 quota_save_version() {
1164     local fsname=${2:-$FSNAME}
1165     local spec=$1
1166     local ver=$(tr -c -d "123" <<< $spec)
1167     local type=$(tr -c -d "ug" <<< $spec)
1168
1169     [ -n "$ver" -a "$ver" != "3" ] && error "wrong quota version specifier"
1170
1171     [ -n "$type" ] && { $LFS quotacheck -$type $MOUNT || error "quotacheck has failed"; }
1172
1173     do_facet mgs "lctl conf_param ${fsname}-MDT*.mdd.quota_type=$spec"
1174     local varsvc
1175     local osts=$(get_facets OST)
1176     for ost in ${osts//,/ }; do
1177         varsvc=${ost}_svc
1178         do_facet mgs "lctl conf_param ${!varsvc}.ost.quota_type=$spec"
1179     done
1180 }
1181
1182 # client could mount several lustre
1183 #
1184 # XXX This function is kept for interoperability with old server (< 2.3.50),
1185 #     it should be removed whenever we drop the interoperability for such
1186 #     server.
1187 quota_type() {
1188         local fsname=${1:-$FSNAME}
1189         local rc=0
1190         do_facet $SINGLEMDS lctl get_param mdd.${fsname}-MDT*.quota_type ||
1191                 rc=$?
1192         do_nodes $(comma_list $(osts_nodes)) \
1193                 lctl get_param obdfilter.${fsname}-OST*.quota_type || rc=$?
1194         return $rc 
1195 }
1196
1197 # XXX This function is kept for interoperability with old server (< 2.3.50),
1198 #     it should be removed whenever we drop the interoperability for such
1199 #     server.
1200 restore_quota_old() {
1201         local mntpt=${1:-$MOUNT}
1202         local quota_type=$(quota_type $FSNAME | grep MDT | cut -d "=" -f2)
1203         if [ ! "$old_QUOTA_TYPE" ] ||
1204                 [ "$quota_type" = "$old_QUOTA_TYPE" ]; then
1205                 return
1206         fi
1207         quota_save_version $old_QUOTA_TYPE
1208 }
1209
1210 # XXX This function is kept for interoperability with old server (< 2.3.50),
1211 #     it should be removed whenever we drop the interoperability for such
1212 #     server.
1213 setup_quota_old(){
1214         local mntpt=$1
1215
1216         # no quota enforcement for now and accounting works out of the box
1217         return
1218
1219     # We need save the original quota_type params, and restore them after testing
1220
1221     # Suppose that quota type the same on mds and ost
1222     local quota_type=$(quota_type | grep MDT | cut -d "=" -f2)
1223     [ ${PIPESTATUS[0]} -eq 0 ] || error "quota_type failed!"
1224     echo "[HOST:$HOSTNAME] [old_quota_type:$quota_type] [new_quota_type:$QUOTA_TYPE]"
1225     if [ "$quota_type" != "$QUOTA_TYPE" ]; then
1226         export old_QUOTA_TYPE=$quota_type
1227         quota_save_version $QUOTA_TYPE
1228     else
1229         qtype=$(tr -c -d "ug" <<< $QUOTA_TYPE)
1230         $LFS quotacheck -$qtype $mntpt || error "quotacheck has failed for $type"
1231     fi
1232
1233     local quota_usrs=$QUOTA_USERS
1234
1235     # get_filesystem_size
1236     local disksz=$(lfs_df $mntpt | grep "summary"  | awk '{print $2}')
1237     local blk_soft=$((disksz + 1024))
1238     local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1239
1240     local Inodes=$(lfs_df -i $mntpt | grep "summary"  | awk '{print $2}')
1241     local i_soft=$Inodes
1242     local i_hard=$((i_soft + i_soft / 20))
1243
1244     echo "Total disk size: $disksz  block-softlimit: $blk_soft block-hardlimit:
1245         $blk_hard inode-softlimit: $i_soft inode-hardlimit: $i_hard"
1246
1247     local cmd
1248     for usr in $quota_usrs; do
1249         echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1250         for type in u g; do
1251             cmd="$LFS setquota -$type $usr -b $blk_soft -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1252             echo "+ $cmd"
1253             eval $cmd || error "$cmd FAILED!"
1254         done
1255         # display the quota status
1256         echo "Quota settings for $usr : "
1257         $LFS quota -v -u $usr $mntpt || true
1258     done
1259 }
1260
1261 # get mdt quota type
1262 mdt_quota_type() {
1263         local varsvc=${SINGLEMDS}_svc
1264         do_facet $SINGLEMDS $LCTL get_param -n \
1265                 osd-$(facet_fstype $SINGLEMDS).${!varsvc}.quota_slave.enabled
1266 }
1267
1268 # get ost quota type
1269 ost_quota_type() {
1270         # All OSTs should have same quota type
1271         local varsvc=ost1_svc
1272         do_facet ost1 $LCTL get_param -n \
1273                 osd-$(facet_fstype ost1).${!varsvc}.quota_slave.enabled
1274 }
1275
1276 # restore old quota type settings
1277 restore_quota() {
1278         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1279                 restore_quota_old
1280                 return
1281         fi
1282
1283         if [ "$old_MDT_QUOTA_TYPE" ]; then
1284                 do_facet mgs $LCTL conf_param \
1285                         $FSNAME.quota.mdt=$old_MDT_QUOTA_TYPE
1286         fi
1287         if [ "$old_OST_QUOTA_TYPE" ]; then
1288                 do_facet mgs $LCTL conf_param \
1289                         $FSNAME.quota.ost=$old_OST_QUOTA_TYPE
1290         fi
1291 }
1292
1293 # Handle the case when there is a space in the lfs df
1294 # "filesystem summary" line the same as when there is no space.
1295 # This will allow fixing the "lfs df" summary line in the future.
1296 lfs_df() {
1297         $LFS df $* | sed -e 's/filesystem /filesystem_/'
1298 }
1299
1300 # Get free inodes on the MDT specified by mdt index, free indoes on
1301 # the whole filesystem will be returned when index == -1.
1302 mdt_free_inodes() {
1303         local index=$1
1304         local free_inodes
1305         local mdt_uuid
1306
1307         if [ $index -eq -1 ]; then
1308                 mdt_uuid="summary"
1309         else
1310                 mdt_uuid=$(mdtuuid_from_index $index)
1311         fi
1312
1313         free_inodes=$(lfs_df -i $MOUNT | grep $mdt_uuid | awk '{print $4}')
1314         echo $free_inodes
1315 }
1316
1317 setup_quota(){
1318         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ]; then
1319                 setup_quota_old $1
1320                 return
1321         fi
1322
1323         local mntpt=$1
1324
1325         # save old quota type & set new quota type
1326         local mdt_qtype=$(mdt_quota_type)
1327         local ost_qtype=$(ost_quota_type)
1328
1329         echo "[HOST:$HOSTNAME] [old_mdt_qtype:$mdt_qtype]" \
1330                 "[old_ost_qtype:$ost_qtype] [new_qtype:$QUOTA_TYPE]"
1331
1332         export old_MDT_QUOTA_TYPE=$mdt_qtype
1333         export old_OST_QUOTA_TYPE=$ost_qtype
1334
1335         do_facet mgs $LCTL conf_param $FSNAME.quota.mdt=$QUOTA_TYPE ||
1336                 error "set mdt quota type failed"
1337         do_facet mgs $LCTL conf_param $FSNAME.quota.ost=$QUOTA_TYPE ||
1338                 error "set ost quota type failed"
1339
1340         local quota_usrs=$QUOTA_USERS
1341
1342         # get_filesystem_size
1343         local disksz=$(lfs_df $mntpt | grep "summary" | awk '{print $2}')
1344         local blk_soft=$((disksz + 1024))
1345         local blk_hard=$((blk_soft + blk_soft / 20)) # Go 5% over
1346
1347         local inodes=$(lfs_df -i $mntpt | grep "summary" | awk '{print $2}')
1348         local i_soft=$inodes
1349         local i_hard=$((i_soft + i_soft / 20))
1350
1351         echo "Total disk size: $disksz  block-softlimit: $blk_soft" \
1352                 "block-hardlimit: $blk_hard inode-softlimit: $i_soft" \
1353                 "inode-hardlimit: $i_hard"
1354
1355         local cmd
1356         for usr in $quota_usrs; do
1357                 echo "Setting up quota on $HOSTNAME:$mntpt for $usr..."
1358                 for type in u g; do
1359                         cmd="$LFS setquota -$type $usr -b $blk_soft"
1360                         cmd="$cmd -B $blk_hard -i $i_soft -I $i_hard $mntpt"
1361                         echo "+ $cmd"
1362                         eval $cmd || error "$cmd FAILED!"
1363                 done
1364                 # display the quota status
1365                 echo "Quota settings for $usr : "
1366                 $LFS quota -v -u $usr $mntpt || true
1367         done
1368 }
1369
1370 zconf_mount() {
1371     local client=$1
1372     local mnt=$2
1373     local OPTIONS=${3:-$MOUNTOPT}
1374
1375     local device=$MGSNID:/$FSNAME
1376     if [ -z "$mnt" -o -z "$FSNAME" ]; then
1377         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
1378         exit 1
1379     fi
1380
1381     echo "Starting client: $client: $OPTIONS $device $mnt"
1382     do_node $client mkdir -p $mnt
1383     do_node $client mount -t lustre $OPTIONS $device $mnt || return 1
1384
1385     set_default_debug_nodes $client
1386
1387     return 0
1388 }
1389
1390 zconf_umount() {
1391     local client=$1
1392     local mnt=$2
1393     local force
1394     local busy 
1395     local need_kill
1396
1397     [ "$3" ] && force=-f
1398     local running=$(do_node $client "grep -c $mnt' ' /proc/mounts") || true
1399     if [ $running -ne 0 ]; then
1400         echo "Stopping client $client $mnt (opts:$force)"
1401         do_node $client lsof -t $mnt || need_kill=no
1402         if [ "x$force" != "x" -a "x$need_kill" != "xno" ]; then
1403             pids=$(do_node $client lsof -t $mnt | sort -u);
1404             if [ -n $pids ]; then
1405                 do_node $client kill -9 $pids || true
1406             fi
1407         fi
1408
1409         busy=$(do_node $client "umount $force $mnt 2>&1" | grep -c "busy") || true
1410         if [ $busy -ne 0 ] ; then
1411             echo "$mnt is still busy, wait one second" && sleep 1
1412             do_node $client umount $force $mnt
1413         fi
1414     fi
1415 }
1416
1417 # nodes is comma list
1418 sanity_mount_check_nodes () {
1419     local nodes=$1
1420     shift
1421     local mnts="$@"
1422     local mnt
1423
1424     # FIXME: assume that all cluster nodes run the same os
1425     [ "$(uname)" = Linux ] || return 0
1426
1427     local rc=0
1428     for mnt in $mnts ; do
1429         do_nodes $nodes "running=\\\$(grep -c $mnt' ' /proc/mounts);
1430 mpts=\\\$(mount | grep -c $mnt' ');
1431 if [ \\\$running -ne \\\$mpts ]; then
1432     echo \\\$(hostname) env are INSANE!;
1433     exit 1;
1434 fi"
1435     [ $? -eq 0 ] || rc=1 
1436     done
1437     return $rc
1438 }
1439
1440 sanity_mount_check_servers () {
1441     [ "$CLIENTONLY" ] && 
1442         { echo "CLIENTONLY mode, skip mount_check_servers"; return 0; } || true
1443     echo Checking servers environments
1444
1445     # FIXME: modify get_facets to display all facets wo params
1446     local facets="$(get_facets OST),$(get_facets MDS),mgs"
1447     local node
1448     local mntpt
1449     local facet
1450     for facet in ${facets//,/ }; do
1451         node=$(facet_host ${facet})
1452         mntpt=$(facet_mntpt $facet)
1453         sanity_mount_check_nodes $node $mntpt ||
1454             { error "server $node environments are insane!"; return 1; }
1455     done
1456 }
1457
1458 sanity_mount_check_clients () {
1459     local clients=${1:-$CLIENTS}
1460     local mntpt=${2:-$MOUNT}
1461     local mntpt2=${3:-$MOUNT2}
1462
1463     [ -z $clients ] && clients=$(hostname)
1464     echo Checking clients $clients environments
1465
1466     sanity_mount_check_nodes $clients $mntpt $mntpt2 ||
1467        error "clients environments are insane!"
1468 }
1469
1470 sanity_mount_check () {
1471     sanity_mount_check_servers || return 1
1472     sanity_mount_check_clients || return 2
1473 }
1474
1475 # mount clients if not mouted
1476 zconf_mount_clients() {
1477     local clients=$1
1478     local mnt=$2
1479     local OPTIONS=${3:-$MOUNTOPT}
1480
1481     local device=$MGSNID:/$FSNAME
1482     if [ -z "$mnt" -o -z "$FSNAME" ]; then
1483         echo Bad zconf mount command: opt=$OPTIONS dev=$device mnt=$mnt
1484         exit 1
1485     fi
1486
1487     echo "Starting client $clients: $OPTIONS $device $mnt"
1488
1489     do_nodes $clients "
1490 running=\\\$(mount | grep -c $mnt' ');
1491 rc=0;
1492 if [ \\\$running -eq 0 ] ; then
1493     mkdir -p $mnt;
1494     mount -t lustre $OPTIONS $device $mnt;
1495     rc=\\\$?;
1496 fi;
1497 exit \\\$rc" || return ${PIPESTATUS[0]}
1498
1499     echo "Started clients $clients: "
1500     do_nodes $clients "mount | grep $mnt' '"
1501
1502     set_default_debug_nodes $clients
1503
1504     return 0
1505 }
1506
1507 zconf_umount_clients() {
1508     local clients=$1
1509     local mnt=$2
1510     local force
1511
1512     [ "$3" ] && force=-f
1513
1514     echo "Stopping clients: $clients $mnt (opts:$force)"
1515     do_nodes $clients "running=\\\$(grep -c $mnt' ' /proc/mounts);
1516 if [ \\\$running -ne 0 ] ; then
1517 echo Stopping client \\\$(hostname) $mnt opts:$force;
1518 lsof $mnt || need_kill=no;
1519 if [ "x$force" != "x" -a "x\\\$need_kill" != "xno" ]; then
1520     pids=\\\$(lsof -t $mnt | sort -u);
1521     if [ -n \\\"\\\$pids\\\" ]; then
1522              kill -9 \\\$pids;
1523     fi
1524 fi;
1525 while umount $force $mnt 2>&1 | grep -q "busy"; do
1526     echo "$mnt is still busy, wait one second" && sleep 1;
1527 done;
1528 fi"
1529 }
1530
1531 shutdown_node () {
1532     local node=$1
1533     echo + $POWER_DOWN $node
1534     $POWER_DOWN $node
1535 }
1536
1537 shutdown_node_hard () {
1538     local host=$1
1539     local attempts=$SHUTDOWN_ATTEMPTS
1540
1541     for i in $(seq $attempts) ; do
1542         shutdown_node $host
1543         sleep 1
1544         wait_for_function --quiet "! ping -w 3 -c 1 $host" 5 1 && return 0
1545         echo "waiting for $host to fail attempts=$attempts"
1546         [ $i -lt $attempts ] || \
1547             { echo "$host still pingable after power down! attempts=$attempts" && return 1; } 
1548     done
1549 }
1550
1551 shutdown_client() {
1552     local client=$1
1553     local mnt=${2:-$MOUNT}
1554     local attempts=3
1555
1556     if [ "$FAILURE_MODE" = HARD ]; then
1557         shutdown_node_hard $client
1558     else
1559        zconf_umount_clients $client $mnt -f
1560     fi
1561 }
1562
1563 facets_on_host () {
1564     local host=$1
1565     local facets="$(get_facets OST),$(get_facets MDS)"
1566     local affected
1567
1568     combined_mgs_mds || facets="$facets,mgs"
1569
1570     for facet in ${facets//,/ }; do
1571         if [ $(facet_active_host $facet) == $host ]; then
1572            affected="$affected $facet"
1573         fi
1574     done
1575
1576     echo $(comma_list $affected)
1577 }
1578
1579 facet_up() {
1580         local facet=$1
1581         local host=${2:-$(facet_host $facet)}
1582
1583         local label=$(convert_facet2label $facet)
1584         do_node $host $LCTL dl | awk '{print $4}' | grep -q -x $label
1585 }
1586
1587 facets_up_on_host () {
1588     local host=$1
1589     local facets=$(facets_on_host $host)
1590     local affected_up
1591
1592     for facet in ${facets//,/ }; do
1593         if $(facet_up $facet $host); then
1594             affected_up="$affected_up $facet"
1595         fi
1596     done
1597
1598     echo $(comma_list $affected_up)
1599 }
1600
1601 shutdown_facet() {
1602     local facet=$1
1603
1604     if [ "$FAILURE_MODE" = HARD ]; then
1605         shutdown_node_hard $(facet_active_host $facet)
1606     else
1607         stop $facet
1608     fi
1609 }
1610
1611 reboot_node() {
1612     local node=$1
1613     echo + $POWER_UP $node
1614     $POWER_UP $node
1615 }
1616
1617 remount_facet() {
1618     local facet=$1
1619
1620     stop $facet
1621     mount_facet $facet
1622 }
1623
1624 reboot_facet() {
1625         local facet=$1
1626         if [ "$FAILURE_MODE" = HARD ]; then
1627                 reboot_node $(facet_active_host $facet)
1628         else
1629                 sleep 10
1630         fi
1631 }
1632
1633 boot_node() {
1634     local node=$1
1635     if [ "$FAILURE_MODE" = HARD ]; then
1636        reboot_node $node
1637        wait_for_host $node
1638     fi
1639 }
1640
1641 facets_hosts () {
1642     local facets=$1
1643     local hosts
1644
1645     for facet in ${facets//,/ }; do
1646         hosts=$(expand_list $hosts $(facet_host $facet) )
1647     done
1648
1649     echo $hosts
1650 }
1651
1652 _check_progs_installed () {
1653     local progs=$@
1654     local rc=0
1655
1656     for prog in $progs; do
1657         if ! [ "$(which $prog)"  -o  "${!prog}" ]; then
1658            echo $prog missing on $(hostname)
1659            rc=1
1660         fi
1661     done
1662     return $rc
1663 }
1664
1665 check_progs_installed () {
1666         local nodes=$1
1667         shift
1668
1669         do_rpc_nodes "$nodes" _check_progs_installed $@
1670 }
1671
1672 # recovery-scale functions
1673 node_var_name() {
1674     echo __$(echo $1 | tr '-' '_' | tr '.' '_')
1675 }
1676
1677 start_client_load() {
1678     local client=$1
1679     local load=$2
1680     local var=$(node_var_name $client)_load
1681     eval export ${var}=$load
1682
1683     do_node $client "PATH=$PATH MOUNT=$MOUNT ERRORS_OK=$ERRORS_OK \
1684 BREAK_ON_ERROR=$BREAK_ON_ERROR \
1685 END_RUN_FILE=$END_RUN_FILE \
1686 LOAD_PID_FILE=$LOAD_PID_FILE \
1687 TESTLOG_PREFIX=$TESTLOG_PREFIX \
1688 TESTNAME=$TESTNAME \
1689 DBENCH_LIB=$DBENCH_LIB \
1690 DBENCH_SRC=$DBENCH_SRC \
1691 CLIENT_COUNT=$((CLIENTCOUNT - 1)) \
1692 LFS=$LFS \
1693 run_${load}.sh" &
1694     local ppid=$!
1695     log "Started client load: ${load} on $client"
1696
1697     # get the children process IDs
1698     local pids=$(ps --ppid $ppid -o pid= | xargs)
1699     CLIENT_LOAD_PIDS="$CLIENT_LOAD_PIDS $ppid $pids"
1700     return 0
1701 }
1702
1703 start_client_loads () {
1704     local -a clients=(${1//,/ })
1705     local numloads=${#CLIENT_LOADS[@]}
1706     local testnum
1707
1708     for ((nodenum=0; nodenum < ${#clients[@]}; nodenum++ )); do
1709         testnum=$((nodenum % numloads))
1710         start_client_load ${clients[nodenum]} ${CLIENT_LOADS[testnum]}
1711     done
1712     # bug 22169: wait the background threads to start
1713     sleep 2
1714 }
1715
1716 # only for remote client
1717 check_client_load () {
1718     local client=$1
1719     local var=$(node_var_name $client)_load
1720     local TESTLOAD=run_${!var}.sh
1721
1722     ps auxww | grep -v grep | grep $client | grep -q "$TESTLOAD" || return 1
1723
1724     # bug 18914: try to connect several times not only when
1725     # check ps, but  while check_catastrophe also
1726     local tries=3
1727     local RC=254
1728     while [ $RC = 254 -a $tries -gt 0 ]; do
1729         let tries=$tries-1
1730         # assume success
1731         RC=0
1732         if ! check_catastrophe $client; then
1733             RC=${PIPESTATUS[0]}
1734             if [ $RC -eq 254 ]; then
1735                 # FIXME: not sure how long we shuold sleep here
1736                 sleep 10
1737                 continue
1738             fi
1739             echo "check catastrophe failed: RC=$RC "
1740             return $RC
1741         fi
1742     done
1743     # We can continue try to connect if RC=254
1744     # Just print the warning about this
1745     if [ $RC = 254 ]; then
1746         echo "got a return status of $RC from do_node while checking catastrophe on $client"
1747     fi
1748
1749     # see if the load is still on the client
1750     tries=3
1751     RC=254
1752     while [ $RC = 254 -a $tries -gt 0 ]; do
1753         let tries=$tries-1
1754         # assume success
1755         RC=0
1756         if ! do_node $client "ps auxwww | grep -v grep | grep -q $TESTLOAD"; then
1757             RC=${PIPESTATUS[0]}
1758             sleep 30
1759         fi
1760     done
1761     if [ $RC = 254 ]; then
1762         echo "got a return status of $RC from do_node while checking (catastrophe and 'ps') the client load on $client"
1763         # see if we can diagnose a bit why this is
1764     fi
1765
1766     return $RC
1767 }
1768 check_client_loads () {
1769    local clients=${1//,/ }
1770    local client=
1771    local rc=0
1772
1773    for client in $clients; do
1774       check_client_load $client
1775       rc=${PIPESTATUS[0]}
1776       if [ "$rc" != 0 ]; then
1777         log "Client load failed on node $client, rc=$rc"
1778         return $rc
1779       fi
1780    done
1781 }
1782
1783 restart_client_loads () {
1784     local clients=${1//,/ }
1785     local expectedfail=${2:-""}
1786     local client=
1787     local rc=0
1788
1789     for client in $clients; do
1790         check_client_load $client
1791         rc=${PIPESTATUS[0]}
1792         if [ "$rc" != 0 -a "$expectedfail" ]; then
1793             local var=$(node_var_name $client)_load
1794             start_client_load $client ${!var}
1795             echo "Restarted client load ${!var}: on $client. Checking ..."
1796             check_client_load $client
1797             rc=${PIPESTATUS[0]}
1798             if [ "$rc" != 0 ]; then
1799                 log "Client load failed to restart on node $client, rc=$rc"
1800                 # failure one client load means test fail
1801                 # we do not need to check other
1802                 return $rc
1803             fi
1804         else
1805             return $rc
1806         fi
1807     done
1808 }
1809
1810 # Start vmstat and save its process ID in a file.
1811 start_vmstat() {
1812     local nodes=$1
1813     local pid_file=$2
1814
1815     [ -z "$nodes" -o -z "$pid_file" ] && return 0
1816
1817     do_nodes $nodes \
1818         "vmstat 1 > $TESTLOG_PREFIX.$TESTNAME.vmstat.\\\$(hostname -s).log \
1819         2>/dev/null </dev/null & echo \\\$! > $pid_file"
1820 }
1821
1822 # Display the nodes on which client loads failed.
1823 print_end_run_file() {
1824     local file=$1
1825     local node
1826
1827     [ -s $file ] || return 0
1828
1829     echo "Found the END_RUN_FILE file: $file"
1830     cat $file
1831
1832     # A client load will stop if it finds the END_RUN_FILE file.
1833     # That does not mean the client load actually failed though.
1834     # The first node in END_RUN_FILE is the one we are interested in.
1835     read node < $file
1836
1837     if [ -n "$node" ]; then
1838         local var=$(node_var_name $node)_load
1839
1840         local prefix=$TESTLOG_PREFIX
1841         [ -n "$TESTNAME" ] && prefix=$prefix.$TESTNAME
1842         local stdout_log=$prefix.run_${!var}_stdout.$node.log
1843         local debug_log=$(echo $stdout_log | sed 's/\(.*\)stdout/\1debug/')
1844
1845         echo "Client load ${!var} failed on node $node:"
1846         echo "$stdout_log"
1847         echo "$debug_log"
1848     fi
1849 }
1850
1851 # Stop the process which had its PID saved in a file.
1852 stop_process() {
1853     local nodes=$1
1854     local pid_file=$2
1855
1856     [ -z "$nodes" -o -z "$pid_file" ] && return 0
1857
1858     do_nodes $nodes "test -f $pid_file &&
1859         { kill -s TERM \\\$(cat $pid_file); rm -f $pid_file; }" || true
1860 }
1861
1862 # Stop all client loads.
1863 stop_client_loads() {
1864     local nodes=${1:-$CLIENTS}
1865     local pid_file=$2
1866
1867     # stop the client loads
1868     stop_process $nodes $pid_file
1869
1870     # clean up the processes that started them
1871     [ -n "$CLIENT_LOAD_PIDS" ] && kill -9 $CLIENT_LOAD_PIDS 2>/dev/null || true
1872 }
1873 # End recovery-scale functions
1874
1875 # verify that lustre actually cleaned up properly
1876 cleanup_check() {
1877     [ -f $CATASTROPHE ] && [ `cat $CATASTROPHE` -ne 0 ] && \
1878         error "LBUG/LASSERT detected"
1879     BUSY=`dmesg | grep -i destruct || true`
1880     if [ "$BUSY" ]; then
1881         echo "$BUSY" 1>&2
1882         [ -e $TMP/debug ] && mv $TMP/debug $TMP/debug-busy.`date +%s`
1883         exit 205
1884     fi
1885
1886     check_mem_leak || exit 204
1887
1888         [ "`lctl dl 2> /dev/null | wc -l`" -gt 0 ] && lctl dl &&
1889                 echo "$TESTSUITE: lustre didn't clean up..." 1>&2 &&
1890                 return 202 || true
1891
1892         if module_loaded lnet || module_loaded libcfs; then
1893                 echo "$TESTSUITE: modules still loaded..." 1>&2
1894                 /sbin/lsmod 1>&2
1895                 return 203
1896         fi
1897         return 0
1898 }
1899
1900 wait_update () {
1901         local verbose=false
1902         if [[ "$1" == "--verbose" ]]; then
1903                 shift
1904                 verbose=true
1905         fi
1906
1907         local node=$1
1908         local TEST=$2
1909         local FINAL=$3
1910         local MAX=${4:-90}
1911         local RESULT
1912         local PREV_RESULT
1913         local WAIT=0
1914         local sleep=1
1915         local print=10
1916
1917         while [ true ]; do
1918                 RESULT=$(do_node $node "$TEST")
1919                 if [[ "$RESULT" == "$FINAL" ]]; then
1920                         [[ -z "$RESULT" || $WAIT -le $sleep ]] ||
1921                                 echo "Updated after ${WAIT}s: wanted '$FINAL'"\
1922                                      "got '$RESULT'"
1923                         return 0
1924                 fi
1925                 if [[ $verbose && "$RESULT" != "$PREV_RESULT" ]]; then
1926                         echo "Changed after ${WAIT}s: from '$PREV_RESULT'"\
1927                              "to '$RESULT'"
1928                         PREV_RESULT=$RESULT
1929                 fi
1930                 [[ $WAIT -ge $MAX ]] && break
1931                 [[ $((WAIT % print)) -eq 0 ]] &&
1932                         echo "Waiting $((MAX - WAIT)) secs for update"
1933                 WAIT=$((WAIT + sleep))
1934                 sleep $sleep
1935         done
1936         echo "Update not seen after ${MAX}s: wanted '$FINAL' got '$RESULT'"
1937         return 3
1938 }
1939
1940 wait_update_facet() {
1941         local facet=$1
1942         shift
1943         wait_update $(facet_active_host $facet) "$@"
1944 }
1945
1946 sync_all_data() {
1947         do_nodes $(comma_list $(mdts_nodes)) \
1948             "lctl set_param -n osd*.*MDT*.force_sync 1"
1949         do_nodes $(comma_list $(osts_nodes)) \
1950             "lctl set_param -n osd*.*OS*.force_sync 1" 2>&1 |
1951                 grep -v 'Found no match'
1952 }
1953
1954 wait_delete_completed_mds() {
1955         local MAX_WAIT=${1:-20}
1956         local mds2sync=""
1957         local stime=`date +%s`
1958         local etime
1959         local node
1960         local changes
1961
1962         # find MDS with pending deletions
1963         for node in $(mdts_nodes); do
1964                 changes=$(do_node $node "lctl get_param -n osc.*MDT*.sync_*" \
1965                         2>/dev/null | calc_sum)
1966                 if [ -z "$changes" ] || [ $changes -eq 0 ]; then
1967                         continue
1968                 fi
1969                 mds2sync="$mds2sync $node"
1970         done
1971         if [ "$mds2sync" == "" ]; then
1972                 return
1973         fi
1974         mds2sync=$(comma_list $mds2sync)
1975
1976         # sync MDS transactions
1977         do_nodes $mds2sync "lctl set_param -n osd*.*MD*.force_sync 1"
1978
1979         # wait till all changes are sent and commmitted by OSTs
1980         # for ldiskfs space is released upon execution, but DMU
1981         # do this upon commit
1982
1983         local WAIT=0
1984         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
1985                 changes=$(do_nodes $mds2sync "lctl get_param -n osc.*MDT*.sync_*" \
1986                         | calc_sum)
1987                 #echo "$node: $changes changes on all"
1988                 if [ "$changes" -eq "0" ]; then
1989                         etime=`date +%s`
1990                         #echo "delete took $((etime - stime)) seconds"
1991                         return
1992                 fi
1993                 sleep 1
1994                 WAIT=$(( WAIT + 1))
1995         done
1996
1997         etime=`date +%s`
1998         echo "Delete is not completed in $((etime - stime)) seconds"
1999         do_nodes $mds2sync "lctl get_param osc.*MDT*.sync_*"
2000 }
2001
2002 wait_for_host() {
2003     local hostlist=$1
2004
2005     # we can use "for" here because we are waiting the slowest
2006     for host in ${hostlist//,/ }; do
2007         check_network "$host" 900
2008     done
2009     while ! do_nodes $hostlist hostname  > /dev/null; do sleep 5; done
2010 }
2011
2012 wait_for_facet() {
2013     local facetlist=$1
2014     local hostlist
2015
2016     for facet in ${facetlist//,/ }; do
2017         hostlist=$(expand_list $hostlist $(facet_active_host $facet))
2018     done
2019     wait_for_host $hostlist
2020 }
2021
2022 _wait_recovery_complete () {
2023     local param=$1
2024
2025     # Use default policy if $2 is not passed by caller.
2026     local MAX=${2:-$(max_recovery_time)}
2027
2028     local WAIT=0
2029     local STATUS=
2030
2031     while [ $WAIT -lt $MAX ]; do
2032         STATUS=$(lctl get_param -n $param | grep status)
2033         echo $param $STATUS
2034         [[ $STATUS = "status: COMPLETE" || $STATUS = "status: INACTIVE" ]] && return 0
2035         sleep 5
2036         WAIT=$((WAIT + 5))
2037         echo "Waiting $((MAX - WAIT)) secs for $param recovery done. $STATUS"
2038     done
2039     echo "$param recovery not done in $MAX sec. $STATUS"
2040     return 1
2041 }
2042
2043 wait_recovery_complete () {
2044     local facet=$1
2045
2046     # with an assumption that at_max is the same on all nodes
2047     local MAX=${2:-$(max_recovery_time)}
2048
2049     local facets=$facet
2050     if [ "$FAILURE_MODE" = HARD ]; then
2051         facets=$(facets_on_host $(facet_active_host $facet))
2052     fi
2053     echo affected facets: $facets
2054
2055         # we can use "for" here because we are waiting the slowest
2056         for facet in ${facets//,/ }; do
2057                 local var_svc=${facet}_svc
2058                 local param="*.${!var_svc}.recovery_status"
2059
2060                 local host=$(facet_active_host $facet)
2061                 do_rpc_nodes "$host" _wait_recovery_complete $param $MAX
2062         done
2063 }
2064
2065 wait_mds_ost_sync () {
2066         # just because recovery is done doesn't mean we've finished
2067         # orphan cleanup. Wait for llogs to get synchronized.
2068         echo "Waiting for orphan cleanup..."
2069         # MAX value includes time needed for MDS-OST reconnection
2070         local MAX=$(( TIMEOUT * 2 ))
2071         local WAIT=0
2072         local new_wait=true
2073         local list=$(comma_list $(mdts_nodes))
2074         local cmd="$LCTL get_param -n osp.*osc*.old_sync_processed"
2075         if ! do_facet $SINGLEMDS \
2076                 "$LCTL list_param osp.*osc*.old_sync_processed 2> /dev/null"
2077         then
2078                 # old way, use mds_sync
2079                 new_wait=false
2080                 list=$(comma_list $(osts_nodes))
2081                 cmd="$LCTL get_param -n obdfilter.*.mds_sync"
2082         fi
2083         while [ $WAIT -lt $MAX ]; do
2084                 local -a sync=($(do_nodes $list "$cmd"))
2085                 local con=1
2086                 local i
2087                 for ((i=0; i<${#sync[@]}; i++)); do
2088                         if $new_wait; then
2089                                 [ ${sync[$i]} -eq 1 ] && continue
2090                         else
2091                                 [ ${sync[$i]} -eq 0 ] && continue
2092                         fi
2093                         # there is a not finished MDS-OST synchronization
2094                         con=0
2095                         break;
2096                 done
2097                 sleep 2 # increase waiting time and cover statfs cache
2098                 [ ${con} -eq 1 ] && return 0
2099                 echo "Waiting $WAIT secs for $facet mds-ost sync done."
2100                 WAIT=$((WAIT + 2))
2101         done
2102         echo "$facet recovery not done in $MAX sec. $STATUS"
2103         return 1
2104 }
2105
2106 wait_destroy_complete () {
2107         echo "Waiting for local destroys to complete"
2108         # MAX value shouldn't be big as this mean server responsiveness
2109         # never increase this just to make test pass but investigate
2110         # why it takes so long time
2111         local MAX=5
2112         local WAIT=0
2113         while [ $WAIT -lt $MAX ]; do
2114                 local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
2115                 local con=1
2116                 local i
2117
2118                 for ((i=0; i<${#RPCs[@]}; i++)); do
2119                         [ ${RPCs[$i]} -eq 0 ] && continue
2120                         # there are still some destroy RPCs in flight
2121                         con=0
2122                         break;
2123                 done
2124                 sleep 1
2125                 [ ${con} -eq 1 ] && return 0 # done waiting
2126                 echo "Waiting ${WAIT}s for local destroys to complete"
2127                 WAIT=$((WAIT + 1))
2128         done
2129         echo "Local destroys weren't done in $MAX sec."
2130         return 1
2131 }
2132
2133 wait_delete_completed() {
2134         wait_delete_completed_mds $1 || return $?
2135         wait_destroy_complete
2136 }
2137
2138 wait_exit_ST () {
2139     local facet=$1
2140
2141     local WAIT=0
2142     local INTERVAL=1
2143     local running
2144     # conf-sanity 31 takes a long time cleanup
2145     while [ $WAIT -lt 300 ]; do
2146         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
2147         [ -z "${running}" ] && return 0
2148         echo "waited $WAIT for${running}"
2149         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
2150         sleep $INTERVAL
2151         WAIT=$((WAIT + INTERVAL))
2152     done
2153     echo "service didn't stop after $WAIT seconds.  Still running:"
2154     echo ${running}
2155     return 1
2156 }
2157
2158 wait_remote_prog () {
2159    local prog=$1
2160    local WAIT=0
2161    local INTERVAL=5
2162    local rc=0
2163
2164    [ "$PDSH" = "no_dsh" ] && return 0
2165
2166    while [ $WAIT -lt $2 ]; do
2167         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
2168         [ -z "${running}" ] && return 0 || true
2169         echo "waited $WAIT for: "
2170         echo "$running"
2171         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
2172         sleep $INTERVAL
2173         WAIT=$((WAIT + INTERVAL))
2174     done
2175     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
2176     [ -z "$pids" ] && return 0
2177     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
2178     # FIXME: not portable
2179     for pid in $pids; do
2180         cat /proc/${pid}/status || true
2181         cat /proc/${pid}/wchan || true
2182         echo "Killing $pid"
2183         kill -9 $pid || true
2184         sleep 1
2185         ps -P $pid && rc=1
2186     done
2187
2188     return $rc
2189 }
2190
2191 clients_up() {
2192     # not every config has many clients
2193     sleep 1
2194     if [ ! -z "$CLIENTS" ]; then
2195         $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
2196     else
2197         stat -f $MOUNT > /dev/null
2198     fi
2199 }
2200
2201 client_up() {
2202     local client=$1
2203     # usually checked on particular client or locally
2204     sleep 1
2205     if [ ! -z "$client" ]; then
2206         $PDSH $client "stat -f $MOUNT" > /dev/null
2207     else
2208         stat -f $MOUNT > /dev/null
2209     fi
2210 }
2211
2212 client_evicted() {
2213     ! client_up $1
2214 }
2215
2216 client_reconnect() {
2217     uname -n >> $MOUNT/recon
2218     if [ -z "$CLIENTS" ]; then
2219         df $MOUNT; uname -n >> $MOUNT/recon
2220     else
2221         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
2222     fi
2223     echo Connected clients:
2224     cat $MOUNT/recon
2225     ls -l $MOUNT/recon > /dev/null
2226     rm $MOUNT/recon
2227 }
2228
2229 affected_facets () {
2230     local facet=$1
2231
2232     local host=$(facet_active_host $facet)
2233     local affected=$facet
2234
2235     if [ "$FAILURE_MODE" = HARD ]; then
2236         affected=$(facets_up_on_host $host)
2237     fi
2238     echo $affected
2239 }
2240
2241 facet_failover() {
2242         local facets=$1
2243         local sleep_time=$2
2244         local -a affecteds
2245         local facet
2246         local total=0
2247         local index=0
2248         local skip
2249
2250         #Because it will only get up facets, we need get affected
2251         #facets before shutdown
2252         #For HARD Failure mode, it needs make sure facets on the same
2253         #HOST will only be shutdown and reboot once
2254         for facet in ${facets//,/ }; do
2255                 local affected_facet
2256                 skip=0
2257                 #check whether facet has been included in other affected facets
2258                 for ((index=0; index<$total; index++)); do
2259                         [[ *,$facet,* == ,${affecteds[index]}, ]] && skip=1
2260                 done
2261
2262                 if [ $skip -eq 0 ]; then
2263                         affecteds[$total]=$(affected_facets $facet)
2264                         total=$((total+1))
2265                 fi
2266         done
2267
2268         for ((index=0; index<$total; index++)); do
2269                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2270                 local host=$(facet_active_host $facet)
2271                 echo "Failing ${affecteds[index]} on $host"
2272                 shutdown_facet $facet
2273         done
2274
2275         for ((index=0; index<$total; index++)); do
2276                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2277                 echo reboot facets: ${affecteds[index]}
2278
2279                 reboot_facet $facet
2280
2281                 change_active ${affecteds[index]}
2282
2283                 wait_for_facet ${affecteds[index]}
2284                 # start mgs first if it is affected
2285                 if ! combined_mgs_mds &&
2286                         list_member ${affecteds[index]} mgs; then
2287                         mount_facet mgs || error "Restart of mgs failed"
2288                 fi
2289                 # FIXME; has to be changed to mount all facets concurrently
2290                 affected=$(exclude_items_from_list ${affecteds[index]} mgs)
2291                 echo mount facets: ${affecteds[index]}
2292                 mount_facets ${affecteds[index]}
2293         done
2294 }
2295
2296 obd_name() {
2297     local facet=$1
2298 }
2299
2300 replay_barrier() {
2301         local facet=$1
2302         do_facet $facet "sync; sync; sync"
2303         df $MOUNT
2304
2305         # make sure there will be no seq change
2306         local clients=${CLIENTS:-$HOSTNAME}
2307         local f=fsa-\\\$\(hostname\)
2308         do_nodes $clients "mcreate $MOUNT/$f; rm $MOUNT/$f"
2309         do_nodes $clients "if [ -d $MOUNT2 ]; then mcreate $MOUNT2/$f; rm $MOUNT2/$f; fi"
2310
2311         local svc=${facet}_svc
2312         do_facet $facet $LCTL --device ${!svc} notransno
2313         #
2314         # If a ZFS OSD is made read-only here, its pool is "freezed". This
2315         # in-memory state has to be cleared by either rebooting the host or
2316         # exporting and reimporting the pool.
2317         #
2318         # Although the uberblocks are not updated when a pool is freezed,
2319         # transactions are still written to the disks. Modified blocks may be
2320         # cached in memory when tests try reading them back. The
2321         # export-and-reimport process also evicts any cached pool data from
2322         # memory to provide the correct "data loss" semantics.
2323         #
2324         # In the test framework, the exporting and importing operations are
2325         # handled by stop() and mount_facet() separately, which are used
2326         # inside fail() and fail_abort().
2327         #
2328         do_facet $facet $LCTL --device ${!svc} readonly
2329         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2330         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2331 }
2332
2333 replay_barrier_nodf() {
2334         local facet=$1    echo running=${running}
2335         do_facet $facet "sync; sync; sync"
2336         local svc=${facet}_svc
2337         echo Replay barrier on ${!svc}
2338         do_facet $facet $LCTL --device ${!svc} notransno
2339         do_facet $facet $LCTL --device ${!svc} readonly
2340         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2341         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2342 }
2343
2344 replay_barrier_nosync() {
2345         local facet=$1    echo running=${running}
2346         local svc=${facet}_svc
2347         echo Replay barrier on ${!svc}
2348         do_facet $facet $LCTL --device ${!svc} notransno
2349         do_facet $facet $LCTL --device ${!svc} readonly
2350         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2351         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2352 }
2353
2354 #
2355 # Get Lustre client uuid for a given Lustre mount point.
2356 #
2357 get_client_uuid() {
2358         local mntpnt=${1:-$MOUNT}
2359
2360         local name=$($LFS getname $mntpnt | cut -d' ' -f1)
2361         local uuid=$($LCTL get_param -n llite.$name.uuid)
2362
2363         echo -n $uuid
2364 }
2365
2366 mds_evict_client() {
2367         local mntpnt=${1:-$MOUNT}
2368         local uuid=$(get_client_uuid $mntpnt)
2369
2370         do_facet $SINGLEMDS \
2371                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client $uuid"
2372 }
2373
2374 ost_evict_client() {
2375         local mntpnt=${1:-$MOUNT}
2376         local uuid=$(get_client_uuid $mntpnt)
2377
2378         do_facet ost1 \
2379                 "$LCTL set_param -n obdfilter.${ost1_svc}.evict_client $uuid"
2380 }
2381
2382 fail() {
2383         local facets=$1
2384         local clients=${CLIENTS:-$HOSTNAME}
2385
2386         facet_failover $* || error "failover: $?"
2387         wait_clients_import_state "$clients" "$facets" FULL
2388         clients_up || error "post-failover df: $?"
2389 }
2390
2391 fail_nodf() {
2392         local facet=$1
2393         facet_failover $facet
2394 }
2395
2396 fail_abort() {
2397         local facet=$1
2398         stop $facet
2399         change_active $facet
2400         wait_for_facet $facet
2401         mount_facet $facet -o abort_recovery
2402         clients_up || echo "first df failed: $?"
2403         clients_up || error "post-failover df: $?"
2404 }
2405
2406 do_lmc() {
2407     echo There is no lmc.  This is mountconf, baby.
2408     exit 1
2409 }
2410
2411 host_nids_address() {
2412     local nodes=$1
2413     local kind=$2
2414
2415     if [ -n "$kind" ]; then
2416         nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
2417     else
2418         nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
2419     fi
2420     echo $nids
2421 }
2422
2423 h2name_or_ip() {
2424         if [ "$1" = "'*'" ]; then echo \'*\'; else
2425                 echo $1"@$2"
2426         fi
2427 }
2428
2429 h2ptl() {
2430         if [ "$1" = "'*'" ]; then echo \'*\'; else
2431                 ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | \
2432                                                         awk '{print $1}'`
2433                 if [ -z "$ID" ]; then
2434                         echo "Could not get a ptl id for $1..."
2435                         exit 1
2436                 fi
2437                 echo $ID"@ptl"
2438         fi
2439 }
2440 declare -fx h2ptl
2441
2442 h2tcp() {
2443         h2name_or_ip "$1" "tcp"
2444 }
2445 declare -fx h2tcp
2446
2447 h2elan() {
2448         if [ "$1" = "'*'" ]; then echo \'*\'; else
2449                 if type __h2elan >/dev/null 2>&1; then
2450                         ID=$(__h2elan $1)
2451                 else
2452                         ID=`echo $1 | sed 's/[^0-9]*//g'`
2453                 fi
2454                 echo $ID"@elan"
2455         fi
2456 }
2457 declare -fx h2elan
2458
2459 h2o2ib() {
2460         h2name_or_ip "$1" "o2ib"
2461 }
2462 declare -fx h2o2ib
2463
2464 # This enables variables in cfg/"setup".sh files to support the pdsh HOSTLIST
2465 # expressions format. As a bonus we can then just pass in those variables
2466 # to pdsh. What this function does is take a HOSTLIST type string and
2467 # expand it into a space deliminated list for us.
2468 hostlist_expand() {
2469     local hostlist=$1
2470     local offset=$2
2471     local myList
2472     local item
2473     local list
2474
2475     [ -z "$hostlist" ] && return
2476
2477     # Translate the case of [..],..,[..] to [..] .. [..]
2478     list="${hostlist/],/] }"
2479     front=${list%%[*}
2480     [[ "$front" == *,* ]] && {
2481         new="${list%,*} "
2482         old="${list%,*},"
2483         list=${list/${old}/${new}}
2484     }
2485
2486     for item in $list; do
2487         # Test if we have any []'s at all
2488         if [ "$item" != "${item/\[/}" ]; then {
2489             # Expand the [*] into list
2490             name=${item%%[*}
2491             back=${item#*]}
2492
2493             if [ "$name" != "$item" ]; then
2494                 group=${item#$name[*}
2495                 group=${group%%]*}
2496
2497                 for range in ${group//,/ }; do
2498                     begin=${range%-*}
2499                     end=${range#*-}
2500
2501                     # Number of leading zeros
2502                     padlen=${#begin}
2503                     padlen2=${#end}
2504                     end=$(echo $end | sed 's/0*//')
2505                     [[ -z "$end" ]] && end=0
2506                     [[ $padlen2 -gt $padlen ]] && {
2507                         [[ $padlen2 -eq ${#end} ]] && padlen2=0
2508                         padlen=$padlen2
2509                     }
2510                     begin=$(echo $begin | sed 's/0*//')
2511                     [ -z $begin ] && begin=0
2512
2513                     for num in $(seq -f "%0${padlen}g" $begin $end); do
2514                         value="${name#*,}${num}${back}"
2515                         [ "$value" != "${value/\[/}" ] && {
2516                             value=$(hostlist_expand "$value")
2517                         }
2518                         myList="$myList $value"
2519                     done
2520                 done
2521             fi
2522         } else {
2523             myList="$myList $item"
2524         } fi
2525     done
2526     myList=${myList//,/ }
2527     myList=${myList:1} # Remove first character which is a space
2528
2529     # Filter any duplicates without sorting
2530     list="$myList "
2531     myList="${list%% *}"
2532
2533     while [[ "$list" != ${myList##* } ]]; do
2534         list=${list//${list%% *} /}
2535         myList="$myList ${list%% *}"
2536     done
2537     myList="${myList%* }";
2538
2539     # We can select an object at a offset in the list
2540     [ $# -eq 2 ] && {
2541         cnt=0
2542         for item in $myList; do
2543             let cnt=cnt+1
2544             [ $cnt -eq $offset ] && {
2545                 myList=$item
2546             }
2547         done
2548         [ $(get_node_count $myList) -ne 1 ] && myList=""
2549     }
2550     echo $myList
2551 }
2552
2553 facet_host() {
2554         local facet=$1
2555         local varname
2556
2557         [ "$facet" == client ] && echo -n $HOSTNAME && return
2558         varname=${facet}_HOST
2559         if [ -z "${!varname}" ]; then
2560                 if [ "${facet:0:3}" == "ost" ]; then
2561                         eval export ${facet}_HOST=${ost_HOST}
2562                 elif [ "${facet:0:3}" == "mdt" -o \
2563                         "${facet:0:3}" == "mds" -o \
2564                         "${facet:0:3}" == "mgs" ]; then
2565                         eval export ${facet}_HOST=${mds_HOST}
2566                 fi
2567         fi
2568         echo -n ${!varname}
2569 }
2570
2571 facet_failover_host() {
2572         local facet=$1
2573         local varname
2574
2575         var=${facet}failover_HOST
2576         if [ -n "${!var}" ]; then
2577                 echo ${!var}
2578                 return
2579         fi
2580
2581         if [ "${facet:0:3}" == "mdt" -o "${facet:0:3}" == "mds" -o \
2582              "${facet:0:3}" == "mgs" ]; then
2583
2584                 eval export ${facet}failover_host=${mds_HOST}
2585                 echo ${mds_HOST}
2586                 return
2587         fi
2588
2589         if [[ $facet == ost* ]]; then
2590                 eval export ${facet}failover_host=${ost_HOST}
2591                 echo ${ost_HOST}
2592                 return
2593         fi
2594 }
2595
2596 facet_active() {
2597     local facet=$1
2598     local activevar=${facet}active
2599
2600     if [ -f $TMP/${facet}active ] ; then
2601         source $TMP/${facet}active
2602     fi
2603
2604     active=${!activevar}
2605     if [ -z "$active" ] ; then
2606         echo -n ${facet}
2607     else
2608         echo -n ${active}
2609     fi
2610 }
2611
2612 facet_active_host() {
2613     local facet=$1
2614     local active=`facet_active $facet`
2615     if [ "$facet" == client ]; then
2616         echo $HOSTNAME
2617     else
2618         echo `facet_host $active`
2619     fi
2620 }
2621
2622 # Get the passive failover partner host of facet.
2623 facet_passive_host() {
2624         local facet=$1
2625         [[ $facet = client ]] && return
2626
2627         local host=${facet}_HOST
2628         local failover_host=${facet}failover_HOST
2629         local active_host=$(facet_active_host $facet)
2630
2631         [[ -z ${!failover_host} || ${!failover_host} = ${!host} ]] && return
2632
2633         if [[ $active_host = ${!host} ]]; then
2634                 echo -n ${!failover_host}
2635         else
2636                 echo -n ${!host}
2637         fi
2638 }
2639
2640 change_active() {
2641     local facetlist=$1
2642     local facet
2643
2644     facetlist=$(exclude_items_from_list $facetlist mgs)
2645
2646     for facet in ${facetlist//,/ }; do
2647     local failover=${facet}failover
2648     local host=`facet_host $failover`
2649     [ -z "$host" ] && return
2650
2651     local curactive=`facet_active $facet`
2652     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
2653         eval export ${facet}active=$facet
2654     else
2655         eval export ${facet}active=$failover
2656     fi
2657     # save the active host for this facet
2658     local activevar=${facet}active
2659     echo "$activevar=${!activevar}" > $TMP/$activevar
2660     [[ $facet = mds1 ]] && combined_mgs_mds && \
2661         echo "mgsactive=${!activevar}" > $TMP/mgsactive
2662     local TO=`facet_active_host $facet`
2663     echo "Failover $facet to $TO"
2664     done
2665 }
2666
2667 do_node() {
2668     local verbose=false
2669     # do not stripe off hostname if verbose, bug 19215
2670     if [ x$1 = x--verbose ]; then
2671         shift
2672         verbose=true
2673     fi
2674
2675     local HOST=$1
2676     shift
2677     local myPDSH=$PDSH
2678     if [ "$HOST" = "$HOSTNAME" ]; then
2679         myPDSH="no_dsh"
2680     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
2681         echo "cannot run remote command on $HOST with $myPDSH"
2682         return 128
2683     fi
2684     if $VERBOSE; then
2685         echo "CMD: $HOST $@" >&2
2686         $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2687     fi
2688
2689     if [ "$myPDSH" = "rsh" ]; then
2690 # we need this because rsh does not return exit code of an executed command
2691         local command_status="$TMP/cs"
2692         rsh $HOST ":> $command_status"
2693         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
2694                     cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
2695                     echo command failed >$command_status"
2696         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
2697         return 0
2698     fi
2699
2700     if $verbose ; then
2701         # print HOSTNAME for myPDSH="no_dsh"
2702         if [[ $myPDSH = no_dsh ]]; then
2703             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
2704         else
2705             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
2706         fi
2707     else
2708         $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
2709     fi
2710     return ${PIPESTATUS[0]}
2711 }
2712
2713 do_nodev() {
2714     do_node --verbose "$@"
2715 }
2716
2717 single_local_node () {
2718    [ "$1" = "$HOSTNAME" ]
2719 }
2720
2721 # Outputs environment variable assignments that should be passed to remote nodes
2722 get_env_vars() {
2723         local var
2724         local value
2725         local facets=$(get_facets)
2726         local facet
2727
2728         for var in ${!MODOPTS_*}; do
2729                 value=${!var}
2730                 echo -n " ${var}=\"$value\""
2731         done
2732
2733         for facet in ${facets//,/ }; do
2734                 var=${facet}_FSTYPE
2735                 if [ -n "${!var}" ]; then
2736                         echo -n " $var=${!var}"
2737                 fi
2738         done
2739
2740         for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
2741                 if [ -n "${!var}" ]; then
2742                         echo -n " $var=${!var}"
2743                 fi
2744         done
2745
2746         if [ -n "$FSTYPE" ]; then
2747                 echo -n " FSTYPE=$FSTYPE"
2748         fi
2749 }
2750
2751 do_nodes() {
2752     local verbose=false
2753     # do not stripe off hostname if verbose, bug 19215
2754     if [ x$1 = x--verbose ]; then
2755         shift
2756         verbose=true
2757     fi
2758
2759     local rnodes=$1
2760     shift
2761
2762     if single_local_node $rnodes; then
2763         if $verbose; then
2764            do_nodev $rnodes "$@"
2765         else
2766            do_node $rnodes "$@"
2767         fi
2768         return $?
2769     fi
2770
2771     # This is part from do_node
2772     local myPDSH=$PDSH
2773
2774     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
2775         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
2776
2777     export FANOUT=$(get_node_count "${rnodes//,/ }")
2778     if $VERBOSE; then
2779         echo "CMD: $rnodes $@" >&2
2780         $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2781     fi
2782
2783     # do not replace anything from pdsh output if -N is used
2784     # -N     Disable hostname: prefix on lines of output.
2785     if $verbose || [[ $myPDSH = *-N* ]]; then
2786         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
2787     else
2788         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
2789     fi
2790     return ${PIPESTATUS[0]}
2791 }
2792
2793 do_facet() {
2794     local facet=$1
2795     shift
2796     local HOST=`facet_active_host $facet`
2797     [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
2798     do_node $HOST "$@"
2799 }
2800
2801 # Function: do_facet_random_file $FACET $FILE $SIZE
2802 # Creates FILE with random content on the given FACET of given SIZE
2803
2804 do_facet_random_file() {
2805         local facet="$1"
2806         local fpath="$2"
2807         local fsize="$3"
2808         local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
2809         do_facet $facet "$cmd 2>/dev/null"
2810 }
2811
2812 do_facet_create_file() {
2813         local facet="$1"
2814         local fpath="$2"
2815         local fsize="$3"
2816         local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
2817         do_facet $facet "$cmd 2>/dev/null"
2818 }
2819
2820 do_nodesv() {
2821     do_nodes --verbose "$@"
2822 }
2823
2824 add() {
2825         local facet=$1
2826         shift
2827         # make sure its not already running
2828         stop ${facet} -f
2829         rm -f $TMP/${facet}active
2830         [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
2831         do_facet ${facet} $MKFS $* || return ${PIPESTATUS[0]}
2832
2833         if [[ $(facet_fstype $facet) == zfs ]]; then
2834                 #
2835                 # After formatting a ZFS target, "cachefile=none" property will
2836                 # be set on the ZFS storage pool so that the pool is not
2837                 # automatically imported on system startup. And then the pool
2838                 # will be exported so as to leave the importing and exporting
2839                 # operations handled by mount_facet() and stop() separately.
2840                 #
2841                 refresh_partition_table $facet $(facet_vdevice $facet)
2842                 disable_zpool_cache $facet
2843                 export_zpool $facet
2844         fi
2845 }
2846
2847 ostdevname() {
2848     num=$1
2849     DEVNAME=OSTDEV$num
2850
2851         local fstype=$(facet_fstype ost$num)
2852
2853         case $fstype in
2854                 ldiskfs )
2855                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2856                         eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2857                 zfs )
2858                         #dataset name is independent of vdev device names
2859                         eval DEVPTR=${FSNAME}-ost${num}/ost${num};;
2860                 * )
2861                         error "unknown fstype!";;
2862         esac
2863
2864     echo -n $DEVPTR
2865 }
2866
2867 ostvdevname() {
2868         num=$1
2869         DEVNAME=OSTDEV$num
2870
2871         local fstype=$(facet_fstype ost$num)
2872
2873         case $fstype in
2874                 ldiskfs )
2875                         # vdevs are not supported by ldiskfs
2876                         eval VDEVPTR="";;
2877                 zfs )
2878                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2879                         eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2880                 * )
2881                         error "unknown fstype!";;
2882         esac
2883
2884         echo -n $VDEVPTR
2885 }
2886
2887 mdsdevname() {
2888     num=$1
2889     DEVNAME=MDSDEV$num
2890
2891         local fstype=$(facet_fstype mds$num)
2892
2893         case $fstype in
2894                 ldiskfs )
2895                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2896                         eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2897                 zfs )
2898                         #dataset name is independent of vdev device names
2899                         eval DEVPTR=${FSNAME}-mdt${num}/mdt${num};;
2900                 * )
2901                         error "unknown fstype!";;
2902         esac
2903
2904         echo -n $DEVPTR
2905 }
2906
2907 mdsvdevname() {
2908         num=$1
2909         DEVNAME=MDSDEV$num
2910
2911         local fstype=$(facet_fstype mds$num)
2912
2913         case $fstype in
2914                 ldiskfs )
2915                         # vdevs are not supported by ldiskfs
2916                         eval VDEVPTR="";;
2917                 zfs )
2918                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2919                         eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2920                 * )
2921                         error "unknown fstype!";;
2922         esac
2923
2924         echo -n $VDEVPTR
2925 }
2926
2927 mgsdevname() {
2928         local DEVPTR
2929         local fstype=$(facet_fstype mgs)
2930
2931         case $fstype in
2932         ldiskfs )
2933                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2934                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsdevname 1) ] ); then
2935                         DEVPTR=$(mdsdevname 1)
2936                 else
2937                         DEVPTR=$MGSDEV
2938                 fi;;
2939         zfs )
2940                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2941                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2942                         DEVPTR=$(mdsdevname 1)
2943                 else
2944                         DEVPTR=${FSNAME}-mgs/mgs
2945                 fi;;
2946         * )
2947                 error "unknown fstype!";;
2948         esac
2949
2950         echo -n $DEVPTR
2951 }
2952
2953 mgsvdevname() {
2954         local VDEVPTR
2955         DEVNAME=MGSDEV
2956
2957         local fstype=$(facet_fstype mgs)
2958
2959         case $fstype in
2960         ldiskfs )
2961                 # vdevs are not supported by ldiskfs
2962                 ;;
2963         zfs )
2964                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2965                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2966                         VDEVPTR=$(mdsvdevname 1)
2967                 else
2968                         VDEVPTR=$MGSDEV
2969                 fi;;
2970         * )
2971                 error "unknown fstype!";;
2972         esac
2973
2974         echo -n $VDEVPTR
2975 }
2976
2977 facet_mntpt () {
2978     local facet=$1
2979     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
2980
2981     local var=${facet}_MOUNT
2982     eval mntpt=${!var:-${MOUNT%/*}/$facet}
2983
2984     echo -n $mntpt
2985 }
2986
2987 ########
2988 ## MountConf setup
2989
2990 stopall() {
2991     # make sure we are using the primary server, so test-framework will
2992     # be able to clean up properly.
2993     activemds=`facet_active mds1`
2994     if [ $activemds != "mds1" ]; then
2995         fail mds1
2996     fi
2997
2998     local clients=$CLIENTS
2999     [ -z $clients ] && clients=$(hostname)
3000
3001     zconf_umount_clients $clients $MOUNT "$*" || true
3002     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
3003
3004     [ "$CLIENTONLY" ] && return
3005     # The add fn does rm ${facet}active file, this would be enough
3006     # if we use do_facet <facet> only after the facet added, but
3007     # currently we use do_facet mds in local.sh
3008     for num in `seq $MDSCOUNT`; do
3009         stop mds$num -f
3010         rm -f ${TMP}/mds${num}active
3011     done
3012     combined_mgs_mds && rm -f $TMP/mgsactive
3013
3014     for num in `seq $OSTCOUNT`; do
3015         stop ost$num -f
3016         rm -f $TMP/ost${num}active
3017     done
3018
3019     if ! combined_mgs_mds ; then
3020         stop mgs
3021     fi
3022
3023     return 0
3024 }
3025
3026 cleanup_echo_devs () {
3027     local devs=$($LCTL dl | grep echo | awk '{print $4}')
3028
3029     for dev in $devs; do
3030         $LCTL --device $dev cleanup
3031         $LCTL --device $dev detach
3032     done
3033 }
3034
3035 cleanupall() {
3036     nfs_client_mode && return
3037
3038     stopall $*
3039     cleanup_echo_devs
3040
3041     unload_modules
3042     cleanup_gss
3043 }
3044
3045 combined_mgs_mds () {
3046         [[ "$(mdsdevname 1)" = "$(mgsdevname)" ]] &&
3047                 [[ "$(facet_host mds1)" = "$(facet_host mgs)" ]]
3048 }
3049
3050 lower() {
3051         echo -n "$1" | tr '[:upper:]' '[:lower:]'
3052 }
3053
3054 upper() {
3055         echo -n "$1" | tr '[:lower:]' '[:upper:]'
3056 }
3057
3058 mkfs_opts() {
3059         local facet=$1
3060         local dev=$2
3061         local fsname=${3:-"$FSNAME"}
3062         local type=$(facet_type $facet)
3063         local index=$(($(facet_number $facet) - 1))
3064         local fstype=$(facet_fstype $facet)
3065         local host=$(facet_host $facet)
3066         local opts
3067         local fs_mkfs_opts
3068         local var
3069
3070         if [ $type == MGS ] && combined_mgs_mds; then
3071                 return 1
3072         fi
3073
3074         if [ $type == MGS ] || ( [ $type == MDS ] &&
3075                                  [ "$dev" == $(mgsdevname) ] &&
3076                                  [ "$host" == "$(facet_host mgs)" ] ); then
3077                 opts="--mgs"
3078         else
3079                 opts="--mgsnode=$MGSNID"
3080         fi
3081
3082         if [ $type != MGS ]; then
3083                 opts+=" --fsname=$fsname --$(lower ${type/MDS/MDT}) \
3084                         --index=$index"
3085         fi
3086
3087         var=${facet}failover_HOST
3088         if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
3089                 opts+=" --failnode=$(h2$NETTYPE ${!var})"
3090         fi
3091
3092         opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
3093         opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
3094
3095         if [ $type == MDS ]; then
3096                 opts+=${SECLEVEL:+" --param=mdt.sec_level"}
3097                 opts+=${MDSCAPA:+" --param-mdt.capa=$MDSCAPA"}
3098                 opts+=${STRIPE_BYTES:+" --param=lov.stripesize=$STRIPE_BYTES"}
3099                 opts+=${STRIPES_PER_OBJ:+" --param=lov.stripecount=$STRIPES_PER_OBJ"}
3100                 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
3101
3102                 if [ $fstype == ldiskfs ]; then
3103                         fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
3104                         if [ ! -z $EJOURNAL ]; then
3105                                 fs_mkfs_opts+=${MDSJOURNALSIZE:+" device=$EJOURNAL"}
3106                         fi
3107                         fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
3108                 fi
3109         fi
3110
3111         if [ $type == OST ]; then
3112                 opts+=${SECLEVEL:+" --param=ost.sec_level"}
3113                 opts+=${OSSCAPA:+" --param=ost.capa=$OSSCAPA"}
3114
3115                 if [ $fstype == ldiskfs ]; then
3116                         fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
3117                 fi
3118         fi
3119
3120         opts+=" --backfstype=$fstype"
3121
3122         var=${type}SIZE
3123         if [ -n "${!var}" ]; then
3124                 opts+=" --device-size=${!var}"
3125         fi
3126
3127         var=$(upper $fstype)_MKFS_OPTS
3128         fs_mkfs_opts+=${!var:+" ${!var}"}
3129
3130         var=${type}_FS_MKFS_OPTS
3131         fs_mkfs_opts+=${!var:+" ${!var}"}
3132
3133         if [ -n "${fs_mkfs_opts## }" ]; then
3134                 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
3135         fi
3136
3137         var=${type}OPT
3138         opts+=${!var:+" ${!var}"}
3139
3140         echo -n "$opts"
3141 }
3142
3143 formatall() {
3144         local quiet
3145
3146         if ! $VERBOSE; then
3147                 quiet=yes
3148         fi
3149
3150         stopall
3151         # We need ldiskfs here, may as well load them all
3152         load_modules
3153         [ "$CLIENTONLY" ] && return
3154         echo Formatting mgs, mds, osts
3155         if ! combined_mgs_mds ; then
3156                 echo "Format mgs: $(mgsdevname)"
3157                 add mgs $(mkfs_opts mgs $(mgsdevname)) --reformat \
3158                         $(mgsdevname) $(mgsvdevname) ${quiet:+>/dev/null} ||
3159                         exit 10
3160         fi
3161
3162         for num in $(seq $MDSCOUNT); do
3163                 echo "Format mds$num: $(mdsdevname $num)"
3164                 add mds$num $(mkfs_opts mds$num $(mdsdevname ${num})) \
3165                         --reformat $(mdsdevname $num) $(mdsvdevname $num) \
3166                         ${quiet:+>/dev/null} || exit 10
3167         done
3168
3169         for num in $(seq $OSTCOUNT); do
3170                 echo "Format ost$num: $(ostdevname $num)"
3171                 add ost$num $(mkfs_opts ost$num $(ostdevname ${num})) \
3172                         --reformat $(ostdevname $num) $(ostvdevname ${num}) \
3173                         ${quiet:+>/dev/null} || exit 10
3174         done
3175 }
3176
3177 mount_client() {
3178     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
3179 }
3180
3181 umount_client() {
3182     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
3183 }
3184
3185 # return value:
3186 # 0: success, the old identity set already.
3187 # 1: success, the old identity does not set.
3188 # 2: fail.
3189 switch_identity() {
3190     local num=$1
3191     local switch=$2
3192     local j=`expr $num - 1`
3193     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
3194
3195     if [ -z "$MDT" ]; then
3196         return 2
3197     fi
3198
3199     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
3200
3201     if $switch; then
3202         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
3203     else
3204         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
3205     fi
3206
3207     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
3208
3209     if [ $old = "NONE" ]; then
3210         return 1
3211     else
3212         return 0
3213     fi
3214 }
3215
3216 remount_client()
3217 {
3218         zconf_umount `hostname` $1 || error "umount failed"
3219         zconf_mount `hostname` $1 || error "mount failed"
3220 }
3221
3222 writeconf_facet() {
3223         local facet=$1
3224         local dev=$2
3225
3226         stop ${facet} -f
3227         rm -f $TMP/${facet}active
3228         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" || return 1
3229         return 0
3230 }
3231
3232 writeconf_all () {
3233         local mdt_count=${1:-$MDSCOUNT}
3234         local ost_count=${2:-$OSTCOUNT}
3235         local rc=0
3236
3237         for num in $(seq $mdt_count); do
3238                 DEVNAME=$(mdsdevname $num)
3239                 writeconf_facet mds$num $DEVNAME || rc=$?
3240         done
3241
3242         for num in $(seq $ost_count); do
3243                 DEVNAME=$(ostdevname $num)
3244                 writeconf_facet ost$num $DEVNAME || rc=$?
3245         done
3246         return $rc
3247 }
3248
3249 setupall() {
3250     nfs_client_mode && return
3251
3252     sanity_mount_check ||
3253         error "environments are insane!"
3254
3255     load_modules
3256
3257     if [ -z "$CLIENTONLY" ]; then
3258         echo Setup mgs, mdt, osts
3259         echo $WRITECONF | grep -q "writeconf" && \
3260             writeconf_all
3261         if ! combined_mgs_mds ; then
3262                         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
3263         fi
3264
3265         for num in `seq $MDSCOUNT`; do
3266             DEVNAME=$(mdsdevname $num)
3267             start mds$num $DEVNAME $MDS_MOUNT_OPTS
3268
3269             # We started mds, now we should set failover variables properly.
3270             # Set mds${num}failover_HOST if it is not set (the default failnode).
3271             local varname=mds${num}failover_HOST
3272             if [ -z "${!varname}" ]; then
3273                 eval mds${num}failover_HOST=$(facet_host mds$num)
3274             fi
3275
3276             if [ $IDENTITY_UPCALL != "default" ]; then
3277                 switch_identity $num $IDENTITY_UPCALL
3278             fi
3279         done
3280         for num in `seq $OSTCOUNT`; do
3281             DEVNAME=$(ostdevname $num)
3282             start ost$num $DEVNAME $OST_MOUNT_OPTS
3283
3284             # We started ost$num, now we should set ost${num}failover variable properly.
3285             # Set ost${num}failover_HOST if it is not set (the default failnode).
3286             varname=ost${num}failover_HOST
3287             if [ -z "${!varname}" ]; then
3288                 eval ost${num}failover_HOST=$(facet_host ost${num})
3289             fi
3290
3291         done
3292     fi
3293
3294     init_gss
3295
3296     # wait a while to allow sptlrpc configuration be propogated to targets,
3297     # only needed when mounting new target devices.
3298     if $GSS; then
3299         sleep 10
3300     fi
3301
3302     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
3303     mount_client $MOUNT
3304     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
3305     clients_up
3306
3307     if [ "$MOUNT_2" ]; then
3308         mount_client $MOUNT2
3309         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
3310     fi
3311
3312     init_param_vars
3313
3314     # by remounting mdt before ost, initial connect from mdt to ost might
3315     # timeout because ost is not ready yet. wait some time to its fully
3316     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
3317     # by a context negotiation rpc with $TIMEOUT.
3318     # FIXME better by monitoring import status.
3319     if $GSS; then
3320         set_flavor_all $SEC
3321         sleep $((TIMEOUT + 5))
3322     else
3323         sleep 5
3324     fi
3325 }
3326
3327 mounted_lustre_filesystems() {
3328         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
3329 }
3330
3331 init_facet_vars () {
3332         [ "$CLIENTONLY" ] && return 0
3333         local facet=$1
3334         shift
3335         local device=$1
3336
3337         shift
3338
3339         eval export ${facet}_dev=${device}
3340         eval export ${facet}_opt=\"$@\"
3341
3342         local dev=${facet}_dev
3343
3344         # We need to loop for the label
3345         # in case its not initialized yet.
3346         for wait_time in {0,1,3,5,10}; do
3347
3348                 if [ $wait_time -gt 0 ]; then
3349                         echo "${!dev} not yet initialized,"\
3350                                 "waiting ${wait_time} seconds."
3351                         sleep $wait_time
3352                 fi
3353
3354                 local label=$(devicelabel ${facet} ${!dev})
3355
3356                 # Check to make sure the label does
3357                 # not include ffff at the end of the label.
3358                 # This indicates it has not been initialized yet.
3359
3360                 if [[ $label =~ [f|F]{4}$ ]]; then
3361                         # label is not initialized, unset the result
3362                         # and either try again or fail
3363                         unset label
3364                 else
3365                         break
3366                 fi
3367         done
3368
3369         [ -z "$label" ] && echo no label for ${!dev} && exit 1
3370
3371         eval export ${facet}_svc=${label}
3372
3373         local varname=${facet}failover_HOST
3374         if [ -z "${!varname}" ]; then
3375                 eval export $varname=$(facet_host $facet)
3376         fi
3377
3378         varname=${facet}_HOST
3379         if [ -z "${!varname}" ]; then
3380                 eval export $varname=$(facet_host $facet)
3381         fi
3382
3383         # ${facet}failover_dev is set in cfg file
3384         varname=${facet}failover_dev
3385         if [ -n "${!varname}" ] ; then
3386                 eval export ${facet}failover_dev=${!varname}
3387         else
3388                 eval export ${facet}failover_dev=$device
3389         fi
3390
3391         # get mount point of already mounted device
3392         # is facet_dev is already mounted then use the real
3393         #  mount point of this facet; otherwise use $(facet_mntpt $facet)
3394         # i.e. ${facet}_MOUNT if specified by user or default
3395         local mntpt=$(do_facet ${facet} cat /proc/mounts | \
3396                         awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
3397         if [ -z $mntpt ]; then
3398                 mntpt=$(facet_mntpt $facet)
3399         fi
3400         eval export ${facet}_MOUNT=$mntpt
3401 }
3402
3403 init_facets_vars () {
3404         local DEVNAME
3405
3406         if ! remote_mds_nodsh; then
3407                 for num in $(seq $MDSCOUNT); do
3408                         DEVNAME=`mdsdevname $num`
3409                         init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
3410                 done
3411         fi
3412
3413         combined_mgs_mds || init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
3414
3415         if ! remote_ost_nodsh; then
3416                 for num in $(seq $OSTCOUNT); do
3417                         DEVNAME=$(ostdevname $num)
3418                         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
3419                 done
3420         fi
3421 }
3422
3423 osc_ensure_active () {
3424     local facet=$1
3425     local timeout=$2
3426     local period=0
3427
3428     while [ $period -lt $timeout ]; do
3429         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
3430         if [ $count -eq 0 ]; then
3431             break
3432         fi
3433
3434         echo "There are $count OST are inactive, wait $period seconds, and try again"
3435         sleep 3
3436         period=$((period+3))
3437     done
3438
3439     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
3440 }
3441
3442 set_conf_param_and_check() {
3443         local myfacet=$1
3444         local TEST=$2
3445         local PARAM=$3
3446         local ORIG=$(do_facet $myfacet "$TEST")
3447         if [ $# -gt 3 ]; then
3448                 local FINAL=$4
3449         else
3450                 local -i FINAL
3451                 FINAL=$((ORIG + 5))
3452         fi
3453         echo "Setting $PARAM from $ORIG to $FINAL"
3454         do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
3455                 error "conf_param $PARAM failed"
3456
3457         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" ||
3458                 error "check $PARAM failed!"
3459 }
3460
3461 init_param_vars () {
3462         remote_mds_nodsh ||
3463                 TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3464
3465         log "Using TIMEOUT=$TIMEOUT"
3466
3467         osc_ensure_active $SINGLEMDS $TIMEOUT
3468         osc_ensure_active client $TIMEOUT
3469
3470         if [ -n "$(lctl get_param -n mdc.*.connect_flags|grep jobstats)" ]; then
3471                 local current_jobid_var=$($LCTL get_param -n jobid_var)
3472
3473                 if [ $JOBID_VAR = "existing" ]; then
3474                         echo "keeping jobstats as $current_jobid_var"
3475                 elif [ $current_jobid_var != $JOBID_VAR ]; then
3476                         echo "seting jobstats to $JOBID_VAR"
3477
3478                         set_conf_param_and_check client                 \
3479                                 "$LCTL get_param -n jobid_var"          \
3480                                 "$FSNAME.sys.jobid_var" $JOBID_VAR
3481                 fi
3482         else
3483                 echo "jobstats not supported by server"
3484         fi
3485
3486         if [ $QUOTA_AUTO -ne 0 ]; then
3487                 if [ "$ENABLE_QUOTA" ]; then
3488                         echo "enable quota as required"
3489                         setup_quota $MOUNT || return 2
3490                 else
3491                         echo "disable quota as required"
3492                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
3493                 fi
3494         fi
3495         return 0
3496 }
3497
3498 nfs_client_mode () {
3499     if [ "$NFSCLIENT" ]; then
3500         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
3501         local clients=$CLIENTS
3502         [ -z $clients ] && clients=$(hostname)
3503
3504         # FIXME: remove hostname when 19215 fixed
3505         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
3506         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
3507         if [[ ${#nfsexport[@]} -eq 0 ]]; then
3508                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
3509         fi
3510         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
3511         return
3512     fi
3513     return 1
3514 }
3515
3516 check_config_client () {
3517     local mntpt=$1
3518
3519     local mounted=$(mount | grep " $mntpt ")
3520     if [ "$CLIENTONLY" ]; then
3521         # bug 18021
3522         # CLIENTONLY should not depend on *_HOST settings
3523         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
3524         # in theory someone could create a new,
3525         # client-only config file that assumed lustre was already
3526         # configured and didn't set the MGSNID. If MGSNID is not set,
3527         # then we should use the mgs nid currently being used 
3528         # as the default value. bug 18021
3529         [[ x$MGSNID = x ]] &&
3530             MGSNID=${mgc//MGC/}
3531
3532         if [[ x$mgc != xMGC$MGSNID ]]; then
3533             if [ "$mgs_HOST" ]; then
3534                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
3535 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
3536 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
3537             fi
3538         fi
3539         return 0
3540     fi
3541
3542     local myMGS_host=$mgs_HOST   
3543     if [ "$NETTYPE" = "ptl" ]; then
3544         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
3545     fi
3546
3547     echo Checking config lustre mounted on $mntpt
3548     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
3549     mgshost=$(echo $mgshost | awk -F: '{print $1}')
3550
3551 #    if [ "$mgshost" != "$myMGS_host" ]; then
3552 #            log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
3553 #                   Please use correct config or set mds_HOST correctly!"
3554 #    fi
3555
3556 }
3557
3558 check_config_clients () {
3559         local clients=${CLIENTS:-$HOSTNAME}
3560         local mntpt=$1
3561
3562         nfs_client_mode && return
3563
3564         do_rpc_nodes "$clients" check_config_client $mntpt
3565
3566         sanity_mount_check || error "environments are insane!"
3567 }
3568
3569 check_timeout () {
3570     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3571     local cltimeout=$(lctl get_param -n timeout)
3572     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
3573         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
3574         return 1
3575     fi
3576 }
3577
3578 is_mounted () {
3579     local mntpt=$1
3580     [ -z $mntpt ] && return 1
3581     local mounted=$(mounted_lustre_filesystems)
3582
3583     echo $mounted' ' | grep -w -q $mntpt' '
3584 }
3585
3586 is_empty_dir() {
3587         [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
3588         return 1
3589 }
3590
3591 # empty lustre filesystem may have empty directories lost+found and .lustre
3592 is_empty_fs() {
3593         # exclude .lustre & lost+found
3594         [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
3595                 -print | wc -l) = 1 ] || return 1
3596         [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found || return 1
3597         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.4.0) ]; then
3598                 # exclude .lustre/fid (LU-2780)
3599                 [ $(find $1/.lustre -maxdepth 1 -name fid -prune -o \
3600                         -print | wc -l) = 1 ] || return 1
3601         else
3602                 [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre || return 1
3603         fi
3604         return 0
3605 }
3606
3607 check_and_setup_lustre() {
3608     nfs_client_mode && return
3609
3610     local MOUNTED=$(mounted_lustre_filesystems)
3611
3612     local do_check=true
3613     # 1.
3614     # both MOUNT and MOUNT2 are not mounted
3615     if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
3616         [ "$REFORMAT" ] && formatall
3617         # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
3618         setupall
3619         is_mounted $MOUNT || error "NAME=$NAME not mounted"
3620         export I_MOUNTED=yes
3621         do_check=false
3622     # 2.
3623     # MOUNT2 is mounted
3624     elif is_mounted $MOUNT2; then
3625             # 3.
3626             # MOUNT2 is mounted, while MOUNT_2 is not set
3627             if ! [ "$MOUNT_2" ]; then
3628                 cleanup_mount $MOUNT2
3629                 export I_UMOUNTED2=yes
3630
3631             # 4.
3632             # MOUNT2 is mounted, MOUNT_2 is set
3633             else
3634                 # FIXME: what to do if check_config failed?
3635                 # i.e. if:
3636                 # 1) remote client has mounted other Lustre fs ?
3637                 # 2) it has insane env ?
3638                 # let's try umount MOUNT2 on all clients and mount it again:
3639                 if ! check_config_clients $MOUNT2; then
3640                     cleanup_mount $MOUNT2
3641                     restore_mount $MOUNT2
3642                     export I_MOUNTED2=yes
3643                 fi
3644             fi 
3645
3646     # 5.
3647     # MOUNT is mounted MOUNT2 is not mounted
3648     elif [ "$MOUNT_2" ]; then
3649         restore_mount $MOUNT2
3650         export I_MOUNTED2=yes
3651     fi
3652
3653     if $do_check; then
3654         # FIXME: what to do if check_config failed?
3655         # i.e. if:
3656         # 1) remote client has mounted other Lustre fs?
3657         # 2) lustre is mounted on remote_clients atall ?
3658         check_config_clients $MOUNT
3659         init_facets_vars
3660         init_param_vars
3661
3662         set_default_debug_nodes $(comma_list $(nodes_list))
3663     fi
3664
3665         if [ $(lower $OSD_TRACK_DECLARES_LBUG) == 'yes' ] ; then
3666                 local facets=""
3667                 [ "$(facet_fstype ost1)" = "ldiskfs" ] &&
3668                         facets="$(get_facets OST)"
3669                 [ "$(facet_fstype mds1)" = "ldiskfs" ] &&
3670                         facets="$facets,$(get_facets MDS)"
3671                 [ "$(facet_fstype mgs)" = "ldiskfs" ] &&
3672                         facets="$facets,mgs"
3673                 local nodes="$(facets_hosts ${facets})"
3674                 if [ -n "$nodes" ] ; then
3675                         do_nodes $nodes "$LCTL set_param \
3676                                  osd-ldiskfs.track_declares_assert=1 || true"
3677                 fi
3678         fi
3679
3680         init_gss
3681         if $GSS; then
3682                 set_flavor_all $SEC
3683         fi
3684
3685         if [ "$ONLY" == "setup" ]; then
3686                 exit 0
3687         fi
3688 }
3689
3690 restore_mount () {
3691    local clients=${CLIENTS:-$HOSTNAME}
3692    local mntpt=$1
3693
3694    zconf_mount_clients $clients $mntpt
3695 }
3696
3697 cleanup_mount () {
3698     local clients=${CLIENTS:-$HOSTNAME}
3699     local mntpt=$1
3700
3701     zconf_umount_clients $clients $mntpt    
3702 }
3703
3704 cleanup_and_setup_lustre() {
3705     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
3706         lctl set_param debug=0 || true
3707         cleanupall
3708         if [ "$ONLY" == "cleanup" ]; then
3709             exit 0
3710         fi
3711     fi
3712     check_and_setup_lustre
3713 }
3714
3715 # Get all of the server target devices from a given server node and type.
3716 get_mnt_devs() {
3717         local node=$1
3718         local type=$2
3719         local devs
3720         local dev
3721
3722         if [ "$type" == ost ]; then
3723                 devs=$(get_osd_param $node "" mntdev)
3724         else
3725                 devs=$(do_node $node \
3726                        "lctl get_param -n osd-*.$FSNAME-M*.mntdev")
3727         fi
3728         for dev in $devs; do
3729                 case $dev in
3730                 *loop*) do_node $node "losetup $dev" | \
3731                                 sed -e "s/.*(//" -e "s/).*//" ;;
3732                 *) echo $dev ;;
3733                 esac
3734         done
3735 }
3736
3737 # Get all of the server target devices.
3738 get_svr_devs() {
3739     local i
3740
3741     # MDT device
3742     MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
3743
3744     # OST devices
3745     i=0
3746     for node in $(osts_nodes); do
3747         OSTDEVS[i]=$(get_mnt_devs $node ost)
3748         i=$((i + 1))
3749     done
3750 }
3751
3752 # Run e2fsck on MDT or OST device.
3753 run_e2fsck() {
3754     local node=$1
3755     local target_dev=$2
3756     local extra_opts=$3
3757
3758     df > /dev/null      # update statfs data on disk
3759     local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
3760     echo $cmd
3761     local rc=0
3762     do_node $node $cmd || rc=$?
3763     [ $rc -le $FSCK_MAX_ERR ] || \
3764         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3765     return 0
3766 }
3767
3768 # verify a directory is shared among nodes.
3769 check_shared_dir() {
3770         local dir=$1
3771         local list=${2:-$(comma_list $(nodes_list))}
3772
3773         [ -z "$dir" ] && return 1
3774         do_rpc_nodes "$list" check_logdir $dir
3775         check_write_access $dir "$list" || return 1
3776         return 0
3777 }
3778
3779 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
3780 generate_db() {
3781     local i
3782     local ostidx
3783     local dev
3784
3785         [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
3786                 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
3787
3788     check_shared_dir $SHARED_DIRECTORY ||
3789         error "$SHARED_DIRECTORY isn't a shared directory"
3790
3791     export MDSDB=$SHARED_DIRECTORY/mdsdb
3792     export OSTDB=$SHARED_DIRECTORY/ostdb
3793
3794     [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
3795
3796     run_e2fsck $(mdts_nodes) $MDTDEV "-n --mdsdb $MDSDB"
3797
3798     i=0
3799     ostidx=0
3800     OSTDB_LIST=""
3801     for node in $(osts_nodes); do
3802         for dev in ${OSTDEVS[i]}; do
3803             run_e2fsck $node $dev "-n --mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
3804             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
3805             ostidx=$((ostidx + 1))
3806         done
3807         i=$((i + 1))
3808     done
3809 }
3810
3811 # Run lfsck on server node if lfsck can't be found on client (LU-2571)
3812 run_lfsck_remote() {
3813         local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
3814         local client=$1
3815         local mounted=true
3816         local rc=0
3817
3818         #Check if lustre is already mounted
3819         do_rpc_nodes $client is_mounted $MOUNT || mounted=false
3820         if ! $mounted; then
3821                 zconf_mount $client $MOUNT ||
3822                         error "failed to mount Lustre on $client"
3823         fi
3824         #Run lfsck
3825         echo $cmd
3826         do_node $node $cmd || rc=$?
3827         #Umount if necessary
3828         if ! $mounted; then
3829                 zconf_umount $client $MOUNT ||
3830                         error "failed to unmount Lustre on $client"
3831         fi
3832
3833         [ $rc -le $FSCK_MAX_ERR ] ||
3834                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3835         echo "lfsck finished with rc=$rc"
3836
3837         return $rc
3838 }
3839
3840 run_lfsck() {
3841         local facets="client $SINGLEMDS"
3842         local found=false
3843         local facet
3844         local node
3845         local rc=0
3846
3847         for facet in $facets; do
3848                 node=$(facet_active_host $facet)
3849                 if check_progs_installed $node $LFSCK_BIN; then
3850                         found=true
3851                         break
3852                 fi
3853         done
3854         ! $found && error "None of \"$facets\" supports lfsck"
3855
3856         run_lfsck_remote $node || rc=$?
3857
3858         rm -rvf $MDSDB* $OSTDB* || true
3859         return $rc
3860 }
3861
3862 check_and_cleanup_lustre() {
3863     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
3864         get_svr_devs
3865         generate_db
3866         run_lfsck
3867     fi
3868
3869         if is_mounted $MOUNT; then
3870                 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
3871                         error "remove sub-test dirs failed"
3872                 [ "$ENABLE_QUOTA" ] && restore_quota || true
3873         fi
3874
3875     if [ "$I_UMOUNTED2" = "yes" ]; then
3876         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
3877     fi
3878
3879     if [ "$I_MOUNTED2" = "yes" ]; then
3880         cleanup_mount $MOUNT2
3881     fi
3882
3883     if [ "$I_MOUNTED" = "yes" ]; then
3884         cleanupall -f || error "cleanup failed"
3885         unset I_MOUNTED
3886     fi
3887 }
3888
3889 #######
3890 # General functions
3891
3892 wait_for_function () {
3893     local quiet=""
3894
3895     # suppress fn both stderr and stdout
3896     if [ "$1" = "--quiet" ]; then
3897         shift
3898         quiet=" > /dev/null 2>&1"
3899
3900     fi
3901
3902     local fn=$1
3903     local max=${2:-900}
3904     local sleep=${3:-5}
3905
3906     local wait=0
3907
3908     while true; do
3909
3910         eval $fn $quiet && return 0
3911
3912         wait=$((wait + sleep))
3913         [ $wait -lt $max ] || return 1
3914         echo waiting $fn, $((max - wait)) secs left ...
3915         sleep $sleep
3916     done
3917 }
3918
3919 check_network() {
3920     local host=$1
3921     local max=$2
3922     local sleep=${3:-5}
3923
3924     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
3925     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
3926         echo "Network not available!"
3927         exit 1
3928     fi
3929
3930     echo `date +"%H:%M:%S (%s)"` network interface is UP
3931 }
3932
3933 no_dsh() {
3934     shift
3935     eval $@
3936 }
3937
3938 # Convert a space-delimited list to a comma-delimited list.  If the input is
3939 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
3940 comma_list() {
3941         # echo is used to convert newlines to spaces, since it doesn't
3942         # introduce a trailing space as using "tr '\n' ' '" does
3943         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
3944 }
3945
3946 list_member () {
3947     local list=$1
3948     local item=$2
3949     echo $list | grep -qw $item
3950 }
3951
3952 # list, excluded are the comma separated lists
3953 exclude_items_from_list () {
3954     local list=$1
3955     local excluded=$2
3956     local item
3957
3958     list=${list//,/ }
3959     for item in ${excluded//,/ }; do
3960         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
3961     done
3962     echo $(comma_list $list)
3963 }
3964
3965 # list, expand  are the comma separated lists
3966 expand_list () {
3967     local list=${1//,/ }
3968     local expand=${2//,/ }
3969     local expanded=
3970
3971     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
3972     echo $(comma_list $expanded)
3973 }
3974
3975 testslist_filter () {
3976     local script=$LUSTRE/tests/${TESTSUITE}.sh
3977
3978     [ -f $script ] || return 0
3979
3980     local start_at=$START_AT
3981     local stop_at=$STOP_AT
3982
3983     local var=${TESTSUITE//-/_}_START_AT
3984     [ x"${!var}" != x ] && start_at=${!var}
3985     var=${TESTSUITE//-/_}_STOP_AT
3986     [ x"${!var}" != x ] && stop_at=${!var}
3987
3988     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
3989         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
3990             /^'${start_at}'$/ {flag = 0}
3991             {if (flag == 1) print $0}
3992             /^'${stop_at}'$/ { flag = 1 }'
3993 }
3994
3995 absolute_path() {
3996     (cd `dirname $1`; echo $PWD/`basename $1`)
3997 }
3998
3999 get_facets () {
4000     local types=${1:-"OST MDS MGS"}
4001
4002     local list=""
4003
4004     for entry in $types; do
4005         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
4006         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
4007
4008         case $type in
4009                 MGS ) list="$list $name";;
4010             MDS|OST|AGT ) local count=${type}COUNT
4011                        for ((i=1; i<=${!count}; i++)) do
4012                           list="$list ${name}$i"
4013                       done;;
4014                   * ) error "Invalid facet type"
4015                  exit 1;;
4016         esac
4017     done
4018     echo $(comma_list $list)
4019 }
4020
4021 ##################################
4022 # Adaptive Timeouts funcs
4023
4024 at_is_enabled() {
4025     # only check mds, we assume at_max is the same on all nodes
4026     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
4027     if [ $at_max -eq 0 ]; then
4028         return 1
4029     else
4030         return 0
4031     fi
4032 }
4033
4034 at_get() {
4035     local facet=$1
4036     local at=$2
4037
4038     # suppose that all ost-s have the same $at value set
4039     [ $facet != "ost" ] || facet=ost1
4040
4041     do_facet $facet "lctl get_param -n $at"
4042 }
4043
4044 at_max_get() {
4045     at_get $1 at_max
4046 }
4047
4048 at_min_get() {
4049         at_get $1 at_min
4050 }
4051
4052 at_max_set() {
4053     local at_max=$1
4054     shift
4055
4056     local facet
4057     local hosts
4058     for facet in $@; do
4059         if [ $facet == "ost" ]; then
4060             facet=$(get_facets OST)
4061         elif [ $facet == "mds" ]; then
4062             facet=$(get_facets MDS)
4063         fi
4064         hosts=$(expand_list $hosts $(facets_hosts $facet))
4065     done
4066
4067     do_nodes $hosts lctl set_param at_max=$at_max
4068 }
4069
4070 ##################################
4071 # OBD_FAIL funcs
4072
4073 drop_request() {
4074 # OBD_FAIL_MDS_ALL_REQUEST_NET
4075     RC=0
4076     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
4077     do_facet client "$1" || RC=$?
4078     do_facet $SINGLEMDS lctl set_param fail_loc=0
4079     return $RC
4080 }
4081
4082 drop_reply() {
4083 # OBD_FAIL_MDS_ALL_REPLY_NET
4084     RC=0
4085     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
4086     do_facet client "$@" || RC=$?
4087     do_facet $SINGLEMDS lctl set_param fail_loc=0
4088     return $RC
4089 }
4090
4091 drop_reint_reply() {
4092 # OBD_FAIL_MDS_REINT_NET_REP
4093     RC=0
4094     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
4095     do_facet client "$@" || RC=$?
4096     do_facet $SINGLEMDS lctl set_param fail_loc=0
4097     return $RC
4098 }
4099
4100 drop_update_reply() {
4101 # OBD_FAIL_UPDATE_OBJ_NET_REP
4102         local index=$1
4103         shift 1
4104         RC=0
4105         do_facet mds${index} lctl set_param fail_loc=0x1701
4106         do_facet client "$@" || RC=$?
4107         do_facet mds${index} lctl set_param fail_loc=0
4108         return $RC
4109 }
4110
4111 pause_bulk() {
4112 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
4113     RC=0
4114     do_facet ost1 lctl set_param fail_loc=0x214
4115     do_facet client "$1" || RC=$?
4116     do_facet client "sync"
4117     do_facet ost1 lctl set_param fail_loc=0
4118     return $RC
4119 }
4120
4121 drop_ldlm_cancel() {
4122 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
4123         local RC=0
4124         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
4125         do_nodes $list lctl set_param fail_loc=0x304
4126
4127         do_facet client "$@" || RC=$?
4128
4129         do_nodes $list lctl set_param fail_loc=0
4130         return $RC
4131 }
4132
4133 drop_bl_callback() {
4134 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
4135         RC=0
4136         do_facet client lctl set_param fail_loc=0x80000305
4137         do_facet client "$@" || RC=$?
4138         do_facet client lctl set_param fail_loc=0
4139         return $RC
4140 }
4141
4142 drop_ldlm_reply() {
4143 #define OBD_FAIL_LDLM_REPLY              0x30c
4144     RC=0
4145     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
4146     do_facet client "$@" || RC=$?
4147     do_facet $SINGLEMDS lctl set_param fail_loc=0
4148     return $RC
4149 }
4150
4151 clear_failloc() {
4152     facet=$1
4153     pause=$2
4154     sleep $pause
4155     echo "clearing fail_loc on $facet"
4156     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
4157 }
4158
4159 set_nodes_failloc () {
4160     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
4161 }
4162
4163 cancel_lru_locks() {
4164     $LCTL mark "cancel_lru_locks $1 start"
4165     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
4166         $LCTL set_param -n $d=clear
4167     done
4168     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
4169     $LCTL mark "cancel_lru_locks $1 stop"
4170 }
4171
4172 default_lru_size()
4173 {
4174         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
4175         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
4176         echo "$DEFAULT_LRU_SIZE"
4177 }
4178
4179 lru_resize_enable()
4180 {
4181     lctl set_param ldlm.namespaces.*$1*.lru_size=0
4182 }
4183
4184 lru_resize_disable()
4185 {
4186     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
4187 }
4188
4189 pgcache_empty() {
4190     local FILE
4191     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
4192         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
4193             echo there is still data in page cache $FILE ?
4194             lctl get_param -n $FILE
4195             return 1
4196         fi
4197     done
4198     return 0
4199 }
4200
4201 debugsave() {
4202     DEBUGSAVE="$(lctl get_param -n debug)"
4203 }
4204
4205 debugrestore() {
4206     [ -n "$DEBUGSAVE" ] && \
4207         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
4208     DEBUGSAVE=""
4209 }
4210
4211 debug_size_save() {
4212     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
4213 }
4214
4215 debug_size_restore() {
4216     [ -n "$DEBUG_SIZE_SAVED" ] && \
4217         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
4218     DEBUG_SIZE_SAVED=""
4219 }
4220
4221 start_full_debug_logging() {
4222     debugsave
4223     debug_size_save
4224
4225     local FULLDEBUG=-1
4226     local DEBUG_SIZE=150
4227
4228     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
4229     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
4230 }
4231
4232 stop_full_debug_logging() {
4233     debug_size_restore
4234     debugrestore
4235 }
4236
4237 # prints bash call stack
4238 log_trace_dump() {
4239         echo "  Trace dump:"
4240         for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
4241                 local s=${BASH_SOURCE[$i]}
4242                 local l=${BASH_LINENO[$i-1]}
4243                 local f=${FUNCNAME[$i]}
4244                 echo "  = $s:$l:$f()"
4245         done
4246 }
4247
4248 ##################################
4249 # Test interface
4250 ##################################
4251
4252 error_noexit() {
4253         local TYPE=${TYPE:-"FAIL"}
4254
4255         local dump=true
4256         # do not dump logs if $1=false
4257         if [ "x$1" = "xfalse" ]; then
4258                 shift
4259                 dump=false
4260         fi
4261
4262
4263         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
4264         log_trace_dump
4265
4266         mkdir -p $LOGDIR
4267         # We need to dump the logs on all nodes
4268         if $dump; then
4269                 gather_logs $(comma_list $(nodes_list))
4270         fi
4271
4272         debugrestore
4273         [ "$TESTSUITELOG" ] &&
4274                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
4275         if [ -z "$*" ]; then
4276                 echo "error() without useful message, please fix" > $LOGDIR/err
4277         else
4278                 echo "$@" > $LOGDIR/err
4279         fi
4280 }
4281
4282 exit_status () {
4283         local status=0
4284         local log=$TESTSUITELOG
4285
4286         [ -f "$log" ] && grep -q FAIL $log && status=1
4287         exit $status
4288 }
4289
4290 error() {
4291         error_noexit "$@"
4292         exit 1
4293 }
4294
4295 error_exit() {
4296         error "$@"
4297 }
4298
4299 # use only if we are ignoring failures for this test, bugno required.
4300 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
4301 # e.g. error_ignore 5494 "your message"
4302 error_ignore() {
4303         local TYPE="IGNORE (bz$1)"
4304         shift
4305         error_noexit "$@"
4306 }
4307
4308 error_and_remount() {
4309         error_noexit "$@"
4310         remount_client $MOUNT
4311         exit 1
4312 }
4313
4314 skip_env () {
4315         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
4316 }
4317
4318 skip() {
4319         echo
4320         log " SKIP: $TESTSUITE $TESTNAME $@"
4321
4322         if [[ -n "$ALWAYS_SKIPPED" ]]; then
4323                 skip_logged $TESTNAME "$@"
4324         else
4325                 mkdir -p $LOGDIR
4326                 echo "$@" > $LOGDIR/skip
4327         fi
4328
4329         [[ -n "$TESTSUITELOG" ]] &&
4330                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
4331 }
4332
4333 build_test_filter() {
4334     EXCEPT="$EXCEPT $(testslist_filter)"
4335
4336     [ "$ONLY" ] && log "only running test `echo $ONLY`"
4337     for O in $ONLY; do
4338         eval ONLY_${O}=true
4339     done
4340     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
4341         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
4342     [ "$EXCEPT_SLOW" ] && \
4343         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
4344     for E in $EXCEPT; do
4345         eval EXCEPT_${E}=true
4346     done
4347     for E in $ALWAYS_EXCEPT; do
4348         eval EXCEPT_ALWAYS_${E}=true
4349     done
4350     for E in $EXCEPT_SLOW; do
4351         eval EXCEPT_SLOW_${E}=true
4352     done
4353     for G in $GRANT_CHECK_LIST; do
4354         eval GCHECK_ONLY_${G}=true
4355         done
4356 }
4357
4358 basetest() {
4359     if [[ $1 = [a-z]* ]]; then
4360         echo $1
4361     else
4362         echo ${1%%[a-z]*}
4363     fi
4364 }
4365
4366 # print a newline if the last test was skipped
4367 export LAST_SKIPPED=
4368 export ALWAYS_SKIPPED=
4369 #
4370 # Main entry into test-framework. This is called with the name and
4371 # description of a test. The name is used to find the function to run
4372 # the test using "test_$name".
4373 #
4374 # This supports a variety of methods of specifying specific test to
4375 # run or not run.  These need to be documented...
4376 #
4377 run_test() {
4378     assert_DIR
4379
4380     export base=`basetest $1`
4381     if [ ! -z "$ONLY" ]; then
4382         testname=ONLY_$1
4383         if [ ${!testname}x != x ]; then
4384             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4385             run_one_logged $1 "$2"
4386             return $?
4387         fi
4388         testname=ONLY_$base
4389         if [ ${!testname}x != x ]; then
4390             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4391             run_one_logged $1 "$2"
4392             return $?
4393         fi
4394         LAST_SKIPPED="y"
4395         return 0
4396     fi
4397
4398         LAST_SKIPPED="y"
4399         ALWAYS_SKIPPED="y"
4400     testname=EXCEPT_$1
4401     if [ ${!testname}x != x ]; then
4402         TESTNAME=test_$1 skip "skipping excluded test $1"
4403         return 0
4404     fi
4405     testname=EXCEPT_$base
4406     if [ ${!testname}x != x ]; then
4407         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4408         return 0
4409     fi
4410     testname=EXCEPT_ALWAYS_$1
4411     if [ ${!testname}x != x ]; then
4412         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4413         return 0
4414     fi
4415     testname=EXCEPT_ALWAYS_$base
4416     if [ ${!testname}x != x ]; then
4417         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4418         return 0
4419     fi
4420     testname=EXCEPT_SLOW_$1
4421     if [ ${!testname}x != x ]; then
4422         TESTNAME=test_$1 skip "skipping SLOW test $1"
4423         return 0
4424     fi
4425     testname=EXCEPT_SLOW_$base
4426     if [ ${!testname}x != x ]; then
4427         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4428         return 0
4429     fi
4430
4431     LAST_SKIPPED=
4432     ALWAYS_SKIPPED=
4433     run_one_logged $1 "$2"
4434
4435     return $?
4436 }
4437
4438 log() {
4439     echo "$*"
4440     module_loaded lnet || load_modules
4441
4442     local MSG="$*"
4443     # Get rid of '
4444     MSG=${MSG//\'/\\\'}
4445     MSG=${MSG//\(/\\\(}
4446     MSG=${MSG//\)/\\\)}
4447     MSG=${MSG//\;/\\\;}
4448     MSG=${MSG//\|/\\\|}
4449     MSG=${MSG//\>/\\\>}
4450     MSG=${MSG//\</\\\<}
4451     MSG=${MSG//\//\\\/}
4452     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
4453 }
4454
4455 trace() {
4456         log "STARTING: $*"
4457         strace -o $TMP/$1.strace -ttt $*
4458         RC=$?
4459         log "FINISHED: $*: rc $RC"
4460         return 1
4461 }
4462
4463 complete () {
4464     local duration=$1
4465
4466     banner test complete, duration $duration sec
4467     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
4468     echo duration $duration >>$TESTSUITELOG
4469 }
4470
4471 pass() {
4472         # Set TEST_STATUS here. It will be used for logging the result.
4473         TEST_STATUS="PASS"
4474
4475         if [[ -f $LOGDIR/err ]]; then
4476                 TEST_STATUS="FAIL"
4477         elif [[ -f $LOGDIR/skip ]]; then
4478                 TEST_STATUS="SKIP"
4479         fi
4480         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
4481 }
4482
4483 check_mds() {
4484     local FFREE=$(do_node $SINGLEMDS \
4485         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
4486     local FTOTAL=$(do_node $SINGLEMDS \
4487         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
4488
4489     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
4490 }
4491
4492 reset_fail_loc () {
4493     echo -n "Resetting fail_loc on all nodes..."
4494     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
4495     echo done.
4496 }
4497
4498
4499 #
4500 # Log a message (on all nodes) padded with "=" before and after. 
4501 # Also appends a timestamp and prepends the testsuite name.
4502
4503
4504 EQUALS="===================================================================================================="
4505 banner() {
4506     msg="== ${TESTSUITE} $*"
4507     last=${msg: -1:1}
4508     [[ $last != "=" && $last != " " ]] && msg="$msg "
4509     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
4510     # always include at least == after the message
4511     log "$msg== $(date +"%H:%M:%S (%s)")"
4512 }
4513
4514 #
4515 # Run a single test function and cleanup after it.  
4516 #
4517 # This function should be run in a subshell so the test func can
4518 # exit() without stopping the whole script.
4519 #
4520 run_one() {
4521     local testnum=$1
4522     local message=$2
4523     tfile=f.${TESTSUITE}.${testnum}
4524     export tdir=d0.${TESTSUITE}/d${base}
4525     export TESTNAME=test_$testnum
4526     local SAVE_UMASK=`umask`
4527     umask 0022
4528
4529     banner "test $testnum: $message"
4530     test_${testnum} || error "test_$testnum failed with $?"
4531     cd $SAVE_PWD
4532     reset_fail_loc
4533     check_grant ${testnum} || error "check_grant $testnum failed with $?"
4534     check_catastrophe || error "LBUG/LASSERT detected"
4535         if [ "$PARALLEL" != "yes" ]; then
4536                 ps auxww | grep -v grep | grep -q multiop &&
4537                                         error "multiop still running"
4538         fi
4539     unset TESTNAME
4540     unset tdir
4541     umask $SAVE_UMASK
4542     return 0
4543 }
4544
4545 #
4546 # Wrapper around run_one to ensure:
4547 #  - test runs in subshell
4548 #  - output of test is saved to separate log file for error reporting
4549 #  - test result is saved to data file
4550 #
4551 run_one_logged() {
4552         local BEFORE=`date +%s`
4553         local TEST_ERROR
4554         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
4555         local test_log=$LOGDIR/$name
4556         rm -rf $LOGDIR/err
4557         rm -rf $LOGDIR/skip
4558         local SAVE_UMASK=`umask`
4559         umask 0022
4560
4561         echo
4562         log_sub_test_begin test_${1}
4563         (run_one $1 "$2") 2>&1 | tee -i $test_log
4564         local RC=${PIPESTATUS[0]}
4565
4566         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
4567                 echo "test_$1 returned $RC" | tee $LOGDIR/err
4568
4569         duration=$((`date +%s` - $BEFORE))
4570         pass "$1" "(${duration}s)"
4571
4572         if [[ -f $LOGDIR/err ]]; then
4573                 TEST_ERROR=$(cat $LOGDIR/err)
4574         elif [[ -f $LOGDIR/skip ]]; then
4575                 TEST_ERROR=$(cat $LOGDIR/skip)
4576         fi
4577         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
4578
4579         if [ -f $LOGDIR/err ]; then
4580                 $FAIL_ON_ERROR && exit $RC
4581         fi
4582
4583         umask $SAVE_UMASK
4584
4585         return 0
4586 }
4587
4588 #
4589 # Print information of skipped tests to result.yml
4590 #
4591 skip_logged(){
4592         log_sub_test_begin $1
4593         shift
4594         log_sub_test_end "SKIP" "0" "0" "$@"
4595 }
4596
4597 canonical_path() {
4598     (cd `dirname $1`; echo $PWD/`basename $1`)
4599 }
4600
4601
4602 check_grant() {
4603     export base=`basetest $1`
4604     [ "$CHECK_GRANT" == "no" ] && return 0
4605
4606         testname=GCHECK_ONLY_${base}
4607         [ ${!testname}x == x ] && return 0
4608
4609     echo -n "checking grant......"
4610
4611         local clients=$CLIENTS
4612         [ -z $clients ] && clients=$(hostname)
4613
4614     # sync all the data and make sure no pending data on server
4615     do_nodes $clients sync
4616
4617     # get client grant
4618     client_grant=`do_nodes $clients \
4619                     "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" | \
4620                     awk '{total += $1} END{print total}'`
4621
4622     # get server grant
4623     server_grant=`do_nodes $(comma_list $(osts_nodes)) \
4624                     "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" |
4625                     awk '{total += $1} END{print total}'`
4626
4627     # check whether client grant == server grant
4628     if [ $client_grant -ne $server_grant ]; then
4629         echo "failed: client:${client_grant} server: ${server_grant}."
4630         do_nodes $(comma_list $(osts_nodes)) \
4631                    "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
4632         do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
4633         return 1
4634     else
4635         echo "pass: client:${client_grant} server: ${server_grant}"
4636     fi
4637
4638 }
4639
4640 ########################
4641 # helper functions
4642
4643 osc_to_ost()
4644 {
4645     osc=$1
4646     ost=`echo $1 | awk -F_ '{print $3}'`
4647     if [ -z $ost ]; then
4648         ost=`echo $1 | sed 's/-osc.*//'`
4649     fi
4650     echo $ost
4651 }
4652
4653 ostuuid_from_index()
4654 {
4655     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4656 }
4657
4658 ostname_from_index() {
4659     local uuid=$(ostuuid_from_index $1)
4660     echo ${uuid/_UUID/}
4661 }
4662
4663 index_from_ostuuid()
4664 {
4665     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
4666 }
4667
4668 mdtuuid_from_index()
4669 {
4670     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4671 }
4672
4673 # Description:
4674 #   Return unique identifier for given hostname
4675 host_id() {
4676         local host_name=$1
4677         echo $host_name | md5sum | cut -d' ' -f1
4678 }
4679
4680 # Description:
4681 #   Returns list of ip addresses for each interface
4682 local_addr_list() {
4683         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
4684 }
4685
4686 is_local_addr() {
4687         local addr=$1
4688         # Cache address list to avoid mutiple execution of local_addr_list
4689         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
4690         local i
4691         for i in $LOCAL_ADDR_LIST ; do
4692                 [[ "$i" == "$addr" ]] && return 0
4693         done
4694         return 1
4695 }
4696
4697 local_node() {
4698         local host_name=$1
4699         local is_local="IS_LOCAL_$(host_id $host_name)"
4700         if [ -z "${!is_local-}" ] ; then
4701                 eval $is_local=0
4702                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
4703                 is_local_addr "$host_ip" && eval $is_local=1
4704         fi
4705         [[ "${!is_local}" == "1" ]]
4706 }
4707
4708 remote_node () {
4709         local node=$1
4710         local_node $node && return 1
4711         return 0
4712 }
4713
4714 remote_mds ()
4715 {
4716     local node
4717     for node in $(mdts_nodes); do
4718         remote_node $node && return 0
4719     done
4720     return 1
4721 }
4722
4723 remote_mds_nodsh()
4724 {
4725     [ "$CLIENTONLY" ] && return 0 || true
4726     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
4727 }
4728
4729 require_dsh_mds()
4730 {
4731         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
4732             MSKIPPED=1 && return 1
4733         return 0
4734 }
4735
4736 remote_ost ()
4737 {
4738     local node
4739     for node in $(osts_nodes) ; do
4740         remote_node $node && return 0
4741     done
4742     return 1
4743 }
4744
4745 remote_ost_nodsh()
4746 {
4747     [ "$CLIENTONLY" ] && return 0 || true 
4748     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4749 }
4750
4751 require_dsh_ost()
4752 {
4753         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
4754             OSKIPPED=1 && return 1
4755         return 0
4756 }
4757
4758 remote_mgs_nodsh()
4759 {
4760     local MGS 
4761     MGS=$(facet_host mgs)
4762     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4763 }
4764
4765 local_mode ()
4766 {
4767     remote_mds_nodsh || remote_ost_nodsh || \
4768         $(single_local_node $(comma_list $(nodes_list)))
4769 }
4770
4771 remote_servers () {
4772     remote_ost && remote_mds
4773 }
4774
4775 # Get the active nodes for facets.
4776 facets_nodes () {
4777         local facets=$1
4778         local facet
4779         local nodes
4780         local nodes_sort
4781         local i
4782
4783         for facet in ${facets//,/ }; do
4784                 nodes="$nodes $(facet_active_host $facet)"
4785         done
4786
4787         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4788         echo -n $nodes_sort
4789 }
4790
4791 # Get all of the active MDS nodes.
4792 mdts_nodes () {
4793         echo -n $(facets_nodes $(get_facets MDS))
4794 }
4795
4796 # Get all of the active OSS nodes.
4797 osts_nodes () {
4798         echo -n $(facets_nodes $(get_facets OST))
4799 }
4800
4801 # Get all of the active AGT (HSM agent) nodes.
4802 agts_nodes () {
4803         echo -n $(facets_nodes $(get_facets AGT))
4804 }
4805
4806 # Get all of the client nodes and active server nodes.
4807 nodes_list () {
4808         local nodes=$HOSTNAME
4809         local nodes_sort
4810         local i
4811
4812         # CLIENTS (if specified) contains the local client
4813         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4814
4815         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4816                 nodes="$nodes $(facets_nodes $(get_facets))"
4817         fi
4818
4819         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4820         echo -n $nodes_sort
4821 }
4822
4823 # Get all of the remote client nodes and remote active server nodes.
4824 remote_nodes_list () {
4825         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
4826 }
4827
4828 # Get all of the MDS nodes, including active and passive nodes.
4829 all_mdts_nodes () {
4830         local host
4831         local failover_host
4832         local nodes
4833         local nodes_sort
4834         local i
4835
4836         for i in $(seq $MDSCOUNT); do
4837                 host=mds${i}_HOST
4838                 failover_host=mds${i}failover_HOST
4839                 nodes="$nodes ${!host} ${!failover_host}"
4840         done
4841
4842         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4843         echo -n $nodes_sort
4844 }
4845
4846 # Get all of the OSS nodes, including active and passive nodes.
4847 all_osts_nodes () {
4848         local host
4849         local failover_host
4850         local nodes
4851         local nodes_sort
4852         local i
4853
4854         for i in $(seq $OSTCOUNT); do
4855                 host=ost${i}_HOST
4856                 failover_host=ost${i}failover_HOST
4857                 nodes="$nodes ${!host} ${!failover_host}"
4858         done
4859
4860         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4861         echo -n $nodes_sort
4862 }
4863
4864 # Get all of the server nodes, including active and passive nodes.
4865 all_server_nodes () {
4866         local nodes
4867         local nodes_sort
4868         local i
4869
4870         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
4871
4872         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4873         echo -n $nodes_sort
4874 }
4875
4876 # Get all of the client and server nodes, including active and passive nodes.
4877 all_nodes () {
4878         local nodes=$HOSTNAME
4879         local nodes_sort
4880         local i
4881
4882         # CLIENTS (if specified) contains the local client
4883         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4884
4885         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4886                 nodes="$nodes $(all_server_nodes)"
4887         fi
4888
4889         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4890         echo -n $nodes_sort
4891 }
4892
4893 init_clients_lists () {
4894     # Sanity check: exclude the local client from RCLIENTS
4895     local clients=$(hostlist_expand "$RCLIENTS")
4896     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
4897
4898     # Sanity check: exclude the dup entries
4899     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
4900
4901     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
4902
4903     # Sanity check: exclude the dup entries from CLIENTS
4904     # for those configs which has SINGLCLIENT set to local client
4905     clients=$(for i in $clients; do echo $i; done | sort -u)
4906
4907     CLIENTS=$(comma_list $clients)
4908     local -a remoteclients=($RCLIENTS)
4909     for ((i=0; $i<${#remoteclients[@]}; i++)); do
4910             varname=CLIENT$((i + 2))
4911             eval $varname=${remoteclients[i]}
4912     done
4913
4914     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
4915 }
4916
4917 get_random_entry () {
4918     local rnodes=$1
4919
4920     rnodes=${rnodes//,/ }
4921
4922     local -a nodes=($rnodes)
4923     local num=${#nodes[@]} 
4924     local i=$((RANDOM * num * 2 / 65536))
4925
4926     echo ${nodes[i]}
4927 }
4928
4929 client_only () {
4930     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
4931 }
4932
4933 is_patchless ()
4934 {
4935     lctl get_param version | grep -q patchless
4936 }
4937
4938 check_versions () {
4939     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
4940       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
4941 }
4942
4943 get_node_count() {
4944     local nodes="$@"
4945     echo $nodes | wc -w || true
4946 }
4947
4948 mixed_ost_devs () {
4949     local nodes=$(osts_nodes)
4950     local osscount=$(get_node_count "$nodes")
4951     [ ! "$OSTCOUNT" = "$osscount" ]
4952 }
4953
4954 mixed_mdt_devs () {
4955     local nodes=$(mdts_nodes)
4956     local mdtcount=$(get_node_count "$nodes")
4957     [ ! "$MDSCOUNT" = "$mdtcount" ]
4958 }
4959
4960 generate_machine_file() {
4961     local nodes=${1//,/ }
4962     local machinefile=$2
4963     rm -f $machinefile
4964     for node in $nodes; do
4965         echo $node >>$machinefile || \
4966             { echo "can not generate machinefile $machinefile" && return 1; }
4967     done
4968 }
4969
4970 get_stripe () {
4971         local file=$1/stripe
4972
4973         touch $file
4974         $LFS getstripe -v $file || error "getstripe $file failed"
4975         rm -f $file
4976 }
4977
4978 setstripe_nfsserver () {
4979     local dir=$1
4980
4981     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
4982                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
4983
4984     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
4985
4986     do_nodev $nfsserver lfs setstripe "$@"
4987 }
4988
4989 # Check and add a test group.
4990 add_group() {
4991         local group_id=$1
4992         local group_name=$2
4993         local rc=0
4994
4995         local gid=$(getent group $group_name | cut -d: -f3)
4996         if [[ -n "$gid" ]]; then
4997                 [[ "$gid" -eq "$group_id" ]] || {
4998                         error_noexit "inconsistent group ID:" \
4999                                      "new: $group_id, old: $gid"
5000                         rc=1
5001                 }
5002         else
5003                 groupadd -g $group_id $group_name
5004                 rc=${PIPESTATUS[0]}
5005         fi
5006
5007         return $rc
5008 }
5009
5010 # Check and add a test user.
5011 add_user() {
5012         local user_id=$1
5013         shift
5014         local user_name=$1
5015         shift
5016         local group_name=$1
5017         shift
5018         local home=$1
5019         shift
5020         local opts="$@"
5021         local rc=0
5022
5023         local uid=$(getent passwd $user_name | cut -d: -f3)
5024         if [[ -n "$uid" ]]; then
5025                 if [[ "$uid" -eq "$user_id" ]]; then
5026                         local dir=$(getent passwd $user_name | cut -d: -f6)
5027                         if [[ "$dir" != "$home" ]]; then
5028                                 mkdir -p $home
5029                                 usermod -d $home $user_name
5030                                 rc=${PIPESTATUS[0]}
5031                         fi
5032                 else
5033                         error_noexit "inconsistent user ID:" \
5034                                      "new: $user_id, old: $uid"
5035                         rc=1
5036                 fi
5037         else
5038                 mkdir -p $home
5039                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
5040                 rc=${PIPESTATUS[0]}
5041         fi
5042
5043         return $rc
5044 }
5045
5046 check_runas_id_ret() {
5047     local myRC=0
5048     local myRUNAS_UID=$1
5049     local myRUNAS_GID=$2
5050     shift 2
5051     local myRUNAS=$@
5052     if [ -z "$myRUNAS" ]; then
5053         error_exit "myRUNAS command must be specified for check_runas_id"
5054     fi
5055     if $GSS_KRB5; then
5056         $myRUNAS krb5_login.sh || \
5057             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
5058     fi
5059     mkdir $DIR/d0_runas_test
5060     chmod 0755 $DIR
5061     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
5062     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
5063     rm -rf $DIR/d0_runas_test
5064     return $myRC
5065 }
5066
5067 check_runas_id() {
5068     local myRUNAS_UID=$1
5069     local myRUNAS_GID=$2
5070     shift 2
5071     local myRUNAS=$@
5072     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
5073         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
5074         Please set RUNAS_ID to some UID which exists on MDS and client or
5075         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
5076 }
5077
5078 # obtain the UID/GID for MPI_USER
5079 get_mpiuser_id() {
5080     local mpi_user=$1
5081
5082     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
5083 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
5084
5085     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
5086 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
5087 }
5088
5089 # obtain and cache Kerberos ticket-granting ticket
5090 refresh_krb5_tgt() {
5091     local myRUNAS_UID=$1
5092     local myRUNAS_GID=$2
5093     shift 2
5094     local myRUNAS=$@
5095     if [ -z "$myRUNAS" ]; then
5096         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
5097     fi
5098
5099     CLIENTS=${CLIENTS:-$HOSTNAME}
5100     do_nodes $CLIENTS "set -x
5101 if ! $myRUNAS krb5_login.sh; then
5102     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
5103     exit 1
5104 fi"
5105 }
5106
5107 # Run multiop in the background, but wait for it to print
5108 # "PAUSING" to its stdout before returning from this function.
5109 multiop_bg_pause() {
5110     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
5111     FILE=$1
5112     ARGS=$2
5113
5114     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
5115     mkfifo $TMPPIPE
5116
5117     echo "$MULTIOP_PROG $FILE v$ARGS"
5118     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
5119
5120     echo "TMPPIPE=${TMPPIPE}"
5121     read -t 60 multiop_output < $TMPPIPE
5122     if [ $? -ne 0 ]; then
5123         rm -f $TMPPIPE
5124         return 1
5125     fi
5126     rm -f $TMPPIPE
5127     if [ "$multiop_output" != "PAUSING" ]; then
5128         echo "Incorrect multiop output: $multiop_output"
5129         kill -9 $PID
5130         return 1
5131     fi
5132
5133     return 0
5134 }
5135
5136 do_and_time () {
5137     local cmd=$1
5138     local rc
5139
5140     SECONDS=0
5141     eval '$cmd'
5142     
5143     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
5144
5145     echo $SECONDS
5146     return $rc
5147 }
5148
5149 inodes_available () {
5150     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
5151     echo $IFree
5152 }
5153
5154 mdsrate_inodes_available () {
5155     local min_inodes=$(inodes_available)
5156     echo $((min_inodes * 99 / 100))
5157 }
5158
5159 # reset llite stat counters
5160 clear_llite_stats(){
5161         lctl set_param -n llite.*.stats 0
5162 }
5163
5164 # sum llite stat items
5165 calc_llite_stats() {
5166         local res=$(lctl get_param -n llite.*.stats |
5167                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
5168         echo $res
5169 }
5170
5171 # reset osc stat counters
5172 clear_osc_stats(){
5173         lctl set_param -n osc.*.osc_stats 0
5174 }
5175
5176 # sum osc stat items
5177 calc_osc_stats() {
5178         local res=$(lctl get_param -n osc.*.osc_stats |
5179                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
5180         echo $res
5181 }
5182
5183 calc_sum () {
5184         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
5185 }
5186
5187 calc_osc_kbytes () {
5188         df $MOUNT > /dev/null
5189         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
5190 }
5191
5192 # save_lustre_params(comma separated facet list, parameter_mask)
5193 # generate a stream of formatted strings (<facet> <param name>=<param value>)
5194 save_lustre_params() {
5195         local facets=$1
5196         local facet
5197         local nodes
5198         local node
5199
5200         for facet in ${facets//,/ }; do
5201                 node=$(facet_active_host $facet)
5202                 [[ *\ $node\ * = " $nodes " ]] && continue
5203                 nodes="$nodes $node"
5204
5205                 do_node $node "$LCTL get_param $2 |
5206                         while read s; do echo $facet \\\$s; done"
5207         done
5208 }
5209
5210 # restore lustre parameters from input stream, produces by save_lustre_params
5211 restore_lustre_params() {
5212         local facet
5213         local name
5214         local val
5215
5216         while IFS=" =" read facet name val; do
5217                 do_facet $facet "$LCTL set_param -n $name $val"
5218         done
5219 }
5220
5221 check_catastrophe() {
5222         local rnodes=${1:-$(comma_list $(remote_nodes_list))}
5223         local C=$CATASTROPHE
5224         [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
5225
5226         [ -z "$rnodes" ] && return 0
5227
5228         local data
5229         data=$(do_nodes "$rnodes" "rc=\\\$([ -f $C ] &&
5230                 echo \\\$(< $C) || echo 0);
5231                 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
5232                 exit \\\$rc")
5233         local rc=$?
5234         if [ -n "$data" ]; then
5235             echo $data
5236             return $rc
5237         fi
5238         return 0
5239 }
5240
5241 # CMD: determine mds index where directory inode presents
5242 get_mds_dir () {
5243     local dir=$1
5244     local file=$dir/f0.get_mds_dir_tmpfile
5245
5246     mkdir -p $dir
5247     rm -f $file
5248     sleep 1
5249     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5250     local -a oldused=($iused)
5251
5252     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
5253     sleep 1
5254     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5255     local -a newused=($iused)
5256
5257     local num=0
5258     for ((i=0; i<${#newused[@]}; i++)); do
5259          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
5260              echo $(( i + 1 ))
5261              rm -f $file
5262              return 0
5263          fi
5264     done
5265     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
5266 }
5267
5268 mdsrate_cleanup () {
5269         if [ -d $4 ]; then
5270                 mpi_run -np $1 ${MACHINEFILE_OPTION} $2 ${MDSRATE} --unlink \
5271                         --nfiles $3 --dir $4 --filefmt $5 $6
5272                 rmdir $4
5273         fi
5274 }
5275
5276 delayed_recovery_enabled () {
5277     local var=${SINGLEMDS}_svc
5278     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
5279 }
5280
5281 ########################
5282
5283 convert_facet2label() { 
5284     local facet=$1
5285
5286     if [ x$facet = xost ]; then
5287        facet=ost1
5288     fi
5289
5290     local varsvc=${facet}_svc
5291
5292     if [ -n ${!varsvc} ]; then
5293         echo ${!varsvc}
5294     else  
5295         error "No lablel for $facet!"
5296     fi
5297 }
5298
5299 get_clientosc_proc_path() {
5300     echo "${1}-osc-*"
5301 }
5302
5303 get_lustre_version () {
5304     local facet=${1:-"$SINGLEMDS"}    
5305     do_facet $facet $LCTL get_param -n version | awk '/^lustre:/ {print $2}'
5306 }
5307
5308 lustre_version_code() {
5309     local facet=${1:-"$SINGLEMDS"}
5310     version_code $(get_lustre_version $1)
5311 }
5312
5313 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
5314 # used by MDT would not be changed.
5315 # mdt lov: fsname-mdtlov
5316 # mdt osc: fsname-OSTXXXX-osc
5317 mds_on_old_device() {
5318     local mds=${1:-"$SINGLEMDS"}
5319
5320     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
5321         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
5322             > /dev/null 2>&1" && return 0
5323     fi
5324     return 1
5325 }
5326
5327 get_mdtosc_proc_path() {
5328     local mds_facet=$1
5329     local ost_label=${2:-"*OST*"}
5330
5331     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
5332     local mdt_label=$(convert_facet2label $mds_facet)
5333     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
5334
5335     if [ $(lustre_version_code $mds_facet) -le $(version_code 1.8.0) ] ||
5336        mds_on_old_device $mds_facet; then
5337         echo "${ost_label}-osc"
5338     else
5339         echo "${ost_label}-osc-${mdt_index}"
5340     fi
5341 }
5342
5343 get_osc_import_name() {
5344     local facet=$1
5345     local ost=$2
5346     local label=$(convert_facet2label $ost)
5347
5348     if [ "${facet:0:3}" = "mds" ]; then
5349         get_mdtosc_proc_path $facet $label
5350         return 0
5351     fi
5352
5353     get_clientosc_proc_path $label
5354     return 0
5355 }
5356
5357 _wait_import_state () {
5358     local expected=$1
5359     local CONN_PROC=$2
5360     local maxtime=${3:-$(max_recovery_time)}
5361     local CONN_STATE
5362     local i=0
5363
5364         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5365     while [ "${CONN_STATE}" != "${expected}" ]; do
5366         if [ "${expected}" == "DISCONN" ]; then
5367             # for disconn we can check after proc entry is removed
5368             [ "x${CONN_STATE}" == "x" ] && return 0
5369             #  with AT enabled, we can have connect request timeout near of
5370             # reconnect timeout and test can't see real disconnect
5371             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
5372         fi
5373         [ $i -ge $maxtime ] && \
5374             error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}" && \
5375             return 1
5376         sleep 1
5377         # Add uniq for multi-mount case
5378         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5379         i=$(($i + 1))
5380     done
5381
5382     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
5383     return 0
5384 }
5385
5386 wait_import_state() {
5387     local state=$1
5388     local params=$2
5389     local maxtime=${3:-$(max_recovery_time)}
5390     local param
5391
5392     for param in ${params//,/ }; do
5393         _wait_import_state $state $param $maxtime || return
5394     done
5395 }
5396
5397 wait_import_state_mount() {
5398         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5399                 return 0
5400         fi
5401
5402         wait_import_state $*
5403 }
5404
5405 # One client request could be timed out because server was not ready
5406 # when request was sent by client.
5407 # The request timeout calculation details :
5408 # ptl_send_rpc ()
5409 #      /* We give the server rq_timeout secs to process the req, and
5410 #      add the network latency for our local timeout. */
5411 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
5412 #           ptlrpc_at_get_net_latency(request) ;
5413 #
5414 # ptlrpc_connect_import ()
5415 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5416 #
5417 # init_imp_at () ->
5418 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
5419 # ptlrpc_at_get_net_latency(request) ->
5420 #       at_get (max (iat_net_latency=0, at_min)) = at_min
5421 #
5422 # i.e.:
5423 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
5424 # INITIAL_CONNECT_TIMEOUT + at_min
5425 #
5426 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
5427 # because we can not get this value in runtime,
5428 # the value depends on configure options, and it is not stored in /proc.
5429 # obd_support.h:
5430 # #define CONNECTION_SWITCH_MIN 5U
5431 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5432
5433 request_timeout () {
5434     local facet=$1
5435
5436     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5437     local init_connect_timeout=$TIMEOUT
5438     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5439
5440     local at_min=$(at_get $facet at_min)
5441
5442     echo $(( init_connect_timeout + at_min ))
5443 }
5444
5445 _wait_osc_import_state() {
5446     local facet=$1
5447     local ost_facet=$2
5448     local expected=$3
5449     local ost=$(get_osc_import_name $facet $ost_facet)
5450
5451         local param="osc.${ost}.ost_server_uuid"
5452         local i=0
5453
5454     # 1. wait the deadline of client 1st request (it could be skipped)
5455     # 2. wait the deadline of client 2nd request
5456     local maxtime=$(( 2 * $(request_timeout $facet)))
5457
5458         #During setup time, the osc might not be setup, it need wait
5459         #until list_param can return valid value. And also if there
5460         #are mulitple osc entries we should list all of them before
5461         #go to wait.
5462         local params=$($LCTL list_param $param 2>/dev/null || true)
5463         while [ -z "$params" ]; do
5464                 if [ $i -ge $maxtime ]; then
5465                         echo "can't get $param by list_param in $maxtime secs"
5466                         if [[ $facet != client* ]]; then
5467                                 echo "Go with $param directly"
5468                                 params=$param
5469                                 break
5470                         else
5471                                 return 1
5472                         fi
5473                 fi
5474                 sleep 1
5475                 i=$((i + 1))
5476                 params=$($LCTL list_param $param 2>/dev/null || true)
5477         done
5478
5479         if ! do_rpc_nodes "$(facet_active_host $facet)" \
5480                         wait_import_state $expected "$params" $maxtime; then
5481                 error "import is not in ${expected} state"
5482                 return 1
5483         fi
5484
5485         return 0
5486 }
5487
5488 wait_osc_import_state() {
5489         local facet=$1
5490         local ost_facet=$2
5491         local expected=$3
5492         local num
5493
5494         if [[ $facet = mds ]]; then
5495                 for num in $(seq $MDSCOUNT); do
5496                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
5497                 done
5498         else
5499                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
5500         fi
5501 }
5502
5503 get_clientmdc_proc_path() {
5504     echo "${1}-mdc-*"
5505 }
5506
5507 do_rpc_nodes () {
5508         local list=$1
5509         shift
5510
5511         [ -z "$list" ] && return 0
5512
5513         # Add paths to lustre tests for 32 and 64 bit systems.
5514         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
5515         local TESTPATH="$RLUSTRE/tests:"
5516         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
5517         do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
5518 }
5519
5520 wait_clients_import_state () {
5521     local list=$1
5522     local facet=$2
5523     local expected=$3
5524
5525     local facets=$facet
5526
5527     if [ "$FAILURE_MODE" = HARD ]; then
5528         facets=$(facets_on_host $(facet_active_host $facet))
5529     fi
5530
5531     for facet in ${facets//,/ }; do
5532     local label=$(convert_facet2label $facet)
5533     local proc_path
5534     case $facet in
5535         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
5536         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
5537         *) error "unknown facet!" ;;
5538     esac
5539     local params=$(expand_list $params $proc_path)
5540     done
5541
5542         if ! do_rpc_nodes "$list" wait_import_state_mount $expected $params; then
5543                 error "import is not in ${expected} state"
5544                 return 1
5545         fi
5546 }
5547
5548 oos_full() {
5549         local -a AVAILA
5550         local -a GRANTA
5551         local -a TOTALA
5552         local OSCFULL=1
5553         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
5554                   $LCTL get_param obdfilter.*.kbytesavail))
5555         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
5556                   $LCTL get_param -n obdfilter.*.tot_granted))
5557         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
5558                   $LCTL get_param -n obdfilter.*.kbytestotal))
5559         for ((i=0; i<${#AVAILA[@]}; i++)); do
5560                 local -a AVAIL1=(${AVAILA[$i]//=/ })
5561                 local -a TOTAL=(${TOTALA[$i]//=/ })
5562                 GRANT=$((${GRANTA[$i]}/1024))
5563                 # allow 1% of total space in bavail because of delayed
5564                 # allocation with ZFS which might release some free space after
5565                 # txg commit.  For small devices, we set a mininum of 8MB
5566                 local LIMIT=$((${TOTAL} / 100 + 8000))
5567                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
5568                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
5569                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
5570                         echo " FULL" || echo
5571         done
5572         return $OSCFULL
5573 }
5574
5575 pool_list () {
5576    do_facet mgs lctl pool_list $1
5577 }
5578
5579 create_pool() {
5580     local fsname=${1%%.*}
5581     local poolname=${1##$fsname.}
5582
5583     do_facet mgs lctl pool_new $1
5584     local RC=$?
5585     # get param should return err unless pool is created
5586     [[ $RC -ne 0 ]] && return $RC
5587
5588     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5589         2>/dev/null || echo foo" "" || RC=1
5590     if [[ $RC -eq 0 ]]; then
5591         add_pool_to_list $1
5592     else
5593         error "pool_new failed $1"
5594     fi
5595     return $RC
5596 }
5597
5598 add_pool_to_list () {
5599     local fsname=${1%%.*}
5600     local poolname=${1##$fsname.}
5601
5602     local listvar=${fsname}_CREATED_POOLS
5603     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
5604 }
5605
5606 remove_pool_from_list () {
5607     local fsname=${1%%.*}
5608     local poolname=${1##$fsname.}
5609
5610     local listvar=${fsname}_CREATED_POOLS
5611     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
5612 }
5613
5614 destroy_pool_int() {
5615     local ost
5616     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
5617         awk '$1 !~ /^Pool:/ {print $1}')
5618     for ost in $OSTS; do
5619         do_facet mgs lctl pool_remove $1 $ost
5620     done
5621     do_facet mgs lctl pool_destroy $1
5622 }
5623
5624 # <fsname>.<poolname> or <poolname>
5625 destroy_pool() {
5626     local fsname=${1%%.*}
5627     local poolname=${1##$fsname.}
5628
5629     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
5630
5631     local RC
5632
5633     pool_list $fsname.$poolname || return $?
5634
5635     destroy_pool_int $fsname.$poolname
5636     RC=$?
5637     [[ $RC -ne 0 ]] && return $RC
5638
5639     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5640       2>/dev/null || echo foo" "foo" || RC=1
5641
5642     if [[ $RC -eq 0 ]]; then
5643         remove_pool_from_list $fsname.$poolname
5644     else
5645         error "destroy pool failed $1"
5646     fi
5647     return $RC
5648 }
5649
5650 destroy_pools () {
5651     local fsname=${1:-$FSNAME}
5652     local poolname
5653     local listvar=${fsname}_CREATED_POOLS
5654
5655     pool_list $fsname
5656
5657     [ x${!listvar} = x ] && return 0
5658
5659     echo destroy the created pools: ${!listvar}
5660     for poolname in ${!listvar//,/ }; do
5661         destroy_pool $fsname.$poolname
5662     done
5663 }
5664
5665 cleanup_pools () {
5666     local fsname=${1:-$FSNAME}
5667     trap 0
5668     destroy_pools $fsname
5669 }
5670
5671 gather_logs () {
5672     local list=$1
5673
5674     local ts=$(date +%s)
5675     local docp=true
5676
5677     if [[ ! -f "$YAML_LOG" ]]; then
5678         # init_logging is not performed before gather_logs,
5679         # so the $LOGDIR needs to be checked here
5680         check_shared_dir $LOGDIR && touch $LOGDIR/shared
5681     fi
5682
5683     [ -f $LOGDIR/shared ] && docp=false
5684
5685     # dump lustre logs, dmesg
5686
5687     prefix="$TESTLOG_PREFIX.$TESTNAME"
5688     suffix="$ts.log"
5689     echo "Dumping lctl log to ${prefix}.*.${suffix}"
5690
5691     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
5692         echo "Dumping logs only on local client."
5693         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
5694         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
5695         return
5696     fi
5697
5698     do_nodesv $list \
5699         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
5700          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
5701     if [ ! -f $LOGDIR/shared ]; then
5702         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
5703     fi
5704 }
5705
5706 do_ls () {
5707     local mntpt_root=$1
5708     local num_mntpts=$2
5709     local dir=$3
5710     local i
5711     local cmd
5712     local pids
5713     local rc=0
5714
5715     for i in $(seq 0 $num_mntpts); do
5716         cmd="ls -laf ${mntpt_root}$i/$dir"
5717         echo + $cmd;
5718         $cmd > /dev/null &
5719         pids="$pids $!"
5720     done
5721     echo pids=$pids
5722     for pid in $pids; do
5723         wait $pid || rc=$?
5724     done
5725
5726     return $rc
5727 }
5728
5729 # target_start_and_reset_recovery_timer()
5730 #        service_time = at_est2timeout(service_time);
5731 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
5732 #                             INITIAL_CONNECT_TIMEOUT);
5733 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
5734 #define CONNECTION_SWITCH_INC 1
5735 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5736 #define CONNECTION_SWITCH_MIN 5U
5737
5738 max_recovery_time () {
5739     local init_connect_timeout=$(( TIMEOUT / 20 ))
5740     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5741
5742     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
5743
5744     echo $service_time 
5745 }
5746
5747 get_clients_mount_count () {
5748     local clients=${CLIENTS:-`hostname`}
5749
5750     # we need to take into account the clients mounts and
5751     # exclude mds/ost mounts if any;
5752     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
5753 }
5754
5755 # gss functions
5756 PROC_CLI="srpc_info"
5757
5758 combination()
5759 {
5760     local M=$1
5761     local N=$2
5762     local R=1
5763
5764     if [ $M -lt $N ]; then
5765         R=0
5766     else
5767         N=$((N + 1))
5768         while [ $N -lt $M ]; do
5769             R=$((R * N))
5770             N=$((N + 1))
5771         done
5772     fi
5773
5774     echo $R
5775     return 0
5776 }
5777
5778 calc_connection_cnt() {
5779     local dir=$1
5780
5781     # MDT->MDT = 2 * C(M, 2)
5782     # MDT->OST = M * O
5783     # CLI->OST = C * O
5784     # CLI->MDT = C * M
5785     comb_m2=$(combination $MDSCOUNT 2)
5786
5787     local num_clients=$(get_clients_mount_count)
5788
5789     local cnt_mdt2mdt=$((comb_m2 * 2))
5790     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
5791     local cnt_cli2ost=$((num_clients * OSTCOUNT))
5792     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
5793     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
5794     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
5795     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
5796
5797     local var=cnt_$dir
5798     local res=${!var}
5799
5800     echo $res
5801 }
5802
5803 set_rule()
5804 {
5805     local tgt=$1
5806     local net=$2
5807     local dir=$3
5808     local flavor=$4
5809     local cmd="$tgt.srpc.flavor"
5810
5811     if [ $net == "any" ]; then
5812         net="default"
5813     fi
5814     cmd="$cmd.$net"
5815
5816     if [ $dir != "any" ]; then
5817         cmd="$cmd.$dir"
5818     fi
5819
5820     cmd="$cmd=$flavor"
5821     log "Setting sptlrpc rule: $cmd"
5822     do_facet mgs "$LCTL conf_param $cmd"
5823 }
5824
5825 count_flvr()
5826 {
5827     local output=$1
5828     local flavor=$2
5829     local count=0
5830
5831     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
5832     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
5833
5834     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
5835
5836     if [ "x$bulkspec" != "x" ]; then
5837         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
5838
5839         if [ "x$algs" != "x" ]; then
5840             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
5841         else
5842             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
5843             if [ $bulk == "bulkn" ]; then
5844                 bulk_count=`echo "$output" | grep "bulk flavor" \
5845                             | grep "null/null" | wc -l`
5846             elif [ $bulk == "bulki" ]; then
5847                 bulk_count=`echo "$output" | grep "bulk flavor" \
5848                             | grep "/null" | grep -v "null/" | wc -l`
5849             else
5850                 bulk_count=`echo "$output" | grep "bulk flavor" \
5851                             | grep -v "/null" | grep -v "null/" | wc -l`
5852             fi
5853         fi
5854
5855         [ $bulk_count -lt $count ] && count=$bulk_count
5856     fi
5857
5858     echo $count
5859 }
5860
5861 flvr_cnt_cli2mdt()
5862 {
5863     local flavor=$1
5864     local cnt
5865
5866     local clients=${CLIENTS:-`hostname`}
5867
5868     for c in ${clients//,/ }; do
5869         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
5870         tmpcnt=`count_flvr "$output" $flavor`
5871         cnt=$((cnt + tmpcnt))
5872     done
5873     echo $cnt
5874 }
5875
5876 flvr_cnt_cli2ost()
5877 {
5878     local flavor=$1
5879     local cnt
5880
5881     local clients=${CLIENTS:-`hostname`}
5882
5883     for c in ${clients//,/ }; do
5884         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
5885         tmpcnt=`count_flvr "$output" $flavor`
5886         cnt=$((cnt + tmpcnt))
5887     done
5888     echo $cnt
5889 }
5890
5891 flvr_cnt_mdt2mdt()
5892 {
5893     local flavor=$1
5894     local cnt=0
5895
5896     if [ $MDSCOUNT -le 1 ]; then
5897         echo 0
5898         return
5899     fi
5900
5901     for num in `seq $MDSCOUNT`; do
5902         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
5903         tmpcnt=`count_flvr "$output" $flavor`
5904         cnt=$((cnt + tmpcnt))
5905     done
5906     echo $cnt;
5907 }
5908
5909 flvr_cnt_mdt2ost()
5910 {
5911     local flavor=$1
5912     local cnt=0
5913     local mdtosc
5914
5915     for num in `seq $MDSCOUNT`; do
5916         mdtosc=$(get_mdtosc_proc_path mds$num)
5917         mdtosc=${mdtosc/-MDT*/-MDT\*}
5918         output=$(do_facet mds$num lctl get_param -n \
5919             osc.$mdtosc.$PROC_CLI 2>/dev/null)
5920         tmpcnt=`count_flvr "$output" $flavor`
5921         cnt=$((cnt + tmpcnt))
5922     done
5923     echo $cnt;
5924 }
5925
5926 flvr_cnt_mgc2mgs()
5927 {
5928     local flavor=$1
5929
5930     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
5931     count_flvr "$output" $flavor
5932 }
5933
5934 do_check_flavor()
5935 {
5936     local dir=$1        # from to
5937     local flavor=$2     # flavor expected
5938     local res=0
5939
5940     if [ $dir == "cli2mdt" ]; then
5941         res=`flvr_cnt_cli2mdt $flavor`
5942     elif [ $dir == "cli2ost" ]; then
5943         res=`flvr_cnt_cli2ost $flavor`
5944     elif [ $dir == "mdt2mdt" ]; then
5945         res=`flvr_cnt_mdt2mdt $flavor`
5946     elif [ $dir == "mdt2ost" ]; then
5947         res=`flvr_cnt_mdt2ost $flavor`
5948     elif [ $dir == "all2ost" ]; then
5949         res1=`flvr_cnt_mdt2ost $flavor`
5950         res2=`flvr_cnt_cli2ost $flavor`
5951         res=$((res1 + res2))
5952     elif [ $dir == "all2mdt" ]; then
5953         res1=`flvr_cnt_mdt2mdt $flavor`
5954         res2=`flvr_cnt_cli2mdt $flavor`
5955         res=$((res1 + res2))
5956     elif [ $dir == "all2all" ]; then
5957         res1=`flvr_cnt_mdt2ost $flavor`
5958         res2=`flvr_cnt_cli2ost $flavor`
5959         res3=`flvr_cnt_mdt2mdt $flavor`
5960         res4=`flvr_cnt_cli2mdt $flavor`
5961         res=$((res1 + res2 + res3 + res4))
5962     fi
5963
5964     echo $res
5965 }
5966
5967 wait_flavor()
5968 {
5969     local dir=$1        # from to
5970     local flavor=$2     # flavor expected
5971     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
5972
5973     local res=0
5974
5975     for ((i=0;i<20;i++)); do
5976         echo -n "checking $dir..."
5977         res=$(do_check_flavor $dir $flavor)
5978         echo "found $res/$expect $flavor connections"
5979         [ $res -ge $expect ] && return 0
5980         sleep 4
5981     done
5982
5983     echo "Error checking $flavor of $dir: expect $expect, actual $res"
5984     return 1
5985 }
5986
5987 restore_to_default_flavor()
5988 {
5989     local proc="mgs.MGS.live.$FSNAME"
5990
5991     echo "restoring to default flavor..."
5992
5993     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5994
5995     # remove all existing rules if any
5996     if [ $nrule -ne 0 ]; then
5997         echo "$nrule existing rules"
5998         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
5999             echo "remove rule: $rule"
6000             spec=`echo $rule | awk -F = '{print $1}'`
6001             do_facet mgs "$LCTL conf_param -d $spec"
6002         done
6003     fi
6004
6005     # verify no rules left
6006     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
6007     [ $nrule -ne 0 ] && error "still $nrule rules left"
6008
6009     # wait for default flavor to be applied
6010     # currently default flavor for all connections are 'null'
6011     wait_flavor all2all null
6012     echo "now at default flavor settings"
6013 }
6014
6015 set_flavor_all()
6016 {
6017     local flavor=${1:-null}
6018
6019     echo "setting all flavor to $flavor"
6020
6021     # FIXME need parameter to this fn
6022     # and remove global vars
6023     local cnt_all2all=$(calc_connection_cnt all2all)
6024
6025     local res=$(do_check_flavor all2all $flavor)
6026     if [ $res -eq $cnt_all2all ]; then
6027         echo "already have total $res $flavor connections"
6028         return
6029     fi
6030
6031     echo "found $res $flavor out of total $cnt_all2all connections"
6032     restore_to_default_flavor
6033
6034     [[ $flavor = null ]] && return 0
6035
6036     set_rule $FSNAME any any $flavor
6037     wait_flavor all2all $flavor
6038 }
6039
6040
6041 check_logdir() {
6042     local dir=$1
6043     # Checking for shared logdir
6044     if [ ! -d $dir ]; then
6045         # Not found. Create local logdir
6046         mkdir -p $dir
6047     else
6048         touch $dir/check_file.$(hostname -s)
6049     fi
6050     return 0
6051 }
6052
6053 check_write_access() {
6054         local dir=$1
6055         local list=${2:-$(comma_list $(nodes_list))}
6056         local node
6057         local file
6058
6059         for node in ${list//,/ }; do
6060                 file=$dir/check_file.$(short_hostname $node)
6061                 if [[ ! -f "$file" ]]; then
6062                         # Logdir not accessible/writable from this node.
6063                         return 1
6064                 fi
6065                 rm -f $file || return 1
6066         done
6067         return 0
6068 }
6069
6070 init_logging() {
6071     if [[ -n $YAML_LOG ]]; then
6072         return
6073     fi
6074     local SAVE_UMASK=`umask`
6075     umask 0000
6076
6077     export YAML_LOG=${LOGDIR}/results.yml
6078     mkdir -p $LOGDIR
6079     init_clients_lists
6080
6081     if [ ! -f $YAML_LOG ]; then       # If the yaml log already exists then we will just append to it
6082       if check_shared_dir $LOGDIR; then
6083           touch $LOGDIR/shared
6084           echo "Logging to shared log directory: $LOGDIR"
6085       else
6086           echo "Logging to local directory: $LOGDIR"
6087       fi
6088
6089       yml_nodes_file $LOGDIR >> $YAML_LOG
6090       yml_results_file >> $YAML_LOG
6091     fi
6092
6093     umask $SAVE_UMASK
6094 }
6095
6096 log_test() {
6097     yml_log_test $1 >> $YAML_LOG
6098 }
6099
6100 log_test_status() {
6101      yml_log_test_status $@ >> $YAML_LOG
6102 }
6103
6104 log_sub_test_begin() {
6105     yml_log_sub_test_begin "$@" >> $YAML_LOG
6106 }
6107
6108 log_sub_test_end() {
6109     yml_log_sub_test_end "$@" >> $YAML_LOG
6110 }
6111
6112 run_llverdev()
6113 {
6114         local dev=$1
6115         local llverdev_opts=$2
6116         local devname=$(basename $1)
6117         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
6118         # loop devices aren't in /proc/partitions
6119         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
6120
6121         size=$(($size / 1024 / 1024)) # Gb
6122
6123         local partial_arg=""
6124         # Run in partial (fast) mode if the size
6125         # of a partition > 1 GB
6126         [ $size -gt 1 ] && partial_arg="-p"
6127
6128         llverdev --force $partial_arg $llverdev_opts $dev
6129 }
6130
6131 run_llverfs()
6132 {
6133         local dir=$1
6134         local llverfs_opts=$2
6135         local use_partial_arg=$3
6136         local partial_arg=""
6137         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
6138
6139         # Run in partial (fast) mode if the size
6140         # of a partition > 1 GB
6141         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
6142
6143         llverfs $partial_arg $llverfs_opts $dir
6144 }
6145
6146 #Remove objects from OST
6147 remove_ost_objects() {
6148         local facet=$1
6149         local ostdev=$2
6150         local group=$3
6151         shift 3
6152         local objids="$@"
6153         local mntpt=$(facet_mntpt $facet)
6154         local opts=$OST_MOUNT_OPTS
6155         local i
6156         local rc
6157
6158         echo "removing objects from $ostdev on $facet: $objids"
6159         if ! test -b $ostdev; then
6160                 opts=$(csa_add "$opts" -o loop)
6161         fi
6162         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
6163                 return $?
6164         rc=0
6165         for i in $objids; do
6166                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
6167         done
6168         umount -f $mntpt || return $?
6169         return $rc
6170 }
6171
6172 #Remove files from MDT
6173 remove_mdt_files() {
6174         local facet=$1
6175         local mdtdev=$2
6176         shift 2
6177         local files="$@"
6178         local mntpt=$(facet_mntpt $facet)
6179         local opts=$MDS_MOUNT_OPTS
6180
6181         echo "removing files from $mdtdev on $facet: $files"
6182         if [ $(facet_fstype $facet) == ldiskfs ] &&
6183            ! do_facet $facet test -b $mdtdev; then
6184                 opts=$(csa_add "$opts" -o loop)
6185         fi
6186         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
6187                 return $?
6188         rc=0
6189         for f in $files; do
6190                 rm $mntpt/ROOT/$f || { rc=$?; break; }
6191         done
6192         umount -f $mntpt || return $?
6193         return $rc
6194 }
6195
6196 duplicate_mdt_files() {
6197         local facet=$1
6198         local mdtdev=$2
6199         shift 2
6200         local files="$@"
6201         local mntpt=$(facet_mntpt $facet)
6202         local opts=$MDS_MOUNT_OPTS
6203
6204         echo "duplicating files on $mdtdev on $facet: $files"
6205         mkdir -p $mntpt || return $?
6206         if [ $(facet_fstype $facet) == ldiskfs ] &&
6207            ! do_facet $facet test -b $mdtdev; then
6208                 opts=$(csa_add "$opts" -o loop)
6209         fi
6210         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
6211                 return $?
6212
6213     do_umount() {
6214         trap 0
6215         popd > /dev/null
6216         rm $tmp
6217         umount -f $mntpt
6218     }
6219     trap do_umount EXIT
6220
6221     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
6222     pushd $mntpt/ROOT > /dev/null || return $?
6223     rc=0
6224     for f in $files; do
6225         touch $f.bad || return $?
6226         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
6227         rc=${PIPESTATUS[0]}
6228         [ $rc -eq 0 ] || return $rc
6229         setfattr --restore $tmp || return $?
6230     done
6231     do_umount
6232 }
6233
6234 run_sgpdd () {
6235     local devs=${1//,/ }
6236     shift
6237     local params=$@
6238     local rslt=$TMP/sgpdd_survey
6239
6240     # sgpdd-survey cleanups ${rslt}.* files
6241
6242     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
6243     echo + $cmd
6244     eval $cmd
6245     cat ${rslt}.detail
6246 }
6247
6248 # returns the canonical name for an ldiskfs device
6249 ldiskfs_canon() {
6250         local dev="$1"
6251         local facet="$2"
6252
6253         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
6254 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
6255     echo dm-\\\${foo##*:};
6256 else
6257     echo \\\$(basename \\\$dv);
6258 fi;"
6259 }
6260
6261 is_sanity_benchmark() {
6262     local benchmarks="dbench bonnie iozone fsx"
6263     local suite=$1
6264     for b in $benchmarks; do
6265         if [ "$b" == "$suite" ]; then
6266             return 0
6267         fi
6268     done
6269     return 1
6270 }
6271
6272 min_ost_size () {
6273     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
6274 }
6275
6276 # Get the block size of the filesystem.
6277 get_block_size() {
6278     local facet=$1
6279     local device=$2
6280     local size
6281
6282     size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
6283            awk '/^Block size:/ {print $3}')
6284     echo $size
6285 }
6286
6287 # Check whether the "large_xattr" feature is enabled or not.
6288 large_xattr_enabled() {
6289         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
6290
6291         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6292
6293         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 |
6294                 grep -E -q '(ea_inode|large_xattr)'"
6295         return ${PIPESTATUS[0]}
6296 }
6297
6298 # Get the maximum xattr size supported by the filesystem.
6299 max_xattr_size() {
6300     local size
6301
6302     if large_xattr_enabled; then
6303         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
6304         size=65536
6305     else
6306         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6307         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
6308
6309         # maximum xattr size = size of block - size of header -
6310         #                      size of 1 entry - 4 null bytes
6311         size=$((block_size - 32 - 32 - 4))
6312     fi
6313
6314     echo $size
6315 }
6316
6317 # Dump the value of the named xattr from a file.
6318 get_xattr_value() {
6319     local xattr_name=$1
6320     local file=$2
6321
6322     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
6323 }
6324
6325 # Generate a string with size of $size bytes.
6326 generate_string() {
6327     local size=${1:-1024} # in bytes
6328
6329     echo "$(head -c $size < /dev/zero | tr '\0' y)"
6330 }
6331
6332 reformat_external_journal() {
6333         local facet=$1
6334
6335         if [ ! -z ${EJOURNAL} ]; then
6336                 local rcmd="do_facet $facet"
6337
6338                 echo "reformat external journal on $facet:${EJOURNAL}"
6339                 ${rcmd} mke2fs -O journal_dev ${EJOURNAL} || return 1
6340         fi
6341 }
6342
6343 # MDT file-level backup/restore
6344 mds_backup_restore() {
6345         local facet=$1
6346         local igif=$2
6347         local devname=$(mdsdevname $(facet_number $facet))
6348         local mntpt=$(facet_mntpt brpt)
6349         local rcmd="do_facet $facet"
6350         local metaea=${TMP}/backup_restore.ea
6351         local metadata=${TMP}/backup_restore.tgz
6352         local opts=${MDS_MOUNT_OPTS}
6353         local svc=${facet}_svc
6354
6355         if ! ${rcmd} test -b ${devname}; then
6356                 opts=$(csa_add "$opts" -o loop)
6357         fi
6358
6359         echo "file-level backup/restore on $facet:${devname}"
6360
6361         # step 1: build mount point
6362         ${rcmd} mkdir -p $mntpt
6363         # step 2: cleanup old backup
6364         ${rcmd} rm -f $metaea $metadata
6365         # step 3: mount dev
6366         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6367         if [ ! -z $igif ]; then
6368                 # step 3.5: rm .lustre
6369                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
6370         fi
6371         # step 4: backup metaea
6372         echo "backup EA"
6373         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
6374                 return 2
6375         # step 5: backup metadata
6376         echo "backup data"
6377         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
6378         # step 6: umount
6379         ${rcmd} umount -d $mntpt || return 4
6380         # step 7: reformat external journal if needed
6381         reformat_external_journal $facet || return 5
6382         # step 8: reformat dev
6383         echo "reformat new device"
6384         add $facet $(mkfs_opts $facet ${devname}) --backfstype ldiskfs \
6385                 --reformat ${devname} $(mdsvdevname $(facet_number $facet)) \
6386                 > /dev/null || exit 6
6387         # step 9: mount dev
6388         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
6389         # step 10: restore metadata
6390         echo "restore data"
6391         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
6392         # step 11: restore metaea
6393         echo "restore EA"
6394         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
6395         # step 12: remove recovery logs
6396         echo "remove recovery logs"
6397         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
6398         # step 13: umount dev
6399         ${rcmd} umount -d $mntpt || return 10
6400         # step 14: cleanup tmp backup
6401         ${rcmd} rm -f $metaea $metadata
6402         # step 15: reset device label - it's not virgin on
6403         ${rcmd} e2label $devname ${!svc}
6404 }
6405
6406 # remove OI files
6407 mds_remove_ois() {
6408         local facet=$1
6409         local idx=$2
6410         local devname=$(mdsdevname $(facet_number $facet))
6411         local mntpt=$(facet_mntpt brpt)
6412         local rcmd="do_facet $facet"
6413         local opts=${MDS_MOUNT_OPTS}
6414
6415         if ! ${rcmd} test -b ${devname}; then
6416                 opts=$(csa_add "$opts" -o loop)
6417         fi
6418
6419         echo "removing OI files on $facet: idx=${idx}"
6420
6421         # step 1: build mount point
6422         ${rcmd} mkdir -p $mntpt
6423         # step 2: mount dev
6424         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6425         if [ -z $idx ]; then
6426                 # step 3: remove all OI files
6427                 ${rcmd} rm -fv $mntpt/oi.16*
6428         elif [ $idx -lt 2 ]; then
6429                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
6430         else
6431                 local i
6432
6433                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
6434                 for ((i=${idx}; i<64; i=$((i * idx)))); do
6435                         ${rcmd} rm -fv $mntpt/oi.16.${i}
6436                 done
6437         fi
6438         # step 4: umount
6439         ${rcmd} umount -d $mntpt || return 2
6440         # OI files will be recreated when mounted as lustre next time.
6441 }
6442
6443 # generate maloo upload-able log file name
6444 # \param logname specify unique part of file name
6445 generate_logname() {
6446         local logname=${1:-"default_logname"}
6447
6448         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
6449 }
6450
6451 # make directory on different MDTs
6452 test_mkdir() {
6453         local option
6454         local parent
6455         local child
6456         local path
6457         local rc=0
6458
6459         case $# in
6460                 1) path=$1;;
6461                 2) option=$1
6462                    path=$2;;
6463                 *) error "Only creating single directory is supported";;
6464         esac
6465
6466         child=$(basename $path)
6467         parent=$(dirname $path)
6468
6469         if [ "$option" == "-p" -a -d $parent/$child ]; then
6470                 return $rc
6471         fi
6472
6473         if [ ! -d ${parent} ]; then
6474                 if [ "$option" == "-p" ]; then
6475                         mkdir -p ${parent}
6476                 else
6477                         return 1
6478                 fi
6479         fi
6480
6481         if [ $MDSCOUNT -le 1 ]; then
6482                 mkdir $option $parent/$child || rc=$?
6483         else
6484                 local mdt_idx=$($LFS getstripe -M $parent)
6485                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
6486
6487                 if [ "$mdt_idx" -ne 0 ]; then
6488                         mkdir $option $parent/$child || rc=$?
6489                 else
6490                         mdt_idx=$((test_num % MDSCOUNT))
6491                         echo "mkdir $mdt_idx for $parent/$child"
6492                         $LFS setdirstripe -i $mdt_idx $parent/$child || rc=$?
6493                 fi
6494         fi
6495         return $rc
6496 }