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