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