Whamcloud - gitweb
LU-3503 test: only create single directory by test_mkdir()
[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=400;; # largest seen is 384
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 nodes="$(facets_hosts ${facets})"
3466                 if [ -n "$nodes" ] ; then
3467                         do_nodes $nodes "$LCTL set_param \
3468                                  osd-ldiskfs.track_declares_assert=1 || true"
3469                 fi
3470         fi
3471
3472         init_gss
3473         if $GSS; then
3474                 set_flavor_all $SEC
3475         fi
3476
3477         if [ "$ONLY" == "setup" ]; then
3478                 exit 0
3479         fi
3480 }
3481
3482 restore_mount () {
3483    local clients=${CLIENTS:-$HOSTNAME}
3484    local mntpt=$1
3485
3486    zconf_mount_clients $clients $mntpt
3487 }
3488
3489 cleanup_mount () {
3490     local clients=${CLIENTS:-$HOSTNAME}
3491     local mntpt=$1
3492
3493     zconf_umount_clients $clients $mntpt    
3494 }
3495
3496 cleanup_and_setup_lustre() {
3497     if [ "$ONLY" == "cleanup" -o "`mount | grep $MOUNT`" ]; then
3498         lctl set_param debug=0 || true
3499         cleanupall
3500         if [ "$ONLY" == "cleanup" ]; then
3501             exit 0
3502         fi
3503     fi
3504     check_and_setup_lustre
3505 }
3506
3507 # Get all of the server target devices from a given server node and type.
3508 get_mnt_devs() {
3509         local node=$1
3510         local type=$2
3511         local devs
3512         local dev
3513
3514         if [ "$type" == ost ]; then
3515                 devs=$(get_osd_param $node "" mntdev)
3516         else
3517                 devs=$(do_node $node \
3518                        "lctl get_param -n osd-*.$FSNAME-M*.mntdev")
3519         fi
3520         for dev in $devs; do
3521                 case $dev in
3522                 *loop*) do_node $node "losetup $dev" | \
3523                                 sed -e "s/.*(//" -e "s/).*//" ;;
3524                 *) echo $dev ;;
3525                 esac
3526         done
3527 }
3528
3529 # Get all of the server target devices.
3530 get_svr_devs() {
3531     local i
3532
3533     # MDT device
3534     MDTDEV=$(get_mnt_devs $(mdts_nodes) mdt)
3535
3536     # OST devices
3537     i=0
3538     for node in $(osts_nodes); do
3539         OSTDEVS[i]=$(get_mnt_devs $node ost)
3540         i=$((i + 1))
3541     done
3542 }
3543
3544 # Run e2fsck on MDT or OST device.
3545 run_e2fsck() {
3546     local node=$1
3547     local target_dev=$2
3548     local extra_opts=$3
3549
3550     df > /dev/null      # update statfs data on disk
3551     local cmd="$E2FSCK -d -v -t -t -f $extra_opts $target_dev"
3552     echo $cmd
3553     local rc=0
3554     do_node $node $cmd || rc=$?
3555     [ $rc -le $FSCK_MAX_ERR ] || \
3556         error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3557     return 0
3558 }
3559
3560 # verify a directory is shared among nodes.
3561 check_shared_dir() {
3562         local dir=$1
3563
3564         [ -z "$dir" ] && return 1
3565         do_rpc_nodes "$(comma_list $(nodes_list))" check_logdir $dir
3566         check_write_access $dir || return 1
3567         return 0
3568 }
3569
3570 # Run e2fsck on MDT and OST(s) to generate databases used for lfsck.
3571 generate_db() {
3572     local i
3573     local ostidx
3574     local dev
3575
3576         [[ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]] ||
3577                 { skip "Lustre 2.2.0 lacks the patch for LU-1255"; exit 0; }
3578
3579     check_shared_dir $SHARED_DIRECTORY ||
3580         error "$SHARED_DIRECTORY isn't a shared directory"
3581
3582     export MDSDB=$SHARED_DIRECTORY/mdsdb
3583     export OSTDB=$SHARED_DIRECTORY/ostdb
3584
3585     [ $MDSCOUNT -eq 1 ] || error "CMD is not supported"
3586
3587     run_e2fsck $(mdts_nodes) $MDTDEV "-n --mdsdb $MDSDB"
3588
3589     i=0
3590     ostidx=0
3591     OSTDB_LIST=""
3592     for node in $(osts_nodes); do
3593         for dev in ${OSTDEVS[i]}; do
3594             run_e2fsck $node $dev "-n --mdsdb $MDSDB --ostdb $OSTDB-$ostidx"
3595             OSTDB_LIST="$OSTDB_LIST $OSTDB-$ostidx"
3596             ostidx=$((ostidx + 1))
3597         done
3598         i=$((i + 1))
3599     done
3600 }
3601
3602 # Run lfsck on server node if lfsck can't be found on client (LU-2571)
3603 run_lfsck_remote() {
3604         local cmd="$LFSCK_BIN -c -l --mdsdb $MDSDB --ostdb $OSTDB_LIST $MOUNT"
3605         local client=$1
3606         local mounted=true
3607         local rc=0
3608
3609         #Check if lustre is already mounted
3610         do_rpc_nodes $client is_mounted $MOUNT || mounted=false
3611         if ! $mounted; then
3612                 zconf_mount $client $MOUNT ||
3613                         error "failed to mount Lustre on $client"
3614         fi
3615         #Run lfsck
3616         echo $cmd
3617         do_node $node $cmd || rc=$?
3618         #Umount if necessary
3619         if ! $mounted; then
3620                 zconf_umount $client $MOUNT ||
3621                         error "failed to unmount Lustre on $client"
3622         fi
3623
3624         [ $rc -le $FSCK_MAX_ERR ] ||
3625                 error "$cmd returned $rc, should be <= $FSCK_MAX_ERR"
3626         echo "lfsck finished with rc=$rc"
3627
3628         return $rc
3629 }
3630
3631 run_lfsck() {
3632         local facets="client $SINGLEMDS"
3633         local found=false
3634         local facet
3635         local node
3636         local rc=0
3637
3638         for facet in $facets; do
3639                 node=$(facet_active_host $facet)
3640                 if check_progs_installed $node $LFSCK_BIN; then
3641                         found=true
3642                         break
3643                 fi
3644         done
3645         ! $found && error "None of \"$facets\" supports lfsck"
3646
3647         run_lfsck_remote $node || rc=$?
3648
3649         rm -rvf $MDSDB* $OSTDB* || true
3650         return $rc
3651 }
3652
3653 check_and_cleanup_lustre() {
3654     if [ "$LFSCK_ALWAYS" = "yes" -a "$TESTSUITE" != "lfsck" ]; then
3655         get_svr_devs
3656         generate_db
3657         run_lfsck
3658     fi
3659
3660         if is_mounted $MOUNT; then
3661                 [ -n "$DIR" ] && rm -rf $DIR/[Rdfs][0-9]* ||
3662                         error "remove sub-test dirs failed"
3663                 [ "$ENABLE_QUOTA" ] && restore_quota || true
3664         fi
3665
3666     if [ "$I_UMOUNTED2" = "yes" ]; then
3667         restore_mount $MOUNT2 || error "restore $MOUNT2 failed"
3668     fi
3669
3670     if [ "$I_MOUNTED2" = "yes" ]; then
3671         cleanup_mount $MOUNT2
3672     fi
3673
3674     if [ "$I_MOUNTED" = "yes" ]; then
3675         cleanupall -f || error "cleanup failed"
3676         unset I_MOUNTED
3677     fi
3678 }
3679
3680 #######
3681 # General functions
3682
3683 wait_for_function () {
3684     local quiet=""
3685
3686     # suppress fn both stderr and stdout
3687     if [ "$1" = "--quiet" ]; then
3688         shift
3689         quiet=" > /dev/null 2>&1"
3690
3691     fi
3692
3693     local fn=$1
3694     local max=${2:-900}
3695     local sleep=${3:-5}
3696
3697     local wait=0
3698
3699     while true; do
3700
3701         eval $fn $quiet && return 0
3702
3703         wait=$((wait + sleep))
3704         [ $wait -lt $max ] || return 1
3705         echo waiting $fn, $((max - wait)) secs left ...
3706         sleep $sleep
3707     done
3708 }
3709
3710 check_network() {
3711     local host=$1
3712     local max=$2
3713     local sleep=${3:-5}
3714
3715     echo `date +"%H:%M:%S (%s)"` waiting for $host network $max secs ...
3716     if ! wait_for_function --quiet "ping -c 1 -w 3 $host" $max $sleep ; then
3717         echo "Network not available!"
3718         exit 1
3719     fi
3720
3721     echo `date +"%H:%M:%S (%s)"` network interface is UP
3722 }
3723
3724 no_dsh() {
3725     shift
3726     eval $@
3727 }
3728
3729 # Convert a space-delimited list to a comma-delimited list.  If the input is
3730 # only whitespace, ensure the output is empty (i.e. "") so [ -n $list ] works
3731 comma_list() {
3732         # echo is used to convert newlines to spaces, since it doesn't
3733         # introduce a trailing space as using "tr '\n' ' '" does
3734         echo $(tr -s " " "\n" <<< $* | sort -b -u) | tr ' ' ','
3735 }
3736
3737 list_member () {
3738     local list=$1
3739     local item=$2
3740     echo $list | grep -qw $item
3741 }
3742
3743 # list, excluded are the comma separated lists
3744 exclude_items_from_list () {
3745     local list=$1
3746     local excluded=$2
3747     local item
3748
3749     list=${list//,/ }
3750     for item in ${excluded//,/ }; do
3751         list=$(echo " $list " | sed -re "s/\s+$item\s+/ /g")
3752     done
3753     echo $(comma_list $list)
3754 }
3755
3756 # list, expand  are the comma separated lists
3757 expand_list () {
3758     local list=${1//,/ }
3759     local expand=${2//,/ }
3760     local expanded=
3761
3762     expanded=$(for i in $list $expand; do echo $i; done | sort -u)
3763     echo $(comma_list $expanded)
3764 }
3765
3766 testslist_filter () {
3767     local script=$LUSTRE/tests/${TESTSUITE}.sh
3768
3769     [ -f $script ] || return 0
3770
3771     local start_at=$START_AT
3772     local stop_at=$STOP_AT
3773
3774     local var=${TESTSUITE//-/_}_START_AT
3775     [ x"${!var}" != x ] && start_at=${!var}
3776     var=${TESTSUITE//-/_}_STOP_AT
3777     [ x"${!var}" != x ] && stop_at=${!var}
3778
3779     sed -n 's/^test_\([^ (]*\).*/\1/p' $script | \
3780         awk ' BEGIN { if ("'${start_at:-0}'" != 0) flag = 1 }
3781             /^'${start_at}'$/ {flag = 0}
3782             {if (flag == 1) print $0}
3783             /^'${stop_at}'$/ { flag = 1 }'
3784 }
3785
3786 absolute_path() {
3787     (cd `dirname $1`; echo $PWD/`basename $1`)
3788 }
3789
3790 get_facets () {
3791     local types=${1:-"OST MDS MGS"}
3792
3793     local list=""
3794
3795     for entry in $types; do
3796         local name=$(echo $entry | tr "[:upper:]" "[:lower:]")
3797         local type=$(echo $entry | tr "[:lower:]" "[:upper:]")
3798
3799         case $type in
3800                 MGS ) list="$list $name";;
3801             MDS|OST ) local count=${type}COUNT
3802                        for ((i=1; i<=${!count}; i++)) do
3803                           list="$list ${name}$i"
3804                       done;;
3805                   * ) error "Invalid facet type"
3806                  exit 1;;
3807         esac
3808     done
3809     echo $(comma_list $list)
3810 }
3811
3812 ##################################
3813 # Adaptive Timeouts funcs
3814
3815 at_is_enabled() {
3816     # only check mds, we assume at_max is the same on all nodes
3817     local at_max=$(do_facet $SINGLEMDS "lctl get_param -n at_max")
3818     if [ $at_max -eq 0 ]; then
3819         return 1
3820     else
3821         return 0
3822     fi
3823 }
3824
3825 at_get() {
3826     local facet=$1
3827     local at=$2
3828
3829     # suppose that all ost-s have the same $at value set
3830     [ $facet != "ost" ] || facet=ost1
3831
3832     do_facet $facet "lctl get_param -n $at"
3833 }
3834
3835 at_max_get() {
3836     at_get $1 at_max
3837 }
3838
3839 at_min_get() {
3840         at_get $1 at_min
3841 }
3842
3843 at_max_set() {
3844     local at_max=$1
3845     shift
3846
3847     local facet
3848     local hosts
3849     for facet in $@; do
3850         if [ $facet == "ost" ]; then
3851             facet=$(get_facets OST)
3852         elif [ $facet == "mds" ]; then
3853             facet=$(get_facets MDS)
3854         fi
3855         hosts=$(expand_list $hosts $(facets_hosts $facet))
3856     done
3857
3858     do_nodes $hosts lctl set_param at_max=$at_max
3859 }
3860
3861 ##################################
3862 # OBD_FAIL funcs
3863
3864 drop_request() {
3865 # OBD_FAIL_MDS_ALL_REQUEST_NET
3866     RC=0
3867     do_facet $SINGLEMDS lctl set_param fail_loc=0x123
3868     do_facet client "$1" || RC=$?
3869     do_facet $SINGLEMDS lctl set_param fail_loc=0
3870     return $RC
3871 }
3872
3873 drop_reply() {
3874 # OBD_FAIL_MDS_ALL_REPLY_NET
3875     RC=0
3876     do_facet $SINGLEMDS lctl set_param fail_loc=0x122
3877     do_facet client "$@" || RC=$?
3878     do_facet $SINGLEMDS lctl set_param fail_loc=0
3879     return $RC
3880 }
3881
3882 drop_reint_reply() {
3883 # OBD_FAIL_MDS_REINT_NET_REP
3884     RC=0
3885     do_facet $SINGLEMDS lctl set_param fail_loc=0x119
3886     do_facet client "$@" || RC=$?
3887     do_facet $SINGLEMDS lctl set_param fail_loc=0
3888     return $RC
3889 }
3890
3891 drop_update_reply() {
3892 # OBD_FAIL_UPDATE_OBJ_NET_REP
3893         local index=$1
3894         shift 1
3895         RC=0
3896         do_facet mds${index} lctl set_param fail_loc=0x1701
3897         do_facet client "$@" || RC=$?
3898         do_facet mds${index} lctl set_param fail_loc=0
3899         return $RC
3900 }
3901
3902 pause_bulk() {
3903 #define OBD_FAIL_OST_BRW_PAUSE_BULK      0x214
3904     RC=0
3905     do_facet ost1 lctl set_param fail_loc=0x214
3906     do_facet client "$1" || RC=$?
3907     do_facet client "sync"
3908     do_facet ost1 lctl set_param fail_loc=0
3909     return $RC
3910 }
3911
3912 drop_ldlm_cancel() {
3913 #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
3914         local RC=0
3915         local list=$(comma_list $(mdts_nodes) $(osts_nodes))
3916         do_nodes $list lctl set_param fail_loc=0x304
3917
3918         do_facet client "$@" || RC=$?
3919
3920         do_nodes $list lctl set_param fail_loc=0
3921         return $RC
3922 }
3923
3924 drop_bl_callback() {
3925 #define OBD_FAIL_LDLM_BL_CALLBACK_NET                   0x305
3926         RC=0
3927         do_facet client lctl set_param fail_loc=0x80000305
3928         do_facet client "$@" || RC=$?
3929         do_facet client lctl set_param fail_loc=0
3930         return $RC
3931 }
3932
3933 drop_ldlm_reply() {
3934 #define OBD_FAIL_LDLM_REPLY              0x30c
3935     RC=0
3936     do_facet $SINGLEMDS lctl set_param fail_loc=0x30c
3937     do_facet client "$@" || RC=$?
3938     do_facet $SINGLEMDS lctl set_param fail_loc=0
3939     return $RC
3940 }
3941
3942 clear_failloc() {
3943     facet=$1
3944     pause=$2
3945     sleep $pause
3946     echo "clearing fail_loc on $facet"
3947     do_facet $facet "lctl set_param fail_loc=0 2>/dev/null || true"
3948 }
3949
3950 set_nodes_failloc () {
3951     do_nodes $(comma_list $1)  lctl set_param fail_loc=$2
3952 }
3953
3954 cancel_lru_locks() {
3955     $LCTL mark "cancel_lru_locks $1 start"
3956     for d in `lctl get_param -N ldlm.namespaces.*.lru_size | egrep -i $1`; do
3957         $LCTL set_param -n $d=clear
3958     done
3959     $LCTL get_param ldlm.namespaces.*.lock_unused_count | egrep -i $1 | grep -v '=0'
3960     $LCTL mark "cancel_lru_locks $1 stop"
3961 }
3962
3963 default_lru_size()
3964 {
3965         NR_CPU=$(grep -c "processor" /proc/cpuinfo)
3966         DEFAULT_LRU_SIZE=$((100 * NR_CPU))
3967         echo "$DEFAULT_LRU_SIZE"
3968 }
3969
3970 lru_resize_enable()
3971 {
3972     lctl set_param ldlm.namespaces.*$1*.lru_size=0
3973 }
3974
3975 lru_resize_disable()
3976 {
3977     lctl set_param ldlm.namespaces.*$1*.lru_size $(default_lru_size)
3978 }
3979
3980 pgcache_empty() {
3981     local FILE
3982     for FILE in `lctl get_param -N "llite.*.dump_page_cache"`; do
3983         if [ `lctl get_param -n $FILE | wc -l` -gt 1 ]; then
3984             echo there is still data in page cache $FILE ?
3985             lctl get_param -n $FILE
3986             return 1
3987         fi
3988     done
3989     return 0
3990 }
3991
3992 debugsave() {
3993     DEBUGSAVE="$(lctl get_param -n debug)"
3994 }
3995
3996 debugrestore() {
3997     [ -n "$DEBUGSAVE" ] && \
3998         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=\\\"${DEBUGSAVE}\\\";"
3999     DEBUGSAVE=""
4000 }
4001
4002 debug_size_save() {
4003     DEBUG_SIZE_SAVED="$(lctl get_param -n debug_mb)"
4004 }
4005
4006 debug_size_restore() {
4007     [ -n "$DEBUG_SIZE_SAVED" ] && \
4008         do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE_SAVED"
4009     DEBUG_SIZE_SAVED=""
4010 }
4011
4012 start_full_debug_logging() {
4013     debugsave
4014     debug_size_save
4015
4016     local FULLDEBUG=-1
4017     local DEBUG_SIZE=150
4018
4019     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug_mb=$DEBUG_SIZE"
4020     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$FULLDEBUG;"
4021 }
4022
4023 stop_full_debug_logging() {
4024     debug_size_restore
4025     debugrestore
4026 }
4027
4028 # prints bash call stack
4029 log_trace_dump() {
4030         echo "  Trace dump:"
4031         for (( i=1; i < ${#BASH_LINENO[*]} ; i++ )) ; do
4032                 local s=${BASH_SOURCE[$i]}
4033                 local l=${BASH_LINENO[$i-1]}
4034                 local f=${FUNCNAME[$i]}
4035                 echo "  = $s:$l:$f()"
4036         done
4037 }
4038
4039 ##################################
4040 # Test interface
4041 ##################################
4042
4043 error_noexit() {
4044         local TYPE=${TYPE:-"FAIL"}
4045
4046         local dump=true
4047         # do not dump logs if $1=false
4048         if [ "x$1" = "xfalse" ]; then
4049                 shift
4050                 dump=false
4051         fi
4052
4053
4054         log " ${TESTSUITE} ${TESTNAME}: @@@@@@ ${TYPE}: $@ "
4055         log_trace_dump
4056
4057         mkdir -p $LOGDIR
4058         # We need to dump the logs on all nodes
4059         if $dump; then
4060                 gather_logs $(comma_list $(nodes_list))
4061         fi
4062
4063         debugrestore
4064         [ "$TESTSUITELOG" ] &&
4065                 echo "$TESTSUITE: $TYPE: $TESTNAME $@" >> $TESTSUITELOG
4066         if [ -z "$*" ]; then
4067                 echo "error() without useful message, please fix" > $LOGDIR/err
4068         else
4069                 echo "$@" > $LOGDIR/err
4070         fi
4071 }
4072
4073 exit_status () {
4074         local status=0
4075         local log=$TESTSUITELOG
4076
4077         [ -f "$log" ] && grep -q FAIL $log && status=1
4078         exit $status
4079 }
4080
4081 error() {
4082         error_noexit "$@"
4083         exit 1
4084 }
4085
4086 error_exit() {
4087         error "$@"
4088 }
4089
4090 # use only if we are ignoring failures for this test, bugno required.
4091 # (like ALWAYS_EXCEPT, but run the test and ignore the results.)
4092 # e.g. error_ignore 5494 "your message"
4093 error_ignore() {
4094         local TYPE="IGNORE (bz$1)"
4095         shift
4096         error_noexit "$@"
4097 }
4098
4099 error_and_remount() {
4100         error_noexit "$@"
4101         remount_client $MOUNT
4102         exit 1
4103 }
4104
4105 skip_env () {
4106         $FAIL_ON_SKIP_ENV && error false $@ || skip $@
4107 }
4108
4109 skip() {
4110         echo
4111         log " SKIP: $TESTSUITE $TESTNAME $@"
4112
4113         if [[ -n "$ALWAYS_SKIPPED" ]]; then
4114                 skip_logged $TESTNAME "$@"
4115         else
4116                 mkdir -p $LOGDIR
4117                 echo "$@" > $LOGDIR/skip
4118         fi
4119
4120         [[ -n "$TESTSUITELOG" ]] &&
4121                 echo "$TESTSUITE: SKIP: $TESTNAME $@" >> $TESTSUITELOG || true
4122 }
4123
4124 build_test_filter() {
4125     EXCEPT="$EXCEPT $(testslist_filter)"
4126
4127     [ "$ONLY" ] && log "only running test `echo $ONLY`"
4128     for O in $ONLY; do
4129         eval ONLY_${O}=true
4130     done
4131     [ "$EXCEPT$ALWAYS_EXCEPT" ] && \
4132         log "excepting tests: `echo $EXCEPT $ALWAYS_EXCEPT`"
4133     [ "$EXCEPT_SLOW" ] && \
4134         log "skipping tests SLOW=no: `echo $EXCEPT_SLOW`"
4135     for E in $EXCEPT; do
4136         eval EXCEPT_${E}=true
4137     done
4138     for E in $ALWAYS_EXCEPT; do
4139         eval EXCEPT_ALWAYS_${E}=true
4140     done
4141     for E in $EXCEPT_SLOW; do
4142         eval EXCEPT_SLOW_${E}=true
4143     done
4144     for G in $GRANT_CHECK_LIST; do
4145         eval GCHECK_ONLY_${G}=true
4146         done
4147 }
4148
4149 basetest() {
4150     if [[ $1 = [a-z]* ]]; then
4151         echo $1
4152     else
4153         echo ${1%%[a-z]*}
4154     fi
4155 }
4156
4157 # print a newline if the last test was skipped
4158 export LAST_SKIPPED=
4159 export ALWAYS_SKIPPED=
4160 #
4161 # Main entry into test-framework. This is called with the name and
4162 # description of a test. The name is used to find the function to run
4163 # the test using "test_$name".
4164 #
4165 # This supports a variety of methods of specifying specific test to
4166 # run or not run.  These need to be documented...
4167 #
4168 run_test() {
4169     assert_DIR
4170
4171     export base=`basetest $1`
4172     if [ ! -z "$ONLY" ]; then
4173         testname=ONLY_$1
4174         if [ ${!testname}x != x ]; then
4175             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4176             run_one_logged $1 "$2"
4177             return $?
4178         fi
4179         testname=ONLY_$base
4180         if [ ${!testname}x != x ]; then
4181             [ "$LAST_SKIPPED" ] && echo "" && LAST_SKIPPED=
4182             run_one_logged $1 "$2"
4183             return $?
4184         fi
4185         LAST_SKIPPED="y"
4186         return 0
4187     fi
4188
4189         LAST_SKIPPED="y"
4190         ALWAYS_SKIPPED="y"
4191     testname=EXCEPT_$1
4192     if [ ${!testname}x != x ]; then
4193         TESTNAME=test_$1 skip "skipping excluded test $1"
4194         return 0
4195     fi
4196     testname=EXCEPT_$base
4197     if [ ${!testname}x != x ]; then
4198         TESTNAME=test_$1 skip "skipping excluded test $1 (base $base)"
4199         return 0
4200     fi
4201     testname=EXCEPT_ALWAYS_$1
4202     if [ ${!testname}x != x ]; then
4203         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1"
4204         return 0
4205     fi
4206     testname=EXCEPT_ALWAYS_$base
4207     if [ ${!testname}x != x ]; then
4208         TESTNAME=test_$1 skip "skipping ALWAYS excluded test $1 (base $base)"
4209         return 0
4210     fi
4211     testname=EXCEPT_SLOW_$1
4212     if [ ${!testname}x != x ]; then
4213         TESTNAME=test_$1 skip "skipping SLOW test $1"
4214         return 0
4215     fi
4216     testname=EXCEPT_SLOW_$base
4217     if [ ${!testname}x != x ]; then
4218         TESTNAME=test_$1 skip "skipping SLOW test $1 (base $base)"
4219         return 0
4220     fi
4221
4222     LAST_SKIPPED=
4223     ALWAYS_SKIPPED=
4224     run_one_logged $1 "$2"
4225
4226     return $?
4227 }
4228
4229 log() {
4230     echo "$*"
4231     module_loaded lnet || load_modules
4232
4233     local MSG="$*"
4234     # Get rid of '
4235     MSG=${MSG//\'/\\\'}
4236     MSG=${MSG//\(/\\\(}
4237     MSG=${MSG//\)/\\\)}
4238     MSG=${MSG//\;/\\\;}
4239     MSG=${MSG//\|/\\\|}
4240     MSG=${MSG//\>/\\\>}
4241     MSG=${MSG//\</\\\<}
4242     MSG=${MSG//\//\\\/}
4243     do_nodes $(comma_list $(nodes_list)) $LCTL mark "$MSG" 2> /dev/null || true
4244 }
4245
4246 trace() {
4247         log "STARTING: $*"
4248         strace -o $TMP/$1.strace -ttt $*
4249         RC=$?
4250         log "FINISHED: $*: rc $RC"
4251         return 1
4252 }
4253
4254 complete () {
4255     local duration=$1
4256
4257     banner test complete, duration $duration sec
4258     [ -f "$TESTSUITELOG" ] && egrep .FAIL $TESTSUITELOG || true
4259     echo duration $duration >>$TESTSUITELOG
4260 }
4261
4262 pass() {
4263         # Set TEST_STATUS here. It will be used for logging the result.
4264         TEST_STATUS="PASS"
4265
4266         if [[ -f $LOGDIR/err ]]; then
4267                 TEST_STATUS="FAIL"
4268         elif [[ -f $LOGDIR/skip ]]; then
4269                 TEST_STATUS="SKIP"
4270         fi
4271         echo "$TEST_STATUS $@" 2>&1 | tee -a $TESTSUITELOG
4272 }
4273
4274 check_mds() {
4275     local FFREE=$(do_node $SINGLEMDS \
4276         lctl get_param -n osd*.*MDT*.filesfree | calc_sum)
4277     local FTOTAL=$(do_node $SINGLEMDS \
4278         lctl get_param -n osd*.*MDT*.filestotal | calc_sum)
4279
4280     [ $FFREE -ge $FTOTAL ] && error "files free $FFREE > total $FTOTAL" || true
4281 }
4282
4283 reset_fail_loc () {
4284     echo -n "Resetting fail_loc on all nodes..."
4285     do_nodes $(comma_list $(nodes_list)) "lctl set_param -n fail_loc=0 2>/dev/null || true"
4286     echo done.
4287 }
4288
4289
4290 #
4291 # Log a message (on all nodes) padded with "=" before and after. 
4292 # Also appends a timestamp and prepends the testsuite name.
4293
4294
4295 EQUALS="===================================================================================================="
4296 banner() {
4297     msg="== ${TESTSUITE} $*"
4298     last=${msg: -1:1}
4299     [[ $last != "=" && $last != " " ]] && msg="$msg "
4300     msg=$(printf '%s%.*s'  "$msg"  $((${#EQUALS} - ${#msg})) $EQUALS )
4301     # always include at least == after the message
4302     log "$msg== $(date +"%H:%M:%S (%s)")"
4303 }
4304
4305 #
4306 # Run a single test function and cleanup after it.  
4307 #
4308 # This function should be run in a subshell so the test func can
4309 # exit() without stopping the whole script.
4310 #
4311 run_one() {
4312     local testnum=$1
4313     local message=$2
4314     tfile=f.${TESTSUITE}.${testnum}
4315     export tdir=d0.${TESTSUITE}/d${base}
4316     export TESTNAME=test_$testnum
4317     local SAVE_UMASK=`umask`
4318     umask 0022
4319
4320     banner "test $testnum: $message"
4321     test_${testnum} || error "test_$testnum failed with $?"
4322     cd $SAVE_PWD
4323     reset_fail_loc
4324     check_grant ${testnum} || error "check_grant $testnum failed with $?"
4325     check_catastrophe || error "LBUG/LASSERT detected"
4326         if [ "$PARALLEL" != "yes" ]; then
4327                 ps auxww | grep -v grep | grep -q multiop &&
4328                                         error "multiop still running"
4329         fi
4330     unset TESTNAME
4331     unset tdir
4332     umask $SAVE_UMASK
4333     return 0
4334 }
4335
4336 #
4337 # Wrapper around run_one to ensure:
4338 #  - test runs in subshell
4339 #  - output of test is saved to separate log file for error reporting
4340 #  - test result is saved to data file
4341 #
4342 run_one_logged() {
4343         local BEFORE=`date +%s`
4344         local TEST_ERROR
4345         local name=${TESTSUITE}.test_${1}.test_log.$(hostname -s).log
4346         local test_log=$LOGDIR/$name
4347         rm -rf $LOGDIR/err
4348         rm -rf $LOGDIR/skip
4349         local SAVE_UMASK=`umask`
4350         umask 0022
4351
4352         echo
4353         log_sub_test_begin test_${1}
4354         (run_one $1 "$2") 2>&1 | tee -i $test_log
4355         local RC=${PIPESTATUS[0]}
4356
4357         [ $RC -ne 0 ] && [ ! -f $LOGDIR/err ] && \
4358                 echo "test_$1 returned $RC" | tee $LOGDIR/err
4359
4360         duration=$((`date +%s` - $BEFORE))
4361         pass "$1" "(${duration}s)"
4362
4363         if [[ -f $LOGDIR/err ]]; then
4364                 TEST_ERROR=$(cat $LOGDIR/err)
4365         elif [[ -f $LOGDIR/skip ]]; then
4366                 TEST_ERROR=$(cat $LOGDIR/skip)
4367         fi
4368         log_sub_test_end $TEST_STATUS $duration "$RC" "$TEST_ERROR"
4369
4370         if [ -f $LOGDIR/err ]; then
4371                 $FAIL_ON_ERROR && exit $RC
4372         fi
4373
4374         umask $SAVE_UMASK
4375
4376         return 0
4377 }
4378
4379 #
4380 # Print information of skipped tests to result.yml
4381 #
4382 skip_logged(){
4383         log_sub_test_begin $1
4384         shift
4385         log_sub_test_end "SKIP" "0" "0" "$@"
4386 }
4387
4388 canonical_path() {
4389     (cd `dirname $1`; echo $PWD/`basename $1`)
4390 }
4391
4392
4393 check_grant() {
4394     export base=`basetest $1`
4395     [ "$CHECK_GRANT" == "no" ] && return 0
4396
4397         testname=GCHECK_ONLY_${base}
4398         [ ${!testname}x == x ] && return 0
4399
4400     echo -n "checking grant......"
4401
4402         local clients=$CLIENTS
4403         [ -z $clients ] && clients=$(hostname)
4404
4405     # sync all the data and make sure no pending data on server
4406     do_nodes $clients sync
4407
4408     # get client grant
4409     client_grant=`do_nodes $clients \
4410                     "$LCTL get_param -n osc.${FSNAME}-*.cur_*grant_bytes" | \
4411                     awk '{total += $1} END{print total}'`
4412
4413     # get server grant
4414     server_grant=`do_nodes $(comma_list $(osts_nodes)) \
4415                     "$LCTL get_param -n obdfilter.${FSNAME}-OST*.tot_granted" |
4416                     awk '{total += $1} END{print total}'`
4417
4418     # check whether client grant == server grant
4419     if [ $client_grant -ne $server_grant ]; then
4420         echo "failed: client:${client_grant} server: ${server_grant}."
4421         do_nodes $(comma_list $(osts_nodes)) \
4422                    "$LCTL get_param obdfilter.${FSNAME}-OST*.tot*"
4423         do_nodes $clients "$LCTL get_param osc.${FSNAME}-*.cur_*_bytes"
4424         return 1
4425     else
4426         echo "pass: client:${client_grant} server: ${server_grant}"
4427     fi
4428
4429 }
4430
4431 ########################
4432 # helper functions
4433
4434 osc_to_ost()
4435 {
4436     osc=$1
4437     ost=`echo $1 | awk -F_ '{print $3}'`
4438     if [ -z $ost ]; then
4439         ost=`echo $1 | sed 's/-osc.*//'`
4440     fi
4441     echo $ost
4442 }
4443
4444 ostuuid_from_index()
4445 {
4446     $LFS osts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4447 }
4448
4449 ostname_from_index() {
4450     local uuid=$(ostuuid_from_index $1)
4451     echo ${uuid/_UUID/}
4452 }
4453
4454 index_from_ostuuid()
4455 {
4456     $LFS osts $2 | sed -ne "/${1}/s/\(.*\): .* .*$/\1/p"
4457 }
4458
4459 mdtuuid_from_index()
4460 {
4461     $LFS mdts $2 | sed -ne "/^$1: /s/.* \(.*\) .*$/\1/p"
4462 }
4463
4464 # Description:
4465 #   Return unique identifier for given hostname
4466 host_id() {
4467         local host_name=$1
4468         echo $host_name | md5sum | cut -d' ' -f1
4469 }
4470
4471 # Description:
4472 #   Returns list of ip addresses for each interface
4473 local_addr_list() {
4474         ip addr | awk '/inet\ / {print $2}' | awk -F\/ '{print $1}'
4475 }
4476
4477 is_local_addr() {
4478         local addr=$1
4479         # Cache address list to avoid mutiple execution of local_addr_list
4480         LOCAL_ADDR_LIST=${LOCAL_ADDR_LIST:-$(local_addr_list)}
4481         local i
4482         for i in $LOCAL_ADDR_LIST ; do
4483                 [[ "$i" == "$addr" ]] && return 0
4484         done
4485         return 1
4486 }
4487
4488 local_node() {
4489         local host_name=$1
4490         local is_local="IS_LOCAL_$(host_id $host_name)"
4491         if [ -z "${!is_local-}" ] ; then
4492                 eval $is_local=0
4493                 local host_ip=$($LUSTRE/tests/resolveip $host_name)
4494                 is_local_addr "$host_ip" && eval $is_local=1
4495         fi
4496         [[ "${!is_local}" == "1" ]]
4497 }
4498
4499 remote_node () {
4500         local node=$1
4501         local_node $node && return 1
4502         return 0
4503 }
4504
4505 remote_mds ()
4506 {
4507     local node
4508     for node in $(mdts_nodes); do
4509         remote_node $node && return 0
4510     done
4511     return 1
4512 }
4513
4514 remote_mds_nodsh()
4515 {
4516     [ "$CLIENTONLY" ] && return 0 || true
4517     remote_mds && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$mds_HOST" ]
4518 }
4519
4520 require_dsh_mds()
4521 {
4522         remote_mds_nodsh && echo "SKIP: $TESTSUITE: remote MDS with nodsh" && \
4523             MSKIPPED=1 && return 1
4524         return 0
4525 }
4526
4527 remote_ost ()
4528 {
4529     local node
4530     for node in $(osts_nodes) ; do
4531         remote_node $node && return 0
4532     done
4533     return 1
4534 }
4535
4536 remote_ost_nodsh()
4537 {
4538     [ "$CLIENTONLY" ] && return 0 || true 
4539     remote_ost && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4540 }
4541
4542 require_dsh_ost()
4543 {
4544         remote_ost_nodsh && echo "SKIP: $TESTSUITE: remote OST with nodsh" && \
4545             OSKIPPED=1 && return 1
4546         return 0
4547 }
4548
4549 remote_mgs_nodsh()
4550 {
4551     local MGS 
4552     MGS=$(facet_host mgs)
4553     remote_node $MGS && [ "$PDSH" = "no_dsh" -o -z "$PDSH" -o -z "$ost_HOST" ]
4554 }
4555
4556 local_mode ()
4557 {
4558     remote_mds_nodsh || remote_ost_nodsh || \
4559         $(single_local_node $(comma_list $(nodes_list)))
4560 }
4561
4562 remote_servers () {
4563     remote_ost && remote_mds
4564 }
4565
4566 # Get the active nodes for facets.
4567 facets_nodes () {
4568         local facets=$1
4569         local facet
4570         local nodes
4571         local nodes_sort
4572         local i
4573
4574         for facet in ${facets//,/ }; do
4575                 nodes="$nodes $(facet_active_host $facet)"
4576         done
4577
4578         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4579         echo -n $nodes_sort
4580 }
4581
4582 # Get all of the active MDS nodes.
4583 mdts_nodes () {
4584         echo -n $(facets_nodes $(get_facets MDS))
4585 }
4586
4587 # Get all of the active OSS nodes.
4588 osts_nodes () {
4589         echo -n $(facets_nodes $(get_facets OST))
4590 }
4591
4592 # Get all of the client nodes and active server nodes.
4593 nodes_list () {
4594         local nodes=$HOSTNAME
4595         local nodes_sort
4596         local i
4597
4598         # CLIENTS (if specified) contains the local client
4599         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4600
4601         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4602                 nodes="$nodes $(facets_nodes $(get_facets))"
4603         fi
4604
4605         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4606         echo -n $nodes_sort
4607 }
4608
4609 # Get all of the remote client nodes and remote active server nodes.
4610 remote_nodes_list () {
4611         echo -n $(nodes_list) | sed -re "s/\<$HOSTNAME\>//g"
4612 }
4613
4614 # Get all of the MDS nodes, including active and passive nodes.
4615 all_mdts_nodes () {
4616         local host
4617         local failover_host
4618         local nodes
4619         local nodes_sort
4620         local i
4621
4622         for i in $(seq $MDSCOUNT); do
4623                 host=mds${i}_HOST
4624                 failover_host=mds${i}failover_HOST
4625                 nodes="$nodes ${!host} ${!failover_host}"
4626         done
4627
4628         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4629         echo -n $nodes_sort
4630 }
4631
4632 # Get all of the OSS nodes, including active and passive nodes.
4633 all_osts_nodes () {
4634         local host
4635         local failover_host
4636         local nodes
4637         local nodes_sort
4638         local i
4639
4640         for i in $(seq $OSTCOUNT); do
4641                 host=ost${i}_HOST
4642                 failover_host=ost${i}failover_HOST
4643                 nodes="$nodes ${!host} ${!failover_host}"
4644         done
4645
4646         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4647         echo -n $nodes_sort
4648 }
4649
4650 # Get all of the server nodes, including active and passive nodes.
4651 all_server_nodes () {
4652         local nodes
4653         local nodes_sort
4654         local i
4655
4656         nodes="$mgs_HOST $mgsfailover_HOST $(all_mdts_nodes) $(all_osts_nodes)"
4657
4658         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4659         echo -n $nodes_sort
4660 }
4661
4662 # Get all of the client and server nodes, including active and passive nodes.
4663 all_nodes () {
4664         local nodes=$HOSTNAME
4665         local nodes_sort
4666         local i
4667
4668         # CLIENTS (if specified) contains the local client
4669         [ -n "$CLIENTS" ] && nodes=${CLIENTS//,/ }
4670
4671         if [ "$PDSH" -a "$PDSH" != "no_dsh" ]; then
4672                 nodes="$nodes $(all_server_nodes)"
4673         fi
4674
4675         nodes_sort=$(for i in $nodes; do echo $i; done | sort -u)
4676         echo -n $nodes_sort
4677 }
4678
4679 init_clients_lists () {
4680     # Sanity check: exclude the local client from RCLIENTS
4681     local clients=$(hostlist_expand "$RCLIENTS")
4682     local rclients=$(exclude_items_from_list "$clients" $HOSTNAME)
4683
4684     # Sanity check: exclude the dup entries
4685     RCLIENTS=$(for i in ${rclients//,/ }; do echo $i; done | sort -u)
4686
4687     clients="$SINGLECLIENT $HOSTNAME $RCLIENTS"
4688
4689     # Sanity check: exclude the dup entries from CLIENTS
4690     # for those configs which has SINGLCLIENT set to local client
4691     clients=$(for i in $clients; do echo $i; done | sort -u)
4692
4693     CLIENTS=$(comma_list $clients)
4694     local -a remoteclients=($RCLIENTS)
4695     for ((i=0; $i<${#remoteclients[@]}; i++)); do
4696             varname=CLIENT$((i + 2))
4697             eval $varname=${remoteclients[i]}
4698     done
4699
4700     CLIENTCOUNT=$((${#remoteclients[@]} + 1))
4701 }
4702
4703 get_random_entry () {
4704     local rnodes=$1
4705
4706     rnodes=${rnodes//,/ }
4707
4708     local -a nodes=($rnodes)
4709     local num=${#nodes[@]} 
4710     local i=$((RANDOM * num * 2 / 65536))
4711
4712     echo ${nodes[i]}
4713 }
4714
4715 client_only () {
4716     [ "$CLIENTONLY" ] || [ "$CLIENTMODSONLY" = yes ]
4717 }
4718
4719 is_patchless ()
4720 {
4721     lctl get_param version | grep -q patchless
4722 }
4723
4724 check_versions () {
4725     [ "$(lustre_version_code client)" = "$(lustre_version_code $SINGLEMDS)" -a \
4726       "$(lustre_version_code client)" = "$(lustre_version_code ost1)" ]
4727 }
4728
4729 get_node_count() {
4730     local nodes="$@"
4731     echo $nodes | wc -w || true
4732 }
4733
4734 mixed_ost_devs () {
4735     local nodes=$(osts_nodes)
4736     local osscount=$(get_node_count "$nodes")
4737     [ ! "$OSTCOUNT" = "$osscount" ]
4738 }
4739
4740 mixed_mdt_devs () {
4741     local nodes=$(mdts_nodes)
4742     local mdtcount=$(get_node_count "$nodes")
4743     [ ! "$MDSCOUNT" = "$mdtcount" ]
4744 }
4745
4746 generate_machine_file() {
4747     local nodes=${1//,/ }
4748     local machinefile=$2
4749     rm -f $machinefile
4750     for node in $nodes; do
4751         echo $node >>$machinefile || \
4752             { echo "can not generate machinefile $machinefile" && return 1; }
4753     done
4754 }
4755
4756 get_stripe () {
4757         local file=$1/stripe
4758
4759         touch $file
4760         $LFS getstripe -v $file || error "getstripe $file failed"
4761         rm -f $file
4762 }
4763
4764 setstripe_nfsserver () {
4765     local dir=$1
4766
4767     local nfsserver=$(awk '"'$dir'" ~ $2 && $3 ~ "nfs" && $2 != "/" \
4768                 { print $1 }' /proc/mounts | cut -f 1 -d : | head -1)
4769
4770     [ -z $nfsserver ] && echo "$dir is not nfs mounted" && return 1
4771
4772     do_nodev $nfsserver lfs setstripe "$@"
4773 }
4774
4775 # Check and add a test group.
4776 add_group() {
4777         local group_id=$1
4778         local group_name=$2
4779         local rc=0
4780
4781         local gid=$(getent group $group_name | cut -d: -f3)
4782         if [[ -n "$gid" ]]; then
4783                 [[ "$gid" -eq "$group_id" ]] || {
4784                         error_noexit "inconsistent group ID:" \
4785                                      "new: $group_id, old: $gid"
4786                         rc=1
4787                 }
4788         else
4789                 groupadd -g $group_id $group_name
4790                 rc=${PIPESTATUS[0]}
4791         fi
4792
4793         return $rc
4794 }
4795
4796 # Check and add a test user.
4797 add_user() {
4798         local user_id=$1
4799         shift
4800         local user_name=$1
4801         shift
4802         local group_name=$1
4803         shift
4804         local home=$1
4805         shift
4806         local opts="$@"
4807         local rc=0
4808
4809         local uid=$(getent passwd $user_name | cut -d: -f3)
4810         if [[ -n "$uid" ]]; then
4811                 if [[ "$uid" -eq "$user_id" ]]; then
4812                         local dir=$(getent passwd $user_name | cut -d: -f6)
4813                         if [[ "$dir" != "$home" ]]; then
4814                                 mkdir -p $home
4815                                 usermod -d $home $user_name
4816                                 rc=${PIPESTATUS[0]}
4817                         fi
4818                 else
4819                         error_noexit "inconsistent user ID:" \
4820                                      "new: $user_id, old: $uid"
4821                         rc=1
4822                 fi
4823         else
4824                 mkdir -p $home
4825                 useradd -M -u $user_id -d $home -g $group_name $opts $user_name
4826                 rc=${PIPESTATUS[0]}
4827         fi
4828
4829         return $rc
4830 }
4831
4832 check_runas_id_ret() {
4833     local myRC=0
4834     local myRUNAS_UID=$1
4835     local myRUNAS_GID=$2
4836     shift 2
4837     local myRUNAS=$@
4838     if [ -z "$myRUNAS" ]; then
4839         error_exit "myRUNAS command must be specified for check_runas_id"
4840     fi
4841     if $GSS_KRB5; then
4842         $myRUNAS krb5_login.sh || \
4843             error "Failed to refresh Kerberos V5 TGT for UID $myRUNAS_ID."
4844     fi
4845     mkdir $DIR/d0_runas_test
4846     chmod 0755 $DIR
4847     chown $myRUNAS_UID:$myRUNAS_GID $DIR/d0_runas_test
4848     $myRUNAS touch $DIR/d0_runas_test/f$$ || myRC=$?
4849     rm -rf $DIR/d0_runas_test
4850     return $myRC
4851 }
4852
4853 check_runas_id() {
4854     local myRUNAS_UID=$1
4855     local myRUNAS_GID=$2
4856     shift 2
4857     local myRUNAS=$@
4858     check_runas_id_ret $myRUNAS_UID $myRUNAS_GID $myRUNAS || \
4859         error "unable to write to $DIR/d0_runas_test as UID $myRUNAS_UID.
4860         Please set RUNAS_ID to some UID which exists on MDS and client or
4861         add user $myRUNAS_UID:$myRUNAS_GID on these nodes."
4862 }
4863
4864 # obtain the UID/GID for MPI_USER
4865 get_mpiuser_id() {
4866     local mpi_user=$1
4867
4868     MPI_USER_UID=$(do_facet client "getent passwd $mpi_user | cut -d: -f3;
4869 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the UID for $mpi_user"
4870
4871     MPI_USER_GID=$(do_facet client "getent passwd $mpi_user | cut -d: -f4;
4872 exit \\\${PIPESTATUS[0]}") || error_exit "failed to get the GID for $mpi_user"
4873 }
4874
4875 # obtain and cache Kerberos ticket-granting ticket
4876 refresh_krb5_tgt() {
4877     local myRUNAS_UID=$1
4878     local myRUNAS_GID=$2
4879     shift 2
4880     local myRUNAS=$@
4881     if [ -z "$myRUNAS" ]; then
4882         error_exit "myRUNAS command must be specified for refresh_krb5_tgt"
4883     fi
4884
4885     CLIENTS=${CLIENTS:-$HOSTNAME}
4886     do_nodes $CLIENTS "set -x
4887 if ! $myRUNAS krb5_login.sh; then
4888     echo "Failed to refresh Krb5 TGT for UID/GID $myRUNAS_UID/$myRUNAS_GID."
4889     exit 1
4890 fi"
4891 }
4892
4893 # Run multiop in the background, but wait for it to print
4894 # "PAUSING" to its stdout before returning from this function.
4895 multiop_bg_pause() {
4896     MULTIOP_PROG=${MULTIOP_PROG:-$MULTIOP}
4897     FILE=$1
4898     ARGS=$2
4899
4900     TMPPIPE=/tmp/multiop_open_wait_pipe.$$
4901     mkfifo $TMPPIPE
4902
4903     echo "$MULTIOP_PROG $FILE v$ARGS"
4904     $MULTIOP_PROG $FILE v$ARGS > $TMPPIPE &
4905
4906     echo "TMPPIPE=${TMPPIPE}"
4907     read -t 60 multiop_output < $TMPPIPE
4908     if [ $? -ne 0 ]; then
4909         rm -f $TMPPIPE
4910         return 1
4911     fi
4912     rm -f $TMPPIPE
4913     if [ "$multiop_output" != "PAUSING" ]; then
4914         echo "Incorrect multiop output: $multiop_output"
4915         kill -9 $PID
4916         return 1
4917     fi
4918
4919     return 0
4920 }
4921
4922 do_and_time () {
4923     local cmd=$1
4924     local rc
4925
4926     SECONDS=0
4927     eval '$cmd'
4928     
4929     [ ${PIPESTATUS[0]} -eq 0 ] || rc=1
4930
4931     echo $SECONDS
4932     return $rc
4933 }
4934
4935 inodes_available () {
4936     local IFree=$($LFS df -i $MOUNT | grep ^$FSNAME | awk '{print $4}' | sort -un | head -1) || return 1
4937     echo $IFree
4938 }
4939
4940 mdsrate_inodes_available () {
4941     local min_inodes=$(inodes_available)
4942     echo $((min_inodes * 99 / 100))
4943 }
4944
4945 # reset llite stat counters
4946 clear_llite_stats(){
4947         lctl set_param -n llite.*.stats 0
4948 }
4949
4950 # sum llite stat items
4951 calc_llite_stats() {
4952         local res=$(lctl get_param -n llite.*.stats |
4953                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4954         echo $res
4955 }
4956
4957 # reset osc stat counters
4958 clear_osc_stats(){
4959         lctl set_param -n osc.*.osc_stats 0
4960 }
4961
4962 # sum osc stat items
4963 calc_osc_stats() {
4964         local res=$(lctl get_param -n osc.*.osc_stats |
4965                     awk 'BEGIN {s = 0} END {print s} /^'"$1"'/ {s += $2}')
4966         echo $res
4967 }
4968
4969 calc_sum () {
4970         awk 'BEGIN {s = 0}; {s += $1}; END {print s}'
4971 }
4972
4973 calc_osc_kbytes () {
4974         df $MOUNT > /dev/null
4975         $LCTL get_param -n osc.*[oO][sS][cC][-_][0-9a-f]*.$1 | calc_sum
4976 }
4977
4978 # save_lustre_params(comma separated facet list, parameter_mask)
4979 # generate a stream of formatted strings (<facet> <param name>=<param value>)
4980 save_lustre_params() {
4981         local facets=$1
4982         local facet
4983         local nodes
4984         local node
4985
4986         for facet in ${facets//,/ }; do
4987                 node=$(facet_active_host $facet)
4988                 [[ *\ $node\ * = " $nodes " ]] && continue
4989                 nodes="$nodes $node"
4990
4991                 do_node $node "$LCTL get_param $2 |
4992                         while read s; do echo $facet \\\$s; done"
4993         done
4994 }
4995
4996 # restore lustre parameters from input stream, produces by save_lustre_params
4997 restore_lustre_params() {
4998         local facet
4999         local name
5000         local val
5001
5002         while IFS=" =" read facet name val; do
5003                 do_facet $facet "$LCTL set_param -n $name $val"
5004         done
5005 }
5006
5007 check_catastrophe() {
5008         local rnodes=${1:-$(comma_list $(remote_nodes_list))}
5009         local C=$CATASTROPHE
5010         [ -f $C ] && [ $(cat $C) -ne 0 ] && return 1
5011
5012         [ -z "$rnodes" ] && return 0
5013
5014         local data
5015         data=$(do_nodes "$rnodes" "rc=\\\$([ -f $C ] &&
5016                 echo \\\$(< $C) || echo 0);
5017                 if [ \\\$rc -ne 0 ]; then echo \\\$(hostname): \\\$rc; fi
5018                 exit \\\$rc")
5019         local rc=$?
5020         if [ -n "$data" ]; then
5021             echo $data
5022             return $rc
5023         fi
5024         return 0
5025 }
5026
5027 # CMD: determine mds index where directory inode presents
5028 get_mds_dir () {
5029     local dir=$1
5030     local file=$dir/f0.get_mds_dir_tmpfile
5031
5032     mkdir -p $dir
5033     rm -f $file
5034     sleep 1
5035     local iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5036     local -a oldused=($iused)
5037
5038     openfile -f O_CREAT:O_LOV_DELAY_CREATE -m 0644 $file > /dev/null
5039     sleep 1
5040     iused=$(lfs df -i $dir | grep MDT | awk '{print $3}')
5041     local -a newused=($iused)
5042
5043     local num=0
5044     for ((i=0; i<${#newused[@]}; i++)); do
5045          if [ ${oldused[$i]} -lt ${newused[$i]} ];  then
5046              echo $(( i + 1 ))
5047              rm -f $file
5048              return 0
5049          fi
5050     done
5051     error "mdt-s : inodes count OLD ${oldused[@]} NEW ${newused[@]}"
5052 }
5053
5054 mdsrate_cleanup () {
5055         if [ -d $4 ]; then
5056                 mpi_run -np $1 ${MACHINEFILE_OPTION} $2 ${MDSRATE} --unlink \
5057                         --nfiles $3 --dir $4 --filefmt $5 $6
5058                 rmdir $4
5059         fi
5060 }
5061
5062 delayed_recovery_enabled () {
5063     local var=${SINGLEMDS}_svc
5064     do_facet $SINGLEMDS lctl get_param -n mdd.${!var}.stale_export_age > /dev/null 2>&1
5065 }
5066
5067 ########################
5068
5069 convert_facet2label() { 
5070     local facet=$1
5071
5072     if [ x$facet = xost ]; then
5073        facet=ost1
5074     fi
5075
5076     local varsvc=${facet}_svc
5077
5078     if [ -n ${!varsvc} ]; then
5079         echo ${!varsvc}
5080     else  
5081         error "No lablel for $facet!"
5082     fi
5083 }
5084
5085 get_clientosc_proc_path() {
5086     echo "${1}-osc-*"
5087 }
5088
5089 get_lustre_version () {
5090     local facet=${1:-"$SINGLEMDS"}    
5091     do_facet $facet $LCTL get_param -n version | awk '/^lustre:/ {print $2}'
5092 }
5093
5094 lustre_version_code() {
5095     local facet=${1:-"$SINGLEMDS"}
5096     version_code $(get_lustre_version $1)
5097 }
5098
5099 # If the 2.0 MDS was mounted on 1.8 device, then the OSC and LOV names
5100 # used by MDT would not be changed.
5101 # mdt lov: fsname-mdtlov
5102 # mdt osc: fsname-OSTXXXX-osc
5103 mds_on_old_device() {
5104     local mds=${1:-"$SINGLEMDS"}
5105
5106     if [ $(lustre_version_code $mds) -gt $(version_code 1.9.0) ]; then
5107         do_facet $mds "lctl list_param osc.$FSNAME-OST*-osc \
5108             > /dev/null 2>&1" && return 0
5109     fi
5110     return 1
5111 }
5112
5113 get_mdtosc_proc_path() {
5114     local mds_facet=$1
5115     local ost_label=${2:-"*OST*"}
5116
5117     [ "$mds_facet" = "mds" ] && mds_facet=$SINGLEMDS
5118     local mdt_label=$(convert_facet2label $mds_facet)
5119     local mdt_index=$(echo $mdt_label | sed -e 's/^.*-//')
5120
5121     if [ $(lustre_version_code $mds_facet) -le $(version_code 1.8.0) ] ||
5122        mds_on_old_device $mds_facet; then
5123         echo "${ost_label}-osc"
5124     else
5125         echo "${ost_label}-osc-${mdt_index}"
5126     fi
5127 }
5128
5129 get_osc_import_name() {
5130     local facet=$1
5131     local ost=$2
5132     local label=$(convert_facet2label $ost)
5133
5134     if [ "${facet:0:3}" = "mds" ]; then
5135         get_mdtosc_proc_path $facet $label
5136         return 0
5137     fi
5138
5139     get_clientosc_proc_path $label
5140     return 0
5141 }
5142
5143 _wait_import_state () {
5144     local expected=$1
5145     local CONN_PROC=$2
5146     local maxtime=${3:-$(max_recovery_time)}
5147     local CONN_STATE
5148     local i=0
5149
5150         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5151     while [ "${CONN_STATE}" != "${expected}" ]; do
5152         if [ "${expected}" == "DISCONN" ]; then
5153             # for disconn we can check after proc entry is removed
5154             [ "x${CONN_STATE}" == "x" ] && return 0
5155             #  with AT enabled, we can have connect request timeout near of
5156             # reconnect timeout and test can't see real disconnect
5157             [ "${CONN_STATE}" == "CONNECTING" ] && return 0
5158         fi
5159         [ $i -ge $maxtime ] && \
5160             error "can't put import for $CONN_PROC into ${expected} state after $i sec, have ${CONN_STATE}" && \
5161             return 1
5162         sleep 1
5163         # Add uniq for multi-mount case
5164         CONN_STATE=$($LCTL get_param -n $CONN_PROC 2>/dev/null | cut -f2 | uniq)
5165         i=$(($i + 1))
5166     done
5167
5168     log "$CONN_PROC in ${CONN_STATE} state after $i sec"
5169     return 0
5170 }
5171
5172 wait_import_state() {
5173     local state=$1
5174     local params=$2
5175     local maxtime=${3:-$(max_recovery_time)}
5176     local param
5177
5178     for param in ${params//,/ }; do
5179         _wait_import_state $state $param $maxtime || return
5180     done
5181 }
5182
5183 wait_import_state_mount() {
5184         if ! is_mounted $MOUNT && ! is_mounted $MOUNT2; then
5185                 return 0
5186         fi
5187
5188         wait_import_state $*
5189 }
5190
5191 # One client request could be timed out because server was not ready
5192 # when request was sent by client.
5193 # The request timeout calculation details :
5194 # ptl_send_rpc ()
5195 #      /* We give the server rq_timeout secs to process the req, and
5196 #      add the network latency for our local timeout. */
5197 #      request->rq_deadline = request->rq_sent + request->rq_timeout +
5198 #           ptlrpc_at_get_net_latency(request) ;
5199 #
5200 # ptlrpc_connect_import ()
5201 #      request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5202 #
5203 # init_imp_at () ->
5204 #   -> at_init(&at->iat_net_latency, 0, 0) -> iat_net_latency=0
5205 # ptlrpc_at_get_net_latency(request) ->
5206 #       at_get (max (iat_net_latency=0, at_min)) = at_min
5207 #
5208 # i.e.:
5209 # request->rq_timeout + ptlrpc_at_get_net_latency(request) =
5210 # INITIAL_CONNECT_TIMEOUT + at_min
5211 #
5212 # We will use obd_timeout instead of INITIAL_CONNECT_TIMEOUT
5213 # because we can not get this value in runtime,
5214 # the value depends on configure options, and it is not stored in /proc.
5215 # obd_support.h:
5216 # #define CONNECTION_SWITCH_MIN 5U
5217 # #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5218
5219 request_timeout () {
5220     local facet=$1
5221
5222     # request->rq_timeout = INITIAL_CONNECT_TIMEOUT
5223     local init_connect_timeout=$TIMEOUT
5224     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5225
5226     local at_min=$(at_get $facet at_min)
5227
5228     echo $(( init_connect_timeout + at_min ))
5229 }
5230
5231 _wait_osc_import_state() {
5232     local facet=$1
5233     local ost_facet=$2
5234     local expected=$3
5235     local ost=$(get_osc_import_name $facet $ost_facet)
5236
5237         local param="osc.${ost}.ost_server_uuid"
5238         local i=0
5239
5240     # 1. wait the deadline of client 1st request (it could be skipped)
5241     # 2. wait the deadline of client 2nd request
5242     local maxtime=$(( 2 * $(request_timeout $facet)))
5243
5244         #During setup time, the osc might not be setup, it need wait
5245         #until list_param can return valid value. And also if there
5246         #are mulitple osc entries we should list all of them before
5247         #go to wait.
5248         local params=$($LCTL list_param $param 2>/dev/null || true)
5249         while [ -z "$params" ]; do
5250                 if [ $i -ge $maxtime ]; then
5251                         echo "can't get $param by list_param in $maxtime secs"
5252                         if [[ $facet != client* ]]; then
5253                                 echo "Go with $param directly"
5254                                 params=$param
5255                                 break
5256                         else
5257                                 return 1
5258                         fi
5259                 fi
5260                 sleep 1
5261                 i=$((i + 1))
5262                 params=$($LCTL list_param $param 2>/dev/null || true)
5263         done
5264
5265         if ! do_rpc_nodes "$(facet_active_host $facet)" \
5266                         wait_import_state $expected "$params" $maxtime; then
5267                 error "import is not in ${expected} state"
5268                 return 1
5269         fi
5270
5271         return 0
5272 }
5273
5274 wait_osc_import_state() {
5275         local facet=$1
5276         local ost_facet=$2
5277         local expected=$3
5278         local num
5279
5280         if [[ $facet = mds ]]; then
5281                 for num in $(seq $MDSCOUNT); do
5282                         _wait_osc_import_state mds$num "$ost_facet" "$expected"
5283                 done
5284         else
5285                 _wait_osc_import_state "$facet" "$ost_facet" "$expected"
5286         fi
5287 }
5288
5289 get_clientmdc_proc_path() {
5290     echo "${1}-mdc-*"
5291 }
5292
5293 do_rpc_nodes () {
5294         local list=$1
5295         shift
5296
5297         [ -z "$list" ] && return 0
5298
5299         # Add paths to lustre tests for 32 and 64 bit systems.
5300         local LIBPATH="/usr/lib/lustre/tests:/usr/lib64/lustre/tests:"
5301         local TESTPATH="$RLUSTRE/tests:"
5302         local RPATH="PATH=${TESTPATH}${LIBPATH}${PATH}:/sbin:/bin:/usr/sbin:"
5303         do_nodesv $list "${RPATH} NAME=${NAME} sh rpc.sh $@ "
5304 }
5305
5306 wait_clients_import_state () {
5307     local list=$1
5308     local facet=$2
5309     local expected=$3
5310
5311     local facets=$facet
5312
5313     if [ "$FAILURE_MODE" = HARD ]; then
5314         facets=$(facets_on_host $(facet_active_host $facet))
5315     fi
5316
5317     for facet in ${facets//,/ }; do
5318     local label=$(convert_facet2label $facet)
5319     local proc_path
5320     case $facet in
5321         ost* ) proc_path="osc.$(get_clientosc_proc_path $label).ost_server_uuid" ;;
5322         mds* ) proc_path="mdc.$(get_clientmdc_proc_path $label).mds_server_uuid" ;;
5323         *) error "unknown facet!" ;;
5324     esac
5325     local params=$(expand_list $params $proc_path)
5326     done
5327
5328         if ! do_rpc_nodes "$list" wait_import_state_mount $expected $params; then
5329                 error "import is not in ${expected} state"
5330                 return 1
5331         fi
5332 }
5333
5334 oos_full() {
5335         local -a AVAILA
5336         local -a GRANTA
5337         local -a TOTALA
5338         local OSCFULL=1
5339         AVAILA=($(do_nodes $(comma_list $(osts_nodes)) \
5340                   $LCTL get_param obdfilter.*.kbytesavail))
5341         GRANTA=($(do_nodes $(comma_list $(osts_nodes)) \
5342                   $LCTL get_param -n obdfilter.*.tot_granted))
5343         TOTALA=($(do_nodes $(comma_list $(osts_nodes)) \
5344                   $LCTL get_param -n obdfilter.*.kbytestotal))
5345         for ((i=0; i<${#AVAILA[@]}; i++)); do
5346                 local -a AVAIL1=(${AVAILA[$i]//=/ })
5347                 local -a TOTAL=(${TOTALA[$i]//=/ })
5348                 GRANT=$((${GRANTA[$i]}/1024))
5349                 # allow 1% of total space in bavail because of delayed
5350                 # allocation with ZFS which might release some free space after
5351                 # txg commit.  For small devices, we set a mininum of 8MB
5352                 local LIMIT=$((${TOTAL} / 100 + 8000))
5353                 echo -n $(echo ${AVAIL1[0]} | cut -d"." -f2) avl=${AVAIL1[1]} \
5354                         grnt=$GRANT diff=$((AVAIL1[1] - GRANT)) limit=${LIMIT}
5355                 [ $((AVAIL1[1] - GRANT)) -lt $LIMIT ] && OSCFULL=0 && \
5356                         echo " FULL" || echo
5357         done
5358         return $OSCFULL
5359 }
5360
5361 pool_list () {
5362    do_facet mgs lctl pool_list $1
5363 }
5364
5365 create_pool() {
5366     local fsname=${1%%.*}
5367     local poolname=${1##$fsname.}
5368
5369     do_facet mgs lctl pool_new $1
5370     local RC=$?
5371     # get param should return err unless pool is created
5372     [[ $RC -ne 0 ]] && return $RC
5373
5374     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5375         2>/dev/null || echo foo" "" || RC=1
5376     if [[ $RC -eq 0 ]]; then
5377         add_pool_to_list $1
5378     else
5379         error "pool_new failed $1"
5380     fi
5381     return $RC
5382 }
5383
5384 add_pool_to_list () {
5385     local fsname=${1%%.*}
5386     local poolname=${1##$fsname.}
5387
5388     local listvar=${fsname}_CREATED_POOLS
5389     eval export ${listvar}=$(expand_list ${!listvar} $poolname)
5390 }
5391
5392 remove_pool_from_list () {
5393     local fsname=${1%%.*}
5394     local poolname=${1##$fsname.}
5395
5396     local listvar=${fsname}_CREATED_POOLS
5397     eval export ${listvar}=$(exclude_items_from_list ${!listvar} $poolname)
5398 }
5399
5400 destroy_pool_int() {
5401     local ost
5402     local OSTS=$(do_facet $SINGLEMDS lctl pool_list $1 | \
5403         awk '$1 !~ /^Pool:/ {print $1}')
5404     for ost in $OSTS; do
5405         do_facet mgs lctl pool_remove $1 $ost
5406     done
5407     do_facet mgs lctl pool_destroy $1
5408 }
5409
5410 # <fsname>.<poolname> or <poolname>
5411 destroy_pool() {
5412     local fsname=${1%%.*}
5413     local poolname=${1##$fsname.}
5414
5415     [[ x$fsname = x$poolname ]] && fsname=$FSNAME
5416
5417     local RC
5418
5419     pool_list $fsname.$poolname || return $?
5420
5421     destroy_pool_int $fsname.$poolname
5422     RC=$?
5423     [[ $RC -ne 0 ]] && return $RC
5424
5425     wait_update $HOSTNAME "lctl get_param -n lov.$fsname-*.pools.$poolname \
5426       2>/dev/null || echo foo" "foo" || RC=1
5427
5428     if [[ $RC -eq 0 ]]; then
5429         remove_pool_from_list $fsname.$poolname
5430     else
5431         error "destroy pool failed $1"
5432     fi
5433     return $RC
5434 }
5435
5436 destroy_pools () {
5437     local fsname=${1:-$FSNAME}
5438     local poolname
5439     local listvar=${fsname}_CREATED_POOLS
5440
5441     pool_list $fsname
5442
5443     [ x${!listvar} = x ] && return 0
5444
5445     echo destroy the created pools: ${!listvar}
5446     for poolname in ${!listvar//,/ }; do
5447         destroy_pool $fsname.$poolname
5448     done
5449 }
5450
5451 cleanup_pools () {
5452     local fsname=${1:-$FSNAME}
5453     trap 0
5454     destroy_pools $fsname
5455 }
5456
5457 gather_logs () {
5458     local list=$1
5459
5460     local ts=$(date +%s)
5461     local docp=true
5462
5463     if [[ ! -f "$YAML_LOG" ]]; then
5464         # init_logging is not performed before gather_logs,
5465         # so the $LOGDIR needs to be checked here
5466         check_shared_dir $LOGDIR && touch $LOGDIR/shared
5467     fi
5468
5469     [ -f $LOGDIR/shared ] && docp=false
5470
5471     # dump lustre logs, dmesg
5472
5473     prefix="$TESTLOG_PREFIX.$TESTNAME"
5474     suffix="$ts.log"
5475     echo "Dumping lctl log to ${prefix}.*.${suffix}"
5476
5477     if [ "$CLIENTONLY" -o "$PDSH" == "no_dsh" ]; then
5478         echo "Dumping logs only on local client."
5479         $LCTL dk > ${prefix}.debug_log.$(hostname -s).${suffix}
5480         dmesg > ${prefix}.dmesg.$(hostname -s).${suffix}
5481         return
5482     fi
5483
5484     do_nodesv $list \
5485         "$LCTL dk > ${prefix}.debug_log.\\\$(hostname -s).${suffix};
5486          dmesg > ${prefix}.dmesg.\\\$(hostname -s).${suffix}"
5487     if [ ! -f $LOGDIR/shared ]; then
5488         do_nodes $list rsync -az "${prefix}.*.${suffix}" $HOSTNAME:$LOGDIR
5489     fi
5490 }
5491
5492 do_ls () {
5493     local mntpt_root=$1
5494     local num_mntpts=$2
5495     local dir=$3
5496     local i
5497     local cmd
5498     local pids
5499     local rc=0
5500
5501     for i in $(seq 0 $num_mntpts); do
5502         cmd="ls -laf ${mntpt_root}$i/$dir"
5503         echo + $cmd;
5504         $cmd > /dev/null &
5505         pids="$pids $!"
5506     done
5507     echo pids=$pids
5508     for pid in $pids; do
5509         wait $pid || rc=$?
5510     done
5511
5512     return $rc
5513 }
5514
5515 # target_start_and_reset_recovery_timer()
5516 #        service_time = at_est2timeout(service_time);
5517 #        service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC +
5518 #                             INITIAL_CONNECT_TIMEOUT);
5519 # CONNECTION_SWITCH_MAX : min(25U, max(CONNECTION_SWITCH_MIN,obd_timeout))
5520 #define CONNECTION_SWITCH_INC 1
5521 #define INITIAL_CONNECT_TIMEOUT max(CONNECTION_SWITCH_MIN,obd_timeout/20)
5522 #define CONNECTION_SWITCH_MIN 5U
5523
5524 max_recovery_time () {
5525     local init_connect_timeout=$(( TIMEOUT / 20 ))
5526     [[ $init_connect_timeout -ge 5 ]] || init_connect_timeout=5
5527
5528     local service_time=$(( $(at_max_get client) + $(( 2 * $(( 25 + 1  + init_connect_timeout)) )) ))
5529
5530     echo $service_time 
5531 }
5532
5533 get_clients_mount_count () {
5534     local clients=${CLIENTS:-`hostname`}
5535
5536     # we need to take into account the clients mounts and
5537     # exclude mds/ost mounts if any;
5538     do_nodes $clients cat /proc/mounts | grep lustre | grep $MOUNT | wc -l
5539 }
5540
5541 # gss functions
5542 PROC_CLI="srpc_info"
5543
5544 combination()
5545 {
5546     local M=$1
5547     local N=$2
5548     local R=1
5549
5550     if [ $M -lt $N ]; then
5551         R=0
5552     else
5553         N=$((N + 1))
5554         while [ $N -lt $M ]; do
5555             R=$((R * N))
5556             N=$((N + 1))
5557         done
5558     fi
5559
5560     echo $R
5561     return 0
5562 }
5563
5564 calc_connection_cnt() {
5565     local dir=$1
5566
5567     # MDT->MDT = 2 * C(M, 2)
5568     # MDT->OST = M * O
5569     # CLI->OST = C * O
5570     # CLI->MDT = C * M
5571     comb_m2=$(combination $MDSCOUNT 2)
5572
5573     local num_clients=$(get_clients_mount_count)
5574
5575     local cnt_mdt2mdt=$((comb_m2 * 2))
5576     local cnt_mdt2ost=$((MDSCOUNT * OSTCOUNT))
5577     local cnt_cli2ost=$((num_clients * OSTCOUNT))
5578     local cnt_cli2mdt=$((num_clients * MDSCOUNT))
5579     local cnt_all2ost=$((cnt_mdt2ost + cnt_cli2ost))
5580     local cnt_all2mdt=$((cnt_mdt2mdt + cnt_cli2mdt))
5581     local cnt_all2all=$((cnt_mdt2ost + cnt_mdt2mdt + cnt_cli2ost + cnt_cli2mdt))
5582
5583     local var=cnt_$dir
5584     local res=${!var}
5585
5586     echo $res
5587 }
5588
5589 set_rule()
5590 {
5591     local tgt=$1
5592     local net=$2
5593     local dir=$3
5594     local flavor=$4
5595     local cmd="$tgt.srpc.flavor"
5596
5597     if [ $net == "any" ]; then
5598         net="default"
5599     fi
5600     cmd="$cmd.$net"
5601
5602     if [ $dir != "any" ]; then
5603         cmd="$cmd.$dir"
5604     fi
5605
5606     cmd="$cmd=$flavor"
5607     log "Setting sptlrpc rule: $cmd"
5608     do_facet mgs "$LCTL conf_param $cmd"
5609 }
5610
5611 count_flvr()
5612 {
5613     local output=$1
5614     local flavor=$2
5615     local count=0
5616
5617     rpc_flvr=`echo $flavor | awk -F - '{ print $1 }'`
5618     bulkspec=`echo $flavor | awk -F - '{ print $2 }'`
5619
5620     count=`echo "$output" | grep "rpc flavor" | grep $rpc_flvr | wc -l`
5621
5622     if [ "x$bulkspec" != "x" ]; then
5623         algs=`echo $bulkspec | awk -F : '{ print $2 }'`
5624
5625         if [ "x$algs" != "x" ]; then
5626             bulk_count=`echo "$output" | grep "bulk flavor" | grep $algs | wc -l`
5627         else
5628             bulk=`echo $bulkspec | awk -F : '{ print $1 }'`
5629             if [ $bulk == "bulkn" ]; then
5630                 bulk_count=`echo "$output" | grep "bulk flavor" \
5631                             | grep "null/null" | wc -l`
5632             elif [ $bulk == "bulki" ]; then
5633                 bulk_count=`echo "$output" | grep "bulk flavor" \
5634                             | grep "/null" | grep -v "null/" | wc -l`
5635             else
5636                 bulk_count=`echo "$output" | grep "bulk flavor" \
5637                             | grep -v "/null" | grep -v "null/" | wc -l`
5638             fi
5639         fi
5640
5641         [ $bulk_count -lt $count ] && count=$bulk_count
5642     fi
5643
5644     echo $count
5645 }
5646
5647 flvr_cnt_cli2mdt()
5648 {
5649     local flavor=$1
5650     local cnt
5651
5652     local clients=${CLIENTS:-`hostname`}
5653
5654     for c in ${clients//,/ }; do
5655         output=`do_node $c lctl get_param -n mdc.*-MDT*-mdc-*.$PROC_CLI 2>/dev/null`
5656         tmpcnt=`count_flvr "$output" $flavor`
5657         cnt=$((cnt + tmpcnt))
5658     done
5659     echo $cnt
5660 }
5661
5662 flvr_cnt_cli2ost()
5663 {
5664     local flavor=$1
5665     local cnt
5666
5667     local clients=${CLIENTS:-`hostname`}
5668
5669     for c in ${clients//,/ }; do
5670         output=`do_node $c lctl get_param -n osc.*OST*-osc-[^M][^D][^T]*.$PROC_CLI 2>/dev/null`
5671         tmpcnt=`count_flvr "$output" $flavor`
5672         cnt=$((cnt + tmpcnt))
5673     done
5674     echo $cnt
5675 }
5676
5677 flvr_cnt_mdt2mdt()
5678 {
5679     local flavor=$1
5680     local cnt=0
5681
5682     if [ $MDSCOUNT -le 1 ]; then
5683         echo 0
5684         return
5685     fi
5686
5687     for num in `seq $MDSCOUNT`; do
5688         output=`do_facet mds$num lctl get_param -n mdc.*-MDT*-mdc[0-9]*.$PROC_CLI 2>/dev/null`
5689         tmpcnt=`count_flvr "$output" $flavor`
5690         cnt=$((cnt + tmpcnt))
5691     done
5692     echo $cnt;
5693 }
5694
5695 flvr_cnt_mdt2ost()
5696 {
5697     local flavor=$1
5698     local cnt=0
5699     local mdtosc
5700
5701     for num in `seq $MDSCOUNT`; do
5702         mdtosc=$(get_mdtosc_proc_path mds$num)
5703         mdtosc=${mdtosc/-MDT*/-MDT\*}
5704         output=$(do_facet mds$num lctl get_param -n \
5705             osc.$mdtosc.$PROC_CLI 2>/dev/null)
5706         tmpcnt=`count_flvr "$output" $flavor`
5707         cnt=$((cnt + tmpcnt))
5708     done
5709     echo $cnt;
5710 }
5711
5712 flvr_cnt_mgc2mgs()
5713 {
5714     local flavor=$1
5715
5716     output=`do_facet client lctl get_param -n mgc.*.$PROC_CLI 2>/dev/null`
5717     count_flvr "$output" $flavor
5718 }
5719
5720 do_check_flavor()
5721 {
5722     local dir=$1        # from to
5723     local flavor=$2     # flavor expected
5724     local res=0
5725
5726     if [ $dir == "cli2mdt" ]; then
5727         res=`flvr_cnt_cli2mdt $flavor`
5728     elif [ $dir == "cli2ost" ]; then
5729         res=`flvr_cnt_cli2ost $flavor`
5730     elif [ $dir == "mdt2mdt" ]; then
5731         res=`flvr_cnt_mdt2mdt $flavor`
5732     elif [ $dir == "mdt2ost" ]; then
5733         res=`flvr_cnt_mdt2ost $flavor`
5734     elif [ $dir == "all2ost" ]; then
5735         res1=`flvr_cnt_mdt2ost $flavor`
5736         res2=`flvr_cnt_cli2ost $flavor`
5737         res=$((res1 + res2))
5738     elif [ $dir == "all2mdt" ]; then
5739         res1=`flvr_cnt_mdt2mdt $flavor`
5740         res2=`flvr_cnt_cli2mdt $flavor`
5741         res=$((res1 + res2))
5742     elif [ $dir == "all2all" ]; then
5743         res1=`flvr_cnt_mdt2ost $flavor`
5744         res2=`flvr_cnt_cli2ost $flavor`
5745         res3=`flvr_cnt_mdt2mdt $flavor`
5746         res4=`flvr_cnt_cli2mdt $flavor`
5747         res=$((res1 + res2 + res3 + res4))
5748     fi
5749
5750     echo $res
5751 }
5752
5753 wait_flavor()
5754 {
5755     local dir=$1        # from to
5756     local flavor=$2     # flavor expected
5757     local expect=${3:-$(calc_connection_cnt $dir)}     # number expected
5758
5759     local res=0
5760
5761     for ((i=0;i<20;i++)); do
5762         echo -n "checking $dir..."
5763         res=$(do_check_flavor $dir $flavor)
5764         echo "found $res/$expect $flavor connections"
5765         [ $res -ge $expect ] && return 0
5766         sleep 4
5767     done
5768
5769     echo "Error checking $flavor of $dir: expect $expect, actual $res"
5770     return 1
5771 }
5772
5773 restore_to_default_flavor()
5774 {
5775     local proc="mgs.MGS.live.$FSNAME"
5776
5777     echo "restoring to default flavor..."
5778
5779     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5780
5781     # remove all existing rules if any
5782     if [ $nrule -ne 0 ]; then
5783         echo "$nrule existing rules"
5784         for rule in `do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor."`; do
5785             echo "remove rule: $rule"
5786             spec=`echo $rule | awk -F = '{print $1}'`
5787             do_facet mgs "$LCTL conf_param -d $spec"
5788         done
5789     fi
5790
5791     # verify no rules left
5792     nrule=`do_facet mgs lctl get_param -n $proc 2>/dev/null | grep ".srpc.flavor." | wc -l`
5793     [ $nrule -ne 0 ] && error "still $nrule rules left"
5794
5795     # wait for default flavor to be applied
5796     # currently default flavor for all connections are 'null'
5797     wait_flavor all2all null
5798     echo "now at default flavor settings"
5799 }
5800
5801 set_flavor_all()
5802 {
5803     local flavor=${1:-null}
5804
5805     echo "setting all flavor to $flavor"
5806
5807     # FIXME need parameter to this fn
5808     # and remove global vars
5809     local cnt_all2all=$(calc_connection_cnt all2all)
5810
5811     local res=$(do_check_flavor all2all $flavor)
5812     if [ $res -eq $cnt_all2all ]; then
5813         echo "already have total $res $flavor connections"
5814         return
5815     fi
5816
5817     echo "found $res $flavor out of total $cnt_all2all connections"
5818     restore_to_default_flavor
5819
5820     [[ $flavor = null ]] && return 0
5821
5822     set_rule $FSNAME any any $flavor
5823     wait_flavor all2all $flavor
5824 }
5825
5826
5827 check_logdir() {
5828     local dir=$1
5829     # Checking for shared logdir
5830     if [ ! -d $dir ]; then
5831         # Not found. Create local logdir
5832         mkdir -p $dir
5833     else
5834         touch $dir/check_file.$(hostname -s)
5835     fi
5836     return 0
5837 }
5838
5839 check_write_access() {
5840     local dir=$1
5841     local node
5842     local file
5843
5844     for node in $(nodes_list); do
5845         file=$dir/check_file.$(short_hostname $node)
5846         if [[ ! -f "$file" ]]; then
5847             # Logdir not accessible/writable from this node.
5848             return 1
5849         fi
5850         rm -f $file || return 1
5851     done
5852     return 0
5853 }
5854
5855 init_logging() {
5856     if [[ -n $YAML_LOG ]]; then
5857         return
5858     fi
5859     local SAVE_UMASK=`umask`
5860     umask 0000
5861
5862     export YAML_LOG=${LOGDIR}/results.yml
5863     mkdir -p $LOGDIR
5864     init_clients_lists
5865
5866     if [ ! -f $YAML_LOG ]; then       # If the yaml log already exists then we will just append to it
5867       if check_shared_dir $LOGDIR; then
5868           touch $LOGDIR/shared
5869           echo "Logging to shared log directory: $LOGDIR"
5870       else
5871           echo "Logging to local directory: $LOGDIR"
5872       fi
5873
5874       yml_nodes_file $LOGDIR >> $YAML_LOG
5875       yml_results_file >> $YAML_LOG
5876     fi
5877
5878     umask $SAVE_UMASK
5879 }
5880
5881 log_test() {
5882     yml_log_test $1 >> $YAML_LOG
5883 }
5884
5885 log_test_status() {
5886      yml_log_test_status $@ >> $YAML_LOG
5887 }
5888
5889 log_sub_test_begin() {
5890     yml_log_sub_test_begin "$@" >> $YAML_LOG
5891 }
5892
5893 log_sub_test_end() {
5894     yml_log_sub_test_end "$@" >> $YAML_LOG
5895 }
5896
5897 run_llverdev()
5898 {
5899         local dev=$1
5900         local llverdev_opts=$2
5901         local devname=$(basename $1)
5902         local size=$(grep "$devname"$ /proc/partitions | awk '{print $3}')
5903         # loop devices aren't in /proc/partitions
5904         [ "x$size" == "x" ] && local size=$(ls -l $dev | awk '{print $5}')
5905
5906         size=$(($size / 1024 / 1024)) # Gb
5907
5908         local partial_arg=""
5909         # Run in partial (fast) mode if the size
5910         # of a partition > 1 GB
5911         [ $size -gt 1 ] && partial_arg="-p"
5912
5913         llverdev --force $partial_arg $llverdev_opts $dev
5914 }
5915
5916 run_llverfs()
5917 {
5918         local dir=$1
5919         local llverfs_opts=$2
5920         local use_partial_arg=$3
5921         local partial_arg=""
5922         local size=$(df -B G $dir |tail -n 1 |awk '{print $2}' |sed 's/G//') #GB
5923
5924         # Run in partial (fast) mode if the size
5925         # of a partition > 1 GB
5926         [ "x$use_partial_arg" != "xno" ] && [ $size -gt 1 ] && partial_arg="-p"
5927
5928         llverfs $partial_arg $llverfs_opts $dir
5929 }
5930
5931 #Remove objects from OST
5932 remove_ost_objects() {
5933         local facet=$1
5934         local ostdev=$2
5935         local group=$3
5936         shift 3
5937         local objids="$@"
5938         local mntpt=$(facet_mntpt $facet)
5939         local opts=$OST_MOUNT_OPTS
5940         local i
5941         local rc
5942
5943         echo "removing objects from $ostdev on $facet: $objids"
5944         if ! test -b $ostdev; then
5945                 opts=$(csa_add "$opts" -o loop)
5946         fi
5947         mount -t $(facet_fstype $facet) $opts $ostdev $mntpt ||
5948                 return $?
5949         rc=0;
5950         for i in $objids; do
5951                 rm $mntpt/O/$group/d$((i % 32))/$i || { rc=$?; break; }
5952         done
5953         umount -f $mntpt || return $?
5954         return $rc
5955 }
5956
5957 #Remove files from MDT
5958 remove_mdt_files() {
5959         local facet=$1
5960         local mdtdev=$2
5961         shift 2
5962         local files="$@"
5963         local mntpt=$(facet_mntpt $facet)
5964         local opts=$MDS_MOUNT_OPTS
5965
5966         echo "removing files from $mdtdev on $facet: $files"
5967         if [ $(facet_fstype $facet) == ldiskfs ] &&
5968            ! do_facet $facet test -b $mdtdev; then
5969                 opts=$(csa_add "$opts" -o loop)
5970         fi
5971         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5972                 return $?
5973         rc=0;
5974         for f in $files; do
5975                 rm $mntpt/ROOT/$f || { rc=$?; break; }
5976         done
5977         umount -f $mntpt || return $?
5978         return $rc
5979 }
5980
5981 duplicate_mdt_files() {
5982         local facet=$1
5983         local mdtdev=$2
5984         shift 2
5985         local files="$@"
5986         local mntpt=$(facet_mntpt $facet)
5987         local opts=$MDS_MOUNT_OPTS
5988
5989         echo "duplicating files on $mdtdev on $facet: $files"
5990         mkdir -p $mntpt || return $?
5991         if [ $(facet_fstype $facet) == ldiskfs ] &&
5992            ! do_facet $facet test -b $mdtdev; then
5993                 opts=$(csa_add "$opts" -o loop)
5994         fi
5995         mount -t $(facet_fstype $facet) $opts $mdtdev $mntpt ||
5996                 return $?
5997
5998     do_umount() {
5999         trap 0
6000         popd > /dev/null
6001         rm $tmp
6002         umount -f $mntpt
6003     }
6004     trap do_umount EXIT
6005
6006     tmp=$(mktemp $TMP/setfattr.XXXXXXXXXX)
6007     pushd $mntpt/ROOT > /dev/null || return $?
6008     rc=0
6009     for f in $files; do
6010         touch $f.bad || return $?
6011         getfattr -n trusted.lov $f | sed "s#$f#&.bad#" > $tmp
6012         rc=${PIPESTATUS[0]}
6013         [ $rc -eq 0 ] || return $rc
6014         setfattr --restore $tmp || return $?
6015     done
6016     do_umount
6017 }
6018
6019 run_sgpdd () {
6020     local devs=${1//,/ }
6021     shift
6022     local params=$@
6023     local rslt=$TMP/sgpdd_survey
6024
6025     # sgpdd-survey cleanups ${rslt}.* files
6026
6027     local cmd="rslt=$rslt $params scsidevs=\"$devs\" $SGPDDSURVEY"
6028     echo + $cmd
6029     eval $cmd
6030     cat ${rslt}.detail
6031 }
6032
6033 # returns the canonical name for an ldiskfs device
6034 ldiskfs_canon() {
6035         local dev="$1"
6036         local facet="$2"
6037
6038         do_facet $facet "dv=\\\$(lctl get_param -n $dev);
6039 if foo=\\\$(lvdisplay -c \\\$dv 2>/dev/null); then
6040     echo dm-\\\${foo##*:};
6041 else
6042     echo \\\$(basename \\\$dv);
6043 fi;"
6044 }
6045
6046 is_sanity_benchmark() {
6047     local benchmarks="dbench bonnie iozone fsx"
6048     local suite=$1
6049     for b in $benchmarks; do
6050         if [ "$b" == "$suite" ]; then
6051             return 0
6052         fi
6053     done
6054     return 1
6055 }
6056
6057 min_ost_size () {
6058     $LCTL get_param -n osc.*.kbytesavail | sort -n | head -n1
6059 }
6060
6061 # Get the block size of the filesystem.
6062 get_block_size() {
6063     local facet=$1
6064     local device=$2
6065     local size
6066
6067     size=$(do_facet $facet "$DUMPE2FS -h $device 2>&1" |
6068            awk '/^Block size:/ {print $3}')
6069     echo $size
6070 }
6071
6072 # Check whether the "large_xattr" feature is enabled or not.
6073 large_xattr_enabled() {
6074         [[ $(facet_fstype $SINGLEMDS) == zfs ]] && return 0
6075
6076         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6077
6078         do_facet $SINGLEMDS "$DUMPE2FS -h $mds_dev 2>&1 | grep -q large_xattr"
6079         return ${PIPESTATUS[0]}
6080 }
6081
6082 # Get the maximum xattr size supported by the filesystem.
6083 max_xattr_size() {
6084     local size
6085
6086     if large_xattr_enabled; then
6087         # include/linux/limits.h: #define XATTR_SIZE_MAX 65536
6088         size=65536
6089     else
6090         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6091         local block_size=$(get_block_size $SINGLEMDS $mds_dev)
6092
6093         # maximum xattr size = size of block - size of header -
6094         #                      size of 1 entry - 4 null bytes
6095         size=$((block_size - 32 - 32 - 4))
6096     fi
6097
6098     echo $size
6099 }
6100
6101 # Dump the value of the named xattr from a file.
6102 get_xattr_value() {
6103     local xattr_name=$1
6104     local file=$2
6105
6106     echo "$(getfattr -n $xattr_name --absolute-names --only-values $file)"
6107 }
6108
6109 # Generate a string with size of $size bytes.
6110 generate_string() {
6111     local size=${1:-1024} # in bytes
6112
6113     echo "$(head -c $size < /dev/zero | tr '\0' y)"
6114 }
6115
6116 reformat_external_journal() {
6117         if [ ! -z ${EJOURNAL} ]; then
6118                 local rcmd="do_facet ${SINGLEMDS}"
6119
6120                 echo "reformat external journal on ${SINGLEMDS}:${EJOURNAL}"
6121                 ${rcmd} mke2fs -O journal_dev ${EJOURNAL} || return 1
6122         fi
6123 }
6124
6125 # MDT file-level backup/restore
6126 mds_backup_restore() {
6127         local devname=$(mdsdevname ${SINGLEMDS//mds/})
6128         local mntpt=$(facet_mntpt brpt)
6129         local rcmd="do_facet ${SINGLEMDS}"
6130         local metaea=${TMP}/backup_restore.ea
6131         local metadata=${TMP}/backup_restore.tgz
6132         local opts=${MDS_MOUNT_OPTS}
6133         local svc=${SINGLEMDS}_svc
6134         local igif=$1
6135
6136         if ! ${rcmd} test -b ${devname}; then
6137                 opts=$(csa_add "$opts" -o loop)
6138         fi
6139
6140         echo "file-level backup/restore on ${SINGLEMDS}:${devname}"
6141
6142         # step 1: build mount point
6143         ${rcmd} mkdir -p $mntpt
6144         # step 2: cleanup old backup
6145         ${rcmd} rm -f $metaea $metadata
6146         # step 3: mount dev
6147         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6148         if [ ! -z $igif ]; then
6149                 # step 3.5: rm .lustre
6150                 ${rcmd} rm -rf $mntpt/ROOT/.lustre || return 1
6151         fi
6152         # step 4: backup metaea
6153         echo "backup EA"
6154         ${rcmd} "cd $mntpt && getfattr -R -d -m '.*' -P . > $metaea && cd -" ||
6155                 return 2
6156         # step 5: backup metadata
6157         echo "backup data"
6158         ${rcmd} tar zcf $metadata -C $mntpt/ . > /dev/null 2>&1 || return 3
6159         # step 6: umount
6160         ${rcmd} umount -d $mntpt || return 4
6161         # step 7: reformat external journal if needed
6162         reformat_external_journal || return 5
6163         # step 8: reformat dev
6164         echo "reformat new device"
6165         add ${SINGLEMDS} $(mkfs_opts ${SINGLEMDS} ${devname}) --backfstype \
6166                 ldiskfs --reformat ${devname} $(mdsvdevname 1) > /dev/null ||
6167                 exit 6
6168         # step 9: mount dev
6169         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 7
6170         # step 10: restore metadata
6171         echo "restore data"
6172         ${rcmd} tar zxfp $metadata -C $mntpt > /dev/null 2>&1 || return 8
6173         # step 11: restore metaea
6174         echo "restore EA"
6175         ${rcmd} "cd $mntpt && setfattr --restore=$metaea && cd - " || return 9
6176         # step 12: remove recovery logs
6177         echo "remove recovery logs"
6178         ${rcmd} rm -fv $mntpt/OBJECTS/* $mntpt/CATALOGS
6179         # step 13: umount dev
6180         ${rcmd} umount -d $mntpt || return 10
6181         # step 14: cleanup tmp backup
6182         ${rcmd} rm -f $metaea $metadata
6183         # step 15: reset device label - it's not virgin on
6184         ${rcmd} e2label $devname ${!svc}
6185 }
6186
6187 # remove OI files
6188 mds_remove_ois() {
6189         local devname=$(mdsdevname ${SINGLEMDS//mds/})
6190         local mntpt=$(facet_mntpt brpt)
6191         local rcmd="do_facet ${SINGLEMDS}"
6192         local idx=$1
6193         local opts=${MDS_MOUNT_OPTS}
6194
6195         if ! ${rcmd} test -b ${devname}; then
6196                 opts=$(csa_add "$opts" -o loop)
6197         fi
6198
6199         echo "remove OI files: idx=${idx}"
6200
6201         # step 1: build mount point
6202         ${rcmd} mkdir -p $mntpt
6203         # step 2: mount dev
6204         ${rcmd} mount -t ldiskfs $opts $devname $mntpt || return 1
6205         if [ -z $idx ]; then
6206                 # step 3: remove all OI files
6207                 ${rcmd} rm -fv $mntpt/oi.16*
6208         elif [ $idx -lt 2 ]; then
6209                 ${rcmd} rm -fv $mntpt/oi.16.${idx}
6210         else
6211                 local i
6212
6213                 # others, rm oi.16.[idx, idx * idx, idx ** ...]
6214                 for ((i=${idx}; i<64; i=$((i * idx)))); do
6215                         ${rcmd} rm -fv $mntpt/oi.16.${i}
6216                 done
6217         fi
6218         # step 4: umount
6219         ${rcmd} umount -d $mntpt || return 2
6220         # OI files will be recreated when mounted as lustre next time.
6221 }
6222
6223 # generate maloo upload-able log file name
6224 # \param logname specify unique part of file name
6225 generate_logname() {
6226         local logname=${1:-"default_logname"}
6227
6228         echo "$TESTLOG_PREFIX.$TESTNAME.$logname.$(hostname -s).log"
6229 }
6230
6231 # make directory on different MDTs
6232 test_mkdir() {
6233         local option
6234         local parent
6235         local child
6236         local path
6237         local rc=0
6238
6239         case $# in
6240                 1) path=$1;;
6241                 2) option=$1
6242                    path=$2;;
6243                 *) error "Only creating single directory is supported";;
6244         esac
6245
6246         child=$(basename $path)
6247         parent=$(dirname $path)
6248
6249         if [ "$option" == "-p" -a -d $parent/$child ]; then
6250                 return $rc
6251         fi
6252
6253         if [ ! -d ${parent} ]; then
6254                 if [ "$option" == "-p" ]; then
6255                         mkdir -p ${parent}
6256                 else
6257                         return 1
6258                 fi
6259         fi
6260
6261         if [ $MDSCOUNT -le 1 ]; then
6262                 mkdir $option $parent/$child || rc=$?
6263         else
6264                 local mdt_idx=$($LFS getstripe -M $parent)
6265                 local test_num=$(echo $testnum | sed -e 's/[^0-9]*//g')
6266
6267                 if [ "$mdt_idx" -ne 0 ]; then
6268                         mkdir $option $parent/$child || rc=$?
6269                 else
6270                         mdt_idx=$((test_num % MDSCOUNT))
6271                         echo "mkdir $mdt_idx for $parent/$child"
6272                         $LFS setdirstripe -i $mdt_idx $parent/$child || rc=$?
6273                 fi
6274         fi
6275         return $rc
6276 }