common/config: honor NFS_MOUNT_OPTIONS in _test_mount_opts
[xfstests-dev.git] / common / config
1 ##/bin/bash
2 #
3 # Copyright (c) 2000-2003,2006 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License as
7 # published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it would be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write the Free Software Foundation,
16 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 #
18 #
19 # setup and check for config parameters, and in particular
20 #
21 # EMAIL -           email of the script runner.
22 # TEST_DIR -        scratch test directory that is in an already
23 #                   mounted XFS file system, needs to be be world
24 #                   writeable
25 # TEST_DEV -        device for file system containing TEST_DIR
26 #
27 # and optionally:
28 # SCRATCH_DEV -     device you can make a scratch file system on
29 # SCRATCH_MNT -     mount point for scratch file system
30 # SCRATCH_LOGDEV -  scratch log device for external log testing
31 # SCRATCH_RTDEV -   scratch rt dev
32 # TEST_LOGDEV -     test log device for external log testing
33 # TEST_RTDEV -      test rt dev
34 # TAPE_DEV -        the tape device for the xfsdump tests
35 # RMT_TAPE_DEV -    the remote tape device for the xfsdump tests
36 # RMT_IRIXTAPE_DEV- the IRIX remote tape device for the xfsdump tests
37 # RMT_TAPE_USER -   remote user for tape device
38 # SELINUX_MOUNT_OPTIONS - Options to use when SELinux is enabled.
39 #
40 # - These can be added to $HOST_CONFIG_DIR (witch default to ./config)
41 #   below or a separate local configuration file can be used (using
42 #   the HOST_OPTIONS variable).
43 # - This script is shared by the stress test system and the auto-qa
44 #   system
45 # - TEST_DEV & TEST_DIR must be assigned.
46 # - this script shouldn't make any assertions about filesystem
47 #   validity or mountedness.
48 #
49
50 # all tests should use a common language setting to prevent golden
51 # output mismatches.
52 export LANG=C
53 export LC_ALL=C
54
55 # Warning: don't put freeware before /usr/bsd on IRIX coz you'll
56 #  get the wrong hostname and set your system name to -s  :)
57 [ -d /usr/bsd ] && PATH=$PATH:/usr/bsd
58 [ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
59 PATH=".:$PATH"
60
61 export HOST=`hostname -s`
62 export HOSTOS=`uname -s`
63 [ "$HOSTOS" = "IRIX64" ] && export HOSTOS="IRIX"
64
65 export MODULAR=0               # using XFS as a module or not
66 export BOOT="/boot"            # install target for kernels
67 export EXTRA=${EXTRA:=xfs-qa}
68
69 # general parameters (mainly for auto-qa)
70 export SOAK_PROC=3             # -p option to fsstress
71 export SOAK_STRESS=10000       # -n option to fsstress
72 export SOAK_PASSES=-1          # count of repetitions of fsstress (while soaking)
73 export EMAIL=root@localhost    # where auto-qa will send its status messages
74 export HOST_OPTIONS=${HOST_OPTIONS:=local.config}
75 export CHECK_OPTIONS=${CHECK_OPTIONS:="-g auto"}
76 export BENCH_PASSES=${BENCH_PASSES:=5}
77 export XFS_MKFS_OPTIONS=${XFS_MKFS_OPTIONS:=-bsize=4096}
78 export TIME_FACTOR=${TIME_FACTOR:=1}
79 export LOAD_FACTOR=${LOAD_FACTOR:=1}
80 export DEBUGFS_MNT=${DEBUGFS_MNT:="/sys/kernel/debug"}
81
82 # some constants for overlayfs setup
83 export OVL_UPPER="ovl-upper"
84 export OVL_LOWER="ovl-lower"
85 export OVL_WORK="ovl-work"
86 # overlay mount point parent must be the base fs root
87 export OVL_MNT="ovl-mnt"
88
89 export PWD=`pwd`
90 #export DEBUG=${DEBUG:=...} # arbitrary CFLAGS really.
91 export MALLOCLIB=${MALLOCLIB:=/usr/lib/libefence.a}
92 export LOCAL_CONFIGURE_OPTIONS=${LOCAL_CONFIGURE_OPTIONS:=--enable-readline=yes}
93
94 export RECREATE_TEST_DEV=false
95
96 # $1 = prog to look for, $2* = default pathnames if not found in $PATH
97 set_prog_path()
98 {
99     p=`which $1 2> /dev/null`
100     if [ -n "$p" -a -x "$p" ]; then
101         echo $p
102         return 0
103     fi
104     p=$1
105
106     shift
107     for f; do
108         if [ -x $f ]; then
109             echo $f
110             return 0
111         fi
112     done
113
114     echo ""
115     return 1
116 }
117
118 # Handle mkfs.btrfs which does (or does not) require -f to overwrite
119 set_btrfs_mkfs_prog_path_with_opts()
120 {
121         p=`set_prog_path mkfs.btrfs`
122         if [ "$p" != "" ] && grep -q 'force overwrite' $p; then
123                 echo "$p -f"
124         else
125                 echo $p
126         fi
127 }
128
129 _fatal()
130 {
131     echo "$*"
132     status=1
133     exit 1
134 }
135
136 export MKFS_PROG="`set_prog_path mkfs`"
137 [ "$MKFS_PROG" = "" ] && _fatal "mkfs not found"
138
139 export MOUNT_PROG="`set_prog_path mount`"
140 [ "$MOUNT_PROG" = "" ] && _fatal "mount not found"
141
142 export UMOUNT_PROG="`set_prog_path umount`"
143 [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found"
144
145 export FSSTRESS_PROG="./ltp/fsstress"
146 [ ! -x $FSSTRESS_PROG ] && _fatal "fsstress not found or executable"
147
148 export PERL_PROG="`set_prog_path perl`"
149 [ "$PERL_PROG" = "" ] && _fatal "perl not found"
150
151 export AWK_PROG="`set_prog_path awk`"
152 [ "$AWK_PROG" = "" ] && _fatal "awk not found"
153
154 export SED_PROG="`set_prog_path sed`"
155 [ "$SED_PROG" = "" ] && _fatal "sed not found"
156
157 export BC_PROG="`set_prog_path bc`"
158 [ "$BC_PROG" = "" ] && _fatal "bc not found"
159
160 export PS_ALL_FLAGS="-ef"
161
162 export DF_PROG="`set_prog_path df`"
163 [ "$DF_PROG" = "" ] && _fatal "df not found"
164 [ "$HOSTOS" = "Linux" ] && export DF_PROG="$DF_PROG -T -P"
165
166 export XFS_IO_PROG="`set_prog_path xfs_io`"
167 [ "$XFS_IO_PROG" = "" ] && _fatal "xfs_io not found"
168
169 export XFS_LOGPRINT_PROG="`set_prog_path xfs_logprint`"
170 export XFS_REPAIR_PROG="`set_prog_path xfs_repair`"
171 export XFS_DB_PROG="`set_prog_path xfs_db`"
172 export XFS_GROWFS_PROG=`set_prog_path xfs_growfs`
173 export XFS_SCRUB_PROG="`set_prog_path xfs_scrub`"
174 export XFS_PARALLEL_REPAIR_PROG="`set_prog_path xfs_prepair`"
175 export XFS_PARALLEL_REPAIR64_PROG="`set_prog_path xfs_prepair64`"
176 export __XFSDUMP_PROG="`set_prog_path xfsdump`"
177 if [ -n "$__XFSDUMP_PROG" ]; then
178         export XFSDUMP_PROG="$__XFSDUMP_PROG -e"
179 else
180         export XFSDUMP_PROG=""
181 fi
182 export XFSRESTORE_PROG="`set_prog_path xfsrestore`"
183 export XFSINVUTIL_PROG="`set_prog_path xfsinvutil`"
184 export GETFATTR_PROG="`set_prog_path getfattr`"
185 export SETFATTR_PROG="`set_prog_path setfattr`"
186 export CHACL_PROG="`set_prog_path chacl`"
187 export ATTR_PROG="`set_prog_path attr`"
188 export QUOTA_PROG="`set_prog_path quota`"
189 export XFS_QUOTA_PROG="`set_prog_path xfs_quota`"
190 export KILLALL_PROG="`set_prog_path killall`"
191 export INDENT_PROG="`set_prog_path indent`"
192 export XFS_COPY_PROG="`set_prog_path xfs_copy`"
193 export FSTRIM_PROG="`set_prog_path fstrim`"
194 export DUMPE2FS_PROG="`set_prog_path dumpe2fs`"
195 export FIO_PROG="`set_prog_path fio`"
196 export FILEFRAG_PROG="`set_prog_path filefrag`"
197 export E4DEFRAG_PROG="`set_prog_path e4defrag`"
198 export LOGGER_PROG="`set_prog_path logger`"
199 export DBENCH_PROG="`set_prog_path dbench`"
200 export DMSETUP_PROG="`set_prog_path dmsetup`"
201 export WIPEFS_PROG="`set_prog_path wipefs`"
202 export DUMP_PROG="`set_prog_path dump`"
203 export RESTORE_PROG="`set_prog_path restore`"
204 export LVM_PROG="`set_prog_path lvm`"
205 export CHATTR_PROG="`set_prog_path chattr`"
206 export DEBUGFS_PROG="`set_prog_path debugfs`"
207 export UUIDGEN_PROG="`set_prog_path uuidgen`"
208 export GETRICHACL_PROG="`set_prog_path getrichacl`"
209 export SETRICHACL_PROG="`set_prog_path setrichacl`"
210 export KEYCTL_PROG="`set_prog_path keyctl`"
211 export XZ_PROG="`set_prog_path xz`"
212 export FLOCK_PROG="`set_prog_path flock`"
213 export LDD_PROG="`set_prog_path ldd`"
214 export TIMEOUT_PROG="`set_prog_path timeout`"
215
216 # use 'udevadm settle' or 'udevsettle' to wait for lv to be settled.
217 # newer systems have udevadm command but older systems like RHEL5 don't.
218 # But if neither one is available, just set it to "sleep 1" to wait for lv to
219 # be settled
220 UDEV_SETTLE_PROG="`set_prog_path udevadm`"
221 if [ "$UDEV_SETTLE_PROG" == "" ]; then
222         # try udevsettle command
223         UDEV_SETTLE_PROG="`set_prog_path udevsettle`"
224 else
225         # udevadm is available, add 'settle' as subcommand
226         UDEV_SETTLE_PROG="$UDEV_SETTLE_PROG settle"
227 fi
228 # neither command is available, use sleep 1
229 if [ "$UDEV_SETTLE_PROG" == "" ]; then
230         UDEV_SETTLE_PROG="sleep 1"
231 fi
232 export UDEV_SETTLE_PROG
233
234 case "$HOSTOS" in
235     IRIX*)
236         export MKFS_XFS_PROG="`set_prog_path mkfs_xfs`"
237         export MKFS_UDF_PROG="`set_prog_path mkfs_udf`"
238         export XFS_FSR_PROG="`set_prog_path /usr/etc/fsr_xfs`"
239         export MKFS_NFS_PROG="false"
240         export MKFS_CIFS_PROG="false"
241         ;;
242     Linux)
243         export MKFS_XFS_PROG="`set_prog_path mkfs.xfs`"
244         export MKFS_EXT4_PROG="`set_prog_path mkfs.ext4`"
245         export MKFS_UDF_PROG="`set_prog_path mkudffs`"
246         export MKFS_BTRFS_PROG="`set_btrfs_mkfs_prog_path_with_opts`"
247         export MKFS_F2FS_PROG="`set_prog_path mkfs.f2fs`"
248         export DUMP_F2FS_PROG="`set_prog_path dump.f2fs`"
249         export BTRFS_UTIL_PROG="`set_prog_path btrfs`"
250         export BTRFS_SHOW_SUPER_PROG="`set_prog_path btrfs-show-super`"
251         export BTRFS_CONVERT_PROG="`set_prog_path btrfs-convert`"
252         export XFS_FSR_PROG="`set_prog_path xfs_fsr`"
253         export MKFS_NFS_PROG="false"
254         export MKFS_CIFS_PROG="false"
255         export MKFS_OVERLAY_PROG="false"
256         export MKFS_REISER4_PROG="`set_prog_path mkfs.reiser4`"
257         export E2FSCK_PROG="`set_prog_path e2fsck`"
258         export TUNE2FS_PROG="`set_prog_path tune2fs`"
259         ;;
260 esac
261
262 # SELinux adds extra xattrs which can mess up our expected output.
263 # So, mount with a context, and they won't be created.
264 #
265 # Since the context= option only accepts contexts defined in the SELinux
266 # policy, and different systems may have different policies with
267 # different context names, use the context of an existing directory.
268 # Assume that any valid context is fine, since xfstests should really
269 # only be run from an "unconfined" process, or with SELinux in permissive
270 # mode.  But if not, just specify your own SELINUX_MOUNT_OPTIONS.
271 if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
272         : ${SELINUX_MOUNT_OPTIONS:="-o context=$(stat -c %C /)"}
273         export SELINUX_MOUNT_OPTIONS
274 fi
275
276 # check if mkfs.xfs supports v5 xfs
277 XFS_MKFS_HAS_NO_META_SUPPORT=""
278 touch /tmp/crc_check.img
279 $MKFS_XFS_PROG -N -d file,name=/tmp/crc_check.img,size=32m -m crc=0 \
280         >/dev/null 2>&1;
281 if [ $? -ne 0 ]; then
282         XFS_MKFS_HAS_NO_META_SUPPORT=true
283 fi
284 rm -f /tmp/crc_check.img
285 export XFS_MKFS_HAS_NO_META_SUPPORT
286
287 # new doesn't need config file parsed, we can stop here
288 if [ "$iam" == "new" ]; then
289         return 0
290 fi
291
292 _mount_opts()
293 {
294         case $FSTYP in
295         xfs)
296                 export MOUNT_OPTIONS=$XFS_MOUNT_OPTIONS
297                 ;;
298         udf)
299                 export MOUNT_OPTIONS=$UDF_MOUNT_OPTIONS
300                 ;;
301         nfs)
302                 export MOUNT_OPTIONS=$NFS_MOUNT_OPTIONS
303                 ;;
304         cifs)
305                 export MOUNT_OPTIONS=$CIFS_MOUNT_OPTIONS
306                 ;;
307         ceph)
308                 export MOUNT_OPTIONS=$CEPHFS_MOUNT_OPTIONS
309                 ;;
310         overlay)
311                 export MOUNT_OPTIONS=$OVERLAY_MOUNT_OPTIONS
312                 ;;
313         ext2|ext3|ext4|ext4dev)
314                 # acls & xattrs aren't turned on by default on ext$FOO
315                 export MOUNT_OPTIONS="-o acl,user_xattr $EXT_MOUNT_OPTIONS"
316                 ;;
317         f2fs)
318                 export MOUNT_OPTIONS="-o acl,user_xattr $F2FS_MOUNT_OPTIONS"
319                 ;;
320         reiserfs)
321                 # acls & xattrs aren't turned on by default on reiserfs
322                 export MOUNT_OPTIONS="-o acl,user_xattr $REISERFS_MOUNT_OPTIONS"
323                 ;;
324        reiser4)
325                # acls & xattrs aren't supported by reiser4
326                export MOUNT_OPTIONS=$REISER4_MOUNT_OPTIONS
327                ;;
328         gfs2)
329                 # acls aren't turned on by default on gfs2
330                 export MOUNT_OPTIONS="-o acl $GFS2_MOUNT_OPTIONS"
331                 ;;
332         tmpfs)
333                 # We need to specify the size at mount, use 1G by default
334                 export MOUNT_OPTIONS="-o size=1G $TMPFS_MOUNT_OPTIONS"
335                 ;;
336         *)
337                 ;;
338         esac
339 }
340
341 _test_mount_opts()
342 {
343         case $FSTYP in
344         cifs)
345                 export TEST_FS_MOUNT_OPTS=$CIFS_MOUNT_OPTIONS
346                 ;;
347         ceph)
348                 export TEST_FS_MOUNT_OPTS=$CEPHFS_MOUNT_OPTIONS
349                 ;;
350         nfs)
351                 export TEST_FS_MOUNT_OPTS=$NFS_MOUNT_OPTIONS
352                 ;;
353         *)
354                 ;;
355         esac
356 }
357
358 _mkfs_opts()
359 {
360         case $FSTYP in
361         xfs)
362                 export MKFS_OPTIONS=$XFS_MKFS_OPTIONS
363                 ;;
364         udf)
365                 [ ! -z "$udf_fsize" ] && \
366                         UDF_MKFS_OPTIONS="$UDF_MKFS_OPTIONS -s $udf_fsize"
367                 export MKFS_OPTIONS=$UDF_MKFS_OPTIONS
368                 ;;
369         nfs)
370                 export MKFS_OPTIONS=$NFS_MKFS_OPTIONS
371                 ;;
372         cifs)
373                 export MKFS_OPTIONS=$CIFS_MKFS_OPTIONS
374                 ;;
375         ceph)
376                 export MKFS_OPTIONS=$CEPHFS_MKFS_OPTIONS
377                 ;;
378         reiserfs)
379                 export MKFS_OPTIONS="$REISERFS_MKFS_OPTIONS -q"
380                 ;;
381        reiser4)
382                 export MKFS_OPTIONS=$REISER4_MKFS_OPTIONS
383                 ;;
384         gfs2)
385                 export MKFS_OPTIONS="$GFS2_MKFS_OPTIONS -O -p lock_nolock"
386                 ;;
387         jfs)
388                 export MKFS_OPTIONS="$JFS_MKFS_OPTIONS -q"
389                 ;;
390         f2fs)
391                 export MKFS_OPTIONS="$F2FS_MKFS_OPTIONS"
392                 ;;
393         *)
394                 ;;
395         esac
396 }
397
398 _fsck_opts()
399 {
400         case $FSTYP in
401         ext2|ext3|ext4|ext4dev)
402                 export FSCK_OPTIONS="-nf"
403                 ;;
404         reiser*)
405                 export FSCK_OPTIONS="--yes"
406                 ;;
407         f2fs)
408                 export FSCK_OPTIONS=""
409                 ;;
410         *)
411                 export FSCK_OPTIONS="-n"
412                 ;;
413         esac
414 }
415
416 known_hosts()
417 {
418         [ "$HOST_CONFIG_DIR" ] || HOST_CONFIG_DIR=`pwd`/configs
419
420         [ -f /etc/xfsqa.config ]             && export HOST_OPTIONS=/etc/xfsqa.config
421         [ -f $HOST_CONFIG_DIR/$HOST ]        && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST
422         [ -f $HOST_CONFIG_DIR/$HOST.config ] && export HOST_OPTIONS=$HOST_CONFIG_DIR/$HOST.config
423 }
424
425 # Returns a list of sections in config file
426 # Each section starts with the section name in the format
427 # [section_name1]. Only alphanumeric characters and '_' is allowed
428 # in the section name otherwise the section will not be resognised.
429 # Section name must be contained between square brackets.
430 get_config_sections() {
431         sed -n -e "s/^\[\([[:alnum:]_]*\)\]/\1/p" < $1
432 }
433
434 if [ ! -f "$HOST_OPTIONS" ]; then
435         known_hosts
436 fi
437
438 export HOST_OPTIONS_SECTIONS="-no-sections-"
439 export OPTIONS_HAVE_SECTIONS=false
440 if [ -f "$HOST_OPTIONS" ]; then
441         export HOST_OPTIONS_SECTIONS=`get_config_sections $HOST_OPTIONS`
442         if [ -z "$HOST_OPTIONS_SECTIONS" ]; then
443                 . $HOST_OPTIONS
444                 export HOST_OPTIONS_SECTIONS="-no-sections-"
445         else
446                 export OPTIONS_HAVE_SECTIONS=true
447         fi
448 fi
449
450 _check_device()
451 {
452         local name=$1
453         local dev_needed=$2
454         local dev=$3
455
456         if [ -z "$dev" ]; then
457                 if [ "$dev_needed" == "required" ]; then
458                         _fatal "common/config: $name is required but not defined!"
459                 fi
460                 return 0
461         fi
462
463         if [ -b "$dev" ] || ( echo $dev | grep -qE ":|//" ); then
464                 # block device or a network url
465                 return 0
466         fi
467
468         if [ "$FSTYP" == "overlay" ]; then
469                 if [ ! -d "$dev" ]; then
470                         _fatal "common/config: $name ($dev) is not a directory for overlay"
471                 fi
472         else
473                 _fatal "common/config: $name ($dev) is not a block device or a network filesystem"
474         fi
475 }
476
477 # check and return a canonical mount point path
478 _canonicalize_mountpoint()
479 {
480         local name=$1
481         local dir=$2
482
483         if [ -d "$dir" ]; then
484                 # this follows symlinks and removes all trailing "/"s
485                 readlink -e "$dir"
486                 return 0
487         fi
488
489         if [ "$FSTYP" != "overlay" ] || [[ "$name" == OVL_BASE_* ]]; then
490                 _fatal "common/config: $name ($dir) is not a directory"
491         fi
492
493         # base fs may not be mounted yet, so just check that parent dir
494         # exists (where base fs will be mounted) because we are going to
495         # mkdir the overlay mount point dir anyway
496         local base=`basename $dir`
497         local parent=`dirname $dir`
498         parent=`_canonicalize_mountpoint OVL_BASE_$name "$parent"`
499
500         # prepend the overlay mount point to canonical parent path
501         echo "$parent/$base"
502 }
503
504 # On check -overlay, for the non multi section config case, this
505 # function is called on every test, before init_rc().
506 # When SCRATCH/TEST_* vars are defined in config file, config file
507 # is sourced on every test and this function overrides the vars
508 # every time.
509 # When SCRATCH/TEST_* vars are defined in evironment and not
510 # in config file, this function is called after vars have already
511 # been overriden in the previous test.
512 # In that case, TEST_DEV is a directory and not a blockdev and
513 # the function will return without overriding the SCRATCH/TEST_* vars.
514 _overlay_config_override()
515 {
516         # There are 2 options for configuring overlayfs tests:
517         #
518         # 1. (legacy) SCRATCH/TEST_DEV point to existing directories
519         #    on an already mounted fs.  In this case, the new
520         #    OVL_BASE_SCRATCH/TEST_* vars are set to use the legacy
521         #    vars values (even though they may not be mount points).
522         #
523         [ ! -d "$TEST_DEV" ] || export OVL_BASE_TEST_DIR="$TEST_DEV"
524         [ ! -d "$SCRATCH_DEV" ] || export OVL_BASE_SCRATCH_MNT="$SCRATCH_DEV"
525
526         # 2. SCRATCH/TEST_DEV point to the base fs partitions.  In this case,
527         #    the new OVL_BASE_SCRATCH/TEST_DEV/MNT vars are set to the values
528         #    of the configured base fs and SCRATCH/TEST_DEV vars are set to the
529         #    overlayfs base and mount dirs inside base fs mount.
530         [ -b "$TEST_DEV" ] || return 0
531
532         # Config file may specify base fs type, but we obay -overlay flag
533         export OVL_BASE_FSTYP="$FSTYP"
534         export FSTYP=overlay
535
536         # Store original base fs vars
537         export OVL_BASE_TEST_DEV="$TEST_DEV"
538         export OVL_BASE_TEST_DIR="$TEST_DIR"
539         export OVL_BASE_MOUNT_OPTIONS="$MOUNT_OPTIONS"
540
541         # Set TEST vars to overlay base and mount dirs inside base fs
542         export TEST_DEV="$OVL_BASE_TEST_DIR"
543         export TEST_DIR="$OVL_BASE_TEST_DIR/$OVL_MNT"
544         export MOUNT_OPTIONS="$OVERLAY_MOUNT_OPTIONS"
545
546         [ -b "$SCRATCH_DEV" ] || return 0
547
548         # Store original base fs vars
549         export OVL_BASE_SCRATCH_DEV="$SCRATCH_DEV"
550         export OVL_BASE_SCRATCH_MNT="$SCRATCH_MNT"
551
552         # Set SCRATCH vars to overlay base and mount dirs inside base fs
553         export SCRATCH_DEV="$OVL_BASE_SCRATCH_MNT"
554         export SCRATCH_MNT="$OVL_BASE_SCRATCH_MNT/$OVL_MNT"
555 }
556
557 _overlay_config_restore()
558 {
559         export OVERLAY=true
560         [ -z "$OVL_BASE_FSTYP" ] || export FSTYP=$OVL_BASE_FSTYP
561         [ -z "$OVL_BASE_TEST_DEV" ] || export TEST_DEV=$OVL_BASE_TEST_DEV
562         [ -z "$OVL_BASE_TEST_DIR" ] || export TEST_DIR=$OVL_BASE_TEST_DIR
563         [ -z "$OVL_BASE_SCRATCH_DEV" ] || export SCRATCH_DEV=$OVL_BASE_SCRATCH_DEV
564         [ -z "$OVL_BASE_SCRATCH_MNT" ] || export SCRATCH_MNT=$OVL_BASE_SCRATCH_MNT
565         [ -z "$OVL_BASE_MOUNT_OPTIONS" ] || export MOUNT_OPTIONS=$OVL_BASE_MOUNT_OPTIONS
566 }
567
568 # Parse config section options. This function will parse all the configuration
569 # within a single section which name is passed as an argument. For section
570 # name format see comments in get_config_sections().
571 # Empty lines and everything after '#' will be ignored.
572 # Configuration options should be defined in the format
573 #
574 # CONFIG_OPTION=value
575 #
576 # This 'CONFIG_OPTION' variable and will be exported as an environment variable.
577 parse_config_section() {
578         SECTION=$1
579         if ! $OPTIONS_HAVE_SECTIONS; then
580                 return 0
581         fi
582         eval `sed -e 's/[[:space:]]*\=[[:space:]]*/=/g' \
583                 -e 's/#.*$//' \
584                 -e 's/[[:space:]]*$//' \
585                 -e 's/^[[:space:]]*//' \
586                 -e "s/^\([^=]*\)=\"\?'\?\([^\"']*\)\"\?'\?$/export \1=\"\2\"/" \
587                 < $HOST_OPTIONS \
588                 | sed -n -e "/^\[$SECTION\]/,/^\s*\[/{/^[^#].*\=.*/p;}"`
589 }
590
591 get_next_config() {
592         if [ ! -z "$CONFIG_INCLUDED" ] && ! $OPTIONS_HAVE_SECTIONS; then
593                 return 0
594         fi
595
596         # We might have overriden FSTYP and TEST/SCRATCH vars with overlay values
597         # in the previous section, so restore them to original values stored in
598         # OVL_BASE_*.
599         # We need to do this *before* old FSTYP and MOUNT_OPTIONS are recorded
600         # and *before* SCRATCH_DEV and MOUNT_OPTIONS are unset
601         if [ "$FSTYP" == "overlay" ]; then
602                 _overlay_config_restore
603         fi
604
605         local OLD_FSTYP=$FSTYP
606         local OLD_MOUNT_OPTIONS=$MOUNT_OPTIONS
607         local OLD_TEST_FS_MOUNT_OPTS=$TEST_FS_MOUNT_OPTS
608         local OLD_MKFS_OPTIONS=$MKFS_OPTIONS
609         local OLD_FSCK_OPTIONS=$FSCK_OPTIONS
610         local OLD_USE_EXTERNAL=$USE_EXTERNAL
611
612         unset MOUNT_OPTIONS
613         unset MKFS_OPTIONS
614         unset FSCK_OPTIONS
615         unset USE_EXTERNAL
616
617         # We might have deduced SCRATCH_DEV from the SCRATCH_DEV_POOL in the previous
618         # run, so we have to unset it now.
619         if [ "$SCRATCH_DEV_NOT_SET" == "true" ]; then
620                 unset SCRATCH_DEV
621         fi
622
623         parse_config_section $1
624
625         if [ ! -z "$OLD_FSTYP" ] && [ $OLD_FSTYP != $FSTYP ]; then
626                 [ -z "$MOUNT_OPTIONS" ] && _mount_opts
627                 [ -z "$TEST_FS_MOUNT_OPTS" ] && _test_mount_opts
628                 [ -z "$MKFS_OPTIONS" ] && _mkfs_opts
629                 [ -z "$FSCK_OPTIONS" ] && _fsck_opts
630
631                 # clear the external devices if we are not using them
632                 if [ -z "$USE_EXTERNAL" ]; then
633                         unset TEST_RTDEV
634                         unset TEST_LOGDEV
635                         unset SCRATCH_RTDEV
636                         unset SCRATCH_LOGDEV
637                 fi
638         else
639                 [ -z "$MOUNT_OPTIONS" ] && export MOUNT_OPTIONS=$OLD_MOUNT_OPTIONS
640                 [ -z "$TEST_FS_MOUNT_OPTS" ] && export TEST_FS_MOUNT_OPTS=$OLD_TEST_FS_MOUNT_OPTS
641                 [ -z "$MKFS_OPTIONS" ] && export MKFS_OPTIONS=$OLD_MKFS_OPTIONS
642                 [ -z "$FSCK_OPTIONS" ] && export FSCK_OPTIONS=$OLD_FSCK_OPTIONS
643                 [ -z "$USE_EXTERNAL" ] && export USE_EXTERNAL=$OLD_USE_EXTERNAL
644         fi
645
646         # set default RESULT_BASE
647         if [ -z "$RESULT_BASE" ]; then
648                 export RESULT_BASE="$here/results/"
649         fi
650
651         #  Mandatory Config values.
652         MC=""
653         [ -z "$EMAIL" ]          && MC="$MC EMAIL"
654         [ -z "$TEST_DIR" ]       && MC="$MC TEST_DIR"
655         [ -z "$TEST_DEV" ]       && MC="$MC TEST_DEV"
656
657         if [ -n "$MC" ]; then
658                 echo "Warning: need to define parameters for host $HOST"
659                 echo "       or set variables:"
660                 echo "       $MC"
661                 exit 1
662         fi
663
664         _check_device TEST_DEV required $TEST_DEV
665         export TEST_DIR=`_canonicalize_mountpoint TEST_DIR $TEST_DIR`
666
667         # a btrfs tester will set only SCRATCH_DEV_POOL, we will put first of its dev
668         # to SCRATCH_DEV and rest to SCRATCH_DEV_POOL to maintain the backward compatibility
669         if [ ! -z "$SCRATCH_DEV_POOL" ]; then
670                 if [ ! -z "$SCRATCH_DEV" ]; then
671                         echo "common/config: Error: \$SCRATCH_DEV ($SCRATCH_DEV) should be unset when \$SCRATCH_DEV_POOL ($SCRATCH_DEV_POOL) is set"
672                         exit 1
673                 fi
674                 SCRATCH_DEV=`echo $SCRATCH_DEV_POOL | awk '{print $1}'`
675                 export SCRATCH_DEV
676                 export SCRATCH_DEV_NOT_SET=true
677         fi
678
679         _check_device SCRATCH_DEV optional $SCRATCH_DEV
680         export SCRATCH_MNT=`_canonicalize_mountpoint SCRATCH_MNT $SCRATCH_MNT`
681
682         if [ -n "$USE_EXTERNAL" ]; then
683                 _check_device TEST_RTDEV optional $TEST_RTDEV
684                 _check_device TEST_LOGDEV optional $TEST_LOGDEV
685                 _check_device SCRATCH_RTDEV optional $SCRATCH_RTDEV
686                 _check_device SCRATCH_LOGDEV optional $SCRATCH_LOGDEV
687         fi
688
689         # Override FSTYP from config when running ./check -overlay
690         # and maybe override base fs TEST/SCRATCH_DEV with overlay base dirs.
691         # We need to do this *after* default mount options are set by base FSTYP
692         # and *after* SCRATCH_DEV is deduced from SCRATCH_DEV_POOL
693         if [ "$OVERLAY" == "true" -o "$FSTYP" == "overlay" ]; then
694                 _overlay_config_override
695         fi
696 }
697
698 if [ -z "$CONFIG_INCLUDED" ]; then
699         get_next_config `echo $HOST_OPTIONS_SECTIONS | cut -f1 -d" "`
700         export CONFIG_INCLUDED=true
701
702         # Autodetect fs type based on what's on $TEST_DEV unless it's been set
703         # externally
704         if [ -z "$FSTYP" ] && \
705            [ "$HOSTOS" == "Linux" -o "$OSTYPE" == "linux-gnu" ] && \
706            [ ! -z "$TEST_DEV" ]; then
707                 FSTYP=`blkid -c /dev/null -s TYPE -o value $TEST_DEV`
708         fi
709         FSTYP=${FSTYP:=xfs}
710         export FSTYP
711         [ -z "$MOUNT_OPTIONS" ] && _mount_opts
712         [ -z "$TEST_FS_MOUNT_OPTS" ] && _test_mount_opts
713         [ -z "$MKFS_OPTIONS" ] && _mkfs_opts
714         [ -z "$FSCK_OPTIONS" ] && _fsck_opts
715 else
716         # We get here for the non multi section case, on every test that sources
717         # common/rc after re-sourcing the HOST_OPTIONS config file.
718         # Because of this re-sourcing, we need to re-canonicalize the configured
719         # mount points and re-override TEST/SCRATCH_DEV overlay vars.
720
721         # canonicalize the mount points
722         # this follows symlinks and removes all trailing "/"s
723         export TEST_DIR=`_canonicalize_mountpoint TEST_DIR $TEST_DIR`
724         export SCRATCH_MNT=`_canonicalize_mountpoint SCRATCH_MNT $SCRATCH_MNT`
725
726         # Override FSTYP from config when running ./check -overlay
727         # and maybe override base fs TEST/SCRATCH_DEV with overlay base dirs
728         if [ "$OVERLAY" == "true" -o "$FSTYP" == "overlay" ]; then
729                 _overlay_config_override
730         fi
731 fi
732
733 # make sure this script returns success
734 /bin/true