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