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