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