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