Whamcloud - gitweb
LU-2831 tests: Sync MDS data also when doing sync_all_data
[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_nodes $(comma_list $(mdts_nodes)) \
1797             "lctl set_param -n osd*.*MDT*.force_sync 1"
1798         do_nodes $(comma_list $(osts_nodes)) \
1799             "lctl set_param -n osd*.*OS*.force_sync 1" 2>&1 |
1800                 grep -v 'Found no match'
1801 }
1802
1803 wait_delete_completed_mds() {
1804         local MAX_WAIT=${1:-20}
1805         local mds2sync=""
1806         local stime=`date +%s`
1807         local etime
1808         local node
1809         local changes
1810
1811         # find MDS with pending deletions
1812         for node in $(mdts_nodes); do
1813                 changes=$(do_node $node "lctl get_param -n osc.*MDT*.sync_*" \
1814                         2>/dev/null | calc_sum)
1815                 if [ -z "$changes" ] || [ $changes -eq 0 ]; then
1816                         continue
1817                 fi
1818                 mds2sync="$mds2sync $node"
1819         done
1820         if [ "$mds2sync" == "" ]; then
1821                 return
1822         fi
1823         mds2sync=$(comma_list $mds2sync)
1824
1825         # sync MDS transactions
1826         do_nodes $mds2sync "lctl set_param -n osd*.*MD*.force_sync 1"
1827
1828         # wait till all changes are sent and commmitted by OSTs
1829         # for ldiskfs space is released upon execution, but DMU
1830         # do this upon commit
1831
1832         local WAIT=0
1833         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
1834                 changes=$(do_nodes $mds2sync "lctl get_param -n osc.*MDT*.sync_*" \
1835                         | calc_sum)
1836                 #echo "$node: $changes changes on all"
1837                 if [ "$changes" -eq "0" ]; then
1838                         etime=`date +%s`
1839                         #echo "delete took $((etime - stime)) seconds"
1840                         return
1841                 fi
1842                 sleep 1
1843                 WAIT=$(( WAIT + 1))
1844         done
1845
1846         etime=`date +%s`
1847         echo "Delete is not completed in $((etime - stime)) seconds"
1848         do_nodes $mds2sync "lctl get_param osc.*MDT*.sync_*"
1849 }
1850
1851 wait_for_host() {
1852     local hostlist=$1
1853
1854     # we can use "for" here because we are waiting the slowest
1855     for host in ${hostlist//,/ }; do
1856         check_network "$host" 900
1857     done
1858     while ! do_nodes $hostlist hostname  > /dev/null; do sleep 5; done
1859 }
1860
1861 wait_for_facet() {
1862     local facetlist=$1
1863     local hostlist
1864
1865     for facet in ${facetlist//,/ }; do
1866         hostlist=$(expand_list $hostlist $(facet_active_host $facet))
1867     done
1868     wait_for_host $hostlist
1869 }
1870
1871 _wait_recovery_complete () {
1872     local param=$1
1873
1874     # Use default policy if $2 is not passed by caller.
1875     local MAX=${2:-$(max_recovery_time)}
1876
1877     local WAIT=0
1878     local STATUS=
1879
1880     while [ $WAIT -lt $MAX ]; do
1881         STATUS=$(lctl get_param -n $param | grep status)
1882         echo $param $STATUS
1883         [[ $STATUS = "status: COMPLETE" || $STATUS = "status: INACTIVE" ]] && return 0
1884         sleep 5
1885         WAIT=$((WAIT + 5))
1886         echo "Waiting $((MAX - WAIT)) secs for $param recovery done. $STATUS"
1887     done
1888     echo "$param recovery not done in $MAX sec. $STATUS"
1889     return 1
1890 }
1891
1892 wait_recovery_complete () {
1893     local facet=$1
1894
1895     # with an assumption that at_max is the same on all nodes
1896     local MAX=${2:-$(max_recovery_time)}
1897
1898     local facets=$facet
1899     if [ "$FAILURE_MODE" = HARD ]; then
1900         facets=$(facets_on_host $(facet_active_host $facet))
1901     fi
1902     echo affected facets: $facets
1903
1904         # we can use "for" here because we are waiting the slowest
1905         for facet in ${facets//,/ }; do
1906                 local var_svc=${facet}_svc
1907                 local param="*.${!var_svc}.recovery_status"
1908
1909                 local host=$(facet_active_host $facet)
1910                 do_rpc_nodes "$host" _wait_recovery_complete $param $MAX
1911         done
1912 }
1913
1914 wait_mds_ost_sync () {
1915         # just because recovery is done doesn't mean we've finished
1916         # orphan cleanup. Wait for llogs to get synchronized.
1917         echo "Waiting for orphan cleanup..."
1918         # MAX value includes time needed for MDS-OST reconnection
1919         local MAX=$(( TIMEOUT * 2 ))
1920         local WAIT=0
1921         local new_wait=true
1922         local list=$(comma_list $(mdts_nodes))
1923         local cmd="$LCTL get_param -n osp.*osc*.old_sync_processed"
1924         if ! do_facet $SINGLEMDS \
1925                 "$LCTL list_param osp.*osc*.old_sync_processed 2> /dev/null"
1926         then
1927                 # old way, use mds_sync
1928                 new_wait=false
1929                 list=$(comma_list $(osts_nodes))
1930                 cmd="$LCTL get_param -n obdfilter.*.mds_sync"
1931         fi
1932         while [ $WAIT -lt $MAX ]; do
1933                 local -a sync=($(do_nodes $list "$cmd"))
1934                 local con=1
1935                 local i
1936                 for ((i=0; i<${#sync[@]}; i++)); do
1937                         if $new_wait; then
1938                                 [ ${sync[$i]} -eq 1 ] && continue
1939                         else
1940                                 [ ${sync[$i]} -eq 0 ] && continue
1941                         fi
1942                         # there is a not finished MDS-OST synchronization
1943                         con=0
1944                         break;
1945                 done
1946                 sleep 2 # increase waiting time and cover statfs cache
1947                 [ ${con} -eq 1 ] && return 0
1948                 echo "Waiting $WAIT secs for $facet mds-ost sync done."
1949                 WAIT=$((WAIT + 2))
1950         done
1951         echo "$facet recovery not done in $MAX sec. $STATUS"
1952         return 1
1953 }
1954
1955 wait_destroy_complete () {
1956         echo "Waiting for local destroys to complete"
1957         # MAX value shouldn't be big as this mean server responsiveness
1958         # never increase this just to make test pass but investigate
1959         # why it takes so long time
1960         local MAX=5
1961         local WAIT=0
1962         while [ $WAIT -lt $MAX ]; do
1963                 local -a RPCs=($($LCTL get_param -n osc.*.destroys_in_flight))
1964                 local con=1
1965                 local i
1966
1967                 for ((i=0; i<${#RPCs[@]}; i++)); do
1968                         [ ${RPCs[$i]} -eq 0 ] && continue
1969                         # there are still some destroy RPCs in flight
1970                         con=0
1971                         break;
1972                 done
1973                 sleep 1
1974                 [ ${con} -eq 1 ] && return 0 # done waiting
1975                 echo "Waiting ${WAIT}s for local destroys to complete"
1976                 WAIT=$((WAIT + 1))
1977         done
1978         echo "Local destroys weren't done in $MAX sec."
1979         return 1
1980 }
1981
1982 wait_delete_completed() {
1983         wait_delete_completed_mds $1 || return $?
1984         wait_destroy_complete
1985 }
1986
1987 wait_exit_ST () {
1988     local facet=$1
1989
1990     local WAIT=0
1991     local INTERVAL=1
1992     local running
1993     # conf-sanity 31 takes a long time cleanup
1994     while [ $WAIT -lt 300 ]; do
1995         running=$(do_facet ${facet} "lsmod | grep lnet > /dev/null && lctl dl | grep ' ST '") || true
1996         [ -z "${running}" ] && return 0
1997         echo "waited $WAIT for${running}"
1998         [ $INTERVAL -lt 64 ] && INTERVAL=$((INTERVAL + INTERVAL))
1999         sleep $INTERVAL
2000         WAIT=$((WAIT + INTERVAL))
2001     done
2002     echo "service didn't stop after $WAIT seconds.  Still running:"
2003     echo ${running}
2004     return 1
2005 }
2006
2007 wait_remote_prog () {
2008    local prog=$1
2009    local WAIT=0
2010    local INTERVAL=5
2011    local rc=0
2012
2013    [ "$PDSH" = "no_dsh" ] && return 0
2014
2015    while [ $WAIT -lt $2 ]; do
2016         running=$(ps uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep) || true
2017         [ -z "${running}" ] && return 0 || true
2018         echo "waited $WAIT for: "
2019         echo "$running"
2020         [ $INTERVAL -lt 60 ] && INTERVAL=$((INTERVAL + INTERVAL))
2021         sleep $INTERVAL
2022         WAIT=$((WAIT + INTERVAL))
2023     done
2024     local pids=$(ps  uax | grep "$PDSH.*$prog.*$MOUNT" | grep -v grep | awk '{print $2}')
2025     [ -z "$pids" ] && return 0
2026     echo "$PDSH processes still exists after $WAIT seconds.  Still running: $pids"
2027     # FIXME: not portable
2028     for pid in $pids; do
2029         cat /proc/${pid}/status || true
2030         cat /proc/${pid}/wchan || true
2031         echo "Killing $pid"
2032         kill -9 $pid || true
2033         sleep 1
2034         ps -P $pid && rc=1
2035     done
2036
2037     return $rc
2038 }
2039
2040 clients_up() {
2041     # not every config has many clients
2042     sleep 1
2043     if [ ! -z "$CLIENTS" ]; then
2044         $PDSH $CLIENTS "stat -f $MOUNT" > /dev/null
2045     else
2046         stat -f $MOUNT > /dev/null
2047     fi
2048 }
2049
2050 client_up() {
2051     local client=$1
2052     # usually checked on particular client or locally
2053     sleep 1
2054     if [ ! -z "$client" ]; then
2055         $PDSH $client "stat -f $MOUNT" > /dev/null
2056     else
2057         stat -f $MOUNT > /dev/null
2058     fi
2059 }
2060
2061 client_evicted() {
2062     ! client_up $1
2063 }
2064
2065 client_reconnect() {
2066     uname -n >> $MOUNT/recon
2067     if [ -z "$CLIENTS" ]; then
2068         df $MOUNT; uname -n >> $MOUNT/recon
2069     else
2070         do_nodes $CLIENTS "df $MOUNT; uname -n >> $MOUNT/recon" > /dev/null
2071     fi
2072     echo Connected clients:
2073     cat $MOUNT/recon
2074     ls -l $MOUNT/recon > /dev/null
2075     rm $MOUNT/recon
2076 }
2077
2078 affected_facets () {
2079     local facet=$1
2080
2081     local host=$(facet_active_host $facet)
2082     local affected=$facet
2083
2084     if [ "$FAILURE_MODE" = HARD ]; then
2085         affected=$(facets_up_on_host $host)
2086     fi
2087     echo $affected
2088 }
2089
2090 facet_failover() {
2091         local facets=$1
2092         local sleep_time=$2
2093         local -a affecteds
2094         local facet
2095         local total=0
2096         local index=0
2097         local skip
2098
2099         #Because it will only get up facets, we need get affected
2100         #facets before shutdown
2101         #For HARD Failure mode, it needs make sure facets on the same
2102         #HOST will only be shutdown and reboot once
2103         for facet in ${facets//,/ }; do
2104                 local affected_facet
2105                 skip=0
2106                 #check whether facet has been included in other affected facets
2107                 for ((index=0; index<$total; index++)); do
2108                         [[ *,$facet,* == ,${affecteds[index]}, ]] && skip=1
2109                 done
2110
2111                 if [ $skip -eq 0 ]; then
2112                         affecteds[$total]=$(affected_facets $facet)
2113                         total=$((total+1))
2114                 fi
2115         done
2116
2117         for ((index=0; index<$total; index++)); do
2118                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2119                 local host=$(facet_active_host $facet)
2120                 echo "Failing ${affecteds[index]} on $host"
2121                 shutdown_facet $facet
2122         done
2123
2124         for ((index=0; index<$total; index++)); do
2125                 facet=$(echo ${affecteds[index]} | tr -s " " | cut -d"," -f 1)
2126                 echo reboot facets: ${affecteds[index]}
2127
2128                 reboot_facet $facet
2129
2130                 change_active ${affecteds[index]}
2131
2132                 wait_for_facet ${affecteds[index]}
2133                 # start mgs first if it is affected
2134                 if ! combined_mgs_mds &&
2135                         list_member ${affecteds[index]} mgs; then
2136                         mount_facet mgs || error "Restart of mgs failed"
2137                 fi
2138                 # FIXME; has to be changed to mount all facets concurrently
2139                 affected=$(exclude_items_from_list ${affecteds[index]} mgs)
2140                 echo mount facets: ${affecteds[index]}
2141                 mount_facets ${affecteds[index]}
2142         done
2143 }
2144
2145 obd_name() {
2146     local facet=$1
2147 }
2148
2149 replay_barrier() {
2150         local facet=$1
2151         do_facet $facet "sync; sync; sync"
2152         df $MOUNT
2153
2154         # make sure there will be no seq change
2155         local clients=${CLIENTS:-$HOSTNAME}
2156         local f=fsa-\\\$\(hostname\)
2157         do_nodes $clients "mcreate $MOUNT/$f; rm $MOUNT/$f"
2158         do_nodes $clients "if [ -d $MOUNT2 ]; then mcreate $MOUNT2/$f; rm $MOUNT2/$f; fi"
2159
2160         local svc=${facet}_svc
2161         do_facet $facet $LCTL --device ${!svc} notransno
2162         do_facet $facet $LCTL --device ${!svc} readonly
2163         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2164         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2165 }
2166
2167 replay_barrier_nodf() {
2168         local facet=$1    echo running=${running}
2169         do_facet $facet "sync; sync; sync"
2170         local svc=${facet}_svc
2171         echo Replay barrier on ${!svc}
2172         do_facet $facet $LCTL --device ${!svc} notransno
2173         do_facet $facet $LCTL --device ${!svc} readonly
2174         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2175         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2176 }
2177
2178 replay_barrier_nosync() {
2179         local facet=$1    echo running=${running}
2180         local svc=${facet}_svc
2181         echo Replay barrier on ${!svc}
2182         do_facet $facet $LCTL --device ${!svc} notransno
2183         do_facet $facet $LCTL --device ${!svc} readonly
2184         do_facet $facet $LCTL mark "$facet REPLAY BARRIER on ${!svc}"
2185         $LCTL mark "local REPLAY BARRIER on ${!svc}"
2186 }
2187
2188 mds_evict_client() {
2189     UUID=`lctl get_param -n mdc.${mds1_svc}-mdc-*.uuid`
2190     do_facet mds1 "lctl set_param -n mdt.${mds1_svc}.evict_client $UUID"
2191 }
2192
2193 ost_evict_client() {
2194     UUID=`lctl get_param -n devices| grep ${ost1_svc}-osc- | egrep -v 'MDT' | awk '{print $5}'`
2195     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.evict_client $UUID"
2196 }
2197
2198 fail() {
2199         local facets=$1
2200         local clients=${CLIENTS:-$HOSTNAME}
2201
2202         facet_failover $* || error "failover: $?"
2203         wait_clients_import_state "$clients" "$facets" FULL
2204         clients_up || error "post-failover df: $?"
2205 }
2206
2207 fail_nodf() {
2208         local facet=$1
2209         facet_failover $facet
2210 }
2211
2212 fail_abort() {
2213         local facet=$1
2214         stop $facet
2215         refresh_disk ${facet}
2216         change_active $facet
2217         wait_for_facet $facet
2218         mount_facet $facet -o abort_recovery
2219         clients_up || echo "first df failed: $?"
2220         clients_up || error "post-failover df: $?"
2221 }
2222
2223 do_lmc() {
2224     echo There is no lmc.  This is mountconf, baby.
2225     exit 1
2226 }
2227
2228 host_nids_address() {
2229     local nodes=$1
2230     local kind=$2
2231
2232     if [ -n "$kind" ]; then
2233         nids=$(do_nodes $nodes "$LCTL list_nids | grep $kind | cut -f 1 -d '@'")
2234     else
2235         nids=$(do_nodes $nodes "$LCTL list_nids all | cut -f 1 -d '@'")
2236     fi
2237     echo $nids
2238 }
2239
2240 h2name_or_ip() {
2241     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2242         echo $1"@$2"
2243     fi
2244 }
2245
2246 h2ptl() {
2247    if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2248        ID=`xtprocadmin -n $1 2>/dev/null | egrep -v 'NID' | awk '{print $1}'`
2249        if [ -z "$ID" ]; then
2250            echo "Could not get a ptl id for $1..."
2251            exit 1
2252        fi
2253        echo $ID"@ptl"
2254    fi
2255 }
2256 declare -fx h2ptl
2257
2258 h2tcp() {
2259     h2name_or_ip "$1" "tcp"
2260 }
2261 declare -fx h2tcp
2262
2263 h2elan() {
2264     if [ "$1" = "client" -o "$1" = "'*'" ]; then echo \'*\'; else
2265         if type __h2elan >/dev/null 2>&1; then
2266             ID=$(__h2elan $1)
2267         else
2268             ID=`echo $1 | sed 's/[^0-9]*//g'`
2269         fi
2270         echo $ID"@elan"
2271     fi
2272 }
2273 declare -fx h2elan
2274
2275 h2o2ib() {
2276     h2name_or_ip "$1" "o2ib"
2277 }
2278 declare -fx h2o2ib
2279
2280 # This enables variables in cfg/"setup".sh files to support the pdsh HOSTLIST
2281 # expressions format. As a bonus we can then just pass in those variables
2282 # to pdsh. What this function does is take a HOSTLIST type string and
2283 # expand it into a space deliminated list for us.
2284 hostlist_expand() {
2285     local hostlist=$1
2286     local offset=$2
2287     local myList
2288     local item
2289     local list
2290
2291     [ -z "$hostlist" ] && return
2292
2293     # Translate the case of [..],..,[..] to [..] .. [..]
2294     list="${hostlist/],/] }"
2295     front=${list%%[*}
2296     [[ "$front" == *,* ]] && {
2297         new="${list%,*} "
2298         old="${list%,*},"
2299         list=${list/${old}/${new}}
2300     }
2301
2302     for item in $list; do
2303         # Test if we have any []'s at all
2304         if [ "$item" != "${item/\[/}" ]; then {
2305             # Expand the [*] into list
2306             name=${item%%[*}
2307             back=${item#*]}
2308
2309             if [ "$name" != "$item" ]; then
2310                 group=${item#$name[*}
2311                 group=${group%%]*}
2312
2313                 for range in ${group//,/ }; do
2314                     begin=${range%-*}
2315                     end=${range#*-}
2316
2317                     # Number of leading zeros
2318                     padlen=${#begin}
2319                     padlen2=${#end}
2320                     end=$(echo $end | sed 's/0*//')
2321                     [[ -z "$end" ]] && end=0
2322                     [[ $padlen2 -gt $padlen ]] && {
2323                         [[ $padlen2 -eq ${#end} ]] && padlen2=0
2324                         padlen=$padlen2
2325                     }
2326                     begin=$(echo $begin | sed 's/0*//')
2327                     [ -z $begin ] && begin=0
2328
2329                     for num in $(seq -f "%0${padlen}g" $begin $end); do
2330                         value="${name#*,}${num}${back}"
2331                         [ "$value" != "${value/\[/}" ] && {
2332                             value=$(hostlist_expand "$value")
2333                         }
2334                         myList="$myList $value"
2335                     done
2336                 done
2337             fi
2338         } else {
2339             myList="$myList $item"
2340         } fi
2341     done
2342     myList=${myList//,/ }
2343     myList=${myList:1} # Remove first character which is a space
2344
2345     # Filter any duplicates without sorting
2346     list="$myList "
2347     myList="${list%% *}"
2348
2349     while [[ "$list" != ${myList##* } ]]; do
2350         list=${list//${list%% *} /}
2351         myList="$myList ${list%% *}"
2352     done
2353     myList="${myList%* }";
2354
2355     # We can select an object at a offset in the list
2356     [ $# -eq 2 ] && {
2357         cnt=0
2358         for item in $myList; do
2359             let cnt=cnt+1
2360             [ $cnt -eq $offset ] && {
2361                 myList=$item
2362             }
2363         done
2364         [ $(get_node_count $myList) -ne 1 ] && myList=""
2365     }
2366     echo $myList
2367 }
2368
2369 facet_host() {
2370         local facet=$1
2371         local varname
2372
2373         [ "$facet" == client ] && echo -n $HOSTNAME && return
2374         varname=${facet}_HOST
2375         if [ -z "${!varname}" ]; then
2376                 if [ "${facet:0:3}" == "ost" ]; then
2377                         eval export ${facet}_HOST=${ost_HOST}
2378                 elif [ "${facet:0:3}" == "mdt" -o \
2379                         "${facet:0:3}" == "mds" -o \
2380                         "${facet:0:3}" == "mgs" ]; then
2381                         eval export ${facet}_HOST=${mds_HOST}
2382                 fi
2383         fi
2384         echo -n ${!varname}
2385 }
2386
2387 facet_failover_host() {
2388         local facet=$1
2389         local varname
2390
2391         var=${facet}failover_HOST
2392         if [ -n "${!var}" ]; then
2393                 echo ${!var}
2394                 return
2395         fi
2396
2397         if [ "${facet:0:3}" == "mdt" -o "${facet:0:3}" == "mds" -o \
2398              "${facet:0:3}" == "mgs" ]; then
2399
2400                 eval export ${facet}failover_host=${mds_HOST}
2401                 echo ${mds_HOST}
2402                 return
2403         fi
2404
2405         if [[ $facet == ost* ]]; then
2406                 eval export ${facet}failover_host=${ost_HOST}
2407                 echo ${ost_HOST}
2408                 return
2409         fi
2410 }
2411
2412 facet_active() {
2413     local facet=$1
2414     local activevar=${facet}active
2415
2416     if [ -f $TMP/${facet}active ] ; then
2417         source $TMP/${facet}active
2418     fi
2419
2420     active=${!activevar}
2421     if [ -z "$active" ] ; then
2422         echo -n ${facet}
2423     else
2424         echo -n ${active}
2425     fi
2426 }
2427
2428 facet_active_host() {
2429     local facet=$1
2430     local active=`facet_active $facet`
2431     if [ "$facet" == client ]; then
2432         echo $HOSTNAME
2433     else
2434         echo `facet_host $active`
2435     fi
2436 }
2437
2438 # Get the passive failover partner host of facet.
2439 facet_passive_host() {
2440         local facet=$1
2441         [[ $facet = client ]] && return
2442
2443         local host=${facet}_HOST
2444         local failover_host=${facet}failover_HOST
2445         local active_host=$(facet_active_host $facet)
2446
2447         [[ -z ${!failover_host} || ${!failover_host} = ${!host} ]] && return
2448
2449         if [[ $active_host = ${!host} ]]; then
2450                 echo -n ${!failover_host}
2451         else
2452                 echo -n ${!host}
2453         fi
2454 }
2455
2456 change_active() {
2457     local facetlist=$1
2458     local facet
2459
2460     facetlist=$(exclude_items_from_list $facetlist mgs)
2461
2462     for facet in ${facetlist//,/ }; do
2463     local failover=${facet}failover
2464     local host=`facet_host $failover`
2465     [ -z "$host" ] && return
2466
2467     local curactive=`facet_active $facet`
2468     if [ -z "${curactive}" -o "$curactive" == "$failover" ] ; then
2469         eval export ${facet}active=$facet
2470     else
2471         eval export ${facet}active=$failover
2472     fi
2473     # save the active host for this facet
2474     local activevar=${facet}active
2475     echo "$activevar=${!activevar}" > $TMP/$activevar
2476     [[ $facet = mds1 ]] && combined_mgs_mds && \
2477         echo "mgsactive=${!activevar}" > $TMP/mgsactive
2478     local TO=`facet_active_host $facet`
2479     echo "Failover $facet to $TO"
2480     done
2481 }
2482
2483 do_node() {
2484     local verbose=false
2485     # do not stripe off hostname if verbose, bug 19215
2486     if [ x$1 = x--verbose ]; then
2487         shift
2488         verbose=true
2489     fi
2490
2491     local HOST=$1
2492     shift
2493     local myPDSH=$PDSH
2494     if [ "$HOST" = "$HOSTNAME" ]; then
2495         myPDSH="no_dsh"
2496     elif [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" ]; then
2497         echo "cannot run remote command on $HOST with $myPDSH"
2498         return 128
2499     fi
2500     if $VERBOSE; then
2501         echo "CMD: $HOST $@" >&2
2502         $myPDSH $HOST "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2503     fi
2504
2505     if [ "$myPDSH" = "rsh" ]; then
2506 # we need this because rsh does not return exit code of an executed command
2507         local command_status="$TMP/cs"
2508         rsh $HOST ":> $command_status"
2509         rsh $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin;
2510                     cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\") ||
2511                     echo command failed >$command_status"
2512         [ -n "$($myPDSH $HOST cat $command_status)" ] && return 1 || true
2513         return 0
2514     fi
2515
2516     if $verbose ; then
2517         # print HOSTNAME for myPDSH="no_dsh"
2518         if [[ $myPDSH = no_dsh ]]; then
2519             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed -e "s/^/${HOSTNAME}: /"
2520         else
2521             $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")"
2522         fi
2523     else
2524         $myPDSH $HOST "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" sh -c \"$@\")" | sed "s/^${HOST}: //"
2525     fi
2526     return ${PIPESTATUS[0]}
2527 }
2528
2529 do_nodev() {
2530     do_node --verbose "$@"
2531 }
2532
2533 single_local_node () {
2534    [ "$1" = "$HOSTNAME" ]
2535 }
2536
2537 # Outputs environment variable assignments that should be passed to remote nodes
2538 get_env_vars() {
2539         local var
2540         local value
2541         local facets=$(get_facets)
2542         local facet
2543
2544         for var in ${!MODOPTS_*}; do
2545                 value=${!var}
2546                 echo -n " ${var}=\"$value\""
2547         done
2548
2549         for facet in ${facets//,/ }; do
2550                 var=${facet}_FSTYPE
2551                 if [ -n "${!var}" ]; then
2552                         echo -n " $var=${!var}"
2553                 fi
2554         done
2555
2556         for var in MGSFSTYPE MDSFSTYPE OSTFSTYPE; do
2557                 if [ -n "${!var}" ]; then
2558                         echo -n " $var=${!var}"
2559                 fi
2560         done
2561
2562         if [ -n "$FSTYPE" ]; then
2563                 echo -n " FSTYPE=$FSTYPE"
2564         fi
2565 }
2566
2567 do_nodes() {
2568     local verbose=false
2569     # do not stripe off hostname if verbose, bug 19215
2570     if [ x$1 = x--verbose ]; then
2571         shift
2572         verbose=true
2573     fi
2574
2575     local rnodes=$1
2576     shift
2577
2578     if single_local_node $rnodes; then
2579         if $verbose; then
2580            do_nodev $rnodes "$@"
2581         else
2582            do_node $rnodes "$@"
2583         fi
2584         return $?
2585     fi
2586
2587     # This is part from do_node
2588     local myPDSH=$PDSH
2589
2590     [ -z "$myPDSH" -o "$myPDSH" = "no_dsh" -o "$myPDSH" = "rsh" ] && \
2591         echo "cannot run remote command on $rnodes with $myPDSH" && return 128
2592
2593     export FANOUT=$(get_node_count "${rnodes//,/ }")
2594     if $VERBOSE; then
2595         echo "CMD: $rnodes $@" >&2
2596         $myPDSH $rnodes "$LCTL mark \"$@\"" > /dev/null 2>&1 || :
2597     fi
2598
2599     # do not replace anything from pdsh output if -N is used
2600     # -N     Disable hostname: prefix on lines of output.
2601     if $verbose || [[ $myPDSH = *-N* ]]; then
2602         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")"
2603     else
2604         $myPDSH $rnodes "(PATH=\$PATH:$RLUSTRE/utils:$RLUSTRE/tests:/sbin:/usr/sbin; cd $RPWD; LUSTRE=\"$RLUSTRE\" $(get_env_vars) sh -c \"$@\")" | sed -re "s/^[^:]*: //g"
2605     fi
2606     return ${PIPESTATUS[0]}
2607 }
2608
2609 do_facet() {
2610     local facet=$1
2611     shift
2612     local HOST=`facet_active_host $facet`
2613     [ -z $HOST ] && echo No host defined for facet ${facet} && exit 1
2614     do_node $HOST "$@"
2615 }
2616
2617 # Function: do_facet_random_file $FACET $FILE $SIZE
2618 # Creates FILE with random content on the given FACET of given SIZE
2619
2620 do_facet_random_file() {
2621         local facet="$1"
2622         local fpath="$2"
2623         local fsize="$3"
2624         local cmd="dd if=/dev/urandom of='$fpath' bs=$fsize count=1"
2625         do_facet $facet "$cmd 2>/dev/null"
2626 }
2627
2628 do_facet_create_file() {
2629         local facet="$1"
2630         local fpath="$2"
2631         local fsize="$3"
2632         local cmd="dd if=/dev/zero of='$fpath' bs=$fsize count=1"
2633         do_facet $facet "$cmd 2>/dev/null"
2634 }
2635
2636 do_nodesv() {
2637     do_nodes --verbose "$@"
2638 }
2639
2640 add() {
2641     local facet=$1
2642     shift
2643     # make sure its not already running
2644     stop ${facet} -f
2645     rm -f $TMP/${facet}active
2646     [[ $facet = mds1 ]] && combined_mgs_mds && rm -f $TMP/mgsactive
2647     do_facet ${facet} $MKFS $*
2648 }
2649
2650 ostdevname() {
2651     num=$1
2652     DEVNAME=OSTDEV$num
2653
2654         local fstype=$(facet_fstype ost$num)
2655
2656         case $fstype in
2657                 ldiskfs )
2658                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2659                         eval DEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2660                 zfs )
2661                         #dataset name is independent of vdev device names
2662                         eval DEVPTR=${FSNAME}-ost${num}/ost${num};;
2663                 * )
2664                         error "unknown fstype!";;
2665         esac
2666
2667     echo -n $DEVPTR
2668 }
2669
2670 ostvdevname() {
2671         num=$1
2672         DEVNAME=OSTDEV$num
2673
2674         local fstype=$(facet_fstype ost$num)
2675
2676         case $fstype in
2677                 ldiskfs )
2678                         # vdevs are not supported by ldiskfs
2679                         eval VDEVPTR="";;
2680                 zfs )
2681                         #if $OSTDEVn isn't defined, default is $OSTDEVBASE + num
2682                         eval VDEVPTR=${!DEVNAME:=${OSTDEVBASE}${num}};;
2683                 * )
2684                         error "unknown fstype!";;
2685         esac
2686
2687         echo -n $VDEVPTR
2688 }
2689
2690 mdsdevname() {
2691     num=$1
2692     DEVNAME=MDSDEV$num
2693
2694         local fstype=$(facet_fstype mds$num)
2695
2696         case $fstype in
2697                 ldiskfs )
2698                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2699                         eval DEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2700                 zfs )
2701                         #dataset name is independent of vdev device names
2702                         eval DEVPTR=${FSNAME}-mdt${num}/mdt${num};;
2703                 * )
2704                         error "unknown fstype!";;
2705         esac
2706
2707         echo -n $DEVPTR
2708 }
2709
2710 mdsvdevname() {
2711         num=$1
2712         DEVNAME=MDSDEV$num
2713
2714         local fstype=$(facet_fstype mds$num)
2715
2716         case $fstype in
2717                 ldiskfs )
2718                         # vdevs are not supported by ldiskfs
2719                         eval VDEVPTR="";;
2720                 zfs )
2721                         #if $MDSDEVn isn't defined, default is $MDSDEVBASE + num
2722                         eval VDEVPTR=${!DEVNAME:=${MDSDEVBASE}${num}};;
2723                 * )
2724                         error "unknown fstype!";;
2725         esac
2726
2727         echo -n $VDEVPTR
2728 }
2729
2730 mgsdevname() {
2731         local DEVPTR
2732         local fstype=$(facet_fstype mgs)
2733
2734         case $fstype in
2735         ldiskfs )
2736                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2737                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsdevname 1) ] ); then
2738                         DEVPTR=$(mdsdevname 1)
2739                 else
2740                         DEVPTR=$MGSDEV
2741                 fi;;
2742         zfs )
2743                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2744                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2745                         DEVPTR=$(mdsdevname 1)
2746                 else
2747                         DEVPTR=${FSNAME}-mgs/mgs
2748                 fi;;
2749         * )
2750                 error "unknown fstype!";;
2751         esac
2752
2753         echo -n $DEVPTR
2754 }
2755
2756 mgsvdevname() {
2757         local VDEVPTR
2758         DEVNAME=MGSDEV
2759
2760         local fstype=$(facet_fstype mgs)
2761
2762         case $fstype in
2763         ldiskfs )
2764                 # vdevs are not supported by ldiskfs
2765                 ;;
2766         zfs )
2767                 if [ $(facet_host mgs) = $(facet_host mds1) ] &&
2768                    ( [ -z "$MGSDEV" ] || [ $MGSDEV = $(mdsvdevname 1) ] ); then
2769                         VDEVPTR=$(mdsvdevname 1)
2770                 else
2771                         VDEVPTR=$MGSDEV
2772                 fi;;
2773         * )
2774                 error "unknown fstype!";;
2775         esac
2776
2777         echo -n $VDEVPTR
2778 }
2779
2780 facet_mntpt () {
2781     local facet=$1
2782     [[ $facet = mgs ]] && combined_mgs_mds && facet="mds1"
2783
2784     local var=${facet}_MOUNT
2785     eval mntpt=${!var:-${MOUNT%/*}/$facet}
2786
2787     echo -n $mntpt
2788 }
2789
2790 ########
2791 ## MountConf setup
2792
2793 stopall() {
2794     # make sure we are using the primary server, so test-framework will
2795     # be able to clean up properly.
2796     activemds=`facet_active mds1`
2797     if [ $activemds != "mds1" ]; then
2798         fail mds1
2799     fi
2800
2801     local clients=$CLIENTS
2802     [ -z $clients ] && clients=$(hostname)
2803
2804     zconf_umount_clients $clients $MOUNT "$*" || true
2805     [ -n "$MOUNT2" ] && zconf_umount_clients $clients $MOUNT2 "$*" || true
2806
2807     [ "$CLIENTONLY" ] && return
2808     # The add fn does rm ${facet}active file, this would be enough
2809     # if we use do_facet <facet> only after the facet added, but
2810     # currently we use do_facet mds in local.sh
2811     for num in `seq $MDSCOUNT`; do
2812         stop mds$num -f
2813         rm -f ${TMP}/mds${num}active
2814     done
2815     combined_mgs_mds && rm -f $TMP/mgsactive
2816
2817     for num in `seq $OSTCOUNT`; do
2818         stop ost$num -f
2819         rm -f $TMP/ost${num}active
2820     done
2821
2822     if ! combined_mgs_mds ; then
2823         stop mgs
2824     fi
2825
2826     return 0
2827 }
2828
2829 cleanup_echo_devs () {
2830     local devs=$($LCTL dl | grep echo | awk '{print $4}')
2831
2832     for dev in $devs; do
2833         $LCTL --device $dev cleanup
2834         $LCTL --device $dev detach
2835     done
2836 }
2837
2838 cleanupall() {
2839     nfs_client_mode && return
2840
2841     stopall $*
2842     cleanup_echo_devs
2843
2844     unload_modules
2845     cleanup_gss
2846 }
2847
2848 combined_mgs_mds () {
2849         [[ "$(mdsdevname 1)" = "$(mgsdevname)" ]] &&
2850                 [[ "$(facet_host mds1)" = "$(facet_host mgs)" ]]
2851 }
2852
2853 lower() {
2854         echo -n "$1" | tr '[:upper:]' '[:lower:]'
2855 }
2856
2857 upper() {
2858         echo -n "$1" | tr '[:lower:]' '[:upper:]'
2859 }
2860
2861 mkfs_opts() {
2862         local facet=$1
2863         local dev=$2
2864         local fsname=${3:-"$FSNAME"}
2865         local type=$(facet_type $facet)
2866         local index=$(($(facet_number $facet) - 1))
2867         local fstype=$(facet_fstype $facet)
2868         local host=$(facet_host $facet)
2869         local opts
2870         local fs_mkfs_opts
2871         local var
2872
2873         if [ $type == MGS ] && combined_mgs_mds; then
2874                 return 1
2875         fi
2876
2877         if [ $type == MGS ] || ( [ $type == MDS ] &&
2878                                  [ "$dev" == $(mgsdevname) ] &&
2879                                  [ "$host" == "$(facet_host mgs)" ] ); then
2880                 opts="--mgs"
2881         else
2882                 opts="--mgsnode=$MGSNID"
2883         fi
2884
2885         if [ $type != MGS ]; then
2886                 opts+=" --fsname=$fsname --$(lower ${type/MDS/MDT}) \
2887                         --index=$index"
2888         fi
2889
2890         var=${facet}failover_HOST
2891         if [ -n "${!var}" ] && [ ${!var} != $(facet_host $facet) ]; then
2892                 opts+=" --failnode=$(h2$NETTYPE ${!var})"
2893         fi
2894
2895         opts+=${TIMEOUT:+" --param=sys.timeout=$TIMEOUT"}
2896         opts+=${LDLM_TIMEOUT:+" --param=sys.ldlm_timeout=$LDLM_TIMEOUT"}
2897
2898         if [ $type == MDS ]; then
2899                 opts+=${SECLEVEL:+" --param=mdt.sec_level"}
2900                 opts+=${MDSCAPA:+" --param-mdt.capa=$MDSCAPA"}
2901                 opts+=${STRIPE_BYTES:+" --param=lov.stripesize=$STRIPE_BYTES"}
2902                 opts+=${STRIPES_PER_OBJ:+" --param=lov.stripecount=$STRIPES_PER_OBJ"}
2903                 opts+=${L_GETIDENTITY:+" --param=mdt.identity_upcall=$L_GETIDENTITY"}
2904
2905                 if [ $fstype == ldiskfs ]; then
2906                         fs_mkfs_opts+=${MDSJOURNALSIZE:+" -J size=$MDSJOURNALSIZE"}
2907                         if [ ! -z $EJOURNAL ]; then
2908                                 fs_mkfs_opts+=${MDSJOURNALSIZE:+" device=$EJOURNAL"}
2909                         fi
2910                         fs_mkfs_opts+=${MDSISIZE:+" -i $MDSISIZE"}
2911                 fi
2912         fi
2913
2914         if [ $type == OST ]; then
2915                 opts+=${SECLEVEL:+" --param=ost.sec_level"}
2916                 opts+=${OSSCAPA:+" --param=ost.capa=$OSSCAPA"}
2917
2918                 if [ $fstype == ldiskfs ]; then
2919                         fs_mkfs_opts+=${OSTJOURNALSIZE:+" -J size=$OSTJOURNALSIZE"}
2920                 fi
2921         fi
2922
2923         opts+=" --backfstype=$fstype"
2924
2925         var=${type}SIZE
2926         if [ -n "${!var}" ]; then
2927                 opts+=" --device-size=${!var}"
2928         fi
2929
2930         var=$(upper $fstype)_MKFS_OPTS
2931         fs_mkfs_opts+=${!var:+" ${!var}"}
2932
2933         var=${type}_FS_MKFS_OPTS
2934         fs_mkfs_opts+=${!var:+" ${!var}"}
2935
2936         if [ -n "${fs_mkfs_opts## }" ]; then
2937                 opts+=" --mkfsoptions=\\\"${fs_mkfs_opts## }\\\""
2938         fi
2939
2940         var=${type}OPT
2941         opts+=${!var:+" ${!var}"}
2942
2943         echo -n "$opts"
2944 }
2945
2946 formatall() {
2947         local quiet
2948
2949         if ! $VERBOSE; then
2950                 quiet=yes
2951         fi
2952
2953         stopall
2954         # We need ldiskfs here, may as well load them all
2955         load_modules
2956         [ "$CLIENTONLY" ] && return
2957         echo Formatting mgs, mds, osts
2958         if ! combined_mgs_mds ; then
2959                 echo "Format mgs: $(mgsdevname)"
2960                 add mgs $(mkfs_opts mgs $(mgsdevname)) --reformat \
2961                         $(mgsdevname) $(mgsvdevname) ${quiet:+>/dev/null} ||
2962                         exit 10
2963         fi
2964
2965         for num in $(seq $MDSCOUNT); do
2966                 echo "Format mds$num: $(mdsdevname $num)"
2967                 add mds$num $(mkfs_opts mds$num $(mdsdevname ${num})) \
2968                         --reformat $(mdsdevname $num) $(mdsvdevname $num) \
2969                         ${quiet:+>/dev/null} || exit 10
2970         done
2971
2972         for num in $(seq $OSTCOUNT); do
2973                 echo "Format ost$num: $(ostdevname $num)"
2974                 add ost$num $(mkfs_opts ost$num $(ostdevname ${num})) \
2975                         --reformat $(ostdevname $num) $(ostvdevname ${num}) \
2976                         ${quiet:+>/dev/null} || exit 10
2977         done
2978 }
2979
2980 mount_client() {
2981     grep " $1 " /proc/mounts || zconf_mount $HOSTNAME $*
2982 }
2983
2984 umount_client() {
2985     grep " $1 " /proc/mounts && zconf_umount `hostname` $*
2986 }
2987
2988 # return value:
2989 # 0: success, the old identity set already.
2990 # 1: success, the old identity does not set.
2991 # 2: fail.
2992 switch_identity() {
2993     local num=$1
2994     local switch=$2
2995     local j=`expr $num - 1`
2996     local MDT="`(do_facet mds$num lctl get_param -N mdt.*MDT*$j 2>/dev/null | cut -d"." -f2 2>/dev/null) || true`"
2997
2998     if [ -z "$MDT" ]; then
2999         return 2
3000     fi
3001
3002     local old="`do_facet mds$num "lctl get_param -n mdt.$MDT.identity_upcall"`"
3003
3004     if $switch; then
3005         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"$L_GETIDENTITY\""
3006     else
3007         do_facet mds$num "lctl set_param -n mdt.$MDT.identity_upcall \"NONE\""
3008     fi
3009
3010     do_facet mds$num "lctl set_param -n mdt/$MDT/identity_flush=-1"
3011
3012     if [ $old = "NONE" ]; then
3013         return 1
3014     else
3015         return 0
3016     fi
3017 }
3018
3019 remount_client()
3020 {
3021         zconf_umount `hostname` $1 || error "umount failed"
3022         zconf_mount `hostname` $1 || error "mount failed"
3023 }
3024
3025 writeconf_facet() {
3026         local facet=$1
3027         local dev=$2
3028
3029         stop ${facet} -f
3030         rm -f $TMP/${facet}active
3031         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" || return 1
3032         return 0
3033 }
3034
3035 writeconf_all () {
3036         local mdt_count=${1:-$MDSCOUNT}
3037         local ost_count=${2:-$OSTCOUNT}
3038         local rc=0
3039
3040         for num in $(seq $mdt_count); do
3041                 DEVNAME=$(mdsdevname $num)
3042                 writeconf_facet mds$num $DEVNAME || rc=$?
3043         done
3044
3045         for num in $(seq $ost_count); do
3046                 DEVNAME=$(ostdevname $num)
3047                 writeconf_facet ost$num $DEVNAME || rc=$?
3048         done
3049         return $rc
3050 }
3051
3052 setupall() {
3053     nfs_client_mode && return
3054
3055     sanity_mount_check ||
3056         error "environments are insane!"
3057
3058     load_modules
3059
3060     if [ -z "$CLIENTONLY" ]; then
3061         echo Setup mgs, mdt, osts
3062         echo $WRITECONF | grep -q "writeconf" && \
3063             writeconf_all
3064         if ! combined_mgs_mds ; then
3065                         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
3066         fi
3067
3068         for num in `seq $MDSCOUNT`; do
3069             DEVNAME=$(mdsdevname $num)
3070             start mds$num $DEVNAME $MDS_MOUNT_OPTS
3071
3072             # We started mds, now we should set failover variables properly.
3073             # Set mds${num}failover_HOST if it is not set (the default failnode).
3074             local varname=mds${num}failover_HOST
3075             if [ -z "${!varname}" ]; then
3076                 eval mds${num}failover_HOST=$(facet_host mds$num)
3077             fi
3078
3079             if [ $IDENTITY_UPCALL != "default" ]; then
3080                 switch_identity $num $IDENTITY_UPCALL
3081             fi
3082         done
3083         for num in `seq $OSTCOUNT`; do
3084             DEVNAME=$(ostdevname $num)
3085             start ost$num $DEVNAME $OST_MOUNT_OPTS
3086
3087             # We started ost$num, now we should set ost${num}failover variable properly.
3088             # Set ost${num}failover_HOST if it is not set (the default failnode).
3089             varname=ost${num}failover_HOST
3090             if [ -z "${!varname}" ]; then
3091                 eval ost${num}failover_HOST=$(facet_host ost${num})
3092             fi
3093
3094         done
3095     fi
3096
3097     init_gss
3098
3099     # wait a while to allow sptlrpc configuration be propogated to targets,
3100     # only needed when mounting new target devices.
3101     if $GSS; then
3102         sleep 10
3103     fi
3104
3105     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
3106     mount_client $MOUNT
3107     [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT
3108     clients_up
3109
3110     if [ "$MOUNT_2" ]; then
3111         mount_client $MOUNT2
3112         [ -n "$CLIENTS" ] && zconf_mount_clients $CLIENTS $MOUNT2
3113     fi
3114
3115     init_param_vars
3116
3117     # by remounting mdt before ost, initial connect from mdt to ost might
3118     # timeout because ost is not ready yet. wait some time to its fully
3119     # recovery. initial obd_connect timeout is 5s; in GSS case it's preceeded
3120     # by a context negotiation rpc with $TIMEOUT.
3121     # FIXME better by monitoring import status.
3122     if $GSS; then
3123         set_flavor_all $SEC
3124         sleep $((TIMEOUT + 5))
3125     else
3126         sleep 5
3127     fi
3128 }
3129
3130 mounted_lustre_filesystems() {
3131         awk '($3 ~ "lustre" && $1 ~ ":") { print $2 }' /proc/mounts
3132 }
3133
3134 init_facet_vars () {
3135         [ "$CLIENTONLY" ] && return 0
3136         local facet=$1
3137         shift
3138         local device=$1
3139
3140         shift
3141
3142         eval export ${facet}_dev=${device}
3143         eval export ${facet}_opt=\"$@\"
3144
3145         local dev=${facet}_dev
3146
3147         # We need to loop for the label
3148         # in case its not initialized yet.
3149         for wait_time in {0,1,3,5,10}; do
3150
3151                 if [ $wait_time -gt 0 ]; then
3152                         echo "${!dev} not yet initialized,"\
3153                                 "waiting ${wait_time} seconds."
3154                         sleep $wait_time
3155                 fi
3156
3157                 local label=$(devicelabel ${facet} ${!dev})
3158
3159                 # Check to make sure the label does
3160                 # not include ffff at the end of the label.
3161                 # This indicates it has not been initialized yet.
3162
3163                 if [[ $label =~ [f|F]{4}$ ]]; then
3164                         # label is not initialized, unset the result
3165                         # and either try again or fail
3166                         unset label
3167                 else
3168                         break
3169                 fi
3170         done
3171
3172         [ -z "$label" ] && echo no label for ${!dev} && exit 1
3173
3174         eval export ${facet}_svc=${label}
3175
3176         local varname=${facet}failover_HOST
3177         if [ -z "${!varname}" ]; then
3178                 eval export $varname=$(facet_host $facet)
3179         fi
3180
3181         varname=${facet}_HOST
3182         if [ -z "${!varname}" ]; then
3183                 eval export $varname=$(facet_host $facet)
3184         fi
3185
3186         # ${facet}failover_dev is set in cfg file
3187         varname=${facet}failover_dev
3188         if [ -n "${!varname}" ] ; then
3189                 eval export ${facet}failover_dev=${!varname}
3190         else
3191                 eval export ${facet}failover_dev=$device
3192         fi
3193
3194         # get mount point of already mounted device
3195         # is facet_dev is already mounted then use the real
3196         #  mount point of this facet; otherwise use $(facet_mntpt $facet)
3197         # i.e. ${facet}_MOUNT if specified by user or default
3198         local mntpt=$(do_facet ${facet} cat /proc/mounts | \
3199                         awk '"'${!dev}'" == $1 && $3 == "lustre" { print $2 }')
3200         if [ -z $mntpt ]; then
3201                 mntpt=$(facet_mntpt $facet)
3202         fi
3203         eval export ${facet}_MOUNT=$mntpt
3204 }
3205
3206 init_facets_vars () {
3207         local DEVNAME
3208
3209         if ! remote_mds_nodsh; then
3210                 for num in $(seq $MDSCOUNT); do
3211                         DEVNAME=`mdsdevname $num`
3212                         init_facet_vars mds$num $DEVNAME $MDS_MOUNT_OPTS
3213                 done
3214         fi
3215
3216         combined_mgs_mds || init_facet_vars mgs $(mgsdevname) $MGS_MOUNT_OPTS
3217
3218         if ! remote_ost_nodsh; then
3219                 for num in $(seq $OSTCOUNT); do
3220                         DEVNAME=$(ostdevname $num)
3221                         init_facet_vars ost$num $DEVNAME $OST_MOUNT_OPTS
3222                 done
3223         fi
3224 }
3225
3226 osc_ensure_active () {
3227     local facet=$1
3228     local timeout=$2
3229     local period=0
3230
3231     while [ $period -lt $timeout ]; do
3232         count=$(do_facet $facet "lctl dl | grep ' IN osc ' 2>/dev/null | wc -l")
3233         if [ $count -eq 0 ]; then
3234             break
3235         fi
3236
3237         echo "There are $count OST are inactive, wait $period seconds, and try again"
3238         sleep 3
3239         period=$((period+3))
3240     done
3241
3242     [ $period -lt $timeout ] || log "$count OST are inactive after $timeout seconds, give up"
3243 }
3244
3245 set_conf_param_and_check() {
3246         local myfacet=$1
3247         local TEST=$2
3248         local PARAM=$3
3249         local ORIG=$(do_facet $myfacet "$TEST")
3250         if [ $# -gt 3 ]; then
3251                 local FINAL=$4
3252         else
3253                 local -i FINAL
3254                 FINAL=$((ORIG + 5))
3255         fi
3256         echo "Setting $PARAM from $ORIG to $FINAL"
3257         do_facet mgs "$LCTL conf_param $PARAM='$FINAL'" ||
3258                 error "conf_param $PARAM failed"
3259
3260         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" ||
3261                 error "check $PARAM failed!"
3262 }
3263
3264 init_param_vars () {
3265         remote_mds_nodsh ||
3266                 TIMEOUT=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3267
3268         log "Using TIMEOUT=$TIMEOUT"
3269
3270         osc_ensure_active $SINGLEMDS $TIMEOUT
3271         osc_ensure_active client $TIMEOUT
3272
3273         if [ -n "$(lctl get_param -n mdc.*.connect_flags|grep jobstats)" ]; then
3274                 local current_jobid_var=$($LCTL get_param -n jobid_var)
3275
3276                 if [ $JOBID_VAR = "existing" ]; then
3277                         echo "keeping jobstats as $current_jobid_var"
3278                 elif [ $current_jobid_var != $JOBID_VAR ]; then
3279                         echo "seting jobstats to $JOBID_VAR"
3280
3281                         set_conf_param_and_check client                 \
3282                                 "$LCTL get_param -n jobid_var"          \
3283                                 "$FSNAME.sys.jobid_var" $JOBID_VAR
3284                 fi
3285         else
3286                 echo "jobstats not supported by server"
3287         fi
3288
3289         if [ $QUOTA_AUTO -ne 0 ]; then
3290                 if [ "$ENABLE_QUOTA" ]; then
3291                         echo "enable quota as required"
3292                         setup_quota $MOUNT || return 2
3293                 else
3294                         echo "disable quota as required"
3295                         # $LFS quotaoff -ug $MOUNT > /dev/null 2>&1
3296                 fi
3297         fi
3298         return 0
3299 }
3300
3301 nfs_client_mode () {
3302     if [ "$NFSCLIENT" ]; then
3303         echo "NFSCLIENT mode: setup, cleanup, check config skipped"
3304         local clients=$CLIENTS
3305         [ -z $clients ] && clients=$(hostname)
3306
3307         # FIXME: remove hostname when 19215 fixed
3308         do_nodes $clients "echo \\\$(hostname); grep ' '$MOUNT' ' /proc/mounts"
3309         declare -a nfsexport=(`grep ' '$MOUNT' ' /proc/mounts | awk '{print $1}' | awk -F: '{print $1 " "  $2}'`)
3310         if [[ ${#nfsexport[@]} -eq 0 ]]; then
3311                 error_exit NFSCLIENT=$NFSCLIENT mode, but no NFS export found!
3312         fi
3313         do_nodes ${nfsexport[0]} "echo \\\$(hostname); df -T  ${nfsexport[1]}"
3314         return
3315     fi
3316     return 1
3317 }
3318
3319 check_config_client () {
3320     local mntpt=$1
3321
3322     local mounted=$(mount | grep " $mntpt ")
3323     if [ "$CLIENTONLY" ]; then
3324         # bug 18021
3325         # CLIENTONLY should not depend on *_HOST settings
3326         local mgc=$($LCTL device_list | awk '/MGC/ {print $4}')
3327         # in theory someone could create a new,
3328         # client-only config file that assumed lustre was already
3329         # configured and didn't set the MGSNID. If MGSNID is not set,
3330         # then we should use the mgs nid currently being used 
3331         # as the default value. bug 18021
3332         [[ x$MGSNID = x ]] &&
3333             MGSNID=${mgc//MGC/}
3334
3335         if [[ x$mgc != xMGC$MGSNID ]]; then
3336             if [ "$mgs_HOST" ]; then
3337                 local mgc_ip=$(ping -q -c1 -w1 $mgs_HOST | grep PING | awk '{print $3}' | sed -e "s/(//g" -e "s/)//g")
3338 #                [[ x$mgc = xMGC$mgc_ip@$NETTYPE ]] ||
3339 #                    error_exit "MGSNID=$MGSNID, mounted: $mounted, MGC : $mgc"
3340             fi
3341         fi
3342         return 0
3343     fi
3344
3345     local myMGS_host=$mgs_HOST   
3346     if [ "$NETTYPE" = "ptl" ]; then
3347         myMGS_host=$(h2ptl $mgs_HOST | sed -e s/@ptl//) 
3348     fi
3349
3350     echo Checking config lustre mounted on $mntpt
3351     local mgshost=$(mount | grep " $mntpt " | awk -F@ '{print $1}')
3352     mgshost=$(echo $mgshost | awk -F: '{print $1}')
3353
3354 #    if [ "$mgshost" != "$myMGS_host" ]; then
3355 #            log "Bad config file: lustre is mounted with mgs $mgshost, but mgs_HOST=$mgs_HOST, NETTYPE=$NETTYPE
3356 #                   Please use correct config or set mds_HOST correctly!"
3357 #    fi
3358
3359 }
3360
3361 check_config_clients () {
3362         local clients=${CLIENTS:-$HOSTNAME}
3363         local mntpt=$1
3364
3365         nfs_client_mode && return
3366
3367         do_rpc_nodes "$clients" check_config_client $mntpt
3368
3369         sanity_mount_check || error "environments are insane!"
3370 }
3371
3372 check_timeout () {
3373     local mdstimeout=$(do_facet $SINGLEMDS "lctl get_param -n timeout")
3374     local cltimeout=$(lctl get_param -n timeout)
3375     if [ $mdstimeout -ne $TIMEOUT ] || [ $mdstimeout -ne $cltimeout ]; then
3376         error "timeouts are wrong! mds: $mdstimeout, client: $cltimeout, TIMEOUT=$TIMEOUT"
3377         return 1
3378     fi
3379 }
3380
3381 is_mounted () {
3382     local mntpt=$1
3383     [ -z $mntpt ] && return 1
3384     local mounted=$(mounted_lustre_filesystems)
3385
3386     echo $mounted' ' | grep -w -q $mntpt' '
3387 }
3388
3389 is_empty_dir() {
3390         [ $(find $1 -maxdepth 1 -print | wc -l) = 1 ] && return 0
3391         return 1
3392 }
3393
3394 # empty lustre filesystem may have empty directories lost+found and .lustre
3395 is_empty_fs() {
3396         [ $(find $1 -maxdepth 1 -name lost+found -o -name .lustre -prune -o \
3397                 -print | wc -l) = 1 ] || return 1
3398         [ ! -d $1/lost+found ] || is_empty_dir $1/lost+found || return 1
3399         [ ! -d $1/.lustre ] || is_empty_dir $1/.lustre || return 1
3400         return 0
3401 }
3402
3403 check_and_setup_lustre() {
3404     nfs_client_mode && return
3405
3406     local MOUNTED=$(mounted_lustre_filesystems)
3407
3408     local do_check=true
3409     # 1.
3410     # both MOUNT and MOUNT2 are not mounted
3411     if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
3412         [ "$REFORMAT" ] && formatall
3413         # setupall mounts both MOUNT and MOUNT2 (if MOUNT_2 is set)
3414         setupall
3415         is_mounted $MOUNT || error "NAME=$NAME not mounted"
3416         export I_MOUNTED=yes
3417         do_check=false
3418     # 2.
3419     # MOUNT2 is mounted
3420     elif is_mounted $MOUNT2; then
3421             # 3.
3422             # MOUNT2 is mounted, while MOUNT_2 is not set
3423             if ! [ "$MOUNT_2" ]; then
3424                 cleanup_mount $MOUNT2
3425                 export I_UMOUNTED2=yes
3426
3427             # 4.
3428             # MOUNT2 is mounted, MOUNT_2 is set
3429             else
3430                 # FIXME: what to do if check_config failed?
3431                 # i.e. if:
3432                 # 1) remote client has mounted other Lustre fs ?
3433                 # 2) it has insane env ?
3434                 # let's try umount MOUNT2 on all clients and mount it again:
3435                 if ! check_config_clients $MOUNT2; then
3436                     cleanup_mount $MOUNT2
3437                     restore_mount $MOUNT2
3438                     export I_MOUNTED2=yes
3439                 fi
3440             fi 
3441
3442     # 5.
3443     # MOUNT is mounted MOUNT2 is not mounted
3444     elif [ "$MOUNT_2" ]; then
3445         restore_mount $MOUNT2
3446         export I_MOUNTED2=yes
3447     fi
3448
3449     if $do_check; then
3450         # FIXME: what to do if check_config failed?
3451         # i.e. if:
3452         # 1) remote client has mounted other Lustre fs?
3453         # 2) lustre is mounted on remote_clients atall ?
3454         check_config_clients $MOUNT
3455         init_facets_vars
3456         init_param_vars
3457
3458         set_default_debug_nodes $(comma_list $(nodes_list))
3459     fi
3460
3461         init_gss
3462         if $GSS; then
3463                 set_flavor_all $SEC
3464         fi
3465
3466         if [ "$ONLY" == "setup" ]; then
3467                 exit 0
3468         fi
3469 }
3470
3471 restore_mount () {
3472    local clients=${CLIENTS:-$HOSTNAME}
3473    local mntpt=$1
3474
3475    zconf_mount_clients $clients $mntpt
3476 }
3477
3478 cleanup_mount () {
3479     local clients=${CLIENTS:-$HOSTNAME}
3480     local mntpt=$1
3481
3482     zconf_umount_clients $clients $mntpt    
3483 }
3484
3485 cleanup_and_setup_lustre() {
3486     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
3487         lctl set_param debug=0 || true
3488         cleanupall
3489         if [ "$ONLY" == "cleanup" ]; then
3490             exit 0
3491         fi
3492     fi
3493     check_and_setup_lustre
3494 }
3495
3496 # Get all of the server target devices from a given server node and type.
3497 get_mnt_devs() {
3498         local node=$1
3499         local type=$2
3500         local devs
3501         local dev
3502
3503         if [ "$type" == ost ]; then
3504                 devs=$(get_osd_param $node "" mntdev)
3505         else
3506                 devs=$(do_node $node \
3507                        "lctl get_param -n osd-*.$FSNAME-M*.mntdev")
3508         fi
3509         for dev in $devs; do
3510                 case $dev in
3511                 *loop*) do_node $node "losetup $dev" | \
3512                                 sed -e "s/.*(//" -e "s/).*//" ;;
3513                 *) echo $dev ;;
3514                 esac
3515         done
3516 }
3517
3518 # Get all of the server target devices.
3519 get_svr_devs() {
3520     local i
3521
3522     # MDT device
3523     MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
3524
3525     # OST devices
3526     i=0
3527     for node in $(osts_nodes); do
3528         OSTDEVS[i]=$(get_mnt_devs $node ost)
3529         i=$((i + 1))
3530     done
3531 }
3532
3533 # Run e2fsck on MDT or OST device.
3534 run_e2fsck() {
3535     local node=$1
3536     local target_dev=$2
3537     local extra_opts=$3
3538
3539     df > /dev/null      # update statfs data on disk
3540     local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
3541     echo $cmd
3542     local rc=0
3543     do_node $node $cmd || rc=$?
3544     [ $rc -le $FSCK_MAX_ERR ] || \
3545         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3546     return 0
3547 }
3548
3549 # verify a directory is shared among nodes.
3550 check_shared_dir() {
3551         local dir=$1
3552
3553         [ -z "$dir" ] && return 1
3554         do_rpc_nodes "$(comma_list $(nodes_list))" check_logdir $dir
3555         check_write_access $dir || return 1
3556         return 0
3557 }
3558
3559 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
3560 generate_db() {
3561     local i
3562     local ostidx
3563     local dev
3564
3565         [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
3566                 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
3567
3568     check_shared_dir $SHARED_DIRECTORY ||
3569         error "$SHARED_DIRECTORY isn't a shared directory"
3570
3571     export MDSDB=$SHARED_DIRECTORY/mdsdb
3572     export OSTDB=$SHARED_DIRECTORY/ostdb
3573
3574     [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
3575
3576     run_e2fsck $(mdts_nodes) $MDTDEV "-n --mdsdb $MDSDB"
3577
3578     i=0
3579     ostidx=0
3580     OSTDB_LIST=""
3581     for node in $(osts_nodes); do
3582         for dev in ${OSTDEVS[i]}; do
3583             run_e2fsck $node $dev "-n --mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
3584             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
3585             ostidx=$((ostidx + 1))
3586         done
3587         i=$((i + 1))
3588     done
3589 }
3590
3591 # Run lfsck on server node if lfsck can't be found on client (LU-2571)
3592 run_lfsck_remote() {
3593         local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
3594         local client=$1
3595         local mounted=true
3596         local rc=0
3597
3598         #Check if lustre is already mounted
3599         do_rpc_nodes $client is_mounted $MOUNT || mounted=false
3600         if ! $mounted; then
3601                 zconf_mount $client $MOUNT ||
3602                         error "failed to mount Lustre on $client"
3603         fi
3604         #Run lfsck
3605         echo $cmd
3606         do_node $node $cmd || rc=$?
3607         #Umount if necessary
3608         if ! $mounted; then
3609                 zconf_umount $client $MOUNT ||
3610                         error "failed to unmount Lustre on $client"
3611         fi
3612
3613         [ $rc -le $FSCK_MAX_ERR ] ||
3614                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3615         echo "lfsck finished with rc=$rc"
3616
3617         return $rc
3618 }
3619
3620 run_lfsck() {
3621         local facets="client $SINGLEMDS"
3622         local found=false
3623         local facet
3624         local node
3625         local rc=0
3626
3627         for facet in $facets; do
3628                 node=$(facet_active_host $facet)
3629                 if check_progs_installed $node $LFSCK_BIN; then
3630                         found=true
3631                         break
3632                 fi
3633         done
3634         ! $found && error "None of \"$facets\" supports lfsck"
3635
3636         run_lfsck_remote $node || rc=$?
3637
3638         rm -rvf $MDSDB* $OSTDB* || true
3639         return $rc
3640 }
3641
3642 check_and_cleanup_lustre() {
3643     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
3644         get_svr_devs
3645         generate_db
3646         run_lfsck
3647     fi
3648
3649         if is_mounted $MOUNT; then
3650                 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
3651                         error "remove sub-test dirs failed"
3652                 [ "$ENABLE_QUOTA" ] && restore_quota || true
3653         fi
3654
3655     if [ "$I_UMOUNTED2" = "yes" ]; then
3656         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
3657     fi
3658
3659     if [ "$I_MOUNTED2" = "yes" ]; then
3660         cleanup_mount $MOUNT2
3661     fi
3662
3663     if [ "$I_MOUNTED" = "yes" ]; then
3664         cleanupall -f || error "cleanup failed"
3665         unset I_MOUNTED
3666     fi
3667 }
3668
3669 #######
3670 # General functions
3671
3672 wait_for_function () {
3673     local quiet=""
3674
3675     # suppress fn both stderr and stdout
3676     if [ "$1" = "--quiet" ]; then
3677         shift
3678         quiet=" > /dev/null 2>&1"
3679
3680     fi
3681
3682     local fn=$1
3683     local max=${2:-900}
3684     local sleep=${3:-5}
3685
3686     local wait=0
3687
3688     while true; do
3689
3690         eval $fn $quiet && return 0
3691
3692         wait=$((wait + sleep))
3693         [ $wait -lt $max ] || return 1
3694         echo waiting $fn, $((max - wait)) secs left ...
3695         sleep $sleep
3696     done
3697 }
3698
3699 check_network() {
3700     local host=$1
3701     local max=$2
3702     local sleep=${3:-5}
3703
3704     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
3705     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
3706         echo "Network not available!"
3707         exit 1
3708     fi
3709
3710     echo `date +"%H:%M:%S (%s)"` network interface is UP
3711 }
3712
3713 no_dsh() {
3714     shift
3715     eval $@
3716 }
3717
3718 # Convert a space-delimited list to a comma-delimited list.  If the input is
3719 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
3720 comma_list() {
3721         # echo is used to convert newlines to spaces, since it doesn't
3722         # introduce a trailing space as using "tr '\n' ' '" does
3723         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
3724 }
3725
3726 list_member () {
3727     local list=$1
3728     local item=$2
3729     echo $list | grep -qw $item
3730 }
3731
3732 # list, excluded are the comma separated lists
3733 exclude_items_from_list () {
3734     local list=$1
3735     local excluded=$2
3736     local item
3737
3738     list=${list//,/ }
3739     for item in ${excluded//,/ }; do
3740         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
3741     done
3742     echo $(comma_list $list)
3743 }
3744
3745 # list, expand  are the comma separated lists
3746 expand_list () {
3747     local list=${1//,/ }
3748     local expand=${2//,/ }
3749     local expanded=
3750
3751     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
3752     echo $(comma_list $expanded)
3753 }
3754
3755 testslist_filter () {
3756     local script=$LUSTRE/tests/${TESTSUITE}.sh
3757
3758     [ -f $script ] || return 0
3759
3760     local start_at=$START_AT
3761     local stop_at=$STOP_AT
3762
3763     local var=${TESTSUITE//-/_}_START_AT
3764     [ x"${!var}" != x ] && start_at=${!var}
3765     var=${TESTSUITE//-/_}_STOP_AT
3766     [ x"${!var}" != x ] && stop_at=${!var}
3767
3768     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
3769         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
3770             /^'${start_at}'$/ {flag = 0}
3771             {if (flag == 1) print $0}
3772             /^'${stop_at}'$/ { flag = 1 }'
3773 }
3774
3775 absolute_path() {
3776     (cd `dirname $1`; echo $PWD/`basename $1`)
3777 }
3778
3779 get_facets () {
3780     local types=${1:-"OST MDS MGS"}
3781
3782     local list=""
3783
3784     for entry in $types; do
3785         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
3786         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
3787
3788         case $type in
3789                 MGS ) list="$list $name";;
3790             MDS|OST ) local count=${type}COUNT
3791                        for ((i=1; i<=${!count}; i++)) do
3792                           list="$list ${name}$i"
3793                       done;;
3794                   * ) error "Invalid facet type"
3795                  exit 1;;
3796         esac
3797     done
3798     echo $(comma_list $list)
3799 }
3800
3801 ##################################
3802 # Adaptive Timeouts funcs
3803
3804 at_is_enabled() {
3805     # only check mds, we assume at_max is the same on all nodes
3806     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
3807     if [ $at_max -eq 0 ]; then
3808         return 1
3809     else
3810         return 0
3811     fi
3812 }
3813
3814 at_get() {
3815     local facet=$1
3816     local at=$2
3817
3818     # suppose that all ost-s have the same $at value set
3819     [ $facet != "ost" ] || facet=ost1
3820
3821     do_facet $facet "lctl get_param -n $at"
3822 }
3823
3824 at_max_get() {
3825     at_get $1 at_max
3826 }
3827
3828 at_min_get() {
3829         at_get $1 at_min
3830 }
3831
3832 at_max_set() {
3833     local at_max=$1
3834     shift
3835
3836     local facet
3837     local hosts
3838     for facet in $@; do
3839         if [ $facet == "ost" ]; then
3840             facet=$(get_facets OST)
3841         elif [ $facet == "mds" ]; then
3842             facet=$(get_facets MDS)
3843         fi
3844         hosts=$(expand_list $hosts $(facets_hosts $facet))
3845     done
3846
3847     do_nodes $hosts lctl set_param at_max=$at_max
3848 }
3849
3850 ##################################
3851 # OBD_FAIL funcs
3852
3853 drop_request() {
3854 # OBD_FAIL_MDS_ALL_REQUEST_NET
3855     RC=0
3856     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
3857     do_facet client "$1" || RC=$?
3858     do_facet $SINGLEMDS lctl set_param fail_loc=0
3859     return $RC
3860 }
3861
3862 drop_reply() {
3863 # OBD_FAIL_MDS_ALL_REPLY_NET
3864     RC=0
3865     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
3866     do_facet client "$@" || RC=$?
3867     do_facet $SINGLEMDS lctl set_param fail_loc=0
3868     return $RC
3869 }
3870
3871 drop_reint_reply() {
3872 # OBD_FAIL_MDS_REINT_NET_REP
3873     RC=0
3874     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
3875     do_facet client "$@" || RC=$?
3876     do_facet $SINGLEMDS lctl set_param fail_loc=0
3877     return $RC
3878 }
3879
3880 drop_update_reply() {
3881 # OBD_FAIL_UPDATE_OBJ_NET_REP
3882         local index=$1
3883         shift 1
3884         RC=0
3885         do_facet mds${index} lctl set_param fail_loc=0x1701
3886         do_facet client "$@" || RC=$?
3887         do_facet mds${index} lctl set_param fail_loc=0
3888         return $RC
3889 }
3890
3891 pause_bulk() {
3892 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
3893     RC=0
3894     do_facet ost1 lctl set_param fail_loc=0x214
3895     do_facet client "$1" || RC=$?
3896     do_facet client "sync"
3897     do_facet ost1 lctl set_param fail_loc=0
3898     return $RC
3899 }
3900
3901 drop_ldlm_cancel() {
3902 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
3903         local RC=0
3904         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
3905         do_nodes $list lctl set_param fail_loc=0x304
3906
3907         do_facet client "$@" || RC=$?
3908
3909         do_nodes $list lctl set_param fail_loc=0
3910         return $RC
3911 }
3912
3913 drop_bl_callback() {
3914 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
3915         RC=0
3916         do_facet client lctl set_param fail_loc=0x80000305
3917         do_facet client "$@" || RC=$?
3918         do_facet client lctl set_param fail_loc=0
3919         return $RC
3920 }
3921
3922 drop_ldlm_reply() {
3923 #define OBD_FAIL_LDLM_REPLY              0x30c
3924     RC=0
3925     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
3926     do_facet client "$@" || RC=$?
3927     do_facet $SINGLEMDS lctl set_param fail_loc=0
3928     return $RC
3929 }
3930
3931 clear_failloc() {
3932     facet=$1
3933     pause=$2
3934     sleep $pause
3935     echo "clearing fail_loc on $facet"
3936     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
3937 }
3938
3939 set_nodes_failloc () {
3940     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
3941 }
3942
3943 cancel_lru_locks() {
3944     $LCTL mark "cancel_lru_locks $1 start"
3945     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
3946         $LCTL set_param -n $d=clear
3947     done
3948     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
3949     $LCTL mark "cancel_lru_locks $1 stop"
3950 }
3951
3952 default_lru_size()
3953 {
3954         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
3955         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
3956         echo "$DEFAULT_LRU_SIZE"
3957 }
3958
3959 lru_resize_enable()
3960 {
3961     lctl set_param ldlm.namespaces.*$1*.lru_size=0
3962 }
3963
3964 lru_resize_disable()
3965 {
3966     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
3967 }
3968
3969 pgcache_empty() {
3970     local FILE
3971     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
3972         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
3973             echo there is still data in page cache $FILE ?
3974             lctl get_param -n $FILE
3975             return 1
3976         fi
3977     done
3978     return 0
3979 }
3980
3981 debugsave() {
3982     DEBUGSAVE="$(lctl get_param -n debug)"
3983 }
3984
3985 debugrestore() {
3986     [ -n "$DEBUGSAVE" ] && \
3987         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
3988     DEBUGSAVE=""
3989 }
3990
3991 debug_size_save() {
3992     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
3993 }
3994
3995 debug_size_restore() {
3996     [ -n "$DEBUG_SIZE_SAVED" ] && \
3997         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
3998     DEBUG_SIZE_SAVED=""
3999 }
4000
4001 start_full_debug_logging() {
4002     debugsave
4003     debug_size_save
4004
4005     local FULLDEBUG=-1
4006     local DEBUG_SIZE=150
4007
4008     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
4009     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
4010 }
4011
4012 stop_full_debug_logging() {
4013     debug_size_restore
4014     debugrestore
4015 }
4016
4017 # prints bash call stack
4018 log_trace_dump() {
4019         echo "  Trace dump:"
4020         for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
4021                 local s=${BASH_SOURCE[$i]}
4022                 local l=${BASH_LINENO[$i-1]}
4023                 local f=${FUNCNAME[$i]}
4024                 echo "  = $s:$l:$f()"
4025         done
4026 }
4027
4028 ##################################
4029 # Test interface
4030 ##################################
4031
4032 error_noexit() {
4033     local TYPE=${TYPE:-"FAIL"}
4034
4035     local dump=true
4036     # do not dump logs if $1=false
4037     if [ "x$1" = "xfalse" ]; then
4038         shift
4039         dump=false
4040     fi
4041
4042     log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
4043     log_trace_dump
4044
4045     mkdir -p $LOGDIR
4046     # We need to dump the logs on all nodes
4047     if $dump; then
4048         gather_logs $(comma_list $(nodes_list))
4049     fi
4050
4051         debugrestore
4052         [ "$TESTSUITELOG" ] &&
4053                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
4054         echo "$@" > $LOGDIR/err
4055 }
4056
4057 exit_status () {
4058         local status=0
4059         local log=$TESTSUITELOG
4060
4061         [ -f "$log" ] && grep -q FAIL $log && status=1
4062         exit $status
4063 }
4064
4065 error() {
4066     error_noexit "$@"
4067     exit 1
4068 }
4069
4070 error_exit() {
4071     error "$@"
4072 }
4073
4074 # use only if we are ignoring failures for this test, bugno required.
4075 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
4076 # e.g. error_ignore 5494 "your message"
4077 error_ignore() {
4078     local TYPE="IGNORE (bz$1)"
4079     shift
4080     error_noexit "$@"
4081 }
4082
4083 error_and_remount() {
4084         error_noexit "$@"
4085         remount_client $MOUNT
4086         exit 1
4087 }
4088
4089 skip_env () {
4090     $FAIL_ON_SKIP_ENV && error false $@ || skip $@
4091 }
4092
4093 skip() {
4094         echo
4095         log " SKIP: $TESTSUITE $TESTNAME $@"
4096
4097         if [[ -n "$ALWAYS_SKIPPED" ]]; then
4098                 skip_logged $TESTNAME "$@"
4099         else
4100                 mkdir -p $LOGDIR
4101                 echo "$@" > $LOGDIR/skip
4102         fi
4103
4104         [[ -n "$TESTSUITELOG" ]] &&
4105                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
4106 }
4107
4108 build_test_filter() {
4109     EXCEPT="$EXCEPT $(testslist_filter)"
4110
4111     [ "$ONLY" ] && log "only running test `echo $ONLY`"
4112     for O in $ONLY; do
4113         eval ONLY_${O}=true
4114     done
4115     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
4116         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
4117     [ "$EXCEPT_SLOW" ] && \
4118         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
4119     for E in $EXCEPT; do
4120         eval EXCEPT_${E}=true
4121     done
4122     for E in $ALWAYS_EXCEPT; do
4123         eval EXCEPT_ALWAYS_${E}=true
4124     done
4125     for E in $EXCEPT_SLOW; do
4126         eval EXCEPT_SLOW_${E}=true
4127     done
4128     for G in $GRANT_CHECK_LIST; do
4129         eval GCHECK_ONLY_${G}=true
4130         done
4131 }
4132
4133 basetest() {
4134     if [[ $1 = [a-z]* ]]; then
4135         echo $1
4136     else
4137         echo ${1%%[a-z]*}
4138     fi
4139 }
4140
4141 # print a newline if the last test was skipped
4142 export LAST_SKIPPED=
4143 export ALWAYS_SKIPPED=
4144 #
4145 # Main entry into test-framework. This is called with the name and
4146 # description of a test. The name is used to find the function to run
4147 # the test using "test_$name".
4148 #
4149 # This supports a variety of methods of specifying specific test to
4150 # run or not run.  These need to be documented...
4151 #
4152 run_test() {
4153     assert_DIR
4154
4155     export base=`basetest $1`
4156     if [ ! -z "$ONLY" ]; then
4157         testname=ONLY_$1
4158         if [ ${!testname}x != x ]; then
4159             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4160             run_one_logged $1 "$2"
4161             return $?
4162         fi
4163         testname=ONLY_$base
4164         if [ ${!testname}x != x ]; then
4165             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4166             run_one_logged $1 "$2"
4167             return $?
4168         fi
4169         LAST_SKIPPED="y"
4170         return 0
4171     fi
4172
4173         LAST_SKIPPED="y"
4174         ALWAYS_SKIPPED="y"
4175     testname=EXCEPT_$1
4176     if [ ${!testname}x != x ]; then
4177         TESTNAME=test_$1 skip "skipping excluded test $1"
4178         return 0
4179     fi
4180     testname=EXCEPT_$base
4181     if [ ${!testname}x != x ]; then
4182         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4183         return 0
4184     fi
4185     testname=EXCEPT_ALWAYS_$1
4186     if [ ${!testname}x != x ]; then
4187         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4188         return 0
4189     fi
4190     testname=EXCEPT_ALWAYS_$base
4191     if [ ${!testname}x != x ]; then
4192         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4193         return 0
4194     fi
4195     testname=EXCEPT_SLOW_$1
4196     if [ ${!testname}x != x ]; then
4197         TESTNAME=test_$1 skip "skipping SLOW test $1"
4198         return 0
4199     fi
4200     testname=EXCEPT_SLOW_$base
4201     if [ ${!testname}x != x ]; then
4202         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4203         return 0
4204     fi
4205
4206     LAST_SKIPPED=
4207     ALWAYS_SKIPPED=
4208     run_one_logged $1 "$2"
4209
4210     return $?
4211 }
4212
4213 log() {
4214     echo "$*"
4215     module_loaded lnet || load_modules
4216
4217     local MSG="$*"
4218     # Get rid of '
4219     MSG=${MSG//\'/\\\'}
4220     MSG=${MSG//\(/\\\(}
4221     MSG=${MSG//\)/\\\)}
4222     MSG=${MSG//\;/\\\;}
4223     MSG=${MSG//\|/\\\|}
4224     MSG=${MSG//\>/\\\>}
4225     MSG=${MSG//\</\\\<}
4226     MSG=${MSG//\//\\\/}
4227     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
4228 }
4229
4230 trace() {
4231         log "STARTING: $*"
4232         strace -o $TMP/$1.strace -ttt $*
4233         RC=$?
4234         log "FINISHED: $*: rc $RC"
4235         return 1
4236 }
4237
4238 complete () {
4239     local duration=$1
4240
4241     banner test complete, duration $duration sec
4242     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
4243     echo duration $duration >>$TESTSUITELOG
4244 }
4245
4246 pass() {
4247         # Set TEST_STATUS here. It will be used for logging the result.
4248         TEST_STATUS="PASS"
4249
4250         if [[ -f $LOGDIR/err ]]; then
4251                 TEST_STATUS="FAIL"
4252         elif [[ -f $LOGDIR/skip ]]; then
4253                 TEST_STATUS="SKIP"
4254         fi
4255         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
4256 }
4257
4258 check_mds() {
4259     local FFREE=$(do_node $SINGLEMDS \
4260         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
4261     local FTOTAL=$(do_node $SINGLEMDS \
4262         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
4263
4264     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
4265 }
4266
4267 reset_fail_loc () {
4268     echo -n "Resetting fail_loc on all nodes..."
4269     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
4270     echo done.
4271 }
4272
4273
4274 #
4275 # Log a message (on all nodes) padded with "=" before and after. 
4276 # Also appends a timestamp and prepends the testsuite name.
4277
4278
4279 EQUALS="===================================================================================================="
4280 banner() {
4281     msg="== ${TESTSUITE} $*"
4282     last=${msg: -1:1}
4283     [[ $last != "=" && $last != " " ]] && msg="$msg "
4284     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
4285     # always include at least == after the message
4286     log "$msg== $(date +"%H:%M:%S (%s)")"
4287 }
4288
4289 #
4290 # Run a single test function and cleanup after it.  
4291 #
4292 # This function should be run in a subshell so the test func can
4293 # exit() without stopping the whole script.
4294 #
4295 run_one() {
4296     local testnum=$1
4297     local message=$2
4298     tfile=f.${TESTSUITE}.${testnum}
4299     export tdir=d0.${TESTSUITE}/d${base}
4300     export TESTNAME=test_$testnum
4301     local SAVE_UMASK=`umask`
4302     umask 0022
4303
4304     banner "test $testnum: $message"
4305     test_${testnum} || error "test_$testnum failed with $?"
4306     cd $SAVE_PWD
4307     reset_fail_loc
4308     check_grant ${testnum} || error "check_grant $testnum failed with $?"
4309     check_catastrophe || error "LBUG/LASSERT detected"
4310         if [ "$PARALLEL" != "yes" ]; then
4311                 ps auxww | grep -v grep | grep -q multiop &&
4312                                         error "multiop still running"
4313         fi
4314     unset TESTNAME
4315     unset tdir
4316     umask $SAVE_UMASK
4317     return 0
4318 }
4319
4320 #
4321 # Wrapper around run_one to ensure:
4322 #  - test runs in subshell
4323 #  - output of test is saved to separate log file for error reporting
4324 #  - test result is saved to data file
4325 #
4326 run_one_logged() {
4327         local BEFORE=`date +%s`
4328         local TEST_ERROR
4329         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
4330         local test_log=$LOGDIR/$name
4331         rm -rf $LOGDIR/err
4332         rm -rf $LOGDIR/skip
4333         local SAVE_UMASK=`umask`
4334         umask 0022
4335
4336         echo
4337         log_sub_test_begin test_${1}
4338         (run_one $1 "$2") 2>&1 | tee -i $test_log
4339         local RC=${PIPESTATUS[0]}
4340
4341         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
4342                 echo "test_$1 returned $RC" | tee $LOGDIR/err
4343
4344         duration=$((`date +%s` - $BEFORE))
4345         pass "$1" "(${duration}s)"
4346
4347         if [[ -f $LOGDIR/err ]]; then
4348                 TEST_ERROR=$(cat $LOGDIR/err)
4349         elif [[ -f $LOGDIR/skip ]]; then
4350                 TEST_ERROR=$(cat $LOGDIR/skip)
4351         fi
4352         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
4353
4354         if [ -f $LOGDIR/err ]; then
4355                 $FAIL_ON_ERROR && exit $RC
4356         fi
4357
4358         umask $SAVE_UMASK
4359
4360         return 0
4361 }
4362
4363 #
4364 # Print information of skipped tests to result.yml
4365 #
4366 skip_logged(){
4367         log_sub_test_begin $1
4368         shift
4369         log_sub_test_end "SKIP" "0" "0" "$@"
4370 }
4371
4372 canonical_path() {
4373     (cd `dirname $1`; echo $PWD/`basename $1`)
4374 }
4375
4376
4377 check_grant() {
4378     export base=`basetest $1`
4379     [ "$CHECK_GRANT" == "no" ] && return 0
4380
4381         testname=GCHECK_ONLY_${base}
4382         [ ${!testname}x == x ] && return 0
4383
4384     echo -n "checking grant......"
4385
4386         local clients=$CLIENTS
4387         [ -z $clients ] && clients=$(hostname)
4388
4389     # sync all the data and make sure no pending data on server
4390     do_nodes $clients sync
4391
4392     # get client grant
4393     client_grant=`do_nodes $clients \
4394                     "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" | \
4395                     awk '{total += $1} END{print total}'`
4396
4397     # get server grant
4398     server_grant=`do_nodes $(comma_list $(osts_nodes)) \
4399                     "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" |
4400                     awk '{total += $1} END{print total}'`
4401
4402     # check whether client grant == server grant
4403     if [ $client_grant -ne $server_grant ]; then
4404         echo "failed: client:${client_grant} server: ${server_grant}."
4405         do_nodes $(comma_list $(osts_nodes)) \
4406                    "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
4407         do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
4408         return 1
4409     else
4410         echo "pass: client:${client_grant} server: ${server_grant}"
4411     fi
4412
4413 }
4414
4415 ########################
4416 # helper functions
4417
4418 osc_to_ost()
4419 {
4420     osc=$1
4421     ost=`echo $1 | awk -F_ '{print $3}'`
4422     if [ -z $ost ]; then
4423         ost=`echo $1 | sed 's/-osc.*//'`
4424     fi
4425     echo $ost
4426 }
4427
4428 ostuuid_from_index()
4429 {
4430     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4431 }
4432
4433 ostname_from_index() {
4434     local uuid=$(ostuuid_from_index $1)
4435     echo ${uuid/_UUID/}
4436 }
4437
4438 index_from_ostuuid()
4439 {
4440     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
4441 }
4442
4443 mdtuuid_from_index()
4444 {
4445     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4446 }
4447
4448 # Description:
4449 #   Return unique identifier for given hostname
4450 host_id() {
4451         local host_name=$1
4452         echo $host_name | md5sum | cut -d' ' -f1
4453 }
4454
4455 # Description:
4456 #   Returns list of ip addresses for each interface
4457 local_addr_list() {
4458         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
4459 }
4460
4461 is_local_addr() {
4462         local addr=$1
4463         # Cache address list to avoid mutiple execution of local_addr_list
4464         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
4465         local i
4466         for i in $LOCAL_ADDR_LIST ; do
4467                 [[ "$i" == "$addr" ]] && return 0
4468         done
4469         return 1
4470 }
4471
4472 local_node() {
4473         local host_name=$1
4474         local is_local="IS_LOCAL_$(host_id $host_name)"
4475         if [ -z "${!is_local-}" ] ; then
4476                 eval $is_local=0
4477                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
4478                 is_local_addr "$host_ip" && eval $is_local=1
4479         fi
4480         [[ "${!is_local}" == "1" ]]
4481 }
4482
4483 remote_node () {
4484         local node=$1
4485         local_node $node && return 1
4486         return 0
4487 }
4488
4489 remote_mds ()
4490 {
4491     local node
4492     for node in $(mdts_nodes); do
4493         remote_node $node && return 0
4494     done
4495     return 1
4496 }
4497
4498 remote_mds_nodsh()
4499 {
4500     [ "$CLIENTONLY" ] && return 0 || true
4501     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
4502 }
4503
4504 require_dsh_mds()
4505 {
4506         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
4507             MSKIPPED=1 && return 1
4508         return 0
4509 }
4510
4511 remote_ost ()
4512 {
4513     local node
4514     for node in $(osts_nodes) ; do
4515         remote_node $node && return 0
4516     done
4517     return 1
4518 }
4519
4520 remote_ost_nodsh()
4521 {
4522     [ "$CLIENTONLY" ] && return 0 || true 
4523     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4524 }
4525
4526 require_dsh_ost()
4527 {
4528         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
4529             OSKIPPED=1 && return 1
4530         return 0
4531 }
4532
4533 remote_mgs_nodsh()
4534 {
4535     local MGS 
4536     MGS=$(facet_host mgs)
4537     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4538 }
4539
4540 local_mode ()
4541 {
4542     remote_mds_nodsh || remote_ost_nodsh || \
4543         $(single_local_node $(comma_list $(nodes_list)))
4544 }
4545
4546 remote_servers () {
4547     remote_ost && remote_mds
4548 }
4549
4550 # Get the active nodes for facets.
4551 facets_nodes () {
4552         local facets=$1
4553         local facet
4554         local nodes
4555         local nodes_sort
4556         local i
4557
4558         for facet in ${facets//,/ }; do
4559                 nodes="$nodes $(facet_active_host $facet)"
4560         done
4561
4562         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4563         echo -n $nodes_sort
4564 }
4565
4566 # Get all of the active MDS nodes.
4567 mdts_nodes () {
4568         echo -n $(facets_nodes $(get_facets MDS))
4569 }
4570
4571 # Get all of the active OSS nodes.
4572 osts_nodes () {
4573         echo -n $(facets_nodes $(get_facets OST))
4574 }
4575
4576 # Get all of the client nodes and active server nodes.
4577 nodes_list () {
4578         local nodes=$HOSTNAME
4579         local nodes_sort
4580         local i
4581
4582         # CLIENTS (if specified) contains the local client
4583         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4584
4585         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4586                 nodes="$nodes $(facets_nodes $(get_facets))"
4587         fi
4588
4589         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4590         echo -n $nodes_sort
4591 }
4592
4593 # Get all of the remote client nodes and remote active server nodes.
4594 remote_nodes_list () {
4595         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
4596 }
4597
4598 # Get all of the MDS nodes, including active and passive nodes.
4599 all_mdts_nodes () {
4600         local host
4601         local failover_host
4602         local nodes
4603         local nodes_sort
4604         local i
4605
4606         for i in $(seq $MDSCOUNT); do
4607                 host=mds${i}_HOST
4608                 failover_host=mds${i}failover_HOST
4609                 nodes="$nodes ${!host} ${!failover_host}"
4610         done
4611
4612         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4613         echo -n $nodes_sort
4614 }
4615
4616 # Get all of the OSS nodes, including active and passive nodes.
4617 all_osts_nodes () {
4618         local host
4619         local failover_host
4620         local nodes
4621         local nodes_sort
4622         local i
4623
4624         for i in $(seq $OSTCOUNT); do
4625                 host=ost${i}_HOST
4626                 failover_host=ost${i}failover_HOST
4627                 nodes="$nodes ${!host} ${!failover_host}"
4628         done
4629
4630         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4631         echo -n $nodes_sort
4632 }
4633
4634 # Get all of the server nodes, including active and passive nodes.
4635 all_server_nodes () {
4636         local nodes
4637         local nodes_sort
4638         local i
4639
4640         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
4641
4642         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4643         echo -n $nodes_sort
4644 }
4645
4646 # Get all of the client and server nodes, including active and passive nodes.
4647 all_nodes () {
4648         local nodes=$HOSTNAME
4649         local nodes_sort
4650         local i
4651
4652         # CLIENTS (if specified) contains the local client
4653         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4654
4655         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4656                 nodes="$nodes $(all_server_nodes)"
4657         fi
4658
4659         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4660         echo -n $nodes_sort
4661 }
4662
4663 init_clients_lists () {
4664     # Sanity check: exclude the local client from RCLIENTS
4665     local clients=$(hostlist_expand "$RCLIENTS")
4666     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
4667
4668     # Sanity check: exclude the dup entries
4669     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
4670
4671     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
4672
4673     # Sanity check: exclude the dup entries from CLIENTS
4674     # for those configs which has SINGLCLIENT set to local client
4675     clients=$(for i in $clients; do echo $i; done | sort -u)
4676
4677     CLIENTS=$(comma_list $clients)
4678     local -a remoteclients=($RCLIENTS)
4679     for ((i=0; $i<${#remoteclients[@]}; i++)); do
4680             varname=CLIENT$((i + 2))
4681             eval $varname=${remoteclients[i]}
4682     done
4683
4684     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
4685 }
4686
4687 get_random_entry () {
4688     local rnodes=$1
4689
4690     rnodes=${rnodes//,/ }
4691
4692     local -a nodes=($rnodes)
4693     local num=${#nodes[@]} 
4694     local i=$((RANDOM * num * 2 / 65536))
4695
4696     echo ${nodes[i]}
4697 }
4698
4699 client_only () {
4700     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
4701 }
4702
4703 is_patchless ()
4704 {
4705     lctl get_param version | grep -q patchless
4706 }
4707
4708 check_versions () {
4709     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
4710       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
4711 }
4712
4713 get_node_count() {
4714     local nodes="$@"
4715     echo $nodes | wc -w || true
4716 }
4717
4718 mixed_ost_devs () {
4719     local nodes=$(osts_nodes)
4720     local osscount=$(get_node_count "$nodes")
4721     [ ! "$OSTCOUNT" = "$osscount" ]
4722 }
4723
4724 mixed_mdt_devs () {
4725     local nodes=$(mdts_nodes)
4726     local mdtcount=$(get_node_count "$nodes")
4727     [ ! "$MDSCOUNT" = "$mdtcount" ]
4728 }
4729
4730 generate_machine_file() {
4731     local nodes=${1//,/ }
4732     local machinefile=$2
4733     rm -f $machinefile
4734     for node in $nodes; do
4735         echo $node >>$machinefile || \
4736             { echo "can not generate machinefile $machinefile" && return 1; }
4737     done
4738 }
4739
4740 get_stripe () {
4741     local file=$1/stripe
4742     touch $file
4743     $LFS getstripe -v $file || error
4744     rm -f $file
4745 }
4746
4747 setstripe_nfsserver () {
4748     local dir=$1
4749
4750     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
4751                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
4752
4753     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
4754
4755     do_nodev $nfsserver lfs setstripe "$@"
4756 }
4757
4758 # Check and add a test group.
4759 add_group() {
4760         local group_id=$1
4761         local group_name=$2
4762         local rc=0
4763
4764         local gid=$(getent group $group_name | cut -d: -f3)
4765         if [[ -n "$gid" ]]; then
4766                 [[ "$gid" -eq "$group_id" ]] || {
4767                         error_noexit "inconsistent group ID:" \
4768                                      "new: $group_id, old: $gid"
4769                         rc=1
4770                 }
4771         else
4772                 groupadd -g $group_id $group_name
4773                 rc=${PIPESTATUS[0]}
4774         fi
4775
4776         return $rc
4777 }
4778
4779 # Check and add a test user.
4780 add_user() {
4781         local user_id=$1
4782         shift
4783         local user_name=$1
4784         shift
4785         local group_name=$1
4786         shift
4787         local home=$1
4788         shift
4789         local opts="$@"
4790         local rc=0
4791
4792         local uid=$(getent passwd $user_name | cut -d: -f3)
4793         if [[ -n "$uid" ]]; then
4794                 if [[ "$uid" -eq "$user_id" ]]; then
4795                         local dir=$(getent passwd $user_name | cut -d: -f6)
4796                         if [[ "$dir" != "$home" ]]; then
4797                                 mkdir -p $home
4798                                 usermod -d $home $user_name
4799                                 rc=${PIPESTATUS[0]}
4800                         fi
4801                 else
4802                         error_noexit "inconsistent user ID:" \
4803                                      "new: $user_id, old: $uid"
4804                         rc=1
4805                 fi
4806         else
4807                 mkdir -p $home
4808                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
4809                 rc=${PIPESTATUS[0]}
4810         fi
4811
4812         return $rc
4813 }
4814
4815 check_runas_id_ret() {
4816     local myRC=0
4817     local myRUNAS_UID=$1
4818     local myRUNAS_GID=$2
4819     shift 2
4820     local myRUNAS=$@
4821     if [ -z "$myRUNAS" ]; then
4822         error_exit "myRUNAS command must be specified for check_runas_id"
4823     fi
4824     if $GSS_KRB5; then
4825         $myRUNAS krb5_login.sh || \
4826             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
4827     fi
4828     mkdir $DIR/d0_runas_test
4829     chmod 0755 $DIR
4830     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
4831     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
4832     rm -rf $DIR/d0_runas_test
4833     return $myRC
4834 }
4835
4836 check_runas_id() {
4837     local myRUNAS_UID=$1
4838     local myRUNAS_GID=$2
4839     shift 2
4840     local myRUNAS=$@
4841     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
4842         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
4843         Please set RUNAS_ID to some UID which exists on MDS and client or
4844         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
4845 }
4846
4847 # obtain the UID/GID for MPI_USER
4848 get_mpiuser_id() {
4849     local mpi_user=$1
4850
4851     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
4852 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
4853
4854     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
4855 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
4856 }
4857
4858 # obtain and cache Kerberos ticket-granting ticket
4859 refresh_krb5_tgt() {
4860     local myRUNAS_UID=$1
4861     local myRUNAS_GID=$2
4862     shift 2
4863     local myRUNAS=$@
4864     if [ -z "$myRUNAS" ]; then
4865         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
4866     fi
4867
4868     CLIENTS=${CLIENTS:-$HOSTNAME}
4869     do_nodes $CLIENTS "set -x
4870 if ! $myRUNAS krb5_login.sh; then
4871     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
4872     exit 1
4873 fi"
4874 }
4875
4876 # Run multiop in the background, but wait for it to print
4877 # "PAUSING" to its stdout before returning from this function.
4878 multiop_bg_pause() {
4879     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
4880     FILE=$1
4881     ARGS=$2
4882
4883     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
4884     mkfifo $TMPPIPE
4885
4886     echo "$MULTIOP_PROG $FILE v$ARGS"
4887     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
4888
4889     echo "TMPPIPE=${TMPPIPE}"
4890     read -t 60 multiop_output < $TMPPIPE
4891     if [ $? -ne 0 ]; then
4892         rm -f $TMPPIPE
4893         return 1
4894     fi
4895     rm -f $TMPPIPE
4896     if [ "$multiop_output" != "PAUSING" ]; then
4897         echo "Incorrect multiop output: $multiop_output"
4898         kill -9 $PID
4899         return 1
4900     fi
4901
4902     return 0
4903 }
4904
4905 do_and_time () {
4906     local cmd=$1
4907     local rc
4908
4909     SECONDS=0
4910     eval '$cmd'
4911     
4912     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
4913
4914     echo $SECONDS
4915     return $rc
4916 }
4917
4918 inodes_available () {
4919     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
4920     echo $IFree
4921 }
4922
4923 mdsrate_inodes_available () {
4924     local min_inodes=$(inodes_available)
4925     echo $((min_inodes * 99 / 100))
4926 }
4927
4928 # reset llite stat counters
4929 clear_llite_stats(){
4930         lctl set_param -n llite.*.stats 0
4931 }
4932
4933 # sum llite stat items
4934 calc_llite_stats() {
4935         local res=$(lctl get_param -n llite.*.stats |
4936                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4937         echo $res
4938 }
4939
4940 # reset osc stat counters
4941 clear_osc_stats(){
4942         lctl set_param -n osc.*.osc_stats 0
4943 }
4944
4945 # sum osc stat items
4946 calc_osc_stats() {
4947         local res=$(lctl get_param -n osc.*.osc_stats |
4948                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4949         echo $res
4950 }
4951
4952 calc_sum () {
4953         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
4954 }
4955
4956 calc_osc_kbytes () {
4957         df $MOUNT > /dev/null
4958         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
4959 }
4960
4961 # save_lustre_params(comma separated facet list, parameter_mask)
4962 # generate a stream of formatted strings (<facet> <param name>=<param value>)
4963 save_lustre_params() {
4964         local facets=$1
4965         local facet
4966         local nodes
4967         local node
4968
4969         for facet in ${facets//,/ }; do
4970                 node=$(facet_active_host $facet)
4971                 [[ *\ $node\ * = " $nodes " ]] && continue
4972                 nodes="$nodes $node"
4973
4974                 do_node $node "$LCTL get_param $2 |
4975                         while read s; do echo $facet \\\$s; done"
4976         done
4977 }
4978
4979 # restore lustre parameters from input stream, produces by save_lustre_params
4980 restore_lustre_params() {
4981         local facet
4982         local name
4983         local val
4984
4985         while IFS=" =" read facet name val; do
4986                 do_facet $facet "$LCTL set_param -n $name $val"
4987         done
4988 }
4989
4990 check_catastrophe() {
4991         local rnodes=${1:-$(comma_list $(remote_nodes_list))}
4992         local C=$CATASTROPHE
4993         [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
4994
4995         [ -z "$rnodes" ] && return 0
4996
4997         local data
4998         data=$(do_nodes "$rnodes" "rc=\\\$([ -f $C ] &&
4999                 echo \\\$(< $C) || echo 0);
5000                 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
5001                 exit \\\$rc")
5002         local rc=$?
5003         if [ -n "$data" ]; then
5004             echo $data
5005             return $rc
5006         fi
5007         return 0
5008 }
5009
5010 # CMD: determine mds index where directory inode presents
5011 get_mds_dir () {
5012     local dir=$1
5013     local file=$dir/f0.get_mds_dir_tmpfile
5014
5015     mkdir -p $dir
5016     rm -f $file
5017     sleep 1
5018     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5019     local -a oldused=($iused)
5020
5021     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
5022     sleep 1
5023     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5024     local -a newused=($iused)
5025
5026     local num=0
5027     for ((i=0; i<${#newused[@]}; i++)); do
5028          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
5029              echo $(( i + 1 ))
5030              rm -f $file
5031              return 0
5032          fi
5033     done
5034     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
5035 }
5036
5037 mdsrate_cleanup () {
5038         if [ -d $4 ]; then
5039                 mpi_run -np $1 ${MACHINEFILE_OPTION} $2 ${MDSRATE} --unlink \
5040                         --nfiles $3 --dir $4 --filefmt $5 $6
5041                 rmdir $4
5042         fi
5043 }
5044
5045 delayed_recovery_enabled () {
5046     local var=${SINGLEMDS}_svc
5047     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
5048 }
5049
5050 ########################
5051
5052 convert_facet2label() { 
5053     local facet=$1
5054
5055     if [ x$facet = xost ]; then
5056        facet=ost1
5057     fi
5058
5059     local varsvc=${facet}_svc
5060
5061     if [ -n ${!varsvc} ]; then
5062         echo ${!varsvc}
5063     else  
5064         error "No lablel for $facet!"
5065     fi
5066 }
5067
5068 get_clientosc_proc_path() {
5069     echo "${1}-osc-*"
5070 }
5071
5072 get_lustre_version () {
5073     local facet=${1:-"$SINGLEMDS"}    
5074     do_facet $facet $LCTL get_param -n version | awk '/^lustre:/ {print $2}'
5075 }
5076
5077 lustre_version_code() {
5078     local facet=${1:-"$SINGLEMDS"}
5079     version_code $(get_lustre_version $1)
5080 }
5081
5082 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
5083 # used by MDT would not be changed.
5084 # mdt lov: fsname-mdtlov
5085 # mdt osc: fsname-OSTXXXX-osc
5086 mds_on_old_device() {
5087     local mds=${1:-"$SINGLEMDS"}
5088
5089     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
5090         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
5091             > /dev/null 2>&1" && return 0
5092     fi
5093     return 1
5094 }
5095
5096 get_mdtosc_proc_path() {
5097     local mds_facet=$1
5098     local ost_label=${2:-"*OST*"}
5099
5100     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
5101     local mdt_label=$(convert_facet2label $mds_facet)
5102     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
5103
5104     if [ $(lustre_version_code $mds_facet) -le $(version_code 1.8.0) ] ||
5105        mds_on_old_device $mds_facet; then
5106         echo "${ost_label}-osc"
5107     else
5108         echo "${ost_label}-osc-${mdt_index}"
5109     fi
5110 }
5111
5112 get_osc_import_name() {
5113     local facet=$1
5114     local ost=$2
5115     local label=$(convert_facet2label $ost)
5116
5117     if [ "${facet:0:3}" = "mds" ]; then
5118         get_mdtosc_proc_path $facet $label
5119         return 0
5120     fi
5121
5122     get_clientosc_proc_path $label
5123     return 0
5124 }
5125
5126 _wait_import_state () {
5127     local expected=$1
5128     local CONN_PROC=$2
5129     local maxtime=${3:-$(max_recovery_time)}
5130     local CONN_STATE
5131     local i=0
5132
5133         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5134     while [ "${CONN_STATE}" != "${expected}" ]; do
5135         if [ "${expected}" == "DISCONN" ]; then
5136             # for disconn we can check after proc entry is removed
5137             [ "x${CONN_STATE}" == "x" ] && return 0
5138             #  with AT enabled, we can have connect request timeout near of
5139             # reconnect timeout and test can't see real disconnect
5140             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
5141         fi
5142         [ $i -ge $maxtime ] && \
5143             error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}" && \
5144             return 1
5145         sleep 1
5146         # Add uniq for multi-mount case
5147         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5148         i=$(($i + 1))
5149     done
5150
5151     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
5152     return 0
5153 }
5154
5155 wait_import_state() {
5156     local state=$1
5157     local params=$2
5158     local maxtime=${3:-$(max_recovery_time)}
5159     local param
5160
5161     for param in ${params//,/ }; do
5162         _wait_import_state $state $param $maxtime || return
5163     done
5164 }
5165
5166 wait_import_state_mount() {
5167         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5168                 return 0
5169         fi
5170
5171         wait_import_state $*
5172 }
5173
5174 # One client request could be timed out because server was not ready
5175 # when request was sent by client.
5176 # The request timeout calculation details :
5177 # ptl_send_rpc ()
5178 #      /* We give the server rq_timeout secs to process the req, and
5179 #      add the network latency for our local timeout. */
5180 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
5181 #           ptlrpc_at_get_net_latency(request) ;
5182 #
5183 # ptlrpc_connect_import ()
5184 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5185 #
5186 # init_imp_at () ->
5187 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
5188 # ptlrpc_at_get_net_latency(request) ->
5189 #       at_get (max (iat_net_latency=0, at_min)) = at_min
5190 #
5191 # i.e.:
5192 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
5193 # INITIAL_CONNECT_TIMEOUT + at_min
5194 #
5195 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
5196 # because we can not get this value in runtime,
5197 # the value depends on configure options, and it is not stored in /proc.
5198 # obd_support.h:
5199 # #define CONNECTION_SWITCH_MIN 5U
5200 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5201
5202 request_timeout () {
5203     local facet=$1
5204
5205     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5206     local init_connect_timeout=$TIMEOUT
5207     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5208
5209     local at_min=$(at_get $facet at_min)
5210
5211     echo $(( init_connect_timeout + at_min ))
5212 }
5213
5214 _wait_osc_import_state() {
5215     local facet=$1
5216     local ost_facet=$2
5217     local expected=$3
5218     local ost=$(get_osc_import_name $facet $ost_facet)
5219
5220         local param="osc.${ost}.ost_server_uuid"
5221         local i=0
5222
5223     # 1. wait the deadline of client 1st request (it could be skipped)
5224     # 2. wait the deadline of client 2nd request
5225     local maxtime=$(( 2 * $(request_timeout $facet)))
5226
5227         #During setup time, the osc might not be setup, it need wait
5228         #until list_param can return valid value. And also if there
5229         #are mulitple osc entries we should list all of them before
5230         #go to wait.
5231         local params=$($LCTL list_param $param 2>/dev/null || true)
5232         while [ -z "$params" ]; do
5233                 if [ $i -ge $maxtime ]; then
5234                         echo "can't get $param by list_param in $maxtime secs"
5235                         if [[ $facet != client* ]]; then
5236                                 echo "Go with $param directly"
5237                                 params=$param
5238                                 break
5239                         else
5240                                 return 1
5241                         fi
5242                 fi
5243                 sleep 1
5244                 i=$((i + 1))
5245                 params=$($LCTL list_param $param 2>/dev/null || true)
5246         done
5247
5248         if ! do_rpc_nodes "$(facet_active_host $facet)" \
5249                         wait_import_state $expected "$params" $maxtime; then
5250                 error "import is not in ${expected} state"
5251                 return 1
5252         fi
5253
5254         return 0
5255 }
5256
5257 wait_osc_import_state() {
5258         local facet=$1
5259         local ost_facet=$2
5260         local expected=$3
5261         local num
5262
5263         if [[ $facet = mds ]]; then
5264                 for num in $(seq $MDSCOUNT); do
5265                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
5266                 done
5267         else
5268                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
5269         fi
5270 }
5271
5272 get_clientmdc_proc_path() {
5273     echo "${1}-mdc-*"
5274 }
5275
5276 do_rpc_nodes () {
5277         local list=$1
5278         shift
5279
5280         [ -z "$list" ] && return 0
5281
5282         # Add paths to lustre tests for 32 and 64 bit systems.
5283         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
5284         local TESTPATH="$RLUSTRE/tests:"
5285         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
5286         do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
5287 }
5288
5289 wait_clients_import_state () {
5290     local list=$1
5291     local facet=$2
5292     local expected=$3
5293
5294     local facets=$facet
5295
5296     if [ "$FAILURE_MODE" = HARD ]; then
5297         facets=$(facets_on_host $(facet_active_host $facet))
5298     fi
5299
5300     for facet in ${facets//,/ }; do
5301     local label=$(convert_facet2label $facet)
5302     local proc_path
5303     case $facet in
5304         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
5305         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
5306         *) error "unknown facet!" ;;
5307     esac
5308     local params=$(expand_list $params $proc_path)
5309     done
5310
5311         if ! do_rpc_nodes "$list" wait_import_state_mount $expected $params; then
5312                 error "import is not in ${expected} state"
5313                 return 1
5314         fi
5315 }
5316
5317 oos_full() {
5318         local -a AVAILA
5319         local -a GRANTA
5320         local -a TOTALA
5321         local OSCFULL=1
5322         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
5323                   $LCTL get_param obdfilter.*.kbytesavail))
5324         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
5325                   $LCTL get_param -n obdfilter.*.tot_granted))
5326         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
5327                   $LCTL get_param -n obdfilter.*.kbytestotal))
5328         for ((i=0; i<${#AVAILA[@]}; i++)); do
5329                 local -a AVAIL1=(${AVAILA[$i]//=/ })
5330                 local -a TOTAL=(${TOTALA[$i]//=/ })
5331                 GRANT=$((${GRANTA[$i]}/1024))
5332                 # allow 1% of total space in bavail because of delayed
5333                 # allocation with ZFS which might release some free space after
5334                 # txg commit.  For small devices, we set a mininum of 8MB
5335                 local LIMIT=$((${TOTAL} / 100 + 8000))
5336                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
5337                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
5338                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
5339                         echo " FULL" || echo
5340         done
5341         return $OSCFULL
5342 }
5343
5344 pool_list () {
5345    do_facet mgs lctl pool_list $1
5346 }
5347
5348 create_pool() {
5349     local fsname=${1%%.*}
5350     local poolname=${1##$fsname.}
5351
5352     do_facet mgs lctl pool_new $1
5353     local RC=$?
5354     # get param should return err unless pool is created
5355     [[ $RC -ne 0 ]] && return $RC
5356
5357     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5358         2>/dev/null || echo foo" "" || RC=1
5359     if [[ $RC -eq 0 ]]; then
5360         add_pool_to_list $1
5361     else
5362         error "pool_new failed $1"
5363     fi
5364     return $RC
5365 }
5366
5367 add_pool_to_list () {
5368     local fsname=${1%%.*}
5369     local poolname=${1##$fsname.}
5370
5371     local listvar=${fsname}_CREATED_POOLS
5372     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
5373 }
5374
5375 remove_pool_from_list () {
5376     local fsname=${1%%.*}
5377     local poolname=${1##$fsname.}
5378
5379     local listvar=${fsname}_CREATED_POOLS
5380     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
5381 }
5382
5383 destroy_pool_int() {
5384     local ost
5385     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
5386         awk '$1 !~ /^Pool:/ {print $1}')
5387     for ost in $OSTS; do
5388         do_facet mgs lctl pool_remove $1 $ost
5389     done
5390     do_facet mgs lctl pool_destroy $1
5391 }
5392
5393 # <fsname>.<poolname> or <poolname>
5394 destroy_pool() {
5395     local fsname=${1%%.*}
5396     local poolname=${1##$fsname.}
5397
5398     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
5399
5400     local RC
5401
5402     pool_list $fsname.$poolname || return $?
5403
5404     destroy_pool_int $fsname.$poolname
5405     RC=$?
5406     [[ $RC -ne 0 ]] && return $RC
5407
5408     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5409       2>/dev/null || echo foo" "foo" || RC=1
5410
5411     if [[ $RC -eq 0 ]]; then
5412         remove_pool_from_list $fsname.$poolname
5413     else
5414         error "destroy pool failed $1"
5415     fi
5416     return $RC
5417 }
5418
5419 destroy_pools () {
5420     local fsname=${1:-$FSNAME}
5421     local poolname
5422     local listvar=${fsname}_CREATED_POOLS
5423
5424     pool_list $fsname
5425
5426     [ x${!listvar} = x ] && return 0
5427
5428     echo destroy the created pools: ${!listvar}
5429     for poolname in ${!listvar//,/ }; do
5430         destroy_pool $fsname.$poolname
5431     done
5432 }
5433
5434 cleanup_pools () {
5435     local fsname=${1:-$FSNAME}
5436     trap 0
5437     destroy_pools $fsname
5438 }
5439
5440 gather_logs () {
5441     local list=$1
5442
5443     local ts=$(date +%s)
5444     local docp=true
5445
5446     if [[ ! -f "$YAML_LOG" ]]; then
5447         # init_logging is not performed before gather_logs,
5448         # so the $LOGDIR needs to be checked here
5449         check_shared_dir $LOGDIR && touch $LOGDIR/shared
5450     fi
5451
5452     [ -f $LOGDIR/shared ] && docp=false
5453
5454     # dump lustre logs, dmesg
5455
5456     prefix="$TESTLOG_PREFIX.$TESTNAME"
5457     suffix="$ts.log"
5458     echo "Dumping lctl log to ${prefix}.*.${suffix}"
5459
5460     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
5461         echo "Dumping logs only on local client."
5462         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
5463         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
5464         return
5465     fi
5466
5467     do_nodesv $list \
5468         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
5469          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
5470     if [ ! -f $LOGDIR/shared ]; then
5471         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
5472     fi
5473 }
5474
5475 do_ls () {
5476     local mntpt_root=$1
5477     local num_mntpts=$2
5478     local dir=$3
5479     local i
5480     local cmd
5481     local pids
5482     local rc=0
5483
5484     for i in $(seq 0 $num_mntpts); do
5485         cmd="ls -laf ${mntpt_root}$i/$dir"
5486         echo + $cmd;
5487         $cmd > /dev/null &
5488         pids="$pids $!"
5489     done
5490     echo pids=$pids
5491     for pid in $pids; do
5492         wait $pid || rc=$?
5493     done
5494
5495     return $rc
5496 }
5497
5498 # target_start_and_reset_recovery_timer()
5499 #        service_time = at_est2timeout(service_time);
5500 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
5501 #                             INITIAL_CONNECT_TIMEOUT);
5502 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
5503 #define CONNECTION_SWITCH_INC 1
5504 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5505 #define CONNECTION_SWITCH_MIN 5U
5506
5507 max_recovery_time () {
5508     local init_connect_timeout=$(( TIMEOUT / 20 ))
5509     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5510
5511     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
5512
5513     echo $service_time 
5514 }
5515
5516 get_clients_mount_count () {
5517     local clients=${CLIENTS:-`hostname`}
5518
5519     # we need to take into account the clients mounts and
5520     # exclude mds/ost mounts if any;
5521     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
5522 }
5523
5524 # gss functions
5525 PROC_CLI="srpc_info"
5526
5527 combination()
5528 {
5529     local M=$1
5530     local N=$2
5531     local R=1
5532
5533     if [ $M -lt $N ]; then
5534         R=0
5535     else
5536         N=$((N + 1))
5537         while [ $N -lt $M ]; do
5538             R=$((R * N))
5539             N=$((N + 1))
5540         done
5541     fi
5542
5543     echo $R
5544     return 0
5545 }
5546
5547 calc_connection_cnt() {
5548     local dir=$1
5549
5550     # MDT->MDT = 2 * C(M, 2)
5551     # MDT->OST = M * O
5552     # CLI->OST = C * O
5553     # CLI->MDT = C * M
5554     comb_m2=$(combination $MDSCOUNT 2)
5555
5556     local num_clients=$(get_clients_mount_count)
5557
5558     local cnt_mdt2mdt=$((comb_m2 * 2))
5559     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
5560     local cnt_cli2ost=$((num_clients * OSTCOUNT))
5561     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
5562     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
5563     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
5564     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
5565
5566     local var=cnt_$dir
5567     local res=${!var}
5568
5569     echo $res
5570 }
5571
5572 set_rule()
5573 {
5574     local tgt=$1
5575     local net=$2
5576     local dir=$3
5577     local flavor=$4
5578     local cmd="$tgt.srpc.flavor"
5579
5580     if [ $net == "any" ]; then
5581         net="default"
5582     fi
5583     cmd="$cmd.$net"
5584
5585     if [ $dir != "any" ]; then
5586         cmd="$cmd.$dir"
5587     fi
5588
5589     cmd="$cmd=$flavor"
5590     log "Setting sptlrpc rule: $cmd"
5591     do_facet mgs "$LCTL conf_param $cmd"
5592 }
5593
5594 count_flvr()
5595 {
5596     local output=$1
5597     local flavor=$2
5598     local count=0
5599
5600     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
5601     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
5602
5603     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
5604
5605     if [ "x$bulkspec" != "x" ]; then
5606         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
5607
5608         if [ "x$algs" != "x" ]; then
5609             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
5610         else
5611             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
5612             if [ $bulk == "bulkn" ]; then
5613                 bulk_count=`echo "$output" | grep "bulk flavor" \
5614                             | grep "null/null" | wc -l`
5615             elif [ $bulk == "bulki" ]; then
5616                 bulk_count=`echo "$output" | grep "bulk flavor" \
5617                             | grep "/null" | grep -v "null/" | wc -l`
5618             else
5619                 bulk_count=`echo "$output" | grep "bulk flavor" \
5620                             | grep -v "/null" | grep -v "null/" | wc -l`
5621             fi
5622         fi
5623
5624         [ $bulk_count -lt $count ] && count=$bulk_count
5625     fi
5626
5627     echo $count
5628 }
5629
5630 flvr_cnt_cli2mdt()
5631 {
5632     local flavor=$1
5633     local cnt
5634
5635     local clients=${CLIENTS:-`hostname`}
5636
5637     for c in ${clients//,/ }; do
5638         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
5639         tmpcnt=`count_flvr "$output" $flavor`
5640         cnt=$((cnt + tmpcnt))
5641     done
5642     echo $cnt
5643 }
5644
5645 flvr_cnt_cli2ost()
5646 {
5647     local flavor=$1
5648     local cnt
5649
5650     local clients=${CLIENTS:-`hostname`}
5651
5652     for c in ${clients//,/ }; do
5653         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
5654         tmpcnt=`count_flvr "$output" $flavor`
5655         cnt=$((cnt + tmpcnt))
5656     done
5657     echo $cnt
5658 }
5659
5660 flvr_cnt_mdt2mdt()
5661 {
5662     local flavor=$1
5663     local cnt=0
5664
5665     if [ $MDSCOUNT -le 1 ]; then
5666         echo 0
5667         return
5668     fi
5669
5670     for num in `seq $MDSCOUNT`; do
5671         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
5672         tmpcnt=`count_flvr "$output" $flavor`
5673         cnt=$((cnt + tmpcnt))
5674     done
5675     echo $cnt;
5676 }
5677
5678 flvr_cnt_mdt2ost()
5679 {
5680     local flavor=$1
5681     local cnt=0
5682     local mdtosc
5683
5684     for num in `seq $MDSCOUNT`; do
5685         mdtosc=$(get_mdtosc_proc_path mds$num)
5686         mdtosc=${mdtosc/-MDT*/-MDT\*}
5687         output=$(do_facet mds$num lctl get_param -n \
5688             osc.$mdtosc.$PROC_CLI 2>/dev/null)
5689         tmpcnt=`count_flvr "$output" $flavor`
5690         cnt=$((cnt + tmpcnt))
5691     done
5692     echo $cnt;
5693 }
5694
5695 flvr_cnt_mgc2mgs()
5696 {
5697     local flavor=$1
5698
5699     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
5700     count_flvr "$output" $flavor
5701 }
5702
5703 do_check_flavor()
5704 {
5705     local dir=$1        # from to
5706     local flavor=$2     # flavor expected
5707     local res=0
5708
5709     if [ $dir == "cli2mdt" ]; then
5710         res=`flvr_cnt_cli2mdt $flavor`
5711     elif [ $dir == "cli2ost" ]; then
5712         res=`flvr_cnt_cli2ost $flavor`
5713     elif [ $dir == "mdt2mdt" ]; then
5714         res=`flvr_cnt_mdt2mdt $flavor`
5715     elif [ $dir == "mdt2ost" ]; then
5716         res=`flvr_cnt_mdt2ost $flavor`
5717     elif [ $dir == "all2ost" ]; then
5718         res1=`flvr_cnt_mdt2ost $flavor`
5719         res2=`flvr_cnt_cli2ost $flavor`
5720         res=$((res1 + res2))
5721     elif [ $dir == "all2mdt" ]; then
5722         res1=`flvr_cnt_mdt2mdt $flavor`
5723         res2=`flvr_cnt_cli2mdt $flavor`
5724         res=$((res1 + res2))
5725     elif [ $dir == "all2all" ]; then
5726         res1=`flvr_cnt_mdt2ost $flavor`
5727         res2=`flvr_cnt_cli2ost $flavor`
5728         res3=`flvr_cnt_mdt2mdt $flavor`
5729         res4=`flvr_cnt_cli2mdt $flavor`
5730         res=$((res1 + res2 + res3 + res4))
5731     fi
5732
5733     echo $res
5734 }
5735
5736 wait_flavor()
5737 {
5738     local dir=$1        # from to
5739     local flavor=$2     # flavor expected
5740     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
5741
5742     local res=0
5743
5744     for ((i=0;i<20;i++)); do
5745         echo -n "checking $dir..."
5746         res=$(do_check_flavor $dir $flavor)
5747         echo "found $res/$expect $flavor connections"
5748         [ $res -ge $expect ] && return 0
5749         sleep 4
5750     done
5751
5752     echo "Error checking $flavor of $dir: expect $expect, actual $res"
5753     return 1
5754 }
5755
5756 restore_to_default_flavor()
5757 {
5758     local proc="mgs.MGS.live.$FSNAME"
5759
5760     echo "restoring to default flavor..."
5761
5762     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5763
5764     # remove all existing rules if any
5765     if [ $nrule -ne 0 ]; then
5766         echo "$nrule existing rules"
5767         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
5768             echo "remove rule: $rule"
5769             spec=`echo $rule | awk -F = '{print $1}'`
5770             do_facet mgs "$LCTL conf_param -d $spec"
5771         done
5772     fi
5773
5774     # verify no rules left
5775     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5776     [ $nrule -ne 0 ] && error "still $nrule rules left"
5777
5778     # wait for default flavor to be applied
5779     # currently default flavor for all connections are 'null'
5780     wait_flavor all2all null
5781     echo "now at default flavor settings"
5782 }
5783
5784 set_flavor_all()
5785 {
5786     local flavor=${1:-null}
5787
5788     echo "setting all flavor to $flavor"
5789
5790     # FIXME need parameter to this fn
5791     # and remove global vars
5792     local cnt_all2all=$(calc_connection_cnt all2all)
5793
5794     local res=$(do_check_flavor all2all $flavor)
5795     if [ $res -eq $cnt_all2all ]; then
5796         echo "already have total $res $flavor connections"
5797         return
5798     fi
5799
5800     echo "found $res $flavor out of total $cnt_all2all connections"
5801     restore_to_default_flavor
5802
5803     [[ $flavor = null ]] && return 0
5804
5805     set_rule $FSNAME any any $flavor
5806     wait_flavor all2all $flavor
5807 }
5808
5809
5810 check_logdir() {
5811     local dir=$1
5812     # Checking for shared logdir
5813     if [ ! -d $dir ]; then
5814         # Not found. Create local logdir
5815         mkdir -p $dir
5816     else
5817         touch $dir/check_file.$(hostname -s)
5818     fi
5819     return 0
5820 }
5821
5822 check_write_access() {
5823     local dir=$1
5824     local node
5825     local file
5826
5827     for node in $(nodes_list); do
5828         file=$dir/check_file.$(short_hostname $node)
5829         if [[ ! -f "$file" ]]; then
5830             # Logdir not accessible/writable from this node.
5831             return 1
5832         fi
5833         rm -f $file || return 1
5834     done
5835     return 0
5836 }
5837
5838 init_logging() {
5839     if [[ -n $YAML_LOG ]]; then
5840         return
5841     fi
5842     local SAVE_UMASK=`umask`
5843     umask 0000
5844
5845     export YAML_LOG=${LOGDIR}/results.yml
5846     mkdir -p $LOGDIR
5847     init_clients_lists
5848
5849     if [ ! -f $YAML_LOG ]; then       # If the yaml log already exists then we will just append to it
5850       if check_shared_dir $LOGDIR; then
5851           touch $LOGDIR/shared
5852           echo "Logging to shared log directory: $LOGDIR"
5853       else
5854           echo "Logging to local directory: $LOGDIR"
5855       fi
5856
5857       yml_nodes_file $LOGDIR >> $YAML_LOG
5858       yml_results_file >> $YAML_LOG
5859     fi
5860
5861     umask $SAVE_UMASK
5862 }
5863
5864 log_test() {
5865     yml_log_test $1 >> $YAML_LOG
5866 }
5867
5868 log_test_status() {
5869      yml_log_test_status $@ >> $YAML_LOG
5870 }
5871
5872 log_sub_test_begin() {
5873     yml_log_sub_test_begin "$@" >> $YAML_LOG
5874 }
5875
5876 log_sub_test_end() {
5877     yml_log_sub_test_end "$@" >> $YAML_LOG
5878 }
5879
5880 run_llverdev()
5881 {
5882         local dev=$1
5883         local llverdev_opts=$2
5884         local devname=$(basename $1)
5885         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
5886         # loop devices aren't in /proc/partitions
5887         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
5888
5889         size=$(($size / 1024 / 1024)) # Gb
5890
5891         local partial_arg=""
5892         # Run in partial (fast) mode if the size
5893         # of a partition > 1 GB
5894         [ $size -gt 1 ] && partial_arg="-p"
5895
5896         llverdev --force $partial_arg $llverdev_opts $dev
5897 }
5898
5899 run_llverfs()
5900 {
5901         local dir=$1
5902         local llverfs_opts=$2
5903         local use_partial_arg=$3
5904         local partial_arg=""
5905         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
5906
5907         # Run in partial (fast) mode if the size
5908         # of a partition > 1 GB
5909         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
5910
5911         llverfs $partial_arg $llverfs_opts $dir
5912 }
5913
5914 remove_mdt_files() {
5915         local facet=$1
5916         local mdtdev=$2
5917         shift 2
5918         local files="$@"
5919         local mntpt=$(facet_mntpt $facet)
5920         local opts=$MDS_MOUNT_OPTS
5921
5922         echo "removing files from $mdtdev on $facet: $files"
5923         if [ $(facet_fstype $facet) == ldiskfs ] &&
5924            ! do_facet $facet test -b $mdtdev; then
5925                 opts=$(csa_add "$opts" -o loop)
5926         fi
5927         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5928                 return $?
5929         rc=0;
5930         for f in $files; do
5931                 rm $mntpt/ROOT/$f || { rc=$?; break; }
5932         done
5933         umount -f $mntpt || return $?
5934         return $rc
5935 }
5936
5937 duplicate_mdt_files() {
5938         local facet=$1
5939         local mdtdev=$2
5940         shift 2
5941         local files="$@"
5942         local mntpt=$(facet_mntpt $facet)
5943         local opts=$MDS_MOUNT_OPTS
5944
5945         echo "duplicating files on $mdtdev on $facet: $files"
5946         mkdir -p $mntpt || return $?
5947         if [ $(facet_fstype $facet) == ldiskfs ] &&
5948            ! do_facet $facet test -b $mdtdev; then
5949                 opts=$(csa_add "$opts" -o loop)
5950         fi
5951         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5952                 return $?
5953
5954     do_umount() {
5955         trap 0
5956         popd > /dev/null
5957         rm $tmp
5958         umount -f $mntpt
5959     }
5960     trap do_umount EXIT
5961
5962     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
5963     pushd $mntpt/ROOT > /dev/null || return $?
5964     rc=0
5965     for f in $files; do
5966         touch $f.bad || return $?
5967         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
5968         rc=${PIPESTATUS[0]}
5969         [ $rc -eq 0 ] || return $rc
5970         setfattr --restore $tmp || return $?
5971     done
5972     do_umount
5973 }
5974
5975 run_sgpdd () {
5976     local devs=${1//,/ }
5977     shift
5978     local params=$@
5979     local rslt=$TMP/sgpdd_survey
5980
5981     # sgpdd-survey cleanups ${rslt}.* files
5982
5983     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
5984     echo + $cmd
5985     eval $cmd
5986     cat ${rslt}.detail
5987 }
5988
5989 # returns the canonical name for an ldiskfs device
5990 ldiskfs_canon() {
5991         local dev="$1"
5992         local facet="$2"
5993
5994         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
5995 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
5996     echo dm-\\\${foo##*:};
5997 else
5998     echo \\\$(basename \\\$dv);
5999 fi;"
6000 }
6001
6002 is_sanity_benchmark() {
6003     local benchmarks="dbench bonnie iozone fsx"
6004     local suite=$1
6005     for b in $benchmarks; do
6006         if [ "$b" == "$suite" ]; then
6007             return 0
6008         fi
6009     done
6010     return 1
6011 }
6012
6013 min_ost_size () {
6014     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
6015 }
6016
6017 # Get the block size of the filesystem.
6018 get_block_size() {
6019     local facet=$1
6020     local device=$2
6021     local size
6022
6023     size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
6024            awk '/^Block size:/ {print $3}')
6025     echo $size
6026 }
6027
6028 # Check whether the "large_xattr" feature is enabled or not.
6029 large_xattr_enabled() {
6030         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
6031
6032         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6033
6034         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 | grep -q large_xattr"
6035         return ${PIPESTATUS[0]}
6036 }
6037
6038 # Get the maximum xattr size supported by the filesystem.
6039 max_xattr_size() {
6040     local size
6041
6042     if large_xattr_enabled; then
6043         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
6044         size=65536
6045     else
6046         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6047         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
6048
6049         # maximum xattr size = size of block - size of header -
6050         #                      size of 1 entry - 4 null bytes
6051         size=$((block_size - 32 - 32 - 4))
6052     fi
6053
6054     echo $size
6055 }
6056
6057 # Dump the value of the named xattr from a file.
6058 get_xattr_value() {
6059     local xattr_name=$1
6060     local file=$2
6061
6062     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
6063 }
6064
6065 # Generate a string with size of $size bytes.
6066 generate_string() {
6067     local size=${1:-1024} # in bytes
6068
6069     echo "$(head -c $size < /dev/zero | tr '\0' y)"
6070 }
6071
6072 reformat_external_journal() {
6073         if [ ! -z ${EJOURNAL} ]; then
6074                 local rcmd="do_facet ${SINGLEMDS}"
6075
6076                 echo "reformat external journal on ${SINGLEMDS}:${EJOURNAL}"
6077                 ${rcmd} mke2fs -O journal_dev ${EJOURNAL} || return 1
6078         fi
6079 }
6080
6081 # MDT file-level backup/restore
6082 mds_backup_restore() {
6083         local devname=$(mdsdevname ${SINGLEMDS//mds/})
6084         local mntpt=$(facet_mntpt brpt)
6085         local rcmd="do_facet ${SINGLEMDS}"
6086         local metaea=${TMP}/backup_restore.ea
6087         local metadata=${TMP}/backup_restore.tgz
6088         local opts=${MDS_MOUNT_OPTS}
6089         local svc=${SINGLEMDS}_svc
6090         local igif=$1
6091
6092         if ! ${rcmd} test -b ${devname}; then
6093                 opts=$(csa_add "$opts" -o loop)
6094         fi
6095
6096         echo "file-level backup/restore on ${SINGLEMDS}:${devname}"
6097
6098         # step 1: build mount point
6099         ${rcmd} mkdir -p $mntpt
6100         # step 2: cleanup old backup
6101         ${rcmd} rm -f $metaea $metadata
6102         # step 3: mount dev
6103         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6104         if [ ! -z $igif ]; then
6105                 # step 3.5: rm .lustre
6106                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
6107         fi
6108         # step 4: backup metaea
6109         echo "backup EA"
6110         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
6111                 return 2
6112         # step 5: backup metadata
6113         echo "backup data"
6114         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
6115         # step 6: umount
6116         ${rcmd} umount -d $mntpt || return 4
6117         # step 7: reformat external journal if needed
6118         reformat_external_journal || return 5
6119         # step 8: reformat dev
6120         echo "reformat new device"
6121         add ${SINGLEMDS} $(mkfs_opts ${SINGLEMDS} ${devname}) --backfstype \
6122                 ldiskfs --reformat ${devname} $(mdsvdevname 1) > /dev/null ||
6123                 exit 6
6124         # step 9: mount dev
6125         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
6126         # step 10: restore metadata
6127         echo "restore data"
6128         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
6129         # step 11: restore metaea
6130         echo "restore EA"
6131         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
6132         # step 12: remove recovery logs
6133         echo "remove recovery logs"
6134         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
6135         # step 13: umount dev
6136         ${rcmd} umount -d $mntpt || return 10
6137         # step 14: cleanup tmp backup
6138         ${rcmd} rm -f $metaea $metadata
6139         # step 15: reset device label - it's not virgin on
6140         ${rcmd} e2label $devname ${!svc}
6141 }
6142
6143 # remove OI files
6144 mds_remove_ois() {
6145         local devname=$(mdsdevname ${SINGLEMDS//mds/})
6146         local mntpt=$(facet_mntpt brpt)
6147         local rcmd="do_facet ${SINGLEMDS}"
6148         local idx=$1
6149         local opts=${MDS_MOUNT_OPTS}
6150
6151         if ! ${rcmd} test -b ${devname}; then
6152                 opts=$(csa_add "$opts" -o loop)
6153         fi
6154
6155         echo "remove OI files: idx=${idx}"
6156
6157         # step 1: build mount point
6158         ${rcmd} mkdir -p $mntpt
6159         # step 2: mount dev
6160         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6161         if [ -z $idx ]; then
6162                 # step 3: remove all OI files
6163                 ${rcmd} rm -fv $mntpt/oi.16*
6164         elif [ $idx -lt 2 ]; then
6165                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
6166         else
6167                 local i
6168
6169                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
6170                 for ((i=${idx}; i<64; i=$((i * idx)))); do
6171                         ${rcmd} rm -fv $mntpt/oi.16.${i}
6172                 done
6173         fi
6174         # step 4: umount
6175         ${rcmd} umount -d $mntpt || return 2
6176         # OI files will be recreated when mounted as lustre next time.
6177 }
6178
6179 # generate maloo upload-able log file name
6180 # \param logname specify unique part of file name
6181 generate_logname() {
6182         local logname=${1:-"default_logname"}
6183
6184         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
6185 }
6186
6187 # mkdir directory on different MDTs
6188 test_mkdir() {
6189         local option
6190         local parent
6191         local child
6192         local path
6193         local dir
6194         local rc=0
6195
6196         if [ $# -eq 2 ]; then
6197                 option=$1
6198                 path=$2
6199         else
6200                 path=$1
6201         fi
6202
6203         child=${path##*/}
6204         parent=${path%/*}
6205
6206         if [ "$parent" == "$child" ]; then
6207                 parent=$(pwd)
6208         fi
6209
6210         if [ "$option" == "-p" -a -d ${parent}/${child} ]; then
6211                 return $rc
6212         fi
6213
6214         # it needs to check whether there is further / in child
6215         dir=$(echo $child | awk -F '/' '{print $2}')
6216         if [ ! -z "$dir" ]; then
6217                 local subparent=$(echo $child | awk -F '/' '{ print $1 }')
6218                 parent=${parent}"/"${subparent}
6219                 child=$dir
6220         fi
6221
6222         if [ ! -d ${parent} ]; then
6223                 if [ "$option" == "-p" ]; then
6224                         mkdir -p ${parent}
6225                 else
6226                         return 1
6227                 fi
6228         fi
6229
6230         if [ $MDSCOUNT -le 1 ]; then
6231                 mkdir $option ${parent}/${child} || rc=$?
6232         else
6233                 local mdt_idx=$($LFS getstripe -M $parent)
6234
6235                 if [ "$mdt_idx" -ne 0 ]; then
6236                         mkdir $option ${parent}/${child} || rc=$?
6237                         return $rc
6238                 fi
6239
6240                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
6241                 local mdt_idx=$((test_num % MDSCOUNT))
6242                 echo "mkdir $mdt_idx for ${parent}/${child}"
6243                 $LFS setdirstripe -i $mdt_idx ${parent}/${child} || rc=$?
6244         fi
6245         return $rc
6246 }