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