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